commit 997b3cef10b9834c59fdb819071ba4d294a1c3cf Author: Marwan Alwali Date: Sun Dec 8 14:07:50 2024 +0300 first commit diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 00000000..e5c07220 Binary files /dev/null and b/.DS_Store differ diff --git a/.idea/.DS_Store b/.idea/.DS_Store new file mode 100644 index 00000000..59012e22 Binary files /dev/null and b/.idea/.DS_Store differ diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 00000000..13566b81 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/JetClient/state.xml b/.idea/JetClient/state.xml new file mode 100644 index 00000000..f7c68f1c --- /dev/null +++ b/.idea/JetClient/state.xml @@ -0,0 +1,7 @@ + + + + + \ No newline at end of file diff --git a/.idea/car_inventory.iml b/.idea/car_inventory.iml new file mode 100644 index 00000000..5b1194cc --- /dev/null +++ b/.idea/car_inventory.iml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 00000000..9e414b14 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,17 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 00000000..105ce2da --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/jsLibraryMappings.xml b/.idea/jsLibraryMappings.xml new file mode 100644 index 00000000..f2757223 --- /dev/null +++ b/.idea/jsLibraryMappings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/material_theme_project_new.xml b/.idea/material_theme_project_new.xml new file mode 100644 index 00000000..a5603b0d --- /dev/null +++ b/.idea/material_theme_project_new.xml @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000..fc7758a4 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..b1eba6ef --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/api/__init__.py b/api/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/api/__pycache__/__init__.cpython-311.pyc b/api/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..c463de3e Binary files /dev/null and b/api/__pycache__/__init__.cpython-311.pyc differ diff --git a/api/__pycache__/admin.cpython-311.pyc b/api/__pycache__/admin.cpython-311.pyc new file mode 100644 index 00000000..4612b35a Binary files /dev/null and b/api/__pycache__/admin.cpython-311.pyc differ diff --git a/api/__pycache__/apps.cpython-311.pyc b/api/__pycache__/apps.cpython-311.pyc new file mode 100644 index 00000000..77b80ab1 Binary files /dev/null and b/api/__pycache__/apps.cpython-311.pyc differ diff --git a/api/__pycache__/models.cpython-311.pyc b/api/__pycache__/models.cpython-311.pyc new file mode 100644 index 00000000..ec635e62 Binary files /dev/null and b/api/__pycache__/models.cpython-311.pyc differ diff --git a/api/__pycache__/serializers.cpython-311.pyc b/api/__pycache__/serializers.cpython-311.pyc new file mode 100644 index 00000000..9e450747 Binary files /dev/null and b/api/__pycache__/serializers.cpython-311.pyc differ diff --git a/api/__pycache__/services.cpython-311.pyc b/api/__pycache__/services.cpython-311.pyc new file mode 100644 index 00000000..3d0cde4f Binary files /dev/null and b/api/__pycache__/services.cpython-311.pyc differ diff --git a/api/__pycache__/urls.cpython-311.pyc b/api/__pycache__/urls.cpython-311.pyc new file mode 100644 index 00000000..b84ced86 Binary files /dev/null and b/api/__pycache__/urls.cpython-311.pyc differ diff --git a/api/__pycache__/views.cpython-311.pyc b/api/__pycache__/views.cpython-311.pyc new file mode 100644 index 00000000..85e62eba Binary files /dev/null and b/api/__pycache__/views.cpython-311.pyc differ diff --git a/api/admin.py b/api/admin.py new file mode 100644 index 00000000..8db28824 --- /dev/null +++ b/api/admin.py @@ -0,0 +1,5 @@ +from django.contrib import admin +from . import models + + +admin.site.register(models.CarVIN) diff --git a/api/apps.py b/api/apps.py new file mode 100644 index 00000000..66656fd2 --- /dev/null +++ b/api/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class ApiConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'api' diff --git a/api/consumers.py b/api/consumers.py new file mode 100644 index 00000000..8b8ac4ae --- /dev/null +++ b/api/consumers.py @@ -0,0 +1,35 @@ +# from channels.generic.websocket import AsyncWebsocketConsumer +# from api.services import get_car_data +# import json +# +# +# class VINScanConsumer(AsyncWebsocketConsumer): +# def __init__(self, *args, **kwargs): +# super().__init__(args, kwargs) +# self.group_name = None +# +# async def connect(self): +# self.group_name = 'vin_scan_group' +# await self.channel_layer.group_add( +# self.group_name, +# self.channel_name +# ) +# await self.accept() +# +# async def disconnect(self, close_code): +# await self.channel_layer.group_discard( +# self.group_name, +# self.channel_name +# ) +# +# async def receive(self, text_data, **kwargs): +# data = json.loads(text_data) +# vin = data['vin'] +# get_car_data(vin) +# # Process the VIN as needed, e.g., save to the database +# +# # Send data back to the WebSocket +# await self.send(text_data=json.dumps({ +# 'message': 'VIN received', +# 'vin': vin +# })) \ No newline at end of file diff --git a/api/migrations/0001_initial.py b/api/migrations/0001_initial.py new file mode 100644 index 00000000..a7dbae91 --- /dev/null +++ b/api/migrations/0001_initial.py @@ -0,0 +1,22 @@ +# Generated by Django 5.0.6 on 2024-08-21 11:31 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='CarVIN', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('vin', models.CharField(max_length=17, verbose_name='VIN')), + ('created', models.DateTimeField(auto_now_add=True, verbose_name='created')), + ], + ), + ] diff --git a/api/migrations/__init__.py b/api/migrations/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/api/migrations/__pycache__/0001_initial.cpython-311.pyc b/api/migrations/__pycache__/0001_initial.cpython-311.pyc new file mode 100644 index 00000000..0b029b7b Binary files /dev/null and b/api/migrations/__pycache__/0001_initial.cpython-311.pyc differ diff --git a/api/migrations/__pycache__/__init__.cpython-311.pyc b/api/migrations/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..6be173e1 Binary files /dev/null and b/api/migrations/__pycache__/__init__.cpython-311.pyc differ diff --git a/api/models.py b/api/models.py new file mode 100644 index 00000000..810bb254 --- /dev/null +++ b/api/models.py @@ -0,0 +1,11 @@ +from django.db import models +from django.utils.translation import gettext_lazy as _ + + +class CarVIN(models.Model): + vin = models.CharField(max_length=17, verbose_name=_("VIN")) + created = models.DateTimeField(auto_now_add=True, verbose_name="created") + + def __str__(self): + return self.vin + diff --git a/api/routing.py b/api/routing.py new file mode 100644 index 00000000..895c23d3 --- /dev/null +++ b/api/routing.py @@ -0,0 +1,6 @@ +# from django.urls import re_path +# from api import consumers +# +# websocket_urlpatterns = [ +# re_path(r'ws/vin_scan/$', consumers.VINScanConsumer.as_asgi()), +# ] \ No newline at end of file diff --git a/api/serializers.py b/api/serializers.py new file mode 100644 index 00000000..82e82912 --- /dev/null +++ b/api/serializers.py @@ -0,0 +1,14 @@ +from rest_framework import serializers +from . import models + + +class CarVINSerializer(serializers.ModelSerializer): + class Meta: + model = models.CarVIN + fields = ['vin'] + + def create(self, validated_data): + vin = validated_data.pop('vin') + return models.CarVIN.objects.create(vin=vin, **validated_data) + + diff --git a/api/services.py b/api/services.py new file mode 100644 index 00000000..c36bacc7 --- /dev/null +++ b/api/services.py @@ -0,0 +1,63 @@ +import hashlib +import json +import requests + + +def get_bearer(): + + api_token = "f5204a00-6f31-4de2-96d8-ed998e0d230c" + api_secret = "8c11320781a5b8f4f327b6937e6f8241" + + url = "https://carapi.app/api/auth/login" + headers = { + "accept": "text/plain", + "Content-Type": "application/json" + } + data = { + "api_token": api_token, + "api_secret": api_secret + } + + response = requests.post(url, headers=headers, json=data) + + if response.status_code == 200: + return response.text + else: + print("the api key or secret is not valid") + return None + + +def get_car_data(vin): + + url = f"https://carapi.app/api/vin/{vin}?verbose=no&all_trims=no" + headers = { + "Authorization": f"Bearer {get_bearer()}" + } + + try: + response = requests.get(url, headers=headers) + response.raise_for_status() # Raises an HTTPError for bad responses (4XX, 5XX) + + response = response.json() + print(response) + + except requests.exceptions.HTTPError as http_err: + print(f"HTTP error occurred: {http_err}") + except requests.exceptions.RequestException as err: + print(f"Error occurred: {err}") + except Exception as e: + print(f"An error occurred: {e}") + + +def get_from_cardatabase(vin): + vin = vin + url = "https://api.vehicledatabases.com/premium/vin-decode/{vin}" + + payload = {} + headers = { + 'x-AuthKey': '3cefdfd4272445f1929b5801c55d8fa5' + } + + response = requests.request("GET", url, headers=headers, data=payload) + + print(response.text) \ No newline at end of file diff --git a/api/temp.txt b/api/temp.txt new file mode 100644 index 00000000..52c87a5b --- /dev/null +++ b/api/temp.txt @@ -0,0 +1,797 @@ +# url = f"https://carapi.app/api/vin/{vin}?verbose=no&all_trims=no" + # headers = { + # "Authorization": f"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJjYXJhcGkuYXBwIiwic3ViIjoiYjU1OGYzMDMtODI0Ni00NjgzLTkwYTQtZmYwMGQxYWNmNGU3IiwiYXVkIjoiYjU1OGYzMDMtODI0Ni00NjgzLTkwYTQtZmYwMGQxYWNmNGU3IiwiZXhwIjoxNzI0MzgyODMzLCJpYXQiOjE3MjM3NzgwMzMsImp0aSI6IjA3ZDUzM2Y5LWRmNzEtNDM1My1hMTBhLTNiYmQ2MDljNWM0YiIsInVzZXIiOnsic3Vic2NyaWJlZCI6dHJ1ZSwic3Vic2NyaXB0aW9uIjoic3RhcnRlciIsInJhdGVfbGltaXRfdHlwZSI6ImhhcmQiLCJhZGRvbnMiOnsiYW50aXF1ZV92ZWhpY2xlcyI6ZmFsc2UsImRhdGFfZmVlZCI6ZmFsc2V9fX0.KnaH-dOGcmJAF3WqzrZ_c_eFtkSjPVEjR15G7KFxi2s" + # } + # + # try: + # response = requests.get(url, headers=headers) + # response.raise_for_status() # Raises an HTTPError for bad responses (4XX, 5XX) + # + # response = response.json() + # print(response) + # + # except requests.exceptions.HTTPError as http_err: + # print(f"HTTP error occurred: {http_err}") + # except requests.exceptions.RequestException as err: + # print(f"Error occurred: {err}") + # except Exception as e: + # print(f"An error occurred: {e}") + + + # class TokenAuthenticationMiddleware(MiddlewareMixin): +# +# def process_request(self, request, *args, **kwargs): +# +# exempt_paths = ['/login/', '/signup/', '/'] +# if request.path in exempt_paths: +# return None +# +# token_key = request.META.get('HTTP_AUTHORIZATION') +# if token_key: +# token_key = token_key.split(' ')[1] if ' ' in token_key else token_key +# try: +# token = Token.objects.get(key=token_key) +# request.user = token.user +# except Token.DoesNotExist: +# return HttpResponseForbidden("Invalid token") +# +# if not request.user.is_authenticated: +# return HttpResponseForbidden("You are not authorized to view this page") +# +# return None + + +# def vin_decode(vin): +# apiKey = "67b751455994" +# secretKey = "2ca9c09960" +# apiPrefix = "https://api.vindecoder.eu/3.2" +# id = "decode" +# +# controlSum = hashlib.sha1((vin.upper() + "|" + id + "|" + apiKey + "|" + secretKey).encode('utf-8')).hexdigest()[ +# :10] +# url = apiPrefix + "/" + apiKey + "/" + controlSum + "/decode/" + vin.upper() + ".json" +# print(url) +# json_data = requests.get(url).json() +# print(json_data) +# return json_data + + + + + +{ + "year": 2007, + "make": "CHEVROLET", + "model": "TrailBlazer", + "trim": "1/2 Ton", + "specs": { + "active_safety_system_note": null, + "adaptive_cruise_control_acc": null, + "adaptive_driving_beam_adb": null, + "anti_lock_braking_system_abs": null, + "auto_reverse_system_for_windows_and_sunroofs": null, + "automatic_crash_notification_acn_advanced_automatic_crash_notification_aacn": null, + "automatic_pedestrian_alerting_sound_for_hybrid_and_ev_only": null, + "axle_configuration": null, + "axles": null, + "backup_camera": null, + "base_price": null, + "battery_current_amps_from": null, + "battery_current_amps_to": null, + "battery_energy_kwh_from": null, + "battery_energy_kwh_to": null, + "battery_type": null, + "battery_voltage_volts_from": null, + "battery_voltage_volts_to": null, + "bed_length_inches": null, + "bed_type": null, + "blind_spot_intervention_bsi": null, + "blind_spot_warning_bsw": null, + "body_class": "Sport Utility Vehicle (SUV)/Multi-Purpose Vehicle (MPV)", + "brake_system_description": null, + "brake_system_type": "Hydraulic", + "bus_floor_configuration_type": "Not Applicable", + "bus_length_feet": null, + "bus_type": "Not Applicable", + "cab_type": null, + "charger_level": null, + "charger_power_kw": null, + "cooling_type": "Water", + "crash_imminent_braking_cib": null, + "curb_weight_pounds": null, + "curtain_air_bag_locations": null, + "custom_motorcycle_type": "Not Applicable", + "daytime_running_light_drl": null, + "destination_market": null, + "displacement_cc": "4200.0", + "displacement_ci": "256.29972519787", + "displacement_l": "4.2", + "doors": "4", + "drive_type": "4x2", + "dynamic_brake_support_dbs": null, + "electrification_level": null, + "electronic_stability_control_esc": null, + "engine_brake_hp_from": null, + "engine_brake_hp_to": null, + "engine_configuration": "In-Line", + "engine_manufacturer": "GM", + "engine_model": "LL8", + "engine_number_of_cylinders": "6", + "engine_power_kw": null, + "engine_stroke_cycles": null, + "entertainment_system": null, + "ev_drive_unit": null, + "event_data_recorder_edr": null, + "forward_collision_warning_fcw": null, + "front_air_bag_locations": null, + "fuel_delivery_fuel_injection_type": "Multipoint Fuel Injection (MPFI)", + "fuel_type_primary": "Gasoline", + "fuel_type_secondary": null, + "gross_combination_weight_rating_from": null, + "gross_combination_weight_rating_to": null, + "gross_vehicle_weight_rating_from": "Class 1D: 5,001 - 6,000 lb (2,268 - 2,722 kg)", + "gross_vehicle_weight_rating_to": null, + "headlamp_light_source": null, + "keyless_ignition": null, + "knee_air_bag_locations": null, + "lane_centering_assistance": null, + "lane_departure_warning_ldw": null, + "lane_keeping_assistance_lka": null, + "manufacturer_name": "GENERAL MOTORS LLC", + "motorcycle_chassis_type": "Not Applicable", + "motorcycle_suspension_type": "Not Applicable", + "ncsa_body_type": "Compact Utility (Utility Vehicle Categories \"Small\" and \"Midsize\")", + "ncsa_make": "Chevrolet", + "ncsa_model": "TrailBlazer (2003 on; for 2002 model, see 401)", + "ncsa_note": null, + "non_land_use": null, + "note": null, + "number_of_battery_cells_per_module": null, + "number_of_battery_modules_per_pack": null, + "number_of_battery_packs_per_vehicle": null, + "number_of_seat_rows": null, + "number_of_seats": null, + "number_of_wheels": null, + "other_battery_info": null, + "other_bus_info": null, + "other_engine_info": "MFI, DOHC, Aluminium", + "other_motorcycle_info": null, + "other_restraint_system_info": null, + "other_trailer_info": null, + "parking_assist": null, + "pedestrian_automatic_emergency_braking_paeb": null, + "plant_city": "MORAINE", + "plant_company_name": "GM Truck Group", + "plant_country": "UNITED STATES (USA)", + "plant_state": "OHIO", + "possible_values": "", + "pretensioner": null, + "rear_automatic_emergency_braking": null, + "rear_cross_traffic_alert": null, + "sae_automation_level_from": null, + "sae_automation_level_to": null, + "seat_belt_type": null, + "seat_cushion_air_bag_locations": null, + "semiautomatic_headlamp_beam_switching": null, + "series": "1/2 Ton", + "series2": null, + "side_air_bag_locations": null, + "steering_location": null, + "suggested_vin": "", + "tire_pressure_monitoring_system_tpms_type": null, + "top_speed_mph": null, + "track_width_inches": null, + "traction_control": null, + "trailer_body_type": "Not Applicable", + "trailer_length_feet": null, + "trailer_type_connection": "Not Applicable", + "transmission_speeds": null, + "transmission_style": null, + "trim": null, + "trim2": null, + "turbo": null, + "valve_train_design": "Dual Overhead Cam (DOHC)", + "vehicle_descriptor": "1GNDS13S*72", + "vehicle_type": "MULTIPURPOSE PASSENGER VEHICLE (MPV)", + "wheel_base_inches_from": null, + "wheel_base_inches_to": null, + "wheel_base_type": null, + "wheel_size_front_inches": null, + "wheel_size_rear_inches": null, + "windows": null + }, + "trims": [ + { + "id": 40805, + "make_model_id": 33, + "year": 2007, + "name": "LS", + "description": "LS 4dr SUV (4.2L 6cyl 4A)", + "msrp": 25045, + "invoice": 23417, + "created": "2023-06-29T21:13:16-04:00", + "modified": "2023-06-29T21:13:16-04:00", + "make_model_trim_mileage": { + "id": 40805, + "make_model_trim_id": 40805, + "fuel_tank_capacity": "22.0", + "combined_mpg": 16, + "epa_city_mpg": 14, + "epa_highway_mpg": 20, + "range_city": 308, + "range_highway": 440, + "battery_capacity_electric": null, + "epa_time_to_charge_hr_240v_electric": null, + "epa_kwh_100_mi_electric": null, + "range_electric": null, + "epa_highway_mpg_electric": null, + "epa_city_mpg_electric": null, + "epa_combined_mpg_electric": null + }, + "make_model_trim_engine": { + "id": 40805, + "make_model_trim_id": 40805, + "engine_type": "gas", + "fuel_type": "regular unleaded", + "cylinders": "I6", + "size": "4.2", + "horsepower_hp": 291, + "horsepower_rpm": 6000, + "torque_ft_lbs": 277, + "torque_rpm": 4800, + "valves": 24, + "valve_timing": "Variable", + "cam_type": "Double overhead cam (DOHC)", + "drive_type": "rear wheel drive", + "transmission": "4-speed automatic" + }, + "make_model_trim_body": { + "id": 40805, + "make_model_trim_id": 40805, + "type": "SUV", + "doors": 5, + "length": "191.8", + "width": "74.7", + "seats": 5, + "height": "72.5", + "wheel_base": "113.0", + "front_track": "62.7", + "rear_track": "62.0", + "ground_clearance": "7.8", + "cargo_capacity": "43.7", + "max_cargo_capacity": "80.1", + "curb_weight": 4356, + "gross_weight": 5550, + "max_payload": 1194, + "max_towing_capacity": 6800 + }, + "make_model": { + "id": 33, + "make_id": 6, + "name": "TrailBlazer", + "make": { + "id": 6, + "name": "Chevrolet" + } + } + }, + { + "id": 40806, + "make_model_id": 33, + "year": 2007, + "name": "LS", + "description": "LS 4dr SUV 4WD (4.2L 6cyl 4A)", + "msrp": 27340, + "invoice": 25563, + "created": "2023-06-29T21:13:16-04:00", + "modified": "2023-06-29T21:13:16-04:00", + "make_model_trim_mileage": { + "id": 40806, + "make_model_trim_id": 40806, + "fuel_tank_capacity": "22.0", + "combined_mpg": 16, + "epa_city_mpg": 14, + "epa_highway_mpg": 20, + "range_city": 308, + "range_highway": 440, + "battery_capacity_electric": null, + "epa_time_to_charge_hr_240v_electric": null, + "epa_kwh_100_mi_electric": null, + "range_electric": null, + "epa_highway_mpg_electric": null, + "epa_city_mpg_electric": null, + "epa_combined_mpg_electric": null + }, + "make_model_trim_engine": { + "id": 40806, + "make_model_trim_id": 40806, + "engine_type": "gas", + "fuel_type": "regular unleaded", + "cylinders": "I6", + "size": "4.2", + "horsepower_hp": 291, + "horsepower_rpm": 6000, + "torque_ft_lbs": 277, + "torque_rpm": 4800, + "valves": 24, + "valve_timing": "Variable", + "cam_type": "Double overhead cam (DOHC)", + "drive_type": "four wheel drive", + "transmission": "4-speed automatic" + }, + "make_model_trim_body": { + "id": 40806, + "make_model_trim_id": 40806, + "type": "SUV", + "doors": 5, + "length": "191.8", + "width": "74.7", + "seats": 5, + "height": "72.5", + "wheel_base": "113.0", + "front_track": "62.7", + "rear_track": "62.0", + "ground_clearance": "7.8", + "cargo_capacity": "43.7", + "max_cargo_capacity": "80.1", + "curb_weight": 4523, + "gross_weight": 5750, + "max_payload": 1227, + "max_towing_capacity": 6600 + }, + "make_model": { + "id": 33, + "make_id": 6, + "name": "TrailBlazer", + "make": { + "id": 6, + "name": "Chevrolet" + } + } + }, + { + "id": 40807, + "make_model_id": 33, + "year": 2007, + "name": "LT", + "description": "LT 4dr SUV (4.2L 6cyl 4A)", + "msrp": 27970, + "invoice": 26152, + "created": "2023-06-29T21:13:16-04:00", + "modified": "2023-06-29T21:13:16-04:00", + "make_model_trim_mileage": { + "id": 40807, + "make_model_trim_id": 40807, + "fuel_tank_capacity": "22.0", + "combined_mpg": 16, + "epa_city_mpg": 14, + "epa_highway_mpg": 20, + "range_city": 308, + "range_highway": 440, + "battery_capacity_electric": null, + "epa_time_to_charge_hr_240v_electric": null, + "epa_kwh_100_mi_electric": null, + "range_electric": null, + "epa_highway_mpg_electric": null, + "epa_city_mpg_electric": null, + "epa_combined_mpg_electric": null + }, + "make_model_trim_engine": { + "id": 40807, + "make_model_trim_id": 40807, + "engine_type": "gas", + "fuel_type": "regular unleaded", + "cylinders": "I6", + "size": "4.2", + "horsepower_hp": 291, + "horsepower_rpm": 6000, + "torque_ft_lbs": 277, + "torque_rpm": 4800, + "valves": 24, + "valve_timing": "Variable", + "cam_type": "Double overhead cam (DOHC)", + "drive_type": "rear wheel drive", + "transmission": "4-speed automatic" + }, + "make_model_trim_body": { + "id": 40807, + "make_model_trim_id": 40807, + "type": "SUV", + "doors": 5, + "length": "191.8", + "width": "74.7", + "seats": 5, + "height": null, + "wheel_base": "113.0", + "front_track": "62.7", + "rear_track": "62.0", + "ground_clearance": "7.8", + "cargo_capacity": "43.7", + "max_cargo_capacity": "80.1", + "curb_weight": 4356, + "gross_weight": 5550, + "max_payload": 1194, + "max_towing_capacity": 6800 + }, + "make_model": { + "id": 33, + "make_id": 6, + "name": "TrailBlazer", + "make": { + "id": 6, + "name": "Chevrolet" + } + } + }, + { + "id": 40808, + "make_model_id": 33, + "year": 2007, + "name": "LT", + "description": "LT 4dr SUV 4WD (4.2L 6cyl 4A)", + "msrp": 30210, + "invoice": 28246, + "created": "2023-06-29T21:13:16-04:00", + "modified": "2023-06-29T21:13:16-04:00", + "make_model_trim_mileage": { + "id": 40808, + "make_model_trim_id": 40808, + "fuel_tank_capacity": "22.0", + "combined_mpg": 16, + "epa_city_mpg": 14, + "epa_highway_mpg": 20, + "range_city": 308, + "range_highway": 440, + "battery_capacity_electric": null, + "epa_time_to_charge_hr_240v_electric": null, + "epa_kwh_100_mi_electric": null, + "range_electric": null, + "epa_highway_mpg_electric": null, + "epa_city_mpg_electric": null, + "epa_combined_mpg_electric": null + }, + "make_model_trim_engine": { + "id": 40808, + "make_model_trim_id": 40808, + "engine_type": "gas", + "fuel_type": "regular unleaded", + "cylinders": "I6", + "size": "4.2", + "horsepower_hp": 291, + "horsepower_rpm": 6000, + "torque_ft_lbs": 277, + "torque_rpm": 4800, + "valves": 24, + "valve_timing": "Variable", + "cam_type": "Double overhead cam (DOHC)", + "drive_type": "four wheel drive", + "transmission": "4-speed automatic" + }, + "make_model_trim_body": { + "id": 40808, + "make_model_trim_id": 40808, + "type": "SUV", + "doors": 5, + "length": "191.8", + "width": "74.7", + "seats": 5, + "height": null, + "wheel_base": "113.0", + "front_track": "62.7", + "rear_track": "62.0", + "ground_clearance": "7.8", + "cargo_capacity": "43.7", + "max_cargo_capacity": "80.1", + "curb_weight": 4523, + "gross_weight": 5750, + "max_payload": 1227, + "max_towing_capacity": 6600 + }, + "make_model": { + "id": 33, + "make_id": 6, + "name": "TrailBlazer", + "make": { + "id": 6, + "name": "Chevrolet" + } + } + }, + { + "id": 40809, + "make_model_id": 33, + "year": 2007, + "name": "SS", + "description": "SS 4dr SUV (6.0L 8cyl 4A)", + "msrp": 31320, + "invoice": 29284, + "created": "2023-06-29T21:13:16-04:00", + "modified": "2023-06-29T21:13:16-04:00", + "make_model_trim_mileage": { + "id": 40809, + "make_model_trim_id": 40809, + "fuel_tank_capacity": "22.0", + "combined_mpg": 15, + "epa_city_mpg": 13, + "epa_highway_mpg": 17, + "range_city": 286, + "range_highway": 374, + "battery_capacity_electric": null, + "epa_time_to_charge_hr_240v_electric": null, + "epa_kwh_100_mi_electric": null, + "range_electric": null, + "epa_highway_mpg_electric": null, + "epa_city_mpg_electric": null, + "epa_combined_mpg_electric": null + }, + "make_model_trim_engine": { + "id": 40809, + "make_model_trim_id": 40809, + "engine_type": "gas", + "fuel_type": "premium unleaded (required)", + "cylinders": "V8", + "size": "6.0", + "horsepower_hp": 395, + "horsepower_rpm": 5400, + "torque_ft_lbs": 400, + "torque_rpm": 4400, + "valves": 16, + "valve_timing": null, + "cam_type": "Overhead valves (OHV)", + "drive_type": "rear wheel drive", + "transmission": "4-speed automatic" + }, + "make_model_trim_body": { + "id": 40809, + "make_model_trim_id": 40809, + "type": "SUV", + "doors": 5, + "length": "191.8", + "width": "74.7", + "seats": 5, + "height": "67.8", + "wheel_base": "113.0", + "front_track": "62.7", + "rear_track": "62.0", + "ground_clearance": "7.8", + "cargo_capacity": "43.7", + "max_cargo_capacity": "80.1", + "curb_weight": 4496, + "gross_weight": 6001, + "max_payload": 1505, + "max_towing_capacity": 6800 + }, + "make_model": { + "id": 33, + "make_id": 6, + "name": "TrailBlazer", + "make": { + "id": 6, + "name": "Chevrolet" + } + } + }, + { + "id": 40810, + "make_model_id": 33, + "year": 2007, + "name": "SS", + "description": "SS 4dr SUV AWD (6.0L 8cyl 4A)", + "msrp": 33620, + "invoice": 31435, + "created": "2023-06-29T21:13:16-04:00", + "modified": "2023-06-29T21:13:16-04:00", + "make_model_trim_mileage": { + "id": 40810, + "make_model_trim_id": 40810, + "fuel_tank_capacity": "22.0", + "combined_mpg": 14, + "epa_city_mpg": 12, + "epa_highway_mpg": 16, + "range_city": 264, + "range_highway": 352, + "battery_capacity_electric": null, + "epa_time_to_charge_hr_240v_electric": null, + "epa_kwh_100_mi_electric": null, + "range_electric": null, + "epa_highway_mpg_electric": null, + "epa_city_mpg_electric": null, + "epa_combined_mpg_electric": null + }, + "make_model_trim_engine": { + "id": 40810, + "make_model_trim_id": 40810, + "engine_type": "gas", + "fuel_type": "premium unleaded (required)", + "cylinders": "V8", + "size": "6.0", + "horsepower_hp": 395, + "horsepower_rpm": 5400, + "torque_ft_lbs": 400, + "torque_rpm": 4400, + "valves": 16, + "valve_timing": null, + "cam_type": "Overhead valves (OHV)", + "drive_type": "all wheel drive", + "transmission": "4-speed automatic" + }, + "make_model_trim_body": { + "id": 40810, + "make_model_trim_id": 40810, + "type": "SUV", + "doors": 5, + "length": "191.8", + "width": "74.7", + "seats": 5, + "height": "67.8", + "wheel_base": "113.0", + "front_track": "62.7", + "rear_track": "62.0", + "ground_clearance": "7.8", + "cargo_capacity": "43.7", + "max_cargo_capacity": "80.1", + "curb_weight": 4663, + "gross_weight": 6001, + "max_payload": 1338, + "max_towing_capacity": 6600 + }, + "make_model": { + "id": 33, + "make_id": 6, + "name": "TrailBlazer", + "make": { + "id": 6, + "name": "Chevrolet" + } + } + }, + { + "id": 40812, + "make_model_id": 33, + "year": 2007, + "name": "SS", + "description": "SS 4dr SUV AWD w/3SS (6.0L 8cyl 4A)", + "msrp": 37125, + "invoice": 34712, + "created": "2023-06-29T21:13:16-04:00", + "modified": "2023-06-29T21:13:16-04:00", + "make_model_trim_mileage": { + "id": 40812, + "make_model_trim_id": 40812, + "fuel_tank_capacity": "22.0", + "combined_mpg": 14, + "epa_city_mpg": 12, + "epa_highway_mpg": 16, + "range_city": 264, + "range_highway": 352, + "battery_capacity_electric": null, + "epa_time_to_charge_hr_240v_electric": null, + "epa_kwh_100_mi_electric": null, + "range_electric": null, + "epa_highway_mpg_electric": null, + "epa_city_mpg_electric": null, + "epa_combined_mpg_electric": null + }, + "make_model_trim_engine": { + "id": 40812, + "make_model_trim_id": 40812, + "engine_type": "gas", + "fuel_type": "premium unleaded (required)", + "cylinders": "V8", + "size": "6.0", + "horsepower_hp": 395, + "horsepower_rpm": 5400, + "torque_ft_lbs": 400, + "torque_rpm": 4400, + "valves": 16, + "valve_timing": null, + "cam_type": "Overhead valves (OHV)", + "drive_type": "all wheel drive", + "transmission": "4-speed automatic" + }, + "make_model_trim_body": { + "id": 40812, + "make_model_trim_id": 40812, + "type": "SUV", + "doors": 5, + "length": "191.8", + "width": "74.7", + "seats": 5, + "height": "67.8", + "wheel_base": "113.0", + "front_track": "62.7", + "rear_track": "62.0", + "ground_clearance": "7.8", + "cargo_capacity": "43.7", + "max_cargo_capacity": "80.1", + "curb_weight": 4663, + "gross_weight": 6001, + "max_payload": 1338, + "max_towing_capacity": 6600 + }, + "make_model": { + "id": 33, + "make_id": 6, + "name": "TrailBlazer", + "make": { + "id": 6, + "name": "Chevrolet" + } + } + }, + { + "id": 40811, + "make_model_id": 33, + "year": 2007, + "name": "SS", + "description": "SS 4dr SUV w/3SS (6.0L 8cyl 4A)", + "msrp": 34885, + "invoice": 32617, + "created": "2023-06-29T21:13:16-04:00", + "modified": "2023-06-29T21:13:16-04:00", + "make_model_trim_mileage": { + "id": 40811, + "make_model_trim_id": 40811, + "fuel_tank_capacity": "22.0", + "combined_mpg": 15, + "epa_city_mpg": 13, + "epa_highway_mpg": 17, + "range_city": 286, + "range_highway": 374, + "battery_capacity_electric": null, + "epa_time_to_charge_hr_240v_electric": null, + "epa_kwh_100_mi_electric": null, + "range_electric": null, + "epa_highway_mpg_electric": null, + "epa_city_mpg_electric": null, + "epa_combined_mpg_electric": null + }, + "make_model_trim_engine": { + "id": 40811, + "make_model_trim_id": 40811, + "engine_type": "gas", + "fuel_type": "premium unleaded (required)", + "cylinders": "V8", + "size": "6.0", + "horsepower_hp": 395, + "horsepower_rpm": 5400, + "torque_ft_lbs": 400, + "torque_rpm": 4400, + "valves": 16, + "valve_timing": null, + "cam_type": "Overhead valves (OHV)", + "drive_type": "rear wheel drive", + "transmission": "4-speed automatic" + }, + "make_model_trim_body": { + "id": 40811, + "make_model_trim_id": 40811, + "type": "SUV", + "doors": 5, + "length": "191.8", + "width": "74.7", + "seats": 5, + "height": "67.8", + "wheel_base": "113.0", + "front_track": "62.7", + "rear_track": "62.0", + "ground_clearance": "7.8", + "cargo_capacity": "43.7", + "max_cargo_capacity": "80.1", + "curb_weight": 4496, + "gross_weight": 6001, + "max_payload": 1505, + "max_towing_capacity": 6800 + }, + "make_model": { + "id": 33, + "make_id": 6, + "name": "TrailBlazer", + "make": { + "id": 6, + "name": "Chevrolet" + } + } + } + ] +} \ No newline at end of file diff --git a/api/tests.py b/api/tests.py new file mode 100644 index 00000000..c2629a3a --- /dev/null +++ b/api/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. \ No newline at end of file diff --git a/api/urls.py b/api/urls.py new file mode 100644 index 00000000..ae254510 --- /dev/null +++ b/api/urls.py @@ -0,0 +1,8 @@ +from django.urls import path +from api import views + + +urlpatterns = [ + path('cars/vin/', views.CarVINViewSet.as_view(), name='car_vin'), + path('login/', views.LoginView.as_view(), name='login'), + ] diff --git a/api/views.py b/api/views.py new file mode 100644 index 00000000..538a6175 --- /dev/null +++ b/api/views.py @@ -0,0 +1,53 @@ +from django.views.decorators.csrf import csrf_exempt +from rest_framework import permissions, status, viewsets +from rest_framework.views import APIView +from rest_framework.response import Response +from django.contrib.auth import authenticate +from django.shortcuts import render +from . import models, serializers +from .services import get_car_data, get_from_cardatabase +from rest_framework.authtoken.models import Token +# from inventory.models import CustomUser +from django.utils.decorators import method_decorator + + +class LoginView(APIView): + permission_classes = [permissions.AllowAny,] + + def post(self, request, *args, **kwargs): + username = request.data.get('username') + password = request.data.get('password') + + if username is None or password is None: + return Response({'error': 'Please provide both username and password.'}, status=status.HTTP_400_BAD_REQUEST) + + user = authenticate(username=username, password=password) + + if not user: + return Response({'error': 'Invalid credentials.'}, status=status.HTTP_401_UNAUTHORIZED) + + token, created = Token.objects.get_or_create(user=user) + return Response({'token': token.key, 'user_id': user.id, 'username': user.username}, status=status.HTTP_200_OK) + + +class CarVINViewSet(APIView): + queryset = models.CarVIN.objects.all().order_by('-created') + serializer_class = serializers.CarVINSerializer + + def get(self, request): + vin = models.CarVIN.objects.all() + serializer = serializers.CarVINSerializer(vin, many=True) + return Response(serializer.data) + + def post(self, request): + serializer = serializers.CarVINSerializer(data=request.data) + if serializer.is_valid(raise_exception=True): + for key, value in serializer.validated_data.items(): + print(key, value) + get_car_data(value) + # get_from_cardatabase(value) + serializer.save() + return Response(serializer.data, status=status.HTTP_201_CREATED) + return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST) + + diff --git a/car_inventory/__init__.py b/car_inventory/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/car_inventory/__pycache__/__init__.cpython-311.pyc b/car_inventory/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..cbc58d29 Binary files /dev/null and b/car_inventory/__pycache__/__init__.cpython-311.pyc differ diff --git a/car_inventory/__pycache__/settings.cpython-311.pyc b/car_inventory/__pycache__/settings.cpython-311.pyc new file mode 100644 index 00000000..222d01de Binary files /dev/null and b/car_inventory/__pycache__/settings.cpython-311.pyc differ diff --git a/car_inventory/__pycache__/urls.cpython-311.pyc b/car_inventory/__pycache__/urls.cpython-311.pyc new file mode 100644 index 00000000..1580682d Binary files /dev/null and b/car_inventory/__pycache__/urls.cpython-311.pyc differ diff --git a/car_inventory/__pycache__/wsgi.cpython-311.pyc b/car_inventory/__pycache__/wsgi.cpython-311.pyc new file mode 100644 index 00000000..ada8fdac Binary files /dev/null and b/car_inventory/__pycache__/wsgi.cpython-311.pyc differ diff --git a/car_inventory/asgi.py b/car_inventory/asgi.py new file mode 100644 index 00000000..e7563904 --- /dev/null +++ b/car_inventory/asgi.py @@ -0,0 +1,27 @@ +""" +ASGI config for car_inventory project. + +It exposes the ASGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/5.0/howto/deployment/asgi/ +""" + +# asgi.py + +import os +from django.core.asgi import get_asgi_application +from channels.routing import ProtocolTypeRouter, URLRouter +from channels.auth import AuthMiddlewareStack +from api import routing + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'car_inventory.settings') + +application = ProtocolTypeRouter({ + "http": get_asgi_application(), + "websocket": AuthMiddlewareStack( + URLRouter( + routing.websocket_urlpatterns + ) + ), +}) diff --git a/car_inventory/settings.py b/car_inventory/settings.py new file mode 100644 index 00000000..0b546204 --- /dev/null +++ b/car_inventory/settings.py @@ -0,0 +1,255 @@ +""" +Django settings for car_inventory project. + +Generated by 'django-admin startproject' using Django 5.0.6. + +For more information on this file, see +https://docs.djangoproject.com/en/5.0/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/5.0/ref/settings/ +""" + +from pathlib import Path +import os +from django.utils.translation import gettext_lazy as _ + +# Build paths inside the project like this: BASE_DIR / 'subdir'. +BASE_DIR = Path(__file__).resolve().parent.parent + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/5.0/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = 'django-insecure-gc9bh4*3=b6hihdnaom0edjsbxh$5t)aap@e8p&340r7)*)qb8' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = ['10.10.1.109', 'localhost', '127.0.0.1', '192.168.1.135', '172.20.10.4'] + +# Application definition + +INSTALLED_APPS = [ + 'django.contrib.sites', + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'inventory.apps.InventoryConfig', + 'api.apps.ApiConfig', + + # Other Apps to select what we need before deploy + 'allauth', + 'allauth.account', + 'allauth.socialaccount', + 'allauth.socialaccount.providers.google', + 'debug_toolbar', + 'silk', + 'django_prometheus', + 'django_tables2', + "django_bootstrap5", + "crispy_forms", + "crispy_bootstrap5", + "phonenumber_field", + "rest_framework", + 'rest_framework.authtoken', + 'django_extensions', + 'djangoviz', + 'django_ledger', + 'djmoney', + 'sslserver', + +] + +SITE_ID = 1 + +MIDDLEWARE = [ + 'django_prometheus.middleware.PrometheusBeforeMiddleware', + 'django.middleware.security.SecurityMiddleware', + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.locale.LocaleMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', + 'allauth.account.middleware.AccountMiddleware', + 'debug_toolbar.middleware.DebugToolbarMiddleware', + 'silk.middleware.SilkyMiddleware', + 'django_prometheus.middleware.PrometheusAfterMiddleware', + +] +ROOT_URLCONF = 'car_inventory.urls' + +TEMPLATES = [ + { + "BACKEND": "django.template.backends.django.DjangoTemplates", + "DIRS": [os.path.join(BASE_DIR, 'templates')], + "APP_DIRS": True, + "OPTIONS": { + "context_processors": [ + "django.template.context_processors.debug", + "django.template.context_processors.request", + "django.contrib.auth.context_processors.auth", + "django.contrib.messages.context_processors.messages", + "dj_shop_cart.context_processors.cart", + ], + }, + }, +] + +WSGI_APPLICATION = 'car_inventory.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/5.0/ref/settings/#databases + +DATABASES = { + "default": { + "ENGINE": "django_prometheus.db.backends.postgresql", + "NAME": "secondhaikal", + "USER": "f95166", + "PASSWORD": "Kfsh&rc9788", + "HOST": "localhost", + "PORT": 5432, + } +} + +# Password validation +# https://docs.djangoproject.com/en/5.0/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + { + 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + }, +] + +# Authentications + +LOGIN_REDIRECT_URL = '/' +ACCOUNT_LOGOUT_REDIRECT_URL = '/' +ACCOUNT_EMAIL_VERIFICATION = "none" + +AUTHENTICATION_BACKENDS = [ + "django.contrib.auth.backends.ModelBackend", + "allauth.account.auth_backends.AuthenticationBackend", +] + +REST_FRAMEWORK = { + 'DEFAULT_AUTHENTICATION_CLASSES': [ + 'rest_framework.authentication.TokenAuthentication', + # 'rest_framework.authentication.SessionAuthentication', + # 'dj_rest_auth.jwt_auth.JWTCookieAuthentication', + ], + 'DEFAULT_PERMISSION_CLASSES': [ + # 'rest_framework.permissions.IsAuthenticated', + 'rest_framework.permissions.AllowAny', + ], +} + +# REST_AUTH = { +# 'USE_JWT': True, +# 'JWT_AUTH_COOKIE': 'jwt-auth', +# } + +# Email backend +EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend" + +STATIC_URL = '/static/' +MEDIA_URL = '/images/' +STATICFILES_DIRS = [ + BASE_DIR / 'static' +] +STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles') +MEDIA_ROOT = os.path.join(BASE_DIR, 'static/images') + +# Default primary key field type +# https://docs.djangoproject.com/en/5.0/ref/settings/#default-auto-field + +DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' + +# Internationalization +# https://docs.djangoproject.com/en/5.0/topics/i18n/ + + +LOCALE_PATHS = ( + os.path.join(BASE_DIR, 'locale'), +) + +LANGUAGE_COOKIE_NAME = 'django_language' + +LANGUAGE_CODE = "en" + +USE_I18N = True + +USE_L10N = True + +USE_TZ = True + +LANGUAGES = [ + ('en', _('English')), + ('ar', _('Arabic')), +] + +TIME_ZONE = "Asia/Riyadh" + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/5.0/howto/static-files/ + +SILKY_PYTHON_PROFILER = True + +DJANGO_TABLES2_TEMPLATE = "django_tables2/bootstrap5-responsive.html" +DJANGO_TABLES2_TABLE_ATTRS = { + 'class': 'table table-sm table-hover table-responsive-sm', + 'thead': { + 'class': 'table-secondary', + }, + 'tbody': { + 'class': 'fw-light', + } +} + +CRISPY_ALLOWED_TEMPLATE_PACKS = "bootstrap5" + +CRISPY_TEMPLATE_PACK = "bootstrap5" + +# DEFAULT_CURRENCY = 'SAR' + +# API KEYS + +OPENAI_API_KEY = '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' +APP_ID = '367974ed' +APP_KEY = '046b0412c1b4d3f8c39ec6375d6f3030' +CLIENT_ID = '94142c27-2536-47e9-8e28-9ca7728b9442' + +LOGGING = { + 'version': 1, + 'disable_existing_loggers': False, + 'handlers': { + 'console': { + 'class': 'logging.StreamHandler', + }, + }, + 'loggers': { + 'django': { + 'handlers': ['console'], + 'level': 'INFO', # Change to WARNING or ERROR as needed + }, + 'openai': { + 'handlers': ['console'], + 'level': 'WARNING', # Suppress detailed logs from OpenAI client + }, + }, +} diff --git a/car_inventory/urls.py b/car_inventory/urls.py new file mode 100644 index 00000000..2f6add1b --- /dev/null +++ b/car_inventory/urls.py @@ -0,0 +1,27 @@ +from django.contrib import admin +from django.urls import path, include +from django.conf.urls.static import static +from django.conf import settings +from django.conf.urls.i18n import i18n_patterns +from inventory import views +import debug_toolbar + +urlpatterns = [ + path('__debug__/', include(debug_toolbar.urls)), + path('silk/', include('silk.urls', namespace='silk')), + path('api-auth/', include('rest_framework.urls')), + path('api/', include('api.urls')), + path('dj-rest-auth/', include('dj_rest_auth.urls')), + +] +urlpatterns += i18n_patterns( + path('admin/', admin.site.urls), + path('switch_language/', views.switch_language, name='switch_language'), + path('accounts/', include('allauth.urls')), + path('prometheus/', include('django_prometheus.urls')), + path('', include('inventory.urls')), + path('ledger/', include('django_ledger.urls', namespace='django_ledger')), + +) + +urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) diff --git a/car_inventory/wsgi.py b/car_inventory/wsgi.py new file mode 100644 index 00000000..1e65e538 --- /dev/null +++ b/car_inventory/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for car_inventory project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/5.0/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'car_inventory.settings') + +application = get_wsgi_application() diff --git a/carmake_backup.json b/carmake_backup.json new file mode 100644 index 00000000..161672da --- /dev/null +++ b/carmake_backup.json @@ -0,0 +1,4012 @@ +[ +{ + "model": "inventory.carmake", + "pk": 1, + "fields": { + "name": "AC", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 2, + "fields": { + "name": "Acura", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3, + "fields": { + "name": "Alfa Romeo", + "arabic_name": "ألفا روميو", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 4, + "fields": { + "name": "Alpine", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5, + "fields": { + "name": "AM General", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 6, + "fields": { + "name": "Ariel", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 7, + "fields": { + "name": "Aro", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 8, + "fields": { + "name": "Asia", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 9, + "fields": { + "name": "Aston Martin", + "arabic_name": "أستون مارتن", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 10, + "fields": { + "name": "Audi", + "arabic_name": "أودي", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 11, + "fields": { + "name": "Austin", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 12, + "fields": { + "name": "Autobianchi", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 13, + "fields": { + "name": "Baltijas Dzips", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 14, + "fields": { + "name": "Beijing", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 15, + "fields": { + "name": "Bentley", + "arabic_name": "بنتلي", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 16, + "fields": { + "name": "Bertone", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 17, + "fields": { + "name": "Bitter", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 18, + "fields": { + "name": "BMW", + "arabic_name": "بي إم دبليو", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 20, + "fields": { + "name": "Brabus", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 21, + "fields": { + "name": "Brilliance", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 22, + "fields": { + "name": "Bristol", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 23, + "fields": { + "name": "Bufori", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 24, + "fields": { + "name": "Bugatti", + "arabic_name": "بوجاتي", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 25, + "fields": { + "name": "Buick", + "arabic_name": "بيوك", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 26, + "fields": { + "name": "BYD", + "arabic_name": "بي واي دي", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 27, + "fields": { + "name": "Byvin", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 28, + "fields": { + "name": "Cadillac", + "arabic_name": "كاديلاك", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 29, + "fields": { + "name": "Callaway", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 30, + "fields": { + "name": "Carbodies", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 31, + "fields": { + "name": "Caterham", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 32, + "fields": { + "name": "Changan", + "arabic_name": "شانجان", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 33, + "fields": { + "name": "ChangFeng", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 34, + "fields": { + "name": "Chery", + "arabic_name": "شيري", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 35, + "fields": { + "name": "Chevrolet", + "arabic_name": "شيفروليه", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 36, + "fields": { + "name": "Chrysler", + "arabic_name": "كرايسلر", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 37, + "fields": { + "name": "Citroën", + "arabic_name": "سيتروين", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 38, + "fields": { + "name": "Cizeta", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 39, + "fields": { + "name": "Coggiola", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 40, + "fields": { + "name": "Dacia", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 41, + "fields": { + "name": "Dadi", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 42, + "fields": { + "name": "Daewoo", + "arabic_name": "دايو", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 44, + "fields": { + "name": "Daihatsu", + "arabic_name": "دايهاتسو", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 45, + "fields": { + "name": "Daimler", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 46, + "fields": { + "name": "Dallas", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 47, + "fields": { + "name": "Datsun", + "arabic_name": "داتسون", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 48, + "fields": { + "name": "De Tomaso", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 49, + "fields": { + "name": "DeLorean", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 50, + "fields": { + "name": "Derways", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 51, + "fields": { + "name": "Dodge", + "arabic_name": "دودج", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 52, + "fields": { + "name": "DongFeng", + "arabic_name": "دونغفنغ", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 53, + "fields": { + "name": "Doninvest", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 54, + "fields": { + "name": "Donkervoort", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 55, + "fields": { + "name": "E-Car", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 56, + "fields": { + "name": "Eagle", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 57, + "fields": { + "name": "Eagle Cars", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 59, + "fields": { + "name": "FAW", + "arabic_name": "فاو", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 60, + "fields": { + "name": "Ferrari", + "arabic_name": "فيراري", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 61, + "fields": { + "name": "Fiat", + "arabic_name": "فيات", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 62, + "fields": { + "name": "Fisker", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 63, + "fields": { + "name": "Ford", + "arabic_name": "فورد", + "logo": "car_make/Ford2.webp", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 64, + "fields": { + "name": "Foton", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 65, + "fields": { + "name": "FSO", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 66, + "fields": { + "name": "Fuqi", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 67, + "fields": { + "name": "Geely", + "arabic_name": "جيلي", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 68, + "fields": { + "name": "Geo", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 69, + "fields": { + "name": "GMC", + "arabic_name": "جي إم سي", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 70, + "fields": { + "name": "Gonow", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 71, + "fields": { + "name": "Great Wall", + "arabic_name": "جريت وول", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 72, + "fields": { + "name": "Hafei", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 73, + "fields": { + "name": "Haima", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 74, + "fields": { + "name": "Hindustan", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 75, + "fields": { + "name": "Holden", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 76, + "fields": { + "name": "Honda", + "arabic_name": "هوندا", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 77, + "fields": { + "name": "HuangHai", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 78, + "fields": { + "name": "Hummer", + "arabic_name": "همر", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 79, + "fields": { + "name": "Hyundai", + "arabic_name": "هيونداي", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 80, + "fields": { + "name": "Infiniti", + "arabic_name": "إنفينيتي", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 81, + "fields": { + "name": "Innocenti", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 82, + "fields": { + "name": "Invicta", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 83, + "fields": { + "name": "Iran Khodro", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 84, + "fields": { + "name": "Isdera", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 85, + "fields": { + "name": "Isuzu", + "arabic_name": "إيسوزو", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 86, + "fields": { + "name": "IVECO", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 87, + "fields": { + "name": "JAC", + "arabic_name": "جاك", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 88, + "fields": { + "name": "Jaguar", + "arabic_name": "جاغوار", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 89, + "fields": { + "name": "Jeep", + "arabic_name": "جيب", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 90, + "fields": { + "name": "Jensen", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 91, + "fields": { + "name": "JMC", + "arabic_name": "جاي إم سي", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 92, + "fields": { + "name": "Kia", + "arabic_name": "كيا", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 93, + "fields": { + "name": "Koenigsegg", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 95, + "fields": { + "name": "Lamborghini", + "arabic_name": "لامبورغيني", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 96, + "fields": { + "name": "Lancia", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 97, + "fields": { + "name": "Land Rover", + "arabic_name": "لاند روفر", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 98, + "fields": { + "name": "Landwind", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 99, + "fields": { + "name": "Lexus", + "arabic_name": "لكزس", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 100, + "fields": { + "name": "Liebao Motor", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 101, + "fields": { + "name": "Lifan", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 102, + "fields": { + "name": "Lincoln", + "arabic_name": "لينكولن", + "logo": "car_make/Lincoln.webp", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 103, + "fields": { + "name": "Lotus", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 104, + "fields": { + "name": "LTI", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 105, + "fields": { + "name": "Luxgen", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 106, + "fields": { + "name": "Mahindra", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 107, + "fields": { + "name": "Marcos", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 108, + "fields": { + "name": "Marlin", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 109, + "fields": { + "name": "Marussia", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 110, + "fields": { + "name": "Maruti", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 111, + "fields": { + "name": "Maserati", + "arabic_name": "مازيراتي", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 112, + "fields": { + "name": "Maybach", + "arabic_name": "مايباخ", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 113, + "fields": { + "name": "Mazda", + "arabic_name": "مازدا", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 114, + "fields": { + "name": "McLaren", + "arabic_name": "ماكلارين", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 115, + "fields": { + "name": "Mega", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 116, + "fields": { + "name": "Mercedes-Benz", + "arabic_name": "مرسيدس-بنز", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 117, + "fields": { + "name": "Mercury", + "arabic_name": "ميركوري", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 118, + "fields": { + "name": "Metrocab", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 119, + "fields": { + "name": "MG", + "arabic_name": "إم جي", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 120, + "fields": { + "name": "Microcar", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 121, + "fields": { + "name": "Minelli", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 122, + "fields": { + "name": "Mini", + "arabic_name": "ميني", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 123, + "fields": { + "name": "Mitsubishi", + "arabic_name": "ميتسوبيشي", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 124, + "fields": { + "name": "Mitsuoka", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 125, + "fields": { + "name": "Morgan", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 126, + "fields": { + "name": "Morris", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 127, + "fields": { + "name": "Nissan", + "arabic_name": "نيسان", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 128, + "fields": { + "name": "Noble", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 129, + "fields": { + "name": "Oldsmobile", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 130, + "fields": { + "name": "Opel", + "arabic_name": "أوبل", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 131, + "fields": { + "name": "Osca", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 132, + "fields": { + "name": "Pagani", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 133, + "fields": { + "name": "Panoz", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 134, + "fields": { + "name": "Perodua", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 135, + "fields": { + "name": "Peugeot", + "arabic_name": "بيجو", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 136, + "fields": { + "name": "Piaggio", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 137, + "fields": { + "name": "Plymouth", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 138, + "fields": { + "name": "Pontiac", + "arabic_name": "بونتياك", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 139, + "fields": { + "name": "Porsche", + "arabic_name": "بورش", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 140, + "fields": { + "name": "Premier", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 141, + "fields": { + "name": "Proton", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 142, + "fields": { + "name": "PUCH", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 143, + "fields": { + "name": "Puma", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 144, + "fields": { + "name": "Qoros", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 145, + "fields": { + "name": "Qvale", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 146, + "fields": { + "name": "Reliant", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 147, + "fields": { + "name": "Renault", + "arabic_name": "رينو", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 148, + "fields": { + "name": "Samsung", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 149, + "fields": { + "name": "Rolls-Royce", + "arabic_name": "رولز رويس", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 150, + "fields": { + "name": "Ronart", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 151, + "fields": { + "name": "Rover", + "arabic_name": "روفر", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 152, + "fields": { + "name": "Saab", + "arabic_name": "ساب", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 153, + "fields": { + "name": "Saleen", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 154, + "fields": { + "name": "Santana", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 155, + "fields": { + "name": "Saturn", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 156, + "fields": { + "name": "Scion", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 157, + "fields": { + "name": "SEAT", + "arabic_name": "سيات", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 158, + "fields": { + "name": "ShuangHuan", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 159, + "fields": { + "name": "Skoda", + "arabic_name": "سكودا", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 160, + "fields": { + "name": "Smart", + "arabic_name": "سمارت", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 161, + "fields": { + "name": "Soueast", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 162, + "fields": { + "name": "Spectre", + "arabic_name": "سبيكتر", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 163, + "fields": { + "name": "Spyker", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 165, + "fields": { + "name": "SsangYong", + "arabic_name": "سانج يونج", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 166, + "fields": { + "name": "Subaru", + "arabic_name": "سوبارو", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 167, + "fields": { + "name": "Suzuki", + "arabic_name": "سوزوكي", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 168, + "fields": { + "name": "Talbot", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 169, + "fields": { + "name": "Tata", + "arabic_name": "تاتا", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 170, + "fields": { + "name": "Tatra", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 171, + "fields": { + "name": "Tazzari", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 172, + "fields": { + "name": "Tesla", + "arabic_name": "تسلا", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 173, + "fields": { + "name": "Tianma", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 174, + "fields": { + "name": "Tianye", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 175, + "fields": { + "name": "Tofas", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 176, + "fields": { + "name": "Toyota", + "arabic_name": "تويوتا", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 177, + "fields": { + "name": "Trabant", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 178, + "fields": { + "name": "Tramontana", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 179, + "fields": { + "name": "Triumph", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 180, + "fields": { + "name": "TVR", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 181, + "fields": { + "name": "Vauxhall", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 182, + "fields": { + "name": "Vector", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 183, + "fields": { + "name": "Venturi", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 184, + "fields": { + "name": "Volkswagen", + "arabic_name": "فولكس فاجن", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 185, + "fields": { + "name": "Volvo", + "arabic_name": "فولفو", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 186, + "fields": { + "name": "Vortex", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 187, + "fields": { + "name": "Wartburg", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 188, + "fields": { + "name": "Westfield", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 189, + "fields": { + "name": "Wiesmann", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 190, + "fields": { + "name": "Xin Kai", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 191, + "fields": { + "name": "Zastava", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 192, + "fields": { + "name": "Zotye", + "arabic_name": "زوتي", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 193, + "fields": { + "name": "ZX", + "arabic_name": "زد إكس", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 211, + "fields": { + "name": "Yo-mobil", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 212, + "fields": { + "name": "Autocam", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 215, + "fields": { + "name": "VAZ (Lada)", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 216, + "fields": { + "name": "GAZ", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 217, + "fields": { + "name": "ZAZ", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 218, + "fields": { + "name": "ZIL", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 219, + "fields": { + "name": "IZH", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 221, + "fields": { + "name": "Kanonir", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 222, + "fields": { + "name": "LuAZ", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 223, + "fields": { + "name": "Moskvich", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 224, + "fields": { + "name": "SMZ", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 226, + "fields": { + "name": "TagAZ", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 227, + "fields": { + "name": "UAZ", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 280, + "fields": { + "name": "Ultima", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 282, + "fields": { + "name": "Hawtai", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 284, + "fields": { + "name": "Renaissance Cars", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 286, + "fields": { + "name": "Paykan", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 289, + "fields": { + "name": "Gordon", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 290, + "fields": { + "name": "Haval", + "arabic_name": "هافال", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 291, + "fields": { + "name": "Alpina", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3589, + "fields": { + "name": "DS", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3590, + "fields": { + "name": "PGO", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3591, + "fields": { + "name": "Zenvo", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3619, + "fields": { + "name": "Rezvani", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3620, + "fields": { + "name": "Rimac", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3664, + "fields": { + "name": "Adler", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3665, + "fields": { + "name": "DeSoto", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3666, + "fields": { + "name": "Packard", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3667, + "fields": { + "name": "Willys", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3668, + "fields": { + "name": "Combat", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3676, + "fields": { + "name": "Borgward", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3689, + "fields": { + "name": "Ravon", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3690, + "fields": { + "name": "ZiS", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3705, + "fields": { + "name": "AMC", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3706, + "fields": { + "name": "Zenos", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3728, + "fields": { + "name": "W Motors", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3739, + "fields": { + "name": "Hudson", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3749, + "fields": { + "name": "Austin Healey", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3751, + "fields": { + "name": "BAW", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3752, + "fields": { + "name": "Chana", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3753, + "fields": { + "name": "Changhe", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3754, + "fields": { + "name": "DFSK", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3755, + "fields": { + "name": "Efini", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3756, + "fields": { + "name": "Excalibur", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3757, + "fields": { + "name": "Groz", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3760, + "fields": { + "name": "Hurtan", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3761, + "fields": { + "name": "Jiangnan", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3762, + "fields": { + "name": "Jinbei", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3764, + "fields": { + "name": "Maxus", + "arabic_name": "ماكسوس", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 3765, + "fields": { + "name": "Monte Carlo", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3767, + "fields": { + "name": "Nysa", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3771, + "fields": { + "name": "Shifeng", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3772, + "fields": { + "name": "SMA", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3774, + "fields": { + "name": "Wuling", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3815, + "fields": { + "name": "Genesis", + "arabic_name": "جينيسيس", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 3816, + "fields": { + "name": "International", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3821, + "fields": { + "name": "Zibar", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 3822, + "fields": { + "name": "Other car", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4142, + "fields": { + "name": "RAM", + "arabic_name": "رام", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 4144, + "fields": { + "name": "Aurus", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4145, + "fields": { + "name": "Trumpchi", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4146, + "fields": { + "name": "Abarth", + "arabic_name": "أبارث", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 4147, + "fields": { + "name": "Baic", + "arabic_name": "بايك", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 4148, + "fields": { + "name": "DFM", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4149, + "fields": { + "name": "Saipa", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4154, + "fields": { + "name": "Apal", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4155, + "fields": { + "name": "Bajaj", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4156, + "fields": { + "name": "Batmobile", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4157, + "fields": { + "name": "Bilenkin", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4158, + "fields": { + "name": "Cord", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4159, + "fields": { + "name": "Delage", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4160, + "fields": { + "name": "DKW", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4162, + "fields": { + "name": "DW Hower", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4163, + "fields": { + "name": "Flanker", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4164, + "fields": { + "name": "GAC", + "arabic_name": "جاك", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 4165, + "fields": { + "name": "GP", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4166, + "fields": { + "name": "Hanomag", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4167, + "fields": { + "name": "Hispano-Suiza", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4168, + "fields": { + "name": "Horch", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4169, + "fields": { + "name": "KTM AG", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4170, + "fields": { + "name": "Ligier", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4171, + "fields": { + "name": "Lucid", + "arabic_name": "لوسيد", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 4172, + "fields": { + "name": "Nash", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4173, + "fields": { + "name": "Rambler", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4174, + "fields": { + "name": "Renaissance", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4175, + "fields": { + "name": "Renault Samsung", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4176, + "fields": { + "name": "Rinspeed", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4177, + "fields": { + "name": "Shanghai Maple", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4178, + "fields": { + "name": "Simca", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4179, + "fields": { + "name": "Steyr", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4180, + "fields": { + "name": "Studebaker", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4181, + "fields": { + "name": "Think", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4182, + "fields": { + "name": "Wanderer", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4183, + "fields": { + "name": "Racing car", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4184, + "fields": { + "name": "Logem", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4186, + "fields": { + "name": "Dallara", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4187, + "fields": { + "name": "Heinkel", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4188, + "fields": { + "name": "Yulon", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4189, + "fields": { + "name": "Bio auto", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4190, + "fields": { + "name": "Deco Rides", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4191, + "fields": { + "name": "Sears", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4192, + "fields": { + "name": "Xpeng", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4195, + "fields": { + "name": "Roewe", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4196, + "fields": { + "name": "CheryExeed", + "arabic_name": "شيري إكسيد", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 4197, + "fields": { + "name": "LiXiang", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4198, + "fields": { + "name": "Nio", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4199, + "fields": { + "name": "Hennessey", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4200, + "fields": { + "name": "Polestar", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4201, + "fields": { + "name": "Auburn", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4202, + "fields": { + "name": "Weltmeister", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4203, + "fields": { + "name": "Cupra", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4204, + "fields": { + "name": "Goggomobil", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4205, + "fields": { + "name": "HSV", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4206, + "fields": { + "name": "Matra", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4207, + "fields": { + "name": "Messerschmitt", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4208, + "fields": { + "name": "Pierce-Arrow", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4209, + "fields": { + "name": "VUHL", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4210, + "fields": { + "name": "Ciimo", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4211, + "fields": { + "name": "Everus", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4212, + "fields": { + "name": "Facel Vega", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4213, + "fields": { + "name": "Hongqi", + "arabic_name": "هونغ تشي", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 4214, + "fields": { + "name": "Hozon", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4215, + "fields": { + "name": "Aion", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4216, + "fields": { + "name": "Blaval", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4217, + "fields": { + "name": "Skywell", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4307, + "fields": { + "name": "Voyah", + "arabic_name": "فيا", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 4308, + "fields": { + "name": "Rivian", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4309, + "fields": { + "name": "Zeekr", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4310, + "fields": { + "name": "Leapmotor", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4311, + "fields": { + "name": "Tank", + "arabic_name": "تانك", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 4312, + "fields": { + "name": "Arcfox", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4313, + "fields": { + "name": "Auto Union", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4314, + "fields": { + "name": "Denza", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4315, + "fields": { + "name": "Evolute", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4316, + "fields": { + "name": "HiPhi", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4317, + "fields": { + "name": "Kaiyi", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4318, + "fields": { + "name": "Omoda", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4319, + "fields": { + "name": "DR", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4320, + "fields": { + "name": "Mobilize", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4321, + "fields": { + "name": "Oshan", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4322, + "fields": { + "name": "Aito", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4323, + "fields": { + "name": "Baojun", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4324, + "fields": { + "name": "Jetour", + "arabic_name": "جيتور", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 4325, + "fields": { + "name": "Jetta", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4326, + "fields": { + "name": "Lynk & Co", + "arabic_name": "لينك آند كو", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 4327, + "fields": { + "name": "Seres", + "arabic_name": "سيريس", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 4361, + "fields": { + "name": "ORA", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4362, + "fields": { + "name": "WEY", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4363, + "fields": { + "name": "Avatr", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4364, + "fields": { + "name": "Dongfeng Forthing", + "arabic_name": "دونغفنغ فورثينغ", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 4365, + "fields": { + "name": "Rising Auto", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4366, + "fields": { + "name": "IM Motors (Zhiji)", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4367, + "fields": { + "name": "VinFast", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4368, + "fields": { + "name": "Livan", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4369, + "fields": { + "name": "SWM", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4947, + "fields": { + "name": "EXEED", + "arabic_name": "إكسيد", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 4948, + "fields": { + "name": "Changan Kuayue (KYC)", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4949, + "fields": { + "name": "VGV", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4950, + "fields": { + "name": "Russo-Balt", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4951, + "fields": { + "name": "Aiways", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4952, + "fields": { + "name": "KYC", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4953, + "fields": { + "name": "Skyworth", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 4954, + "fields": { + "name": "Yema", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5037, + "fields": { + "name": "Overland", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5038, + "fields": { + "name": "Belgee", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5039, + "fields": { + "name": "Dayun", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5040, + "fields": { + "name": "Enoreve", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5041, + "fields": { + "name": "Enovate", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5042, + "fields": { + "name": "Jaecoo", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5043, + "fields": { + "name": "JMEV", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5044, + "fields": { + "name": "Jonway", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5045, + "fields": { + "name": "KG Mobility", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5046, + "fields": { + "name": "Qiantu", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5047, + "fields": { + "name": "Qingling", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5048, + "fields": { + "name": "Radar", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5049, + "fields": { + "name": "Rox", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5050, + "fields": { + "name": "Sollers", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5051, + "fields": { + "name": "Thairung", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5052, + "fields": { + "name": "Venucia", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5053, + "fields": { + "name": "ATOM", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5128, + "fields": { + "name": "Hycan", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5129, + "fields": { + "name": "Qiyuan", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5130, + "fields": { + "name": "XiaoPaoChe (SSC)", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5233, + "fields": { + "name": "Fengon", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5234, + "fields": { + "name": "M-Hero", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5235, + "fields": { + "name": "Oting", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5236, + "fields": { + "name": "Rossa", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5238, + "fields": { + "name": "Huazi", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5239, + "fields": { + "name": "iCar", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5240, + "fields": { + "name": "Luxeed", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5241, + "fields": { + "name": "XEV", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5242, + "fields": { + "name": "Xiaomi", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5305, + "fields": { + "name": "Hanteng", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5306, + "fields": { + "name": "Kawei", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5335, + "fields": { + "name": "Ineos", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5336, + "fields": { + "name": "Karma", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5337, + "fields": { + "name": "Seres Aito", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5338, + "fields": { + "name": "Solaris", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5339, + "fields": { + "name": "Yipai", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5340, + "fields": { + "name": "Amberauto", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5341, + "fields": { + "name": "Polar Stone (Jishi)", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5342, + "fields": { + "name": "Xcite", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5343, + "fields": { + "name": "Coda", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5405, + "fields": { + "name": "Aixam", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5406, + "fields": { + "name": "Ambertruck", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5407, + "fields": { + "name": "Huaihai (Hoann)", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5408, + "fields": { + "name": "Maple", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5409, + "fields": { + "name": "Maxeed", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5410, + "fields": { + "name": "Volga", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5481, + "fields": { + "name": "Exlantix", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5482, + "fields": { + "name": "LEVC", + "arabic_name": "-", + "logo": "", + "is_sa_import": false + } +}, +{ + "model": "inventory.carmake", + "pk": 5483, + "fields": { + "name": "Rayton Fissore", + "arabic_name": "رايتون فيسور", + "logo": "", + "is_sa_import": true + } +}, +{ + "model": "inventory.carmake", + "pk": 5484, + "fields": { + "name": "Stelato", + "arabic_name": "ستيلاتو", + "logo": "", + "is_sa_import": true + } +} +] diff --git a/carmodel_backup.json b/carmodel_backup.json new file mode 100644 index 00000000..b127f51f --- /dev/null +++ b/carmodel_backup.json @@ -0,0 +1,45641 @@ +[ +{ + "model": "inventory.carmodel", + "pk": 1, + "fields": { + "id_car_make": 1, + "name": "378 GT Zagato", + "arabic_name": "جي تي زاغاتو 378" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2, + "fields": { + "id_car_make": 1, + "name": "ACE", + "arabic_name": "ايه سي إي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 3, + "fields": { + "id_car_make": 1, + "name": "Aceca", + "arabic_name": "أسيكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 4, + "fields": { + "id_car_make": 1, + "name": "Cobra", + "arabic_name": "كوبرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 5, + "fields": { + "id_car_make": 2, + "name": "CL", + "arabic_name": "سي إل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 6, + "fields": { + "id_car_make": 2, + "name": "CSX", + "arabic_name": "سي إس إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 7, + "fields": { + "id_car_make": 2, + "name": "EL", + "arabic_name": "إي إل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 8, + "fields": { + "id_car_make": 2, + "name": "ILX", + "arabic_name": "أي إل إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 9, + "fields": { + "id_car_make": 2, + "name": "Integra", + "arabic_name": "إنتيجرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 10, + "fields": { + "id_car_make": 2, + "name": "Legend", + "arabic_name": "ليجند" + } +}, +{ + "model": "inventory.carmodel", + "pk": 11, + "fields": { + "id_car_make": 2, + "name": "MDX", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 12, + "fields": { + "id_car_make": 2, + "name": "NSX", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 13, + "fields": { + "id_car_make": 2, + "name": "RDX", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 14, + "fields": { + "id_car_make": 2, + "name": "RL", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 15, + "fields": { + "id_car_make": 2, + "name": "RLX", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 16, + "fields": { + "id_car_make": 2, + "name": "RSX", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 17, + "fields": { + "id_car_make": 2, + "name": "SLX", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 18, + "fields": { + "id_car_make": 2, + "name": "TL", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19, + "fields": { + "id_car_make": 2, + "name": "TSX", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20, + "fields": { + "id_car_make": 2, + "name": "ZDX", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 21, + "fields": { + "id_car_make": 3, + "name": "145", + "arabic_name": "145" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22, + "fields": { + "id_car_make": 3, + "name": "146", + "arabic_name": "146" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23, + "fields": { + "id_car_make": 3, + "name": "147", + "arabic_name": "147" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24, + "fields": { + "id_car_make": 3, + "name": "155", + "arabic_name": "155" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25, + "fields": { + "id_car_make": 3, + "name": "156", + "arabic_name": "156" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26, + "fields": { + "id_car_make": 3, + "name": "159", + "arabic_name": "159" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27, + "fields": { + "id_car_make": 3, + "name": "164", + "arabic_name": "164" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28, + "fields": { + "id_car_make": 3, + "name": "166", + "arabic_name": "166" + } +}, +{ + "model": "inventory.carmodel", + "pk": 29, + "fields": { + "id_car_make": 3, + "name": "33", + "arabic_name": "33" + } +}, +{ + "model": "inventory.carmodel", + "pk": 30, + "fields": { + "id_car_make": 3, + "name": "4C", + "arabic_name": "4 سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 31, + "fields": { + "id_car_make": 3, + "name": "Alfa 6", + "arabic_name": "ألفا 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 32, + "fields": { + "id_car_make": 3, + "name": "75", + "arabic_name": "75" + } +}, +{ + "model": "inventory.carmodel", + "pk": 33, + "fields": { + "id_car_make": 3, + "name": "8C Competizione", + "arabic_name": "8سي كومبيتيزيون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 34, + "fields": { + "id_car_make": 3, + "name": "90", + "arabic_name": "90" + } +}, +{ + "model": "inventory.carmodel", + "pk": 35, + "fields": { + "id_car_make": 3, + "name": "Alfasud", + "arabic_name": "الفاسود" + } +}, +{ + "model": "inventory.carmodel", + "pk": 36, + "fields": { + "id_car_make": 3, + "name": "Alfetta", + "arabic_name": "ألفيتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 37, + "fields": { + "id_car_make": 3, + "name": "Arna", + "arabic_name": "آرنا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 38, + "fields": { + "id_car_make": 3, + "name": "Brera", + "arabic_name": "بريرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 39, + "fields": { + "id_car_make": 3, + "name": "Giulia", + "arabic_name": "جوليا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 40, + "fields": { + "id_car_make": 3, + "name": "Giulietta", + "arabic_name": "جوليتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 41, + "fields": { + "id_car_make": 3, + "name": "GT", + "arabic_name": "جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 42, + "fields": { + "id_car_make": 3, + "name": "GTA Coupe", + "arabic_name": "جي تي ايه كوبيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 43, + "fields": { + "id_car_make": 3, + "name": "GTV", + "arabic_name": "جي تي في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 44, + "fields": { + "id_car_make": 3, + "name": "MiTo", + "arabic_name": "ميتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 45, + "fields": { + "id_car_make": 3, + "name": "Montreal", + "arabic_name": "مونتريال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 46, + "fields": { + "id_car_make": 3, + "name": "RZ", + "arabic_name": "آر زد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 47, + "fields": { + "id_car_make": 3, + "name": "Spider", + "arabic_name": "سبيايدر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 48, + "fields": { + "id_car_make": 3, + "name": "Sprint", + "arabic_name": "سبرينت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 49, + "fields": { + "id_car_make": 3, + "name": "SZ", + "arabic_name": "إس زد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 50, + "fields": { + "id_car_make": 4, + "name": "A110", + "arabic_name": "ايه 110" + } +}, +{ + "model": "inventory.carmodel", + "pk": 51, + "fields": { + "id_car_make": 4, + "name": "A310", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 52, + "fields": { + "id_car_make": 4, + "name": "A610", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 53, + "fields": { + "id_car_make": 4, + "name": "GTA", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 54, + "fields": { + "id_car_make": 5, + "name": "HMMWV (Humvee)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 55, + "fields": { + "id_car_make": 6, + "name": "Atom", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 56, + "fields": { + "id_car_make": 7, + "name": "10", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 57, + "fields": { + "id_car_make": 7, + "name": "24", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 58, + "fields": { + "id_car_make": 8, + "name": "Retona", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 59, + "fields": { + "id_car_make": 8, + "name": "Rocsta", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 60, + "fields": { + "id_car_make": 9, + "name": "Bulldog", + "arabic_name": "بولدوج" + } +}, +{ + "model": "inventory.carmodel", + "pk": 61, + "fields": { + "id_car_make": 9, + "name": "Cygnet", + "arabic_name": "سيجنت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 62, + "fields": { + "id_car_make": 9, + "name": "DB7", + "arabic_name": "دي بي 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 63, + "fields": { + "id_car_make": 9, + "name": "DB9", + "arabic_name": "دي بي 9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 64, + "fields": { + "id_car_make": 9, + "name": "DBS", + "arabic_name": "دي بي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 65, + "fields": { + "id_car_make": 9, + "name": "Lagonda", + "arabic_name": "لاجوندا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 66, + "fields": { + "id_car_make": 9, + "name": "One-77", + "arabic_name": "ون-٧٧" + } +}, +{ + "model": "inventory.carmodel", + "pk": 67, + "fields": { + "id_car_make": 9, + "name": "Rapide", + "arabic_name": "رابيد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 68, + "fields": { + "id_car_make": 9, + "name": "Tickford Capri", + "arabic_name": "تيكفورد كابري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 69, + "fields": { + "id_car_make": 9, + "name": "Vanquish", + "arabic_name": "فانكويش" + } +}, +{ + "model": "inventory.carmodel", + "pk": 70, + "fields": { + "id_car_make": 9, + "name": "Vantage V12", + "arabic_name": "فانتاج في12" + } +}, +{ + "model": "inventory.carmodel", + "pk": 71, + "fields": { + "id_car_make": 9, + "name": "Zagato V12", + "arabic_name": "زاجاتو في١٢" + } +}, +{ + "model": "inventory.carmodel", + "pk": 72, + "fields": { + "id_car_make": 9, + "name": "Vantage V8", + "arabic_name": "فانتاج في8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 73, + "fields": { + "id_car_make": 9, + "name": "Zagato V8", + "arabic_name": "زاجاتو في٨" + } +}, +{ + "model": "inventory.carmodel", + "pk": 74, + "fields": { + "id_car_make": 9, + "name": "Virage", + "arabic_name": "فيراج" + } +}, +{ + "model": "inventory.carmodel", + "pk": 75, + "fields": { + "id_car_make": 10, + "name": "100", + "arabic_name": "100" + } +}, +{ + "model": "inventory.carmodel", + "pk": 76, + "fields": { + "id_car_make": 10, + "name": "200", + "arabic_name": "200" + } +}, +{ + "model": "inventory.carmodel", + "pk": 77, + "fields": { + "id_car_make": 10, + "name": "50", + "arabic_name": "50" + } +}, +{ + "model": "inventory.carmodel", + "pk": 78, + "fields": { + "id_car_make": 10, + "name": "80", + "arabic_name": "80" + } +}, +{ + "model": "inventory.carmodel", + "pk": 79, + "fields": { + "id_car_make": 10, + "name": "90", + "arabic_name": "90" + } +}, +{ + "model": "inventory.carmodel", + "pk": 80, + "fields": { + "id_car_make": 10, + "name": "A1", + "arabic_name": "إيه 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 81, + "fields": { + "id_car_make": 10, + "name": "A2", + "arabic_name": "إيه 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 82, + "fields": { + "id_car_make": 10, + "name": "A3", + "arabic_name": "إيه 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 83, + "fields": { + "id_car_make": 10, + "name": "A4 allroad", + "arabic_name": "إيه 4 أولرود" + } +}, +{ + "model": "inventory.carmodel", + "pk": 84, + "fields": { + "id_car_make": 10, + "name": "A4", + "arabic_name": "إيه 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 85, + "fields": { + "id_car_make": 10, + "name": "A5", + "arabic_name": "إيه 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 86, + "fields": { + "id_car_make": 10, + "name": "Allroad", + "arabic_name": "أولرود" + } +}, +{ + "model": "inventory.carmodel", + "pk": 87, + "fields": { + "id_car_make": 10, + "name": "A6", + "arabic_name": "إيه 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 88, + "fields": { + "id_car_make": 10, + "name": "A7", + "arabic_name": "إيه 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 89, + "fields": { + "id_car_make": 10, + "name": "A8", + "arabic_name": "إيه 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 90, + "fields": { + "id_car_make": 10, + "name": "Cabriolet", + "arabic_name": "كابريوليه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 91, + "fields": { + "id_car_make": 10, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 92, + "fields": { + "id_car_make": 10, + "name": "NSU RO 80", + "arabic_name": "إن إس يو آر أو 80" + } +}, +{ + "model": "inventory.carmodel", + "pk": 93, + "fields": { + "id_car_make": 10, + "name": "Q3", + "arabic_name": "كيو 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 94, + "fields": { + "id_car_make": 10, + "name": "Q5", + "arabic_name": "كيو 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 95, + "fields": { + "id_car_make": 10, + "name": "Q7", + "arabic_name": "كيو 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 96, + "fields": { + "id_car_make": 10, + "name": "Quattro", + "arabic_name": "كواترو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 97, + "fields": { + "id_car_make": 10, + "name": "R8", + "arabic_name": "آر 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 98, + "fields": { + "id_car_make": 10, + "name": "RS Q3", + "arabic_name": "آر إس كيو 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 99, + "fields": { + "id_car_make": 10, + "name": "RS 2", + "arabic_name": "آر إس 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 100, + "fields": { + "id_car_make": 10, + "name": "RS 3", + "arabic_name": "آر إس 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 101, + "fields": { + "id_car_make": 10, + "name": "RS 4", + "arabic_name": "آر إس 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 102, + "fields": { + "id_car_make": 10, + "name": "RS 5", + "arabic_name": "آر إس 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 103, + "fields": { + "id_car_make": 10, + "name": "RS 6", + "arabic_name": "آر إس 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 104, + "fields": { + "id_car_make": 10, + "name": "RS 7", + "arabic_name": "آر إس 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 105, + "fields": { + "id_car_make": 10, + "name": "S1", + "arabic_name": "إس 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 106, + "fields": { + "id_car_make": 10, + "name": "S2", + "arabic_name": "إس 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 107, + "fields": { + "id_car_make": 10, + "name": "S3", + "arabic_name": "إس 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 108, + "fields": { + "id_car_make": 10, + "name": "S4", + "arabic_name": "إس 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 109, + "fields": { + "id_car_make": 10, + "name": "S5", + "arabic_name": "إس 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 110, + "fields": { + "id_car_make": 10, + "name": "S6", + "arabic_name": "إس 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 111, + "fields": { + "id_car_make": 10, + "name": "S7", + "arabic_name": "إس 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 112, + "fields": { + "id_car_make": 10, + "name": "S8", + "arabic_name": "إس 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 113, + "fields": { + "id_car_make": 10, + "name": "SQ5", + "arabic_name": "إس كيو 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 114, + "fields": { + "id_car_make": 10, + "name": "TT", + "arabic_name": "تي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 115, + "fields": { + "id_car_make": 10, + "name": "V8", + "arabic_name": "في 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 116, + "fields": { + "id_car_make": 11, + "name": "Allegro", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 117, + "fields": { + "id_car_make": 11, + "name": "Ambassador", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 118, + "fields": { + "id_car_make": 11, + "name": "Maestro", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 119, + "fields": { + "id_car_make": 11, + "name": "Maxi", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 120, + "fields": { + "id_car_make": 11, + "name": "Mini Metro", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 121, + "fields": { + "id_car_make": 11, + "name": "Mini", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 122, + "fields": { + "id_car_make": 11, + "name": "Montego", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 123, + "fields": { + "id_car_make": 11, + "name": "Princess", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 124, + "fields": { + "id_car_make": 12, + "name": "A 112", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 125, + "fields": { + "id_car_make": 13, + "name": "BD-1322", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 126, + "fields": { + "id_car_make": 14, + "name": "BJ 2020", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 128, + "fields": { + "id_car_make": 15, + "name": "Arnage", + "arabic_name": "أرناغ" + } +}, +{ + "model": "inventory.carmodel", + "pk": 129, + "fields": { + "id_car_make": 15, + "name": "Azure", + "arabic_name": "أزور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 130, + "fields": { + "id_car_make": 15, + "name": "Brooklands", + "arabic_name": "بروكلاندز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 131, + "fields": { + "id_car_make": 15, + "name": "Continental", + "arabic_name": "كونتيننتال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 132, + "fields": { + "id_car_make": 15, + "name": "Continental Flying Spur", + "arabic_name": "كونتيننتال فلاينج سبير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 133, + "fields": { + "id_car_make": 15, + "name": "Continental GT", + "arabic_name": "كونتيننتال جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 134, + "fields": { + "id_car_make": 15, + "name": "Eight", + "arabic_name": "إيت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 135, + "fields": { + "id_car_make": 15, + "name": "Flying Spur", + "arabic_name": "فلاينج سبير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 136, + "fields": { + "id_car_make": 15, + "name": "Mulsanne", + "arabic_name": "مولسان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 137, + "fields": { + "id_car_make": 15, + "name": "Turbo R", + "arabic_name": "تيربو آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 138, + "fields": { + "id_car_make": 16, + "name": "Freeclimber", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 139, + "fields": { + "id_car_make": 17, + "name": "Type 3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 140, + "fields": { + "id_car_make": 18, + "name": "E10", + "arabic_name": "إي 10" + } +}, +{ + "model": "inventory.carmodel", + "pk": 150, + "fields": { + "id_car_make": 18, + "name": "i3", + "arabic_name": "آي 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 151, + "fields": { + "id_car_make": 18, + "name": "i8", + "arabic_name": "آي 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 152, + "fields": { + "id_car_make": 18, + "name": "X1", + "arabic_name": "إكس 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 153, + "fields": { + "id_car_make": 18, + "name": "X3", + "arabic_name": "إكس 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 154, + "fields": { + "id_car_make": 18, + "name": "X4", + "arabic_name": "إكس 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 155, + "fields": { + "id_car_make": 18, + "name": "X5", + "arabic_name": "إكس 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 156, + "fields": { + "id_car_make": 18, + "name": "X6", + "arabic_name": "إكس 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 157, + "fields": { + "id_car_make": 18, + "name": "Z1", + "arabic_name": "زد 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 158, + "fields": { + "id_car_make": 18, + "name": "Z3", + "arabic_name": "زد 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 159, + "fields": { + "id_car_make": 18, + "name": "Z4", + "arabic_name": "زد 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 160, + "fields": { + "id_car_make": 18, + "name": "Z8", + "arabic_name": "زد 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 169, + "fields": { + "id_car_make": 20, + "name": "7.3S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 170, + "fields": { + "id_car_make": 20, + "name": "M V12", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 171, + "fields": { + "id_car_make": 20, + "name": "SV12", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 172, + "fields": { + "id_car_make": 21, + "name": "BS2", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 173, + "fields": { + "id_car_make": 21, + "name": "M1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 174, + "fields": { + "id_car_make": 21, + "name": "BS4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 175, + "fields": { + "id_car_make": 21, + "name": "M3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 176, + "fields": { + "id_car_make": 21, + "name": "V5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 177, + "fields": { + "id_car_make": 22, + "name": "Blenheim", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 178, + "fields": { + "id_car_make": 22, + "name": "Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 179, + "fields": { + "id_car_make": 22, + "name": "Fighter", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 180, + "fields": { + "id_car_make": 23, + "name": "Geneva", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 181, + "fields": { + "id_car_make": 23, + "name": "La Joya", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 182, + "fields": { + "id_car_make": 24, + "name": "EB 110", + "arabic_name": "إي بي 110" + } +}, +{ + "model": "inventory.carmodel", + "pk": 183, + "fields": { + "id_car_make": 24, + "name": "EB 112", + "arabic_name": "إي بي 112" + } +}, +{ + "model": "inventory.carmodel", + "pk": 185, + "fields": { + "id_car_make": 25, + "name": "Century", + "arabic_name": "سينشري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 186, + "fields": { + "id_car_make": 25, + "name": "Electra", + "arabic_name": "إلكترا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 187, + "fields": { + "id_car_make": 25, + "name": "Enclave", + "arabic_name": "إنكلاف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 188, + "fields": { + "id_car_make": 25, + "name": "Excelle", + "arabic_name": "إكسل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 189, + "fields": { + "id_car_make": 25, + "name": "GL8", + "arabic_name": "جي إل 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 190, + "fields": { + "id_car_make": 25, + "name": "LaCrosse", + "arabic_name": "لاكروس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 191, + "fields": { + "id_car_make": 25, + "name": "LE Sabre", + "arabic_name": "إل إي سابر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 192, + "fields": { + "id_car_make": 25, + "name": "Lucerne", + "arabic_name": "لوسيرن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 193, + "fields": { + "id_car_make": 25, + "name": "Park Avenue", + "arabic_name": "بارك أفينيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 194, + "fields": { + "id_car_make": 25, + "name": "Rainer", + "arabic_name": "رينر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 195, + "fields": { + "id_car_make": 25, + "name": "Reatta", + "arabic_name": "رياتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 196, + "fields": { + "id_car_make": 25, + "name": "Regal", + "arabic_name": "ريجال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 197, + "fields": { + "id_car_make": 25, + "name": "Rendezvous", + "arabic_name": "رانديفو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 198, + "fields": { + "id_car_make": 25, + "name": "Riviera", + "arabic_name": "ريفييرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 199, + "fields": { + "id_car_make": 25, + "name": "Roadmaster", + "arabic_name": "رودماستر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 200, + "fields": { + "id_car_make": 25, + "name": "Skylark", + "arabic_name": "سكاي لارك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 201, + "fields": { + "id_car_make": 25, + "name": "Terraza", + "arabic_name": "تيرازا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 202, + "fields": { + "id_car_make": 26, + "name": "e6", + "arabic_name": "إي 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 203, + "fields": { + "id_car_make": 26, + "name": "F0", + "arabic_name": "إف 0" + } +}, +{ + "model": "inventory.carmodel", + "pk": 204, + "fields": { + "id_car_make": 26, + "name": "F3", + "arabic_name": "إف 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 205, + "fields": { + "id_car_make": 26, + "name": "F6", + "arabic_name": "إف 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 206, + "fields": { + "id_car_make": 26, + "name": "F8", + "arabic_name": "إف 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 207, + "fields": { + "id_car_make": 26, + "name": "Flyer", + "arabic_name": "فلاير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 208, + "fields": { + "id_car_make": 26, + "name": "G3", + "arabic_name": "جي 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 209, + "fields": { + "id_car_make": 26, + "name": "G6", + "arabic_name": "جي 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 210, + "fields": { + "id_car_make": 26, + "name": "L3", + "arabic_name": "إل 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 211, + "fields": { + "id_car_make": 26, + "name": "M6", + "arabic_name": "إم 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 212, + "fields": { + "id_car_make": 26, + "name": "S6", + "arabic_name": "إس 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 213, + "fields": { + "id_car_make": 27, + "name": "BD132J (CoCo)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 214, + "fields": { + "id_car_make": 27, + "name": "BD326J (Moca)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 215, + "fields": { + "id_car_make": 28, + "name": "Allante", + "arabic_name": "ألانت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 216, + "fields": { + "id_car_make": 28, + "name": "ATS", + "arabic_name": "إيه تي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 217, + "fields": { + "id_car_make": 28, + "name": "BLS", + "arabic_name": "بي إل إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 218, + "fields": { + "id_car_make": 28, + "name": "Brougham", + "arabic_name": "بروغام" + } +}, +{ + "model": "inventory.carmodel", + "pk": 219, + "fields": { + "id_car_make": 28, + "name": "Catera", + "arabic_name": "كاتيرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 220, + "fields": { + "id_car_make": 28, + "name": "CTS", + "arabic_name": "سي تي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 221, + "fields": { + "id_car_make": 28, + "name": "De Ville", + "arabic_name": "دي فيل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 222, + "fields": { + "id_car_make": 28, + "name": "DTS", + "arabic_name": "دي تي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 223, + "fields": { + "id_car_make": 28, + "name": "Eldorado", + "arabic_name": "إلدورادو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 224, + "fields": { + "id_car_make": 28, + "name": "Escalade", + "arabic_name": "إسكاليد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 225, + "fields": { + "id_car_make": 28, + "name": "Fleetwood", + "arabic_name": "فليت وود" + } +}, +{ + "model": "inventory.carmodel", + "pk": 226, + "fields": { + "id_car_make": 28, + "name": "LSE", + "arabic_name": "إل إس إي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 227, + "fields": { + "id_car_make": 28, + "name": "Seville", + "arabic_name": "سيفيل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 228, + "fields": { + "id_car_make": 28, + "name": "Sixty Special", + "arabic_name": "سيكستي سبيشل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 229, + "fields": { + "id_car_make": 28, + "name": "SRX", + "arabic_name": "إس آر إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 230, + "fields": { + "id_car_make": 28, + "name": "STS", + "arabic_name": "إس تي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 231, + "fields": { + "id_car_make": 28, + "name": "XLR", + "arabic_name": "إكس إل آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 232, + "fields": { + "id_car_make": 28, + "name": "XTS", + "arabic_name": "إكس تي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 233, + "fields": { + "id_car_make": 29, + "name": "C12", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 234, + "fields": { + "id_car_make": 30, + "name": "FX4S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 235, + "fields": { + "id_car_make": 31, + "name": "21", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 236, + "fields": { + "id_car_make": 31, + "name": "CSR", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 237, + "fields": { + "id_car_make": 31, + "name": "Seven", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 238, + "fields": { + "id_car_make": 32, + "name": "Benni", + "arabic_name": "بيني" + } +}, +{ + "model": "inventory.carmodel", + "pk": 239, + "fields": { + "id_car_make": 32, + "name": "CS35", + "arabic_name": "سي إس35" + } +}, +{ + "model": "inventory.carmodel", + "pk": 240, + "fields": { + "id_car_make": 32, + "name": "Eado", + "arabic_name": "إيدو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 241, + "fields": { + "id_car_make": 32, + "name": "Raeton", + "arabic_name": "رايتون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 242, + "fields": { + "id_car_make": 32, + "name": "Z-Shine", + "arabic_name": "زي-شاين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 244, + "fields": { + "id_car_make": 33, + "name": "Flying", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 245, + "fields": { + "id_car_make": 33, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 247, + "fields": { + "id_car_make": 34, + "name": "Amulet", + "arabic_name": "أميوليت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 248, + "fields": { + "id_car_make": 34, + "name": "Bonus", + "arabic_name": "بونص" + } +}, +{ + "model": "inventory.carmodel", + "pk": 249, + "fields": { + "id_car_make": 34, + "name": "CrossEastar", + "arabic_name": "كروس إيستار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 250, + "fields": { + "id_car_make": 34, + "name": "Fora", + "arabic_name": "فورا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 251, + "fields": { + "id_car_make": 34, + "name": "IndiS", + "arabic_name": "إنديس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 252, + "fields": { + "id_car_make": 34, + "name": "Kimo", + "arabic_name": "كيمو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 253, + "fields": { + "id_car_make": 34, + "name": "Oriental Son", + "arabic_name": "أورينتال سون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 254, + "fields": { + "id_car_make": 34, + "name": "QQ6", + "arabic_name": "كيو كيو 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 255, + "fields": { + "id_car_make": 34, + "name": "QQ", + "arabic_name": "كيو كيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 256, + "fields": { + "id_car_make": 34, + "name": "Tiggo", + "arabic_name": "تيجو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 257, + "fields": { + "id_car_make": 34, + "name": "Very", + "arabic_name": "فيري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 258, + "fields": { + "id_car_make": 35, + "name": "Alero", + "arabic_name": "أليرو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 259, + "fields": { + "id_car_make": 35, + "name": "Astra", + "arabic_name": "أسترا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 260, + "fields": { + "id_car_make": 35, + "name": "Astro", + "arabic_name": "أسترو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 261, + "fields": { + "id_car_make": 35, + "name": "Avalanche", + "arabic_name": "أفالانش" + } +}, +{ + "model": "inventory.carmodel", + "pk": 262, + "fields": { + "id_car_make": 35, + "name": "Aveo", + "arabic_name": "أفيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 263, + "fields": { + "id_car_make": 35, + "name": "Beretta", + "arabic_name": "بيريتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 264, + "fields": { + "id_car_make": 35, + "name": "Blazer", + "arabic_name": "بليزر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 265, + "fields": { + "id_car_make": 35, + "name": "Blazer K5", + "arabic_name": "بليزر كي 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 266, + "fields": { + "id_car_make": 35, + "name": "C-10", + "arabic_name": "سي-١٠" + } +}, +{ + "model": "inventory.carmodel", + "pk": 267, + "fields": { + "id_car_make": 35, + "name": "Camaro", + "arabic_name": "كامارو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 268, + "fields": { + "id_car_make": 35, + "name": "Caprice", + "arabic_name": "كابريس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 269, + "fields": { + "id_car_make": 35, + "name": "Captiva", + "arabic_name": "كابتيفا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 270, + "fields": { + "id_car_make": 35, + "name": "Cavalier", + "arabic_name": "كافاليير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 271, + "fields": { + "id_car_make": 35, + "name": "Celebrity", + "arabic_name": "سيليبريتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 272, + "fields": { + "id_car_make": 35, + "name": "Celta", + "arabic_name": "سيلتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 273, + "fields": { + "id_car_make": 35, + "name": "Chevette", + "arabic_name": "شيفيت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 274, + "fields": { + "id_car_make": 35, + "name": "Citation", + "arabic_name": "سيتيشن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 275, + "fields": { + "id_car_make": 35, + "name": "Classic", + "arabic_name": "كلاسيك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 276, + "fields": { + "id_car_make": 35, + "name": "Cobalt", + "arabic_name": "كوبالت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 277, + "fields": { + "id_car_make": 35, + "name": "Colorado", + "arabic_name": "كولورادو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 278, + "fields": { + "id_car_make": 35, + "name": "Corsa", + "arabic_name": "كورسا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 279, + "fields": { + "id_car_make": 35, + "name": "Corsica", + "arabic_name": "كورسكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 280, + "fields": { + "id_car_make": 35, + "name": "Corvette", + "arabic_name": "كورفيت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 281, + "fields": { + "id_car_make": 35, + "name": "Cruze (HR)", + "arabic_name": "كروز (إتش آر)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 282, + "fields": { + "id_car_make": 35, + "name": "Cruze", + "arabic_name": "كروز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 283, + "fields": { + "id_car_make": 35, + "name": "Epica", + "arabic_name": "إبيكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 284, + "fields": { + "id_car_make": 35, + "name": "Equinox", + "arabic_name": "إيكوينوكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 285, + "fields": { + "id_car_make": 35, + "name": "Evanda", + "arabic_name": "إيفاندا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 286, + "fields": { + "id_car_make": 35, + "name": "Express", + "arabic_name": "إكسبريس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 287, + "fields": { + "id_car_make": 35, + "name": "HHR", + "arabic_name": "إتش إتش آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 288, + "fields": { + "id_car_make": 35, + "name": "Impala", + "arabic_name": "إمبالا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 289, + "fields": { + "id_car_make": 35, + "name": "Kalos", + "arabic_name": "كالوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 290, + "fields": { + "id_car_make": 35, + "name": "Lacetti", + "arabic_name": "لاسيتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 291, + "fields": { + "id_car_make": 35, + "name": "Lanos", + "arabic_name": "لانس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 292, + "fields": { + "id_car_make": 35, + "name": "Lumina", + "arabic_name": "لومينا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 293, + "fields": { + "id_car_make": 35, + "name": "Lumina APV", + "arabic_name": "لومينا إيه بي في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 294, + "fields": { + "id_car_make": 35, + "name": "LUV D-MAX", + "arabic_name": "لاف دي-ماكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 295, + "fields": { + "id_car_make": 35, + "name": "Malibu", + "arabic_name": "ماليبو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 296, + "fields": { + "id_car_make": 35, + "name": "Metro", + "arabic_name": "ميترو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 297, + "fields": { + "id_car_make": 35, + "name": "Monte Carlo", + "arabic_name": "مونتي كارلو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 298, + "fields": { + "id_car_make": 35, + "name": "Monza", + "arabic_name": "مونزا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 299, + "fields": { + "id_car_make": 35, + "name": "MW", + "arabic_name": "إم دبليو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 300, + "fields": { + "id_car_make": 35, + "name": "Niva", + "arabic_name": "نيفا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 301, + "fields": { + "id_car_make": 35, + "name": "Nubira", + "arabic_name": "نوبيرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 302, + "fields": { + "id_car_make": 35, + "name": "Omega", + "arabic_name": "أوميغا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 303, + "fields": { + "id_car_make": 35, + "name": "Orlando", + "arabic_name": "أورلاندو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 304, + "fields": { + "id_car_make": 35, + "name": "Prizm", + "arabic_name": "بريزم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 305, + "fields": { + "id_car_make": 35, + "name": "Rezzo", + "arabic_name": "ريزو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 306, + "fields": { + "id_car_make": 35, + "name": "S-10", + "arabic_name": "إس-10" + } +}, +{ + "model": "inventory.carmodel", + "pk": 307, + "fields": { + "id_car_make": 35, + "name": "Sail", + "arabic_name": "سيل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 308, + "fields": { + "id_car_make": 35, + "name": "Sonic", + "arabic_name": "سونيك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 309, + "fields": { + "id_car_make": 35, + "name": "Spark", + "arabic_name": "سبارك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 310, + "fields": { + "id_car_make": 35, + "name": "SSR", + "arabic_name": "إس إس آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 311, + "fields": { + "id_car_make": 35, + "name": "Starcraft", + "arabic_name": "ستاركرافت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 312, + "fields": { + "id_car_make": 35, + "name": "Suburban", + "arabic_name": "سوبربان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 313, + "fields": { + "id_car_make": 35, + "name": "Tahoe", + "arabic_name": "تاهو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 314, + "fields": { + "id_car_make": 35, + "name": "Tavera", + "arabic_name": "تافيرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 315, + "fields": { + "id_car_make": 35, + "name": "Tracker", + "arabic_name": "تراكر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 316, + "fields": { + "id_car_make": 35, + "name": "TrailBlazer", + "arabic_name": "تريل بليزر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 317, + "fields": { + "id_car_make": 35, + "name": "Trans Sport", + "arabic_name": "ترانس سبورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 318, + "fields": { + "id_car_make": 36, + "name": "200", + "arabic_name": "200" + } +}, +{ + "model": "inventory.carmodel", + "pk": 319, + "fields": { + "id_car_make": 36, + "name": "300C", + "arabic_name": "300 سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 320, + "fields": { + "id_car_make": 36, + "name": "300M", + "arabic_name": "300 إم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 321, + "fields": { + "id_car_make": 36, + "name": "Aspen", + "arabic_name": "أسبن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 322, + "fields": { + "id_car_make": 36, + "name": "Cirrus", + "arabic_name": "سيروس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 323, + "fields": { + "id_car_make": 36, + "name": "Concorde", + "arabic_name": "كونكورد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 324, + "fields": { + "id_car_make": 36, + "name": "Crossfire", + "arabic_name": "كروسفاير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 325, + "fields": { + "id_car_make": 36, + "name": "Dynasty", + "arabic_name": "داينستي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 326, + "fields": { + "id_car_make": 36, + "name": "Fifth Avenue", + "arabic_name": "فيفث أفينيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 327, + "fields": { + "id_car_make": 36, + "name": "Imperial", + "arabic_name": "إمبريال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 328, + "fields": { + "id_car_make": 36, + "name": "Intrepid", + "arabic_name": "إنتريبيد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 329, + "fields": { + "id_car_make": 36, + "name": "LeBaron", + "arabic_name": "ليبارون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 330, + "fields": { + "id_car_make": 36, + "name": "LHS", + "arabic_name": "إل إتش إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 331, + "fields": { + "id_car_make": 36, + "name": "Nassau", + "arabic_name": "ناسو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 332, + "fields": { + "id_car_make": 36, + "name": "Neon", + "arabic_name": "نيون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 333, + "fields": { + "id_car_make": 36, + "name": "New Yorker", + "arabic_name": "نيويوركر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 334, + "fields": { + "id_car_make": 36, + "name": "Pacifica", + "arabic_name": "باسيفيكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 335, + "fields": { + "id_car_make": 36, + "name": "Prowler", + "arabic_name": "بروولر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 336, + "fields": { + "id_car_make": 36, + "name": "PT Cruiser", + "arabic_name": "بي تي كروزر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 337, + "fields": { + "id_car_make": 36, + "name": "Saratoga", + "arabic_name": "ساراتوجا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 338, + "fields": { + "id_car_make": 36, + "name": "Sebring", + "arabic_name": "سيبرينج" + } +}, +{ + "model": "inventory.carmodel", + "pk": 339, + "fields": { + "id_car_make": 36, + "name": "Stratus", + "arabic_name": "ستراتوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 340, + "fields": { + "id_car_make": 36, + "name": "TC", + "arabic_name": "تي سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 341, + "fields": { + "id_car_make": 36, + "name": "Town and Country", + "arabic_name": "تاون آند كنتري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 342, + "fields": { + "id_car_make": 36, + "name": "Viper", + "arabic_name": "فايفر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 343, + "fields": { + "id_car_make": 36, + "name": "Vision", + "arabic_name": "فيجن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 344, + "fields": { + "id_car_make": 36, + "name": "Voyager", + "arabic_name": "فوييجر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 345, + "fields": { + "id_car_make": 37, + "name": "2 CV", + "arabic_name": "2 سي في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 346, + "fields": { + "id_car_make": 37, + "name": "Ami", + "arabic_name": "أمي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 347, + "fields": { + "id_car_make": 37, + "name": "AX", + "arabic_name": "إيه إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 348, + "fields": { + "id_car_make": 37, + "name": "Berlingo", + "arabic_name": "بيرلينجو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 349, + "fields": { + "id_car_make": 37, + "name": "BX", + "arabic_name": "بي إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 350, + "fields": { + "id_car_make": 37, + "name": "C-Crosser", + "arabic_name": "سي-كروسر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 351, + "fields": { + "id_car_make": 37, + "name": "C-Elysee", + "arabic_name": "سي-إليزيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 352, + "fields": { + "id_car_make": 37, + "name": "C1", + "arabic_name": "سي 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 353, + "fields": { + "id_car_make": 37, + "name": "C2", + "arabic_name": "سي 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 354, + "fields": { + "id_car_make": 37, + "name": "C3", + "arabic_name": "سي 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 355, + "fields": { + "id_car_make": 37, + "name": "C3 Picasso", + "arabic_name": "سي 3 بيكاسو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 356, + "fields": { + "id_car_make": 37, + "name": "C4 AirCross", + "arabic_name": "سي 4 إيركروس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 357, + "fields": { + "id_car_make": 37, + "name": "C4 Cactus", + "arabic_name": "سي 4 كاكتوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 358, + "fields": { + "id_car_make": 37, + "name": "C4", + "arabic_name": "سي 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 359, + "fields": { + "id_car_make": 37, + "name": "C4 Picasso", + "arabic_name": "سي 4 بيكاسو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 360, + "fields": { + "id_car_make": 37, + "name": "C5", + "arabic_name": "سي 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 361, + "fields": { + "id_car_make": 37, + "name": "C6", + "arabic_name": "سي 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 362, + "fields": { + "id_car_make": 37, + "name": "C8", + "arabic_name": "سي 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 363, + "fields": { + "id_car_make": 37, + "name": "CX", + "arabic_name": "سي إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 364, + "fields": { + "id_car_make": 37, + "name": "DS3", + "arabic_name": "دي إس 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 365, + "fields": { + "id_car_make": 37, + "name": "DS4", + "arabic_name": "دي إس 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 366, + "fields": { + "id_car_make": 37, + "name": "DS5", + "arabic_name": "دي إس 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 367, + "fields": { + "id_car_make": 37, + "name": "Dyane", + "arabic_name": "ديان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 368, + "fields": { + "id_car_make": 37, + "name": "Evasion", + "arabic_name": "إيفيجن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 369, + "fields": { + "id_car_make": 37, + "name": "GS", + "arabic_name": "جي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 371, + "fields": { + "id_car_make": 37, + "name": "Saxo", + "arabic_name": "ساكسو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 372, + "fields": { + "id_car_make": 37, + "name": "Visa", + "arabic_name": "فيزا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 373, + "fields": { + "id_car_make": 37, + "name": "Xantia", + "arabic_name": "زانتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 374, + "fields": { + "id_car_make": 37, + "name": "XM", + "arabic_name": "إكس إم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 375, + "fields": { + "id_car_make": 37, + "name": "Xsara", + "arabic_name": "إكسارا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 376, + "fields": { + "id_car_make": 37, + "name": "Xsara Picasso", + "arabic_name": "إكسارا بيكاسو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 377, + "fields": { + "id_car_make": 37, + "name": "ZX", + "arabic_name": "زد إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 378, + "fields": { + "id_car_make": 38, + "name": "V16T", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 379, + "fields": { + "id_car_make": 39, + "name": "T-Rex", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 380, + "fields": { + "id_car_make": 40, + "name": "1300", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 381, + "fields": { + "id_car_make": 40, + "name": "1310", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 382, + "fields": { + "id_car_make": 40, + "name": "1410", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 383, + "fields": { + "id_car_make": 40, + "name": "Dokker", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 384, + "fields": { + "id_car_make": 40, + "name": "Duster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 385, + "fields": { + "id_car_make": 40, + "name": "Lodgy", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 386, + "fields": { + "id_car_make": 40, + "name": "Logan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 387, + "fields": { + "id_car_make": 40, + "name": "Nova", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 388, + "fields": { + "id_car_make": 40, + "name": "Sandero", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 389, + "fields": { + "id_car_make": 40, + "name": "Solenza", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 390, + "fields": { + "id_car_make": 41, + "name": "City Leading", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 391, + "fields": { + "id_car_make": 41, + "name": "Shuttle", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 392, + "fields": { + "id_car_make": 41, + "name": "Smoothing", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 393, + "fields": { + "id_car_make": 42, + "name": "Arcadia", + "arabic_name": "أركاديا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 394, + "fields": { + "id_car_make": 42, + "name": "Chairman", + "arabic_name": "تشيرمان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 395, + "fields": { + "id_car_make": 42, + "name": "Damas", + "arabic_name": "داماس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 396, + "fields": { + "id_car_make": 42, + "name": "Espero", + "arabic_name": "إسبيرو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 397, + "fields": { + "id_car_make": 42, + "name": "Evanda", + "arabic_name": "إيفاندا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 398, + "fields": { + "id_car_make": 42, + "name": "G2X", + "arabic_name": "جي 2 إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 399, + "fields": { + "id_car_make": 42, + "name": "Gentra", + "arabic_name": "جينترا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 400, + "fields": { + "id_car_make": 42, + "name": "Kalos", + "arabic_name": "كالوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 401, + "fields": { + "id_car_make": 42, + "name": "Korando", + "arabic_name": "كوراندو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 402, + "fields": { + "id_car_make": 42, + "name": "Lacetti", + "arabic_name": "لاسيتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 403, + "fields": { + "id_car_make": 42, + "name": "Lanos", + "arabic_name": "لانس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 404, + "fields": { + "id_car_make": 42, + "name": "LeMans", + "arabic_name": "لي مانز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 405, + "fields": { + "id_car_make": 42, + "name": "Leganza", + "arabic_name": "ليجانزا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 406, + "fields": { + "id_car_make": 42, + "name": "Magnus", + "arabic_name": "ماجنوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 407, + "fields": { + "id_car_make": 42, + "name": "Matiz", + "arabic_name": "ماتيز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 408, + "fields": { + "id_car_make": 42, + "name": "Musso", + "arabic_name": "موسو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 409, + "fields": { + "id_car_make": 42, + "name": "Nexia", + "arabic_name": "نيكسيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 410, + "fields": { + "id_car_make": 42, + "name": "Nubira", + "arabic_name": "نوبيرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 411, + "fields": { + "id_car_make": 42, + "name": "Prince", + "arabic_name": "برينس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 412, + "fields": { + "id_car_make": 42, + "name": "Racer", + "arabic_name": "ريسير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 413, + "fields": { + "id_car_make": 42, + "name": "Rezzo", + "arabic_name": "ريزو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 414, + "fields": { + "id_car_make": 42, + "name": "Tacuma", + "arabic_name": "تاكوما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 415, + "fields": { + "id_car_make": 42, + "name": "Tico", + "arabic_name": "تيكو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 416, + "fields": { + "id_car_make": 42, + "name": "Tosca", + "arabic_name": "توسكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 417, + "fields": { + "id_car_make": 42, + "name": "Winstorm", + "arabic_name": "وينستورم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 420, + "fields": { + "id_car_make": 44, + "name": "Altis", + "arabic_name": "ألتيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 421, + "fields": { + "id_car_make": 44, + "name": "Applause", + "arabic_name": "أبلوز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 422, + "fields": { + "id_car_make": 44, + "name": "Atrai", + "arabic_name": "أتراي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 423, + "fields": { + "id_car_make": 44, + "name": "Be-go", + "arabic_name": "بي-جو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 424, + "fields": { + "id_car_make": 44, + "name": "Boon", + "arabic_name": "بون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 425, + "fields": { + "id_car_make": 44, + "name": "Ceria", + "arabic_name": "سيريا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 426, + "fields": { + "id_car_make": 44, + "name": "Charade", + "arabic_name": "شاريد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 427, + "fields": { + "id_car_make": 44, + "name": "Charmant", + "arabic_name": "شارمانت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 428, + "fields": { + "id_car_make": 44, + "name": "Coo", + "arabic_name": "كوو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 429, + "fields": { + "id_car_make": 44, + "name": "Copen", + "arabic_name": "كوبين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 430, + "fields": { + "id_car_make": 44, + "name": "Cuore", + "arabic_name": "كوار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 432, + "fields": { + "id_car_make": 44, + "name": "Esse", + "arabic_name": "إيسي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 433, + "fields": { + "id_car_make": 44, + "name": "Feroza", + "arabic_name": "فيروزا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 434, + "fields": { + "id_car_make": 44, + "name": "Gran Move", + "arabic_name": "جران موف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 435, + "fields": { + "id_car_make": 44, + "name": "Leeza", + "arabic_name": "ليزا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 436, + "fields": { + "id_car_make": 44, + "name": "Materia", + "arabic_name": "ماتيريا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 437, + "fields": { + "id_car_make": 44, + "name": "MAX", + "arabic_name": "ماكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 438, + "fields": { + "id_car_make": 44, + "name": "Mira Gino", + "arabic_name": "ميرا جينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 439, + "fields": { + "id_car_make": 44, + "name": "Mira", + "arabic_name": "ميرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 440, + "fields": { + "id_car_make": 44, + "name": "Move", + "arabic_name": "موف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 441, + "fields": { + "id_car_make": 44, + "name": "Naked", + "arabic_name": "نيكد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 442, + "fields": { + "id_car_make": 44, + "name": "Opti", + "arabic_name": "أوبتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 443, + "fields": { + "id_car_make": 44, + "name": "Pyzar", + "arabic_name": "بيزار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 444, + "fields": { + "id_car_make": 44, + "name": "Rocky", + "arabic_name": "روكي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 445, + "fields": { + "id_car_make": 44, + "name": "Sirion", + "arabic_name": "سيريون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 446, + "fields": { + "id_car_make": 44, + "name": "Sonica", + "arabic_name": "سونيكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 447, + "fields": { + "id_car_make": 44, + "name": "Storia", + "arabic_name": "ستوريا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 448, + "fields": { + "id_car_make": 44, + "name": "Taft", + "arabic_name": "تافت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 449, + "fields": { + "id_car_make": 44, + "name": "Tanto", + "arabic_name": "تانتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 450, + "fields": { + "id_car_make": 44, + "name": "Terios", + "arabic_name": "تيريوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 451, + "fields": { + "id_car_make": 44, + "name": "Trevis", + "arabic_name": "تريفيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 452, + "fields": { + "id_car_make": 44, + "name": "Wildcat", + "arabic_name": "وايلدكات" + } +}, +{ + "model": "inventory.carmodel", + "pk": 453, + "fields": { + "id_car_make": 44, + "name": "Xenia", + "arabic_name": "زينا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 454, + "fields": { + "id_car_make": 44, + "name": "YRV", + "arabic_name": "واي آر في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 455, + "fields": { + "id_car_make": 45, + "name": "DS420", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 456, + "fields": { + "id_car_make": 45, + "name": "Sovereign (XJ6)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 457, + "fields": { + "id_car_make": 45, + "name": "X300", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 458, + "fields": { + "id_car_make": 45, + "name": "X308", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 459, + "fields": { + "id_car_make": 45, + "name": "X350", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 460, + "fields": { + "id_car_make": 45, + "name": "XJ40", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 461, + "fields": { + "id_car_make": 45, + "name": "XJS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 462, + "fields": { + "id_car_make": 46, + "name": "Fun", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 463, + "fields": { + "id_car_make": 47, + "name": "280ZX", + "arabic_name": "280 زد إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 464, + "fields": { + "id_car_make": 47, + "name": "720", + "arabic_name": "720" + } +}, +{ + "model": "inventory.carmodel", + "pk": 465, + "fields": { + "id_car_make": 47, + "name": "Bluebird", + "arabic_name": "بلوبيرد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 466, + "fields": { + "id_car_make": 47, + "name": "Cherry", + "arabic_name": "تشيري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 467, + "fields": { + "id_car_make": 47, + "name": "GO", + "arabic_name": "جو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 469, + "fields": { + "id_car_make": 47, + "name": "on-DO", + "arabic_name": "أون-دو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 470, + "fields": { + "id_car_make": 47, + "name": "Stanza", + "arabic_name": "ستانزا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 471, + "fields": { + "id_car_make": 47, + "name": "Sunny", + "arabic_name": "صني" + } +}, +{ + "model": "inventory.carmodel", + "pk": 472, + "fields": { + "id_car_make": 47, + "name": "Violet", + "arabic_name": "فيوليت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 473, + "fields": { + "id_car_make": 48, + "name": "Bigua", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 474, + "fields": { + "id_car_make": 48, + "name": "Guara", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 475, + "fields": { + "id_car_make": 48, + "name": "Mangusta", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 476, + "fields": { + "id_car_make": 48, + "name": "Pantera", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 477, + "fields": { + "id_car_make": 48, + "name": "Vallelunga", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 478, + "fields": { + "id_car_make": 49, + "name": "DMC-12", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 479, + "fields": { + "id_car_make": 50, + "name": "Antelope", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 480, + "fields": { + "id_car_make": 50, + "name": "Aurora", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 481, + "fields": { + "id_car_make": 50, + "name": "Cowboy", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 482, + "fields": { + "id_car_make": 50, + "name": "Land Crown", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 483, + "fields": { + "id_car_make": 50, + "name": "Plutus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 484, + "fields": { + "id_car_make": 50, + "name": "Saladin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 485, + "fields": { + "id_car_make": 50, + "name": "Shuttle", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 486, + "fields": { + "id_car_make": 51, + "name": "600", + "arabic_name": "600" + } +}, +{ + "model": "inventory.carmodel", + "pk": 487, + "fields": { + "id_car_make": 51, + "name": "Aries", + "arabic_name": "آريس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 488, + "fields": { + "id_car_make": 51, + "name": "Avenger", + "arabic_name": "أفينجر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 489, + "fields": { + "id_car_make": 51, + "name": "Caliber", + "arabic_name": "كاليبر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 490, + "fields": { + "id_car_make": 51, + "name": "Caravan", + "arabic_name": "كارافان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 491, + "fields": { + "id_car_make": 51, + "name": "Challenger", + "arabic_name": "تشالنجر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 492, + "fields": { + "id_car_make": 51, + "name": "Charger", + "arabic_name": "تشاجر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 493, + "fields": { + "id_car_make": 51, + "name": "Dakota", + "arabic_name": "داكوتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 494, + "fields": { + "id_car_make": 51, + "name": "Dart", + "arabic_name": "دارت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 495, + "fields": { + "id_car_make": 51, + "name": "Daytona", + "arabic_name": "دايتونا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 496, + "fields": { + "id_car_make": 51, + "name": "Durango", + "arabic_name": "دورانجو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 497, + "fields": { + "id_car_make": 51, + "name": "Dynasty", + "arabic_name": "دايناستي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 499, + "fields": { + "id_car_make": 51, + "name": "Intrepid", + "arabic_name": "إنتربيد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 500, + "fields": { + "id_car_make": 51, + "name": "Journey", + "arabic_name": "جورني" + } +}, +{ + "model": "inventory.carmodel", + "pk": 501, + "fields": { + "id_car_make": 51, + "name": "Magnum", + "arabic_name": "ماجنوم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 502, + "fields": { + "id_car_make": 51, + "name": "Monaco", + "arabic_name": "موناكو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 503, + "fields": { + "id_car_make": 51, + "name": "Neon", + "arabic_name": "نيون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 504, + "fields": { + "id_car_make": 51, + "name": "Nitro", + "arabic_name": "نيترو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 505, + "fields": { + "id_car_make": 51, + "name": "Omni", + "arabic_name": "أومني" + } +}, +{ + "model": "inventory.carmodel", + "pk": 506, + "fields": { + "id_car_make": 51, + "name": "Ram", + "arabic_name": "رام" + } +}, +{ + "model": "inventory.carmodel", + "pk": 507, + "fields": { + "id_car_make": 51, + "name": "Ramcharger", + "arabic_name": "رام تشارجر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 508, + "fields": { + "id_car_make": 51, + "name": "Shadow", + "arabic_name": "شادو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 509, + "fields": { + "id_car_make": 51, + "name": "Spirit", + "arabic_name": "سبيريت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 510, + "fields": { + "id_car_make": 51, + "name": "Stealth", + "arabic_name": "ستيلث" + } +}, +{ + "model": "inventory.carmodel", + "pk": 511, + "fields": { + "id_car_make": 51, + "name": "Stratus", + "arabic_name": "سترATUS" + } +}, +{ + "model": "inventory.carmodel", + "pk": 512, + "fields": { + "id_car_make": 51, + "name": "Viper", + "arabic_name": "فايبر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 513, + "fields": { + "id_car_make": 52, + "name": "H30", + "arabic_name": "إتش 30" + } +}, +{ + "model": "inventory.carmodel", + "pk": 514, + "fields": { + "id_car_make": 52, + "name": "MPV", + "arabic_name": "إم بي في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 515, + "fields": { + "id_car_make": 52, + "name": "Oting", + "arabic_name": "أوتينج" + } +}, +{ + "model": "inventory.carmodel", + "pk": 516, + "fields": { + "id_car_make": 52, + "name": "Rich", + "arabic_name": "ريتش" + } +}, +{ + "model": "inventory.carmodel", + "pk": 517, + "fields": { + "id_car_make": 53, + "name": "Assol", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 518, + "fields": { + "id_car_make": 53, + "name": "Condor", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 519, + "fields": { + "id_car_make": 53, + "name": "Orion", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 520, + "fields": { + "id_car_make": 54, + "name": "D8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 521, + "fields": { + "id_car_make": 55, + "name": "GD04B", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 522, + "fields": { + "id_car_make": 56, + "name": "Premier", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 523, + "fields": { + "id_car_make": 56, + "name": "Summit", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 524, + "fields": { + "id_car_make": 56, + "name": "Talon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 525, + "fields": { + "id_car_make": 56, + "name": "Vision", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 526, + "fields": { + "id_car_make": 57, + "name": "SS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 528, + "fields": { + "id_car_make": 59, + "name": "Audi A6", + "arabic_name": "أودي ايه6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 529, + "fields": { + "id_car_make": 59, + "name": "Audi 100", + "arabic_name": "أودي 100" + } +}, +{ + "model": "inventory.carmodel", + "pk": 530, + "fields": { + "id_car_make": 59, + "name": "Besturn B50", + "arabic_name": "بيسترن بي50" + } +}, +{ + "model": "inventory.carmodel", + "pk": 531, + "fields": { + "id_car_make": 59, + "name": "Besturn B70", + "arabic_name": "بيسترن بي70" + } +}, +{ + "model": "inventory.carmodel", + "pk": 532, + "fields": { + "id_car_make": 59, + "name": "Volkswagen Bora", + "arabic_name": "فولكسفاغن بورا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 533, + "fields": { + "id_car_make": 59, + "name": "Volkswagen City Golf", + "arabic_name": "فولكسفاغن سيتي جولف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 534, + "fields": { + "id_car_make": 59, + "name": "Volkswagen Jetta", + "arabic_name": "فولكسفاغن جيتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 535, + "fields": { + "id_car_make": 59, + "name": "Jinn", + "arabic_name": "جين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 536, + "fields": { + "id_car_make": 59, + "name": "Oley", + "arabic_name": "أولي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 537, + "fields": { + "id_car_make": 59, + "name": "V2", + "arabic_name": "في2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 538, + "fields": { + "id_car_make": 59, + "name": "V5", + "arabic_name": "في5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 539, + "fields": { + "id_car_make": 59, + "name": "Vita", + "arabic_name": "فيتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 540, + "fields": { + "id_car_make": 60, + "name": "208", + "arabic_name": "208" + } +}, +{ + "model": "inventory.carmodel", + "pk": 541, + "fields": { + "id_car_make": 60, + "name": "328", + "arabic_name": "328" + } +}, +{ + "model": "inventory.carmodel", + "pk": 542, + "fields": { + "id_car_make": 60, + "name": "348", + "arabic_name": "348" + } +}, +{ + "model": "inventory.carmodel", + "pk": 543, + "fields": { + "id_car_make": 60, + "name": "360", + "arabic_name": "360" + } +}, +{ + "model": "inventory.carmodel", + "pk": 544, + "fields": { + "id_car_make": 60, + "name": "400", + "arabic_name": "400" + } +}, +{ + "model": "inventory.carmodel", + "pk": 545, + "fields": { + "id_car_make": 60, + "name": "412", + "arabic_name": "412" + } +}, +{ + "model": "inventory.carmodel", + "pk": 546, + "fields": { + "id_car_make": 60, + "name": "456", + "arabic_name": "456" + } +}, +{ + "model": "inventory.carmodel", + "pk": 547, + "fields": { + "id_car_make": 60, + "name": "458", + "arabic_name": "458" + } +}, +{ + "model": "inventory.carmodel", + "pk": 548, + "fields": { + "id_car_make": 60, + "name": "512 BB", + "arabic_name": "512 بي بي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 549, + "fields": { + "id_car_make": 60, + "name": "512 M", + "arabic_name": "512 إم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 550, + "fields": { + "id_car_make": 60, + "name": "512 TR", + "arabic_name": "512 تي آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 551, + "fields": { + "id_car_make": 60, + "name": "550", + "arabic_name": "550" + } +}, +{ + "model": "inventory.carmodel", + "pk": 552, + "fields": { + "id_car_make": 60, + "name": "575", + "arabic_name": "575" + } +}, +{ + "model": "inventory.carmodel", + "pk": 553, + "fields": { + "id_car_make": 60, + "name": "599", + "arabic_name": "599" + } +}, +{ + "model": "inventory.carmodel", + "pk": 554, + "fields": { + "id_car_make": 60, + "name": "612 Scaglietti", + "arabic_name": "612 سكالييتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 555, + "fields": { + "id_car_make": 60, + "name": "California", + "arabic_name": "كاليفورنيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 556, + "fields": { + "id_car_make": 60, + "name": "Enzo", + "arabic_name": "إنزو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 557, + "fields": { + "id_car_make": 60, + "name": "F12berlinetta", + "arabic_name": "إف 12 برلينيتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 558, + "fields": { + "id_car_make": 60, + "name": "F355", + "arabic_name": "إف 355" + } +}, +{ + "model": "inventory.carmodel", + "pk": 559, + "fields": { + "id_car_make": 60, + "name": "F40", + "arabic_name": "إف 40" + } +}, +{ + "model": "inventory.carmodel", + "pk": 560, + "fields": { + "id_car_make": 60, + "name": "F430", + "arabic_name": "إف 430" + } +}, +{ + "model": "inventory.carmodel", + "pk": 561, + "fields": { + "id_car_make": 60, + "name": "F50", + "arabic_name": "إف 50" + } +}, +{ + "model": "inventory.carmodel", + "pk": 562, + "fields": { + "id_car_make": 60, + "name": "FF", + "arabic_name": "إف إف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 563, + "fields": { + "id_car_make": 60, + "name": "LaFerrari", + "arabic_name": "لافيراري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 564, + "fields": { + "id_car_make": 60, + "name": "Mondial", + "arabic_name": "مونديال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 565, + "fields": { + "id_car_make": 60, + "name": "Testarossa", + "arabic_name": "تيستاروسا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 566, + "fields": { + "id_car_make": 61, + "name": "124", + "arabic_name": "124" + } +}, +{ + "model": "inventory.carmodel", + "pk": 567, + "fields": { + "id_car_make": 61, + "name": "126", + "arabic_name": "126" + } +}, +{ + "model": "inventory.carmodel", + "pk": 568, + "fields": { + "id_car_make": 61, + "name": "127", + "arabic_name": "127" + } +}, +{ + "model": "inventory.carmodel", + "pk": 569, + "fields": { + "id_car_make": 61, + "name": "128", + "arabic_name": "128" + } +}, +{ + "model": "inventory.carmodel", + "pk": 570, + "fields": { + "id_car_make": 61, + "name": "130", + "arabic_name": "130" + } +}, +{ + "model": "inventory.carmodel", + "pk": 571, + "fields": { + "id_car_make": 61, + "name": "131", + "arabic_name": "131" + } +}, +{ + "model": "inventory.carmodel", + "pk": 572, + "fields": { + "id_car_make": 61, + "name": "132", + "arabic_name": "132" + } +}, +{ + "model": "inventory.carmodel", + "pk": 573, + "fields": { + "id_car_make": 61, + "name": "238", + "arabic_name": "238" + } +}, +{ + "model": "inventory.carmodel", + "pk": 574, + "fields": { + "id_car_make": 61, + "name": "500", + "arabic_name": "500" + } +}, +{ + "model": "inventory.carmodel", + "pk": 575, + "fields": { + "id_car_make": 61, + "name": "500L", + "arabic_name": "500 إل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 576, + "fields": { + "id_car_make": 61, + "name": "600", + "arabic_name": "600" + } +}, +{ + "model": "inventory.carmodel", + "pk": 577, + "fields": { + "id_car_make": 61, + "name": "900T", + "arabic_name": "900 تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 578, + "fields": { + "id_car_make": 61, + "name": "Albea", + "arabic_name": "ألبي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 579, + "fields": { + "id_car_make": 61, + "name": "Argenta", + "arabic_name": "أرجينتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 580, + "fields": { + "id_car_make": 61, + "name": "Barchetta", + "arabic_name": "بارشيتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 581, + "fields": { + "id_car_make": 61, + "name": "Brava", + "arabic_name": "برافا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 582, + "fields": { + "id_car_make": 61, + "name": "Bravo", + "arabic_name": "برافو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 583, + "fields": { + "id_car_make": 61, + "name": "Cinquecento", + "arabic_name": "تشينكويشينتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 584, + "fields": { + "id_car_make": 61, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 585, + "fields": { + "id_car_make": 61, + "name": "Croma", + "arabic_name": "كروم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 586, + "fields": { + "id_car_make": 61, + "name": "Doblo", + "arabic_name": "دوبلو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 587, + "fields": { + "id_car_make": 61, + "name": "Duna", + "arabic_name": "دونا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 588, + "fields": { + "id_car_make": 61, + "name": "Fiorino", + "arabic_name": "فيورينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 589, + "fields": { + "id_car_make": 61, + "name": "Freemont", + "arabic_name": "فريمونت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 590, + "fields": { + "id_car_make": 61, + "name": "Idea", + "arabic_name": "إيديا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 591, + "fields": { + "id_car_make": 61, + "name": "Linea", + "arabic_name": "لينيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 592, + "fields": { + "id_car_make": 61, + "name": "Marea", + "arabic_name": "ماريا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 593, + "fields": { + "id_car_make": 61, + "name": "Multipla", + "arabic_name": "مولتيبلا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 594, + "fields": { + "id_car_make": 61, + "name": "Palio", + "arabic_name": "باليو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 595, + "fields": { + "id_car_make": 61, + "name": "Panda", + "arabic_name": "باندا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 596, + "fields": { + "id_car_make": 61, + "name": "Punto", + "arabic_name": "بونتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 597, + "fields": { + "id_car_make": 61, + "name": "Qubo", + "arabic_name": "كوبو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 598, + "fields": { + "id_car_make": 61, + "name": "Regata", + "arabic_name": "ريجاتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 599, + "fields": { + "id_car_make": 61, + "name": "Ritmo", + "arabic_name": "ريتمو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 600, + "fields": { + "id_car_make": 61, + "name": "Sedici", + "arabic_name": "سيديتشي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 601, + "fields": { + "id_car_make": 61, + "name": "Seicento", + "arabic_name": "سيشينتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 602, + "fields": { + "id_car_make": 61, + "name": "Siena", + "arabic_name": "سيينا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 603, + "fields": { + "id_car_make": 61, + "name": "Stilo", + "arabic_name": "ستيلو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 604, + "fields": { + "id_car_make": 61, + "name": "Strada", + "arabic_name": "سترادا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 605, + "fields": { + "id_car_make": 61, + "name": "Tempra", + "arabic_name": "تمبرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 606, + "fields": { + "id_car_make": 61, + "name": "Tipo", + "arabic_name": "تيبو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 607, + "fields": { + "id_car_make": 61, + "name": "Ulysse", + "arabic_name": "يوليس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 608, + "fields": { + "id_car_make": 61, + "name": "Uno", + "arabic_name": "أونو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 609, + "fields": { + "id_car_make": 61, + "name": "X1/9", + "arabic_name": "إكس 1/9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 610, + "fields": { + "id_car_make": 62, + "name": "Karma", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 611, + "fields": { + "id_car_make": 63, + "name": "Aerostar", + "arabic_name": "إيرستار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 612, + "fields": { + "id_car_make": 63, + "name": "Aspire", + "arabic_name": "أسباير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 613, + "fields": { + "id_car_make": 63, + "name": "B-MAX", + "arabic_name": "بي-ماكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 614, + "fields": { + "id_car_make": 63, + "name": "Bronco", + "arabic_name": "برونكو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 615, + "fields": { + "id_car_make": 63, + "name": "C-Max", + "arabic_name": "سي-ماكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 616, + "fields": { + "id_car_make": 63, + "name": "Capri", + "arabic_name": "كابري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 617, + "fields": { + "id_car_make": 63, + "name": "Consul", + "arabic_name": "كونسول" + } +}, +{ + "model": "inventory.carmodel", + "pk": 618, + "fields": { + "id_car_make": 63, + "name": "Contour", + "arabic_name": "كونتور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 619, + "fields": { + "id_car_make": 63, + "name": "Cougar", + "arabic_name": "كوغر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 620, + "fields": { + "id_car_make": 63, + "name": "Crown Victoria", + "arabic_name": "كراون فيكتوريا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 621, + "fields": { + "id_car_make": 63, + "name": "Econoline", + "arabic_name": "إيكونولاين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 622, + "fields": { + "id_car_make": 63, + "name": "EcoSport", + "arabic_name": "إيكو سبورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 623, + "fields": { + "id_car_make": 63, + "name": "Edge", + "arabic_name": "إيدج" + } +}, +{ + "model": "inventory.carmodel", + "pk": 624, + "fields": { + "id_car_make": 63, + "name": "Escape", + "arabic_name": "إسكيب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 625, + "fields": { + "id_car_make": 63, + "name": "Escort (North America)", + "arabic_name": "إسكورت (أمريكا الشمالية)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 626, + "fields": { + "id_car_make": 63, + "name": "Escort", + "arabic_name": "إسكورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 627, + "fields": { + "id_car_make": 63, + "name": "Everest", + "arabic_name": "إيفرست" + } +}, +{ + "model": "inventory.carmodel", + "pk": 628, + "fields": { + "id_car_make": 63, + "name": "Excursion", + "arabic_name": "إكسرجن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 629, + "fields": { + "id_car_make": 63, + "name": "Expedition", + "arabic_name": "إكسبيديشن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 630, + "fields": { + "id_car_make": 63, + "name": "Explorer", + "arabic_name": "إكسبلورر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 631, + "fields": { + "id_car_make": 63, + "name": "F-150", + "arabic_name": "إف-150" + } +}, +{ + "model": "inventory.carmodel", + "pk": 632, + "fields": { + "id_car_make": 63, + "name": "Fairmont", + "arabic_name": "فيرمونت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 633, + "fields": { + "id_car_make": 63, + "name": "Festiva", + "arabic_name": "فيستيفا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 634, + "fields": { + "id_car_make": 63, + "name": "Fiesta", + "arabic_name": "فييستا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 635, + "fields": { + "id_car_make": 63, + "name": "Five Hundred", + "arabic_name": "فايف هندرد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 636, + "fields": { + "id_car_make": 63, + "name": "Flex", + "arabic_name": "فليكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 637, + "fields": { + "id_car_make": 63, + "name": "Focus", + "arabic_name": "فوكاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 638, + "fields": { + "id_car_make": 63, + "name": "Freestar", + "arabic_name": "فريستار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 639, + "fields": { + "id_car_make": 63, + "name": "Freestyle", + "arabic_name": "فريستايل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 640, + "fields": { + "id_car_make": 63, + "name": "Fusion (North America)", + "arabic_name": "فيوجن (أمريكا الشمالية)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 641, + "fields": { + "id_car_make": 63, + "name": "Fusion", + "arabic_name": "فيوجن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 642, + "fields": { + "id_car_make": 63, + "name": "Galaxy", + "arabic_name": "جالاكسي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 643, + "fields": { + "id_car_make": 63, + "name": "Granada (North America)", + "arabic_name": "غرناطة (أمريكا الشمالية)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 644, + "fields": { + "id_car_make": 63, + "name": "Granada", + "arabic_name": "غرناطة" + } +}, +{ + "model": "inventory.carmodel", + "pk": 645, + "fields": { + "id_car_make": 63, + "name": "GT", + "arabic_name": "جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 646, + "fields": { + "id_car_make": 63, + "name": "Ixion", + "arabic_name": "إكسيون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 647, + "fields": { + "id_car_make": 63, + "name": "Ka", + "arabic_name": "كاي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 648, + "fields": { + "id_car_make": 63, + "name": "Kuga", + "arabic_name": "كوغا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 649, + "fields": { + "id_car_make": 63, + "name": "Laser", + "arabic_name": "لايزر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 650, + "fields": { + "id_car_make": 63, + "name": "LTD Crown Victoria", + "arabic_name": "إل تي دي كراون فيكتوريا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 651, + "fields": { + "id_car_make": 63, + "name": "Maverick", + "arabic_name": "مافريك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 652, + "fields": { + "id_car_make": 63, + "name": "Mondeo", + "arabic_name": "مونديو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 653, + "fields": { + "id_car_make": 63, + "name": "Mustang", + "arabic_name": "موستانج" + } +}, +{ + "model": "inventory.carmodel", + "pk": 654, + "fields": { + "id_car_make": 63, + "name": "Orion", + "arabic_name": "أوريون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 655, + "fields": { + "id_car_make": 63, + "name": "Probe", + "arabic_name": "بروب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 656, + "fields": { + "id_car_make": 63, + "name": "Puma", + "arabic_name": "بوما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 657, + "fields": { + "id_car_make": 63, + "name": "Ranger (North America)", + "arabic_name": "رينجر (أمريكا الشمالية)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 658, + "fields": { + "id_car_make": 63, + "name": "Ranger", + "arabic_name": "رينجر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 659, + "fields": { + "id_car_make": 63, + "name": "S-Max", + "arabic_name": "إس ماكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 660, + "fields": { + "id_car_make": 63, + "name": "Scorpio", + "arabic_name": "سكوربيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 661, + "fields": { + "id_car_make": 63, + "name": "Sierra", + "arabic_name": "سييرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 663, + "fields": { + "id_car_make": 63, + "name": "Taunus", + "arabic_name": "تاونوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 664, + "fields": { + "id_car_make": 63, + "name": "Taurus", + "arabic_name": "توروس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 665, + "fields": { + "id_car_make": 63, + "name": "Taurus X", + "arabic_name": "توروس إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 666, + "fields": { + "id_car_make": 63, + "name": "Tempo", + "arabic_name": "تيمبو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 667, + "fields": { + "id_car_make": 63, + "name": "Thunderbird", + "arabic_name": "ثندربيرد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 668, + "fields": { + "id_car_make": 63, + "name": "Tourneo Connect", + "arabic_name": "تورنو كونكت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 669, + "fields": { + "id_car_make": 63, + "name": "Windstar", + "arabic_name": "ويندستار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 670, + "fields": { + "id_car_make": 64, + "name": "Midi", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 672, + "fields": { + "id_car_make": 65, + "name": "125p", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 673, + "fields": { + "id_car_make": 65, + "name": "126p", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 674, + "fields": { + "id_car_make": 65, + "name": "127p", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 675, + "fields": { + "id_car_make": 65, + "name": "132p", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 676, + "fields": { + "id_car_make": 65, + "name": "Polonez", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 677, + "fields": { + "id_car_make": 66, + "name": "6500 Land King", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 678, + "fields": { + "id_car_make": 67, + "name": "Beauty Leopard", + "arabic_name": "بيوتي ليوبارد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 679, + "fields": { + "id_car_make": 67, + "name": "CK", + "arabic_name": "سي كي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 680, + "fields": { + "id_car_make": 67, + "name": "Emgrand 7", + "arabic_name": "7إمجراند" + } +}, +{ + "model": "inventory.carmodel", + "pk": 681, + "fields": { + "id_car_make": 67, + "name": "Emgrand EC8", + "arabic_name": "إمجراند إي سي8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 682, + "fields": { + "id_car_make": 67, + "name": "Emgrand X7", + "arabic_name": "إمجراند إكس7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 683, + "fields": { + "id_car_make": 67, + "name": "Vision", + "arabic_name": "فيجن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 684, + "fields": { + "id_car_make": 67, + "name": "Haoqing", + "arabic_name": "هاوكينج" + } +}, +{ + "model": "inventory.carmodel", + "pk": 685, + "fields": { + "id_car_make": 67, + "name": "LC", + "arabic_name": "إل سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 687, + "fields": { + "id_car_make": 67, + "name": "MK Cross", + "arabic_name": "إم كي كروس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 688, + "fields": { + "id_car_make": 67, + "name": "MK", + "arabic_name": "إم كي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 689, + "fields": { + "id_car_make": 67, + "name": "MR", + "arabic_name": "إم آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 690, + "fields": { + "id_car_make": 68, + "name": "Metro", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 691, + "fields": { + "id_car_make": 68, + "name": "Prizm", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 692, + "fields": { + "id_car_make": 68, + "name": "Spectrum", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 693, + "fields": { + "id_car_make": 68, + "name": "Storm", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 694, + "fields": { + "id_car_make": 68, + "name": "Tracker", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 695, + "fields": { + "id_car_make": 69, + "name": "Acadia", + "arabic_name": "اكاديا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 696, + "fields": { + "id_car_make": 69, + "name": "Canyon", + "arabic_name": "كانيون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 697, + "fields": { + "id_car_make": 69, + "name": "Envoy", + "arabic_name": "انفوي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 698, + "fields": { + "id_car_make": 69, + "name": "Jimmy", + "arabic_name": "جيمي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 699, + "fields": { + "id_car_make": 69, + "name": "Safari", + "arabic_name": "سفاري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 700, + "fields": { + "id_car_make": 69, + "name": "Savana", + "arabic_name": "سافانا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 701, + "fields": { + "id_car_make": 69, + "name": "Sierra", + "arabic_name": "سييرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 702, + "fields": { + "id_car_make": 69, + "name": "Sonoma", + "arabic_name": "سونوما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 703, + "fields": { + "id_car_make": 69, + "name": "Suburban", + "arabic_name": "سوبربان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 704, + "fields": { + "id_car_make": 69, + "name": "Syclone", + "arabic_name": "سايكلون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 705, + "fields": { + "id_car_make": 69, + "name": "Terrain", + "arabic_name": "تيرين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 706, + "fields": { + "id_car_make": 69, + "name": "Typhoon", + "arabic_name": "تايفون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 707, + "fields": { + "id_car_make": 69, + "name": "Vandura", + "arabic_name": "فاندورا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 708, + "fields": { + "id_car_make": 69, + "name": "Yukon", + "arabic_name": "يوكون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 709, + "fields": { + "id_car_make": 70, + "name": "Troy", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 710, + "fields": { + "id_car_make": 71, + "name": "CoolBear", + "arabic_name": "كول بير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 711, + "fields": { + "id_car_make": 71, + "name": "Cowry", + "arabic_name": "كاوري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 712, + "fields": { + "id_car_make": 71, + "name": "Deer", + "arabic_name": "دير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 713, + "fields": { + "id_car_make": 71, + "name": "Florid", + "arabic_name": "فلوريد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 714, + "fields": { + "id_car_make": 71, + "name": "Hover H3", + "arabic_name": "هوفر إتش 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 715, + "fields": { + "id_car_make": 71, + "name": "Hover M1 (Peri 4x4)", + "arabic_name": "هوفر إم 1 (بيري 4x4)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 716, + "fields": { + "id_car_make": 71, + "name": "Hover M2", + "arabic_name": "هوفر إم 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 717, + "fields": { + "id_car_make": 71, + "name": "Hover M4", + "arabic_name": "هوفر إم 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 718, + "fields": { + "id_car_make": 71, + "name": "Pegasus", + "arabic_name": "بيجاسوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 719, + "fields": { + "id_car_make": 71, + "name": "Peri", + "arabic_name": "بيري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 720, + "fields": { + "id_car_make": 71, + "name": "Safe", + "arabic_name": "سيف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 721, + "fields": { + "id_car_make": 71, + "name": "Sailor", + "arabic_name": "سايلور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 722, + "fields": { + "id_car_make": 71, + "name": "Sing RUV", + "arabic_name": "سينغ آر يو في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 723, + "fields": { + "id_car_make": 71, + "name": "Socool", + "arabic_name": "سوكول" + } +}, +{ + "model": "inventory.carmodel", + "pk": 724, + "fields": { + "id_car_make": 71, + "name": "Voleex C10", + "arabic_name": "فوليكس سي 10" + } +}, +{ + "model": "inventory.carmodel", + "pk": 725, + "fields": { + "id_car_make": 71, + "name": "Wingle 3", + "arabic_name": "وينجل 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 726, + "fields": { + "id_car_make": 72, + "name": "Brio", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 727, + "fields": { + "id_car_make": 72, + "name": "Princip", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 728, + "fields": { + "id_car_make": 72, + "name": "Saibao", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 729, + "fields": { + "id_car_make": 72, + "name": "Sigma", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 730, + "fields": { + "id_car_make": 72, + "name": "Simbo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 731, + "fields": { + "id_car_make": 73, + "name": "3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 732, + "fields": { + "id_car_make": 73, + "name": "7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 733, + "fields": { + "id_car_make": 73, + "name": "M3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 734, + "fields": { + "id_car_make": 74, + "name": "Ambassador", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 735, + "fields": { + "id_car_make": 74, + "name": "Contessa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 736, + "fields": { + "id_car_make": 75, + "name": "Apollo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 737, + "fields": { + "id_car_make": 75, + "name": "Astra", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 738, + "fields": { + "id_car_make": 75, + "name": "Barina", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 739, + "fields": { + "id_car_make": 75, + "name": "Calais", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 740, + "fields": { + "id_car_make": 75, + "name": "Caprice", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 742, + "fields": { + "id_car_make": 75, + "name": "Commodore", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 743, + "fields": { + "id_car_make": 75, + "name": "Cruze", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 744, + "fields": { + "id_car_make": 75, + "name": "Frontera", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 745, + "fields": { + "id_car_make": 75, + "name": "Jackaroo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 746, + "fields": { + "id_car_make": 75, + "name": "Monaro", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 747, + "fields": { + "id_car_make": 75, + "name": "Rodeo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 749, + "fields": { + "id_car_make": 75, + "name": "Suburban", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 750, + "fields": { + "id_car_make": 75, + "name": "UTE", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 751, + "fields": { + "id_car_make": 75, + "name": "Vectra", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 752, + "fields": { + "id_car_make": 75, + "name": "Zafira", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 753, + "fields": { + "id_car_make": 76, + "name": "Accord", + "arabic_name": "أكورد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 754, + "fields": { + "id_car_make": 76, + "name": "Airwave", + "arabic_name": "إير ويف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 755, + "fields": { + "id_car_make": 76, + "name": "Ascot", + "arabic_name": "أسكوت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 756, + "fields": { + "id_car_make": 76, + "name": "Avancier", + "arabic_name": "أفانسيير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 757, + "fields": { + "id_car_make": 76, + "name": "Beat", + "arabic_name": "بييت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 758, + "fields": { + "id_car_make": 76, + "name": "Capa", + "arabic_name": "كابا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 759, + "fields": { + "id_car_make": 76, + "name": "City", + "arabic_name": "سيتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 760, + "fields": { + "id_car_make": 76, + "name": "Civic Ferio", + "arabic_name": "سيفيك فيريو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 761, + "fields": { + "id_car_make": 76, + "name": "Civic", + "arabic_name": "سيفيك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 762, + "fields": { + "id_car_make": 76, + "name": "Concerto", + "arabic_name": "كونشرتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 763, + "fields": { + "id_car_make": 76, + "name": "CR-V", + "arabic_name": "سي آر-في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 764, + "fields": { + "id_car_make": 76, + "name": "CR-X", + "arabic_name": "سي آر-إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 765, + "fields": { + "id_car_make": 76, + "name": "CR-Z", + "arabic_name": "سي آر-زد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 766, + "fields": { + "id_car_make": 76, + "name": "Crossroad", + "arabic_name": "كروس رود" + } +}, +{ + "model": "inventory.carmodel", + "pk": 767, + "fields": { + "id_car_make": 76, + "name": "Crosstour", + "arabic_name": "كروس تور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 768, + "fields": { + "id_car_make": 76, + "name": "Domani", + "arabic_name": "دوماني" + } +}, +{ + "model": "inventory.carmodel", + "pk": 769, + "fields": { + "id_car_make": 76, + "name": "Edix", + "arabic_name": "إديكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 770, + "fields": { + "id_car_make": 76, + "name": "Element", + "arabic_name": "إليمنت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 771, + "fields": { + "id_car_make": 76, + "name": "Elysion", + "arabic_name": "إليسيون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 772, + "fields": { + "id_car_make": 76, + "name": "FCX Clarity", + "arabic_name": "إف سي إكس كلاريتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 773, + "fields": { + "id_car_make": 76, + "name": "Fit Aria", + "arabic_name": "فيت آريا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 774, + "fields": { + "id_car_make": 76, + "name": "Fit", + "arabic_name": "فيت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 775, + "fields": { + "id_car_make": 76, + "name": "FR-V", + "arabic_name": "إف آر-في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 776, + "fields": { + "id_car_make": 76, + "name": "Freed", + "arabic_name": "فريد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 777, + "fields": { + "id_car_make": 76, + "name": "HR-V", + "arabic_name": "إتش آر-في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 778, + "fields": { + "id_car_make": 76, + "name": "Insight", + "arabic_name": "إنسايت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 779, + "fields": { + "id_car_make": 76, + "name": "Inspire", + "arabic_name": "إنسباير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 780, + "fields": { + "id_car_make": 76, + "name": "Integra", + "arabic_name": "إنتيجرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 781, + "fields": { + "id_car_make": 76, + "name": "Integra SJ", + "arabic_name": "إنتيجرا إس جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 782, + "fields": { + "id_car_make": 76, + "name": "Jazz", + "arabic_name": "جاز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 783, + "fields": { + "id_car_make": 76, + "name": "Legend", + "arabic_name": "ليجند" + } +}, +{ + "model": "inventory.carmodel", + "pk": 784, + "fields": { + "id_car_make": 76, + "name": "Life", + "arabic_name": "لايف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 785, + "fields": { + "id_car_make": 76, + "name": "Logo", + "arabic_name": "لوجو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 786, + "fields": { + "id_car_make": 76, + "name": "MDX", + "arabic_name": "إم دي إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 787, + "fields": { + "id_car_make": 76, + "name": "Mobilio", + "arabic_name": "موبيلو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 788, + "fields": { + "id_car_make": 76, + "name": "NSX", + "arabic_name": "إن إس إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 789, + "fields": { + "id_car_make": 76, + "name": "Odyssey (North America)", + "arabic_name": "أوديسي (أمريكا الشمالية)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 790, + "fields": { + "id_car_make": 76, + "name": "Odyssey", + "arabic_name": "أوديسي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 791, + "fields": { + "id_car_make": 76, + "name": "Orthia", + "arabic_name": "أورثيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 792, + "fields": { + "id_car_make": 76, + "name": "Partner", + "arabic_name": "بارتنر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 793, + "fields": { + "id_car_make": 76, + "name": "Passport", + "arabic_name": "باسبور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 794, + "fields": { + "id_car_make": 76, + "name": "Pilot", + "arabic_name": "بايلوت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 795, + "fields": { + "id_car_make": 76, + "name": "Prelude", + "arabic_name": "بريلود" + } +}, +{ + "model": "inventory.carmodel", + "pk": 796, + "fields": { + "id_car_make": 76, + "name": "Quint", + "arabic_name": "كوينت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 797, + "fields": { + "id_car_make": 76, + "name": "Rafaga", + "arabic_name": "رافاجا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 798, + "fields": { + "id_car_make": 76, + "name": "Ridgeline", + "arabic_name": "ريدج لاين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 799, + "fields": { + "id_car_make": 76, + "name": "S-MX", + "arabic_name": "إس-إم إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 800, + "fields": { + "id_car_make": 76, + "name": "S2000", + "arabic_name": "إس2000" + } +}, +{ + "model": "inventory.carmodel", + "pk": 801, + "fields": { + "id_car_make": 76, + "name": "Saber", + "arabic_name": "سيبر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 802, + "fields": { + "id_car_make": 76, + "name": "Shuttle", + "arabic_name": "شاتل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 803, + "fields": { + "id_car_make": 76, + "name": "Stepwgn", + "arabic_name": "ستيب واغون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 804, + "fields": { + "id_car_make": 76, + "name": "Stream", + "arabic_name": "ستريم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 805, + "fields": { + "id_car_make": 76, + "name": "That's", + "arabic_name": "ذاتس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 806, + "fields": { + "id_car_make": 76, + "name": "Today", + "arabic_name": "توداي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 807, + "fields": { + "id_car_make": 76, + "name": "Torneo", + "arabic_name": "تورينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 808, + "fields": { + "id_car_make": 76, + "name": "Vamos", + "arabic_name": "فاموس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 809, + "fields": { + "id_car_make": 76, + "name": "Vigor", + "arabic_name": "فيجور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 810, + "fields": { + "id_car_make": 76, + "name": "Z", + "arabic_name": "زد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 811, + "fields": { + "id_car_make": 76, + "name": "Zest", + "arabic_name": "زيست" + } +}, +{ + "model": "inventory.carmodel", + "pk": 812, + "fields": { + "id_car_make": 77, + "name": "Antelope", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 813, + "fields": { + "id_car_make": 77, + "name": "Landscape", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 814, + "fields": { + "id_car_make": 77, + "name": "Plutus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 815, + "fields": { + "id_car_make": 78, + "name": "H1", + "arabic_name": "إتش ون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 816, + "fields": { + "id_car_make": 78, + "name": "H2", + "arabic_name": "إتش تو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 817, + "fields": { + "id_car_make": 78, + "name": "H3", + "arabic_name": "إتش ثري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 818, + "fields": { + "id_car_make": 79, + "name": "Accent", + "arabic_name": "أكسنت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 819, + "fields": { + "id_car_make": 79, + "name": "Atos", + "arabic_name": "أتوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 820, + "fields": { + "id_car_make": 79, + "name": "Avante", + "arabic_name": "أفانتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 821, + "fields": { + "id_car_make": 79, + "name": "Centennial", + "arabic_name": "سنتنيال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 822, + "fields": { + "id_car_make": 79, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 823, + "fields": { + "id_car_make": 79, + "name": "Dynasty", + "arabic_name": "داينستي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 824, + "fields": { + "id_car_make": 79, + "name": "Elantra", + "arabic_name": "إلنترا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 825, + "fields": { + "id_car_make": 79, + "name": "Equus", + "arabic_name": "إيكوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 826, + "fields": { + "id_car_make": 79, + "name": "Excel", + "arabic_name": "إكسل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 827, + "fields": { + "id_car_make": 79, + "name": "Galloper", + "arabic_name": "جالوبر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 828, + "fields": { + "id_car_make": 79, + "name": "Genesis", + "arabic_name": "جينيسيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 829, + "fields": { + "id_car_make": 79, + "name": "Genesis Coupe", + "arabic_name": "جينيسيس كوبيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 830, + "fields": { + "id_car_make": 79, + "name": "Getz", + "arabic_name": "جيتز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 831, + "fields": { + "id_car_make": 79, + "name": "Grandeur", + "arabic_name": "جرانديور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 832, + "fields": { + "id_car_make": 79, + "name": "i10", + "arabic_name": "آي 10" + } +}, +{ + "model": "inventory.carmodel", + "pk": 833, + "fields": { + "id_car_make": 79, + "name": "i20", + "arabic_name": "آي 20" + } +}, +{ + "model": "inventory.carmodel", + "pk": 834, + "fields": { + "id_car_make": 79, + "name": "i30", + "arabic_name": "آي 30" + } +}, +{ + "model": "inventory.carmodel", + "pk": 835, + "fields": { + "id_car_make": 79, + "name": "i40", + "arabic_name": "آي 40" + } +}, +{ + "model": "inventory.carmodel", + "pk": 836, + "fields": { + "id_car_make": 79, + "name": "ix20", + "arabic_name": "آي إكس 20" + } +}, +{ + "model": "inventory.carmodel", + "pk": 837, + "fields": { + "id_car_make": 79, + "name": "ix35", + "arabic_name": "آي إكس 35" + } +}, +{ + "model": "inventory.carmodel", + "pk": 838, + "fields": { + "id_car_make": 79, + "name": "ix55", + "arabic_name": "آي إكس 55" + } +}, +{ + "model": "inventory.carmodel", + "pk": 839, + "fields": { + "id_car_make": 79, + "name": "Lantra", + "arabic_name": "لانترا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 840, + "fields": { + "id_car_make": 79, + "name": "Lavita", + "arabic_name": "لافيتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 841, + "fields": { + "id_car_make": 79, + "name": "Marcia", + "arabic_name": "مارسيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 842, + "fields": { + "id_car_make": 79, + "name": "Matrix", + "arabic_name": "ماتريكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 843, + "fields": { + "id_car_make": 79, + "name": "Maxcruz", + "arabic_name": "ماكسكروز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 844, + "fields": { + "id_car_make": 79, + "name": "Pony", + "arabic_name": "بوني" + } +}, +{ + "model": "inventory.carmodel", + "pk": 845, + "fields": { + "id_car_make": 79, + "name": "Santa Fe", + "arabic_name": "سانتا في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 846, + "fields": { + "id_car_make": 79, + "name": "Santamo", + "arabic_name": "سانتامو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 847, + "fields": { + "id_car_make": 79, + "name": "Scoupe", + "arabic_name": "سكوب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 848, + "fields": { + "id_car_make": 79, + "name": "Solaris", + "arabic_name": "سولاريس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 849, + "fields": { + "id_car_make": 79, + "name": "Sonata", + "arabic_name": "سوناتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 850, + "fields": { + "id_car_make": 79, + "name": "H-1", + "arabic_name": "إتش-1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 851, + "fields": { + "id_car_make": 79, + "name": "Stellar", + "arabic_name": "ستيلار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 852, + "fields": { + "id_car_make": 79, + "name": "Terracan", + "arabic_name": "تيركان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 853, + "fields": { + "id_car_make": 79, + "name": "Tiburon", + "arabic_name": "تيبورن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 854, + "fields": { + "id_car_make": 79, + "name": "Trajet", + "arabic_name": "تراجيت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 855, + "fields": { + "id_car_make": 79, + "name": "Tucson", + "arabic_name": "توسان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 856, + "fields": { + "id_car_make": 79, + "name": "Tuscani", + "arabic_name": "توسكاني" + } +}, +{ + "model": "inventory.carmodel", + "pk": 857, + "fields": { + "id_car_make": 79, + "name": "Veloster", + "arabic_name": "فيلوستر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 858, + "fields": { + "id_car_make": 79, + "name": "Veracruz", + "arabic_name": "فيراكروز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 859, + "fields": { + "id_car_make": 79, + "name": "Verna", + "arabic_name": "فيرنا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 860, + "fields": { + "id_car_make": 79, + "name": "XG", + "arabic_name": "إكس جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 861, + "fields": { + "id_car_make": 80, + "name": "EX-Series", + "arabic_name": "إي إكس-سيريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 862, + "fields": { + "id_car_make": 80, + "name": "FX-Series", + "arabic_name": "إف إكس-سيريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 863, + "fields": { + "id_car_make": 80, + "name": "G", + "arabic_name": "جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 864, + "fields": { + "id_car_make": 80, + "name": "G-Series", + "arabic_name": "جي-سيريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 865, + "fields": { + "id_car_make": 80, + "name": "J30", + "arabic_name": "جيه 30" + } +}, +{ + "model": "inventory.carmodel", + "pk": 866, + "fields": { + "id_car_make": 80, + "name": "JX-Series", + "arabic_name": "جيه إكس-سيريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 867, + "fields": { + "id_car_make": 80, + "name": "M-Series", + "arabic_name": "إم-سيريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 868, + "fields": { + "id_car_make": 80, + "name": "Q45", + "arabic_name": "كيو 45" + } +}, +{ + "model": "inventory.carmodel", + "pk": 869, + "fields": { + "id_car_make": 80, + "name": "Q50", + "arabic_name": "كيو 50" + } +}, +{ + "model": "inventory.carmodel", + "pk": 870, + "fields": { + "id_car_make": 80, + "name": "Q60", + "arabic_name": "كيو 60" + } +}, +{ + "model": "inventory.carmodel", + "pk": 872, + "fields": { + "id_car_make": 80, + "name": "QX50", + "arabic_name": "كيو إكس 50" + } +}, +{ + "model": "inventory.carmodel", + "pk": 873, + "fields": { + "id_car_make": 80, + "name": "QX60", + "arabic_name": "كيو إكس 60" + } +}, +{ + "model": "inventory.carmodel", + "pk": 874, + "fields": { + "id_car_make": 80, + "name": "QX70", + "arabic_name": "كيو إكس 70" + } +}, +{ + "model": "inventory.carmodel", + "pk": 875, + "fields": { + "id_car_make": 80, + "name": "QX80", + "arabic_name": "كيو إكس 80" + } +}, +{ + "model": "inventory.carmodel", + "pk": 876, + "fields": { + "id_car_make": 81, + "name": "Elba", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 877, + "fields": { + "id_car_make": 81, + "name": "Mille", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 878, + "fields": { + "id_car_make": 81, + "name": "Mini", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 879, + "fields": { + "id_car_make": 82, + "name": "S1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 880, + "fields": { + "id_car_make": 83, + "name": "Paykan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 881, + "fields": { + "id_car_make": 83, + "name": "Samand", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 882, + "fields": { + "id_car_make": 83, + "name": "Soren", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 883, + "fields": { + "id_car_make": 84, + "name": "Commendatore 112i", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 884, + "fields": { + "id_car_make": 84, + "name": "Imperator", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 885, + "fields": { + "id_car_make": 84, + "name": "Spyder", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 886, + "fields": { + "id_car_make": 85, + "name": "Amigo", + "arabic_name": "أميجو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 887, + "fields": { + "id_car_make": 85, + "name": "Ascender", + "arabic_name": "أسندر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 888, + "fields": { + "id_car_make": 85, + "name": "Aska", + "arabic_name": "أسكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 889, + "fields": { + "id_car_make": 85, + "name": "Axiom", + "arabic_name": "أكسيوم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 890, + "fields": { + "id_car_make": 85, + "name": "Bighorn", + "arabic_name": "بيغ هورن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 891, + "fields": { + "id_car_make": 85, + "name": "D-Max", + "arabic_name": "دي ماكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 892, + "fields": { + "id_car_make": 85, + "name": "Gemini", + "arabic_name": "جيميني" + } +}, +{ + "model": "inventory.carmodel", + "pk": 893, + "fields": { + "id_car_make": 85, + "name": "Impulse", + "arabic_name": "إمبلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 894, + "fields": { + "id_car_make": 85, + "name": "KB", + "arabic_name": "كي بي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 895, + "fields": { + "id_car_make": 85, + "name": "MU", + "arabic_name": "إم يو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 896, + "fields": { + "id_car_make": 85, + "name": "MU-7", + "arabic_name": "إم يو 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 897, + "fields": { + "id_car_make": 85, + "name": "Piazza", + "arabic_name": "بيازا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 898, + "fields": { + "id_car_make": 85, + "name": "Rodeo", + "arabic_name": "روديو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 899, + "fields": { + "id_car_make": 85, + "name": "Stylus", + "arabic_name": "ستايلوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 900, + "fields": { + "id_car_make": 85, + "name": "TF (Pickup)", + "arabic_name": "تي إف (بيك أب)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 901, + "fields": { + "id_car_make": 85, + "name": "Trooper", + "arabic_name": "تروبر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 902, + "fields": { + "id_car_make": 85, + "name": "VehiCross", + "arabic_name": "فهي كروس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 903, + "fields": { + "id_car_make": 85, + "name": "Wizard", + "arabic_name": "ويزارد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 904, + "fields": { + "id_car_make": 86, + "name": "Massif", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 905, + "fields": { + "id_car_make": 87, + "name": "J2", + "arabic_name": "جي 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 906, + "fields": { + "id_car_make": 87, + "name": "J3 (Tongyue,Tojoy)", + "arabic_name": "جي 3 (تونغيوي، توجوي)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 907, + "fields": { + "id_car_make": 87, + "name": "J5", + "arabic_name": "جي 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 908, + "fields": { + "id_car_make": 87, + "name": "J6 (Heyue RS)", + "arabic_name": "جي 6 (هاييو آر إس)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 909, + "fields": { + "id_car_make": 87, + "name": "J7 (Binyue)", + "arabic_name": "جي 7 (بينيوي)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 910, + "fields": { + "id_car_make": 87, + "name": "Refine", + "arabic_name": "ريفين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 911, + "fields": { + "id_car_make": 87, + "name": "Rein", + "arabic_name": "راين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 912, + "fields": { + "id_car_make": 87, + "name": "S5", + "arabic_name": "إس 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 914, + "fields": { + "id_car_make": 88, + "name": "E-Type", + "arabic_name": "إي-تايب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 915, + "fields": { + "id_car_make": 88, + "name": "F-Type", + "arabic_name": "إف-تايب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 916, + "fields": { + "id_car_make": 88, + "name": "S-Type", + "arabic_name": "إس-تايب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 917, + "fields": { + "id_car_make": 88, + "name": "X-Type", + "arabic_name": "إكس-تايب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 918, + "fields": { + "id_car_make": 88, + "name": "XF", + "arabic_name": "إكس إف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 919, + "fields": { + "id_car_make": 88, + "name": "XJ", + "arabic_name": "إكس جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 920, + "fields": { + "id_car_make": 88, + "name": "XJ220", + "arabic_name": "إكس جي 220" + } +}, +{ + "model": "inventory.carmodel", + "pk": 921, + "fields": { + "id_car_make": 88, + "name": "XJS", + "arabic_name": "إكس جي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 922, + "fields": { + "id_car_make": 88, + "name": "XK", + "arabic_name": "إكس كي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 923, + "fields": { + "id_car_make": 89, + "name": "Cherokee", + "arabic_name": "شيروكي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 924, + "fields": { + "id_car_make": 89, + "name": "CJ", + "arabic_name": "سي جاي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 925, + "fields": { + "id_car_make": 89, + "name": "Commander", + "arabic_name": "كوماندور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 926, + "fields": { + "id_car_make": 89, + "name": "Compass", + "arabic_name": "كومباس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 927, + "fields": { + "id_car_make": 89, + "name": "Grand Cherokee", + "arabic_name": "جراند شيروكي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 928, + "fields": { + "id_car_make": 89, + "name": "Wagoneer", + "arabic_name": "واجونير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 929, + "fields": { + "id_car_make": 89, + "name": "Liberty", + "arabic_name": "ليبرتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 930, + "fields": { + "id_car_make": 89, + "name": "Patriot", + "arabic_name": "باتريوت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 931, + "fields": { + "id_car_make": 89, + "name": "Wrangler", + "arabic_name": "رانجلر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 932, + "fields": { + "id_car_make": 90, + "name": "S-V8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 933, + "fields": { + "id_car_make": 91, + "name": "Baodian", + "arabic_name": "باوديان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 934, + "fields": { + "id_car_make": 92, + "name": "Avella", + "arabic_name": "أفيلا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 935, + "fields": { + "id_car_make": 92, + "name": "Cadenza", + "arabic_name": "كادينزا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 936, + "fields": { + "id_car_make": 92, + "name": "Capital", + "arabic_name": "كابيتال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 937, + "fields": { + "id_car_make": 92, + "name": "Carens", + "arabic_name": "كارينز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 938, + "fields": { + "id_car_make": 92, + "name": "Carnival", + "arabic_name": "كارنفال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 939, + "fields": { + "id_car_make": 92, + "name": "Cee'd", + "arabic_name": "سيد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 940, + "fields": { + "id_car_make": 92, + "name": "Cerato", + "arabic_name": "سيراتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 941, + "fields": { + "id_car_make": 92, + "name": "Clarus", + "arabic_name": "كلاروس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 942, + "fields": { + "id_car_make": 92, + "name": "Concord", + "arabic_name": "كونكورد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 943, + "fields": { + "id_car_make": 92, + "name": "Elan", + "arabic_name": "إيلان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 944, + "fields": { + "id_car_make": 92, + "name": "Enterprise", + "arabic_name": "إنتربرايز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 945, + "fields": { + "id_car_make": 92, + "name": "Joice", + "arabic_name": "جويز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 946, + "fields": { + "id_car_make": 92, + "name": "Magentis", + "arabic_name": "ماجنتيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 947, + "fields": { + "id_car_make": 92, + "name": "Borrego", + "arabic_name": "بورريغو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 948, + "fields": { + "id_car_make": 92, + "name": "Opirus", + "arabic_name": "أوبيروس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 949, + "fields": { + "id_car_make": 92, + "name": "Optima", + "arabic_name": "أوبتيما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 950, + "fields": { + "id_car_make": 92, + "name": "Picanto", + "arabic_name": "بيكانتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 951, + "fields": { + "id_car_make": 92, + "name": "Potentia", + "arabic_name": "بوتينتيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 952, + "fields": { + "id_car_make": 92, + "name": "Pride", + "arabic_name": "برايد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 953, + "fields": { + "id_car_make": 92, + "name": "Quoris", + "arabic_name": "كوريس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 954, + "fields": { + "id_car_make": 92, + "name": "Ray", + "arabic_name": "راي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 955, + "fields": { + "id_car_make": 92, + "name": "Retona", + "arabic_name": "ريتنا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 956, + "fields": { + "id_car_make": 92, + "name": "Rio", + "arabic_name": "ريو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 957, + "fields": { + "id_car_make": 92, + "name": "Sedona", + "arabic_name": "سيدونا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 958, + "fields": { + "id_car_make": 92, + "name": "Sephia", + "arabic_name": "سيفيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 959, + "fields": { + "id_car_make": 92, + "name": "Shuma", + "arabic_name": "شوما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 960, + "fields": { + "id_car_make": 92, + "name": "Sorento", + "arabic_name": "سورينتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 961, + "fields": { + "id_car_make": 92, + "name": "Soul", + "arabic_name": "سول" + } +}, +{ + "model": "inventory.carmodel", + "pk": 962, + "fields": { + "id_car_make": 92, + "name": "Spectra", + "arabic_name": "سبكترا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 963, + "fields": { + "id_car_make": 92, + "name": "Sportage", + "arabic_name": "سبورتاج" + } +}, +{ + "model": "inventory.carmodel", + "pk": 964, + "fields": { + "id_car_make": 92, + "name": "Venga", + "arabic_name": "فينجا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 965, + "fields": { + "id_car_make": 92, + "name": "Visto", + "arabic_name": "فيستو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 966, + "fields": { + "id_car_make": 92, + "name": "X-Trek", + "arabic_name": "إكس-تريك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 967, + "fields": { + "id_car_make": 93, + "name": "Agera", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 968, + "fields": { + "id_car_make": 93, + "name": "CC8S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 969, + "fields": { + "id_car_make": 93, + "name": "CCR", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 970, + "fields": { + "id_car_make": 93, + "name": "CCX", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 971, + "fields": { + "id_car_make": 93, + "name": "One:1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 973, + "fields": { + "id_car_make": 95, + "name": "Aventador", + "arabic_name": "أفينتادور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 974, + "fields": { + "id_car_make": 95, + "name": "Countach", + "arabic_name": "كونتاش" + } +}, +{ + "model": "inventory.carmodel", + "pk": 975, + "fields": { + "id_car_make": 95, + "name": "Diablo", + "arabic_name": "ديابلو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 976, + "fields": { + "id_car_make": 95, + "name": "Espada", + "arabic_name": "إسبادا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 977, + "fields": { + "id_car_make": 95, + "name": "Gallardo", + "arabic_name": "جالاردو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 978, + "fields": { + "id_car_make": 95, + "name": "Huracan", + "arabic_name": "هوراكان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 979, + "fields": { + "id_car_make": 95, + "name": "Jalpa", + "arabic_name": "جالبا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 980, + "fields": { + "id_car_make": 95, + "name": "Jarama", + "arabic_name": "جاراما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 981, + "fields": { + "id_car_make": 95, + "name": "LM001", + "arabic_name": "إل إم 001" + } +}, +{ + "model": "inventory.carmodel", + "pk": 982, + "fields": { + "id_car_make": 95, + "name": "LM002", + "arabic_name": "إل إم 002" + } +}, +{ + "model": "inventory.carmodel", + "pk": 983, + "fields": { + "id_car_make": 95, + "name": "Murcielago", + "arabic_name": "مورسيلاجو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 984, + "fields": { + "id_car_make": 95, + "name": "Reventon", + "arabic_name": "ريفينتون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 985, + "fields": { + "id_car_make": 95, + "name": "Urraco", + "arabic_name": "أوراكو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 986, + "fields": { + "id_car_make": 95, + "name": "Veneno", + "arabic_name": "فينينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 987, + "fields": { + "id_car_make": 96, + "name": "A112", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 988, + "fields": { + "id_car_make": 96, + "name": "Beta", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 989, + "fields": { + "id_car_make": 96, + "name": "Dedra", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 990, + "fields": { + "id_car_make": 96, + "name": "Delta", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 991, + "fields": { + "id_car_make": 96, + "name": "Fulvia", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 992, + "fields": { + "id_car_make": 96, + "name": "Gamma", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 993, + "fields": { + "id_car_make": 96, + "name": "Hyena", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 994, + "fields": { + "id_car_make": 96, + "name": "Kappa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 995, + "fields": { + "id_car_make": 96, + "name": "Lybra", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 996, + "fields": { + "id_car_make": 96, + "name": "Montecarlo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 997, + "fields": { + "id_car_make": 96, + "name": "Musa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 998, + "fields": { + "id_car_make": 96, + "name": "Phedra", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 999, + "fields": { + "id_car_make": 96, + "name": "Prisma", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1000, + "fields": { + "id_car_make": 96, + "name": "Thema", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1001, + "fields": { + "id_car_make": 96, + "name": "Thesis", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1002, + "fields": { + "id_car_make": 96, + "name": "Trevi", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1003, + "fields": { + "id_car_make": 96, + "name": "Y10", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1004, + "fields": { + "id_car_make": 96, + "name": "Ypsilon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1005, + "fields": { + "id_car_make": 96, + "name": "Zeta", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1006, + "fields": { + "id_car_make": 97, + "name": "Defender", + "arabic_name": "ديفندر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1007, + "fields": { + "id_car_make": 97, + "name": "Discovery", + "arabic_name": "ديسكفري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1008, + "fields": { + "id_car_make": 97, + "name": "Freelander", + "arabic_name": "فريلاندر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1009, + "fields": { + "id_car_make": 97, + "name": "Range Rover Evoque", + "arabic_name": "رينج روفر إيفوك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1010, + "fields": { + "id_car_make": 97, + "name": "Range Rover", + "arabic_name": "رينج روفر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1011, + "fields": { + "id_car_make": 97, + "name": "Range Rover Sport", + "arabic_name": "رينج روفر سبورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1012, + "fields": { + "id_car_make": 97, + "name": "Series I", + "arabic_name": "سلسلة I" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1013, + "fields": { + "id_car_make": 97, + "name": "Series II", + "arabic_name": "سلسلة II" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1014, + "fields": { + "id_car_make": 97, + "name": "Series", + "arabic_name": "سلسلة" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1015, + "fields": { + "id_car_make": 98, + "name": "Fashion (CV9)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1016, + "fields": { + "id_car_make": 98, + "name": "Forward", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1017, + "fields": { + "id_car_make": 98, + "name": "X5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1018, + "fields": { + "id_car_make": 98, + "name": "X6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1019, + "fields": { + "id_car_make": 99, + "name": "CT", + "arabic_name": "سي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1020, + "fields": { + "id_car_make": 99, + "name": "ES", + "arabic_name": "إي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1021, + "fields": { + "id_car_make": 99, + "name": "GS", + "arabic_name": "جي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1022, + "fields": { + "id_car_make": 99, + "name": "GX", + "arabic_name": "جي إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1023, + "fields": { + "id_car_make": 99, + "name": "HS", + "arabic_name": "إتش إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1024, + "fields": { + "id_car_make": 99, + "name": "IS", + "arabic_name": "آي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1025, + "fields": { + "id_car_make": 99, + "name": "LFA", + "arabic_name": "إل إف ايه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1026, + "fields": { + "id_car_make": 99, + "name": "LS", + "arabic_name": "إل إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1027, + "fields": { + "id_car_make": 99, + "name": "LX", + "arabic_name": "إل إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1028, + "fields": { + "id_car_make": 99, + "name": "RC", + "arabic_name": "آر سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1029, + "fields": { + "id_car_make": 99, + "name": "RX", + "arabic_name": "آر إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1030, + "fields": { + "id_car_make": 99, + "name": "SC", + "arabic_name": "إس سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1031, + "fields": { + "id_car_make": 100, + "name": "Leopard", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1032, + "fields": { + "id_car_make": 101, + "name": "Breez", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1033, + "fields": { + "id_car_make": 101, + "name": "Cebrium", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1036, + "fields": { + "id_car_make": 101, + "name": "X60", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1037, + "fields": { + "id_car_make": 102, + "name": "Aviator", + "arabic_name": "أفياتور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1038, + "fields": { + "id_car_make": 102, + "name": "Continental", + "arabic_name": "كونتيننتال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1039, + "fields": { + "id_car_make": 102, + "name": "LS", + "arabic_name": "إل إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1040, + "fields": { + "id_car_make": 102, + "name": "Mark LT", + "arabic_name": "مارك إل تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1041, + "fields": { + "id_car_make": 102, + "name": "Mark VII", + "arabic_name": "مارك 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1042, + "fields": { + "id_car_make": 102, + "name": "Mark VIII", + "arabic_name": "مارك 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1043, + "fields": { + "id_car_make": 102, + "name": "MKC", + "arabic_name": "إم كيه سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1044, + "fields": { + "id_car_make": 102, + "name": "MKS", + "arabic_name": "إم كيه إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1045, + "fields": { + "id_car_make": 102, + "name": "MKT", + "arabic_name": "إم كيه تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1046, + "fields": { + "id_car_make": 102, + "name": "MKX", + "arabic_name": "إم كيه إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1047, + "fields": { + "id_car_make": 102, + "name": "MKZ", + "arabic_name": "إم كيه زد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1048, + "fields": { + "id_car_make": 102, + "name": "Navigator", + "arabic_name": "نافيجيتور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1049, + "fields": { + "id_car_make": 102, + "name": "Town Car", + "arabic_name": "تاون كار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1050, + "fields": { + "id_car_make": 103, + "name": "340R", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1051, + "fields": { + "id_car_make": 103, + "name": "Eclat", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1052, + "fields": { + "id_car_make": 103, + "name": "Elan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1053, + "fields": { + "id_car_make": 103, + "name": "Elise", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1054, + "fields": { + "id_car_make": 103, + "name": "Elite", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1055, + "fields": { + "id_car_make": 103, + "name": "Esprit", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1056, + "fields": { + "id_car_make": 103, + "name": "Europa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1057, + "fields": { + "id_car_make": 103, + "name": "Europa S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1058, + "fields": { + "id_car_make": 103, + "name": "Evora", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1059, + "fields": { + "id_car_make": 103, + "name": "Excel", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1060, + "fields": { + "id_car_make": 103, + "name": "Exige", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1061, + "fields": { + "id_car_make": 104, + "name": "TX", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1062, + "fields": { + "id_car_make": 105, + "name": "5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1063, + "fields": { + "id_car_make": 105, + "name": "Luxgen7 MPV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1064, + "fields": { + "id_car_make": 105, + "name": "7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1066, + "fields": { + "id_car_make": 105, + "name": "U7 Turbo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1067, + "fields": { + "id_car_make": 106, + "name": "Armada", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1068, + "fields": { + "id_car_make": 106, + "name": "Bolero", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1069, + "fields": { + "id_car_make": 106, + "name": "CJ-3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1070, + "fields": { + "id_car_make": 106, + "name": "CL", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1071, + "fields": { + "id_car_make": 106, + "name": "Commander", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1072, + "fields": { + "id_car_make": 106, + "name": "Marshal", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1073, + "fields": { + "id_car_make": 106, + "name": "MM 540/550", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1074, + "fields": { + "id_car_make": 106, + "name": "NC 640 DP", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1075, + "fields": { + "id_car_make": 106, + "name": "Scorpio", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1076, + "fields": { + "id_car_make": 106, + "name": "Verito", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1077, + "fields": { + "id_car_make": 106, + "name": "Voyager", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1078, + "fields": { + "id_car_make": 106, + "name": "Xylo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1079, + "fields": { + "id_car_make": 107, + "name": "TS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1080, + "fields": { + "id_car_make": 107, + "name": "LM 400", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1081, + "fields": { + "id_car_make": 107, + "name": "LM 500", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1082, + "fields": { + "id_car_make": 107, + "name": "Mantis", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1083, + "fields": { + "id_car_make": 107, + "name": "Marcasite", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1084, + "fields": { + "id_car_make": 108, + "name": "5Exi", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1085, + "fields": { + "id_car_make": 108, + "name": "Sportster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1086, + "fields": { + "id_car_make": 109, + "name": "B1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1087, + "fields": { + "id_car_make": 109, + "name": "B2", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1088, + "fields": { + "id_car_make": 110, + "name": "1000", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1089, + "fields": { + "id_car_make": 110, + "name": "800", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1090, + "fields": { + "id_car_make": 110, + "name": "Alto", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1091, + "fields": { + "id_car_make": 110, + "name": "Baleno", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1092, + "fields": { + "id_car_make": 110, + "name": "Esteem", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1093, + "fields": { + "id_car_make": 110, + "name": "Gypsy", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1094, + "fields": { + "id_car_make": 110, + "name": "Omni", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1095, + "fields": { + "id_car_make": 110, + "name": "Versa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1096, + "fields": { + "id_car_make": 110, + "name": "Wagon R", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1097, + "fields": { + "id_car_make": 110, + "name": "Zen", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1098, + "fields": { + "id_car_make": 111, + "name": "228", + "arabic_name": "228" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1099, + "fields": { + "id_car_make": 111, + "name": "3200 GT", + "arabic_name": "3200 جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1100, + "fields": { + "id_car_make": 111, + "name": "420", + "arabic_name": "420" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1101, + "fields": { + "id_car_make": 111, + "name": "4200 GT", + "arabic_name": "4200 جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1102, + "fields": { + "id_car_make": 111, + "name": "Barchetta Stradale", + "arabic_name": "بارشيتا سترادالي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1103, + "fields": { + "id_car_make": 111, + "name": "Biturbo", + "arabic_name": "بيتوربو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1104, + "fields": { + "id_car_make": 111, + "name": "Bora", + "arabic_name": "بورا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1105, + "fields": { + "id_car_make": 111, + "name": "Chubasco", + "arabic_name": "تشوباسكو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1106, + "fields": { + "id_car_make": 111, + "name": "Ghibli", + "arabic_name": "جيبلي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1107, + "fields": { + "id_car_make": 111, + "name": "GranTurismo", + "arabic_name": "جران توريزمو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1108, + "fields": { + "id_car_make": 111, + "name": "Indy", + "arabic_name": "إندي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1109, + "fields": { + "id_car_make": 111, + "name": "Karif", + "arabic_name": "كريف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1110, + "fields": { + "id_car_make": 111, + "name": "Khamsin", + "arabic_name": "خمسين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1111, + "fields": { + "id_car_make": 111, + "name": "Kyalami", + "arabic_name": "كيالامي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1112, + "fields": { + "id_car_make": 111, + "name": "MC12", + "arabic_name": "إم سي 12" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1113, + "fields": { + "id_car_make": 111, + "name": "Merak", + "arabic_name": "ميراك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1114, + "fields": { + "id_car_make": 111, + "name": "Mexico", + "arabic_name": "ميكسيكو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1115, + "fields": { + "id_car_make": 111, + "name": "Quattroporte", + "arabic_name": "كواتروبورتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1116, + "fields": { + "id_car_make": 111, + "name": "Royale", + "arabic_name": "رويال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1117, + "fields": { + "id_car_make": 111, + "name": "Shamal", + "arabic_name": "شمال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1118, + "fields": { + "id_car_make": 112, + "name": "57", + "arabic_name": "57" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1119, + "fields": { + "id_car_make": 112, + "name": "62", + "arabic_name": "62" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1120, + "fields": { + "id_car_make": 113, + "name": "1000", + "arabic_name": "1000" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1121, + "fields": { + "id_car_make": 113, + "name": "121", + "arabic_name": "121" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1122, + "fields": { + "id_car_make": 113, + "name": "1300", + "arabic_name": "1300" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1123, + "fields": { + "id_car_make": 113, + "name": "2", + "arabic_name": "2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1124, + "fields": { + "id_car_make": 113, + "name": "3", + "arabic_name": "3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1125, + "fields": { + "id_car_make": 113, + "name": "323", + "arabic_name": "323" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1126, + "fields": { + "id_car_make": 113, + "name": "5", + "arabic_name": "5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1127, + "fields": { + "id_car_make": 113, + "name": "6", + "arabic_name": "6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1128, + "fields": { + "id_car_make": 113, + "name": "616", + "arabic_name": "616" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1129, + "fields": { + "id_car_make": 113, + "name": "626", + "arabic_name": "626" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1130, + "fields": { + "id_car_make": 113, + "name": "818", + "arabic_name": "818" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1131, + "fields": { + "id_car_make": 113, + "name": "929", + "arabic_name": "929" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1132, + "fields": { + "id_car_make": 113, + "name": "Atenza", + "arabic_name": "أتينزا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1133, + "fields": { + "id_car_make": 113, + "name": "Axela", + "arabic_name": "أكسلا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1134, + "fields": { + "id_car_make": 113, + "name": "AZ-1", + "arabic_name": "إيه زد-1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1135, + "fields": { + "id_car_make": 113, + "name": "AZ-Offroad", + "arabic_name": "إيه زد أوف رود" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1136, + "fields": { + "id_car_make": 113, + "name": "AZ-Wagon", + "arabic_name": "إيه زد واجن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1137, + "fields": { + "id_car_make": 113, + "name": "B-Series", + "arabic_name": "بي-سيريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1138, + "fields": { + "id_car_make": 113, + "name": "Biante", + "arabic_name": "بيانت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1139, + "fields": { + "id_car_make": 113, + "name": "Bongo Friendee", + "arabic_name": "بونغو فريندي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1140, + "fields": { + "id_car_make": 113, + "name": "Bongo", + "arabic_name": "بونغو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1141, + "fields": { + "id_car_make": 113, + "name": "BT-50", + "arabic_name": "بي تي-50" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1142, + "fields": { + "id_car_make": 113, + "name": "Capella", + "arabic_name": "كابيلا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1143, + "fields": { + "id_car_make": 113, + "name": "Carol", + "arabic_name": "كارول" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1144, + "fields": { + "id_car_make": 113, + "name": "Cronos", + "arabic_name": "كرونوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1145, + "fields": { + "id_car_make": 113, + "name": "CX-5", + "arabic_name": "سي إكس-5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1146, + "fields": { + "id_car_make": 113, + "name": "CX-7", + "arabic_name": "سي إكس-7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1147, + "fields": { + "id_car_make": 113, + "name": "CX-9", + "arabic_name": "سي إكس-9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1148, + "fields": { + "id_car_make": 113, + "name": "Demio", + "arabic_name": "ديميو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1149, + "fields": { + "id_car_make": 113, + "name": "Efini MS-6", + "arabic_name": "إفيني إم إس-6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1151, + "fields": { + "id_car_make": 113, + "name": "Efini MS-9", + "arabic_name": "إفيني إم إس-9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1152, + "fields": { + "id_car_make": 113, + "name": "Eunos 300", + "arabic_name": "يونوس 300" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1153, + "fields": { + "id_car_make": 113, + "name": "Eunos 500", + "arabic_name": "يونوس 500" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1154, + "fields": { + "id_car_make": 113, + "name": "Eunos 800", + "arabic_name": "يونوس 800" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1155, + "fields": { + "id_car_make": 113, + "name": "Eunos Cosmo", + "arabic_name": "يونوس كوزمو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1156, + "fields": { + "id_car_make": 113, + "name": "Familia", + "arabic_name": "فاميليا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1157, + "fields": { + "id_car_make": 113, + "name": "Lantis", + "arabic_name": "لانتيز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1158, + "fields": { + "id_car_make": 113, + "name": "Laputa", + "arabic_name": "لابوتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1159, + "fields": { + "id_car_make": 113, + "name": "Luce", + "arabic_name": "لوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1160, + "fields": { + "id_car_make": 113, + "name": "Millenia", + "arabic_name": "ميلينيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1161, + "fields": { + "id_car_make": 113, + "name": "MPV", + "arabic_name": "إم بي في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1162, + "fields": { + "id_car_make": 113, + "name": "MX-3", + "arabic_name": "إم إكس-3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1163, + "fields": { + "id_car_make": 113, + "name": "MX-5", + "arabic_name": "إم إكس-5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1164, + "fields": { + "id_car_make": 113, + "name": "MX-6", + "arabic_name": "إم إكس-6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1165, + "fields": { + "id_car_make": 113, + "name": "Navajo", + "arabic_name": "نافاهو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1166, + "fields": { + "id_car_make": 113, + "name": "Persona", + "arabic_name": "بيرسونا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1167, + "fields": { + "id_car_make": 113, + "name": "Premacy", + "arabic_name": "بريماسي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1168, + "fields": { + "id_car_make": 113, + "name": "Proceed Levante", + "arabic_name": "بروسيد ليفانت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1169, + "fields": { + "id_car_make": 113, + "name": "Proceed", + "arabic_name": "بروسيد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1170, + "fields": { + "id_car_make": 113, + "name": "Protege", + "arabic_name": "بروتيجيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1171, + "fields": { + "id_car_make": 113, + "name": "Revue", + "arabic_name": "ريفيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1172, + "fields": { + "id_car_make": 113, + "name": "Roadster", + "arabic_name": "رودستر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1173, + "fields": { + "id_car_make": 113, + "name": "RX-7", + "arabic_name": "آر إكس-7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1174, + "fields": { + "id_car_make": 113, + "name": "RX-8", + "arabic_name": "آر إكس-8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1175, + "fields": { + "id_car_make": 113, + "name": "Scrum", + "arabic_name": "سكروم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1176, + "fields": { + "id_car_make": 113, + "name": "Sentia", + "arabic_name": "سينتيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1177, + "fields": { + "id_car_make": 113, + "name": "Spiano", + "arabic_name": "سباينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1178, + "fields": { + "id_car_make": 113, + "name": "Tribute", + "arabic_name": "تريبيوت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1179, + "fields": { + "id_car_make": 113, + "name": "Verisa", + "arabic_name": "فيريسا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1180, + "fields": { + "id_car_make": 114, + "name": "F1", + "arabic_name": "إف 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1181, + "fields": { + "id_car_make": 114, + "name": "MP4-12C", + "arabic_name": "إم بي 4-12 سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1182, + "fields": { + "id_car_make": 114, + "name": "P1", + "arabic_name": "بي 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1183, + "fields": { + "id_car_make": 115, + "name": "Club", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1184, + "fields": { + "id_car_make": 115, + "name": "Monte Carlo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1185, + "fields": { + "id_car_make": 115, + "name": "Track", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1186, + "fields": { + "id_car_make": 116, + "name": "190 (W201)", + "arabic_name": "190 (دبليو 201)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1190, + "fields": { + "id_car_make": 116, + "name": "Citan", + "arabic_name": "سيتان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1206, + "fields": { + "id_car_make": 116, + "name": "SLR McLaren", + "arabic_name": "إس إل آر ماكلارين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1207, + "fields": { + "id_car_make": 116, + "name": "SLS AMG", + "arabic_name": "إس إل إس إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1209, + "fields": { + "id_car_make": 116, + "name": "Vaneo", + "arabic_name": "فانيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1210, + "fields": { + "id_car_make": 116, + "name": "Viano", + "arabic_name": "فيانو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1211, + "fields": { + "id_car_make": 116, + "name": "W114", + "arabic_name": "دبليو 114" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1212, + "fields": { + "id_car_make": 116, + "name": "W115", + "arabic_name": "دبليو 115" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1213, + "fields": { + "id_car_make": 116, + "name": "W123", + "arabic_name": "دبليو 123" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1214, + "fields": { + "id_car_make": 116, + "name": "W124", + "arabic_name": "دبليو 124" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1215, + "fields": { + "id_car_make": 117, + "name": "Capri", + "arabic_name": "كابري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1216, + "fields": { + "id_car_make": 117, + "name": "Cougar", + "arabic_name": "كوغر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1217, + "fields": { + "id_car_make": 117, + "name": "Grand Marquis", + "arabic_name": "جراند ماركيز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1218, + "fields": { + "id_car_make": 117, + "name": "Marauder", + "arabic_name": "مارودر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1219, + "fields": { + "id_car_make": 117, + "name": "Mariner", + "arabic_name": "مارينر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1220, + "fields": { + "id_car_make": 117, + "name": "Marquis", + "arabic_name": "ماركيز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1221, + "fields": { + "id_car_make": 117, + "name": "Milan", + "arabic_name": "ميلان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1222, + "fields": { + "id_car_make": 117, + "name": "Montego", + "arabic_name": "مونتيجو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1223, + "fields": { + "id_car_make": 117, + "name": "Monterey", + "arabic_name": "مونتيري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1224, + "fields": { + "id_car_make": 117, + "name": "Mountaineer", + "arabic_name": "ماونتنير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1225, + "fields": { + "id_car_make": 117, + "name": "Mystique", + "arabic_name": "ميستيك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1226, + "fields": { + "id_car_make": 117, + "name": "Sable", + "arabic_name": "سيبل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1227, + "fields": { + "id_car_make": 117, + "name": "Topaz", + "arabic_name": "توباز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1228, + "fields": { + "id_car_make": 117, + "name": "Tracer", + "arabic_name": "ترايسر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1229, + "fields": { + "id_car_make": 117, + "name": "Villager", + "arabic_name": "فيليجر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1230, + "fields": { + "id_car_make": 118, + "name": "Taxi", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1231, + "fields": { + "id_car_make": 118, + "name": "Metrocab II (TTT)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1232, + "fields": { + "id_car_make": 119, + "name": "3", + "arabic_name": "3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1233, + "fields": { + "id_car_make": 119, + "name": "350", + "arabic_name": "350" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1234, + "fields": { + "id_car_make": 119, + "name": "5", + "arabic_name": "5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1235, + "fields": { + "id_car_make": 119, + "name": "550", + "arabic_name": "550" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1236, + "fields": { + "id_car_make": 119, + "name": "6", + "arabic_name": "6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1237, + "fields": { + "id_car_make": 119, + "name": "F", + "arabic_name": "إف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1238, + "fields": { + "id_car_make": 119, + "name": "Maestro", + "arabic_name": "مايسترو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1239, + "fields": { + "id_car_make": 119, + "name": "Metro", + "arabic_name": "ميترو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1240, + "fields": { + "id_car_make": 119, + "name": "B", + "arabic_name": "ب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1241, + "fields": { + "id_car_make": 119, + "name": "Midget", + "arabic_name": "ميجيت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1242, + "fields": { + "id_car_make": 119, + "name": "Montego", + "arabic_name": "مونتيجو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1243, + "fields": { + "id_car_make": 119, + "name": "RV8", + "arabic_name": "آر في 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1244, + "fields": { + "id_car_make": 119, + "name": "TF", + "arabic_name": "تي إف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1245, + "fields": { + "id_car_make": 119, + "name": "Xpower SV", + "arabic_name": "إكس باور إس في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1246, + "fields": { + "id_car_make": 119, + "name": "ZR", + "arabic_name": "زد آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1247, + "fields": { + "id_car_make": 119, + "name": "ZS", + "arabic_name": "زد إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1248, + "fields": { + "id_car_make": 119, + "name": "ZT", + "arabic_name": "زد تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1249, + "fields": { + "id_car_make": 120, + "name": "F8C", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1250, + "fields": { + "id_car_make": 120, + "name": "M.Go", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1251, + "fields": { + "id_car_make": 120, + "name": "M8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1252, + "fields": { + "id_car_make": 120, + "name": "MC", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1253, + "fields": { + "id_car_make": 120, + "name": "Virgo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1254, + "fields": { + "id_car_make": 121, + "name": "TF 1800", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1255, + "fields": { + "id_car_make": 122, + "name": "Cabrio", + "arabic_name": "كابريو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1256, + "fields": { + "id_car_make": 122, + "name": "Clubman", + "arabic_name": "كلابمان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1258, + "fields": { + "id_car_make": 122, + "name": "Countryman", + "arabic_name": "كانتريمان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1259, + "fields": { + "id_car_make": 122, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1260, + "fields": { + "id_car_make": 122, + "name": "Hatch", + "arabic_name": "هاتش" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1261, + "fields": { + "id_car_make": 122, + "name": "Paceman", + "arabic_name": "بيسمان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1262, + "fields": { + "id_car_make": 122, + "name": "Roadster", + "arabic_name": "رودستر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1263, + "fields": { + "id_car_make": 123, + "name": "3000 GT", + "arabic_name": "3000 جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1264, + "fields": { + "id_car_make": 123, + "name": "Airtrek", + "arabic_name": "إيرتريك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1265, + "fields": { + "id_car_make": 123, + "name": "Aspire", + "arabic_name": "أسباير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1266, + "fields": { + "id_car_make": 123, + "name": "ASX", + "arabic_name": "إيه إس إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1267, + "fields": { + "id_car_make": 123, + "name": "Carisma", + "arabic_name": "كاريزما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1268, + "fields": { + "id_car_make": 123, + "name": "Celeste", + "arabic_name": "سيليست" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1269, + "fields": { + "id_car_make": 123, + "name": "Challenger", + "arabic_name": "تشالنجر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1270, + "fields": { + "id_car_make": 123, + "name": "Chariot", + "arabic_name": "شاريوت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1271, + "fields": { + "id_car_make": 123, + "name": "Colt", + "arabic_name": "كولت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1272, + "fields": { + "id_car_make": 123, + "name": "Cordia", + "arabic_name": "كوردا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1273, + "fields": { + "id_car_make": 123, + "name": "Debonair", + "arabic_name": "ديبونير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1274, + "fields": { + "id_car_make": 123, + "name": "Delica", + "arabic_name": "ديليكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1275, + "fields": { + "id_car_make": 123, + "name": "Diamante", + "arabic_name": "ديامانتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1276, + "fields": { + "id_car_make": 123, + "name": "Dingo", + "arabic_name": "دينجو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1277, + "fields": { + "id_car_make": 123, + "name": "Dion", + "arabic_name": "ديون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1278, + "fields": { + "id_car_make": 123, + "name": "Eclipse", + "arabic_name": "إكليبس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1279, + "fields": { + "id_car_make": 123, + "name": "EK Wagon", + "arabic_name": "إي كي واجن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1280, + "fields": { + "id_car_make": 123, + "name": "Emeraude", + "arabic_name": "إميرود" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1281, + "fields": { + "id_car_make": 123, + "name": "Endeavor", + "arabic_name": "إنديفور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1282, + "fields": { + "id_car_make": 123, + "name": "Eterna", + "arabic_name": "إتيرنا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1283, + "fields": { + "id_car_make": 123, + "name": "FTO", + "arabic_name": "إف تي أو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1284, + "fields": { + "id_car_make": 123, + "name": "Galant", + "arabic_name": "جالانت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1285, + "fields": { + "id_car_make": 123, + "name": "Grandis", + "arabic_name": "جرانديس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1286, + "fields": { + "id_car_make": 123, + "name": "GTO", + "arabic_name": "جي تي أو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1287, + "fields": { + "id_car_make": 123, + "name": "i", + "arabic_name": "آي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1288, + "fields": { + "id_car_make": 123, + "name": "i-MiEV", + "arabic_name": "آي-مييف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1289, + "fields": { + "id_car_make": 123, + "name": "Jeep", + "arabic_name": "جيب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1290, + "fields": { + "id_car_make": 123, + "name": "L200", + "arabic_name": "إل 200" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1291, + "fields": { + "id_car_make": 123, + "name": "Lancer Cargo", + "arabic_name": "لانسر كارغو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1292, + "fields": { + "id_car_make": 123, + "name": "Lancer Evolution", + "arabic_name": "لانسر إيفولوشن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1293, + "fields": { + "id_car_make": 123, + "name": "Lancer", + "arabic_name": "لانسر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1294, + "fields": { + "id_car_make": 123, + "name": "Legnum", + "arabic_name": "ليجنوم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1295, + "fields": { + "id_car_make": 123, + "name": "Libero", + "arabic_name": "ليبيرو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1296, + "fields": { + "id_car_make": 123, + "name": "Minica", + "arabic_name": "مينيكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1297, + "fields": { + "id_car_make": 123, + "name": "Mirage", + "arabic_name": "ميراج" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1298, + "fields": { + "id_car_make": 123, + "name": "Montero", + "arabic_name": "مونتيرو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1299, + "fields": { + "id_car_make": 123, + "name": "Montero Sport", + "arabic_name": "مونتيرو سبورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1300, + "fields": { + "id_car_make": 123, + "name": "Outlander", + "arabic_name": "أوتلاندر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1301, + "fields": { + "id_car_make": 123, + "name": "Pajero", + "arabic_name": "باجيرو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1302, + "fields": { + "id_car_make": 123, + "name": "Pajero iO", + "arabic_name": "باجيرو آي أو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1303, + "fields": { + "id_car_make": 123, + "name": "Pajero Junior", + "arabic_name": "باجيرو جونيور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1304, + "fields": { + "id_car_make": 123, + "name": "Pajero Mini", + "arabic_name": "باجيرو ميني" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1305, + "fields": { + "id_car_make": 123, + "name": "Pajero Pinin", + "arabic_name": "باجيرو بينين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1306, + "fields": { + "id_car_make": 123, + "name": "Pajero Sport", + "arabic_name": "باجيرو سبورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1307, + "fields": { + "id_car_make": 123, + "name": "Pistachio", + "arabic_name": "بيستاشيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1308, + "fields": { + "id_car_make": 123, + "name": "Proudia", + "arabic_name": "براوديا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1309, + "fields": { + "id_car_make": 123, + "name": "Raider", + "arabic_name": "رايدر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1310, + "fields": { + "id_car_make": 123, + "name": "RVR", + "arabic_name": "آر في آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1311, + "fields": { + "id_car_make": 123, + "name": "Sapporo", + "arabic_name": "سابورو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1312, + "fields": { + "id_car_make": 123, + "name": "Sigma", + "arabic_name": "سيجما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1313, + "fields": { + "id_car_make": 123, + "name": "Space Gear", + "arabic_name": "سبيس جير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1314, + "fields": { + "id_car_make": 123, + "name": "Space Runner", + "arabic_name": "سبيس رانر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1315, + "fields": { + "id_car_make": 123, + "name": "Space Star", + "arabic_name": "سبيس ستار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1316, + "fields": { + "id_car_make": 123, + "name": "Space Wagon", + "arabic_name": "سبيس واجن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1317, + "fields": { + "id_car_make": 123, + "name": "Starion", + "arabic_name": "ستاريون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1318, + "fields": { + "id_car_make": 123, + "name": "Toppo", + "arabic_name": "توبو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1319, + "fields": { + "id_car_make": 123, + "name": "Town BOX", + "arabic_name": "تاون بوكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1320, + "fields": { + "id_car_make": 123, + "name": "Tredia", + "arabic_name": "تريديا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1321, + "fields": { + "id_car_make": 124, + "name": "Galue 204", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1322, + "fields": { + "id_car_make": 124, + "name": "Galue", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1323, + "fields": { + "id_car_make": 124, + "name": "Himiko", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1324, + "fields": { + "id_car_make": 124, + "name": "Le-Seyde", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1325, + "fields": { + "id_car_make": 124, + "name": "Like", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1328, + "fields": { + "id_car_make": 124, + "name": "Nouera", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1329, + "fields": { + "id_car_make": 124, + "name": "Orochi", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1330, + "fields": { + "id_car_make": 124, + "name": "Ray", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1331, + "fields": { + "id_car_make": 124, + "name": "Ryoga", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1332, + "fields": { + "id_car_make": 124, + "name": "Viewt", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1333, + "fields": { + "id_car_make": 124, + "name": "Yuga", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1334, + "fields": { + "id_car_make": 124, + "name": "Zero 1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1335, + "fields": { + "id_car_make": 125, + "name": "3 Wheeler", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1336, + "fields": { + "id_car_make": 125, + "name": "4 Seater", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1337, + "fields": { + "id_car_make": 125, + "name": "4/4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1338, + "fields": { + "id_car_make": 125, + "name": "Aero 8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1339, + "fields": { + "id_car_make": 125, + "name": "Aero Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1340, + "fields": { + "id_car_make": 125, + "name": "Aero SuperSports", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1341, + "fields": { + "id_car_make": 125, + "name": "AeroMax", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1342, + "fields": { + "id_car_make": 125, + "name": "Plus 4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1343, + "fields": { + "id_car_make": 125, + "name": "Plus 8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1344, + "fields": { + "id_car_make": 125, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1345, + "fields": { + "id_car_make": 126, + "name": "Marina", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1346, + "fields": { + "id_car_make": 127, + "name": "100NX", + "arabic_name": "100 إن إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1347, + "fields": { + "id_car_make": 127, + "name": "180SX", + "arabic_name": "180 إس إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1348, + "fields": { + "id_car_make": 127, + "name": "200SX", + "arabic_name": "200 إس إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1349, + "fields": { + "id_car_make": 127, + "name": "240SX", + "arabic_name": "240 إس إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1350, + "fields": { + "id_car_make": 127, + "name": "280ZX", + "arabic_name": "280 زد إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1351, + "fields": { + "id_car_make": 127, + "name": "300ZX", + "arabic_name": "300 زد إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1352, + "fields": { + "id_car_make": 127, + "name": "350Z", + "arabic_name": "350 زد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1353, + "fields": { + "id_car_make": 127, + "name": "370Z", + "arabic_name": "370 زد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1354, + "fields": { + "id_car_make": 127, + "name": "AD", + "arabic_name": "إيه دي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1355, + "fields": { + "id_car_make": 127, + "name": "Almera Classic", + "arabic_name": "ألمايرا كلاسيك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1356, + "fields": { + "id_car_make": 127, + "name": "Almera", + "arabic_name": "ألمايرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1357, + "fields": { + "id_car_make": 127, + "name": "Almera Tino", + "arabic_name": "ألمايرا تينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1358, + "fields": { + "id_car_make": 127, + "name": "Altima", + "arabic_name": "ألتيما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1359, + "fields": { + "id_car_make": 127, + "name": "Armada", + "arabic_name": "أرمادا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1360, + "fields": { + "id_car_make": 127, + "name": "Avenir", + "arabic_name": "أفينير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1361, + "fields": { + "id_car_make": 127, + "name": "Bassara", + "arabic_name": "باسارا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1362, + "fields": { + "id_car_make": 127, + "name": "Be-1", + "arabic_name": "بي-1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1363, + "fields": { + "id_car_make": 127, + "name": "Bluebird Sylphy", + "arabic_name": "بلوبيرد سيلفي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1364, + "fields": { + "id_car_make": 127, + "name": "Bluebird", + "arabic_name": "بلوبيرد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1365, + "fields": { + "id_car_make": 127, + "name": "Cedric", + "arabic_name": "سيدريك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1366, + "fields": { + "id_car_make": 127, + "name": "Cefiro", + "arabic_name": "سيفيرو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1367, + "fields": { + "id_car_make": 127, + "name": "Cherry", + "arabic_name": "تشيري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1368, + "fields": { + "id_car_make": 127, + "name": "Cima", + "arabic_name": "سيما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1369, + "fields": { + "id_car_make": 127, + "name": "Clipper", + "arabic_name": "كليبر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1370, + "fields": { + "id_car_make": 127, + "name": "Crew", + "arabic_name": "كرو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1371, + "fields": { + "id_car_make": 127, + "name": "Cube", + "arabic_name": "كيوب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1372, + "fields": { + "id_car_make": 127, + "name": "Datsun", + "arabic_name": "داتسون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1373, + "fields": { + "id_car_make": 127, + "name": "Dualis", + "arabic_name": "ديوليس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1374, + "fields": { + "id_car_make": 127, + "name": "Elgrand", + "arabic_name": "إلغراند" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1375, + "fields": { + "id_car_make": 127, + "name": "Expert", + "arabic_name": "إكسبيرت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1376, + "fields": { + "id_car_make": 127, + "name": "Fairlady Z", + "arabic_name": "فيرليدي زد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1377, + "fields": { + "id_car_make": 127, + "name": "Figaro", + "arabic_name": "فيغارو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1378, + "fields": { + "id_car_make": 127, + "name": "Fuga", + "arabic_name": "فوغا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1379, + "fields": { + "id_car_make": 127, + "name": "Gloria", + "arabic_name": "غلوريا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1380, + "fields": { + "id_car_make": 127, + "name": "GT-R", + "arabic_name": "جي تي آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1381, + "fields": { + "id_car_make": 127, + "name": "Juke", + "arabic_name": "جوك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1382, + "fields": { + "id_car_make": 127, + "name": "Lafesta", + "arabic_name": "لافستا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1383, + "fields": { + "id_car_make": 127, + "name": "Langley", + "arabic_name": "لانغلي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1384, + "fields": { + "id_car_make": 127, + "name": "Largo", + "arabic_name": "لارجو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1385, + "fields": { + "id_car_make": 127, + "name": "Laurel", + "arabic_name": "لوريل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1386, + "fields": { + "id_car_make": 127, + "name": "Leaf", + "arabic_name": "ليف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1387, + "fields": { + "id_car_make": 127, + "name": "Leopard", + "arabic_name": "ليوبارد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1388, + "fields": { + "id_car_make": 127, + "name": "Liberty", + "arabic_name": "ليبرتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1389, + "fields": { + "id_car_make": 127, + "name": "Lucino", + "arabic_name": "لوسينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1390, + "fields": { + "id_car_make": 127, + "name": "March", + "arabic_name": "مارش" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1391, + "fields": { + "id_car_make": 127, + "name": "Maxima", + "arabic_name": "ماكسيما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1392, + "fields": { + "id_car_make": 127, + "name": "Micra", + "arabic_name": "مايكرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1393, + "fields": { + "id_car_make": 127, + "name": "Mistral", + "arabic_name": "ميسترال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1394, + "fields": { + "id_car_make": 127, + "name": "Moco", + "arabic_name": "موكو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1395, + "fields": { + "id_car_make": 127, + "name": "Murano", + "arabic_name": "مورانو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1396, + "fields": { + "id_car_make": 127, + "name": "Navara", + "arabic_name": "نافارا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1397, + "fields": { + "id_car_make": 127, + "name": "Note", + "arabic_name": "نوت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1398, + "fields": { + "id_car_make": 127, + "name": "NP300", + "arabic_name": "إن بي 300" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1399, + "fields": { + "id_car_make": 127, + "name": "NV200", + "arabic_name": "إن في 200" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1400, + "fields": { + "id_car_make": 127, + "name": "NX", + "arabic_name": "إن إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1401, + "fields": { + "id_car_make": 127, + "name": "Otti", + "arabic_name": "أوتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1402, + "fields": { + "id_car_make": 127, + "name": "Pao", + "arabic_name": "باو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1403, + "fields": { + "id_car_make": 127, + "name": "Pathfinder", + "arabic_name": "باثفايندر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1404, + "fields": { + "id_car_make": 127, + "name": "Patrol", + "arabic_name": "باترول" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1405, + "fields": { + "id_car_make": 127, + "name": "Pino", + "arabic_name": "بينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1406, + "fields": { + "id_car_make": 128, + "name": "M12 GTO", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1407, + "fields": { + "id_car_make": 128, + "name": "M600", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1408, + "fields": { + "id_car_make": 129, + "name": "Achieva", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1409, + "fields": { + "id_car_make": 129, + "name": "Alero", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1410, + "fields": { + "id_car_make": 129, + "name": "Aurora", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1411, + "fields": { + "id_car_make": 129, + "name": "Bravada", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1412, + "fields": { + "id_car_make": 129, + "name": "Cutlass", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1413, + "fields": { + "id_car_make": 129, + "name": "Cutlass Calais", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1414, + "fields": { + "id_car_make": 129, + "name": "Cutlass Ciera", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1415, + "fields": { + "id_car_make": 129, + "name": "Cutlass Supreme", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1416, + "fields": { + "id_car_make": 129, + "name": "Eighty-Eight", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1417, + "fields": { + "id_car_make": 129, + "name": "Intrigue", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1418, + "fields": { + "id_car_make": 129, + "name": "Ninety-Eight", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1419, + "fields": { + "id_car_make": 129, + "name": "Omega", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1420, + "fields": { + "id_car_make": 129, + "name": "Silhouette", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1421, + "fields": { + "id_car_make": 130, + "name": "Adam", + "arabic_name": "آدم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1422, + "fields": { + "id_car_make": 130, + "name": "Admiral", + "arabic_name": "أدميرال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1423, + "fields": { + "id_car_make": 130, + "name": "Agila", + "arabic_name": "أجيلا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1424, + "fields": { + "id_car_make": 130, + "name": "Ampera", + "arabic_name": "أمبيرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1425, + "fields": { + "id_car_make": 130, + "name": "Antara", + "arabic_name": "أنتارا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1426, + "fields": { + "id_car_make": 130, + "name": "Ascona", + "arabic_name": "أسكونا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1427, + "fields": { + "id_car_make": 130, + "name": "Astra", + "arabic_name": "أسترا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1428, + "fields": { + "id_car_make": 130, + "name": "Calibra", + "arabic_name": "كاليبرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1429, + "fields": { + "id_car_make": 130, + "name": "Campo", + "arabic_name": "كامبو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1430, + "fields": { + "id_car_make": 130, + "name": "Cascada", + "arabic_name": "كاسكادا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1431, + "fields": { + "id_car_make": 130, + "name": "Combo", + "arabic_name": "كومبو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1432, + "fields": { + "id_car_make": 130, + "name": "Commodore", + "arabic_name": "كومودور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1433, + "fields": { + "id_car_make": 130, + "name": "Corsa", + "arabic_name": "كورسا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1434, + "fields": { + "id_car_make": 130, + "name": "Diplomat", + "arabic_name": "دبلوما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1435, + "fields": { + "id_car_make": 130, + "name": "Frontera", + "arabic_name": "فرونتيرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1436, + "fields": { + "id_car_make": 130, + "name": "GT", + "arabic_name": "جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1437, + "fields": { + "id_car_make": 130, + "name": "Insignia", + "arabic_name": "إنسيجنيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1438, + "fields": { + "id_car_make": 130, + "name": "Kadett", + "arabic_name": "كاديت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1439, + "fields": { + "id_car_make": 130, + "name": "Manta", + "arabic_name": "مانتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1440, + "fields": { + "id_car_make": 130, + "name": "Meriva", + "arabic_name": "مريفا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1441, + "fields": { + "id_car_make": 130, + "name": "Mokka", + "arabic_name": "موكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1442, + "fields": { + "id_car_make": 130, + "name": "Monterey", + "arabic_name": "مونتيري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1443, + "fields": { + "id_car_make": 130, + "name": "Monza", + "arabic_name": "مونزا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1444, + "fields": { + "id_car_make": 130, + "name": "Omega", + "arabic_name": "أوميغا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1445, + "fields": { + "id_car_make": 130, + "name": "Rekord", + "arabic_name": "ريكورد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1446, + "fields": { + "id_car_make": 130, + "name": "Senator", + "arabic_name": "سيناتور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1447, + "fields": { + "id_car_make": 130, + "name": "Signum", + "arabic_name": "سيجنوم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1448, + "fields": { + "id_car_make": 130, + "name": "Sintra", + "arabic_name": "سينترا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1449, + "fields": { + "id_car_make": 130, + "name": "Speedster", + "arabic_name": "سبيدستر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1450, + "fields": { + "id_car_make": 130, + "name": "Tigra", + "arabic_name": "تيجرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1451, + "fields": { + "id_car_make": 130, + "name": "Vectra", + "arabic_name": "فيكترا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1452, + "fields": { + "id_car_make": 130, + "name": "Vita", + "arabic_name": "فيتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1453, + "fields": { + "id_car_make": 130, + "name": "Zafira", + "arabic_name": "زافيرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1454, + "fields": { + "id_car_make": 131, + "name": "2500 GT", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1455, + "fields": { + "id_car_make": 132, + "name": "Huayra", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1456, + "fields": { + "id_car_make": 132, + "name": "Zonda C12", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1457, + "fields": { + "id_car_make": 133, + "name": "Esperante", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1458, + "fields": { + "id_car_make": 133, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1459, + "fields": { + "id_car_make": 134, + "name": "Alza", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1460, + "fields": { + "id_car_make": 134, + "name": "Kancil", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1461, + "fields": { + "id_car_make": 134, + "name": "Kelisa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1462, + "fields": { + "id_car_make": 134, + "name": "Kembara", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1463, + "fields": { + "id_car_make": 134, + "name": "Kenari", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1464, + "fields": { + "id_car_make": 134, + "name": "MyVi", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1465, + "fields": { + "id_car_make": 134, + "name": "Nautica", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1466, + "fields": { + "id_car_make": 134, + "name": "Viva", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1467, + "fields": { + "id_car_make": 135, + "name": "1007", + "arabic_name": "1007" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1468, + "fields": { + "id_car_make": 135, + "name": "104", + "arabic_name": "104" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1469, + "fields": { + "id_car_make": 135, + "name": "106", + "arabic_name": "106" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1470, + "fields": { + "id_car_make": 135, + "name": "107", + "arabic_name": "107" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1471, + "fields": { + "id_car_make": 135, + "name": "2008", + "arabic_name": "2008" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1472, + "fields": { + "id_car_make": 135, + "name": "204", + "arabic_name": "204" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1473, + "fields": { + "id_car_make": 135, + "name": "205", + "arabic_name": "205" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1474, + "fields": { + "id_car_make": 135, + "name": "206", + "arabic_name": "206" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1475, + "fields": { + "id_car_make": 135, + "name": "207", + "arabic_name": "207" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1476, + "fields": { + "id_car_make": 135, + "name": "208", + "arabic_name": "208" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1477, + "fields": { + "id_car_make": 135, + "name": "3008", + "arabic_name": "3008" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1478, + "fields": { + "id_car_make": 135, + "name": "301", + "arabic_name": "301" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1479, + "fields": { + "id_car_make": 135, + "name": "304", + "arabic_name": "304" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1480, + "fields": { + "id_car_make": 135, + "name": "305", + "arabic_name": "305" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1481, + "fields": { + "id_car_make": 135, + "name": "306", + "arabic_name": "306" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1482, + "fields": { + "id_car_make": 135, + "name": "307", + "arabic_name": "307" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1483, + "fields": { + "id_car_make": 135, + "name": "308", + "arabic_name": "308" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1484, + "fields": { + "id_car_make": 135, + "name": "309", + "arabic_name": "309" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1485, + "fields": { + "id_car_make": 135, + "name": "4007", + "arabic_name": "4007" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1486, + "fields": { + "id_car_make": 135, + "name": "4008", + "arabic_name": "4008" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1487, + "fields": { + "id_car_make": 135, + "name": "405", + "arabic_name": "405" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1488, + "fields": { + "id_car_make": 135, + "name": "406", + "arabic_name": "406" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1489, + "fields": { + "id_car_make": 135, + "name": "407", + "arabic_name": "407" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1490, + "fields": { + "id_car_make": 135, + "name": "408", + "arabic_name": "408" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1491, + "fields": { + "id_car_make": 135, + "name": "5008", + "arabic_name": "5008" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1492, + "fields": { + "id_car_make": 135, + "name": "504", + "arabic_name": "504" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1493, + "fields": { + "id_car_make": 135, + "name": "505", + "arabic_name": "505" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1494, + "fields": { + "id_car_make": 135, + "name": "508", + "arabic_name": "508" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1495, + "fields": { + "id_car_make": 135, + "name": "604", + "arabic_name": "604" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1496, + "fields": { + "id_car_make": 135, + "name": "605", + "arabic_name": "605" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1497, + "fields": { + "id_car_make": 135, + "name": "607", + "arabic_name": "607" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1498, + "fields": { + "id_car_make": 135, + "name": "806", + "arabic_name": "806" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1499, + "fields": { + "id_car_make": 135, + "name": "807", + "arabic_name": "807" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1501, + "fields": { + "id_car_make": 135, + "name": "Partner", + "arabic_name": "بارتنر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1502, + "fields": { + "id_car_make": 135, + "name": "RCZ", + "arabic_name": "آر سي زد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1503, + "fields": { + "id_car_make": 136, + "name": "Porter", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1504, + "fields": { + "id_car_make": 137, + "name": "Acclaim", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1505, + "fields": { + "id_car_make": 137, + "name": "Breeze", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1506, + "fields": { + "id_car_make": 137, + "name": "Caravelle", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1507, + "fields": { + "id_car_make": 137, + "name": "Laser", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1508, + "fields": { + "id_car_make": 137, + "name": "Neon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1509, + "fields": { + "id_car_make": 137, + "name": "Prowler", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1510, + "fields": { + "id_car_make": 137, + "name": "Sundance", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1511, + "fields": { + "id_car_make": 137, + "name": "Turismo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1512, + "fields": { + "id_car_make": 137, + "name": "Voyager", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1513, + "fields": { + "id_car_make": 138, + "name": "6000", + "arabic_name": "6000" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1514, + "fields": { + "id_car_make": 138, + "name": "Aztek", + "arabic_name": "أزتيك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1515, + "fields": { + "id_car_make": 138, + "name": "Bonneville", + "arabic_name": "بونفيل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1516, + "fields": { + "id_car_make": 138, + "name": "Fiero", + "arabic_name": "فيرو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1517, + "fields": { + "id_car_make": 138, + "name": "Firebird", + "arabic_name": "فايربيرد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1518, + "fields": { + "id_car_make": 138, + "name": "G4", + "arabic_name": "جي 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1519, + "fields": { + "id_car_make": 138, + "name": "G5", + "arabic_name": "جي 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1520, + "fields": { + "id_car_make": 138, + "name": "G6", + "arabic_name": "جي 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1521, + "fields": { + "id_car_make": 138, + "name": "G8", + "arabic_name": "جي 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1522, + "fields": { + "id_car_make": 138, + "name": "Grand AM", + "arabic_name": "جراند إم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1523, + "fields": { + "id_car_make": 138, + "name": "Grand Prix", + "arabic_name": "جراند بري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1524, + "fields": { + "id_car_make": 138, + "name": "GTO", + "arabic_name": "جي تي أو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1525, + "fields": { + "id_car_make": 138, + "name": "LeMans", + "arabic_name": "لي مانز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1526, + "fields": { + "id_car_make": 138, + "name": "Montana", + "arabic_name": "مونتانا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1527, + "fields": { + "id_car_make": 138, + "name": "Parisienne", + "arabic_name": "باريزيان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1528, + "fields": { + "id_car_make": 138, + "name": "Phoenix", + "arabic_name": "فينيكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1529, + "fields": { + "id_car_make": 138, + "name": "Solstice", + "arabic_name": "سولستيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1530, + "fields": { + "id_car_make": 138, + "name": "Sunbird", + "arabic_name": "سن بيرد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1531, + "fields": { + "id_car_make": 138, + "name": "Sunfire", + "arabic_name": "سن فاير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1532, + "fields": { + "id_car_make": 138, + "name": "Tempest", + "arabic_name": "تمبست" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1533, + "fields": { + "id_car_make": 138, + "name": "Torrent", + "arabic_name": "تورنت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1534, + "fields": { + "id_car_make": 138, + "name": "Trans Sport", + "arabic_name": "ترانس سبورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1535, + "fields": { + "id_car_make": 138, + "name": "Vibe", + "arabic_name": "فايب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1536, + "fields": { + "id_car_make": 139, + "name": "911", + "arabic_name": "911" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1537, + "fields": { + "id_car_make": 139, + "name": "914", + "arabic_name": "914" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1538, + "fields": { + "id_car_make": 139, + "name": "918", + "arabic_name": "918" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1539, + "fields": { + "id_car_make": 139, + "name": "924", + "arabic_name": "924" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1540, + "fields": { + "id_car_make": 139, + "name": "928", + "arabic_name": "928" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1541, + "fields": { + "id_car_make": 139, + "name": "944", + "arabic_name": "944" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1542, + "fields": { + "id_car_make": 139, + "name": "959", + "arabic_name": "959" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1543, + "fields": { + "id_car_make": 139, + "name": "968", + "arabic_name": "968" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1544, + "fields": { + "id_car_make": 139, + "name": "Boxster", + "arabic_name": "بوكستر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1545, + "fields": { + "id_car_make": 139, + "name": "Carrera GT", + "arabic_name": "كاريرا جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1546, + "fields": { + "id_car_make": 139, + "name": "Cayenne", + "arabic_name": "كايين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1547, + "fields": { + "id_car_make": 139, + "name": "Cayman", + "arabic_name": "كايمان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1548, + "fields": { + "id_car_make": 139, + "name": "Macan", + "arabic_name": "ماكان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1549, + "fields": { + "id_car_make": 139, + "name": "Panamera", + "arabic_name": "باناميرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1550, + "fields": { + "id_car_make": 140, + "name": "118NE", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1551, + "fields": { + "id_car_make": 140, + "name": "Padmini", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1552, + "fields": { + "id_car_make": 141, + "name": "Exora", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1553, + "fields": { + "id_car_make": 141, + "name": "Gen-2", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1554, + "fields": { + "id_car_make": 141, + "name": "Inspira", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1555, + "fields": { + "id_car_make": 141, + "name": "Juara", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1556, + "fields": { + "id_car_make": 141, + "name": "Perdana", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1557, + "fields": { + "id_car_make": 141, + "name": "Persona 300 Compact", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1558, + "fields": { + "id_car_make": 141, + "name": "Preve", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1559, + "fields": { + "id_car_make": 141, + "name": "Saga", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1560, + "fields": { + "id_car_make": 141, + "name": "Satria", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1561, + "fields": { + "id_car_make": 141, + "name": "Waja", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1562, + "fields": { + "id_car_make": 141, + "name": "Wira (400 Series)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1563, + "fields": { + "id_car_make": 142, + "name": "G-modell", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1564, + "fields": { + "id_car_make": 142, + "name": "Pinzgauer", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1565, + "fields": { + "id_car_make": 143, + "name": "GTB", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1566, + "fields": { + "id_car_make": 143, + "name": "GTE", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1567, + "fields": { + "id_car_make": 144, + "name": "3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1568, + "fields": { + "id_car_make": 145, + "name": "Mangusta", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1569, + "fields": { + "id_car_make": 146, + "name": "Scimitar SS1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1570, + "fields": { + "id_car_make": 147, + "name": "11", + "arabic_name": "11" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1571, + "fields": { + "id_car_make": 147, + "name": "12", + "arabic_name": "12" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1572, + "fields": { + "id_car_make": 147, + "name": "14", + "arabic_name": "14" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1573, + "fields": { + "id_car_make": 147, + "name": "15", + "arabic_name": "15" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1574, + "fields": { + "id_car_make": 147, + "name": "16", + "arabic_name": "16" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1575, + "fields": { + "id_car_make": 147, + "name": "17", + "arabic_name": "17" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1576, + "fields": { + "id_car_make": 147, + "name": "18", + "arabic_name": "18" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1577, + "fields": { + "id_car_make": 147, + "name": "19", + "arabic_name": "19" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1578, + "fields": { + "id_car_make": 147, + "name": "20", + "arabic_name": "20" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1579, + "fields": { + "id_car_make": 147, + "name": "21", + "arabic_name": "21" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1580, + "fields": { + "id_car_make": 147, + "name": "25", + "arabic_name": "25" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1581, + "fields": { + "id_car_make": 147, + "name": "30", + "arabic_name": "30" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1582, + "fields": { + "id_car_make": 147, + "name": "4", + "arabic_name": "4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1583, + "fields": { + "id_car_make": 147, + "name": "5", + "arabic_name": "5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1584, + "fields": { + "id_car_make": 147, + "name": "6", + "arabic_name": "6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1585, + "fields": { + "id_car_make": 147, + "name": "9", + "arabic_name": "9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1586, + "fields": { + "id_car_make": 147, + "name": "Avantime", + "arabic_name": "أفانتايم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1587, + "fields": { + "id_car_make": 147, + "name": "Captur", + "arabic_name": "كابتور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1588, + "fields": { + "id_car_make": 147, + "name": "Clio", + "arabic_name": "كليو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1589, + "fields": { + "id_car_make": 147, + "name": "Duster", + "arabic_name": "داستر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1590, + "fields": { + "id_car_make": 147, + "name": "Espace", + "arabic_name": "إسباس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1592, + "fields": { + "id_car_make": 147, + "name": "Fluence", + "arabic_name": "فلونس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1593, + "fields": { + "id_car_make": 147, + "name": "Fuego", + "arabic_name": "فويجو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1594, + "fields": { + "id_car_make": 147, + "name": "Kangoo", + "arabic_name": "كانجو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1595, + "fields": { + "id_car_make": 147, + "name": "Koleos", + "arabic_name": "كوليوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1596, + "fields": { + "id_car_make": 147, + "name": "Laguna", + "arabic_name": "لاجونا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1597, + "fields": { + "id_car_make": 147, + "name": "Latitude", + "arabic_name": "لاتيتيود" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1598, + "fields": { + "id_car_make": 147, + "name": "Logan", + "arabic_name": "لوجان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1599, + "fields": { + "id_car_make": 147, + "name": "Megane", + "arabic_name": "ميجان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1600, + "fields": { + "id_car_make": 147, + "name": "Modus", + "arabic_name": "مودوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1601, + "fields": { + "id_car_make": 147, + "name": "Rodeo", + "arabic_name": "روديو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1602, + "fields": { + "id_car_make": 147, + "name": "Safrane", + "arabic_name": "سافران" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1603, + "fields": { + "id_car_make": 147, + "name": "Sandero", + "arabic_name": "سانديرو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1604, + "fields": { + "id_car_make": 147, + "name": "Scenic", + "arabic_name": "سينيك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1605, + "fields": { + "id_car_make": 147, + "name": "Sport Spider", + "arabic_name": "سبورت سبايدر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1606, + "fields": { + "id_car_make": 147, + "name": "Symbol", + "arabic_name": "سيمبول" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1607, + "fields": { + "id_car_make": 147, + "name": "Twingo", + "arabic_name": "توينجو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1608, + "fields": { + "id_car_make": 147, + "name": "Twizy", + "arabic_name": "تويزي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1609, + "fields": { + "id_car_make": 147, + "name": "Vel Satis", + "arabic_name": "فيل ساتيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1610, + "fields": { + "id_car_make": 147, + "name": "Wind", + "arabic_name": "ويند" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1611, + "fields": { + "id_car_make": 147, + "name": "Zoe", + "arabic_name": "زوي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1612, + "fields": { + "id_car_make": 148, + "name": "SM3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1613, + "fields": { + "id_car_make": 148, + "name": "SM5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1614, + "fields": { + "id_car_make": 148, + "name": "SM7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1615, + "fields": { + "id_car_make": 149, + "name": "Corniche", + "arabic_name": "كورنيش" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1616, + "fields": { + "id_car_make": 149, + "name": "Ghost", + "arabic_name": "جوست" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1617, + "fields": { + "id_car_make": 149, + "name": "Park Ward", + "arabic_name": "بارك وورد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1618, + "fields": { + "id_car_make": 149, + "name": "Phantom", + "arabic_name": "فانتوم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1619, + "fields": { + "id_car_make": 149, + "name": "Silver Seraph", + "arabic_name": "سيلفر سيراف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1620, + "fields": { + "id_car_make": 149, + "name": "Silver Spur", + "arabic_name": "سيلفر سبير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1621, + "fields": { + "id_car_make": 149, + "name": "Wraith", + "arabic_name": "رايث" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1622, + "fields": { + "id_car_make": 150, + "name": "Lightning", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1623, + "fields": { + "id_car_make": 151, + "name": "100", + "arabic_name": "100" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1624, + "fields": { + "id_car_make": 151, + "name": "200 Series", + "arabic_name": "سلسلة 200" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1625, + "fields": { + "id_car_make": 151, + "name": "25", + "arabic_name": "25" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1626, + "fields": { + "id_car_make": 151, + "name": "400 Series", + "arabic_name": "سلسلة 400" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1627, + "fields": { + "id_car_make": 151, + "name": "45", + "arabic_name": "45" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1628, + "fields": { + "id_car_make": 151, + "name": "600 Series", + "arabic_name": "سلسلة 600" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1629, + "fields": { + "id_car_make": 151, + "name": "75", + "arabic_name": "75" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1630, + "fields": { + "id_car_make": 151, + "name": "800 Series", + "arabic_name": "سلسلة 800" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1631, + "fields": { + "id_car_make": 151, + "name": "Metro", + "arabic_name": "مترو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1632, + "fields": { + "id_car_make": 151, + "name": "Mini MK", + "arabic_name": "ميني إم كيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1633, + "fields": { + "id_car_make": 151, + "name": "P6", + "arabic_name": "بي 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1634, + "fields": { + "id_car_make": 151, + "name": "SD1", + "arabic_name": "إس دي 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1635, + "fields": { + "id_car_make": 152, + "name": "9-2X", + "arabic_name": "9-2إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1636, + "fields": { + "id_car_make": 152, + "name": "9-3", + "arabic_name": "9-3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1637, + "fields": { + "id_car_make": 152, + "name": "9-4X", + "arabic_name": "9-4إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1638, + "fields": { + "id_car_make": 152, + "name": "9-5", + "arabic_name": "9-5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1639, + "fields": { + "id_car_make": 152, + "name": "9-7X", + "arabic_name": "9-7إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1640, + "fields": { + "id_car_make": 152, + "name": "90", + "arabic_name": "90" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1641, + "fields": { + "id_car_make": 152, + "name": "900", + "arabic_name": "900" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1642, + "fields": { + "id_car_make": 152, + "name": "9000", + "arabic_name": "9000" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1643, + "fields": { + "id_car_make": 152, + "name": "95", + "arabic_name": "95" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1644, + "fields": { + "id_car_make": 152, + "name": "96", + "arabic_name": "96" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1645, + "fields": { + "id_car_make": 152, + "name": "99", + "arabic_name": "99" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1646, + "fields": { + "id_car_make": 153, + "name": "S7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1647, + "fields": { + "id_car_make": 154, + "name": "PS10", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1648, + "fields": { + "id_car_make": 155, + "name": "Astra", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1649, + "fields": { + "id_car_make": 155, + "name": "Aura", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1650, + "fields": { + "id_car_make": 155, + "name": "ION", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1651, + "fields": { + "id_car_make": 155, + "name": "LS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1652, + "fields": { + "id_car_make": 155, + "name": "LW", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1653, + "fields": { + "id_car_make": 155, + "name": "Outlook", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1654, + "fields": { + "id_car_make": 155, + "name": "Relay", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1655, + "fields": { + "id_car_make": 155, + "name": "SC", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1656, + "fields": { + "id_car_make": 155, + "name": "Sky", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1657, + "fields": { + "id_car_make": 155, + "name": "SL", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1658, + "fields": { + "id_car_make": 155, + "name": "SW", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1659, + "fields": { + "id_car_make": 155, + "name": "VUE", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1660, + "fields": { + "id_car_make": 156, + "name": "FR-S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1661, + "fields": { + "id_car_make": 156, + "name": "iQ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1662, + "fields": { + "id_car_make": 156, + "name": "tC", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1663, + "fields": { + "id_car_make": 156, + "name": "xA", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1664, + "fields": { + "id_car_make": 156, + "name": "xB", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1665, + "fields": { + "id_car_make": 156, + "name": "xD", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1666, + "fields": { + "id_car_make": 157, + "name": "133", + "arabic_name": "133" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1667, + "fields": { + "id_car_make": 157, + "name": "Alhambra", + "arabic_name": "الهامبرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1668, + "fields": { + "id_car_make": 157, + "name": "Altea", + "arabic_name": "ألتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1669, + "fields": { + "id_car_make": 157, + "name": "Arosa", + "arabic_name": "أروسا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1670, + "fields": { + "id_car_make": 157, + "name": "Cordoba", + "arabic_name": "قرطبة" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1671, + "fields": { + "id_car_make": 157, + "name": "Exeo", + "arabic_name": "إكزيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1672, + "fields": { + "id_car_make": 157, + "name": "Fura", + "arabic_name": "فورا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1673, + "fields": { + "id_car_make": 157, + "name": "Ibiza", + "arabic_name": "إيبيزا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1674, + "fields": { + "id_car_make": 157, + "name": "Leon", + "arabic_name": "ليون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1675, + "fields": { + "id_car_make": 157, + "name": "Malaga", + "arabic_name": "مالاغا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1676, + "fields": { + "id_car_make": 157, + "name": "Marbella", + "arabic_name": "ماربيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1677, + "fields": { + "id_car_make": 157, + "name": "Ronda", + "arabic_name": "روندا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1678, + "fields": { + "id_car_make": 157, + "name": "Toledo", + "arabic_name": "توليدو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1679, + "fields": { + "id_car_make": 158, + "name": "Noble", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1680, + "fields": { + "id_car_make": 158, + "name": "Sceo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1681, + "fields": { + "id_car_make": 159, + "name": "100", + "arabic_name": "100" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1682, + "fields": { + "id_car_make": 159, + "name": "Citigo", + "arabic_name": "سيتجو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1683, + "fields": { + "id_car_make": 159, + "name": "Fabia", + "arabic_name": "فابيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1684, + "fields": { + "id_car_make": 159, + "name": "Favorit", + "arabic_name": "فافوريت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1685, + "fields": { + "id_car_make": 159, + "name": "Felicia", + "arabic_name": "فيليسيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1686, + "fields": { + "id_car_make": 159, + "name": "Octavia", + "arabic_name": "أوكتافيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1687, + "fields": { + "id_car_make": 159, + "name": "Rapid", + "arabic_name": "رابيد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1688, + "fields": { + "id_car_make": 159, + "name": "Roomster", + "arabic_name": "رومستر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1689, + "fields": { + "id_car_make": 159, + "name": "Superb", + "arabic_name": "سوبرب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1690, + "fields": { + "id_car_make": 159, + "name": "Yeti", + "arabic_name": "يتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1691, + "fields": { + "id_car_make": 160, + "name": "Forfour", + "arabic_name": "فور فور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1692, + "fields": { + "id_car_make": 160, + "name": "Fortwo", + "arabic_name": "فور تو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1693, + "fields": { + "id_car_make": 160, + "name": "Roadster", + "arabic_name": "رودستر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1694, + "fields": { + "id_car_make": 161, + "name": "Lioncel", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1695, + "fields": { + "id_car_make": 162, + "name": "R45", + "arabic_name": "آر 45" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1696, + "fields": { + "id_car_make": 163, + "name": "C12", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1697, + "fields": { + "id_car_make": 163, + "name": "C8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1699, + "fields": { + "id_car_make": 165, + "name": "Actyon", + "arabic_name": "أكتيون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1700, + "fields": { + "id_car_make": 165, + "name": "Actyon Sports", + "arabic_name": "أكتيون سبورتس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1701, + "fields": { + "id_car_make": 165, + "name": "Chairman", + "arabic_name": "تشيرمان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1702, + "fields": { + "id_car_make": 165, + "name": "Kallista", + "arabic_name": "كالليستا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1703, + "fields": { + "id_car_make": 165, + "name": "Korando Family", + "arabic_name": "كوراندو فاميلي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1704, + "fields": { + "id_car_make": 165, + "name": "Korando", + "arabic_name": "كوراندو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1705, + "fields": { + "id_car_make": 165, + "name": "Kyron", + "arabic_name": "كيرون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1706, + "fields": { + "id_car_make": 165, + "name": "Musso", + "arabic_name": "موسو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1707, + "fields": { + "id_car_make": 165, + "name": "Rexton", + "arabic_name": "ريكستون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1708, + "fields": { + "id_car_make": 165, + "name": "Rodius", + "arabic_name": "روديوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1709, + "fields": { + "id_car_make": 165, + "name": "Stavic", + "arabic_name": "ستافيك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1710, + "fields": { + "id_car_make": 166, + "name": "Alcyone", + "arabic_name": "ألسيون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1711, + "fields": { + "id_car_make": 166, + "name": "Baja", + "arabic_name": "باجا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1712, + "fields": { + "id_car_make": 166, + "name": "BRZ", + "arabic_name": "بي آر زد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1713, + "fields": { + "id_car_make": 166, + "name": "Dex", + "arabic_name": "ديكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1714, + "fields": { + "id_car_make": 166, + "name": "Domingo", + "arabic_name": "دومينغو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1715, + "fields": { + "id_car_make": 166, + "name": "Exiga", + "arabic_name": "إكزيجا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1716, + "fields": { + "id_car_make": 166, + "name": "Forester", + "arabic_name": "فوريستر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1717, + "fields": { + "id_car_make": 166, + "name": "Impreza", + "arabic_name": "إمبريزا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1718, + "fields": { + "id_car_make": 166, + "name": "Justy", + "arabic_name": "جاستي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1719, + "fields": { + "id_car_make": 166, + "name": "Legacy", + "arabic_name": "ليجاسي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1720, + "fields": { + "id_car_make": 166, + "name": "Leone", + "arabic_name": "ليوني" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1721, + "fields": { + "id_car_make": 166, + "name": "Libero", + "arabic_name": "ليبيرو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1722, + "fields": { + "id_car_make": 166, + "name": "Lucra", + "arabic_name": "لوكرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1723, + "fields": { + "id_car_make": 166, + "name": "Outback", + "arabic_name": "آوت باك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1724, + "fields": { + "id_car_make": 166, + "name": "Pleo", + "arabic_name": "بليو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1725, + "fields": { + "id_car_make": 166, + "name": "R1", + "arabic_name": "آر 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1726, + "fields": { + "id_car_make": 166, + "name": "R2", + "arabic_name": "آر 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1727, + "fields": { + "id_car_make": 166, + "name": "Sambar", + "arabic_name": "سامبار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1728, + "fields": { + "id_car_make": 166, + "name": "Stella", + "arabic_name": "ستيلا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1729, + "fields": { + "id_car_make": 166, + "name": "SVX", + "arabic_name": "إس في إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1730, + "fields": { + "id_car_make": 166, + "name": "Traviq", + "arabic_name": "ترافيك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1731, + "fields": { + "id_car_make": 166, + "name": "Trezia", + "arabic_name": "تريزيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1732, + "fields": { + "id_car_make": 166, + "name": "Tribeca", + "arabic_name": "ترايبيكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1733, + "fields": { + "id_car_make": 166, + "name": "Vivio", + "arabic_name": "فيفيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1734, + "fields": { + "id_car_make": 166, + "name": "XT", + "arabic_name": "إكس تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1735, + "fields": { + "id_car_make": 166, + "name": "XV", + "arabic_name": "إكس في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1736, + "fields": { + "id_car_make": 167, + "name": "Aerio", + "arabic_name": "إيريو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1737, + "fields": { + "id_car_make": 167, + "name": "Alto", + "arabic_name": "ألتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1738, + "fields": { + "id_car_make": 167, + "name": "Baleno", + "arabic_name": "بالينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1739, + "fields": { + "id_car_make": 167, + "name": "Cappuccino", + "arabic_name": "كابوتشينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1740, + "fields": { + "id_car_make": 167, + "name": "Cervo", + "arabic_name": "سيرفو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1741, + "fields": { + "id_car_make": 167, + "name": "Ertiga", + "arabic_name": "إرتيجا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1742, + "fields": { + "id_car_make": 167, + "name": "Escudo", + "arabic_name": "إسكويدو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1743, + "fields": { + "id_car_make": 167, + "name": "Every", + "arabic_name": "إفري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1744, + "fields": { + "id_car_make": 167, + "name": "Forenza", + "arabic_name": "فورينزا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1745, + "fields": { + "id_car_make": 167, + "name": "Grand Vitara", + "arabic_name": "جراند فيتارا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1746, + "fields": { + "id_car_make": 167, + "name": "Ignis", + "arabic_name": "إغنيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1747, + "fields": { + "id_car_make": 167, + "name": "Jimny", + "arabic_name": "جمني" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1748, + "fields": { + "id_car_make": 167, + "name": "Kei", + "arabic_name": "كي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1749, + "fields": { + "id_car_make": 167, + "name": "Kizashi", + "arabic_name": "كيزاشي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1750, + "fields": { + "id_car_make": 167, + "name": "Landy", + "arabic_name": "لاندي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1751, + "fields": { + "id_car_make": 167, + "name": "Liana", + "arabic_name": "ليانا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1752, + "fields": { + "id_car_make": 167, + "name": "MR Wagon", + "arabic_name": "إم آر واجن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1753, + "fields": { + "id_car_make": 167, + "name": "Palette", + "arabic_name": "باليت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1754, + "fields": { + "id_car_make": 167, + "name": "Reno", + "arabic_name": "رينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1755, + "fields": { + "id_car_make": 167, + "name": "Solio", + "arabic_name": "سوليو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1756, + "fields": { + "id_car_make": 167, + "name": "Spacia", + "arabic_name": "سباسيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1757, + "fields": { + "id_car_make": 167, + "name": "Splash", + "arabic_name": "سبلاش" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1758, + "fields": { + "id_car_make": 167, + "name": "Swift", + "arabic_name": "سويفت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1759, + "fields": { + "id_car_make": 167, + "name": "SX4", + "arabic_name": "إس إكس 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1760, + "fields": { + "id_car_make": 167, + "name": "Verona", + "arabic_name": "فيرونا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1761, + "fields": { + "id_car_make": 167, + "name": "Wagon R", + "arabic_name": "واجون آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1762, + "fields": { + "id_car_make": 167, + "name": "Wagon R+", + "arabic_name": "واجون آر بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1763, + "fields": { + "id_car_make": 167, + "name": "X-90", + "arabic_name": "إكس-90" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1764, + "fields": { + "id_car_make": 167, + "name": "XL7", + "arabic_name": "إكس إل 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1765, + "fields": { + "id_car_make": 168, + "name": "1510", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1766, + "fields": { + "id_car_make": 168, + "name": "Avenger", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1767, + "fields": { + "id_car_make": 168, + "name": "Horizon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1768, + "fields": { + "id_car_make": 168, + "name": "Samba", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1769, + "fields": { + "id_car_make": 168, + "name": "Solara", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1770, + "fields": { + "id_car_make": 168, + "name": "Tagora", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1771, + "fields": { + "id_car_make": 169, + "name": "Aria", + "arabic_name": "أريا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1772, + "fields": { + "id_car_make": 169, + "name": "Estate", + "arabic_name": "إستايت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1773, + "fields": { + "id_car_make": 169, + "name": "Indica", + "arabic_name": "إنديكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1774, + "fields": { + "id_car_make": 169, + "name": "Indigo", + "arabic_name": "إنديجو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1775, + "fields": { + "id_car_make": 169, + "name": "Nano", + "arabic_name": "نانو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1776, + "fields": { + "id_car_make": 169, + "name": "Safari", + "arabic_name": "سفاري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1777, + "fields": { + "id_car_make": 169, + "name": "Sierra", + "arabic_name": "سييرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1778, + "fields": { + "id_car_make": 169, + "name": "Sumo", + "arabic_name": "سومو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1779, + "fields": { + "id_car_make": 170, + "name": "T613", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1780, + "fields": { + "id_car_make": 170, + "name": "T700", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1781, + "fields": { + "id_car_make": 171, + "name": "Zero", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1782, + "fields": { + "id_car_make": 172, + "name": "Model S", + "arabic_name": "موديل إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1783, + "fields": { + "id_car_make": 172, + "name": "Roadster", + "arabic_name": "رودستر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1784, + "fields": { + "id_car_make": 173, + "name": "Century", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1785, + "fields": { + "id_car_make": 174, + "name": "Admiral", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1786, + "fields": { + "id_car_make": 175, + "name": "Dogan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1787, + "fields": { + "id_car_make": 175, + "name": "Kartal", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1788, + "fields": { + "id_car_make": 175, + "name": "131", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1789, + "fields": { + "id_car_make": 175, + "name": "Sahin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1790, + "fields": { + "id_car_make": 175, + "name": "Serce", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1791, + "fields": { + "id_car_make": 176, + "name": "4Runner", + "arabic_name": "فور رانر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1792, + "fields": { + "id_car_make": 176, + "name": "Allex", + "arabic_name": "أليكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1793, + "fields": { + "id_car_make": 176, + "name": "Allion", + "arabic_name": "أليون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1794, + "fields": { + "id_car_make": 176, + "name": "Alphard", + "arabic_name": "ألفارد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1795, + "fields": { + "id_car_make": 176, + "name": "Altezza", + "arabic_name": "ألتيسا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1796, + "fields": { + "id_car_make": 176, + "name": "Aristo", + "arabic_name": "أريستو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1797, + "fields": { + "id_car_make": 176, + "name": "Aurion", + "arabic_name": "أورين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1798, + "fields": { + "id_car_make": 176, + "name": "Auris", + "arabic_name": "أوريس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1799, + "fields": { + "id_car_make": 176, + "name": "Avalon", + "arabic_name": "أفالون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1800, + "fields": { + "id_car_make": 176, + "name": "Avensis", + "arabic_name": "أفينسيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1801, + "fields": { + "id_car_make": 176, + "name": "Avensis Verso", + "arabic_name": "أفينسيس فيرسو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1802, + "fields": { + "id_car_make": 176, + "name": "Aygo", + "arabic_name": "آيغو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1803, + "fields": { + "id_car_make": 176, + "name": "bB", + "arabic_name": "بي بي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1804, + "fields": { + "id_car_make": 176, + "name": "Belta", + "arabic_name": "بلتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1805, + "fields": { + "id_car_make": 176, + "name": "Blade", + "arabic_name": "بليد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1806, + "fields": { + "id_car_make": 176, + "name": "Blizzard", + "arabic_name": "بليزارد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1807, + "fields": { + "id_car_make": 176, + "name": "Brevis", + "arabic_name": "بريفيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1808, + "fields": { + "id_car_make": 176, + "name": "Caldina", + "arabic_name": "كالدينا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1809, + "fields": { + "id_car_make": 176, + "name": "Cami", + "arabic_name": "كامي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1810, + "fields": { + "id_car_make": 176, + "name": "Camry", + "arabic_name": "كامري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1811, + "fields": { + "id_car_make": 176, + "name": "Carina ED", + "arabic_name": "كارينا إي دي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1812, + "fields": { + "id_car_make": 176, + "name": "Carina", + "arabic_name": "كارينا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1813, + "fields": { + "id_car_make": 176, + "name": "Cavalier", + "arabic_name": "كافاليير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1814, + "fields": { + "id_car_make": 176, + "name": "Celica", + "arabic_name": "سيليكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1815, + "fields": { + "id_car_make": 176, + "name": "Celsior", + "arabic_name": "سيلسير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1816, + "fields": { + "id_car_make": 176, + "name": "Century", + "arabic_name": "سينشري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1817, + "fields": { + "id_car_make": 176, + "name": "Chaser", + "arabic_name": "تشيزر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1818, + "fields": { + "id_car_make": 176, + "name": "Corolla", + "arabic_name": "كورولا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1819, + "fields": { + "id_car_make": 176, + "name": "Corolla Rumion", + "arabic_name": "كورولا روميوم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1820, + "fields": { + "id_car_make": 176, + "name": "AC", + "arabic_name": "إيه سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1821, + "fields": { + "id_car_make": 176, + "name": "Corona", + "arabic_name": "كورونا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1822, + "fields": { + "id_car_make": 176, + "name": "Corsa", + "arabic_name": "كورسا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1823, + "fields": { + "id_car_make": 176, + "name": "Cressida", + "arabic_name": "كريسيدا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1824, + "fields": { + "id_car_make": 176, + "name": "Cresta", + "arabic_name": "كريستا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1825, + "fields": { + "id_car_make": 176, + "name": "Crown Majesta", + "arabic_name": "كراون ماجيستا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1826, + "fields": { + "id_car_make": 176, + "name": "Crown", + "arabic_name": "كراون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1827, + "fields": { + "id_car_make": 176, + "name": "Curren", + "arabic_name": "كارين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1828, + "fields": { + "id_car_make": 176, + "name": "Cynos", + "arabic_name": "ساينوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1829, + "fields": { + "id_car_make": 176, + "name": "Duet", + "arabic_name": "ديويت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1830, + "fields": { + "id_car_make": 176, + "name": "Echo", + "arabic_name": "إيكو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1831, + "fields": { + "id_car_make": 176, + "name": "Estima", + "arabic_name": "إستيما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1832, + "fields": { + "id_car_make": 176, + "name": "FJ Cruiser", + "arabic_name": "إف جي كروزر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1833, + "fields": { + "id_car_make": 176, + "name": "Fortuner", + "arabic_name": "فورتشنر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1834, + "fields": { + "id_car_make": 176, + "name": "Fun Cargo", + "arabic_name": "فان كارغو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1835, + "fields": { + "id_car_make": 176, + "name": "Gaia", + "arabic_name": "جيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1836, + "fields": { + "id_car_make": 176, + "name": "Granvia", + "arabic_name": "جرانفيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1837, + "fields": { + "id_car_make": 176, + "name": "GT 86", + "arabic_name": "جي تي 86" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1838, + "fields": { + "id_car_make": 176, + "name": "Harrier", + "arabic_name": "هارير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1839, + "fields": { + "id_car_make": 176, + "name": "Hiace", + "arabic_name": "هايس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1840, + "fields": { + "id_car_make": 176, + "name": "Highlander", + "arabic_name": "هايلاندر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1841, + "fields": { + "id_car_make": 176, + "name": "Hilux Surf", + "arabic_name": "هايلوكس سورف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1842, + "fields": { + "id_car_make": 176, + "name": "Hilux", + "arabic_name": "هايلوكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1843, + "fields": { + "id_car_make": 176, + "name": "Innova", + "arabic_name": "إنوفا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1844, + "fields": { + "id_car_make": 176, + "name": "Ipsum", + "arabic_name": "إيبسوم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1845, + "fields": { + "id_car_make": 176, + "name": "iQ", + "arabic_name": "آي كيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1846, + "fields": { + "id_car_make": 176, + "name": "Isis", + "arabic_name": "إيزيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1847, + "fields": { + "id_car_make": 176, + "name": "Ist", + "arabic_name": "إيست" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1848, + "fields": { + "id_car_make": 176, + "name": "Kluger", + "arabic_name": "كلوجر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1849, + "fields": { + "id_car_make": 176, + "name": "Land Cruiser", + "arabic_name": "لاند كروزر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1850, + "fields": { + "id_car_make": 176, + "name": "Land Cruiser Prado", + "arabic_name": "لاند كروزر برادو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1851, + "fields": { + "id_car_make": 177, + "name": "1.1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1852, + "fields": { + "id_car_make": 177, + "name": "P 601", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1853, + "fields": { + "id_car_make": 178, + "name": "Tramontana", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1854, + "fields": { + "id_car_make": 179, + "name": "TR7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1855, + "fields": { + "id_car_make": 179, + "name": "TR8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1856, + "fields": { + "id_car_make": 180, + "name": "280", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1857, + "fields": { + "id_car_make": 180, + "name": "350", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1858, + "fields": { + "id_car_make": 180, + "name": "390", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1859, + "fields": { + "id_car_make": 180, + "name": "400", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1860, + "fields": { + "id_car_make": 180, + "name": "420", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1861, + "fields": { + "id_car_make": 180, + "name": "450", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1862, + "fields": { + "id_car_make": 180, + "name": "Cerbera", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1863, + "fields": { + "id_car_make": 180, + "name": "Chimaera", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1864, + "fields": { + "id_car_make": 180, + "name": "Griffith", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1865, + "fields": { + "id_car_make": 180, + "name": "S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1866, + "fields": { + "id_car_make": 180, + "name": "Sagaris", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1867, + "fields": { + "id_car_make": 180, + "name": "Tamora", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1868, + "fields": { + "id_car_make": 180, + "name": "Tuscan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1869, + "fields": { + "id_car_make": 181, + "name": "Adam", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1870, + "fields": { + "id_car_make": 181, + "name": "Agila", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1871, + "fields": { + "id_car_make": 181, + "name": "Astra", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1873, + "fields": { + "id_car_make": 181, + "name": "Carlton", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1874, + "fields": { + "id_car_make": 181, + "name": "Cavalier", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1875, + "fields": { + "id_car_make": 181, + "name": "Chevette", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1877, + "fields": { + "id_car_make": 181, + "name": "Corsa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1878, + "fields": { + "id_car_make": 181, + "name": "Frontera", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1881, + "fields": { + "id_car_make": 181, + "name": "Omega", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1882, + "fields": { + "id_car_make": 181, + "name": "Royale", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1885, + "fields": { + "id_car_make": 181, + "name": "Tigra", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1886, + "fields": { + "id_car_make": 181, + "name": "Vectra", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1887, + "fields": { + "id_car_make": 181, + "name": "Ventora", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1888, + "fields": { + "id_car_make": 181, + "name": "Viceroy", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1889, + "fields": { + "id_car_make": 181, + "name": "Victor", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1890, + "fields": { + "id_car_make": 181, + "name": "Viva", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1891, + "fields": { + "id_car_make": 181, + "name": "VXR8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1892, + "fields": { + "id_car_make": 181, + "name": "Zafira", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1893, + "fields": { + "id_car_make": 182, + "name": "M12", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1894, + "fields": { + "id_car_make": 182, + "name": "W8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1895, + "fields": { + "id_car_make": 183, + "name": "210", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1896, + "fields": { + "id_car_make": 183, + "name": "260 LM", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1897, + "fields": { + "id_car_make": 183, + "name": "300", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1898, + "fields": { + "id_car_make": 183, + "name": "400", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1899, + "fields": { + "id_car_make": 184, + "name": "181", + "arabic_name": "181" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1900, + "fields": { + "id_car_make": 184, + "name": "Beetle", + "arabic_name": "بيتل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1901, + "fields": { + "id_car_make": 184, + "name": "Bora", + "arabic_name": "بورا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1902, + "fields": { + "id_car_make": 184, + "name": "Caddy", + "arabic_name": "كادي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1903, + "fields": { + "id_car_make": 184, + "name": "Corrado", + "arabic_name": "كورادو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1904, + "fields": { + "id_car_make": 184, + "name": "Derby", + "arabic_name": "ديربي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1905, + "fields": { + "id_car_make": 184, + "name": "Eos", + "arabic_name": "إيوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1906, + "fields": { + "id_car_make": 184, + "name": "Fox", + "arabic_name": "فوكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1907, + "fields": { + "id_car_make": 184, + "name": "Golf Country", + "arabic_name": "غولف كانتري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1908, + "fields": { + "id_car_make": 184, + "name": "Golf", + "arabic_name": "غولف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1909, + "fields": { + "id_car_make": 184, + "name": "Golf Plus", + "arabic_name": "غولف بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1910, + "fields": { + "id_car_make": 184, + "name": "Gol", + "arabic_name": "غول" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1911, + "fields": { + "id_car_make": 184, + "name": "Iltis", + "arabic_name": "إيلتيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1912, + "fields": { + "id_car_make": 184, + "name": "Jetta", + "arabic_name": "جيتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1914, + "fields": { + "id_car_make": 184, + "name": "Lupo", + "arabic_name": "لوبو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1915, + "fields": { + "id_car_make": 184, + "name": "Multivan", + "arabic_name": "مولتيفان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1916, + "fields": { + "id_car_make": 184, + "name": "Passat (North America)", + "arabic_name": "باسات (أمريكا الشمالية)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1917, + "fields": { + "id_car_make": 184, + "name": "Passat", + "arabic_name": "باسات" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1918, + "fields": { + "id_car_make": 184, + "name": "Passat CC", + "arabic_name": "باسات سي سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1919, + "fields": { + "id_car_make": 184, + "name": "Phaeton", + "arabic_name": "فانتون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1920, + "fields": { + "id_car_make": 184, + "name": "Pointer", + "arabic_name": "بوينتر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1921, + "fields": { + "id_car_make": 184, + "name": "Polo", + "arabic_name": "بولو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1922, + "fields": { + "id_car_make": 184, + "name": "Routan", + "arabic_name": "روتان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1923, + "fields": { + "id_car_make": 184, + "name": "Santana", + "arabic_name": "سانتانا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1924, + "fields": { + "id_car_make": 184, + "name": "Scirocco", + "arabic_name": "سيروكو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1925, + "fields": { + "id_car_make": 184, + "name": "Sharan", + "arabic_name": "شاران" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1926, + "fields": { + "id_car_make": 184, + "name": "Taro", + "arabic_name": "تارو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1927, + "fields": { + "id_car_make": 184, + "name": "Tiguan", + "arabic_name": "تيغوان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1928, + "fields": { + "id_car_make": 184, + "name": "Touareg", + "arabic_name": "طوارق" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1929, + "fields": { + "id_car_make": 184, + "name": "Touran", + "arabic_name": "توران" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1930, + "fields": { + "id_car_make": 184, + "name": "Type 4", + "arabic_name": "تايب 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1931, + "fields": { + "id_car_make": 184, + "name": "up!", + "arabic_name": "أب!" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1932, + "fields": { + "id_car_make": 184, + "name": "Vento", + "arabic_name": "فينتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1933, + "fields": { + "id_car_make": 184, + "name": "XL1", + "arabic_name": "إكس إل 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1934, + "fields": { + "id_car_make": 185, + "name": "140", + "arabic_name": "140" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1935, + "fields": { + "id_car_make": 185, + "name": "164", + "arabic_name": "164" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1936, + "fields": { + "id_car_make": 185, + "name": "240", + "arabic_name": "240" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1937, + "fields": { + "id_car_make": 185, + "name": "260", + "arabic_name": "260" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1938, + "fields": { + "id_car_make": 185, + "name": "300 Series", + "arabic_name": "سلسلة 300" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1939, + "fields": { + "id_car_make": 185, + "name": "440", + "arabic_name": "440" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1940, + "fields": { + "id_car_make": 185, + "name": "460", + "arabic_name": "460" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1941, + "fields": { + "id_car_make": 185, + "name": "480", + "arabic_name": "480" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1942, + "fields": { + "id_car_make": 185, + "name": "66", + "arabic_name": "66" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1943, + "fields": { + "id_car_make": 185, + "name": "740", + "arabic_name": "740" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1944, + "fields": { + "id_car_make": 185, + "name": "760", + "arabic_name": "760" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1945, + "fields": { + "id_car_make": 185, + "name": "780", + "arabic_name": "780" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1946, + "fields": { + "id_car_make": 185, + "name": "850", + "arabic_name": "850" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1947, + "fields": { + "id_car_make": 185, + "name": "940", + "arabic_name": "940" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1948, + "fields": { + "id_car_make": 185, + "name": "960", + "arabic_name": "960" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1949, + "fields": { + "id_car_make": 185, + "name": "C30", + "arabic_name": "سي 30" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1950, + "fields": { + "id_car_make": 185, + "name": "C70", + "arabic_name": "سي 70" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1951, + "fields": { + "id_car_make": 185, + "name": "Laplander", + "arabic_name": "لابلاندر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1952, + "fields": { + "id_car_make": 185, + "name": "S40", + "arabic_name": "إس 40" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1953, + "fields": { + "id_car_make": 185, + "name": "S60", + "arabic_name": "إس 60" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1954, + "fields": { + "id_car_make": 185, + "name": "S70", + "arabic_name": "إس 70" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1955, + "fields": { + "id_car_make": 185, + "name": "S80", + "arabic_name": "إس 80" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1956, + "fields": { + "id_car_make": 185, + "name": "S90", + "arabic_name": "إس 90" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1957, + "fields": { + "id_car_make": 185, + "name": "V40", + "arabic_name": "في 40" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1958, + "fields": { + "id_car_make": 185, + "name": "V50", + "arabic_name": "في 50" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1959, + "fields": { + "id_car_make": 185, + "name": "V60", + "arabic_name": "في 60" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1960, + "fields": { + "id_car_make": 185, + "name": "V70", + "arabic_name": "في 70" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1961, + "fields": { + "id_car_make": 185, + "name": "V90", + "arabic_name": "في 90" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1962, + "fields": { + "id_car_make": 185, + "name": "XC60", + "arabic_name": "إكس سي 60" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1963, + "fields": { + "id_car_make": 185, + "name": "XC70", + "arabic_name": "إكس سي 70" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1964, + "fields": { + "id_car_make": 185, + "name": "XC90", + "arabic_name": "إكس سي 90" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1965, + "fields": { + "id_car_make": 186, + "name": "Corda", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1966, + "fields": { + "id_car_make": 186, + "name": "Estina", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1967, + "fields": { + "id_car_make": 186, + "name": "Tingo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1968, + "fields": { + "id_car_make": 187, + "name": "1.3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1969, + "fields": { + "id_car_make": 187, + "name": "353", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1970, + "fields": { + "id_car_make": 188, + "name": "SEi & Sport", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1971, + "fields": { + "id_car_make": 188, + "name": "Seight", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1972, + "fields": { + "id_car_make": 189, + "name": "GT MF5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1973, + "fields": { + "id_car_make": 189, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1974, + "fields": { + "id_car_make": 190, + "name": "PICKUP X3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1975, + "fields": { + "id_car_make": 190, + "name": "SR-V X3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1976, + "fields": { + "id_car_make": 190, + "name": "SUV X3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1977, + "fields": { + "id_car_make": 191, + "name": "10", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1978, + "fields": { + "id_car_make": 191, + "name": "Yugo Florida", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1979, + "fields": { + "id_car_make": 191, + "name": "Yugo Skala", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1980, + "fields": { + "id_car_make": 191, + "name": "Yugo Koral", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1981, + "fields": { + "id_car_make": 192, + "name": "RX6400", + "arabic_name": "آر إكس 6400" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1982, + "fields": { + "id_car_make": 193, + "name": "Admiral", + "arabic_name": "أدميرال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1983, + "fields": { + "id_car_make": 193, + "name": "GrandTiger", + "arabic_name": "جراند تايجر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1984, + "fields": { + "id_car_make": 193, + "name": "Landmark", + "arabic_name": "لاند مارك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1986, + "fields": { + "id_car_make": 212, + "name": "2160", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1987, + "fields": { + "id_car_make": 212, + "name": "2163", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1988, + "fields": { + "id_car_make": 212, + "name": "3101", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1991, + "fields": { + "id_car_make": 215, + "name": "1111 Oka", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1992, + "fields": { + "id_car_make": 215, + "name": "2101", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1993, + "fields": { + "id_car_make": 215, + "name": "2102", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1994, + "fields": { + "id_car_make": 215, + "name": "2103", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1995, + "fields": { + "id_car_make": 215, + "name": "2104", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1996, + "fields": { + "id_car_make": 215, + "name": "2105", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1997, + "fields": { + "id_car_make": 215, + "name": "2106", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1998, + "fields": { + "id_car_make": 215, + "name": "2107", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 1999, + "fields": { + "id_car_make": 215, + "name": "2108", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2000, + "fields": { + "id_car_make": 215, + "name": "2109", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2001, + "fields": { + "id_car_make": 215, + "name": "21099", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2002, + "fields": { + "id_car_make": 215, + "name": "2110", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2003, + "fields": { + "id_car_make": 215, + "name": "2111", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2004, + "fields": { + "id_car_make": 215, + "name": "2112", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2005, + "fields": { + "id_car_make": 215, + "name": "2113", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2006, + "fields": { + "id_car_make": 215, + "name": "2114", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2007, + "fields": { + "id_car_make": 215, + "name": "2115", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2008, + "fields": { + "id_car_make": 215, + "name": "2120 Nadezhda", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2009, + "fields": { + "id_car_make": 215, + "name": "2121 (4x4)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2010, + "fields": { + "id_car_make": 215, + "name": "2123", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2012, + "fields": { + "id_car_make": 215, + "name": "4x4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2015, + "fields": { + "id_car_make": 215, + "name": "Granta", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2016, + "fields": { + "id_car_make": 215, + "name": "Kalina", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2017, + "fields": { + "id_car_make": 215, + "name": "Largus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2018, + "fields": { + "id_car_make": 215, + "name": "Priora", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2020, + "fields": { + "id_car_make": 216, + "name": "13 «Chaika»", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2021, + "fields": { + "id_car_make": 216, + "name": "14 «Chaika»", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2022, + "fields": { + "id_car_make": 216, + "name": "21 «Volga»", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2023, + "fields": { + "id_car_make": 216, + "name": "22 «Volga»", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2024, + "fields": { + "id_car_make": 216, + "name": "2308 Ataman", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2025, + "fields": { + "id_car_make": 216, + "name": "2330 «Tigr»", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2026, + "fields": { + "id_car_make": 216, + "name": "24 «Volga»", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2027, + "fields": { + "id_car_make": 216, + "name": "3102 «Volga»", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2028, + "fields": { + "id_car_make": 216, + "name": "31029 «Volga»", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2029, + "fields": { + "id_car_make": 216, + "name": "3103 «Volga»", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2030, + "fields": { + "id_car_make": 216, + "name": "3105 «Volga»", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2031, + "fields": { + "id_car_make": 216, + "name": "3110 «Volga»", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2032, + "fields": { + "id_car_make": 216, + "name": "31105 «Volga»", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2033, + "fields": { + "id_car_make": 216, + "name": "3111", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2034, + "fields": { + "id_car_make": 216, + "name": "69", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2035, + "fields": { + "id_car_make": 216, + "name": "Siber", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2036, + "fields": { + "id_car_make": 216, + "name": "A", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2037, + "fields": { + "id_car_make": 216, + "name": "M1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2038, + "fields": { + "id_car_make": 217, + "name": "1102", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2039, + "fields": { + "id_car_make": 217, + "name": "1103", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2040, + "fields": { + "id_car_make": 217, + "name": "1105", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2041, + "fields": { + "id_car_make": 217, + "name": "965", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2042, + "fields": { + "id_car_make": 217, + "name": "966", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2043, + "fields": { + "id_car_make": 217, + "name": "968", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2044, + "fields": { + "id_car_make": 217, + "name": "Chance", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2045, + "fields": { + "id_car_make": 217, + "name": "Forza", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2046, + "fields": { + "id_car_make": 217, + "name": "Sens", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2047, + "fields": { + "id_car_make": 217, + "name": "Vida", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2048, + "fields": { + "id_car_make": 218, + "name": "114", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2049, + "fields": { + "id_car_make": 218, + "name": "117", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2050, + "fields": { + "id_car_make": 218, + "name": "4104", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2051, + "fields": { + "id_car_make": 219, + "name": "2125", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2052, + "fields": { + "id_car_make": 219, + "name": "2126", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2054, + "fields": { + "id_car_make": 219, + "name": "2717", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2057, + "fields": { + "id_car_make": 221, + "name": "2317", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2058, + "fields": { + "id_car_make": 222, + "name": "1302", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2059, + "fields": { + "id_car_make": 222, + "name": "967", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2060, + "fields": { + "id_car_make": 222, + "name": "969", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2061, + "fields": { + "id_car_make": 223, + "name": "2136", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2062, + "fields": { + "id_car_make": 223, + "name": "2137", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2063, + "fields": { + "id_car_make": 223, + "name": "2138", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2064, + "fields": { + "id_car_make": 223, + "name": "2140", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2065, + "fields": { + "id_car_make": 223, + "name": "2141", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2066, + "fields": { + "id_car_make": 223, + "name": "400", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2067, + "fields": { + "id_car_make": 223, + "name": "401", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2068, + "fields": { + "id_car_make": 223, + "name": "402", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2069, + "fields": { + "id_car_make": 223, + "name": "403", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2070, + "fields": { + "id_car_make": 223, + "name": "407", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2071, + "fields": { + "id_car_make": 223, + "name": "408", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2072, + "fields": { + "id_car_make": 223, + "name": "410", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2073, + "fields": { + "id_car_make": 223, + "name": "411", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2074, + "fields": { + "id_car_make": 223, + "name": "412", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2075, + "fields": { + "id_car_make": 223, + "name": "423", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2076, + "fields": { + "id_car_make": 223, + "name": "426", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2077, + "fields": { + "id_car_make": 223, + "name": "427", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2078, + "fields": { + "id_car_make": 223, + "name": "Duet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2079, + "fields": { + "id_car_make": 223, + "name": "Ivan Kalita", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2080, + "fields": { + "id_car_make": 223, + "name": "Knyaz Vladimir", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2081, + "fields": { + "id_car_make": 223, + "name": "Svyatogor", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2082, + "fields": { + "id_car_make": 223, + "name": "Yuri Dolgoruky", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2084, + "fields": { + "id_car_make": 224, + "name": "S-ZD", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2086, + "fields": { + "id_car_make": 226, + "name": "Aquila", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2087, + "fields": { + "id_car_make": 226, + "name": "C30", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2088, + "fields": { + "id_car_make": 226, + "name": "C10", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2089, + "fields": { + "id_car_make": 226, + "name": "C190", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2090, + "fields": { + "id_car_make": 226, + "name": "Road Partner", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2091, + "fields": { + "id_car_make": 226, + "name": "Tager", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2092, + "fields": { + "id_car_make": 226, + "name": "Vega", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2093, + "fields": { + "id_car_make": 227, + "name": "3151", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2094, + "fields": { + "id_car_make": 227, + "name": "3153", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2096, + "fields": { + "id_car_make": 227, + "name": "3160", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2097, + "fields": { + "id_car_make": 227, + "name": "3162 \"Simbir\"", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2098, + "fields": { + "id_car_make": 227, + "name": "469", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2099, + "fields": { + "id_car_make": 227, + "name": "Hunter", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2100, + "fields": { + "id_car_make": 227, + "name": "Patriot", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2101, + "fields": { + "id_car_make": 227, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2102, + "fields": { + "id_car_make": 35, + "name": "Traverse", + "arabic_name": "ترافيرس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2103, + "fields": { + "id_car_make": 35, + "name": "Uplander", + "arabic_name": "أبلاندر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2104, + "fields": { + "id_car_make": 35, + "name": "Van", + "arabic_name": "فان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2105, + "fields": { + "id_car_make": 35, + "name": "Vectra", + "arabic_name": "فيكترا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2106, + "fields": { + "id_car_make": 35, + "name": "Venture", + "arabic_name": "فينتشر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2107, + "fields": { + "id_car_make": 35, + "name": "Viva", + "arabic_name": "فيفا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2108, + "fields": { + "id_car_make": 35, + "name": "Volt", + "arabic_name": "فولت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2109, + "fields": { + "id_car_make": 35, + "name": "Zafira", + "arabic_name": "زافيرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2110, + "fields": { + "id_car_make": 52, + "name": "S30", + "arabic_name": "إس 30" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2111, + "fields": { + "id_car_make": 67, + "name": "GC6", + "arabic_name": "جي سي ٦" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2112, + "fields": { + "id_car_make": 80, + "name": "Q70", + "arabic_name": "كيو 70" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2113, + "fields": { + "id_car_make": 101, + "name": "Celliya", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2114, + "fields": { + "id_car_make": 113, + "name": "Xedos 6", + "arabic_name": "زيدوس 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2115, + "fields": { + "id_car_make": 113, + "name": "Xedos 9", + "arabic_name": "زيدوس 9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2116, + "fields": { + "id_car_make": 127, + "name": "Pixo", + "arabic_name": "بيكسو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2117, + "fields": { + "id_car_make": 127, + "name": "Prairie", + "arabic_name": "برايري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2118, + "fields": { + "id_car_make": 127, + "name": "Presage", + "arabic_name": "بريساج" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2119, + "fields": { + "id_car_make": 127, + "name": "Presea", + "arabic_name": "بريسيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2120, + "fields": { + "id_car_make": 127, + "name": "President", + "arabic_name": "برزيدنت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2121, + "fields": { + "id_car_make": 127, + "name": "Primera", + "arabic_name": "بريميرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2122, + "fields": { + "id_car_make": 127, + "name": "Pulsar", + "arabic_name": "بولسار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2123, + "fields": { + "id_car_make": 127, + "name": "Qashqai", + "arabic_name": "قاشقاي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2124, + "fields": { + "id_car_make": 127, + "name": "Quest", + "arabic_name": "كويست" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2125, + "fields": { + "id_car_make": 127, + "name": "R'nessa", + "arabic_name": "رنيسا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2126, + "fields": { + "id_car_make": 127, + "name": "Rasheen", + "arabic_name": "راشين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2127, + "fields": { + "id_car_make": 127, + "name": "Rogue", + "arabic_name": "روج" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2128, + "fields": { + "id_car_make": 127, + "name": "Roox", + "arabic_name": "روكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2129, + "fields": { + "id_car_make": 127, + "name": "Safari", + "arabic_name": "سفاري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2130, + "fields": { + "id_car_make": 127, + "name": "Sentra", + "arabic_name": "سينترا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2131, + "fields": { + "id_car_make": 127, + "name": "Serena", + "arabic_name": "سيرينا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2132, + "fields": { + "id_car_make": 127, + "name": "Silvia", + "arabic_name": "سيلفيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2133, + "fields": { + "id_car_make": 127, + "name": "Skyline Crossover", + "arabic_name": "سكايلاين كروس أوفر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2134, + "fields": { + "id_car_make": 127, + "name": "Skyline", + "arabic_name": "سكايلاين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2135, + "fields": { + "id_car_make": 127, + "name": "Stagea", + "arabic_name": "ستيجيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2136, + "fields": { + "id_car_make": 127, + "name": "Stanza", + "arabic_name": "ستانزا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2137, + "fields": { + "id_car_make": 127, + "name": "Sunny", + "arabic_name": "صني" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2138, + "fields": { + "id_car_make": 127, + "name": "Teana", + "arabic_name": "تيانا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2139, + "fields": { + "id_car_make": 127, + "name": "Terrano", + "arabic_name": "تيرانو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2140, + "fields": { + "id_car_make": 127, + "name": "Terra", + "arabic_name": "تيرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2141, + "fields": { + "id_car_make": 127, + "name": "Tiida", + "arabic_name": "تيدا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2142, + "fields": { + "id_car_make": 127, + "name": "Tino", + "arabic_name": "تينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2143, + "fields": { + "id_car_make": 127, + "name": "Titan", + "arabic_name": "تايتان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2144, + "fields": { + "id_car_make": 127, + "name": "Vanette", + "arabic_name": "فانيت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2145, + "fields": { + "id_car_make": 127, + "name": "Versa", + "arabic_name": "فيرسا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2146, + "fields": { + "id_car_make": 127, + "name": "Wingroad", + "arabic_name": "وينغ رود" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2147, + "fields": { + "id_car_make": 127, + "name": "Xterra", + "arabic_name": "إكستيرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2148, + "fields": { + "id_car_make": 127, + "name": "X-Trail", + "arabic_name": "إكس تريل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2149, + "fields": { + "id_car_make": 176, + "name": "Lite Ace", + "arabic_name": "لايت إيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2150, + "fields": { + "id_car_make": 176, + "name": "Mark II", + "arabic_name": "مارك 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2151, + "fields": { + "id_car_make": 176, + "name": "Mark X", + "arabic_name": "مارك إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2152, + "fields": { + "id_car_make": 176, + "name": "Mark X Zio", + "arabic_name": "مارك إكس زيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2153, + "fields": { + "id_car_make": 176, + "name": "Master", + "arabic_name": "ماستر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2154, + "fields": { + "id_car_make": 176, + "name": "Matrix", + "arabic_name": "ماتريكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2155, + "fields": { + "id_car_make": 176, + "name": "Mega Cruiser", + "arabic_name": "ميجا كروزر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2156, + "fields": { + "id_car_make": 176, + "name": "MR2", + "arabic_name": "إم آر 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2157, + "fields": { + "id_car_make": 176, + "name": "Nadia", + "arabic_name": "ناديا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2158, + "fields": { + "id_car_make": 176, + "name": "Noah", + "arabic_name": "نواه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2159, + "fields": { + "id_car_make": 176, + "name": "Opa", + "arabic_name": "أوبا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2160, + "fields": { + "id_car_make": 176, + "name": "Origin", + "arabic_name": "أورجين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2161, + "fields": { + "id_car_make": 176, + "name": "Paseo", + "arabic_name": "باسيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2162, + "fields": { + "id_car_make": 176, + "name": "Passo", + "arabic_name": "باسو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2163, + "fields": { + "id_car_make": 176, + "name": "Passo Sette", + "arabic_name": "باسو سيت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2164, + "fields": { + "id_car_make": 176, + "name": "Picnic", + "arabic_name": "بيكنيك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2165, + "fields": { + "id_car_make": 176, + "name": "Platz", + "arabic_name": "بلاتز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2166, + "fields": { + "id_car_make": 176, + "name": "Porte", + "arabic_name": "بورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2167, + "fields": { + "id_car_make": 176, + "name": "Premio", + "arabic_name": "بريمو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2168, + "fields": { + "id_car_make": 176, + "name": "Previa", + "arabic_name": "بريفيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2169, + "fields": { + "id_car_make": 176, + "name": "Prius C", + "arabic_name": "بريوس سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2170, + "fields": { + "id_car_make": 176, + "name": "Prius", + "arabic_name": "بريوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2171, + "fields": { + "id_car_make": 176, + "name": "Prius V", + "arabic_name": "بريوس في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2172, + "fields": { + "id_car_make": 176, + "name": "Probox", + "arabic_name": "بروبوكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2173, + "fields": { + "id_car_make": 176, + "name": "Progres", + "arabic_name": "بروجريس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2174, + "fields": { + "id_car_make": 176, + "name": "Pronard", + "arabic_name": "برونارد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2175, + "fields": { + "id_car_make": 176, + "name": "Ractis", + "arabic_name": "راكتيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2176, + "fields": { + "id_car_make": 176, + "name": "Raum", + "arabic_name": "راوم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2177, + "fields": { + "id_car_make": 176, + "name": "RAV4", + "arabic_name": "راف فور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2178, + "fields": { + "id_car_make": 176, + "name": "Regius", + "arabic_name": "ريجيوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2179, + "fields": { + "id_car_make": 176, + "name": "RegiusAce", + "arabic_name": "ريجيوس إيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2180, + "fields": { + "id_car_make": 176, + "name": "Rush", + "arabic_name": "رش" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2181, + "fields": { + "id_car_make": 176, + "name": "Sai", + "arabic_name": "ساي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2182, + "fields": { + "id_car_make": 176, + "name": "Scepter", + "arabic_name": "سبتر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2183, + "fields": { + "id_car_make": 176, + "name": "Sequoia", + "arabic_name": "سيكويا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2184, + "fields": { + "id_car_make": 176, + "name": "Sera", + "arabic_name": "سيرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2185, + "fields": { + "id_car_make": 176, + "name": "Sienna", + "arabic_name": "سيينا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2186, + "fields": { + "id_car_make": 176, + "name": "Sienta", + "arabic_name": "سينتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2187, + "fields": { + "id_car_make": 176, + "name": "Soarer", + "arabic_name": "سوارير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2188, + "fields": { + "id_car_make": 176, + "name": "Soluna", + "arabic_name": "سولونا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2189, + "fields": { + "id_car_make": 176, + "name": "Sparky", + "arabic_name": "سباركي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2190, + "fields": { + "id_car_make": 176, + "name": "Sprinter Carib", + "arabic_name": "سبرينتر كاريب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2191, + "fields": { + "id_car_make": 176, + "name": "Sprinter Marino", + "arabic_name": "سبرينتر مارينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2192, + "fields": { + "id_car_make": 176, + "name": "Sprinter Trueno", + "arabic_name": "سبرينتر تروينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2193, + "fields": { + "id_car_make": 176, + "name": "Sprinter", + "arabic_name": "سبرينتر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2194, + "fields": { + "id_car_make": 176, + "name": "Starlet", + "arabic_name": "ستارليت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2195, + "fields": { + "id_car_make": 176, + "name": "Succeed", + "arabic_name": "ساكسيد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2196, + "fields": { + "id_car_make": 176, + "name": "Supra", + "arabic_name": "سوبرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2197, + "fields": { + "id_car_make": 176, + "name": "Tacoma", + "arabic_name": "تاكوما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2198, + "fields": { + "id_car_make": 176, + "name": "Tercel", + "arabic_name": "تيرسيل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2199, + "fields": { + "id_car_make": 176, + "name": "Town Ace", + "arabic_name": "تاون إيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2200, + "fields": { + "id_car_make": 176, + "name": "Tundra", + "arabic_name": "تندرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2201, + "fields": { + "id_car_make": 176, + "name": "Urban Cruiser", + "arabic_name": "أوربان كروزر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2202, + "fields": { + "id_car_make": 176, + "name": "Vanguard", + "arabic_name": "فانغارد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2203, + "fields": { + "id_car_make": 176, + "name": "Vellfire", + "arabic_name": "فيلفاير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2204, + "fields": { + "id_car_make": 176, + "name": "Venza", + "arabic_name": "فينزا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2205, + "fields": { + "id_car_make": 176, + "name": "Verossa", + "arabic_name": "فيروسا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2206, + "fields": { + "id_car_make": 176, + "name": "Verso", + "arabic_name": "فيرسو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2207, + "fields": { + "id_car_make": 176, + "name": "Verso-S", + "arabic_name": "فيرسو-إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2208, + "fields": { + "id_car_make": 176, + "name": "Vios", + "arabic_name": "فيوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2209, + "fields": { + "id_car_make": 176, + "name": "Vista", + "arabic_name": "فيستا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2210, + "fields": { + "id_car_make": 176, + "name": "Vitz", + "arabic_name": "فيتز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2211, + "fields": { + "id_car_make": 176, + "name": "Voltz", + "arabic_name": "فولتز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2212, + "fields": { + "id_car_make": 176, + "name": "Voxy", + "arabic_name": "فوكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2213, + "fields": { + "id_car_make": 176, + "name": "Will Cypha", + "arabic_name": "ويل سي فا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2214, + "fields": { + "id_car_make": 176, + "name": "Will Vi", + "arabic_name": "ويل في آي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2215, + "fields": { + "id_car_make": 176, + "name": "Windom", + "arabic_name": "ويندوم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2216, + "fields": { + "id_car_make": 176, + "name": "Wish", + "arabic_name": "ويش" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2217, + "fields": { + "id_car_make": 176, + "name": "Yaris", + "arabic_name": "ياريس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2218, + "fields": { + "id_car_make": 176, + "name": "Yaris Verso", + "arabic_name": "ياريس فيرسو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2219, + "fields": { + "id_car_make": 28, + "name": "ELR", + "arabic_name": "إي إل آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2220, + "fields": { + "id_car_make": 35, + "name": "Silverado", + "arabic_name": "سيلفرادو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2221, + "fields": { + "id_car_make": 37, + "name": "Jumpy", + "arabic_name": "جامبي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2222, + "fields": { + "id_car_make": 61, + "name": "Scudo", + "arabic_name": "سكودو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2223, + "fields": { + "id_car_make": 63, + "name": "Bronco II", + "arabic_name": "برونكو 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2224, + "fields": { + "id_car_make": 76, + "name": "Vezel", + "arabic_name": "فيزل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2225, + "fields": { + "id_car_make": 116, + "name": "Vito", + "arabic_name": "فيتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2226, + "fields": { + "id_car_make": 127, + "name": "Primastar", + "arabic_name": "بريماستار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2227, + "fields": { + "id_car_make": 130, + "name": "Vivaro", + "arabic_name": "فيفارو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2228, + "fields": { + "id_car_make": 135, + "name": "108", + "arabic_name": "108" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2229, + "fields": { + "id_car_make": 135, + "name": "Expert", + "arabic_name": "إكسبيرت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2230, + "fields": { + "id_car_make": 147, + "name": "Trafic", + "arabic_name": "ترافيك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2231, + "fields": { + "id_car_make": 166, + "name": "WRX", + "arabic_name": "دبليو آر إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2232, + "fields": { + "id_car_make": 167, + "name": "Celerio", + "arabic_name": "سيليريو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2233, + "fields": { + "id_car_make": 184, + "name": "Amarok", + "arabic_name": "أماروك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2234, + "fields": { + "id_car_make": 184, + "name": "California", + "arabic_name": "كاليفورنيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2235, + "fields": { + "id_car_make": 184, + "name": "Caravelle", + "arabic_name": "كارافيل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2236, + "fields": { + "id_car_make": 184, + "name": "Transporter", + "arabic_name": "ترانسبورتر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2237, + "fields": { + "id_car_make": 26, + "name": "F5", + "arabic_name": "إف 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2238, + "fields": { + "id_car_make": 47, + "name": "Urvan", + "arabic_name": "أورفان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2239, + "fields": { + "id_car_make": 63, + "name": "Tourneo Custom", + "arabic_name": "تورنو كستم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2240, + "fields": { + "id_car_make": 79, + "name": "Grace", + "arabic_name": "جريس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2241, + "fields": { + "id_car_make": 114, + "name": "650S", + "arabic_name": "650 إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2242, + "fields": { + "id_car_make": 123, + "name": "Minicab", + "arabic_name": "ميني كاب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2243, + "fields": { + "id_car_make": 127, + "name": "Caravan", + "arabic_name": "كارافان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2244, + "fields": { + "id_car_make": 127, + "name": "NV", + "arabic_name": "إن في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2245, + "fields": { + "id_car_make": 127, + "name": "Urvan", + "arabic_name": "أورفان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2246, + "fields": { + "id_car_make": 135, + "name": "Bipper", + "arabic_name": "بيبر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2247, + "fields": { + "id_car_make": 32, + "name": "CM-8", + "arabic_name": "سي إم-8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2248, + "fields": { + "id_car_make": 34, + "name": "M11", + "arabic_name": "إم 11" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2249, + "fields": { + "id_car_make": 80, + "name": "Q40", + "arabic_name": "كيو 40" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2251, + "fields": { + "id_car_make": 167, + "name": "Vitara", + "arabic_name": "فيتارا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2252, + "fields": { + "id_car_make": 25, + "name": "Encore", + "arabic_name": "إنكور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2253, + "fields": { + "id_car_make": 34, + "name": "A19", + "arabic_name": "إيه 19" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2254, + "fields": { + "id_car_make": 34, + "name": "Tiggo 5", + "arabic_name": "تيجو 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2255, + "fields": { + "id_car_make": 35, + "name": "City Express", + "arabic_name": "سيتي إكسبريس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2256, + "fields": { + "id_car_make": 51, + "name": "Lancer", + "arabic_name": "لانسر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2257, + "fields": { + "id_car_make": 59, + "name": "Besturn X80", + "arabic_name": "بيسترن إكس80" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2258, + "fields": { + "id_car_make": 67, + "name": "SC7", + "arabic_name": "إس سي7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2259, + "fields": { + "id_car_make": 95, + "name": "Sesto Elemento", + "arabic_name": "سيستو إلمنتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2260, + "fields": { + "id_car_make": 99, + "name": "NX", + "arabic_name": "إن إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2261, + "fields": { + "id_car_make": 280, + "name": "GTR", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2265, + "fields": { + "id_car_make": 2, + "name": "TLX", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2266, + "fields": { + "id_car_make": 3, + "name": "Disco Volante", + "arabic_name": "ديسكو فولانتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2267, + "fields": { + "id_car_make": 34, + "name": "Arrizo 7", + "arabic_name": "أريزو 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2268, + "fields": { + "id_car_make": 47, + "name": "mi-Do", + "arabic_name": "مي-دو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2269, + "fields": { + "id_car_make": 89, + "name": "Renegade", + "arabic_name": "رينيجيد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2270, + "fields": { + "id_car_make": 101, + "name": "Smily", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2271, + "fields": { + "id_car_make": 282, + "name": "Boliger", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2272, + "fields": { + "id_car_make": 284, + "name": "Tropica Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2273, + "fields": { + "id_car_make": 10, + "name": "TT RS", + "arabic_name": "تي تي آر إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2274, + "fields": { + "id_car_make": 10, + "name": "TTS", + "arabic_name": "تي تي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2275, + "fields": { + "id_car_make": 63, + "name": "Courier", + "arabic_name": "كورير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2277, + "fields": { + "id_car_make": 71, + "name": "Hover H5", + "arabic_name": "هوفر إتش 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2278, + "fields": { + "id_car_make": 71, + "name": "Hover H6", + "arabic_name": "هوفر إتش 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2279, + "fields": { + "id_car_make": 101, + "name": "Solano", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2280, + "fields": { + "id_car_make": 116, + "name": "AMG GT", + "arabic_name": "إيه إم جي جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2281, + "fields": { + "id_car_make": 165, + "name": "Korando Sports", + "arabic_name": "كوراندو سبورتس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2282, + "fields": { + "id_car_make": 176, + "name": "ProAce", + "arabic_name": "برو إيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2285, + "fields": { + "id_car_make": 79, + "name": "Aslan", + "arabic_name": "أسلان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2286, + "fields": { + "id_car_make": 88, + "name": "XE", + "arabic_name": "إكس إي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2287, + "fields": { + "id_car_make": 97, + "name": "Discovery Sport", + "arabic_name": "ديسكفري سبورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2288, + "fields": { + "id_car_make": 289, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2289, + "fields": { + "id_car_make": 290, + "name": "H6", + "arabic_name": "إتش 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2290, + "fields": { + "id_car_make": 21, + "name": "H530", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2292, + "fields": { + "id_car_make": 61, + "name": "500X", + "arabic_name": "500 إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2293, + "fields": { + "id_car_make": 63, + "name": "Focus (North America)", + "arabic_name": "فوكاس (أمريكا الشمالية)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2294, + "fields": { + "id_car_make": 147, + "name": "Dokker", + "arabic_name": "دوكر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2295, + "fields": { + "id_car_make": 147, + "name": "Lodgy", + "arabic_name": "لوجي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2296, + "fields": { + "id_car_make": 291, + "name": "B10", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2297, + "fields": { + "id_car_make": 291, + "name": "B11", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2298, + "fields": { + "id_car_make": 291, + "name": "B12", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2299, + "fields": { + "id_car_make": 291, + "name": "B3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2300, + "fields": { + "id_car_make": 291, + "name": "B4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2301, + "fields": { + "id_car_make": 291, + "name": "B5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2302, + "fields": { + "id_car_make": 291, + "name": "B6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2303, + "fields": { + "id_car_make": 291, + "name": "B7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2304, + "fields": { + "id_car_make": 291, + "name": "B8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2305, + "fields": { + "id_car_make": 291, + "name": "B9", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2306, + "fields": { + "id_car_make": 291, + "name": "C1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2307, + "fields": { + "id_car_make": 291, + "name": "C2", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2308, + "fields": { + "id_car_make": 291, + "name": "D10", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2309, + "fields": { + "id_car_make": 291, + "name": "D3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2310, + "fields": { + "id_car_make": 291, + "name": "D5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2311, + "fields": { + "id_car_make": 291, + "name": "Roadster S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2312, + "fields": { + "id_car_make": 291, + "name": "XD3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2313, + "fields": { + "id_car_make": 18, + "name": "1M", + "arabic_name": "1 إم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2314, + "fields": { + "id_car_make": 18, + "name": "M3", + "arabic_name": "إم 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2315, + "fields": { + "id_car_make": 18, + "name": "M4", + "arabic_name": "إم 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2316, + "fields": { + "id_car_make": 18, + "name": "M5", + "arabic_name": "إم 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2317, + "fields": { + "id_car_make": 18, + "name": "M6", + "arabic_name": "إم 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2318, + "fields": { + "id_car_make": 18, + "name": "X5 M", + "arabic_name": "إكس 5 إم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2319, + "fields": { + "id_car_make": 18, + "name": "X6 M", + "arabic_name": "إكس 6 إم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2320, + "fields": { + "id_car_make": 18, + "name": "Z3 M", + "arabic_name": "زد 3 إم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2321, + "fields": { + "id_car_make": 18, + "name": "Z4 M", + "arabic_name": "زد 4 إم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2322, + "fields": { + "id_car_make": 28, + "name": "CTS-V", + "arabic_name": "سي تي إس-في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2324, + "fields": { + "id_car_make": 63, + "name": "Fiesta ST", + "arabic_name": "فييستا إس تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2327, + "fields": { + "id_car_make": 63, + "name": "Focus RS", + "arabic_name": "فوكاس آر إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2328, + "fields": { + "id_car_make": 63, + "name": "Focus ST", + "arabic_name": "فوكاس إس تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2329, + "fields": { + "id_car_make": 63, + "name": "Mondeo ST", + "arabic_name": "مونديو إس تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2330, + "fields": { + "id_car_make": 76, + "name": "Civic Type R", + "arabic_name": "سيفيك تايب آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2331, + "fields": { + "id_car_make": 88, + "name": "XFR", + "arabic_name": "إكس إف آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2332, + "fields": { + "id_car_make": 88, + "name": "XKR", + "arabic_name": "إكس كي آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2335, + "fields": { + "id_car_make": 99, + "name": "IS F", + "arabic_name": "آي إس إف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2336, + "fields": { + "id_car_make": 99, + "name": "RC F", + "arabic_name": "آر سي إف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2337, + "fields": { + "id_car_make": 113, + "name": "3 MPS", + "arabic_name": "3 إم بي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2338, + "fields": { + "id_car_make": 113, + "name": "6 MPS", + "arabic_name": "6 إم بي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2339, + "fields": { + "id_car_make": 116, + "name": "A-Class AMG", + "arabic_name": "إيه-كلاس إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2340, + "fields": { + "id_car_make": 116, + "name": "C-Class AMG", + "arabic_name": "سي-كلاس إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2341, + "fields": { + "id_car_make": 116, + "name": "CL-klasse AMG", + "arabic_name": "سي إل-كلاس إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2342, + "fields": { + "id_car_make": 116, + "name": "CLA-klasse AMG", + "arabic_name": "سي إل إيه-كلاس إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2343, + "fields": { + "id_car_make": 116, + "name": "CLK-klasse AMG", + "arabic_name": "سي إل كي-كلاس إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2344, + "fields": { + "id_car_make": 116, + "name": "CLS-klasse AMG", + "arabic_name": "سي إل إس-كلاس إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2345, + "fields": { + "id_car_make": 116, + "name": "E-klasse AMG", + "arabic_name": "إي-كلاس إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2346, + "fields": { + "id_car_make": 116, + "name": "G-klasse AMG 6x6", + "arabic_name": "جي-كلاس إيه إم جي 6x6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2347, + "fields": { + "id_car_make": 116, + "name": "G-klasse AMG", + "arabic_name": "جي-كلاس إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2348, + "fields": { + "id_car_make": 116, + "name": "GLA-klasse AMG", + "arabic_name": "جي إل إيه-كلاس إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2349, + "fields": { + "id_car_make": 116, + "name": "M-klasse AMG", + "arabic_name": "إم-كلاس إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2350, + "fields": { + "id_car_make": 116, + "name": "Maybach S-klasse", + "arabic_name": "مايباخ إس-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2351, + "fields": { + "id_car_make": 116, + "name": "R-klasse AMG", + "arabic_name": "آر-كلاس إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2352, + "fields": { + "id_car_make": 116, + "name": "S-klasse AMG", + "arabic_name": "إس-كلاس إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2353, + "fields": { + "id_car_make": 116, + "name": "SL-klasse AMG", + "arabic_name": "إس إل-كلاس إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2354, + "fields": { + "id_car_make": 116, + "name": "SLK-klasse AMG", + "arabic_name": "إس إل كي-كلاس إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2355, + "fields": { + "id_car_make": 130, + "name": "Astra OPC", + "arabic_name": "أسترا أو بي سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2356, + "fields": { + "id_car_make": 130, + "name": "Corsa OPC", + "arabic_name": "كورسا أو بي سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2357, + "fields": { + "id_car_make": 130, + "name": "Insignia OPC", + "arabic_name": "إنسيجنيا أو بي سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2358, + "fields": { + "id_car_make": 130, + "name": "Meriva OPC", + "arabic_name": "مريفا أو بي سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2359, + "fields": { + "id_car_make": 130, + "name": "Vectra OPC", + "arabic_name": "فيكترا أو بي سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2360, + "fields": { + "id_car_make": 130, + "name": "Zafira OPC", + "arabic_name": "زافيرا أو بي سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2361, + "fields": { + "id_car_make": 139, + "name": "911 GT2", + "arabic_name": "911 جي تي 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2362, + "fields": { + "id_car_make": 139, + "name": "911 GT3", + "arabic_name": "911 جي تي 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2363, + "fields": { + "id_car_make": 147, + "name": "Clio RS", + "arabic_name": "كليو آر إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2364, + "fields": { + "id_car_make": 147, + "name": "Clio V6", + "arabic_name": "كليو V6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2365, + "fields": { + "id_car_make": 147, + "name": "Megane RS", + "arabic_name": "ميجان آر إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2366, + "fields": { + "id_car_make": 151, + "name": "Streetwise", + "arabic_name": "ستريتوايز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2367, + "fields": { + "id_car_make": 157, + "name": "Ibiza Cupra", + "arabic_name": "إيبيزا كوبرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2368, + "fields": { + "id_car_make": 157, + "name": "Leon Cupra", + "arabic_name": "ليون كوبرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2369, + "fields": { + "id_car_make": 159, + "name": "Fabia RS", + "arabic_name": "فابيا آر إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2370, + "fields": { + "id_car_make": 159, + "name": "Octavia RS", + "arabic_name": "أوكتافيا آر إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2371, + "fields": { + "id_car_make": 166, + "name": "Impreza WRX", + "arabic_name": "إمبريزا دبليو آر إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2372, + "fields": { + "id_car_make": 167, + "name": "Samurai", + "arabic_name": "ساموراي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2374, + "fields": { + "id_car_make": 176, + "name": "Camry Solara", + "arabic_name": "كامري سولارا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2375, + "fields": { + "id_car_make": 176, + "name": "Corolla Spacio", + "arabic_name": "كورولا سباسيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2376, + "fields": { + "id_car_make": 176, + "name": "Corolla Verso", + "arabic_name": "كورولا فيرسو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2377, + "fields": { + "id_car_make": 184, + "name": "Golf GTI", + "arabic_name": "غولف جي تي آي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2378, + "fields": { + "id_car_make": 184, + "name": "Golf R", + "arabic_name": "غولف آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2379, + "fields": { + "id_car_make": 184, + "name": "Up", + "arabic_name": "أب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2380, + "fields": { + "id_car_make": 184, + "name": "Polo GTI", + "arabic_name": "بولو جي تي آي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2381, + "fields": { + "id_car_make": 184, + "name": "Polo R WRC", + "arabic_name": "بولو آر دبليو آر سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2382, + "fields": { + "id_car_make": 184, + "name": "Scirocco R", + "arabic_name": "سيروكو آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2383, + "fields": { + "id_car_make": 37, + "name": "C-Zero", + "arabic_name": "سي-زيرو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2385, + "fields": { + "id_car_make": 135, + "name": "205 GTi", + "arabic_name": "205 جي تي آي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2386, + "fields": { + "id_car_make": 135, + "name": "208 GTi", + "arabic_name": "208 جي تي آي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2387, + "fields": { + "id_car_make": 135, + "name": "iOn", + "arabic_name": "آيون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2388, + "fields": { + "id_car_make": 139, + "name": "918 Spyder", + "arabic_name": "918 سبايدر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2389, + "fields": { + "id_car_make": 157, + "name": "Mii", + "arabic_name": "مي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2390, + "fields": { + "id_car_make": 85, + "name": "MU-X", + "arabic_name": "إم يو إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2391, + "fields": { + "id_car_make": 166, + "name": "Impreza WRX STi", + "arabic_name": "إمبريزا دبليو آر إكس إس تي آي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 2392, + "fields": { + "id_car_make": 166, + "name": "WRX STi", + "arabic_name": "دبليو آر إكس إس تي آي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 5811, + "fields": { + "id_car_make": 71, + "name": "Voleex C30", + "arabic_name": "فوليكس سي 30" + } +}, +{ + "model": "inventory.carmodel", + "pk": 5812, + "fields": { + "id_car_make": 166, + "name": "Levorg", + "arabic_name": "ليفيورغ" + } +}, +{ + "model": "inventory.carmodel", + "pk": 5813, + "fields": { + "id_car_make": 176, + "name": "Prius v", + "arabic_name": "بريوس في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 18880, + "fields": { + "id_car_make": 116, + "name": "GL-klasse AMG", + "arabic_name": "جي إل-كلاس إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 18882, + "fields": { + "id_car_make": 88, + "name": "XJR", + "arabic_name": "إكس جي آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 18960, + "fields": { + "id_car_make": 24, + "name": "Veyron", + "arabic_name": "فيرون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 18961, + "fields": { + "id_car_make": 75, + "name": "Statesman", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 18962, + "fields": { + "id_car_make": 98, + "name": "X9", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 18963, + "fields": { + "id_car_make": 116, + "name": "AMG GLE", + "arabic_name": "إيه إم جي جي إل إي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 18964, + "fields": { + "id_car_make": 116, + "name": "AMG GLE Coupe", + "arabic_name": "إيه إم جي جي إل إي كوبيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 18965, + "fields": { + "id_car_make": 116, + "name": "GLE-Class", + "arabic_name": "جي إل إي-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 18966, + "fields": { + "id_car_make": 116, + "name": "GLE Coupe", + "arabic_name": "جي إل إي كوبيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 18967, + "fields": { + "id_car_make": 123, + "name": "Lancer Ralliart", + "arabic_name": "لانسر رالي آرت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 18969, + "fields": { + "id_car_make": 185, + "name": "V40 Cross Country", + "arabic_name": "في 40 كروس كنتري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 18970, + "fields": { + "id_car_make": 193, + "name": "Grand Tiger", + "arabic_name": "جراند تايجر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 18971, + "fields": { + "id_car_make": 211, + "name": "Yo-crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 18972, + "fields": { + "id_car_make": 227, + "name": "3159 \"Bars\"", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 18985, + "fields": { + "id_car_make": 3589, + "name": "5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19062, + "fields": { + "id_car_make": 25, + "name": "Estate Wagon", + "arabic_name": "إيستيت واجون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19063, + "fields": { + "id_car_make": 25, + "name": "Verano", + "arabic_name": "فيرانو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19064, + "fields": { + "id_car_make": 28, + "name": "ATS-V", + "arabic_name": "إيه تي إس-في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19066, + "fields": { + "id_car_make": 63, + "name": "Explorer Sport Trac", + "arabic_name": "إكسبلورر سبورت تراك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19067, + "fields": { + "id_car_make": 63, + "name": "Spectron", + "arabic_name": "سبكترون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19068, + "fields": { + "id_car_make": 63, + "name": "Telstar", + "arabic_name": "تيلستار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19069, + "fields": { + "id_car_make": 67, + "name": "GC9", + "arabic_name": "جي سي ٩" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19070, + "fields": { + "id_car_make": 114, + "name": "540C", + "arabic_name": "540 سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19071, + "fields": { + "id_car_make": 114, + "name": "570S", + "arabic_name": "570 إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19072, + "fields": { + "id_car_make": 127, + "name": "Juke Nismo", + "arabic_name": "جوك نيسمو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19073, + "fields": { + "id_car_make": 127, + "name": "Qashqai+2", + "arabic_name": "قاشقاي+2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19074, + "fields": { + "id_car_make": 130, + "name": "Karl", + "arabic_name": "كارل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19075, + "fields": { + "id_car_make": 139, + "name": "Cayman GT4", + "arabic_name": "كايمان جي تي 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19076, + "fields": { + "id_car_make": 185, + "name": "S60 Cross Country", + "arabic_name": "إس 60 كروس كنتري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19077, + "fields": { + "id_car_make": 185, + "name": "V60 Cross Country", + "arabic_name": "في 60 كروس كنتري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19078, + "fields": { + "id_car_make": 290, + "name": "H2", + "arabic_name": "إتش 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19079, + "fields": { + "id_car_make": 290, + "name": "H8", + "arabic_name": "إتش 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19080, + "fields": { + "id_car_make": 3591, + "name": "ST1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19081, + "fields": { + "id_car_make": 3590, + "name": "Cevennes", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19082, + "fields": { + "id_car_make": 3590, + "name": "Hemera", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19083, + "fields": { + "id_car_make": 3590, + "name": "Speedster II", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19085, + "fields": { + "id_car_make": 3589, + "name": "3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19086, + "fields": { + "id_car_make": 3589, + "name": "4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19137, + "fields": { + "id_car_make": 21, + "name": "H230", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19138, + "fields": { + "id_car_make": 123, + "name": "Attrage", + "arabic_name": "أتراج" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19139, + "fields": { + "id_car_make": 147, + "name": "Kadjar", + "arabic_name": "كادجار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19140, + "fields": { + "id_car_make": 165, + "name": "Nomad", + "arabic_name": "نوماد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19141, + "fields": { + "id_car_make": 3619, + "name": "Beast", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19142, + "fields": { + "id_car_make": 101, + "name": "X50", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19143, + "fields": { + "id_car_make": 3620, + "name": "C Two", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19204, + "fields": { + "id_car_make": 113, + "name": "CX-3", + "arabic_name": "سي إكس-3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19206, + "fields": { + "id_car_make": 135, + "name": "308 GTi", + "arabic_name": "308 جي تي آي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19207, + "fields": { + "id_car_make": 156, + "name": "iM", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19208, + "fields": { + "id_car_make": 165, + "name": "Tivoli", + "arabic_name": "تيفولي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19209, + "fields": { + "id_car_make": 215, + "name": "Vesta", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19210, + "fields": { + "id_car_make": 215, + "name": "XRAY", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19211, + "fields": { + "id_car_make": 290, + "name": "H9", + "arabic_name": "إتش 9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19234, + "fields": { + "id_car_make": 147, + "name": "Talisman", + "arabic_name": "تاليسمان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19257, + "fields": { + "id_car_make": 3, + "name": "2600", + "arabic_name": "2600" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19258, + "fields": { + "id_car_make": 10, + "name": "920", + "arabic_name": "920" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19259, + "fields": { + "id_car_make": 15, + "name": "S-series", + "arabic_name": "إس سيريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19260, + "fields": { + "id_car_make": 18, + "name": "2000 C/CS", + "arabic_name": "2000 سي/سي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19261, + "fields": { + "id_car_make": 18, + "name": "315", + "arabic_name": "315" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19262, + "fields": { + "id_car_make": 18, + "name": "321", + "arabic_name": "321" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19263, + "fields": { + "id_car_make": 18, + "name": "326", + "arabic_name": "326" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19264, + "fields": { + "id_car_make": 18, + "name": "340", + "arabic_name": "340" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19265, + "fields": { + "id_car_make": 25, + "name": "Skyhawk", + "arabic_name": "سكاي هوك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19266, + "fields": { + "id_car_make": 25, + "name": "Special", + "arabic_name": "سبيشال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19267, + "fields": { + "id_car_make": 25, + "name": "Super", + "arabic_name": "سوبر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19268, + "fields": { + "id_car_make": 28, + "name": "Series 62", + "arabic_name": "سلسلة 62" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19269, + "fields": { + "id_car_make": 35, + "name": "El Camino", + "arabic_name": "إل كامينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19270, + "fields": { + "id_car_make": 35, + "name": "Stylemaster", + "arabic_name": "ستايلماستر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19271, + "fields": { + "id_car_make": 35, + "name": "Special DeLuxe", + "arabic_name": "سبيشال ديلوكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19272, + "fields": { + "id_car_make": 37, + "name": "Traction Avant", + "arabic_name": "تراكشن أفانت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19275, + "fields": { + "id_car_make": 63, + "name": "Galaxie", + "arabic_name": "جالاكسي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19276, + "fields": { + "id_car_make": 63, + "name": "Model A", + "arabic_name": "موديل إيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19277, + "fields": { + "id_car_make": 63, + "name": "Model T", + "arabic_name": "موديل تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19278, + "fields": { + "id_car_make": 63, + "name": "Torino", + "arabic_name": "تورينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19279, + "fields": { + "id_car_make": 73, + "name": "S5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19280, + "fields": { + "id_car_make": 87, + "name": "S3", + "arabic_name": "إس 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19281, + "fields": { + "id_car_make": 93, + "name": "Regera", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19282, + "fields": { + "id_car_make": 113, + "name": "Cosmo", + "arabic_name": "كوزمو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19283, + "fields": { + "id_car_make": 116, + "name": "190 SL", + "arabic_name": "190 إس إل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19284, + "fields": { + "id_car_make": 116, + "name": "W100", + "arabic_name": "دبليو 100" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19285, + "fields": { + "id_car_make": 116, + "name": "W110", + "arabic_name": "دبليو 110" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19286, + "fields": { + "id_car_make": 116, + "name": "W136", + "arabic_name": "دبليو 136" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19287, + "fields": { + "id_car_make": 116, + "name": "W189", + "arabic_name": "دبليو 189" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19288, + "fields": { + "id_car_make": 130, + "name": "Olympia", + "arabic_name": "أوليمبيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19289, + "fields": { + "id_car_make": 137, + "name": "Barracuda", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19290, + "fields": { + "id_car_make": 137, + "name": "Fury", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19291, + "fields": { + "id_car_make": 137, + "name": "Road Runner", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19292, + "fields": { + "id_car_make": 137, + "name": "Valiant", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19293, + "fields": { + "id_car_make": 139, + "name": "356", + "arabic_name": "356" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19294, + "fields": { + "id_car_make": 149, + "name": "Silver Cloud", + "arabic_name": "سيلفر كلاود" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19295, + "fields": { + "id_car_make": 149, + "name": "Silver Shadow", + "arabic_name": "سيلفر شادو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19296, + "fields": { + "id_car_make": 149, + "name": "Silver Wraith", + "arabic_name": "سيلفر رايث" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19297, + "fields": { + "id_car_make": 156, + "name": "iA", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19298, + "fields": { + "id_car_make": 170, + "name": "57", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19299, + "fields": { + "id_car_make": 184, + "name": "Karmann Ghia", + "arabic_name": "كارمان غيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19300, + "fields": { + "id_car_make": 184, + "name": "Type 2", + "arabic_name": "تايب 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19301, + "fields": { + "id_car_make": 185, + "name": "120", + "arabic_name": "120" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19302, + "fields": { + "id_car_make": 192, + "name": "T600", + "arabic_name": "تي 600" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19303, + "fields": { + "id_car_make": 192, + "name": "Z300", + "arabic_name": "زد 300" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19305, + "fields": { + "id_car_make": 216, + "name": "M-72", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19306, + "fields": { + "id_car_make": 3664, + "name": "Trumpf", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19307, + "fields": { + "id_car_make": 3665, + "name": "Firedome", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19308, + "fields": { + "id_car_make": 3665, + "name": "Fireflite", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19309, + "fields": { + "id_car_make": 3666, + "name": "Clipper", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19310, + "fields": { + "id_car_make": 3666, + "name": "One-Twenty", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19311, + "fields": { + "id_car_make": 3666, + "name": "Twelve", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19312, + "fields": { + "id_car_make": 3667, + "name": "MB", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19313, + "fields": { + "id_car_make": 3668, + "name": "T98", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19340, + "fields": { + "id_car_make": 15, + "name": "Bentayga", + "arabic_name": "بنتايجا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19341, + "fields": { + "id_car_make": 36, + "name": "Imperial Crown", + "arabic_name": "إمبريال كراون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19343, + "fields": { + "id_car_make": 80, + "name": "Q30", + "arabic_name": "كيو 30" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19344, + "fields": { + "id_car_make": 87, + "name": "J4 (Heyue A30)", + "arabic_name": "جي 4 (هاييو إيه 30)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19345, + "fields": { + "id_car_make": 87, + "name": "M5", + "arabic_name": "إم 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19346, + "fields": { + "id_car_make": 88, + "name": "F-Pace", + "arabic_name": "إف-بيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19347, + "fields": { + "id_car_make": 116, + "name": "W121", + "arabic_name": "دبليو 121" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19348, + "fields": { + "id_car_make": 123, + "name": "Jeep J", + "arabic_name": "جيب جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19349, + "fields": { + "id_car_make": 147, + "name": "Sandero RS", + "arabic_name": "سانديرو آر إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19350, + "fields": { + "id_car_make": 149, + "name": "Silver Dawn", + "arabic_name": "سيلفر دون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19351, + "fields": { + "id_car_make": 216, + "name": "12 ZIM", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19352, + "fields": { + "id_car_make": 3676, + "name": "2000", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19390, + "fields": { + "id_car_make": 3, + "name": "105/115", + "arabic_name": "105/115" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19391, + "fields": { + "id_car_make": 18, + "name": "M2", + "arabic_name": "إم 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19392, + "fields": { + "id_car_make": 28, + "name": "CT6", + "arabic_name": "سي تي 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19393, + "fields": { + "id_car_make": 63, + "name": "Transit Custom", + "arabic_name": "ترانزيت كستم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19394, + "fields": { + "id_car_make": 116, + "name": "W120", + "arabic_name": "دبليو 120" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19395, + "fields": { + "id_car_make": 147, + "name": "Kwid", + "arabic_name": "كود" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19396, + "fields": { + "id_car_make": 172, + "name": "Model X", + "arabic_name": "موديل إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19397, + "fields": { + "id_car_make": 176, + "name": "Mirai", + "arabic_name": "ميراي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19398, + "fields": { + "id_car_make": 179, + "name": "TR6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19399, + "fields": { + "id_car_make": 184, + "name": "Type 1", + "arabic_name": "تايب 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19400, + "fields": { + "id_car_make": 216, + "name": "67", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19401, + "fields": { + "id_car_make": 3689, + "name": "Gentra", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19402, + "fields": { + "id_car_make": 3689, + "name": "Matiz", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19403, + "fields": { + "id_car_make": 3690, + "name": "110", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19404, + "fields": { + "id_car_make": 76, + "name": "Acty", + "arabic_name": "أكتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19406, + "fields": { + "id_car_make": 3689, + "name": "Nexia", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19459, + "fields": { + "id_car_make": 9, + "name": "DB5", + "arabic_name": "دي بي5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19460, + "fields": { + "id_car_make": 25, + "name": "Limited", + "arabic_name": "ليمتد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19461, + "fields": { + "id_car_make": 28, + "name": "XT5", + "arabic_name": "إكس تي 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19462, + "fields": { + "id_car_make": 63, + "name": "Fairlane", + "arabic_name": "فيرلين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19464, + "fields": { + "id_car_make": 116, + "name": "GLS-klasse AMG", + "arabic_name": "جي إل إس-كلاس إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19465, + "fields": { + "id_car_make": 116, + "name": "W108", + "arabic_name": "دبليو 108" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19466, + "fields": { + "id_car_make": 176, + "name": "2000GT", + "arabic_name": "2000جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19467, + "fields": { + "id_car_make": 179, + "name": "Stag", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19468, + "fields": { + "id_car_make": 3705, + "name": "Gremlin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19469, + "fields": { + "id_car_make": 3706, + "name": "E10", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19513, + "fields": { + "id_car_make": 44, + "name": "Move Latte", + "arabic_name": "موف لاتيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19515, + "fields": { + "id_car_make": 63, + "name": "Ranchero", + "arabic_name": "رانشيرو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19516, + "fields": { + "id_car_make": 80, + "name": "QX30", + "arabic_name": "كيو إكس 30" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19517, + "fields": { + "id_car_make": 129, + "name": "Toronado", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19518, + "fields": { + "id_car_make": 3728, + "name": "Fenyr Supersport", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19519, + "fields": { + "id_car_make": 3728, + "name": "Lykan Hypersport", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19520, + "fields": { + "id_car_make": 37, + "name": "DS", + "arabic_name": "دي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19521, + "fields": { + "id_car_make": 37, + "name": "SM", + "arabic_name": "إس إم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19522, + "fields": { + "id_car_make": 60, + "name": "FXX K", + "arabic_name": "إف إكس إكس كيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19523, + "fields": { + "id_car_make": 114, + "name": "675LT", + "arabic_name": "675 إل تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19555, + "fields": { + "id_car_make": 10, + "name": "F103", + "arabic_name": "إف 103" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19556, + "fields": { + "id_car_make": 10, + "name": "Typ R", + "arabic_name": "تيب آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19557, + "fields": { + "id_car_make": 15, + "name": "Mark VI", + "arabic_name": "مارك 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19558, + "fields": { + "id_car_make": 15, + "name": "R Type", + "arabic_name": "آر تايب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19559, + "fields": { + "id_car_make": 15, + "name": "T-series", + "arabic_name": "تي سيريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19560, + "fields": { + "id_car_make": 18, + "name": "3/15", + "arabic_name": "3/15" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19561, + "fields": { + "id_car_make": 18, + "name": "3200", + "arabic_name": "3200" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19562, + "fields": { + "id_car_make": 18, + "name": "327", + "arabic_name": "327" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19563, + "fields": { + "id_car_make": 18, + "name": "501", + "arabic_name": "501" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19564, + "fields": { + "id_car_make": 18, + "name": "502", + "arabic_name": "502" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19565, + "fields": { + "id_car_make": 18, + "name": "503", + "arabic_name": "503" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19566, + "fields": { + "id_car_make": 18, + "name": "507", + "arabic_name": "507" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19567, + "fields": { + "id_car_make": 18, + "name": "New Class", + "arabic_name": "نيو كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19568, + "fields": { + "id_car_make": 25, + "name": "Envision", + "arabic_name": "إنفيجن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19569, + "fields": { + "id_car_make": 35, + "name": "Bolt", + "arabic_name": "بولت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19570, + "fields": { + "id_car_make": 76, + "name": "Ascot Innova", + "arabic_name": "أسكوت إنوفا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19571, + "fields": { + "id_car_make": 99, + "name": "LC", + "arabic_name": "إل سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19572, + "fields": { + "id_car_make": 113, + "name": "Eunos 100", + "arabic_name": "يونوس 100" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19573, + "fields": { + "id_car_make": 116, + "name": "SLC-klasse AMG", + "arabic_name": "إس إل سي-كلاس إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19575, + "fields": { + "id_car_make": 116, + "name": "W111", + "arabic_name": "دبليو 111" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19576, + "fields": { + "id_car_make": 116, + "name": "W128", + "arabic_name": "دبليو 128" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19577, + "fields": { + "id_car_make": 116, + "name": "W186", + "arabic_name": "دبليو 186" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19578, + "fields": { + "id_car_make": 135, + "name": "402", + "arabic_name": "402" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19579, + "fields": { + "id_car_make": 167, + "name": "Twin", + "arabic_name": "توين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19580, + "fields": { + "id_car_make": 176, + "name": "Pixis Epoch", + "arabic_name": "بيكسيس إيبوش" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19581, + "fields": { + "id_car_make": 176, + "name": "Pixis Mega", + "arabic_name": "بيكسيس ميجا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19582, + "fields": { + "id_car_make": 176, + "name": "Pixis", + "arabic_name": "بيكسيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19583, + "fields": { + "id_car_make": 184, + "name": "Golf R32", + "arabic_name": "غولف آر 32" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19584, + "fields": { + "id_car_make": 192, + "name": "Z100", + "arabic_name": "زد 100" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19585, + "fields": { + "id_car_make": 223, + "name": "424", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19586, + "fields": { + "id_car_make": 3739, + "name": "Deluxe Eight", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19601, + "fields": { + "id_car_make": 3, + "name": "1900", + "arabic_name": "1900" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19602, + "fields": { + "id_car_make": 3, + "name": "6C", + "arabic_name": "6 سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19603, + "fields": { + "id_car_make": 18, + "name": "600", + "arabic_name": "600" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19604, + "fields": { + "id_car_make": 18, + "name": "700", + "arabic_name": "700" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19605, + "fields": { + "id_car_make": 18, + "name": "E3", + "arabic_name": "إي 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19606, + "fields": { + "id_car_make": 18, + "name": "E9", + "arabic_name": "إي 9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19607, + "fields": { + "id_car_make": 35, + "name": "Chevelle", + "arabic_name": "شيفيل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19608, + "fields": { + "id_car_make": 35, + "name": "Fleetmaster", + "arabic_name": "فليتماستر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19609, + "fields": { + "id_car_make": 36, + "name": "180", + "arabic_name": "180" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19610, + "fields": { + "id_car_make": 36, + "name": "300", + "arabic_name": "300" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19611, + "fields": { + "id_car_make": 36, + "name": "Cordoba", + "arabic_name": "كوردوبا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19612, + "fields": { + "id_car_make": 36, + "name": "Windsor", + "arabic_name": "ويندسور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19613, + "fields": { + "id_car_make": 37, + "name": "LN", + "arabic_name": "إل إن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19614, + "fields": { + "id_car_make": 60, + "name": "GTC4Lusso", + "arabic_name": "جي تي سي 4 لوسو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19615, + "fields": { + "id_car_make": 63, + "name": "GT40", + "arabic_name": "جي تي 40" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19616, + "fields": { + "id_car_make": 92, + "name": "Niro", + "arabic_name": "نيرو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19617, + "fields": { + "id_car_make": 130, + "name": "Kapitan", + "arabic_name": "كابتن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19618, + "fields": { + "id_car_make": 135, + "name": "203", + "arabic_name": "203" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19620, + "fields": { + "id_car_make": 3689, + "name": "R2", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19687, + "fields": { + "id_car_make": 130, + "name": "P4", + "arabic_name": "بي 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19688, + "fields": { + "id_car_make": 135, + "name": "Traveller", + "arabic_name": "ترافيلر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19689, + "fields": { + "id_car_make": 9, + "name": "DB11", + "arabic_name": "دي بي 11" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19690, + "fields": { + "id_car_make": 10, + "name": "Q2", + "arabic_name": "كيو 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19691, + "fields": { + "id_car_make": 10, + "name": "SQ7", + "arabic_name": "إس كيو 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19692, + "fields": { + "id_car_make": 24, + "name": "Chiron", + "arabic_name": "تشيرون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19693, + "fields": { + "id_car_make": 32, + "name": "CS75", + "arabic_name": "سي إس75" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19695, + "fields": { + "id_car_make": 35, + "name": "Bel Air", + "arabic_name": "بيل إير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19696, + "fields": { + "id_car_make": 35, + "name": "C/K", + "arabic_name": "سي/كي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19697, + "fields": { + "id_car_make": 35, + "name": "Deluxe", + "arabic_name": "ديلوكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19698, + "fields": { + "id_car_make": 42, + "name": "Sens", + "arabic_name": "سينس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19699, + "fields": { + "id_car_make": 44, + "name": "Rugger", + "arabic_name": "راجير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19700, + "fields": { + "id_car_make": 52, + "name": "AX7", + "arabic_name": "إيه إكس 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19701, + "fields": { + "id_car_make": 60, + "name": "488", + "arabic_name": "488" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19704, + "fields": { + "id_car_make": 63, + "name": "GPA", + "arabic_name": "جي بي إيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19705, + "fields": { + "id_car_make": 63, + "name": "Zephyr", + "arabic_name": "زيفير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19706, + "fields": { + "id_car_make": 76, + "name": "S660", + "arabic_name": "إس660" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19707, + "fields": { + "id_car_make": 79, + "name": "Creta", + "arabic_name": "كريتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19708, + "fields": { + "id_car_make": 79, + "name": "Entourage", + "arabic_name": "أنتوراج" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19709, + "fields": { + "id_car_make": 85, + "name": "Hombre", + "arabic_name": "هومبري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19711, + "fields": { + "id_car_make": 96, + "name": "Flavia", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19712, + "fields": { + "id_car_make": 96, + "name": "Voyager", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19713, + "fields": { + "id_car_make": 99, + "name": "GS F", + "arabic_name": "جي إس إف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19715, + "fields": { + "id_car_make": 111, + "name": "Levante", + "arabic_name": "ليفانتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19716, + "fields": { + "id_car_make": 114, + "name": "570GT", + "arabic_name": "570 جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19718, + "fields": { + "id_car_make": 116, + "name": "GLC Coupe", + "arabic_name": "جي إل سي كوبيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19719, + "fields": { + "id_car_make": 116, + "name": "GLC-Class", + "arabic_name": "جي إل سي-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19720, + "fields": { + "id_car_make": 117, + "name": "Eight", + "arabic_name": "إيت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19721, + "fields": { + "id_car_make": 119, + "name": "GS", + "arabic_name": "جي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19722, + "fields": { + "id_car_make": 123, + "name": "Dignity", + "arabic_name": "ديجنيتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19723, + "fields": { + "id_car_make": 123, + "name": "Strada", + "arabic_name": "سترادا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19724, + "fields": { + "id_car_make": 135, + "name": "201", + "arabic_name": "201" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19725, + "fields": { + "id_car_make": 135, + "name": "202", + "arabic_name": "202" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19726, + "fields": { + "id_car_make": 135, + "name": "403", + "arabic_name": "403" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19727, + "fields": { + "id_car_make": 135, + "name": "404", + "arabic_name": "404" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19729, + "fields": { + "id_car_make": 138, + "name": "Catalina", + "arabic_name": "كاتالينا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19730, + "fields": { + "id_car_make": 147, + "name": "10", + "arabic_name": "10" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19731, + "fields": { + "id_car_make": 147, + "name": "4CV", + "arabic_name": "4 سي في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19732, + "fields": { + "id_car_make": 147, + "name": "8", + "arabic_name": "8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19733, + "fields": { + "id_car_make": 147, + "name": "Caravelle", + "arabic_name": "كارافيل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19734, + "fields": { + "id_car_make": 147, + "name": "Dauphine", + "arabic_name": "دوفين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19735, + "fields": { + "id_car_make": 147, + "name": "Floride", + "arabic_name": "فلوريد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19736, + "fields": { + "id_car_make": 147, + "name": "Fregate", + "arabic_name": "فريجات" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19737, + "fields": { + "id_car_make": 147, + "name": "Kaptur", + "arabic_name": "كابتور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19738, + "fields": { + "id_car_make": 147, + "name": "Vivastella", + "arabic_name": "فيفاستيلا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19739, + "fields": { + "id_car_make": 149, + "name": "Camargue", + "arabic_name": "كامارج" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19740, + "fields": { + "id_car_make": 149, + "name": "Silver Ghost", + "arabic_name": "سيلفر جوست" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19741, + "fields": { + "id_car_make": 151, + "name": "P4", + "arabic_name": "بي 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19742, + "fields": { + "id_car_make": 152, + "name": "93", + "arabic_name": "93" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19743, + "fields": { + "id_car_make": 157, + "name": "Ateca", + "arabic_name": "أتيكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19744, + "fields": { + "id_car_make": 169, + "name": "Xenon", + "arabic_name": "زينون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19745, + "fields": { + "id_car_make": 175, + "name": "Murat 124", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19746, + "fields": { + "id_car_make": 80, + "name": "QX4", + "arabic_name": "كيو إكس 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19747, + "fields": { + "id_car_make": 80, + "name": "QX56", + "arabic_name": "كيو إكس 56" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19748, + "fields": { + "id_car_make": 126, + "name": "Eight", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19750, + "fields": { + "id_car_make": 152, + "name": "Sonett", + "arabic_name": "سونيت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19751, + "fields": { + "id_car_make": 159, + "name": "Popular", + "arabic_name": "بوبيلار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19752, + "fields": { + "id_car_make": 166, + "name": "360", + "arabic_name": "360" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19753, + "fields": { + "id_car_make": 2, + "name": "Vigor", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19754, + "fields": { + "id_car_make": 3, + "name": "1750", + "arabic_name": "1750" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19755, + "fields": { + "id_car_make": 3, + "name": "2000", + "arabic_name": "2000" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19756, + "fields": { + "id_car_make": 3, + "name": "2300", + "arabic_name": "2300" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19759, + "fields": { + "id_car_make": 3, + "name": "Dauphine", + "arabic_name": "دوفين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19760, + "fields": { + "id_car_make": 3, + "name": "Milano", + "arabic_name": "ميلانو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19761, + "fields": { + "id_car_make": 3, + "name": "S.Z./R.Z.", + "arabic_name": "سي زد/آر زد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19762, + "fields": { + "id_car_make": 7, + "name": "Spartana", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19763, + "fields": { + "id_car_make": 9, + "name": "DB2", + "arabic_name": "دي بي 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19764, + "fields": { + "id_car_make": 9, + "name": "DB2/4", + "arabic_name": "دي بي2/4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19765, + "fields": { + "id_car_make": 9, + "name": "DB4", + "arabic_name": "دي بي 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19766, + "fields": { + "id_car_make": 9, + "name": "DB6", + "arabic_name": "دي بي 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19767, + "fields": { + "id_car_make": 9, + "name": "Vantage", + "arabic_name": "فانتاج" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19768, + "fields": { + "id_car_make": 10, + "name": "4000", + "arabic_name": "4000" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19769, + "fields": { + "id_car_make": 10, + "name": "5000", + "arabic_name": "5000" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19770, + "fields": { + "id_car_make": 10, + "name": "Coupe S", + "arabic_name": "كوبيه إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19771, + "fields": { + "id_car_make": 10, + "name": "Fox", + "arabic_name": "فوكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19772, + "fields": { + "id_car_make": 18, + "name": "1 Series", + "arabic_name": "السلسلة 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19773, + "fields": { + "id_car_make": 18, + "name": "2 Series", + "arabic_name": "السلسلة 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19774, + "fields": { + "id_car_make": 18, + "name": "2 Series Active Tourer", + "arabic_name": "السلسلة 2 أكتيف تورر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19775, + "fields": { + "id_car_make": 18, + "name": "3 Series", + "arabic_name": "السلسلة 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19776, + "fields": { + "id_car_make": 18, + "name": "4 Series", + "arabic_name": "السلسلة 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19777, + "fields": { + "id_car_make": 18, + "name": "5 Series", + "arabic_name": "السلسلة 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19778, + "fields": { + "id_car_make": 18, + "name": "6 Series", + "arabic_name": "السلسلة 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19779, + "fields": { + "id_car_make": 18, + "name": "7 Series", + "arabic_name": "السلسلة 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19780, + "fields": { + "id_car_make": 18, + "name": "8 Series", + "arabic_name": "السلسلة 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19781, + "fields": { + "id_car_make": 18, + "name": "M1", + "arabic_name": "إم 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19782, + "fields": { + "id_car_make": 21, + "name": "BS6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19783, + "fields": { + "id_car_make": 21, + "name": "M2", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19784, + "fields": { + "id_car_make": 24, + "name": "Type 57", + "arabic_name": "تايب 57" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19785, + "fields": { + "id_car_make": 25, + "name": "Rainier", + "arabic_name": "رينيير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19786, + "fields": { + "id_car_make": 26, + "name": "F7", + "arabic_name": "إف 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19787, + "fields": { + "id_car_make": 26, + "name": "i6", + "arabic_name": "آي 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19788, + "fields": { + "id_car_make": 28, + "name": "Calais", + "arabic_name": "كاليس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19789, + "fields": { + "id_car_make": 28, + "name": "Series 61", + "arabic_name": "سلسلة 61" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19790, + "fields": { + "id_car_make": 28, + "name": "Series 70", + "arabic_name": "سلسلة 70" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19791, + "fields": { + "id_car_make": 28, + "name": "SLS", + "arabic_name": "إس إل إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19793, + "fields": { + "id_car_make": 32, + "name": "Star Truck", + "arabic_name": "ستار تراك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19797, + "fields": { + "id_car_make": 34, + "name": "Arauca", + "arabic_name": "أراوكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19799, + "fields": { + "id_car_make": 34, + "name": "Cowin", + "arabic_name": "كوين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19800, + "fields": { + "id_car_make": 34, + "name": "E5", + "arabic_name": "إي 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19801, + "fields": { + "id_car_make": 34, + "name": "Eastar", + "arabic_name": "إيستار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19802, + "fields": { + "id_car_make": 34, + "name": "Ego", + "arabic_name": "إيغو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19803, + "fields": { + "id_car_make": 34, + "name": "Elara", + "arabic_name": "إلارا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19804, + "fields": { + "id_car_make": 34, + "name": "Face", + "arabic_name": "فيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19805, + "fields": { + "id_car_make": 34, + "name": "Fengyun", + "arabic_name": "فينغيون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19807, + "fields": { + "id_car_make": 34, + "name": "Fulwin", + "arabic_name": "فول وين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19808, + "fields": { + "id_car_make": 34, + "name": "Fulwin 2", + "arabic_name": "فول وين 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19809, + "fields": { + "id_car_make": 34, + "name": "J1", + "arabic_name": "جي 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19810, + "fields": { + "id_car_make": 34, + "name": "J11", + "arabic_name": "جي 11" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19813, + "fields": { + "id_car_make": 34, + "name": "Karry", + "arabic_name": "كاري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19814, + "fields": { + "id_car_make": 34, + "name": "Qiyun", + "arabic_name": "كيون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19816, + "fields": { + "id_car_make": 34, + "name": "Riich 2", + "arabic_name": "ريتش 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19818, + "fields": { + "id_car_make": 34, + "name": "Storm 2", + "arabic_name": "ستورم 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19819, + "fields": { + "id_car_make": 34, + "name": "Windcloud", + "arabic_name": "ويند كلاود" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19820, + "fields": { + "id_car_make": 35, + "name": "150", + "arabic_name": "150" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19821, + "fields": { + "id_car_make": 35, + "name": "1700", + "arabic_name": "1700" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19822, + "fields": { + "id_car_make": 35, + "name": "210", + "arabic_name": "210" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19823, + "fields": { + "id_car_make": 35, + "name": "400", + "arabic_name": "400" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19824, + "fields": { + "id_car_make": 35, + "name": "Agile", + "arabic_name": "أجايل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19825, + "fields": { + "id_car_make": 35, + "name": "Beat", + "arabic_name": "بيت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19826, + "fields": { + "id_car_make": 35, + "name": "Biscayne", + "arabic_name": "بيسكين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19827, + "fields": { + "id_car_make": 35, + "name": "Calibra", + "arabic_name": "كاليبرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19828, + "fields": { + "id_car_make": 35, + "name": "Chevy II", + "arabic_name": "شيفي ٢" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19831, + "fields": { + "id_car_make": 35, + "name": "Commodore", + "arabic_name": "كومودور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19832, + "fields": { + "id_car_make": 35, + "name": "Corvair", + "arabic_name": "كورفير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19833, + "fields": { + "id_car_make": 35, + "name": "D20", + "arabic_name": "دي 20" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19834, + "fields": { + "id_car_make": 35, + "name": "Delray", + "arabic_name": "ديلراي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19835, + "fields": { + "id_car_make": 35, + "name": "Enjoy", + "arabic_name": "إنجوي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19836, + "fields": { + "id_car_make": 35, + "name": "Fleetline", + "arabic_name": "فليتلاين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19837, + "fields": { + "id_car_make": 35, + "name": "Forester", + "arabic_name": "فورستر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19838, + "fields": { + "id_car_make": 35, + "name": "Grand Vitara", + "arabic_name": "جراند فيتارا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19839, + "fields": { + "id_car_make": 35, + "name": "Ipanema", + "arabic_name": "إيبانيما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19840, + "fields": { + "id_car_make": 35, + "name": "Jimny", + "arabic_name": "جمني" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19841, + "fields": { + "id_car_make": 35, + "name": "Kadett", + "arabic_name": "كاديت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19842, + "fields": { + "id_car_make": 35, + "name": "Kommando", + "arabic_name": "كوماندو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19843, + "fields": { + "id_car_make": 35, + "name": "Lova", + "arabic_name": "لوفا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19844, + "fields": { + "id_car_make": 35, + "name": "Matiz", + "arabic_name": "ماتيز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19845, + "fields": { + "id_car_make": 35, + "name": "Meriva", + "arabic_name": "مريفا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19846, + "fields": { + "id_car_make": 35, + "name": "Montana", + "arabic_name": "مونتانا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19847, + "fields": { + "id_car_make": 35, + "name": "N200", + "arabic_name": "إن200" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19848, + "fields": { + "id_car_make": 35, + "name": "N300", + "arabic_name": "إن300" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19849, + "fields": { + "id_car_make": 35, + "name": "Nova", + "arabic_name": "نوفا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19850, + "fields": { + "id_car_make": 35, + "name": "Onix", + "arabic_name": "أونيكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19851, + "fields": { + "id_car_make": 35, + "name": "Opala", + "arabic_name": "أوبالا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19852, + "fields": { + "id_car_make": 35, + "name": "Optra", + "arabic_name": "أوبترا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19853, + "fields": { + "id_car_make": 35, + "name": "Prisma", + "arabic_name": "بريزما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19854, + "fields": { + "id_car_make": 35, + "name": "Samurai", + "arabic_name": "ساموراي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19855, + "fields": { + "id_car_make": 35, + "name": "Senator", + "arabic_name": "سيناتور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19856, + "fields": { + "id_car_make": 35, + "name": "Sonora", + "arabic_name": "سونورا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19857, + "fields": { + "id_car_make": 35, + "name": "Spectrum", + "arabic_name": "سبكتروم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19858, + "fields": { + "id_car_make": 35, + "name": "Spin", + "arabic_name": "سبين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19859, + "fields": { + "id_car_make": 35, + "name": "Sprint", + "arabic_name": "سبيرنت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19860, + "fields": { + "id_car_make": 35, + "name": "Swift", + "arabic_name": "سويفت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19861, + "fields": { + "id_car_make": 35, + "name": "Tacuma", + "arabic_name": "تاكوما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19862, + "fields": { + "id_car_make": 35, + "name": "Task Force", + "arabic_name": "تاسك فورس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19863, + "fields": { + "id_car_make": 35, + "name": "Tornado", + "arabic_name": "تورنادو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19864, + "fields": { + "id_car_make": 35, + "name": "Trooper", + "arabic_name": "تروبر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19865, + "fields": { + "id_car_make": 35, + "name": "Utility", + "arabic_name": "يوتيليتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19866, + "fields": { + "id_car_make": 35, + "name": "Vega", + "arabic_name": "فيغا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19867, + "fields": { + "id_car_make": 35, + "name": "Veraneio", + "arabic_name": "فيرانيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19868, + "fields": { + "id_car_make": 35, + "name": "Vitara", + "arabic_name": "فيتارا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19869, + "fields": { + "id_car_make": 35, + "name": "Vivant", + "arabic_name": "فيفانت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19870, + "fields": { + "id_car_make": 36, + "name": "Alpine", + "arabic_name": "ألباين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19871, + "fields": { + "id_car_make": 36, + "name": "Avenger", + "arabic_name": "أفينجر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19872, + "fields": { + "id_car_make": 36, + "name": "Centura", + "arabic_name": "سينتورا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19873, + "fields": { + "id_car_make": 36, + "name": "Conquest", + "arabic_name": "كونكويست" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19874, + "fields": { + "id_car_make": 36, + "name": "Daytona", + "arabic_name": "دايتونا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19875, + "fields": { + "id_car_make": 36, + "name": "Delta", + "arabic_name": "دلتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19876, + "fields": { + "id_car_make": 36, + "name": "Drifter", + "arabic_name": "دريفتير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19877, + "fields": { + "id_car_make": 36, + "name": "Executive", + "arabic_name": "إكزكيوتيف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19879, + "fields": { + "id_car_make": 36, + "name": "Horizon", + "arabic_name": "هورايزون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19880, + "fields": { + "id_car_make": 36, + "name": "Hunter", + "arabic_name": "هنتر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19881, + "fields": { + "id_car_make": 36, + "name": "Lancer", + "arabic_name": "لانسر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19882, + "fields": { + "id_car_make": 36, + "name": "Laser", + "arabic_name": "لايزر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19883, + "fields": { + "id_car_make": 36, + "name": "Newport", + "arabic_name": "نيو بورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19884, + "fields": { + "id_car_make": 36, + "name": "Sunbeam", + "arabic_name": "سن بيم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19885, + "fields": { + "id_car_make": 36, + "name": "Valiant", + "arabic_name": "فاليانت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19886, + "fields": { + "id_car_make": 36, + "name": "Valiant Galant", + "arabic_name": "فاليانت جالانت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19888, + "fields": { + "id_car_make": 37, + "name": "Axel", + "arabic_name": "أكسيل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19889, + "fields": { + "id_car_make": 37, + "name": "Bijou", + "arabic_name": "بيجو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19890, + "fields": { + "id_car_make": 37, + "name": "C15", + "arabic_name": "سي 15" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19892, + "fields": { + "id_car_make": 37, + "name": "C35", + "arabic_name": "سي 35" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19894, + "fields": { + "id_car_make": 37, + "name": "Chanson", + "arabic_name": "شانسون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19895, + "fields": { + "id_car_make": 37, + "name": "C-Quatre", + "arabic_name": "سي-كواتر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19896, + "fields": { + "id_car_make": 37, + "name": "C-Triomphe", + "arabic_name": "سي-تريومف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19897, + "fields": { + "id_car_make": 37, + "name": "Dispatch", + "arabic_name": "ديسباتش" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19898, + "fields": { + "id_car_make": 37, + "name": "Fukang", + "arabic_name": "فوكانغ" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19900, + "fields": { + "id_car_make": 37, + "name": "ID", + "arabic_name": "آي دي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19902, + "fields": { + "id_car_make": 37, + "name": "Mehari", + "arabic_name": "مهاري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19903, + "fields": { + "id_car_make": 37, + "name": "Nemo", + "arabic_name": "نيمو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19905, + "fields": { + "id_car_make": 37, + "name": "Synergie", + "arabic_name": "سينيرجي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19906, + "fields": { + "id_car_make": 40, + "name": "1100", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19907, + "fields": { + "id_car_make": 40, + "name": "1320", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19908, + "fields": { + "id_car_make": 40, + "name": "1325 Liberta", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19909, + "fields": { + "id_car_make": 40, + "name": "2000", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19910, + "fields": { + "id_car_make": 40, + "name": "500", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19911, + "fields": { + "id_car_make": 40, + "name": "D6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19912, + "fields": { + "id_car_make": 40, + "name": "Denem", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19913, + "fields": { + "id_car_make": 40, + "name": "Gamma", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19914, + "fields": { + "id_car_make": 40, + "name": "Pick-Up", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19915, + "fields": { + "id_car_make": 40, + "name": "Shifter", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19916, + "fields": { + "id_car_make": 42, + "name": "Alpheon", + "arabic_name": "ألفيون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19917, + "fields": { + "id_car_make": 42, + "name": "Aranos", + "arabic_name": "أرانوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19918, + "fields": { + "id_car_make": 42, + "name": "Brougham", + "arabic_name": "بروغام" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19919, + "fields": { + "id_car_make": 42, + "name": "Cielo", + "arabic_name": "سييلو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19920, + "fields": { + "id_car_make": 42, + "name": "Fantasy", + "arabic_name": "فانتاسي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19921, + "fields": { + "id_car_make": 42, + "name": "Imperial", + "arabic_name": "إمبريال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19923, + "fields": { + "id_car_make": 42, + "name": "Lacetti Premiere", + "arabic_name": "لاسيتي بريميير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19924, + "fields": { + "id_car_make": 42, + "name": "Maepsy", + "arabic_name": "مايبسي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19925, + "fields": { + "id_car_make": 42, + "name": "Pointer", + "arabic_name": "بوينتر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19926, + "fields": { + "id_car_make": 42, + "name": "Royale", + "arabic_name": "رويال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19927, + "fields": { + "id_car_make": 42, + "name": "Veritas", + "arabic_name": "فيريتاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19929, + "fields": { + "id_car_make": 44, + "name": "Ayla", + "arabic_name": "أيلا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19930, + "fields": { + "id_car_make": 44, + "name": "Boon Luminas", + "arabic_name": "بون لوميناس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19931, + "fields": { + "id_car_make": 44, + "name": "Compagno", + "arabic_name": "كومباجنو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19932, + "fields": { + "id_car_make": 44, + "name": "Consorte", + "arabic_name": "كونسورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19933, + "fields": { + "id_car_make": 44, + "name": "Domino", + "arabic_name": "دومينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19934, + "fields": { + "id_car_make": 44, + "name": "Extol", + "arabic_name": "إكستول" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19935, + "fields": { + "id_car_make": 44, + "name": "Fourtrak", + "arabic_name": "فور تراك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19936, + "fields": { + "id_car_make": 44, + "name": "Gran Max", + "arabic_name": "جران ماكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19937, + "fields": { + "id_car_make": 44, + "name": "Hijet", + "arabic_name": "هاي جيت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19938, + "fields": { + "id_car_make": 44, + "name": "Luxio", + "arabic_name": "لوكشيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19939, + "fields": { + "id_car_make": 44, + "name": "Mebius", + "arabic_name": "ميبيوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19940, + "fields": { + "id_car_make": 44, + "name": "Mira Cocoa", + "arabic_name": "ميرا كاكاو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19941, + "fields": { + "id_car_make": 44, + "name": "Sportrak", + "arabic_name": "سبور تراك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19942, + "fields": { + "id_car_make": 44, + "name": "Taruna", + "arabic_name": "تارونا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19943, + "fields": { + "id_car_make": 44, + "name": "Valera", + "arabic_name": "فاليرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19944, + "fields": { + "id_car_make": 44, + "name": "Zebra", + "arabic_name": "زيبرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19945, + "fields": { + "id_car_make": 45, + "name": "DH27", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19946, + "fields": { + "id_car_make": 45, + "name": "Super Eight", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19947, + "fields": { + "id_car_make": 45, + "name": "V8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19948, + "fields": { + "id_car_make": 47, + "name": "1000", + "arabic_name": "1000" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19949, + "fields": { + "id_car_make": 47, + "name": "1200", + "arabic_name": "1200" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19950, + "fields": { + "id_car_make": 47, + "name": "200SX", + "arabic_name": "200 إس إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19951, + "fields": { + "id_car_make": 47, + "name": "240Z / 260Z / 280Z", + "arabic_name": "240 زد / 260 زد / 280 زد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19952, + "fields": { + "id_car_make": 47, + "name": "510", + "arabic_name": "510" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19953, + "fields": { + "id_car_make": 47, + "name": "610", + "arabic_name": "610" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19954, + "fields": { + "id_car_make": 47, + "name": "710", + "arabic_name": "710" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19955, + "fields": { + "id_car_make": 47, + "name": "810", + "arabic_name": "810" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19956, + "fields": { + "id_car_make": 47, + "name": "B-210", + "arabic_name": "بي-210" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19959, + "fields": { + "id_car_make": 47, + "name": "Fairlady", + "arabic_name": "فيرليدي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19960, + "fields": { + "id_car_make": 47, + "name": "Laurel", + "arabic_name": "لوريل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19961, + "fields": { + "id_car_make": 47, + "name": "Patrol", + "arabic_name": "باترول" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19962, + "fields": { + "id_car_make": 47, + "name": "Pickup", + "arabic_name": "بيك أب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19964, + "fields": { + "id_car_make": 51, + "name": "330", + "arabic_name": "330" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19965, + "fields": { + "id_car_make": 51, + "name": "400", + "arabic_name": "400" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19966, + "fields": { + "id_car_make": 51, + "name": "440", + "arabic_name": "440" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19967, + "fields": { + "id_car_make": 51, + "name": "A100", + "arabic_name": "إيه 100" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19968, + "fields": { + "id_car_make": 51, + "name": "Aspen", + "arabic_name": "أسبن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19969, + "fields": { + "id_car_make": 51, + "name": "Attitude", + "arabic_name": "أتتود" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19970, + "fields": { + "id_car_make": 51, + "name": "Brisa", + "arabic_name": "بريسا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19971, + "fields": { + "id_car_make": 51, + "name": "Colt", + "arabic_name": "كولت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19972, + "fields": { + "id_car_make": 51, + "name": "Conquest", + "arabic_name": "كونكويست" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19973, + "fields": { + "id_car_make": 51, + "name": "Coronet", + "arabic_name": "كورونيت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19974, + "fields": { + "id_car_make": 51, + "name": "Demon", + "arabic_name": "ديمون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19975, + "fields": { + "id_car_make": 51, + "name": "Diplomat", + "arabic_name": "دبلوما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19976, + "fields": { + "id_car_make": 51, + "name": "Forza", + "arabic_name": "فورزا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19977, + "fields": { + "id_car_make": 51, + "name": "Matador", + "arabic_name": "ماتادور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19978, + "fields": { + "id_car_make": 51, + "name": "Meadowbrook", + "arabic_name": "ميدوبروك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19979, + "fields": { + "id_car_make": 51, + "name": "Mirada", + "arabic_name": "ميرادا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19980, + "fields": { + "id_car_make": 51, + "name": "Phoenix", + "arabic_name": "فينيكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19981, + "fields": { + "id_car_make": 51, + "name": "Polara", + "arabic_name": "بولارا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19982, + "fields": { + "id_car_make": 51, + "name": "Power Wagon", + "arabic_name": "باور واجن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19983, + "fields": { + "id_car_make": 51, + "name": "Raider", + "arabic_name": "رايدر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19984, + "fields": { + "id_car_make": 51, + "name": "Ram 50", + "arabic_name": "رام 50" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19985, + "fields": { + "id_car_make": 51, + "name": "Rampage", + "arabic_name": "رامبيج" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19986, + "fields": { + "id_car_make": 51, + "name": "Ram Van", + "arabic_name": "رام فان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19987, + "fields": { + "id_car_make": 51, + "name": "Royal", + "arabic_name": "رويال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19988, + "fields": { + "id_car_make": 51, + "name": "SE", + "arabic_name": "إس إي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19990, + "fields": { + "id_car_make": 51, + "name": "St. Regis", + "arabic_name": "سانت ريجيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19992, + "fields": { + "id_car_make": 52, + "name": "Future", + "arabic_name": "فيوتشر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19993, + "fields": { + "id_car_make": 53, + "name": "Orion M", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19997, + "fields": { + "id_car_make": 59, + "name": "6371", + "arabic_name": "6371" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19998, + "fields": { + "id_car_make": 59, + "name": "Besturn B90", + "arabic_name": "بيسترن بي90" + } +}, +{ + "model": "inventory.carmodel", + "pk": 19999, + "fields": { + "id_car_make": 59, + "name": "C131", + "arabic_name": "سي131" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20000, + "fields": { + "id_car_make": 59, + "name": "Jiabao", + "arabic_name": "جيا باو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20001, + "fields": { + "id_car_make": 59, + "name": "Kun Cheng", + "arabic_name": "كون تشينغ" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20002, + "fields": { + "id_car_make": 59, + "name": "M80", + "arabic_name": "إم80" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20003, + "fields": { + "id_car_make": 59, + "name": "S80", + "arabic_name": "إس80" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20004, + "fields": { + "id_car_make": 59, + "name": "Sirius S80", + "arabic_name": "سيروس إس80" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20007, + "fields": { + "id_car_make": 59, + "name": "Vela", + "arabic_name": "فيلا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20008, + "fields": { + "id_car_make": 59, + "name": "Xiali N3", + "arabic_name": "شيالي إن3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20009, + "fields": { + "id_car_make": 59, + "name": "Xiali N5", + "arabic_name": "شيالي إن5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20010, + "fields": { + "id_car_make": 59, + "name": "Xiali N7", + "arabic_name": "شيالي إن7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20011, + "fields": { + "id_car_make": 60, + "name": "250", + "arabic_name": "250" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20012, + "fields": { + "id_car_make": 60, + "name": "288 GTO", + "arabic_name": "288 جي تي أو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20013, + "fields": { + "id_car_make": 60, + "name": "308", + "arabic_name": "308" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20014, + "fields": { + "id_car_make": 60, + "name": "330", + "arabic_name": "330" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20015, + "fields": { + "id_car_make": 60, + "name": "365", + "arabic_name": "365" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20016, + "fields": { + "id_car_make": 60, + "name": "Berlinetta Boxer", + "arabic_name": "برلينيتا بوكسر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20017, + "fields": { + "id_car_make": 61, + "name": "1100", + "arabic_name": "1100" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20018, + "fields": { + "id_car_make": 61, + "name": "1200", + "arabic_name": "1200" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20019, + "fields": { + "id_car_make": 61, + "name": "125", + "arabic_name": "125" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20020, + "fields": { + "id_car_make": 61, + "name": "1300/1500", + "arabic_name": "1300/1500" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20021, + "fields": { + "id_car_make": 61, + "name": "133", + "arabic_name": "133" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20022, + "fields": { + "id_car_make": 61, + "name": "1400", + "arabic_name": "1400" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20023, + "fields": { + "id_car_make": 61, + "name": "147", + "arabic_name": "147" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20024, + "fields": { + "id_car_make": 61, + "name": "1800/2100", + "arabic_name": "1800/2100" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20025, + "fields": { + "id_car_make": 61, + "name": "2300", + "arabic_name": "2300" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20028, + "fields": { + "id_car_make": 61, + "name": "850", + "arabic_name": "850" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20029, + "fields": { + "id_car_make": 61, + "name": "Brio", + "arabic_name": "بريو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20030, + "fields": { + "id_car_make": 61, + "name": "Campagnola", + "arabic_name": "كامباجنولا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20032, + "fields": { + "id_car_make": 61, + "name": "Dino", + "arabic_name": "دينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20034, + "fields": { + "id_car_make": 61, + "name": "Elba", + "arabic_name": "إلبا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20035, + "fields": { + "id_car_make": 61, + "name": "Marengo", + "arabic_name": "مارينجو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20036, + "fields": { + "id_car_make": 61, + "name": "Mille", + "arabic_name": "ميل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20037, + "fields": { + "id_car_make": 61, + "name": "Panorama", + "arabic_name": "بانوراما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20038, + "fields": { + "id_car_make": 61, + "name": "Perla", + "arabic_name": "بيرلا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20040, + "fields": { + "id_car_make": 61, + "name": "Premio", + "arabic_name": "بريمو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20041, + "fields": { + "id_car_make": 61, + "name": "Spazio", + "arabic_name": "سبازيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20042, + "fields": { + "id_car_make": 61, + "name": "Talento", + "arabic_name": "تالينتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20043, + "fields": { + "id_car_make": 61, + "name": "Tucan", + "arabic_name": "توكان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20044, + "fields": { + "id_car_make": 61, + "name": "Viaggio", + "arabic_name": "فيجيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20045, + "fields": { + "id_car_make": 61, + "name": "Vivace", + "arabic_name": "فيفاشي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20047, + "fields": { + "id_car_make": 63, + "name": "Anglia", + "arabic_name": "أنغليا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20048, + "fields": { + "id_car_make": 63, + "name": "Bantam", + "arabic_name": "بانتام" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20049, + "fields": { + "id_car_make": 63, + "name": "Comete", + "arabic_name": "كوميت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20050, + "fields": { + "id_car_make": 63, + "name": "Corcel", + "arabic_name": "كورسل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20051, + "fields": { + "id_car_make": 63, + "name": "Corsair", + "arabic_name": "كورساير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20052, + "fields": { + "id_car_make": 63, + "name": "Cortina", + "arabic_name": "كورتينا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20053, + "fields": { + "id_car_make": 63, + "name": "Del Rey", + "arabic_name": "ديل راي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20054, + "fields": { + "id_car_make": 63, + "name": "Durango", + "arabic_name": "دورانجو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20055, + "fields": { + "id_car_make": 63, + "name": "Econovan", + "arabic_name": "إيكونوفان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20056, + "fields": { + "id_car_make": 63, + "name": "Elite", + "arabic_name": "إيليت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20057, + "fields": { + "id_car_make": 63, + "name": "E-series", + "arabic_name": "إي-سيريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20058, + "fields": { + "id_car_make": 63, + "name": "EXP", + "arabic_name": "إي إكس بي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20062, + "fields": { + "id_car_make": 63, + "name": "Falcon", + "arabic_name": "فالكون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20063, + "fields": { + "id_car_make": 63, + "name": "Figo", + "arabic_name": "فيغو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20064, + "fields": { + "id_car_make": 63, + "name": "Freda", + "arabic_name": "فريدا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20065, + "fields": { + "id_car_make": 63, + "name": "F-Series", + "arabic_name": "إف-سيريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20066, + "fields": { + "id_car_make": 63, + "name": "GPW", + "arabic_name": "جي بي دبليو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20068, + "fields": { + "id_car_make": 63, + "name": "Ikon", + "arabic_name": "أيقون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20069, + "fields": { + "id_car_make": 63, + "name": "Lobo", + "arabic_name": "لوبو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20070, + "fields": { + "id_car_make": 63, + "name": "LTD II", + "arabic_name": "إل تي دي 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20071, + "fields": { + "id_car_make": 63, + "name": "Mainline", + "arabic_name": "ماين لاين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20072, + "fields": { + "id_car_make": 63, + "name": "Pampa", + "arabic_name": "بامبا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20073, + "fields": { + "id_car_make": 63, + "name": "Pilot", + "arabic_name": "بايلوت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20074, + "fields": { + "id_car_make": 63, + "name": "Pinto", + "arabic_name": "بينتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20075, + "fields": { + "id_car_make": 63, + "name": "Popular", + "arabic_name": "بوبولار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20076, + "fields": { + "id_car_make": 63, + "name": "Prefect", + "arabic_name": "بريفيكت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20077, + "fields": { + "id_car_make": 63, + "name": "Shelby", + "arabic_name": "شيلبي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20078, + "fields": { + "id_car_make": 63, + "name": "Territory", + "arabic_name": "تيريتوري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20079, + "fields": { + "id_car_make": 63, + "name": "Transit", + "arabic_name": "ترانزيت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20080, + "fields": { + "id_car_make": 63, + "name": "Transit Connect", + "arabic_name": "ترانزيت كونكت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20081, + "fields": { + "id_car_make": 63, + "name": "Vedette", + "arabic_name": "فيديت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20082, + "fields": { + "id_car_make": 63, + "name": "Verona", + "arabic_name": "فيرونا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20083, + "fields": { + "id_car_make": 63, + "name": "Zodiac", + "arabic_name": "زودياك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20091, + "fields": { + "id_car_make": 64, + "name": "Tunland", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20097, + "fields": { + "id_car_make": 67, + "name": "CD", + "arabic_name": "سي دي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20098, + "fields": { + "id_car_make": 67, + "name": "FC", + "arabic_name": "إف سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20099, + "fields": { + "id_car_make": 67, + "name": "GE", + "arabic_name": "جي إي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20100, + "fields": { + "id_car_make": 67, + "name": "GX7", + "arabic_name": "جي إكس7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20101, + "fields": { + "id_car_make": 67, + "name": "HQ", + "arabic_name": "إتش كيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20102, + "fields": { + "id_car_make": 67, + "name": "Otaka", + "arabic_name": "أوتاكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20103, + "fields": { + "id_car_make": 67, + "name": "SL", + "arabic_name": "إس إل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20104, + "fields": { + "id_car_make": 67, + "name": "Uliou", + "arabic_name": "أوليو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20105, + "fields": { + "id_car_make": 71, + "name": "Steed", + "arabic_name": "ستيد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20106, + "fields": { + "id_car_make": 71, + "name": "Voleex C20R", + "arabic_name": "فوليكس سي 20 آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20107, + "fields": { + "id_car_make": 71, + "name": "Voleex C50", + "arabic_name": "فوليكس سي 50" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20108, + "fields": { + "id_car_make": 71, + "name": "Voleex V80", + "arabic_name": "فوليكس في 80" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20109, + "fields": { + "id_car_make": 71, + "name": "Wingle 5", + "arabic_name": "وينجل 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20110, + "fields": { + "id_car_make": 71, + "name": "X240", + "arabic_name": "إكس 240" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20111, + "fields": { + "id_car_make": 72, + "name": "Junyi", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20112, + "fields": { + "id_car_make": 72, + "name": "Lobo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20113, + "fields": { + "id_car_make": 72, + "name": "Luzun", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20114, + "fields": { + "id_car_make": 72, + "name": "Minyi", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20116, + "fields": { + "id_car_make": 72, + "name": "Saima", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20117, + "fields": { + "id_car_make": 72, + "name": "Zhongyi", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20118, + "fields": { + "id_car_make": 73, + "name": "2", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20119, + "fields": { + "id_car_make": 73, + "name": "CX20", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20120, + "fields": { + "id_car_make": 73, + "name": "Family", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20121, + "fields": { + "id_car_make": 73, + "name": "Freema", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20122, + "fields": { + "id_car_make": 73, + "name": "Fstar", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20123, + "fields": { + "id_car_make": 73, + "name": "H2", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20124, + "fields": { + "id_car_make": 73, + "name": "M11", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20125, + "fields": { + "id_car_make": 73, + "name": "M6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20126, + "fields": { + "id_car_make": 73, + "name": "M8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20127, + "fields": { + "id_car_make": 73, + "name": "S3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20128, + "fields": { + "id_car_make": 73, + "name": "S7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20129, + "fields": { + "id_car_make": 74, + "name": "Lancer", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20130, + "fields": { + "id_car_make": 74, + "name": "Pajero", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20131, + "fields": { + "id_car_make": 75, + "name": "Adventra", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20132, + "fields": { + "id_car_make": 75, + "name": "Barina Spark", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20133, + "fields": { + "id_car_make": 75, + "name": "Belmont", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20134, + "fields": { + "id_car_make": 75, + "name": "Berlina", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20135, + "fields": { + "id_car_make": 75, + "name": "Brougham", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20136, + "fields": { + "id_car_make": 75, + "name": "Camira", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20137, + "fields": { + "id_car_make": 75, + "name": "Captiva", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20138, + "fields": { + "id_car_make": 75, + "name": "Colorado", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20139, + "fields": { + "id_car_make": 75, + "name": "Crewman", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20140, + "fields": { + "id_car_make": 75, + "name": "Drover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20141, + "fields": { + "id_car_make": 75, + "name": "Epica", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20142, + "fields": { + "id_car_make": 75, + "name": "Gemini", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20143, + "fields": { + "id_car_make": 75, + "name": "Kingswood", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20144, + "fields": { + "id_car_make": 75, + "name": "Malibu", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20145, + "fields": { + "id_car_make": 75, + "name": "Monterey", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20147, + "fields": { + "id_car_make": 75, + "name": "Piazza", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20148, + "fields": { + "id_car_make": 75, + "name": "Sandman", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20149, + "fields": { + "id_car_make": 75, + "name": "Tigra", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20150, + "fields": { + "id_car_make": 75, + "name": "Torana", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20151, + "fields": { + "id_car_make": 75, + "name": "Viva", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20152, + "fields": { + "id_car_make": 75, + "name": "Volt", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20153, + "fields": { + "id_car_make": 76, + "name": "1300", + "arabic_name": "1300" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20154, + "fields": { + "id_car_make": 76, + "name": "145", + "arabic_name": "145" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20155, + "fields": { + "id_car_make": 76, + "name": "Amaze", + "arabic_name": "أمايز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20156, + "fields": { + "id_car_make": 76, + "name": "Ballade", + "arabic_name": "بالاد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20157, + "fields": { + "id_car_make": 76, + "name": "Brio", + "arabic_name": "بريو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20159, + "fields": { + "id_car_make": 76, + "name": "Crider", + "arabic_name": "كرايدر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20160, + "fields": { + "id_car_make": 76, + "name": "Fit Shuttle", + "arabic_name": "فيت شاتل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20161, + "fields": { + "id_car_make": 76, + "name": "Lagreat", + "arabic_name": "لاجريت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20162, + "fields": { + "id_car_make": 76, + "name": "Mobilio Spike", + "arabic_name": "موبيلو سبايك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20163, + "fields": { + "id_car_make": 76, + "name": "MR-V", + "arabic_name": "إم آر-في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20164, + "fields": { + "id_car_make": 76, + "name": "N360", + "arabic_name": "إن360" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20166, + "fields": { + "id_car_make": 76, + "name": "N Box", + "arabic_name": "إن بوكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20167, + "fields": { + "id_car_make": 76, + "name": "N-One", + "arabic_name": "إن-ون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20169, + "fields": { + "id_car_make": 76, + "name": "S500", + "arabic_name": "إس500" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20170, + "fields": { + "id_car_make": 76, + "name": "S600", + "arabic_name": "إس600" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20171, + "fields": { + "id_car_make": 76, + "name": "S800", + "arabic_name": "إس800" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20172, + "fields": { + "id_car_make": 76, + "name": "Spirior", + "arabic_name": "سبيريور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20173, + "fields": { + "id_car_make": 77, + "name": "Santa Fe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20174, + "fields": { + "id_car_make": 79, + "name": "Amica", + "arabic_name": "أميكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20177, + "fields": { + "id_car_make": 79, + "name": "Avega", + "arabic_name": "أفيجا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20178, + "fields": { + "id_car_make": 79, + "name": "Azera", + "arabic_name": "أزيرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20181, + "fields": { + "id_car_make": 79, + "name": "Click", + "arabic_name": "كليك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20184, + "fields": { + "id_car_make": 79, + "name": "Eon", + "arabic_name": "إيون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20186, + "fields": { + "id_car_make": 79, + "name": "H-100", + "arabic_name": "إتش-100" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20187, + "fields": { + "id_car_make": 79, + "name": "H200", + "arabic_name": "إتش200" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20189, + "fields": { + "id_car_make": 79, + "name": "HB20", + "arabic_name": "إتش بي 20" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20192, + "fields": { + "id_car_make": 79, + "name": "i25", + "arabic_name": "آي 25" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20193, + "fields": { + "id_car_make": 79, + "name": "i45", + "arabic_name": "آي 45" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20197, + "fields": { + "id_car_make": 79, + "name": "Langdong", + "arabic_name": "لانغدونغ" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20201, + "fields": { + "id_car_make": 79, + "name": "Presto", + "arabic_name": "بريستو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20202, + "fields": { + "id_car_make": 79, + "name": "Rohens", + "arabic_name": "روهينز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20203, + "fields": { + "id_car_make": 79, + "name": "Santro", + "arabic_name": "سانترو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20204, + "fields": { + "id_car_make": 79, + "name": "Santro Xing", + "arabic_name": "سانترو إكسينج" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20206, + "fields": { + "id_car_make": 79, + "name": "S-Coupe", + "arabic_name": "إس-كوبيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20208, + "fields": { + "id_car_make": 79, + "name": "Sonica", + "arabic_name": "سونيكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20209, + "fields": { + "id_car_make": 79, + "name": "Starex", + "arabic_name": "ستاركس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20210, + "fields": { + "id_car_make": 79, + "name": "TB", + "arabic_name": "تي بي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20211, + "fields": { + "id_car_make": 79, + "name": "TQ", + "arabic_name": "تي كيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20214, + "fields": { + "id_car_make": 80, + "name": "I-Series", + "arabic_name": "آي-سيريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20215, + "fields": { + "id_car_make": 81, + "name": "Small", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20216, + "fields": { + "id_car_make": 83, + "name": "Bardo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20217, + "fields": { + "id_car_make": 83, + "name": "Dena", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20218, + "fields": { + "id_car_make": 83, + "name": "Runna", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20219, + "fields": { + "id_car_make": 83, + "name": "Sarir", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20220, + "fields": { + "id_car_make": 85, + "name": "117", + "arabic_name": "117" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20221, + "fields": { + "id_car_make": 85, + "name": "Alterra", + "arabic_name": "ألتييرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20222, + "fields": { + "id_car_make": 85, + "name": "Bellel", + "arabic_name": "بيلل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20223, + "fields": { + "id_car_make": 85, + "name": "Bellett", + "arabic_name": "بيليت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20224, + "fields": { + "id_car_make": 85, + "name": "Campo", + "arabic_name": "كامبو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20225, + "fields": { + "id_car_make": 85, + "name": "Como", + "arabic_name": "كومو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20226, + "fields": { + "id_car_make": 85, + "name": "Crosswind", + "arabic_name": "كروسويند" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20227, + "fields": { + "id_car_make": 85, + "name": "Fargo", + "arabic_name": "فارغو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20228, + "fields": { + "id_car_make": 85, + "name": "Florian", + "arabic_name": "فلوريان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20229, + "fields": { + "id_car_make": 85, + "name": "Fuego", + "arabic_name": "فويغو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20230, + "fields": { + "id_car_make": 85, + "name": "I-Mark", + "arabic_name": "آي مارك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20231, + "fields": { + "id_car_make": 85, + "name": "i-Series", + "arabic_name": "آي سيريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20232, + "fields": { + "id_car_make": 85, + "name": "Midi", + "arabic_name": "ميدي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20234, + "fields": { + "id_car_make": 85, + "name": "Oasis", + "arabic_name": "واحة" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20235, + "fields": { + "id_car_make": 85, + "name": "Panther", + "arabic_name": "بانثر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20236, + "fields": { + "id_car_make": 85, + "name": "Statesman de Ville", + "arabic_name": "ستيتسمان دي فيل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20237, + "fields": { + "id_car_make": 85, + "name": "Wasp", + "arabic_name": "دبور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20238, + "fields": { + "id_car_make": 85, + "name": "WFR", + "arabic_name": "دبليو إف آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20241, + "fields": { + "id_car_make": 88, + "name": "240/340", + "arabic_name": "240/340" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20242, + "fields": { + "id_car_make": 88, + "name": "420", + "arabic_name": "420" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20243, + "fields": { + "id_car_make": 88, + "name": "Mark", + "arabic_name": "مارك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20244, + "fields": { + "id_car_make": 88, + "name": "SS", + "arabic_name": "إس إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20245, + "fields": { + "id_car_make": 89, + "name": "2500", + "arabic_name": "2500" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20246, + "fields": { + "id_car_make": 89, + "name": "Comanche", + "arabic_name": "كومانشي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20247, + "fields": { + "id_car_make": 89, + "name": "Commando", + "arabic_name": "كوماندو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20248, + "fields": { + "id_car_make": 89, + "name": "Gladiator", + "arabic_name": "جلاديتور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20250, + "fields": { + "id_car_make": 91, + "name": "Baowei", + "arabic_name": "باووي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20255, + "fields": { + "id_car_make": 91, + "name": "X6", + "arabic_name": "إكس 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20256, + "fields": { + "id_car_make": 91, + "name": "Yuhu", + "arabic_name": "يوهو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20257, + "fields": { + "id_car_make": 91, + "name": "Yusheng", + "arabic_name": "يوشينغ" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20258, + "fields": { + "id_car_make": 92, + "name": "Amanti", + "arabic_name": "أمانتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20259, + "fields": { + "id_car_make": 92, + "name": "Besta", + "arabic_name": "بيستا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20261, + "fields": { + "id_car_make": 92, + "name": "Brisa", + "arabic_name": "بريسا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20262, + "fields": { + "id_car_make": 92, + "name": "Carstar", + "arabic_name": "كار ستار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20263, + "fields": { + "id_car_make": 92, + "name": "Credos", + "arabic_name": "كريدوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20264, + "fields": { + "id_car_make": 92, + "name": "Forte", + "arabic_name": "فورتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20266, + "fields": { + "id_car_make": 92, + "name": "K3", + "arabic_name": "كي3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20267, + "fields": { + "id_car_make": 92, + "name": "K5", + "arabic_name": "كي5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20268, + "fields": { + "id_car_make": 92, + "name": "K7", + "arabic_name": "كي7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20269, + "fields": { + "id_car_make": 92, + "name": "K900", + "arabic_name": "كي 900" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20270, + "fields": { + "id_car_make": 92, + "name": "Lotze", + "arabic_name": "لوتزي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20271, + "fields": { + "id_car_make": 92, + "name": "Mohave", + "arabic_name": "موهافي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20272, + "fields": { + "id_car_make": 92, + "name": "Morning", + "arabic_name": "مورنينغ" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20273, + "fields": { + "id_car_make": 92, + "name": "Parktown", + "arabic_name": "بارك تاون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20274, + "fields": { + "id_car_make": 92, + "name": "Pregio", + "arabic_name": "بريجيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20275, + "fields": { + "id_car_make": 92, + "name": "Rondo", + "arabic_name": "روندو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20276, + "fields": { + "id_car_make": 92, + "name": "Towner", + "arabic_name": "تاونر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20277, + "fields": { + "id_car_make": 93, + "name": "CCXR", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20278, + "fields": { + "id_car_make": 95, + "name": "350GT", + "arabic_name": "350 جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20279, + "fields": { + "id_car_make": 95, + "name": "400GT", + "arabic_name": "400 جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20280, + "fields": { + "id_car_make": 95, + "name": "Islero", + "arabic_name": "إسليرو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20281, + "fields": { + "id_car_make": 95, + "name": "Miura", + "arabic_name": "ميورا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20282, + "fields": { + "id_car_make": 95, + "name": "Silhouette", + "arabic_name": "سيلويت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20283, + "fields": { + "id_car_make": 96, + "name": "2000", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20284, + "fields": { + "id_car_make": 96, + "name": "Appia", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20285, + "fields": { + "id_car_make": 96, + "name": "Aurelia", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20286, + "fields": { + "id_car_make": 96, + "name": "Flaminia", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20287, + "fields": { + "id_car_make": 96, + "name": "Scorpion", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20288, + "fields": { + "id_car_make": 96, + "name": "Stratos HF", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20289, + "fields": { + "id_car_make": 96, + "name": "Y", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20293, + "fields": { + "id_car_make": 101, + "name": "Foison", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20295, + "fields": { + "id_car_make": 102, + "name": "Blackwood", + "arabic_name": "بلاك وود" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20296, + "fields": { + "id_car_make": 102, + "name": "Capri", + "arabic_name": "كابري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20297, + "fields": { + "id_car_make": 102, + "name": "Continental Mark Series", + "arabic_name": "كونتيننتال مارك سيريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20298, + "fields": { + "id_car_make": 102, + "name": "Cosmopolitan", + "arabic_name": "كوزموبوليتان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20299, + "fields": { + "id_car_make": 102, + "name": "Custom", + "arabic_name": "كستم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20300, + "fields": { + "id_car_make": 102, + "name": "K-Series", + "arabic_name": "كي سيريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20301, + "fields": { + "id_car_make": 102, + "name": "Premiere", + "arabic_name": "بريميير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20302, + "fields": { + "id_car_make": 102, + "name": "Versailles", + "arabic_name": "فرساي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20303, + "fields": { + "id_car_make": 102, + "name": "Zephyr", + "arabic_name": "زيفير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20304, + "fields": { + "id_car_make": 103, + "name": "2-Eleven", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20305, + "fields": { + "id_car_make": 103, + "name": "7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20306, + "fields": { + "id_car_make": 103, + "name": "Carlton", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20307, + "fields": { + "id_car_make": 103, + "name": "Omega", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20308, + "fields": { + "id_car_make": 106, + "name": "MM 775", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20309, + "fields": { + "id_car_make": 108, + "name": "Berlinetta", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20310, + "fields": { + "id_car_make": 108, + "name": "RoadSter", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20311, + "fields": { + "id_car_make": 111, + "name": "3500 GT", + "arabic_name": "3500 جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20312, + "fields": { + "id_car_make": 111, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20313, + "fields": { + "id_car_make": 111, + "name": "GranCabrio", + "arabic_name": "جران كابريو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20314, + "fields": { + "id_car_make": 111, + "name": "GranSport", + "arabic_name": "جران سبورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20315, + "fields": { + "id_car_make": 111, + "name": "Mistral", + "arabic_name": "ميسترال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20316, + "fields": { + "id_car_make": 111, + "name": "Racing", + "arabic_name": "ريسينغ" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20317, + "fields": { + "id_car_make": 111, + "name": "Sebring", + "arabic_name": "سيبرينج" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20318, + "fields": { + "id_car_make": 111, + "name": "Spyder", + "arabic_name": "سبايدر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20319, + "fields": { + "id_car_make": 112, + "name": "Zeppelin", + "arabic_name": "زيبلين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20320, + "fields": { + "id_car_make": 113, + "name": "808", + "arabic_name": "808" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20321, + "fields": { + "id_car_make": 113, + "name": "Allegro", + "arabic_name": "أليغرو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20322, + "fields": { + "id_car_make": 113, + "name": "Bongo Brawny", + "arabic_name": "بونغو براوني" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20323, + "fields": { + "id_car_make": 113, + "name": "Bravo", + "arabic_name": "برافو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20324, + "fields": { + "id_car_make": 113, + "name": "Chantez", + "arabic_name": "شانتز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20325, + "fields": { + "id_car_make": 113, + "name": "Clef", + "arabic_name": "كليف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20326, + "fields": { + "id_car_make": 113, + "name": "Drifter", + "arabic_name": "دريفتير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20327, + "fields": { + "id_car_make": 113, + "name": "Etude", + "arabic_name": "إيتود" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20328, + "fields": { + "id_car_make": 113, + "name": "Flair", + "arabic_name": "فلير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20329, + "fields": { + "id_car_make": 113, + "name": "Flair Wagon", + "arabic_name": "فلير واجن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20330, + "fields": { + "id_car_make": 113, + "name": "GLC", + "arabic_name": "جي إل سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20331, + "fields": { + "id_car_make": 113, + "name": "Levante", + "arabic_name": "ليفانت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20332, + "fields": { + "id_car_make": 113, + "name": "Miata", + "arabic_name": "مياتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20333, + "fields": { + "id_car_make": 113, + "name": "Montrose", + "arabic_name": "مونتروز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20334, + "fields": { + "id_car_make": 113, + "name": "Porter", + "arabic_name": "بورتر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20335, + "fields": { + "id_car_make": 113, + "name": "Porter Cab", + "arabic_name": "بورتر كاب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20336, + "fields": { + "id_car_make": 113, + "name": "R100", + "arabic_name": "آر 100" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20337, + "fields": { + "id_car_make": 113, + "name": "R360", + "arabic_name": "آر 360" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20338, + "fields": { + "id_car_make": 113, + "name": "Roadpacer AP", + "arabic_name": "رودبايسر إيه بي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20339, + "fields": { + "id_car_make": 113, + "name": "RX-2", + "arabic_name": "آر إكس-2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20340, + "fields": { + "id_car_make": 113, + "name": "RX-5", + "arabic_name": "آر إكس-5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20342, + "fields": { + "id_car_make": 116, + "name": "A-Class", + "arabic_name": "إيه-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20343, + "fields": { + "id_car_make": 116, + "name": "B-Class", + "arabic_name": "بي-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20344, + "fields": { + "id_car_make": 116, + "name": "CLA-Class", + "arabic_name": "سي إل إيه-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20345, + "fields": { + "id_car_make": 116, + "name": "CLC-Class", + "arabic_name": "سي إل سي-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20346, + "fields": { + "id_car_make": 116, + "name": "CLK-Class", + "arabic_name": "سي إل كي-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20347, + "fields": { + "id_car_make": 116, + "name": "CLS-Class", + "arabic_name": "سي إل إس-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20348, + "fields": { + "id_car_make": 116, + "name": "CL-Class", + "arabic_name": "سي إل-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20349, + "fields": { + "id_car_make": 116, + "name": "C-Class", + "arabic_name": "سي-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20350, + "fields": { + "id_car_make": 116, + "name": "E-Class", + "arabic_name": "إي-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20351, + "fields": { + "id_car_make": 116, + "name": "GLA-Class", + "arabic_name": "جي إل إيه-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20352, + "fields": { + "id_car_make": 116, + "name": "GLK-Class", + "arabic_name": "جي إل كيه-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20353, + "fields": { + "id_car_make": 116, + "name": "GLS-Class", + "arabic_name": "جي إل إس-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20354, + "fields": { + "id_car_make": 116, + "name": "GL-Class", + "arabic_name": "جي إل-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20355, + "fields": { + "id_car_make": 116, + "name": "G-Class", + "arabic_name": "جي-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20357, + "fields": { + "id_car_make": 116, + "name": "M-Class", + "arabic_name": "إم-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20358, + "fields": { + "id_car_make": 116, + "name": "R-Class", + "arabic_name": "آر-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20359, + "fields": { + "id_car_make": 116, + "name": "SLC-Class", + "arabic_name": "إس إل سي-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20360, + "fields": { + "id_car_make": 116, + "name": "SLK-Class", + "arabic_name": "إس إل كي-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20361, + "fields": { + "id_car_make": 116, + "name": "SLR-Class", + "arabic_name": "إس إل آر-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20362, + "fields": { + "id_car_make": 116, + "name": "SL-Class", + "arabic_name": "إس إل-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20364, + "fields": { + "id_car_make": 116, + "name": "S-Class", + "arabic_name": "إس-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20367, + "fields": { + "id_car_make": 116, + "name": "Type 300", + "arabic_name": "تايب 300" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20370, + "fields": { + "id_car_make": 116, + "name": "V-Class", + "arabic_name": "في-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20371, + "fields": { + "id_car_make": 117, + "name": "Bobcat", + "arabic_name": "بوبكات" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20372, + "fields": { + "id_car_make": 117, + "name": "Colony Park", + "arabic_name": "كولوني بارك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20373, + "fields": { + "id_car_make": 117, + "name": "Comet", + "arabic_name": "كوميت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20374, + "fields": { + "id_car_make": 117, + "name": "Commuter", + "arabic_name": "كوميتر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20375, + "fields": { + "id_car_make": 117, + "name": "Custom", + "arabic_name": "كستم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20376, + "fields": { + "id_car_make": 117, + "name": "Cyclone", + "arabic_name": "سايكلون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20377, + "fields": { + "id_car_make": 117, + "name": "LN7", + "arabic_name": "إل إن 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20378, + "fields": { + "id_car_make": 117, + "name": "Lynx", + "arabic_name": "لينكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20379, + "fields": { + "id_car_make": 117, + "name": "M-47", + "arabic_name": "إم-47" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20380, + "fields": { + "id_car_make": 117, + "name": "Medalist", + "arabic_name": "ميداليست" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20381, + "fields": { + "id_car_make": 117, + "name": "Meteor", + "arabic_name": "ميتيور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20382, + "fields": { + "id_car_make": 117, + "name": "Monarch", + "arabic_name": "مونارك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20383, + "fields": { + "id_car_make": 117, + "name": "Montclair", + "arabic_name": "مونتكلير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20384, + "fields": { + "id_car_make": 117, + "name": "Park Lane", + "arabic_name": "بارك لين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20385, + "fields": { + "id_car_make": 117, + "name": "S-55", + "arabic_name": "إس-55" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20386, + "fields": { + "id_car_make": 117, + "name": "Turnpike Cruiser", + "arabic_name": "تيرنبايك كروزر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20387, + "fields": { + "id_car_make": 117, + "name": "Voyager", + "arabic_name": "فوييجر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20388, + "fields": { + "id_car_make": 117, + "name": "Zephyr", + "arabic_name": "زيفير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20389, + "fields": { + "id_car_make": 119, + "name": "1100/1300", + "arabic_name": "1100/1300" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20390, + "fields": { + "id_car_make": 119, + "name": "750", + "arabic_name": "750" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20391, + "fields": { + "id_car_make": 119, + "name": "A", + "arabic_name": "أ" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20392, + "fields": { + "id_car_make": 119, + "name": "C", + "arabic_name": "سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20393, + "fields": { + "id_car_make": 119, + "name": "Magnette", + "arabic_name": "ماجنيت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20394, + "fields": { + "id_car_make": 122, + "name": "Cooper", + "arabic_name": "كوبر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20395, + "fields": { + "id_car_make": 122, + "name": "Cooper S", + "arabic_name": "كوبر إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20397, + "fields": { + "id_car_make": 122, + "name": "One", + "arabic_name": "ون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20398, + "fields": { + "id_car_make": 123, + "name": "380", + "arabic_name": "380" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20399, + "fields": { + "id_car_make": 123, + "name": "Adventure", + "arabic_name": "أدفنتشر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20402, + "fields": { + "id_car_make": 123, + "name": "Expo", + "arabic_name": "إكسبو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20403, + "fields": { + "id_car_make": 123, + "name": "Freeca", + "arabic_name": "فريكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20405, + "fields": { + "id_car_make": 123, + "name": "Galant Fortis", + "arabic_name": "جالانت فورتيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20406, + "fields": { + "id_car_make": 123, + "name": "Grunder", + "arabic_name": "جروندر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20407, + "fields": { + "id_car_make": 123, + "name": "L100", + "arabic_name": "إل 100" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20408, + "fields": { + "id_car_make": 123, + "name": "L300", + "arabic_name": "إل 300" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20409, + "fields": { + "id_car_make": 123, + "name": "L400", + "arabic_name": "إل 400" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20411, + "fields": { + "id_car_make": 123, + "name": "Magna", + "arabic_name": "ماجنا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20412, + "fields": { + "id_car_make": 123, + "name": "Magnum", + "arabic_name": "ماجنوم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20413, + "fields": { + "id_car_make": 123, + "name": "Maven", + "arabic_name": "مافين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20414, + "fields": { + "id_car_make": 123, + "name": "Mighty Max", + "arabic_name": "مايتي ماكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20415, + "fields": { + "id_car_make": 123, + "name": "Montero iO", + "arabic_name": "مونتيرو آي أو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20416, + "fields": { + "id_car_make": 123, + "name": "Nimbus", + "arabic_name": "نيمبوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20418, + "fields": { + "id_car_make": 123, + "name": "Precis", + "arabic_name": "بريسيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20419, + "fields": { + "id_car_make": 123, + "name": "Savrin", + "arabic_name": "سافرين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20420, + "fields": { + "id_car_make": 123, + "name": "Scorpion", + "arabic_name": "سكوربيون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20421, + "fields": { + "id_car_make": 123, + "name": "Shogun Pinin", + "arabic_name": "شوجن بينين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20422, + "fields": { + "id_car_make": 123, + "name": "Shogun Sport", + "arabic_name": "شوجن سبورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20423, + "fields": { + "id_car_make": 123, + "name": "Towny", + "arabic_name": "تاوني" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20424, + "fields": { + "id_car_make": 123, + "name": "Verada", + "arabic_name": "فيرادا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20425, + "fields": { + "id_car_make": 123, + "name": "Warrior", + "arabic_name": "واريور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20426, + "fields": { + "id_car_make": 123, + "name": "Zinger", + "arabic_name": "زينجر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20427, + "fields": { + "id_car_make": 124, + "name": "Classic Type F", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20428, + "fields": { + "id_car_make": 127, + "name": "70", + "arabic_name": "70" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20429, + "fields": { + "id_car_make": 127, + "name": "Altra", + "arabic_name": "ألترا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20430, + "fields": { + "id_car_make": 127, + "name": "Aprio", + "arabic_name": "أبريو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20433, + "fields": { + "id_car_make": 127, + "name": "Auster", + "arabic_name": "أوستر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20434, + "fields": { + "id_car_make": 127, + "name": "Axxess", + "arabic_name": "أكسيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20437, + "fields": { + "id_car_make": 127, + "name": "Cherry Cab", + "arabic_name": "تشيري كاب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20438, + "fields": { + "id_car_make": 127, + "name": "Dayz", + "arabic_name": "ديز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20440, + "fields": { + "id_car_make": 127, + "name": "Frontier", + "arabic_name": "فرونتير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20441, + "fields": { + "id_car_make": 127, + "name": "Gazelle", + "arabic_name": "غزال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20443, + "fields": { + "id_car_make": 127, + "name": "Hikari", + "arabic_name": "هيكاري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20444, + "fields": { + "id_car_make": 127, + "name": "Homy", + "arabic_name": "هومي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20445, + "fields": { + "id_car_make": 127, + "name": "Hustler", + "arabic_name": "هاستلر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20446, + "fields": { + "id_car_make": 127, + "name": "Hypermini", + "arabic_name": "هايبرميني" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20448, + "fields": { + "id_car_make": 127, + "name": "Junior", + "arabic_name": "جونيور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20449, + "fields": { + "id_car_make": 127, + "name": "Kix", + "arabic_name": "كيكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20450, + "fields": { + "id_car_make": 127, + "name": "Kubistar", + "arabic_name": "كوبيستار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20451, + "fields": { + "id_car_make": 127, + "name": "Latio", + "arabic_name": "لاتيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20452, + "fields": { + "id_car_make": 127, + "name": "Laurel Spirit", + "arabic_name": "لوريل سبيريت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20453, + "fields": { + "id_car_make": 127, + "name": "Liberta Villa", + "arabic_name": "ليبرتا فيلا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20454, + "fields": { + "id_car_make": 127, + "name": "Livina", + "arabic_name": "ليفينا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20455, + "fields": { + "id_car_make": 127, + "name": "Multi", + "arabic_name": "مولتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20456, + "fields": { + "id_car_make": 127, + "name": "NP200", + "arabic_name": "إن بي 200" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20457, + "fields": { + "id_car_make": 127, + "name": "NV350", + "arabic_name": "إن في 350" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20459, + "fields": { + "id_car_make": 127, + "name": "Paladin", + "arabic_name": "بالادين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20461, + "fields": { + "id_car_make": 127, + "name": "Pintara", + "arabic_name": "بينتارا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20462, + "fields": { + "id_car_make": 127, + "name": "Platina", + "arabic_name": "بلاتينا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20464, + "fields": { + "id_car_make": 127, + "name": "Tsuru", + "arabic_name": "تسورو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20465, + "fields": { + "id_car_make": 127, + "name": "Violet", + "arabic_name": "فيوليت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20466, + "fields": { + "id_car_make": 127, + "name": "Violet Liberta", + "arabic_name": "فيوليت ليبرتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20467, + "fields": { + "id_car_make": 129, + "name": "88", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20468, + "fields": { + "id_car_make": 129, + "name": "Delta 88", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20469, + "fields": { + "id_car_make": 129, + "name": "Deluxe 88", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20470, + "fields": { + "id_car_make": 129, + "name": "Dynamic 88", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20471, + "fields": { + "id_car_make": 129, + "name": "Super 88", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20472, + "fields": { + "id_car_make": 130, + "name": "Arena", + "arabic_name": "أرينا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20473, + "fields": { + "id_car_make": 130, + "name": "Bedford Blitz", + "arabic_name": "بيدفورد بليتز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20474, + "fields": { + "id_car_make": 130, + "name": "Blazer", + "arabic_name": "بليزر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20475, + "fields": { + "id_car_make": 130, + "name": "Cabrio", + "arabic_name": "كابريو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20476, + "fields": { + "id_car_make": 130, + "name": "Calais", + "arabic_name": "كاليس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20478, + "fields": { + "id_car_make": 130, + "name": "Super 6", + "arabic_name": "سوبر 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20479, + "fields": { + "id_car_make": 134, + "name": "Nippa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20480, + "fields": { + "id_car_make": 135, + "name": "302", + "arabic_name": "302" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20481, + "fields": { + "id_car_make": 135, + "name": "401", + "arabic_name": "401" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20483, + "fields": { + "id_car_make": 135, + "name": "Hoggar", + "arabic_name": "هوجار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20486, + "fields": { + "id_car_make": 135, + "name": "Pars", + "arabic_name": "بارز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20487, + "fields": { + "id_car_make": 135, + "name": "Persia", + "arabic_name": "بيرجا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20488, + "fields": { + "id_car_make": 135, + "name": "Roa", + "arabic_name": "روا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20489, + "fields": { + "id_car_make": 138, + "name": "Acadian", + "arabic_name": "أكاديان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20490, + "fields": { + "id_car_make": 138, + "name": "Astre", + "arabic_name": "أستري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20491, + "fields": { + "id_car_make": 138, + "name": "Chieftain", + "arabic_name": "شيفتين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20492, + "fields": { + "id_car_make": 138, + "name": "Executive", + "arabic_name": "إكزكتيف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20493, + "fields": { + "id_car_make": 138, + "name": "Firefly", + "arabic_name": "فايرفلاي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20494, + "fields": { + "id_car_make": 138, + "name": "G3", + "arabic_name": "جي 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20495, + "fields": { + "id_car_make": 138, + "name": "Grand Safari", + "arabic_name": "جراند سفاري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20496, + "fields": { + "id_car_make": 138, + "name": "Grand Ville", + "arabic_name": "جراند فيل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20497, + "fields": { + "id_car_make": 138, + "name": "Laurentian", + "arabic_name": "لورنتيان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20498, + "fields": { + "id_car_make": 138, + "name": "Matiz", + "arabic_name": "ماتيز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20499, + "fields": { + "id_car_make": 138, + "name": "Pathfinder", + "arabic_name": "باثفايندر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20500, + "fields": { + "id_car_make": 138, + "name": "Pursuit", + "arabic_name": "برسوت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20501, + "fields": { + "id_car_make": 138, + "name": "Star Chief", + "arabic_name": "ستار شيف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20502, + "fields": { + "id_car_make": 138, + "name": "Strato Chief", + "arabic_name": "ستراتو شيف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20503, + "fields": { + "id_car_make": 138, + "name": "Streamliner", + "arabic_name": "ستريملينر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20504, + "fields": { + "id_car_make": 138, + "name": "Sunburst", + "arabic_name": "سن بورست" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20505, + "fields": { + "id_car_make": 138, + "name": "Sunrunner", + "arabic_name": "سن رانر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20506, + "fields": { + "id_car_make": 138, + "name": "Super Chief", + "arabic_name": "سوبر شيف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20507, + "fields": { + "id_car_make": 138, + "name": "Torpedo", + "arabic_name": "توربيدو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20508, + "fields": { + "id_car_make": 138, + "name": "Ventura", + "arabic_name": "فينتورا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20509, + "fields": { + "id_car_make": 138, + "name": "Wave", + "arabic_name": "ويف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20510, + "fields": { + "id_car_make": 139, + "name": "912", + "arabic_name": "912" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20511, + "fields": { + "id_car_make": 141, + "name": "Persona 400", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20512, + "fields": { + "id_car_make": 141, + "name": "Saloon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20513, + "fields": { + "id_car_make": 143, + "name": "AM4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20514, + "fields": { + "id_car_make": 143, + "name": "AMV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20515, + "fields": { + "id_car_make": 147, + "name": "3", + "arabic_name": "3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20516, + "fields": { + "id_car_make": 147, + "name": "7", + "arabic_name": "7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20517, + "fields": { + "id_car_make": 147, + "name": "Alliance", + "arabic_name": "أليانس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20518, + "fields": { + "id_car_make": 147, + "name": "Celtaquatre", + "arabic_name": "سيلتاكواتر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20519, + "fields": { + "id_car_make": 147, + "name": "Colorale", + "arabic_name": "كولورال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20520, + "fields": { + "id_car_make": 147, + "name": "Express", + "arabic_name": "إكسبريس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20521, + "fields": { + "id_car_make": 147, + "name": "Juvaquatre", + "arabic_name": "جوفاكواتر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20522, + "fields": { + "id_car_make": 147, + "name": "Le Car", + "arabic_name": "لو كار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20527, + "fields": { + "id_car_make": 147, + "name": "Monaquatre", + "arabic_name": "موناكواتر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20528, + "fields": { + "id_car_make": 147, + "name": "Primaquatre", + "arabic_name": "بريماكواتر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20529, + "fields": { + "id_car_make": 147, + "name": "Pulse", + "arabic_name": "بالس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20530, + "fields": { + "id_car_make": 147, + "name": "Scala", + "arabic_name": "سكالا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20531, + "fields": { + "id_car_make": 147, + "name": "Thalia", + "arabic_name": "ثاليا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20532, + "fields": { + "id_car_make": 147, + "name": "Torino", + "arabic_name": "تورينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20533, + "fields": { + "id_car_make": 149, + "name": "Flying Spur", + "arabic_name": "فلاينج سبير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20534, + "fields": { + "id_car_make": 149, + "name": "Silver Spirit", + "arabic_name": "سيلفر سبيريت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20535, + "fields": { + "id_car_make": 151, + "name": "10", + "arabic_name": "10" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20536, + "fields": { + "id_car_make": 151, + "name": "14", + "arabic_name": "14" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20537, + "fields": { + "id_car_make": 151, + "name": "16", + "arabic_name": "16" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20538, + "fields": { + "id_car_make": 151, + "name": "416i", + "arabic_name": "416 آي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20539, + "fields": { + "id_car_make": 151, + "name": "CityRover", + "arabic_name": "سيتي روفر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20540, + "fields": { + "id_car_make": 151, + "name": "Maestro", + "arabic_name": "مايسترو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20541, + "fields": { + "id_car_make": 151, + "name": "Montego", + "arabic_name": "مونتيغو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20542, + "fields": { + "id_car_make": 151, + "name": "P3", + "arabic_name": "بي 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20543, + "fields": { + "id_car_make": 151, + "name": "P5", + "arabic_name": "بي 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20544, + "fields": { + "id_car_make": 151, + "name": "Quintet", + "arabic_name": "كوينتت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20545, + "fields": { + "id_car_make": 155, + "name": "L-Series", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20546, + "fields": { + "id_car_make": 155, + "name": "S-Series", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20547, + "fields": { + "id_car_make": 157, + "name": "1200/1430 Sport", + "arabic_name": "1200/1430 سبورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20548, + "fields": { + "id_car_make": 157, + "name": "124", + "arabic_name": "124" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20549, + "fields": { + "id_car_make": 157, + "name": "127", + "arabic_name": "127" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20550, + "fields": { + "id_car_make": 157, + "name": "128", + "arabic_name": "128" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20551, + "fields": { + "id_car_make": 157, + "name": "131", + "arabic_name": "131" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20552, + "fields": { + "id_car_make": 157, + "name": "132", + "arabic_name": "132" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20553, + "fields": { + "id_car_make": 157, + "name": "1400", + "arabic_name": "1400" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20554, + "fields": { + "id_car_make": 157, + "name": "1430", + "arabic_name": "1430" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20555, + "fields": { + "id_car_make": 157, + "name": "1500", + "arabic_name": "1500" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20556, + "fields": { + "id_car_make": 157, + "name": "600/800", + "arabic_name": "600/800" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20557, + "fields": { + "id_car_make": 157, + "name": "850", + "arabic_name": "850" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20558, + "fields": { + "id_car_make": 157, + "name": "Inca", + "arabic_name": "إنكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20559, + "fields": { + "id_car_make": 157, + "name": "Panda", + "arabic_name": "باندا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20560, + "fields": { + "id_car_make": 157, + "name": "Ritmo", + "arabic_name": "ريتمو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20561, + "fields": { + "id_car_make": 158, + "name": "CEO", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20562, + "fields": { + "id_car_make": 159, + "name": "1000 MB", + "arabic_name": "1000 إم بي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20563, + "fields": { + "id_car_make": 159, + "name": "105/120/130", + "arabic_name": "105/120/130" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20564, + "fields": { + "id_car_make": 159, + "name": "1201", + "arabic_name": "1201" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20565, + "fields": { + "id_car_make": 159, + "name": "1202", + "arabic_name": "1202" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20567, + "fields": { + "id_car_make": 159, + "name": "440/445/450", + "arabic_name": "440/445/450" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20568, + "fields": { + "id_car_make": 159, + "name": "Forman", + "arabic_name": "فورمان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20569, + "fields": { + "id_car_make": 159, + "name": "Garde", + "arabic_name": "غارد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20572, + "fields": { + "id_car_make": 159, + "name": "VOS", + "arabic_name": "فوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20573, + "fields": { + "id_car_make": 165, + "name": "Istana", + "arabic_name": "إستانا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20574, + "fields": { + "id_car_make": 165, + "name": "Korando Turismo", + "arabic_name": "كوراندو توريزمو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20576, + "fields": { + "id_car_make": 166, + "name": "1000", + "arabic_name": "1000" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20577, + "fields": { + "id_car_make": 166, + "name": "1500", + "arabic_name": "1500" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20578, + "fields": { + "id_car_make": 166, + "name": "Bighorn", + "arabic_name": "بيغ هورن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20579, + "fields": { + "id_car_make": 166, + "name": "BRAT", + "arabic_name": "برات" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20580, + "fields": { + "id_car_make": 166, + "name": "Estratto", + "arabic_name": "إستراتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20581, + "fields": { + "id_car_make": 166, + "name": "FF-1", + "arabic_name": "إف إف-1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20582, + "fields": { + "id_car_make": 166, + "name": "Fiori", + "arabic_name": "فيوري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20583, + "fields": { + "id_car_make": 166, + "name": "Legacy Lancaster", + "arabic_name": "ليجاسي لانكاستر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20584, + "fields": { + "id_car_make": 166, + "name": "Loyale", + "arabic_name": "لويل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20585, + "fields": { + "id_car_make": 166, + "name": "Mini Jumbo", + "arabic_name": "ميني جامبو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20586, + "fields": { + "id_car_make": 166, + "name": "Rex", + "arabic_name": "ريكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20587, + "fields": { + "id_car_make": 166, + "name": "Vortex", + "arabic_name": "فورتكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20588, + "fields": { + "id_car_make": 167, + "name": "APV", + "arabic_name": "إيه بي في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20589, + "fields": { + "id_car_make": 167, + "name": "Beidouxing", + "arabic_name": "بيدوكزينغ" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20590, + "fields": { + "id_car_make": 167, + "name": "Carry", + "arabic_name": "كاري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20591, + "fields": { + "id_car_make": 167, + "name": "Cultus", + "arabic_name": "كالتس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20592, + "fields": { + "id_car_make": 167, + "name": "Cultus Crescent", + "arabic_name": "كالتس كريسينت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20593, + "fields": { + "id_car_make": 167, + "name": "Equator", + "arabic_name": "إيكواتور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20594, + "fields": { + "id_car_make": 167, + "name": "Esteem", + "arabic_name": "إستيم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20595, + "fields": { + "id_car_make": 167, + "name": "Forsa", + "arabic_name": "فورسا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20596, + "fields": { + "id_car_make": 167, + "name": "Fronte", + "arabic_name": "فرونتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20597, + "fields": { + "id_car_make": 167, + "name": "Fun", + "arabic_name": "فن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20598, + "fields": { + "id_car_make": 167, + "name": "Grand Escudo", + "arabic_name": "جراند إسكويدو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20599, + "fields": { + "id_car_make": 167, + "name": "Grand Nomade", + "arabic_name": "جراند نوماد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20600, + "fields": { + "id_car_make": 167, + "name": "Karimun Estilo", + "arabic_name": "كريمن إستيلو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20601, + "fields": { + "id_car_make": 167, + "name": "Khyber", + "arabic_name": "خيبر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20602, + "fields": { + "id_car_make": 167, + "name": "Lapin", + "arabic_name": "لابين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20603, + "fields": { + "id_car_make": 167, + "name": "Margalla", + "arabic_name": "مارغالا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20604, + "fields": { + "id_car_make": 167, + "name": "Mehran", + "arabic_name": "مهران" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20605, + "fields": { + "id_car_make": 167, + "name": "Mighty Boy", + "arabic_name": "مايتي بوي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20606, + "fields": { + "id_car_make": 167, + "name": "Potohar", + "arabic_name": "بوتوهار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20607, + "fields": { + "id_car_make": 167, + "name": "Santana", + "arabic_name": "سانتانا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20608, + "fields": { + "id_car_make": 167, + "name": "SC100", + "arabic_name": "إس سي 100" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20609, + "fields": { + "id_car_make": 167, + "name": "Sidekick", + "arabic_name": "سايدكيك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20611, + "fields": { + "id_car_make": 169, + "name": "Mint", + "arabic_name": "مينت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20612, + "fields": { + "id_car_make": 170, + "name": "Beta", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20613, + "fields": { + "id_car_make": 170, + "name": "T600", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20614, + "fields": { + "id_car_make": 170, + "name": "T603", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20615, + "fields": { + "id_car_make": 170, + "name": "T87", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20616, + "fields": { + "id_car_make": 173, + "name": "Chenglong", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20617, + "fields": { + "id_car_make": 173, + "name": "Dragon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20618, + "fields": { + "id_car_make": 175, + "name": "Albea", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20619, + "fields": { + "id_car_make": 175, + "name": "Brava", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20620, + "fields": { + "id_car_make": 175, + "name": "Bravo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20621, + "fields": { + "id_car_make": 175, + "name": "Doblo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20622, + "fields": { + "id_car_make": 175, + "name": "Palio", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20623, + "fields": { + "id_car_make": 175, + "name": "Siena", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20624, + "fields": { + "id_car_make": 175, + "name": "Tempra", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20625, + "fields": { + "id_car_make": 175, + "name": "Tipo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20626, + "fields": { + "id_car_make": 175, + "name": "UNO", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20627, + "fields": { + "id_car_make": 176, + "name": "AA", + "arabic_name": "إيه إيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20628, + "fields": { + "id_car_make": 176, + "name": "AB", + "arabic_name": "إيه بي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20629, + "fields": { + "id_car_make": 176, + "name": "AE", + "arabic_name": "إيه إي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20630, + "fields": { + "id_car_make": 176, + "name": "Agya", + "arabic_name": "أغيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20631, + "fields": { + "id_car_make": 176, + "name": "Aqua", + "arabic_name": "أكوا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20632, + "fields": { + "id_car_make": 176, + "name": "Avanza", + "arabic_name": "أفانزا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20633, + "fields": { + "id_car_make": 176, + "name": "Briska", + "arabic_name": "بريسكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20634, + "fields": { + "id_car_make": 176, + "name": "Carri", + "arabic_name": "كاري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20635, + "fields": { + "id_car_make": 176, + "name": "Classic", + "arabic_name": "كلاسيك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20636, + "fields": { + "id_car_make": 176, + "name": "Comfort", + "arabic_name": "كومفورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20637, + "fields": { + "id_car_make": 176, + "name": "Condor", + "arabic_name": "كوندور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20639, + "fields": { + "id_car_make": 176, + "name": "Corolla Ceres", + "arabic_name": "كورولا سيريس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20640, + "fields": { + "id_car_make": 176, + "name": "Corolla Levin", + "arabic_name": "كورولا ليفين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20641, + "fields": { + "id_car_make": 176, + "name": "Corona EXiV", + "arabic_name": "كورونا إكسيف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20643, + "fields": { + "id_car_make": 176, + "name": "Etios", + "arabic_name": "إيتيوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20644, + "fields": { + "id_car_make": 176, + "name": "Kijang", + "arabic_name": "كيجانغ" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20645, + "fields": { + "id_car_make": 176, + "name": "Lexcen", + "arabic_name": "ليكزين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20647, + "fields": { + "id_car_make": 176, + "name": "MasterAce", + "arabic_name": "ماستر إيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20648, + "fields": { + "id_car_make": 176, + "name": "MiniAce", + "arabic_name": "ميني إيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20649, + "fields": { + "id_car_make": 176, + "name": "Model F", + "arabic_name": "موديل إف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20650, + "fields": { + "id_car_make": 176, + "name": "MR-S", + "arabic_name": "إم آر-إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20651, + "fields": { + "id_car_make": 176, + "name": "Prius a", + "arabic_name": "بريوس ايه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20652, + "fields": { + "id_car_make": 176, + "name": "Prius Plus", + "arabic_name": "بريوس بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20653, + "fields": { + "id_car_make": 176, + "name": "Publica", + "arabic_name": "بوبليكا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20654, + "fields": { + "id_car_make": 176, + "name": "Quantum", + "arabic_name": "كوانتوم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20655, + "fields": { + "id_car_make": 176, + "name": "Reiz", + "arabic_name": "ريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20656, + "fields": { + "id_car_make": 176, + "name": "Rukus", + "arabic_name": "روكوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20657, + "fields": { + "id_car_make": 176, + "name": "Space Cruiser", + "arabic_name": "سبيس كروزر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20658, + "fields": { + "id_car_make": 176, + "name": "Sports 800", + "arabic_name": "سبورتس 800" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20659, + "fields": { + "id_car_make": 176, + "name": "Stallion", + "arabic_name": "ستاليون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20660, + "fields": { + "id_car_make": 176, + "name": "Stout", + "arabic_name": "ستاوت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20661, + "fields": { + "id_car_make": 176, + "name": "Super", + "arabic_name": "سوبر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20662, + "fields": { + "id_car_make": 176, + "name": "T100", + "arabic_name": "تي١٠٠" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20663, + "fields": { + "id_car_make": 176, + "name": "Tamaraw FX", + "arabic_name": "تامارا إف إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20664, + "fields": { + "id_car_make": 176, + "name": "Tarago", + "arabic_name": "تاراغو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20665, + "fields": { + "id_car_make": 176, + "name": "Tazz", + "arabic_name": "تاز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20666, + "fields": { + "id_car_make": 176, + "name": "Tiara", + "arabic_name": "تيارا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20668, + "fields": { + "id_car_make": 176, + "name": "Unser", + "arabic_name": "أنسر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20670, + "fields": { + "id_car_make": 176, + "name": "Venture", + "arabic_name": "فينتشر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20671, + "fields": { + "id_car_make": 176, + "name": "Vienta", + "arabic_name": "فيينتا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20672, + "fields": { + "id_car_make": 176, + "name": "Will VS", + "arabic_name": "ويل في إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20673, + "fields": { + "id_car_make": 176, + "name": "Zace", + "arabic_name": "زايس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20674, + "fields": { + "id_car_make": 176, + "name": "Zelas", + "arabic_name": "زيلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20675, + "fields": { + "id_car_make": 184, + "name": "Brasilia", + "arabic_name": "برازيليا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20676, + "fields": { + "id_car_make": 184, + "name": "Citi Golf", + "arabic_name": "سيتي غولف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20677, + "fields": { + "id_car_make": 184, + "name": "Clasico", + "arabic_name": "كلاسيكو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20678, + "fields": { + "id_car_make": 184, + "name": "Country Buggy", + "arabic_name": "كانتري باغي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20681, + "fields": { + "id_car_make": 184, + "name": "Lavida", + "arabic_name": "لافيدا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20683, + "fields": { + "id_car_make": 184, + "name": "Magotan", + "arabic_name": "ماغوتان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20685, + "fields": { + "id_car_make": 184, + "name": "Parati", + "arabic_name": "باراتاي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20686, + "fields": { + "id_car_make": 184, + "name": "Quantum", + "arabic_name": "كوانتوم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20687, + "fields": { + "id_car_make": 184, + "name": "Rabbit", + "arabic_name": "رابيت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20688, + "fields": { + "id_car_make": 184, + "name": "Sagitar", + "arabic_name": "ساجيتار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20689, + "fields": { + "id_car_make": 184, + "name": "Saveiro", + "arabic_name": "سافيرو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20690, + "fields": { + "id_car_make": 184, + "name": "SP2", + "arabic_name": "إس بي 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20691, + "fields": { + "id_car_make": 184, + "name": "Suran", + "arabic_name": "سوران" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20692, + "fields": { + "id_car_make": 184, + "name": "Voyage", + "arabic_name": "فوييج" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20693, + "fields": { + "id_car_make": 185, + "name": "340", + "arabic_name": "340" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20694, + "fields": { + "id_car_make": 185, + "name": "360", + "arabic_name": "360" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20695, + "fields": { + "id_car_make": 185, + "name": "Amazon", + "arabic_name": "أمازون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20696, + "fields": { + "id_car_make": 185, + "name": "Duett", + "arabic_name": "دويت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20697, + "fields": { + "id_car_make": 185, + "name": "P1800", + "arabic_name": "بي 1800" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20698, + "fields": { + "id_car_make": 185, + "name": "PV444/544", + "arabic_name": "بي في 444/544" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20699, + "fields": { + "id_car_make": 185, + "name": "PV60", + "arabic_name": "بي في 60" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20700, + "fields": { + "id_car_make": 188, + "name": "Megabusa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20701, + "fields": { + "id_car_make": 189, + "name": "MF3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20702, + "fields": { + "id_car_make": 216, + "name": "13 Chaika", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20703, + "fields": { + "id_car_make": 216, + "name": "14 Chaika", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20705, + "fields": { + "id_car_make": 216, + "name": "21 Volga", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20706, + "fields": { + "id_car_make": 216, + "name": "24 Volga", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20707, + "fields": { + "id_car_make": 216, + "name": "310221 Volga", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20708, + "fields": { + "id_car_make": 216, + "name": "31029 Volga", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20709, + "fields": { + "id_car_make": 216, + "name": "3102 Volga", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20710, + "fields": { + "id_car_make": 216, + "name": "3105 Volga", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20711, + "fields": { + "id_car_make": 216, + "name": "31105 Volga", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20712, + "fields": { + "id_car_make": 216, + "name": "3110 Volga", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20719, + "fields": { + "id_car_make": 216, + "name": "M-1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20720, + "fields": { + "id_car_make": 216, + "name": "M-12 ZiM", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20721, + "fields": { + "id_car_make": 216, + "name": "M-20 Pobeda", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20722, + "fields": { + "id_car_make": 216, + "name": "Sobol", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20723, + "fields": { + "id_car_make": 217, + "name": "Lanos", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20724, + "fields": { + "id_car_make": 218, + "name": "110", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20726, + "fields": { + "id_car_make": 219, + "name": "21261", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20727, + "fields": { + "id_car_make": 219, + "name": "2715", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20728, + "fields": { + "id_car_make": 219, + "name": "27175", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20732, + "fields": { + "id_car_make": 223, + "name": "2315", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20733, + "fields": { + "id_car_make": 223, + "name": "2335", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20737, + "fields": { + "id_car_make": 224, + "name": "Moto stroller", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20746, + "fields": { + "id_car_make": 227, + "name": "3909", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20749, + "fields": { + "id_car_make": 227, + "name": "452", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20750, + "fields": { + "id_car_make": 291, + "name": "Roadster V8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20751, + "fields": { + "id_car_make": 286, + "name": "Saloon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20752, + "fields": { + "id_car_make": 3749, + "name": "3000", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20756, + "fields": { + "id_car_make": 32, + "name": "BenBen Mini", + "arabic_name": "بينبين ميني" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20758, + "fields": { + "id_car_make": 3753, + "name": "Ideal", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20759, + "fields": { + "id_car_make": 3754, + "name": "V21", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20760, + "fields": { + "id_car_make": 3754, + "name": "V22", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20761, + "fields": { + "id_car_make": 3754, + "name": "V25", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20762, + "fields": { + "id_car_make": 3755, + "name": "MPV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20763, + "fields": { + "id_car_make": 3755, + "name": "MS-6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20764, + "fields": { + "id_car_make": 3755, + "name": "MS-8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20765, + "fields": { + "id_car_make": 3755, + "name": "MS-9", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20766, + "fields": { + "id_car_make": 3755, + "name": "RX-7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20767, + "fields": { + "id_car_make": 3756, + "name": "Series V", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20769, + "fields": { + "id_car_make": 3757, + "name": "Bliss", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20770, + "fields": { + "id_car_make": 3757, + "name": "Dacota", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20771, + "fields": { + "id_car_make": 3757, + "name": "Fox", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20773, + "fields": { + "id_car_make": 3757, + "name": "Rocky", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20774, + "fields": { + "id_car_make": 3757, + "name": "Shuttle", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20775, + "fields": { + "id_car_make": 3757, + "name": "Target", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20776, + "fields": { + "id_car_make": 3757, + "name": "Vertus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20781, + "fields": { + "id_car_make": 3760, + "name": "Albaycín", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20782, + "fields": { + "id_car_make": 3761, + "name": "Alto", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20783, + "fields": { + "id_car_make": 3761, + "name": "Chuanqi", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20784, + "fields": { + "id_car_make": 3761, + "name": "City Spirit", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20785, + "fields": { + "id_car_make": 3762, + "name": "Haise", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20788, + "fields": { + "id_car_make": 3765, + "name": "GTB Centenaire", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20790, + "fields": { + "id_car_make": 3767, + "name": "522", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20793, + "fields": { + "id_car_make": 3771, + "name": "E-Car", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20794, + "fields": { + "id_car_make": 3772, + "name": "Maple Hysoul", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20795, + "fields": { + "id_car_make": 3772, + "name": "Maple Marindo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20797, + "fields": { + "id_car_make": 3774, + "name": "Sunshine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20798, + "fields": { + "id_car_make": 3774, + "name": "Xingwang", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20810, + "fields": { + "id_car_make": 129, + "name": "98", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20934, + "fields": { + "id_car_make": 35, + "name": "SS", + "arabic_name": "إس إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20938, + "fields": { + "id_car_make": 189, + "name": "GT MF4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20939, + "fields": { + "id_car_make": 216, + "name": "233001 Tigr", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20941, + "fields": { + "id_car_make": 52, + "name": "AX3", + "arabic_name": "إيه إكس 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20942, + "fields": { + "id_car_make": 61, + "name": "Fullback", + "arabic_name": "فولباك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20945, + "fields": { + "id_car_make": 159, + "name": "Kodiaq", + "arabic_name": "كودياك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20949, + "fields": { + "id_car_make": 52, + "name": "A30", + "arabic_name": "إيه 30" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20950, + "fields": { + "id_car_make": 52, + "name": "A60", + "arabic_name": "إيه 60" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20951, + "fields": { + "id_car_make": 59, + "name": "D60", + "arabic_name": "دي60" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20958, + "fields": { + "id_car_make": 184, + "name": "Dune Buggy", + "arabic_name": "ديون باغي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20959, + "fields": { + "id_car_make": 3689, + "name": "R4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20961, + "fields": { + "id_car_make": 63, + "name": "M151", + "arabic_name": "إم151" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20962, + "fields": { + "id_car_make": 64, + "name": "Sauvana", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20964, + "fields": { + "id_car_make": 169, + "name": "Telcoline", + "arabic_name": "تيلكو لاين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20965, + "fields": { + "id_car_make": 3756, + "name": "Series IV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20966, + "fields": { + "id_car_make": 101, + "name": "MyWay", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20976, + "fields": { + "id_car_make": 282, + "name": "B21", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20977, + "fields": { + "id_car_make": 3815, + "name": "G90", + "arabic_name": "جي 90" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20979, + "fields": { + "id_car_make": 95, + "name": "Centenario", + "arabic_name": "سنتيناريو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20980, + "fields": { + "id_car_make": 149, + "name": "Dawn", + "arabic_name": "دون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20981, + "fields": { + "id_car_make": 176, + "name": "C-HR", + "arabic_name": "سي إتش آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20982, + "fields": { + "id_car_make": 184, + "name": "Atlas", + "arabic_name": "أطلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20984, + "fields": { + "id_car_make": 3821, + "name": "MK2", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20991, + "fields": { + "id_car_make": 3822, + "name": "Other cars", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20992, + "fields": { + "id_car_make": 3822, + "name": "Other russian machines", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20993, + "fields": { + "id_car_make": 3822, + "name": "Self collected", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20994, + "fields": { + "id_car_make": 3, + "name": "Stelvio", + "arabic_name": "ستيلفيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20995, + "fields": { + "id_car_make": 63, + "name": "Tourneo", + "arabic_name": "تورنو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20996, + "fields": { + "id_car_make": 85, + "name": "Filly", + "arabic_name": "فيلي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20997, + "fields": { + "id_car_make": 97, + "name": "Range Rover Velar", + "arabic_name": "رينج روفر فيلار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 20998, + "fields": { + "id_car_make": 123, + "name": "Eclipse Cross", + "arabic_name": "إكليبس كروس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 21000, + "fields": { + "id_car_make": 123, + "name": "Fuzion", + "arabic_name": "فيوجن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 21001, + "fields": { + "id_car_make": 184, + "name": "Arteon", + "arabic_name": "أرتيون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 21002, + "fields": { + "id_car_make": 3589, + "name": "7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 21004, + "fields": { + "id_car_make": 60, + "name": "812 Superfast", + "arabic_name": "812 سوبرفاست" + } +}, +{ + "model": "inventory.carmodel", + "pk": 21005, + "fields": { + "id_car_make": 92, + "name": "Stinger", + "arabic_name": "ستينجر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 21006, + "fields": { + "id_car_make": 184, + "name": "Teramont", + "arabic_name": "تيرامونت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22340, + "fields": { + "id_car_make": 34, + "name": "Tiggo 2", + "arabic_name": "تيجو 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22341, + "fields": { + "id_car_make": 34, + "name": "Tiggo 3", + "arabic_name": "تيجو 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22342, + "fields": { + "id_car_make": 37, + "name": "C5 AirCross", + "arabic_name": "سي 5 إيركروس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22343, + "fields": { + "id_car_make": 52, + "name": "580", + "arabic_name": "580" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22345, + "fields": { + "id_car_make": 95, + "name": "Urus", + "arabic_name": "أوروس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22346, + "fields": { + "id_car_make": 159, + "name": "Karoq", + "arabic_name": "كاروك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22347, + "fields": { + "id_car_make": 227, + "name": "3128 \"Astero\"", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22348, + "fields": { + "id_car_make": 3676, + "name": "BX5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22349, + "fields": { + "id_car_make": 3676, + "name": "BX7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22350, + "fields": { + "id_car_make": 3815, + "name": "G80", + "arabic_name": "جي 80" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22409, + "fields": { + "id_car_make": 37, + "name": "C3 AirCross", + "arabic_name": "سي 3 إيركروس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22410, + "fields": { + "id_car_make": 79, + "name": "Kona", + "arabic_name": "كونا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22411, + "fields": { + "id_car_make": 92, + "name": "Stonic", + "arabic_name": "ستونيك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22412, + "fields": { + "id_car_make": 101, + "name": "Murman", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22413, + "fields": { + "id_car_make": 34, + "name": "Tiggo 7", + "arabic_name": "تيجو 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22414, + "fields": { + "id_car_make": 37, + "name": "SpaceTourer", + "arabic_name": "سبايس تورر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22416, + "fields": { + "id_car_make": 67, + "name": "Atlas", + "arabic_name": "أطلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22417, + "fields": { + "id_car_make": 88, + "name": "E-Pace", + "arabic_name": "إي-بيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22418, + "fields": { + "id_car_make": 116, + "name": "X-Class", + "arabic_name": "إكس-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22419, + "fields": { + "id_car_make": 166, + "name": "Exiga Crossover 7", + "arabic_name": "إكزيجا كروس أوفر 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22420, + "fields": { + "id_car_make": 172, + "name": "Model 3", + "arabic_name": "موديل 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22421, + "fields": { + "id_car_make": 176, + "name": "Esquire", + "arabic_name": "إسكواير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22422, + "fields": { + "id_car_make": 4142, + "name": "1500", + "arabic_name": "1500" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22439, + "fields": { + "id_car_make": 60, + "name": "Portofino", + "arabic_name": "بورتوفينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22444, + "fields": { + "id_car_make": 147, + "name": "Alaskan", + "arabic_name": "ألاسكان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22445, + "fields": { + "id_car_make": 184, + "name": "T-Roc", + "arabic_name": "تي-روك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22458, + "fields": { + "id_car_make": 101, + "name": "X70", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22459, + "fields": { + "id_car_make": 130, + "name": "Crossland X", + "arabic_name": "كروس لاند إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22460, + "fields": { + "id_car_make": 130, + "name": "Grandland X", + "arabic_name": "جراند لاند إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22461, + "fields": { + "id_car_make": 137, + "name": "Reliant", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22462, + "fields": { + "id_car_make": 185, + "name": "XC40", + "arabic_name": "إكس سي 40" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22463, + "fields": { + "id_car_make": 282, + "name": "Laville", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22464, + "fields": { + "id_car_make": 3815, + "name": "G70", + "arabic_name": "جي 70" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22467, + "fields": { + "id_car_make": 18, + "name": "X2", + "arabic_name": "إكس 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22472, + "fields": { + "id_car_make": 21, + "name": "V3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22473, + "fields": { + "id_car_make": 64, + "name": "Gratour", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22474, + "fields": { + "id_car_make": 67, + "name": "Emgrand EC7", + "arabic_name": "إمجراند إي سي7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22475, + "fields": { + "id_car_make": 67, + "name": "Emgrand GT", + "arabic_name": "إمجراند جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22476, + "fields": { + "id_car_make": 88, + "name": "I-Pace", + "arabic_name": "آي-بيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22477, + "fields": { + "id_car_make": 99, + "name": "UX", + "arabic_name": "يو إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22478, + "fields": { + "id_car_make": 135, + "name": "Rifter", + "arabic_name": "ريفتر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22479, + "fields": { + "id_car_make": 28, + "name": "XT4", + "arabic_name": "إكس تي 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22480, + "fields": { + "id_car_make": 113, + "name": "Flair Crossover", + "arabic_name": "فلير كروس أوفر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22481, + "fields": { + "id_car_make": 167, + "name": "Hustler", + "arabic_name": "هاستلر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22482, + "fields": { + "id_car_make": 105, + "name": "6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22483, + "fields": { + "id_car_make": 8, + "name": "Topic", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22484, + "fields": { + "id_car_make": 32, + "name": "CM8", + "arabic_name": "سي إم8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22485, + "fields": { + "id_car_make": 123, + "name": "eK", + "arabic_name": "إي كي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22486, + "fields": { + "id_car_make": 149, + "name": "Cullinan", + "arabic_name": "كولينان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22487, + "fields": { + "id_car_make": 184, + "name": "Tharu", + "arabic_name": "ثارو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22488, + "fields": { + "id_car_make": 10, + "name": "Q8", + "arabic_name": "كيو 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22490, + "fields": { + "id_car_make": 76, + "name": "Jade", + "arabic_name": "جيد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22491, + "fields": { + "id_car_make": 216, + "name": "64", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22492, + "fields": { + "id_car_make": 32, + "name": "Chana SM8", + "arabic_name": "تشانا إس إم٨" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22493, + "fields": { + "id_car_make": 87, + "name": "T6", + "arabic_name": "تي 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22494, + "fields": { + "id_car_make": 216, + "name": "22 Volga", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22511, + "fields": { + "id_car_make": 67, + "name": "GS", + "arabic_name": "جي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22512, + "fields": { + "id_car_make": 67, + "name": "SX11", + "arabic_name": "إس إكس ١١" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22513, + "fields": { + "id_car_make": 76, + "name": "N-Series", + "arabic_name": "إن-سيريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22514, + "fields": { + "id_car_make": 79, + "name": "Ioniq", + "arabic_name": "أيونك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22515, + "fields": { + "id_car_make": 101, + "name": "X80", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22516, + "fields": { + "id_car_make": 147, + "name": "Arkana", + "arabic_name": "أركانا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22517, + "fields": { + "id_car_make": 290, + "name": "F7", + "arabic_name": "إف 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22518, + "fields": { + "id_car_make": 4144, + "name": "Senat", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22524, + "fields": { + "id_car_make": 4146, + "name": "124 GT", + "arabic_name": "124 جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22525, + "fields": { + "id_car_make": 4146, + "name": "124 Spider", + "arabic_name": "124 سبايدر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22526, + "fields": { + "id_car_make": 4146, + "name": "124 Spider Turismo", + "arabic_name": "124 سبايدر توريزمو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22527, + "fields": { + "id_car_make": 4146, + "name": "595", + "arabic_name": "595" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22528, + "fields": { + "id_car_make": 4146, + "name": "595 Competizione", + "arabic_name": "595 كومبيتيزيوني" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22529, + "fields": { + "id_car_make": 4146, + "name": "595 Pista", + "arabic_name": "595 بيستا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22530, + "fields": { + "id_car_make": 4146, + "name": "595 Turismo", + "arabic_name": "595 توريزمو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22531, + "fields": { + "id_car_make": 4146, + "name": "695 Biposto", + "arabic_name": "695 بيبوستو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22532, + "fields": { + "id_car_make": 4146, + "name": "695 Rivale", + "arabic_name": "695 ريفالي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22533, + "fields": { + "id_car_make": 4146, + "name": "695 XSR Yamaha", + "arabic_name": "695 إكس إس آر ياماها" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22534, + "fields": { + "id_car_make": 24, + "name": "Divo", + "arabic_name": "ديفو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22535, + "fields": { + "id_car_make": 114, + "name": "720S", + "arabic_name": "720 إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22538, + "fields": { + "id_car_make": 114, + "name": "600LT", + "arabic_name": "600 إل تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22539, + "fields": { + "id_car_make": 114, + "name": "Senna", + "arabic_name": "سينا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22540, + "fields": { + "id_car_make": 95, + "name": "Egoista I", + "arabic_name": "إيغويستا 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22541, + "fields": { + "id_car_make": 4146, + "name": "207A Boano Spyder Corsa", + "arabic_name": "207 إيه بوانو سبايدر كورسا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22542, + "fields": { + "id_car_make": 4146, + "name": "750 GT Zagato", + "arabic_name": "750 جي تي زاغاتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22543, + "fields": { + "id_car_make": 4146, + "name": "1000 SP", + "arabic_name": "1000 إس بي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22544, + "fields": { + "id_car_make": 4146, + "name": "2000 Pininfarina", + "arabic_name": "2000 بينينفارينا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22545, + "fields": { + "id_car_make": 4146, + "name": "2000 SE027", + "arabic_name": "2000 إس إي 027" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22546, + "fields": { + "id_car_make": 4146, + "name": "131 Rally", + "arabic_name": "131 رالي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22547, + "fields": { + "id_car_make": 4146, + "name": "Lancia Rally 037 Stradale", + "arabic_name": "لانشيا رالي 037 سترادالي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22548, + "fields": { + "id_car_make": 4146, + "name": "Lancia Delta S4 Stradale (SE038)", + "arabic_name": "لانشيا دلتا إس 4 سترادالي (إس إي 038)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22549, + "fields": { + "id_car_make": 4146, + "name": "500 Pogea Racing Ares", + "arabic_name": "500 بوجيا ريسينغ أريس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22550, + "fields": { + "id_car_make": 226, + "name": "Estina", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22551, + "fields": { + "id_car_make": 226, + "name": "Tingo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22552, + "fields": { + "id_car_make": 226, + "name": "Corda", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22554, + "fields": { + "id_car_make": 95, + "name": "350/400 GT", + "arabic_name": "350/400 جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22556, + "fields": { + "id_car_make": 10, + "name": "Q8 I", + "arabic_name": "كيو 8 آي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22557, + "fields": { + "id_car_make": 61, + "name": "Fullback I", + "arabic_name": "فولباك آي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22558, + "fields": { + "id_car_make": 10, + "name": "e-tron", + "arabic_name": "إي-ترون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22560, + "fields": { + "id_car_make": 18, + "name": "X7", + "arabic_name": "إكس 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22561, + "fields": { + "id_car_make": 76, + "name": "Grace", + "arabic_name": "جريس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22562, + "fields": { + "id_car_make": 192, + "name": "T300", + "arabic_name": "تي 300" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22563, + "fields": { + "id_car_make": 37, + "name": "C4 Spacetourer", + "arabic_name": "سي 4 سبايس تورر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22564, + "fields": { + "id_car_make": 52, + "name": "AX4", + "arabic_name": "إيه إكس 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22565, + "fields": { + "id_car_make": 79, + "name": "Palisade", + "arabic_name": "باليسايد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22566, + "fields": { + "id_car_make": 116, + "name": "EQC", + "arabic_name": "إي كيو سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22567, + "fields": { + "id_car_make": 123, + "name": "XPANDER", + "arabic_name": "إكسباندر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22568, + "fields": { + "id_car_make": 157, + "name": "Arona", + "arabic_name": "أرونا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22569, + "fields": { + "id_car_make": 167, + "name": "Ciaz", + "arabic_name": "سياز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22570, + "fields": { + "id_car_make": 184, + "name": "Tayron", + "arabic_name": "تايرون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22571, + "fields": { + "id_car_make": 184, + "name": "T-Cross", + "arabic_name": "تي كروس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22572, + "fields": { + "id_car_make": 192, + "name": "T700", + "arabic_name": "تي 700" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22573, + "fields": { + "id_car_make": 3664, + "name": "Diplomat", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22574, + "fields": { + "id_car_make": 26, + "name": "F3-R", + "arabic_name": "إف 3 آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22577, + "fields": { + "id_car_make": 184, + "name": "Variant VII", + "arabic_name": "فاريانت VII" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22578, + "fields": { + "id_car_make": 67, + "name": "Emgrand", + "arabic_name": "إمجراند" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22579, + "fields": { + "id_car_make": 4147, + "name": "Beijing BJ80", + "arabic_name": "بكين بي جي 80" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22580, + "fields": { + "id_car_make": 4147, + "name": "A1", + "arabic_name": "إيه 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22581, + "fields": { + "id_car_make": 4147, + "name": "BJ212", + "arabic_name": "بي جي 212" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22582, + "fields": { + "id_car_make": 4147, + "name": "EU260", + "arabic_name": "إي يو 260" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22583, + "fields": { + "id_car_make": 4147, + "name": "Jeep Cherokee 2500", + "arabic_name": "جيب شيروكي 2500" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22584, + "fields": { + "id_car_make": 4147, + "name": "Luba (XB624)", + "arabic_name": "لوبا (إكس بي 624)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22585, + "fields": { + "id_car_make": 4147, + "name": "Beijing BJ20", + "arabic_name": "بكين بي جي 20" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22586, + "fields": { + "id_car_make": 4147, + "name": "ES 210", + "arabic_name": "إي إس 210" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22587, + "fields": { + "id_car_make": 4147, + "name": "Huansu H2", + "arabic_name": "هوانسو إتش 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22588, + "fields": { + "id_car_make": 4147, + "name": "Huansu S2", + "arabic_name": "هوانسو إس 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22589, + "fields": { + "id_car_make": 4147, + "name": "Huansu S3", + "arabic_name": "هوانسو إس 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22590, + "fields": { + "id_car_make": 4147, + "name": "Huansu S5", + "arabic_name": "هوانسو إس 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22591, + "fields": { + "id_car_make": 4147, + "name": "Senova", + "arabic_name": "سينوفا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22592, + "fields": { + "id_car_make": 34, + "name": "Tiggo 4", + "arabic_name": "تيجو 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22593, + "fields": { + "id_car_make": 59, + "name": "Besturn X40", + "arabic_name": "بيسترن إكس40" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22594, + "fields": { + "id_car_make": 87, + "name": "S7", + "arabic_name": "إس 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22595, + "fields": { + "id_car_make": 14, + "name": "BJ 2021", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22596, + "fields": { + "id_car_make": 136, + "name": "Grand Espace", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22597, + "fields": { + "id_car_make": 136, + "name": "Grand Scenic", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22598, + "fields": { + "id_car_make": 136, + "name": "Grand C4 Picasso", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22600, + "fields": { + "id_car_make": 176, + "name": "Avensis T27", + "arabic_name": "أفينسيس تي27" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22601, + "fields": { + "id_car_make": 147, + "name": "Grand Espace", + "arabic_name": "جراند إسباس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22602, + "fields": { + "id_car_make": 18, + "name": "X3 M", + "arabic_name": "إكس 3 إم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22603, + "fields": { + "id_car_make": 18, + "name": "X4 M", + "arabic_name": "إكس 4 إم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22604, + "fields": { + "id_car_make": 67, + "name": "FY11", + "arabic_name": "إف واي11" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22605, + "fields": { + "id_car_make": 123, + "name": "Delica D:2", + "arabic_name": "ديليكا دي:2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22611, + "fields": { + "id_car_make": 123, + "name": "Delica D:3", + "arabic_name": "ديليكا دي:3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22612, + "fields": { + "id_car_make": 166, + "name": "Ascent", + "arabic_name": "أسينت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22618, + "fields": { + "id_car_make": 217, + "name": "ZAZ Tavria Nova (1102)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22619, + "fields": { + "id_car_make": 215, + "name": "21213", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22620, + "fields": { + "id_car_make": 61, + "name": "Grande Punto", + "arabic_name": "جراند بونتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22621, + "fields": { + "id_car_make": 215, + "name": "21093 ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22622, + "fields": { + "id_car_make": 151, + "name": "400", + "arabic_name": "400" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22623, + "fields": { + "id_car_make": 151, + "name": "200", + "arabic_name": "200" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22624, + "fields": { + "id_car_make": 141, + "name": "Persona ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22625, + "fields": { + "id_car_make": 181, + "name": "Ampera", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22626, + "fields": { + "id_car_make": 181, + "name": "Antara", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22627, + "fields": { + "id_car_make": 181, + "name": " Arena", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22628, + "fields": { + "id_car_make": 181, + "name": " Cascada", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22629, + "fields": { + "id_car_make": 181, + "name": "Crossland X", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22630, + "fields": { + "id_car_make": 181, + "name": "Firenza", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22631, + "fields": { + "id_car_make": 181, + "name": "Insignia", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22632, + "fields": { + "id_car_make": 181, + "name": "Karl", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22633, + "fields": { + "id_car_make": 181, + "name": "Meriva", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22634, + "fields": { + "id_car_make": 181, + "name": "Mokka", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22635, + "fields": { + "id_car_make": 181, + "name": "Monaro", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22636, + "fields": { + "id_car_make": 181, + "name": "Movano", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22637, + "fields": { + "id_car_make": 181, + "name": " Signum", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22638, + "fields": { + "id_car_make": 181, + "name": "Vivaro", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22639, + "fields": { + "id_car_make": 181, + "name": "VX220", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22645, + "fields": { + "id_car_make": 181, + "name": "Signum ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22646, + "fields": { + "id_car_make": 116, + "name": "S-klas (w126)", + "arabic_name": "إس-كلاس (دبليو 126)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22649, + "fields": { + "id_car_make": 60, + "name": "F8 Tributo", + "arabic_name": "إف 8 تريبوتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22651, + "fields": { + "id_car_make": 113, + "name": "CX-30", + "arabic_name": "سي إكس-30" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22655, + "fields": { + "id_car_make": 159, + "name": "Kamiq", + "arabic_name": "كامي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22660, + "fields": { + "id_car_make": 92, + "name": "Telluride", + "arabic_name": "تيلورايد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22667, + "fields": { + "id_car_make": 172, + "name": "Model Y", + "arabic_name": "موديل واي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22668, + "fields": { + "id_car_make": 28, + "name": "CT5", + "arabic_name": "سي تي 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22669, + "fields": { + "id_car_make": 99, + "name": "LM", + "arabic_name": "إل إم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22671, + "fields": { + "id_car_make": 127, + "name": "Kicks", + "arabic_name": "كيكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22676, + "fields": { + "id_car_make": 184, + "name": "Passat Variant", + "arabic_name": "باسات فاريانت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22677, + "fields": { + "id_car_make": 63, + "name": "Street KA", + "arabic_name": "ستريت كيه إيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22678, + "fields": { + "id_car_make": 18, + "name": "M8", + "arabic_name": "إم 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22679, + "fields": { + "id_car_make": 60, + "name": "SF90 Stradale", + "arabic_name": "إس إف 90 سترادالي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22680, + "fields": { + "id_car_make": 92, + "name": "Seltos", + "arabic_name": "سيلتوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22683, + "fields": { + "id_car_make": 3705, + "name": "Rambler Classic", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22684, + "fields": { + "id_car_make": 114, + "name": "GT", + "arabic_name": "جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22746, + "fields": { + "id_car_make": 28, + "name": "XT6", + "arabic_name": "إكس تي 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22747, + "fields": { + "id_car_make": 99, + "name": "GX460", + "arabic_name": "جي إكس460" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22748, + "fields": { + "id_car_make": 215, + "name": "Granta Drive Active", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22771, + "fields": { + "id_car_make": 116, + "name": "GLB-Class", + "arabic_name": "جي إل بي-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22774, + "fields": { + "id_car_make": 10, + "name": "A6 allroad", + "arabic_name": "إيه 6 أولرود" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22775, + "fields": { + "id_car_make": 10, + "name": "Q3 Sportback", + "arabic_name": "كيو 3 سبورتباك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22776, + "fields": { + "id_car_make": 10, + "name": "RS Q3 Sportback", + "arabic_name": "آر إس كيو 3 سبورتباك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22777, + "fields": { + "id_car_make": 10, + "name": "SQ2", + "arabic_name": "إس كيو 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22778, + "fields": { + "id_car_make": 10, + "name": "SQ8", + "arabic_name": "إس كيو 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22779, + "fields": { + "id_car_make": 18, + "name": "2 Series Grand Tourer", + "arabic_name": "السلسلة 2 جراند تورر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22780, + "fields": { + "id_car_make": 35, + "name": "CSV CR8", + "arabic_name": "سي إس في سي آر 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22781, + "fields": { + "id_car_make": 35, + "name": "Master", + "arabic_name": "ماستر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22782, + "fields": { + "id_car_make": 35, + "name": "S-10 Pickup", + "arabic_name": "إس-١٠ بيك أب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22783, + "fields": { + "id_car_make": 37, + "name": "E-Mehari", + "arabic_name": "إي-مهاري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22784, + "fields": { + "id_car_make": 42, + "name": "Matiz Creative", + "arabic_name": "ماتيز كرييتيف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22785, + "fields": { + "id_car_make": 63, + "name": "Bronco-II", + "arabic_name": "برونكو-2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22786, + "fields": { + "id_car_make": 63, + "name": "Custom", + "arabic_name": "كستم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22787, + "fields": { + "id_car_make": 63, + "name": "Tourneo Courier", + "arabic_name": "تورنو كورير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22788, + "fields": { + "id_car_make": 63, + "name": "V8", + "arabic_name": "في8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22789, + "fields": { + "id_car_make": 76, + "name": "Horizon", + "arabic_name": "هورايزون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22791, + "fields": { + "id_car_make": 76, + "name": "N-WGN", + "arabic_name": "إن-دبليو جي إن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22792, + "fields": { + "id_car_make": 76, + "name": "Street", + "arabic_name": "ستريت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22793, + "fields": { + "id_car_make": 79, + "name": "Grand Starex", + "arabic_name": "جراند ستاركس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22794, + "fields": { + "id_car_make": 79, + "name": "i30 N", + "arabic_name": "آي 30 إن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22795, + "fields": { + "id_car_make": 80, + "name": "EX", + "arabic_name": "إي إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22796, + "fields": { + "id_car_make": 80, + "name": "FX", + "arabic_name": "إف إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22797, + "fields": { + "id_car_make": 80, + "name": "I", + "arabic_name": "آي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22798, + "fields": { + "id_car_make": 80, + "name": "J", + "arabic_name": "جيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22799, + "fields": { + "id_car_make": 80, + "name": "JX", + "arabic_name": "جيه إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22800, + "fields": { + "id_car_make": 80, + "name": "M", + "arabic_name": "إم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22801, + "fields": { + "id_car_make": 80, + "name": "Q", + "arabic_name": "كيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22802, + "fields": { + "id_car_make": 89, + "name": "Grand Wagoneer", + "arabic_name": "جراند واجونير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22803, + "fields": { + "id_car_make": 89, + "name": "Liberty (North America)", + "arabic_name": "ليبرتي (أمريكا الشمالية)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22804, + "fields": { + "id_car_make": 89, + "name": "Liberty (Patriot)", + "arabic_name": "ليبرتي (باتريوت)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22805, + "fields": { + "id_car_make": 92, + "name": "Ceed", + "arabic_name": "سيد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22806, + "fields": { + "id_car_make": 92, + "name": "Ceed GT", + "arabic_name": "سيد جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22808, + "fields": { + "id_car_make": 92, + "name": "K9", + "arabic_name": "كي9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22809, + "fields": { + "id_car_make": 92, + "name": "Mentor", + "arabic_name": "منتور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22810, + "fields": { + "id_car_make": 92, + "name": "Quanlima", + "arabic_name": "كوانليما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22811, + "fields": { + "id_car_make": 92, + "name": "Soul EV", + "arabic_name": "سول إي في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22812, + "fields": { + "id_car_make": 92, + "name": "XCeed", + "arabic_name": "إكسيد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22834, + "fields": { + "id_car_make": 215, + "name": "2131 (4x4)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22845, + "fields": { + "id_car_make": 97, + "name": "Series III", + "arabic_name": "سلسلة III" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22846, + "fields": { + "id_car_make": 113, + "name": "Autozam AZ-3", + "arabic_name": "أوتوزام إيه زد-3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22847, + "fields": { + "id_car_make": 113, + "name": "CX-8", + "arabic_name": "سي إكس-8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22848, + "fields": { + "id_car_make": 113, + "name": "Efini MS-8", + "arabic_name": "إفيني إم إس-8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22849, + "fields": { + "id_car_make": 113, + "name": "Proceed Marvie", + "arabic_name": "بروسيد مارفي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22850, + "fields": { + "id_car_make": 116, + "name": "GLC", + "arabic_name": "جي إل سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22851, + "fields": { + "id_car_make": 116, + "name": "GLE", + "arabic_name": "جي إل إي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22854, + "fields": { + "id_car_make": 116, + "name": "GLC AMG", + "arabic_name": "جي إل سي إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22855, + "fields": { + "id_car_make": 116, + "name": "GLC Coupe AMG", + "arabic_name": "جي إل سي كوبيه إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22856, + "fields": { + "id_car_make": 116, + "name": "GLE AMG", + "arabic_name": "جي إل إي إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22857, + "fields": { + "id_car_make": 116, + "name": "GLE Coupe AMG", + "arabic_name": "جي إل إي كوبيه إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22858, + "fields": { + "id_car_make": 116, + "name": "Maybach G 650 Landaulet", + "arabic_name": "مايباخ جي 650 لاندوليه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22859, + "fields": { + "id_car_make": 116, + "name": "W105", + "arabic_name": "دبليو 105" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22860, + "fields": { + "id_car_make": 116, + "name": "W142", + "arabic_name": "دبليو 142" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22861, + "fields": { + "id_car_make": 116, + "name": "W188", + "arabic_name": "دبليو 188" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22862, + "fields": { + "id_car_make": 116, + "name": "W191", + "arabic_name": "دبليو 191" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22863, + "fields": { + "id_car_make": 116, + "name": "W29", + "arabic_name": "دبليو 29" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22864, + "fields": { + "id_car_make": 123, + "name": "500", + "arabic_name": "500" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22865, + "fields": { + "id_car_make": 123, + "name": "Delica D:5", + "arabic_name": "ديليكا دي:5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22866, + "fields": { + "id_car_make": 123, + "name": "eK Active", + "arabic_name": "إي كي أكتيف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22867, + "fields": { + "id_car_make": 123, + "name": "eK Classic", + "arabic_name": "إي كي كلاسيك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22868, + "fields": { + "id_car_make": 123, + "name": "eK Custom", + "arabic_name": "إي كي كستم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22869, + "fields": { + "id_car_make": 123, + "name": "eK Space", + "arabic_name": "إي كي سبيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22870, + "fields": { + "id_car_make": 123, + "name": "eK Sport", + "arabic_name": "إي كي سبورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22871, + "fields": { + "id_car_make": 123, + "name": "Triton", + "arabic_name": "تريتون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22873, + "fields": { + "id_car_make": 127, + "name": "Bluebird Maxima", + "arabic_name": "بلوبيرد ماكسيما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22874, + "fields": { + "id_car_make": 127, + "name": "Clipper Rio", + "arabic_name": "كليبر ريو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22875, + "fields": { + "id_car_make": 127, + "name": "Dayz Roox", + "arabic_name": "ديز روكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22876, + "fields": { + "id_car_make": 127, + "name": "Exa", + "arabic_name": "إكسا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22877, + "fields": { + "id_car_make": 127, + "name": "NV100 Clipper", + "arabic_name": "إن في 100 كليبر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22880, + "fields": { + "id_car_make": 127, + "name": "Terrano Regulus", + "arabic_name": "تيرانو ريجولوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22881, + "fields": { + "id_car_make": 130, + "name": "Super Six", + "arabic_name": "سوبر سيكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22882, + "fields": { + "id_car_make": 139, + "name": "718 Spyder", + "arabic_name": "718 سبايدر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22883, + "fields": { + "id_car_make": 139, + "name": "911 R", + "arabic_name": "911 آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22884, + "fields": { + "id_car_make": 139, + "name": "Taycan", + "arabic_name": "تايكان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22885, + "fields": { + "id_car_make": 159, + "name": "100 Series", + "arabic_name": "سلسلة 100" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22886, + "fields": { + "id_car_make": 159, + "name": "105, 120", + "arabic_name": "105، 120" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22887, + "fields": { + "id_car_make": 159, + "name": "1200", + "arabic_name": "1200" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22888, + "fields": { + "id_car_make": 159, + "name": "Kodiaq RS", + "arabic_name": "كودياك آر إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22889, + "fields": { + "id_car_make": 159, + "name": "Scala", + "arabic_name": "سكالا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22890, + "fields": { + "id_car_make": 166, + "name": "Bistro", + "arabic_name": "بيسترو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22891, + "fields": { + "id_car_make": 166, + "name": "Dias Wagon", + "arabic_name": "دياس واجن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22892, + "fields": { + "id_car_make": 167, + "name": "Alto Lapin", + "arabic_name": "ألتو لابين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22893, + "fields": { + "id_car_make": 167, + "name": "Cara", + "arabic_name": "كارا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22894, + "fields": { + "id_car_make": 176, + "name": "Carina E", + "arabic_name": "كارينا إي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22896, + "fields": { + "id_car_make": 176, + "name": "COMS", + "arabic_name": "كومس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22897, + "fields": { + "id_car_make": 176, + "name": "Corolla II", + "arabic_name": "كورولا ٢" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22898, + "fields": { + "id_car_make": 176, + "name": "FunCargo", + "arabic_name": "فان كارغو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22899, + "fields": { + "id_car_make": 176, + "name": "Grand HiAce", + "arabic_name": "جراند هايس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22900, + "fields": { + "id_car_make": 176, + "name": "GT86", + "arabic_name": "جي تي86" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22901, + "fields": { + "id_car_make": 176, + "name": "MasterAce Surf", + "arabic_name": "ماستر إيس سورف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22902, + "fields": { + "id_car_make": 176, + "name": "Pixis Space", + "arabic_name": "بيكسيس سبايس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22903, + "fields": { + "id_car_make": 176, + "name": "Prius Alpha", + "arabic_name": "بريوس ألفا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22904, + "fields": { + "id_car_make": 176, + "name": "Spade", + "arabic_name": "سبيد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22905, + "fields": { + "id_car_make": 176, + "name": "Tank", + "arabic_name": "تانك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22906, + "fields": { + "id_car_make": 176, + "name": "Touring HiAce", + "arabic_name": "توريج هايس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22907, + "fields": { + "id_car_make": 176, + "name": "WiLL", + "arabic_name": "ويل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22908, + "fields": { + "id_car_make": 184, + "name": "EuroVan", + "arabic_name": "يورو فان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22909, + "fields": { + "id_car_make": 184, + "name": "Golf Sportsvan", + "arabic_name": "غولف سبورتسفان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22910, + "fields": { + "id_car_make": 184, + "name": "ID.3", + "arabic_name": "آي دي 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22911, + "fields": { + "id_car_make": 184, + "name": "K70", + "arabic_name": "كي 70" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22912, + "fields": { + "id_car_make": 184, + "name": "Karmann-Ghia", + "arabic_name": "كارمان غيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22913, + "fields": { + "id_car_make": 184, + "name": "Lupo GTI", + "arabic_name": "لوبو جي تي آي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22914, + "fields": { + "id_car_make": 184, + "name": "Type 3", + "arabic_name": "تايب 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22915, + "fields": { + "id_car_make": 185, + "name": "240 Series", + "arabic_name": "سلسلة 240" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22916, + "fields": { + "id_car_make": 185, + "name": "V90 Cross Country", + "arabic_name": "في 90 كروس كنتري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22917, + "fields": { + "id_car_make": 185, + "name": "120 Series", + "arabic_name": "سلسلة 120" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22918, + "fields": { + "id_car_make": 185, + "name": "140 Series", + "arabic_name": "سلسلة 140" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22919, + "fields": { + "id_car_make": 185, + "name": "260 Series", + "arabic_name": "سلسلة 260" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22920, + "fields": { + "id_car_make": 185, + "name": "P1900", + "arabic_name": "بي 1900" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22921, + "fields": { + "id_car_make": 216, + "name": "18", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22922, + "fields": { + "id_car_make": 216, + "name": "2308 «Ataman»", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22923, + "fields": { + "id_car_make": 216, + "name": "3111 «Volga»", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22924, + "fields": { + "id_car_make": 216, + "name": "46", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22925, + "fields": { + "id_car_make": 216, + "name": "61", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22926, + "fields": { + "id_car_make": 216, + "name": "Volga Siber", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22927, + "fields": { + "id_car_make": 216, + "name": "M-20 «Pobeda»", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22928, + "fields": { + "id_car_make": 227, + "name": "3159", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22929, + "fields": { + "id_car_make": 3664, + "name": "Trumpf Junior", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22930, + "fields": { + "id_car_make": 3, + "name": "6", + "arabic_name": "6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22931, + "fields": { + "id_car_make": 291, + "name": "D4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22932, + "fields": { + "id_car_make": 291, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22933, + "fields": { + "id_car_make": 3705, + "name": "Eagle", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22934, + "fields": { + "id_car_make": 3705, + "name": "Hornet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22935, + "fields": { + "id_car_make": 4154, + "name": "21541 Stalker", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22936, + "fields": { + "id_car_make": 9, + "name": "DB AR1", + "arabic_name": "دي بي إيه آر 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22937, + "fields": { + "id_car_make": 11, + "name": "Metro", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22938, + "fields": { + "id_car_make": 11, + "name": "Sprite", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22939, + "fields": { + "id_car_make": 4147, + "name": "BJ2020", + "arabic_name": "بي جي 2020" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22940, + "fields": { + "id_car_make": 4147, + "name": "Jeep Cherokee 2500", + "arabic_name": "جيب شيروكي 2500" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22941, + "fields": { + "id_car_make": 4147, + "name": "Luba (XB624)", + "arabic_name": "لوبا (إكس بي 624)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22942, + "fields": { + "id_car_make": 4155, + "name": "Qute", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22943, + "fields": { + "id_car_make": 4156, + "name": "1989", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22944, + "fields": { + "id_car_make": 4156, + "name": "2018", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22945, + "fields": { + "id_car_make": 15, + "name": "S", + "arabic_name": "إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22946, + "fields": { + "id_car_make": 4157, + "name": "Vintage", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22947, + "fields": { + "id_car_make": 17, + "name": "CD", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22948, + "fields": { + "id_car_make": 3676, + "name": "Hansa 1100", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22949, + "fields": { + "id_car_make": 20, + "name": "ML 63 Biturbo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22950, + "fields": { + "id_car_make": 21, + "name": "FRV (BS2)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22951, + "fields": { + "id_car_make": 21, + "name": "M1 (BS6)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22952, + "fields": { + "id_car_make": 21, + "name": "M2 (BS4)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22953, + "fields": { + "id_car_make": 21, + "name": "M3 (BC3)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22954, + "fields": { + "id_car_make": 22, + "name": "Blenheim Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22955, + "fields": { + "id_car_make": 24, + "name": "EB Veyron 16.4", + "arabic_name": "إي بي فيرون 16.4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22956, + "fields": { + "id_car_make": 24, + "name": "Type 55", + "arabic_name": "تايب 55" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22957, + "fields": { + "id_car_make": 25, + "name": "GS", + "arabic_name": "جي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22958, + "fields": { + "id_car_make": 25, + "name": "LeSabre", + "arabic_name": "لي سابر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22959, + "fields": { + "id_car_make": 25, + "name": "Wildcat", + "arabic_name": "وايلد كات" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22960, + "fields": { + "id_car_make": 26, + "name": "F8 (S8)", + "arabic_name": "إف 8 (إس 8)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22961, + "fields": { + "id_car_make": 28, + "name": "DeVille", + "arabic_name": "دي فيل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22962, + "fields": { + "id_car_make": 30, + "name": "FX4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22963, + "fields": { + "id_car_make": 3752, + "name": "Benni", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22964, + "fields": { + "id_car_make": 32, + "name": "Alsvin V7", + "arabic_name": "ألسفين في7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22965, + "fields": { + "id_car_make": 32, + "name": "CS35 PLUS", + "arabic_name": "سي إس35 بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22966, + "fields": { + "id_car_make": 32, + "name": "CX20", + "arabic_name": "سي إكس20" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22967, + "fields": { + "id_car_make": 33, + "name": "SUV (CS6)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22968, + "fields": { + "id_car_make": 34, + "name": "Arrizo 3", + "arabic_name": "أريزو 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22969, + "fields": { + "id_car_make": 34, + "name": "B13", + "arabic_name": "بي 13" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22971, + "fields": { + "id_car_make": 34, + "name": "Bonus 3 (E3/A19)", + "arabic_name": "بونص 3 (إي 3/إيه 19)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22979, + "fields": { + "id_car_make": 34, + "name": "QQme", + "arabic_name": "كيو كيو مي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22980, + "fields": { + "id_car_make": 34, + "name": "Sweet (QQ)", + "arabic_name": "سويت (كيو كيو)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22984, + "fields": { + "id_car_make": 36, + "name": "300 Letter Series", + "arabic_name": "300 لتر سيريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22985, + "fields": { + "id_car_make": 36, + "name": "Town & Country", + "arabic_name": "تاون أند كنتري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22986, + "fields": { + "id_car_make": 36, + "name": "TC by Maserati", + "arabic_name": "تي سي باي مازيراتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22987, + "fields": { + "id_car_make": 39, + "name": "T Rex", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22988, + "fields": { + "id_car_make": 4158, + "name": "L-29", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22989, + "fields": { + "id_car_make": 40, + "name": "1325", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22990, + "fields": { + "id_car_make": 40, + "name": "SuperNova", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22991, + "fields": { + "id_car_make": 44, + "name": "Bee", + "arabic_name": "بي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22992, + "fields": { + "id_car_make": 44, + "name": "Delta Wagon", + "arabic_name": "دلتا واجن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22993, + "fields": { + "id_car_make": 44, + "name": "Mira e:S", + "arabic_name": "ميرا إي:إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22994, + "fields": { + "id_car_make": 44, + "name": "Fellow", + "arabic_name": "فيلو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22995, + "fields": { + "id_car_make": 44, + "name": "Midget", + "arabic_name": "ميجيت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22996, + "fields": { + "id_car_make": 44, + "name": "Move Canbus", + "arabic_name": "موف كانبوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22997, + "fields": { + "id_car_make": 44, + "name": "Move Conte", + "arabic_name": "موف كونتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22998, + "fields": { + "id_car_make": 44, + "name": "Tanto Exe", + "arabic_name": "تانتو إكسي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 22999, + "fields": { + "id_car_make": 45, + "name": "SP250", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23000, + "fields": { + "id_car_make": 47, + "name": "240Z", + "arabic_name": "240 زد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23001, + "fields": { + "id_car_make": 47, + "name": "GO+", + "arabic_name": "جو+" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23002, + "fields": { + "id_car_make": 4159, + "name": "D6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23003, + "fields": { + "id_car_make": 3665, + "name": "Custom", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23004, + "fields": { + "id_car_make": 4160, + "name": "3=6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23005, + "fields": { + "id_car_make": 51, + "name": "Charger Daytona", + "arabic_name": "تشاجر دايتونا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23006, + "fields": { + "id_car_make": 51, + "name": "Custom Royal", + "arabic_name": "كوستوم رويال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23007, + "fields": { + "id_car_make": 51, + "name": "D/W Series", + "arabic_name": "دي/دبليو سيريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23008, + "fields": { + "id_car_make": 51, + "name": "D8", + "arabic_name": "دي 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23009, + "fields": { + "id_car_make": 51, + "name": "WC series", + "arabic_name": "دبليو سي سيريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23010, + "fields": { + "id_car_make": 51, + "name": "Mayfair", + "arabic_name": "مايفير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23011, + "fields": { + "id_car_make": 52, + "name": "370", + "arabic_name": "370" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23012, + "fields": { + "id_car_make": 52, + "name": "A9", + "arabic_name": "إيه 9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23013, + "fields": { + "id_car_make": 52, + "name": "H30 Cross", + "arabic_name": "إتش 30 كروس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23017, + "fields": { + "id_car_make": 54, + "name": "D8 GTO", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23018, + "fields": { + "id_car_make": 3589, + "name": "7 Crossback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23019, + "fields": { + "id_car_make": 4162, + "name": "H3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23020, + "fields": { + "id_car_make": 4162, + "name": "H5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23021, + "fields": { + "id_car_make": 60, + "name": "250 GTO", + "arabic_name": "250 جي تي أو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23022, + "fields": { + "id_car_make": 60, + "name": "575M", + "arabic_name": "575 إم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23023, + "fields": { + "id_car_make": 60, + "name": "612", + "arabic_name": "612" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23024, + "fields": { + "id_car_make": 60, + "name": "812", + "arabic_name": "812" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23025, + "fields": { + "id_car_make": 60, + "name": "Dino 206 GT", + "arabic_name": "دينو 206 جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23026, + "fields": { + "id_car_make": 60, + "name": "Dino 208/308 GT4", + "arabic_name": "دينو 208/308 جي تي 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23027, + "fields": { + "id_car_make": 60, + "name": "Dino 246 GT", + "arabic_name": "دينو 246 جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23028, + "fields": { + "id_car_make": 60, + "name": "Monza SP", + "arabic_name": "مونزا إس بي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23029, + "fields": { + "id_car_make": 61, + "name": "124 Spider", + "arabic_name": "124 سبايدر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23030, + "fields": { + "id_car_make": 61, + "name": "124 Sport Spider", + "arabic_name": "124 سبورت سبايدر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23031, + "fields": { + "id_car_make": 61, + "name": "508", + "arabic_name": "508" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23032, + "fields": { + "id_car_make": 61, + "name": "X 1/9", + "arabic_name": "إكس 1/9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23033, + "fields": { + "id_car_make": 4163, + "name": "F", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23034, + "fields": { + "id_car_make": 66, + "name": "6500 (Land King)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23035, + "fields": { + "id_car_make": 4164, + "name": "Trumpchi GS8", + "arabic_name": "ترامبشي جي إس 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23036, + "fields": { + "id_car_make": 67, + "name": "CK (Otaka)", + "arabic_name": "سي كي (أوتاكا)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23037, + "fields": { + "id_car_make": 67, + "name": "FC (Vision)", + "arabic_name": "إف سي (فيجن)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23038, + "fields": { + "id_car_make": 67, + "name": "LC (Panda)", + "arabic_name": "إل سي (باندا)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23039, + "fields": { + "id_car_make": 67, + "name": "LC (Panda) Cross", + "arabic_name": "إل سي (باندا) كروس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23040, + "fields": { + "id_car_make": 67, + "name": "TX4", + "arabic_name": "تي إكس٤" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23041, + "fields": { + "id_car_make": 4165, + "name": "Madison", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23042, + "fields": { + "id_car_make": 71, + "name": "Cowry (V80)", + "arabic_name": "كاوري (في 80)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23043, + "fields": { + "id_car_make": 71, + "name": "Hover", + "arabic_name": "هوفر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23044, + "fields": { + "id_car_make": 71, + "name": "Voleex C10 (Phenom)", + "arabic_name": "فوليكس سي 10 (فينوم)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23045, + "fields": { + "id_car_make": 71, + "name": "Wingle", + "arabic_name": "وينجل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23046, + "fields": { + "id_car_make": 73, + "name": "Family F7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23047, + "fields": { + "id_car_make": 4166, + "name": "Rekord", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23048, + "fields": { + "id_car_make": 4166, + "name": "Typ 13", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23049, + "fields": { + "id_car_make": 290, + "name": "H6 Coupe", + "arabic_name": "إتش 6 كوبيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23050, + "fields": { + "id_car_make": 4167, + "name": "K6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23051, + "fields": { + "id_car_make": 4168, + "name": "830", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23052, + "fields": { + "id_car_make": 4168, + "name": "853", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23053, + "fields": { + "id_car_make": 3739, + "name": "Super Six", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23054, + "fields": { + "id_car_make": 3816, + "name": "Travelall", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23055, + "fields": { + "id_car_make": 83, + "name": "Sahra", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23056, + "fields": { + "id_car_make": 84, + "name": "Imperator 108i", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23057, + "fields": { + "id_car_make": 85, + "name": "Fargo Filly", + "arabic_name": "فارغو فيلي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23058, + "fields": { + "id_car_make": 87, + "name": "J2 (Yueyue)", + "arabic_name": "جي 2 (يوييوي)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23059, + "fields": { + "id_car_make": 87, + "name": "J5 (Heyue)", + "arabic_name": "جي 5 (هاييو)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23060, + "fields": { + "id_car_make": 87, + "name": "M1 (Refine)", + "arabic_name": "إم 1 (ريفين)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23061, + "fields": { + "id_car_make": 87, + "name": "S1 (Rein)", + "arabic_name": "إس 1 (راين)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23062, + "fields": { + "id_car_make": 87, + "name": "S5 (Eagle)", + "arabic_name": "إس 5 (إيغل)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23063, + "fields": { + "id_car_make": 87, + "name": "iEV7S", + "arabic_name": "آي إي في 7 إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23064, + "fields": { + "id_car_make": 88, + "name": "Mark 2", + "arabic_name": "مارك 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23065, + "fields": { + "id_car_make": 90, + "name": "Interceptor", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23066, + "fields": { + "id_car_make": 4169, + "name": "X-Bow", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23067, + "fields": { + "id_car_make": 95, + "name": "Egoista", + "arabic_name": "إيغويستا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23068, + "fields": { + "id_car_make": 96, + "name": "A 112", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23069, + "fields": { + "id_car_make": 96, + "name": "Lambda", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23070, + "fields": { + "id_car_make": 96, + "name": "Monte Carlo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23071, + "fields": { + "id_car_make": 96, + "name": "Rally 037", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23072, + "fields": { + "id_car_make": 96, + "name": "Stratos", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23073, + "fields": { + "id_car_make": 98, + "name": "X7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23074, + "fields": { + "id_car_make": 101, + "name": "Breez (520)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23075, + "fields": { + "id_car_make": 101, + "name": "Cebrium (720)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23076, + "fields": { + "id_car_make": 101, + "name": "Celliya (530)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23077, + "fields": { + "id_car_make": 101, + "name": "Murman (820)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23078, + "fields": { + "id_car_make": 4170, + "name": "JS 51", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23079, + "fields": { + "id_car_make": 102, + "name": "Corsair", + "arabic_name": "كورسير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23080, + "fields": { + "id_car_make": 102, + "name": "Mark III", + "arabic_name": "مارك 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23081, + "fields": { + "id_car_make": 102, + "name": "Mark IV", + "arabic_name": "مارك 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23082, + "fields": { + "id_car_make": 102, + "name": "Nautilus", + "arabic_name": "نوتيلوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23083, + "fields": { + "id_car_make": 4171, + "name": "Air Concept", + "arabic_name": "اير كونسيبت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23084, + "fields": { + "id_car_make": 105, + "name": "Luxgen5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23085, + "fields": { + "id_car_make": 105, + "name": "Luxgen7 SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23086, + "fields": { + "id_car_make": 105, + "name": "U6 Turbo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23087, + "fields": { + "id_car_make": 106, + "name": "MM", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23088, + "fields": { + "id_car_make": 107, + "name": "GTS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23089, + "fields": { + "id_car_make": 112, + "name": "Exelero", + "arabic_name": "إكسيليرو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23090, + "fields": { + "id_car_make": 118, + "name": "Metrocab I", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23091, + "fields": { + "id_car_make": 119, + "name": "MGA", + "arabic_name": "إم جي إيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23092, + "fields": { + "id_car_make": 119, + "name": "MGB", + "arabic_name": "إم جي بي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23093, + "fields": { + "id_car_make": 119, + "name": "TD Midget", + "arabic_name": "تي دي ميجيت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23094, + "fields": { + "id_car_make": 124, + "name": "MC-1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23095, + "fields": { + "id_car_make": 124, + "name": "Rock Star", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23096, + "fields": { + "id_car_make": 124, + "name": "Ryugi", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23097, + "fields": { + "id_car_make": 4172, + "name": "Ambassador", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23098, + "fields": { + "id_car_make": 128, + "name": "M15", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23099, + "fields": { + "id_car_make": 129, + "name": "Firenza", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23100, + "fields": { + "id_car_make": 129, + "name": "Series 60", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23101, + "fields": { + "id_car_make": 129, + "name": "Series 70", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23102, + "fields": { + "id_car_make": 129, + "name": "Starfire", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23103, + "fields": { + "id_car_make": 129, + "name": "Vista Cruiser", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23104, + "fields": { + "id_car_make": 3666, + "name": "200/250", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23105, + "fields": { + "id_car_make": 3666, + "name": "Custom Eight", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23106, + "fields": { + "id_car_make": 132, + "name": "Zonda", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23107, + "fields": { + "id_car_make": 137, + "name": "Horizon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23108, + "fields": { + "id_car_make": 137, + "name": "Satellite", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23109, + "fields": { + "id_car_make": 137, + "name": "Volare", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23110, + "fields": { + "id_car_make": 141, + "name": "Arena", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23111, + "fields": { + "id_car_make": 141, + "name": "Putra", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23112, + "fields": { + "id_car_make": 141, + "name": "Savvy", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23113, + "fields": { + "id_car_make": 141, + "name": "Tiara", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23114, + "fields": { + "id_car_make": 4173, + "name": "Ambassador", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23115, + "fields": { + "id_car_make": 3689, + "name": "Nexia R3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23116, + "fields": { + "id_car_make": 146, + "name": "Scimitar Sabre", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23117, + "fields": { + "id_car_make": 4174, + "name": "Tropica Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23118, + "fields": { + "id_car_make": 4175, + "name": "QM5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23119, + "fields": { + "id_car_make": 4175, + "name": "QM6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23120, + "fields": { + "id_car_make": 4175, + "name": "SM3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23121, + "fields": { + "id_car_make": 4175, + "name": "SM5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23122, + "fields": { + "id_car_make": 4175, + "name": "SM7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23123, + "fields": { + "id_car_make": 3619, + "name": "Tank", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23124, + "fields": { + "id_car_make": 3620, + "name": "Concept_One", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23125, + "fields": { + "id_car_make": 4176, + "name": "Chopster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23126, + "fields": { + "id_car_make": 149, + "name": "20/25", + "arabic_name": "20/25" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23127, + "fields": { + "id_car_make": 151, + "name": "600", + "arabic_name": "600" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23128, + "fields": { + "id_car_make": 151, + "name": "800", + "arabic_name": "800" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23129, + "fields": { + "id_car_make": 151, + "name": "Mini", + "arabic_name": "ميني" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23130, + "fields": { + "id_car_make": 152, + "name": "600", + "arabic_name": "600" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23131, + "fields": { + "id_car_make": 4149, + "name": "Saina", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23132, + "fields": { + "id_car_make": 4149, + "name": "Tiba", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23133, + "fields": { + "id_car_make": 154, + "name": "PS-10", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23134, + "fields": { + "id_car_make": 180, + "name": "S-Series", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23135, + "fields": { + "id_car_make": 180, + "name": "Taimar", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23136, + "fields": { + "id_car_make": 180, + "name": "Tasmin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23137, + "fields": { + "id_car_make": 181, + "name": "Velox", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23138, + "fields": { + "id_car_make": 182, + "name": "W8 Twin Turbo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23139, + "fields": { + "id_car_make": 183, + "name": "300 Atlantique", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23140, + "fields": { + "id_car_make": 183, + "name": "400 GT", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23141, + "fields": { + "id_car_make": 157, + "name": "Tarraco", + "arabic_name": "تاراكو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23142, + "fields": { + "id_car_make": 4177, + "name": "C31", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23143, + "fields": { + "id_car_make": 4177, + "name": "C32", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23144, + "fields": { + "id_car_make": 4177, + "name": "C51", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23145, + "fields": { + "id_car_make": 4177, + "name": "C52", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23146, + "fields": { + "id_car_make": 4177, + "name": "C61", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23147, + "fields": { + "id_car_make": 4177, + "name": "C81", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23148, + "fields": { + "id_car_make": 4178, + "name": "1300/1500", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23149, + "fields": { + "id_car_make": 4178, + "name": "1307", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23150, + "fields": { + "id_car_make": 162, + "name": "R42", + "arabic_name": "آر 42" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23151, + "fields": { + "id_car_make": 165, + "name": "XLV", + "arabic_name": "إكس إل في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23152, + "fields": { + "id_car_make": 4179, + "name": "1500", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23153, + "fields": { + "id_car_make": 4180, + "name": "Golden Hawk", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23154, + "fields": { + "id_car_make": 168, + "name": "Rancho", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23155, + "fields": { + "id_car_make": 169, + "name": "Sumo Grande", + "arabic_name": "سومو غراندي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23156, + "fields": { + "id_car_make": 170, + "name": "77", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23157, + "fields": { + "id_car_make": 170, + "name": "80", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23158, + "fields": { + "id_car_make": 170, + "name": "87", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23159, + "fields": { + "id_car_make": 4181, + "name": "City", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23160, + "fields": { + "id_car_make": 175, + "name": "Murat 131", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23161, + "fields": { + "id_car_make": 177, + "name": "600", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23162, + "fields": { + "id_car_make": 177, + "name": "P50", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23163, + "fields": { + "id_car_make": 179, + "name": "Acclaim", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23164, + "fields": { + "id_car_make": 179, + "name": "Spitfire", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23165, + "fields": { + "id_car_make": 179, + "name": "TR4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23166, + "fields": { + "id_car_make": 4182, + "name": "W23", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23167, + "fields": { + "id_car_make": 4182, + "name": "W50", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23168, + "fields": { + "id_car_make": 189, + "name": "GT", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23169, + "fields": { + "id_car_make": 3667, + "name": "Knight Model 20", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23170, + "fields": { + "id_car_make": 191, + "name": "Florida", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23171, + "fields": { + "id_car_make": 191, + "name": "Skala", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23172, + "fields": { + "id_car_make": 191, + "name": "Yugo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23173, + "fields": { + "id_car_make": 192, + "name": "Coupa", + "arabic_name": "كوپا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23174, + "fields": { + "id_car_make": 192, + "name": "Nomad (RX6400)", + "arabic_name": "نوماد (آر إكس 6400)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23175, + "fields": { + "id_car_make": 192, + "name": "SR9", + "arabic_name": "إس آر 9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23176, + "fields": { + "id_car_make": 4183, + "name": "Dallara F399/300", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23177, + "fields": { + "id_car_make": 4183, + "name": "Show car \"Formula-1\"", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23178, + "fields": { + "id_car_make": 217, + "name": "1102 \"Tavria\"", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23179, + "fields": { + "id_car_make": 217, + "name": "1103 \"Slavuta\"", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23180, + "fields": { + "id_car_make": 217, + "name": "1105 \"Dana\"", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23181, + "fields": { + "id_car_make": 218, + "name": "111", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23182, + "fields": { + "id_car_make": 3690, + "name": "101", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23185, + "fields": { + "id_car_make": 219, + "name": "Moskvich-412", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23187, + "fields": { + "id_car_make": 222, + "name": "1302 Volyn", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23188, + "fields": { + "id_car_make": 223, + "name": "2142", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23189, + "fields": { + "id_car_make": 224, + "name": "S-ZA", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23190, + "fields": { + "id_car_make": 226, + "name": "C-30", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23207, + "fields": { + "id_car_make": 48, + "name": "Longchamp", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23209, + "fields": { + "id_car_make": 4184, + "name": "EC30", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23220, + "fields": { + "id_car_make": 10, + "name": "e-tron Sportback", + "arabic_name": "إي-ترون سبورتباك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23221, + "fields": { + "id_car_make": 10, + "name": "R8 LMP", + "arabic_name": "آر 8 إل إم بي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23222, + "fields": { + "id_car_make": 63, + "name": "Mustang Mach-E", + "arabic_name": "موستانج ماك-إي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23274, + "fields": { + "id_car_make": 116, + "name": "Maybach GLS", + "arabic_name": "مايباخ جي إل إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23280, + "fields": { + "id_car_make": 9, + "name": "DBX", + "arabic_name": "دي بي إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23281, + "fields": { + "id_car_make": 28, + "name": "CT4", + "arabic_name": "سي تي 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23282, + "fields": { + "id_car_make": 28, + "name": "CT4-V", + "arabic_name": "سي تي 4-في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23283, + "fields": { + "id_car_make": 28, + "name": "CT5-V", + "arabic_name": "سي تي 5-في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23284, + "fields": { + "id_car_make": 4186, + "name": "Stradale", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23285, + "fields": { + "id_car_make": 54, + "name": "D8 Cosworth", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23286, + "fields": { + "id_car_make": 54, + "name": "D8 GT", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23287, + "fields": { + "id_car_make": 54, + "name": "D8 Zetec", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23288, + "fields": { + "id_car_make": 3589, + "name": "3 Crossback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23289, + "fields": { + "id_car_make": 56, + "name": "Vista", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23290, + "fields": { + "id_car_make": 60, + "name": "Roma", + "arabic_name": "روما" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23291, + "fields": { + "id_car_make": 69, + "name": "100", + "arabic_name": "100" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23292, + "fields": { + "id_car_make": 290, + "name": "F7x", + "arabic_name": "إف 7 إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23294, + "fields": { + "id_car_make": 291, + "name": "XD4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23295, + "fields": { + "id_car_make": 123, + "name": "Bravo", + "arabic_name": "برافو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23296, + "fields": { + "id_car_make": 36, + "name": "ES", + "arabic_name": "إي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23297, + "fields": { + "id_car_make": 79, + "name": "Venue", + "arabic_name": "فينيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23298, + "fields": { + "id_car_make": 92, + "name": "Proceed", + "arabic_name": "بروسيد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23299, + "fields": { + "id_car_make": 116, + "name": "Simplex", + "arabic_name": "سيمبلكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23300, + "fields": { + "id_car_make": 130, + "name": "Zafira Life", + "arabic_name": "زافيرا لايف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23301, + "fields": { + "id_car_make": 176, + "name": "Pixis Joy", + "arabic_name": "بيكسيس جوي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23302, + "fields": { + "id_car_make": 176, + "name": "Pixis Van", + "arabic_name": "بيكسيس فان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23303, + "fields": { + "id_car_make": 176, + "name": "Raize", + "arabic_name": "رايز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23304, + "fields": { + "id_car_make": 44, + "name": "Cast", + "arabic_name": "كاست" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23305, + "fields": { + "id_car_make": 44, + "name": "Thor", + "arabic_name": "ثور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23306, + "fields": { + "id_car_make": 44, + "name": "Wake", + "arabic_name": "ويك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23307, + "fields": { + "id_car_make": 172, + "name": "Cybertruck", + "arabic_name": "سايبرترك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23308, + "fields": { + "id_car_make": 223, + "name": "430", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23310, + "fields": { + "id_car_make": 10, + "name": "RS Q8", + "arabic_name": "آر إس كيو 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23311, + "fields": { + "id_car_make": 116, + "name": "GLB AMG", + "arabic_name": "جي إل بي إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23312, + "fields": { + "id_car_make": 11, + "name": "FL2", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23313, + "fields": { + "id_car_make": 32, + "name": "CS55", + "arabic_name": "سي إس55" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23314, + "fields": { + "id_car_make": 88, + "name": "Mark IX", + "arabic_name": "مارك IX" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23315, + "fields": { + "id_car_make": 176, + "name": "Roomy", + "arabic_name": "روومي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23316, + "fields": { + "id_car_make": 184, + "name": "T-Roc R", + "arabic_name": "تي-روك آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23317, + "fields": { + "id_car_make": 3815, + "name": "GV80", + "arabic_name": "جي في 80" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23323, + "fields": { + "id_car_make": 3667, + "name": "CJ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23399, + "fields": { + "id_car_make": 76, + "name": "Forza", + "arabic_name": "فورزا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23400, + "fields": { + "id_car_make": 76, + "name": "CB650R", + "arabic_name": "سي بي 650 آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23401, + "fields": { + "id_car_make": 34, + "name": "Tiggo 8", + "arabic_name": "تيجو 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23406, + "fields": { + "id_car_make": 139, + "name": "Cayenne Coupe", + "arabic_name": "كايين كوبيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23407, + "fields": { + "id_car_make": 71, + "name": "Hover Pi", + "arabic_name": "هوفر بي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23408, + "fields": { + "id_car_make": 4187, + "name": "Typ 154", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23409, + "fields": { + "id_car_make": 3666, + "name": "Six", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23410, + "fields": { + "id_car_make": 3667, + "name": "Jeepster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23412, + "fields": { + "id_car_make": 4188, + "name": "Feeling", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23413, + "fields": { + "id_car_make": 76, + "name": "N-BOX Slash", + "arabic_name": "إن-بوكس سلاش" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23414, + "fields": { + "id_car_make": 67, + "name": "Coolray", + "arabic_name": "كولراي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23415, + "fields": { + "id_car_make": 4147, + "name": "Senova D20", + "arabic_name": "سينوفا دي 20" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23418, + "fields": { + "id_car_make": 4147, + "name": "Senova D50", + "arabic_name": "سينوفا دي 50" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23419, + "fields": { + "id_car_make": 184, + "name": "Polo Vivo Dune", + "arabic_name": "بولو فيفو ديون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23420, + "fields": { + "id_car_make": 167, + "name": "Xbee", + "arabic_name": "إكس بي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23421, + "fields": { + "id_car_make": 290, + "name": "H5", + "arabic_name": "إتش 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23422, + "fields": { + "id_car_make": 106, + "name": "Kuv100", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23423, + "fields": { + "id_car_make": 106, + "name": "XUV500", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23424, + "fields": { + "id_car_make": 59, + "name": "Besturn B30", + "arabic_name": "بيسترن بي30" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23425, + "fields": { + "id_car_make": 92, + "name": "Sorento Prime", + "arabic_name": "سورينتو برايم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23426, + "fields": { + "id_car_make": 10, + "name": "A5 Sportback", + "arabic_name": "إيه 5 سبورتباك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23427, + "fields": { + "id_car_make": 3815, + "name": "GV70", + "arabic_name": "جي في 70" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23428, + "fields": { + "id_car_make": 18, + "name": "iX3", + "arabic_name": "آي إكس 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23429, + "fields": { + "id_car_make": 35, + "name": "Nexia", + "arabic_name": "نيكسيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23430, + "fields": { + "id_car_make": 35, + "name": "Apache", + "arabic_name": "أباتشي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23431, + "fields": { + "id_car_make": 63, + "name": "Bronco Sport", + "arabic_name": "برونكو سبورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23432, + "fields": { + "id_car_make": 76, + "name": "e", + "arabic_name": "إي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23433, + "fields": { + "id_car_make": 215, + "name": "Niva", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23434, + "fields": { + "id_car_make": 113, + "name": "MX-30", + "arabic_name": "إم إكس-30" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23435, + "fields": { + "id_car_make": 127, + "name": "Ariya", + "arabic_name": "أريا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23436, + "fields": { + "id_car_make": 176, + "name": "Corolla Cross", + "arabic_name": "كورولا كروس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23437, + "fields": { + "id_car_make": 184, + "name": "Type 166", + "arabic_name": "تايب 166" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23438, + "fields": { + "id_car_make": 3749, + "name": "100", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23439, + "fields": { + "id_car_make": 4189, + "name": "evA-4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23440, + "fields": { + "id_car_make": 4190, + "name": "Zephyr", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23441, + "fields": { + "id_car_make": 59, + "name": "Bestune T99", + "arabic_name": "بيستون تي99" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23442, + "fields": { + "id_car_make": 4164, + "name": "GN8", + "arabic_name": "جي إن 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23443, + "fields": { + "id_car_make": 4191, + "name": "Model J", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23444, + "fields": { + "id_car_make": 4192, + "name": "G3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23513, + "fields": { + "id_car_make": 34, + "name": "Bonus (A13)", + "arabic_name": "بونص (إيه 13)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23534, + "fields": { + "id_car_make": 116, + "name": "Metris", + "arabic_name": "ميتريس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23535, + "fields": { + "id_car_make": 184, + "name": "ID.4", + "arabic_name": "آي دي 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23536, + "fields": { + "id_car_make": 4147, + "name": "BJ2026", + "arabic_name": "بي جي 2026" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23537, + "fields": { + "id_car_make": 4147, + "name": "EU5", + "arabic_name": "إي يو 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23538, + "fields": { + "id_car_make": 25, + "name": "Cascada", + "arabic_name": "كاسكادا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23539, + "fields": { + "id_car_make": 34, + "name": "Tiggo 7 Pro", + "arabic_name": "تيجو 7 برو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23540, + "fields": { + "id_car_make": 4196, + "name": "TXL", + "arabic_name": "تي إكس إل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23541, + "fields": { + "id_car_make": 4164, + "name": "GS5", + "arabic_name": "جي إس 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23542, + "fields": { + "id_car_make": 71, + "name": "Wingle 7", + "arabic_name": "وينجل 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23543, + "fields": { + "id_car_make": 87, + "name": "iEV7L", + "arabic_name": "آي إي في 7 إل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23544, + "fields": { + "id_car_make": 95, + "name": "Sián", + "arabic_name": "سيان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23546, + "fields": { + "id_car_make": 4195, + "name": "E50", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23547, + "fields": { + "id_car_make": 4195, + "name": "Ei5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23548, + "fields": { + "id_car_make": 4192, + "name": "P7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23549, + "fields": { + "id_car_make": 192, + "name": "E200", + "arabic_name": "إي 200" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23550, + "fields": { + "id_car_make": 101, + "name": "650 EV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23552, + "fields": { + "id_car_make": 184, + "name": "Atlas Cross Sport", + "arabic_name": "أطلس كروس سبورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23553, + "fields": { + "id_car_make": 11, + "name": "FX4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23554, + "fields": { + "id_car_make": 67, + "name": "Tugella", + "arabic_name": "توجيلا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23555, + "fields": { + "id_car_make": 223, + "name": "434P", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23556, + "fields": { + "id_car_make": 10, + "name": "e-tron S", + "arabic_name": "إي-ترون إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23557, + "fields": { + "id_car_make": 10, + "name": "e-tron S Sportback", + "arabic_name": "إي-ترون إس سبورتباك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23558, + "fields": { + "id_car_make": 10, + "name": "Q5 Sportback", + "arabic_name": "كيو 5 سبورتباك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23559, + "fields": { + "id_car_make": 10, + "name": "SQ5 Sportback", + "arabic_name": "إس كيو 5 سبورتباك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23560, + "fields": { + "id_car_make": 4199, + "name": "Venom F5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23561, + "fields": { + "id_car_make": 4200, + "name": "1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23562, + "fields": { + "id_car_make": 4200, + "name": "2", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23563, + "fields": { + "id_car_make": 159, + "name": "Enyaq", + "arabic_name": "إينياك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23564, + "fields": { + "id_car_make": 166, + "name": "Pleo Plus", + "arabic_name": "بليو بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23565, + "fields": { + "id_car_make": 184, + "name": "Type 82", + "arabic_name": "تايب 82" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23567, + "fields": { + "id_car_make": 10, + "name": "e-tron GT", + "arabic_name": "إي-ترون جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23568, + "fields": { + "id_car_make": 10, + "name": "RS e-tron GT", + "arabic_name": "آر إس إي-ترون جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23569, + "fields": { + "id_car_make": 35, + "name": "3000-Series", + "arabic_name": "سلسلة 3000" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23570, + "fields": { + "id_car_make": 35, + "name": "Trax", + "arabic_name": "تراكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23571, + "fields": { + "id_car_make": 116, + "name": "220 (W187)", + "arabic_name": "220 (دبليو 187)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23572, + "fields": { + "id_car_make": 116, + "name": "EQA", + "arabic_name": "إي كيو إيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23573, + "fields": { + "id_car_make": 116, + "name": "EQV", + "arabic_name": "إي كيو في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23574, + "fields": { + "id_car_make": 127, + "name": "NV300", + "arabic_name": "إن في 300" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23575, + "fields": { + "id_car_make": 4201, + "name": "Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23576, + "fields": { + "id_car_make": 26, + "name": "Song EV", + "arabic_name": "سونغ إي في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23577, + "fields": { + "id_car_make": 4202, + "name": "EX5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23578, + "fields": { + "id_car_make": 4183, + "name": "GT & Touring", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23579, + "fields": { + "id_car_make": 4183, + "name": "Offroad", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23580, + "fields": { + "id_car_make": 4183, + "name": "Dragster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23581, + "fields": { + "id_car_make": 4183, + "name": "Drift car", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23582, + "fields": { + "id_car_make": 4183, + "name": "Sportprototype", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23583, + "fields": { + "id_car_make": 4183, + "name": "Formula", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23585, + "fields": { + "id_car_make": 34, + "name": "Tiggo 8 Pro", + "arabic_name": "تيجو 8 برو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23586, + "fields": { + "id_car_make": 35, + "name": "Captiva Sport", + "arabic_name": "كابتيفا سبورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23587, + "fields": { + "id_car_make": 79, + "name": "IONIQ 5", + "arabic_name": "أيونك 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23588, + "fields": { + "id_car_make": 92, + "name": "EV6", + "arabic_name": "إي في6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23589, + "fields": { + "id_car_make": 215, + "name": "Niva Legend", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23590, + "fields": { + "id_car_make": 4203, + "name": "Ateca", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23591, + "fields": { + "id_car_make": 4203, + "name": "Formentor", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23592, + "fields": { + "id_car_make": 4203, + "name": "Leon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23593, + "fields": { + "id_car_make": 40, + "name": "Spring", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23594, + "fields": { + "id_car_make": 80, + "name": "QX55", + "arabic_name": "كيو إكس 55" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23595, + "fields": { + "id_car_make": 4198, + "name": "ES8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23596, + "fields": { + "id_car_make": 184, + "name": "Taos", + "arabic_name": "تاوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23597, + "fields": { + "id_car_make": 216, + "name": "31022 «Volga»", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23598, + "fields": { + "id_car_make": 216, + "name": "310221 «Volga»", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23599, + "fields": { + "id_car_make": 4183, + "name": "Replicas and selfiems", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23600, + "fields": { + "id_car_make": 4183, + "name": "Hot genus and caste", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23601, + "fields": { + "id_car_make": 4197, + "name": "One", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23602, + "fields": { + "id_car_make": 111, + "name": "MC20", + "arabic_name": "إم سي 20" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23603, + "fields": { + "id_car_make": 114, + "name": "Artura", + "arabic_name": "أرتورا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23604, + "fields": { + "id_car_make": 10, + "name": "Q4 e-tron", + "arabic_name": "كيو 4 إي-ترون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23605, + "fields": { + "id_car_make": 10, + "name": "Q4 Sportback e-tron", + "arabic_name": "كيو 4 سبورتباك إي-ترون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23606, + "fields": { + "id_car_make": 18, + "name": "i4", + "arabic_name": "آي 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23607, + "fields": { + "id_car_make": 18, + "name": "iX", + "arabic_name": "آي إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23608, + "fields": { + "id_car_make": 63, + "name": "F-2", + "arabic_name": "إف-2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23609, + "fields": { + "id_car_make": 67, + "name": "Atlas Pro", + "arabic_name": "أطلس برو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23610, + "fields": { + "id_car_make": 290, + "name": "Jolion", + "arabic_name": "جولين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23611, + "fields": { + "id_car_make": 79, + "name": "Bayon", + "arabic_name": "بايون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23612, + "fields": { + "id_car_make": 79, + "name": "Staria", + "arabic_name": "ستاريا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23613, + "fields": { + "id_car_make": 116, + "name": "EQS", + "arabic_name": "إي كيو إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23614, + "fields": { + "id_car_make": 176, + "name": "ProAce City", + "arabic_name": "برو إيس سيتي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23615, + "fields": { + "id_car_make": 32, + "name": "UNI-K", + "arabic_name": "يوني-كي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23616, + "fields": { + "id_car_make": 65, + "name": "Warszawa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23617, + "fields": { + "id_car_make": 71, + "name": "Poer", + "arabic_name": "بور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23618, + "fields": { + "id_car_make": 185, + "name": "C40", + "arabic_name": "سي 40" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23619, + "fields": { + "id_car_make": 63, + "name": "Country Squire", + "arabic_name": "كنتري سكوير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23620, + "fields": { + "id_car_make": 63, + "name": "LTD Country Squire", + "arabic_name": "إل تي دي كنتري سكوير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23621, + "fields": { + "id_car_make": 63, + "name": "Puma ST", + "arabic_name": "بوما إس تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23622, + "fields": { + "id_car_make": 79, + "name": "i20 N", + "arabic_name": "آي 20 إن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23623, + "fields": { + "id_car_make": 116, + "name": "CLK AMG GTR", + "arabic_name": "سي إل كي إيه إم جي جي تي آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23624, + "fields": { + "id_car_make": 116, + "name": "EQB", + "arabic_name": "إي كيو بي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23625, + "fields": { + "id_car_make": 116, + "name": "EQE", + "arabic_name": "إي كيو إي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23626, + "fields": { + "id_car_make": 116, + "name": "EQS AMG", + "arabic_name": "إي كيو إس إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23627, + "fields": { + "id_car_make": 116, + "name": "W138", + "arabic_name": "دبليو 138" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23628, + "fields": { + "id_car_make": 127, + "name": "Sylphy Zero Emission", + "arabic_name": "سيلفي زيرو إميشن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23629, + "fields": { + "id_car_make": 127, + "name": "Z", + "arabic_name": "زد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23630, + "fields": { + "id_car_make": 167, + "name": "Across", + "arabic_name": "أكروس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23631, + "fields": { + "id_car_make": 167, + "name": "Swace", + "arabic_name": "سوايس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23632, + "fields": { + "id_car_make": 176, + "name": "Yaris Cross", + "arabic_name": "ياريس كروس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23633, + "fields": { + "id_car_make": 184, + "name": "Arteon R", + "arabic_name": "أرتيون آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23634, + "fields": { + "id_car_make": 184, + "name": "SpaceFox", + "arabic_name": "سبيس فوكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23635, + "fields": { + "id_car_make": 184, + "name": "Tiguan R", + "arabic_name": "تيغوان آر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23636, + "fields": { + "id_car_make": 185, + "name": "PV444", + "arabic_name": "بي في 444" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23637, + "fields": { + "id_car_make": 185, + "name": "PV544", + "arabic_name": "بي في 544" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23638, + "fields": { + "id_car_make": 291, + "name": "XB7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23639, + "fields": { + "id_car_make": 3705, + "name": "Rambler Ambassador", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23640, + "fields": { + "id_car_make": 6, + "name": "Nomad", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23641, + "fields": { + "id_car_make": 8, + "name": "Towner", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23642, + "fields": { + "id_car_make": 9, + "name": "Vulcan", + "arabic_name": "فولكان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23643, + "fields": { + "id_car_make": 4147, + "name": "BJ2021", + "arabic_name": "بي جي 2021" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23644, + "fields": { + "id_car_make": 4147, + "name": "EX5", + "arabic_name": "إي إكس 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23645, + "fields": { + "id_car_make": 26, + "name": "Han", + "arabic_name": "هان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23646, + "fields": { + "id_car_make": 26, + "name": "Tang", + "arabic_name": "تانغ" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23647, + "fields": { + "id_car_make": 26, + "name": "Yuan", + "arabic_name": "يوان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23648, + "fields": { + "id_car_make": 26, + "name": "e2", + "arabic_name": "إي 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23649, + "fields": { + "id_car_make": 3752, + "name": "SC6390", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23650, + "fields": { + "id_car_make": 32, + "name": "Auchan A600 EV", + "arabic_name": "أوشان إيه٦٠٠ إي في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23651, + "fields": { + "id_car_make": 32, + "name": "Benni EC/EV", + "arabic_name": "بيني إي سي/إي في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23652, + "fields": { + "id_car_make": 36, + "name": "Six", + "arabic_name": "سيكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23653, + "fields": { + "id_car_make": 40, + "name": "Jogger", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23654, + "fields": { + "id_car_make": 44, + "name": "Hijet Caddie", + "arabic_name": "هاي جيت كادي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23655, + "fields": { + "id_car_make": 47, + "name": "280Z", + "arabic_name": "280 زد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23656, + "fields": { + "id_car_make": 4159, + "name": "D12", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23657, + "fields": { + "id_car_make": 51, + "name": "Super Bee", + "arabic_name": "سوبر بي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23658, + "fields": { + "id_car_make": 3589, + "name": "9", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23659, + "fields": { + "id_car_make": 60, + "name": "296 GTB", + "arabic_name": "296 جي تي بي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23660, + "fields": { + "id_car_make": 65, + "name": "Lanos", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23661, + "fields": { + "id_car_make": 4204, + "name": "T", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23662, + "fields": { + "id_car_make": 4204, + "name": "TS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23663, + "fields": { + "id_car_make": 4199, + "name": "Venom GT", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23664, + "fields": { + "id_car_make": 4205, + "name": "Maloo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23665, + "fields": { + "id_car_make": 87, + "name": "iEVS4", + "arabic_name": "آي إي في إس 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23666, + "fields": { + "id_car_make": 93, + "name": "Jesco", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23667, + "fields": { + "id_car_make": 95, + "name": "Countach LPI 800-4", + "arabic_name": "كونتاش إل بي آي 800-4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23668, + "fields": { + "id_car_make": 103, + "name": "3-Eleven", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23669, + "fields": { + "id_car_make": 103, + "name": "Emira", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23670, + "fields": { + "id_car_make": 4206, + "name": "Murena", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23671, + "fields": { + "id_car_make": 4207, + "name": "KR200", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23672, + "fields": { + "id_car_make": 4208, + "name": "Twelve", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23673, + "fields": { + "id_car_make": 144, + "name": "5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23674, + "fields": { + "id_car_make": 4142, + "name": "ProMaster City", + "arabic_name": "بروماستر ستي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23675, + "fields": { + "id_car_make": 3620, + "name": "Nevera", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23676, + "fields": { + "id_car_make": 179, + "name": "TR3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23677, + "fields": { + "id_car_make": 4209, + "name": "05", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23678, + "fields": { + "id_car_make": 3591, + "name": "TSR-S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23679, + "fields": { + "id_car_make": 224, + "name": "S-1L", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23680, + "fields": { + "id_car_make": 224, + "name": "S-3L", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23681, + "fields": { + "id_car_make": 4183, + "name": "Buggy Type 1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23682, + "fields": { + "id_car_make": 35, + "name": "Bolt EUV", + "arabic_name": "بولت إي يو في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23683, + "fields": { + "id_car_make": 79, + "name": "Elantra N", + "arabic_name": "إلنترا إن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23684, + "fields": { + "id_car_make": 79, + "name": "Encino", + "arabic_name": "إنسينو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23685, + "fields": { + "id_car_make": 79, + "name": "Santa Cruz", + "arabic_name": "سانتا كروز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23686, + "fields": { + "id_car_make": 113, + "name": "Autozam Clef", + "arabic_name": "أوتوزام كليف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23687, + "fields": { + "id_car_make": 116, + "name": "EQE AMG", + "arabic_name": "إي كيو إي إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23688, + "fields": { + "id_car_make": 116, + "name": "Marco Polo", + "arabic_name": "ماركو بولو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23689, + "fields": { + "id_car_make": 127, + "name": "Rogue Sport", + "arabic_name": "روج سبورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23690, + "fields": { + "id_car_make": 147, + "name": "City K-ZE", + "arabic_name": "سيتي كيه-زي إي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23691, + "fields": { + "id_car_make": 176, + "name": "Aygo X", + "arabic_name": "آيغو إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23692, + "fields": { + "id_car_make": 184, + "name": "ID.5", + "arabic_name": "آي دي 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23693, + "fields": { + "id_car_make": 184, + "name": "ID.6", + "arabic_name": "آي دي 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23694, + "fields": { + "id_car_make": 184, + "name": "Taigo", + "arabic_name": "تايغو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23695, + "fields": { + "id_car_make": 3, + "name": "Tonale", + "arabic_name": "تونيل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23696, + "fields": { + "id_car_make": 25, + "name": "Encore GX", + "arabic_name": "إنكور GX" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23697, + "fields": { + "id_car_make": 26, + "name": "Song Pro", + "arabic_name": "سونغ برو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23698, + "fields": { + "id_car_make": 34, + "name": "Tiggo 2 Pro", + "arabic_name": "تيجو 2 برو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23699, + "fields": { + "id_car_make": 34, + "name": "eQ5", + "arabic_name": "إي كيو 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23700, + "fields": { + "id_car_make": 4210, + "name": "M-NV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23701, + "fields": { + "id_car_make": 4210, + "name": "X-NV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23702, + "fields": { + "id_car_make": 4211, + "name": "VE-1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23703, + "fields": { + "id_car_make": 4196, + "name": "LX", + "arabic_name": "إل إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23704, + "fields": { + "id_car_make": 4196, + "name": "VX", + "arabic_name": "في إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23705, + "fields": { + "id_car_make": 4212, + "name": "FV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23706, + "fields": { + "id_car_make": 59, + "name": "Bestune T77", + "arabic_name": "بيستون تي77" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23707, + "fields": { + "id_car_make": 60, + "name": "Daytona SP3", + "arabic_name": "دايتونا إس بي 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23708, + "fields": { + "id_car_make": 67, + "name": "Geometry C", + "arabic_name": "جيومتري سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23709, + "fields": { + "id_car_make": 4213, + "name": "E-HS9", + "arabic_name": "إي-إتش إس 9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23710, + "fields": { + "id_car_make": 4214, + "name": "Neta U", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23711, + "fields": { + "id_car_make": 280, + "name": "Can-Am", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23712, + "fields": { + "id_car_make": 280, + "name": "RS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23714, + "fields": { + "id_car_make": 26, + "name": "Qin", + "arabic_name": "كين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23715, + "fields": { + "id_car_make": 34, + "name": "Arrizo 6", + "arabic_name": "أريزو 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23716, + "fields": { + "id_car_make": 290, + "name": "Dargo", + "arabic_name": "دارغو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23717, + "fields": { + "id_car_make": 92, + "name": "K8", + "arabic_name": "كي8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23718, + "fields": { + "id_car_make": 147, + "name": "Austral", + "arabic_name": "أوسترال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23719, + "fields": { + "id_car_make": 147, + "name": "Megane E-Tech", + "arabic_name": "ميجان إي-تك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23720, + "fields": { + "id_car_make": 159, + "name": "Enyaq RS", + "arabic_name": "إينياك آر إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23721, + "fields": { + "id_car_make": 184, + "name": "ID.Buzz", + "arabic_name": "آي دي باز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23722, + "fields": { + "id_car_make": 4215, + "name": "S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23723, + "fields": { + "id_car_make": 4215, + "name": "S Plus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23724, + "fields": { + "id_car_make": 4216, + "name": "FH-EQ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23725, + "fields": { + "id_car_make": 3815, + "name": "GV60", + "arabic_name": "جي في 60" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23726, + "fields": { + "id_car_make": 73, + "name": "8S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23727, + "fields": { + "id_car_make": 4217, + "name": "ET5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23728, + "fields": { + "id_car_make": 4202, + "name": "W6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23729, + "fields": { + "id_car_make": 4183, + "name": "Shortcut", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23730, + "fields": { + "id_car_make": 18, + "name": "i7", + "arabic_name": "آي 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23731, + "fields": { + "id_car_make": 34, + "name": "Tiggo 8 Pro Max", + "arabic_name": "تيجو 8 برو ماكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23732, + "fields": { + "id_car_make": 116, + "name": "EQS SUV", + "arabic_name": "إي كيو إس إس يو في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23733, + "fields": { + "id_car_make": 159, + "name": "Enyaq Coupe", + "arabic_name": "إينياك كوبيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 23734, + "fields": { + "id_car_make": 159, + "name": "Enyaq Coupe RS", + "arabic_name": "إينياك كوبيه آر إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24915, + "fields": { + "id_car_make": 37, + "name": "C5 X", + "arabic_name": "سي 5 إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24916, + "fields": { + "id_car_make": 67, + "name": "Preface", + "arabic_name": "بريفيس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24917, + "fields": { + "id_car_make": 99, + "name": "RZ", + "arabic_name": "آر زد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24918, + "fields": { + "id_car_make": 166, + "name": "Solterra", + "arabic_name": "سولتيرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24919, + "fields": { + "id_car_make": 176, + "name": "bZ4X", + "arabic_name": "بي زد 4 إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24920, + "fields": { + "id_car_make": 28, + "name": "Lyriq", + "arabic_name": "ليريك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24921, + "fields": { + "id_car_make": 32, + "name": "CS95", + "arabic_name": "سي إس95" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24922, + "fields": { + "id_car_make": 52, + "name": "E11K", + "arabic_name": "إي 11 كيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24923, + "fields": { + "id_car_make": 52, + "name": "T5L", + "arabic_name": "تي 5 إل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24924, + "fields": { + "id_car_make": 59, + "name": "Bestune T55", + "arabic_name": "بيستون تي55" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24925, + "fields": { + "id_car_make": 69, + "name": "Hummer EV", + "arabic_name": "همر إي في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24926, + "fields": { + "id_car_make": 111, + "name": "Grecale", + "arabic_name": "جريكالي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24927, + "fields": { + "id_car_make": 4175, + "name": "QM3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24928, + "fields": { + "id_car_make": 4307, + "name": "Free", + "arabic_name": "فري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24929, + "fields": { + "id_car_make": 10, + "name": "Q2L", + "arabic_name": "كيو 2 إل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24930, + "fields": { + "id_car_make": 18, + "name": "iX1", + "arabic_name": "آي إكس 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24931, + "fields": { + "id_car_make": 35, + "name": "Damas", + "arabic_name": "داماس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24932, + "fields": { + "id_car_make": 79, + "name": "Avante N", + "arabic_name": "أفانتي إن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24933, + "fields": { + "id_car_make": 116, + "name": "T-Class", + "arabic_name": "تي-كلاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24934, + "fields": { + "id_car_make": 116, + "name": "W21", + "arabic_name": "دبليو 21" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24935, + "fields": { + "id_car_make": 176, + "name": "GR86", + "arabic_name": "جي آر ٨٦" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24936, + "fields": { + "id_car_make": 25, + "name": "Velite 6", + "arabic_name": "فيليت 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24937, + "fields": { + "id_car_make": 26, + "name": "Dolphin", + "arabic_name": "دولفين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24938, + "fields": { + "id_car_make": 26, + "name": "E1", + "arabic_name": "إي 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24939, + "fields": { + "id_car_make": 4203, + "name": "Born", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24940, + "fields": { + "id_car_make": 52, + "name": "DF6", + "arabic_name": "دي إف 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24941, + "fields": { + "id_car_make": 4164, + "name": "GE3", + "arabic_name": "جي إي 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24942, + "fields": { + "id_car_make": 4215, + "name": "Y", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24943, + "fields": { + "id_car_make": 103, + "name": "Eletre", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24944, + "fields": { + "id_car_make": 114, + "name": "765LT", + "arabic_name": "765 إل تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24945, + "fields": { + "id_car_make": 4198, + "name": "EC6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24946, + "fields": { + "id_car_make": 4198, + "name": "ES6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24947, + "fields": { + "id_car_make": 4198, + "name": "ET7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24948, + "fields": { + "id_car_make": 141, + "name": "Iriz", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24949, + "fields": { + "id_car_make": 141, + "name": "X50", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24950, + "fields": { + "id_car_make": 141, + "name": "X70", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24951, + "fields": { + "id_car_make": 4175, + "name": "SM6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24952, + "fields": { + "id_car_make": 4308, + "name": "R1T", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24953, + "fields": { + "id_car_make": 4309, + "name": "001", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24954, + "fields": { + "id_car_make": 113, + "name": "CX-4", + "arabic_name": "سي إكس-4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24955, + "fields": { + "id_car_make": 127, + "name": "X-Terra", + "arabic_name": "إكس تيرا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24956, + "fields": { + "id_car_make": 3705, + "name": "Matador", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24957, + "fields": { + "id_car_make": 26, + "name": "Song Plus", + "arabic_name": "سونغ بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24958, + "fields": { + "id_car_make": 4310, + "name": "C11", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24959, + "fields": { + "id_car_make": 137, + "name": "Cranbrook", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24960, + "fields": { + "id_car_make": 4147, + "name": "BJ40", + "arabic_name": "بي جي 40" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24961, + "fields": { + "id_car_make": 26, + "name": "E5", + "arabic_name": "إي 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24962, + "fields": { + "id_car_make": 26, + "name": "Song Max", + "arabic_name": "سونغ ماكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24963, + "fields": { + "id_car_make": 32, + "name": "CS15", + "arabic_name": "سي إس15" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24964, + "fields": { + "id_car_make": 32, + "name": "Shenlan SL03", + "arabic_name": "شينلان إس إل03" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24965, + "fields": { + "id_car_make": 4215, + "name": "V", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24966, + "fields": { + "id_car_make": 87, + "name": "Sehol A5 Plus", + "arabic_name": "سيهول إيه 5 بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24967, + "fields": { + "id_car_make": 87, + "name": "Sehol Aipao", + "arabic_name": "سيهول أيباو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24968, + "fields": { + "id_car_make": 87, + "name": "iEVA50", + "arabic_name": "آي إي في إيه 50" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24969, + "fields": { + "id_car_make": 4310, + "name": "T03", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24970, + "fields": { + "id_car_make": 119, + "name": "4 EV", + "arabic_name": "4 إي في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24971, + "fields": { + "id_car_make": 119, + "name": "5 EV", + "arabic_name": "5 إي في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24972, + "fields": { + "id_car_make": 137, + "name": "Colt", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24973, + "fields": { + "id_car_make": 4175, + "name": "XM3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24974, + "fields": { + "id_car_make": 4195, + "name": "iMAX8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24975, + "fields": { + "id_car_make": 4311, + "name": "300", + "arabic_name": "300" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24976, + "fields": { + "id_car_make": 4311, + "name": "500", + "arabic_name": "500" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24977, + "fields": { + "id_car_make": 4202, + "name": "E5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24978, + "fields": { + "id_car_make": 35, + "name": "Menlo", + "arabic_name": "مينلو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24979, + "fields": { + "id_car_make": 116, + "name": "AMG ONE", + "arabic_name": "إيه إم جي ون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24980, + "fields": { + "id_car_make": 4312, + "name": "Alpha S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24981, + "fields": { + "id_car_make": 4312, + "name": "Alpha T", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24986, + "fields": { + "id_car_make": 123, + "name": "Outlander Sport", + "arabic_name": "أوتلاندر سبورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24987, + "fields": { + "id_car_make": 166, + "name": "Crosstrek", + "arabic_name": "كروس تريك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24988, + "fields": { + "id_car_make": 167, + "name": "DZire", + "arabic_name": "ديزاير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24989, + "fields": { + "id_car_make": 167, + "name": "S-Presso", + "arabic_name": "إس-بريسو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24990, + "fields": { + "id_car_make": 34, + "name": "Tiggo 4 Pro", + "arabic_name": "تيجو 4 برو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24991, + "fields": { + "id_car_make": 34, + "name": "Tiggo 3xe", + "arabic_name": "تيجو 3 إكس إي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24992, + "fields": { + "id_car_make": 35, + "name": "Groove", + "arabic_name": "غروف" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24993, + "fields": { + "id_car_make": 79, + "name": "Kona N", + "arabic_name": "كونا إن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24994, + "fields": { + "id_car_make": 4144, + "name": "Komendant", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24995, + "fields": { + "id_car_make": 4313, + "name": "1000 Sp", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24996, + "fields": { + "id_car_make": 32, + "name": "Linmax", + "arabic_name": "لينماكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24997, + "fields": { + "id_car_make": 32, + "name": "Oshan X5", + "arabic_name": "أوشان إكس5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24998, + "fields": { + "id_car_make": 32, + "name": "UNI-T", + "arabic_name": "يوني-تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 24999, + "fields": { + "id_car_make": 32, + "name": "UNI-V", + "arabic_name": "يوني-في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25000, + "fields": { + "id_car_make": 4314, + "name": "X", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25001, + "fields": { + "id_car_make": 51, + "name": "Hornet", + "arabic_name": "هورنت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25002, + "fields": { + "id_car_make": 52, + "name": "iX5", + "arabic_name": "آي إكس 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25003, + "fields": { + "id_car_make": 60, + "name": "Purosangue", + "arabic_name": "بوروسانغوي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25004, + "fields": { + "id_car_make": 67, + "name": "Geometry A", + "arabic_name": "جيومتري ايه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25005, + "fields": { + "id_car_make": 67, + "name": "Monjaro", + "arabic_name": "مونجارو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25006, + "fields": { + "id_car_make": 4316, + "name": "X", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25007, + "fields": { + "id_car_make": 83, + "name": "Tara", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25008, + "fields": { + "id_car_make": 87, + "name": "JS4", + "arabic_name": "جي إس 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25009, + "fields": { + "id_car_make": 87, + "name": "Sehol E20X", + "arabic_name": "سيهول إي 20 إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25010, + "fields": { + "id_car_make": 4317, + "name": "E5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25011, + "fields": { + "id_car_make": 4197, + "name": "L9", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25012, + "fields": { + "id_car_make": 4318, + "name": "C5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25013, + "fields": { + "id_car_make": 4195, + "name": "RX3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25014, + "fields": { + "id_car_make": 4195, + "name": "RX3 Pro", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25015, + "fields": { + "id_car_make": 4195, + "name": "RX5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25016, + "fields": { + "id_car_make": 4195, + "name": "RX5 Max", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25017, + "fields": { + "id_car_make": 4195, + "name": "RX8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25018, + "fields": { + "id_car_make": 4195, + "name": "i5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25019, + "fields": { + "id_car_make": 4195, + "name": "i6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25020, + "fields": { + "id_car_make": 4195, + "name": "i6 Max", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25021, + "fields": { + "id_car_make": 165, + "name": "Rexton Sports", + "arabic_name": "ريكستون سبورتس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25022, + "fields": { + "id_car_make": 4307, + "name": "Dreamer", + "arabic_name": "دريمر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25023, + "fields": { + "id_car_make": 18, + "name": "XM", + "arabic_name": "إكس إم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25024, + "fields": { + "id_car_make": 76, + "name": "N-VAN", + "arabic_name": "إن-فان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25025, + "fields": { + "id_car_make": 116, + "name": "EQE SUV", + "arabic_name": "إي كيو إي إس يو في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25026, + "fields": { + "id_car_make": 116, + "name": "EQE SUV AMG", + "arabic_name": "إي كيو إي إس يو في إيه إم جي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25027, + "fields": { + "id_car_make": 137, + "name": "Colt Vista", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25028, + "fields": { + "id_car_make": 10, + "name": "Q5 e-tron", + "arabic_name": "كيو 5 إي-ترون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25029, + "fields": { + "id_car_make": 10, + "name": "Q5L", + "arabic_name": "كيو 5 إل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25030, + "fields": { + "id_car_make": 10, + "name": "Q6", + "arabic_name": "كيو 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25031, + "fields": { + "id_car_make": 76, + "name": "e:NP1", + "arabic_name": "إي:إن بي1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25032, + "fields": { + "id_car_make": 76, + "name": "UR-V", + "arabic_name": "يو آر-في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25033, + "fields": { + "id_car_make": 76, + "name": "XR-V", + "arabic_name": "إكس آر-في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25034, + "fields": { + "id_car_make": 76, + "name": "ZR-V", + "arabic_name": "زي آر-في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25035, + "fields": { + "id_car_make": 79, + "name": "Casper", + "arabic_name": "كاسبر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25036, + "fields": { + "id_car_make": 79, + "name": "Celesta", + "arabic_name": "سيليستا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25037, + "fields": { + "id_car_make": 79, + "name": "Custo", + "arabic_name": "كوستو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25038, + "fields": { + "id_car_make": 79, + "name": "Mistra", + "arabic_name": "ميسترا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25039, + "fields": { + "id_car_make": 176, + "name": "Frontlander", + "arabic_name": "فرونتلاندر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25040, + "fields": { + "id_car_make": 176, + "name": "Izoa", + "arabic_name": "إيزوا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25041, + "fields": { + "id_car_make": 176, + "name": "Wildlander", + "arabic_name": "وايلدلاندر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25042, + "fields": { + "id_car_make": 184, + "name": "Tacqua", + "arabic_name": "تاكوا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25043, + "fields": { + "id_car_make": 32, + "name": "CS75 PLUS", + "arabic_name": "سي إس75 بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25044, + "fields": { + "id_car_make": 32, + "name": "CS85", + "arabic_name": "سي إس85" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25045, + "fields": { + "id_car_make": 4315, + "name": "i-JOY", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25046, + "fields": { + "id_car_make": 4315, + "name": "i-PRO", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25047, + "fields": { + "id_car_make": 4315, + "name": "i-VAN", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25048, + "fields": { + "id_car_make": 61, + "name": "Egea", + "arabic_name": "إيجيا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25049, + "fields": { + "id_car_make": 4213, + "name": "H5", + "arabic_name": "إتش 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25050, + "fields": { + "id_car_make": 4213, + "name": "HS5", + "arabic_name": "إتش إس 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25051, + "fields": { + "id_car_make": 4213, + "name": "HS7", + "arabic_name": "إتش إس 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25052, + "fields": { + "id_car_make": 83, + "name": "Arisun", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25053, + "fields": { + "id_car_make": 132, + "name": "Utopia", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25054, + "fields": { + "id_car_make": 149, + "name": "Spectre", + "arabic_name": "سبيكتر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25055, + "fields": { + "id_car_make": 165, + "name": "Torres", + "arabic_name": "توريس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25056, + "fields": { + "id_car_make": 185, + "name": "EX90", + "arabic_name": "إي إكس 90" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25057, + "fields": { + "id_car_make": 4192, + "name": "P5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25058, + "fields": { + "id_car_make": 4309, + "name": "009", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25059, + "fields": { + "id_car_make": 216, + "name": "25", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25060, + "fields": { + "id_car_make": 176, + "name": "Corolla Runx", + "arabic_name": "كورولا رنكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25061, + "fields": { + "id_car_make": 79, + "name": "Grand Santa Fe", + "arabic_name": "جراند سانتا في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25062, + "fields": { + "id_car_make": 4319, + "name": "DR 4.0", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25063, + "fields": { + "id_car_make": 290, + "name": "H6S", + "arabic_name": "إتش 6 إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25064, + "fields": { + "id_car_make": 113, + "name": "Eunos Presso", + "arabic_name": "يونوس بريسو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25065, + "fields": { + "id_car_make": 116, + "name": "W180", + "arabic_name": "دبليو 180" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25066, + "fields": { + "id_car_make": 184, + "name": "Lamando", + "arabic_name": "لاماندو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25067, + "fields": { + "id_car_make": 184, + "name": "Passat (North America and China)", + "arabic_name": "باسات (أمريكا الشمالية والصين)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25068, + "fields": { + "id_car_make": 184, + "name": "Phideon", + "arabic_name": "فيديون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25069, + "fields": { + "id_car_make": 184, + "name": "Talagon", + "arabic_name": "تالاجون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25070, + "fields": { + "id_car_make": 184, + "name": "Tavendor", + "arabic_name": "تافندور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25071, + "fields": { + "id_car_make": 184, + "name": "Viloran", + "arabic_name": "فيلوران" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25072, + "fields": { + "id_car_make": 176, + "name": "Wigo", + "arabic_name": "ويجو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25073, + "fields": { + "id_car_make": 4147, + "name": "BJ80", + "arabic_name": "بي جي 80" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25074, + "fields": { + "id_car_make": 4147, + "name": "U7", + "arabic_name": "يو 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25075, + "fields": { + "id_car_make": 20, + "name": "E V12", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25076, + "fields": { + "id_car_make": 28, + "name": "Escalade-V", + "arabic_name": "إسكاليد-في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25077, + "fields": { + "id_car_make": 32, + "name": "CS55 PLUS", + "arabic_name": "سي إس55 بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25080, + "fields": { + "id_car_make": 10, + "name": "Q8 e-tron", + "arabic_name": "كيو 8 إي-ترون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25081, + "fields": { + "id_car_make": 10, + "name": "Q8 Sportback e-tron", + "arabic_name": "كيو 8 سبورتباك إي-ترون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25082, + "fields": { + "id_car_make": 10, + "name": "SQ8 e-tron", + "arabic_name": "إس كيو 8 إي-ترون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25083, + "fields": { + "id_car_make": 63, + "name": "Evos", + "arabic_name": "إيفوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25084, + "fields": { + "id_car_make": 67, + "name": "Kandi EX3", + "arabic_name": "كاندي إي إكس٣" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25085, + "fields": { + "id_car_make": 290, + "name": "KuGou", + "arabic_name": "كوغو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25086, + "fields": { + "id_car_make": 76, + "name": "e:NS1", + "arabic_name": "إي:NS1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25087, + "fields": { + "id_car_make": 79, + "name": "IONIQ 6", + "arabic_name": "أيونك 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25088, + "fields": { + "id_car_make": 92, + "name": "KX3", + "arabic_name": "كي إكس3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25089, + "fields": { + "id_car_make": 92, + "name": "Sportage (China)", + "arabic_name": "سبورتاج (الصين)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25090, + "fields": { + "id_car_make": 176, + "name": "Levin", + "arabic_name": "ليفين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25091, + "fields": { + "id_car_make": 4322, + "name": "M5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25092, + "fields": { + "id_car_make": 4322, + "name": "M7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25093, + "fields": { + "id_car_make": 4147, + "name": "X3", + "arabic_name": "إكس 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25094, + "fields": { + "id_car_make": 4147, + "name": "X7", + "arabic_name": "إكس 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25095, + "fields": { + "id_car_make": 4323, + "name": "E300", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25096, + "fields": { + "id_car_make": 4323, + "name": "Kiwi EV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25097, + "fields": { + "id_car_make": 4315, + "name": "i-JET", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25098, + "fields": { + "id_car_make": 59, + "name": "Bestune NAT", + "arabic_name": "بيستون نات" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25099, + "fields": { + "id_car_make": 4316, + "name": "Z", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25100, + "fields": { + "id_car_make": 4213, + "name": "H9", + "arabic_name": "إتش 9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25101, + "fields": { + "id_car_make": 4213, + "name": "L5", + "arabic_name": "إل 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25102, + "fields": { + "id_car_make": 87, + "name": "JS6", + "arabic_name": "جي إس 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25103, + "fields": { + "id_car_make": 4324, + "name": "X70 PLUS", + "arabic_name": "إكس 70 بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25104, + "fields": { + "id_car_make": 4317, + "name": "X3 Pro", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25105, + "fields": { + "id_car_make": 4320, + "name": "Limo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25106, + "fields": { + "id_car_make": 4321, + "name": "X5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25107, + "fields": { + "id_car_make": 4321, + "name": "X7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25108, + "fields": { + "id_car_make": 4321, + "name": "X7 Plus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25109, + "fields": { + "id_car_make": 4321, + "name": "Z6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25110, + "fields": { + "id_car_make": 4308, + "name": "R1S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25111, + "fields": { + "id_car_make": 223, + "name": "3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25112, + "fields": { + "id_car_make": 223, + "name": "3e", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25113, + "fields": { + "id_car_make": 4145, + "name": "Emkoo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25114, + "fields": { + "id_car_make": 4145, + "name": "Empow", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25115, + "fields": { + "id_car_make": 4145, + "name": "GA4 Plus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25116, + "fields": { + "id_car_make": 4145, + "name": "GA6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25117, + "fields": { + "id_car_make": 4145, + "name": "GA8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25118, + "fields": { + "id_car_make": 4145, + "name": "GS3 Power", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25119, + "fields": { + "id_car_make": 4145, + "name": "GS4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25120, + "fields": { + "id_car_make": 4145, + "name": "GS4 Plus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25121, + "fields": { + "id_car_make": 4145, + "name": "GS8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25122, + "fields": { + "id_car_make": 4145, + "name": "M6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25123, + "fields": { + "id_car_make": 4145, + "name": "M6 Pro", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25124, + "fields": { + "id_car_make": 4145, + "name": "M8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25125, + "fields": { + "id_car_make": 4202, + "name": "EX6 Plus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25126, + "fields": { + "id_car_make": 4192, + "name": "G9", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25127, + "fields": { + "id_car_make": 10, + "name": "SQ8 Sportback e-tron", + "arabic_name": "إس كيو 8 سبورتباك إي-ترون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25128, + "fields": { + "id_car_make": 34, + "name": "Tiggo 7 Pro Max", + "arabic_name": "تيجو 7 برو ماكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25129, + "fields": { + "id_car_make": 35, + "name": "Seeker", + "arabic_name": "سيكر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25130, + "fields": { + "id_car_make": 63, + "name": "Equator", + "arabic_name": "إكويتر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25131, + "fields": { + "id_car_make": 67, + "name": "Okavango", + "arabic_name": "أوكافانغو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25132, + "fields": { + "id_car_make": 290, + "name": "Chitu", + "arabic_name": "تشيتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25133, + "fields": { + "id_car_make": 87, + "name": "T8 Pro", + "arabic_name": "تي 8 برو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25134, + "fields": { + "id_car_make": 4325, + "name": "VA3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25135, + "fields": { + "id_car_make": 4325, + "name": "VS5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25136, + "fields": { + "id_car_make": 4325, + "name": "VS7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25137, + "fields": { + "id_car_make": 4327, + "name": "SF5", + "arabic_name": "إس إف 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25138, + "fields": { + "id_car_make": 4326, + "name": "01", + "arabic_name": "01" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25139, + "fields": { + "id_car_make": 4326, + "name": "02", + "arabic_name": "02" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25140, + "fields": { + "id_car_make": 4326, + "name": "03", + "arabic_name": "03" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25141, + "fields": { + "id_car_make": 4326, + "name": "05", + "arabic_name": "05" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25142, + "fields": { + "id_car_make": 4326, + "name": "06", + "arabic_name": "06" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25143, + "fields": { + "id_car_make": 4326, + "name": "09", + "arabic_name": "09" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25144, + "fields": { + "id_car_make": 4198, + "name": "ET5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25409, + "fields": { + "id_car_make": 34, + "name": "Tiggo 3x", + "arabic_name": "تيجو 3 إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25410, + "fields": { + "id_car_make": 67, + "name": "Binyue Cool", + "arabic_name": "بينييو كول" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25411, + "fields": { + "id_car_make": 67, + "name": "Boyue", + "arabic_name": "بويي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25412, + "fields": { + "id_car_make": 67, + "name": "Jiaji", + "arabic_name": "جياجي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25413, + "fields": { + "id_car_make": 76, + "name": "Breeze", + "arabic_name": "بريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25414, + "fields": { + "id_car_make": 76, + "name": "Envix", + "arabic_name": "إنفيكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25415, + "fields": { + "id_car_make": 113, + "name": "CX-60", + "arabic_name": "سي إكس-60" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25416, + "fields": { + "id_car_make": 176, + "name": "Crown Kluger", + "arabic_name": "كراون كلوجر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25417, + "fields": { + "id_car_make": 26, + "name": "Seal", + "arabic_name": "سيل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25418, + "fields": { + "id_car_make": 59, + "name": "Bestune B70", + "arabic_name": "بيستون بي70" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25419, + "fields": { + "id_car_make": 59, + "name": "Bestune B70S", + "arabic_name": "بيستون بي 70 إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25420, + "fields": { + "id_car_make": 4213, + "name": "E-HS3", + "arabic_name": "إي-إتش إس 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25421, + "fields": { + "id_car_make": 4213, + "name": "E-QM5", + "arabic_name": "إي-كيو إم 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25422, + "fields": { + "id_car_make": 4213, + "name": "HQ9", + "arabic_name": "إتش كيو 9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25423, + "fields": { + "id_car_make": 4213, + "name": "LS7", + "arabic_name": "إل إس 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25424, + "fields": { + "id_car_make": 87, + "name": "Sehol X8", + "arabic_name": "سيهول إكس 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25425, + "fields": { + "id_car_make": 87, + "name": "Sehol X8 Plus", + "arabic_name": "سيهول إكس 8 بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25426, + "fields": { + "id_car_make": 4324, + "name": "X90", + "arabic_name": "إكس 90" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25427, + "fields": { + "id_car_make": 4318, + "name": "S5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25428, + "fields": { + "id_car_make": 4361, + "name": "Ballet Cat", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25429, + "fields": { + "id_car_make": 4361, + "name": "Black Cat", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25430, + "fields": { + "id_car_make": 4361, + "name": "Good Cat", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25431, + "fields": { + "id_car_make": 4361, + "name": "Lightning Cat", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25432, + "fields": { + "id_car_make": 4361, + "name": "White Cat", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25433, + "fields": { + "id_car_make": 4149, + "name": "Quick", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25434, + "fields": { + "id_car_make": 4149, + "name": "Shahin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25435, + "fields": { + "id_car_make": 4362, + "name": "Coffee 01", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25436, + "fields": { + "id_car_make": 4362, + "name": "Coffee 02", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25437, + "fields": { + "id_car_make": 4307, + "name": "Dream", + "arabic_name": "دريم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25439, + "fields": { + "id_car_make": 4196, + "name": "AtlantiX", + "arabic_name": "أتلانتكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25440, + "fields": { + "id_car_make": 67, + "name": "Vision X6", + "arabic_name": "فيجن إكس6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25441, + "fields": { + "id_car_make": 67, + "name": "Vision X6 Pro", + "arabic_name": "فيجن إكس6 برو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25442, + "fields": { + "id_car_make": 4363, + "name": "11", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25443, + "fields": { + "id_car_make": 4147, + "name": "BJ60", + "arabic_name": "بي جي 60" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25444, + "fields": { + "id_car_make": 4147, + "name": "EU7", + "arabic_name": "إي يو 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25445, + "fields": { + "id_car_make": 4147, + "name": "EX3", + "arabic_name": "إي إكس 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25446, + "fields": { + "id_car_make": 4147, + "name": "U5", + "arabic_name": "يو 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25447, + "fields": { + "id_car_make": 4147, + "name": "X5", + "arabic_name": "إكس 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25448, + "fields": { + "id_car_make": 52, + "name": "Aeolus Yixuan GS", + "arabic_name": "إيولوس ييشوان جي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25449, + "fields": { + "id_car_make": 4364, + "name": "T5 EVO", + "arabic_name": "تي 5 إيفو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25450, + "fields": { + "id_car_make": 4164, + "name": "iA5", + "arabic_name": "آي ايه 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25451, + "fields": { + "id_car_make": 73, + "name": "6P", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25452, + "fields": { + "id_car_make": 73, + "name": "7X", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25453, + "fields": { + "id_car_make": 73, + "name": "Aishang EV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25454, + "fields": { + "id_car_make": 73, + "name": "E3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25455, + "fields": { + "id_car_make": 73, + "name": "S5 Young", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25456, + "fields": { + "id_car_make": 290, + "name": "DaGou (Big Dog)", + "arabic_name": "داغو (الكلب الكبير)" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25457, + "fields": { + "id_car_make": 4213, + "name": "H7", + "arabic_name": "إتش إس 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25458, + "fields": { + "id_car_make": 4197, + "name": "L7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25459, + "fields": { + "id_car_make": 4197, + "name": "L8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25460, + "fields": { + "id_car_make": 3764, + "name": "D60", + "arabic_name": "دي 60" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25461, + "fields": { + "id_car_make": 3764, + "name": "D90 Pro", + "arabic_name": "دي 90 برو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25462, + "fields": { + "id_car_make": 3764, + "name": "G20", + "arabic_name": "جي 20" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25463, + "fields": { + "id_car_make": 3764, + "name": "G90", + "arabic_name": "جي 90" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25464, + "fields": { + "id_car_make": 3764, + "name": "MIFA 9", + "arabic_name": "مايفا 9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25465, + "fields": { + "id_car_make": 3764, + "name": "Territory", + "arabic_name": "تيريتوري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25466, + "fields": { + "id_car_make": 4198, + "name": "EC7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25467, + "fields": { + "id_car_make": 4365, + "name": "Marvel R", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25468, + "fields": { + "id_car_make": 4365, + "name": "R7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25469, + "fields": { + "id_car_make": 4195, + "name": "Clever", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25470, + "fields": { + "id_car_make": 4195, + "name": "Marvel X", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25471, + "fields": { + "id_car_make": 4195, + "name": "RX9", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25472, + "fields": { + "id_car_make": 34, + "name": "Arrizo 8", + "arabic_name": "أريزو 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25473, + "fields": { + "id_car_make": 4196, + "name": "Yaoguang", + "arabic_name": "ياوقوانغ" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25474, + "fields": { + "id_car_make": 67, + "name": "Geometry E", + "arabic_name": "جيومتري إي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25475, + "fields": { + "id_car_make": 92, + "name": "KX1", + "arabic_name": "كي إكس1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25476, + "fields": { + "id_car_make": 92, + "name": "Pegas", + "arabic_name": "بيجاس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25477, + "fields": { + "id_car_make": 113, + "name": "CX-50", + "arabic_name": "سي إكس-50" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25478, + "fields": { + "id_car_make": 135, + "name": "Pick Up", + "arabic_name": "بيك أب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25479, + "fields": { + "id_car_make": 4147, + "name": "BJ40 Plus", + "arabic_name": "بي جي 40 بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25480, + "fields": { + "id_car_make": 4147, + "name": "U5 Plus", + "arabic_name": "يو 5 بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25481, + "fields": { + "id_car_make": 4147, + "name": "X55", + "arabic_name": "إكس 55" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25482, + "fields": { + "id_car_make": 32, + "name": "Explorer", + "arabic_name": "إكسبلورر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25483, + "fields": { + "id_car_make": 52, + "name": "Aeolus E70", + "arabic_name": "إيولوس إي 70" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25484, + "fields": { + "id_car_make": 4364, + "name": "Lingzhi M5", + "arabic_name": "لينغزي إم 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25485, + "fields": { + "id_car_make": 4315, + "name": "i-SKY", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25486, + "fields": { + "id_car_make": 71, + "name": "Poer King Kong", + "arabic_name": "بور كينغ كونغ" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25487, + "fields": { + "id_car_make": 4366, + "name": "L7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25488, + "fields": { + "id_car_make": 89, + "name": "Avenger", + "arabic_name": "أفينجر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25489, + "fields": { + "id_car_make": 4324, + "name": "Dashing", + "arabic_name": "داشينغ" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25490, + "fields": { + "id_car_make": 4317, + "name": "X3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25491, + "fields": { + "id_car_make": 95, + "name": "Revuelto", + "arabic_name": "ريفويلتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25492, + "fields": { + "id_car_make": 3764, + "name": "G50", + "arabic_name": "جي 50" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25493, + "fields": { + "id_car_make": 119, + "name": "HS", + "arabic_name": "إتش إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25494, + "fields": { + "id_car_make": 4367, + "name": "LUX A2.0", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25495, + "fields": { + "id_car_make": 4367, + "name": "LUX SA2.0", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25496, + "fields": { + "id_car_make": 4367, + "name": "VF6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25497, + "fields": { + "id_car_make": 4367, + "name": "VF7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25498, + "fields": { + "id_car_make": 4367, + "name": "VF8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25499, + "fields": { + "id_car_make": 4367, + "name": "VF9", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25500, + "fields": { + "id_car_make": 4307, + "name": "Chasing Light", + "arabic_name": "شيسنج لايت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25501, + "fields": { + "id_car_make": 4362, + "name": "Lanshan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25502, + "fields": { + "id_car_make": 223, + "name": "6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25503, + "fields": { + "id_car_make": 34, + "name": "Tiggo 8 Pro e+", + "arabic_name": "تيجو 8 برو إي بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25504, + "fields": { + "id_car_make": 34, + "name": "Tiggo 9", + "arabic_name": "تيجو 9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25505, + "fields": { + "id_car_make": 67, + "name": "Icon", + "arabic_name": "آيكون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25506, + "fields": { + "id_car_make": 290, + "name": "M6", + "arabic_name": "إم 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25507, + "fields": { + "id_car_make": 290, + "name": "Shenshou", + "arabic_name": "شينشو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25508, + "fields": { + "id_car_make": 116, + "name": "Maybach EQS SUV", + "arabic_name": "مايباخ إي كيو إس إس يو في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25509, + "fields": { + "id_car_make": 135, + "name": "207i (Iran Khodro)", + "arabic_name": "207 آي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25510, + "fields": { + "id_car_make": 184, + "name": "ID.7", + "arabic_name": "آي دي 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25511, + "fields": { + "id_car_make": 25, + "name": "Electra E5", + "arabic_name": "إلكترا E5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25512, + "fields": { + "id_car_make": 25, + "name": "Envista", + "arabic_name": "إنفيستا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25513, + "fields": { + "id_car_make": 26, + "name": "Destroyer 05", + "arabic_name": "ديستروير 05" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25514, + "fields": { + "id_car_make": 26, + "name": "Yangwang U8", + "arabic_name": "يانغ وانغ يو 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25515, + "fields": { + "id_car_make": 32, + "name": "Alsvin", + "arabic_name": "ألسفين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25516, + "fields": { + "id_car_make": 32, + "name": "Kaicene F70", + "arabic_name": "كيسين إف70" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25517, + "fields": { + "id_car_make": 4314, + "name": "D9", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25518, + "fields": { + "id_car_make": 4364, + "name": "M7", + "arabic_name": "إم 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25519, + "fields": { + "id_car_make": 4364, + "name": "Yacht", + "arabic_name": "يخت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25520, + "fields": { + "id_car_make": 4213, + "name": "H6", + "arabic_name": "إتش إس 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25521, + "fields": { + "id_car_make": 4214, + "name": "Neta GT", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25522, + "fields": { + "id_car_make": 4366, + "name": "LS7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25523, + "fields": { + "id_car_make": 4324, + "name": "X70", + "arabic_name": "إكس 70" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25524, + "fields": { + "id_car_make": 4368, + "name": "X3 Pro", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25525, + "fields": { + "id_car_make": 4198, + "name": "ES7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25526, + "fields": { + "id_car_make": 4200, + "name": "3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25527, + "fields": { + "id_car_make": 4200, + "name": "4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25528, + "fields": { + "id_car_make": 160, + "name": "Smart 1", + "arabic_name": "سمارت 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25529, + "fields": { + "id_car_make": 4369, + "name": "G01", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25530, + "fields": { + "id_car_make": 4369, + "name": "G01F", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25531, + "fields": { + "id_car_make": 4369, + "name": "G05 Pro", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25532, + "fields": { + "id_car_make": 4369, + "name": "Swift G05", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25533, + "fields": { + "id_car_make": 4369, + "name": "Swift Tiger", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25534, + "fields": { + "id_car_make": 4369, + "name": "Swift X3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25535, + "fields": { + "id_car_make": 4369, + "name": "Swift X7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25536, + "fields": { + "id_car_make": 4309, + "name": "X", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 25537, + "fields": { + "id_car_make": 4307, + "name": "Passion", + "arabic_name": "باشن" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26662, + "fields": { + "id_car_make": 4947, + "name": "LX28", + "arabic_name": "إل إكس28" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26663, + "fields": { + "id_car_make": 4947, + "name": "TXL14", + "arabic_name": "تي إكس إل14" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26664, + "fields": { + "id_car_make": 4947, + "name": "VX6", + "arabic_name": "في إكس6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26665, + "fields": { + "id_car_make": 18, + "name": "i50", + "arabic_name": "آي 50" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26666, + "fields": { + "id_car_make": 32, + "name": "Eado Plus", + "arabic_name": "إيدو بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26667, + "fields": { + "id_car_make": 32, + "name": "Lamore", + "arabic_name": "لامور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26668, + "fields": { + "id_car_make": 34, + "name": "Tiggo 7 Plus0", + "arabic_name": "تيجو 7 بلس 0" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26669, + "fields": { + "id_car_make": 290, + "name": "Xiaolong0", + "arabic_name": "شياو لونغ 0" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26670, + "fields": { + "id_car_make": 290, + "name": "Xiaolong Max0", + "arabic_name": "شياو لونغ ماكس 0" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26671, + "fields": { + "id_car_make": 113, + "name": "CX-900", + "arabic_name": "سي إكس-900" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26672, + "fields": { + "id_car_make": 9, + "name": "DB120", + "arabic_name": "دي بي 120" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26673, + "fields": { + "id_car_make": 26, + "name": "Frigate 070", + "arabic_name": "فرجيت 070" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26674, + "fields": { + "id_car_make": 26, + "name": "e90", + "arabic_name": "إي 90" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26675, + "fields": { + "id_car_make": 4948, + "name": "F30", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26676, + "fields": { + "id_car_make": 33, + "name": "Liebao Leopard0", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26677, + "fields": { + "id_car_make": 52, + "name": "Shine Max0", + "arabic_name": "شاين ماكس 0" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26678, + "fields": { + "id_car_make": 4215, + "name": "LX Plus0", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26679, + "fields": { + "id_car_make": 4215, + "name": "LX0", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26680, + "fields": { + "id_car_make": 4145, + "name": "E90", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26681, + "fields": { + "id_car_make": 4145, + "name": "GS30", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26682, + "fields": { + "id_car_make": 4145, + "name": "GE30", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26683, + "fields": { + "id_car_make": 4214, + "name": "Neta V0", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26684, + "fields": { + "id_car_make": 85, + "name": "T170", + "arabic_name": "تي 170" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26685, + "fields": { + "id_car_make": 4324, + "name": "X90 PLUS", + "arabic_name": "إكس 90 بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26686, + "fields": { + "id_car_make": 91, + "name": "Yuhu 70", + "arabic_name": "يوهو 70" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26687, + "fields": { + "id_car_make": 4310, + "name": "C010", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26688, + "fields": { + "id_car_make": 102, + "name": "Z0", + "arabic_name": "زد 0" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26689, + "fields": { + "id_car_make": 103, + "name": "2-Eleven0", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26690, + "fields": { + "id_car_make": 106, + "name": "Thar0", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26691, + "fields": { + "id_car_make": 114, + "name": "750S0", + "arabic_name": "750 إس 0" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26692, + "fields": { + "id_car_make": 124, + "name": "Bubu Classic SSK0", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26693, + "fields": { + "id_car_make": 153, + "name": "S-2810", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26694, + "fields": { + "id_car_make": 4217, + "name": "HT-i0", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26695, + "fields": { + "id_car_make": 161, + "name": "DX8S0", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26696, + "fields": { + "id_car_make": 4949, + "name": "U70 Pro0", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26697, + "fields": { + "id_car_make": 4949, + "name": "U700", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26698, + "fields": { + "id_car_make": 4949, + "name": "U75PLUS0", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26699, + "fields": { + "id_car_make": 3774, + "name": "Mini EV0", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26700, + "fields": { + "id_car_make": 4950, + "name": "C240", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26729, + "fields": { + "id_car_make": 32, + "name": "Hunter", + "arabic_name": "هنتر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26730, + "fields": { + "id_car_make": 32, + "name": "Lumin", + "arabic_name": "لومين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26731, + "fields": { + "id_car_make": 67, + "name": "Binrui Cool", + "arabic_name": "بينروي كول" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26732, + "fields": { + "id_car_make": 67, + "name": "Emgrand L", + "arabic_name": "إمجراند إل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26733, + "fields": { + "id_car_make": 67, + "name": "Boyue Pro", + "arabic_name": "بويي برو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26734, + "fields": { + "id_car_make": 99, + "name": "TX", + "arabic_name": "تي إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26735, + "fields": { + "id_car_make": 99, + "name": "LBX", + "arabic_name": "إل بي إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26736, + "fields": { + "id_car_make": 4951, + "name": "U6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26737, + "fields": { + "id_car_make": 4147, + "name": "BJ90", + "arabic_name": "بي جي 90" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26738, + "fields": { + "id_car_make": 4323, + "name": "RS-3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26739, + "fields": { + "id_car_make": 4323, + "name": "RC-5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26740, + "fields": { + "id_car_make": 4323, + "name": "RS-5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26741, + "fields": { + "id_car_make": 71, + "name": "Shanhai Poer", + "arabic_name": "شانهاي بور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26742, + "fields": { + "id_car_make": 4214, + "name": "Neta S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26743, + "fields": { + "id_car_make": 4214, + "name": "Neta U-II", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26744, + "fields": { + "id_car_make": 4952, + "name": "F3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26745, + "fields": { + "id_car_make": 3764, + "name": "T90", + "arabic_name": "تي 90" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26746, + "fields": { + "id_car_make": 119, + "name": "RX8", + "arabic_name": "آر إكس 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26747, + "fields": { + "id_car_make": 4365, + "name": "F7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26748, + "fields": { + "id_car_make": 4953, + "name": "EV6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26749, + "fields": { + "id_car_make": 161, + "name": "A5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26750, + "fields": { + "id_car_make": 4369, + "name": "X3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26751, + "fields": { + "id_car_make": 4369, + "name": "X7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26752, + "fields": { + "id_car_make": 185, + "name": "EX30", + "arabic_name": "إي إكس 30" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26753, + "fields": { + "id_car_make": 4362, + "name": "VV7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26754, + "fields": { + "id_car_make": 3774, + "name": "Victory", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 26755, + "fields": { + "id_car_make": 4954, + "name": "T70", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27066, + "fields": { + "id_car_make": 32, + "name": "CS95 PLUS", + "arabic_name": "سي إس95 بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27067, + "fields": { + "id_car_make": 32, + "name": "Raeton Plus", + "arabic_name": "رايتون بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27068, + "fields": { + "id_car_make": 67, + "name": "Xingyue L", + "arabic_name": "شينجيو إل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27069, + "fields": { + "id_car_make": 67, + "name": "Azkarra", + "arabic_name": "أزكارا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27070, + "fields": { + "id_car_make": 67, + "name": "Vision X3 Pro", + "arabic_name": "فيجن إكس3 برو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27071, + "fields": { + "id_car_make": 67, + "name": "Binyue", + "arabic_name": "بينييو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27072, + "fields": { + "id_car_make": 290, + "name": "H4", + "arabic_name": "إتش 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27073, + "fields": { + "id_car_make": 87, + "name": "T9 Hunter", + "arabic_name": "تي 9 هنتر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27074, + "fields": { + "id_car_make": 159, + "name": "Kodiaq GT", + "arabic_name": "كودياك جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27075, + "fields": { + "id_car_make": 45, + "name": "Regency", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27076, + "fields": { + "id_car_make": 4314, + "name": "N7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27077, + "fields": { + "id_car_make": 52, + "name": "Fengon 580", + "arabic_name": "فينغون 580" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27078, + "fields": { + "id_car_make": 52, + "name": "Fengon 560", + "arabic_name": "فينغون 560" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27079, + "fields": { + "id_car_make": 52, + "name": "Fengon 500", + "arabic_name": "فينغون 500" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27080, + "fields": { + "id_car_make": 52, + "name": "Mengshi M-Hero 917", + "arabic_name": "مينغشي إم-هيرو 917" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27081, + "fields": { + "id_car_make": 61, + "name": "600e", + "arabic_name": "600 إي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27082, + "fields": { + "id_car_make": 4364, + "name": "Thunder", + "arabic_name": "ثاندر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27083, + "fields": { + "id_car_make": 64, + "name": "Tunland G9", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27084, + "fields": { + "id_car_make": 4215, + "name": "Y Plus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27085, + "fields": { + "id_car_make": 4316, + "name": "Y", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27086, + "fields": { + "id_car_make": 119, + "name": "7", + "arabic_name": "7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27087, + "fields": { + "id_car_make": 119, + "name": "6 Pro", + "arabic_name": "6 برو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27088, + "fields": { + "id_car_make": 5037, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27089, + "fields": { + "id_car_make": 4142, + "name": "Rampage", + "arabic_name": "رامباج" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27090, + "fields": { + "id_car_make": 4195, + "name": "Whale", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27091, + "fields": { + "id_car_make": 149, + "name": "20", + "arabic_name": "20" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27092, + "fields": { + "id_car_make": 161, + "name": "DX5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27093, + "fields": { + "id_car_make": 161, + "name": "DX8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27094, + "fields": { + "id_car_make": 161, + "name": "DX3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27095, + "fields": { + "id_car_make": 161, + "name": "DX7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27096, + "fields": { + "id_car_make": 4369, + "name": "X30", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27097, + "fields": { + "id_car_make": 3774, + "name": "Xingchi", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27098, + "fields": { + "id_car_make": 3774, + "name": "Jiachen", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27099, + "fields": { + "id_car_make": 3774, + "name": "Star Asta", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27100, + "fields": { + "id_car_make": 32, + "name": "Hunter Plus", + "arabic_name": "هنتر بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27101, + "fields": { + "id_car_make": 32, + "name": "Shenlan S7", + "arabic_name": "شينلان إس7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27102, + "fields": { + "id_car_make": 34, + "name": "Explore 06", + "arabic_name": "إكسبلور 06" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27103, + "fields": { + "id_car_make": 34, + "name": "Arizzo 5 GT", + "arabic_name": "أريزو 5 جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27104, + "fields": { + "id_car_make": 34, + "name": "Omoda 5", + "arabic_name": "أومودا 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27105, + "fields": { + "id_car_make": 34, + "name": "eQ7", + "arabic_name": "إي كيو 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27106, + "fields": { + "id_car_make": 67, + "name": "Boyue Cool", + "arabic_name": "بويي كول" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27107, + "fields": { + "id_car_make": 67, + "name": "Haoyue L", + "arabic_name": "هاويوي إل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27108, + "fields": { + "id_car_make": 67, + "name": "Galaxy L6", + "arabic_name": "جالاكسي إل6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27109, + "fields": { + "id_car_make": 67, + "name": "Galaxy L7", + "arabic_name": "جالاكسي إل7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27110, + "fields": { + "id_car_make": 79, + "name": "Mufasa", + "arabic_name": "موفاسا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27111, + "fields": { + "id_car_make": 4947, + "name": "RX", + "arabic_name": "آر إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27112, + "fields": { + "id_car_make": 4318, + "name": "S5 GT", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27113, + "fields": { + "id_car_make": 3, + "name": "33 Stradale", + "arabic_name": "33 سترادل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27114, + "fields": { + "id_car_make": 4147, + "name": "Ruixiang X5", + "arabic_name": "رويشيانغ إكس 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27115, + "fields": { + "id_car_make": 4147, + "name": "BJ2030", + "arabic_name": "بي جي 2030" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27116, + "fields": { + "id_car_make": 3751, + "name": "Ace M7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27117, + "fields": { + "id_car_make": 5038, + "name": "X50", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27118, + "fields": { + "id_car_make": 20, + "name": "G V12", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27119, + "fields": { + "id_car_make": 25, + "name": "Electra E4", + "arabic_name": "إلكترا E4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27120, + "fields": { + "id_car_make": 25, + "name": "GL6", + "arabic_name": "جي إل 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27121, + "fields": { + "id_car_make": 26, + "name": "Seagull", + "arabic_name": "سيجال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27122, + "fields": { + "id_car_make": 28, + "name": "GT4", + "arabic_name": "جي تي4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27123, + "fields": { + "id_car_make": 28, + "name": "Series 341", + "arabic_name": "سلسلة 341" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27124, + "fields": { + "id_car_make": 44, + "name": "Mira Tocot", + "arabic_name": "ميرا توكوت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27125, + "fields": { + "id_car_make": 5039, + "name": "Yuanzhi M1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27126, + "fields": { + "id_car_make": 4314, + "name": "N8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27127, + "fields": { + "id_car_make": 52, + "name": "Aeolus Haohan", + "arabic_name": "إيولوس هاوهان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27128, + "fields": { + "id_car_make": 52, + "name": "Aeolus Haoji", + "arabic_name": "إيولوس هاوجي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27129, + "fields": { + "id_car_make": 52, + "name": "iX7", + "arabic_name": "آي إكس 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27130, + "fields": { + "id_car_make": 52, + "name": "Rich 7", + "arabic_name": "ريتش 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27131, + "fields": { + "id_car_make": 52, + "name": "Nano EX1", + "arabic_name": "نانو إي إكس 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27132, + "fields": { + "id_car_make": 5040, + "name": "ME5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27133, + "fields": { + "id_car_make": 5041, + "name": "ME7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27134, + "fields": { + "id_car_make": 64, + "name": "Tunland G7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27135, + "fields": { + "id_car_make": 4164, + "name": "M8", + "arabic_name": "إم 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27136, + "fields": { + "id_car_make": 4164, + "name": "GS3", + "arabic_name": "جي إس 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27137, + "fields": { + "id_car_make": 4145, + "name": "GM6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27138, + "fields": { + "id_car_make": 4213, + "name": "HS3", + "arabic_name": "إتش إس 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27139, + "fields": { + "id_car_make": 85, + "name": "Lingtuo", + "arabic_name": "لينغتو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27140, + "fields": { + "id_car_make": 5042, + "name": "J7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27141, + "fields": { + "id_car_make": 4324, + "name": "X95", + "arabic_name": "إكس 95" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27142, + "fields": { + "id_car_make": 91, + "name": "Vigus", + "arabic_name": "فيجوس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27143, + "fields": { + "id_car_make": 91, + "name": "Vigus Work", + "arabic_name": "فيجوس وورك" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27144, + "fields": { + "id_car_make": 5043, + "name": "GSE/Yi", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27145, + "fields": { + "id_car_make": 5044, + "name": "UFO A380", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27146, + "fields": { + "id_car_make": 5045, + "name": "Tivoli", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27147, + "fields": { + "id_car_make": 5045, + "name": "Torres", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27148, + "fields": { + "id_car_make": 5045, + "name": "Korando", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27149, + "fields": { + "id_car_make": 5045, + "name": "Rexton", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27150, + "fields": { + "id_car_make": 5045, + "name": "Rexton Sports", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27151, + "fields": { + "id_car_make": 4326, + "name": "08", + "arabic_name": "08" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27152, + "fields": { + "id_car_make": 119, + "name": "One", + "arabic_name": "ون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27153, + "fields": { + "id_car_make": 119, + "name": "Mulan", + "arabic_name": "مولان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27154, + "fields": { + "id_car_make": 119, + "name": "Pilot", + "arabic_name": "بايلوت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27155, + "fields": { + "id_car_make": 4361, + "name": "SAR (Saloon) Mecha Dragon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27156, + "fields": { + "id_car_make": 4321, + "name": "X5 Plus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27157, + "fields": { + "id_car_make": 139, + "name": "911 S/T", + "arabic_name": "911 إس/تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27158, + "fields": { + "id_car_make": 5046, + "name": "K50", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27159, + "fields": { + "id_car_make": 5047, + "name": "Taga H", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27160, + "fields": { + "id_car_make": 5048, + "name": "RD6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27161, + "fields": { + "id_car_make": 5049, + "name": "Stone 01", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27162, + "fields": { + "id_car_make": 5050, + "name": "ST6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27163, + "fields": { + "id_car_make": 5051, + "name": "Transformer", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27164, + "fields": { + "id_car_make": 5052, + "name": "V-Online", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27165, + "fields": { + "id_car_make": 4362, + "name": "VV6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27166, + "fields": { + "id_car_make": 4192, + "name": "G6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27167, + "fields": { + "id_car_make": 5053, + "name": "01", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27168, + "fields": { + "id_car_make": 223, + "name": "5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27292, + "fields": { + "id_car_make": 34, + "name": "Tiggo 5x", + "arabic_name": "تيجو 5 إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27293, + "fields": { + "id_car_make": 34, + "name": "Arizzo 5 Plus", + "arabic_name": "أريزو 5 بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27294, + "fields": { + "id_car_make": 67, + "name": "Xingyue", + "arabic_name": "شينجيو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27295, + "fields": { + "id_car_make": 290, + "name": "Menglong", + "arabic_name": "منغلونغ" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27296, + "fields": { + "id_car_make": 87, + "name": "Sehol X6", + "arabic_name": "سيهول إكس 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27297, + "fields": { + "id_car_make": 92, + "name": "Sonet", + "arabic_name": "سونيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27298, + "fields": { + "id_car_make": 4311, + "name": "400", + "arabic_name": "400" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27299, + "fields": { + "id_car_make": 176, + "name": "Grand Highlander", + "arabic_name": "جراند هايلاندر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27300, + "fields": { + "id_car_make": 4147, + "name": "X35", + "arabic_name": "إكس 35" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27301, + "fields": { + "id_car_make": 26, + "name": "D1", + "arabic_name": "دي 1" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27302, + "fields": { + "id_car_make": 47, + "name": "200/220/260/280C", + "arabic_name": "200/220/260/280 سي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27303, + "fields": { + "id_car_make": 5039, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27304, + "fields": { + "id_car_make": 52, + "name": "EC36", + "arabic_name": "إي سي 36" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27305, + "fields": { + "id_car_make": 5128, + "name": "Z03", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27306, + "fields": { + "id_car_make": 5128, + "name": "A06", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27307, + "fields": { + "id_car_make": 5128, + "name": "V09", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27308, + "fields": { + "id_car_make": 5128, + "name": "007", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27309, + "fields": { + "id_car_make": 4324, + "name": "Traveller", + "arabic_name": "ترافيلر" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27310, + "fields": { + "id_car_make": 5129, + "name": "A07", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27311, + "fields": { + "id_car_make": 160, + "name": "Smart 3", + "arabic_name": "سمارت 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27312, + "fields": { + "id_car_make": 167, + "name": "Fronx", + "arabic_name": "فرونكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27313, + "fields": { + "id_car_make": 5130, + "name": "SC-01", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27314, + "fields": { + "id_car_make": 4192, + "name": "P7i", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27330, + "fields": { + "id_car_make": 91, + "name": "Dadao", + "arabic_name": "داداو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27331, + "fields": { + "id_car_make": 32, + "name": "Yida", + "arabic_name": "يدا" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27332, + "fields": { + "id_car_make": 290, + "name": "F5", + "arabic_name": "إف 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27333, + "fields": { + "id_car_make": 4147, + "name": "BJ30", + "arabic_name": "بي جي 30" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27334, + "fields": { + "id_car_make": 26, + "name": "FangChengBao Leopard 5", + "arabic_name": "فانغ تشينغ باو ليوبارد 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27335, + "fields": { + "id_car_make": 59, + "name": "Bestune T90", + "arabic_name": "بيستون تي90" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27336, + "fields": { + "id_car_make": 59, + "name": "Bestune M9", + "arabic_name": "بيستون إم9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27337, + "fields": { + "id_car_make": 4215, + "name": "Hyper GT", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27338, + "fields": { + "id_car_make": 4215, + "name": "Hyper HT", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27339, + "fields": { + "id_car_make": 4215, + "name": "Hyper SSR", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27340, + "fields": { + "id_car_make": 4145, + "name": "ES9", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27341, + "fields": { + "id_car_make": 4214, + "name": "Neta X", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27342, + "fields": { + "id_car_make": 4366, + "name": "LS6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27343, + "fields": { + "id_car_make": 87, + "name": "JS3", + "arabic_name": "جي إس 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27344, + "fields": { + "id_car_make": 87, + "name": "A5", + "arabic_name": "إيه 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27345, + "fields": { + "id_car_make": 4368, + "name": "S6 Pro", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27346, + "fields": { + "id_car_make": 4368, + "name": "X6 Pro", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27347, + "fields": { + "id_car_make": 4361, + "name": "03", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27348, + "fields": { + "id_car_make": 166, + "name": "Chiffon", + "arabic_name": "شيفون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27349, + "fields": { + "id_car_make": 5052, + "name": "VX6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27350, + "fields": { + "id_car_make": 4949, + "name": "VX7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27351, + "fields": { + "id_car_make": 4362, + "name": "Gaoshan (High Mountain)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27352, + "fields": { + "id_car_make": 3774, + "name": "Hongguang S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27353, + "fields": { + "id_car_make": 4183, + "name": "Rally/cross", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27475, + "fields": { + "id_car_make": 67, + "name": "Geometry G6", + "arabic_name": "جيومتري جي6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27476, + "fields": { + "id_car_make": 67, + "name": "Yuancheng (Farizon) FX", + "arabic_name": "يوانشينج (فاريزون) إف إكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27477, + "fields": { + "id_car_make": 18, + "name": "iX2", + "arabic_name": "آي إكس 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27478, + "fields": { + "id_car_make": 34, + "name": "Tiggo 7 Pro Plug-in Hybrid", + "arabic_name": "تيجو 7 برو بلج إن هايبرد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27479, + "fields": { + "id_car_make": 63, + "name": "Equator Sport", + "arabic_name": "إكويتر سبورت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27480, + "fields": { + "id_car_make": 4324, + "name": "Shanhai L9", + "arabic_name": "شانهاي إل 9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27481, + "fields": { + "id_car_make": 147, + "name": "Kardian", + "arabic_name": "كارديان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27482, + "fields": { + "id_car_make": 4363, + "name": "12", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27483, + "fields": { + "id_car_make": 4323, + "name": "Yunduo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27484, + "fields": { + "id_car_make": 52, + "name": "Sky EV01", + "arabic_name": "سكاي إي في 01" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27485, + "fields": { + "id_car_make": 5233, + "name": "iX5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27486, + "fields": { + "id_car_make": 5233, + "name": "iX7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27487, + "fields": { + "id_car_make": 4364, + "name": "CM7", + "arabic_name": "سي إم 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27488, + "fields": { + "id_car_make": 4145, + "name": "E8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27489, + "fields": { + "id_car_make": 4145, + "name": "GM8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27490, + "fields": { + "id_car_make": 77, + "name": "N1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27491, + "fields": { + "id_car_make": 87, + "name": "T8", + "arabic_name": "تي 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27492, + "fields": { + "id_car_make": 4317, + "name": "X7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27493, + "fields": { + "id_car_make": 93, + "name": "Jesko", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27494, + "fields": { + "id_car_make": 5234, + "name": "I", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27495, + "fields": { + "id_car_make": 3764, + "name": "G70", + "arabic_name": "جي 70" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27496, + "fields": { + "id_car_make": 3764, + "name": "MIFA 7", + "arabic_name": "مايفا 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27497, + "fields": { + "id_car_make": 119, + "name": "Cyberster", + "arabic_name": "سايبرستير" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27498, + "fields": { + "id_car_make": 5235, + "name": "Paladin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27499, + "fields": { + "id_car_make": 5236, + "name": "Concept", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27500, + "fields": { + "id_car_make": 5052, + "name": "D60 Plus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27501, + "fields": { + "id_car_make": 185, + "name": "EM90", + "arabic_name": "إي إم 90" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27502, + "fields": { + "id_car_make": 4362, + "name": "Mocca", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27503, + "fields": { + "id_car_make": 4362, + "name": "VV5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27504, + "fields": { + "id_car_make": 4362, + "name": "Latte", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27505, + "fields": { + "id_car_make": 3774, + "name": "Xingguang", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27506, + "fields": { + "id_car_make": 3774, + "name": "Binguo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27507, + "fields": { + "id_car_make": 3774, + "name": "Hongguang V", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27508, + "fields": { + "id_car_make": 4309, + "name": "007", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27509, + "fields": { + "id_car_make": 193, + "name": "Grandlion", + "arabic_name": "جراندليون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27510, + "fields": { + "id_car_make": 193, + "name": "Terralord", + "arabic_name": "تيرالورد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27514, + "fields": { + "id_car_make": 67, + "name": "Galaxy E8", + "arabic_name": "جالاكسي إي8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27515, + "fields": { + "id_car_make": 147, + "name": "Rafale", + "arabic_name": "رافال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27516, + "fields": { + "id_car_make": 4322, + "name": "M9", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27517, + "fields": { + "id_car_make": 4951, + "name": "U5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27518, + "fields": { + "id_car_make": 9, + "name": "Valour", + "arabic_name": "فالور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27519, + "fields": { + "id_car_make": 9, + "name": "Valkyrie", + "arabic_name": "فالكيري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27520, + "fields": { + "id_car_make": 26, + "name": "Song L", + "arabic_name": "سونغ إل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27521, + "fields": { + "id_car_make": 4159, + "name": "DI", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27522, + "fields": { + "id_car_make": 4315, + "name": "i-SPACE", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27523, + "fields": { + "id_car_make": 62, + "name": "Ocean", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27524, + "fields": { + "id_car_make": 64, + "name": "Mars 7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27525, + "fields": { + "id_car_make": 64, + "name": "Mars 9", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27526, + "fields": { + "id_car_make": 5238, + "name": "Omega", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27527, + "fields": { + "id_car_make": 5239, + "name": "03", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27528, + "fields": { + "id_car_make": 87, + "name": "Refine RF8", + "arabic_name": "ريفين آر إف 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27529, + "fields": { + "id_car_make": 4324, + "name": "X70 PRO", + "arabic_name": "إكس 70 برو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27530, + "fields": { + "id_car_make": 4310, + "name": "C10", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27531, + "fields": { + "id_car_make": 103, + "name": "Emeya", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27532, + "fields": { + "id_car_make": 5240, + "name": "S7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27533, + "fields": { + "id_car_make": 114, + "name": "GTS", + "arabic_name": "جي تي إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27534, + "fields": { + "id_car_make": 124, + "name": "Buddy", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27535, + "fields": { + "id_car_make": 4195, + "name": "D7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27536, + "fields": { + "id_car_make": 4182, + "name": "W22", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27537, + "fields": { + "id_car_make": 5241, + "name": "Yoyo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27538, + "fields": { + "id_car_make": 5242, + "name": "SU7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27539, + "fields": { + "id_car_make": 4192, + "name": "X9", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27647, + "fields": { + "id_car_make": 34, + "name": "Arrizo 5 GT", + "arabic_name": "أريزو 5 جي تي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27648, + "fields": { + "id_car_make": 34, + "name": "Arrizo 5 Plus", + "arabic_name": "أريزو 5 بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27649, + "fields": { + "id_car_make": 113, + "name": "CX-70", + "arabic_name": "سي إكس-70" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27650, + "fields": { + "id_car_make": 123, + "name": "Xforce", + "arabic_name": "إكس فورس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27651, + "fields": { + "id_car_make": 4323, + "name": "Yep", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27652, + "fields": { + "id_car_make": 3751, + "name": "Yuanbao", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27653, + "fields": { + "id_car_make": 3754, + "name": "iX5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27654, + "fields": { + "id_car_make": 3754, + "name": "iX7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27655, + "fields": { + "id_car_make": 52, + "name": "Shine", + "arabic_name": "شاين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27656, + "fields": { + "id_car_make": 4364, + "name": "T5L", + "arabic_name": "تي 5 إل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27657, + "fields": { + "id_car_make": 3815, + "name": "GV80 Coupe", + "arabic_name": "جي في 80 كوبيه" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27658, + "fields": { + "id_car_make": 5305, + "name": "X7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27659, + "fields": { + "id_car_make": 4324, + "name": "T2", + "arabic_name": "تي 2" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27660, + "fields": { + "id_car_make": 5306, + "name": "K150GT", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27661, + "fields": { + "id_car_make": 4368, + "name": "7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27662, + "fields": { + "id_car_make": 4368, + "name": "9", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27663, + "fields": { + "id_car_make": 4197, + "name": "Mega", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27664, + "fields": { + "id_car_make": 5129, + "name": "A05", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27665, + "fields": { + "id_car_make": 5129, + "name": "Q05", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27666, + "fields": { + "id_car_make": 4362, + "name": "05", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27729, + "fields": { + "id_car_make": 32, + "name": "Benben E-Star", + "arabic_name": "بينبين إي-ستار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27730, + "fields": { + "id_car_make": 34, + "name": "QQ Ice Cream", + "arabic_name": "كيو كيو آيس كريم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27731, + "fields": { + "id_car_make": 34, + "name": "Tiggo 8 Pro Plug-in Hybrid", + "arabic_name": "تيجو 8 برو بلج إن هايبرد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27732, + "fields": { + "id_car_make": 67, + "name": "Geometry M6", + "arabic_name": "جيومتري إم6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27733, + "fields": { + "id_car_make": 113, + "name": "E-Series", + "arabic_name": "إي-سيريز" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27734, + "fields": { + "id_car_make": 4147, + "name": "X75", + "arabic_name": "إكس 75" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27735, + "fields": { + "id_car_make": 24, + "name": "W16 Mistral", + "arabic_name": "دبليو 16 ميسترال" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27736, + "fields": { + "id_car_make": 26, + "name": "Yangwang U9", + "arabic_name": "يانغ وانغ يو 9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27737, + "fields": { + "id_car_make": 28, + "name": "Series 314", + "arabic_name": "سلسلة 314" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27738, + "fields": { + "id_car_make": 37, + "name": "Ami EV", + "arabic_name": "أمي إي في" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27739, + "fields": { + "id_car_make": 3665, + "name": "Deluxe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27740, + "fields": { + "id_car_make": 52, + "name": "DFSK ix5", + "arabic_name": "دي إف إس كيه آي إكس 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27741, + "fields": { + "id_car_make": 52, + "name": "DFSK ix7", + "arabic_name": "دي إف إس كيه آي إكس 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27742, + "fields": { + "id_car_make": 52, + "name": "Fengguang iX5", + "arabic_name": "فينغوانغ آي إكس 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27743, + "fields": { + "id_car_make": 52, + "name": "Fengguang iX7", + "arabic_name": "فينغوانغ آي إكس 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27744, + "fields": { + "id_car_make": 5041, + "name": "ME5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27745, + "fields": { + "id_car_make": 5335, + "name": "Grenadier", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27746, + "fields": { + "id_car_make": 5042, + "name": "J8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27747, + "fields": { + "id_car_make": 3762, + "name": "Haise S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27748, + "fields": { + "id_car_make": 5336, + "name": "Revero", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27749, + "fields": { + "id_car_make": 5336, + "name": "Revero GT", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27750, + "fields": { + "id_car_make": 4310, + "name": "S01", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27751, + "fields": { + "id_car_make": 5337, + "name": "M5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27752, + "fields": { + "id_car_make": 5337, + "name": "M7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27753, + "fields": { + "id_car_make": 5337, + "name": "M9", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27754, + "fields": { + "id_car_make": 5338, + "name": "HS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27755, + "fields": { + "id_car_make": 5338, + "name": "KRX", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27756, + "fields": { + "id_car_make": 5338, + "name": "HC", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27757, + "fields": { + "id_car_make": 5338, + "name": "KRS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27758, + "fields": { + "id_car_make": 4311, + "name": "700", + "arabic_name": "700" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27759, + "fields": { + "id_car_make": 5339, + "name": "007", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27760, + "fields": { + "id_car_make": 5340, + "name": "A5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27761, + "fields": { + "id_car_make": 3751, + "name": "Calorie F7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27762, + "fields": { + "id_car_make": 52, + "name": "Paladin", + "arabic_name": "بالادين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27764, + "fields": { + "id_car_make": 87, + "name": "T9", + "arabic_name": "تي 9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27765, + "fields": { + "id_car_make": 4324, + "name": "X90 PRO", + "arabic_name": "إكس 90 برو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27766, + "fields": { + "id_car_make": 5043, + "name": "EV3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27767, + "fields": { + "id_car_make": 5306, + "name": "K1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27768, + "fields": { + "id_car_make": 3764, + "name": "EUNIQ 6", + "arabic_name": "يونيك 6" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27769, + "fields": { + "id_car_make": 5341, + "name": "01", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27770, + "fields": { + "id_car_make": 5342, + "name": "X-Cross 7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27771, + "fields": { + "id_car_make": 10, + "name": "Q6 e-tron", + "arabic_name": "كيو 6 إي-ترون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27772, + "fields": { + "id_car_make": 290, + "name": "H7", + "arabic_name": "إتش 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27773, + "fields": { + "id_car_make": 290, + "name": "H3", + "arabic_name": "إتش 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27774, + "fields": { + "id_car_make": 3751, + "name": "212", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27775, + "fields": { + "id_car_make": 26, + "name": "Yuan Up", + "arabic_name": "يوان أب" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27776, + "fields": { + "id_car_make": 26, + "name": "E3", + "arabic_name": "إي 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27777, + "fields": { + "id_car_make": 5343, + "name": "EV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27778, + "fields": { + "id_car_make": 52, + "name": "Aeolus Yixuan Max", + "arabic_name": "إيولوس ييشوان ماكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27779, + "fields": { + "id_car_make": 52, + "name": "Aeolus Yixuan", + "arabic_name": "إيولوس ييشوان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27780, + "fields": { + "id_car_make": 4213, + "name": "EH7", + "arabic_name": "إي إتش 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27781, + "fields": { + "id_car_make": 149, + "name": "Boat Tail", + "arabic_name": "بوت تايل" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27782, + "fields": { + "id_car_make": 223, + "name": "8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27882, + "fields": { + "id_car_make": 67, + "name": "Vision X3", + "arabic_name": "فيجن إكس3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27883, + "fields": { + "id_car_make": 290, + "name": "H2s", + "arabic_name": "إتش 2 إس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27884, + "fields": { + "id_car_make": 4323, + "name": "Yep Plus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27885, + "fields": { + "id_car_make": 4364, + "name": "T5", + "arabic_name": "تي 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27886, + "fields": { + "id_car_make": 89, + "name": "Grand Commander", + "arabic_name": "جراند كوماندور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27887, + "fields": { + "id_car_make": 4197, + "name": "L6", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27888, + "fields": { + "id_car_make": 4326, + "name": "07", + "arabic_name": "07" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27889, + "fields": { + "id_car_make": 3764, + "name": "EUNIQ 5", + "arabic_name": "يونيك 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27914, + "fields": { + "id_car_make": 5039, + "name": "Yuehu", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27915, + "fields": { + "id_car_make": 60, + "name": "12Cilindri", + "arabic_name": "12سيلندري" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27916, + "fields": { + "id_car_make": 3764, + "name": "MIFA 5", + "arabic_name": "مايفا 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27917, + "fields": { + "id_car_make": 3666, + "name": "Super Eight", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27918, + "fields": { + "id_car_make": 4327, + "name": "M5", + "arabic_name": "إم 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27919, + "fields": { + "id_car_make": 4327, + "name": "M7", + "arabic_name": "إم 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27920, + "fields": { + "id_car_make": 32, + "name": "UNI-Z", + "arabic_name": "يوني-زد" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27921, + "fields": { + "id_car_make": 63, + "name": "LTD", + "arabic_name": "إل تي دي" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27922, + "fields": { + "id_car_make": 5405, + "name": "500", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27923, + "fields": { + "id_car_make": 5406, + "name": "Work", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27924, + "fields": { + "id_car_make": 4363, + "name": "07", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27925, + "fields": { + "id_car_make": 4147, + "name": "EU", + "arabic_name": "إي يو" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27926, + "fields": { + "id_car_make": 4147, + "name": "Kenbo 600", + "arabic_name": "كينبو 600" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27927, + "fields": { + "id_car_make": 5038, + "name": "X70", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27928, + "fields": { + "id_car_make": 15, + "name": "Mulliner Bacalar", + "arabic_name": "مولينر باكالار" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27929, + "fields": { + "id_car_make": 15, + "name": "Mulliner Batur", + "arabic_name": "مولينر باتور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27930, + "fields": { + "id_car_make": 26, + "name": "FangChengBao Leopard 8", + "arabic_name": "فانغ تشينغ باو ليوبارد 8" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27931, + "fields": { + "id_car_make": 26, + "name": "Chazor", + "arabic_name": "تشازور" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27932, + "fields": { + "id_car_make": 47, + "name": "620", + "arabic_name": "620" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27933, + "fields": { + "id_car_make": 4314, + "name": "500", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27934, + "fields": { + "id_car_make": 52, + "name": "DFSK 500", + "arabic_name": "دي إف إس كيه 500" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27935, + "fields": { + "id_car_make": 52, + "name": "Fengon E5", + "arabic_name": "فينغون إي 5" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27936, + "fields": { + "id_car_make": 60, + "name": "F12", + "arabic_name": "إف 12" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27937, + "fields": { + "id_car_make": 4145, + "name": "M6 Max", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27938, + "fields": { + "id_car_make": 4145, + "name": "GS4 Max", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27939, + "fields": { + "id_car_make": 5407, + "name": "EK01", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27940, + "fields": { + "id_car_make": 87, + "name": "S4", + "arabic_name": "إس 4" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27941, + "fields": { + "id_car_make": 5306, + "name": "K150", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27942, + "fields": { + "id_car_make": 103, + "name": "Evija", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27943, + "fields": { + "id_car_make": 5408, + "name": "X3 Pro", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27944, + "fields": { + "id_car_make": 5409, + "name": "VX", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27945, + "fields": { + "id_car_make": 5409, + "name": "TXL", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27946, + "fields": { + "id_car_make": 122, + "name": "Aceman", + "arabic_name": "أيسمان" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27947, + "fields": { + "id_car_make": 4321, + "name": "Cosmos", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27948, + "fields": { + "id_car_make": 4142, + "name": "V1000", + "arabic_name": "في1000" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27949, + "fields": { + "id_car_make": 161, + "name": "V5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27950, + "fields": { + "id_car_make": 161, + "name": "Soveran", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27951, + "fields": { + "id_car_make": 161, + "name": "V6 Cross", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27952, + "fields": { + "id_car_make": 161, + "name": "V3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27953, + "fields": { + "id_car_make": 5410, + "name": "K30", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27954, + "fields": { + "id_car_make": 5410, + "name": "C40", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27955, + "fields": { + "id_car_make": 5410, + "name": "K40", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27956, + "fields": { + "id_car_make": 185, + "name": "EC40", + "arabic_name": "إي سي 40" + } +}, +{ + "model": "inventory.carmodel", + "pk": 27957, + "fields": { + "id_car_make": 3774, + "name": "Hongguang Plus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28007, + "fields": { + "id_car_make": 4, + "name": "A290", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28008, + "fields": { + "id_car_make": 4312, + "name": "Alpha S5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28009, + "fields": { + "id_car_make": 9, + "name": "Valiant", + "arabic_name": "فاليانت" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28010, + "fields": { + "id_car_make": 4323, + "name": "510", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28011, + "fields": { + "id_car_make": 24, + "name": "Tourbillon", + "arabic_name": "توربيون" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28012, + "fields": { + "id_car_make": 26, + "name": "FangChengBao Leopard 3", + "arabic_name": "فانغ تشينغ باو ليوبارد 3" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28013, + "fields": { + "id_car_make": 26, + "name": "Seal 06", + "arabic_name": "سيل 06" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28014, + "fields": { + "id_car_make": 26, + "name": "Yuan Plus", + "arabic_name": "يوان بلس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28015, + "fields": { + "id_car_make": 52, + "name": "Nammi 01", + "arabic_name": "نامي 01" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28016, + "fields": { + "id_car_make": 5481, + "name": "ES", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28017, + "fields": { + "id_car_make": 4214, + "name": "Neta L", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28018, + "fields": { + "id_car_make": 4310, + "name": "C16", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28019, + "fields": { + "id_car_make": 5482, + "name": "L380", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28020, + "fields": { + "id_car_make": 104, + "name": "FX4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28021, + "fields": { + "id_car_make": 4326, + "name": "Z10", + "arabic_name": "زد 10" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28022, + "fields": { + "id_car_make": 4198, + "name": "Onvo L60", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28023, + "fields": { + "id_car_make": 4198, + "name": "ET9", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28024, + "fields": { + "id_car_make": 5483, + "name": "Magnum", + "arabic_name": "ماجنوم" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28025, + "fields": { + "id_car_make": 3619, + "name": "Arsenal", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28026, + "fields": { + "id_car_make": 4327, + "name": "M9", + "arabic_name": "إم 9" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28027, + "fields": { + "id_car_make": 5484, + "name": "S9", + "arabic_name": "إس ناين" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28028, + "fields": { + "id_car_make": 4362, + "name": "Macchiato", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28029, + "fields": { + "id_car_make": 4192, + "name": "Mona M03", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28030, + "fields": { + "id_car_make": 4954, + "name": "Spica", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28031, + "fields": { + "id_car_make": 5339, + "name": "008", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28032, + "fields": { + "id_car_make": 4309, + "name": "Mix", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28033, + "fields": { + "id_car_make": 192, + "name": "Domy X7", + "arabic_name": "دومي إكس 7" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28034, + "fields": { + "id_car_make": 52, + "name": "Box", + "arabic_name": "بوكس" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28035, + "fields": { + "id_car_make": 4195, + "name": "750", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carmodel", + "pk": 28036, + "fields": { + "id_car_make": 5342, + "name": "X-Cross 8", + "arabic_name": "-" + } +} +] diff --git a/carserie_backup.json b/carserie_backup.json new file mode 100644 index 00000000..8d1e839d --- /dev/null +++ b/carserie_backup.json @@ -0,0 +1,141095 @@ +[ +{ + "model": "inventory.carserie", + "pk": 457, + "fields": { + "id_car_model": 350, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 458, + "fields": { + "id_car_model": 351, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 461, + "fields": { + "id_car_model": 353, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 464, + "fields": { + "id_car_model": 356, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 465, + "fields": { + "id_car_model": 357, + "name": "SUV 5-doors", + "arabic_name": "إس يو في 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 471, + "fields": { + "id_car_model": 361, + "name": "Fastback", + "arabic_name": "فاستباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 477, + "fields": { + "id_car_model": 365, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 478, + "fields": { + "id_car_model": 366, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 479, + "fields": { + "id_car_model": 367, + "name": "Hatchback 5-doors", + "arabic_name": "هاتشباك 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 480, + "fields": { + "id_car_model": 368, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 486, + "fields": { + "id_car_model": 372, + "name": "Hatchback 5-doors", + "arabic_name": "هاتشباك 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 494, + "fields": { + "id_car_model": 376, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 498, + "fields": { + "id_car_model": 378, + "name": "Moroder Coupe", + "arabic_name": "كوبيه مورودر" + } +}, +{ + "model": "inventory.carserie", + "pk": 505, + "fields": { + "id_car_model": 382, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 506, + "fields": { + "id_car_model": 383, + "name": "Compactvan", + "arabic_name": "كومباكت فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 508, + "fields": { + "id_car_model": 385, + "name": "Compactvan Stepway", + "arabic_name": "كومباكت فان ستيب واي" + } +}, +{ + "model": "inventory.carserie", + "pk": 511, + "fields": { + "id_car_model": 387, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 513, + "fields": { + "id_car_model": 389, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 515, + "fields": { + "id_car_model": 391, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 534, + "fields": { + "id_car_model": 404, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 535, + "fields": { + "id_car_model": 405, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 536, + "fields": { + "id_car_model": 406, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 538, + "fields": { + "id_car_model": 408, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 542, + "fields": { + "id_car_model": 411, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 545, + "fields": { + "id_car_model": 413, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 546, + "fields": { + "id_car_model": 414, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 547, + "fields": { + "id_car_model": 415, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 548, + "fields": { + "id_car_model": 416, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 559, + "fields": { + "id_car_model": 423, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 560, + "fields": { + "id_car_model": 424, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 561, + "fields": { + "id_car_model": 425, + "name": "Hatchback 5-doors", + "arabic_name": "هاتشباك 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 582, + "fields": { + "id_car_model": 432, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 585, + "fields": { + "id_car_model": 434, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 588, + "fields": { + "id_car_model": 436, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 589, + "fields": { + "id_car_model": 437, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 594, + "fields": { + "id_car_model": 441, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 598, + "fields": { + "id_car_model": 443, + "name": "Compactvan", + "arabic_name": "كومباكت فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 602, + "fields": { + "id_car_model": 446, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 603, + "fields": { + "id_car_model": 447, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 604, + "fields": { + "id_car_model": 448, + "name": "SUV 3-doors", + "arabic_name": "إس يو في 3-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 618, + "fields": { + "id_car_model": 461, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 619, + "fields": { + "id_car_model": 462, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 620, + "fields": { + "id_car_model": 463, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 621, + "fields": { + "id_car_model": 464, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "بيك اب كابينة ونصف" + } +}, +{ + "model": "inventory.carserie", + "pk": 647, + "fields": { + "id_car_model": 472, + "name": "Sedan 2-doors", + "arabic_name": "سيدان بابين" + } +}, +{ + "model": "inventory.carserie", + "pk": 648, + "fields": { + "id_car_model": 473, + "name": "Cabriolet", + "arabic_name": "سطح قابل للطي" + } +}, +{ + "model": "inventory.carserie", + "pk": 651, + "fields": { + "id_car_model": 475, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 652, + "fields": { + "id_car_model": 476, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 653, + "fields": { + "id_car_model": 477, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 657, + "fields": { + "id_car_model": 481, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 658, + "fields": { + "id_car_model": 482, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 659, + "fields": { + "id_car_model": 483, + "name": "Pickup", + "arabic_name": "بيك أب" + } +}, +{ + "model": "inventory.carserie", + "pk": 660, + "fields": { + "id_car_model": 484, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 661, + "fields": { + "id_car_model": 485, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 671, + "fields": { + "id_car_model": 494, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 672, + "fields": { + "id_car_model": 495, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 674, + "fields": { + "id_car_model": 497, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 677, + "fields": { + "id_car_model": 500, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 678, + "fields": { + "id_car_model": 501, + "name": "wagon 5-doors", + "arabic_name": "واجن 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 679, + "fields": { + "id_car_model": 502, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 681, + "fields": { + "id_car_model": 504, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 682, + "fields": { + "id_car_model": 505, + "name": "Hatchback 5-doors", + "arabic_name": "هاتشباك 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 686, + "fields": { + "id_car_model": 508, + "name": "Cabriolet", + "arabic_name": "سطح قابل للطي" + } +}, +{ + "model": "inventory.carserie", + "pk": 687, + "fields": { + "id_car_model": 509, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 704, + "fields": { + "id_car_model": 521, + "name": "Hatchback 5-doors", + "arabic_name": "هاتشباك 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 705, + "fields": { + "id_car_model": 522, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 710, + "fields": { + "id_car_model": 524, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 711, + "fields": { + "id_car_model": 525, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 717, + "fields": { + "id_car_model": 531, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 718, + "fields": { + "id_car_model": 532, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 719, + "fields": { + "id_car_model": 533, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 721, + "fields": { + "id_car_model": 535, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 724, + "fields": { + "id_car_model": 537, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 725, + "fields": { + "id_car_model": 538, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 737, + "fields": { + "id_car_model": 544, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 738, + "fields": { + "id_car_model": 545, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 742, + "fields": { + "id_car_model": 548, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 743, + "fields": { + "id_car_model": 549, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 751, + "fields": { + "id_car_model": 554, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 752, + "fields": { + "id_car_model": 555, + "name": "T cabriolet 2-doors", + "arabic_name": "سطح قابل للطي - بابين" + } +}, +{ + "model": "inventory.carserie", + "pk": 753, + "fields": { + "id_car_model": 556, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 754, + "fields": { + "id_car_model": 557, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 758, + "fields": { + "id_car_model": 559, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 763, + "fields": { + "id_car_model": 562, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 764, + "fields": { + "id_car_model": 563, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 767, + "fields": { + "id_car_model": 565, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 772, + "fields": { + "id_car_model": 567, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 782, + "fields": { + "id_car_model": 572, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 783, + "fields": { + "id_car_model": 573, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 786, + "fields": { + "id_car_model": 575, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 787, + "fields": { + "id_car_model": 576, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 788, + "fields": { + "id_car_model": 577, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 789, + "fields": { + "id_car_model": 578, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 803, + "fields": { + "id_car_model": 591, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 817, + "fields": { + "id_car_model": 600, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 818, + "fields": { + "id_car_model": 601, + "name": "Hatchback 3-doors", + "arabic_name": "هاتشباك 3-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 819, + "fields": { + "id_car_model": 602, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 823, + "fields": { + "id_car_model": 604, + "name": "Pickup Single cabin", + "arabic_name": "بيك اب كابينة واحدة" + } +}, +{ + "model": "inventory.carserie", + "pk": 832, + "fields": { + "id_car_model": 610, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 833, + "fields": { + "id_car_model": 611, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 834, + "fields": { + "id_car_model": 612, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 842, + "fields": { + "id_car_model": 618, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 843, + "fields": { + "id_car_model": 619, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 846, + "fields": { + "id_car_model": 622, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 847, + "fields": { + "id_car_model": 623, + "name": "Edge", + "arabic_name": "إيدج" + } +}, +{ + "model": "inventory.carserie", + "pk": 856, + "fields": { + "id_car_model": 628, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 862, + "fields": { + "id_car_model": 632, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 867, + "fields": { + "id_car_model": 635, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 872, + "fields": { + "id_car_model": 638, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 873, + "fields": { + "id_car_model": 639, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 875, + "fields": { + "id_car_model": 641, + "name": "Hatchback 5-doors", + "arabic_name": "هاتشباك 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 880, + "fields": { + "id_car_model": 645, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 881, + "fields": { + "id_car_model": 646, + "name": "Compactvan", + "arabic_name": "كومباكت فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 884, + "fields": { + "id_car_model": 649, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 885, + "fields": { + "id_car_model": 650, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 891, + "fields": { + "id_car_model": 656, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 906, + "fields": { + "id_car_model": 665, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 911, + "fields": { + "id_car_model": 669, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 912, + "fields": { + "id_car_model": 670, + "name": "Compactvan", + "arabic_name": "كومباكت فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 916, + "fields": { + "id_car_model": 673, + "name": "Hatchback 3-doors", + "arabic_name": "هاتشباك 3-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 917, + "fields": { + "id_car_model": 674, + "name": "Hatchback 3-doors", + "arabic_name": "هاتشباك 3-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 918, + "fields": { + "id_car_model": 675, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 920, + "fields": { + "id_car_model": 677, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 921, + "fields": { + "id_car_model": 678, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 925, + "fields": { + "id_car_model": 681, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 926, + "fields": { + "id_car_model": 682, + "name": "SUV 5-doors", + "arabic_name": "إس يو في 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 928, + "fields": { + "id_car_model": 684, + "name": "Hatchback 5-doors", + "arabic_name": "هاتشباك 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 940, + "fields": { + "id_car_model": 692, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 941, + "fields": { + "id_car_model": 693, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 945, + "fields": { + "id_car_model": 695, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 974, + "fields": { + "id_car_model": 703, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 975, + "fields": { + "id_car_model": 704, + "name": "Pickup Single cabin", + "arabic_name": "بيك اب كابينة واحدة" + } +}, +{ + "model": "inventory.carserie", + "pk": 977, + "fields": { + "id_car_model": 706, + "name": "SUV 3-doors", + "arabic_name": "إس يو في 3-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 978, + "fields": { + "id_car_model": 707, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 980, + "fields": { + "id_car_model": 709, + "name": "Pickup Double cabin", + "arabic_name": "بيك أب كابينة مزدوجة" + } +}, +{ + "model": "inventory.carserie", + "pk": 981, + "fields": { + "id_car_model": 710, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 994, + "fields": { + "id_car_model": 721, + "name": "Pickup", + "arabic_name": "بيك أب" + } +}, +{ + "model": "inventory.carserie", + "pk": 995, + "fields": { + "id_car_model": 722, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 996, + "fields": { + "id_car_model": 723, + "name": "Pickup", + "arabic_name": "بيك أب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1006, + "fields": { + "id_car_model": 732, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 1007, + "fields": { + "id_car_model": 733, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1008, + "fields": { + "id_car_model": 734, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1009, + "fields": { + "id_car_model": 735, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1021, + "fields": { + "id_car_model": 743, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 1022, + "fields": { + "id_car_model": 744, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 1023, + "fields": { + "id_car_model": 745, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 1024, + "fields": { + "id_car_model": 746, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1025, + "fields": { + "id_car_model": 747, + "name": "Pickup Double cabin", + "arabic_name": "بيك اب ذو كابينة مزدوجة" + } +}, +{ + "model": "inventory.carserie", + "pk": 1031, + "fields": { + "id_car_model": 752, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1034, + "fields": { + "id_car_model": 754, + "name": "wagon", + "arabic_name": "واجون" + } +}, +{ + "model": "inventory.carserie", + "pk": 1035, + "fields": { + "id_car_model": 755, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1036, + "fields": { + "id_car_model": 756, + "name": "wagon 5-doors", + "arabic_name": "واجن 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1046, + "fields": { + "id_car_model": 765, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1047, + "fields": { + "id_car_model": 766, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 1050, + "fields": { + "id_car_model": 769, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1052, + "fields": { + "id_car_model": 771, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1053, + "fields": { + "id_car_model": 772, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1054, + "fields": { + "id_car_model": 773, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1056, + "fields": { + "id_car_model": 775, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1057, + "fields": { + "id_car_model": 776, + "name": "Hybrid minivan 5-doors", + "arabic_name": "ميني فان هجينة 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1063, + "fields": { + "id_car_model": 781, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1069, + "fields": { + "id_car_model": 786, + "name": "SUV 5-doors", + "arabic_name": "إس يو في 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1070, + "fields": { + "id_car_model": 787, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1071, + "fields": { + "id_car_model": 788, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1074, + "fields": { + "id_car_model": 791, + "name": "wagon", + "arabic_name": "واجن" + } +}, +{ + "model": "inventory.carserie", + "pk": 1079, + "fields": { + "id_car_model": 796, + "name": "Hatchback 5-doors", + "arabic_name": "هاتشباك 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1080, + "fields": { + "id_car_model": 797, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1081, + "fields": { + "id_car_model": 798, + "name": "Pickup", + "arabic_name": "بيك أب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1082, + "fields": { + "id_car_model": 799, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1083, + "fields": { + "id_car_model": 800, + "name": "Roadster", + "arabic_name": "روادستر" + } +}, +{ + "model": "inventory.carserie", + "pk": 1085, + "fields": { + "id_car_model": 802, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1088, + "fields": { + "id_car_model": 805, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1089, + "fields": { + "id_car_model": 806, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 1090, + "fields": { + "id_car_model": 807, + "name": "Sedan 4-doors", + "arabic_name": "سيدان 4-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1094, + "fields": { + "id_car_model": 811, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1095, + "fields": { + "id_car_model": 812, + "name": "Pickup", + "arabic_name": "بيك أب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1096, + "fields": { + "id_car_model": 813, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 1097, + "fields": { + "id_car_model": 814, + "name": "Pickup", + "arabic_name": "بيك أب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1104, + "fields": { + "id_car_model": 817, + "name": "X SUV 5-doors", + "arabic_name": "إكس إس يو في 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1107, + "fields": { + "id_car_model": 819, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 1109, + "fields": { + "id_car_model": 821, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1111, + "fields": { + "id_car_model": 823, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1119, + "fields": { + "id_car_model": 829, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1131, + "fields": { + "id_car_model": 836, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 1132, + "fields": { + "id_car_model": 837, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 1133, + "fields": { + "id_car_model": 838, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 1136, + "fields": { + "id_car_model": 840, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1137, + "fields": { + "id_car_model": 841, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1138, + "fields": { + "id_car_model": 842, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1139, + "fields": { + "id_car_model": 843, + "name": "SUV 5-doors", + "arabic_name": "إس يو في 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1142, + "fields": { + "id_car_model": 846, + "name": "Minivan 5-doors", + "arabic_name": "ميني فان 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1143, + "fields": { + "id_car_model": 847, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1148, + "fields": { + "id_car_model": 851, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1149, + "fields": { + "id_car_model": 852, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 1151, + "fields": { + "id_car_model": 854, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1153, + "fields": { + "id_car_model": 856, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1154, + "fields": { + "id_car_model": 857, + "name": "Hatchback 4-doors", + "arabic_name": "هاتشباك 4-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1159, + "fields": { + "id_car_model": 861, + "name": "Crossover 5-doors", + "arabic_name": "كروس أوفر 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1165, + "fields": { + "id_car_model": 865, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1166, + "fields": { + "id_car_model": 866, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 1169, + "fields": { + "id_car_model": 869, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1173, + "fields": { + "id_car_model": 873, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 1174, + "fields": { + "id_car_model": 874, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 1180, + "fields": { + "id_car_model": 878, + "name": "Hatchback 3-doors", + "arabic_name": "هاتشباك 3-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1181, + "fields": { + "id_car_model": 879, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1183, + "fields": { + "id_car_model": 881, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1184, + "fields": { + "id_car_model": 882, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1185, + "fields": { + "id_car_model": 883, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1186, + "fields": { + "id_car_model": 884, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1187, + "fields": { + "id_car_model": 885, + "name": "Cabriolet", + "arabic_name": "سطح قابل للطي" + } +}, +{ + "model": "inventory.carserie", + "pk": 1203, + "fields": { + "id_car_model": 896, + "name": "SUV 5-doors", + "arabic_name": "إس يو في 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1207, + "fields": { + "id_car_model": 899, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1213, + "fields": { + "id_car_model": 902, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 1215, + "fields": { + "id_car_model": 904, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 1216, + "fields": { + "id_car_model": 905, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 1219, + "fields": { + "id_car_model": 907, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1220, + "fields": { + "id_car_model": 908, + "name": "Compactvan", + "arabic_name": "كومباكت فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1221, + "fields": { + "id_car_model": 909, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1222, + "fields": { + "id_car_model": 910, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1224, + "fields": { + "id_car_model": 912, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 1230, + "fields": { + "id_car_model": 916, + "name": "Sedan 4-doors", + "arabic_name": "سيدان 4-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1236, + "fields": { + "id_car_model": 920, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1242, + "fields": { + "id_car_model": 924, + "name": "SUV opened", + "arabic_name": "إس يو في مفتوح" + } +}, +{ + "model": "inventory.carserie", + "pk": 1243, + "fields": { + "id_car_model": 925, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 1248, + "fields": { + "id_car_model": 930, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 1251, + "fields": { + "id_car_model": 932, + "name": "Roadster", + "arabic_name": "رودستر" + } +}, +{ + "model": "inventory.carserie", + "pk": 1252, + "fields": { + "id_car_model": 933, + "name": "Pickup", + "arabic_name": "بيك أب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1256, + "fields": { + "id_car_model": 935, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1257, + "fields": { + "id_car_model": 936, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1268, + "fields": { + "id_car_model": 942, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1269, + "fields": { + "id_car_model": 943, + "name": "Roadster", + "arabic_name": "روادستر" + } +}, +{ + "model": "inventory.carserie", + "pk": 1270, + "fields": { + "id_car_model": 944, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1271, + "fields": { + "id_car_model": 945, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1273, + "fields": { + "id_car_model": 947, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 1278, + "fields": { + "id_car_model": 951, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1281, + "fields": { + "id_car_model": 953, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1282, + "fields": { + "id_car_model": 954, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1283, + "fields": { + "id_car_model": 955, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 1295, + "fields": { + "id_car_model": 962, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1297, + "fields": { + "id_car_model": 964, + "name": "Venga", + "arabic_name": "فينجا" + } +}, +{ + "model": "inventory.carserie", + "pk": 1298, + "fields": { + "id_car_model": 965, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 1313, + "fields": { + "id_car_model": 971, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1317, + "fields": { + "id_car_model": 974, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1320, + "fields": { + "id_car_model": 976, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1323, + "fields": { + "id_car_model": 978, + "name": "Coupe 2-doors", + "arabic_name": "كوبيه بابين" + } +}, +{ + "model": "inventory.carserie", + "pk": 1324, + "fields": { + "id_car_model": 979, + "name": "targa", + "arabic_name": "طرجاء" + } +}, +{ + "model": "inventory.carserie", + "pk": 1325, + "fields": { + "id_car_model": 980, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1326, + "fields": { + "id_car_model": 981, + "name": "Pickup Double cabin", + "arabic_name": "بيك اب ذو كابينة مزدوجة" + } +}, +{ + "model": "inventory.carserie", + "pk": 1327, + "fields": { + "id_car_model": 982, + "name": "Pickup", + "arabic_name": "بيك أب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1330, + "fields": { + "id_car_model": 984, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1355, + "fields": { + "id_car_model": 1001, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1356, + "fields": { + "id_car_model": 1002, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1357, + "fields": { + "id_car_model": 1003, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 1359, + "fields": { + "id_car_model": 1005, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1369, + "fields": { + "id_car_model": 1012, + "name": "SUV 3-doors", + "arabic_name": "إس يو في 3-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1370, + "fields": { + "id_car_model": 1013, + "name": "Pickup Single cabin", + "arabic_name": "بيك اب كابينة واحدة" + } +}, +{ + "model": "inventory.carserie", + "pk": 1372, + "fields": { + "id_car_model": 1015, + "name": "Compactvan", + "arabic_name": "كومباكت فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1373, + "fields": { + "id_car_model": 1016, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1374, + "fields": { + "id_car_model": 1017, + "name": "SUV 5-doors", + "arabic_name": "إس يو في 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1382, + "fields": { + "id_car_model": 1025, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1385, + "fields": { + "id_car_model": 1028, + "name": "Coupe 2-doors", + "arabic_name": "كوبيه ذو بابين" + } +}, +{ + "model": "inventory.carserie", + "pk": 1388, + "fields": { + "id_car_model": 1031, + "name": "SUV 5-doors", + "arabic_name": "إس يو في 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1391, + "fields": { + "id_car_model": 1033, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1394, + "fields": { + "id_car_model": 1036, + "name": "X60", + "arabic_name": "إكس 60" + } +}, +{ + "model": "inventory.carserie", + "pk": 1396, + "fields": { + "id_car_model": 1037, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 1400, + "fields": { + "id_car_model": 1041, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1401, + "fields": { + "id_car_model": 1042, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1402, + "fields": { + "id_car_model": 1043, + "name": "SUV 5-doors", + "arabic_name": "إس يو في 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1419, + "fields": { + "id_car_model": 1051, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1420, + "fields": { + "id_car_model": 1052, + "name": "Cabriolet", + "arabic_name": "سطح قابل للطي" + } +}, +{ + "model": "inventory.carserie", + "pk": 1422, + "fields": { + "id_car_model": 1054, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1424, + "fields": { + "id_car_model": 1056, + "name": "S Coupe 2-doors", + "arabic_name": "إس كوبيه بابين" + } +}, +{ + "model": "inventory.carserie", + "pk": 1425, + "fields": { + "id_car_model": 1057, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1426, + "fields": { + "id_car_model": 1058, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1427, + "fields": { + "id_car_model": 1059, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1439, + "fields": { + "id_car_model": 1071, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 1440, + "fields": { + "id_car_model": 1072, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 1444, + "fields": { + "id_car_model": 1074, + "name": "SUV 3-doors", + "arabic_name": "إس يو في 3-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1454, + "fields": { + "id_car_model": 1082, + "name": "Roadster", + "arabic_name": "رودستر" + } +}, +{ + "model": "inventory.carserie", + "pk": 1455, + "fields": { + "id_car_model": 1083, + "name": "Roadster", + "arabic_name": "رودستر" + } +}, +{ + "model": "inventory.carserie", + "pk": 1456, + "fields": { + "id_car_model": 1084, + "name": "Roadster", + "arabic_name": "رودستر" + } +}, +{ + "model": "inventory.carserie", + "pk": 1457, + "fields": { + "id_car_model": 1085, + "name": "Roadster", + "arabic_name": "رودستر" + } +}, +{ + "model": "inventory.carserie", + "pk": 1458, + "fields": { + "id_car_model": 1086, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1459, + "fields": { + "id_car_model": 1087, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1460, + "fields": { + "id_car_model": 1088, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1465, + "fields": { + "id_car_model": 1092, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1468, + "fields": { + "id_car_model": 1094, + "name": "Compactvan", + "arabic_name": "كومباكت فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1469, + "fields": { + "id_car_model": 1095, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1477, + "fields": { + "id_car_model": 1102, + "name": "Cabriolet", + "arabic_name": "سطح قابل للطي" + } +}, +{ + "model": "inventory.carserie", + "pk": 1481, + "fields": { + "id_car_model": 1104, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1482, + "fields": { + "id_car_model": 1105, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1486, + "fields": { + "id_car_model": 1108, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1487, + "fields": { + "id_car_model": 1109, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1488, + "fields": { + "id_car_model": 1110, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1489, + "fields": { + "id_car_model": 1111, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1490, + "fields": { + "id_car_model": 1112, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1491, + "fields": { + "id_car_model": 1113, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1492, + "fields": { + "id_car_model": 1114, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1524, + "fields": { + "id_car_model": 1134, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1525, + "fields": { + "id_car_model": 1135, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 1526, + "fields": { + "id_car_model": 1136, + "name": "Custom Style hatchback 5-doors", + "arabic_name": "هاتشباك بأسلوب مخصص 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1530, + "fields": { + "id_car_model": 1138, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1531, + "fields": { + "id_car_model": 1139, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1533, + "fields": { + "id_car_model": 1141, + "name": "Freestyle Cab pickup 4-doors", + "arabic_name": "بيك اب فري ستايل كاب 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1537, + "fields": { + "id_car_model": 1144, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1538, + "fields": { + "id_car_model": 1145, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 1539, + "fields": { + "id_car_model": 1146, + "name": "Crossover", + "arabic_name": "كروس أوفر" + } +}, +{ + "model": "inventory.carserie", + "pk": 1542, + "fields": { + "id_car_model": 1149, + "name": "Hatchback 5-doors", + "arabic_name": "هاتشباك 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 1544, + "fields": { + "id_car_model": 1151, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1545, + "fields": { + "id_car_model": 1152, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1546, + "fields": { + "id_car_model": 1153, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1547, + "fields": { + "id_car_model": 1154, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1548, + "fields": { + "id_car_model": 1155, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1556, + "fields": { + "id_car_model": 1162, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1558, + "fields": { + "id_car_model": 1164, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1559, + "fields": { + "id_car_model": 1165, + "name": "SUV", + "arabic_name": "إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 1560, + "fields": { + "id_car_model": 1166, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1564, + "fields": { + "id_car_model": 1169, + "name": "Marvie SUV", + "arabic_name": "مارفي إس يو في" + } +}, +{ + "model": "inventory.carserie", + "pk": 1567, + "fields": { + "id_car_model": 1171, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1570, + "fields": { + "id_car_model": 1174, + "name": "RX-8", + "arabic_name": "آر إكس-8" + } +}, +{ + "model": "inventory.carserie", + "pk": 1571, + "fields": { + "id_car_model": 1175, + "name": "Minivan", + "arabic_name": "ميني فان" + } +}, +{ + "model": "inventory.carserie", + "pk": 1573, + "fields": { + "id_car_model": 1177, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 1575, + "fields": { + "id_car_model": 1179, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 1579, + "fields": { + "id_car_model": 1182, + "name": "Coupe", + "arabic_name": "كوبيه" + } +}, +{ + "model": "inventory.carserie", + "pk": 1580, + "fields": { + "id_car_model": 1183, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 1581, + "fields": { + "id_car_model": 1184, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1582, + "fields": { + "id_car_model": 1185, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1583, + "fields": { + "id_car_model": 1186, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1616, + "fields": { + "id_car_model": 1209, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1620, + "fields": { + "id_car_model": 1212, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1628, + "fields": { + "id_car_model": 1215, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1636, + "fields": { + "id_car_model": 1221, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1637, + "fields": { + "id_car_model": 1222, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1638, + "fields": { + "id_car_model": 1223, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1640, + "fields": { + "id_car_model": 1225, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1647, + "fields": { + "id_car_model": 1230, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1648, + "fields": { + "id_car_model": 1231, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1649, + "fields": { + "id_car_model": 1232, + "name": "Cross hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1650, + "fields": { + "id_car_model": 1233, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1651, + "fields": { + "id_car_model": 1234, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1652, + "fields": { + "id_car_model": 1235, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1655, + "fields": { + "id_car_model": 1237, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1656, + "fields": { + "id_car_model": 1238, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1660, + "fields": { + "id_car_model": 1241, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1661, + "fields": { + "id_car_model": 1242, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1662, + "fields": { + "id_car_model": 1243, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1675, + "fields": { + "id_car_model": 1251, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1676, + "fields": { + "id_car_model": 1252, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1677, + "fields": { + "id_car_model": 1253, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1678, + "fields": { + "id_car_model": 1254, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1712, + "fields": { + "id_car_model": 1272, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1713, + "fields": { + "id_car_model": 1273, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1716, + "fields": { + "id_car_model": 1276, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1722, + "fields": { + "id_car_model": 1281, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1724, + "fields": { + "id_car_model": 1283, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1726, + "fields": { + "id_car_model": 1285, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1727, + "fields": { + "id_car_model": 1286, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1728, + "fields": { + "id_car_model": 1287, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1729, + "fields": { + "id_car_model": 1288, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1738, + "fields": { + "id_car_model": 1294, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1739, + "fields": { + "id_car_model": 1295, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1752, + "fields": { + "id_car_model": 1303, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1757, + "fields": { + "id_car_model": 1307, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1758, + "fields": { + "id_car_model": 1308, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1759, + "fields": { + "id_car_model": 1309, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1764, + "fields": { + "id_car_model": 1313, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1770, + "fields": { + "id_car_model": 1319, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1771, + "fields": { + "id_car_model": 1320, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1772, + "fields": { + "id_car_model": 1321, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1787, + "fields": { + "id_car_model": 1333, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1788, + "fields": { + "id_car_model": 1334, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1789, + "fields": { + "id_car_model": 1335, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1790, + "fields": { + "id_car_model": 1336, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1795, + "fields": { + "id_car_model": 1341, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1796, + "fields": { + "id_car_model": 1342, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1798, + "fields": { + "id_car_model": 1344, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1802, + "fields": { + "id_car_model": 1346, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1803, + "fields": { + "id_car_model": 1347, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1805, + "fields": { + "id_car_model": 1349, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1813, + "fields": { + "id_car_model": 1355, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1815, + "fields": { + "id_car_model": 1357, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1817, + "fields": { + "id_car_model": 1359, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1819, + "fields": { + "id_car_model": 1361, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1820, + "fields": { + "id_car_model": 1362, + "name": "Canvas top hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1828, + "fields": { + "id_car_model": 1370, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1830, + "fields": { + "id_car_model": 1372, + "name": "Crew Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1831, + "fields": { + "id_car_model": 1373, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1833, + "fields": { + "id_car_model": 1375, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1836, + "fields": { + "id_car_model": 1377, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1839, + "fields": { + "id_car_model": 1380, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1841, + "fields": { + "id_car_model": 1382, + "name": "Highway Star minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1843, + "fields": { + "id_car_model": 1384, + "name": "Highway Star Touring minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1845, + "fields": { + "id_car_model": 1386, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1847, + "fields": { + "id_car_model": 1388, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1848, + "fields": { + "id_car_model": 1389, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1867, + "fields": { + "id_car_model": 1402, + "name": "Canvas top hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1870, + "fields": { + "id_car_model": 1405, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1871, + "fields": { + "id_car_model": 1406, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1872, + "fields": { + "id_car_model": 1407, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1879, + "fields": { + "id_car_model": 1412, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1889, + "fields": { + "id_car_model": 1417, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1891, + "fields": { + "id_car_model": 1419, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1896, + "fields": { + "id_car_model": 1424, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1905, + "fields": { + "id_car_model": 1428, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1909, + "fields": { + "id_car_model": 1430, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1931, + "fields": { + "id_car_model": 1441, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1934, + "fields": { + "id_car_model": 1443, + "name": "GSE Coupe 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1940, + "fields": { + "id_car_model": 1447, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1941, + "fields": { + "id_car_model": 1448, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1942, + "fields": { + "id_car_model": 1449, + "name": "Turbo targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1950, + "fields": { + "id_car_model": 1454, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1951, + "fields": { + "id_car_model": 1455, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1957, + "fields": { + "id_car_model": 1458, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1958, + "fields": { + "id_car_model": 1459, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1959, + "fields": { + "id_car_model": 1460, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1960, + "fields": { + "id_car_model": 1461, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1961, + "fields": { + "id_car_model": 1462, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1962, + "fields": { + "id_car_model": 1463, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1963, + "fields": { + "id_car_model": 1464, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1964, + "fields": { + "id_car_model": 1465, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 1992, + "fields": { + "id_car_model": 1478, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2011, + "fields": { + "id_car_model": 1485, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2012, + "fields": { + "id_car_model": 1486, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2021, + "fields": { + "id_car_model": 1490, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2022, + "fields": { + "id_car_model": 1491, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2032, + "fields": { + "id_car_model": 1495, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2033, + "fields": { + "id_car_model": 1496, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2034, + "fields": { + "id_car_model": 1497, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2035, + "fields": { + "id_car_model": 1498, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2040, + "fields": { + "id_car_model": 1503, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2041, + "fields": { + "id_car_model": 1504, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2042, + "fields": { + "id_car_model": 1505, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2045, + "fields": { + "id_car_model": 1507, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2056, + "fields": { + "id_car_model": 1514, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2058, + "fields": { + "id_car_model": 1516, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2068, + "fields": { + "id_car_model": 1521, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2076, + "fields": { + "id_car_model": 1527, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2085, + "fields": { + "id_car_model": 1532, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2086, + "fields": { + "id_car_model": 1533, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2092, + "fields": { + "id_car_model": 1537, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2093, + "fields": { + "id_car_model": 2388, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2094, + "fields": { + "id_car_model": 1539, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2095, + "fields": { + "id_car_model": 1540, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2098, + "fields": { + "id_car_model": 1542, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2102, + "fields": { + "id_car_model": 1545, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2105, + "fields": { + "id_car_model": 1548, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2107, + "fields": { + "id_car_model": 1550, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2109, + "fields": { + "id_car_model": 1552, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2110, + "fields": { + "id_car_model": 1553, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2111, + "fields": { + "id_car_model": 1554, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2112, + "fields": { + "id_car_model": 1555, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2113, + "fields": { + "id_car_model": 1556, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2115, + "fields": { + "id_car_model": 1558, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2126, + "fields": { + "id_car_model": 1565, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2127, + "fields": { + "id_car_model": 1566, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2130, + "fields": { + "id_car_model": 1568, + "name": "Cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2136, + "fields": { + "id_car_model": 1572, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2137, + "fields": { + "id_car_model": 1573, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2138, + "fields": { + "id_car_model": 1574, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2139, + "fields": { + "id_car_model": 1575, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2143, + "fields": { + "id_car_model": 1578, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2147, + "fields": { + "id_car_model": 1580, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2148, + "fields": { + "id_car_model": 1581, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2154, + "fields": { + "id_car_model": 1584, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2155, + "fields": { + "id_car_model": 1585, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2156, + "fields": { + "id_car_model": 1586, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2164, + "fields": { + "id_car_model": 1593, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2181, + "fields": { + "id_car_model": 1605, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2184, + "fields": { + "id_car_model": 1608, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2185, + "fields": { + "id_car_model": 1609, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2186, + "fields": { + "id_car_model": 1610, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2187, + "fields": { + "id_car_model": 1611, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2190, + "fields": { + "id_car_model": 1614, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2193, + "fields": { + "id_car_model": 1617, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2200, + "fields": { + "id_car_model": 1622, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2212, + "fields": { + "id_car_model": 1628, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2223, + "fields": { + "id_car_model": 1633, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2224, + "fields": { + "id_car_model": 1634, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2225, + "fields": { + "id_car_model": 1635, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2229, + "fields": { + "id_car_model": 1637, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2232, + "fields": { + "id_car_model": 1639, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2233, + "fields": { + "id_car_model": 1640, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2239, + "fields": { + "id_car_model": 1643, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2240, + "fields": { + "id_car_model": 1644, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2243, + "fields": { + "id_car_model": 1646, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2249, + "fields": { + "id_car_model": 1649, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2254, + "fields": { + "id_car_model": 1653, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2255, + "fields": { + "id_car_model": 1654, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2257, + "fields": { + "id_car_model": 1656, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2261, + "fields": { + "id_car_model": 1660, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2262, + "fields": { + "id_car_model": 1661, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2264, + "fields": { + "id_car_model": 1663, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2266, + "fields": { + "id_car_model": 1665, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2267, + "fields": { + "id_car_model": 1666, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2283, + "fields": { + "id_car_model": 1675, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2284, + "fields": { + "id_car_model": 1676, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2285, + "fields": { + "id_car_model": 1677, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2287, + "fields": { + "id_car_model": 1679, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2288, + "fields": { + "id_car_model": 1680, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2303, + "fields": { + "id_car_model": 1688, + "name": "Scout minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2310, + "fields": { + "id_car_model": 1693, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2311, + "fields": { + "id_car_model": 1694, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2312, + "fields": { + "id_car_model": 1695, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2321, + "fields": { + "id_car_model": 1702, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2322, + "fields": { + "id_car_model": 1703, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2330, + "fields": { + "id_car_model": 1709, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2331, + "fields": { + "id_car_model": 1710, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2332, + "fields": { + "id_car_model": 1711, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2333, + "fields": { + "id_car_model": 1712, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2334, + "fields": { + "id_car_model": 1713, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2336, + "fields": { + "id_car_model": 1715, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2345, + "fields": { + "id_car_model": 1721, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2346, + "fields": { + "id_car_model": 1722, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2350, + "fields": { + "id_car_model": 1725, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2351, + "fields": { + "id_car_model": 1726, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2353, + "fields": { + "id_car_model": 1728, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2354, + "fields": { + "id_car_model": 1729, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2355, + "fields": { + "id_car_model": 1730, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2356, + "fields": { + "id_car_model": 1731, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2379, + "fields": { + "id_car_model": 1748, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2380, + "fields": { + "id_car_model": 1749, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2385, + "fields": { + "id_car_model": 1753, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2388, + "fields": { + "id_car_model": 1756, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2389, + "fields": { + "id_car_model": 1757, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2393, + "fields": { + "id_car_model": 1760, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2396, + "fields": { + "id_car_model": 1763, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2397, + "fields": { + "id_car_model": 1764, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2398, + "fields": { + "id_car_model": 1765, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2401, + "fields": { + "id_car_model": 1767, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2404, + "fields": { + "id_car_model": 1769, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2405, + "fields": { + "id_car_model": 1770, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2406, + "fields": { + "id_car_model": 1771, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2410, + "fields": { + "id_car_model": 1775, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2412, + "fields": { + "id_car_model": 1777, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2413, + "fields": { + "id_car_model": 1778, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2419, + "fields": { + "id_car_model": 1781, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2420, + "fields": { + "id_car_model": 1782, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2423, + "fields": { + "id_car_model": 1785, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2424, + "fields": { + "id_car_model": 1786, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2426, + "fields": { + "id_car_model": 1788, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2427, + "fields": { + "id_car_model": 1789, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2436, + "fields": { + "id_car_model": 1797, + "name": "AU-spec. Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2442, + "fields": { + "id_car_model": 1801, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2446, + "fields": { + "id_car_model": 1804, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2447, + "fields": { + "id_car_model": 1805, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2450, + "fields": { + "id_car_model": 1807, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2463, + "fields": { + "id_car_model": 1819, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2472, + "fields": { + "id_car_model": 1827, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2475, + "fields": { + "id_car_model": 1829, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2479, + "fields": { + "id_car_model": 1832, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2480, + "fields": { + "id_car_model": 1833, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2481, + "fields": { + "id_car_model": 1834, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2482, + "fields": { + "id_car_model": 1835, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2483, + "fields": { + "id_car_model": 1836, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2490, + "fields": { + "id_car_model": 1843, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2492, + "fields": { + "id_car_model": 1845, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2510, + "fields": { + "id_car_model": 1855, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2515, + "fields": { + "id_car_model": 1858, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2516, + "fields": { + "id_car_model": 1859, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2519, + "fields": { + "id_car_model": 1861, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2520, + "fields": { + "id_car_model": 1862, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2521, + "fields": { + "id_car_model": 1863, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2522, + "fields": { + "id_car_model": 1864, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2523, + "fields": { + "id_car_model": 1865, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2524, + "fields": { + "id_car_model": 1866, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2525, + "fields": { + "id_car_model": 1867, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2560, + "fields": { + "id_car_model": 1887, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2561, + "fields": { + "id_car_model": 1888, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2570, + "fields": { + "id_car_model": 1894, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2573, + "fields": { + "id_car_model": 1896, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2575, + "fields": { + "id_car_model": 1898, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2585, + "fields": { + "id_car_model": 1906, + "name": "Cross hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2591, + "fields": { + "id_car_model": 1910, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2596, + "fields": { + "id_car_model": 1914, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2598, + "fields": { + "id_car_model": 1916, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2608, + "fields": { + "id_car_model": 1922, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2622, + "fields": { + "id_car_model": 1932, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2637, + "fields": { + "id_car_model": 1940, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2657, + "fields": { + "id_car_model": 1954, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2659, + "fields": { + "id_car_model": 1956, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2661, + "fields": { + "id_car_model": 1958, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2676, + "fields": { + "id_car_model": 1970, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2678, + "fields": { + "id_car_model": 1972, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2680, + "fields": { + "id_car_model": 1974, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2682, + "fields": { + "id_car_model": 1976, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2684, + "fields": { + "id_car_model": 1978, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2694, + "fields": { + "id_car_model": 1986, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2696, + "fields": { + "id_car_model": 1988, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2701, + "fields": { + "id_car_model": 1992, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2705, + "fields": { + "id_car_model": 1996, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2707, + "fields": { + "id_car_model": 1998, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2712, + "fields": { + "id_car_model": 2002, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2736, + "fields": { + "id_car_model": 2020, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2738, + "fields": { + "id_car_model": 2022, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2839, + "fields": { + "id_car_model": 4, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2840, + "fields": { + "id_car_model": 7, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2841, + "fields": { + "id_car_model": 9, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2842, + "fields": { + "id_car_model": 9, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2843, + "fields": { + "id_car_model": 10, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2844, + "fields": { + "id_car_model": 10, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2845, + "fields": { + "id_car_model": 11, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2846, + "fields": { + "id_car_model": 13, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2847, + "fields": { + "id_car_model": 14, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2848, + "fields": { + "id_car_model": 18, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2849, + "fields": { + "id_car_model": 19, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2850, + "fields": { + "id_car_model": 19, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2851, + "fields": { + "id_car_model": 23, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2852, + "fields": { + "id_car_model": 23, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2853, + "fields": { + "id_car_model": 25, + "name": "Crosswagon wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2854, + "fields": { + "id_car_model": 25, + "name": "GTA Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2855, + "fields": { + "id_car_model": 26, + "name": "Sportwagon wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2856, + "fields": { + "id_car_model": 26, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2857, + "fields": { + "id_car_model": 28, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2858, + "fields": { + "id_car_model": 29, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2859, + "fields": { + "id_car_model": 29, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2860, + "fields": { + "id_car_model": 33, + "name": "Spider cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2861, + "fields": { + "id_car_model": 33, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2862, + "fields": { + "id_car_model": 35, + "name": "wagon 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2863, + "fields": { + "id_car_model": 35, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2864, + "fields": { + "id_car_model": 35, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2865, + "fields": { + "id_car_model": 36, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2866, + "fields": { + "id_car_model": 36, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2868, + "fields": { + "id_car_model": 47, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2869, + "fields": { + "id_car_model": 56, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2870, + "fields": { + "id_car_model": 56, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2871, + "fields": { + "id_car_model": 59, + "name": "SUV 3-doors Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2872, + "fields": { + "id_car_model": 59, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2873, + "fields": { + "id_car_model": 62, + "name": "Volante cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2874, + "fields": { + "id_car_model": 62, + "name": "Vantage Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2875, + "fields": { + "id_car_model": 63, + "name": "Volante cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2877, + "fields": { + "id_car_model": 64, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2878, + "fields": { + "id_car_model": 64, + "name": "Volante cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2879, + "fields": { + "id_car_model": 65, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2880, + "fields": { + "id_car_model": 65, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2881, + "fields": { + "id_car_model": 67, + "name": "S liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2882, + "fields": { + "id_car_model": 69, + "name": "Volante cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2883, + "fields": { + "id_car_model": 69, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2884, + "fields": { + "id_car_model": 70, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2885, + "fields": { + "id_car_model": 70, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2886, + "fields": { + "id_car_model": 72, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2887, + "fields": { + "id_car_model": 72, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2888, + "fields": { + "id_car_model": 73, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2889, + "fields": { + "id_car_model": 73, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2890, + "fields": { + "id_car_model": 74, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2891, + "fields": { + "id_car_model": 74, + "name": "Cabriolet Volante", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2892, + "fields": { + "id_car_model": 75, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2893, + "fields": { + "id_car_model": 75, + "name": "wagon 5-doors Avant", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2894, + "fields": { + "id_car_model": 76, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2895, + "fields": { + "id_car_model": 76, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2896, + "fields": { + "id_car_model": 78, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2897, + "fields": { + "id_car_model": 78, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2898, + "fields": { + "id_car_model": 79, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2899, + "fields": { + "id_car_model": 80, + "name": "Audi A1 Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2901, + "fields": { + "id_car_model": 82, + "name": "Sportback hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2902, + "fields": { + "id_car_model": 82, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2903, + "fields": { + "id_car_model": 82, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2904, + "fields": { + "id_car_model": 82, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2906, + "fields": { + "id_car_model": 84, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2907, + "fields": { + "id_car_model": 84, + "name": "Allroad quattro wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2908, + "fields": { + "id_car_model": 85, + "name": "Sportback liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2910, + "fields": { + "id_car_model": 85, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2912, + "fields": { + "id_car_model": 87, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2913, + "fields": { + "id_car_model": 87, + "name": "Avant wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2914, + "fields": { + "id_car_model": 89, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2915, + "fields": { + "id_car_model": 91, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2916, + "fields": { + "id_car_model": 94, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2917, + "fields": { + "id_car_model": 97, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2918, + "fields": { + "id_car_model": 97, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2919, + "fields": { + "id_car_model": 101, + "name": "Avant wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2920, + "fields": { + "id_car_model": 102, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2921, + "fields": { + "id_car_model": 102, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2922, + "fields": { + "id_car_model": 103, + "name": "Avant wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2923, + "fields": { + "id_car_model": 105, + "name": "Sportback hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2924, + "fields": { + "id_car_model": 105, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2925, + "fields": { + "id_car_model": 106, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2926, + "fields": { + "id_car_model": 106, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2927, + "fields": { + "id_car_model": 107, + "name": "Sportback hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2928, + "fields": { + "id_car_model": 107, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2929, + "fields": { + "id_car_model": 107, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2930, + "fields": { + "id_car_model": 107, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2931, + "fields": { + "id_car_model": 108, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2933, + "fields": { + "id_car_model": 109, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2934, + "fields": { + "id_car_model": 109, + "name": "Sportback liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2935, + "fields": { + "id_car_model": 109, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2936, + "fields": { + "id_car_model": 110, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2937, + "fields": { + "id_car_model": 110, + "name": "Avant wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2938, + "fields": { + "id_car_model": 112, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2939, + "fields": { + "id_car_model": 114, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2940, + "fields": { + "id_car_model": 114, + "name": "Roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2941, + "fields": { + "id_car_model": 119, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2944, + "fields": { + "id_car_model": 122, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2945, + "fields": { + "id_car_model": 122, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2946, + "fields": { + "id_car_model": 123, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2947, + "fields": { + "id_car_model": 128, + "name": "T Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2948, + "fields": { + "id_car_model": 129, + "name": "Cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2949, + "fields": { + "id_car_model": 130, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2952, + "fields": { + "id_car_model": 133, + "name": "V8 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2953, + "fields": { + "id_car_model": 133, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2954, + "fields": { + "id_car_model": 136, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2955, + "fields": { + "id_car_model": 138, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2972, + "fields": { + "id_car_model": 152, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2973, + "fields": { + "id_car_model": 153, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2974, + "fields": { + "id_car_model": 155, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2975, + "fields": { + "id_car_model": 156, + "name": "Sports Activity Coupe crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2976, + "fields": { + "id_car_model": 158, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2977, + "fields": { + "id_car_model": 158, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2978, + "fields": { + "id_car_model": 159, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2988, + "fields": { + "id_car_model": 173, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2989, + "fields": { + "id_car_model": 174, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2990, + "fields": { + "id_car_model": 177, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2992, + "fields": { + "id_car_model": 18960, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2993, + "fields": { + "id_car_model": 185, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2994, + "fields": { + "id_car_model": 186, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2995, + "fields": { + "id_car_model": 188, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2996, + "fields": { + "id_car_model": 188, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2997, + "fields": { + "id_car_model": 189, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2998, + "fields": { + "id_car_model": 190, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 2999, + "fields": { + "id_car_model": 191, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3000, + "fields": { + "id_car_model": 193, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3001, + "fields": { + "id_car_model": 195, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3002, + "fields": { + "id_car_model": 195, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3003, + "fields": { + "id_car_model": 196, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3004, + "fields": { + "id_car_model": 198, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3007, + "fields": { + "id_car_model": 200, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3008, + "fields": { + "id_car_model": 200, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3009, + "fields": { + "id_car_model": 204, + "name": "R hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3010, + "fields": { + "id_car_model": 204, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3011, + "fields": { + "id_car_model": 208, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3012, + "fields": { + "id_car_model": 208, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3013, + "fields": { + "id_car_model": 216, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3014, + "fields": { + "id_car_model": 216, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3015, + "fields": { + "id_car_model": 220, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3016, + "fields": { + "id_car_model": 221, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3018, + "fields": { + "id_car_model": 224, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3019, + "fields": { + "id_car_model": 225, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3020, + "fields": { + "id_car_model": 227, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3021, + "fields": { + "id_car_model": 228, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3022, + "fields": { + "id_car_model": 229, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3023, + "fields": { + "id_car_model": 233, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3024, + "fields": { + "id_car_model": 233, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3027, + "fields": { + "id_car_model": 2254, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3028, + "fields": { + "id_car_model": 259, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3029, + "fields": { + "id_car_model": 259, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3030, + "fields": { + "id_car_model": 261, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3031, + "fields": { + "id_car_model": 262, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3032, + "fields": { + "id_car_model": 262, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3033, + "fields": { + "id_car_model": 264, + "name": "Convertible SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3034, + "fields": { + "id_car_model": 264, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3035, + "fields": { + "id_car_model": 265, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3036, + "fields": { + "id_car_model": 267, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3037, + "fields": { + "id_car_model": 267, + "name": "Cabriolet 2-doors", + "arabic_name": "سطح قابل للطي - بابين" + } +}, +{ + "model": "inventory.carserie", + "pk": 3038, + "fields": { + "id_car_model": 268, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3039, + "fields": { + "id_car_model": 269, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3040, + "fields": { + "id_car_model": 270, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3041, + "fields": { + "id_car_model": 270, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3042, + "fields": { + "id_car_model": 270, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3043, + "fields": { + "id_car_model": 276, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3044, + "fields": { + "id_car_model": 277, + "name": "Extended Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3045, + "fields": { + "id_car_model": 277, + "name": "Crew Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3046, + "fields": { + "id_car_model": 277, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3047, + "fields": { + "id_car_model": 278, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3048, + "fields": { + "id_car_model": 278, + "name": "SS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3049, + "fields": { + "id_car_model": 278, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3050, + "fields": { + "id_car_model": 278, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3051, + "fields": { + "id_car_model": 280, + "name": "Stingray targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3052, + "fields": { + "id_car_model": 280, + "name": "Z06 targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3053, + "fields": { + "id_car_model": 282, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3054, + "fields": { + "id_car_model": 282, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3055, + "fields": { + "id_car_model": 282, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3056, + "fields": { + "id_car_model": 284, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3057, + "fields": { + "id_car_model": 286, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3058, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3059, + "fields": { + "id_car_model": 289, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3060, + "fields": { + "id_car_model": 289, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3061, + "fields": { + "id_car_model": 290, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3062, + "fields": { + "id_car_model": 290, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3063, + "fields": { + "id_car_model": 290, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3064, + "fields": { + "id_car_model": 295, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3065, + "fields": { + "id_car_model": 296, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3066, + "fields": { + "id_car_model": 296, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3067, + "fields": { + "id_car_model": 297, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3068, + "fields": { + "id_car_model": 300, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3069, + "fields": { + "id_car_model": 301, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3070, + "fields": { + "id_car_model": 301, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3071, + "fields": { + "id_car_model": 302, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3072, + "fields": { + "id_car_model": 306, + "name": "Extended Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3073, + "fields": { + "id_car_model": 306, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3074, + "fields": { + "id_car_model": 306, + "name": "Crew Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3075, + "fields": { + "id_car_model": 308, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3076, + "fields": { + "id_car_model": 308, + "name": "RS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3077, + "fields": { + "id_car_model": 309, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3078, + "fields": { + "id_car_model": 312, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3079, + "fields": { + "id_car_model": 313, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3080, + "fields": { + "id_car_model": 315, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3081, + "fields": { + "id_car_model": 316, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3084, + "fields": { + "id_car_model": 319, + "name": "SRT8 Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3085, + "fields": { + "id_car_model": 323, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3086, + "fields": { + "id_car_model": 324, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3087, + "fields": { + "id_car_model": 324, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3088, + "fields": { + "id_car_model": 326, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3089, + "fields": { + "id_car_model": 328, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3090, + "fields": { + "id_car_model": 329, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3091, + "fields": { + "id_car_model": 329, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3092, + "fields": { + "id_car_model": 329, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3093, + "fields": { + "id_car_model": 330, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3094, + "fields": { + "id_car_model": 332, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3095, + "fields": { + "id_car_model": 333, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3096, + "fields": { + "id_car_model": 336, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3097, + "fields": { + "id_car_model": 336, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3098, + "fields": { + "id_car_model": 338, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3099, + "fields": { + "id_car_model": 338, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3100, + "fields": { + "id_car_model": 339, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3101, + "fields": { + "id_car_model": 339, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3102, + "fields": { + "id_car_model": 341, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3103, + "fields": { + "id_car_model": 342, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3104, + "fields": { + "id_car_model": 342, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3105, + "fields": { + "id_car_model": 344, + "name": "Minivan Grand", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3106, + "fields": { + "id_car_model": 346, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3107, + "fields": { + "id_car_model": 346, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3108, + "fields": { + "id_car_model": 347, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3109, + "fields": { + "id_car_model": 347, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3110, + "fields": { + "id_car_model": 348, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3111, + "fields": { + "id_car_model": 349, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3115, + "fields": { + "id_car_model": 354, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3116, + "fields": { + "id_car_model": 355, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3117, + "fields": { + "id_car_model": 358, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3118, + "fields": { + "id_car_model": 358, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3119, + "fields": { + "id_car_model": 359, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3120, + "fields": { + "id_car_model": 360, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3121, + "fields": { + "id_car_model": 360, + "name": "CrossTourer wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3123, + "fields": { + "id_car_model": 363, + "name": "Break wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3124, + "fields": { + "id_car_model": 363, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3125, + "fields": { + "id_car_model": 364, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3126, + "fields": { + "id_car_model": 364, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3127, + "fields": { + "id_car_model": 369, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3128, + "fields": { + "id_car_model": 369, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3129, + "fields": { + "id_car_model": 371, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3130, + "fields": { + "id_car_model": 371, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3131, + "fields": { + "id_car_model": 373, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3132, + "fields": { + "id_car_model": 373, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3133, + "fields": { + "id_car_model": 374, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3134, + "fields": { + "id_car_model": 374, + "name": "Break wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3135, + "fields": { + "id_car_model": 375, + "name": "Break wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3136, + "fields": { + "id_car_model": 375, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3137, + "fields": { + "id_car_model": 375, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3138, + "fields": { + "id_car_model": 377, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3139, + "fields": { + "id_car_model": 377, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3140, + "fields": { + "id_car_model": 377, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3141, + "fields": { + "id_car_model": 380, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3142, + "fields": { + "id_car_model": 380, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3144, + "fields": { + "id_car_model": 381, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3145, + "fields": { + "id_car_model": 381, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3146, + "fields": { + "id_car_model": 384, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3147, + "fields": { + "id_car_model": 386, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3148, + "fields": { + "id_car_model": 386, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3149, + "fields": { + "id_car_model": 388, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3150, + "fields": { + "id_car_model": 395, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3151, + "fields": { + "id_car_model": 399, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3152, + "fields": { + "id_car_model": 400, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3153, + "fields": { + "id_car_model": 400, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3154, + "fields": { + "id_car_model": 401, + "name": "SUV 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3155, + "fields": { + "id_car_model": 401, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3156, + "fields": { + "id_car_model": 402, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3157, + "fields": { + "id_car_model": 402, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3158, + "fields": { + "id_car_model": 403, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3159, + "fields": { + "id_car_model": 403, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3160, + "fields": { + "id_car_model": 403, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3162, + "fields": { + "id_car_model": 407, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3163, + "fields": { + "id_car_model": 409, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3164, + "fields": { + "id_car_model": 410, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3165, + "fields": { + "id_car_model": 410, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3166, + "fields": { + "id_car_model": 412, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3167, + "fields": { + "id_car_model": 412, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3173, + "fields": { + "id_car_model": 420, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3174, + "fields": { + "id_car_model": 421, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3175, + "fields": { + "id_car_model": 426, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3176, + "fields": { + "id_car_model": 426, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3177, + "fields": { + "id_car_model": 426, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3178, + "fields": { + "id_car_model": 430, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3179, + "fields": { + "id_car_model": 433, + "name": "Soft top SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3180, + "fields": { + "id_car_model": 433, + "name": "Hard top SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3181, + "fields": { + "id_car_model": 435, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3182, + "fields": { + "id_car_model": 435, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3183, + "fields": { + "id_car_model": 438, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3184, + "fields": { + "id_car_model": 439, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3185, + "fields": { + "id_car_model": 439, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3187, + "fields": { + "id_car_model": 442, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3188, + "fields": { + "id_car_model": 442, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3189, + "fields": { + "id_car_model": 444, + "name": "Hard top SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3190, + "fields": { + "id_car_model": 444, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3191, + "fields": { + "id_car_model": 445, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3192, + "fields": { + "id_car_model": 450, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3193, + "fields": { + "id_car_model": 465, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3194, + "fields": { + "id_car_model": 465, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3195, + "fields": { + "id_car_model": 466, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3196, + "fields": { + "id_car_model": 466, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3197, + "fields": { + "id_car_model": 466, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3198, + "fields": { + "id_car_model": 466, + "name": "wagon 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3199, + "fields": { + "id_car_model": 470, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3200, + "fields": { + "id_car_model": 470, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3201, + "fields": { + "id_car_model": 471, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3202, + "fields": { + "id_car_model": 471, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3203, + "fields": { + "id_car_model": 471, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3204, + "fields": { + "id_car_model": 471, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3205, + "fields": { + "id_car_model": 474, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3206, + "fields": { + "id_car_model": 474, + "name": "Barchetta cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3207, + "fields": { + "id_car_model": 487, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3208, + "fields": { + "id_car_model": 487, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3209, + "fields": { + "id_car_model": 488, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3210, + "fields": { + "id_car_model": 490, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3211, + "fields": { + "id_car_model": 491, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3213, + "fields": { + "id_car_model": 493, + "name": "Pickup Double cabin Quad Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3214, + "fields": { + "id_car_model": 496, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3216, + "fields": { + "id_car_model": 499, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3217, + "fields": { + "id_car_model": 503, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3218, + "fields": { + "id_car_model": 506, + "name": "Quad Cab pickup 4-doors", + "arabic_name": "بيك اب رباعية الكابينة 4-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 3220, + "fields": { + "id_car_model": 507, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3221, + "fields": { + "id_car_model": 511, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3222, + "fields": { + "id_car_model": 511, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3223, + "fields": { + "id_car_model": 512, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3225, + "fields": { + "id_car_model": 516, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3226, + "fields": { + "id_car_model": 516, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3227, + "fields": { + "id_car_model": 517, + "name": "Doninvest Assol Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3228, + "fields": { + "id_car_model": 517, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3231, + "fields": { + "id_car_model": 523, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3232, + "fields": { + "id_car_model": 523, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3233, + "fields": { + "id_car_model": 523, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3234, + "fields": { + "id_car_model": 523, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3236, + "fields": { + "id_car_model": 536, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3237, + "fields": { + "id_car_model": 536, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3238, + "fields": { + "id_car_model": 539, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3239, + "fields": { + "id_car_model": 539, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3242, + "fields": { + "id_car_model": 541, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3243, + "fields": { + "id_car_model": 541, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3244, + "fields": { + "id_car_model": 542, + "name": "TS targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3245, + "fields": { + "id_car_model": 542, + "name": "TB Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3246, + "fields": { + "id_car_model": 542, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3247, + "fields": { + "id_car_model": 543, + "name": "Modena Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3248, + "fields": { + "id_car_model": 543, + "name": "Spider roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3249, + "fields": { + "id_car_model": 546, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3250, + "fields": { + "id_car_model": 547, + "name": "Italia Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3251, + "fields": { + "id_car_model": 547, + "name": "Spider cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3252, + "fields": { + "id_car_model": 551, + "name": "Maranello Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3253, + "fields": { + "id_car_model": 551, + "name": "Coupe Maranello", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3254, + "fields": { + "id_car_model": 552, + "name": "M Maranello Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3255, + "fields": { + "id_car_model": 552, + "name": "Superamerica cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3256, + "fields": { + "id_car_model": 553, + "name": "GTB Fiorano Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3257, + "fields": { + "id_car_model": 553, + "name": "GTO Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3258, + "fields": { + "id_car_model": 558, + "name": "Berlinetta Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3259, + "fields": { + "id_car_model": 558, + "name": "GTS targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3260, + "fields": { + "id_car_model": 558, + "name": "Spider cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3261, + "fields": { + "id_car_model": 560, + "name": "Scuderia Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3262, + "fields": { + "id_car_model": 560, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3263, + "fields": { + "id_car_model": 561, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3264, + "fields": { + "id_car_model": 561, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3265, + "fields": { + "id_car_model": 564, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3266, + "fields": { + "id_car_model": 564, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3267, + "fields": { + "id_car_model": 566, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3268, + "fields": { + "id_car_model": 566, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3270, + "fields": { + "id_car_model": 566, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3271, + "fields": { + "id_car_model": 568, + "name": "wagon 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3272, + "fields": { + "id_car_model": 568, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3273, + "fields": { + "id_car_model": 569, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3274, + "fields": { + "id_car_model": 569, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3275, + "fields": { + "id_car_model": 569, + "name": "wagon 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3276, + "fields": { + "id_car_model": 570, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3277, + "fields": { + "id_car_model": 570, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3278, + "fields": { + "id_car_model": 571, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3279, + "fields": { + "id_car_model": 571, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3280, + "fields": { + "id_car_model": 574, + "name": "Hatchback 3-doors 500", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3281, + "fields": { + "id_car_model": 574, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3282, + "fields": { + "id_car_model": 582, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3284, + "fields": { + "id_car_model": 586, + "name": "Minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3285, + "fields": { + "id_car_model": 587, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3286, + "fields": { + "id_car_model": 587, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3287, + "fields": { + "id_car_model": 588, + "name": "Kombi minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3288, + "fields": { + "id_car_model": 592, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3289, + "fields": { + "id_car_model": 592, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3290, + "fields": { + "id_car_model": 593, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3291, + "fields": { + "id_car_model": 594, + "name": "Fiat Palio wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3292, + "fields": { + "id_car_model": 594, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3293, + "fields": { + "id_car_model": 594, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3295, + "fields": { + "id_car_model": 596, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3296, + "fields": { + "id_car_model": 596, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3297, + "fields": { + "id_car_model": 598, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3298, + "fields": { + "id_car_model": 598, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3299, + "fields": { + "id_car_model": 599, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3300, + "fields": { + "id_car_model": 603, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3301, + "fields": { + "id_car_model": 603, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3302, + "fields": { + "id_car_model": 603, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3303, + "fields": { + "id_car_model": 605, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3304, + "fields": { + "id_car_model": 605, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3305, + "fields": { + "id_car_model": 606, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3306, + "fields": { + "id_car_model": 606, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3307, + "fields": { + "id_car_model": 607, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3308, + "fields": { + "id_car_model": 608, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3309, + "fields": { + "id_car_model": 608, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3310, + "fields": { + "id_car_model": 614, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3311, + "fields": { + "id_car_model": 615, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3312, + "fields": { + "id_car_model": 616, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3313, + "fields": { + "id_car_model": 617, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3314, + "fields": { + "id_car_model": 617, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3315, + "fields": { + "id_car_model": 617, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3316, + "fields": { + "id_car_model": 620, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3317, + "fields": { + "id_car_model": 624, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3318, + "fields": { + "id_car_model": 625, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3319, + "fields": { + "id_car_model": 626, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3320, + "fields": { + "id_car_model": 626, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3321, + "fields": { + "id_car_model": 626, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3322, + "fields": { + "id_car_model": 626, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3323, + "fields": { + "id_car_model": 626, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3324, + "fields": { + "id_car_model": 627, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3325, + "fields": { + "id_car_model": 629, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3326, + "fields": { + "id_car_model": 630, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3327, + "fields": { + "id_car_model": 631, + "name": "Pickup Double cabin Raptor CrewCab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3328, + "fields": { + "id_car_model": 631, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3329, + "fields": { + "id_car_model": 631, + "name": "Pickup One-and-a-half cabin Raptor", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3330, + "fields": { + "id_car_model": 633, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3331, + "fields": { + "id_car_model": 634, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3332, + "fields": { + "id_car_model": 634, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3333, + "fields": { + "id_car_model": 634, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3334, + "fields": { + "id_car_model": 636, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3335, + "fields": { + "id_car_model": 637, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3336, + "fields": { + "id_car_model": 637, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3337, + "fields": { + "id_car_model": 637, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3338, + "fields": { + "id_car_model": 640, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3339, + "fields": { + "id_car_model": 642, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3340, + "fields": { + "id_car_model": 643, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3341, + "fields": { + "id_car_model": 644, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3342, + "fields": { + "id_car_model": 644, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3343, + "fields": { + "id_car_model": 647, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3344, + "fields": { + "id_car_model": 648, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3345, + "fields": { + "id_car_model": 651, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3347, + "fields": { + "id_car_model": 653, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3348, + "fields": { + "id_car_model": 654, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3349, + "fields": { + "id_car_model": 655, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3350, + "fields": { + "id_car_model": 657, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3351, + "fields": { + "id_car_model": 657, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3352, + "fields": { + "id_car_model": 658, + "name": "Rap Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3353, + "fields": { + "id_car_model": 658, + "name": "Single Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3354, + "fields": { + "id_car_model": 659, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3355, + "fields": { + "id_car_model": 660, + "name": "Turnier wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3356, + "fields": { + "id_car_model": 660, + "name": "Turnier wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3357, + "fields": { + "id_car_model": 661, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3358, + "fields": { + "id_car_model": 661, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3359, + "fields": { + "id_car_model": 661, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3360, + "fields": { + "id_car_model": 661, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3361, + "fields": { + "id_car_model": 19066, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3362, + "fields": { + "id_car_model": 663, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3363, + "fields": { + "id_car_model": 664, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3364, + "fields": { + "id_car_model": 666, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3365, + "fields": { + "id_car_model": 666, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3366, + "fields": { + "id_car_model": 667, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3367, + "fields": { + "id_car_model": 672, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3368, + "fields": { + "id_car_model": 672, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3369, + "fields": { + "id_car_model": 676, + "name": "Atu Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3370, + "fields": { + "id_car_model": 682, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3371, + "fields": { + "id_car_model": 680, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3372, + "fields": { + "id_car_model": 688, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3373, + "fields": { + "id_car_model": 689, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3374, + "fields": { + "id_car_model": 689, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3375, + "fields": { + "id_car_model": 690, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3376, + "fields": { + "id_car_model": 690, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3377, + "fields": { + "id_car_model": 690, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3378, + "fields": { + "id_car_model": 691, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3379, + "fields": { + "id_car_model": 694, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3380, + "fields": { + "id_car_model": 694, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3381, + "fields": { + "id_car_model": 694, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3382, + "fields": { + "id_car_model": 696, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3384, + "fields": { + "id_car_model": 696, + "name": "Crew Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3385, + "fields": { + "id_car_model": 697, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3386, + "fields": { + "id_car_model": 698, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3387, + "fields": { + "id_car_model": 698, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3389, + "fields": { + "id_car_model": 700, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3390, + "fields": { + "id_car_model": 701, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3391, + "fields": { + "id_car_model": 701, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3392, + "fields": { + "id_car_model": 701, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3394, + "fields": { + "id_car_model": 702, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3396, + "fields": { + "id_car_model": 708, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3402, + "fields": { + "id_car_model": 731, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3403, + "fields": { + "id_car_model": 731, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3404, + "fields": { + "id_car_model": 736, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3405, + "fields": { + "id_car_model": 736, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3406, + "fields": { + "id_car_model": 737, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3407, + "fields": { + "id_car_model": 737, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3408, + "fields": { + "id_car_model": 737, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3409, + "fields": { + "id_car_model": 738, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3410, + "fields": { + "id_car_model": 739, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3411, + "fields": { + "id_car_model": 740, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3412, + "fields": { + "id_car_model": 742, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3413, + "fields": { + "id_car_model": 742, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3414, + "fields": { + "id_car_model": 18961, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3415, + "fields": { + "id_car_model": 750, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3416, + "fields": { + "id_car_model": 751, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3417, + "fields": { + "id_car_model": 751, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3418, + "fields": { + "id_car_model": 753, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3419, + "fields": { + "id_car_model": 753, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3420, + "fields": { + "id_car_model": 759, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3421, + "fields": { + "id_car_model": 760, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3422, + "fields": { + "id_car_model": 761, + "name": "Si Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3423, + "fields": { + "id_car_model": 762, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3424, + "fields": { + "id_car_model": 762, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3425, + "fields": { + "id_car_model": 763, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3426, + "fields": { + "id_car_model": 764, + "name": "Del Sol targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3427, + "fields": { + "id_car_model": 767, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3428, + "fields": { + "id_car_model": 768, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3429, + "fields": { + "id_car_model": 770, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3430, + "fields": { + "id_car_model": 774, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3431, + "fields": { + "id_car_model": 777, + "name": "Honda HR-V SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3432, + "fields": { + "id_car_model": 777, + "name": "Honda HR-V SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3433, + "fields": { + "id_car_model": 778, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3434, + "fields": { + "id_car_model": 779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3435, + "fields": { + "id_car_model": 780, + "name": "Type R Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3436, + "fields": { + "id_car_model": 782, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3437, + "fields": { + "id_car_model": 783, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3438, + "fields": { + "id_car_model": 784, + "name": "Pastel hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3439, + "fields": { + "id_car_model": 785, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3440, + "fields": { + "id_car_model": 785, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3441, + "fields": { + "id_car_model": 789, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3442, + "fields": { + "id_car_model": 790, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3443, + "fields": { + "id_car_model": 792, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3444, + "fields": { + "id_car_model": 793, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3445, + "fields": { + "id_car_model": 794, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3446, + "fields": { + "id_car_model": 795, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3447, + "fields": { + "id_car_model": 801, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3448, + "fields": { + "id_car_model": 803, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3449, + "fields": { + "id_car_model": 804, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3450, + "fields": { + "id_car_model": 815, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3451, + "fields": { + "id_car_model": 815, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3452, + "fields": { + "id_car_model": 815, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3453, + "fields": { + "id_car_model": 815, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3454, + "fields": { + "id_car_model": 816, + "name": "SUT pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3455, + "fields": { + "id_car_model": 816, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3456, + "fields": { + "id_car_model": 818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3457, + "fields": { + "id_car_model": 818, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3458, + "fields": { + "id_car_model": 820, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3459, + "fields": { + "id_car_model": 822, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3460, + "fields": { + "id_car_model": 824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3461, + "fields": { + "id_car_model": 824, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3462, + "fields": { + "id_car_model": 825, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3463, + "fields": { + "id_car_model": 826, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3464, + "fields": { + "id_car_model": 827, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3465, + "fields": { + "id_car_model": 827, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3466, + "fields": { + "id_car_model": 828, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3467, + "fields": { + "id_car_model": 830, + "name": "Cross hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3468, + "fields": { + "id_car_model": 830, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3469, + "fields": { + "id_car_model": 831, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3470, + "fields": { + "id_car_model": 832, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3471, + "fields": { + "id_car_model": 833, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3472, + "fields": { + "id_car_model": 833, + "name": "Active hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3473, + "fields": { + "id_car_model": 834, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3474, + "fields": { + "id_car_model": 834, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3475, + "fields": { + "id_car_model": 834, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3476, + "fields": { + "id_car_model": 835, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3477, + "fields": { + "id_car_model": 835, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3478, + "fields": { + "id_car_model": 839, + "name": "Sportswagon wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3479, + "fields": { + "id_car_model": 839, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3480, + "fields": { + "id_car_model": 844, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3481, + "fields": { + "id_car_model": 845, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3484, + "fields": { + "id_car_model": 849, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3485, + "fields": { + "id_car_model": 850, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3486, + "fields": { + "id_car_model": 853, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3487, + "fields": { + "id_car_model": 855, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3488, + "fields": { + "id_car_model": 859, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3489, + "fields": { + "id_car_model": 859, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3490, + "fields": { + "id_car_model": 862, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3491, + "fields": { + "id_car_model": 863, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3492, + "fields": { + "id_car_model": 863, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3493, + "fields": { + "id_car_model": 863, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3494, + "fields": { + "id_car_model": 864, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3495, + "fields": { + "id_car_model": 867, + "name": "Sport Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3496, + "fields": { + "id_car_model": 868, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3497, + "fields": { + "id_car_model": 19747, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3498, + "fields": { + "id_car_model": 876, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3499, + "fields": { + "id_car_model": 876, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3500, + "fields": { + "id_car_model": 877, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3501, + "fields": { + "id_car_model": 877, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3502, + "fields": { + "id_car_model": 886, + "name": "Hard top SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3503, + "fields": { + "id_car_model": 888, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3504, + "fields": { + "id_car_model": 890, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3505, + "fields": { + "id_car_model": 890, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3506, + "fields": { + "id_car_model": 891, + "name": "Double Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3507, + "fields": { + "id_car_model": 891, + "name": "Extended Cab pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3508, + "fields": { + "id_car_model": 891, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3509, + "fields": { + "id_car_model": 892, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3510, + "fields": { + "id_car_model": 893, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3514, + "fields": { + "id_car_model": 895, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3515, + "fields": { + "id_car_model": 897, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3516, + "fields": { + "id_car_model": 898, + "name": "SUV opened Sport", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3517, + "fields": { + "id_car_model": 898, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3518, + "fields": { + "id_car_model": 900, + "name": "Pickup Single cabin Signle Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3519, + "fields": { + "id_car_model": 900, + "name": "Pickup Double cabin Crew Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3520, + "fields": { + "id_car_model": 900, + "name": "Pickup One-and-a-half cabin Space Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3521, + "fields": { + "id_car_model": 901, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3522, + "fields": { + "id_car_model": 901, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3523, + "fields": { + "id_car_model": 903, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3524, + "fields": { + "id_car_model": 906, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3525, + "fields": { + "id_car_model": 906, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3528, + "fields": { + "id_car_model": 914, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3529, + "fields": { + "id_car_model": 914, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3530, + "fields": { + "id_car_model": 915, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3531, + "fields": { + "id_car_model": 915, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3532, + "fields": { + "id_car_model": 917, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3533, + "fields": { + "id_car_model": 917, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3534, + "fields": { + "id_car_model": 918, + "name": "XFR Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3535, + "fields": { + "id_car_model": 918, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3536, + "fields": { + "id_car_model": 919, + "name": "R Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3537, + "fields": { + "id_car_model": 921, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3538, + "fields": { + "id_car_model": 921, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3539, + "fields": { + "id_car_model": 922, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3540, + "fields": { + "id_car_model": 922, + "name": "Cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3541, + "fields": { + "id_car_model": 923, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3542, + "fields": { + "id_car_model": 926, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3543, + "fields": { + "id_car_model": 927, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3544, + "fields": { + "id_car_model": 929, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3545, + "fields": { + "id_car_model": 931, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3546, + "fields": { + "id_car_model": 931, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3547, + "fields": { + "id_car_model": 934, + "name": "Delta Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3548, + "fields": { + "id_car_model": 934, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3549, + "fields": { + "id_car_model": 934, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3550, + "fields": { + "id_car_model": 937, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3551, + "fields": { + "id_car_model": 938, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3552, + "fields": { + "id_car_model": 939, + "name": "Pro_cee'd GT hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3553, + "fields": { + "id_car_model": 939, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3554, + "fields": { + "id_car_model": 939, + "name": "GT hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3555, + "fields": { + "id_car_model": 940, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3556, + "fields": { + "id_car_model": 940, + "name": "KOUP Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3557, + "fields": { + "id_car_model": 940, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3558, + "fields": { + "id_car_model": 941, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3559, + "fields": { + "id_car_model": 941, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3560, + "fields": { + "id_car_model": 946, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3561, + "fields": { + "id_car_model": 949, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3562, + "fields": { + "id_car_model": 950, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3563, + "fields": { + "id_car_model": 950, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3564, + "fields": { + "id_car_model": 952, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3565, + "fields": { + "id_car_model": 952, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3566, + "fields": { + "id_car_model": 956, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3567, + "fields": { + "id_car_model": 956, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3569, + "fields": { + "id_car_model": 958, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3570, + "fields": { + "id_car_model": 959, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3571, + "fields": { + "id_car_model": 960, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3572, + "fields": { + "id_car_model": 961, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3573, + "fields": { + "id_car_model": 963, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3574, + "fields": { + "id_car_model": 973, + "name": "LP 700-4 roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3575, + "fields": { + "id_car_model": 973, + "name": "LP 700-4 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3576, + "fields": { + "id_car_model": 975, + "name": "VT Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3578, + "fields": { + "id_car_model": 977, + "name": "LP560-4 Spyder cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3579, + "fields": { + "id_car_model": 977, + "name": "LP560-4 Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3580, + "fields": { + "id_car_model": 983, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3581, + "fields": { + "id_car_model": 983, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3582, + "fields": { + "id_car_model": 988, + "name": "Spider targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3583, + "fields": { + "id_car_model": 988, + "name": "wagon 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3584, + "fields": { + "id_car_model": 988, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3585, + "fields": { + "id_car_model": 988, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3586, + "fields": { + "id_car_model": 989, + "name": "Station Wagon wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3587, + "fields": { + "id_car_model": 989, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3588, + "fields": { + "id_car_model": 990, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3589, + "fields": { + "id_car_model": 992, + "name": "Berlina fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3590, + "fields": { + "id_car_model": 992, + "name": "Coupe Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3591, + "fields": { + "id_car_model": 994, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3592, + "fields": { + "id_car_model": 994, + "name": "Station Wagon wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3593, + "fields": { + "id_car_model": 994, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3594, + "fields": { + "id_car_model": 995, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3595, + "fields": { + "id_car_model": 995, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3596, + "fields": { + "id_car_model": 1000, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3597, + "fields": { + "id_car_model": 1004, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3598, + "fields": { + "id_car_model": 1006, + "name": "SUV 5-doors", + "arabic_name": "إس يو في 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 3599, + "fields": { + "id_car_model": 1006, + "name": "Pickup", + "arabic_name": "بيك أب" + } +}, +{ + "model": "inventory.carserie", + "pk": 3600, + "fields": { + "id_car_model": 1006, + "name": "SUV 5-doors", + "arabic_name": "إس يو في 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 3601, + "fields": { + "id_car_model": 1007, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3602, + "fields": { + "id_car_model": 1008, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3604, + "fields": { + "id_car_model": 1009, + "name": "Land Rover Range Rover Evoque SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3605, + "fields": { + "id_car_model": 1010, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3606, + "fields": { + "id_car_model": 1011, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3607, + "fields": { + "id_car_model": 1019, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3608, + "fields": { + "id_car_model": 1020, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3609, + "fields": { + "id_car_model": 1021, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3610, + "fields": { + "id_car_model": 1022, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3611, + "fields": { + "id_car_model": 1023, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3612, + "fields": { + "id_car_model": 1024, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3613, + "fields": { + "id_car_model": 1026, + "name": "F-Sport Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3614, + "fields": { + "id_car_model": 1027, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3615, + "fields": { + "id_car_model": 1029, + "name": "F-Sport crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3616, + "fields": { + "id_car_model": 1030, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3618, + "fields": { + "id_car_model": 1032, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3620, + "fields": { + "id_car_model": 1039, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3621, + "fields": { + "id_car_model": 1046, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3622, + "fields": { + "id_car_model": 1047, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3623, + "fields": { + "id_car_model": 1048, + "name": "L SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3624, + "fields": { + "id_car_model": 1049, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3625, + "fields": { + "id_car_model": 1053, + "name": "Roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3626, + "fields": { + "id_car_model": 1055, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3627, + "fields": { + "id_car_model": 1060, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3628, + "fields": { + "id_car_model": 1061, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3631, + "fields": { + "id_car_model": 1073, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3632, + "fields": { + "id_car_model": 1076, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3633, + "fields": { + "id_car_model": 1080, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3634, + "fields": { + "id_car_model": 1080, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3635, + "fields": { + "id_car_model": 1081, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3636, + "fields": { + "id_car_model": 1081, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3637, + "fields": { + "id_car_model": 1091, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3638, + "fields": { + "id_car_model": 1091, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3639, + "fields": { + "id_car_model": 1093, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3640, + "fields": { + "id_car_model": 1093, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3641, + "fields": { + "id_car_model": 1101, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3642, + "fields": { + "id_car_model": 1101, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3643, + "fields": { + "id_car_model": 1103, + "name": "Cabriolet Spyder", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3644, + "fields": { + "id_car_model": 1103, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3645, + "fields": { + "id_car_model": 1103, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3646, + "fields": { + "id_car_model": 1106, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3647, + "fields": { + "id_car_model": 1107, + "name": "Sport Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3648, + "fields": { + "id_car_model": 1107, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3649, + "fields": { + "id_car_model": 1115, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3650, + "fields": { + "id_car_model": 1118, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3651, + "fields": { + "id_car_model": 1118, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3652, + "fields": { + "id_car_model": 1121, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3653, + "fields": { + "id_car_model": 1121, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3654, + "fields": { + "id_car_model": 1123, + "name": "AU-Spec. Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3655, + "fields": { + "id_car_model": 1123, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3656, + "fields": { + "id_car_model": 1124, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3657, + "fields": { + "id_car_model": 1124, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3658, + "fields": { + "id_car_model": 1125, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3659, + "fields": { + "id_car_model": 1125, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3660, + "fields": { + "id_car_model": 1125, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3661, + "fields": { + "id_car_model": 1126, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3662, + "fields": { + "id_car_model": 1127, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3663, + "fields": { + "id_car_model": 1127, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3664, + "fields": { + "id_car_model": 1129, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3665, + "fields": { + "id_car_model": 1129, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3666, + "fields": { + "id_car_model": 1129, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3667, + "fields": { + "id_car_model": 1131, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3668, + "fields": { + "id_car_model": 1132, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3669, + "fields": { + "id_car_model": 1132, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3670, + "fields": { + "id_car_model": 1132, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3671, + "fields": { + "id_car_model": 1133, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3672, + "fields": { + "id_car_model": 1133, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3673, + "fields": { + "id_car_model": 1137, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3674, + "fields": { + "id_car_model": 1137, + "name": "Double Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3676, + "fields": { + "id_car_model": 1140, + "name": "Board", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3677, + "fields": { + "id_car_model": 1142, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3678, + "fields": { + "id_car_model": 1142, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3679, + "fields": { + "id_car_model": 1143, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3680, + "fields": { + "id_car_model": 1147, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3681, + "fields": { + "id_car_model": 1148, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3683, + "fields": { + "id_car_model": 1156, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3684, + "fields": { + "id_car_model": 1159, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3685, + "fields": { + "id_car_model": 1161, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3686, + "fields": { + "id_car_model": 1163, + "name": "Roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3687, + "fields": { + "id_car_model": 1167, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3688, + "fields": { + "id_car_model": 1168, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3689, + "fields": { + "id_car_model": 1168, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3691, + "fields": { + "id_car_model": 1170, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3692, + "fields": { + "id_car_model": 1172, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3693, + "fields": { + "id_car_model": 1173, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3694, + "fields": { + "id_car_model": 1176, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3695, + "fields": { + "id_car_model": 1178, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3696, + "fields": { + "id_car_model": 1181, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3697, + "fields": { + "id_car_model": 1181, + "name": "Roadster (Cabriolet)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3698, + "fields": { + "id_car_model": 20342, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3699, + "fields": { + "id_car_model": 20343, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3700, + "fields": { + "id_car_model": 20349, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3701, + "fields": { + "id_car_model": 20348, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3702, + "fields": { + "id_car_model": 20346, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3703, + "fields": { + "id_car_model": 20346, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3704, + "fields": { + "id_car_model": 20347, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3705, + "fields": { + "id_car_model": 20347, + "name": "wagon 5-doors Shooting Brake", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3706, + "fields": { + "id_car_model": 20350, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3708, + "fields": { + "id_car_model": 20350, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3709, + "fields": { + "id_car_model": 20350, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3711, + "fields": { + "id_car_model": 20355, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3713, + "fields": { + "id_car_model": 20354, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3714, + "fields": { + "id_car_model": 20352, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3715, + "fields": { + "id_car_model": 20357, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3717, + "fields": { + "id_car_model": 20364, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3718, + "fields": { + "id_car_model": 20364, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3719, + "fields": { + "id_car_model": 20362, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3720, + "fields": { + "id_car_model": 20360, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3721, + "fields": { + "id_car_model": 1206, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3722, + "fields": { + "id_car_model": 1206, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3723, + "fields": { + "id_car_model": 1207, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3724, + "fields": { + "id_car_model": 1207, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3726, + "fields": { + "id_car_model": 1210, + "name": "FUN minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3727, + "fields": { + "id_car_model": 1211, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3728, + "fields": { + "id_car_model": 1211, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3729, + "fields": { + "id_car_model": 1213, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3730, + "fields": { + "id_car_model": 1213, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3731, + "fields": { + "id_car_model": 1213, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3732, + "fields": { + "id_car_model": 1214, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3733, + "fields": { + "id_car_model": 1214, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3734, + "fields": { + "id_car_model": 1214, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3735, + "fields": { + "id_car_model": 1214, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3736, + "fields": { + "id_car_model": 1216, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3737, + "fields": { + "id_car_model": 1217, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3738, + "fields": { + "id_car_model": 1218, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3739, + "fields": { + "id_car_model": 1218, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3740, + "fields": { + "id_car_model": 1219, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3743, + "fields": { + "id_car_model": 1224, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3744, + "fields": { + "id_car_model": 1226, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3745, + "fields": { + "id_car_model": 1227, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3746, + "fields": { + "id_car_model": 1227, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3747, + "fields": { + "id_car_model": 1228, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3748, + "fields": { + "id_car_model": 1228, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3749, + "fields": { + "id_car_model": 1229, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3750, + "fields": { + "id_car_model": 1236, + "name": "Saloon Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3751, + "fields": { + "id_car_model": 1236, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3754, + "fields": { + "id_car_model": 1246, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3755, + "fields": { + "id_car_model": 1246, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3756, + "fields": { + "id_car_model": 1247, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3757, + "fields": { + "id_car_model": 1247, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3758, + "fields": { + "id_car_model": 1248, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3759, + "fields": { + "id_car_model": 1248, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3760, + "fields": { + "id_car_model": 1255, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3761, + "fields": { + "id_car_model": 1260, + "name": "Hatchback 3-doors JCW", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3762, + "fields": { + "id_car_model": 1263, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3763, + "fields": { + "id_car_model": 1263, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3764, + "fields": { + "id_car_model": 1266, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3765, + "fields": { + "id_car_model": 1267, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3766, + "fields": { + "id_car_model": 1267, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3767, + "fields": { + "id_car_model": 1270, + "name": "Grandis minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3770, + "fields": { + "id_car_model": 1271, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3772, + "fields": { + "id_car_model": 1274, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3773, + "fields": { + "id_car_model": 1275, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3774, + "fields": { + "id_car_model": 1278, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3775, + "fields": { + "id_car_model": 1278, + "name": "Spyder cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3776, + "fields": { + "id_car_model": 1282, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3777, + "fields": { + "id_car_model": 1284, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3778, + "fields": { + "id_car_model": 1290, + "name": "Pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3779, + "fields": { + "id_car_model": 1290, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3781, + "fields": { + "id_car_model": 1292, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3782, + "fields": { + "id_car_model": 1293, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3784, + "fields": { + "id_car_model": 1296, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3785, + "fields": { + "id_car_model": 1297, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3786, + "fields": { + "id_car_model": 1297, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3787, + "fields": { + "id_car_model": 1297, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3788, + "fields": { + "id_car_model": 1298, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3789, + "fields": { + "id_car_model": 1298, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3790, + "fields": { + "id_car_model": 1300, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3791, + "fields": { + "id_car_model": 1301, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3792, + "fields": { + "id_car_model": 1301, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3793, + "fields": { + "id_car_model": 1302, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3794, + "fields": { + "id_car_model": 1302, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3795, + "fields": { + "id_car_model": 1304, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3796, + "fields": { + "id_car_model": 1305, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3797, + "fields": { + "id_car_model": 1305, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3798, + "fields": { + "id_car_model": 1306, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3799, + "fields": { + "id_car_model": 1310, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3800, + "fields": { + "id_car_model": 1311, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3801, + "fields": { + "id_car_model": 1312, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3802, + "fields": { + "id_car_model": 1312, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3803, + "fields": { + "id_car_model": 1314, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3804, + "fields": { + "id_car_model": 1316, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3805, + "fields": { + "id_car_model": 1318, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3807, + "fields": { + "id_car_model": 1322, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3808, + "fields": { + "id_car_model": 1322, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3809, + "fields": { + "id_car_model": 1328, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3810, + "fields": { + "id_car_model": 1328, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3812, + "fields": { + "id_car_model": 1331, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3813, + "fields": { + "id_car_model": 1332, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3814, + "fields": { + "id_car_model": 1343, + "name": "Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3815, + "fields": { + "id_car_model": 1345, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3816, + "fields": { + "id_car_model": 1345, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3817, + "fields": { + "id_car_model": 1345, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3818, + "fields": { + "id_car_model": 1348, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3819, + "fields": { + "id_car_model": 1351, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3824, + "fields": { + "id_car_model": 1354, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3825, + "fields": { + "id_car_model": 1356, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3826, + "fields": { + "id_car_model": 1358, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3827, + "fields": { + "id_car_model": 1360, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3828, + "fields": { + "id_car_model": 1364, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3829, + "fields": { + "id_car_model": 1364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3830, + "fields": { + "id_car_model": 1365, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3831, + "fields": { + "id_car_model": 1366, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3832, + "fields": { + "id_car_model": 1367, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3833, + "fields": { + "id_car_model": 1368, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3834, + "fields": { + "id_car_model": 1371, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3837, + "fields": { + "id_car_model": 1376, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3838, + "fields": { + "id_car_model": 1378, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3839, + "fields": { + "id_car_model": 1379, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3840, + "fields": { + "id_car_model": 1381, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3841, + "fields": { + "id_car_model": 1383, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3842, + "fields": { + "id_car_model": 1385, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3843, + "fields": { + "id_car_model": 1387, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3844, + "fields": { + "id_car_model": 1390, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3845, + "fields": { + "id_car_model": 1391, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3846, + "fields": { + "id_car_model": 1392, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3847, + "fields": { + "id_car_model": 1393, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3849, + "fields": { + "id_car_model": 1394, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3850, + "fields": { + "id_car_model": 1395, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3851, + "fields": { + "id_car_model": 1395, + "name": "Nissan Murano II (Z51)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3852, + "fields": { + "id_car_model": 1396, + "name": "Double Cab pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3853, + "fields": { + "id_car_model": 1396, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3854, + "fields": { + "id_car_model": 1396, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3855, + "fields": { + "id_car_model": 1397, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3856, + "fields": { + "id_car_model": 1398, + "name": "Double Cab pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3857, + "fields": { + "id_car_model": 1398, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3858, + "fields": { + "id_car_model": 1398, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3859, + "fields": { + "id_car_model": 1401, + "name": "Slide hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3860, + "fields": { + "id_car_model": 1403, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3861, + "fields": { + "id_car_model": 1404, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3862, + "fields": { + "id_car_model": 1408, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3863, + "fields": { + "id_car_model": 1408, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3864, + "fields": { + "id_car_model": 1409, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3865, + "fields": { + "id_car_model": 1409, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3866, + "fields": { + "id_car_model": 1410, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3867, + "fields": { + "id_car_model": 1411, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3868, + "fields": { + "id_car_model": 1413, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3869, + "fields": { + "id_car_model": 1413, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3870, + "fields": { + "id_car_model": 1414, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3871, + "fields": { + "id_car_model": 1414, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3872, + "fields": { + "id_car_model": 1414, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3873, + "fields": { + "id_car_model": 1415, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3874, + "fields": { + "id_car_model": 1415, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3875, + "fields": { + "id_car_model": 1415, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3876, + "fields": { + "id_car_model": 1416, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3877, + "fields": { + "id_car_model": 1418, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3878, + "fields": { + "id_car_model": 1420, + "name": "Minivan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3879, + "fields": { + "id_car_model": 1422, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3880, + "fields": { + "id_car_model": 1423, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3881, + "fields": { + "id_car_model": 1425, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3882, + "fields": { + "id_car_model": 1426, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3883, + "fields": { + "id_car_model": 1426, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3884, + "fields": { + "id_car_model": 1426, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3885, + "fields": { + "id_car_model": 1427, + "name": "BiTurbo Sports Tourer wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3886, + "fields": { + "id_car_model": 1427, + "name": "Sports Tourer wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3887, + "fields": { + "id_car_model": 1427, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3888, + "fields": { + "id_car_model": 1427, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3889, + "fields": { + "id_car_model": 1429, + "name": "Sportscab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3890, + "fields": { + "id_car_model": 1429, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3891, + "fields": { + "id_car_model": 1429, + "name": "Pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3892, + "fields": { + "id_car_model": 1431, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3893, + "fields": { + "id_car_model": 1432, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3894, + "fields": { + "id_car_model": 1432, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3895, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3896, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3897, + "fields": { + "id_car_model": 1434, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3898, + "fields": { + "id_car_model": 1435, + "name": "Sport SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3899, + "fields": { + "id_car_model": 1435, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3900, + "fields": { + "id_car_model": 1437, + "name": "Sports Tourer wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3901, + "fields": { + "id_car_model": 1437, + "name": "OPC Sports Tourer wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3903, + "fields": { + "id_car_model": 1438, + "name": "Combo van 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3904, + "fields": { + "id_car_model": 1438, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3905, + "fields": { + "id_car_model": 1438, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3906, + "fields": { + "id_car_model": 1438, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3907, + "fields": { + "id_car_model": 1438, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3908, + "fields": { + "id_car_model": 1438, + "name": "Caravan wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3909, + "fields": { + "id_car_model": 1439, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3910, + "fields": { + "id_car_model": 1439, + "name": "CC hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3911, + "fields": { + "id_car_model": 1440, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3912, + "fields": { + "id_car_model": 1442, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3913, + "fields": { + "id_car_model": 1442, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3914, + "fields": { + "id_car_model": 1444, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3915, + "fields": { + "id_car_model": 1444, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3916, + "fields": { + "id_car_model": 1445, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3917, + "fields": { + "id_car_model": 1445, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3918, + "fields": { + "id_car_model": 1446, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3919, + "fields": { + "id_car_model": 1450, + "name": "Twin Top cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3920, + "fields": { + "id_car_model": 1451, + "name": "GTS hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3921, + "fields": { + "id_car_model": 1451, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3922, + "fields": { + "id_car_model": 1451, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3925, + "fields": { + "id_car_model": 1453, + "name": "Tourer minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3927, + "fields": { + "id_car_model": 1456, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3928, + "fields": { + "id_car_model": 1457, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3930, + "fields": { + "id_car_model": 1457, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3931, + "fields": { + "id_car_model": 1468, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3932, + "fields": { + "id_car_model": 1468, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3933, + "fields": { + "id_car_model": 1469, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3934, + "fields": { + "id_car_model": 1469, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3935, + "fields": { + "id_car_model": 1470, + "name": "Peugeot 107 Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3936, + "fields": { + "id_car_model": 1470, + "name": "Peugeot 107 Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3937, + "fields": { + "id_car_model": 1472, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3938, + "fields": { + "id_car_model": 1472, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3940, + "fields": { + "id_car_model": 1473, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3941, + "fields": { + "id_car_model": 1473, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3942, + "fields": { + "id_car_model": 1473, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3943, + "fields": { + "id_car_model": 1474, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3944, + "fields": { + "id_car_model": 1474, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3945, + "fields": { + "id_car_model": 1474, + "name": "CC cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3946, + "fields": { + "id_car_model": 1474, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3947, + "fields": { + "id_car_model": 1474, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3948, + "fields": { + "id_car_model": 1475, + "name": "CC cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3949, + "fields": { + "id_car_model": 1475, + "name": "Van van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3950, + "fields": { + "id_car_model": 1475, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3951, + "fields": { + "id_car_model": 1475, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3952, + "fields": { + "id_car_model": 1476, + "name": "Peugeot 208 Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3953, + "fields": { + "id_car_model": 1476, + "name": "Peugeot 208 Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3954, + "fields": { + "id_car_model": 1477, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3955, + "fields": { + "id_car_model": 1479, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3956, + "fields": { + "id_car_model": 1479, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3957, + "fields": { + "id_car_model": 1479, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3958, + "fields": { + "id_car_model": 1479, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3959, + "fields": { + "id_car_model": 1480, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3960, + "fields": { + "id_car_model": 1480, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3961, + "fields": { + "id_car_model": 1481, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3962, + "fields": { + "id_car_model": 1481, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3963, + "fields": { + "id_car_model": 1481, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3964, + "fields": { + "id_car_model": 1481, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3965, + "fields": { + "id_car_model": 1481, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3966, + "fields": { + "id_car_model": 1482, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3967, + "fields": { + "id_car_model": 1482, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3968, + "fields": { + "id_car_model": 1482, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3969, + "fields": { + "id_car_model": 1482, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3970, + "fields": { + "id_car_model": 1483, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3971, + "fields": { + "id_car_model": 1484, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3972, + "fields": { + "id_car_model": 1484, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3973, + "fields": { + "id_car_model": 1487, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3974, + "fields": { + "id_car_model": 1487, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3975, + "fields": { + "id_car_model": 1488, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3976, + "fields": { + "id_car_model": 1488, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3977, + "fields": { + "id_car_model": 1488, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3978, + "fields": { + "id_car_model": 1489, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3979, + "fields": { + "id_car_model": 1489, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3980, + "fields": { + "id_car_model": 1489, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3981, + "fields": { + "id_car_model": 1492, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3982, + "fields": { + "id_car_model": 1492, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3983, + "fields": { + "id_car_model": 1492, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3984, + "fields": { + "id_car_model": 1492, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3985, + "fields": { + "id_car_model": 1492, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3986, + "fields": { + "id_car_model": 1493, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3987, + "fields": { + "id_car_model": 1493, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3990, + "fields": { + "id_car_model": 1501, + "name": "Tepee minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3991, + "fields": { + "id_car_model": 1502, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3992, + "fields": { + "id_car_model": 1506, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3993, + "fields": { + "id_car_model": 1506, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3994, + "fields": { + "id_car_model": 1508, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3995, + "fields": { + "id_car_model": 1508, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3996, + "fields": { + "id_car_model": 1510, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3997, + "fields": { + "id_car_model": 1510, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3998, + "fields": { + "id_car_model": 1512, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 3999, + "fields": { + "id_car_model": 1513, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4002, + "fields": { + "id_car_model": 1515, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4003, + "fields": { + "id_car_model": 1517, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4004, + "fields": { + "id_car_model": 1517, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4005, + "fields": { + "id_car_model": 1518, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4006, + "fields": { + "id_car_model": 1518, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4007, + "fields": { + "id_car_model": 1519, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4008, + "fields": { + "id_car_model": 1519, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4009, + "fields": { + "id_car_model": 1520, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4010, + "fields": { + "id_car_model": 1520, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4011, + "fields": { + "id_car_model": 1520, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4012, + "fields": { + "id_car_model": 1522, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4013, + "fields": { + "id_car_model": 1522, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4014, + "fields": { + "id_car_model": 1523, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4015, + "fields": { + "id_car_model": 1525, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4016, + "fields": { + "id_car_model": 1525, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4017, + "fields": { + "id_car_model": 1526, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4018, + "fields": { + "id_car_model": 1528, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4019, + "fields": { + "id_car_model": 1528, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4020, + "fields": { + "id_car_model": 1529, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4021, + "fields": { + "id_car_model": 1529, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4022, + "fields": { + "id_car_model": 1530, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4023, + "fields": { + "id_car_model": 1531, + "name": "SE Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4025, + "fields": { + "id_car_model": 1531, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4026, + "fields": { + "id_car_model": 1534, + "name": "Minivan SWB", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4028, + "fields": { + "id_car_model": 1536, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4029, + "fields": { + "id_car_model": 1536, + "name": "Carrera cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4030, + "fields": { + "id_car_model": 1536, + "name": "Turbo Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4031, + "fields": { + "id_car_model": 1541, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4032, + "fields": { + "id_car_model": 1541, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4033, + "fields": { + "id_car_model": 1543, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4034, + "fields": { + "id_car_model": 1543, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4035, + "fields": { + "id_car_model": 1544, + "name": "GTS roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4036, + "fields": { + "id_car_model": 1546, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4037, + "fields": { + "id_car_model": 1547, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4038, + "fields": { + "id_car_model": 1549, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4039, + "fields": { + "id_car_model": 1559, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4040, + "fields": { + "id_car_model": 1560, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4041, + "fields": { + "id_car_model": 1562, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4042, + "fields": { + "id_car_model": 1562, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4043, + "fields": { + "id_car_model": 1562, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4044, + "fields": { + "id_car_model": 1563, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4045, + "fields": { + "id_car_model": 1563, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4046, + "fields": { + "id_car_model": 1563, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4048, + "fields": { + "id_car_model": 1567, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4049, + "fields": { + "id_car_model": 1567, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4050, + "fields": { + "id_car_model": 1570, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4051, + "fields": { + "id_car_model": 1570, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4052, + "fields": { + "id_car_model": 1571, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4053, + "fields": { + "id_car_model": 1571, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4054, + "fields": { + "id_car_model": 1576, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4055, + "fields": { + "id_car_model": 1576, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4056, + "fields": { + "id_car_model": 1577, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4057, + "fields": { + "id_car_model": 1579, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4058, + "fields": { + "id_car_model": 1579, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4059, + "fields": { + "id_car_model": 1579, + "name": "Savanna wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4063, + "fields": { + "id_car_model": 1583, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4064, + "fields": { + "id_car_model": 1583, + "name": "GT Turbo hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4065, + "fields": { + "id_car_model": 1588, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4067, + "fields": { + "id_car_model": 1590, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4068, + "fields": { + "id_car_model": 1592, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4069, + "fields": { + "id_car_model": 1594, + "name": "Passenger minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4070, + "fields": { + "id_car_model": 1595, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4071, + "fields": { + "id_car_model": 1596, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4072, + "fields": { + "id_car_model": 1596, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4073, + "fields": { + "id_car_model": 1596, + "name": "Grandtour wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4074, + "fields": { + "id_car_model": 1598, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4075, + "fields": { + "id_car_model": 1599, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4076, + "fields": { + "id_car_model": 1599, + "name": "GT hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4077, + "fields": { + "id_car_model": 1599, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4078, + "fields": { + "id_car_model": 1599, + "name": "GT hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4079, + "fields": { + "id_car_model": 1600, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4080, + "fields": { + "id_car_model": 1601, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4081, + "fields": { + "id_car_model": 1602, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4082, + "fields": { + "id_car_model": 1604, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4083, + "fields": { + "id_car_model": 1606, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4084, + "fields": { + "id_car_model": 1607, + "name": "RS hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4086, + "fields": { + "id_car_model": 1613, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4087, + "fields": { + "id_car_model": 1618, + "name": "Drophead Coupe cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4088, + "fields": { + "id_car_model": 1618, + "name": "Coupe Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4089, + "fields": { + "id_car_model": 1618, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4090, + "fields": { + "id_car_model": 1620, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4091, + "fields": { + "id_car_model": 1623, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4092, + "fields": { + "id_car_model": 1623, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4093, + "fields": { + "id_car_model": 1623, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4094, + "fields": { + "id_car_model": 1624, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4095, + "fields": { + "id_car_model": 1624, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4096, + "fields": { + "id_car_model": 1625, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4097, + "fields": { + "id_car_model": 1625, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4098, + "fields": { + "id_car_model": 1626, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4099, + "fields": { + "id_car_model": 1626, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4100, + "fields": { + "id_car_model": 1627, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4101, + "fields": { + "id_car_model": 1627, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4102, + "fields": { + "id_car_model": 1629, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4103, + "fields": { + "id_car_model": 1629, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4104, + "fields": { + "id_car_model": 1630, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4105, + "fields": { + "id_car_model": 1630, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4106, + "fields": { + "id_car_model": 1630, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4107, + "fields": { + "id_car_model": 1631, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4108, + "fields": { + "id_car_model": 1631, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4109, + "fields": { + "id_car_model": 1631, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4110, + "fields": { + "id_car_model": 1632, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4111, + "fields": { + "id_car_model": 1632, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4112, + "fields": { + "id_car_model": 1636, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4113, + "fields": { + "id_car_model": 1636, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4114, + "fields": { + "id_car_model": 1636, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4116, + "fields": { + "id_car_model": 1638, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4118, + "fields": { + "id_car_model": 1641, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4119, + "fields": { + "id_car_model": 1641, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4120, + "fields": { + "id_car_model": 1642, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4121, + "fields": { + "id_car_model": 1642, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4122, + "fields": { + "id_car_model": 1645, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4123, + "fields": { + "id_car_model": 1645, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4127, + "fields": { + "id_car_model": 1648, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4128, + "fields": { + "id_car_model": 1648, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4129, + "fields": { + "id_car_model": 1650, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4130, + "fields": { + "id_car_model": 1650, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4131, + "fields": { + "id_car_model": 1655, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4132, + "fields": { + "id_car_model": 1657, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4134, + "fields": { + "id_car_model": 1659, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4135, + "fields": { + "id_car_model": 1662, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4136, + "fields": { + "id_car_model": 1664, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4137, + "fields": { + "id_car_model": 1667, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4138, + "fields": { + "id_car_model": 1668, + "name": "Freetrack minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4139, + "fields": { + "id_car_model": 1668, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4140, + "fields": { + "id_car_model": 1670, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4141, + "fields": { + "id_car_model": 1671, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4142, + "fields": { + "id_car_model": 1671, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4143, + "fields": { + "id_car_model": 1672, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4144, + "fields": { + "id_car_model": 1672, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4145, + "fields": { + "id_car_model": 1673, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4146, + "fields": { + "id_car_model": 1673, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4148, + "fields": { + "id_car_model": 1674, + "name": "Cupra hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4150, + "fields": { + "id_car_model": 1674, + "name": "X-Perience wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4151, + "fields": { + "id_car_model": 1678, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4154, + "fields": { + "id_car_model": 1682, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4155, + "fields": { + "id_car_model": 1682, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4156, + "fields": { + "id_car_model": 1683, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4157, + "fields": { + "id_car_model": 1683, + "name": "Combi wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4158, + "fields": { + "id_car_model": 1684, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4159, + "fields": { + "id_car_model": 1684, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4160, + "fields": { + "id_car_model": 1685, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4161, + "fields": { + "id_car_model": 1685, + "name": "Combi wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4162, + "fields": { + "id_car_model": 1686, + "name": "Liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4163, + "fields": { + "id_car_model": 1686, + "name": "Combi wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4164, + "fields": { + "id_car_model": 1687, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4165, + "fields": { + "id_car_model": 1687, + "name": "Spaceback wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4166, + "fields": { + "id_car_model": 1689, + "name": "Combi wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4167, + "fields": { + "id_car_model": 1689, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4168, + "fields": { + "id_car_model": 1690, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4169, + "fields": { + "id_car_model": 1692, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4170, + "fields": { + "id_car_model": 1692, + "name": "Cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4171, + "fields": { + "id_car_model": 1696, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4172, + "fields": { + "id_car_model": 1696, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4173, + "fields": { + "id_car_model": 1697, + "name": "Aileron roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4174, + "fields": { + "id_car_model": 1697, + "name": "Aileron Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4175, + "fields": { + "id_car_model": 1699, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4176, + "fields": { + "id_car_model": 1700, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4177, + "fields": { + "id_car_model": 1701, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4178, + "fields": { + "id_car_model": 1704, + "name": "Hard Top SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4179, + "fields": { + "id_car_model": 1704, + "name": "Soft Top SUV 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4180, + "fields": { + "id_car_model": 1705, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4181, + "fields": { + "id_car_model": 1706, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4182, + "fields": { + "id_car_model": 1706, + "name": "Sports pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4183, + "fields": { + "id_car_model": 1707, + "name": "W SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4184, + "fields": { + "id_car_model": 1708, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4185, + "fields": { + "id_car_model": 1714, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4186, + "fields": { + "id_car_model": 1716, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4187, + "fields": { + "id_car_model": 1717, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4189, + "fields": { + "id_car_model": 1718, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4190, + "fields": { + "id_car_model": 1719, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4191, + "fields": { + "id_car_model": 1719, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4192, + "fields": { + "id_car_model": 1720, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4193, + "fields": { + "id_car_model": 1720, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4194, + "fields": { + "id_car_model": 1723, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4195, + "fields": { + "id_car_model": 1724, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4196, + "fields": { + "id_car_model": 1724, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4197, + "fields": { + "id_car_model": 1732, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4198, + "fields": { + "id_car_model": 1733, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4199, + "fields": { + "id_car_model": 1733, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4200, + "fields": { + "id_car_model": 1737, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4201, + "fields": { + "id_car_model": 1738, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4202, + "fields": { + "id_car_model": 1738, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4203, + "fields": { + "id_car_model": 1738, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4204, + "fields": { + "id_car_model": 1740, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4205, + "fields": { + "id_car_model": 1742, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4206, + "fields": { + "id_car_model": 1744, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4207, + "fields": { + "id_car_model": 1744, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4208, + "fields": { + "id_car_model": 1745, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4209, + "fields": { + "id_car_model": 1745, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4210, + "fields": { + "id_car_model": 1746, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4211, + "fields": { + "id_car_model": 1746, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4212, + "fields": { + "id_car_model": 1747, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4213, + "fields": { + "id_car_model": 1750, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4214, + "fields": { + "id_car_model": 1751, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4215, + "fields": { + "id_car_model": 1751, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4216, + "fields": { + "id_car_model": 1752, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4217, + "fields": { + "id_car_model": 1755, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4218, + "fields": { + "id_car_model": 1758, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4219, + "fields": { + "id_car_model": 1758, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4220, + "fields": { + "id_car_model": 1759, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4221, + "fields": { + "id_car_model": 1761, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4222, + "fields": { + "id_car_model": 1762, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4223, + "fields": { + "id_car_model": 1766, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4224, + "fields": { + "id_car_model": 1766, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4225, + "fields": { + "id_car_model": 1768, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4226, + "fields": { + "id_car_model": 1768, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4227, + "fields": { + "id_car_model": 1773, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4228, + "fields": { + "id_car_model": 1774, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4231, + "fields": { + "id_car_model": 1779, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4232, + "fields": { + "id_car_model": 1779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4233, + "fields": { + "id_car_model": 1780, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4234, + "fields": { + "id_car_model": 1780, + "name": "Tatra T700 Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4235, + "fields": { + "id_car_model": 1791, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4236, + "fields": { + "id_car_model": 1793, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4237, + "fields": { + "id_car_model": 1794, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4238, + "fields": { + "id_car_model": 1795, + "name": "Gita wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4239, + "fields": { + "id_car_model": 1795, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4240, + "fields": { + "id_car_model": 1796, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4241, + "fields": { + "id_car_model": 1798, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4242, + "fields": { + "id_car_model": 1798, + "name": "Hybrid hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4243, + "fields": { + "id_car_model": 1799, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4244, + "fields": { + "id_car_model": 1800, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4245, + "fields": { + "id_car_model": 1800, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4248, + "fields": { + "id_car_model": 1803, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4249, + "fields": { + "id_car_model": 1806, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4251, + "fields": { + "id_car_model": 1808, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4252, + "fields": { + "id_car_model": 1810, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4253, + "fields": { + "id_car_model": 1811, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4254, + "fields": { + "id_car_model": 1812, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4255, + "fields": { + "id_car_model": 1813, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4256, + "fields": { + "id_car_model": 1813, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4257, + "fields": { + "id_car_model": 1814, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4258, + "fields": { + "id_car_model": 1815, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4259, + "fields": { + "id_car_model": 1816, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4260, + "fields": { + "id_car_model": 1817, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4261, + "fields": { + "id_car_model": 1818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4263, + "fields": { + "id_car_model": 1821, + "name": "Premio Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4264, + "fields": { + "id_car_model": 1822, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4265, + "fields": { + "id_car_model": 1822, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4266, + "fields": { + "id_car_model": 1823, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4267, + "fields": { + "id_car_model": 1824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4268, + "fields": { + "id_car_model": 1825, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4269, + "fields": { + "id_car_model": 1826, + "name": "Royal Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4270, + "fields": { + "id_car_model": 1828, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4271, + "fields": { + "id_car_model": 1828, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4272, + "fields": { + "id_car_model": 1830, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4273, + "fields": { + "id_car_model": 1830, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4274, + "fields": { + "id_car_model": 1831, + "name": "Hybrid minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4275, + "fields": { + "id_car_model": 1838, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4276, + "fields": { + "id_car_model": 1840, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4277, + "fields": { + "id_car_model": 1841, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4278, + "fields": { + "id_car_model": 1842, + "name": "Pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4279, + "fields": { + "id_car_model": 1844, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4280, + "fields": { + "id_car_model": 1846, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4281, + "fields": { + "id_car_model": 1847, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4282, + "fields": { + "id_car_model": 1848, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4283, + "fields": { + "id_car_model": 1849, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4284, + "fields": { + "id_car_model": 1850, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4285, + "fields": { + "id_car_model": 1850, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4286, + "fields": { + "id_car_model": 1851, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4287, + "fields": { + "id_car_model": 1851, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4288, + "fields": { + "id_car_model": 1851, + "name": "Trabant 1.1 Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4289, + "fields": { + "id_car_model": 1851, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4290, + "fields": { + "id_car_model": 1852, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4291, + "fields": { + "id_car_model": 1852, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4292, + "fields": { + "id_car_model": 1852, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4293, + "fields": { + "id_car_model": 1853, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4294, + "fields": { + "id_car_model": 1853, + "name": "Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4295, + "fields": { + "id_car_model": 1854, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4296, + "fields": { + "id_car_model": 1854, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4297, + "fields": { + "id_car_model": 1856, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4298, + "fields": { + "id_car_model": 1856, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4299, + "fields": { + "id_car_model": 1857, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4300, + "fields": { + "id_car_model": 1857, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4301, + "fields": { + "id_car_model": 1860, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4302, + "fields": { + "id_car_model": 1860, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4303, + "fields": { + "id_car_model": 1868, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4304, + "fields": { + "id_car_model": 1868, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4305, + "fields": { + "id_car_model": 1870, + "name": "Vauxhall Agila B", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4306, + "fields": { + "id_car_model": 1871, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4307, + "fields": { + "id_car_model": 1871, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4308, + "fields": { + "id_car_model": 1871, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4309, + "fields": { + "id_car_model": 1873, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4310, + "fields": { + "id_car_model": 1873, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4314, + "fields": { + "id_car_model": 1875, + "name": "Vauxhall Chevette Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4316, + "fields": { + "id_car_model": 1875, + "name": "Vauxhall Chevette Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4318, + "fields": { + "id_car_model": 1877, + "name": "Vauxhall Corsa C Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4319, + "fields": { + "id_car_model": 1877, + "name": "Vauxhall Corsa C Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4325, + "fields": { + "id_car_model": 1881, + "name": "Vauxhall Omega wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4326, + "fields": { + "id_car_model": 1882, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4327, + "fields": { + "id_car_model": 1882, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4328, + "fields": { + "id_car_model": 1885, + "name": "Vauxhall Tigra B", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4329, + "fields": { + "id_car_model": 1886, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4330, + "fields": { + "id_car_model": 1886, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4331, + "fields": { + "id_car_model": 1886, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4332, + "fields": { + "id_car_model": 1889, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4334, + "fields": { + "id_car_model": 1890, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4336, + "fields": { + "id_car_model": 1890, + "name": "wagon 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4338, + "fields": { + "id_car_model": 1895, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4339, + "fields": { + "id_car_model": 1895, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4340, + "fields": { + "id_car_model": 1900, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4341, + "fields": { + "id_car_model": 1900, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4342, + "fields": { + "id_car_model": 1901, + "name": "Variant wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4343, + "fields": { + "id_car_model": 1901, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4344, + "fields": { + "id_car_model": 1902, + "name": "Cross minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4345, + "fields": { + "id_car_model": 1904, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4346, + "fields": { + "id_car_model": 1905, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4347, + "fields": { + "id_car_model": 1908, + "name": "Sportsvan minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4348, + "fields": { + "id_car_model": 1908, + "name": "Variant wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4349, + "fields": { + "id_car_model": 1908, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4350, + "fields": { + "id_car_model": 1909, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4351, + "fields": { + "id_car_model": 1912, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4355, + "fields": { + "id_car_model": 1917, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4356, + "fields": { + "id_car_model": 1917, + "name": "Variant wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4357, + "fields": { + "id_car_model": 1918, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4358, + "fields": { + "id_car_model": 1919, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4359, + "fields": { + "id_car_model": 1920, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4360, + "fields": { + "id_car_model": 1920, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4361, + "fields": { + "id_car_model": 1921, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4363, + "fields": { + "id_car_model": 1921, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4365, + "fields": { + "id_car_model": 1925, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4366, + "fields": { + "id_car_model": 1926, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4367, + "fields": { + "id_car_model": 1926, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4368, + "fields": { + "id_car_model": 1926, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4369, + "fields": { + "id_car_model": 1927, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4370, + "fields": { + "id_car_model": 1928, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4371, + "fields": { + "id_car_model": 1929, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4372, + "fields": { + "id_car_model": 1930, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4373, + "fields": { + "id_car_model": 1930, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4374, + "fields": { + "id_car_model": 1931, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4375, + "fields": { + "id_car_model": 1931, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4379, + "fields": { + "id_car_model": 1936, + "name": "242 Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4380, + "fields": { + "id_car_model": 1936, + "name": "244 Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4384, + "fields": { + "id_car_model": 1938, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4385, + "fields": { + "id_car_model": 1938, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4386, + "fields": { + "id_car_model": 1938, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4387, + "fields": { + "id_car_model": 1942, + "name": "wagon 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4388, + "fields": { + "id_car_model": 1942, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4389, + "fields": { + "id_car_model": 1943, + "name": "Kombi wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4390, + "fields": { + "id_car_model": 1943, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4391, + "fields": { + "id_car_model": 1944, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4392, + "fields": { + "id_car_model": 1944, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4393, + "fields": { + "id_car_model": 1946, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4394, + "fields": { + "id_car_model": 1946, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4395, + "fields": { + "id_car_model": 1947, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4396, + "fields": { + "id_car_model": 1947, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4397, + "fields": { + "id_car_model": 1948, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4398, + "fields": { + "id_car_model": 1948, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4399, + "fields": { + "id_car_model": 1949, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4400, + "fields": { + "id_car_model": 1950, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4402, + "fields": { + "id_car_model": 2187, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4405, + "fields": { + "id_car_model": 2190, + "name": "wagon 5-doors Carib", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4407, + "fields": { + "id_car_model": 2192, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4408, + "fields": { + "id_car_model": 2193, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4409, + "fields": { + "id_car_model": 2194, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4410, + "fields": { + "id_car_model": 2194, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4412, + "fields": { + "id_car_model": 2196, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4413, + "fields": { + "id_car_model": 2197, + "name": "Double Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4414, + "fields": { + "id_car_model": 2197, + "name": "Access Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4415, + "fields": { + "id_car_model": 2197, + "name": "X-Runner pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4416, + "fields": { + "id_car_model": 2198, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4417, + "fields": { + "id_car_model": 2198, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4418, + "fields": { + "id_car_model": 2199, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4419, + "fields": { + "id_car_model": 2200, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4420, + "fields": { + "id_car_model": 2200, + "name": "Crew Max pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4421, + "fields": { + "id_car_model": 2200, + "name": "Double Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4425, + "fields": { + "id_car_model": 2204, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4427, + "fields": { + "id_car_model": 2206, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4429, + "fields": { + "id_car_model": 2208, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4430, + "fields": { + "id_car_model": 2209, + "name": "Ardeo wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4432, + "fields": { + "id_car_model": 2210, + "name": "RS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4437, + "fields": { + "id_car_model": 2215, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4440, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4441, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4481, + "fields": { + "id_car_model": 2119, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4482, + "fields": { + "id_car_model": 2120, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4483, + "fields": { + "id_car_model": 2121, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4484, + "fields": { + "id_car_model": 2121, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4485, + "fields": { + "id_car_model": 2121, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4486, + "fields": { + "id_car_model": 2122, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4487, + "fields": { + "id_car_model": 2122, + "name": "Serie hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4488, + "fields": { + "id_car_model": 2122, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4489, + "fields": { + "id_car_model": 2123, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4490, + "fields": { + "id_car_model": 2124, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4491, + "fields": { + "id_car_model": 2127, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4492, + "fields": { + "id_car_model": 2129, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4493, + "fields": { + "id_car_model": 2129, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4494, + "fields": { + "id_car_model": 2130, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4495, + "fields": { + "id_car_model": 2131, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4496, + "fields": { + "id_car_model": 2132, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4497, + "fields": { + "id_car_model": 2134, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4498, + "fields": { + "id_car_model": 2134, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4499, + "fields": { + "id_car_model": 2135, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4500, + "fields": { + "id_car_model": 2136, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4501, + "fields": { + "id_car_model": 2137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4502, + "fields": { + "id_car_model": 2138, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4503, + "fields": { + "id_car_model": 2141, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4504, + "fields": { + "id_car_model": 2141, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4505, + "fields": { + "id_car_model": 2143, + "name": "Crew Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4506, + "fields": { + "id_car_model": 2143, + "name": "King Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4507, + "fields": { + "id_car_model": 2144, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4508, + "fields": { + "id_car_model": 2145, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4509, + "fields": { + "id_car_model": 2146, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4510, + "fields": { + "id_car_model": 2147, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4511, + "fields": { + "id_car_model": 2148, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4512, + "fields": { + "id_car_model": 2150, + "name": "Blit wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4513, + "fields": { + "id_car_model": 2150, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4514, + "fields": { + "id_car_model": 2151, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4516, + "fields": { + "id_car_model": 2156, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4518, + "fields": { + "id_car_model": 2161, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4519, + "fields": { + "id_car_model": 2161, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4520, + "fields": { + "id_car_model": 2162, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4521, + "fields": { + "id_car_model": 2164, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4522, + "fields": { + "id_car_model": 2166, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4523, + "fields": { + "id_car_model": 2167, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4524, + "fields": { + "id_car_model": 2168, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4525, + "fields": { + "id_car_model": 2170, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4526, + "fields": { + "id_car_model": 2175, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4527, + "fields": { + "id_car_model": 2176, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4529, + "fields": { + "id_car_model": 2182, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4530, + "fields": { + "id_car_model": 2182, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4531, + "fields": { + "id_car_model": 2182, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4532, + "fields": { + "id_car_model": 2183, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4533, + "fields": { + "id_car_model": 2185, + "name": "SE minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4534, + "fields": { + "id_car_model": 1952, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4535, + "fields": { + "id_car_model": 1953, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4536, + "fields": { + "id_car_model": 1955, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4537, + "fields": { + "id_car_model": 1957, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4538, + "fields": { + "id_car_model": 1960, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4539, + "fields": { + "id_car_model": 1962, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4540, + "fields": { + "id_car_model": 1963, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4541, + "fields": { + "id_car_model": 1964, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4542, + "fields": { + "id_car_model": 1966, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4543, + "fields": { + "id_car_model": 1967, + "name": "FL crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4544, + "fields": { + "id_car_model": 1968, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4545, + "fields": { + "id_car_model": 1968, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4546, + "fields": { + "id_car_model": 1969, + "name": "Tourist wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4547, + "fields": { + "id_car_model": 1969, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4548, + "fields": { + "id_car_model": 1969, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4549, + "fields": { + "id_car_model": 1980, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4550, + "fields": { + "id_car_model": 1980, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4551, + "fields": { + "id_car_model": 1982, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4552, + "fields": { + "id_car_model": 1982, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4557, + "fields": { + "id_car_model": 1999, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4558, + "fields": { + "id_car_model": 2004, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4559, + "fields": { + "id_car_model": 2004, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4560, + "fields": { + "id_car_model": 2008, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4561, + "fields": { + "id_car_model": 2015, + "name": "Sport Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4562, + "fields": { + "id_car_model": 2015, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4563, + "fields": { + "id_car_model": 2016, + "name": "NFR hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4564, + "fields": { + "id_car_model": 2016, + "name": "Sport hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4570, + "fields": { + "id_car_model": 2026, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4571, + "fields": { + "id_car_model": 2026, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4572, + "fields": { + "id_car_model": 2027, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4573, + "fields": { + "id_car_model": 2027, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4574, + "fields": { + "id_car_model": 2028, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4575, + "fields": { + "id_car_model": 2028, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4576, + "fields": { + "id_car_model": 2031, + "name": "GAZ 3110 «Volga» wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4577, + "fields": { + "id_car_model": 2031, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4578, + "fields": { + "id_car_model": 2034, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4579, + "fields": { + "id_car_model": 2034, + "name": "Cabriolet 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4583, + "fields": { + "id_car_model": 2040, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4584, + "fields": { + "id_car_model": 2044, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4585, + "fields": { + "id_car_model": 2044, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4586, + "fields": { + "id_car_model": 2045, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4587, + "fields": { + "id_car_model": 2045, + "name": "ZAZ Forza Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4588, + "fields": { + "id_car_model": 2046, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4589, + "fields": { + "id_car_model": 2046, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4590, + "fields": { + "id_car_model": 2047, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4591, + "fields": { + "id_car_model": 2047, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4593, + "fields": { + "id_car_model": 2054, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4594, + "fields": { + "id_car_model": 2066, + "name": "Moskvich 400 Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4596, + "fields": { + "id_car_model": 2066, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4597, + "fields": { + "id_car_model": 2066, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4598, + "fields": { + "id_car_model": 2067, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4600, + "fields": { + "id_car_model": 2078, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4601, + "fields": { + "id_car_model": 2090, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4602, + "fields": { + "id_car_model": 2090, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4603, + "fields": { + "id_car_model": 2091, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4604, + "fields": { + "id_car_model": 2091, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4605, + "fields": { + "id_car_model": 2093, + "name": "SUV 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4606, + "fields": { + "id_car_model": 2093, + "name": "UAZ 3151 SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4607, + "fields": { + "id_car_model": 2098, + "name": "SUV 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4608, + "fields": { + "id_car_model": 2098, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4609, + "fields": { + "id_car_model": 2099, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4611, + "fields": { + "id_car_model": 2100, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4612, + "fields": { + "id_car_model": 2101, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4613, + "fields": { + "id_car_model": 2105, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4614, + "fields": { + "id_car_model": 2117, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4615, + "fields": { + "id_car_model": 2118, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4616, + "fields": { + "id_car_model": 2139, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4617, + "fields": { + "id_car_model": 2125, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4619, + "fields": { + "id_car_model": 1381, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4620, + "fields": { + "id_car_model": 84, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4621, + "fields": { + "id_car_model": 84, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4622, + "fields": { + "id_car_model": 84, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4623, + "fields": { + "id_car_model": 84, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4624, + "fields": { + "id_car_model": 84, + "name": "DTM Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4625, + "fields": { + "id_car_model": 84, + "name": "Avant wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4626, + "fields": { + "id_car_model": 84, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4627, + "fields": { + "id_car_model": 84, + "name": "Duo wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4628, + "fields": { + "id_car_model": 84, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4629, + "fields": { + "id_car_model": 1, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4630, + "fields": { + "id_car_model": 2, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4632, + "fields": { + "id_car_model": 4, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4633, + "fields": { + "id_car_model": 4, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4635, + "fields": { + "id_car_model": 6, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4636, + "fields": { + "id_car_model": 7, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4637, + "fields": { + "id_car_model": 8, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4638, + "fields": { + "id_car_model": 9, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4639, + "fields": { + "id_car_model": 9, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4640, + "fields": { + "id_car_model": 9, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4642, + "fields": { + "id_car_model": 10, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4643, + "fields": { + "id_car_model": 10, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4644, + "fields": { + "id_car_model": 11, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4646, + "fields": { + "id_car_model": 12, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4647, + "fields": { + "id_car_model": 13, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4648, + "fields": { + "id_car_model": 14, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4651, + "fields": { + "id_car_model": 17, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4652, + "fields": { + "id_car_model": 18, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4653, + "fields": { + "id_car_model": 18, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4654, + "fields": { + "id_car_model": 18, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4655, + "fields": { + "id_car_model": 19, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4656, + "fields": { + "id_car_model": 20, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4659, + "fields": { + "id_car_model": 24, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4660, + "fields": { + "id_car_model": 27, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4661, + "fields": { + "id_car_model": 28, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4664, + "fields": { + "id_car_model": 30, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4667, + "fields": { + "id_car_model": 34, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4847, + "fields": { + "id_car_model": 151, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4848, + "fields": { + "id_car_model": 152, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4849, + "fields": { + "id_car_model": 153, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4850, + "fields": { + "id_car_model": 153, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4851, + "fields": { + "id_car_model": 154, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4854, + "fields": { + "id_car_model": 157, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4855, + "fields": { + "id_car_model": 159, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4876, + "fields": { + "id_car_model": 169, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4880, + "fields": { + "id_car_model": 173, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4883, + "fields": { + "id_car_model": 176, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4884, + "fields": { + "id_car_model": 177, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4885, + "fields": { + "id_car_model": 177, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4888, + "fields": { + "id_car_model": 180, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4889, + "fields": { + "id_car_model": 181, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4894, + "fields": { + "id_car_model": 187, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4897, + "fields": { + "id_car_model": 190, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4898, + "fields": { + "id_car_model": 190, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4901, + "fields": { + "id_car_model": 193, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4902, + "fields": { + "id_car_model": 193, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4905, + "fields": { + "id_car_model": 196, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4906, + "fields": { + "id_car_model": 196, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4907, + "fields": { + "id_car_model": 196, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4912, + "fields": { + "id_car_model": 202, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4916, + "fields": { + "id_car_model": 207, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4919, + "fields": { + "id_car_model": 210, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 4922, + "fields": { + "id_car_model": 213, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5356, + "fields": { + "id_car_model": 647, + "name": "SportKA hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5357, + "fields": { + "id_car_model": 647, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5358, + "fields": { + "id_car_model": 648, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5361, + "fields": { + "id_car_model": 651, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5362, + "fields": { + "id_car_model": 651, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5366, + "fields": { + "id_car_model": 655, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5368, + "fields": { + "id_car_model": 657, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5369, + "fields": { + "id_car_model": 658, + "name": "Single Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5370, + "fields": { + "id_car_model": 658, + "name": "Rap Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5371, + "fields": { + "id_car_model": 658, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5373, + "fields": { + "id_car_model": 658, + "name": "Pickup One-and-a-half cabin Regular Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5374, + "fields": { + "id_car_model": 658, + "name": "Pickup Double cabin CrewCab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5375, + "fields": { + "id_car_model": 659, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5376, + "fields": { + "id_car_model": 660, + "name": "Ford Scorpio I wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5377, + "fields": { + "id_car_model": 660, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5378, + "fields": { + "id_car_model": 660, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5379, + "fields": { + "id_car_model": 661, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5380, + "fields": { + "id_car_model": 661, + "name": "RS Cosworth hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5381, + "fields": { + "id_car_model": 661, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5384, + "fields": { + "id_car_model": 664, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5385, + "fields": { + "id_car_model": 664, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5386, + "fields": { + "id_car_model": 664, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5387, + "fields": { + "id_car_model": 664, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5388, + "fields": { + "id_car_model": 664, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5389, + "fields": { + "id_car_model": 664, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5390, + "fields": { + "id_car_model": 664, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5391, + "fields": { + "id_car_model": 664, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5392, + "fields": { + "id_car_model": 664, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5395, + "fields": { + "id_car_model": 667, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5396, + "fields": { + "id_car_model": 667, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5404, + "fields": { + "id_car_model": 3, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5406, + "fields": { + "id_car_model": 9, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5408, + "fields": { + "id_car_model": 15, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5413, + "fields": { + "id_car_model": 22, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5416, + "fields": { + "id_car_model": 29, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5417, + "fields": { + "id_car_model": 29, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5421, + "fields": { + "id_car_model": 37, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5423, + "fields": { + "id_car_model": 39, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5424, + "fields": { + "id_car_model": 40, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5427, + "fields": { + "id_car_model": 43, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5428, + "fields": { + "id_car_model": 44, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5429, + "fields": { + "id_car_model": 45, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5432, + "fields": { + "id_car_model": 48, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5433, + "fields": { + "id_car_model": 49, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5435, + "fields": { + "id_car_model": 51, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5436, + "fields": { + "id_car_model": 52, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5437, + "fields": { + "id_car_model": 53, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5439, + "fields": { + "id_car_model": 55, + "name": "Roadster 1-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5441, + "fields": { + "id_car_model": 57, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5442, + "fields": { + "id_car_model": 58, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5444, + "fields": { + "id_car_model": 60, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5445, + "fields": { + "id_car_model": 61, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5448, + "fields": { + "id_car_model": 66, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5449, + "fields": { + "id_car_model": 67, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5450, + "fields": { + "id_car_model": 68, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5451, + "fields": { + "id_car_model": 69, + "name": "V12 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5452, + "fields": { + "id_car_model": 71, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5453, + "fields": { + "id_car_model": 72, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5454, + "fields": { + "id_car_model": 72, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5455, + "fields": { + "id_car_model": 72, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5456, + "fields": { + "id_car_model": 72, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5457, + "fields": { + "id_car_model": 72, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5458, + "fields": { + "id_car_model": 74, + "name": "Volante cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5459, + "fields": { + "id_car_model": 74, + "name": "wagon 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5461, + "fields": { + "id_car_model": 74, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5464, + "fields": { + "id_car_model": 77, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5465, + "fields": { + "id_car_model": 78, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5466, + "fields": { + "id_car_model": 78, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5467, + "fields": { + "id_car_model": 78, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5468, + "fields": { + "id_car_model": 79, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5469, + "fields": { + "id_car_model": 81, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5470, + "fields": { + "id_car_model": 82, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5471, + "fields": { + "id_car_model": 82, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5474, + "fields": { + "id_car_model": 82, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5478, + "fields": { + "id_car_model": 85, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5479, + "fields": { + "id_car_model": 85, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5481, + "fields": { + "id_car_model": 86, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5482, + "fields": { + "id_car_model": 87, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5483, + "fields": { + "id_car_model": 87, + "name": "Allroad quattro wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5484, + "fields": { + "id_car_model": 87, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5486, + "fields": { + "id_car_model": 87, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5487, + "fields": { + "id_car_model": 87, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5488, + "fields": { + "id_car_model": 87, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5489, + "fields": { + "id_car_model": 87, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5492, + "fields": { + "id_car_model": 90, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5493, + "fields": { + "id_car_model": 91, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5494, + "fields": { + "id_car_model": 92, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5496, + "fields": { + "id_car_model": 94, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5497, + "fields": { + "id_car_model": 95, + "name": "Q7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5498, + "fields": { + "id_car_model": 96, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5500, + "fields": { + "id_car_model": 98, + "name": "RS Q3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5504, + "fields": { + "id_car_model": 103, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5505, + "fields": { + "id_car_model": 103, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5506, + "fields": { + "id_car_model": 103, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5507, + "fields": { + "id_car_model": 103, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5509, + "fields": { + "id_car_model": 107, + "name": "Sportback hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5510, + "fields": { + "id_car_model": 107, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5511, + "fields": { + "id_car_model": 107, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5513, + "fields": { + "id_car_model": 109, + "name": "Sportback liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5514, + "fields": { + "id_car_model": 109, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5515, + "fields": { + "id_car_model": 109, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5516, + "fields": { + "id_car_model": 110, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5517, + "fields": { + "id_car_model": 110, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5518, + "fields": { + "id_car_model": 110, + "name": "wagon 5-doors Avant", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5520, + "fields": { + "id_car_model": 110, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5521, + "fields": { + "id_car_model": 110, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5523, + "fields": { + "id_car_model": 112, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5524, + "fields": { + "id_car_model": 112, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5525, + "fields": { + "id_car_model": 112, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5528, + "fields": { + "id_car_model": 114, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5529, + "fields": { + "id_car_model": 115, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5530, + "fields": { + "id_car_model": 116, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5532, + "fields": { + "id_car_model": 118, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5533, + "fields": { + "id_car_model": 119, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5536, + "fields": { + "id_car_model": 123, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5538, + "fields": { + "id_car_model": 125, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5539, + "fields": { + "id_car_model": 126, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5542, + "fields": { + "id_car_model": 129, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5543, + "fields": { + "id_car_model": 130, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5546, + "fields": { + "id_car_model": 134, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5547, + "fields": { + "id_car_model": 135, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5548, + "fields": { + "id_car_model": 136, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5549, + "fields": { + "id_car_model": 137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5551, + "fields": { + "id_car_model": 139, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5552, + "fields": { + "id_car_model": 140, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5587, + "fields": { + "id_car_model": 150, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5590, + "fields": { + "id_car_model": 155, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5591, + "fields": { + "id_car_model": 155, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5592, + "fields": { + "id_car_model": 155, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5593, + "fields": { + "id_car_model": 156, + "name": "Sports Activity Coupe crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5601, + "fields": { + "id_car_model": 171, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5607, + "fields": { + "id_car_model": 178, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5610, + "fields": { + "id_car_model": 182, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5611, + "fields": { + "id_car_model": 183, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5613, + "fields": { + "id_car_model": 185, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5614, + "fields": { + "id_car_model": 185, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5615, + "fields": { + "id_car_model": 186, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5619, + "fields": { + "id_car_model": 191, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5620, + "fields": { + "id_car_model": 191, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5622, + "fields": { + "id_car_model": 192, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5625, + "fields": { + "id_car_model": 197, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5628, + "fields": { + "id_car_model": 201, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5630, + "fields": { + "id_car_model": 203, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5632, + "fields": { + "id_car_model": 206, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5635, + "fields": { + "id_car_model": 211, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5640, + "fields": { + "id_car_model": 218, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5642, + "fields": { + "id_car_model": 220, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5643, + "fields": { + "id_car_model": 220, + "name": "V Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5644, + "fields": { + "id_car_model": 220, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5645, + "fields": { + "id_car_model": 220, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5647, + "fields": { + "id_car_model": 222, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5649, + "fields": { + "id_car_model": 224, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5652, + "fields": { + "id_car_model": 224, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5653, + "fields": { + "id_car_model": 224, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5656, + "fields": { + "id_car_model": 227, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5657, + "fields": { + "id_car_model": 227, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5658, + "fields": { + "id_car_model": 227, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5659, + "fields": { + "id_car_model": 227, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5660, + "fields": { + "id_car_model": 229, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5661, + "fields": { + "id_car_model": 230, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5664, + "fields": { + "id_car_model": 234, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5665, + "fields": { + "id_car_model": 235, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5668, + "fields": { + "id_car_model": 238, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5670, + "fields": { + "id_car_model": 240, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5672, + "fields": { + "id_car_model": 242, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5677, + "fields": { + "id_car_model": 248, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5679, + "fields": { + "id_car_model": 250, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5680, + "fields": { + "id_car_model": 251, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5682, + "fields": { + "id_car_model": 253, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5684, + "fields": { + "id_car_model": 255, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5685, + "fields": { + "id_car_model": 256, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5687, + "fields": { + "id_car_model": 258, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5690, + "fields": { + "id_car_model": 262, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5691, + "fields": { + "id_car_model": 262, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5692, + "fields": { + "id_car_model": 262, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5693, + "fields": { + "id_car_model": 262, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5694, + "fields": { + "id_car_model": 262, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5695, + "fields": { + "id_car_model": 263, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5696, + "fields": { + "id_car_model": 264, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5697, + "fields": { + "id_car_model": 264, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5700, + "fields": { + "id_car_model": 267, + "name": "Cabriolet 2-doors", + "arabic_name": "سطح قابل للطي - بابين" + } +}, +{ + "model": "inventory.carserie", + "pk": 5701, + "fields": { + "id_car_model": 267, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5702, + "fields": { + "id_car_model": 267, + "name": "Z28 targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5703, + "fields": { + "id_car_model": 267, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5704, + "fields": { + "id_car_model": 267, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5705, + "fields": { + "id_car_model": 268, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5706, + "fields": { + "id_car_model": 268, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5707, + "fields": { + "id_car_model": 268, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5708, + "fields": { + "id_car_model": 268, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5711, + "fields": { + "id_car_model": 271, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5712, + "fields": { + "id_car_model": 272, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5713, + "fields": { + "id_car_model": 273, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5716, + "fields": { + "id_car_model": 276, + "name": "SS Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5717, + "fields": { + "id_car_model": 276, + "name": "SS Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5718, + "fields": { + "id_car_model": 279, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5721, + "fields": { + "id_car_model": 282, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5722, + "fields": { + "id_car_model": 282, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5724, + "fields": { + "id_car_model": 284, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5727, + "fields": { + "id_car_model": 287, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5728, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5729, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5732, + "fields": { + "id_car_model": 293, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5733, + "fields": { + "id_car_model": 294, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5734, + "fields": { + "id_car_model": 295, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5735, + "fields": { + "id_car_model": 295, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5736, + "fields": { + "id_car_model": 295, + "name": "Maxx wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5737, + "fields": { + "id_car_model": 295, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5738, + "fields": { + "id_car_model": 295, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5739, + "fields": { + "id_car_model": 295, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5742, + "fields": { + "id_car_model": 298, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5743, + "fields": { + "id_car_model": 299, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5744, + "fields": { + "id_car_model": 300, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5747, + "fields": { + "id_car_model": 303, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5748, + "fields": { + "id_car_model": 304, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5749, + "fields": { + "id_car_model": 305, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5753, + "fields": { + "id_car_model": 310, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5754, + "fields": { + "id_car_model": 311, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5756, + "fields": { + "id_car_model": 313, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5757, + "fields": { + "id_car_model": 313, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5758, + "fields": { + "id_car_model": 313, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5759, + "fields": { + "id_car_model": 313, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5761, + "fields": { + "id_car_model": 315, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5762, + "fields": { + "id_car_model": 315, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5763, + "fields": { + "id_car_model": 316, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5766, + "fields": { + "id_car_model": 320, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5767, + "fields": { + "id_car_model": 321, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5769, + "fields": { + "id_car_model": 323, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5771, + "fields": { + "id_car_model": 325, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5772, + "fields": { + "id_car_model": 326, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5774, + "fields": { + "id_car_model": 328, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5776, + "fields": { + "id_car_model": 331, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5778, + "fields": { + "id_car_model": 333, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5779, + "fields": { + "id_car_model": 334, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5782, + "fields": { + "id_car_model": 337, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5783, + "fields": { + "id_car_model": 338, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5784, + "fields": { + "id_car_model": 338, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5785, + "fields": { + "id_car_model": 338, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5786, + "fields": { + "id_car_model": 338, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5787, + "fields": { + "id_car_model": 338, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5790, + "fields": { + "id_car_model": 343, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5793, + "fields": { + "id_car_model": 344, + "name": "Minivan Grand", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5798, + "fields": { + "id_car_model": 348, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5802, + "fields": { + "id_car_model": 354, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5803, + "fields": { + "id_car_model": 354, + "name": "Pluriel cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5804, + "fields": { + "id_car_model": 354, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5809, + "fields": { + "id_car_model": 358, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5810, + "fields": { + "id_car_model": 358, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5811, + "fields": { + "id_car_model": 359, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5814, + "fields": { + "id_car_model": 362, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5815, + "fields": { + "id_car_model": 363, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5816, + "fields": { + "id_car_model": 363, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5833, + "fields": { + "id_car_model": 386, + "name": "VAN van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5834, + "fields": { + "id_car_model": 386, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5835, + "fields": { + "id_car_model": 386, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5837, + "fields": { + "id_car_model": 388, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5839, + "fields": { + "id_car_model": 390, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5842, + "fields": { + "id_car_model": 393, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5844, + "fields": { + "id_car_model": 395, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5845, + "fields": { + "id_car_model": 396, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5847, + "fields": { + "id_car_model": 398, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5856, + "fields": { + "id_car_model": 410, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5857, + "fields": { + "id_car_model": 410, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5858, + "fields": { + "id_car_model": 410, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5859, + "fields": { + "id_car_model": 410, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5860, + "fields": { + "id_car_model": 410, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5861, + "fields": { + "id_car_model": 410, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5870, + "fields": { + "id_car_model": 420, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5871, + "fields": { + "id_car_model": 420, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5878, + "fields": { + "id_car_model": 427, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5889, + "fields": { + "id_car_model": 438, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5890, + "fields": { + "id_car_model": 439, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5891, + "fields": { + "id_car_model": 439, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5892, + "fields": { + "id_car_model": 439, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5898, + "fields": { + "id_car_model": 445, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5902, + "fields": { + "id_car_model": 449, + "name": "Custom hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5903, + "fields": { + "id_car_model": 450, + "name": "KID crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5904, + "fields": { + "id_car_model": 451, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5905, + "fields": { + "id_car_model": 452, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5906, + "fields": { + "id_car_model": 453, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5907, + "fields": { + "id_car_model": 454, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5908, + "fields": { + "id_car_model": 455, + "name": "Limousine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5909, + "fields": { + "id_car_model": 456, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5910, + "fields": { + "id_car_model": 457, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5911, + "fields": { + "id_car_model": 458, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5912, + "fields": { + "id_car_model": 459, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5913, + "fields": { + "id_car_model": 460, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5918, + "fields": { + "id_car_model": 466, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5919, + "fields": { + "id_car_model": 466, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5920, + "fields": { + "id_car_model": 467, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5922, + "fields": { + "id_car_model": 469, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5936, + "fields": { + "id_car_model": 486, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5938, + "fields": { + "id_car_model": 489, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5939, + "fields": { + "id_car_model": 490, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5940, + "fields": { + "id_car_model": 490, + "name": "Grand minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5941, + "fields": { + "id_car_model": 490, + "name": "Grand minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5942, + "fields": { + "id_car_model": 491, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5943, + "fields": { + "id_car_model": 491, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5945, + "fields": { + "id_car_model": 493, + "name": "Pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5947, + "fields": { + "id_car_model": 493, + "name": "Pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5948, + "fields": { + "id_car_model": 493, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5956, + "fields": { + "id_car_model": 499, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5960, + "fields": { + "id_car_model": 503, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5961, + "fields": { + "id_car_model": 503, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5964, + "fields": { + "id_car_model": 506, + "name": "Pickup Double cabin 1500", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5967, + "fields": { + "id_car_model": 506, + "name": "Quad Cab pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5968, + "fields": { + "id_car_model": 506, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5969, + "fields": { + "id_car_model": 506, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5970, + "fields": { + "id_car_model": 507, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5971, + "fields": { + "id_car_model": 507, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5976, + "fields": { + "id_car_model": 512, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5977, + "fields": { + "id_car_model": 512, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5978, + "fields": { + "id_car_model": 512, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5979, + "fields": { + "id_car_model": 512, + "name": "SRT-10 roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5980, + "fields": { + "id_car_model": 512, + "name": "RT/10 roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5981, + "fields": { + "id_car_model": 512, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5982, + "fields": { + "id_car_model": 512, + "name": "RT/10 roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5983, + "fields": { + "id_car_model": 513, + "name": "Cross hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5984, + "fields": { + "id_car_model": 514, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5985, + "fields": { + "id_car_model": 515, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5986, + "fields": { + "id_car_model": 518, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5987, + "fields": { + "id_car_model": 520, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 5993, + "fields": { + "id_car_model": 526, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6001, + "fields": { + "id_car_model": 534, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6012, + "fields": { + "id_car_model": 550, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6025, + "fields": { + "id_car_model": 574, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6030, + "fields": { + "id_car_model": 579, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6033, + "fields": { + "id_car_model": 582, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6034, + "fields": { + "id_car_model": 583, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6035, + "fields": { + "id_car_model": 584, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6036, + "fields": { + "id_car_model": 585, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6037, + "fields": { + "id_car_model": 586, + "name": "Panorama minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6038, + "fields": { + "id_car_model": 586, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6041, + "fields": { + "id_car_model": 590, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6043, + "fields": { + "id_car_model": 593, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6044, + "fields": { + "id_car_model": 595, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6046, + "fields": { + "id_car_model": 595, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6049, + "fields": { + "id_car_model": 596, + "name": "Evo hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6050, + "fields": { + "id_car_model": 596, + "name": "Grande Punto hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6053, + "fields": { + "id_car_model": 596, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6054, + "fields": { + "id_car_model": 596, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6055, + "fields": { + "id_car_model": 596, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6056, + "fields": { + "id_car_model": 596, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6073, + "fields": { + "id_car_model": 614, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6074, + "fields": { + "id_car_model": 614, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6075, + "fields": { + "id_car_model": 614, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6076, + "fields": { + "id_car_model": 614, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6077, + "fields": { + "id_car_model": 615, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6078, + "fields": { + "id_car_model": 615, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6082, + "fields": { + "id_car_model": 620, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6086, + "fields": { + "id_car_model": 624, + "name": "Hybrid crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6087, + "fields": { + "id_car_model": 624, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6088, + "fields": { + "id_car_model": 625, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6089, + "fields": { + "id_car_model": 625, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6090, + "fields": { + "id_car_model": 625, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6091, + "fields": { + "id_car_model": 625, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6092, + "fields": { + "id_car_model": 626, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6093, + "fields": { + "id_car_model": 626, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6094, + "fields": { + "id_car_model": 626, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6095, + "fields": { + "id_car_model": 626, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6096, + "fields": { + "id_car_model": 626, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6097, + "fields": { + "id_car_model": 626, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6098, + "fields": { + "id_car_model": 626, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6099, + "fields": { + "id_car_model": 626, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6100, + "fields": { + "id_car_model": 626, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6101, + "fields": { + "id_car_model": 626, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6102, + "fields": { + "id_car_model": 626, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6103, + "fields": { + "id_car_model": 626, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6104, + "fields": { + "id_car_model": 626, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6105, + "fields": { + "id_car_model": 626, + "name": "RS cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6106, + "fields": { + "id_car_model": 626, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6107, + "fields": { + "id_car_model": 626, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6108, + "fields": { + "id_car_model": 626, + "name": "RS Turbo hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6109, + "fields": { + "id_car_model": 626, + "name": "wagon 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6110, + "fields": { + "id_car_model": 626, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6111, + "fields": { + "id_car_model": 626, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6112, + "fields": { + "id_car_model": 626, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6115, + "fields": { + "id_car_model": 629, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6116, + "fields": { + "id_car_model": 629, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6117, + "fields": { + "id_car_model": 630, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6118, + "fields": { + "id_car_model": 630, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6119, + "fields": { + "id_car_model": 630, + "name": "Sport SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6120, + "fields": { + "id_car_model": 630, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6121, + "fields": { + "id_car_model": 630, + "name": "Sport SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6122, + "fields": { + "id_car_model": 630, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6123, + "fields": { + "id_car_model": 631, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6124, + "fields": { + "id_car_model": 631, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6125, + "fields": { + "id_car_model": 631, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6126, + "fields": { + "id_car_model": 631, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6127, + "fields": { + "id_car_model": 631, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6128, + "fields": { + "id_car_model": 631, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6129, + "fields": { + "id_car_model": 631, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6130, + "fields": { + "id_car_model": 631, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6131, + "fields": { + "id_car_model": 631, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6134, + "fields": { + "id_car_model": 634, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6135, + "fields": { + "id_car_model": 634, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6136, + "fields": { + "id_car_model": 634, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6137, + "fields": { + "id_car_model": 634, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6138, + "fields": { + "id_car_model": 634, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6139, + "fields": { + "id_car_model": 634, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6140, + "fields": { + "id_car_model": 634, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6141, + "fields": { + "id_car_model": 634, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6142, + "fields": { + "id_car_model": 634, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6143, + "fields": { + "id_car_model": 634, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6145, + "fields": { + "id_car_model": 636, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6146, + "fields": { + "id_car_model": 637, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6147, + "fields": { + "id_car_model": 637, + "name": "ST hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6148, + "fields": { + "id_car_model": 637, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6149, + "fields": { + "id_car_model": 637, + "name": "X Road wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6151, + "fields": { + "id_car_model": 637, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6154, + "fields": { + "id_car_model": 637, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6155, + "fields": { + "id_car_model": 637, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6156, + "fields": { + "id_car_model": 637, + "name": "ST wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6157, + "fields": { + "id_car_model": 637, + "name": "ST hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6158, + "fields": { + "id_car_model": 637, + "name": "ST hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6161, + "fields": { + "id_car_model": 637, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6162, + "fields": { + "id_car_model": 637, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6165, + "fields": { + "id_car_model": 637, + "name": "ST hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6170, + "fields": { + "id_car_model": 637, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6171, + "fields": { + "id_car_model": 637, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6172, + "fields": { + "id_car_model": 637, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6173, + "fields": { + "id_car_model": 637, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6176, + "fields": { + "id_car_model": 640, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6178, + "fields": { + "id_car_model": 642, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6179, + "fields": { + "id_car_model": 642, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6180, + "fields": { + "id_car_model": 642, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6184, + "fields": { + "id_car_model": 644, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6188, + "fields": { + "id_car_model": 652, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6189, + "fields": { + "id_car_model": 652, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6190, + "fields": { + "id_car_model": 652, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6191, + "fields": { + "id_car_model": 652, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6192, + "fields": { + "id_car_model": 652, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6193, + "fields": { + "id_car_model": 652, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6194, + "fields": { + "id_car_model": 652, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6195, + "fields": { + "id_car_model": 652, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6196, + "fields": { + "id_car_model": 652, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6197, + "fields": { + "id_car_model": 652, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6198, + "fields": { + "id_car_model": 652, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6199, + "fields": { + "id_car_model": 652, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6200, + "fields": { + "id_car_model": 653, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6201, + "fields": { + "id_car_model": 653, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6202, + "fields": { + "id_car_model": 653, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6203, + "fields": { + "id_car_model": 653, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6204, + "fields": { + "id_car_model": 653, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6205, + "fields": { + "id_car_model": 653, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6206, + "fields": { + "id_car_model": 653, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6207, + "fields": { + "id_car_model": 653, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6208, + "fields": { + "id_car_model": 653, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6210, + "fields": { + "id_car_model": 19066, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6218, + "fields": { + "id_car_model": 676, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6219, + "fields": { + "id_car_model": 676, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6229, + "fields": { + "id_car_model": 687, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6230, + "fields": { + "id_car_model": 688, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6232, + "fields": { + "id_car_model": 691, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6236, + "fields": { + "id_car_model": 697, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6239, + "fields": { + "id_car_model": 701, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6240, + "fields": { + "id_car_model": 701, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6241, + "fields": { + "id_car_model": 701, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6251, + "fields": { + "id_car_model": 708, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6252, + "fields": { + "id_car_model": 708, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6256, + "fields": { + "id_car_model": 711, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6257, + "fields": { + "id_car_model": 713, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6259, + "fields": { + "id_car_model": 715, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6260, + "fields": { + "id_car_model": 716, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6261, + "fields": { + "id_car_model": 717, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6262, + "fields": { + "id_car_model": 718, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6263, + "fields": { + "id_car_model": 719, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6264, + "fields": { + "id_car_model": 720, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6270, + "fields": { + "id_car_model": 726, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6271, + "fields": { + "id_car_model": 727, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6273, + "fields": { + "id_car_model": 729, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6274, + "fields": { + "id_car_model": 730, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6281, + "fields": { + "id_car_model": 738, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6282, + "fields": { + "id_car_model": 739, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6283, + "fields": { + "id_car_model": 740, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6293, + "fields": { + "id_car_model": 749, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6294, + "fields": { + "id_car_model": 750, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6297, + "fields": { + "id_car_model": 753, + "name": "Tourer wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6298, + "fields": { + "id_car_model": 753, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6299, + "fields": { + "id_car_model": 753, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6300, + "fields": { + "id_car_model": 753, + "name": "Tourer wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6301, + "fields": { + "id_car_model": 753, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6302, + "fields": { + "id_car_model": 753, + "name": "US-spec Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6303, + "fields": { + "id_car_model": 753, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6304, + "fields": { + "id_car_model": 753, + "name": "JP-spec wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6305, + "fields": { + "id_car_model": 753, + "name": "JP-spec Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6306, + "fields": { + "id_car_model": 753, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6307, + "fields": { + "id_car_model": 753, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6308, + "fields": { + "id_car_model": 753, + "name": "JP-spec Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6309, + "fields": { + "id_car_model": 753, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6310, + "fields": { + "id_car_model": 753, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6311, + "fields": { + "id_car_model": 753, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6312, + "fields": { + "id_car_model": 753, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6313, + "fields": { + "id_car_model": 753, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6314, + "fields": { + "id_car_model": 753, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6315, + "fields": { + "id_car_model": 753, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6316, + "fields": { + "id_car_model": 753, + "name": "US-spec hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6317, + "fields": { + "id_car_model": 753, + "name": "US-spec hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6318, + "fields": { + "id_car_model": 753, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6322, + "fields": { + "id_car_model": 757, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6325, + "fields": { + "id_car_model": 760, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6326, + "fields": { + "id_car_model": 760, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6327, + "fields": { + "id_car_model": 761, + "name": "Hybrid Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6328, + "fields": { + "id_car_model": 761, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6329, + "fields": { + "id_car_model": 761, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6330, + "fields": { + "id_car_model": 761, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6331, + "fields": { + "id_car_model": 761, + "name": "Si Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6332, + "fields": { + "id_car_model": 761, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6333, + "fields": { + "id_car_model": 761, + "name": "Si Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6334, + "fields": { + "id_car_model": 761, + "name": "Hybrid Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6335, + "fields": { + "id_car_model": 761, + "name": "Si Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6336, + "fields": { + "id_car_model": 761, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6337, + "fields": { + "id_car_model": 761, + "name": "Type-R hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6338, + "fields": { + "id_car_model": 761, + "name": "Type-R hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6339, + "fields": { + "id_car_model": 761, + "name": "Type-R hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6340, + "fields": { + "id_car_model": 761, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6341, + "fields": { + "id_car_model": 761, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6342, + "fields": { + "id_car_model": 761, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6344, + "fields": { + "id_car_model": 761, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6345, + "fields": { + "id_car_model": 761, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6346, + "fields": { + "id_car_model": 761, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6347, + "fields": { + "id_car_model": 761, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6348, + "fields": { + "id_car_model": 761, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6349, + "fields": { + "id_car_model": 761, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6350, + "fields": { + "id_car_model": 761, + "name": "Shuttle wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6351, + "fields": { + "id_car_model": 761, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6352, + "fields": { + "id_car_model": 761, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6353, + "fields": { + "id_car_model": 761, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6354, + "fields": { + "id_car_model": 761, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6355, + "fields": { + "id_car_model": 761, + "name": "Country wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6356, + "fields": { + "id_car_model": 761, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6357, + "fields": { + "id_car_model": 761, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6358, + "fields": { + "id_car_model": 763, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6359, + "fields": { + "id_car_model": 763, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6360, + "fields": { + "id_car_model": 763, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6361, + "fields": { + "id_car_model": 764, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6362, + "fields": { + "id_car_model": 764, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6365, + "fields": { + "id_car_model": 767, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6366, + "fields": { + "id_car_model": 768, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6368, + "fields": { + "id_car_model": 770, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6372, + "fields": { + "id_car_model": 774, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6375, + "fields": { + "id_car_model": 778, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6377, + "fields": { + "id_car_model": 780, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6378, + "fields": { + "id_car_model": 780, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6379, + "fields": { + "id_car_model": 780, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6380, + "fields": { + "id_car_model": 780, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6381, + "fields": { + "id_car_model": 780, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6383, + "fields": { + "id_car_model": 782, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6384, + "fields": { + "id_car_model": 783, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6386, + "fields": { + "id_car_model": 783, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6387, + "fields": { + "id_car_model": 783, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6388, + "fields": { + "id_car_model": 783, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6389, + "fields": { + "id_car_model": 784, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6390, + "fields": { + "id_car_model": 784, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6394, + "fields": { + "id_car_model": 789, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6395, + "fields": { + "id_car_model": 789, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6396, + "fields": { + "id_car_model": 789, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6399, + "fields": { + "id_car_model": 792, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6400, + "fields": { + "id_car_model": 793, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6402, + "fields": { + "id_car_model": 795, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6403, + "fields": { + "id_car_model": 795, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6404, + "fields": { + "id_car_model": 795, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6405, + "fields": { + "id_car_model": 795, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6411, + "fields": { + "id_car_model": 801, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6413, + "fields": { + "id_car_model": 803, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6414, + "fields": { + "id_car_model": 803, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6415, + "fields": { + "id_car_model": 803, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6421, + "fields": { + "id_car_model": 809, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6429, + "fields": { + "id_car_model": 818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6430, + "fields": { + "id_car_model": 818, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6431, + "fields": { + "id_car_model": 818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6432, + "fields": { + "id_car_model": 818, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6433, + "fields": { + "id_car_model": 818, + "name": "Liftback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6434, + "fields": { + "id_car_model": 818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6435, + "fields": { + "id_car_model": 818, + "name": "Liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6436, + "fields": { + "id_car_model": 818, + "name": "Liftback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6438, + "fields": { + "id_car_model": 820, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6440, + "fields": { + "id_car_model": 820, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6442, + "fields": { + "id_car_model": 822, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6443, + "fields": { + "id_car_model": 822, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6445, + "fields": { + "id_car_model": 824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6446, + "fields": { + "id_car_model": 824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6447, + "fields": { + "id_car_model": 824, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6448, + "fields": { + "id_car_model": 824, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6449, + "fields": { + "id_car_model": 824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6450, + "fields": { + "id_car_model": 824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6452, + "fields": { + "id_car_model": 828, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6455, + "fields": { + "id_car_model": 832, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6456, + "fields": { + "id_car_model": 834, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6457, + "fields": { + "id_car_model": 834, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6468, + "fields": { + "id_car_model": 845, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6469, + "fields": { + "id_car_model": 845, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6473, + "fields": { + "id_car_model": 849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6474, + "fields": { + "id_car_model": 849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6475, + "fields": { + "id_car_model": 849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6476, + "fields": { + "id_car_model": 849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6477, + "fields": { + "id_car_model": 849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6478, + "fields": { + "id_car_model": 849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6479, + "fields": { + "id_car_model": 850, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6488, + "fields": { + "id_car_model": 859, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6489, + "fields": { + "id_car_model": 859, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6490, + "fields": { + "id_car_model": 860, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6493, + "fields": { + "id_car_model": 863, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6494, + "fields": { + "id_car_model": 863, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6495, + "fields": { + "id_car_model": 863, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6496, + "fields": { + "id_car_model": 863, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6497, + "fields": { + "id_car_model": 864, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6500, + "fields": { + "id_car_model": 867, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6501, + "fields": { + "id_car_model": 867, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6502, + "fields": { + "id_car_model": 867, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6503, + "fields": { + "id_car_model": 867, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6504, + "fields": { + "id_car_model": 868, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6505, + "fields": { + "id_car_model": 868, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6508, + "fields": { + "id_car_model": 19747, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6516, + "fields": { + "id_car_model": 880, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6522, + "fields": { + "id_car_model": 886, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6523, + "fields": { + "id_car_model": 887, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6524, + "fields": { + "id_car_model": 888, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6525, + "fields": { + "id_car_model": 888, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6527, + "fields": { + "id_car_model": 889, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6528, + "fields": { + "id_car_model": 890, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6529, + "fields": { + "id_car_model": 890, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6530, + "fields": { + "id_car_model": 890, + "name": "SUV opened SWB", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6531, + "fields": { + "id_car_model": 890, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6533, + "fields": { + "id_car_model": 891, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6534, + "fields": { + "id_car_model": 891, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6535, + "fields": { + "id_car_model": 891, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6536, + "fields": { + "id_car_model": 891, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6537, + "fields": { + "id_car_model": 891, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6538, + "fields": { + "id_car_model": 892, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6539, + "fields": { + "id_car_model": 892, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6540, + "fields": { + "id_car_model": 892, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6541, + "fields": { + "id_car_model": 892, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6542, + "fields": { + "id_car_model": 892, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6543, + "fields": { + "id_car_model": 892, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6544, + "fields": { + "id_car_model": 892, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6545, + "fields": { + "id_car_model": 892, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6550, + "fields": { + "id_car_model": 897, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6551, + "fields": { + "id_car_model": 898, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6555, + "fields": { + "id_car_model": 903, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6563, + "fields": { + "id_car_model": 911, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6573, + "fields": { + "id_car_model": 921, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6574, + "fields": { + "id_car_model": 921, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6575, + "fields": { + "id_car_model": 921, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6576, + "fields": { + "id_car_model": 922, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6577, + "fields": { + "id_car_model": 922, + "name": "Cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6578, + "fields": { + "id_car_model": 923, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6579, + "fields": { + "id_car_model": 923, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6580, + "fields": { + "id_car_model": 923, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6581, + "fields": { + "id_car_model": 923, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6585, + "fields": { + "id_car_model": 927, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6586, + "fields": { + "id_car_model": 927, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6587, + "fields": { + "id_car_model": 927, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6588, + "fields": { + "id_car_model": 927, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6590, + "fields": { + "id_car_model": 929, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6598, + "fields": { + "id_car_model": 938, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6599, + "fields": { + "id_car_model": 938, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6602, + "fields": { + "id_car_model": 941, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6611, + "fields": { + "id_car_model": 950, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6617, + "fields": { + "id_car_model": 957, + "name": "SWB minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6620, + "fields": { + "id_car_model": 960, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6621, + "fields": { + "id_car_model": 960, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6623, + "fields": { + "id_car_model": 961, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6625, + "fields": { + "id_car_model": 963, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6626, + "fields": { + "id_car_model": 963, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6627, + "fields": { + "id_car_model": 963, + "name": "Grand SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6628, + "fields": { + "id_car_model": 963, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6633, + "fields": { + "id_car_model": 968, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6634, + "fields": { + "id_car_model": 969, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6635, + "fields": { + "id_car_model": 970, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6648, + "fields": { + "id_car_model": 985, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6652, + "fields": { + "id_car_model": 990, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6653, + "fields": { + "id_car_model": 990, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6654, + "fields": { + "id_car_model": 990, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6655, + "fields": { + "id_car_model": 991, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6657, + "fields": { + "id_car_model": 993, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6659, + "fields": { + "id_car_model": 997, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6660, + "fields": { + "id_car_model": 998, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6662, + "fields": { + "id_car_model": 1000, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6663, + "fields": { + "id_car_model": 1000, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6667, + "fields": { + "id_car_model": 1004, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6668, + "fields": { + "id_car_model": 1004, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6672, + "fields": { + "id_car_model": 1010, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6673, + "fields": { + "id_car_model": 1010, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6674, + "fields": { + "id_car_model": 1010, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6675, + "fields": { + "id_car_model": 1011, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6676, + "fields": { + "id_car_model": 1011, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6683, + "fields": { + "id_car_model": 1018, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6686, + "fields": { + "id_car_model": 1021, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6687, + "fields": { + "id_car_model": 1021, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6688, + "fields": { + "id_car_model": 1021, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6689, + "fields": { + "id_car_model": 1022, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6690, + "fields": { + "id_car_model": 1022, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6691, + "fields": { + "id_car_model": 1023, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6693, + "fields": { + "id_car_model": 1024, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6694, + "fields": { + "id_car_model": 1024, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6695, + "fields": { + "id_car_model": 1024, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6714, + "fields": { + "id_car_model": 1044, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6717, + "fields": { + "id_car_model": 1047, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6718, + "fields": { + "id_car_model": 1048, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6719, + "fields": { + "id_car_model": 1048, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6720, + "fields": { + "id_car_model": 1049, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6721, + "fields": { + "id_car_model": 1049, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6722, + "fields": { + "id_car_model": 1049, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6723, + "fields": { + "id_car_model": 1050, + "name": "Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6728, + "fields": { + "id_car_model": 1055, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6729, + "fields": { + "id_car_model": 1055, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6730, + "fields": { + "id_car_model": 1055, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6731, + "fields": { + "id_car_model": 1055, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6736, + "fields": { + "id_car_model": 1060, + "name": "S Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6737, + "fields": { + "id_car_model": 1060, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6738, + "fields": { + "id_car_model": 1061, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6739, + "fields": { + "id_car_model": 1062, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6741, + "fields": { + "id_car_model": 1064, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6742, + "fields": { + "id_car_model": 22482, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6743, + "fields": { + "id_car_model": 1066, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6744, + "fields": { + "id_car_model": 1067, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6745, + "fields": { + "id_car_model": 1068, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6747, + "fields": { + "id_car_model": 1070, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6752, + "fields": { + "id_car_model": 1076, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6753, + "fields": { + "id_car_model": 1077, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6754, + "fields": { + "id_car_model": 1078, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6755, + "fields": { + "id_car_model": 1079, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6764, + "fields": { + "id_car_model": 1089, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6765, + "fields": { + "id_car_model": 1090, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6771, + "fields": { + "id_car_model": 1097, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6772, + "fields": { + "id_car_model": 1098, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6774, + "fields": { + "id_car_model": 1100, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6779, + "fields": { + "id_car_model": 1106, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6789, + "fields": { + "id_car_model": 1116, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6791, + "fields": { + "id_car_model": 1119, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6792, + "fields": { + "id_car_model": 1120, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6794, + "fields": { + "id_car_model": 1122, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6796, + "fields": { + "id_car_model": 1124, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6797, + "fields": { + "id_car_model": 1124, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6798, + "fields": { + "id_car_model": 1124, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6799, + "fields": { + "id_car_model": 1124, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6800, + "fields": { + "id_car_model": 1125, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6801, + "fields": { + "id_car_model": 1125, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6802, + "fields": { + "id_car_model": 1125, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6803, + "fields": { + "id_car_model": 1125, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6804, + "fields": { + "id_car_model": 1125, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6805, + "fields": { + "id_car_model": 1125, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6806, + "fields": { + "id_car_model": 1125, + "name": "GT hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6807, + "fields": { + "id_car_model": 1125, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6808, + "fields": { + "id_car_model": 1125, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6809, + "fields": { + "id_car_model": 1125, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6810, + "fields": { + "id_car_model": 1125, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6811, + "fields": { + "id_car_model": 1125, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6812, + "fields": { + "id_car_model": 1125, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6813, + "fields": { + "id_car_model": 1125, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6814, + "fields": { + "id_car_model": 1125, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6815, + "fields": { + "id_car_model": 1126, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6817, + "fields": { + "id_car_model": 1128, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6818, + "fields": { + "id_car_model": 1129, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6819, + "fields": { + "id_car_model": 1129, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6820, + "fields": { + "id_car_model": 1129, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6821, + "fields": { + "id_car_model": 1129, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6822, + "fields": { + "id_car_model": 1129, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6823, + "fields": { + "id_car_model": 1129, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6824, + "fields": { + "id_car_model": 1129, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6825, + "fields": { + "id_car_model": 1129, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6826, + "fields": { + "id_car_model": 1129, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6827, + "fields": { + "id_car_model": 1129, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6829, + "fields": { + "id_car_model": 1131, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6830, + "fields": { + "id_car_model": 1131, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6831, + "fields": { + "id_car_model": 1131, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6832, + "fields": { + "id_car_model": 1131, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6834, + "fields": { + "id_car_model": 1133, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6835, + "fields": { + "id_car_model": 1133, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6836, + "fields": { + "id_car_model": 1133, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6837, + "fields": { + "id_car_model": 1133, + "name": "Mazdaspeed hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6841, + "fields": { + "id_car_model": 1137, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6844, + "fields": { + "id_car_model": 1140, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6846, + "fields": { + "id_car_model": 1142, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6847, + "fields": { + "id_car_model": 1142, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6848, + "fields": { + "id_car_model": 1142, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6849, + "fields": { + "id_car_model": 1142, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6850, + "fields": { + "id_car_model": 1142, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6855, + "fields": { + "id_car_model": 1147, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6856, + "fields": { + "id_car_model": 1148, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6857, + "fields": { + "id_car_model": 1148, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6866, + "fields": { + "id_car_model": 1157, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6867, + "fields": { + "id_car_model": 1158, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6872, + "fields": { + "id_car_model": 1163, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6873, + "fields": { + "id_car_model": 1163, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6874, + "fields": { + "id_car_model": 1163, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6878, + "fields": { + "id_car_model": 1167, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6879, + "fields": { + "id_car_model": 1167, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6880, + "fields": { + "id_car_model": 1168, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6881, + "fields": { + "id_car_model": 1168, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6883, + "fields": { + "id_car_model": 1170, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6884, + "fields": { + "id_car_model": 1170, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6887, + "fields": { + "id_car_model": 1172, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6895, + "fields": { + "id_car_model": 1180, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6902, + "fields": { + "id_car_model": 20342, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6903, + "fields": { + "id_car_model": 20342, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6904, + "fields": { + "id_car_model": 20342, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6906, + "fields": { + "id_car_model": 20349, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6907, + "fields": { + "id_car_model": 20349, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6908, + "fields": { + "id_car_model": 20349, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6909, + "fields": { + "id_car_model": 20349, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6910, + "fields": { + "id_car_model": 20349, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6912, + "fields": { + "id_car_model": 20349, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6913, + "fields": { + "id_car_model": 20349, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6914, + "fields": { + "id_car_model": 20349, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6915, + "fields": { + "id_car_model": 20349, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6918, + "fields": { + "id_car_model": 20344, + "name": "wagon 5-doors Shooting Brake", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6919, + "fields": { + "id_car_model": 20345, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6920, + "fields": { + "id_car_model": 20346, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6921, + "fields": { + "id_car_model": 20346, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6924, + "fields": { + "id_car_model": 20355, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6926, + "fields": { + "id_car_model": 20355, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6927, + "fields": { + "id_car_model": 20355, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6929, + "fields": { + "id_car_model": 20355, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6930, + "fields": { + "id_car_model": 20355, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6931, + "fields": { + "id_car_model": 20355, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6933, + "fields": { + "id_car_model": 20354, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6934, + "fields": { + "id_car_model": 20351, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6935, + "fields": { + "id_car_model": 20352, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6936, + "fields": { + "id_car_model": 20357, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6937, + "fields": { + "id_car_model": 20357, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6941, + "fields": { + "id_car_model": 20362, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6942, + "fields": { + "id_car_model": 20362, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6943, + "fields": { + "id_car_model": 20362, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6944, + "fields": { + "id_car_model": 20362, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6945, + "fields": { + "id_car_model": 20360, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6946, + "fields": { + "id_car_model": 20360, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6949, + "fields": { + "id_car_model": 1210, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6953, + "fields": { + "id_car_model": 1216, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6954, + "fields": { + "id_car_model": 1216, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6955, + "fields": { + "id_car_model": 1216, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6956, + "fields": { + "id_car_model": 1216, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6957, + "fields": { + "id_car_model": 1216, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6958, + "fields": { + "id_car_model": 1216, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6959, + "fields": { + "id_car_model": 1216, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6960, + "fields": { + "id_car_model": 1216, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6963, + "fields": { + "id_car_model": 1219, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6967, + "fields": { + "id_car_model": 1224, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6968, + "fields": { + "id_car_model": 1224, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6970, + "fields": { + "id_car_model": 1226, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6971, + "fields": { + "id_car_model": 1226, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6973, + "fields": { + "id_car_model": 1226, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6974, + "fields": { + "id_car_model": 1226, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6975, + "fields": { + "id_car_model": 1226, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6976, + "fields": { + "id_car_model": 1226, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6977, + "fields": { + "id_car_model": 1226, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6978, + "fields": { + "id_car_model": 1227, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6981, + "fields": { + "id_car_model": 1229, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6996, + "fields": { + "id_car_model": 1245, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6998, + "fields": { + "id_car_model": 1249, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 6999, + "fields": { + "id_car_model": 1250, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7004, + "fields": { + "id_car_model": 1255, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7005, + "fields": { + "id_car_model": 1256, + "name": "Cooper S wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7007, + "fields": { + "id_car_model": 1258, + "name": "John Cooper Works crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7010, + "fields": { + "id_car_model": 1261, + "name": "John Cooper Works hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7011, + "fields": { + "id_car_model": 1262, + "name": "Cooper S roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7012, + "fields": { + "id_car_model": 1264, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7015, + "fields": { + "id_car_model": 1268, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7017, + "fields": { + "id_car_model": 1270, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7018, + "fields": { + "id_car_model": 1271, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7019, + "fields": { + "id_car_model": 1271, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7020, + "fields": { + "id_car_model": 1271, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7021, + "fields": { + "id_car_model": 1271, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7022, + "fields": { + "id_car_model": 1271, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7023, + "fields": { + "id_car_model": 1271, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7027, + "fields": { + "id_car_model": 1275, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7029, + "fields": { + "id_car_model": 1277, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7031, + "fields": { + "id_car_model": 1279, + "name": "eK", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7034, + "fields": { + "id_car_model": 1282, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7035, + "fields": { + "id_car_model": 1282, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7045, + "fields": { + "id_car_model": 1292, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7046, + "fields": { + "id_car_model": 1292, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7047, + "fields": { + "id_car_model": 1292, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7048, + "fields": { + "id_car_model": 1292, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7049, + "fields": { + "id_car_model": 1292, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7050, + "fields": { + "id_car_model": 1292, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7051, + "fields": { + "id_car_model": 1292, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7052, + "fields": { + "id_car_model": 1292, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7053, + "fields": { + "id_car_model": 1292, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7054, + "fields": { + "id_car_model": 1293, + "name": "Mitsubishi Lancer X Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7055, + "fields": { + "id_car_model": 1293, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7057, + "fields": { + "id_car_model": 1293, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7058, + "fields": { + "id_car_model": 1293, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7059, + "fields": { + "id_car_model": 1293, + "name": "Cedia Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7061, + "fields": { + "id_car_model": 1293, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7063, + "fields": { + "id_car_model": 1293, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7064, + "fields": { + "id_car_model": 1293, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7065, + "fields": { + "id_car_model": 1293, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7066, + "fields": { + "id_car_model": 1293, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7067, + "fields": { + "id_car_model": 1293, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7068, + "fields": { + "id_car_model": 1293, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7069, + "fields": { + "id_car_model": 1293, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7073, + "fields": { + "id_car_model": 1297, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7074, + "fields": { + "id_car_model": 1297, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7075, + "fields": { + "id_car_model": 1297, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7076, + "fields": { + "id_car_model": 1297, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7077, + "fields": { + "id_car_model": 1297, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7078, + "fields": { + "id_car_model": 1298, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7079, + "fields": { + "id_car_model": 1298, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7080, + "fields": { + "id_car_model": 1298, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7081, + "fields": { + "id_car_model": 1298, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7082, + "fields": { + "id_car_model": 1298, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7083, + "fields": { + "id_car_model": 1298, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7084, + "fields": { + "id_car_model": 1299, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7086, + "fields": { + "id_car_model": 1301, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7087, + "fields": { + "id_car_model": 1301, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7088, + "fields": { + "id_car_model": 1301, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7089, + "fields": { + "id_car_model": 1301, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7090, + "fields": { + "id_car_model": 1301, + "name": "Wagon High Roof SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7091, + "fields": { + "id_car_model": 1301, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7093, + "fields": { + "id_car_model": 1304, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7099, + "fields": { + "id_car_model": 1311, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7101, + "fields": { + "id_car_model": 1314, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7105, + "fields": { + "id_car_model": 1318, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7109, + "fields": { + "id_car_model": 1322, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7110, + "fields": { + "id_car_model": 1322, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7112, + "fields": { + "id_car_model": 1324, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7117, + "fields": { + "id_car_model": 1329, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7118, + "fields": { + "id_car_model": 1330, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7120, + "fields": { + "id_car_model": 1332, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7121, + "fields": { + "id_car_model": 1332, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7127, + "fields": { + "id_car_model": 1338, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7128, + "fields": { + "id_car_model": 1339, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7132, + "fields": { + "id_car_model": 1343, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7137, + "fields": { + "id_car_model": 1348, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7143, + "fields": { + "id_car_model": 1354, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7145, + "fields": { + "id_car_model": 1356, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7146, + "fields": { + "id_car_model": 1356, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7147, + "fields": { + "id_car_model": 1356, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7148, + "fields": { + "id_car_model": 1356, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7149, + "fields": { + "id_car_model": 1356, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7150, + "fields": { + "id_car_model": 1356, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7152, + "fields": { + "id_car_model": 1358, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7153, + "fields": { + "id_car_model": 1358, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7154, + "fields": { + "id_car_model": 1358, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7155, + "fields": { + "id_car_model": 1358, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7156, + "fields": { + "id_car_model": 1358, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7158, + "fields": { + "id_car_model": 1360, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7162, + "fields": { + "id_car_model": 1364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7163, + "fields": { + "id_car_model": 1364, + "name": "Aussie hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7164, + "fields": { + "id_car_model": 1364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7165, + "fields": { + "id_car_model": 1364, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7166, + "fields": { + "id_car_model": 1364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7167, + "fields": { + "id_car_model": 1364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7168, + "fields": { + "id_car_model": 1364, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7169, + "fields": { + "id_car_model": 1364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7170, + "fields": { + "id_car_model": 1364, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7171, + "fields": { + "id_car_model": 1364, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7172, + "fields": { + "id_car_model": 1364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7173, + "fields": { + "id_car_model": 1365, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7174, + "fields": { + "id_car_model": 1365, + "name": "Gran Tourismo Hardtop 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7175, + "fields": { + "id_car_model": 1365, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7176, + "fields": { + "id_car_model": 1365, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7177, + "fields": { + "id_car_model": 1365, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7178, + "fields": { + "id_car_model": 1365, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7180, + "fields": { + "id_car_model": 1367, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7182, + "fields": { + "id_car_model": 1367, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7183, + "fields": { + "id_car_model": 1367, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7184, + "fields": { + "id_car_model": 1367, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7185, + "fields": { + "id_car_model": 1367, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7186, + "fields": { + "id_car_model": 1367, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7187, + "fields": { + "id_car_model": 1367, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7191, + "fields": { + "id_car_model": 1371, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7192, + "fields": { + "id_car_model": 1371, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7195, + "fields": { + "id_car_model": 1374, + "name": "NE51 Rider minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7196, + "fields": { + "id_car_model": 1374, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7200, + "fields": { + "id_car_model": 1378, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7205, + "fields": { + "id_car_model": 1383, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7212, + "fields": { + "id_car_model": 1390, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7213, + "fields": { + "id_car_model": 1390, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7214, + "fields": { + "id_car_model": 1390, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7215, + "fields": { + "id_car_model": 1390, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7216, + "fields": { + "id_car_model": 1390, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7217, + "fields": { + "id_car_model": 1390, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7218, + "fields": { + "id_car_model": 1391, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7219, + "fields": { + "id_car_model": 1391, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7221, + "fields": { + "id_car_model": 1391, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7222, + "fields": { + "id_car_model": 1391, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7223, + "fields": { + "id_car_model": 1391, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7224, + "fields": { + "id_car_model": 1392, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7225, + "fields": { + "id_car_model": 1392, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7226, + "fields": { + "id_car_model": 1392, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7227, + "fields": { + "id_car_model": 1392, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7228, + "fields": { + "id_car_model": 1392, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7229, + "fields": { + "id_car_model": 1392, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7230, + "fields": { + "id_car_model": 1392, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7233, + "fields": { + "id_car_model": 1395, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7234, + "fields": { + "id_car_model": 1396, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7235, + "fields": { + "id_car_model": 1396, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7236, + "fields": { + "id_car_model": 1396, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7237, + "fields": { + "id_car_model": 1396, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7238, + "fields": { + "id_car_model": 1396, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7239, + "fields": { + "id_car_model": 1397, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7240, + "fields": { + "id_car_model": 1397, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7241, + "fields": { + "id_car_model": 1399, + "name": "Compact Cargo van 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7245, + "fields": { + "id_car_model": 1403, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7246, + "fields": { + "id_car_model": 1403, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7247, + "fields": { + "id_car_model": 1403, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7248, + "fields": { + "id_car_model": 1403, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7249, + "fields": { + "id_car_model": 1404, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7250, + "fields": { + "id_car_model": 1404, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7251, + "fields": { + "id_car_model": 1404, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7252, + "fields": { + "id_car_model": 1404, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7253, + "fields": { + "id_car_model": 1404, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7254, + "fields": { + "id_car_model": 1404, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7259, + "fields": { + "id_car_model": 1410, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7260, + "fields": { + "id_car_model": 1411, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7261, + "fields": { + "id_car_model": 1411, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7266, + "fields": { + "id_car_model": 1418, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7267, + "fields": { + "id_car_model": 1418, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7268, + "fields": { + "id_car_model": 1418, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7269, + "fields": { + "id_car_model": 1418, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7273, + "fields": { + "id_car_model": 1423, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7276, + "fields": { + "id_car_model": 1426, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7277, + "fields": { + "id_car_model": 1426, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7278, + "fields": { + "id_car_model": 1426, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7279, + "fields": { + "id_car_model": 1426, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7281, + "fields": { + "id_car_model": 1427, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7282, + "fields": { + "id_car_model": 1427, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7283, + "fields": { + "id_car_model": 1427, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7284, + "fields": { + "id_car_model": 1427, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7285, + "fields": { + "id_car_model": 1427, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7286, + "fields": { + "id_car_model": 1427, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7287, + "fields": { + "id_car_model": 1427, + "name": "OPC hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7288, + "fields": { + "id_car_model": 1427, + "name": "GTC hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7289, + "fields": { + "id_car_model": 1427, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7290, + "fields": { + "id_car_model": 1427, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7291, + "fields": { + "id_car_model": 1427, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7292, + "fields": { + "id_car_model": 1427, + "name": "Cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7293, + "fields": { + "id_car_model": 1427, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7294, + "fields": { + "id_car_model": 1427, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7296, + "fields": { + "id_car_model": 1427, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7297, + "fields": { + "id_car_model": 1427, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7298, + "fields": { + "id_car_model": 1427, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7299, + "fields": { + "id_car_model": 1427, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7300, + "fields": { + "id_car_model": 1427, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7301, + "fields": { + "id_car_model": 1427, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7304, + "fields": { + "id_car_model": 1431, + "name": "Tour minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7305, + "fields": { + "id_car_model": 1431, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7306, + "fields": { + "id_car_model": 1432, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7307, + "fields": { + "id_car_model": 1432, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7309, + "fields": { + "id_car_model": 1435, + "name": "Sport SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7310, + "fields": { + "id_car_model": 1435, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7312, + "fields": { + "id_car_model": 1437, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7313, + "fields": { + "id_car_model": 1437, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7314, + "fields": { + "id_car_model": 1437, + "name": "Country Tourer wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7316, + "fields": { + "id_car_model": 1439, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7317, + "fields": { + "id_car_model": 1440, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7318, + "fields": { + "id_car_model": 1440, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7320, + "fields": { + "id_car_model": 1442, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7321, + "fields": { + "id_car_model": 1442, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7323, + "fields": { + "id_car_model": 1444, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7324, + "fields": { + "id_car_model": 1444, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7325, + "fields": { + "id_car_model": 1445, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7326, + "fields": { + "id_car_model": 1445, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7327, + "fields": { + "id_car_model": 1445, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7328, + "fields": { + "id_car_model": 1446, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7332, + "fields": { + "id_car_model": 1450, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7346, + "fields": { + "id_car_model": 1466, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7347, + "fields": { + "id_car_model": 1467, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7348, + "fields": { + "id_car_model": 1469, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7349, + "fields": { + "id_car_model": 1469, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7357, + "fields": { + "id_car_model": 1483, + "name": "CC cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7358, + "fields": { + "id_car_model": 1483, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7361, + "fields": { + "id_car_model": 1483, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7362, + "fields": { + "id_car_model": 1483, + "name": "GTi hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7363, + "fields": { + "id_car_model": 1483, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7380, + "fields": { + "id_car_model": 1502, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7386, + "fields": { + "id_car_model": 1509, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7390, + "fields": { + "id_car_model": 1515, + "name": "SE Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7391, + "fields": { + "id_car_model": 1515, + "name": "SSEi Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7397, + "fields": { + "id_car_model": 1522, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7398, + "fields": { + "id_car_model": 1522, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7399, + "fields": { + "id_car_model": 1522, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7400, + "fields": { + "id_car_model": 1522, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7401, + "fields": { + "id_car_model": 1523, + "name": "SE Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7402, + "fields": { + "id_car_model": 1523, + "name": "GT/GTP Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7403, + "fields": { + "id_car_model": 1523, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7404, + "fields": { + "id_car_model": 1523, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7407, + "fields": { + "id_car_model": 1526, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7410, + "fields": { + "id_car_model": 1530, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7411, + "fields": { + "id_car_model": 1530, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7412, + "fields": { + "id_car_model": 1530, + "name": "wagon 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7416, + "fields": { + "id_car_model": 1534, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7417, + "fields": { + "id_car_model": 1535, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7418, + "fields": { + "id_car_model": 1535, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7425, + "fields": { + "id_car_model": 1544, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7426, + "fields": { + "id_car_model": 1544, + "name": "Roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7428, + "fields": { + "id_car_model": 1546, + "name": "Turbo/Turbo S/GTS crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7429, + "fields": { + "id_car_model": 1546, + "name": "Turbo/Turbo S crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7443, + "fields": { + "id_car_model": 1561, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7445, + "fields": { + "id_car_model": 1563, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7446, + "fields": { + "id_car_model": 1563, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7447, + "fields": { + "id_car_model": 1563, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7448, + "fields": { + "id_car_model": 1563, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7449, + "fields": { + "id_car_model": 1563, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7450, + "fields": { + "id_car_model": 1563, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7462, + "fields": { + "id_car_model": 1577, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7463, + "fields": { + "id_car_model": 1577, + "name": "Chamade Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7464, + "fields": { + "id_car_model": 1577, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7465, + "fields": { + "id_car_model": 1577, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7466, + "fields": { + "id_car_model": 1577, + "name": "Chamade Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7468, + "fields": { + "id_car_model": 1577, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7474, + "fields": { + "id_car_model": 1583, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7475, + "fields": { + "id_car_model": 1583, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7479, + "fields": { + "id_car_model": 1587, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7484, + "fields": { + "id_car_model": 1592, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7486, + "fields": { + "id_car_model": 1594, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7488, + "fields": { + "id_car_model": 1594, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7489, + "fields": { + "id_car_model": 1595, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7490, + "fields": { + "id_car_model": 1595, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7491, + "fields": { + "id_car_model": 1596, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7492, + "fields": { + "id_car_model": 1596, + "name": "Grandtour wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7493, + "fields": { + "id_car_model": 1596, + "name": "Grandtour wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7494, + "fields": { + "id_car_model": 1596, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7497, + "fields": { + "id_car_model": 1599, + "name": "GT wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7498, + "fields": { + "id_car_model": 1599, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7500, + "fields": { + "id_car_model": 1599, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7501, + "fields": { + "id_car_model": 1599, + "name": "RS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7502, + "fields": { + "id_car_model": 1599, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7503, + "fields": { + "id_car_model": 1599, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7505, + "fields": { + "id_car_model": 1599, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7506, + "fields": { + "id_car_model": 1599, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7508, + "fields": { + "id_car_model": 1599, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7509, + "fields": { + "id_car_model": 1599, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7514, + "fields": { + "id_car_model": 1604, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7515, + "fields": { + "id_car_model": 1604, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7516, + "fields": { + "id_car_model": 1604, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7518, + "fields": { + "id_car_model": 1606, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7525, + "fields": { + "id_car_model": 1612, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7531, + "fields": { + "id_car_model": 1619, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7532, + "fields": { + "id_car_model": 1620, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7533, + "fields": { + "id_car_model": 1620, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7534, + "fields": { + "id_car_model": 1620, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7539, + "fields": { + "id_car_model": 1624, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7554, + "fields": { + "id_car_model": 1638, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7572, + "fields": { + "id_car_model": 1657, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7577, + "fields": { + "id_car_model": 1662, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7579, + "fields": { + "id_car_model": 1664, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7580, + "fields": { + "id_car_model": 1664, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7587, + "fields": { + "id_car_model": 1673, + "name": "SEAT Ibiza IV wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7589, + "fields": { + "id_car_model": 1673, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7590, + "fields": { + "id_car_model": 1673, + "name": "SC Cupra hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7591, + "fields": { + "id_car_model": 1673, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7592, + "fields": { + "id_car_model": 1673, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7593, + "fields": { + "id_car_model": 1673, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7594, + "fields": { + "id_car_model": 1673, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7596, + "fields": { + "id_car_model": 1673, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7608, + "fields": { + "id_car_model": 1685, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7609, + "fields": { + "id_car_model": 1685, + "name": "Combi wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7610, + "fields": { + "id_car_model": 1685, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7611, + "fields": { + "id_car_model": 1686, + "name": "Combi Scout wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7612, + "fields": { + "id_car_model": 1686, + "name": "RS liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7613, + "fields": { + "id_car_model": 1686, + "name": "Combi wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7614, + "fields": { + "id_car_model": 1686, + "name": "Liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7615, + "fields": { + "id_car_model": 1686, + "name": "Combi wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7616, + "fields": { + "id_car_model": 1686, + "name": "Combi Scout wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7620, + "fields": { + "id_car_model": 1690, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7623, + "fields": { + "id_car_model": 1692, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7631, + "fields": { + "id_car_model": 1700, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7637, + "fields": { + "id_car_model": 1706, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7639, + "fields": { + "id_car_model": 1708, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7647, + "fields": { + "id_car_model": 1716, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7648, + "fields": { + "id_car_model": 1716, + "name": "Cross Sports crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7650, + "fields": { + "id_car_model": 1716, + "name": "JP-spec crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7651, + "fields": { + "id_car_model": 1717, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7652, + "fields": { + "id_car_model": 1717, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7653, + "fields": { + "id_car_model": 1717, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7654, + "fields": { + "id_car_model": 1717, + "name": "WRX wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7655, + "fields": { + "id_car_model": 1717, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7656, + "fields": { + "id_car_model": 1717, + "name": "WRX Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7657, + "fields": { + "id_car_model": 1717, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7658, + "fields": { + "id_car_model": 1717, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7659, + "fields": { + "id_car_model": 1717, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7660, + "fields": { + "id_car_model": 1717, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7661, + "fields": { + "id_car_model": 1717, + "name": "WRX STI wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7664, + "fields": { + "id_car_model": 1720, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7665, + "fields": { + "id_car_model": 1720, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7666, + "fields": { + "id_car_model": 1720, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7667, + "fields": { + "id_car_model": 1720, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7671, + "fields": { + "id_car_model": 1724, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7679, + "fields": { + "id_car_model": 1732, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7681, + "fields": { + "id_car_model": 1734, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7686, + "fields": { + "id_car_model": 1740, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7688, + "fields": { + "id_car_model": 1742, + "name": "Crossover 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7689, + "fields": { + "id_car_model": 1742, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7690, + "fields": { + "id_car_model": 1742, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7691, + "fields": { + "id_car_model": 1742, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7697, + "fields": { + "id_car_model": 1750, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7699, + "fields": { + "id_car_model": 1752, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7700, + "fields": { + "id_car_model": 1752, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7702, + "fields": { + "id_car_model": 1754, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7706, + "fields": { + "id_car_model": 1758, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7707, + "fields": { + "id_car_model": 1758, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7708, + "fields": { + "id_car_model": 1758, + "name": "Sport hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7709, + "fields": { + "id_car_model": 1758, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7710, + "fields": { + "id_car_model": 1758, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7711, + "fields": { + "id_car_model": 1758, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7712, + "fields": { + "id_car_model": 1758, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7713, + "fields": { + "id_car_model": 1758, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7714, + "fields": { + "id_car_model": 1758, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7715, + "fields": { + "id_car_model": 1758, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7719, + "fields": { + "id_car_model": 1762, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7727, + "fields": { + "id_car_model": 1772, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7729, + "fields": { + "id_car_model": 1774, + "name": "Marina wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7730, + "fields": { + "id_car_model": 1774, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7732, + "fields": { + "id_car_model": 1776, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7747, + "fields": { + "id_car_model": 1791, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7748, + "fields": { + "id_car_model": 1791, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7749, + "fields": { + "id_car_model": 1791, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7750, + "fields": { + "id_car_model": 1791, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7751, + "fields": { + "id_car_model": 1791, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7752, + "fields": { + "id_car_model": 1792, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7757, + "fields": { + "id_car_model": 1798, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7758, + "fields": { + "id_car_model": 1798, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7760, + "fields": { + "id_car_model": 1800, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7761, + "fields": { + "id_car_model": 1800, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7762, + "fields": { + "id_car_model": 1800, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7763, + "fields": { + "id_car_model": 1800, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7764, + "fields": { + "id_car_model": 1800, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7765, + "fields": { + "id_car_model": 1800, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7773, + "fields": { + "id_car_model": 1808, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7774, + "fields": { + "id_car_model": 1808, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7776, + "fields": { + "id_car_model": 1810, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7782, + "fields": { + "id_car_model": 1810, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7783, + "fields": { + "id_car_model": 1810, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7784, + "fields": { + "id_car_model": 1810, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7785, + "fields": { + "id_car_model": 1810, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7786, + "fields": { + "id_car_model": 1810, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7788, + "fields": { + "id_car_model": 1810, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7789, + "fields": { + "id_car_model": 1810, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7791, + "fields": { + "id_car_model": 1812, + "name": "E Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7792, + "fields": { + "id_car_model": 1812, + "name": "E liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7793, + "fields": { + "id_car_model": 1812, + "name": "JDM Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7794, + "fields": { + "id_car_model": 1812, + "name": "JDM Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7795, + "fields": { + "id_car_model": 1812, + "name": "II Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7797, + "fields": { + "id_car_model": 1812, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7798, + "fields": { + "id_car_model": 1812, + "name": "II liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7799, + "fields": { + "id_car_model": 1812, + "name": "JDM Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7800, + "fields": { + "id_car_model": 1812, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7801, + "fields": { + "id_car_model": 1812, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7803, + "fields": { + "id_car_model": 1812, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7805, + "fields": { + "id_car_model": 1814, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7806, + "fields": { + "id_car_model": 1814, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7807, + "fields": { + "id_car_model": 1814, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7808, + "fields": { + "id_car_model": 1814, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7809, + "fields": { + "id_car_model": 1814, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7810, + "fields": { + "id_car_model": 1814, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7811, + "fields": { + "id_car_model": 1814, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7812, + "fields": { + "id_car_model": 1814, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7813, + "fields": { + "id_car_model": 1814, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7815, + "fields": { + "id_car_model": 1816, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7817, + "fields": { + "id_car_model": 1818, + "name": "Axio Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7818, + "fields": { + "id_car_model": 1818, + "name": "Fielder wagon 1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7820, + "fields": { + "id_car_model": 1818, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7823, + "fields": { + "id_car_model": 1818, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7824, + "fields": { + "id_car_model": 1818, + "name": "JDM Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7825, + "fields": { + "id_car_model": 1818, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7826, + "fields": { + "id_car_model": 1818, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7827, + "fields": { + "id_car_model": 1818, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7828, + "fields": { + "id_car_model": 1818, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7829, + "fields": { + "id_car_model": 1818, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7830, + "fields": { + "id_car_model": 1818, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7831, + "fields": { + "id_car_model": 1818, + "name": "All-trac wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7832, + "fields": { + "id_car_model": 1818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7833, + "fields": { + "id_car_model": 1818, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7834, + "fields": { + "id_car_model": 1818, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7835, + "fields": { + "id_car_model": 1818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7836, + "fields": { + "id_car_model": 1818, + "name": "JDM wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7837, + "fields": { + "id_car_model": 1818, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7838, + "fields": { + "id_car_model": 1818, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7840, + "fields": { + "id_car_model": 1818, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7841, + "fields": { + "id_car_model": 1818, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7842, + "fields": { + "id_car_model": 1818, + "name": "Toyota Corolla V (E80) Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7844, + "fields": { + "id_car_model": 1818, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7845, + "fields": { + "id_car_model": 1818, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7846, + "fields": { + "id_car_model": 1818, + "name": "JDM Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7847, + "fields": { + "id_car_model": 1818, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7848, + "fields": { + "id_car_model": 1818, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7851, + "fields": { + "id_car_model": 1818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7854, + "fields": { + "id_car_model": 2376, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7856, + "fields": { + "id_car_model": 1822, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7857, + "fields": { + "id_car_model": 1822, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7859, + "fields": { + "id_car_model": 1824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7860, + "fields": { + "id_car_model": 1824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7861, + "fields": { + "id_car_model": 1824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7862, + "fields": { + "id_car_model": 1824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7864, + "fields": { + "id_car_model": 1826, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7865, + "fields": { + "id_car_model": 1826, + "name": "Athlete Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7866, + "fields": { + "id_car_model": 1826, + "name": "JDM Hardtop 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7867, + "fields": { + "id_car_model": 1826, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7868, + "fields": { + "id_car_model": 1826, + "name": "Royal Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7869, + "fields": { + "id_car_model": 1826, + "name": "JDM Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7870, + "fields": { + "id_car_model": 1826, + "name": "JDM Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7871, + "fields": { + "id_car_model": 1826, + "name": "Estate wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7872, + "fields": { + "id_car_model": 1826, + "name": "Royal Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7873, + "fields": { + "id_car_model": 1826, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7874, + "fields": { + "id_car_model": 1826, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7875, + "fields": { + "id_car_model": 1826, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7877, + "fields": { + "id_car_model": 1828, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7886, + "fields": { + "id_car_model": 1838, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7887, + "fields": { + "id_car_model": 1838, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7891, + "fields": { + "id_car_model": 1842, + "name": "Pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7892, + "fields": { + "id_car_model": 1842, + "name": "Pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7893, + "fields": { + "id_car_model": 1842, + "name": "Xtracab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7894, + "fields": { + "id_car_model": 1842, + "name": "Pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7895, + "fields": { + "id_car_model": 1842, + "name": "Pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7896, + "fields": { + "id_car_model": 1842, + "name": "Xtracab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7898, + "fields": { + "id_car_model": 1844, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7900, + "fields": { + "id_car_model": 1846, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7902, + "fields": { + "id_car_model": 1848, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7903, + "fields": { + "id_car_model": 1849, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7904, + "fields": { + "id_car_model": 1849, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7905, + "fields": { + "id_car_model": 1849, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7906, + "fields": { + "id_car_model": 1849, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7907, + "fields": { + "id_car_model": 1849, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7908, + "fields": { + "id_car_model": 1849, + "name": "J75 SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7909, + "fields": { + "id_car_model": 1849, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7910, + "fields": { + "id_car_model": 1849, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7911, + "fields": { + "id_car_model": 1849, + "name": "HJ47 cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7928, + "fields": { + "id_car_model": 1870, + "name": "Vauxhall Agila A", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7939, + "fields": { + "id_car_model": 1878, + "name": "Vauxhall Frontera A SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7940, + "fields": { + "id_car_model": 1878, + "name": "Vauxhall Frontera A SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7946, + "fields": { + "id_car_model": 1886, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7947, + "fields": { + "id_car_model": 1886, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7948, + "fields": { + "id_car_model": 1886, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7952, + "fields": { + "id_car_model": 1890, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7953, + "fields": { + "id_car_model": 1890, + "name": "wagon 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7954, + "fields": { + "id_car_model": 1890, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7963, + "fields": { + "id_car_model": 1900, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7966, + "fields": { + "id_car_model": 1902, + "name": "Minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7968, + "fields": { + "id_car_model": 1904, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7972, + "fields": { + "id_car_model": 1908, + "name": "GTI hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7973, + "fields": { + "id_car_model": 1908, + "name": "Variant wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7974, + "fields": { + "id_car_model": 1908, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7975, + "fields": { + "id_car_model": 1908, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7976, + "fields": { + "id_car_model": 1908, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7977, + "fields": { + "id_car_model": 1908, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7978, + "fields": { + "id_car_model": 1908, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7979, + "fields": { + "id_car_model": 1908, + "name": "GT hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7980, + "fields": { + "id_car_model": 1908, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7981, + "fields": { + "id_car_model": 1908, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7982, + "fields": { + "id_car_model": 1908, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7983, + "fields": { + "id_car_model": 1908, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7984, + "fields": { + "id_car_model": 1908, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7985, + "fields": { + "id_car_model": 1908, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7986, + "fields": { + "id_car_model": 1908, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7987, + "fields": { + "id_car_model": 1908, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7988, + "fields": { + "id_car_model": 1908, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7989, + "fields": { + "id_car_model": 1908, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7990, + "fields": { + "id_car_model": 1908, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7991, + "fields": { + "id_car_model": 1908, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7995, + "fields": { + "id_car_model": 1912, + "name": "TDI Cup \"Street\" edition Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7996, + "fields": { + "id_car_model": 1912, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7997, + "fields": { + "id_car_model": 1912, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7998, + "fields": { + "id_car_model": 1912, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 7999, + "fields": { + "id_car_model": 1912, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8000, + "fields": { + "id_car_model": 1912, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8006, + "fields": { + "id_car_model": 1918, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8011, + "fields": { + "id_car_model": 1924, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8012, + "fields": { + "id_car_model": 1924, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8015, + "fields": { + "id_car_model": 1928, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8017, + "fields": { + "id_car_model": 1930, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8030, + "fields": { + "id_car_model": 1950, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8031, + "fields": { + "id_car_model": 1950, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8032, + "fields": { + "id_car_model": 1950, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8034, + "fields": { + "id_car_model": 1952, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8035, + "fields": { + "id_car_model": 1952, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8043, + "fields": { + "id_car_model": 1960, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8044, + "fields": { + "id_car_model": 1960, + "name": "R wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8046, + "fields": { + "id_car_model": 1962, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8048, + "fields": { + "id_car_model": 1964, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8050, + "fields": { + "id_car_model": 1966, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8065, + "fields": { + "id_car_model": 1984, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8074, + "fields": { + "id_car_model": 1994, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8084, + "fields": { + "id_car_model": 2006, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8086, + "fields": { + "id_car_model": 2008, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8088, + "fields": { + "id_car_model": 2010, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8090, + "fields": { + "id_car_model": 2012, + "name": "21214 SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8094, + "fields": { + "id_car_model": 2016, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8095, + "fields": { + "id_car_model": 2016, + "name": "Hatchback 5-doors", + "arabic_name": "هاتشباك 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 8096, + "fields": { + "id_car_model": 2016, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8105, + "fields": { + "id_car_model": 2026, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8106, + "fields": { + "id_car_model": 2026, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8298, + "fields": { + "id_car_model": 2123, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8299, + "fields": { + "id_car_model": 2123, + "name": "Crossover 5-doors", + "arabic_name": "كروس أوفر 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 8303, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8304, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8305, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8306, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8307, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8308, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8309, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8310, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8311, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8312, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8314, + "fields": { + "id_car_model": 16, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8315, + "fields": { + "id_car_model": 21, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8316, + "fields": { + "id_car_model": 32, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8317, + "fields": { + "id_car_model": 38, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8318, + "fields": { + "id_car_model": 41, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8319, + "fields": { + "id_car_model": 42, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8320, + "fields": { + "id_car_model": 47, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8321, + "fields": { + "id_car_model": 47, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8322, + "fields": { + "id_car_model": 50, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8323, + "fields": { + "id_car_model": 46, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8324, + "fields": { + "id_car_model": 54, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8325, + "fields": { + "id_car_model": 63, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8327, + "fields": { + "id_car_model": 75, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8328, + "fields": { + "id_car_model": 75, + "name": "Avant wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8329, + "fields": { + "id_car_model": 75, + "name": "Avant hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8330, + "fields": { + "id_car_model": 75, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8331, + "fields": { + "id_car_model": 75, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8332, + "fields": { + "id_car_model": 75, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8333, + "fields": { + "id_car_model": 76, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8334, + "fields": { + "id_car_model": 83, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8335, + "fields": { + "id_car_model": 89, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8336, + "fields": { + "id_car_model": 89, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8337, + "fields": { + "id_car_model": 89, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8338, + "fields": { + "id_car_model": 93, + "name": "Q3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8339, + "fields": { + "id_car_model": 97, + "name": "Spyder cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8340, + "fields": { + "id_car_model": 97, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8342, + "fields": { + "id_car_model": 101, + "name": "Avant wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8343, + "fields": { + "id_car_model": 101, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8344, + "fields": { + "id_car_model": 101, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8345, + "fields": { + "id_car_model": 101, + "name": "Avant wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8347, + "fields": { + "id_car_model": 108, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8348, + "fields": { + "id_car_model": 108, + "name": "Avant wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8349, + "fields": { + "id_car_model": 108, + "name": "Avant wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8350, + "fields": { + "id_car_model": 108, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8351, + "fields": { + "id_car_model": 108, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8352, + "fields": { + "id_car_model": 108, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8353, + "fields": { + "id_car_model": 108, + "name": "Avant wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8354, + "fields": { + "id_car_model": 108, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8356, + "fields": { + "id_car_model": 117, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8357, + "fields": { + "id_car_model": 113, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8358, + "fields": { + "id_car_model": 121, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8360, + "fields": { + "id_car_model": 132, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8361, + "fields": { + "id_car_model": 128, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8362, + "fields": { + "id_car_model": 133, + "name": "Speed Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8363, + "fields": { + "id_car_model": 133, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8367, + "fields": { + "id_car_model": 138, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8368, + "fields": { + "id_car_model": 156, + "name": "Sports Activity Coupe crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8369, + "fields": { + "id_car_model": 160, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8391, + "fields": { + "id_car_model": 170, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8392, + "fields": { + "id_car_model": 175, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8393, + "fields": { + "id_car_model": 179, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8394, + "fields": { + "id_car_model": 188, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8395, + "fields": { + "id_car_model": 188, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8396, + "fields": { + "id_car_model": 189, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8397, + "fields": { + "id_car_model": 194, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8398, + "fields": { + "id_car_model": 198, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8399, + "fields": { + "id_car_model": 198, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8400, + "fields": { + "id_car_model": 205, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8401, + "fields": { + "id_car_model": 212, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8402, + "fields": { + "id_car_model": 209, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8403, + "fields": { + "id_car_model": 215, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8404, + "fields": { + "id_car_model": 219, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8405, + "fields": { + "id_car_model": 221, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8408, + "fields": { + "id_car_model": 223, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8409, + "fields": { + "id_car_model": 223, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8410, + "fields": { + "id_car_model": 226, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8411, + "fields": { + "id_car_model": 231, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8412, + "fields": { + "id_car_model": 232, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8413, + "fields": { + "id_car_model": 236, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8414, + "fields": { + "id_car_model": 237, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8415, + "fields": { + "id_car_model": 217, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8416, + "fields": { + "id_car_model": 239, + "name": "Plus crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8417, + "fields": { + "id_car_model": 241, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8418, + "fields": { + "id_car_model": 244, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8419, + "fields": { + "id_car_model": 249, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8421, + "fields": { + "id_car_model": 252, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8422, + "fields": { + "id_car_model": 257, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8423, + "fields": { + "id_car_model": 254, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8424, + "fields": { + "id_car_model": 265, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8426, + "fields": { + "id_car_model": 261, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8427, + "fields": { + "id_car_model": 269, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8428, + "fields": { + "id_car_model": 269, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8429, + "fields": { + "id_car_model": 270, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8430, + "fields": { + "id_car_model": 270, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8431, + "fields": { + "id_car_model": 266, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8432, + "fields": { + "id_car_model": 274, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8433, + "fields": { + "id_car_model": 281, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8434, + "fields": { + "id_car_model": 285, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8436, + "fields": { + "id_car_model": 291, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8437, + "fields": { + "id_car_model": 292, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8438, + "fields": { + "id_car_model": 275, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8439, + "fields": { + "id_car_model": 297, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8440, + "fields": { + "id_car_model": 302, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8441, + "fields": { + "id_car_model": 302, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8442, + "fields": { + "id_car_model": 280, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8443, + "fields": { + "id_car_model": 280, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8444, + "fields": { + "id_car_model": 280, + "name": "Z06 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8445, + "fields": { + "id_car_model": 280, + "name": "Cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8446, + "fields": { + "id_car_model": 280, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8447, + "fields": { + "id_car_model": 280, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8448, + "fields": { + "id_car_model": 307, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8450, + "fields": { + "id_car_model": 314, + "name": "Neo 3 minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8451, + "fields": { + "id_car_model": 319, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8452, + "fields": { + "id_car_model": 319, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8453, + "fields": { + "id_car_model": 322, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8454, + "fields": { + "id_car_model": 312, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8455, + "fields": { + "id_car_model": 312, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8456, + "fields": { + "id_car_model": 312, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8457, + "fields": { + "id_car_model": 312, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8459, + "fields": { + "id_car_model": 330, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8460, + "fields": { + "id_car_model": 317, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8461, + "fields": { + "id_car_model": 335, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8463, + "fields": { + "id_car_model": 341, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8464, + "fields": { + "id_car_model": 341, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8465, + "fields": { + "id_car_model": 341, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8466, + "fields": { + "id_car_model": 332, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8468, + "fields": { + "id_car_model": 345, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8470, + "fields": { + "id_car_model": 355, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8472, + "fields": { + "id_car_model": 360, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8473, + "fields": { + "id_car_model": 360, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8478, + "fields": { + "id_car_model": 373, + "name": "Break wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8479, + "fields": { + "id_car_model": 373, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8480, + "fields": { + "id_car_model": 374, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8481, + "fields": { + "id_car_model": 374, + "name": "Break wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8486, + "fields": { + "id_car_model": 394, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8487, + "fields": { + "id_car_model": 392, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8488, + "fields": { + "id_car_model": 399, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8489, + "fields": { + "id_car_model": 399, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8490, + "fields": { + "id_car_model": 384, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8492, + "fields": { + "id_car_model": 407, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8493, + "fields": { + "id_car_model": 409, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8494, + "fields": { + "id_car_model": 409, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8495, + "fields": { + "id_car_model": 409, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8496, + "fields": { + "id_car_model": 397, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8497, + "fields": { + "id_car_model": 417, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8500, + "fields": { + "id_car_model": 426, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8501, + "fields": { + "id_car_model": 426, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8502, + "fields": { + "id_car_model": 426, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8503, + "fields": { + "id_car_model": 426, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8504, + "fields": { + "id_car_model": 426, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8505, + "fields": { + "id_car_model": 426, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8506, + "fields": { + "id_car_model": 426, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8507, + "fields": { + "id_car_model": 421, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8508, + "fields": { + "id_car_model": 429, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8509, + "fields": { + "id_car_model": 429, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8510, + "fields": { + "id_car_model": 430, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8511, + "fields": { + "id_car_model": 430, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8512, + "fields": { + "id_car_model": 430, + "name": "3d hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8513, + "fields": { + "id_car_model": 430, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8514, + "fields": { + "id_car_model": 430, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8515, + "fields": { + "id_car_model": 430, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8516, + "fields": { + "id_car_model": 430, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8517, + "fields": { + "id_car_model": 430, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8518, + "fields": { + "id_car_model": 430, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8519, + "fields": { + "id_car_model": 430, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8520, + "fields": { + "id_car_model": 430, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8521, + "fields": { + "id_car_model": 430, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8524, + "fields": { + "id_car_model": 428, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8532, + "fields": { + "id_car_model": 478, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8533, + "fields": { + "id_car_model": 479, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8534, + "fields": { + "id_car_model": 480, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8535, + "fields": { + "id_car_model": 488, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8536, + "fields": { + "id_car_model": 496, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8537, + "fields": { + "id_car_model": 496, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8538, + "fields": { + "id_car_model": 510, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8539, + "fields": { + "id_car_model": 511, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8541, + "fields": { + "id_car_model": 529, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8544, + "fields": { + "id_car_model": 546, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8550, + "fields": { + "id_car_model": 580, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8551, + "fields": { + "id_car_model": 581, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8552, + "fields": { + "id_car_model": 588, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8553, + "fields": { + "id_car_model": 588, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8554, + "fields": { + "id_car_model": 589, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8558, + "fields": { + "id_car_model": 607, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8559, + "fields": { + "id_car_model": 608, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8560, + "fields": { + "id_car_model": 608, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8562, + "fields": { + "id_car_model": 616, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8566, + "fields": { + "id_car_model": 633, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8567, + "fields": { + "id_car_model": 633, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8568, + "fields": { + "id_car_model": 643, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8569, + "fields": { + "id_car_model": 663, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8570, + "fields": { + "id_car_model": 663, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8571, + "fields": { + "id_car_model": 663, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8572, + "fields": { + "id_car_model": 663, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8573, + "fields": { + "id_car_model": 663, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8574, + "fields": { + "id_car_model": 654, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8575, + "fields": { + "id_car_model": 654, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8583, + "fields": { + "id_car_model": 699, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8584, + "fields": { + "id_car_model": 699, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8585, + "fields": { + "id_car_model": 712, + "name": "G5 pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8586, + "fields": { + "id_car_model": 712, + "name": "G3 pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8587, + "fields": { + "id_car_model": 712, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8596, + "fields": { + "id_car_model": 728, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8600, + "fields": { + "id_car_model": 758, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8601, + "fields": { + "id_car_model": 759, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8602, + "fields": { + "id_car_model": 759, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8603, + "fields": { + "id_car_model": 759, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8604, + "fields": { + "id_car_model": 759, + "name": "Turbo hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8610, + "fields": { + "id_car_model": 779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8611, + "fields": { + "id_car_model": 779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8612, + "fields": { + "id_car_model": 779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8613, + "fields": { + "id_car_model": 779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8615, + "fields": { + "id_car_model": 790, + "name": "Absolute minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8616, + "fields": { + "id_car_model": 790, + "name": "US-spec minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8617, + "fields": { + "id_car_model": 790, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8618, + "fields": { + "id_car_model": 794, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8622, + "fields": { + "id_car_model": 804, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8625, + "fields": { + "id_car_model": 808, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8626, + "fields": { + "id_car_model": 810, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8629, + "fields": { + "id_car_model": 826, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8630, + "fields": { + "id_car_model": 831, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8631, + "fields": { + "id_car_model": 831, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8632, + "fields": { + "id_car_model": 831, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8633, + "fields": { + "id_car_model": 831, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8636, + "fields": { + "id_car_model": 844, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8637, + "fields": { + "id_car_model": 839, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8638, + "fields": { + "id_car_model": 848, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8639, + "fields": { + "id_car_model": 848, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8640, + "fields": { + "id_car_model": 848, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8641, + "fields": { + "id_car_model": 848, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8643, + "fields": { + "id_car_model": 853, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8644, + "fields": { + "id_car_model": 858, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8645, + "fields": { + "id_car_model": 855, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8649, + "fields": { + "id_car_model": 875, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8650, + "fields": { + "id_car_model": 875, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8651, + "fields": { + "id_car_model": 862, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8652, + "fields": { + "id_car_model": 862, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8657, + "fields": { + "id_car_model": 895, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8658, + "fields": { + "id_car_model": 901, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8659, + "fields": { + "id_car_model": 901, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8660, + "fields": { + "id_car_model": 901, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8661, + "fields": { + "id_car_model": 914, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8662, + "fields": { + "id_car_model": 914, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8663, + "fields": { + "id_car_model": 914, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8664, + "fields": { + "id_car_model": 914, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8665, + "fields": { + "id_car_model": 918, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8666, + "fields": { + "id_car_model": 919, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8667, + "fields": { + "id_car_model": 919, + "name": "XJR 100 Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8668, + "fields": { + "id_car_model": 919, + "name": "X305 Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8669, + "fields": { + "id_car_model": 919, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8670, + "fields": { + "id_car_model": 919, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8671, + "fields": { + "id_car_model": 919, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8672, + "fields": { + "id_car_model": 919, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8673, + "fields": { + "id_car_model": 931, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8674, + "fields": { + "id_car_model": 931, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8676, + "fields": { + "id_car_model": 937, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8677, + "fields": { + "id_car_model": 937, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8678, + "fields": { + "id_car_model": 937, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8680, + "fields": { + "id_car_model": 946, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8681, + "fields": { + "id_car_model": 946, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8682, + "fields": { + "id_car_model": 939, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8683, + "fields": { + "id_car_model": 939, + "name": "Pro_cee'd hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8684, + "fields": { + "id_car_model": 939, + "name": "SW wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8685, + "fields": { + "id_car_model": 939, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8686, + "fields": { + "id_car_model": 939, + "name": "SW wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8687, + "fields": { + "id_car_model": 939, + "name": "Pro_cee'd hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8688, + "fields": { + "id_car_model": 940, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8689, + "fields": { + "id_car_model": 940, + "name": "KOUP Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8690, + "fields": { + "id_car_model": 940, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8693, + "fields": { + "id_car_model": 949, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8694, + "fields": { + "id_car_model": 949, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8695, + "fields": { + "id_car_model": 949, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8696, + "fields": { + "id_car_model": 949, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8698, + "fields": { + "id_car_model": 956, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8699, + "fields": { + "id_car_model": 956, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8700, + "fields": { + "id_car_model": 956, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8701, + "fields": { + "id_car_model": 956, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8702, + "fields": { + "id_car_model": 959, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8703, + "fields": { + "id_car_model": 958, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8705, + "fields": { + "id_car_model": 966, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8708, + "fields": { + "id_car_model": 977, + "name": "LP560-4 Spyder roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8709, + "fields": { + "id_car_model": 977, + "name": "Spyder roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8713, + "fields": { + "id_car_model": 987, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8715, + "fields": { + "id_car_model": 999, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8717, + "fields": { + "id_car_model": 1007, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8718, + "fields": { + "id_car_model": 1007, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8719, + "fields": { + "id_car_model": 1007, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8720, + "fields": { + "id_car_model": 1007, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8721, + "fields": { + "id_car_model": 1008, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8722, + "fields": { + "id_car_model": 1008, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8723, + "fields": { + "id_car_model": 1008, + "name": "Hard Top crossover 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8724, + "fields": { + "id_car_model": 1008, + "name": "Soft Top crossover 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8727, + "fields": { + "id_car_model": 1026, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8728, + "fields": { + "id_car_model": 1026, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8729, + "fields": { + "id_car_model": 1026, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8730, + "fields": { + "id_car_model": 1026, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8731, + "fields": { + "id_car_model": 1019, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8732, + "fields": { + "id_car_model": 1020, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8733, + "fields": { + "id_car_model": 1020, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8734, + "fields": { + "id_car_model": 1020, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8735, + "fields": { + "id_car_model": 1020, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8736, + "fields": { + "id_car_model": 1020, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8737, + "fields": { + "id_car_model": 1027, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8738, + "fields": { + "id_car_model": 1027, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8739, + "fields": { + "id_car_model": 1027, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8740, + "fields": { + "id_car_model": 1029, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8741, + "fields": { + "id_car_model": 1029, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8742, + "fields": { + "id_car_model": 1029, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8743, + "fields": { + "id_car_model": 1030, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8745, + "fields": { + "id_car_model": 1039, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8748, + "fields": { + "id_car_model": 1045, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8749, + "fields": { + "id_car_model": 1046, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8751, + "fields": { + "id_car_model": 1053, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8755, + "fields": { + "id_car_model": 1063, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8756, + "fields": { + "id_car_model": 1069, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8758, + "fields": { + "id_car_model": 1075, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8762, + "fields": { + "id_car_model": 1099, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8766, + "fields": { + "id_car_model": 1096, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8767, + "fields": { + "id_car_model": 1117, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8768, + "fields": { + "id_car_model": 1121, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8769, + "fields": { + "id_car_model": 1121, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8770, + "fields": { + "id_car_model": 1115, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8771, + "fields": { + "id_car_model": 1115, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8772, + "fields": { + "id_car_model": 1115, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8773, + "fields": { + "id_car_model": 1123, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8774, + "fields": { + "id_car_model": 1123, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8775, + "fields": { + "id_car_model": 1123, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8776, + "fields": { + "id_car_model": 1123, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8777, + "fields": { + "id_car_model": 1127, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8778, + "fields": { + "id_car_model": 1127, + "name": "US-Spec. Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8779, + "fields": { + "id_car_model": 1127, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8780, + "fields": { + "id_car_model": 1127, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8781, + "fields": { + "id_car_model": 1127, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8782, + "fields": { + "id_car_model": 1127, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8783, + "fields": { + "id_car_model": 1130, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8787, + "fields": { + "id_car_model": 1143, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8788, + "fields": { + "id_car_model": 1143, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8789, + "fields": { + "id_car_model": 1143, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8793, + "fields": { + "id_car_model": 1156, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8794, + "fields": { + "id_car_model": 1156, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8795, + "fields": { + "id_car_model": 1156, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8796, + "fields": { + "id_car_model": 1156, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8797, + "fields": { + "id_car_model": 1156, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8798, + "fields": { + "id_car_model": 1156, + "name": "GT-R hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8799, + "fields": { + "id_car_model": 1159, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8800, + "fields": { + "id_car_model": 1161, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8801, + "fields": { + "id_car_model": 1161, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8804, + "fields": { + "id_car_model": 1173, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8805, + "fields": { + "id_car_model": 1173, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8806, + "fields": { + "id_car_model": 1176, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8807, + "fields": { + "id_car_model": 1178, + "name": "Hybrid crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8809, + "fields": { + "id_car_model": 20343, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8810, + "fields": { + "id_car_model": 20343, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8811, + "fields": { + "id_car_model": 1190, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8814, + "fields": { + "id_car_model": 20350, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8815, + "fields": { + "id_car_model": 20350, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8816, + "fields": { + "id_car_model": 20350, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8817, + "fields": { + "id_car_model": 20350, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8818, + "fields": { + "id_car_model": 20350, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8819, + "fields": { + "id_car_model": 20350, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8820, + "fields": { + "id_car_model": 20350, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8821, + "fields": { + "id_car_model": 20350, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8823, + "fields": { + "id_car_model": 20350, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8824, + "fields": { + "id_car_model": 20350, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8825, + "fields": { + "id_car_model": 20350, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8826, + "fields": { + "id_car_model": 20348, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8827, + "fields": { + "id_car_model": 20348, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8828, + "fields": { + "id_car_model": 20348, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8829, + "fields": { + "id_car_model": 20358, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8830, + "fields": { + "id_car_model": 20364, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8831, + "fields": { + "id_car_model": 20364, + "name": "Limousine Pullman", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8833, + "fields": { + "id_car_model": 20364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8834, + "fields": { + "id_car_model": 20364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8838, + "fields": { + "id_car_model": 20364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8839, + "fields": { + "id_car_model": 20364, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8840, + "fields": { + "id_car_model": 20364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8841, + "fields": { + "id_car_model": 20364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8844, + "fields": { + "id_car_model": 1217, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8845, + "fields": { + "id_car_model": 1217, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8846, + "fields": { + "id_car_model": 1217, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8850, + "fields": { + "id_car_model": 1239, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8853, + "fields": { + "id_car_model": 1244, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8858, + "fields": { + "id_car_model": 1259, + "name": "Cooper S Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8859, + "fields": { + "id_car_model": 1260, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8860, + "fields": { + "id_car_model": 1260, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8861, + "fields": { + "id_car_model": 1265, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8862, + "fields": { + "id_car_model": 1269, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8863, + "fields": { + "id_car_model": 1266, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8865, + "fields": { + "id_car_model": 1278, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8866, + "fields": { + "id_car_model": 1278, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8867, + "fields": { + "id_car_model": 1278, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8868, + "fields": { + "id_car_model": 1278, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8869, + "fields": { + "id_car_model": 1274, + "name": "Minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8870, + "fields": { + "id_car_model": 1274, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8871, + "fields": { + "id_car_model": 1284, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8872, + "fields": { + "id_car_model": 1284, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8873, + "fields": { + "id_car_model": 1284, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8874, + "fields": { + "id_car_model": 1284, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8875, + "fields": { + "id_car_model": 1284, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8876, + "fields": { + "id_car_model": 1284, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8877, + "fields": { + "id_car_model": 1284, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8878, + "fields": { + "id_car_model": 1284, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8879, + "fields": { + "id_car_model": 1284, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8880, + "fields": { + "id_car_model": 1284, + "name": "Lambda Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8881, + "fields": { + "id_car_model": 1284, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8883, + "fields": { + "id_car_model": 1280, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8884, + "fields": { + "id_car_model": 1290, + "name": "Pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8886, + "fields": { + "id_car_model": 1300, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8887, + "fields": { + "id_car_model": 1300, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8888, + "fields": { + "id_car_model": 1300, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8889, + "fields": { + "id_car_model": 1296, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8890, + "fields": { + "id_car_model": 1296, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8893, + "fields": { + "id_car_model": 1306, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8894, + "fields": { + "id_car_model": 1310, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8895, + "fields": { + "id_car_model": 1310, + "name": "Minivan 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8897, + "fields": { + "id_car_model": 1316, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8898, + "fields": { + "id_car_model": 1316, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8900, + "fields": { + "id_car_model": 1325, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8901, + "fields": { + "id_car_model": 1323, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8903, + "fields": { + "id_car_model": 1337, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8904, + "fields": { + "id_car_model": 1331, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8905, + "fields": { + "id_car_model": 1331, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8906, + "fields": { + "id_car_model": 1340, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8911, + "fields": { + "id_car_model": 1351, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8912, + "fields": { + "id_car_model": 1364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8915, + "fields": { + "id_car_model": 1368, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8916, + "fields": { + "id_car_model": 1368, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8918, + "fields": { + "id_car_model": 1366, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8919, + "fields": { + "id_car_model": 1366, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8920, + "fields": { + "id_car_model": 1366, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8922, + "fields": { + "id_car_model": 1379, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8923, + "fields": { + "id_car_model": 1379, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8924, + "fields": { + "id_car_model": 1379, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8925, + "fields": { + "id_car_model": 1379, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8926, + "fields": { + "id_car_model": 1376, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8927, + "fields": { + "id_car_model": 1376, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8928, + "fields": { + "id_car_model": 1376, + "name": "2by2 T-Top targa 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8929, + "fields": { + "id_car_model": 1376, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8930, + "fields": { + "id_car_model": 1376, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8931, + "fields": { + "id_car_model": 1385, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8932, + "fields": { + "id_car_model": 1385, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8933, + "fields": { + "id_car_model": 1385, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8934, + "fields": { + "id_car_model": 1385, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8935, + "fields": { + "id_car_model": 1385, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8937, + "fields": { + "id_car_model": 1387, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8938, + "fields": { + "id_car_model": 1387, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8939, + "fields": { + "id_car_model": 1394, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8940, + "fields": { + "id_car_model": 1400, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8941, + "fields": { + "id_car_model": 1401, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8942, + "fields": { + "id_car_model": 1401, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8945, + "fields": { + "id_car_model": 1420, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8946, + "fields": { + "id_car_model": 1425, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8950, + "fields": { + "id_car_model": 1416, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8951, + "fields": { + "id_car_model": 1416, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8952, + "fields": { + "id_car_model": 1416, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8953, + "fields": { + "id_car_model": 1416, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8958, + "fields": { + "id_car_model": 1438, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8959, + "fields": { + "id_car_model": 1438, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8960, + "fields": { + "id_car_model": 1438, + "name": "Caravan wagon 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8961, + "fields": { + "id_car_model": 1438, + "name": "Fastback 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8962, + "fields": { + "id_car_model": 1438, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8963, + "fields": { + "id_car_model": 1438, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8964, + "fields": { + "id_car_model": 1438, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8965, + "fields": { + "id_car_model": 1438, + "name": "Caravan wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8966, + "fields": { + "id_car_model": 1451, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8967, + "fields": { + "id_car_model": 1451, + "name": "I500 Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8968, + "fields": { + "id_car_model": 1451, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8969, + "fields": { + "id_car_model": 1451, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8970, + "fields": { + "id_car_model": 1451, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8971, + "fields": { + "id_car_model": 1453, + "name": "OPC minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8972, + "fields": { + "id_car_model": 1453, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8976, + "fields": { + "id_car_model": 1477, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8980, + "fields": { + "id_car_model": 1501, + "name": "Tepee minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8981, + "fields": { + "id_car_model": 1501, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8982, + "fields": { + "id_car_model": 1511, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8985, + "fields": { + "id_car_model": 1517, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8986, + "fields": { + "id_car_model": 1517, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8987, + "fields": { + "id_car_model": 1517, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8988, + "fields": { + "id_car_model": 1517, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8989, + "fields": { + "id_car_model": 1517, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8991, + "fields": { + "id_car_model": 1512, + "name": "Grand minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8992, + "fields": { + "id_car_model": 1512, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8993, + "fields": { + "id_car_model": 1525, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8994, + "fields": { + "id_car_model": 1525, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8996, + "fields": { + "id_car_model": 1536, + "name": "Carrera cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8998, + "fields": { + "id_car_model": 1536, + "name": "Carrera Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 8999, + "fields": { + "id_car_model": 1536, + "name": "GT2 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9000, + "fields": { + "id_car_model": 1536, + "name": "Carrera Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9001, + "fields": { + "id_car_model": 1536, + "name": "Carrera Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9002, + "fields": { + "id_car_model": 1536, + "name": "Carrera cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9003, + "fields": { + "id_car_model": 1536, + "name": "GT2 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9004, + "fields": { + "id_car_model": 1536, + "name": "Turbo Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9005, + "fields": { + "id_car_model": 1536, + "name": "Targa targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9006, + "fields": { + "id_car_model": 1536, + "name": "Turbo Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9007, + "fields": { + "id_car_model": 1536, + "name": "GT2 RS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9008, + "fields": { + "id_car_model": 1536, + "name": "Carrera cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9009, + "fields": { + "id_car_model": 1536, + "name": "Carrera cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9010, + "fields": { + "id_car_model": 1536, + "name": "Carrera Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9014, + "fields": { + "id_car_model": 1528, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9015, + "fields": { + "id_car_model": 1528, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9016, + "fields": { + "id_car_model": 1549, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9018, + "fields": { + "id_car_model": 1551, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9021, + "fields": { + "id_car_model": 1560, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9024, + "fields": { + "id_car_model": 1564, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9025, + "fields": { + "id_car_model": 1564, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9027, + "fields": { + "id_car_model": 1547, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9029, + "fields": { + "id_car_model": 1559, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9030, + "fields": { + "id_car_model": 1559, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9031, + "fields": { + "id_car_model": 1569, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9035, + "fields": { + "id_car_model": 1588, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9036, + "fields": { + "id_car_model": 1588, + "name": "RS hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9037, + "fields": { + "id_car_model": 1588, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9038, + "fields": { + "id_car_model": 1588, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9039, + "fields": { + "id_car_model": 1588, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9040, + "fields": { + "id_car_model": 1588, + "name": "Hatchback 3-doors", + "arabic_name": "هاتشباك 3-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 9041, + "fields": { + "id_car_model": 1588, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9042, + "fields": { + "id_car_model": 1589, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9043, + "fields": { + "id_car_model": 1590, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9044, + "fields": { + "id_car_model": 1590, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9045, + "fields": { + "id_car_model": 1590, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9046, + "fields": { + "id_car_model": 1600, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9048, + "fields": { + "id_car_model": 1607, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9050, + "fields": { + "id_car_model": 1602, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9051, + "fields": { + "id_car_model": 1602, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9053, + "fields": { + "id_car_model": 1613, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9056, + "fields": { + "id_car_model": 1598, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9057, + "fields": { + "id_car_model": 1598, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9058, + "fields": { + "id_car_model": 1621, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9060, + "fields": { + "id_car_model": 1626, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9061, + "fields": { + "id_car_model": 1626, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9063, + "fields": { + "id_car_model": 1636, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9065, + "fields": { + "id_car_model": 1636, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9067, + "fields": { + "id_car_model": 1641, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9068, + "fields": { + "id_car_model": 1641, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9069, + "fields": { + "id_car_model": 1641, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9070, + "fields": { + "id_car_model": 1641, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9073, + "fields": { + "id_car_model": 1651, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9074, + "fields": { + "id_car_model": 1655, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9080, + "fields": { + "id_car_model": 1659, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9081, + "fields": { + "id_car_model": 1667, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9082, + "fields": { + "id_car_model": 1674, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9083, + "fields": { + "id_car_model": 1674, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9085, + "fields": { + "id_car_model": 1678, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9086, + "fields": { + "id_car_model": 1678, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9087, + "fields": { + "id_car_model": 1678, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9089, + "fields": { + "id_car_model": 1683, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9090, + "fields": { + "id_car_model": 1683, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9091, + "fields": { + "id_car_model": 1683, + "name": "RS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9092, + "fields": { + "id_car_model": 1670, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9093, + "fields": { + "id_car_model": 1670, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9094, + "fields": { + "id_car_model": 1670, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9095, + "fields": { + "id_car_model": 1670, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9097, + "fields": { + "id_car_model": 1670, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9101, + "fields": { + "id_car_model": 1689, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9102, + "fields": { + "id_car_model": 1689, + "name": "Combi wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9103, + "fields": { + "id_car_model": 1689, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9106, + "fields": { + "id_car_model": 1701, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9108, + "fields": { + "id_car_model": 1699, + "name": "Sports pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9109, + "fields": { + "id_car_model": 1699, + "name": "Sports pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9110, + "fields": { + "id_car_model": 1707, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9111, + "fields": { + "id_car_model": 1707, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9113, + "fields": { + "id_car_model": 1705, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9114, + "fields": { + "id_car_model": 1714, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9116, + "fields": { + "id_car_model": 1718, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9117, + "fields": { + "id_car_model": 1718, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9118, + "fields": { + "id_car_model": 1718, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9119, + "fields": { + "id_car_model": 1718, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9120, + "fields": { + "id_car_model": 1718, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9121, + "fields": { + "id_car_model": 1718, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9122, + "fields": { + "id_car_model": 1718, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9123, + "fields": { + "id_car_model": 1719, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9124, + "fields": { + "id_car_model": 1719, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9125, + "fields": { + "id_car_model": 1719, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9126, + "fields": { + "id_car_model": 1719, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9127, + "fields": { + "id_car_model": 1719, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9128, + "fields": { + "id_car_model": 1719, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9129, + "fields": { + "id_car_model": 1719, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9130, + "fields": { + "id_car_model": 1719, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9131, + "fields": { + "id_car_model": 1719, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9132, + "fields": { + "id_car_model": 1723, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9133, + "fields": { + "id_car_model": 1723, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9134, + "fields": { + "id_car_model": 1723, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9135, + "fields": { + "id_car_model": 1723, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9136, + "fields": { + "id_car_model": 1723, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9137, + "fields": { + "id_car_model": 1723, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9142, + "fields": { + "id_car_model": 1737, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9143, + "fields": { + "id_car_model": 1737, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9144, + "fields": { + "id_car_model": 1737, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9145, + "fields": { + "id_car_model": 1737, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9146, + "fields": { + "id_car_model": 1737, + "name": "Hatchback 3-doors WORKS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9148, + "fields": { + "id_car_model": 1737, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9151, + "fields": { + "id_car_model": 1739, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9153, + "fields": { + "id_car_model": 1743, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9154, + "fields": { + "id_car_model": 1747, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9155, + "fields": { + "id_car_model": 1747, + "name": "SUV 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9156, + "fields": { + "id_car_model": 1747, + "name": "SUV 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9157, + "fields": { + "id_car_model": 1747, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9158, + "fields": { + "id_car_model": 1747, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9159, + "fields": { + "id_car_model": 1745, + "name": "Crossover 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9160, + "fields": { + "id_car_model": 1745, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9161, + "fields": { + "id_car_model": 1745, + "name": "SUV outdoor", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9162, + "fields": { + "id_car_model": 1745, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9163, + "fields": { + "id_car_model": 1745, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9167, + "fields": { + "id_car_model": 1751, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9168, + "fields": { + "id_car_model": 1751, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9170, + "fields": { + "id_car_model": 1755, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9174, + "fields": { + "id_car_model": 1761, + "name": "RR hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9175, + "fields": { + "id_car_model": 1761, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9176, + "fields": { + "id_car_model": 1761, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9178, + "fields": { + "id_car_model": 1759, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9179, + "fields": { + "id_car_model": 1759, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9183, + "fields": { + "id_car_model": 1773, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9186, + "fields": { + "id_car_model": 1783, + "name": "Sport roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9188, + "fields": { + "id_car_model": 1784, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9192, + "fields": { + "id_car_model": 1790, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9193, + "fields": { + "id_car_model": 1796, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9195, + "fields": { + "id_car_model": 1793, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9196, + "fields": { + "id_car_model": 1794, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9197, + "fields": { + "id_car_model": 1794, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9198, + "fields": { + "id_car_model": 1802, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9199, + "fields": { + "id_car_model": 1802, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9200, + "fields": { + "id_car_model": 1802, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9201, + "fields": { + "id_car_model": 1803, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9202, + "fields": { + "id_car_model": 1803, + "name": "Open Deck pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9204, + "fields": { + "id_car_model": 1799, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9205, + "fields": { + "id_car_model": 1799, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9206, + "fields": { + "id_car_model": 1799, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9207, + "fields": { + "id_car_model": 1809, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9208, + "fields": { + "id_car_model": 1811, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9209, + "fields": { + "id_car_model": 1811, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9210, + "fields": { + "id_car_model": 1817, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9211, + "fields": { + "id_car_model": 1817, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9212, + "fields": { + "id_car_model": 1817, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9213, + "fields": { + "id_car_model": 1817, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9215, + "fields": { + "id_car_model": 1821, + "name": "SF liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9216, + "fields": { + "id_car_model": 1821, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9217, + "fields": { + "id_car_model": 1821, + "name": "EXiV Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9218, + "fields": { + "id_car_model": 1821, + "name": "EXiV Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9220, + "fields": { + "id_car_model": 1821, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9221, + "fields": { + "id_car_model": 1821, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9222, + "fields": { + "id_car_model": 1821, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9223, + "fields": { + "id_car_model": 1821, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9224, + "fields": { + "id_car_model": 1821, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9225, + "fields": { + "id_car_model": 1821, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9229, + "fields": { + "id_car_model": 1815, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9230, + "fields": { + "id_car_model": 1815, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9231, + "fields": { + "id_car_model": 1823, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9232, + "fields": { + "id_car_model": 1823, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9233, + "fields": { + "id_car_model": 1823, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9234, + "fields": { + "id_car_model": 1823, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9237, + "fields": { + "id_car_model": 1825, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9238, + "fields": { + "id_car_model": 1825, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9239, + "fields": { + "id_car_model": 1825, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9240, + "fields": { + "id_car_model": 1825, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9241, + "fields": { + "id_car_model": 1825, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9246, + "fields": { + "id_car_model": 1840, + "name": "Hybrid crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9247, + "fields": { + "id_car_model": 1840, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9248, + "fields": { + "id_car_model": 1841, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9249, + "fields": { + "id_car_model": 1841, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9250, + "fields": { + "id_car_model": 1841, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9251, + "fields": { + "id_car_model": 1841, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9252, + "fields": { + "id_car_model": 1847, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9253, + "fields": { + "id_car_model": 1831, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9254, + "fields": { + "id_car_model": 1831, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9255, + "fields": { + "id_car_model": 1850, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9256, + "fields": { + "id_car_model": 1850, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9257, + "fields": { + "id_car_model": 1850, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9258, + "fields": { + "id_car_model": 1850, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9259, + "fields": { + "id_car_model": 1850, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9260, + "fields": { + "id_car_model": 1850, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9267, + "fields": { + "id_car_model": 1871, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9268, + "fields": { + "id_car_model": 1871, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9269, + "fields": { + "id_car_model": 1871, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9270, + "fields": { + "id_car_model": 1871, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9271, + "fields": { + "id_car_model": 1871, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9272, + "fields": { + "id_car_model": 1871, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9273, + "fields": { + "id_car_model": 1871, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9274, + "fields": { + "id_car_model": 1871, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9275, + "fields": { + "id_car_model": 1871, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9276, + "fields": { + "id_car_model": 1871, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9277, + "fields": { + "id_car_model": 1871, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9278, + "fields": { + "id_car_model": 1871, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9279, + "fields": { + "id_car_model": 1871, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9280, + "fields": { + "id_car_model": 1871, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9281, + "fields": { + "id_car_model": 1871, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9282, + "fields": { + "id_car_model": 1871, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9283, + "fields": { + "id_car_model": 1871, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9284, + "fields": { + "id_car_model": 1871, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9285, + "fields": { + "id_car_model": 1871, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9287, + "fields": { + "id_car_model": 1877, + "name": "Vauxhall Corsa B Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9288, + "fields": { + "id_car_model": 1877, + "name": "Vauxhall Corsa B Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9289, + "fields": { + "id_car_model": 1869, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9292, + "fields": { + "id_car_model": 1885, + "name": "Vauxhall Tigra A", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9294, + "fields": { + "id_car_model": 1891, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9295, + "fields": { + "id_car_model": 1889, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9296, + "fields": { + "id_car_model": 1889, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9297, + "fields": { + "id_car_model": 1893, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9298, + "fields": { + "id_car_model": 1897, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9299, + "fields": { + "id_car_model": 1905, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9300, + "fields": { + "id_car_model": 1907, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9301, + "fields": { + "id_car_model": 1899, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9302, + "fields": { + "id_car_model": 1903, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9303, + "fields": { + "id_car_model": 1911, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9304, + "fields": { + "id_car_model": 1915, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9305, + "fields": { + "id_car_model": 1909, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9306, + "fields": { + "id_car_model": 1917, + "name": "R36 Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9307, + "fields": { + "id_car_model": 1917, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9308, + "fields": { + "id_car_model": 1917, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9309, + "fields": { + "id_car_model": 1917, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9310, + "fields": { + "id_car_model": 1917, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9311, + "fields": { + "id_car_model": 1917, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9312, + "fields": { + "id_car_model": 1917, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9314, + "fields": { + "id_car_model": 1917, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9315, + "fields": { + "id_car_model": 1917, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9316, + "fields": { + "id_car_model": 1917, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9317, + "fields": { + "id_car_model": 1917, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9319, + "fields": { + "id_car_model": 1919, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9321, + "fields": { + "id_car_model": 1921, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9322, + "fields": { + "id_car_model": 1921, + "name": "Classic Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9324, + "fields": { + "id_car_model": 1921, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9327, + "fields": { + "id_car_model": 1921, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9328, + "fields": { + "id_car_model": 1921, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9329, + "fields": { + "id_car_model": 1921, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9364, + "fields": { + "id_car_model": 2005, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9369, + "fields": { + "id_car_model": 2003, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9372, + "fields": { + "id_car_model": 2023, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9374, + "fields": { + "id_car_model": 2017, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9375, + "fields": { + "id_car_model": 2025, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9376, + "fields": { + "id_car_model": 2029, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9377, + "fields": { + "id_car_model": 2030, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9378, + "fields": { + "id_car_model": 2033, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9379, + "fields": { + "id_car_model": 2035, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9380, + "fields": { + "id_car_model": 2021, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9381, + "fields": { + "id_car_model": 2037, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9382, + "fields": { + "id_car_model": 2041, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9383, + "fields": { + "id_car_model": 2038, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9384, + "fields": { + "id_car_model": 2039, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9385, + "fields": { + "id_car_model": 2042, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9386, + "fields": { + "id_car_model": 2048, + "name": "Limousine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9387, + "fields": { + "id_car_model": 2049, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9388, + "fields": { + "id_car_model": 2052, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9390, + "fields": { + "id_car_model": 2032, + "name": "Sedan 311055", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9391, + "fields": { + "id_car_model": 2043, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9392, + "fields": { + "id_car_model": 2074, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9394, + "fields": { + "id_car_model": 2059, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9395, + "fields": { + "id_car_model": 2057, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9396, + "fields": { + "id_car_model": 2058, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9397, + "fields": { + "id_car_model": 2060, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9398, + "fields": { + "id_car_model": 2063, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9399, + "fields": { + "id_car_model": 2064, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9401, + "fields": { + "id_car_model": 2062, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9402, + "fields": { + "id_car_model": 2065, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9403, + "fields": { + "id_car_model": 2069, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9404, + "fields": { + "id_car_model": 2070, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9405, + "fields": { + "id_car_model": 2068, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9406, + "fields": { + "id_car_model": 2071, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9408, + "fields": { + "id_car_model": 2075, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9409, + "fields": { + "id_car_model": 2076, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9410, + "fields": { + "id_car_model": 2072, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9411, + "fields": { + "id_car_model": 2073, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9413, + "fields": { + "id_car_model": 2080, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9414, + "fields": { + "id_car_model": 2081, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9415, + "fields": { + "id_car_model": 2051, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9417, + "fields": { + "id_car_model": 2082, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9419, + "fields": { + "id_car_model": 2086, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9420, + "fields": { + "id_car_model": 2087, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9421, + "fields": { + "id_car_model": 2061, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9422, + "fields": { + "id_car_model": 2077, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9423, + "fields": { + "id_car_model": 2088, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9424, + "fields": { + "id_car_model": 2089, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9425, + "fields": { + "id_car_model": 2092, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9427, + "fields": { + "id_car_model": 2094, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9428, + "fields": { + "id_car_model": 18972, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9429, + "fields": { + "id_car_model": 2096, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9430, + "fields": { + "id_car_model": 2097, + "name": "SUV 5-doors Simbir", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9431, + "fields": { + "id_car_model": 2100, + "name": "Sport SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9432, + "fields": { + "id_car_model": 2103, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9434, + "fields": { + "id_car_model": 2105, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9435, + "fields": { + "id_car_model": 2101, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9436, + "fields": { + "id_car_model": 2102, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9437, + "fields": { + "id_car_model": 2108, + "name": "Volt", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9438, + "fields": { + "id_car_model": 2109, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9439, + "fields": { + "id_car_model": 2110, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9440, + "fields": { + "id_car_model": 2111, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9441, + "fields": { + "id_car_model": 2084, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9442, + "fields": { + "id_car_model": 2106, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9443, + "fields": { + "id_car_model": 2113, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9444, + "fields": { + "id_car_model": 2114, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9445, + "fields": { + "id_car_model": 2117, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9446, + "fields": { + "id_car_model": 2117, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9447, + "fields": { + "id_car_model": 2107, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9448, + "fields": { + "id_car_model": 2115, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9449, + "fields": { + "id_car_model": 2116, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9450, + "fields": { + "id_car_model": 2118, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9451, + "fields": { + "id_car_model": 2121, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9452, + "fields": { + "id_car_model": 2121, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9453, + "fields": { + "id_car_model": 2121, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9456, + "fields": { + "id_car_model": 2121, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9457, + "fields": { + "id_car_model": 2122, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9458, + "fields": { + "id_car_model": 2122, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9459, + "fields": { + "id_car_model": 2112, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9460, + "fields": { + "id_car_model": 2124, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9461, + "fields": { + "id_car_model": 2124, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9462, + "fields": { + "id_car_model": 2124, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9463, + "fields": { + "id_car_model": 2128, + "name": "Nighway star minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9464, + "fields": { + "id_car_model": 2129, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9465, + "fields": { + "id_car_model": 2129, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9466, + "fields": { + "id_car_model": 2130, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9467, + "fields": { + "id_car_model": 2130, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9468, + "fields": { + "id_car_model": 2130, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9469, + "fields": { + "id_car_model": 2119, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9470, + "fields": { + "id_car_model": 2120, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9471, + "fields": { + "id_car_model": 2120, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9472, + "fields": { + "id_car_model": 2131, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9473, + "fields": { + "id_car_model": 2131, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9474, + "fields": { + "id_car_model": 2131, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9475, + "fields": { + "id_car_model": 2132, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9476, + "fields": { + "id_car_model": 2132, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9477, + "fields": { + "id_car_model": 2132, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9478, + "fields": { + "id_car_model": 2132, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9479, + "fields": { + "id_car_model": 2133, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9480, + "fields": { + "id_car_model": 2134, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9481, + "fields": { + "id_car_model": 2134, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9482, + "fields": { + "id_car_model": 2134, + "name": "GT Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9483, + "fields": { + "id_car_model": 2134, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9484, + "fields": { + "id_car_model": 2134, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9485, + "fields": { + "id_car_model": 2134, + "name": "GT-R Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9486, + "fields": { + "id_car_model": 2134, + "name": "GTR Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9487, + "fields": { + "id_car_model": 2134, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9488, + "fields": { + "id_car_model": 2134, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9489, + "fields": { + "id_car_model": 2134, + "name": "GTS-R Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9490, + "fields": { + "id_car_model": 2134, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9491, + "fields": { + "id_car_model": 2134, + "name": "RS-X Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9492, + "fields": { + "id_car_model": 2135, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9493, + "fields": { + "id_car_model": 2136, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9494, + "fields": { + "id_car_model": 2136, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9495, + "fields": { + "id_car_model": 2137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9496, + "fields": { + "id_car_model": 2137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9497, + "fields": { + "id_car_model": 2137, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9498, + "fields": { + "id_car_model": 2137, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9499, + "fields": { + "id_car_model": 2137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9500, + "fields": { + "id_car_model": 2137, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9501, + "fields": { + "id_car_model": 2137, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9502, + "fields": { + "id_car_model": 2137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9503, + "fields": { + "id_car_model": 2137, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9504, + "fields": { + "id_car_model": 2137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9505, + "fields": { + "id_car_model": 2137, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9506, + "fields": { + "id_car_model": 2137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9507, + "fields": { + "id_car_model": 2137, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9508, + "fields": { + "id_car_model": 2137, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9509, + "fields": { + "id_car_model": 2138, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9510, + "fields": { + "id_car_model": 2138, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9511, + "fields": { + "id_car_model": 2141, + "name": "Sedan Latio", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9512, + "fields": { + "id_car_model": 2141, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9513, + "fields": { + "id_car_model": 2142, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9514, + "fields": { + "id_car_model": 2144, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9515, + "fields": { + "id_car_model": 2144, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9516, + "fields": { + "id_car_model": 2144, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9517, + "fields": { + "id_car_model": 2139, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9518, + "fields": { + "id_car_model": 2139, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9519, + "fields": { + "id_car_model": 2139, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9520, + "fields": { + "id_car_model": 2139, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9521, + "fields": { + "id_car_model": 2140, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9522, + "fields": { + "id_car_model": 2145, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9523, + "fields": { + "id_car_model": 2145, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9524, + "fields": { + "id_car_model": 2146, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9525, + "fields": { + "id_car_model": 2146, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9526, + "fields": { + "id_car_model": 2147, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9527, + "fields": { + "id_car_model": 2150, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9528, + "fields": { + "id_car_model": 2150, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9529, + "fields": { + "id_car_model": 2150, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9530, + "fields": { + "id_car_model": 2150, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9531, + "fields": { + "id_car_model": 2150, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9532, + "fields": { + "id_car_model": 2150, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9533, + "fields": { + "id_car_model": 2150, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9534, + "fields": { + "id_car_model": 2126, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9535, + "fields": { + "id_car_model": 2148, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9536, + "fields": { + "id_car_model": 2148, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9537, + "fields": { + "id_car_model": 2152, + "name": "Aerial minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9539, + "fields": { + "id_car_model": 2155, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9540, + "fields": { + "id_car_model": 2151, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9542, + "fields": { + "id_car_model": 2157, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9543, + "fields": { + "id_car_model": 2159, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9544, + "fields": { + "id_car_model": 2161, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9545, + "fields": { + "id_car_model": 2156, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9546, + "fields": { + "id_car_model": 2156, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9547, + "fields": { + "id_car_model": 2156, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9548, + "fields": { + "id_car_model": 2160, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9549, + "fields": { + "id_car_model": 2163, + "name": "S minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9550, + "fields": { + "id_car_model": 2165, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9551, + "fields": { + "id_car_model": 2166, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9552, + "fields": { + "id_car_model": 2127, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9553, + "fields": { + "id_car_model": 2162, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9554, + "fields": { + "id_car_model": 2164, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9555, + "fields": { + "id_car_model": 2168, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9556, + "fields": { + "id_car_model": 2168, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9557, + "fields": { + "id_car_model": 2170, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9559, + "fields": { + "id_car_model": 2170, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9561, + "fields": { + "id_car_model": 2167, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9562, + "fields": { + "id_car_model": 2169, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9563, + "fields": { + "id_car_model": 2173, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9564, + "fields": { + "id_car_model": 2175, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9565, + "fields": { + "id_car_model": 2176, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9566, + "fields": { + "id_car_model": 2178, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9567, + "fields": { + "id_car_model": 2158, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9568, + "fields": { + "id_car_model": 2172, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9569, + "fields": { + "id_car_model": 2174, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9570, + "fields": { + "id_car_model": 2180, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9571, + "fields": { + "id_car_model": 2181, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9572, + "fields": { + "id_car_model": 2184, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9573, + "fields": { + "id_car_model": 2177, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9574, + "fields": { + "id_car_model": 2177, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9576, + "fields": { + "id_car_model": 2177, + "name": "Crossover 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9577, + "fields": { + "id_car_model": 2177, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9578, + "fields": { + "id_car_model": 2177, + "name": "Crossover 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9579, + "fields": { + "id_car_model": 2183, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9580, + "fields": { + "id_car_model": 2185, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9581, + "fields": { + "id_car_model": 2185, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9582, + "fields": { + "id_car_model": 2186, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9583, + "fields": { + "id_car_model": 2189, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9584, + "fields": { + "id_car_model": 2190, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9585, + "fields": { + "id_car_model": 2190, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9586, + "fields": { + "id_car_model": 2187, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9587, + "fields": { + "id_car_model": 2187, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9588, + "fields": { + "id_car_model": 2187, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9589, + "fields": { + "id_car_model": 2188, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9590, + "fields": { + "id_car_model": 2191, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9591, + "fields": { + "id_car_model": 2194, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9592, + "fields": { + "id_car_model": 2194, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9593, + "fields": { + "id_car_model": 2194, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9594, + "fields": { + "id_car_model": 2194, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9595, + "fields": { + "id_car_model": 2194, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9596, + "fields": { + "id_car_model": 2194, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9597, + "fields": { + "id_car_model": 2195, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9598, + "fields": { + "id_car_model": 2192, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9599, + "fields": { + "id_car_model": 2192, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9600, + "fields": { + "id_car_model": 2192, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9601, + "fields": { + "id_car_model": 2193, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9602, + "fields": { + "id_car_model": 2196, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9603, + "fields": { + "id_car_model": 2197, + "name": "Regular pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9604, + "fields": { + "id_car_model": 2197, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9605, + "fields": { + "id_car_model": 2197, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9606, + "fields": { + "id_car_model": 2200, + "name": "Double Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9607, + "fields": { + "id_car_model": 2200, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9608, + "fields": { + "id_car_model": 2200, + "name": "Crew Max pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9609, + "fields": { + "id_car_model": 2200, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9610, + "fields": { + "id_car_model": 2200, + "name": "Access Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9611, + "fields": { + "id_car_model": 2201, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9612, + "fields": { + "id_car_model": 2198, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9613, + "fields": { + "id_car_model": 2198, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9614, + "fields": { + "id_car_model": 2198, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9616, + "fields": { + "id_car_model": 2198, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9617, + "fields": { + "id_car_model": 2198, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9618, + "fields": { + "id_car_model": 2199, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9619, + "fields": { + "id_car_model": 2199, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9620, + "fields": { + "id_car_model": 2202, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9621, + "fields": { + "id_car_model": 2205, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9622, + "fields": { + "id_car_model": 2206, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9623, + "fields": { + "id_car_model": 2179, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9624, + "fields": { + "id_car_model": 2207, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9625, + "fields": { + "id_car_model": 2208, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9626, + "fields": { + "id_car_model": 2208, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9627, + "fields": { + "id_car_model": 2209, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9628, + "fields": { + "id_car_model": 2209, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9629, + "fields": { + "id_car_model": 2209, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9630, + "fields": { + "id_car_model": 2209, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9631, + "fields": { + "id_car_model": 2209, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9632, + "fields": { + "id_car_model": 2212, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9633, + "fields": { + "id_car_model": 2204, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9634, + "fields": { + "id_car_model": 2210, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9635, + "fields": { + "id_car_model": 2210, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9637, + "fields": { + "id_car_model": 2211, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9638, + "fields": { + "id_car_model": 2215, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9639, + "fields": { + "id_car_model": 2215, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9640, + "fields": { + "id_car_model": 2216, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9641, + "fields": { + "id_car_model": 2217, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9642, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9643, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9644, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9645, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9646, + "fields": { + "id_car_model": 2203, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9647, + "fields": { + "id_car_model": 2213, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9648, + "fields": { + "id_car_model": 2214, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 9649, + "fields": { + "id_car_model": 2218, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10717, + "fields": { + "id_car_model": 825, + "name": "Limousine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10718, + "fields": { + "id_car_model": 1917, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10719, + "fields": { + "id_car_model": 1921, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10720, + "fields": { + "id_car_model": 1921, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10721, + "fields": { + "id_car_model": 1921, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10722, + "fields": { + "id_car_model": 1923, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10723, + "fields": { + "id_car_model": 1925, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10724, + "fields": { + "id_car_model": 1927, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10725, + "fields": { + "id_car_model": 1929, + "name": "Compactvan Cross", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10726, + "fields": { + "id_car_model": 1929, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10727, + "fields": { + "id_car_model": 1933, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10728, + "fields": { + "id_car_model": 1935, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10729, + "fields": { + "id_car_model": 1939, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10730, + "fields": { + "id_car_model": 1941, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10731, + "fields": { + "id_car_model": 1945, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10732, + "fields": { + "id_car_model": 1949, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10733, + "fields": { + "id_car_model": 1951, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10734, + "fields": { + "id_car_model": 1953, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10735, + "fields": { + "id_car_model": 1955, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10736, + "fields": { + "id_car_model": 1955, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10737, + "fields": { + "id_car_model": 1957, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10738, + "fields": { + "id_car_model": 1959, + "name": "Cross Country wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10739, + "fields": { + "id_car_model": 1961, + "name": "V90", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10740, + "fields": { + "id_car_model": 1963, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10741, + "fields": { + "id_car_model": 1965, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10742, + "fields": { + "id_car_model": 1967, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10743, + "fields": { + "id_car_model": 1971, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10744, + "fields": { + "id_car_model": 1973, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10745, + "fields": { + "id_car_model": 1975, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10746, + "fields": { + "id_car_model": 1977, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10747, + "fields": { + "id_car_model": 1979, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10749, + "fields": { + "id_car_model": 18970, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10750, + "fields": { + "id_car_model": 18971, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10751, + "fields": { + "id_car_model": 1987, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10753, + "fields": { + "id_car_model": 1991, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10754, + "fields": { + "id_car_model": 1993, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10755, + "fields": { + "id_car_model": 1995, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10756, + "fields": { + "id_car_model": 1997, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10758, + "fields": { + "id_car_model": 2007, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10760, + "fields": { + "id_car_model": 2220, + "name": "Pickup One-and-a-half cabin Double Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10761, + "fields": { + "id_car_model": 2220, + "name": "Pickup Double cabin Crew Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10762, + "fields": { + "id_car_model": 2220, + "name": "Chevrolet Silverado III (K2XX) Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10763, + "fields": { + "id_car_model": 2220, + "name": "Extended Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10764, + "fields": { + "id_car_model": 2220, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10766, + "fields": { + "id_car_model": 2220, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10769, + "fields": { + "id_car_model": 2221, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10771, + "fields": { + "id_car_model": 2222, + "name": "Van 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10772, + "fields": { + "id_car_model": 2222, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10774, + "fields": { + "id_car_model": 2224, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10775, + "fields": { + "id_car_model": 2225, + "name": "Minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10776, + "fields": { + "id_car_model": 2225, + "name": "Minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10777, + "fields": { + "id_car_model": 2225, + "name": "Mixto minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10778, + "fields": { + "id_car_model": 2226, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10780, + "fields": { + "id_car_model": 2228, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10781, + "fields": { + "id_car_model": 2228, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10782, + "fields": { + "id_car_model": 2229, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10783, + "fields": { + "id_car_model": 2229, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10784, + "fields": { + "id_car_model": 2230, + "name": "Combi van 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10785, + "fields": { + "id_car_model": 1717, + "name": "WRX Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10786, + "fields": { + "id_car_model": 2232, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10787, + "fields": { + "id_car_model": 2233, + "name": "DoubleCab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10788, + "fields": { + "id_car_model": 2233, + "name": "SingleCab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10791, + "fields": { + "id_car_model": 2235, + "name": "Volkswagen Caravelle Caravelle T5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10796, + "fields": { + "id_car_model": 1374, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10797, + "fields": { + "id_car_model": 114, + "name": "S roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10798, + "fields": { + "id_car_model": 701, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10800, + "fields": { + "id_car_model": 701, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10801, + "fields": { + "id_car_model": 849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10802, + "fields": { + "id_car_model": 20349, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10803, + "fields": { + "id_car_model": 2237, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10805, + "fields": { + "id_car_model": 2239, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10806, + "fields": { + "id_car_model": 2240, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10807, + "fields": { + "id_car_model": 2241, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10808, + "fields": { + "id_car_model": 2241, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10809, + "fields": { + "id_car_model": 2242, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10810, + "fields": { + "id_car_model": 2243, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10811, + "fields": { + "id_car_model": 2243, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10812, + "fields": { + "id_car_model": 2243, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10814, + "fields": { + "id_car_model": 2245, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10815, + "fields": { + "id_car_model": 2245, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10816, + "fields": { + "id_car_model": 2246, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10817, + "fields": { + "id_car_model": 352, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10818, + "fields": { + "id_car_model": 352, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10819, + "fields": { + "id_car_model": 352, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10820, + "fields": { + "id_car_model": 352, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10822, + "fields": { + "id_car_model": 1597, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10823, + "fields": { + "id_car_model": 1597, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10824, + "fields": { + "id_car_model": 2247, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10825, + "fields": { + "id_car_model": 2248, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10826, + "fields": { + "id_car_model": 2248, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10827, + "fields": { + "id_car_model": 2249, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10828, + "fields": { + "id_car_model": 18962, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10829, + "fields": { + "id_car_model": 2251, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10830, + "fields": { + "id_car_model": 2251, + "name": "SUV 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 10831, + "fields": { + "id_car_model": 2251, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14595, + "fields": { + "id_car_model": 2199, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14596, + "fields": { + "id_car_model": 2252, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14597, + "fields": { + "id_car_model": 22971, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14600, + "fields": { + "id_car_model": 2256, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14601, + "fields": { + "id_car_model": 2257, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14602, + "fields": { + "id_car_model": 2258, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14603, + "fields": { + "id_car_model": 2259, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14604, + "fields": { + "id_car_model": 2260, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14605, + "fields": { + "id_car_model": 2261, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14626, + "fields": { + "id_car_model": 214, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14627, + "fields": { + "id_car_model": 318, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14628, + "fields": { + "id_car_model": 318, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14629, + "fields": { + "id_car_model": 318, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14630, + "fields": { + "id_car_model": 664, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14631, + "fields": { + "id_car_model": 870, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14632, + "fields": { + "id_car_model": 870, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14633, + "fields": { + "id_car_model": 1048, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14636, + "fields": { + "id_car_model": 20347, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14637, + "fields": { + "id_car_model": 1260, + "name": "Hatchback 3-doors JCW", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14640, + "fields": { + "id_car_model": 1607, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14641, + "fields": { + "id_car_model": 1691, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14642, + "fields": { + "id_car_model": 1691, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14643, + "fields": { + "id_car_model": 1692, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14644, + "fields": { + "id_car_model": 1692, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14646, + "fields": { + "id_car_model": 1723, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14647, + "fields": { + "id_car_model": 1921, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14649, + "fields": { + "id_car_model": 2001, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14650, + "fields": { + "id_car_model": 2000, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14651, + "fields": { + "id_car_model": 2018, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14652, + "fields": { + "id_car_model": 2018, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14653, + "fields": { + "id_car_model": 2018, + "name": "Sport hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14654, + "fields": { + "id_car_model": 2018, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14655, + "fields": { + "id_car_model": 2018, + "name": "2170 Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14656, + "fields": { + "id_car_model": 2018, + "name": "Sport hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14657, + "fields": { + "id_car_model": 2018, + "name": "2173 hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14658, + "fields": { + "id_car_model": 2018, + "name": "2172 hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14660, + "fields": { + "id_car_model": 87, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14661, + "fields": { + "id_car_model": 87, + "name": "Avant wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14662, + "fields": { + "id_car_model": 88, + "name": "Sportback liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14663, + "fields": { + "id_car_model": 88, + "name": "Sportback liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14664, + "fields": { + "id_car_model": 103, + "name": "Avant wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14665, + "fields": { + "id_car_model": 104, + "name": "Sportback liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14666, + "fields": { + "id_car_model": 104, + "name": "Sportback liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14667, + "fields": { + "id_car_model": 110, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14668, + "fields": { + "id_car_model": 110, + "name": "Avant wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14669, + "fields": { + "id_car_model": 111, + "name": "Sportback liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14670, + "fields": { + "id_car_model": 111, + "name": "Sportback liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14671, + "fields": { + "id_car_model": 379, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14674, + "fields": { + "id_car_model": 625, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14675, + "fields": { + "id_car_model": 629, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14676, + "fields": { + "id_car_model": 683, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14678, + "fields": { + "id_car_model": 774, + "name": "Hybrid hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14679, + "fields": { + "id_car_model": 1156, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14680, + "fields": { + "id_car_model": 1220, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14681, + "fields": { + "id_car_model": 1220, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14682, + "fields": { + "id_car_model": 1220, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14685, + "fields": { + "id_car_model": 1353, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14686, + "fields": { + "id_car_model": 1353, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14687, + "fields": { + "id_car_model": 1471, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14688, + "fields": { + "id_car_model": 1472, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14689, + "fields": { + "id_car_model": 1483, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14690, + "fields": { + "id_car_model": 1494, + "name": "wagon 5-doors RXH", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14692, + "fields": { + "id_car_model": 1494, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14693, + "fields": { + "id_car_model": 1494, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14694, + "fields": { + "id_car_model": 1546, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14695, + "fields": { + "id_car_model": 1603, + "name": "Stepway hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14696, + "fields": { + "id_car_model": 1603, + "name": "Stepway hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14697, + "fields": { + "id_car_model": 1652, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14698, + "fields": { + "id_car_model": 1658, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14699, + "fields": { + "id_car_model": 1658, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14700, + "fields": { + "id_car_model": 1787, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14701, + "fields": { + "id_car_model": 1810, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14702, + "fields": { + "id_car_model": 1889, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14703, + "fields": { + "id_car_model": 1924, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14704, + "fields": { + "id_car_model": 2122, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14707, + "fields": { + "id_car_model": 2265, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14708, + "fields": { + "id_car_model": 2266, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14709, + "fields": { + "id_car_model": 2267, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14710, + "fields": { + "id_car_model": 2268, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14711, + "fields": { + "id_car_model": 2269, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14712, + "fields": { + "id_car_model": 2270, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14713, + "fields": { + "id_car_model": 2271, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14715, + "fields": { + "id_car_model": 84, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14718, + "fields": { + "id_car_model": 668, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14719, + "fields": { + "id_car_model": 668, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14720, + "fields": { + "id_car_model": 714, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14722, + "fields": { + "id_car_model": 1292, + "name": "JDM wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14723, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14724, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14726, + "fields": { + "id_car_model": 1736, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14727, + "fields": { + "id_car_model": 1736, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14728, + "fields": { + "id_car_model": 1917, + "name": "Alltrack wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14729, + "fields": { + "id_car_model": 1917, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14730, + "fields": { + "id_car_model": 1928, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14731, + "fields": { + "id_car_model": 2100, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14732, + "fields": { + "id_car_model": 2149, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14733, + "fields": { + "id_car_model": 2149, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14734, + "fields": { + "id_car_model": 2217, + "name": "L hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14735, + "fields": { + "id_car_model": 2217, + "name": "L Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14736, + "fields": { + "id_car_model": 2279, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14737, + "fields": { + "id_car_model": 2279, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14738, + "fields": { + "id_car_model": 2225, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14739, + "fields": { + "id_car_model": 2273, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14740, + "fields": { + "id_car_model": 2273, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14741, + "fields": { + "id_car_model": 2227, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14742, + "fields": { + "id_car_model": 2227, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14743, + "fields": { + "id_car_model": 2281, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14744, + "fields": { + "id_car_model": 2236, + "name": "Kasten van 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14745, + "fields": { + "id_car_model": 2236, + "name": "Single Cab Board 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14746, + "fields": { + "id_car_model": 2274, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14747, + "fields": { + "id_car_model": 2274, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14748, + "fields": { + "id_car_model": 2274, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14749, + "fields": { + "id_car_model": 2280, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14750, + "fields": { + "id_car_model": 714, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14751, + "fields": { + "id_car_model": 714, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14752, + "fields": { + "id_car_model": 2277, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14754, + "fields": { + "id_car_model": 2278, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14755, + "fields": { + "id_car_model": 2282, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14756, + "fields": { + "id_car_model": 11, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14757, + "fields": { + "id_car_model": 13, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14760, + "fields": { + "id_car_model": 18, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14761, + "fields": { + "id_car_model": 18, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14762, + "fields": { + "id_car_model": 18, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14763, + "fields": { + "id_car_model": 63, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14764, + "fields": { + "id_car_model": 63, + "name": "Volante cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14766, + "fields": { + "id_car_model": 93, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14767, + "fields": { + "id_car_model": 98, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14768, + "fields": { + "id_car_model": 98, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14769, + "fields": { + "id_car_model": 114, + "name": "Roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14770, + "fields": { + "id_car_model": 348, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14771, + "fields": { + "id_car_model": 348, + "name": "First minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14772, + "fields": { + "id_car_model": 352, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14773, + "fields": { + "id_car_model": 352, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14774, + "fields": { + "id_car_model": 352, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14775, + "fields": { + "id_car_model": 352, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14777, + "fields": { + "id_car_model": 354, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14779, + "fields": { + "id_car_model": 358, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14780, + "fields": { + "id_car_model": 360, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14781, + "fields": { + "id_car_model": 360, + "name": "Break wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14782, + "fields": { + "id_car_model": 373, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14783, + "fields": { + "id_car_model": 373, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14784, + "fields": { + "id_car_model": 624, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14785, + "fields": { + "id_car_model": 624, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14786, + "fields": { + "id_car_model": 637, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14787, + "fields": { + "id_car_model": 637, + "name": "ST hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14788, + "fields": { + "id_car_model": 637, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14789, + "fields": { + "id_car_model": 862, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14790, + "fields": { + "id_car_model": 867, + "name": "M45 Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14792, + "fields": { + "id_car_model": 19747, + "name": "Infiniti QX II Restyling", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14793, + "fields": { + "id_car_model": 923, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14794, + "fields": { + "id_car_model": 923, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14795, + "fields": { + "id_car_model": 923, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14796, + "fields": { + "id_car_model": 926, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14797, + "fields": { + "id_car_model": 927, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14798, + "fields": { + "id_car_model": 949, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14799, + "fields": { + "id_car_model": 956, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14800, + "fields": { + "id_car_model": 956, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14801, + "fields": { + "id_car_model": 960, + "name": "Prime crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14803, + "fields": { + "id_car_model": 1004, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14806, + "fields": { + "id_car_model": 1008, + "name": "Crossover 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14807, + "fields": { + "id_car_model": 1008, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14808, + "fields": { + "id_car_model": 1010, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14809, + "fields": { + "id_car_model": 1010, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14810, + "fields": { + "id_car_model": 1020, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14811, + "fields": { + "id_car_model": 1021, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14812, + "fields": { + "id_car_model": 1021, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14813, + "fields": { + "id_car_model": 1026, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14814, + "fields": { + "id_car_model": 1027, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14815, + "fields": { + "id_car_model": 1029, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14816, + "fields": { + "id_car_model": 1030, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14817, + "fields": { + "id_car_model": 1040, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14818, + "fields": { + "id_car_model": 1040, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14819, + "fields": { + "id_car_model": 1148, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14820, + "fields": { + "id_car_model": 20343, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14821, + "fields": { + "id_car_model": 1440, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14822, + "fields": { + "id_car_model": 1499, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14823, + "fields": { + "id_car_model": 1499, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14824, + "fields": { + "id_car_model": 1667, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14825, + "fields": { + "id_car_model": 1673, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14826, + "fields": { + "id_car_model": 1673, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14827, + "fields": { + "id_car_model": 1674, + "name": "FR hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14828, + "fields": { + "id_car_model": 1683, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14830, + "fields": { + "id_car_model": 1683, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14832, + "fields": { + "id_car_model": 1683, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14833, + "fields": { + "id_car_model": 1791, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14834, + "fields": { + "id_car_model": 1798, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14835, + "fields": { + "id_car_model": 1810, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14836, + "fields": { + "id_car_model": 1842, + "name": "Double Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14837, + "fields": { + "id_car_model": 1842, + "name": "Pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14838, + "fields": { + "id_car_model": 1842, + "name": "Pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14839, + "fields": { + "id_car_model": 1842, + "name": "Xtracab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14841, + "fields": { + "id_car_model": 1924, + "name": "R hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14842, + "fields": { + "id_car_model": 1964, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14844, + "fields": { + "id_car_model": 2015, + "name": "VAZ Granta I Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14845, + "fields": { + "id_car_model": 2015, + "name": "VAZ Granta I Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14847, + "fields": { + "id_car_model": 2183, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14849, + "fields": { + "id_car_model": 2287, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14851, + "fields": { + "id_car_model": 2285, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14852, + "fields": { + "id_car_model": 2235, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14853, + "fields": { + "id_car_model": 2235, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14854, + "fields": { + "id_car_model": 2235, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14855, + "fields": { + "id_car_model": 2289, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14856, + "fields": { + "id_car_model": 2288, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14857, + "fields": { + "id_car_model": 133, + "name": "V8 cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14858, + "fields": { + "id_car_model": 133, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14859, + "fields": { + "id_car_model": 133, + "name": "Supersports Convertible cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14860, + "fields": { + "id_car_model": 133, + "name": "Supersports Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14861, + "fields": { + "id_car_model": 29, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14862, + "fields": { + "id_car_model": 29, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14863, + "fields": { + "id_car_model": 75, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14864, + "fields": { + "id_car_model": 75, + "name": "Avant wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14865, + "fields": { + "id_car_model": 82, + "name": "Sportback hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14866, + "fields": { + "id_car_model": 82, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14867, + "fields": { + "id_car_model": 82, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14868, + "fields": { + "id_car_model": 82, + "name": "Sportback hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14869, + "fields": { + "id_car_model": 82, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14870, + "fields": { + "id_car_model": 82, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14871, + "fields": { + "id_car_model": 82, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14872, + "fields": { + "id_car_model": 84, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14873, + "fields": { + "id_car_model": 84, + "name": "Avant wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14874, + "fields": { + "id_car_model": 87, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14875, + "fields": { + "id_car_model": 87, + "name": "Avant wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14876, + "fields": { + "id_car_model": 89, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14877, + "fields": { + "id_car_model": 89, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14878, + "fields": { + "id_car_model": 89, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14879, + "fields": { + "id_car_model": 91, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14880, + "fields": { + "id_car_model": 91, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14881, + "fields": { + "id_car_model": 107, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14882, + "fields": { + "id_car_model": 107, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14884, + "fields": { + "id_car_model": 110, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14885, + "fields": { + "id_car_model": 110, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14886, + "fields": { + "id_car_model": 112, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14887, + "fields": { + "id_car_model": 112, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14888, + "fields": { + "id_car_model": 114, + "name": "RS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14889, + "fields": { + "id_car_model": 114, + "name": "S Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14915, + "fields": { + "id_car_model": 153, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14916, + "fields": { + "id_car_model": 155, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14917, + "fields": { + "id_car_model": 159, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14918, + "fields": { + "id_car_model": 159, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14920, + "fields": { + "id_car_model": 264, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14921, + "fields": { + "id_car_model": 264, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14922, + "fields": { + "id_car_model": 264, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14923, + "fields": { + "id_car_model": 264, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14924, + "fields": { + "id_car_model": 267, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14925, + "fields": { + "id_car_model": 267, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14926, + "fields": { + "id_car_model": 267, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14927, + "fields": { + "id_car_model": 283, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14928, + "fields": { + "id_car_model": 283, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14929, + "fields": { + "id_car_model": 295, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14930, + "fields": { + "id_car_model": 295, + "name": "SS Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14931, + "fields": { + "id_car_model": 295, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14932, + "fields": { + "id_car_model": 316, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14933, + "fields": { + "id_car_model": 338, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14934, + "fields": { + "id_car_model": 338, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14935, + "fields": { + "id_car_model": 338, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14938, + "fields": { + "id_car_model": 344, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14939, + "fields": { + "id_car_model": 753, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14940, + "fields": { + "id_car_model": 753, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14941, + "fields": { + "id_car_model": 753, + "name": "Tourer wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14942, + "fields": { + "id_car_model": 753, + "name": "US-spec Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14943, + "fields": { + "id_car_model": 753, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14944, + "fields": { + "id_car_model": 753, + "name": "US-spec Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14945, + "fields": { + "id_car_model": 763, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14946, + "fields": { + "id_car_model": 763, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14947, + "fields": { + "id_car_model": 763, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14948, + "fields": { + "id_car_model": 778, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14949, + "fields": { + "id_car_model": 779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14950, + "fields": { + "id_car_model": 779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14951, + "fields": { + "id_car_model": 779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14952, + "fields": { + "id_car_model": 779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14953, + "fields": { + "id_car_model": 780, + "name": "Type R Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14954, + "fields": { + "id_car_model": 780, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14955, + "fields": { + "id_car_model": 780, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14956, + "fields": { + "id_car_model": 782, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14957, + "fields": { + "id_car_model": 782, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14958, + "fields": { + "id_car_model": 783, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14959, + "fields": { + "id_car_model": 784, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14960, + "fields": { + "id_car_model": 794, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14961, + "fields": { + "id_car_model": 794, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14962, + "fields": { + "id_car_model": 795, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14963, + "fields": { + "id_car_model": 801, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14964, + "fields": { + "id_car_model": 803, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14966, + "fields": { + "id_car_model": 804, + "name": "RST minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14967, + "fields": { + "id_car_model": 804, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14968, + "fields": { + "id_car_model": 818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14969, + "fields": { + "id_car_model": 818, + "name": "Liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14970, + "fields": { + "id_car_model": 818, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14971, + "fields": { + "id_car_model": 818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14972, + "fields": { + "id_car_model": 820, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14974, + "fields": { + "id_car_model": 820, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14975, + "fields": { + "id_car_model": 822, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14976, + "fields": { + "id_car_model": 824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14977, + "fields": { + "id_car_model": 824, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14978, + "fields": { + "id_car_model": 828, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14979, + "fields": { + "id_car_model": 831, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14980, + "fields": { + "id_car_model": 831, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14981, + "fields": { + "id_car_model": 833, + "name": "Coupe hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14982, + "fields": { + "id_car_model": 833, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14983, + "fields": { + "id_car_model": 833, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14984, + "fields": { + "id_car_model": 834, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14985, + "fields": { + "id_car_model": 834, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14986, + "fields": { + "id_car_model": 845, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14987, + "fields": { + "id_car_model": 850, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14988, + "fields": { + "id_car_model": 946, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14989, + "fields": { + "id_car_model": 950, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14990, + "fields": { + "id_car_model": 958, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14991, + "fields": { + "id_car_model": 958, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14992, + "fields": { + "id_car_model": 958, + "name": "Leo hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14993, + "fields": { + "id_car_model": 961, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14994, + "fields": { + "id_car_model": 963, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14995, + "fields": { + "id_car_model": 1038, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14996, + "fields": { + "id_car_model": 1038, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14997, + "fields": { + "id_car_model": 1047, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14998, + "fields": { + "id_car_model": 1115, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 14999, + "fields": { + "id_car_model": 1123, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15000, + "fields": { + "id_car_model": 1123, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15001, + "fields": { + "id_car_model": 1124, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15002, + "fields": { + "id_car_model": 1124, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15003, + "fields": { + "id_car_model": 1124, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15004, + "fields": { + "id_car_model": 1124, + "name": "MPS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15005, + "fields": { + "id_car_model": 1125, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15006, + "fields": { + "id_car_model": 1125, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15007, + "fields": { + "id_car_model": 1126, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15008, + "fields": { + "id_car_model": 1127, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15009, + "fields": { + "id_car_model": 1127, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15010, + "fields": { + "id_car_model": 1127, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15011, + "fields": { + "id_car_model": 1127, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15012, + "fields": { + "id_car_model": 1127, + "name": "MPS Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15013, + "fields": { + "id_car_model": 1127, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15014, + "fields": { + "id_car_model": 1161, + "name": "JP-spec minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15015, + "fields": { + "id_car_model": 1163, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15016, + "fields": { + "id_car_model": 1167, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15017, + "fields": { + "id_car_model": 20342, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15018, + "fields": { + "id_car_model": 20342, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15019, + "fields": { + "id_car_model": 20342, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15020, + "fields": { + "id_car_model": 20349, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15021, + "fields": { + "id_car_model": 20349, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15022, + "fields": { + "id_car_model": 20349, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15023, + "fields": { + "id_car_model": 20349, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15024, + "fields": { + "id_car_model": 20349, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15025, + "fields": { + "id_car_model": 20348, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15030, + "fields": { + "id_car_model": 20347, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15031, + "fields": { + "id_car_model": 20350, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15032, + "fields": { + "id_car_model": 20350, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15033, + "fields": { + "id_car_model": 20350, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15034, + "fields": { + "id_car_model": 20350, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15035, + "fields": { + "id_car_model": 20354, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15036, + "fields": { + "id_car_model": 20357, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15037, + "fields": { + "id_car_model": 20357, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15038, + "fields": { + "id_car_model": 20358, + "name": "Minivan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15039, + "fields": { + "id_car_model": 20364, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15041, + "fields": { + "id_car_model": 20364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15042, + "fields": { + "id_car_model": 20362, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15044, + "fields": { + "id_car_model": 20362, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15045, + "fields": { + "id_car_model": 20360, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15046, + "fields": { + "id_car_model": 20360, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15048, + "fields": { + "id_car_model": 22485, + "name": "Wagon minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15049, + "fields": { + "id_car_model": 1293, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15051, + "fields": { + "id_car_model": 1293, + "name": "Fortis Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15052, + "fields": { + "id_car_model": 1293, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15053, + "fields": { + "id_car_model": 1293, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15054, + "fields": { + "id_car_model": 1293, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15056, + "fields": { + "id_car_model": 1423, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15057, + "fields": { + "id_car_model": 1431, + "name": "Tour minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15058, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15059, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15060, + "fields": { + "id_car_model": 1435, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15061, + "fields": { + "id_car_model": 1435, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15062, + "fields": { + "id_car_model": 1438, + "name": "GSi hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15063, + "fields": { + "id_car_model": 1438, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15064, + "fields": { + "id_car_model": 1438, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15065, + "fields": { + "id_car_model": 1438, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15066, + "fields": { + "id_car_model": 1438, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15068, + "fields": { + "id_car_model": 1444, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15069, + "fields": { + "id_car_model": 1444, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15070, + "fields": { + "id_car_model": 1451, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15071, + "fields": { + "id_car_model": 1451, + "name": "OPC wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15072, + "fields": { + "id_car_model": 1451, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15073, + "fields": { + "id_car_model": 1453, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15074, + "fields": { + "id_car_model": 1453, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15075, + "fields": { + "id_car_model": 1588, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15076, + "fields": { + "id_car_model": 1588, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15078, + "fields": { + "id_car_model": 1588, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15079, + "fields": { + "id_car_model": 1588, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15080, + "fields": { + "id_car_model": 1588, + "name": "RS hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15081, + "fields": { + "id_car_model": 1588, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15082, + "fields": { + "id_car_model": 1590, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15083, + "fields": { + "id_car_model": 1590, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15084, + "fields": { + "id_car_model": 1594, + "name": "Express van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15085, + "fields": { + "id_car_model": 1596, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15086, + "fields": { + "id_car_model": 1596, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15087, + "fields": { + "id_car_model": 1596, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15088, + "fields": { + "id_car_model": 1596, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15089, + "fields": { + "id_car_model": 1596, + "name": "Grandtour wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15090, + "fields": { + "id_car_model": 1599, + "name": "Cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15095, + "fields": { + "id_car_model": 1599, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15096, + "fields": { + "id_car_model": 1599, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15098, + "fields": { + "id_car_model": 1599, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15099, + "fields": { + "id_car_model": 1599, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15100, + "fields": { + "id_car_model": 1599, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15101, + "fields": { + "id_car_model": 1599, + "name": "Classic Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15102, + "fields": { + "id_car_model": 1599, + "name": "RS hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15103, + "fields": { + "id_car_model": 1599, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15104, + "fields": { + "id_car_model": 1599, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15105, + "fields": { + "id_car_model": 1604, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15106, + "fields": { + "id_car_model": 1604, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15107, + "fields": { + "id_car_model": 1604, + "name": "Navigator minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15108, + "fields": { + "id_car_model": 1604, + "name": "RX4 minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15109, + "fields": { + "id_car_model": 1606, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15110, + "fields": { + "id_car_model": 1606, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15111, + "fields": { + "id_car_model": 1683, + "name": "Combi Scout wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15113, + "fields": { + "id_car_model": 1716, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15114, + "fields": { + "id_car_model": 1716, + "name": "STi crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15115, + "fields": { + "id_car_model": 1719, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15116, + "fields": { + "id_car_model": 1719, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15117, + "fields": { + "id_car_model": 1719, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15119, + "fields": { + "id_car_model": 1723, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15120, + "fields": { + "id_car_model": 1723, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15121, + "fields": { + "id_car_model": 1724, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15124, + "fields": { + "id_car_model": 1745, + "name": "Crossover 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15125, + "fields": { + "id_car_model": 1745, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15128, + "fields": { + "id_car_model": 1745, + "name": "Suzuki Grand Vitara II Restyling SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15129, + "fields": { + "id_car_model": 1758, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15130, + "fields": { + "id_car_model": 1758, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15131, + "fields": { + "id_car_model": 1758, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15132, + "fields": { + "id_car_model": 1758, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15133, + "fields": { + "id_car_model": 1758, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15134, + "fields": { + "id_car_model": 1759, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15135, + "fields": { + "id_car_model": 1759, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15137, + "fields": { + "id_car_model": 1900, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15138, + "fields": { + "id_car_model": 1912, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15139, + "fields": { + "id_car_model": 1915, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15140, + "fields": { + "id_car_model": 1917, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15141, + "fields": { + "id_car_model": 1917, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15142, + "fields": { + "id_car_model": 1917, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15143, + "fields": { + "id_car_model": 1917, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15144, + "fields": { + "id_car_model": 1917, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15145, + "fields": { + "id_car_model": 1917, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15146, + "fields": { + "id_car_model": 1921, + "name": "GTI hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15148, + "fields": { + "id_car_model": 1921, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15149, + "fields": { + "id_car_model": 1921, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15150, + "fields": { + "id_car_model": 1921, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15151, + "fields": { + "id_car_model": 1925, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15152, + "fields": { + "id_car_model": 1925, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15153, + "fields": { + "id_car_model": 1928, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15154, + "fields": { + "id_car_model": 1952, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15155, + "fields": { + "id_car_model": 1953, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15156, + "fields": { + "id_car_model": 1953, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15157, + "fields": { + "id_car_model": 1955, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15158, + "fields": { + "id_car_model": 1955, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15159, + "fields": { + "id_car_model": 1957, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15160, + "fields": { + "id_car_model": 1960, + "name": "R wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15161, + "fields": { + "id_car_model": 1963, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15162, + "fields": { + "id_car_model": 2148, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15163, + "fields": { + "id_car_model": 2220, + "name": "SS Extended Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15164, + "fields": { + "id_car_model": 2220, + "name": "Regular Cab Chassis 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15166, + "fields": { + "id_car_model": 2294, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15167, + "fields": { + "id_car_model": 2236, + "name": "Pritsche Board 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15168, + "fields": { + "id_car_model": 2235, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15170, + "fields": { + "id_car_model": 2274, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15171, + "fields": { + "id_car_model": 2274, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15172, + "fields": { + "id_car_model": 2290, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15173, + "fields": { + "id_car_model": 2293, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15174, + "fields": { + "id_car_model": 2293, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15175, + "fields": { + "id_car_model": 2293, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15176, + "fields": { + "id_car_model": 2293, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15177, + "fields": { + "id_car_model": 2293, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15178, + "fields": { + "id_car_model": 2293, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15179, + "fields": { + "id_car_model": 2293, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15180, + "fields": { + "id_car_model": 2293, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15181, + "fields": { + "id_car_model": 2293, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15182, + "fields": { + "id_car_model": 2293, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15183, + "fields": { + "id_car_model": 2312, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15184, + "fields": { + "id_car_model": 2310, + "name": "Limousine Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15185, + "fields": { + "id_car_model": 2310, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15186, + "fields": { + "id_car_model": 2309, + "name": "Coupe Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15187, + "fields": { + "id_car_model": 2309, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15188, + "fields": { + "id_car_model": 2309, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15189, + "fields": { + "id_car_model": 2308, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15190, + "fields": { + "id_car_model": 2308, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15191, + "fields": { + "id_car_model": 2307, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15192, + "fields": { + "id_car_model": 2307, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15193, + "fields": { + "id_car_model": 2307, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15194, + "fields": { + "id_car_model": 2306, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15195, + "fields": { + "id_car_model": 2306, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15196, + "fields": { + "id_car_model": 2306, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15197, + "fields": { + "id_car_model": 2305, + "name": "Alpina B9 E28", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15198, + "fields": { + "id_car_model": 2304, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15199, + "fields": { + "id_car_model": 2304, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15200, + "fields": { + "id_car_model": 2304, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15201, + "fields": { + "id_car_model": 2304, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15202, + "fields": { + "id_car_model": 2304, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15203, + "fields": { + "id_car_model": 2303, + "name": "Sedan LWB", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15204, + "fields": { + "id_car_model": 2303, + "name": "Limousine Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15205, + "fields": { + "id_car_model": 2303, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15206, + "fields": { + "id_car_model": 2303, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15207, + "fields": { + "id_car_model": 2303, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15210, + "fields": { + "id_car_model": 2302, + "name": "GranCoupe Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15211, + "fields": { + "id_car_model": 2302, + "name": "Cabrio cabriolet", + "arabic_name": "سطح قابل للطي" + } +}, +{ + "model": "inventory.carserie", + "pk": 15213, + "fields": { + "id_car_model": 2302, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15214, + "fields": { + "id_car_model": 2302, + "name": "Limousine Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15215, + "fields": { + "id_car_model": 2302, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15216, + "fields": { + "id_car_model": 2302, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15219, + "fields": { + "id_car_model": 2301, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15220, + "fields": { + "id_car_model": 2301, + "name": "Limousine Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15221, + "fields": { + "id_car_model": 2300, + "name": "Coupe Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15222, + "fields": { + "id_car_model": 2299, + "name": "Limousine Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15223, + "fields": { + "id_car_model": 2299, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15225, + "fields": { + "id_car_model": 2299, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15226, + "fields": { + "id_car_model": 2299, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15227, + "fields": { + "id_car_model": 2299, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15228, + "fields": { + "id_car_model": 2299, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15229, + "fields": { + "id_car_model": 2299, + "name": "Cabrio cabriolet", + "arabic_name": "سطح قابل للطي" + } +}, +{ + "model": "inventory.carserie", + "pk": 15230, + "fields": { + "id_car_model": 2299, + "name": "Limousine Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15231, + "fields": { + "id_car_model": 2299, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15232, + "fields": { + "id_car_model": 2299, + "name": "Cabrio cabriolet", + "arabic_name": "سطح قابل للطي" + } +}, +{ + "model": "inventory.carserie", + "pk": 15233, + "fields": { + "id_car_model": 2299, + "name": "Limousine Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15234, + "fields": { + "id_car_model": 2299, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15235, + "fields": { + "id_car_model": 2299, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15236, + "fields": { + "id_car_model": 2299, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15237, + "fields": { + "id_car_model": 2299, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15238, + "fields": { + "id_car_model": 2299, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15239, + "fields": { + "id_car_model": 2299, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15240, + "fields": { + "id_car_model": 2298, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15241, + "fields": { + "id_car_model": 2298, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15242, + "fields": { + "id_car_model": 2298, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15243, + "fields": { + "id_car_model": 2297, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15244, + "fields": { + "id_car_model": 2296, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15245, + "fields": { + "id_car_model": 2296, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15246, + "fields": { + "id_car_model": 2296, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15247, + "fields": { + "id_car_model": 2296, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15248, + "fields": { + "id_car_model": 2296, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15249, + "fields": { + "id_car_model": 2292, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15250, + "fields": { + "id_car_model": 2295, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15251, + "fields": { + "id_car_model": 2311, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15254, + "fields": { + "id_car_model": 440, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15255, + "fields": { + "id_car_model": 440, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15258, + "fields": { + "id_car_model": 80, + "name": "Sportback hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15259, + "fields": { + "id_car_model": 80, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15260, + "fields": { + "id_car_model": 80, + "name": "Quattro hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15261, + "fields": { + "id_car_model": 80, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15262, + "fields": { + "id_car_model": 193, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15263, + "fields": { + "id_car_model": 426, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15264, + "fields": { + "id_car_model": 426, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15265, + "fields": { + "id_car_model": 426, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15266, + "fields": { + "id_car_model": 586, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15267, + "fields": { + "id_car_model": 634, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15268, + "fields": { + "id_car_model": 634, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15270, + "fields": { + "id_car_model": 634, + "name": "ST hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15271, + "fields": { + "id_car_model": 634, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15272, + "fields": { + "id_car_model": 652, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15273, + "fields": { + "id_car_model": 652, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15274, + "fields": { + "id_car_model": 652, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15275, + "fields": { + "id_car_model": 664, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15276, + "fields": { + "id_car_model": 664, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15277, + "fields": { + "id_car_model": 761, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15278, + "fields": { + "id_car_model": 761, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15280, + "fields": { + "id_car_model": 761, + "name": "Type-S hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15281, + "fields": { + "id_car_model": 761, + "name": "Sport hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15282, + "fields": { + "id_car_model": 761, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15283, + "fields": { + "id_car_model": 761, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15285, + "fields": { + "id_car_model": 761, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15286, + "fields": { + "id_car_model": 853, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15287, + "fields": { + "id_car_model": 853, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15288, + "fields": { + "id_car_model": 922, + "name": "XKR Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15289, + "fields": { + "id_car_model": 922, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15290, + "fields": { + "id_car_model": 922, + "name": "XKR Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15291, + "fields": { + "id_car_model": 922, + "name": "XKR cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15292, + "fields": { + "id_car_model": 922, + "name": "XKR Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15293, + "fields": { + "id_car_model": 922, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15294, + "fields": { + "id_car_model": 1060, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15295, + "fields": { + "id_car_model": 1255, + "name": "John Cooper Works cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15296, + "fields": { + "id_car_model": 1271, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15297, + "fields": { + "id_car_model": 1271, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15298, + "fields": { + "id_car_model": 1278, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15300, + "fields": { + "id_car_model": 1284, + "name": "CN Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15301, + "fields": { + "id_car_model": 1300, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15302, + "fields": { + "id_car_model": 1301, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15303, + "fields": { + "id_car_model": 1301, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15305, + "fields": { + "id_car_model": 1301, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15307, + "fields": { + "id_car_model": 1536, + "name": "Sport Classic Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15308, + "fields": { + "id_car_model": 1536, + "name": "Speedster cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15310, + "fields": { + "id_car_model": 1536, + "name": "GT3 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15311, + "fields": { + "id_car_model": 1536, + "name": "Turbo Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15312, + "fields": { + "id_car_model": 1536, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15313, + "fields": { + "id_car_model": 1544, + "name": "Roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15314, + "fields": { + "id_car_model": 1544, + "name": "Spyder roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15315, + "fields": { + "id_car_model": 1544, + "name": "Roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15316, + "fields": { + "id_car_model": 1547, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15317, + "fields": { + "id_car_model": 1598, + "name": "wagon 5-doors MCV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15318, + "fields": { + "id_car_model": 1662, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15319, + "fields": { + "id_car_model": 1662, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15320, + "fields": { + "id_car_model": 1668, + "name": "XL minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15321, + "fields": { + "id_car_model": 1668, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15323, + "fields": { + "id_car_model": 1669, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15324, + "fields": { + "id_car_model": 1670, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15325, + "fields": { + "id_car_model": 1686, + "name": "Liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15326, + "fields": { + "id_car_model": 1686, + "name": "Combi wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15327, + "fields": { + "id_car_model": 1689, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15328, + "fields": { + "id_car_model": 1793, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15329, + "fields": { + "id_car_model": 1793, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15330, + "fields": { + "id_car_model": 1799, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15331, + "fields": { + "id_car_model": 1799, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15332, + "fields": { + "id_car_model": 1799, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15333, + "fields": { + "id_car_model": 1799, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15334, + "fields": { + "id_car_model": 1800, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15335, + "fields": { + "id_car_model": 1800, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15336, + "fields": { + "id_car_model": 1800, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15337, + "fields": { + "id_car_model": 1800, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15338, + "fields": { + "id_car_model": 1800, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15339, + "fields": { + "id_car_model": 1800, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15340, + "fields": { + "id_car_model": 1800, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15341, + "fields": { + "id_car_model": 1800, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15342, + "fields": { + "id_car_model": 1802, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15343, + "fields": { + "id_car_model": 1802, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15344, + "fields": { + "id_car_model": 1802, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15345, + "fields": { + "id_car_model": 1803, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15346, + "fields": { + "id_car_model": 1803, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15347, + "fields": { + "id_car_model": 1808, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15348, + "fields": { + "id_car_model": 1808, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15349, + "fields": { + "id_car_model": 1808, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15350, + "fields": { + "id_car_model": 1810, + "name": "CN-spec Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15351, + "fields": { + "id_car_model": 1814, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15353, + "fields": { + "id_car_model": 1814, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15354, + "fields": { + "id_car_model": 1815, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15355, + "fields": { + "id_car_model": 1815, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15357, + "fields": { + "id_car_model": 1816, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15358, + "fields": { + "id_car_model": 1817, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15359, + "fields": { + "id_car_model": 1817, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15360, + "fields": { + "id_car_model": 1818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15361, + "fields": { + "id_car_model": 1818, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15362, + "fields": { + "id_car_model": 1818, + "name": "CN-spec. Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15363, + "fields": { + "id_car_model": 1818, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15364, + "fields": { + "id_car_model": 1818, + "name": "Fielder wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15365, + "fields": { + "id_car_model": 1818, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15366, + "fields": { + "id_car_model": 1818, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15367, + "fields": { + "id_car_model": 1818, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15368, + "fields": { + "id_car_model": 1818, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15369, + "fields": { + "id_car_model": 1818, + "name": "US-Spec. Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15370, + "fields": { + "id_car_model": 1822, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15371, + "fields": { + "id_car_model": 1822, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15372, + "fields": { + "id_car_model": 1822, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15373, + "fields": { + "id_car_model": 1824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15374, + "fields": { + "id_car_model": 1824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15375, + "fields": { + "id_car_model": 1831, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15376, + "fields": { + "id_car_model": 1838, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15377, + "fields": { + "id_car_model": 1839, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15378, + "fields": { + "id_car_model": 1839, + "name": "Grand minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15379, + "fields": { + "id_car_model": 1840, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15380, + "fields": { + "id_car_model": 1840, + "name": "Hybrid crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15381, + "fields": { + "id_car_model": 1841, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15382, + "fields": { + "id_car_model": 1841, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15383, + "fields": { + "id_car_model": 1841, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15384, + "fields": { + "id_car_model": 1844, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15385, + "fields": { + "id_car_model": 1848, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15386, + "fields": { + "id_car_model": 1848, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15387, + "fields": { + "id_car_model": 1849, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15388, + "fields": { + "id_car_model": 1849, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15391, + "fields": { + "id_car_model": 1850, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15392, + "fields": { + "id_car_model": 1850, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15393, + "fields": { + "id_car_model": 1850, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15395, + "fields": { + "id_car_model": 2151, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15396, + "fields": { + "id_car_model": 2177, + "name": "SUV 5-doors Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15397, + "fields": { + "id_car_model": 2177, + "name": "Crossover 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15398, + "fields": { + "id_car_model": 2177, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15399, + "fields": { + "id_car_model": 2185, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15400, + "fields": { + "id_car_model": 2187, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15401, + "fields": { + "id_car_model": 2196, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15402, + "fields": { + "id_car_model": 2197, + "name": "Access Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15403, + "fields": { + "id_car_model": 2197, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15404, + "fields": { + "id_car_model": 2197, + "name": "Double Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15405, + "fields": { + "id_car_model": 2197, + "name": "S-Runner pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15406, + "fields": { + "id_car_model": 2197, + "name": "Regular pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15407, + "fields": { + "id_car_model": 2197, + "name": "Double Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15408, + "fields": { + "id_car_model": 2198, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15409, + "fields": { + "id_car_model": 2198, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15410, + "fields": { + "id_car_model": 2200, + "name": "Access Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15411, + "fields": { + "id_car_model": 2200, + "name": "Double Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15414, + "fields": { + "id_car_model": 2215, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15415, + "fields": { + "id_car_model": 2215, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15416, + "fields": { + "id_car_model": 2217, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15417, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15418, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15419, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15420, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15421, + "fields": { + "id_car_model": 2371, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15422, + "fields": { + "id_car_model": 2371, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15425, + "fields": { + "id_car_model": 2371, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15427, + "fields": { + "id_car_model": 2371, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15428, + "fields": { + "id_car_model": 2371, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15429, + "fields": { + "id_car_model": 2371, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15430, + "fields": { + "id_car_model": 2371, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15431, + "fields": { + "id_car_model": 2371, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15434, + "fields": { + "id_car_model": 2319, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15435, + "fields": { + "id_car_model": 2319, + "name": "Sports Activity Coupe crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15436, + "fields": { + "id_car_model": 2375, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15437, + "fields": { + "id_car_model": 2375, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15438, + "fields": { + "id_car_model": 2383, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15449, + "fields": { + "id_car_model": 2354, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15450, + "fields": { + "id_car_model": 2354, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15451, + "fields": { + "id_car_model": 2354, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15452, + "fields": { + "id_car_model": 2354, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15453, + "fields": { + "id_car_model": 2342, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15454, + "fields": { + "id_car_model": 2341, + "name": "Coupe AMG", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15455, + "fields": { + "id_car_model": 2341, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15456, + "fields": { + "id_car_model": 2341, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15457, + "fields": { + "id_car_model": 2341, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15458, + "fields": { + "id_car_model": 2339, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15459, + "fields": { + "id_car_model": 2337, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15460, + "fields": { + "id_car_model": 2337, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15461, + "fields": { + "id_car_model": 2337, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15462, + "fields": { + "id_car_model": 2338, + "name": "Sedan MPS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15463, + "fields": { + "id_car_model": 2376, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15464, + "fields": { + "id_car_model": 2376, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15466, + "fields": { + "id_car_model": 2340, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15467, + "fields": { + "id_car_model": 2340, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15468, + "fields": { + "id_car_model": 2340, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15469, + "fields": { + "id_car_model": 2340, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15470, + "fields": { + "id_car_model": 2340, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15471, + "fields": { + "id_car_model": 2340, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15472, + "fields": { + "id_car_model": 2340, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15473, + "fields": { + "id_car_model": 2340, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15474, + "fields": { + "id_car_model": 2340, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15475, + "fields": { + "id_car_model": 2340, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15477, + "fields": { + "id_car_model": 2340, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15478, + "fields": { + "id_car_model": 2340, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15479, + "fields": { + "id_car_model": 2340, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15480, + "fields": { + "id_car_model": 2340, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15481, + "fields": { + "id_car_model": 2331, + "name": "wagon 5-doors S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15482, + "fields": { + "id_car_model": 2331, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15483, + "fields": { + "id_car_model": 2331, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15484, + "fields": { + "id_car_model": 2346, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15485, + "fields": { + "id_car_model": 2343, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15486, + "fields": { + "id_car_model": 2343, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15487, + "fields": { + "id_car_model": 2343, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15488, + "fields": { + "id_car_model": 2343, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15489, + "fields": { + "id_car_model": 2343, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15490, + "fields": { + "id_car_model": 2343, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15491, + "fields": { + "id_car_model": 2343, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15492, + "fields": { + "id_car_model": 2345, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15493, + "fields": { + "id_car_model": 2345, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15494, + "fields": { + "id_car_model": 2345, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15495, + "fields": { + "id_car_model": 2345, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15498, + "fields": { + "id_car_model": 2345, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15499, + "fields": { + "id_car_model": 2345, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15502, + "fields": { + "id_car_model": 2345, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15503, + "fields": { + "id_car_model": 2345, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15504, + "fields": { + "id_car_model": 2345, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15505, + "fields": { + "id_car_model": 2345, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15506, + "fields": { + "id_car_model": 2345, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15507, + "fields": { + "id_car_model": 2335, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15508, + "fields": { + "id_car_model": 2336, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15509, + "fields": { + "id_car_model": 2344, + "name": "wagon 5-doors Shooting Brake", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15512, + "fields": { + "id_car_model": 2344, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15513, + "fields": { + "id_car_model": 2344, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15514, + "fields": { + "id_car_model": 2344, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15520, + "fields": { + "id_car_model": 2332, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15521, + "fields": { + "id_car_model": 2332, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15522, + "fields": { + "id_car_model": 2332, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15524, + "fields": { + "id_car_model": 2332, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15525, + "fields": { + "id_car_model": 2332, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15527, + "fields": { + "id_car_model": 2332, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15528, + "fields": { + "id_car_model": 2348, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15529, + "fields": { + "id_car_model": 2353, + "name": "Roadster AMG", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15531, + "fields": { + "id_car_model": 2353, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15532, + "fields": { + "id_car_model": 2353, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15533, + "fields": { + "id_car_model": 2353, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15534, + "fields": { + "id_car_model": 2353, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15535, + "fields": { + "id_car_model": 2329, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15536, + "fields": { + "id_car_model": 2329, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15537, + "fields": { + "id_car_model": 2329, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15538, + "fields": { + "id_car_model": 2329, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15539, + "fields": { + "id_car_model": 2329, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15540, + "fields": { + "id_car_model": 2329, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15541, + "fields": { + "id_car_model": 2229, + "name": "VU van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15542, + "fields": { + "id_car_model": 2385, + "name": "Hatchback 3-doors GTI", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15544, + "fields": { + "id_car_model": 2327, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15545, + "fields": { + "id_car_model": 2327, + "name": "Hatchback 3-doors RS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15546, + "fields": { + "id_car_model": 2379, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15547, + "fields": { + "id_car_model": 2382, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15548, + "fields": { + "id_car_model": 2382, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15549, + "fields": { + "id_car_model": 2380, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15550, + "fields": { + "id_car_model": 2380, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15551, + "fields": { + "id_car_model": 2380, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15552, + "fields": { + "id_car_model": 2380, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15553, + "fields": { + "id_car_model": 2380, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15554, + "fields": { + "id_car_model": 2380, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15555, + "fields": { + "id_car_model": 2380, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15556, + "fields": { + "id_car_model": 2380, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15557, + "fields": { + "id_car_model": 2328, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15558, + "fields": { + "id_car_model": 2328, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15559, + "fields": { + "id_car_model": 2328, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15560, + "fields": { + "id_car_model": 2328, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15561, + "fields": { + "id_car_model": 2328, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15562, + "fields": { + "id_car_model": 2328, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15563, + "fields": { + "id_car_model": 2328, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15564, + "fields": { + "id_car_model": 2328, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15567, + "fields": { + "id_car_model": 2374, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15568, + "fields": { + "id_car_model": 2374, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15569, + "fields": { + "id_car_model": 2374, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15570, + "fields": { + "id_car_model": 2374, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15571, + "fields": { + "id_car_model": 2372, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15572, + "fields": { + "id_car_model": 2274, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15573, + "fields": { + "id_car_model": 2381, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15574, + "fields": { + "id_car_model": 2313, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15575, + "fields": { + "id_car_model": 2314, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15576, + "fields": { + "id_car_model": 2314, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15577, + "fields": { + "id_car_model": 2314, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15578, + "fields": { + "id_car_model": 2314, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15579, + "fields": { + "id_car_model": 2314, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15580, + "fields": { + "id_car_model": 2314, + "name": "CSL Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15581, + "fields": { + "id_car_model": 2314, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15582, + "fields": { + "id_car_model": 2314, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15583, + "fields": { + "id_car_model": 2314, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15584, + "fields": { + "id_car_model": 2314, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15585, + "fields": { + "id_car_model": 2314, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15586, + "fields": { + "id_car_model": 2386, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15587, + "fields": { + "id_car_model": 2355, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15588, + "fields": { + "id_car_model": 2355, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15589, + "fields": { + "id_car_model": 2355, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15590, + "fields": { + "id_car_model": 2355, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15591, + "fields": { + "id_car_model": 2355, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15592, + "fields": { + "id_car_model": 2355, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15593, + "fields": { + "id_car_model": 2357, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15594, + "fields": { + "id_car_model": 2357, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15595, + "fields": { + "id_car_model": 2357, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15596, + "fields": { + "id_car_model": 2357, + "name": "wagon 5-doors Sports Tourer", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15597, + "fields": { + "id_car_model": 2357, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15598, + "fields": { + "id_car_model": 2357, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15599, + "fields": { + "id_car_model": 2356, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15601, + "fields": { + "id_car_model": 2356, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15602, + "fields": { + "id_car_model": 2358, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15603, + "fields": { + "id_car_model": 2360, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15604, + "fields": { + "id_car_model": 2360, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15605, + "fields": { + "id_car_model": 2360, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15606, + "fields": { + "id_car_model": 2359, + "name": "Hatchback 5-doors OPC", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15607, + "fields": { + "id_car_model": 2359, + "name": "wagon 5-doors OPC", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15608, + "fields": { + "id_car_model": 2362, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15609, + "fields": { + "id_car_model": 2362, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15610, + "fields": { + "id_car_model": 2362, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15611, + "fields": { + "id_car_model": 2362, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15612, + "fields": { + "id_car_model": 2362, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15613, + "fields": { + "id_car_model": 2361, + "name": "Coupe RS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15614, + "fields": { + "id_car_model": 2361, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15615, + "fields": { + "id_car_model": 2361, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15616, + "fields": { + "id_car_model": 2361, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15617, + "fields": { + "id_car_model": 2364, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15618, + "fields": { + "id_car_model": 2363, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15619, + "fields": { + "id_car_model": 2363, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15620, + "fields": { + "id_car_model": 2363, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15622, + "fields": { + "id_car_model": 2363, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15623, + "fields": { + "id_car_model": 2363, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15624, + "fields": { + "id_car_model": 2316, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15625, + "fields": { + "id_car_model": 2316, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15626, + "fields": { + "id_car_model": 2316, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15627, + "fields": { + "id_car_model": 2316, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15628, + "fields": { + "id_car_model": 2316, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15629, + "fields": { + "id_car_model": 2316, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15630, + "fields": { + "id_car_model": 2316, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15631, + "fields": { + "id_car_model": 2317, + "name": "Gran Coupe Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15632, + "fields": { + "id_car_model": 2317, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15633, + "fields": { + "id_car_model": 2317, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15635, + "fields": { + "id_car_model": 2317, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15636, + "fields": { + "id_car_model": 2317, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15637, + "fields": { + "id_car_model": 2318, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15638, + "fields": { + "id_car_model": 2318, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15639, + "fields": { + "id_car_model": 2320, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15640, + "fields": { + "id_car_model": 2320, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15641, + "fields": { + "id_car_model": 2321, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15642, + "fields": { + "id_car_model": 2321, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15645, + "fields": { + "id_car_model": 2347, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15646, + "fields": { + "id_car_model": 2349, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15647, + "fields": { + "id_car_model": 2349, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15648, + "fields": { + "id_car_model": 2349, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15649, + "fields": { + "id_car_model": 2349, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15650, + "fields": { + "id_car_model": 2349, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15651, + "fields": { + "id_car_model": 2350, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15652, + "fields": { + "id_car_model": 2330, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15653, + "fields": { + "id_car_model": 2330, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15654, + "fields": { + "id_car_model": 2330, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15655, + "fields": { + "id_car_model": 2330, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15656, + "fields": { + "id_car_model": 2330, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15657, + "fields": { + "id_car_model": 2330, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15658, + "fields": { + "id_car_model": 2330, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15659, + "fields": { + "id_car_model": 2351, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15660, + "fields": { + "id_car_model": 2352, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15661, + "fields": { + "id_car_model": 2352, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15662, + "fields": { + "id_car_model": 2352, + "name": "Sedan AMG", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15663, + "fields": { + "id_car_model": 2352, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15664, + "fields": { + "id_car_model": 2352, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15665, + "fields": { + "id_car_model": 2352, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15666, + "fields": { + "id_car_model": 2368, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15667, + "fields": { + "id_car_model": 2368, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15668, + "fields": { + "id_car_model": 2368, + "name": "Hatchback 5-doors R", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15669, + "fields": { + "id_car_model": 2368, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15670, + "fields": { + "id_car_model": 2368, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15672, + "fields": { + "id_car_model": 2367, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15673, + "fields": { + "id_car_model": 2367, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15674, + "fields": { + "id_car_model": 2367, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15675, + "fields": { + "id_car_model": 2367, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15676, + "fields": { + "id_car_model": 2370, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15677, + "fields": { + "id_car_model": 2370, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15678, + "fields": { + "id_car_model": 2370, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15679, + "fields": { + "id_car_model": 2370, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15680, + "fields": { + "id_car_model": 2370, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15681, + "fields": { + "id_car_model": 2370, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15682, + "fields": { + "id_car_model": 2370, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15683, + "fields": { + "id_car_model": 2370, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15684, + "fields": { + "id_car_model": 2369, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15685, + "fields": { + "id_car_model": 2369, + "name": "Hatchback 5-doors RS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15686, + "fields": { + "id_car_model": 2369, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15687, + "fields": { + "id_car_model": 2389, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15688, + "fields": { + "id_car_model": 2389, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15689, + "fields": { + "id_car_model": 2315, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15690, + "fields": { + "id_car_model": 2315, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15691, + "fields": { + "id_car_model": 2324, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15692, + "fields": { + "id_car_model": 2324, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15693, + "fields": { + "id_car_model": 2324, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15694, + "fields": { + "id_car_model": 2324, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15696, + "fields": { + "id_car_model": 2322, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 15700, + "fields": { + "id_car_model": 2365, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15701, + "fields": { + "id_car_model": 2365, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15702, + "fields": { + "id_car_model": 2365, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15703, + "fields": { + "id_car_model": 2365, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15704, + "fields": { + "id_car_model": 2365, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15705, + "fields": { + "id_car_model": 2365, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15706, + "fields": { + "id_car_model": 2387, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15707, + "fields": { + "id_car_model": 2366, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15708, + "fields": { + "id_car_model": 2366, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15709, + "fields": { + "id_car_model": 2378, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15710, + "fields": { + "id_car_model": 2378, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15711, + "fields": { + "id_car_model": 2378, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15712, + "fields": { + "id_car_model": 2378, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15713, + "fields": { + "id_car_model": 2378, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15714, + "fields": { + "id_car_model": 2378, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15717, + "fields": { + "id_car_model": 2377, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15718, + "fields": { + "id_car_model": 2377, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15719, + "fields": { + "id_car_model": 2377, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15720, + "fields": { + "id_car_model": 2377, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15721, + "fields": { + "id_car_model": 2377, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15722, + "fields": { + "id_car_model": 2377, + "name": "Hatchback 3-doors GTI", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15724, + "fields": { + "id_car_model": 2377, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15725, + "fields": { + "id_car_model": 2377, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15726, + "fields": { + "id_car_model": 2377, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15727, + "fields": { + "id_car_model": 2377, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15728, + "fields": { + "id_car_model": 2377, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15729, + "fields": { + "id_car_model": 2377, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15730, + "fields": { + "id_car_model": 2377, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15731, + "fields": { + "id_car_model": 2377, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15732, + "fields": { + "id_car_model": 1160, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15733, + "fields": { + "id_car_model": 1160, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15735, + "fields": { + "id_car_model": 20344, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15737, + "fields": { + "id_car_model": 1315, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15738, + "fields": { + "id_car_model": 1315, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15739, + "fields": { + "id_car_model": 2342, + "name": "Mercedes-Benz CLA-klasse AMG wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15741, + "fields": { + "id_car_model": 2328, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15742, + "fields": { + "id_car_model": 594, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15743, + "fields": { + "id_car_model": 594, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15744, + "fields": { + "id_car_model": 594, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15745, + "fields": { + "id_car_model": 594, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15751, + "fields": { + "id_car_model": 230, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15753, + "fields": { + "id_car_model": 422, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15754, + "fields": { + "id_car_model": 422, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15755, + "fields": { + "id_car_model": 450, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15757, + "fields": { + "id_car_model": 1352, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15758, + "fields": { + "id_car_model": 1352, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15759, + "fields": { + "id_car_model": 1352, + "name": "Nismo Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15763, + "fields": { + "id_car_model": 100, + "name": "Sportback hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 15764, + "fields": { + "id_car_model": 100, + "name": "Sportback hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 16266, + "fields": { + "id_car_model": 964, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 16267, + "fields": { + "id_car_model": 964, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 16529, + "fields": { + "id_car_model": 1452, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 16530, + "fields": { + "id_car_model": 1452, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 16531, + "fields": { + "id_car_model": 1452, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 16532, + "fields": { + "id_car_model": 1452, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 16695, + "fields": { + "id_car_model": 1794, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 16944, + "fields": { + "id_car_model": 2328, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 16980, + "fields": { + "id_car_model": 2391, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 16981, + "fields": { + "id_car_model": 2391, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 16982, + "fields": { + "id_car_model": 2391, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 16984, + "fields": { + "id_car_model": 2391, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 23338, + "fields": { + "id_car_model": 2170, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 23393, + "fields": { + "id_car_model": 2234, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 23394, + "fields": { + "id_car_model": 2234, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 23433, + "fields": { + "id_car_model": 5813, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 23434, + "fields": { + "id_car_model": 5813, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 24650, + "fields": { + "id_car_model": 5, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 24651, + "fields": { + "id_car_model": 5, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 44106, + "fields": { + "id_car_model": 634, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 44107, + "fields": { + "id_car_model": 634, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 44514, + "fields": { + "id_car_model": 1380, + "name": "Spec V Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 44515, + "fields": { + "id_car_model": 1380, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 44516, + "fields": { + "id_car_model": 1380, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 44553, + "fields": { + "id_car_model": 1470, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 44554, + "fields": { + "id_car_model": 1470, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 44555, + "fields": { + "id_car_model": 1470, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 44556, + "fields": { + "id_car_model": 1470, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 44557, + "fields": { + "id_car_model": 1470, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 44558, + "fields": { + "id_car_model": 1470, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 44726, + "fields": { + "id_car_model": 1851, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 44995, + "fields": { + "id_car_model": 20370, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 44996, + "fields": { + "id_car_model": 20370, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 44998, + "fields": { + "id_car_model": 387, + "name": "Nova", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 44999, + "fields": { + "id_car_model": 885, + "name": "Spyder", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45000, + "fields": { + "id_car_model": 956, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45002, + "fields": { + "id_car_model": 2390, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45003, + "fields": { + "id_car_model": 2392, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45004, + "fields": { + "id_car_model": 5811, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45005, + "fields": { + "id_car_model": 5812, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45006, + "fields": { + "id_car_model": 18880, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45007, + "fields": { + "id_car_model": 18882, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45008, + "fields": { + "id_car_model": 18882, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45009, + "fields": { + "id_car_model": 18882, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45010, + "fields": { + "id_car_model": 18882, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45011, + "fields": { + "id_car_model": 18882, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45132, + "fields": { + "id_car_model": 40, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45138, + "fields": { + "id_car_model": 230, + "name": "Sedan V", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45139, + "fields": { + "id_car_model": 288, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45140, + "fields": { + "id_car_model": 490, + "name": "Grand minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45141, + "fields": { + "id_car_model": 517, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45142, + "fields": { + "id_car_model": 652, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45143, + "fields": { + "id_car_model": 652, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45144, + "fields": { + "id_car_model": 652, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45146, + "fields": { + "id_car_model": 652, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45147, + "fields": { + "id_car_model": 652, + "name": "Liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45148, + "fields": { + "id_car_model": 652, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45153, + "fields": { + "id_car_model": 893, + "name": "Isuzu Impulse II", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45154, + "fields": { + "id_car_model": 897, + "name": "Isuzu Piazza II", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45155, + "fields": { + "id_car_model": 897, + "name": "Isuzu Piazza I", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45157, + "fields": { + "id_car_model": 1156, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45159, + "fields": { + "id_car_model": 1174, + "name": "Coupe 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45160, + "fields": { + "id_car_model": 1174, + "name": "Coupe 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45161, + "fields": { + "id_car_model": 20349, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45163, + "fields": { + "id_car_model": 1256, + "name": "Cooper S wagon 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45166, + "fields": { + "id_car_model": 1300, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45168, + "fields": { + "id_car_model": 1354, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45171, + "fields": { + "id_car_model": 1395, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45172, + "fields": { + "id_car_model": 1395, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45173, + "fields": { + "id_car_model": 1404, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45174, + "fields": { + "id_car_model": 1404, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45175, + "fields": { + "id_car_model": 1404, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45179, + "fields": { + "id_car_model": 1692, + "name": "Crossblade cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45180, + "fields": { + "id_car_model": 1692, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45183, + "fields": { + "id_car_model": 1906, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45184, + "fields": { + "id_car_model": 1906, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45185, + "fields": { + "id_car_model": 1906, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45186, + "fields": { + "id_car_model": 2121, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45187, + "fields": { + "id_car_model": 2121, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45188, + "fields": { + "id_car_model": 2121, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45189, + "fields": { + "id_car_model": 2138, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45190, + "fields": { + "id_car_model": 2138, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45191, + "fields": { + "id_car_model": 2149, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45192, + "fields": { + "id_car_model": 2149, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45195, + "fields": { + "id_car_model": 2371, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45196, + "fields": { + "id_car_model": 2371, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45197, + "fields": { + "id_car_model": 2270, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45198, + "fields": { + "id_car_model": 2340, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45199, + "fields": { + "id_car_model": 2251, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45204, + "fields": { + "id_car_model": 2322, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45205, + "fields": { + "id_car_model": 2322, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45206, + "fields": { + "id_car_model": 2322, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45207, + "fields": { + "id_car_model": 2322, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45209, + "fields": { + "id_car_model": 2391, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45212, + "fields": { + "id_car_model": 18961, + "name": "Holden Statesman II", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45217, + "fields": { + "id_car_model": 18965, + "name": "Coupe crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45218, + "fields": { + "id_car_model": 18966, + "name": "SUV 5-doors Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45219, + "fields": { + "id_car_model": 18967, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45220, + "fields": { + "id_car_model": 18967, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45222, + "fields": { + "id_car_model": 18969, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45250, + "fields": { + "id_car_model": 18985, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45374, + "fields": { + "id_car_model": 95, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45375, + "fields": { + "id_car_model": 133, + "name": "V8 S Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45376, + "fields": { + "id_car_model": 133, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45381, + "fields": { + "id_car_model": 190, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45382, + "fields": { + "id_car_model": 200, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45383, + "fields": { + "id_car_model": 200, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45384, + "fields": { + "id_car_model": 200, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45385, + "fields": { + "id_car_model": 267, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45386, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45387, + "fields": { + "id_car_model": 491, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45388, + "fields": { + "id_car_model": 491, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45389, + "fields": { + "id_car_model": 496, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45390, + "fields": { + "id_car_model": 496, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45391, + "fields": { + "id_car_model": 585, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45392, + "fields": { + "id_car_model": 615, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45393, + "fields": { + "id_car_model": 623, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45394, + "fields": { + "id_car_model": 623, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45395, + "fields": { + "id_car_model": 623, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45396, + "fields": { + "id_car_model": 630, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45397, + "fields": { + "id_car_model": 631, + "name": "Pickup Single cabin Regular Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45398, + "fields": { + "id_car_model": 659, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45399, + "fields": { + "id_car_model": 763, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45400, + "fields": { + "id_car_model": 770, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45401, + "fields": { + "id_car_model": 777, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45402, + "fields": { + "id_car_model": 777, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45403, + "fields": { + "id_car_model": 777, + "name": "Crossover 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45404, + "fields": { + "id_car_model": 824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45406, + "fields": { + "id_car_model": 833, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45407, + "fields": { + "id_car_model": 833, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45408, + "fields": { + "id_car_model": 834, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45409, + "fields": { + "id_car_model": 834, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45410, + "fields": { + "id_car_model": 834, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45415, + "fields": { + "id_car_model": 918, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45416, + "fields": { + "id_car_model": 949, + "name": "GT Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45417, + "fields": { + "id_car_model": 950, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45418, + "fields": { + "id_car_model": 950, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45419, + "fields": { + "id_car_model": 956, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45420, + "fields": { + "id_car_model": 957, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45421, + "fields": { + "id_car_model": 957, + "name": "LWB minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45422, + "fields": { + "id_car_model": 957, + "name": "SWB minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45423, + "fields": { + "id_car_model": 957, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45424, + "fields": { + "id_car_model": 1009, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45425, + "fields": { + "id_car_model": 1009, + "name": "Crossover 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45427, + "fields": { + "id_car_model": 1145, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45428, + "fields": { + "id_car_model": 1163, + "name": "Roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45429, + "fields": { + "id_car_model": 1290, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45430, + "fields": { + "id_car_model": 1290, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45432, + "fields": { + "id_car_model": 1290, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45433, + "fields": { + "id_car_model": 1290, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45434, + "fields": { + "id_car_model": 1290, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45435, + "fields": { + "id_car_model": 1356, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45436, + "fields": { + "id_car_model": 1356, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45437, + "fields": { + "id_car_model": 1391, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45438, + "fields": { + "id_car_model": 1501, + "name": "Tepee minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45439, + "fields": { + "id_car_model": 1667, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45440, + "fields": { + "id_car_model": 1673, + "name": "SC Cupra hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45441, + "fields": { + "id_car_model": 1673, + "name": "ST wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45443, + "fields": { + "id_car_model": 1689, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45444, + "fields": { + "id_car_model": 1716, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45445, + "fields": { + "id_car_model": 1800, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45446, + "fields": { + "id_car_model": 1800, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45447, + "fields": { + "id_car_model": 1839, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45450, + "fields": { + "id_car_model": 1925, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45452, + "fields": { + "id_car_model": 2108, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45453, + "fields": { + "id_car_model": 2108, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45454, + "fields": { + "id_car_model": 2127, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45455, + "fields": { + "id_car_model": 2141, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45456, + "fields": { + "id_car_model": 2219, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45457, + "fields": { + "id_car_model": 2219, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45458, + "fields": { + "id_car_model": 2328, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45460, + "fields": { + "id_car_model": 2368, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45461, + "fields": { + "id_car_model": 19085, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45462, + "fields": { + "id_car_model": 19085, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45463, + "fields": { + "id_car_model": 19086, + "name": "DS 4 I", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45465, + "fields": { + "id_car_model": 19083, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45466, + "fields": { + "id_car_model": 19081, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45467, + "fields": { + "id_car_model": 19082, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45468, + "fields": { + "id_car_model": 19080, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45469, + "fields": { + "id_car_model": 19078, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45470, + "fields": { + "id_car_model": 19079, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45471, + "fields": { + "id_car_model": 19077, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45472, + "fields": { + "id_car_model": 19076, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45473, + "fields": { + "id_car_model": 19075, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45474, + "fields": { + "id_car_model": 19074, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45475, + "fields": { + "id_car_model": 2123, + "name": "Crossover 5-doors", + "arabic_name": "كروس أوفر 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 45477, + "fields": { + "id_car_model": 19071, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45478, + "fields": { + "id_car_model": 19072, + "name": "SUV 5-doors RS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45479, + "fields": { + "id_car_model": 19072, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45480, + "fields": { + "id_car_model": 19070, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45481, + "fields": { + "id_car_model": 19069, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45482, + "fields": { + "id_car_model": 19067, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45483, + "fields": { + "id_car_model": 19068, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45484, + "fields": { + "id_car_model": 19068, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45485, + "fields": { + "id_car_model": 19068, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45489, + "fields": { + "id_car_model": 19064, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45490, + "fields": { + "id_car_model": 19064, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45491, + "fields": { + "id_car_model": 19063, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45492, + "fields": { + "id_car_model": 19062, + "name": "wagon 5-doors Estate Wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45559, + "fields": { + "id_car_model": 152, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45561, + "fields": { + "id_car_model": 777, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45562, + "fields": { + "id_car_model": 777, + "name": "Crossover 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45563, + "fields": { + "id_car_model": 794, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45569, + "fields": { + "id_car_model": 1337, + "name": "4/4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45571, + "fields": { + "id_car_model": 1356, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45572, + "fields": { + "id_car_model": 1451, + "name": "I500 wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45573, + "fields": { + "id_car_model": 1451, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45574, + "fields": { + "id_car_model": 1451, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45578, + "fields": { + "id_car_model": 1842, + "name": "Double Cab pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45580, + "fields": { + "id_car_model": 1902, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45581, + "fields": { + "id_car_model": 1915, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45582, + "fields": { + "id_car_model": 1921, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45583, + "fields": { + "id_car_model": 1958, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45589, + "fields": { + "id_car_model": 2330, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45590, + "fields": { + "id_car_model": 19137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45591, + "fields": { + "id_car_model": 19137, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45592, + "fields": { + "id_car_model": 19139, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45593, + "fields": { + "id_car_model": 19138, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45594, + "fields": { + "id_car_model": 19141, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45595, + "fields": { + "id_car_model": 19140, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45597, + "fields": { + "id_car_model": 196, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45598, + "fields": { + "id_car_model": 295, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45599, + "fields": { + "id_car_model": 309, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45600, + "fields": { + "id_car_model": 348, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45601, + "fields": { + "id_car_model": 835, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45602, + "fields": { + "id_car_model": 835, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45604, + "fields": { + "id_car_model": 1491, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45606, + "fields": { + "id_car_model": 1589, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45608, + "fields": { + "id_car_model": 2169, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45610, + "fields": { + "id_car_model": 2216, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45611, + "fields": { + "id_car_model": 2216, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45613, + "fields": { + "id_car_model": 19143, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45614, + "fields": { + "id_car_model": 19142, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45685, + "fields": { + "id_car_model": 84, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45686, + "fields": { + "id_car_model": 84, + "name": "Avant wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45687, + "fields": { + "id_car_model": 267, + "name": "Cabriolet 2-doors", + "arabic_name": "سطح قابل للطي - بابين" + } +}, +{ + "model": "inventory.carserie", + "pk": 45688, + "fields": { + "id_car_model": 282, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45689, + "fields": { + "id_car_model": 348, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45691, + "fields": { + "id_car_model": 574, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45692, + "fields": { + "id_car_model": 642, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45693, + "fields": { + "id_car_model": 695, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45695, + "fields": { + "id_car_model": 705, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45696, + "fields": { + "id_car_model": 705, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45697, + "fields": { + "id_car_model": 855, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45698, + "fields": { + "id_car_model": 1029, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45699, + "fields": { + "id_car_model": 20342, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45701, + "fields": { + "id_car_model": 1256, + "name": "Cooper wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45702, + "fields": { + "id_car_model": 1427, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45703, + "fields": { + "id_car_model": 1476, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45704, + "fields": { + "id_car_model": 1476, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45705, + "fields": { + "id_car_model": 1476, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45706, + "fields": { + "id_car_model": 1476, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45707, + "fields": { + "id_car_model": 1689, + "name": "Combi wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45708, + "fields": { + "id_car_model": 2339, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45709, + "fields": { + "id_car_model": 2327, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45711, + "fields": { + "id_car_model": 19206, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45714, + "fields": { + "id_car_model": 19204, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45715, + "fields": { + "id_car_model": 19207, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45716, + "fields": { + "id_car_model": 19208, + "name": "XLV crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45717, + "fields": { + "id_car_model": 19209, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45719, + "fields": { + "id_car_model": 19211, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45753, + "fields": { + "id_car_model": 284, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45754, + "fields": { + "id_car_model": 1036, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45755, + "fields": { + "id_car_model": 1036, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45756, + "fields": { + "id_car_model": 1127, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45757, + "fields": { + "id_car_model": 1127, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45758, + "fields": { + "id_car_model": 19234, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45785, + "fields": { + "id_car_model": 4, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45786, + "fields": { + "id_car_model": 12, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45788, + "fields": { + "id_car_model": 185, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45790, + "fields": { + "id_car_model": 198, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45791, + "fields": { + "id_car_model": 199, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45792, + "fields": { + "id_car_model": 199, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45793, + "fields": { + "id_car_model": 199, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45794, + "fields": { + "id_car_model": 199, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45804, + "fields": { + "id_car_model": 223, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45805, + "fields": { + "id_car_model": 223, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45806, + "fields": { + "id_car_model": 223, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45807, + "fields": { + "id_car_model": 223, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45808, + "fields": { + "id_car_model": 223, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45809, + "fields": { + "id_car_model": 223, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45810, + "fields": { + "id_car_model": 223, + "name": "Sedan Brougham", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45811, + "fields": { + "id_car_model": 223, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45813, + "fields": { + "id_car_model": 223, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45814, + "fields": { + "id_car_model": 225, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45815, + "fields": { + "id_car_model": 267, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45816, + "fields": { + "id_car_model": 267, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45817, + "fields": { + "id_car_model": 267, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45818, + "fields": { + "id_car_model": 280, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45819, + "fields": { + "id_car_model": 280, + "name": "Stingray targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45820, + "fields": { + "id_car_model": 280, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45821, + "fields": { + "id_car_model": 280, + "name": "Rondine Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45822, + "fields": { + "id_car_model": 280, + "name": "Stingray roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45823, + "fields": { + "id_car_model": 280, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45824, + "fields": { + "id_car_model": 530, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45825, + "fields": { + "id_car_model": 530, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45826, + "fields": { + "id_car_model": 663, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45827, + "fields": { + "id_car_model": 667, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45828, + "fields": { + "id_car_model": 667, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45829, + "fields": { + "id_car_model": 696, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45830, + "fields": { + "id_car_model": 696, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45833, + "fields": { + "id_car_model": 696, + "name": "Extended Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45834, + "fields": { + "id_car_model": 753, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45835, + "fields": { + "id_car_model": 782, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45836, + "fields": { + "id_car_model": 1020, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45837, + "fields": { + "id_car_model": 1021, + "name": "F Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45838, + "fields": { + "id_car_model": 1027, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45839, + "fields": { + "id_car_model": 1038, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45840, + "fields": { + "id_car_model": 1046, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45841, + "fields": { + "id_car_model": 1141, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45842, + "fields": { + "id_car_model": 1141, + "name": "Dual Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45844, + "fields": { + "id_car_model": 1141, + "name": "Double Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45845, + "fields": { + "id_car_model": 20349, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45846, + "fields": { + "id_car_model": 20364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45847, + "fields": { + "id_car_model": 1306, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45848, + "fields": { + "id_car_model": 1422, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45849, + "fields": { + "id_car_model": 1422, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45850, + "fields": { + "id_car_model": 1436, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45851, + "fields": { + "id_car_model": 1436, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45852, + "fields": { + "id_car_model": 1438, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45853, + "fields": { + "id_car_model": 1438, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45854, + "fields": { + "id_car_model": 1438, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45855, + "fields": { + "id_car_model": 1438, + "name": "Caravan wagon 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45856, + "fields": { + "id_car_model": 1438, + "name": "Caravan wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45857, + "fields": { + "id_car_model": 1438, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45858, + "fields": { + "id_car_model": 1438, + "name": "Caravan wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45859, + "fields": { + "id_car_model": 1438, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45860, + "fields": { + "id_car_model": 1438, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45861, + "fields": { + "id_car_model": 1524, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45863, + "fields": { + "id_car_model": 1532, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45864, + "fields": { + "id_car_model": 1532, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45865, + "fields": { + "id_car_model": 1532, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45869, + "fields": { + "id_car_model": 1557, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45871, + "fields": { + "id_car_model": 1615, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45872, + "fields": { + "id_car_model": 1615, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45873, + "fields": { + "id_car_model": 1615, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45874, + "fields": { + "id_car_model": 1618, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45875, + "fields": { + "id_car_model": 1618, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45877, + "fields": { + "id_car_model": 1618, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45878, + "fields": { + "id_car_model": 1798, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45879, + "fields": { + "id_car_model": 1798, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45880, + "fields": { + "id_car_model": 2112, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45881, + "fields": { + "id_car_model": 2112, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45882, + "fields": { + "id_car_model": 19287, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45883, + "fields": { + "id_car_model": 19288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45884, + "fields": { + "id_car_model": 19286, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45885, + "fields": { + "id_car_model": 19285, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45886, + "fields": { + "id_car_model": 19285, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45887, + "fields": { + "id_car_model": 19284, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45888, + "fields": { + "id_car_model": 19282, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45889, + "fields": { + "id_car_model": 19283, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45890, + "fields": { + "id_car_model": 19281, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45892, + "fields": { + "id_car_model": 19278, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45893, + "fields": { + "id_car_model": 19279, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45894, + "fields": { + "id_car_model": 19276, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45895, + "fields": { + "id_car_model": 19277, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45897, + "fields": { + "id_car_model": 19275, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45899, + "fields": { + "id_car_model": 19272, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45900, + "fields": { + "id_car_model": 19272, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45901, + "fields": { + "id_car_model": 19272, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45902, + "fields": { + "id_car_model": 19271, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45903, + "fields": { + "id_car_model": 19269, + "name": "Classic pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45904, + "fields": { + "id_car_model": 19269, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45905, + "fields": { + "id_car_model": 19269, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45906, + "fields": { + "id_car_model": 19269, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45907, + "fields": { + "id_car_model": 19269, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45909, + "fields": { + "id_car_model": 19268, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45910, + "fields": { + "id_car_model": 19266, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45911, + "fields": { + "id_car_model": 19266, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45912, + "fields": { + "id_car_model": 19267, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45913, + "fields": { + "id_car_model": 19265, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45914, + "fields": { + "id_car_model": 19263, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45915, + "fields": { + "id_car_model": 19264, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45916, + "fields": { + "id_car_model": 19262, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45917, + "fields": { + "id_car_model": 19260, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45918, + "fields": { + "id_car_model": 19261, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45919, + "fields": { + "id_car_model": 19261, + "name": "BMW 315 Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45921, + "fields": { + "id_car_model": 19258, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45924, + "fields": { + "id_car_model": 19257, + "name": "Sedan Berlina", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45925, + "fields": { + "id_car_model": 19257, + "name": "Cabriolet Spider", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45926, + "fields": { + "id_car_model": 19257, + "name": "Coupe Sprint", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45927, + "fields": { + "id_car_model": 19289, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45928, + "fields": { + "id_car_model": 19290, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45929, + "fields": { + "id_car_model": 19291, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45930, + "fields": { + "id_car_model": 19292, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45931, + "fields": { + "id_car_model": 19292, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45932, + "fields": { + "id_car_model": 19293, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45933, + "fields": { + "id_car_model": 19293, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45934, + "fields": { + "id_car_model": 19293, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45935, + "fields": { + "id_car_model": 19293, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45936, + "fields": { + "id_car_model": 19293, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45937, + "fields": { + "id_car_model": 19293, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45938, + "fields": { + "id_car_model": 19293, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45939, + "fields": { + "id_car_model": 19293, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45940, + "fields": { + "id_car_model": 19294, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45941, + "fields": { + "id_car_model": 19294, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45942, + "fields": { + "id_car_model": 19294, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45943, + "fields": { + "id_car_model": 19295, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45944, + "fields": { + "id_car_model": 19296, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45945, + "fields": { + "id_car_model": 19297, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45946, + "fields": { + "id_car_model": 19298, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45947, + "fields": { + "id_car_model": 19299, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45948, + "fields": { + "id_car_model": 19299, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45949, + "fields": { + "id_car_model": 19299, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45950, + "fields": { + "id_car_model": 19300, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45951, + "fields": { + "id_car_model": 19300, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45955, + "fields": { + "id_car_model": 19302, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45956, + "fields": { + "id_car_model": 19303, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45958, + "fields": { + "id_car_model": 19305, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45960, + "fields": { + "id_car_model": 19307, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45961, + "fields": { + "id_car_model": 19307, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45962, + "fields": { + "id_car_model": 19308, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45963, + "fields": { + "id_car_model": 19308, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45964, + "fields": { + "id_car_model": 19308, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45965, + "fields": { + "id_car_model": 19309, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45966, + "fields": { + "id_car_model": 19310, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45967, + "fields": { + "id_car_model": 19311, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45968, + "fields": { + "id_car_model": 19312, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 45969, + "fields": { + "id_car_model": 19313, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46003, + "fields": { + "id_car_model": 108, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46005, + "fields": { + "id_car_model": 761, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46006, + "fields": { + "id_car_model": 845, + "name": "Premium crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46007, + "fields": { + "id_car_model": 939, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46008, + "fields": { + "id_car_model": 939, + "name": "SW wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46009, + "fields": { + "id_car_model": 953, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46011, + "fields": { + "id_car_model": 963, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46012, + "fields": { + "id_car_model": 978, + "name": "Spyder cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46014, + "fields": { + "id_car_model": 1004, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46015, + "fields": { + "id_car_model": 1024, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46016, + "fields": { + "id_car_model": 1024, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46017, + "fields": { + "id_car_model": 20364, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46018, + "fields": { + "id_car_model": 1290, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46019, + "fields": { + "id_car_model": 1389, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46021, + "fields": { + "id_car_model": 1396, + "name": "Pickup One-and-a-half cabin King-Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46022, + "fields": { + "id_car_model": 1396, + "name": "Pickup Double cabin Double-Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46023, + "fields": { + "id_car_model": 1412, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46024, + "fields": { + "id_car_model": 1427, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46025, + "fields": { + "id_car_model": 1536, + "name": "GT3 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46026, + "fields": { + "id_car_model": 1536, + "name": "Turbo cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46027, + "fields": { + "id_car_model": 1692, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46028, + "fields": { + "id_car_model": 1738, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46032, + "fields": { + "id_car_model": 1849, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46033, + "fields": { + "id_car_model": 1927, + "name": "Allspace crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46034, + "fields": { + "id_car_model": 1963, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46035, + "fields": { + "id_car_model": 2122, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46036, + "fields": { + "id_car_model": 2122, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46037, + "fields": { + "id_car_model": 2122, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46040, + "fields": { + "id_car_model": 2145, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46041, + "fields": { + "id_car_model": 2177, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46043, + "fields": { + "id_car_model": 2197, + "name": "Pickup Double cabin Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46044, + "fields": { + "id_car_model": 2340, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46045, + "fields": { + "id_car_model": 2235, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46048, + "fields": { + "id_car_model": 2352, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46049, + "fields": { + "id_car_model": 19352, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46051, + "fields": { + "id_car_model": 19351, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46052, + "fields": { + "id_car_model": 19348, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46053, + "fields": { + "id_car_model": 19347, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46054, + "fields": { + "id_car_model": 19345, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46055, + "fields": { + "id_car_model": 19346, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46056, + "fields": { + "id_car_model": 19343, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46057, + "fields": { + "id_car_model": 19344, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46059, + "fields": { + "id_car_model": 19341, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46061, + "fields": { + "id_car_model": 19340, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46064, + "fields": { + "id_car_model": 19234, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46065, + "fields": { + "id_car_model": 19349, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46066, + "fields": { + "id_car_model": 839, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46067, + "fields": { + "id_car_model": 839, + "name": "Sportswagon wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46125, + "fields": { + "id_car_model": 319, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46127, + "fields": { + "id_car_model": 820, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46129, + "fields": { + "id_car_model": 983, + "name": "LP640 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46130, + "fields": { + "id_car_model": 983, + "name": "LP670-4 SuperVeloce Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46133, + "fields": { + "id_car_model": 1009, + "name": "Crossover 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46134, + "fields": { + "id_car_model": 1009, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46135, + "fields": { + "id_car_model": 1132, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46136, + "fields": { + "id_car_model": 1132, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46137, + "fields": { + "id_car_model": 1132, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46139, + "fields": { + "id_car_model": 1132, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46141, + "fields": { + "id_car_model": 1293, + "name": "Grand Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46142, + "fields": { + "id_car_model": 1358, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46143, + "fields": { + "id_car_model": 1447, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46145, + "fields": { + "id_car_model": 1484, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46146, + "fields": { + "id_car_model": 1484, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46149, + "fields": { + "id_car_model": 1497, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46151, + "fields": { + "id_car_model": 1536, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46152, + "fields": { + "id_car_model": 1717, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46153, + "fields": { + "id_car_model": 1717, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46154, + "fields": { + "id_car_model": 2170, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46155, + "fields": { + "id_car_model": 19395, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46156, + "fields": { + "id_car_model": 19394, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46157, + "fields": { + "id_car_model": 19086, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46158, + "fields": { + "id_car_model": 19390, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46159, + "fields": { + "id_car_model": 19391, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46160, + "fields": { + "id_car_model": 19392, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46161, + "fields": { + "id_car_model": 19393, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46162, + "fields": { + "id_car_model": 19396, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46163, + "fields": { + "id_car_model": 19397, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46164, + "fields": { + "id_car_model": 19398, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46165, + "fields": { + "id_car_model": 19399, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46166, + "fields": { + "id_car_model": 19399, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46167, + "fields": { + "id_car_model": 19400, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46168, + "fields": { + "id_car_model": 19401, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46169, + "fields": { + "id_car_model": 19402, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46170, + "fields": { + "id_car_model": 19403, + "name": "Limousine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46171, + "fields": { + "id_car_model": 11, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46172, + "fields": { + "id_car_model": 288, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46173, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46174, + "fields": { + "id_car_model": 333, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46178, + "fields": { + "id_car_model": 1038, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46180, + "fields": { + "id_car_model": 1412, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46181, + "fields": { + "id_car_model": 1416, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46182, + "fields": { + "id_car_model": 1515, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46183, + "fields": { + "id_car_model": 19266, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46185, + "fields": { + "id_car_model": 952, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46186, + "fields": { + "id_car_model": 952, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46187, + "fields": { + "id_car_model": 952, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46188, + "fields": { + "id_car_model": 952, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46190, + "fields": { + "id_car_model": 952, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46193, + "fields": { + "id_car_model": 19406, + "name": "R3 Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46194, + "fields": { + "id_car_model": 1255, + "name": "Cooper cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46320, + "fields": { + "id_car_model": 64, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46322, + "fields": { + "id_car_model": 653, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46323, + "fields": { + "id_car_model": 653, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46324, + "fields": { + "id_car_model": 653, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46325, + "fields": { + "id_car_model": 1009, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46327, + "fields": { + "id_car_model": 19469, + "name": "Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46328, + "fields": { + "id_car_model": 19465, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46329, + "fields": { + "id_car_model": 19466, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46330, + "fields": { + "id_car_model": 19467, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46332, + "fields": { + "id_car_model": 20353, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46333, + "fields": { + "id_car_model": 19464, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46334, + "fields": { + "id_car_model": 19459, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46335, + "fields": { + "id_car_model": 19460, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46336, + "fields": { + "id_car_model": 19461, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46337, + "fields": { + "id_car_model": 1376, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46338, + "fields": { + "id_car_model": 1577, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46339, + "fields": { + "id_car_model": 1618, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46342, + "fields": { + "id_car_model": 2134, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46343, + "fields": { + "id_car_model": 2230, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46344, + "fields": { + "id_car_model": 2230, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46411, + "fields": { + "id_car_model": 190, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46413, + "fields": { + "id_car_model": 437, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46415, + "fields": { + "id_car_model": 440, + "name": "Microvan aa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46416, + "fields": { + "id_car_model": 492, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46417, + "fields": { + "id_car_model": 492, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46418, + "fields": { + "id_car_model": 493, + "name": "Pickup Single cabin Crew Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46419, + "fields": { + "id_car_model": 493, + "name": "Pickup One-and-a-half cabin Extended Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46420, + "fields": { + "id_car_model": 493, + "name": "Pickup One-and-a-half cabin Club Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46421, + "fields": { + "id_car_model": 511, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46422, + "fields": { + "id_car_model": 511, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46424, + "fields": { + "id_car_model": 607, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46425, + "fields": { + "id_car_model": 608, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46426, + "fields": { + "id_car_model": 608, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46427, + "fields": { + "id_car_model": 624, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46428, + "fields": { + "id_car_model": 653, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46429, + "fields": { + "id_car_model": 653, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46430, + "fields": { + "id_car_model": 701, + "name": "Pickup Double cabin Crew", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46431, + "fields": { + "id_car_model": 20362, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46432, + "fields": { + "id_car_model": 1297, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46433, + "fields": { + "id_car_model": 1297, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46434, + "fields": { + "id_car_model": 1306, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46435, + "fields": { + "id_car_model": 1306, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46436, + "fields": { + "id_car_model": 2134, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46437, + "fields": { + "id_car_model": 2143, + "name": "King Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46438, + "fields": { + "id_car_model": 2220, + "name": "Pickup Single cabin Regular", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46439, + "fields": { + "id_car_model": 2220, + "name": "Pickup Double cabin Double", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46440, + "fields": { + "id_car_model": 2353, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46441, + "fields": { + "id_car_model": 19513, + "name": "Microvan Latte", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46443, + "fields": { + "id_car_model": 19515, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46444, + "fields": { + "id_car_model": 19516, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46445, + "fields": { + "id_car_model": 19517, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46446, + "fields": { + "id_car_model": 19517, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46447, + "fields": { + "id_car_model": 19518, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46448, + "fields": { + "id_car_model": 19519, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46449, + "fields": { + "id_car_model": 39, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46452, + "fields": { + "id_car_model": 443, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46454, + "fields": { + "id_car_model": 492, + "name": "SRT Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46455, + "fields": { + "id_car_model": 580, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46457, + "fields": { + "id_car_model": 606, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46461, + "fields": { + "id_car_model": 919, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46462, + "fields": { + "id_car_model": 1038, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46464, + "fields": { + "id_car_model": 1368, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46465, + "fields": { + "id_car_model": 1379, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46466, + "fields": { + "id_car_model": 1590, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46468, + "fields": { + "id_car_model": 1636, + "name": "X crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46469, + "fields": { + "id_car_model": 1636, + "name": "SportCombi wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46470, + "fields": { + "id_car_model": 1636, + "name": "Sport Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46471, + "fields": { + "id_car_model": 1688, + "name": "Scout minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46473, + "fields": { + "id_car_model": 1710, + "name": "Coupe SVX", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46475, + "fields": { + "id_car_model": 1921, + "name": "Variant wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46476, + "fields": { + "id_car_model": 1956, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46478, + "fields": { + "id_car_model": 1960, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46479, + "fields": { + "id_car_model": 2102, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46481, + "fields": { + "id_car_model": 2158, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46483, + "fields": { + "id_car_model": 18882, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46484, + "fields": { + "id_car_model": 19522, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46485, + "fields": { + "id_car_model": 19523, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46486, + "fields": { + "id_car_model": 19523, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46489, + "fields": { + "id_car_model": 19520, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46490, + "fields": { + "id_car_model": 19520, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46496, + "fields": { + "id_car_model": 19521, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46540, + "fields": { + "id_car_model": 83, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46541, + "fields": { + "id_car_model": 229, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46542, + "fields": { + "id_car_model": 334, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46543, + "fields": { + "id_car_model": 492, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46544, + "fields": { + "id_car_model": 618, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46546, + "fields": { + "id_car_model": 657, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46547, + "fields": { + "id_car_model": 695, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46548, + "fields": { + "id_car_model": 791, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46549, + "fields": { + "id_car_model": 820, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46550, + "fields": { + "id_car_model": 836, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46551, + "fields": { + "id_car_model": 870, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46552, + "fields": { + "id_car_model": 1139, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46553, + "fields": { + "id_car_model": 1157, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46554, + "fields": { + "id_car_model": 20350, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46555, + "fields": { + "id_car_model": 1330, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46556, + "fields": { + "id_car_model": 1364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46557, + "fields": { + "id_car_model": 1365, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46558, + "fields": { + "id_car_model": 1365, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46559, + "fields": { + "id_car_model": 1379, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46560, + "fields": { + "id_car_model": 1812, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46562, + "fields": { + "id_car_model": 2309, + "name": "Limousine Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46563, + "fields": { + "id_car_model": 2309, + "name": "Touring wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46570, + "fields": { + "id_car_model": 19570, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46571, + "fields": { + "id_car_model": 19571, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46572, + "fields": { + "id_car_model": 19578, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46573, + "fields": { + "id_car_model": 19586, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46574, + "fields": { + "id_car_model": 19573, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46575, + "fields": { + "id_car_model": 19557, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46576, + "fields": { + "id_car_model": 19557, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46580, + "fields": { + "id_car_model": 19556, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46582, + "fields": { + "id_car_model": 19558, + "name": "Cabriolet Drophead Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46583, + "fields": { + "id_car_model": 19558, + "name": "Sedan Standard Saloon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46584, + "fields": { + "id_car_model": 19558, + "name": "Coupe Continental", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46585, + "fields": { + "id_car_model": 19559, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46586, + "fields": { + "id_car_model": 19559, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46587, + "fields": { + "id_car_model": 19560, + "name": "Limousine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46588, + "fields": { + "id_car_model": 19560, + "name": "Limousine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46589, + "fields": { + "id_car_model": 19560, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46590, + "fields": { + "id_car_model": 19561, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46591, + "fields": { + "id_car_model": 19562, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46592, + "fields": { + "id_car_model": 19562, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46593, + "fields": { + "id_car_model": 19563, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46594, + "fields": { + "id_car_model": 19564, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46595, + "fields": { + "id_car_model": 19565, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46596, + "fields": { + "id_car_model": 19565, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46597, + "fields": { + "id_car_model": 19566, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46598, + "fields": { + "id_car_model": 19567, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46599, + "fields": { + "id_car_model": 19567, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46600, + "fields": { + "id_car_model": 19567, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46601, + "fields": { + "id_car_model": 19567, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46602, + "fields": { + "id_car_model": 19568, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46603, + "fields": { + "id_car_model": 19569, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46604, + "fields": { + "id_car_model": 19572, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46605, + "fields": { + "id_car_model": 20359, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46606, + "fields": { + "id_car_model": 19575, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46607, + "fields": { + "id_car_model": 19575, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46608, + "fields": { + "id_car_model": 19576, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46609, + "fields": { + "id_car_model": 19576, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46610, + "fields": { + "id_car_model": 19576, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46611, + "fields": { + "id_car_model": 19577, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46612, + "fields": { + "id_car_model": 19579, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46613, + "fields": { + "id_car_model": 19580, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46614, + "fields": { + "id_car_model": 19581, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46616, + "fields": { + "id_car_model": 19583, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46617, + "fields": { + "id_car_model": 19583, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46618, + "fields": { + "id_car_model": 19583, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46619, + "fields": { + "id_car_model": 19583, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46620, + "fields": { + "id_car_model": 19584, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46621, + "fields": { + "id_car_model": 19585, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46657, + "fields": { + "id_car_model": 40, + "name": "Alfa Romeo Giulietta I Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46658, + "fields": { + "id_car_model": 268, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46659, + "fields": { + "id_car_model": 268, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46660, + "fields": { + "id_car_model": 297, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46661, + "fields": { + "id_car_model": 297, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46662, + "fields": { + "id_car_model": 297, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46663, + "fields": { + "id_car_model": 297, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46664, + "fields": { + "id_car_model": 1359, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46665, + "fields": { + "id_car_model": 1359, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46666, + "fields": { + "id_car_model": 1379, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46667, + "fields": { + "id_car_model": 1379, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46668, + "fields": { + "id_car_model": 1379, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46669, + "fields": { + "id_car_model": 1379, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46670, + "fields": { + "id_car_model": 1432, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46671, + "fields": { + "id_car_model": 1432, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46672, + "fields": { + "id_car_model": 1434, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46673, + "fields": { + "id_car_model": 1434, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46674, + "fields": { + "id_car_model": 1746, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46675, + "fields": { + "id_car_model": 2356, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46676, + "fields": { + "id_car_model": 2303, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46681, + "fields": { + "id_car_model": 19085, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46682, + "fields": { + "id_car_model": 19085, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46683, + "fields": { + "id_car_model": 19210, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46685, + "fields": { + "id_car_model": 19615, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46686, + "fields": { + "id_car_model": 19616, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46687, + "fields": { + "id_car_model": 19617, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46688, + "fields": { + "id_car_model": 19617, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46689, + "fields": { + "id_car_model": 19614, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46691, + "fields": { + "id_car_model": 19618, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46693, + "fields": { + "id_car_model": 19604, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46694, + "fields": { + "id_car_model": 19603, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46695, + "fields": { + "id_car_model": 19607, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46696, + "fields": { + "id_car_model": 19607, + "name": "Nomad Station Wagon wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46697, + "fields": { + "id_car_model": 19607, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46698, + "fields": { + "id_car_model": 19607, + "name": "Sport Sedan Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46699, + "fields": { + "id_car_model": 19607, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46700, + "fields": { + "id_car_model": 19620, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46701, + "fields": { + "id_car_model": 19601, + "name": "Coupe Sprint", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46702, + "fields": { + "id_car_model": 19601, + "name": "Sedan Berlina", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46703, + "fields": { + "id_car_model": 19602, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46704, + "fields": { + "id_car_model": 19605, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46705, + "fields": { + "id_car_model": 19606, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46706, + "fields": { + "id_car_model": 19608, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46707, + "fields": { + "id_car_model": 19609, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46708, + "fields": { + "id_car_model": 19610, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46709, + "fields": { + "id_car_model": 19611, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46710, + "fields": { + "id_car_model": 19612, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46795, + "fields": { + "id_car_model": 949, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46796, + "fields": { + "id_car_model": 1445, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46797, + "fields": { + "id_car_model": 1445, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46798, + "fields": { + "id_car_model": 1445, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46799, + "fields": { + "id_car_model": 1445, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46800, + "fields": { + "id_car_model": 1445, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46801, + "fields": { + "id_car_model": 1445, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46802, + "fields": { + "id_car_model": 1445, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46803, + "fields": { + "id_car_model": 1445, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46804, + "fields": { + "id_car_model": 1445, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46805, + "fields": { + "id_car_model": 1735, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46806, + "fields": { + "id_car_model": 1735, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46807, + "fields": { + "id_car_model": 1961, + "name": "Cross Country wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46808, + "fields": { + "id_car_model": 1961, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46809, + "fields": { + "id_car_model": 19288, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46810, + "fields": { + "id_car_model": 19617, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46811, + "fields": { + "id_car_model": 19617, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46812, + "fields": { + "id_car_model": 19617, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46813, + "fields": { + "id_car_model": 19617, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46814, + "fields": { + "id_car_model": 19617, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46815, + "fields": { + "id_car_model": 19617, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46819, + "fields": { + "id_car_model": 19687, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46820, + "fields": { + "id_car_model": 19688, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46822, + "fields": { + "id_car_model": 2227, + "name": "Minivan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46823, + "fields": { + "id_car_model": 21, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46824, + "fields": { + "id_car_model": 23, + "name": "GTA hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46825, + "fields": { + "id_car_model": 23, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46826, + "fields": { + "id_car_model": 24, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46827, + "fields": { + "id_car_model": 25, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46828, + "fields": { + "id_car_model": 25, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46829, + "fields": { + "id_car_model": 27, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46830, + "fields": { + "id_car_model": 30, + "name": "targa Spyder", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46831, + "fields": { + "id_car_model": 32, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46832, + "fields": { + "id_car_model": 40, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46833, + "fields": { + "id_car_model": 40, + "name": "Spider cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46834, + "fields": { + "id_car_model": 40, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46835, + "fields": { + "id_car_model": 44, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46837, + "fields": { + "id_car_model": 62, + "name": "GT Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46838, + "fields": { + "id_car_model": 63, + "name": "Volante cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46839, + "fields": { + "id_car_model": 63, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46840, + "fields": { + "id_car_model": 69, + "name": "S Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46841, + "fields": { + "id_car_model": 140, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46842, + "fields": { + "id_car_model": 140, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46844, + "fields": { + "id_car_model": 172, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46846, + "fields": { + "id_car_model": 333, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46847, + "fields": { + "id_car_model": 333, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46848, + "fields": { + "id_car_model": 333, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46849, + "fields": { + "id_car_model": 333, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46850, + "fields": { + "id_car_model": 359, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46851, + "fields": { + "id_car_model": 359, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46854, + "fields": { + "id_car_model": 547, + "name": "Speciale Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46855, + "fields": { + "id_car_model": 547, + "name": "Coupe Speciale", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46860, + "fields": { + "id_car_model": 631, + "name": "Pickup Double cabin SuperCrew", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46861, + "fields": { + "id_car_model": 631, + "name": "Pickup One-and-a-half cabin SuperCab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46862, + "fields": { + "id_car_model": 631, + "name": "Pickup Double cabin CrewCab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46863, + "fields": { + "id_car_model": 631, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46864, + "fields": { + "id_car_model": 657, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46866, + "fields": { + "id_car_model": 668, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46867, + "fields": { + "id_car_model": 668, + "name": "Minivan SWB", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46870, + "fields": { + "id_car_model": 682, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46871, + "fields": { + "id_car_model": 696, + "name": "Pickup Double cabin long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46872, + "fields": { + "id_car_model": 753, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46873, + "fields": { + "id_car_model": 753, + "name": "Sedan Type-S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46874, + "fields": { + "id_car_model": 753, + "name": "US-spec Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46875, + "fields": { + "id_car_model": 753, + "name": "US-spec Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46876, + "fields": { + "id_car_model": 753, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46877, + "fields": { + "id_car_model": 753, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46879, + "fields": { + "id_car_model": 845, + "name": "Grand crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46880, + "fields": { + "id_car_model": 850, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46881, + "fields": { + "id_car_model": 914, + "name": "Coupe 2+2", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46882, + "fields": { + "id_car_model": 916, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46883, + "fields": { + "id_car_model": 1006, + "name": "90 SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46885, + "fields": { + "id_car_model": 1007, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46886, + "fields": { + "id_car_model": 1010, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46887, + "fields": { + "id_car_model": 1107, + "name": "MC Stradale Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46888, + "fields": { + "id_car_model": 1146, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46890, + "fields": { + "id_car_model": 20349, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46891, + "fields": { + "id_car_model": 20344, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46892, + "fields": { + "id_car_model": 20344, + "name": "wagon 5-doors Shooting Brake", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46893, + "fields": { + "id_car_model": 20350, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46894, + "fields": { + "id_car_model": 20350, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46896, + "fields": { + "id_car_model": 20358, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46898, + "fields": { + "id_car_model": 20358, + "name": "Minivan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46899, + "fields": { + "id_car_model": 20364, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46900, + "fields": { + "id_car_model": 20364, + "name": "Limousine Pullman", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46901, + "fields": { + "id_car_model": 20364, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46902, + "fields": { + "id_car_model": 20364, + "name": "Limousine Pullman", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46903, + "fields": { + "id_car_model": 20364, + "name": "Limousine Pullman", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46904, + "fields": { + "id_car_model": 20364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46905, + "fields": { + "id_car_model": 20364, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46906, + "fields": { + "id_car_model": 20364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46907, + "fields": { + "id_car_model": 20364, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46908, + "fields": { + "id_car_model": 20364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46909, + "fields": { + "id_car_model": 20364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46910, + "fields": { + "id_car_model": 20364, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46912, + "fields": { + "id_car_model": 1313, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46913, + "fields": { + "id_car_model": 1357, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46914, + "fields": { + "id_car_model": 1380, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46915, + "fields": { + "id_car_model": 1523, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46916, + "fields": { + "id_car_model": 1523, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46917, + "fields": { + "id_car_model": 1523, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46918, + "fields": { + "id_car_model": 1523, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46919, + "fields": { + "id_car_model": 1534, + "name": "Minivan LWB", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46920, + "fields": { + "id_car_model": 1609, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46921, + "fields": { + "id_car_model": 1616, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46922, + "fields": { + "id_car_model": 1618, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46923, + "fields": { + "id_car_model": 1618, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46924, + "fields": { + "id_car_model": 1618, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46925, + "fields": { + "id_car_model": 1618, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46926, + "fields": { + "id_car_model": 1618, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46928, + "fields": { + "id_car_model": 1638, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46929, + "fields": { + "id_car_model": 1638, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46930, + "fields": { + "id_car_model": 1638, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46931, + "fields": { + "id_car_model": 1708, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46932, + "fields": { + "id_car_model": 1745, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46934, + "fields": { + "id_car_model": 1745, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46936, + "fields": { + "id_car_model": 1782, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46937, + "fields": { + "id_car_model": 1801, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46939, + "fields": { + "id_car_model": 1921, + "name": "Classic Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46940, + "fields": { + "id_car_model": 1921, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46941, + "fields": { + "id_car_model": 1921, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46942, + "fields": { + "id_car_model": 1921, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46943, + "fields": { + "id_car_model": 1936, + "name": "245 wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46944, + "fields": { + "id_car_model": 1959, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46949, + "fields": { + "id_car_model": 2012, + "name": "2131 SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46950, + "fields": { + "id_car_model": 2015, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46951, + "fields": { + "id_car_model": 2016, + "name": "Cross wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46952, + "fields": { + "id_car_model": 2016, + "name": "Wagon", + "arabic_name": "واجن" + } +}, +{ + "model": "inventory.carserie", + "pk": 46953, + "fields": { + "id_car_model": 2016, + "name": "Sport hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46954, + "fields": { + "id_car_model": 2016, + "name": "Sedan", + "arabic_name": "سيدان" + } +}, +{ + "model": "inventory.carserie", + "pk": 46955, + "fields": { + "id_car_model": 2017, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46959, + "fields": { + "id_car_model": 2115, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46960, + "fields": { + "id_car_model": 2147, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46961, + "fields": { + "id_car_model": 2147, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46962, + "fields": { + "id_car_model": 2149, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46963, + "fields": { + "id_car_model": 2177, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46968, + "fields": { + "id_car_model": 2319, + "name": "Sports Activity Coupe crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46970, + "fields": { + "id_car_model": 2342, + "name": "wagon 5-doors Shooting Brake", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46971, + "fields": { + "id_car_model": 2342, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46972, + "fields": { + "id_car_model": 2340, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46973, + "fields": { + "id_car_model": 2344, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46974, + "fields": { + "id_car_model": 2344, + "name": "wagon 5-doors Shooting Brake", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46975, + "fields": { + "id_car_model": 2273, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46976, + "fields": { + "id_car_model": 2273, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46977, + "fields": { + "id_car_model": 2235, + "name": "Minivan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46978, + "fields": { + "id_car_model": 2235, + "name": "Minivan LWB", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46980, + "fields": { + "id_car_model": 2386, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46981, + "fields": { + "id_car_model": 2362, + "name": "Coupe RS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46982, + "fields": { + "id_car_model": 2362, + "name": "Coupe RS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46983, + "fields": { + "id_car_model": 2350, + "name": "Limousine Pullman", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46984, + "fields": { + "id_car_model": 2351, + "name": "Minivan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46985, + "fields": { + "id_car_model": 2352, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46987, + "fields": { + "id_car_model": 2352, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46988, + "fields": { + "id_car_model": 2352, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46989, + "fields": { + "id_car_model": 2352, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46993, + "fields": { + "id_car_model": 2369, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46995, + "fields": { + "id_car_model": 18969, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46996, + "fields": { + "id_car_model": 19390, + "name": "Coupe Junior Z", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46997, + "fields": { + "id_car_model": 19390, + "name": "Sedan 1750/2000 Berlina", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46998, + "fields": { + "id_car_model": 19707, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 46999, + "fields": { + "id_car_model": 19556, + "name": "Cabriolet Phaeton", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47004, + "fields": { + "id_car_model": 19706, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47005, + "fields": { + "id_car_model": 19704, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47008, + "fields": { + "id_car_model": 19705, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47010, + "fields": { + "id_car_model": 19691, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47011, + "fields": { + "id_car_model": 19709, + "name": "Pickup Single cabin Space Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47012, + "fields": { + "id_car_model": 19709, + "name": "Pickup Single cabin Regular Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47013, + "fields": { + "id_car_model": 19708, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47014, + "fields": { + "id_car_model": 19690, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47015, + "fields": { + "id_car_model": 19689, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47016, + "fields": { + "id_car_model": 19699, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47017, + "fields": { + "id_car_model": 19692, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47019, + "fields": { + "id_car_model": 19744, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47020, + "fields": { + "id_car_model": 19696, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47021, + "fields": { + "id_car_model": 19696, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47022, + "fields": { + "id_car_model": 19696, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47023, + "fields": { + "id_car_model": 19693, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47024, + "fields": { + "id_car_model": 19712, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47025, + "fields": { + "id_car_model": 19711, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47026, + "fields": { + "id_car_model": 19726, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47027, + "fields": { + "id_car_model": 19726, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47028, + "fields": { + "id_car_model": 19726, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47029, + "fields": { + "id_car_model": 19698, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47031, + "fields": { + "id_car_model": 19697, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47032, + "fields": { + "id_car_model": 19724, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47033, + "fields": { + "id_car_model": 19724, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47034, + "fields": { + "id_car_model": 19724, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47035, + "fields": { + "id_car_model": 19701, + "name": "Spider roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47036, + "fields": { + "id_car_model": 19701, + "name": "GTB Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47037, + "fields": { + "id_car_model": 19720, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47038, + "fields": { + "id_car_model": 19720, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47039, + "fields": { + "id_car_model": 19720, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47040, + "fields": { + "id_car_model": 19700, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47041, + "fields": { + "id_car_model": 19745, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47042, + "fields": { + "id_car_model": 19743, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47043, + "fields": { + "id_car_model": 19742, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47044, + "fields": { + "id_car_model": 19741, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47045, + "fields": { + "id_car_model": 19740, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47046, + "fields": { + "id_car_model": 19739, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47047, + "fields": { + "id_car_model": 19738, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47048, + "fields": { + "id_car_model": 19737, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47049, + "fields": { + "id_car_model": 19736, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47050, + "fields": { + "id_car_model": 19735, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47051, + "fields": { + "id_car_model": 19734, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47052, + "fields": { + "id_car_model": 19733, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47053, + "fields": { + "id_car_model": 19733, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47054, + "fields": { + "id_car_model": 19732, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47055, + "fields": { + "id_car_model": 19731, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47056, + "fields": { + "id_car_model": 19730, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47057, + "fields": { + "id_car_model": 19729, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47058, + "fields": { + "id_car_model": 19729, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47059, + "fields": { + "id_car_model": 19729, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47060, + "fields": { + "id_car_model": 19729, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47061, + "fields": { + "id_car_model": 19729, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47062, + "fields": { + "id_car_model": 19729, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47063, + "fields": { + "id_car_model": 19729, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47064, + "fields": { + "id_car_model": 19729, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47065, + "fields": { + "id_car_model": 19729, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47066, + "fields": { + "id_car_model": 19729, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47067, + "fields": { + "id_car_model": 19729, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47068, + "fields": { + "id_car_model": 19729, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47069, + "fields": { + "id_car_model": 19727, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47070, + "fields": { + "id_car_model": 19727, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47071, + "fields": { + "id_car_model": 19727, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47072, + "fields": { + "id_car_model": 19727, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47073, + "fields": { + "id_car_model": 19725, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47074, + "fields": { + "id_car_model": 19723, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47075, + "fields": { + "id_car_model": 19722, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47076, + "fields": { + "id_car_model": 19721, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47077, + "fields": { + "id_car_model": 19719, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47078, + "fields": { + "id_car_model": 19718, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47079, + "fields": { + "id_car_model": 19716, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47080, + "fields": { + "id_car_model": 19715, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47081, + "fields": { + "id_car_model": 19713, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47082, + "fields": { + "id_car_model": 19695, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47083, + "fields": { + "id_car_model": 19695, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47084, + "fields": { + "id_car_model": 19695, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47085, + "fields": { + "id_car_model": 19695, + "name": "wagon 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47086, + "fields": { + "id_car_model": 19695, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47087, + "fields": { + "id_car_model": 19695, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47088, + "fields": { + "id_car_model": 8, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47089, + "fields": { + "id_car_model": 12, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47090, + "fields": { + "id_car_model": 16, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47094, + "fields": { + "id_car_model": 82, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47095, + "fields": { + "id_car_model": 84, + "name": "Avant wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47096, + "fields": { + "id_car_model": 85, + "name": "Sportback liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47097, + "fields": { + "id_car_model": 85, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47098, + "fields": { + "id_car_model": 87, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47099, + "fields": { + "id_car_model": 87, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47100, + "fields": { + "id_car_model": 89, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47101, + "fields": { + "id_car_model": 89, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47102, + "fields": { + "id_car_model": 89, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47104, + "fields": { + "id_car_model": 89, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47105, + "fields": { + "id_car_model": 89, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47106, + "fields": { + "id_car_model": 96, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47107, + "fields": { + "id_car_model": 97, + "name": "Spyder cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47108, + "fields": { + "id_car_model": 97, + "name": "GT Spyder cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47109, + "fields": { + "id_car_model": 97, + "name": "GT Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47110, + "fields": { + "id_car_model": 97, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47111, + "fields": { + "id_car_model": 106, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47112, + "fields": { + "id_car_model": 108, + "name": "Avant wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47113, + "fields": { + "id_car_model": 108, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47114, + "fields": { + "id_car_model": 110, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47115, + "fields": { + "id_car_model": 110, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47116, + "fields": { + "id_car_model": 114, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47117, + "fields": { + "id_car_model": 114, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47118, + "fields": { + "id_car_model": 128, + "name": "R Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47119, + "fields": { + "id_car_model": 136, + "name": "EWB Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47120, + "fields": { + "id_car_model": 136, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47130, + "fields": { + "id_car_model": 158, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47131, + "fields": { + "id_car_model": 158, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47132, + "fields": { + "id_car_model": 186, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47133, + "fields": { + "id_car_model": 186, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47134, + "fields": { + "id_car_model": 186, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47135, + "fields": { + "id_car_model": 187, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47136, + "fields": { + "id_car_model": 192, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47137, + "fields": { + "id_car_model": 204, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47138, + "fields": { + "id_car_model": 216, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47139, + "fields": { + "id_car_model": 224, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47140, + "fields": { + "id_car_model": 224, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47142, + "fields": { + "id_car_model": 247, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47143, + "fields": { + "id_car_model": 277, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47144, + "fields": { + "id_car_model": 277, + "name": "Pickup Double cabin Crew Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47149, + "fields": { + "id_car_model": 344, + "name": "Minivan Grand", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47150, + "fields": { + "id_car_model": 344, + "name": "Minivan Grand", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47152, + "fields": { + "id_car_model": 344, + "name": "Minivan Grand", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47153, + "fields": { + "id_car_model": 348, + "name": "Multispace minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47154, + "fields": { + "id_car_model": 358, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47155, + "fields": { + "id_car_model": 360, + "name": "Break wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47156, + "fields": { + "id_car_model": 364, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47157, + "fields": { + "id_car_model": 383, + "name": "Compactvan Stepway", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47158, + "fields": { + "id_car_model": 385, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47162, + "fields": { + "id_car_model": 407, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47163, + "fields": { + "id_car_model": 412, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47166, + "fields": { + "id_car_model": 439, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47167, + "fields": { + "id_car_model": 445, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47168, + "fields": { + "id_car_model": 450, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47169, + "fields": { + "id_car_model": 454, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47170, + "fields": { + "id_car_model": 488, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47172, + "fields": { + "id_car_model": 490, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47173, + "fields": { + "id_car_model": 490, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47174, + "fields": { + "id_car_model": 490, + "name": "Minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47176, + "fields": { + "id_car_model": 491, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47177, + "fields": { + "id_car_model": 491, + "name": "Coupe SRT8", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47178, + "fields": { + "id_car_model": 492, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47179, + "fields": { + "id_car_model": 501, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47184, + "fields": { + "id_car_model": 555, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47185, + "fields": { + "id_car_model": 558, + "name": "Coupe Berlinetta", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47186, + "fields": { + "id_car_model": 558, + "name": "Cabriolet GTS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47187, + "fields": { + "id_car_model": 558, + "name": "Cabriolet Spider", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47188, + "fields": { + "id_car_model": 560, + "name": "Spider roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47189, + "fields": { + "id_car_model": 560, + "name": "Cabriolet Spider", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47192, + "fields": { + "id_car_model": 575, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47193, + "fields": { + "id_car_model": 578, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47194, + "fields": { + "id_car_model": 586, + "name": "Cargo van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47195, + "fields": { + "id_car_model": 586, + "name": "Cargo van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47196, + "fields": { + "id_car_model": 595, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47199, + "fields": { + "id_car_model": 601, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47200, + "fields": { + "id_car_model": 624, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47201, + "fields": { + "id_car_model": 626, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47202, + "fields": { + "id_car_model": 630, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47203, + "fields": { + "id_car_model": 641, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47204, + "fields": { + "id_car_model": 653, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47205, + "fields": { + "id_car_model": 653, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47206, + "fields": { + "id_car_model": 653, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47209, + "fields": { + "id_car_model": 658, + "name": "Pickup Double cabin Double Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47210, + "fields": { + "id_car_model": 658, + "name": "Pickup One-and-a-half cabin Rap Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47211, + "fields": { + "id_car_model": 660, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47212, + "fields": { + "id_car_model": 667, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47215, + "fields": { + "id_car_model": 701, + "name": "Pickup Double cabin Double", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47217, + "fields": { + "id_car_model": 708, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47218, + "fields": { + "id_car_model": 708, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47219, + "fields": { + "id_car_model": 755, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47220, + "fields": { + "id_car_model": 756, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47221, + "fields": { + "id_car_model": 761, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47222, + "fields": { + "id_car_model": 761, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47223, + "fields": { + "id_car_model": 761, + "name": "Beagle wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47224, + "fields": { + "id_car_model": 761, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47225, + "fields": { + "id_car_model": 761, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47227, + "fields": { + "id_car_model": 771, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47228, + "fields": { + "id_car_model": 783, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47229, + "fields": { + "id_car_model": 784, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47231, + "fields": { + "id_car_model": 787, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47233, + "fields": { + "id_car_model": 798, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47234, + "fields": { + "id_car_model": 800, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47235, + "fields": { + "id_car_model": 820, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47236, + "fields": { + "id_car_model": 824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47237, + "fields": { + "id_car_model": 825, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47238, + "fields": { + "id_car_model": 829, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47239, + "fields": { + "id_car_model": 830, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47240, + "fields": { + "id_car_model": 830, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47241, + "fields": { + "id_car_model": 837, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47243, + "fields": { + "id_car_model": 854, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47244, + "fields": { + "id_car_model": 857, + "name": "Hatchback 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47245, + "fields": { + "id_car_model": 860, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47246, + "fields": { + "id_car_model": 873, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47248, + "fields": { + "id_car_model": 890, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47254, + "fields": { + "id_car_model": 919, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47255, + "fields": { + "id_car_model": 919, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47256, + "fields": { + "id_car_model": 919, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47257, + "fields": { + "id_car_model": 935, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47258, + "fields": { + "id_car_model": 935, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47259, + "fields": { + "id_car_model": 938, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47260, + "fields": { + "id_car_model": 939, + "name": "Pro_cee'd hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47263, + "fields": { + "id_car_model": 955, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47264, + "fields": { + "id_car_model": 957, + "name": "LWB minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47265, + "fields": { + "id_car_model": 963, + "name": "Soft Top SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47266, + "fields": { + "id_car_model": 973, + "name": "LP720-4 50th Anniversario Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47267, + "fields": { + "id_car_model": 978, + "name": "Roadster Spyder", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47268, + "fields": { + "id_car_model": 997, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47269, + "fields": { + "id_car_model": 1026, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47270, + "fields": { + "id_car_model": 1026, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47271, + "fields": { + "id_car_model": 1044, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47272, + "fields": { + "id_car_model": 1045, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47274, + "fields": { + "id_car_model": 1048, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47278, + "fields": { + "id_car_model": 1118, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47279, + "fields": { + "id_car_model": 1119, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47281, + "fields": { + "id_car_model": 1210, + "name": "Minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47282, + "fields": { + "id_car_model": 1210, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47285, + "fields": { + "id_car_model": 1255, + "name": "Cooper S cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47286, + "fields": { + "id_car_model": 1255, + "name": "John Cooper Works cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47287, + "fields": { + "id_car_model": 1255, + "name": "Cooper S cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47288, + "fields": { + "id_car_model": 1255, + "name": "Cooper cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47289, + "fields": { + "id_car_model": 1255, + "name": "Cabriolet Cooper S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47290, + "fields": { + "id_car_model": 1255, + "name": "Cabriolet Cooper S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47293, + "fields": { + "id_car_model": 1256, + "name": "John Cooper Works wagon 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47294, + "fields": { + "id_car_model": 1256, + "name": "One wagon 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47295, + "fields": { + "id_car_model": 1258, + "name": "Cooper S crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47296, + "fields": { + "id_car_model": 1258, + "name": "One crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47297, + "fields": { + "id_car_model": 1259, + "name": "Cooper Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47298, + "fields": { + "id_car_model": 1259, + "name": "John Cooper Works Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47299, + "fields": { + "id_car_model": 1260, + "name": "Hatchback 5-doors Cooper S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47307, + "fields": { + "id_car_model": 1261, + "name": "Cooper S hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47308, + "fields": { + "id_car_model": 1261, + "name": "Cooper hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47309, + "fields": { + "id_car_model": 1262, + "name": "Cooper roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47310, + "fields": { + "id_car_model": 1262, + "name": "John Cooper Works roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47311, + "fields": { + "id_car_model": 1267, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47312, + "fields": { + "id_car_model": 1267, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47313, + "fields": { + "id_car_model": 1269, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47314, + "fields": { + "id_car_model": 1271, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47315, + "fields": { + "id_car_model": 1273, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47316, + "fields": { + "id_car_model": 1286, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47317, + "fields": { + "id_car_model": 1286, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47318, + "fields": { + "id_car_model": 1295, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47319, + "fields": { + "id_car_model": 1296, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47321, + "fields": { + "id_car_model": 1297, + "name": "Sedan G4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47322, + "fields": { + "id_car_model": 1301, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47323, + "fields": { + "id_car_model": 1330, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47325, + "fields": { + "id_car_model": 1354, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47326, + "fields": { + "id_car_model": 1354, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47328, + "fields": { + "id_car_model": 1403, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47329, + "fields": { + "id_car_model": 1420, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47330, + "fields": { + "id_car_model": 1421, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47331, + "fields": { + "id_car_model": 1427, + "name": "Sports Tourer wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47332, + "fields": { + "id_car_model": 1431, + "name": "Tour minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47333, + "fields": { + "id_car_model": 1437, + "name": "Sports Tourer wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47334, + "fields": { + "id_car_model": 1437, + "name": "Liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47335, + "fields": { + "id_car_model": 1437, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47336, + "fields": { + "id_car_model": 1457, + "name": "Coupe GTLM", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47337, + "fields": { + "id_car_model": 1457, + "name": "Coupe GTS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47338, + "fields": { + "id_car_model": 1471, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47339, + "fields": { + "id_car_model": 1475, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47340, + "fields": { + "id_car_model": 1475, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47341, + "fields": { + "id_car_model": 1475, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47343, + "fields": { + "id_car_model": 1482, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47344, + "fields": { + "id_car_model": 1482, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47345, + "fields": { + "id_car_model": 1482, + "name": "SS cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47346, + "fields": { + "id_car_model": 1482, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47347, + "fields": { + "id_car_model": 1483, + "name": "Cabriolet SS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47348, + "fields": { + "id_car_model": 1483, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47349, + "fields": { + "id_car_model": 1494, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47350, + "fields": { + "id_car_model": 1494, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47351, + "fields": { + "id_car_model": 1498, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47352, + "fields": { + "id_car_model": 1501, + "name": "VU van 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47353, + "fields": { + "id_car_model": 1512, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47354, + "fields": { + "id_car_model": 1512, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47355, + "fields": { + "id_car_model": 1512, + "name": "Minivan Grand", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47357, + "fields": { + "id_car_model": 1524, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47358, + "fields": { + "id_car_model": 1525, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47359, + "fields": { + "id_car_model": 1525, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47360, + "fields": { + "id_car_model": 1525, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47361, + "fields": { + "id_car_model": 1525, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47362, + "fields": { + "id_car_model": 1525, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47363, + "fields": { + "id_car_model": 1525, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47364, + "fields": { + "id_car_model": 1525, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47365, + "fields": { + "id_car_model": 1525, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47366, + "fields": { + "id_car_model": 1525, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47367, + "fields": { + "id_car_model": 1525, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47368, + "fields": { + "id_car_model": 1525, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47369, + "fields": { + "id_car_model": 1526, + "name": "Minivan SWB", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47371, + "fields": { + "id_car_model": 1532, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47372, + "fields": { + "id_car_model": 1532, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47373, + "fields": { + "id_car_model": 1536, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47374, + "fields": { + "id_car_model": 1536, + "name": "Carrera Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47375, + "fields": { + "id_car_model": 1536, + "name": "R Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47377, + "fields": { + "id_car_model": 1536, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47378, + "fields": { + "id_car_model": 1564, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47379, + "fields": { + "id_car_model": 1567, + "name": "Hatchback 5-doors City SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47380, + "fields": { + "id_car_model": 1590, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47381, + "fields": { + "id_car_model": 1590, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47382, + "fields": { + "id_car_model": 1590, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47383, + "fields": { + "id_car_model": 1590, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47384, + "fields": { + "id_car_model": 1594, + "name": "Passenger minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47385, + "fields": { + "id_car_model": 1594, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47386, + "fields": { + "id_car_model": 1599, + "name": "Coupe hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47388, + "fields": { + "id_car_model": 1599, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47389, + "fields": { + "id_car_model": 1599, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47390, + "fields": { + "id_car_model": 1599, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47391, + "fields": { + "id_car_model": 1600, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47393, + "fields": { + "id_car_model": 1603, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47394, + "fields": { + "id_car_model": 1604, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47395, + "fields": { + "id_car_model": 1604, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47396, + "fields": { + "id_car_model": 1604, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47397, + "fields": { + "id_car_model": 1604, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47398, + "fields": { + "id_car_model": 1604, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47399, + "fields": { + "id_car_model": 1604, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47400, + "fields": { + "id_car_model": 1668, + "name": "Compactvan Freetrack", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47401, + "fields": { + "id_car_model": 1668, + "name": "XL minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47402, + "fields": { + "id_car_model": 1668, + "name": "Freetrack minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47403, + "fields": { + "id_car_model": 1670, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47408, + "fields": { + "id_car_model": 1673, + "name": "SC hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47410, + "fields": { + "id_car_model": 1673, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47411, + "fields": { + "id_car_model": 1674, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47412, + "fields": { + "id_car_model": 1683, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47413, + "fields": { + "id_car_model": 1685, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47414, + "fields": { + "id_car_model": 1686, + "name": "Combi wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47415, + "fields": { + "id_car_model": 1686, + "name": "Combi RS wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47416, + "fields": { + "id_car_model": 1686, + "name": "Liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47417, + "fields": { + "id_car_model": 1686, + "name": "Combi Scout wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47419, + "fields": { + "id_car_model": 1688, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47420, + "fields": { + "id_car_model": 1688, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47422, + "fields": { + "id_car_model": 1717, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47424, + "fields": { + "id_car_model": 1717, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47425, + "fields": { + "id_car_model": 1746, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47427, + "fields": { + "id_car_model": 1757, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47428, + "fields": { + "id_car_model": 1791, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47430, + "fields": { + "id_car_model": 1810, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47431, + "fields": { + "id_car_model": 1812, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47432, + "fields": { + "id_car_model": 1818, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47433, + "fields": { + "id_car_model": 1818, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47434, + "fields": { + "id_car_model": 1818, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47435, + "fields": { + "id_car_model": 1818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47436, + "fields": { + "id_car_model": 1818, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47437, + "fields": { + "id_car_model": 1818, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47438, + "fields": { + "id_car_model": 1826, + "name": "Athlete Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47439, + "fields": { + "id_car_model": 1826, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47440, + "fields": { + "id_car_model": 1826, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47441, + "fields": { + "id_car_model": 1826, + "name": "JDM wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47442, + "fields": { + "id_car_model": 1826, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47444, + "fields": { + "id_car_model": 1890, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47445, + "fields": { + "id_car_model": 1902, + "name": "Kasten van 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47446, + "fields": { + "id_car_model": 1902, + "name": "Maxi minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47447, + "fields": { + "id_car_model": 1902, + "name": "Kasten van 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47448, + "fields": { + "id_car_model": 1902, + "name": "Tramper minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47449, + "fields": { + "id_car_model": 1908, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47450, + "fields": { + "id_car_model": 1908, + "name": "R32 hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47451, + "fields": { + "id_car_model": 1908, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47454, + "fields": { + "id_car_model": 1915, + "name": "Minivan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47455, + "fields": { + "id_car_model": 1919, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47456, + "fields": { + "id_car_model": 1919, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47457, + "fields": { + "id_car_model": 1929, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47458, + "fields": { + "id_car_model": 1929, + "name": "Cross minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47459, + "fields": { + "id_car_model": 1929, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47461, + "fields": { + "id_car_model": 1948, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47462, + "fields": { + "id_car_model": 1948, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47463, + "fields": { + "id_car_model": 1957, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47466, + "fields": { + "id_car_model": 2032, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47469, + "fields": { + "id_car_model": 2093, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47470, + "fields": { + "id_car_model": 2130, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47471, + "fields": { + "id_car_model": 2134, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47472, + "fields": { + "id_car_model": 2134, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47473, + "fields": { + "id_car_model": 2139, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47474, + "fields": { + "id_car_model": 2139, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47475, + "fields": { + "id_car_model": 2141, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47476, + "fields": { + "id_car_model": 2143, + "name": "King Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47477, + "fields": { + "id_car_model": 2143, + "name": "Crew Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47478, + "fields": { + "id_car_model": 2193, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47479, + "fields": { + "id_car_model": 2197, + "name": "Xtracab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47480, + "fields": { + "id_car_model": 2197, + "name": "Regular pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47481, + "fields": { + "id_car_model": 2200, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47482, + "fields": { + "id_car_model": 2209, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47483, + "fields": { + "id_car_model": 2220, + "name": "Pickup Double cabin Crew", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47484, + "fields": { + "id_car_model": 2220, + "name": "Extended Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47485, + "fields": { + "id_car_model": 2220, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47487, + "fields": { + "id_car_model": 2221, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47488, + "fields": { + "id_car_model": 2221, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47489, + "fields": { + "id_car_model": 2222, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47492, + "fields": { + "id_car_model": 2225, + "name": "Tourer minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47493, + "fields": { + "id_car_model": 2225, + "name": "Mixto minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47494, + "fields": { + "id_car_model": 2225, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47495, + "fields": { + "id_car_model": 2225, + "name": "Mixto minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47496, + "fields": { + "id_car_model": 2225, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47497, + "fields": { + "id_car_model": 2225, + "name": "Mixto minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47498, + "fields": { + "id_car_model": 2229, + "name": "Tepee minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47499, + "fields": { + "id_car_model": 2229, + "name": "Minivan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47502, + "fields": { + "id_car_model": 2236, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47508, + "fields": { + "id_car_model": 2312, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47509, + "fields": { + "id_car_model": 2310, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47510, + "fields": { + "id_car_model": 2310, + "name": "Limousine Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47512, + "fields": { + "id_car_model": 2303, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47513, + "fields": { + "id_car_model": 2303, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47514, + "fields": { + "id_car_model": 1900, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47515, + "fields": { + "id_car_model": 2302, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47516, + "fields": { + "id_car_model": 2302, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47517, + "fields": { + "id_car_model": 2301, + "name": "S Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47518, + "fields": { + "id_car_model": 2301, + "name": "S wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47519, + "fields": { + "id_car_model": 2301, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47520, + "fields": { + "id_car_model": 2301, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47521, + "fields": { + "id_car_model": 2300, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47522, + "fields": { + "id_car_model": 2282, + "name": "Minivan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47525, + "fields": { + "id_car_model": 19288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47526, + "fields": { + "id_car_model": 19284, + "name": "Sedan Pullman", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47537, + "fields": { + "id_car_model": 18882, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47538, + "fields": { + "id_car_model": 19746, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47542, + "fields": { + "id_car_model": 19748, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47544, + "fields": { + "id_car_model": 19750, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47545, + "fields": { + "id_car_model": 19751, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47546, + "fields": { + "id_car_model": 19752, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47547, + "fields": { + "id_car_model": 131, + "name": "T Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47548, + "fields": { + "id_car_model": 131, + "name": "R Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47550, + "fields": { + "id_car_model": 25, + "name": "Sport Wagon wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47551, + "fields": { + "id_car_model": 25, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47552, + "fields": { + "id_car_model": 40, + "name": "Turbodelta Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47553, + "fields": { + "id_car_model": 40, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47554, + "fields": { + "id_car_model": 40, + "name": "SZ Coda Tronca Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47555, + "fields": { + "id_car_model": 40, + "name": "Sprint Speciale Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47556, + "fields": { + "id_car_model": 40, + "name": "Berlina Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47557, + "fields": { + "id_car_model": 40, + "name": "Spider cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47558, + "fields": { + "id_car_model": 40, + "name": "Sprint Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47559, + "fields": { + "id_car_model": 40, + "name": "Sprint Speciale Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47560, + "fields": { + "id_car_model": 40, + "name": "SZ Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47561, + "fields": { + "id_car_model": 40, + "name": "Berlina Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47562, + "fields": { + "id_car_model": 40, + "name": "SVZ Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47563, + "fields": { + "id_car_model": 40, + "name": "Sprint Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47564, + "fields": { + "id_car_model": 55, + "name": "3 roadster 1-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47565, + "fields": { + "id_car_model": 55, + "name": "3.5 roadster 1-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47566, + "fields": { + "id_car_model": 75, + "name": "Avant wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47567, + "fields": { + "id_car_model": 75, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47568, + "fields": { + "id_car_model": 75, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47569, + "fields": { + "id_car_model": 75, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47570, + "fields": { + "id_car_model": 78, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47571, + "fields": { + "id_car_model": 78, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47573, + "fields": { + "id_car_model": 78, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47574, + "fields": { + "id_car_model": 78, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47576, + "fields": { + "id_car_model": 78, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47577, + "fields": { + "id_car_model": 80, + "name": "Sportback hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47578, + "fields": { + "id_car_model": 84, + "name": "Allroad quattro wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47579, + "fields": { + "id_car_model": 84, + "name": "Avant wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47580, + "fields": { + "id_car_model": 84, + "name": "Avant wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47581, + "fields": { + "id_car_model": 87, + "name": "Allroad quattro wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47582, + "fields": { + "id_car_model": 87, + "name": "Allroad quattro wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47583, + "fields": { + "id_car_model": 87, + "name": "Allroad quattro wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47585, + "fields": { + "id_car_model": 93, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47586, + "fields": { + "id_car_model": 95, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47587, + "fields": { + "id_car_model": 95, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47588, + "fields": { + "id_car_model": 98, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47589, + "fields": { + "id_car_model": 101, + "name": "Avant Nogaro selection wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47590, + "fields": { + "id_car_model": 102, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47591, + "fields": { + "id_car_model": 108, + "name": "Avant wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47592, + "fields": { + "id_car_model": 108, + "name": "Avant wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47593, + "fields": { + "id_car_model": 114, + "name": "S Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47594, + "fields": { + "id_car_model": 114, + "name": "RS roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47595, + "fields": { + "id_car_model": 114, + "name": "S roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47596, + "fields": { + "id_car_model": 114, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47597, + "fields": { + "id_car_model": 114, + "name": "RS roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47598, + "fields": { + "id_car_model": 114, + "name": "Roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47599, + "fields": { + "id_car_model": 114, + "name": "RS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47600, + "fields": { + "id_car_model": 114, + "name": "S Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47601, + "fields": { + "id_car_model": 114, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47602, + "fields": { + "id_car_model": 114, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47603, + "fields": { + "id_car_model": 128, + "name": "RL Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47604, + "fields": { + "id_car_model": 129, + "name": "T cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47605, + "fields": { + "id_car_model": 131, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47606, + "fields": { + "id_car_model": 133, + "name": "Speed Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47607, + "fields": { + "id_car_model": 207, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47608, + "fields": { + "id_car_model": 220, + "name": "V Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47609, + "fields": { + "id_car_model": 240, + "name": "XT hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47610, + "fields": { + "id_car_model": 248, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47611, + "fields": { + "id_car_model": 250, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47612, + "fields": { + "id_car_model": 255, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47613, + "fields": { + "id_car_model": 2254, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47614, + "fields": { + "id_car_model": 256, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47615, + "fields": { + "id_car_model": 259, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47616, + "fields": { + "id_car_model": 259, + "name": "SS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47617, + "fields": { + "id_car_model": 259, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47618, + "fields": { + "id_car_model": 259, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47619, + "fields": { + "id_car_model": 260, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47620, + "fields": { + "id_car_model": 260, + "name": "Conversion minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47621, + "fields": { + "id_car_model": 260, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47622, + "fields": { + "id_car_model": 262, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47623, + "fields": { + "id_car_model": 264, + "name": "K5 SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47624, + "fields": { + "id_car_model": 264, + "name": "S-10 SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47625, + "fields": { + "id_car_model": 264, + "name": "S-10 SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47626, + "fields": { + "id_car_model": 264, + "name": "K5 SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47627, + "fields": { + "id_car_model": 264, + "name": "K1500 SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47628, + "fields": { + "id_car_model": 264, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47629, + "fields": { + "id_car_model": 264, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47630, + "fields": { + "id_car_model": 264, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47631, + "fields": { + "id_car_model": 264, + "name": "BR-spec SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47632, + "fields": { + "id_car_model": 264, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47633, + "fields": { + "id_car_model": 267, + "name": "Z28 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47634, + "fields": { + "id_car_model": 267, + "name": "Z28 cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47635, + "fields": { + "id_car_model": 267, + "name": "Z28 cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47636, + "fields": { + "id_car_model": 267, + "name": "Z28 targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47637, + "fields": { + "id_car_model": 267, + "name": "Z28 cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47638, + "fields": { + "id_car_model": 267, + "name": "Z28 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47639, + "fields": { + "id_car_model": 267, + "name": "Z28 T-top targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47640, + "fields": { + "id_car_model": 267, + "name": "Z28 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47641, + "fields": { + "id_car_model": 267, + "name": "Z28 cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47642, + "fields": { + "id_car_model": 267, + "name": "Z28 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47643, + "fields": { + "id_car_model": 267, + "name": "Z28 T-top targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47644, + "fields": { + "id_car_model": 267, + "name": "T-top targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47645, + "fields": { + "id_car_model": 267, + "name": "Z28 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47646, + "fields": { + "id_car_model": 267, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47647, + "fields": { + "id_car_model": 267, + "name": "Z28 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47648, + "fields": { + "id_car_model": 267, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47649, + "fields": { + "id_car_model": 267, + "name": "RS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47650, + "fields": { + "id_car_model": 267, + "name": "Z28 RS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47651, + "fields": { + "id_car_model": 267, + "name": "Z28 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47652, + "fields": { + "id_car_model": 267, + "name": "RS cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47653, + "fields": { + "id_car_model": 267, + "name": "Z28 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47654, + "fields": { + "id_car_model": 267, + "name": "Z28 RS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47655, + "fields": { + "id_car_model": 267, + "name": "RS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47656, + "fields": { + "id_car_model": 267, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47657, + "fields": { + "id_car_model": 267, + "name": "RS cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47658, + "fields": { + "id_car_model": 267, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47659, + "fields": { + "id_car_model": 267, + "name": "Z28 RS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47660, + "fields": { + "id_car_model": 267, + "name": "RS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47661, + "fields": { + "id_car_model": 267, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47662, + "fields": { + "id_car_model": 267, + "name": "Z28 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47663, + "fields": { + "id_car_model": 267, + "name": "RS/SS cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47664, + "fields": { + "id_car_model": 267, + "name": "RS/SS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47665, + "fields": { + "id_car_model": 267, + "name": "Z28 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47666, + "fields": { + "id_car_model": 268, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47667, + "fields": { + "id_car_model": 268, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47668, + "fields": { + "id_car_model": 268, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47669, + "fields": { + "id_car_model": 268, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47670, + "fields": { + "id_car_model": 268, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47671, + "fields": { + "id_car_model": 268, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47672, + "fields": { + "id_car_model": 268, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47673, + "fields": { + "id_car_model": 268, + "name": "Kingswood Estate wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47674, + "fields": { + "id_car_model": 268, + "name": "Kingswood Estate wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47675, + "fields": { + "id_car_model": 268, + "name": "Custom Coupe Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47676, + "fields": { + "id_car_model": 268, + "name": "Sport Sedan Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47677, + "fields": { + "id_car_model": 268, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47678, + "fields": { + "id_car_model": 268, + "name": "Kingswood Estate wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47679, + "fields": { + "id_car_model": 268, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47680, + "fields": { + "id_car_model": 268, + "name": "Convertible cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47681, + "fields": { + "id_car_model": 268, + "name": "Custom Coupe Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47682, + "fields": { + "id_car_model": 268, + "name": "Sport Sedan Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47683, + "fields": { + "id_car_model": 268, + "name": "Sport Sedan Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47684, + "fields": { + "id_car_model": 268, + "name": "Custom Coupe Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47685, + "fields": { + "id_car_model": 268, + "name": "Convertible cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47686, + "fields": { + "id_car_model": 268, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47687, + "fields": { + "id_car_model": 268, + "name": "Kingswood Estate wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47688, + "fields": { + "id_car_model": 268, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47689, + "fields": { + "id_car_model": 268, + "name": "Convertible cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47690, + "fields": { + "id_car_model": 268, + "name": "Kingswood Estate wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47691, + "fields": { + "id_car_model": 268, + "name": "Sport Sedan Hardtop 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47692, + "fields": { + "id_car_model": 268, + "name": "Custom Coupe Hardtop 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47693, + "fields": { + "id_car_model": 268, + "name": "Kingswood Estate wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47694, + "fields": { + "id_car_model": 268, + "name": "Custom Coupe Hardtop 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47695, + "fields": { + "id_car_model": 268, + "name": "Sport Sedan Hardtop 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47696, + "fields": { + "id_car_model": 268, + "name": "Sport Sedan Hardtop 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47697, + "fields": { + "id_car_model": 268, + "name": "Kingswood Estate wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47698, + "fields": { + "id_car_model": 268, + "name": "Custom Coupe Hardtop 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47699, + "fields": { + "id_car_model": 268, + "name": "Sport Sedan Hardtop 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47700, + "fields": { + "id_car_model": 268, + "name": "Custom Coupe Hardtop 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47701, + "fields": { + "id_car_model": 268, + "name": "Sport Sedan Hardtop 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47702, + "fields": { + "id_car_model": 268, + "name": "Custom Coupe Hardtop 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47703, + "fields": { + "id_car_model": 268, + "name": "Kingswood Estate wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47704, + "fields": { + "id_car_model": 268, + "name": "Kingswood Estate wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47705, + "fields": { + "id_car_model": 268, + "name": "Sport Coupe Hardtop 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47706, + "fields": { + "id_car_model": 268, + "name": "Sport Sedan Hardtop 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47707, + "fields": { + "id_car_model": 268, + "name": "Sport Coupe Hardtop 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47708, + "fields": { + "id_car_model": 268, + "name": "Kingswood Estate wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47709, + "fields": { + "id_car_model": 268, + "name": "Sport Sedan Hardtop 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47710, + "fields": { + "id_car_model": 268, + "name": "Sport Coupe Hardtop 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47711, + "fields": { + "id_car_model": 268, + "name": "Sport Sedan Hardtop 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47712, + "fields": { + "id_car_model": 268, + "name": "Kingswood Estate wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47713, + "fields": { + "id_car_model": 268, + "name": "Sport Sedan Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47714, + "fields": { + "id_car_model": 270, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47715, + "fields": { + "id_car_model": 270, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47716, + "fields": { + "id_car_model": 270, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47717, + "fields": { + "id_car_model": 270, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47718, + "fields": { + "id_car_model": 270, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47719, + "fields": { + "id_car_model": 270, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47720, + "fields": { + "id_car_model": 270, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47721, + "fields": { + "id_car_model": 270, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47722, + "fields": { + "id_car_model": 270, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47723, + "fields": { + "id_car_model": 270, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47724, + "fields": { + "id_car_model": 270, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47725, + "fields": { + "id_car_model": 270, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47726, + "fields": { + "id_car_model": 270, + "name": "Station Wagon wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47727, + "fields": { + "id_car_model": 270, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47728, + "fields": { + "id_car_model": 270, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47729, + "fields": { + "id_car_model": 270, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47730, + "fields": { + "id_car_model": 271, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47731, + "fields": { + "id_car_model": 271, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47732, + "fields": { + "id_car_model": 272, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47733, + "fields": { + "id_car_model": 272, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47734, + "fields": { + "id_car_model": 272, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47735, + "fields": { + "id_car_model": 272, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47736, + "fields": { + "id_car_model": 273, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47737, + "fields": { + "id_car_model": 273, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47738, + "fields": { + "id_car_model": 273, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47739, + "fields": { + "id_car_model": 273, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47740, + "fields": { + "id_car_model": 273, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47741, + "fields": { + "id_car_model": 273, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47742, + "fields": { + "id_car_model": 273, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47743, + "fields": { + "id_car_model": 274, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47744, + "fields": { + "id_car_model": 274, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47745, + "fields": { + "id_car_model": 275, + "name": "Station Wagon wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47746, + "fields": { + "id_car_model": 275, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47747, + "fields": { + "id_car_model": 275, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47748, + "fields": { + "id_car_model": 276, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47749, + "fields": { + "id_car_model": 276, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47750, + "fields": { + "id_car_model": 276, + "name": "SS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47751, + "fields": { + "id_car_model": 278, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47752, + "fields": { + "id_car_model": 278, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47753, + "fields": { + "id_car_model": 278, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47754, + "fields": { + "id_car_model": 279, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47755, + "fields": { + "id_car_model": 280, + "name": "Grand Sport cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47756, + "fields": { + "id_car_model": 280, + "name": "Z06 targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47757, + "fields": { + "id_car_model": 280, + "name": "Grand Sport targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47758, + "fields": { + "id_car_model": 280, + "name": "ZR1 targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47759, + "fields": { + "id_car_model": 280, + "name": "targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47760, + "fields": { + "id_car_model": 280, + "name": "50th Anniversary cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47761, + "fields": { + "id_car_model": 280, + "name": "50th Anniversary Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47762, + "fields": { + "id_car_model": 280, + "name": "ZR1 targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47763, + "fields": { + "id_car_model": 280, + "name": "targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47764, + "fields": { + "id_car_model": 280, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47765, + "fields": { + "id_car_model": 280, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47766, + "fields": { + "id_car_model": 280, + "name": "ZR1 targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47767, + "fields": { + "id_car_model": 280, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47768, + "fields": { + "id_car_model": 280, + "name": "Pace Car Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47769, + "fields": { + "id_car_model": 280, + "name": "Stingray roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47770, + "fields": { + "id_car_model": 280, + "name": "Stingray targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47771, + "fields": { + "id_car_model": 280, + "name": "Stingray targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47772, + "fields": { + "id_car_model": 280, + "name": "Stingray cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47773, + "fields": { + "id_car_model": 280, + "name": "Stingray cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47774, + "fields": { + "id_car_model": 280, + "name": "Stingray cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47775, + "fields": { + "id_car_model": 280, + "name": "Stingray roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47776, + "fields": { + "id_car_model": 280, + "name": "Stingray Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47777, + "fields": { + "id_car_model": 280, + "name": "Stingray Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47778, + "fields": { + "id_car_model": 280, + "name": "Stingray roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47779, + "fields": { + "id_car_model": 280, + "name": "Stingray cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47780, + "fields": { + "id_car_model": 280, + "name": "Stingray roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47781, + "fields": { + "id_car_model": 280, + "name": "Stingray Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47782, + "fields": { + "id_car_model": 280, + "name": "Stingray Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47783, + "fields": { + "id_car_model": 280, + "name": "Stingray roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47784, + "fields": { + "id_car_model": 280, + "name": "Stingray Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47785, + "fields": { + "id_car_model": 280, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47786, + "fields": { + "id_car_model": 280, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47787, + "fields": { + "id_car_model": 280, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47788, + "fields": { + "id_car_model": 286, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47789, + "fields": { + "id_car_model": 286, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47791, + "fields": { + "id_car_model": 286, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47793, + "fields": { + "id_car_model": 287, + "name": "SS wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47794, + "fields": { + "id_car_model": 287, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47795, + "fields": { + "id_car_model": 288, + "name": "SS Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47796, + "fields": { + "id_car_model": 288, + "name": "SS Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47797, + "fields": { + "id_car_model": 288, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47798, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47799, + "fields": { + "id_car_model": 288, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47800, + "fields": { + "id_car_model": 288, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47801, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47802, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47803, + "fields": { + "id_car_model": 288, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47804, + "fields": { + "id_car_model": 288, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47805, + "fields": { + "id_car_model": 288, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47806, + "fields": { + "id_car_model": 288, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47807, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47808, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47809, + "fields": { + "id_car_model": 288, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47810, + "fields": { + "id_car_model": 288, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47811, + "fields": { + "id_car_model": 288, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47812, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47813, + "fields": { + "id_car_model": 288, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47814, + "fields": { + "id_car_model": 288, + "name": "Custom Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47815, + "fields": { + "id_car_model": 288, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47816, + "fields": { + "id_car_model": 288, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47817, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47818, + "fields": { + "id_car_model": 288, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47819, + "fields": { + "id_car_model": 288, + "name": "Custom Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47820, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47821, + "fields": { + "id_car_model": 288, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47822, + "fields": { + "id_car_model": 288, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47823, + "fields": { + "id_car_model": 288, + "name": "Custom Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47824, + "fields": { + "id_car_model": 288, + "name": "Kingswood wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47825, + "fields": { + "id_car_model": 288, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47826, + "fields": { + "id_car_model": 288, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47827, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47828, + "fields": { + "id_car_model": 288, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47829, + "fields": { + "id_car_model": 288, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47830, + "fields": { + "id_car_model": 288, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47831, + "fields": { + "id_car_model": 288, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47832, + "fields": { + "id_car_model": 288, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47833, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47834, + "fields": { + "id_car_model": 288, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47835, + "fields": { + "id_car_model": 288, + "name": "Custom Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47836, + "fields": { + "id_car_model": 288, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47837, + "fields": { + "id_car_model": 288, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47838, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47839, + "fields": { + "id_car_model": 288, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47840, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47841, + "fields": { + "id_car_model": 288, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47842, + "fields": { + "id_car_model": 288, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47843, + "fields": { + "id_car_model": 288, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47844, + "fields": { + "id_car_model": 288, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47845, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47846, + "fields": { + "id_car_model": 288, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47847, + "fields": { + "id_car_model": 288, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47848, + "fields": { + "id_car_model": 288, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47849, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47850, + "fields": { + "id_car_model": 288, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47851, + "fields": { + "id_car_model": 288, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47852, + "fields": { + "id_car_model": 288, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47853, + "fields": { + "id_car_model": 288, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47854, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47855, + "fields": { + "id_car_model": 288, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47856, + "fields": { + "id_car_model": 288, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47857, + "fields": { + "id_car_model": 288, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47858, + "fields": { + "id_car_model": 288, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47859, + "fields": { + "id_car_model": 288, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47860, + "fields": { + "id_car_model": 288, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47861, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47862, + "fields": { + "id_car_model": 288, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47863, + "fields": { + "id_car_model": 288, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47864, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47865, + "fields": { + "id_car_model": 288, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47866, + "fields": { + "id_car_model": 288, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47867, + "fields": { + "id_car_model": 288, + "name": "Sport Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47868, + "fields": { + "id_car_model": 288, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47869, + "fields": { + "id_car_model": 288, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47870, + "fields": { + "id_car_model": 288, + "name": "Sport Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47871, + "fields": { + "id_car_model": 288, + "name": "Sport Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47872, + "fields": { + "id_car_model": 288, + "name": "Cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47873, + "fields": { + "id_car_model": 288, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47874, + "fields": { + "id_car_model": 289, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47875, + "fields": { + "id_car_model": 292, + "name": "Ute pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47876, + "fields": { + "id_car_model": 292, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47877, + "fields": { + "id_car_model": 292, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47878, + "fields": { + "id_car_model": 292, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47879, + "fields": { + "id_car_model": 292, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47880, + "fields": { + "id_car_model": 292, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47881, + "fields": { + "id_car_model": 292, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47882, + "fields": { + "id_car_model": 294, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47883, + "fields": { + "id_car_model": 295, + "name": "Maxx SS wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47884, + "fields": { + "id_car_model": 295, + "name": "Station Wagon wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47885, + "fields": { + "id_car_model": 295, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47886, + "fields": { + "id_car_model": 295, + "name": "Classic Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47887, + "fields": { + "id_car_model": 295, + "name": "Sport Sedan Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47888, + "fields": { + "id_car_model": 295, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47889, + "fields": { + "id_car_model": 295, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47890, + "fields": { + "id_car_model": 295, + "name": "Estate Wagon wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47891, + "fields": { + "id_car_model": 295, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47892, + "fields": { + "id_car_model": 295, + "name": "Classic Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47893, + "fields": { + "id_car_model": 297, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47894, + "fields": { + "id_car_model": 297, + "name": "SS Dale Earnhardt Signature Edition Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47895, + "fields": { + "id_car_model": 297, + "name": "SS Jeff Gordon Signature Edition Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47896, + "fields": { + "id_car_model": 297, + "name": "SS Aerocoupe Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47897, + "fields": { + "id_car_model": 297, + "name": "SS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47898, + "fields": { + "id_car_model": 297, + "name": "SS targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47899, + "fields": { + "id_car_model": 297, + "name": "SS Aerocoupe targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47900, + "fields": { + "id_car_model": 297, + "name": "SS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47901, + "fields": { + "id_car_model": 297, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47902, + "fields": { + "id_car_model": 297, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47903, + "fields": { + "id_car_model": 297, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47904, + "fields": { + "id_car_model": 297, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47905, + "fields": { + "id_car_model": 297, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47906, + "fields": { + "id_car_model": 297, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47907, + "fields": { + "id_car_model": 297, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47908, + "fields": { + "id_car_model": 297, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47909, + "fields": { + "id_car_model": 297, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47910, + "fields": { + "id_car_model": 297, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47911, + "fields": { + "id_car_model": 297, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47912, + "fields": { + "id_car_model": 297, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47913, + "fields": { + "id_car_model": 298, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47914, + "fields": { + "id_car_model": 298, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47915, + "fields": { + "id_car_model": 298, + "name": "Spyder hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47916, + "fields": { + "id_car_model": 298, + "name": "Sport hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47917, + "fields": { + "id_car_model": 298, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47918, + "fields": { + "id_car_model": 298, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47920, + "fields": { + "id_car_model": 302, + "name": "Fittipaldi Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47921, + "fields": { + "id_car_model": 302, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47922, + "fields": { + "id_car_model": 302, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47923, + "fields": { + "id_car_model": 302, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47924, + "fields": { + "id_car_model": 306, + "name": "Cabine Dupla BR-spec pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47925, + "fields": { + "id_car_model": 306, + "name": "Cabine Estandida BR-spec pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47926, + "fields": { + "id_car_model": 306, + "name": "Extended Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47927, + "fields": { + "id_car_model": 306, + "name": "Cabine Simples BR-spec pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47928, + "fields": { + "id_car_model": 306, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47929, + "fields": { + "id_car_model": 306, + "name": "Extended Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47930, + "fields": { + "id_car_model": 306, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47931, + "fields": { + "id_car_model": 307, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47932, + "fields": { + "id_car_model": 307, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47933, + "fields": { + "id_car_model": 307, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47935, + "fields": { + "id_car_model": 308, + "name": "ZA-spec Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47936, + "fields": { + "id_car_model": 308, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47937, + "fields": { + "id_car_model": 309, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47938, + "fields": { + "id_car_model": 312, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47939, + "fields": { + "id_car_model": 312, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47940, + "fields": { + "id_car_model": 312, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47941, + "fields": { + "id_car_model": 312, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47942, + "fields": { + "id_car_model": 312, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47943, + "fields": { + "id_car_model": 312, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47944, + "fields": { + "id_car_model": 312, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47945, + "fields": { + "id_car_model": 312, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47946, + "fields": { + "id_car_model": 312, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47947, + "fields": { + "id_car_model": 312, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47948, + "fields": { + "id_car_model": 314, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47949, + "fields": { + "id_car_model": 315, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47950, + "fields": { + "id_car_model": 315, + "name": "SUV 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47951, + "fields": { + "id_car_model": 315, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47952, + "fields": { + "id_car_model": 317, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47953, + "fields": { + "id_car_model": 336, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47954, + "fields": { + "id_car_model": 336, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47955, + "fields": { + "id_car_model": 345, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47956, + "fields": { + "id_car_model": 345, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47957, + "fields": { + "id_car_model": 345, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47958, + "fields": { + "id_car_model": 345, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47959, + "fields": { + "id_car_model": 345, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47960, + "fields": { + "id_car_model": 347, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47961, + "fields": { + "id_car_model": 348, + "name": "Multispace minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47962, + "fields": { + "id_car_model": 348, + "name": "First van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47963, + "fields": { + "id_car_model": 349, + "name": "Break wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47964, + "fields": { + "id_car_model": 353, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47965, + "fields": { + "id_car_model": 368, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47966, + "fields": { + "id_car_model": 371, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47967, + "fields": { + "id_car_model": 375, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47968, + "fields": { + "id_car_model": 375, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47969, + "fields": { + "id_car_model": 375, + "name": "Break wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47970, + "fields": { + "id_car_model": 376, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47971, + "fields": { + "id_car_model": 381, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47972, + "fields": { + "id_car_model": 381, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47973, + "fields": { + "id_car_model": 381, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47974, + "fields": { + "id_car_model": 381, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47975, + "fields": { + "id_car_model": 381, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47976, + "fields": { + "id_car_model": 386, + "name": "MCV wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47977, + "fields": { + "id_car_model": 387, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47978, + "fields": { + "id_car_model": 396, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47979, + "fields": { + "id_car_model": 400, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47980, + "fields": { + "id_car_model": 402, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47981, + "fields": { + "id_car_model": 402, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47982, + "fields": { + "id_car_model": 403, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47983, + "fields": { + "id_car_model": 403, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47984, + "fields": { + "id_car_model": 403, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47985, + "fields": { + "id_car_model": 406, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47986, + "fields": { + "id_car_model": 407, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47987, + "fields": { + "id_car_model": 407, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47988, + "fields": { + "id_car_model": 411, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47989, + "fields": { + "id_car_model": 414, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47990, + "fields": { + "id_car_model": 421, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47991, + "fields": { + "id_car_model": 424, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47992, + "fields": { + "id_car_model": 430, + "name": "3d hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47993, + "fields": { + "id_car_model": 430, + "name": "3d hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47994, + "fields": { + "id_car_model": 433, + "name": "Hard top SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47995, + "fields": { + "id_car_model": 433, + "name": "Soft top SUV 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47996, + "fields": { + "id_car_model": 434, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47997, + "fields": { + "id_car_model": 440, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47998, + "fields": { + "id_car_model": 440, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 47999, + "fields": { + "id_car_model": 440, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48000, + "fields": { + "id_car_model": 444, + "name": "Hard top SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48001, + "fields": { + "id_car_model": 444, + "name": "Soft top SUV 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48002, + "fields": { + "id_car_model": 444, + "name": "Hard top SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48003, + "fields": { + "id_car_model": 444, + "name": "Soft top SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48004, + "fields": { + "id_car_model": 447, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48005, + "fields": { + "id_car_model": 449, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48006, + "fields": { + "id_car_model": 449, + "name": "Custom hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48007, + "fields": { + "id_car_model": 449, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48008, + "fields": { + "id_car_model": 450, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48009, + "fields": { + "id_car_model": 480, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48010, + "fields": { + "id_car_model": 491, + "name": "Rallye Hardtop 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48011, + "fields": { + "id_car_model": 491, + "name": "Hardtop 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48012, + "fields": { + "id_car_model": 491, + "name": "Rallye Hardtop 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48013, + "fields": { + "id_car_model": 491, + "name": "Hardtop 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48014, + "fields": { + "id_car_model": 491, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48015, + "fields": { + "id_car_model": 491, + "name": "R/T Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48016, + "fields": { + "id_car_model": 491, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48017, + "fields": { + "id_car_model": 491, + "name": "T/A Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48018, + "fields": { + "id_car_model": 491, + "name": "R/T Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48019, + "fields": { + "id_car_model": 491, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48020, + "fields": { + "id_car_model": 500, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48021, + "fields": { + "id_car_model": 508, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48022, + "fields": { + "id_car_model": 528, + "name": "L Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48023, + "fields": { + "id_car_model": 528, + "name": "L Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48024, + "fields": { + "id_car_model": 531, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48025, + "fields": { + "id_car_model": 565, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48026, + "fields": { + "id_car_model": 565, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48028, + "fields": { + "id_car_model": 586, + "name": "Cargo van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48029, + "fields": { + "id_car_model": 586, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48030, + "fields": { + "id_car_model": 588, + "name": "Adventure van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48031, + "fields": { + "id_car_model": 588, + "name": "Qubo minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48032, + "fields": { + "id_car_model": 593, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48033, + "fields": { + "id_car_model": 596, + "name": "Grande Punto hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48034, + "fields": { + "id_car_model": 596, + "name": "Evo hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48035, + "fields": { + "id_car_model": 600, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48036, + "fields": { + "id_car_model": 602, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48037, + "fields": { + "id_car_model": 602, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48038, + "fields": { + "id_car_model": 624, + "name": "Hybrid crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48039, + "fields": { + "id_car_model": 626, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48040, + "fields": { + "id_car_model": 626, + "name": "Express van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48041, + "fields": { + "id_car_model": 626, + "name": "Express van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48042, + "fields": { + "id_car_model": 626, + "name": "RS wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48043, + "fields": { + "id_car_model": 626, + "name": "RS wagon 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48044, + "fields": { + "id_car_model": 626, + "name": "RS hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48045, + "fields": { + "id_car_model": 626, + "name": "Cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48046, + "fields": { + "id_car_model": 626, + "name": "RS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48048, + "fields": { + "id_car_model": 626, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48049, + "fields": { + "id_car_model": 626, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48050, + "fields": { + "id_car_model": 626, + "name": "RS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48051, + "fields": { + "id_car_model": 626, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48052, + "fields": { + "id_car_model": 626, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48054, + "fields": { + "id_car_model": 626, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48055, + "fields": { + "id_car_model": 626, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48056, + "fields": { + "id_car_model": 630, + "name": "Sport SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48057, + "fields": { + "id_car_model": 630, + "name": "Sport SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48058, + "fields": { + "id_car_model": 630, + "name": "Sport SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48059, + "fields": { + "id_car_model": 633, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48060, + "fields": { + "id_car_model": 633, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48061, + "fields": { + "id_car_model": 633, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48062, + "fields": { + "id_car_model": 633, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48065, + "fields": { + "id_car_model": 634, + "name": "ST hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48066, + "fields": { + "id_car_model": 634, + "name": "USA, BR hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48067, + "fields": { + "id_car_model": 634, + "name": "USA Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48069, + "fields": { + "id_car_model": 634, + "name": "Classic Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48070, + "fields": { + "id_car_model": 634, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48071, + "fields": { + "id_car_model": 634, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48072, + "fields": { + "id_car_model": 634, + "name": "BR Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48073, + "fields": { + "id_car_model": 634, + "name": "ST hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48074, + "fields": { + "id_car_model": 634, + "name": "BR hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48076, + "fields": { + "id_car_model": 634, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48077, + "fields": { + "id_car_model": 634, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48078, + "fields": { + "id_car_model": 634, + "name": "ST hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48081, + "fields": { + "id_car_model": 634, + "name": "Ikon Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48083, + "fields": { + "id_car_model": 634, + "name": "XR2 hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48085, + "fields": { + "id_car_model": 634, + "name": "XR hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48091, + "fields": { + "id_car_model": 637, + "name": "ST hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48092, + "fields": { + "id_car_model": 637, + "name": "CC cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48093, + "fields": { + "id_car_model": 637, + "name": "RS500 hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48096, + "fields": { + "id_car_model": 637, + "name": "RS Le Mans Edition hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48097, + "fields": { + "id_car_model": 637, + "name": "WRC-S Edition hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48098, + "fields": { + "id_car_model": 637, + "name": "CC cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48099, + "fields": { + "id_car_model": 637, + "name": "ST WRC Edition hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48101, + "fields": { + "id_car_model": 637, + "name": "RS hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48102, + "fields": { + "id_car_model": 637, + "name": "ST hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48105, + "fields": { + "id_car_model": 637, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48108, + "fields": { + "id_car_model": 647, + "name": "StreetKA cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48109, + "fields": { + "id_car_model": 651, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48110, + "fields": { + "id_car_model": 651, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48111, + "fields": { + "id_car_model": 651, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48113, + "fields": { + "id_car_model": 658, + "name": "Double Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48114, + "fields": { + "id_car_model": 658, + "name": "Rap Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48115, + "fields": { + "id_car_model": 658, + "name": "Double Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48116, + "fields": { + "id_car_model": 658, + "name": "Super Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48117, + "fields": { + "id_car_model": 660, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48118, + "fields": { + "id_car_model": 660, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48119, + "fields": { + "id_car_model": 667, + "name": "Turbo Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48120, + "fields": { + "id_car_model": 669, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48121, + "fields": { + "id_car_model": 676, + "name": "Atu Plus Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48122, + "fields": { + "id_car_model": 676, + "name": "Caro Plus hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48123, + "fields": { + "id_car_model": 676, + "name": "Caro hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48124, + "fields": { + "id_car_model": 676, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48126, + "fields": { + "id_car_model": 682, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48127, + "fields": { + "id_car_model": 22474, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48128, + "fields": { + "id_car_model": 688, + "name": "Cross hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48129, + "fields": { + "id_car_model": 701, + "name": "Regular Cab pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48130, + "fields": { + "id_car_model": 721, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48131, + "fields": { + "id_car_model": 725, + "name": "Pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48132, + "fields": { + "id_car_model": 726, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48133, + "fields": { + "id_car_model": 727, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48134, + "fields": { + "id_car_model": 739, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48135, + "fields": { + "id_car_model": 753, + "name": "US-spec Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48136, + "fields": { + "id_car_model": 753, + "name": "JP-spec Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48137, + "fields": { + "id_car_model": 753, + "name": "JP-spec wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48138, + "fields": { + "id_car_model": 753, + "name": "Euro R Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48139, + "fields": { + "id_car_model": 753, + "name": "US-spec Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48140, + "fields": { + "id_car_model": 753, + "name": "US-spec Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48141, + "fields": { + "id_car_model": 753, + "name": "Aerodeck wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48142, + "fields": { + "id_car_model": 753, + "name": "US-spec Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48143, + "fields": { + "id_car_model": 753, + "name": "US-spec Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48144, + "fields": { + "id_car_model": 753, + "name": "US-spec hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48145, + "fields": { + "id_car_model": 753, + "name": "US-spec Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48147, + "fields": { + "id_car_model": 753, + "name": "US-spec Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48148, + "fields": { + "id_car_model": 753, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48149, + "fields": { + "id_car_model": 753, + "name": "GXR Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48150, + "fields": { + "id_car_model": 753, + "name": "US-spec Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48151, + "fields": { + "id_car_model": 753, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48152, + "fields": { + "id_car_model": 754, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48153, + "fields": { + "id_car_model": 756, + "name": "Nouvelle Vague wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48155, + "fields": { + "id_car_model": 759, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48156, + "fields": { + "id_car_model": 759, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48157, + "fields": { + "id_car_model": 761, + "name": "Tourer wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48158, + "fields": { + "id_car_model": 761, + "name": "Si Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48159, + "fields": { + "id_car_model": 761, + "name": "US-spec Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48160, + "fields": { + "id_car_model": 761, + "name": "Si Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48161, + "fields": { + "id_car_model": 761, + "name": "Hybrid Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48162, + "fields": { + "id_car_model": 761, + "name": "US-spec Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48163, + "fields": { + "id_car_model": 761, + "name": "Si Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48165, + "fields": { + "id_car_model": 761, + "name": "Type-S hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48167, + "fields": { + "id_car_model": 761, + "name": "Hybrid Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48168, + "fields": { + "id_car_model": 761, + "name": "Si Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48169, + "fields": { + "id_car_model": 761, + "name": "Type-R Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48171, + "fields": { + "id_car_model": 761, + "name": "Type-R hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48172, + "fields": { + "id_car_model": 761, + "name": "Si hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48173, + "fields": { + "id_car_model": 761, + "name": "Hybrid Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48174, + "fields": { + "id_car_model": 761, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48176, + "fields": { + "id_car_model": 761, + "name": "Hybrid Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48177, + "fields": { + "id_car_model": 761, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48178, + "fields": { + "id_car_model": 761, + "name": "Si hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48179, + "fields": { + "id_car_model": 761, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48180, + "fields": { + "id_car_model": 761, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48183, + "fields": { + "id_car_model": 761, + "name": "Si Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48184, + "fields": { + "id_car_model": 761, + "name": "Si hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48185, + "fields": { + "id_car_model": 761, + "name": "RS Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48186, + "fields": { + "id_car_model": 761, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48187, + "fields": { + "id_car_model": 761, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48188, + "fields": { + "id_car_model": 766, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48189, + "fields": { + "id_car_model": 766, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48190, + "fields": { + "id_car_model": 769, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48191, + "fields": { + "id_car_model": 770, + "name": "SC crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48192, + "fields": { + "id_car_model": 770, + "name": "SC crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48193, + "fields": { + "id_car_model": 771, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48194, + "fields": { + "id_car_model": 771, + "name": "Prestige minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48195, + "fields": { + "id_car_model": 771, + "name": "Prestige minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48196, + "fields": { + "id_car_model": 773, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48197, + "fields": { + "id_car_model": 774, + "name": "RS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48198, + "fields": { + "id_car_model": 774, + "name": "Hybrid hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48199, + "fields": { + "id_car_model": 774, + "name": "RS Hybrid hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48200, + "fields": { + "id_car_model": 774, + "name": "RS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48201, + "fields": { + "id_car_model": 774, + "name": "EV hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48202, + "fields": { + "id_car_model": 774, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48203, + "fields": { + "id_car_model": 774, + "name": "US-spec hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48204, + "fields": { + "id_car_model": 774, + "name": "RS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48205, + "fields": { + "id_car_model": 774, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48206, + "fields": { + "id_car_model": 776, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48207, + "fields": { + "id_car_model": 776, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48208, + "fields": { + "id_car_model": 779, + "name": "Type-S Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48209, + "fields": { + "id_car_model": 780, + "name": "Type S Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48210, + "fields": { + "id_car_model": 780, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48211, + "fields": { + "id_car_model": 780, + "name": "Type R JP Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48212, + "fields": { + "id_car_model": 780, + "name": "Type R Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48213, + "fields": { + "id_car_model": 780, + "name": "Type R Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48214, + "fields": { + "id_car_model": 780, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48215, + "fields": { + "id_car_model": 780, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48216, + "fields": { + "id_car_model": 782, + "name": "Hybrid hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48217, + "fields": { + "id_car_model": 782, + "name": "Si hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48218, + "fields": { + "id_car_model": 783, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48219, + "fields": { + "id_car_model": 784, + "name": "Diva hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48220, + "fields": { + "id_car_model": 784, + "name": "Diva hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48221, + "fields": { + "id_car_model": 784, + "name": "Diva hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48222, + "fields": { + "id_car_model": 784, + "name": "Dunk hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48223, + "fields": { + "id_car_model": 784, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48224, + "fields": { + "id_car_model": 784, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48225, + "fields": { + "id_car_model": 784, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48227, + "fields": { + "id_car_model": 784, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48228, + "fields": { + "id_car_model": 784, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48229, + "fields": { + "id_car_model": 784, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48230, + "fields": { + "id_car_model": 784, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48231, + "fields": { + "id_car_model": 785, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48232, + "fields": { + "id_car_model": 785, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48233, + "fields": { + "id_car_model": 785, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48234, + "fields": { + "id_car_model": 788, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48235, + "fields": { + "id_car_model": 788, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48236, + "fields": { + "id_car_model": 788, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48237, + "fields": { + "id_car_model": 790, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48238, + "fields": { + "id_car_model": 790, + "name": "Absolute minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48239, + "fields": { + "id_car_model": 790, + "name": "US-spec minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48240, + "fields": { + "id_car_model": 790, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48241, + "fields": { + "id_car_model": 790, + "name": "Absolute minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48242, + "fields": { + "id_car_model": 790, + "name": "US-spec minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48243, + "fields": { + "id_car_model": 790, + "name": "Absolute minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48244, + "fields": { + "id_car_model": 790, + "name": "US-spec minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48245, + "fields": { + "id_car_model": 790, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48246, + "fields": { + "id_car_model": 790, + "name": "US-spec minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48247, + "fields": { + "id_car_model": 790, + "name": "Absolute minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48248, + "fields": { + "id_car_model": 790, + "name": "US-spec minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48249, + "fields": { + "id_car_model": 790, + "name": "Prestige minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48250, + "fields": { + "id_car_model": 790, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48251, + "fields": { + "id_car_model": 790, + "name": "Prestige minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48252, + "fields": { + "id_car_model": 795, + "name": "Type SH Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48253, + "fields": { + "id_car_model": 795, + "name": "Type S Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48254, + "fields": { + "id_car_model": 800, + "name": "Type S roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48255, + "fields": { + "id_car_model": 800, + "name": "CR roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48256, + "fields": { + "id_car_model": 801, + "name": "Type S Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48257, + "fields": { + "id_car_model": 803, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48258, + "fields": { + "id_car_model": 803, + "name": "Spada minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48259, + "fields": { + "id_car_model": 803, + "name": "Spada minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48260, + "fields": { + "id_car_model": 803, + "name": "Spada minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48261, + "fields": { + "id_car_model": 803, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48262, + "fields": { + "id_car_model": 803, + "name": "Spada minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48263, + "fields": { + "id_car_model": 804, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48264, + "fields": { + "id_car_model": 807, + "name": "Euro R Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48265, + "fields": { + "id_car_model": 817, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48266, + "fields": { + "id_car_model": 820, + "name": "Hybrid Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48267, + "fields": { + "id_car_model": 820, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48268, + "fields": { + "id_car_model": 821, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48269, + "fields": { + "id_car_model": 821, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48270, + "fields": { + "id_car_model": 822, + "name": "TSIII Coupe 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48271, + "fields": { + "id_car_model": 822, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48272, + "fields": { + "id_car_model": 824, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48273, + "fields": { + "id_car_model": 824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48274, + "fields": { + "id_car_model": 825, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48275, + "fields": { + "id_car_model": 825, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48276, + "fields": { + "id_car_model": 826, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48277, + "fields": { + "id_car_model": 826, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48278, + "fields": { + "id_car_model": 826, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48279, + "fields": { + "id_car_model": 826, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48280, + "fields": { + "id_car_model": 826, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48281, + "fields": { + "id_car_model": 826, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48282, + "fields": { + "id_car_model": 826, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48283, + "fields": { + "id_car_model": 826, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48284, + "fields": { + "id_car_model": 826, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48285, + "fields": { + "id_car_model": 826, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48286, + "fields": { + "id_car_model": 826, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48287, + "fields": { + "id_car_model": 827, + "name": "Innovation SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48288, + "fields": { + "id_car_model": 827, + "name": "Exceed SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48291, + "fields": { + "id_car_model": 828, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48292, + "fields": { + "id_car_model": 828, + "name": "R Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48293, + "fields": { + "id_car_model": 828, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48295, + "fields": { + "id_car_model": 831, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48296, + "fields": { + "id_car_model": 839, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48297, + "fields": { + "id_car_model": 840, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48298, + "fields": { + "id_car_model": 842, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48299, + "fields": { + "id_car_model": 842, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48300, + "fields": { + "id_car_model": 844, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48301, + "fields": { + "id_car_model": 844, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48302, + "fields": { + "id_car_model": 844, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48303, + "fields": { + "id_car_model": 844, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48304, + "fields": { + "id_car_model": 845, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48305, + "fields": { + "id_car_model": 849, + "name": "Hybrid Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48306, + "fields": { + "id_car_model": 849, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48307, + "fields": { + "id_car_model": 850, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48308, + "fields": { + "id_car_model": 850, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48309, + "fields": { + "id_car_model": 850, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48310, + "fields": { + "id_car_model": 851, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48311, + "fields": { + "id_car_model": 853, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48312, + "fields": { + "id_car_model": 856, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48313, + "fields": { + "id_car_model": 859, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48314, + "fields": { + "id_car_model": 859, + "name": "Transform Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48315, + "fields": { + "id_car_model": 859, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48316, + "fields": { + "id_car_model": 859, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48317, + "fields": { + "id_car_model": 859, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48318, + "fields": { + "id_car_model": 862, + "name": "Sebastian Vettel Edition crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48319, + "fields": { + "id_car_model": 864, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48320, + "fields": { + "id_car_model": 864, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48321, + "fields": { + "id_car_model": 864, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48322, + "fields": { + "id_car_model": 864, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48323, + "fields": { + "id_car_model": 864, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48324, + "fields": { + "id_car_model": 864, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48325, + "fields": { + "id_car_model": 864, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48326, + "fields": { + "id_car_model": 864, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48327, + "fields": { + "id_car_model": 864, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48328, + "fields": { + "id_car_model": 864, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48329, + "fields": { + "id_car_model": 867, + "name": "M35 Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48330, + "fields": { + "id_car_model": 867, + "name": "M35 Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48331, + "fields": { + "id_car_model": 867, + "name": "M45 Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48335, + "fields": { + "id_car_model": 872, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48336, + "fields": { + "id_car_model": 873, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48337, + "fields": { + "id_car_model": 886, + "name": "Soft top SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48338, + "fields": { + "id_car_model": 886, + "name": "Hard top SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48339, + "fields": { + "id_car_model": 886, + "name": "Soft top SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48340, + "fields": { + "id_car_model": 898, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48341, + "fields": { + "id_car_model": 916, + "name": "R Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48342, + "fields": { + "id_car_model": 917, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48343, + "fields": { + "id_car_model": 917, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48344, + "fields": { + "id_car_model": 918, + "name": "XFR-S Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48345, + "fields": { + "id_car_model": 918, + "name": "R Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48346, + "fields": { + "id_car_model": 919, + "name": "Super V8 Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48347, + "fields": { + "id_car_model": 922, + "name": "XKR cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48348, + "fields": { + "id_car_model": 922, + "name": "XKR-S Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48349, + "fields": { + "id_car_model": 922, + "name": "XKR-S cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48350, + "fields": { + "id_car_model": 922, + "name": "XK8 Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48351, + "fields": { + "id_car_model": 922, + "name": "XKR cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48352, + "fields": { + "id_car_model": 922, + "name": "XK8 cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48353, + "fields": { + "id_car_model": 922, + "name": "XKR Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48354, + "fields": { + "id_car_model": 922, + "name": "XK8 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48355, + "fields": { + "id_car_model": 922, + "name": "XKR cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48356, + "fields": { + "id_car_model": 922, + "name": "XK8 cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48357, + "fields": { + "id_car_model": 922, + "name": "XKR Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48358, + "fields": { + "id_car_model": 922, + "name": "XK8 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48359, + "fields": { + "id_car_model": 922, + "name": "XK8 cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48360, + "fields": { + "id_car_model": 922, + "name": "XKR cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48362, + "fields": { + "id_car_model": 927, + "name": "SRT SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48363, + "fields": { + "id_car_model": 931, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48364, + "fields": { + "id_car_model": 931, + "name": "Unlimited SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48365, + "fields": { + "id_car_model": 934, + "name": "Delta Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48366, + "fields": { + "id_car_model": 934, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48367, + "fields": { + "id_car_model": 936, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48368, + "fields": { + "id_car_model": 936, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48369, + "fields": { + "id_car_model": 937, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48370, + "fields": { + "id_car_model": 939, + "name": "Pro_cee'd GT hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48371, + "fields": { + "id_car_model": 939, + "name": "GT hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48372, + "fields": { + "id_car_model": 939, + "name": "SW wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48373, + "fields": { + "id_car_model": 939, + "name": "Pro_cee'd hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48374, + "fields": { + "id_car_model": 942, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48375, + "fields": { + "id_car_model": 950, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48376, + "fields": { + "id_car_model": 951, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48377, + "fields": { + "id_car_model": 952, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48378, + "fields": { + "id_car_model": 952, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48379, + "fields": { + "id_car_model": 952, + "name": "Beta Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48380, + "fields": { + "id_car_model": 953, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48381, + "fields": { + "id_car_model": 956, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48382, + "fields": { + "id_car_model": 956, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48383, + "fields": { + "id_car_model": 962, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48384, + "fields": { + "id_car_model": 962, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48385, + "fields": { + "id_car_model": 962, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48386, + "fields": { + "id_car_model": 962, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48388, + "fields": { + "id_car_model": 962, + "name": "Liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48389, + "fields": { + "id_car_model": 962, + "name": "KDM Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48390, + "fields": { + "id_car_model": 962, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48391, + "fields": { + "id_car_model": 962, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48392, + "fields": { + "id_car_model": 975, + "name": "VT roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48393, + "fields": { + "id_car_model": 975, + "name": "GT Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48394, + "fields": { + "id_car_model": 975, + "name": "SV Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48395, + "fields": { + "id_car_model": 975, + "name": "VT Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48396, + "fields": { + "id_car_model": 975, + "name": "VT roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48397, + "fields": { + "id_car_model": 975, + "name": "VT Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48398, + "fields": { + "id_car_model": 975, + "name": "SV Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48399, + "fields": { + "id_car_model": 975, + "name": "SE30 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48400, + "fields": { + "id_car_model": 977, + "name": "LP560-4 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48401, + "fields": { + "id_car_model": 977, + "name": "LP570-4 Superleggera Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48402, + "fields": { + "id_car_model": 977, + "name": "LP550-2 Valentino Balboni Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48403, + "fields": { + "id_car_model": 977, + "name": "LP570-4 Spyder Perfomante roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48404, + "fields": { + "id_car_model": 983, + "name": "LP640 Roadster roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48405, + "fields": { + "id_car_model": 984, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48406, + "fields": { + "id_car_model": 990, + "name": "Integrale hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48407, + "fields": { + "id_car_model": 992, + "name": "Berlina fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48408, + "fields": { + "id_car_model": 992, + "name": "Coupe Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48409, + "fields": { + "id_car_model": 1008, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48415, + "fields": { + "id_car_model": 1026, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48418, + "fields": { + "id_car_model": 1028, + "name": "F Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48419, + "fields": { + "id_car_model": 1029, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48420, + "fields": { + "id_car_model": 1032, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48421, + "fields": { + "id_car_model": 1049, + "name": "Stretch Limousine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48422, + "fields": { + "id_car_model": 1049, + "name": "L Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48423, + "fields": { + "id_car_model": 1053, + "name": "SC roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48424, + "fields": { + "id_car_model": 1054, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48425, + "fields": { + "id_car_model": 1056, + "name": "SE Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48426, + "fields": { + "id_car_model": 1064, + "name": "MPV minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48427, + "fields": { + "id_car_model": 1107, + "name": "S Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48428, + "fields": { + "id_car_model": 1115, + "name": "Sport GT S Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48429, + "fields": { + "id_car_model": 1115, + "name": "S Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48430, + "fields": { + "id_car_model": 1123, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48431, + "fields": { + "id_car_model": 1124, + "name": "MPS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48432, + "fields": { + "id_car_model": 1124, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48433, + "fields": { + "id_car_model": 1125, + "name": "GT hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48434, + "fields": { + "id_car_model": 1125, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48436, + "fields": { + "id_car_model": 1125, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48437, + "fields": { + "id_car_model": 1125, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48438, + "fields": { + "id_car_model": 1125, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48439, + "fields": { + "id_car_model": 1127, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48440, + "fields": { + "id_car_model": 1127, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48441, + "fields": { + "id_car_model": 1128, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48442, + "fields": { + "id_car_model": 1129, + "name": "US-Spec. Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48443, + "fields": { + "id_car_model": 1129, + "name": "US-Spec. Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48444, + "fields": { + "id_car_model": 1129, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48445, + "fields": { + "id_car_model": 1129, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48446, + "fields": { + "id_car_model": 1129, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48447, + "fields": { + "id_car_model": 1129, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48448, + "fields": { + "id_car_model": 1129, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48449, + "fields": { + "id_car_model": 1129, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48450, + "fields": { + "id_car_model": 1129, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48451, + "fields": { + "id_car_model": 1129, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48452, + "fields": { + "id_car_model": 1132, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48453, + "fields": { + "id_car_model": 1132, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48454, + "fields": { + "id_car_model": 1132, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48455, + "fields": { + "id_car_model": 1132, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48456, + "fields": { + "id_car_model": 1132, + "name": "Mazdaspeed Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48457, + "fields": { + "id_car_model": 1132, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48458, + "fields": { + "id_car_model": 1132, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48459, + "fields": { + "id_car_model": 1132, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48460, + "fields": { + "id_car_model": 1133, + "name": "Mazdaspeed hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48461, + "fields": { + "id_car_model": 1133, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48462, + "fields": { + "id_car_model": 1135, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48463, + "fields": { + "id_car_model": 1136, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48464, + "fields": { + "id_car_model": 1136, + "name": "Custom Style hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48465, + "fields": { + "id_car_model": 1136, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48466, + "fields": { + "id_car_model": 1136, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48467, + "fields": { + "id_car_model": 1137, + "name": "Double Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48468, + "fields": { + "id_car_model": 1137, + "name": "Cab Plus pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48469, + "fields": { + "id_car_model": 1137, + "name": "Freestyle Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48470, + "fields": { + "id_car_model": 1137, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48472, + "fields": { + "id_car_model": 1137, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48473, + "fields": { + "id_car_model": 1137, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48474, + "fields": { + "id_car_model": 1137, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48475, + "fields": { + "id_car_model": 1140, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48477, + "fields": { + "id_car_model": 1140, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48482, + "fields": { + "id_car_model": 1141, + "name": "Single Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48486, + "fields": { + "id_car_model": 1142, + "name": "JP-spec Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48487, + "fields": { + "id_car_model": 1142, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48488, + "fields": { + "id_car_model": 1142, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48489, + "fields": { + "id_car_model": 1142, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48490, + "fields": { + "id_car_model": 1142, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48491, + "fields": { + "id_car_model": 1142, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48492, + "fields": { + "id_car_model": 1142, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48493, + "fields": { + "id_car_model": 1147, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48494, + "fields": { + "id_car_model": 1148, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48495, + "fields": { + "id_car_model": 1148, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48496, + "fields": { + "id_car_model": 1156, + "name": "Field Break hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48497, + "fields": { + "id_car_model": 1156, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48498, + "fields": { + "id_car_model": 1156, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48499, + "fields": { + "id_car_model": 1156, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48500, + "fields": { + "id_car_model": 1156, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48501, + "fields": { + "id_car_model": 1156, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48502, + "fields": { + "id_car_model": 1156, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48503, + "fields": { + "id_car_model": 1156, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48504, + "fields": { + "id_car_model": 1156, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48505, + "fields": { + "id_car_model": 1156, + "name": "Presto Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48506, + "fields": { + "id_car_model": 1156, + "name": "Grand Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48507, + "fields": { + "id_car_model": 1156, + "name": "Grand Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48508, + "fields": { + "id_car_model": 1156, + "name": "Presto Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48509, + "fields": { + "id_car_model": 1156, + "name": "Grand Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48510, + "fields": { + "id_car_model": 1156, + "name": "Presto Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48511, + "fields": { + "id_car_model": 1156, + "name": "Presto Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48512, + "fields": { + "id_car_model": 1156, + "name": "Presto Rotary Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48513, + "fields": { + "id_car_model": 1156, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48514, + "fields": { + "id_car_model": 1156, + "name": "Rotary Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48515, + "fields": { + "id_car_model": 1156, + "name": "Presto Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48516, + "fields": { + "id_car_model": 1156, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48517, + "fields": { + "id_car_model": 1156, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48518, + "fields": { + "id_car_model": 1156, + "name": "Rotary Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48519, + "fields": { + "id_car_model": 1156, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48520, + "fields": { + "id_car_model": 1156, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48521, + "fields": { + "id_car_model": 1156, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48522, + "fields": { + "id_car_model": 1156, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48523, + "fields": { + "id_car_model": 1156, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48524, + "fields": { + "id_car_model": 1158, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48525, + "fields": { + "id_car_model": 1161, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48526, + "fields": { + "id_car_model": 1161, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48527, + "fields": { + "id_car_model": 1161, + "name": "JP-spec minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48528, + "fields": { + "id_car_model": 1161, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48529, + "fields": { + "id_car_model": 1163, + "name": "Hardtop roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48530, + "fields": { + "id_car_model": 1163, + "name": "Hardtop roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48531, + "fields": { + "id_car_model": 1163, + "name": "Hardtop roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48532, + "fields": { + "id_car_model": 1164, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48533, + "fields": { + "id_car_model": 1167, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48534, + "fields": { + "id_car_model": 1169, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48535, + "fields": { + "id_car_model": 1170, + "name": "Mazdaspeed Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48536, + "fields": { + "id_car_model": 1173, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48537, + "fields": { + "id_car_model": 1173, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48538, + "fields": { + "id_car_model": 1173, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48539, + "fields": { + "id_car_model": 1173, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48541, + "fields": { + "id_car_model": 1178, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48542, + "fields": { + "id_car_model": 1178, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48544, + "fields": { + "id_car_model": 1190, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48545, + "fields": { + "id_car_model": 1227, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48546, + "fields": { + "id_car_model": 1232, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48547, + "fields": { + "id_car_model": 1232, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48548, + "fields": { + "id_car_model": 1255, + "name": "Cooper cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48549, + "fields": { + "id_car_model": 1255, + "name": "Cooper cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48550, + "fields": { + "id_car_model": 1256, + "name": "Cooper wagon 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48551, + "fields": { + "id_car_model": 1256, + "name": "Cooper wagon 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48552, + "fields": { + "id_car_model": 1256, + "name": "One wagon 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48553, + "fields": { + "id_car_model": 1258, + "name": "Cooper crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48554, + "fields": { + "id_car_model": 1263, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48555, + "fields": { + "id_car_model": 1271, + "name": "Ralliart hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48556, + "fields": { + "id_car_model": 1271, + "name": "Ralliart hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48557, + "fields": { + "id_car_model": 1271, + "name": "JP-spec hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48558, + "fields": { + "id_car_model": 1271, + "name": "JP-spec hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48559, + "fields": { + "id_car_model": 1271, + "name": "CZC cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48560, + "fields": { + "id_car_model": 1271, + "name": "Plus Ralliart hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48561, + "fields": { + "id_car_model": 1271, + "name": "Ralliart Version-R hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48562, + "fields": { + "id_car_model": 1271, + "name": "Plus hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48563, + "fields": { + "id_car_model": 1271, + "name": "Ralliart hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48564, + "fields": { + "id_car_model": 1271, + "name": "Ralliart hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48565, + "fields": { + "id_car_model": 1271, + "name": "Turbo hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48566, + "fields": { + "id_car_model": 1271, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48567, + "fields": { + "id_car_model": 1275, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48568, + "fields": { + "id_car_model": 1278, + "name": "Spyder cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48569, + "fields": { + "id_car_model": 1278, + "name": "Spyder cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48570, + "fields": { + "id_car_model": 1278, + "name": "Spyder cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48571, + "fields": { + "id_car_model": 1278, + "name": "Spyder cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48572, + "fields": { + "id_car_model": 1278, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48573, + "fields": { + "id_car_model": 1278, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48574, + "fields": { + "id_car_model": 1284, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48575, + "fields": { + "id_car_model": 1284, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48577, + "fields": { + "id_car_model": 1284, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48578, + "fields": { + "id_car_model": 1284, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48579, + "fields": { + "id_car_model": 1284, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48580, + "fields": { + "id_car_model": 1284, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48581, + "fields": { + "id_car_model": 1284, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48582, + "fields": { + "id_car_model": 1284, + "name": "JDM wagon 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48583, + "fields": { + "id_car_model": 1284, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48584, + "fields": { + "id_car_model": 1284, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48585, + "fields": { + "id_car_model": 1284, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48586, + "fields": { + "id_car_model": 1292, + "name": "JDM Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48587, + "fields": { + "id_car_model": 1292, + "name": "TME Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48588, + "fields": { + "id_car_model": 1293, + "name": "Fortis Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48589, + "fields": { + "id_car_model": 1293, + "name": "Sportback Ralliart hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48590, + "fields": { + "id_car_model": 1293, + "name": "Ralliart Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48591, + "fields": { + "id_car_model": 1293, + "name": "IO Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48592, + "fields": { + "id_car_model": 1293, + "name": "Sportback hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48593, + "fields": { + "id_car_model": 1293, + "name": "CN-spec. Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48594, + "fields": { + "id_car_model": 1293, + "name": "JDM Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48595, + "fields": { + "id_car_model": 1293, + "name": "Ralliart Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48596, + "fields": { + "id_car_model": 1293, + "name": "Ralliart Cedia wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48597, + "fields": { + "id_car_model": 1293, + "name": "Cedia wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48598, + "fields": { + "id_car_model": 1293, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48599, + "fields": { + "id_car_model": 1293, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48600, + "fields": { + "id_car_model": 1293, + "name": "Turbo Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48601, + "fields": { + "id_car_model": 1293, + "name": "JDM wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48602, + "fields": { + "id_car_model": 1293, + "name": "JDM Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48603, + "fields": { + "id_car_model": 1296, + "name": "Ami 55 hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48604, + "fields": { + "id_car_model": 1296, + "name": "Skipper IV Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48605, + "fields": { + "id_car_model": 1296, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48606, + "fields": { + "id_car_model": 1296, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48607, + "fields": { + "id_car_model": 1296, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48608, + "fields": { + "id_car_model": 1298, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48609, + "fields": { + "id_car_model": 1298, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48610, + "fields": { + "id_car_model": 1298, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48611, + "fields": { + "id_car_model": 1298, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48613, + "fields": { + "id_car_model": 1301, + "name": "Semi High Roof Wagon SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48614, + "fields": { + "id_car_model": 1301, + "name": "High Roof Wagon SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48615, + "fields": { + "id_car_model": 1301, + "name": "Metal Top SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48617, + "fields": { + "id_car_model": 1301, + "name": "Rothmans Special SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48618, + "fields": { + "id_car_model": 1301, + "name": "Metal Top SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48619, + "fields": { + "id_car_model": 1301, + "name": "Wagon SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48620, + "fields": { + "id_car_model": 1301, + "name": "Canvas Top SUV 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48621, + "fields": { + "id_car_model": 1304, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48622, + "fields": { + "id_car_model": 1304, + "name": "Duke SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48623, + "fields": { + "id_car_model": 1304, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48624, + "fields": { + "id_car_model": 1310, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48625, + "fields": { + "id_car_model": 1314, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48626, + "fields": { + "id_car_model": 1318, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48627, + "fields": { + "id_car_model": 1338, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48628, + "fields": { + "id_car_model": 1347, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48629, + "fields": { + "id_car_model": 1347, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48630, + "fields": { + "id_car_model": 1348, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48631, + "fields": { + "id_car_model": 1349, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48632, + "fields": { + "id_car_model": 1349, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48633, + "fields": { + "id_car_model": 1351, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48634, + "fields": { + "id_car_model": 1351, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48635, + "fields": { + "id_car_model": 1356, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48636, + "fields": { + "id_car_model": 1356, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48637, + "fields": { + "id_car_model": 1356, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48638, + "fields": { + "id_car_model": 1358, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48639, + "fields": { + "id_car_model": 1358, + "name": "SE-R Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48640, + "fields": { + "id_car_model": 1358, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48642, + "fields": { + "id_car_model": 1358, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48643, + "fields": { + "id_car_model": 1362, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48644, + "fields": { + "id_car_model": 1364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48647, + "fields": { + "id_car_model": 1364, + "name": "ARX Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48648, + "fields": { + "id_car_model": 1364, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48649, + "fields": { + "id_car_model": 1364, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48650, + "fields": { + "id_car_model": 1364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48651, + "fields": { + "id_car_model": 1364, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48652, + "fields": { + "id_car_model": 1364, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48653, + "fields": { + "id_car_model": 1364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48654, + "fields": { + "id_car_model": 1364, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48655, + "fields": { + "id_car_model": 1364, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48656, + "fields": { + "id_car_model": 1364, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48657, + "fields": { + "id_car_model": 1364, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48658, + "fields": { + "id_car_model": 1364, + "name": "Hardtop 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48659, + "fields": { + "id_car_model": 1364, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48660, + "fields": { + "id_car_model": 1364, + "name": "2000 GT Hardtop 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48661, + "fields": { + "id_car_model": 1364, + "name": "2000 GT Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48662, + "fields": { + "id_car_model": 1364, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48663, + "fields": { + "id_car_model": 1364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48664, + "fields": { + "id_car_model": 1364, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48665, + "fields": { + "id_car_model": 1364, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48666, + "fields": { + "id_car_model": 1364, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48667, + "fields": { + "id_car_model": 1364, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48668, + "fields": { + "id_car_model": 1364, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48669, + "fields": { + "id_car_model": 1364, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48670, + "fields": { + "id_car_model": 1364, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48671, + "fields": { + "id_car_model": 1364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48672, + "fields": { + "id_car_model": 1364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48673, + "fields": { + "id_car_model": 1364, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48674, + "fields": { + "id_car_model": 1364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48675, + "fields": { + "id_car_model": 1365, + "name": "Gran Tourismo Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48676, + "fields": { + "id_car_model": 1365, + "name": "Hardtop 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48677, + "fields": { + "id_car_model": 1365, + "name": "Hardtop 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48678, + "fields": { + "id_car_model": 1365, + "name": "Gran Tourismo Hardtop 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48679, + "fields": { + "id_car_model": 1365, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48680, + "fields": { + "id_car_model": 1365, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48681, + "fields": { + "id_car_model": 1365, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48682, + "fields": { + "id_car_model": 1365, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48683, + "fields": { + "id_car_model": 1365, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48684, + "fields": { + "id_car_model": 1365, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48685, + "fields": { + "id_car_model": 1365, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48686, + "fields": { + "id_car_model": 1365, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48687, + "fields": { + "id_car_model": 1365, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48688, + "fields": { + "id_car_model": 1365, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48689, + "fields": { + "id_car_model": 1365, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48690, + "fields": { + "id_car_model": 1365, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48691, + "fields": { + "id_car_model": 1365, + "name": "Hardtop 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48692, + "fields": { + "id_car_model": 1365, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48693, + "fields": { + "id_car_model": 1365, + "name": "Hardtop 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48694, + "fields": { + "id_car_model": 1365, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48695, + "fields": { + "id_car_model": 1365, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48696, + "fields": { + "id_car_model": 1365, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48697, + "fields": { + "id_car_model": 1365, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48698, + "fields": { + "id_car_model": 1365, + "name": "Special Mark I Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48699, + "fields": { + "id_car_model": 1365, + "name": "Special Mark III Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48700, + "fields": { + "id_car_model": 1365, + "name": "Special Mark II Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48701, + "fields": { + "id_car_model": 1365, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48702, + "fields": { + "id_car_model": 1365, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48703, + "fields": { + "id_car_model": 1366, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48704, + "fields": { + "id_car_model": 1367, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48705, + "fields": { + "id_car_model": 1367, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48706, + "fields": { + "id_car_model": 1367, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48707, + "fields": { + "id_car_model": 1367, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48708, + "fields": { + "id_car_model": 1367, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48709, + "fields": { + "id_car_model": 1368, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48710, + "fields": { + "id_car_model": 1368, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48711, + "fields": { + "id_car_model": 1369, + "name": "NV100 minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48712, + "fields": { + "id_car_model": 1369, + "name": "Rio minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48714, + "fields": { + "id_car_model": 1369, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48716, + "fields": { + "id_car_model": 1370, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48717, + "fields": { + "id_car_model": 1371, + "name": "Cube 3 minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48718, + "fields": { + "id_car_model": 1372, + "name": "Double Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48720, + "fields": { + "id_car_model": 1372, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48721, + "fields": { + "id_car_model": 1373, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48722, + "fields": { + "id_car_model": 1374, + "name": "ME51 minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48723, + "fields": { + "id_car_model": 1374, + "name": "NE51 minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48724, + "fields": { + "id_car_model": 1374, + "name": "ME51 Rider minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48725, + "fields": { + "id_car_model": 1374, + "name": "MNE51 minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48726, + "fields": { + "id_car_model": 1374, + "name": "Rider minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48727, + "fields": { + "id_car_model": 1376, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48728, + "fields": { + "id_car_model": 1376, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48729, + "fields": { + "id_car_model": 1376, + "name": "2by2 T-Top targa 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48730, + "fields": { + "id_car_model": 1376, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48731, + "fields": { + "id_car_model": 1376, + "name": "T-Top targa 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48732, + "fields": { + "id_car_model": 1376, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48733, + "fields": { + "id_car_model": 1376, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48734, + "fields": { + "id_car_model": 1376, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48735, + "fields": { + "id_car_model": 1376, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48736, + "fields": { + "id_car_model": 1376, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48737, + "fields": { + "id_car_model": 1378, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48738, + "fields": { + "id_car_model": 1379, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48739, + "fields": { + "id_car_model": 1379, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48740, + "fields": { + "id_car_model": 1379, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48741, + "fields": { + "id_car_model": 1379, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48742, + "fields": { + "id_car_model": 1379, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48743, + "fields": { + "id_car_model": 1379, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48744, + "fields": { + "id_car_model": 1380, + "name": "Spec V Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48745, + "fields": { + "id_car_model": 1381, + "name": "Nismo crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48746, + "fields": { + "id_car_model": 1381, + "name": "R crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48747, + "fields": { + "id_car_model": 1382, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48748, + "fields": { + "id_car_model": 1382, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48749, + "fields": { + "id_car_model": 1383, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48750, + "fields": { + "id_car_model": 1383, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48751, + "fields": { + "id_car_model": 1384, + "name": "Highway Star II minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48752, + "fields": { + "id_car_model": 1384, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48753, + "fields": { + "id_car_model": 1384, + "name": "Highway Star minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48754, + "fields": { + "id_car_model": 1385, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48755, + "fields": { + "id_car_model": 1385, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48756, + "fields": { + "id_car_model": 1385, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48757, + "fields": { + "id_car_model": 1385, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48758, + "fields": { + "id_car_model": 1385, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48759, + "fields": { + "id_car_model": 1385, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48760, + "fields": { + "id_car_model": 1385, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48761, + "fields": { + "id_car_model": 1385, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48762, + "fields": { + "id_car_model": 1385, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48763, + "fields": { + "id_car_model": 1385, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48764, + "fields": { + "id_car_model": 1385, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48765, + "fields": { + "id_car_model": 1387, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48766, + "fields": { + "id_car_model": 1387, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48767, + "fields": { + "id_car_model": 1387, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48768, + "fields": { + "id_car_model": 1389, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48769, + "fields": { + "id_car_model": 1390, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48772, + "fields": { + "id_car_model": 1390, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48773, + "fields": { + "id_car_model": 1390, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48774, + "fields": { + "id_car_model": 1390, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48778, + "fields": { + "id_car_model": 1390, + "name": "Turbo hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48779, + "fields": { + "id_car_model": 1391, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48780, + "fields": { + "id_car_model": 1391, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48781, + "fields": { + "id_car_model": 1392, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48782, + "fields": { + "id_car_model": 1392, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48783, + "fields": { + "id_car_model": 1392, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48784, + "fields": { + "id_car_model": 1392, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48785, + "fields": { + "id_car_model": 1392, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48786, + "fields": { + "id_car_model": 1394, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48787, + "fields": { + "id_car_model": 1395, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48788, + "fields": { + "id_car_model": 1399, + "name": "Combi minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48789, + "fields": { + "id_car_model": 1399, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48790, + "fields": { + "id_car_model": 1401, + "name": "RX hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48791, + "fields": { + "id_car_model": 1401, + "name": "RS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48792, + "fields": { + "id_car_model": 1403, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48793, + "fields": { + "id_car_model": 1404, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48794, + "fields": { + "id_car_model": 1404, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48795, + "fields": { + "id_car_model": 1404, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48796, + "fields": { + "id_car_model": 1404, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48797, + "fields": { + "id_car_model": 1404, + "name": "60 Soft Top SUV 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48798, + "fields": { + "id_car_model": 1404, + "name": "KG60 Hard Top SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48799, + "fields": { + "id_car_model": 1412, + "name": "Supreme Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48800, + "fields": { + "id_car_model": 1412, + "name": "Ciera wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48801, + "fields": { + "id_car_model": 1412, + "name": "Ciera Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48802, + "fields": { + "id_car_model": 1412, + "name": "Supreme Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48803, + "fields": { + "id_car_model": 1412, + "name": "Supreme cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48804, + "fields": { + "id_car_model": 1412, + "name": "Calais Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48805, + "fields": { + "id_car_model": 1412, + "name": "Calais Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48806, + "fields": { + "id_car_model": 1422, + "name": "Cabriolet 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48808, + "fields": { + "id_car_model": 1426, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48809, + "fields": { + "id_car_model": 1426, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48810, + "fields": { + "id_car_model": 1426, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48811, + "fields": { + "id_car_model": 1426, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48812, + "fields": { + "id_car_model": 1426, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48814, + "fields": { + "id_car_model": 1426, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48815, + "fields": { + "id_car_model": 1426, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48817, + "fields": { + "id_car_model": 1426, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48819, + "fields": { + "id_car_model": 1427, + "name": "GTC hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48820, + "fields": { + "id_car_model": 1427, + "name": "OPC hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48821, + "fields": { + "id_car_model": 1427, + "name": "OPC wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48822, + "fields": { + "id_car_model": 1427, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48823, + "fields": { + "id_car_model": 1427, + "name": "OPC cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48824, + "fields": { + "id_car_model": 1427, + "name": "OPC hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48825, + "fields": { + "id_car_model": 1427, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48826, + "fields": { + "id_car_model": 1427, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48827, + "fields": { + "id_car_model": 1428, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48828, + "fields": { + "id_car_model": 1431, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48829, + "fields": { + "id_car_model": 1431, + "name": "Tour Tramp minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48830, + "fields": { + "id_car_model": 1431, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48832, + "fields": { + "id_car_model": 1433, + "name": "OPC hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48834, + "fields": { + "id_car_model": 1433, + "name": "OPC hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48836, + "fields": { + "id_car_model": 1433, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48838, + "fields": { + "id_car_model": 1433, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48840, + "fields": { + "id_car_model": 1433, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48841, + "fields": { + "id_car_model": 1433, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48842, + "fields": { + "id_car_model": 1433, + "name": "GSi hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48843, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48844, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48845, + "fields": { + "id_car_model": 1433, + "name": "GSi hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48847, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48848, + "fields": { + "id_car_model": 1433, + "name": "GSi hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48849, + "fields": { + "id_car_model": 1433, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48850, + "fields": { + "id_car_model": 1433, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48851, + "fields": { + "id_car_model": 1433, + "name": "GT hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48852, + "fields": { + "id_car_model": 1437, + "name": "Sports Tourer OPC wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48853, + "fields": { + "id_car_model": 1437, + "name": "OPC liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48854, + "fields": { + "id_car_model": 1437, + "name": "OPC Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48856, + "fields": { + "id_car_model": 1438, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48858, + "fields": { + "id_car_model": 1438, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48860, + "fields": { + "id_car_model": 1438, + "name": "Aero targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48862, + "fields": { + "id_car_model": 1438, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48863, + "fields": { + "id_car_model": 1438, + "name": "Caravan wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48865, + "fields": { + "id_car_model": 1438, + "name": "City hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48866, + "fields": { + "id_car_model": 1438, + "name": "Aero targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48867, + "fields": { + "id_car_model": 1438, + "name": "Caravan wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48868, + "fields": { + "id_car_model": 1438, + "name": "L Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48869, + "fields": { + "id_car_model": 1438, + "name": "Fastback 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48870, + "fields": { + "id_car_model": 1438, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48871, + "fields": { + "id_car_model": 1439, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48872, + "fields": { + "id_car_model": 1439, + "name": "CC hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48873, + "fields": { + "id_car_model": 1440, + "name": "OPC minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48874, + "fields": { + "id_car_model": 1443, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48875, + "fields": { + "id_car_model": 1443, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48876, + "fields": { + "id_car_model": 1444, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48877, + "fields": { + "id_car_model": 1444, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48878, + "fields": { + "id_car_model": 1445, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48879, + "fields": { + "id_car_model": 1445, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48880, + "fields": { + "id_car_model": 1445, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48881, + "fields": { + "id_car_model": 1445, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48882, + "fields": { + "id_car_model": 1445, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48883, + "fields": { + "id_car_model": 1445, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48884, + "fields": { + "id_car_model": 1445, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48885, + "fields": { + "id_car_model": 1445, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48886, + "fields": { + "id_car_model": 1445, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48887, + "fields": { + "id_car_model": 1446, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48888, + "fields": { + "id_car_model": 1449, + "name": "targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48889, + "fields": { + "id_car_model": 1451, + "name": "OPC hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48890, + "fields": { + "id_car_model": 1451, + "name": "GTS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48891, + "fields": { + "id_car_model": 1451, + "name": "I500 Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48892, + "fields": { + "id_car_model": 1451, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48893, + "fields": { + "id_car_model": 1451, + "name": "I500 wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48894, + "fields": { + "id_car_model": 1451, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48895, + "fields": { + "id_car_model": 1453, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48896, + "fields": { + "id_car_model": 1453, + "name": "OPC minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48897, + "fields": { + "id_car_model": 1453, + "name": "OPC minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48898, + "fields": { + "id_car_model": 1473, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48899, + "fields": { + "id_car_model": 1474, + "name": "RC hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48900, + "fields": { + "id_car_model": 1474, + "name": "CC cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48901, + "fields": { + "id_car_model": 1474, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48902, + "fields": { + "id_car_model": 1474, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48903, + "fields": { + "id_car_model": 1474, + "name": "Escapade wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48904, + "fields": { + "id_car_model": 1474, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48905, + "fields": { + "id_car_model": 1474, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48906, + "fields": { + "id_car_model": 1474, + "name": "Van hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48907, + "fields": { + "id_car_model": 1475, + "name": "SW wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48908, + "fields": { + "id_car_model": 1475, + "name": "Escapade wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48909, + "fields": { + "id_car_model": 1475, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48910, + "fields": { + "id_car_model": 1475, + "name": "CC cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48911, + "fields": { + "id_car_model": 1476, + "name": "GTi hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48912, + "fields": { + "id_car_model": 1482, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48913, + "fields": { + "id_car_model": 1482, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48914, + "fields": { + "id_car_model": 1483, + "name": "SW wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48915, + "fields": { + "id_car_model": 1483, + "name": "SW wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48916, + "fields": { + "id_car_model": 1483, + "name": "CC cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48917, + "fields": { + "id_car_model": 1487, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48918, + "fields": { + "id_car_model": 1487, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48919, + "fields": { + "id_car_model": 1488, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48920, + "fields": { + "id_car_model": 1488, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48921, + "fields": { + "id_car_model": 1488, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48922, + "fields": { + "id_car_model": 1489, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48923, + "fields": { + "id_car_model": 1493, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48924, + "fields": { + "id_car_model": 1493, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48925, + "fields": { + "id_car_model": 1496, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48926, + "fields": { + "id_car_model": 1501, + "name": "VU van 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48927, + "fields": { + "id_car_model": 1501, + "name": "VP minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48929, + "fields": { + "id_car_model": 1513, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48930, + "fields": { + "id_car_model": 1513, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48931, + "fields": { + "id_car_model": 1513, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48932, + "fields": { + "id_car_model": 1514, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48933, + "fields": { + "id_car_model": 1515, + "name": "SLE/SSEi Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48934, + "fields": { + "id_car_model": 1515, + "name": "SE/SLE/SSE Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48935, + "fields": { + "id_car_model": 1515, + "name": "SSEi Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48936, + "fields": { + "id_car_model": 1515, + "name": "SE/SSE Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48937, + "fields": { + "id_car_model": 1515, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48938, + "fields": { + "id_car_model": 1517, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48939, + "fields": { + "id_car_model": 1517, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48940, + "fields": { + "id_car_model": 1517, + "name": "Trans Am T-Roof targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48941, + "fields": { + "id_car_model": 1517, + "name": "Trans Am Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48942, + "fields": { + "id_car_model": 1517, + "name": "Formula T-Roof targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48943, + "fields": { + "id_car_model": 1517, + "name": "Trans Am T-Roof targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48944, + "fields": { + "id_car_model": 1517, + "name": "Trans Am Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48945, + "fields": { + "id_car_model": 1517, + "name": "Formula Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48946, + "fields": { + "id_car_model": 1517, + "name": "Trans Am Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48947, + "fields": { + "id_car_model": 1517, + "name": "Trans Am T-Roof targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48948, + "fields": { + "id_car_model": 1517, + "name": "T-Roof targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48949, + "fields": { + "id_car_model": 1517, + "name": "Trans Am Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48950, + "fields": { + "id_car_model": 1517, + "name": "Trans Am \"10th Anniversary\" T-Roof targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48951, + "fields": { + "id_car_model": 1517, + "name": "Trans Am T-Roof targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48952, + "fields": { + "id_car_model": 1517, + "name": "Formula Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48953, + "fields": { + "id_car_model": 1517, + "name": "Esprit Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48954, + "fields": { + "id_car_model": 1517, + "name": "Trans Am T-Roof targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48955, + "fields": { + "id_car_model": 1517, + "name": "Esprit Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48956, + "fields": { + "id_car_model": 1517, + "name": "Esprit Skybird Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48957, + "fields": { + "id_car_model": 1517, + "name": "Trans Am Gold Special Edition T-Roof targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48958, + "fields": { + "id_car_model": 1517, + "name": "Trans Am Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48959, + "fields": { + "id_car_model": 1517, + "name": "Formula Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48960, + "fields": { + "id_car_model": 1517, + "name": "Trans Am Black Special Edition T-Roof targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48961, + "fields": { + "id_car_model": 1517, + "name": "Trans Am Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48962, + "fields": { + "id_car_model": 1517, + "name": "Trans Am \"50th Anniversary\" T-Roof targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48963, + "fields": { + "id_car_model": 1517, + "name": "Esprit Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48964, + "fields": { + "id_car_model": 1517, + "name": "Formula Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48965, + "fields": { + "id_car_model": 1517, + "name": "Trans Am Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48966, + "fields": { + "id_car_model": 1517, + "name": "Esprit Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48967, + "fields": { + "id_car_model": 1517, + "name": "Formula Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48968, + "fields": { + "id_car_model": 1517, + "name": "Trans Am Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48969, + "fields": { + "id_car_model": 1517, + "name": "Formula Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48970, + "fields": { + "id_car_model": 1517, + "name": "Esprit Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48971, + "fields": { + "id_car_model": 1517, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48972, + "fields": { + "id_car_model": 1517, + "name": "Trans Am Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48973, + "fields": { + "id_car_model": 1517, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48974, + "fields": { + "id_car_model": 1517, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48975, + "fields": { + "id_car_model": 1517, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48976, + "fields": { + "id_car_model": 1517, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48977, + "fields": { + "id_car_model": 1523, + "name": "GXP Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48978, + "fields": { + "id_car_model": 1523, + "name": "GT/GTP/SE Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48979, + "fields": { + "id_car_model": 1531, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48980, + "fields": { + "id_car_model": 1531, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48981, + "fields": { + "id_car_model": 1531, + "name": "SE Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48982, + "fields": { + "id_car_model": 1531, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48983, + "fields": { + "id_car_model": 1531, + "name": "SE Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48984, + "fields": { + "id_car_model": 1531, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48985, + "fields": { + "id_car_model": 1534, + "name": "EU-spec. minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48986, + "fields": { + "id_car_model": 1534, + "name": "Minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48987, + "fields": { + "id_car_model": 1536, + "name": "Turbo cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48988, + "fields": { + "id_car_model": 1536, + "name": "GT3 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48989, + "fields": { + "id_car_model": 1536, + "name": "GT2 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48990, + "fields": { + "id_car_model": 1536, + "name": "Targa targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48991, + "fields": { + "id_car_model": 1536, + "name": "GT3 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48992, + "fields": { + "id_car_model": 1536, + "name": "Turbo cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48993, + "fields": { + "id_car_model": 1536, + "name": "Carrera Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48994, + "fields": { + "id_car_model": 1536, + "name": "GT2 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48995, + "fields": { + "id_car_model": 1536, + "name": "Targa targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48996, + "fields": { + "id_car_model": 1536, + "name": "GT3 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48997, + "fields": { + "id_car_model": 1536, + "name": "Turbo cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48998, + "fields": { + "id_car_model": 1536, + "name": "Targa targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 48999, + "fields": { + "id_car_model": 1536, + "name": "Carrera Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49000, + "fields": { + "id_car_model": 1536, + "name": "Carrera cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49001, + "fields": { + "id_car_model": 1536, + "name": "Targa targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49002, + "fields": { + "id_car_model": 1536, + "name": "Turbo Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49003, + "fields": { + "id_car_model": 1536, + "name": "Turbo Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49004, + "fields": { + "id_car_model": 1536, + "name": "Carrera cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49005, + "fields": { + "id_car_model": 1538, + "name": "Spyder roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49006, + "fields": { + "id_car_model": 1544, + "name": "Spyder roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49007, + "fields": { + "id_car_model": 1544, + "name": "Spyder roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49008, + "fields": { + "id_car_model": 1544, + "name": "Roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49009, + "fields": { + "id_car_model": 1546, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49010, + "fields": { + "id_car_model": 1546, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49011, + "fields": { + "id_car_model": 1547, + "name": "GTS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49012, + "fields": { + "id_car_model": 1570, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49014, + "fields": { + "id_car_model": 1571, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49015, + "fields": { + "id_car_model": 1571, + "name": "Gordini Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49016, + "fields": { + "id_car_model": 1571, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49017, + "fields": { + "id_car_model": 1572, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49019, + "fields": { + "id_car_model": 1574, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49020, + "fields": { + "id_car_model": 1574, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49021, + "fields": { + "id_car_model": 1575, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49022, + "fields": { + "id_car_model": 1579, + "name": "Nevada wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49023, + "fields": { + "id_car_model": 1579, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49024, + "fields": { + "id_car_model": 1579, + "name": "Nevada wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49025, + "fields": { + "id_car_model": 1580, + "name": "Liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49026, + "fields": { + "id_car_model": 1580, + "name": "Limousine liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49027, + "fields": { + "id_car_model": 1582, + "name": "Safari hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49028, + "fields": { + "id_car_model": 1582, + "name": "Jogging hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49029, + "fields": { + "id_car_model": 1582, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49030, + "fields": { + "id_car_model": 1582, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49032, + "fields": { + "id_car_model": 1582, + "name": "Plein Air cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49034, + "fields": { + "id_car_model": 1582, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49035, + "fields": { + "id_car_model": 1582, + "name": "La Parisienne hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49036, + "fields": { + "id_car_model": 1583, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49037, + "fields": { + "id_car_model": 1583, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49038, + "fields": { + "id_car_model": 1583, + "name": "Gordini Turbo hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49039, + "fields": { + "id_car_model": 1583, + "name": "Alpine hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49040, + "fields": { + "id_car_model": 1583, + "name": "Campus hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49041, + "fields": { + "id_car_model": 1583, + "name": "Gordini hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49042, + "fields": { + "id_car_model": 1583, + "name": "Turbo hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49043, + "fields": { + "id_car_model": 1583, + "name": "Alpine Turbo hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49044, + "fields": { + "id_car_model": 1584, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49045, + "fields": { + "id_car_model": 1585, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49046, + "fields": { + "id_car_model": 1585, + "name": "Turbo Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49048, + "fields": { + "id_car_model": 1588, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49050, + "fields": { + "id_car_model": 1588, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49051, + "fields": { + "id_car_model": 1588, + "name": "V6 Sport hatchback 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49053, + "fields": { + "id_car_model": 1588, + "name": "V6 Sport hatchback 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49054, + "fields": { + "id_car_model": 1588, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49055, + "fields": { + "id_car_model": 1588, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49057, + "fields": { + "id_car_model": 1593, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49058, + "fields": { + "id_car_model": 1593, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49059, + "fields": { + "id_car_model": 1594, + "name": "Passenger minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49060, + "fields": { + "id_car_model": 1596, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49061, + "fields": { + "id_car_model": 1596, + "name": "Grandtour wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49062, + "fields": { + "id_car_model": 1598, + "name": "MCV wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49064, + "fields": { + "id_car_model": 1598, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49065, + "fields": { + "id_car_model": 1599, + "name": "Coupe hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49068, + "fields": { + "id_car_model": 1599, + "name": "GT cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49069, + "fields": { + "id_car_model": 1599, + "name": "RS hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49073, + "fields": { + "id_car_model": 1599, + "name": "GT hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49074, + "fields": { + "id_car_model": 1599, + "name": "GT hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49076, + "fields": { + "id_car_model": 1599, + "name": "Classic Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49077, + "fields": { + "id_car_model": 1601, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49078, + "fields": { + "id_car_model": 1602, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49080, + "fields": { + "id_car_model": 1602, + "name": "Biturbo hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49081, + "fields": { + "id_car_model": 1604, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49082, + "fields": { + "id_car_model": 1604, + "name": "Conquest minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49083, + "fields": { + "id_car_model": 1606, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49085, + "fields": { + "id_car_model": 1607, + "name": "GT hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49086, + "fields": { + "id_car_model": 1607, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49087, + "fields": { + "id_car_model": 1607, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49088, + "fields": { + "id_car_model": 1607, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49089, + "fields": { + "id_car_model": 1618, + "name": "Drophead Coupe cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49090, + "fields": { + "id_car_model": 1618, + "name": "Coupe Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49091, + "fields": { + "id_car_model": 1636, + "name": "Convertible cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49093, + "fields": { + "id_car_model": 1642, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49094, + "fields": { + "id_car_model": 1673, + "name": "ST FR wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49095, + "fields": { + "id_car_model": 1673, + "name": "SC hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49096, + "fields": { + "id_car_model": 1673, + "name": "SC FR hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49097, + "fields": { + "id_car_model": 1673, + "name": "FR hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49098, + "fields": { + "id_car_model": 1673, + "name": "ST wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49102, + "fields": { + "id_car_model": 1674, + "name": "ST FR wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49103, + "fields": { + "id_car_model": 1674, + "name": "SC Cupra hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49104, + "fields": { + "id_car_model": 1674, + "name": "SC FR hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49106, + "fields": { + "id_car_model": 1674, + "name": "Cupra hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49107, + "fields": { + "id_car_model": 1674, + "name": "Cupra R hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49109, + "fields": { + "id_car_model": 1678, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49111, + "fields": { + "id_car_model": 1683, + "name": "Scout hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49112, + "fields": { + "id_car_model": 1683, + "name": "Combi RS wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49113, + "fields": { + "id_car_model": 1683, + "name": "Combi wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49114, + "fields": { + "id_car_model": 1683, + "name": "RS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49115, + "fields": { + "id_car_model": 1683, + "name": "Combi Scout wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49117, + "fields": { + "id_car_model": 1683, + "name": "Combi wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49118, + "fields": { + "id_car_model": 1683, + "name": "RS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49119, + "fields": { + "id_car_model": 1683, + "name": "Combi wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49120, + "fields": { + "id_car_model": 1684, + "name": "UK-Spec pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49122, + "fields": { + "id_car_model": 1686, + "name": "RS liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49123, + "fields": { + "id_car_model": 1686, + "name": "Combi RS wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49124, + "fields": { + "id_car_model": 1686, + "name": "Combi RS wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49125, + "fields": { + "id_car_model": 1686, + "name": "Combi Scout wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49126, + "fields": { + "id_car_model": 1686, + "name": "Liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49127, + "fields": { + "id_car_model": 1686, + "name": "RS liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49128, + "fields": { + "id_car_model": 1686, + "name": "Combi RS wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49129, + "fields": { + "id_car_model": 1686, + "name": "RS liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49131, + "fields": { + "id_car_model": 1687, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49132, + "fields": { + "id_car_model": 1691, + "name": "Brabus hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49136, + "fields": { + "id_car_model": 1692, + "name": "Brabus hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49137, + "fields": { + "id_car_model": 1692, + "name": "Brabus cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49138, + "fields": { + "id_car_model": 1693, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49139, + "fields": { + "id_car_model": 1693, + "name": "Brabus targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49140, + "fields": { + "id_car_model": 1699, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49141, + "fields": { + "id_car_model": 1699, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49144, + "fields": { + "id_car_model": 1716, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49145, + "fields": { + "id_car_model": 1716, + "name": "Cross Sports crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49146, + "fields": { + "id_car_model": 1716, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49148, + "fields": { + "id_car_model": 1716, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49149, + "fields": { + "id_car_model": 1716, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49150, + "fields": { + "id_car_model": 1717, + "name": "WRX Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49151, + "fields": { + "id_car_model": 1717, + "name": "WRX STI Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49152, + "fields": { + "id_car_model": 1717, + "name": "WRX hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49153, + "fields": { + "id_car_model": 1717, + "name": "WRX STI hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49154, + "fields": { + "id_car_model": 1717, + "name": "WRX hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49155, + "fields": { + "id_car_model": 1717, + "name": "WRX wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49156, + "fields": { + "id_car_model": 1717, + "name": "WRX Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49157, + "fields": { + "id_car_model": 1717, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49158, + "fields": { + "id_car_model": 1717, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49159, + "fields": { + "id_car_model": 1717, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49160, + "fields": { + "id_car_model": 1736, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49161, + "fields": { + "id_car_model": 1736, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49162, + "fields": { + "id_car_model": 1744, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49163, + "fields": { + "id_car_model": 1744, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49164, + "fields": { + "id_car_model": 1745, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49165, + "fields": { + "id_car_model": 1745, + "name": "XL-7 crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49166, + "fields": { + "id_car_model": 1745, + "name": "Crossover 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49167, + "fields": { + "id_car_model": 1745, + "name": "Crossover 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49168, + "fields": { + "id_car_model": 1758, + "name": "Sport hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49169, + "fields": { + "id_car_model": 1758, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49170, + "fields": { + "id_car_model": 1758, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49171, + "fields": { + "id_car_model": 1761, + "name": "Stingray hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49172, + "fields": { + "id_car_model": 1761, + "name": "Stingray hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49173, + "fields": { + "id_car_model": 1761, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49174, + "fields": { + "id_car_model": 1761, + "name": "Solio hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49175, + "fields": { + "id_car_model": 1761, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49176, + "fields": { + "id_car_model": 1761, + "name": "C2 hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49177, + "fields": { + "id_car_model": 1761, + "name": "RR hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49178, + "fields": { + "id_car_model": 1761, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49180, + "fields": { + "id_car_model": 1773, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49181, + "fields": { + "id_car_model": 1783, + "name": "TAG Heuer Sport roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49182, + "fields": { + "id_car_model": 1783, + "name": "Sport roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49183, + "fields": { + "id_car_model": 1783, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49184, + "fields": { + "id_car_model": 1791, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49185, + "fields": { + "id_car_model": 1791, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49187, + "fields": { + "id_car_model": 1791, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49188, + "fields": { + "id_car_model": 1792, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49189, + "fields": { + "id_car_model": 1792, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49190, + "fields": { + "id_car_model": 1794, + "name": "JDM minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49191, + "fields": { + "id_car_model": 1794, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49192, + "fields": { + "id_car_model": 1794, + "name": "Hybrid minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49193, + "fields": { + "id_car_model": 1796, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49194, + "fields": { + "id_car_model": 1796, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49195, + "fields": { + "id_car_model": 1797, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49196, + "fields": { + "id_car_model": 1797, + "name": "AU-spec. Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49197, + "fields": { + "id_car_model": 1797, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49198, + "fields": { + "id_car_model": 1797, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49199, + "fields": { + "id_car_model": 1797, + "name": "TRD Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49200, + "fields": { + "id_car_model": 1798, + "name": "Touring Sports wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49201, + "fields": { + "id_car_model": 1798, + "name": "Touring Sports Hybrid wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49202, + "fields": { + "id_car_model": 1798, + "name": "Hybrid hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49203, + "fields": { + "id_car_model": 1799, + "name": "Hybrid Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49204, + "fields": { + "id_car_model": 1804, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49205, + "fields": { + "id_car_model": 1805, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49206, + "fields": { + "id_car_model": 1807, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49207, + "fields": { + "id_car_model": 1810, + "name": "Hybrid Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49208, + "fields": { + "id_car_model": 1810, + "name": "CN-spec Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49209, + "fields": { + "id_car_model": 1810, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49210, + "fields": { + "id_car_model": 1810, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49211, + "fields": { + "id_car_model": 1810, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49212, + "fields": { + "id_car_model": 1810, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49213, + "fields": { + "id_car_model": 1810, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49214, + "fields": { + "id_car_model": 1810, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49215, + "fields": { + "id_car_model": 1810, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49216, + "fields": { + "id_car_model": 1810, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49217, + "fields": { + "id_car_model": 1810, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49218, + "fields": { + "id_car_model": 1810, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49219, + "fields": { + "id_car_model": 1810, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49221, + "fields": { + "id_car_model": 1812, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49222, + "fields": { + "id_car_model": 1814, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49223, + "fields": { + "id_car_model": 1814, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49224, + "fields": { + "id_car_model": 1814, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49225, + "fields": { + "id_car_model": 1814, + "name": "Liftback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49226, + "fields": { + "id_car_model": 1814, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49227, + "fields": { + "id_car_model": 1814, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49228, + "fields": { + "id_car_model": 1814, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49229, + "fields": { + "id_car_model": 1816, + "name": "Limousine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49230, + "fields": { + "id_car_model": 1816, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49232, + "fields": { + "id_car_model": 1818, + "name": "JDM Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49233, + "fields": { + "id_car_model": 1818, + "name": "RunX hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49234, + "fields": { + "id_car_model": 1818, + "name": "JDM Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49235, + "fields": { + "id_car_model": 1818, + "name": "Fielder wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49236, + "fields": { + "id_car_model": 1818, + "name": "US-Spec. Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49237, + "fields": { + "id_car_model": 1818, + "name": "RunX hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49238, + "fields": { + "id_car_model": 1818, + "name": "JDM Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49239, + "fields": { + "id_car_model": 1818, + "name": "JDM '97 wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49240, + "fields": { + "id_car_model": 1818, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49241, + "fields": { + "id_car_model": 1818, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49242, + "fields": { + "id_car_model": 1818, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49243, + "fields": { + "id_car_model": 1818, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49244, + "fields": { + "id_car_model": 1818, + "name": "JDM Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49245, + "fields": { + "id_car_model": 1818, + "name": "Sprinter Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49246, + "fields": { + "id_car_model": 1819, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49247, + "fields": { + "id_car_model": 1821, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49248, + "fields": { + "id_car_model": 1823, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49249, + "fields": { + "id_car_model": 1823, + "name": "US-Spec. Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49250, + "fields": { + "id_car_model": 1823, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49251, + "fields": { + "id_car_model": 1823, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49252, + "fields": { + "id_car_model": 1823, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49253, + "fields": { + "id_car_model": 1825, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49254, + "fields": { + "id_car_model": 1826, + "name": "Athlete Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49255, + "fields": { + "id_car_model": 1826, + "name": "Royal Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49256, + "fields": { + "id_car_model": 1826, + "name": "Hybrid Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49257, + "fields": { + "id_car_model": 1826, + "name": "Hybrid Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49258, + "fields": { + "id_car_model": 1826, + "name": "Royal Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49259, + "fields": { + "id_car_model": 1826, + "name": "Athlete Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49260, + "fields": { + "id_car_model": 1826, + "name": "Royal Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49261, + "fields": { + "id_car_model": 1826, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49262, + "fields": { + "id_car_model": 1826, + "name": "JDM Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49263, + "fields": { + "id_car_model": 1826, + "name": "JDM Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49264, + "fields": { + "id_car_model": 1826, + "name": "JDM wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49265, + "fields": { + "id_car_model": 1826, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49266, + "fields": { + "id_car_model": 1826, + "name": "JDM Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49267, + "fields": { + "id_car_model": 1826, + "name": "JDM Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49268, + "fields": { + "id_car_model": 1826, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49269, + "fields": { + "id_car_model": 1826, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49270, + "fields": { + "id_car_model": 1826, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49271, + "fields": { + "id_car_model": 1826, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49272, + "fields": { + "id_car_model": 1826, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49273, + "fields": { + "id_car_model": 1826, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49274, + "fields": { + "id_car_model": 1826, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49275, + "fields": { + "id_car_model": 1827, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49276, + "fields": { + "id_car_model": 1829, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49277, + "fields": { + "id_car_model": 1830, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49278, + "fields": { + "id_car_model": 1830, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49279, + "fields": { + "id_car_model": 1830, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49280, + "fields": { + "id_car_model": 1830, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49281, + "fields": { + "id_car_model": 1830, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49282, + "fields": { + "id_car_model": 1830, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49283, + "fields": { + "id_car_model": 1831, + "name": "Emina minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49284, + "fields": { + "id_car_model": 1831, + "name": "Lucida minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49285, + "fields": { + "id_car_model": 1832, + "name": "SUV 5-doors", + "arabic_name": "إس يو في 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 49286, + "fields": { + "id_car_model": 1832, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49287, + "fields": { + "id_car_model": 1832, + "name": "TRD Special Edition SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49288, + "fields": { + "id_car_model": 1832, + "name": "SUV 5-doors", + "arabic_name": "إس يو في 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 49289, + "fields": { + "id_car_model": 1833, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49290, + "fields": { + "id_car_model": 1833, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49292, + "fields": { + "id_car_model": 1837, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49293, + "fields": { + "id_car_model": 1838, + "name": "Hybrid crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49295, + "fields": { + "id_car_model": 1839, + "name": "Minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49296, + "fields": { + "id_car_model": 1839, + "name": "Regius minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49297, + "fields": { + "id_car_model": 1839, + "name": "Combi minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49299, + "fields": { + "id_car_model": 1839, + "name": "Minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49300, + "fields": { + "id_car_model": 1839, + "name": "Minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49302, + "fields": { + "id_car_model": 1839, + "name": "Combi minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49303, + "fields": { + "id_car_model": 1839, + "name": "Minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49304, + "fields": { + "id_car_model": 1839, + "name": "Combi minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49307, + "fields": { + "id_car_model": 1840, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49308, + "fields": { + "id_car_model": 1840, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49309, + "fields": { + "id_car_model": 1842, + "name": "Double Cab pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49310, + "fields": { + "id_car_model": 1842, + "name": "Extended Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49311, + "fields": { + "id_car_model": 1842, + "name": "Pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49312, + "fields": { + "id_car_model": 1842, + "name": "Pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49313, + "fields": { + "id_car_model": 1842, + "name": "Xtracab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49314, + "fields": { + "id_car_model": 1842, + "name": "Pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49315, + "fields": { + "id_car_model": 1842, + "name": "Pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49316, + "fields": { + "id_car_model": 1842, + "name": "Xtracab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49317, + "fields": { + "id_car_model": 1842, + "name": "Pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49318, + "fields": { + "id_car_model": 1842, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49319, + "fields": { + "id_car_model": 1842, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49320, + "fields": { + "id_car_model": 1843, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49321, + "fields": { + "id_car_model": 1843, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49322, + "fields": { + "id_car_model": 1845, + "name": "Supercharger hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49323, + "fields": { + "id_car_model": 1847, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49324, + "fields": { + "id_car_model": 1848, + "name": "Hybrid SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49325, + "fields": { + "id_car_model": 1849, + "name": "SUV 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49326, + "fields": { + "id_car_model": 1849, + "name": "Pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49327, + "fields": { + "id_car_model": 1849, + "name": "J71 SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49328, + "fields": { + "id_car_model": 1849, + "name": "J78 SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49329, + "fields": { + "id_car_model": 1849, + "name": "SUV 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49330, + "fields": { + "id_car_model": 1849, + "name": "J71 SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49331, + "fields": { + "id_car_model": 1849, + "name": "J74V SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49332, + "fields": { + "id_car_model": 1849, + "name": "J78 SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49333, + "fields": { + "id_car_model": 1849, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49335, + "fields": { + "id_car_model": 1849, + "name": "Pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49336, + "fields": { + "id_car_model": 1849, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49337, + "fields": { + "id_car_model": 1849, + "name": "J78 SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49338, + "fields": { + "id_car_model": 1849, + "name": "J73V SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49339, + "fields": { + "id_car_model": 1849, + "name": "SUV 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49340, + "fields": { + "id_car_model": 1849, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49341, + "fields": { + "id_car_model": 1849, + "name": "BJ74V SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49342, + "fields": { + "id_car_model": 1849, + "name": "BJ70 SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49344, + "fields": { + "id_car_model": 1849, + "name": "SUV 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49345, + "fields": { + "id_car_model": 1849, + "name": "FJ56V SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49346, + "fields": { + "id_car_model": 1849, + "name": "FJ40 SUV 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49347, + "fields": { + "id_car_model": 1849, + "name": "FJ40 SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49348, + "fields": { + "id_car_model": 1849, + "name": "FJ45 SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49349, + "fields": { + "id_car_model": 1849, + "name": "FJ55V SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49350, + "fields": { + "id_car_model": 1849, + "name": "FJ45V SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49351, + "fields": { + "id_car_model": 1849, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49352, + "fields": { + "id_car_model": 1849, + "name": "FJ40V SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49353, + "fields": { + "id_car_model": 1849, + "name": "SUV 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49354, + "fields": { + "id_car_model": 1849, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49355, + "fields": { + "id_car_model": 1900, + "name": "Ultima Edition Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49356, + "fields": { + "id_car_model": 1900, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49358, + "fields": { + "id_car_model": 1900, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49359, + "fields": { + "id_car_model": 1900, + "name": "Sedan 2-doors", + "arabic_name": "سيدان بابين" + } +}, +{ + "model": "inventory.carserie", + "pk": 49360, + "fields": { + "id_car_model": 1900, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49361, + "fields": { + "id_car_model": 1900, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49362, + "fields": { + "id_car_model": 1900, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49363, + "fields": { + "id_car_model": 1900, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49364, + "fields": { + "id_car_model": 1900, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49366, + "fields": { + "id_car_model": 1900, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49367, + "fields": { + "id_car_model": 1902, + "name": "Kombi minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49368, + "fields": { + "id_car_model": 1902, + "name": "Tramper minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49370, + "fields": { + "id_car_model": 1902, + "name": "Minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49371, + "fields": { + "id_car_model": 1902, + "name": "Tramper Maxi minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49372, + "fields": { + "id_car_model": 1902, + "name": "Van 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49374, + "fields": { + "id_car_model": 1902, + "name": "Maxi minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49375, + "fields": { + "id_car_model": 1902, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49376, + "fields": { + "id_car_model": 1902, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49377, + "fields": { + "id_car_model": 1902, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49378, + "fields": { + "id_car_model": 1904, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49379, + "fields": { + "id_car_model": 1906, + "name": "Space wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49380, + "fields": { + "id_car_model": 1906, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49381, + "fields": { + "id_car_model": 1906, + "name": "Cross hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49382, + "fields": { + "id_car_model": 1906, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49383, + "fields": { + "id_car_model": 1906, + "name": "Cross hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49384, + "fields": { + "id_car_model": 1906, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49385, + "fields": { + "id_car_model": 1906, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49386, + "fields": { + "id_car_model": 1906, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49387, + "fields": { + "id_car_model": 1906, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49388, + "fields": { + "id_car_model": 1906, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49389, + "fields": { + "id_car_model": 1908, + "name": "R hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49390, + "fields": { + "id_car_model": 1908, + "name": "GTI hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49391, + "fields": { + "id_car_model": 1908, + "name": "R hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49392, + "fields": { + "id_car_model": 1908, + "name": "GTI hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49393, + "fields": { + "id_car_model": 1908, + "name": "R hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49394, + "fields": { + "id_car_model": 1908, + "name": "GTI hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49395, + "fields": { + "id_car_model": 1908, + "name": "Plus minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49396, + "fields": { + "id_car_model": 1908, + "name": "Van wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49397, + "fields": { + "id_car_model": 1908, + "name": "R hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49398, + "fields": { + "id_car_model": 1908, + "name": "Plus minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49399, + "fields": { + "id_car_model": 1908, + "name": "R32 hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49400, + "fields": { + "id_car_model": 1908, + "name": "GT hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49401, + "fields": { + "id_car_model": 1908, + "name": "Cross minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49402, + "fields": { + "id_car_model": 1908, + "name": "GTI hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49403, + "fields": { + "id_car_model": 1908, + "name": "GTI hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49404, + "fields": { + "id_car_model": 1908, + "name": "R32 hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49406, + "fields": { + "id_car_model": 1908, + "name": "Country crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49407, + "fields": { + "id_car_model": 1908, + "name": "GTI hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49408, + "fields": { + "id_car_model": 1908, + "name": "Rallye hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49409, + "fields": { + "id_car_model": 1908, + "name": "GTI hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49410, + "fields": { + "id_car_model": 1908, + "name": "GTI hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49411, + "fields": { + "id_car_model": 1908, + "name": "GTI hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49412, + "fields": { + "id_car_model": 1910, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49413, + "fields": { + "id_car_model": 1910, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49414, + "fields": { + "id_car_model": 1910, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49415, + "fields": { + "id_car_model": 1910, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49416, + "fields": { + "id_car_model": 1910, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49417, + "fields": { + "id_car_model": 1910, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49418, + "fields": { + "id_car_model": 1910, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49419, + "fields": { + "id_car_model": 1910, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49420, + "fields": { + "id_car_model": 1910, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49421, + "fields": { + "id_car_model": 1910, + "name": "GTI hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49422, + "fields": { + "id_car_model": 1910, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49423, + "fields": { + "id_car_model": 1910, + "name": "GTI hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49424, + "fields": { + "id_car_model": 1910, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49425, + "fields": { + "id_car_model": 1910, + "name": "GT hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49426, + "fields": { + "id_car_model": 1912, + "name": "SportWagen wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49427, + "fields": { + "id_car_model": 1912, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49428, + "fields": { + "id_car_model": 1912, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49429, + "fields": { + "id_car_model": 1912, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49430, + "fields": { + "id_car_model": 1912, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49431, + "fields": { + "id_car_model": 1912, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49432, + "fields": { + "id_car_model": 1914, + "name": "3L hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49433, + "fields": { + "id_car_model": 1914, + "name": "GTI hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49434, + "fields": { + "id_car_model": 1915, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49436, + "fields": { + "id_car_model": 1917, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49437, + "fields": { + "id_car_model": 1917, + "name": "Fastback 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49438, + "fields": { + "id_car_model": 1917, + "name": "Fastback 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49439, + "fields": { + "id_car_model": 1917, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49440, + "fields": { + "id_car_model": 1917, + "name": "Fastback 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49441, + "fields": { + "id_car_model": 1917, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49442, + "fields": { + "id_car_model": 1917, + "name": "Fastback 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49443, + "fields": { + "id_car_model": 1917, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49444, + "fields": { + "id_car_model": 1921, + "name": "GTI Cup Edition hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49445, + "fields": { + "id_car_model": 1921, + "name": "CrossPolo hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49446, + "fields": { + "id_car_model": 1921, + "name": "GTI hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49448, + "fields": { + "id_car_model": 1921, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49449, + "fields": { + "id_car_model": 1921, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49452, + "fields": { + "id_car_model": 1924, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49453, + "fields": { + "id_car_model": 1946, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49454, + "fields": { + "id_car_model": 1946, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49456, + "fields": { + "id_car_model": 1957, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49459, + "fields": { + "id_car_model": 1960, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49460, + "fields": { + "id_car_model": 1963, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49461, + "fields": { + "id_car_model": 1983, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49462, + "fields": { + "id_car_model": 2002, + "name": "21106 Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49463, + "fields": { + "id_car_model": 2002, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49464, + "fields": { + "id_car_model": 2008, + "name": "Minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49465, + "fields": { + "id_car_model": 2012, + "name": "21214 Urban SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49466, + "fields": { + "id_car_model": 2012, + "name": "2129 SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49467, + "fields": { + "id_car_model": 2012, + "name": "2329 pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49468, + "fields": { + "id_car_model": 2012, + "name": "2131 SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49469, + "fields": { + "id_car_model": 2012, + "name": "21213 SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49470, + "fields": { + "id_car_model": 2012, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49471, + "fields": { + "id_car_model": 2017, + "name": "Cross wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49472, + "fields": { + "id_car_model": 2018, + "name": "2171 wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49473, + "fields": { + "id_car_model": 2043, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49474, + "fields": { + "id_car_model": 2050, + "name": "Limousine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49475, + "fields": { + "id_car_model": 2051, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49476, + "fields": { + "id_car_model": 2052, + "name": "4x4 hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49477, + "fields": { + "id_car_model": 2052, + "name": "Nika hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49478, + "fields": { + "id_car_model": 2074, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49479, + "fields": { + "id_car_model": 2074, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49480, + "fields": { + "id_car_model": 2098, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49481, + "fields": { + "id_car_model": 2101, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49483, + "fields": { + "id_car_model": 2105, + "name": "GT hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49484, + "fields": { + "id_car_model": 2105, + "name": "GT hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49485, + "fields": { + "id_car_model": 2105, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49486, + "fields": { + "id_car_model": 2106, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49489, + "fields": { + "id_car_model": 2110, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49490, + "fields": { + "id_car_model": 2115, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49491, + "fields": { + "id_car_model": 2117, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49492, + "fields": { + "id_car_model": 2117, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49493, + "fields": { + "id_car_model": 2120, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49494, + "fields": { + "id_car_model": 2120, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49495, + "fields": { + "id_car_model": 2121, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49496, + "fields": { + "id_car_model": 2121, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49497, + "fields": { + "id_car_model": 2130, + "name": "SSS hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49498, + "fields": { + "id_car_model": 2122, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49499, + "fields": { + "id_car_model": 2122, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49500, + "fields": { + "id_car_model": 2122, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49501, + "fields": { + "id_car_model": 2122, + "name": "Serie hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49502, + "fields": { + "id_car_model": 2122, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49503, + "fields": { + "id_car_model": 2122, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49504, + "fields": { + "id_car_model": 2122, + "name": "GTI-Ra hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49505, + "fields": { + "id_car_model": 2122, + "name": "EXA hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49506, + "fields": { + "id_car_model": 2122, + "name": "EXA targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49507, + "fields": { + "id_car_model": 2122, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49508, + "fields": { + "id_car_model": 2122, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49509, + "fields": { + "id_car_model": 2122, + "name": "Milano X1 hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49510, + "fields": { + "id_car_model": 2122, + "name": "EXA cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49511, + "fields": { + "id_car_model": 2122, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49512, + "fields": { + "id_car_model": 2122, + "name": "EXA Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49513, + "fields": { + "id_car_model": 2122, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49514, + "fields": { + "id_car_model": 2122, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49515, + "fields": { + "id_car_model": 2122, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49516, + "fields": { + "id_car_model": 2122, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49517, + "fields": { + "id_car_model": 2124, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49518, + "fields": { + "id_car_model": 2124, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49519, + "fields": { + "id_car_model": 2124, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49520, + "fields": { + "id_car_model": 2128, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49521, + "fields": { + "id_car_model": 2129, + "name": "Hard Top pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49522, + "fields": { + "id_car_model": 2129, + "name": "Station Wagon High Roof SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49523, + "fields": { + "id_car_model": 2129, + "name": "Station Wagon AD wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49524, + "fields": { + "id_car_model": 2129, + "name": "Hard Top pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49525, + "fields": { + "id_car_model": 2129, + "name": "Hard Top AD pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49526, + "fields": { + "id_car_model": 2132, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49527, + "fields": { + "id_car_model": 2132, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49528, + "fields": { + "id_car_model": 2132, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49529, + "fields": { + "id_car_model": 2132, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49530, + "fields": { + "id_car_model": 2132, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49531, + "fields": { + "id_car_model": 2132, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49532, + "fields": { + "id_car_model": 2134, + "name": "GT-R Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49533, + "fields": { + "id_car_model": 2134, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49534, + "fields": { + "id_car_model": 2134, + "name": "GT Turbo Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49535, + "fields": { + "id_car_model": 2134, + "name": "RS-X Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49536, + "fields": { + "id_car_model": 2134, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49537, + "fields": { + "id_car_model": 2134, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49538, + "fields": { + "id_car_model": 2134, + "name": "GT Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49539, + "fields": { + "id_car_model": 2134, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49540, + "fields": { + "id_car_model": 2134, + "name": "Turbo Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49541, + "fields": { + "id_car_model": 2134, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49542, + "fields": { + "id_car_model": 2134, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49543, + "fields": { + "id_car_model": 2134, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49544, + "fields": { + "id_car_model": 2134, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49545, + "fields": { + "id_car_model": 2134, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49546, + "fields": { + "id_car_model": 2134, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49547, + "fields": { + "id_car_model": 2134, + "name": "BLRA-3 Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49548, + "fields": { + "id_car_model": 2134, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49549, + "fields": { + "id_car_model": 2134, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49550, + "fields": { + "id_car_model": 2135, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49551, + "fields": { + "id_car_model": 2135, + "name": "Axis wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49552, + "fields": { + "id_car_model": 2135, + "name": "Autech wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49553, + "fields": { + "id_car_model": 2135, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49554, + "fields": { + "id_car_model": 2135, + "name": "Autech wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49555, + "fields": { + "id_car_model": 2136, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49556, + "fields": { + "id_car_model": 2136, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49557, + "fields": { + "id_car_model": 2137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49558, + "fields": { + "id_car_model": 2137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49559, + "fields": { + "id_car_model": 2137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49560, + "fields": { + "id_car_model": 2137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49562, + "fields": { + "id_car_model": 2137, + "name": "California wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49563, + "fields": { + "id_car_model": 2137, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49564, + "fields": { + "id_car_model": 2137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49565, + "fields": { + "id_car_model": 2137, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49566, + "fields": { + "id_car_model": 2137, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49567, + "fields": { + "id_car_model": 2137, + "name": "California wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49568, + "fields": { + "id_car_model": 2137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49569, + "fields": { + "id_car_model": 2137, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49570, + "fields": { + "id_car_model": 2137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49571, + "fields": { + "id_car_model": 2137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49572, + "fields": { + "id_car_model": 2137, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49573, + "fields": { + "id_car_model": 2137, + "name": "VB110 wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49574, + "fields": { + "id_car_model": 2137, + "name": "KB10 Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49575, + "fields": { + "id_car_model": 2137, + "name": "VB10 wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49576, + "fields": { + "id_car_model": 2137, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49577, + "fields": { + "id_car_model": 2137, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49578, + "fields": { + "id_car_model": 2139, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49580, + "fields": { + "id_car_model": 2139, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49581, + "fields": { + "id_car_model": 2139, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49582, + "fields": { + "id_car_model": 2143, + "name": "Crew Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49584, + "fields": { + "id_car_model": 2145, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49585, + "fields": { + "id_car_model": 2146, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49586, + "fields": { + "id_car_model": 2148, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49588, + "fields": { + "id_car_model": 2149, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49589, + "fields": { + "id_car_model": 2150, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49590, + "fields": { + "id_car_model": 2150, + "name": "Qualis wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49591, + "fields": { + "id_car_model": 2150, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49592, + "fields": { + "id_car_model": 2150, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49593, + "fields": { + "id_car_model": 2150, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49594, + "fields": { + "id_car_model": 2150, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49595, + "fields": { + "id_car_model": 2150, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49596, + "fields": { + "id_car_model": 2150, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49597, + "fields": { + "id_car_model": 2150, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49598, + "fields": { + "id_car_model": 2150, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49599, + "fields": { + "id_car_model": 2150, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49600, + "fields": { + "id_car_model": 2150, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49601, + "fields": { + "id_car_model": 2150, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49602, + "fields": { + "id_car_model": 2151, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49603, + "fields": { + "id_car_model": 2152, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49604, + "fields": { + "id_car_model": 2152, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49605, + "fields": { + "id_car_model": 2154, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49606, + "fields": { + "id_car_model": 2154, + "name": "XRS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49607, + "fields": { + "id_car_model": 2154, + "name": "XR hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49608, + "fields": { + "id_car_model": 2154, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49609, + "fields": { + "id_car_model": 2154, + "name": "XRS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49610, + "fields": { + "id_car_model": 2154, + "name": "XR hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49611, + "fields": { + "id_car_model": 2154, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49612, + "fields": { + "id_car_model": 2154, + "name": "TRD hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49613, + "fields": { + "id_car_model": 2156, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49614, + "fields": { + "id_car_model": 2157, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49615, + "fields": { + "id_car_model": 2163, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49616, + "fields": { + "id_car_model": 2166, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49617, + "fields": { + "id_car_model": 2167, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49618, + "fields": { + "id_car_model": 2167, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49619, + "fields": { + "id_car_model": 2168, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49620, + "fields": { + "id_car_model": 2171, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49621, + "fields": { + "id_car_model": 2173, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49622, + "fields": { + "id_car_model": 2175, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49623, + "fields": { + "id_car_model": 2177, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49624, + "fields": { + "id_car_model": 2177, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49625, + "fields": { + "id_car_model": 2177, + "name": "Crossover 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49626, + "fields": { + "id_car_model": 2177, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49627, + "fields": { + "id_car_model": 2177, + "name": "Crossover 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49629, + "fields": { + "id_car_model": 2180, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49630, + "fields": { + "id_car_model": 2185, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49631, + "fields": { + "id_car_model": 2185, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49632, + "fields": { + "id_car_model": 2186, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49633, + "fields": { + "id_car_model": 2186, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49634, + "fields": { + "id_car_model": 2192, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49635, + "fields": { + "id_car_model": 2193, + "name": "Cielo liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49636, + "fields": { + "id_car_model": 2193, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49637, + "fields": { + "id_car_model": 2196, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49638, + "fields": { + "id_car_model": 2196, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49639, + "fields": { + "id_car_model": 2196, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49640, + "fields": { + "id_car_model": 2196, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49641, + "fields": { + "id_car_model": 2196, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49642, + "fields": { + "id_car_model": 2196, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49643, + "fields": { + "id_car_model": 2196, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49644, + "fields": { + "id_car_model": 2196, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49645, + "fields": { + "id_car_model": 2197, + "name": "X-Runner pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49646, + "fields": { + "id_car_model": 2197, + "name": "X-Runner pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49647, + "fields": { + "id_car_model": 2197, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49648, + "fields": { + "id_car_model": 2197, + "name": "Double Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49649, + "fields": { + "id_car_model": 2197, + "name": "Access Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49650, + "fields": { + "id_car_model": 2197, + "name": "Xtracab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49651, + "fields": { + "id_car_model": 2197, + "name": "Xtracab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49652, + "fields": { + "id_car_model": 2197, + "name": "Regular pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49653, + "fields": { + "id_car_model": 2199, + "name": "Van minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49654, + "fields": { + "id_car_model": 2199, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49655, + "fields": { + "id_car_model": 2200, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49656, + "fields": { + "id_car_model": 2202, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49657, + "fields": { + "id_car_model": 2208, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49658, + "fields": { + "id_car_model": 2208, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49659, + "fields": { + "id_car_model": 2210, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49660, + "fields": { + "id_car_model": 2210, + "name": "RS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49661, + "fields": { + "id_car_model": 2210, + "name": "RS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49662, + "fields": { + "id_car_model": 2210, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49663, + "fields": { + "id_car_model": 2210, + "name": "RS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49664, + "fields": { + "id_car_model": 2210, + "name": "RS hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49665, + "fields": { + "id_car_model": 2210, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49666, + "fields": { + "id_car_model": 2210, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49667, + "fields": { + "id_car_model": 2212, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49668, + "fields": { + "id_car_model": 2216, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49669, + "fields": { + "id_car_model": 2217, + "name": "Hybrid hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49670, + "fields": { + "id_car_model": 2217, + "name": "RS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49671, + "fields": { + "id_car_model": 2217, + "name": "RS hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49672, + "fields": { + "id_car_model": 2217, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49673, + "fields": { + "id_car_model": 2218, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49674, + "fields": { + "id_car_model": 2220, + "name": "Crew Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49675, + "fields": { + "id_car_model": 2220, + "name": "Extended Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49676, + "fields": { + "id_car_model": 2220, + "name": "Crew Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49677, + "fields": { + "id_car_model": 2220, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49678, + "fields": { + "id_car_model": 2220, + "name": "SS Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49679, + "fields": { + "id_car_model": 2220, + "name": "Crew Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49681, + "fields": { + "id_car_model": 2375, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49682, + "fields": { + "id_car_model": 2222, + "name": "Combi van 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49683, + "fields": { + "id_car_model": 2375, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49684, + "fields": { + "id_car_model": 2243, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49685, + "fields": { + "id_car_model": 2243, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49686, + "fields": { + "id_car_model": 2243, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49687, + "fields": { + "id_car_model": 2243, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49688, + "fields": { + "id_car_model": 2243, + "name": "Minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49689, + "fields": { + "id_car_model": 2243, + "name": "Long minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49690, + "fields": { + "id_car_model": 2225, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49691, + "fields": { + "id_car_model": 2225, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49693, + "fields": { + "id_car_model": 2227, + "name": "Combi minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49694, + "fields": { + "id_car_model": 2227, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49695, + "fields": { + "id_car_model": 2227, + "name": "Van 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49697, + "fields": { + "id_car_model": 2227, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49698, + "fields": { + "id_car_model": 2230, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49699, + "fields": { + "id_car_model": 2230, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49701, + "fields": { + "id_car_model": 2230, + "name": "Combi van 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49703, + "fields": { + "id_car_model": 2230, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49705, + "fields": { + "id_car_model": 2230, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49706, + "fields": { + "id_car_model": 2230, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49707, + "fields": { + "id_car_model": 2230, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49708, + "fields": { + "id_car_model": 2230, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49710, + "fields": { + "id_car_model": 1717, + "name": "WRX STI Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49711, + "fields": { + "id_car_model": 2379, + "name": "Cross hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49712, + "fields": { + "id_car_model": 2379, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49713, + "fields": { + "id_car_model": 2234, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49714, + "fields": { + "id_car_model": 2236, + "name": "Kombi minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49716, + "fields": { + "id_car_model": 2236, + "name": "Kasten van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49718, + "fields": { + "id_car_model": 2236, + "name": "Minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49723, + "fields": { + "id_car_model": 2236, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49724, + "fields": { + "id_car_model": 2236, + "name": "Minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49726, + "fields": { + "id_car_model": 2236, + "name": "Single Cab pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49727, + "fields": { + "id_car_model": 2236, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49728, + "fields": { + "id_car_model": 2236, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49730, + "fields": { + "id_car_model": 2236, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49734, + "fields": { + "id_car_model": 2236, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49735, + "fields": { + "id_car_model": 2236, + "name": "Samba minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49736, + "fields": { + "id_car_model": 2236, + "name": "Minivan 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49740, + "fields": { + "id_car_model": 2236, + "name": "Kombi minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49741, + "fields": { + "id_car_model": 2236, + "name": "Minivan 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49743, + "fields": { + "id_car_model": 2226, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49744, + "fields": { + "id_car_model": 2226, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49745, + "fields": { + "id_car_model": 2226, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49748, + "fields": { + "id_car_model": 2374, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49749, + "fields": { + "id_car_model": 2374, + "name": "Cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49751, + "fields": { + "id_car_model": 2374, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49752, + "fields": { + "id_car_model": 2374, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49753, + "fields": { + "id_car_model": 2235, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49754, + "fields": { + "id_car_model": 2251, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49757, + "fields": { + "id_car_model": 2314, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49759, + "fields": { + "id_car_model": 2245, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49760, + "fields": { + "id_car_model": 2316, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49761, + "fields": { + "id_car_model": 2303, + "name": "Limousine Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49762, + "fields": { + "id_car_model": 2303, + "name": "Limousine Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49763, + "fields": { + "id_car_model": 2302, + "name": "Coupe Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49764, + "fields": { + "id_car_model": 2302, + "name": "S Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49765, + "fields": { + "id_car_model": 2302, + "name": "S cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49766, + "fields": { + "id_car_model": 133, + "name": "Speed cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49767, + "fields": { + "id_car_model": 133, + "name": "Cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49768, + "fields": { + "id_car_model": 133, + "name": "Speed cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49769, + "fields": { + "id_car_model": 2299, + "name": "Cabrio cabriolet", + "arabic_name": "سطح قابل للطي" + } +}, +{ + "model": "inventory.carserie", + "pk": 49770, + "fields": { + "id_car_model": 2299, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49771, + "fields": { + "id_car_model": 2299, + "name": "Coupe Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49772, + "fields": { + "id_car_model": 2299, + "name": "GT3 Coupe Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49773, + "fields": { + "id_car_model": 2299, + "name": "Limousine Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49775, + "fields": { + "id_car_model": 19269, + "name": "SS Sport trim pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49776, + "fields": { + "id_car_model": 19269, + "name": "Classic pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49777, + "fields": { + "id_car_model": 19269, + "name": "Classic pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49778, + "fields": { + "id_car_model": 19269, + "name": "Classic pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49779, + "fields": { + "id_car_model": 19269, + "name": "Classic pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49780, + "fields": { + "id_car_model": 19269, + "name": "Black Knight pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49781, + "fields": { + "id_car_model": 19269, + "name": "Classic pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49782, + "fields": { + "id_car_model": 19269, + "name": "Classic pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49783, + "fields": { + "id_car_model": 19269, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49784, + "fields": { + "id_car_model": 19269, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49785, + "fields": { + "id_car_model": 19269, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49786, + "fields": { + "id_car_model": 19269, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49787, + "fields": { + "id_car_model": 19269, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49788, + "fields": { + "id_car_model": 19269, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49789, + "fields": { + "id_car_model": 19269, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49790, + "fields": { + "id_car_model": 19269, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49791, + "fields": { + "id_car_model": 19269, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49792, + "fields": { + "id_car_model": 18965, + "name": "AMG Coupe crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49794, + "fields": { + "id_car_model": 19299, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49795, + "fields": { + "id_car_model": 19299, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49796, + "fields": { + "id_car_model": 19617, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49797, + "fields": { + "id_car_model": 19607, + "name": "Classic Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49798, + "fields": { + "id_car_model": 19607, + "name": "Classic Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49799, + "fields": { + "id_car_model": 19607, + "name": "Classic Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49800, + "fields": { + "id_car_model": 19607, + "name": "Station Wagon wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49801, + "fields": { + "id_car_model": 19607, + "name": "Laguna S-3 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49802, + "fields": { + "id_car_model": 19607, + "name": "Classic Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49803, + "fields": { + "id_car_model": 19607, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49804, + "fields": { + "id_car_model": 19607, + "name": "Laguna S-3 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49805, + "fields": { + "id_car_model": 19607, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49806, + "fields": { + "id_car_model": 19607, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49807, + "fields": { + "id_car_model": 19607, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49808, + "fields": { + "id_car_model": 19607, + "name": "Concours Estate Wagon wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49809, + "fields": { + "id_car_model": 19607, + "name": "Nomad Station Wagon wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49810, + "fields": { + "id_car_model": 19607, + "name": "Sport Sedan Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49811, + "fields": { + "id_car_model": 19607, + "name": "Concours Station Wagon wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49812, + "fields": { + "id_car_model": 19607, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49813, + "fields": { + "id_car_model": 19607, + "name": "Sport Coupe Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49814, + "fields": { + "id_car_model": 19607, + "name": "Sport Coupe Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49815, + "fields": { + "id_car_model": 19607, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49816, + "fields": { + "id_car_model": 19607, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49817, + "fields": { + "id_car_model": 19607, + "name": "Concours Station Wagon wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49818, + "fields": { + "id_car_model": 19607, + "name": "Sport Coupe Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49819, + "fields": { + "id_car_model": 19607, + "name": "Concours Station Wagon wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49820, + "fields": { + "id_car_model": 19607, + "name": "Sport Sedan Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49821, + "fields": { + "id_car_model": 19607, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49822, + "fields": { + "id_car_model": 19607, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49823, + "fields": { + "id_car_model": 19607, + "name": "Sport Sedan Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49824, + "fields": { + "id_car_model": 19607, + "name": "Sport Coupe Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49825, + "fields": { + "id_car_model": 19607, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49826, + "fields": { + "id_car_model": 19607, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49827, + "fields": { + "id_car_model": 19607, + "name": "Concours Sport Sedan Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49828, + "fields": { + "id_car_model": 19607, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49829, + "fields": { + "id_car_model": 19607, + "name": "Sport Coupe Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49830, + "fields": { + "id_car_model": 19607, + "name": "Station Wagon wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49831, + "fields": { + "id_car_model": 19607, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49832, + "fields": { + "id_car_model": 19607, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49833, + "fields": { + "id_car_model": 19607, + "name": "Concours wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49834, + "fields": { + "id_car_model": 19607, + "name": "Sport Coupe Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49835, + "fields": { + "id_car_model": 19607, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49836, + "fields": { + "id_car_model": 19607, + "name": "Sport Coupe SS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49837, + "fields": { + "id_car_model": 19607, + "name": "Cabriolet 2-doors", + "arabic_name": "سطح قابل للطي - بابين" + } +}, +{ + "model": "inventory.carserie", + "pk": 49838, + "fields": { + "id_car_model": 19607, + "name": "Sport Coupe Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49839, + "fields": { + "id_car_model": 19607, + "name": "SS cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49840, + "fields": { + "id_car_model": 19607, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49841, + "fields": { + "id_car_model": 19607, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49842, + "fields": { + "id_car_model": 19607, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49843, + "fields": { + "id_car_model": 19607, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49844, + "fields": { + "id_car_model": 19607, + "name": "Station Wagon wagon 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49845, + "fields": { + "id_car_model": 19607, + "name": "Sport Coupe Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49846, + "fields": { + "id_car_model": 19607, + "name": "Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49847, + "fields": { + "id_car_model": 19607, + "name": "Sport Coupe Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49848, + "fields": { + "id_car_model": 19607, + "name": "Station Wagon wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49849, + "fields": { + "id_car_model": 19607, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49851, + "fields": { + "id_car_model": 19736, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49852, + "fields": { + "id_car_model": 19736, + "name": "Domaine wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49853, + "fields": { + "id_car_model": 19736, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49854, + "fields": { + "id_car_model": 19732, + "name": "Gordini Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49855, + "fields": { + "id_car_model": 19730, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49856, + "fields": { + "id_car_model": 19761, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49857, + "fields": { + "id_car_model": 19761, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49858, + "fields": { + "id_car_model": 19762, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49859, + "fields": { + "id_car_model": 19767, + "name": "V8 roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49860, + "fields": { + "id_car_model": 19767, + "name": "V8 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49861, + "fields": { + "id_car_model": 19767, + "name": "V12 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49862, + "fields": { + "id_car_model": 19767, + "name": "V12 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49863, + "fields": { + "id_car_model": 19767, + "name": "V12 roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49864, + "fields": { + "id_car_model": 19767, + "name": "V8 N420 roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49865, + "fields": { + "id_car_model": 19767, + "name": "V8 roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49866, + "fields": { + "id_car_model": 19767, + "name": "V8 N420 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49867, + "fields": { + "id_car_model": 19767, + "name": "V8 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49868, + "fields": { + "id_car_model": 19767, + "name": "V8 N400 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49869, + "fields": { + "id_car_model": 19767, + "name": "V8 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49870, + "fields": { + "id_car_model": 19767, + "name": "V8 N400 roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49871, + "fields": { + "id_car_model": 19767, + "name": "V8 roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49872, + "fields": { + "id_car_model": 19767, + "name": "V8 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49873, + "fields": { + "id_car_model": 19767, + "name": "V8 Le Mans Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49874, + "fields": { + "id_car_model": 19767, + "name": "V8 Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49875, + "fields": { + "id_car_model": 19767, + "name": "V8 Volante \"Prince of Wales\" cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49876, + "fields": { + "id_car_model": 19767, + "name": "V8 Volante cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49877, + "fields": { + "id_car_model": 19770, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49878, + "fields": { + "id_car_model": 19772, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49879, + "fields": { + "id_car_model": 19772, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49880, + "fields": { + "id_car_model": 19772, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49881, + "fields": { + "id_car_model": 19772, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49882, + "fields": { + "id_car_model": 19772, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49883, + "fields": { + "id_car_model": 19772, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49884, + "fields": { + "id_car_model": 19772, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49885, + "fields": { + "id_car_model": 19772, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49886, + "fields": { + "id_car_model": 19772, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49887, + "fields": { + "id_car_model": 19772, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49888, + "fields": { + "id_car_model": 19773, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49889, + "fields": { + "id_car_model": 19773, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49890, + "fields": { + "id_car_model": 19774, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49891, + "fields": { + "id_car_model": 19775, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49893, + "fields": { + "id_car_model": 19775, + "name": "Gran Turismo liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49894, + "fields": { + "id_car_model": 19775, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49895, + "fields": { + "id_car_model": 19775, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49896, + "fields": { + "id_car_model": 19775, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49897, + "fields": { + "id_car_model": 19775, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49898, + "fields": { + "id_car_model": 19775, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49899, + "fields": { + "id_car_model": 19775, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49900, + "fields": { + "id_car_model": 19775, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49901, + "fields": { + "id_car_model": 19775, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49902, + "fields": { + "id_car_model": 19775, + "name": "Compact hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49903, + "fields": { + "id_car_model": 19775, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49904, + "fields": { + "id_car_model": 19775, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49905, + "fields": { + "id_car_model": 19775, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49906, + "fields": { + "id_car_model": 19775, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49907, + "fields": { + "id_car_model": 19775, + "name": "Compact hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49908, + "fields": { + "id_car_model": 19775, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49909, + "fields": { + "id_car_model": 19775, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49910, + "fields": { + "id_car_model": 19775, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49911, + "fields": { + "id_car_model": 19775, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49912, + "fields": { + "id_car_model": 19775, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49913, + "fields": { + "id_car_model": 19775, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49914, + "fields": { + "id_car_model": 19775, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49915, + "fields": { + "id_car_model": 19775, + "name": "Compact hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49916, + "fields": { + "id_car_model": 19775, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49917, + "fields": { + "id_car_model": 19775, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49918, + "fields": { + "id_car_model": 19775, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49919, + "fields": { + "id_car_model": 19775, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49920, + "fields": { + "id_car_model": 19775, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49921, + "fields": { + "id_car_model": 19775, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49922, + "fields": { + "id_car_model": 19775, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49923, + "fields": { + "id_car_model": 19775, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49924, + "fields": { + "id_car_model": 19775, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49925, + "fields": { + "id_car_model": 19776, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49926, + "fields": { + "id_car_model": 19776, + "name": "Gran Coupe liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49927, + "fields": { + "id_car_model": 19776, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49928, + "fields": { + "id_car_model": 19777, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49929, + "fields": { + "id_car_model": 19777, + "name": "Gran Turismo liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49930, + "fields": { + "id_car_model": 19777, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49931, + "fields": { + "id_car_model": 19777, + "name": "Gran Turismo liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49932, + "fields": { + "id_car_model": 19777, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49933, + "fields": { + "id_car_model": 19777, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49934, + "fields": { + "id_car_model": 19777, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49935, + "fields": { + "id_car_model": 19777, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49936, + "fields": { + "id_car_model": 19777, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49937, + "fields": { + "id_car_model": 19777, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49938, + "fields": { + "id_car_model": 19777, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49939, + "fields": { + "id_car_model": 19777, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49940, + "fields": { + "id_car_model": 19777, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49941, + "fields": { + "id_car_model": 19777, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49942, + "fields": { + "id_car_model": 19777, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49943, + "fields": { + "id_car_model": 19777, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49944, + "fields": { + "id_car_model": 19777, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49945, + "fields": { + "id_car_model": 19777, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49946, + "fields": { + "id_car_model": 19777, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49947, + "fields": { + "id_car_model": 19778, + "name": "Gran Coupe Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49948, + "fields": { + "id_car_model": 19778, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49949, + "fields": { + "id_car_model": 19778, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49950, + "fields": { + "id_car_model": 19778, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49951, + "fields": { + "id_car_model": 19778, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49952, + "fields": { + "id_car_model": 19778, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49953, + "fields": { + "id_car_model": 19778, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49954, + "fields": { + "id_car_model": 19778, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49955, + "fields": { + "id_car_model": 19778, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49956, + "fields": { + "id_car_model": 19778, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49957, + "fields": { + "id_car_model": 19779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49958, + "fields": { + "id_car_model": 19779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49959, + "fields": { + "id_car_model": 19779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49960, + "fields": { + "id_car_model": 19779, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49961, + "fields": { + "id_car_model": 19779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49962, + "fields": { + "id_car_model": 19779, + "name": "L7 Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49963, + "fields": { + "id_car_model": 19779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49964, + "fields": { + "id_car_model": 19779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49965, + "fields": { + "id_car_model": 19779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49966, + "fields": { + "id_car_model": 19779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49967, + "fields": { + "id_car_model": 19780, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49968, + "fields": { + "id_car_model": 19781, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49969, + "fields": { + "id_car_model": 19782, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49970, + "fields": { + "id_car_model": 19783, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49971, + "fields": { + "id_car_model": 19783, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49972, + "fields": { + "id_car_model": 19785, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49973, + "fields": { + "id_car_model": 19801, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49974, + "fields": { + "id_car_model": 19813, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49975, + "fields": { + "id_car_model": 19824, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49976, + "fields": { + "id_car_model": 19825, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49978, + "fields": { + "id_car_model": 2104, + "name": "Sportvan minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49979, + "fields": { + "id_car_model": 2104, + "name": "Sportvan minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49981, + "fields": { + "id_car_model": 2104, + "name": "Sportvan minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49984, + "fields": { + "id_car_model": 2104, + "name": "Sportvan minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49986, + "fields": { + "id_car_model": 2104, + "name": "Sportvan minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49987, + "fields": { + "id_car_model": 2104, + "name": "Sportvan minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49990, + "fields": { + "id_car_model": 19832, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49991, + "fields": { + "id_car_model": 19832, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49992, + "fields": { + "id_car_model": 19832, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49993, + "fields": { + "id_car_model": 19832, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49994, + "fields": { + "id_car_model": 19832, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49995, + "fields": { + "id_car_model": 19832, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49996, + "fields": { + "id_car_model": 19832, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49997, + "fields": { + "id_car_model": 19832, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49998, + "fields": { + "id_car_model": 19832, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 49999, + "fields": { + "id_car_model": 19832, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50000, + "fields": { + "id_car_model": 19832, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50001, + "fields": { + "id_car_model": 19832, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50002, + "fields": { + "id_car_model": 19832, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50003, + "fields": { + "id_car_model": 19832, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50004, + "fields": { + "id_car_model": 19832, + "name": "Greenbrier Sportswagon minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50005, + "fields": { + "id_car_model": 19832, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50006, + "fields": { + "id_car_model": 19832, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50007, + "fields": { + "id_car_model": 19832, + "name": "Lakewood wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50008, + "fields": { + "id_car_model": 19832, + "name": "Rampside pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50010, + "fields": { + "id_car_model": 19832, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50011, + "fields": { + "id_car_model": 19832, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50012, + "fields": { + "id_car_model": 19833, + "name": "Crew Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50013, + "fields": { + "id_car_model": 19833, + "name": "Pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50014, + "fields": { + "id_car_model": 19833, + "name": "Crew Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50015, + "fields": { + "id_car_model": 19833, + "name": "Pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50016, + "fields": { + "id_car_model": 19835, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50017, + "fields": { + "id_car_model": 19837, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50018, + "fields": { + "id_car_model": 19838, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50019, + "fields": { + "id_car_model": 19838, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50020, + "fields": { + "id_car_model": 19838, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50021, + "fields": { + "id_car_model": 19839, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50022, + "fields": { + "id_car_model": 19840, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50023, + "fields": { + "id_car_model": 19841, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50024, + "fields": { + "id_car_model": 19841, + "name": "Conversivel cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50025, + "fields": { + "id_car_model": 19841, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50026, + "fields": { + "id_car_model": 19842, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50027, + "fields": { + "id_car_model": 19843, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50028, + "fields": { + "id_car_model": 19843, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50029, + "fields": { + "id_car_model": 19844, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50030, + "fields": { + "id_car_model": 19844, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50031, + "fields": { + "id_car_model": 19844, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50032, + "fields": { + "id_car_model": 19845, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50033, + "fields": { + "id_car_model": 19845, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50034, + "fields": { + "id_car_model": 19846, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50037, + "fields": { + "id_car_model": 19846, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50039, + "fields": { + "id_car_model": 19847, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50040, + "fields": { + "id_car_model": 19848, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50042, + "fields": { + "id_car_model": 19849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50043, + "fields": { + "id_car_model": 19849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50044, + "fields": { + "id_car_model": 19849, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50045, + "fields": { + "id_car_model": 19849, + "name": "Concours liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50046, + "fields": { + "id_car_model": 19849, + "name": "Concours Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50047, + "fields": { + "id_car_model": 19849, + "name": "Concours Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50048, + "fields": { + "id_car_model": 19849, + "name": "Concours Vinyl roof Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50049, + "fields": { + "id_car_model": 19849, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50050, + "fields": { + "id_car_model": 19849, + "name": "Concours Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50051, + "fields": { + "id_car_model": 19849, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50052, + "fields": { + "id_car_model": 19849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50053, + "fields": { + "id_car_model": 19849, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50054, + "fields": { + "id_car_model": 19849, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50055, + "fields": { + "id_car_model": 19849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50056, + "fields": { + "id_car_model": 19849, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50057, + "fields": { + "id_car_model": 19849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50058, + "fields": { + "id_car_model": 19849, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50059, + "fields": { + "id_car_model": 19849, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50060, + "fields": { + "id_car_model": 19849, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50061, + "fields": { + "id_car_model": 19849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50062, + "fields": { + "id_car_model": 19849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50063, + "fields": { + "id_car_model": 19849, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50064, + "fields": { + "id_car_model": 19849, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50065, + "fields": { + "id_car_model": 19849, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50066, + "fields": { + "id_car_model": 19849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50067, + "fields": { + "id_car_model": 19849, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50068, + "fields": { + "id_car_model": 19849, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50069, + "fields": { + "id_car_model": 19849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50070, + "fields": { + "id_car_model": 19849, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50071, + "fields": { + "id_car_model": 19849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50072, + "fields": { + "id_car_model": 19849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50073, + "fields": { + "id_car_model": 19849, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50074, + "fields": { + "id_car_model": 19849, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50075, + "fields": { + "id_car_model": 19849, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50076, + "fields": { + "id_car_model": 19849, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50077, + "fields": { + "id_car_model": 19849, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50078, + "fields": { + "id_car_model": 19849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50079, + "fields": { + "id_car_model": 19850, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50080, + "fields": { + "id_car_model": 19852, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50081, + "fields": { + "id_car_model": 19852, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50082, + "fields": { + "id_car_model": 19852, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50083, + "fields": { + "id_car_model": 19852, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50084, + "fields": { + "id_car_model": 19853, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50085, + "fields": { + "id_car_model": 19853, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50086, + "fields": { + "id_car_model": 19853, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50087, + "fields": { + "id_car_model": 19854, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50088, + "fields": { + "id_car_model": 19854, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50089, + "fields": { + "id_car_model": 19856, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50090, + "fields": { + "id_car_model": 19858, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50091, + "fields": { + "id_car_model": 19860, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50092, + "fields": { + "id_car_model": 19860, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50093, + "fields": { + "id_car_model": 19861, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50094, + "fields": { + "id_car_model": 19863, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50095, + "fields": { + "id_car_model": 19863, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50096, + "fields": { + "id_car_model": 19864, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50097, + "fields": { + "id_car_model": 19864, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50098, + "fields": { + "id_car_model": 19864, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50099, + "fields": { + "id_car_model": 19864, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50100, + "fields": { + "id_car_model": 19865, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50101, + "fields": { + "id_car_model": 19866, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50102, + "fields": { + "id_car_model": 19866, + "name": "Panel Express wagon 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50103, + "fields": { + "id_car_model": 19866, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50104, + "fields": { + "id_car_model": 19866, + "name": "Cosworth Coupe 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50105, + "fields": { + "id_car_model": 19866, + "name": "Coupe 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50106, + "fields": { + "id_car_model": 19866, + "name": "Kammback wagon 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50107, + "fields": { + "id_car_model": 19866, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50108, + "fields": { + "id_car_model": 19866, + "name": "Panel Express wagon 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50109, + "fields": { + "id_car_model": 19866, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50110, + "fields": { + "id_car_model": 19868, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50111, + "fields": { + "id_car_model": 19869, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50112, + "fields": { + "id_car_model": 19874, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50113, + "fields": { + "id_car_model": 344, + "name": "Grand minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50114, + "fields": { + "id_car_model": 344, + "name": "Grand minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50115, + "fields": { + "id_car_model": 344, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50116, + "fields": { + "id_car_model": 344, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50117, + "fields": { + "id_car_model": 344, + "name": "Grand minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50118, + "fields": { + "id_car_model": 344, + "name": "Grand minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50125, + "fields": { + "id_car_model": 19908, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50126, + "fields": { + "id_car_model": 19945, + "name": "Limousine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50127, + "fields": { + "id_car_model": 19946, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50128, + "fields": { + "id_car_model": 19947, + "name": "Super Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50132, + "fields": { + "id_car_model": 20003, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50133, + "fields": { + "id_car_model": 20010, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50147, + "fields": { + "id_car_model": 20057, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50148, + "fields": { + "id_car_model": 20065, + "name": "F-150 SuperCrew pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50150, + "fields": { + "id_car_model": 20065, + "name": "F-150 SuperCab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50151, + "fields": { + "id_car_model": 20065, + "name": "F-150 Tremor pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50152, + "fields": { + "id_car_model": 20065, + "name": "F-150 SVT Raptor SuperCrew pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50153, + "fields": { + "id_car_model": 20065, + "name": "F-150 RegularCab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50154, + "fields": { + "id_car_model": 20065, + "name": "F-150 RegularCab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50155, + "fields": { + "id_car_model": 20065, + "name": "F-150 SuperCab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50156, + "fields": { + "id_car_model": 20065, + "name": "F-150 SuperCrew pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50157, + "fields": { + "id_car_model": 20065, + "name": "F-150 SuperCab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50158, + "fields": { + "id_car_model": 20065, + "name": "F-150 RegularCab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50159, + "fields": { + "id_car_model": 20065, + "name": "F-150 SuperCrew pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50160, + "fields": { + "id_car_model": 20065, + "name": "F-150 SVT Lighting pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50161, + "fields": { + "id_car_model": 20065, + "name": "F-150 SVT Lighting pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50162, + "fields": { + "id_car_model": 20065, + "name": "F-150 SuperCab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50163, + "fields": { + "id_car_model": 20065, + "name": "F-150 RegularCab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50164, + "fields": { + "id_car_model": 20065, + "name": "F-350 SuperCab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50165, + "fields": { + "id_car_model": 20065, + "name": "F-150 SuperCab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50166, + "fields": { + "id_car_model": 20065, + "name": "F-250 RegularCab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50167, + "fields": { + "id_car_model": 20065, + "name": "F-150 RegularCab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50168, + "fields": { + "id_car_model": 20065, + "name": "F-100 RegularCab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50169, + "fields": { + "id_car_model": 20065, + "name": "F-150 RegularCab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50170, + "fields": { + "id_car_model": 20065, + "name": "F-100 RegularCab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50171, + "fields": { + "id_car_model": 20065, + "name": "F-100 SuperCab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50172, + "fields": { + "id_car_model": 20065, + "name": "F-250 SuperCab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50173, + "fields": { + "id_car_model": 20065, + "name": "F-100 RegularCab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50174, + "fields": { + "id_car_model": 20065, + "name": "F-100 RegularCab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50175, + "fields": { + "id_car_model": 20065, + "name": "F-100 pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50176, + "fields": { + "id_car_model": 20065, + "name": "F-100 pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50177, + "fields": { + "id_car_model": 20065, + "name": "F-1 pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50179, + "fields": { + "id_car_model": 20077, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50180, + "fields": { + "id_car_model": 20077, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50185, + "fields": { + "id_car_model": 20995, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50191, + "fields": { + "id_car_model": 20080, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50192, + "fields": { + "id_car_model": 20080, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50196, + "fields": { + "id_car_model": 20100, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50197, + "fields": { + "id_car_model": 20102, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50198, + "fields": { + "id_car_model": 20107, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50199, + "fields": { + "id_car_model": 20109, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50200, + "fields": { + "id_car_model": 20118, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50201, + "fields": { + "id_car_model": 20129, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50202, + "fields": { + "id_car_model": 20130, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50203, + "fields": { + "id_car_model": 20160, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50204, + "fields": { + "id_car_model": 20160, + "name": "Hybrid wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50205, + "fields": { + "id_car_model": 20160, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50206, + "fields": { + "id_car_model": 787, + "name": "Spike minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50207, + "fields": { + "id_car_model": 787, + "name": "Spike minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50208, + "fields": { + "id_car_model": 20174, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50209, + "fields": { + "id_car_model": 20174, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50210, + "fields": { + "id_car_model": 20174, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50211, + "fields": { + "id_car_model": 819, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50212, + "fields": { + "id_car_model": 819, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50213, + "fields": { + "id_car_model": 819, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50215, + "fields": { + "id_car_model": 20177, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50216, + "fields": { + "id_car_model": 20178, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50217, + "fields": { + "id_car_model": 20178, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50218, + "fields": { + "id_car_model": 20178, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50219, + "fields": { + "id_car_model": 20181, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50220, + "fields": { + "id_car_model": 20181, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50221, + "fields": { + "id_car_model": 20181, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50222, + "fields": { + "id_car_model": 20181, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50223, + "fields": { + "id_car_model": 824, + "name": "GT hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50225, + "fields": { + "id_car_model": 20184, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50230, + "fields": { + "id_car_model": 20186, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50233, + "fields": { + "id_car_model": 20189, + "name": "X crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50234, + "fields": { + "id_car_model": 20189, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50235, + "fields": { + "id_car_model": 20193, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50239, + "fields": { + "id_car_model": 20197, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50248, + "fields": { + "id_car_model": 20201, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50249, + "fields": { + "id_car_model": 20201, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50250, + "fields": { + "id_car_model": 20202, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50251, + "fields": { + "id_car_model": 20202, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50255, + "fields": { + "id_car_model": 20206, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50256, + "fields": { + "id_car_model": 20206, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50257, + "fields": { + "id_car_model": 20208, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50262, + "fields": { + "id_car_model": 20210, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50263, + "fields": { + "id_car_model": 20210, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50264, + "fields": { + "id_car_model": 20210, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50265, + "fields": { + "id_car_model": 20210, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50266, + "fields": { + "id_car_model": 20211, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50270, + "fields": { + "id_car_model": 20214, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50271, + "fields": { + "id_car_model": 20214, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50272, + "fields": { + "id_car_model": 20214, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50273, + "fields": { + "id_car_model": 20215, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50274, + "fields": { + "id_car_model": 20219, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50275, + "fields": { + "id_car_model": 20227, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50285, + "fields": { + "id_car_model": 20255, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50286, + "fields": { + "id_car_model": 20258, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50287, + "fields": { + "id_car_model": 20258, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50308, + "fields": { + "id_car_model": 20261, + "name": "II Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50309, + "fields": { + "id_car_model": 20261, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50310, + "fields": { + "id_car_model": 20261, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50311, + "fields": { + "id_car_model": 20262, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50312, + "fields": { + "id_car_model": 20263, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50313, + "fields": { + "id_car_model": 20263, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50314, + "fields": { + "id_car_model": 20264, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50315, + "fields": { + "id_car_model": 20264, + "name": "KOUP Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50316, + "fields": { + "id_car_model": 20264, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50321, + "fields": { + "id_car_model": 935, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50324, + "fields": { + "id_car_model": 20270, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50325, + "fields": { + "id_car_model": 20270, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50326, + "fields": { + "id_car_model": 20270, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50327, + "fields": { + "id_car_model": 20271, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50328, + "fields": { + "id_car_model": 20272, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50329, + "fields": { + "id_car_model": 20272, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50330, + "fields": { + "id_car_model": 20272, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50331, + "fields": { + "id_car_model": 20272, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50332, + "fields": { + "id_car_model": 20272, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50333, + "fields": { + "id_car_model": 20273, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50335, + "fields": { + "id_car_model": 20274, + "name": "Six seats van 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50338, + "fields": { + "id_car_model": 20274, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50339, + "fields": { + "id_car_model": 20274, + "name": "Van 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50342, + "fields": { + "id_car_model": 20275, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50343, + "fields": { + "id_car_model": 20275, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50347, + "fields": { + "id_car_model": 20276, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50348, + "fields": { + "id_car_model": 20289, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50349, + "fields": { + "id_car_model": 20297, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50350, + "fields": { + "id_car_model": 20309, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50351, + "fields": { + "id_car_model": 20310, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50352, + "fields": { + "id_car_model": 20312, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50353, + "fields": { + "id_car_model": 20313, + "name": "Cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50354, + "fields": { + "id_car_model": 20313, + "name": "Sport cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50355, + "fields": { + "id_car_model": 20314, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50356, + "fields": { + "id_car_model": 20318, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50357, + "fields": { + "id_car_model": 20328, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50358, + "fields": { + "id_car_model": 20331, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50359, + "fields": { + "id_car_model": 20331, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50368, + "fields": { + "id_car_model": 20342, + "name": "AMG hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50371, + "fields": { + "id_car_model": 20342, + "name": "AMG hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50376, + "fields": { + "id_car_model": 20342, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50377, + "fields": { + "id_car_model": 20342, + "name": "AMG hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50378, + "fields": { + "id_car_model": 20342, + "name": "Evolution hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50379, + "fields": { + "id_car_model": 20342, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50380, + "fields": { + "id_car_model": 20343, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50381, + "fields": { + "id_car_model": 20343, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50382, + "fields": { + "id_car_model": 20343, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50383, + "fields": { + "id_car_model": 20343, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50384, + "fields": { + "id_car_model": 20344, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50385, + "fields": { + "id_car_model": 20344, + "name": "Shooting Brake wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50386, + "fields": { + "id_car_model": 20344, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50387, + "fields": { + "id_car_model": 20344, + "name": "AMG Shooting Brake wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50388, + "fields": { + "id_car_model": 20345, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50389, + "fields": { + "id_car_model": 20346, + "name": "AMG cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50390, + "fields": { + "id_car_model": 20346, + "name": "AMG Black Series Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50391, + "fields": { + "id_car_model": 20346, + "name": "AMG Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50392, + "fields": { + "id_car_model": 20346, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50393, + "fields": { + "id_car_model": 20346, + "name": "Cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50394, + "fields": { + "id_car_model": 20346, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50395, + "fields": { + "id_car_model": 20346, + "name": "AMG cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50396, + "fields": { + "id_car_model": 20346, + "name": "AMG Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50397, + "fields": { + "id_car_model": 20346, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50398, + "fields": { + "id_car_model": 20346, + "name": "Cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50399, + "fields": { + "id_car_model": 20346, + "name": "AMG cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50400, + "fields": { + "id_car_model": 20346, + "name": "AMG Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50401, + "fields": { + "id_car_model": 20346, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50402, + "fields": { + "id_car_model": 20346, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50403, + "fields": { + "id_car_model": 20346, + "name": "Cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50404, + "fields": { + "id_car_model": 20347, + "name": "Shooting Brake wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50405, + "fields": { + "id_car_model": 20347, + "name": "AMG Shooting Brake wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50406, + "fields": { + "id_car_model": 20347, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50407, + "fields": { + "id_car_model": 20347, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50408, + "fields": { + "id_car_model": 20347, + "name": "AMG Shooting Brake wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50409, + "fields": { + "id_car_model": 20347, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50410, + "fields": { + "id_car_model": 20347, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50411, + "fields": { + "id_car_model": 20347, + "name": "Shooting Brake wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50412, + "fields": { + "id_car_model": 20347, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50414, + "fields": { + "id_car_model": 20347, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50415, + "fields": { + "id_car_model": 20347, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50416, + "fields": { + "id_car_model": 20348, + "name": "AMG Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50417, + "fields": { + "id_car_model": 20348, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50418, + "fields": { + "id_car_model": 20348, + "name": "AMG Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50419, + "fields": { + "id_car_model": 20348, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50420, + "fields": { + "id_car_model": 20348, + "name": "AMG Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50421, + "fields": { + "id_car_model": 20348, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50422, + "fields": { + "id_car_model": 20348, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50423, + "fields": { + "id_car_model": 20348, + "name": "AMG Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50424, + "fields": { + "id_car_model": 20348, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50425, + "fields": { + "id_car_model": 20349, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50426, + "fields": { + "id_car_model": 20349, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50427, + "fields": { + "id_car_model": 20349, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50428, + "fields": { + "id_car_model": 20349, + "name": "AMG Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50429, + "fields": { + "id_car_model": 20349, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50431, + "fields": { + "id_car_model": 20349, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50432, + "fields": { + "id_car_model": 20349, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50433, + "fields": { + "id_car_model": 20349, + "name": "AMG wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50434, + "fields": { + "id_car_model": 20349, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50435, + "fields": { + "id_car_model": 20349, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50436, + "fields": { + "id_car_model": 20349, + "name": "AMG wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50438, + "fields": { + "id_car_model": 20349, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50441, + "fields": { + "id_car_model": 20349, + "name": "AMG wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50442, + "fields": { + "id_car_model": 20349, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50443, + "fields": { + "id_car_model": 20349, + "name": "Coupe 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50444, + "fields": { + "id_car_model": 20349, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50446, + "fields": { + "id_car_model": 20349, + "name": "AMG wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50447, + "fields": { + "id_car_model": 20349, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50448, + "fields": { + "id_car_model": 20349, + "name": "AMG wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50449, + "fields": { + "id_car_model": 20349, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50450, + "fields": { + "id_car_model": 20349, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50451, + "fields": { + "id_car_model": 20349, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50453, + "fields": { + "id_car_model": 20349, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50454, + "fields": { + "id_car_model": 20349, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50455, + "fields": { + "id_car_model": 20349, + "name": "2.5-16 Evolution II Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50456, + "fields": { + "id_car_model": 20349, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50457, + "fields": { + "id_car_model": 20349, + "name": "2.5-16 Evolution Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50458, + "fields": { + "id_car_model": 20349, + "name": "2.5-16 Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50459, + "fields": { + "id_car_model": 20349, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50460, + "fields": { + "id_car_model": 20349, + "name": "Sedan 4-doors", + "arabic_name": "سيدان 4-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 50461, + "fields": { + "id_car_model": 20350, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50462, + "fields": { + "id_car_model": 20350, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50463, + "fields": { + "id_car_model": 20350, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50464, + "fields": { + "id_car_model": 20350, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50465, + "fields": { + "id_car_model": 20350, + "name": "AMG wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50466, + "fields": { + "id_car_model": 20350, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50467, + "fields": { + "id_car_model": 20350, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50468, + "fields": { + "id_car_model": 20350, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50469, + "fields": { + "id_car_model": 20350, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50470, + "fields": { + "id_car_model": 20350, + "name": "Cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50471, + "fields": { + "id_car_model": 20350, + "name": "AMG wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50472, + "fields": { + "id_car_model": 20350, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50473, + "fields": { + "id_car_model": 20350, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50474, + "fields": { + "id_car_model": 20350, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50475, + "fields": { + "id_car_model": 20350, + "name": "AMG wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50476, + "fields": { + "id_car_model": 20350, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50477, + "fields": { + "id_car_model": 20350, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50478, + "fields": { + "id_car_model": 20350, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50479, + "fields": { + "id_car_model": 20350, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50480, + "fields": { + "id_car_model": 20350, + "name": "AMG wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50481, + "fields": { + "id_car_model": 20350, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50482, + "fields": { + "id_car_model": 20350, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50483, + "fields": { + "id_car_model": 20350, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50484, + "fields": { + "id_car_model": 20350, + "name": "AMG wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50485, + "fields": { + "id_car_model": 20350, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50486, + "fields": { + "id_car_model": 20350, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50487, + "fields": { + "id_car_model": 20350, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50488, + "fields": { + "id_car_model": 20350, + "name": "AMG Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50489, + "fields": { + "id_car_model": 20350, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50490, + "fields": { + "id_car_model": 20350, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50491, + "fields": { + "id_car_model": 20350, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50492, + "fields": { + "id_car_model": 20350, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50493, + "fields": { + "id_car_model": 20350, + "name": "AMG cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50494, + "fields": { + "id_car_model": 20350, + "name": "E500 Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50495, + "fields": { + "id_car_model": 20350, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50496, + "fields": { + "id_car_model": 20350, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50497, + "fields": { + "id_car_model": 20350, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50498, + "fields": { + "id_car_model": 20350, + "name": "500E Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50499, + "fields": { + "id_car_model": 20350, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50500, + "fields": { + "id_car_model": 20350, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50501, + "fields": { + "id_car_model": 20350, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50502, + "fields": { + "id_car_model": 20350, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50503, + "fields": { + "id_car_model": 20350, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50504, + "fields": { + "id_car_model": 20350, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50505, + "fields": { + "id_car_model": 20350, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50506, + "fields": { + "id_car_model": 20351, + "name": "AMG crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50507, + "fields": { + "id_car_model": 20351, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50508, + "fields": { + "id_car_model": 20352, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50509, + "fields": { + "id_car_model": 20352, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50510, + "fields": { + "id_car_model": 20353, + "name": "AMG SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50512, + "fields": { + "id_car_model": 20354, + "name": "AMG SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50515, + "fields": { + "id_car_model": 20354, + "name": "Grand Edition SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50516, + "fields": { + "id_car_model": 20354, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50517, + "fields": { + "id_car_model": 20355, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50518, + "fields": { + "id_car_model": 20355, + "name": "4x4 SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50519, + "fields": { + "id_car_model": 20355, + "name": "AMG SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50520, + "fields": { + "id_car_model": 20355, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50521, + "fields": { + "id_car_model": 20355, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50522, + "fields": { + "id_car_model": 20355, + "name": "AMG SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50523, + "fields": { + "id_car_model": 20355, + "name": "AMG 6x6 pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50524, + "fields": { + "id_car_model": 20355, + "name": "SUV 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50527, + "fields": { + "id_car_model": 20355, + "name": "AMG SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50529, + "fields": { + "id_car_model": 20355, + "name": "AMG SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50531, + "fields": { + "id_car_model": 20355, + "name": "SUV 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50534, + "fields": { + "id_car_model": 20355, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50535, + "fields": { + "id_car_model": 20355, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50536, + "fields": { + "id_car_model": 20355, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50537, + "fields": { + "id_car_model": 20355, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50538, + "fields": { + "id_car_model": 20355, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50539, + "fields": { + "id_car_model": 20355, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50540, + "fields": { + "id_car_model": 20355, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50541, + "fields": { + "id_car_model": 20357, + "name": "AMG crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50542, + "fields": { + "id_car_model": 20357, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50543, + "fields": { + "id_car_model": 20357, + "name": "AMG crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50544, + "fields": { + "id_car_model": 20357, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50545, + "fields": { + "id_car_model": 20357, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50546, + "fields": { + "id_car_model": 20357, + "name": "AMG crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50547, + "fields": { + "id_car_model": 20357, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50548, + "fields": { + "id_car_model": 20357, + "name": "AMG crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50549, + "fields": { + "id_car_model": 20357, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50550, + "fields": { + "id_car_model": 20357, + "name": "AMG crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50552, + "fields": { + "id_car_model": 20358, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50553, + "fields": { + "id_car_model": 20358, + "name": "AMG minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50554, + "fields": { + "id_car_model": 20360, + "name": "AMG roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50555, + "fields": { + "id_car_model": 20360, + "name": "Roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50556, + "fields": { + "id_car_model": 20360, + "name": "AMG roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50558, + "fields": { + "id_car_model": 20360, + "name": "AMG Black Series Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50559, + "fields": { + "id_car_model": 20360, + "name": "AMG roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50562, + "fields": { + "id_car_model": 20360, + "name": "AMG roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50564, + "fields": { + "id_car_model": 20361, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50565, + "fields": { + "id_car_model": 20361, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50566, + "fields": { + "id_car_model": 20362, + "name": "AMG roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50567, + "fields": { + "id_car_model": 20362, + "name": "Roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50568, + "fields": { + "id_car_model": 20362, + "name": "Roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50569, + "fields": { + "id_car_model": 20362, + "name": "AMG roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50570, + "fields": { + "id_car_model": 20362, + "name": "AMG roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50571, + "fields": { + "id_car_model": 20362, + "name": "Roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50572, + "fields": { + "id_car_model": 20362, + "name": "Roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50573, + "fields": { + "id_car_model": 20362, + "name": "AMG roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50574, + "fields": { + "id_car_model": 20362, + "name": "AMG roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50575, + "fields": { + "id_car_model": 20362, + "name": "Roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50576, + "fields": { + "id_car_model": 20362, + "name": "AMG roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50577, + "fields": { + "id_car_model": 20362, + "name": "Roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50580, + "fields": { + "id_car_model": 20362, + "name": "AMG roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50583, + "fields": { + "id_car_model": 20362, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50584, + "fields": { + "id_car_model": 20362, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50585, + "fields": { + "id_car_model": 20362, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50607, + "fields": { + "id_car_model": 20364, + "name": "AMG Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50608, + "fields": { + "id_car_model": 20364, + "name": "AMG cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50609, + "fields": { + "id_car_model": 20364, + "name": "Cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50610, + "fields": { + "id_car_model": 20364, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50611, + "fields": { + "id_car_model": 20364, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50612, + "fields": { + "id_car_model": 20364, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50613, + "fields": { + "id_car_model": 20364, + "name": "Maybach Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50614, + "fields": { + "id_car_model": 20364, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50615, + "fields": { + "id_car_model": 20364, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50616, + "fields": { + "id_car_model": 20364, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50617, + "fields": { + "id_car_model": 20364, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50618, + "fields": { + "id_car_model": 20364, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50619, + "fields": { + "id_car_model": 20364, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50620, + "fields": { + "id_car_model": 20364, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50621, + "fields": { + "id_car_model": 20364, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50622, + "fields": { + "id_car_model": 20364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50623, + "fields": { + "id_car_model": 20364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50624, + "fields": { + "id_car_model": 20364, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50625, + "fields": { + "id_car_model": 20364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50626, + "fields": { + "id_car_model": 20364, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50627, + "fields": { + "id_car_model": 20364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50628, + "fields": { + "id_car_model": 20364, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50629, + "fields": { + "id_car_model": 20364, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50630, + "fields": { + "id_car_model": 20364, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50636, + "fields": { + "id_car_model": 20390, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50637, + "fields": { + "id_car_model": 20394, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50638, + "fields": { + "id_car_model": 20394, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50639, + "fields": { + "id_car_model": 20394, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50640, + "fields": { + "id_car_model": 20394, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50641, + "fields": { + "id_car_model": 20394, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50642, + "fields": { + "id_car_model": 20394, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50643, + "fields": { + "id_car_model": 20395, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50644, + "fields": { + "id_car_model": 20395, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50645, + "fields": { + "id_car_model": 20395, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50646, + "fields": { + "id_car_model": 20394, + "name": "GP hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50647, + "fields": { + "id_car_model": 20394, + "name": "John Cooper Works hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50648, + "fields": { + "id_car_model": 20397, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50649, + "fields": { + "id_car_model": 20397, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50650, + "fields": { + "id_car_model": 20397, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50651, + "fields": { + "id_car_model": 1293, + "name": "Fiore Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50652, + "fields": { + "id_car_model": 1293, + "name": "Fiore wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50653, + "fields": { + "id_car_model": 1293, + "name": "Fiore Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50654, + "fields": { + "id_car_model": 20429, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50655, + "fields": { + "id_car_model": 20430, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50656, + "fields": { + "id_car_model": 20433, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50657, + "fields": { + "id_car_model": 20433, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50658, + "fields": { + "id_car_model": 20433, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50659, + "fields": { + "id_car_model": 20433, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50660, + "fields": { + "id_car_model": 20433, + "name": "JX Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50661, + "fields": { + "id_car_model": 20433, + "name": "JX hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50662, + "fields": { + "id_car_model": 20433, + "name": "JX hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50663, + "fields": { + "id_car_model": 20433, + "name": "JX Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50664, + "fields": { + "id_car_model": 20433, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50665, + "fields": { + "id_car_model": 20433, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50676, + "fields": { + "id_car_model": 1373, + "name": "Crossover 5-doors", + "arabic_name": "كروس أوفر 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 50678, + "fields": { + "id_car_model": 20440, + "name": "Crew Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50679, + "fields": { + "id_car_model": 20440, + "name": "King Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50680, + "fields": { + "id_car_model": 20440, + "name": "Crew Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50681, + "fields": { + "id_car_model": 20440, + "name": "King Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50682, + "fields": { + "id_car_model": 20440, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50683, + "fields": { + "id_car_model": 20441, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50684, + "fields": { + "id_car_model": 20441, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50685, + "fields": { + "id_car_model": 20441, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50686, + "fields": { + "id_car_model": 20441, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50695, + "fields": { + "id_car_model": 20444, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50699, + "fields": { + "id_car_model": 20449, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50700, + "fields": { + "id_car_model": 20450, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50701, + "fields": { + "id_car_model": 20451, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50702, + "fields": { + "id_car_model": 20451, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50703, + "fields": { + "id_car_model": 20451, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50704, + "fields": { + "id_car_model": 20451, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50705, + "fields": { + "id_car_model": 20451, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50706, + "fields": { + "id_car_model": 20452, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50707, + "fields": { + "id_car_model": 20454, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50708, + "fields": { + "id_car_model": 20454, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50709, + "fields": { + "id_car_model": 20454, + "name": "X-Gear minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50710, + "fields": { + "id_car_model": 20454, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50711, + "fields": { + "id_car_model": 20456, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50712, + "fields": { + "id_car_model": 20456, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50713, + "fields": { + "id_car_model": 20457, + "name": "Caravan minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50717, + "fields": { + "id_car_model": 20459, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50728, + "fields": { + "id_car_model": 20462, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50729, + "fields": { + "id_car_model": 20462, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50732, + "fields": { + "id_car_model": 20465, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50733, + "fields": { + "id_car_model": 20465, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50734, + "fields": { + "id_car_model": 20465, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50735, + "fields": { + "id_car_model": 20465, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50736, + "fields": { + "id_car_model": 20465, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50737, + "fields": { + "id_car_model": 20465, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50738, + "fields": { + "id_car_model": 20465, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50739, + "fields": { + "id_car_model": 20466, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50740, + "fields": { + "id_car_model": 20466, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50741, + "fields": { + "id_car_model": 20467, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50743, + "fields": { + "id_car_model": 20475, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50752, + "fields": { + "id_car_model": 20478, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50753, + "fields": { + "id_car_model": 20479, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50763, + "fields": { + "id_car_model": 20512, + "name": "Aeroback hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50764, + "fields": { + "id_car_model": 20512, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50765, + "fields": { + "id_car_model": 20513, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50766, + "fields": { + "id_car_model": 20514, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50767, + "fields": { + "id_car_model": 20516, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50768, + "fields": { + "id_car_model": 20517, + "name": "GTA cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50769, + "fields": { + "id_car_model": 20517, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50770, + "fields": { + "id_car_model": 20517, + "name": "GTA Sedan 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50771, + "fields": { + "id_car_model": 20517, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50772, + "fields": { + "id_car_model": 20518, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50773, + "fields": { + "id_car_model": 20519, + "name": "Prairie wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50775, + "fields": { + "id_car_model": 20521, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50777, + "fields": { + "id_car_model": 20521, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50778, + "fields": { + "id_car_model": 20522, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50779, + "fields": { + "id_car_model": 20522, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50819, + "fields": { + "id_car_model": 20527, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50820, + "fields": { + "id_car_model": 20528, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50821, + "fields": { + "id_car_model": 20528, + "name": "Sport Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50822, + "fields": { + "id_car_model": 20528, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50823, + "fields": { + "id_car_model": 20529, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50824, + "fields": { + "id_car_model": 20530, + "name": "Family Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50825, + "fields": { + "id_car_model": 20530, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50826, + "fields": { + "id_car_model": 20531, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50827, + "fields": { + "id_car_model": 20531, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50828, + "fields": { + "id_car_model": 20531, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50829, + "fields": { + "id_car_model": 20532, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50830, + "fields": { + "id_car_model": 20541, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50831, + "fields": { + "id_car_model": 20545, + "name": "LS Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50832, + "fields": { + "id_car_model": 20545, + "name": "LW wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50833, + "fields": { + "id_car_model": 20546, + "name": "SL Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50834, + "fields": { + "id_car_model": 20546, + "name": "SC Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50835, + "fields": { + "id_car_model": 20546, + "name": "SW wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50836, + "fields": { + "id_car_model": 20546, + "name": "SL Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50837, + "fields": { + "id_car_model": 20546, + "name": "SC Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50838, + "fields": { + "id_car_model": 20546, + "name": "SW wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50839, + "fields": { + "id_car_model": 20558, + "name": "Van 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50840, + "fields": { + "id_car_model": 20563, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50841, + "fields": { + "id_car_model": 20563, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50844, + "fields": { + "id_car_model": 20573, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50845, + "fields": { + "id_car_model": 20591, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50846, + "fields": { + "id_car_model": 20611, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50847, + "fields": { + "id_car_model": 20617, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50848, + "fields": { + "id_car_model": 20618, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50849, + "fields": { + "id_car_model": 20619, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50850, + "fields": { + "id_car_model": 20620, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50851, + "fields": { + "id_car_model": 20621, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50852, + "fields": { + "id_car_model": 20622, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50853, + "fields": { + "id_car_model": 20622, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50854, + "fields": { + "id_car_model": 20623, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50855, + "fields": { + "id_car_model": 20624, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50856, + "fields": { + "id_car_model": 20624, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50857, + "fields": { + "id_car_model": 20625, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50858, + "fields": { + "id_car_model": 20626, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50859, + "fields": { + "id_car_model": 20632, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50860, + "fields": { + "id_car_model": 20632, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50861, + "fields": { + "id_car_model": 20636, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50862, + "fields": { + "id_car_model": 1818, + "name": "Axio Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50865, + "fields": { + "id_car_model": 20639, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50866, + "fields": { + "id_car_model": 20639, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50867, + "fields": { + "id_car_model": 20650, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50868, + "fields": { + "id_car_model": 20650, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50869, + "fields": { + "id_car_model": 20651, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50870, + "fields": { + "id_car_model": 20652, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50871, + "fields": { + "id_car_model": 20656, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50872, + "fields": { + "id_car_model": 20672, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50873, + "fields": { + "id_car_model": 20674, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50874, + "fields": { + "id_car_model": 20675, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50875, + "fields": { + "id_car_model": 20676, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50876, + "fields": { + "id_car_model": 20676, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50877, + "fields": { + "id_car_model": 20677, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50891, + "fields": { + "id_car_model": 20681, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50892, + "fields": { + "id_car_model": 20681, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50893, + "fields": { + "id_car_model": 20683, + "name": "Variant wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50894, + "fields": { + "id_car_model": 20683, + "name": "Variant Alltrack wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50895, + "fields": { + "id_car_model": 20683, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50896, + "fields": { + "id_car_model": 20683, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50897, + "fields": { + "id_car_model": 20683, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50898, + "fields": { + "id_car_model": 1900, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50899, + "fields": { + "id_car_model": 1900, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50900, + "fields": { + "id_car_model": 1900, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50901, + "fields": { + "id_car_model": 1900, + "name": "RSi hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50902, + "fields": { + "id_car_model": 1900, + "name": "Cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50903, + "fields": { + "id_car_model": 20685, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50904, + "fields": { + "id_car_model": 20685, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50905, + "fields": { + "id_car_model": 20685, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50906, + "fields": { + "id_car_model": 20685, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50907, + "fields": { + "id_car_model": 20685, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50908, + "fields": { + "id_car_model": 20685, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50909, + "fields": { + "id_car_model": 20686, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50910, + "fields": { + "id_car_model": 20686, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50911, + "fields": { + "id_car_model": 20686, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50912, + "fields": { + "id_car_model": 20686, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50913, + "fields": { + "id_car_model": 20687, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50914, + "fields": { + "id_car_model": 20687, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50915, + "fields": { + "id_car_model": 20687, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50916, + "fields": { + "id_car_model": 20687, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50917, + "fields": { + "id_car_model": 20687, + "name": "GTI hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50918, + "fields": { + "id_car_model": 20687, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50919, + "fields": { + "id_car_model": 20687, + "name": "Convertible cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50920, + "fields": { + "id_car_model": 20687, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50921, + "fields": { + "id_car_model": 20687, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50922, + "fields": { + "id_car_model": 20688, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50923, + "fields": { + "id_car_model": 20688, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50924, + "fields": { + "id_car_model": 20689, + "name": "Trooper pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50925, + "fields": { + "id_car_model": 20689, + "name": "Pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50926, + "fields": { + "id_car_model": 20689, + "name": "Cross pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50927, + "fields": { + "id_car_model": 20689, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50928, + "fields": { + "id_car_model": 20689, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50929, + "fields": { + "id_car_model": 20689, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50930, + "fields": { + "id_car_model": 20690, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50931, + "fields": { + "id_car_model": 20691, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50932, + "fields": { + "id_car_model": 20692, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50933, + "fields": { + "id_car_model": 20692, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50934, + "fields": { + "id_car_model": 20701, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50935, + "fields": { + "id_car_model": 20702, + "name": "Limousine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50936, + "fields": { + "id_car_model": 20702, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50937, + "fields": { + "id_car_model": 20703, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50938, + "fields": { + "id_car_model": 20703, + "name": "Limousine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50939, + "fields": { + "id_car_model": 20705, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50940, + "fields": { + "id_car_model": 22494, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50941, + "fields": { + "id_car_model": 20705, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50942, + "fields": { + "id_car_model": 20705, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50943, + "fields": { + "id_car_model": 20706, + "name": "24-10 Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50944, + "fields": { + "id_car_model": 20706, + "name": "24-12 wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50945, + "fields": { + "id_car_model": 20706, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50946, + "fields": { + "id_car_model": 20706, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50947, + "fields": { + "id_car_model": 20706, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50948, + "fields": { + "id_car_model": 20707, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50949, + "fields": { + "id_car_model": 20708, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50950, + "fields": { + "id_car_model": 20708, + "name": "31022 wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50951, + "fields": { + "id_car_model": 20709, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50952, + "fields": { + "id_car_model": 20711, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50953, + "fields": { + "id_car_model": 20712, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50954, + "fields": { + "id_car_model": 20712, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50972, + "fields": { + "id_car_model": 20720, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50973, + "fields": { + "id_car_model": 19305, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50974, + "fields": { + "id_car_model": 20721, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50975, + "fields": { + "id_car_model": 20721, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50976, + "fields": { + "id_car_model": 20721, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50977, + "fields": { + "id_car_model": 20721, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50979, + "fields": { + "id_car_model": 20722, + "name": "2217 minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50981, + "fields": { + "id_car_model": 20722, + "name": "2752 Kombi minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50982, + "fields": { + "id_car_model": 20722, + "name": "2217 minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50983, + "fields": { + "id_car_model": 20722, + "name": "2752 Kombi minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50986, + "fields": { + "id_car_model": 20722, + "name": "2217 minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50988, + "fields": { + "id_car_model": 20722, + "name": "2752 Kombi minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50989, + "fields": { + "id_car_model": 2054, + "name": "27175 pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50994, + "fields": { + "id_car_model": 20749, + "name": "2206 minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 50998, + "fields": { + "id_car_model": 2097, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51001, + "fields": { + "id_car_model": 20749, + "name": "3909 minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51005, + "fields": { + "id_car_model": 20749, + "name": "452V minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51007, + "fields": { + "id_car_model": 20750, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51008, + "fields": { + "id_car_model": 20751, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51009, + "fields": { + "id_car_model": 20752, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51010, + "fields": { + "id_car_model": 20752, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51011, + "fields": { + "id_car_model": 20752, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51013, + "fields": { + "id_car_model": 20756, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51014, + "fields": { + "id_car_model": 20758, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51015, + "fields": { + "id_car_model": 20759, + "name": "Board", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51016, + "fields": { + "id_car_model": 20760, + "name": "Board", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51017, + "fields": { + "id_car_model": 20761, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51019, + "fields": { + "id_car_model": 20771, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51021, + "fields": { + "id_car_model": 20773, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51022, + "fields": { + "id_car_model": 20774, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51023, + "fields": { + "id_car_model": 20775, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51028, + "fields": { + "id_car_model": 20782, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51029, + "fields": { + "id_car_model": 20783, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51030, + "fields": { + "id_car_model": 20784, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51031, + "fields": { + "id_car_model": 20788, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51034, + "fields": { + "id_car_model": 20793, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51035, + "fields": { + "id_car_model": 20794, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51036, + "fields": { + "id_car_model": 20795, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51037, + "fields": { + "id_car_model": 20797, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51038, + "fields": { + "id_car_model": 20798, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51040, + "fields": { + "id_car_model": 2002, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51042, + "fields": { + "id_car_model": 2003, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51047, + "fields": { + "id_car_model": 20344, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51048, + "fields": { + "id_car_model": 20344, + "name": "AMG Shooting Brake wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51049, + "fields": { + "id_car_model": 20344, + "name": "Shooting Brake wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51050, + "fields": { + "id_car_model": 20344, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51051, + "fields": { + "id_car_model": 20349, + "name": "AMG Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51052, + "fields": { + "id_car_model": 20349, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51053, + "fields": { + "id_car_model": 20350, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51054, + "fields": { + "id_car_model": 20359, + "name": "AMG roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51055, + "fields": { + "id_car_model": 20359, + "name": "Roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51270, + "fields": { + "id_car_model": 18965, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51271, + "fields": { + "id_car_model": 18965, + "name": "AMG crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51383, + "fields": { + "id_car_model": 872, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51384, + "fields": { + "id_car_model": 950, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51385, + "fields": { + "id_car_model": 1692, + "name": "Cabrio cabriolet", + "arabic_name": "سطح قابل للطي" + } +}, +{ + "model": "inventory.carserie", + "pk": 51386, + "fields": { + "id_car_model": 1692, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51388, + "fields": { + "id_car_model": 2012, + "name": "2131 Urban SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51389, + "fields": { + "id_car_model": 19775, + "name": "Gran Turismo liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51390, + "fields": { + "id_car_model": 19775, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51391, + "fields": { + "id_car_model": 84, + "name": "Allroad quattro wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51392, + "fields": { + "id_car_model": 136, + "name": "Speed Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51393, + "fields": { + "id_car_model": 267, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51394, + "fields": { + "id_car_model": 348, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51395, + "fields": { + "id_car_model": 348, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51396, + "fields": { + "id_car_model": 824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51398, + "fields": { + "id_car_model": 1810, + "name": "US-spec Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51401, + "fields": { + "id_car_model": 1953, + "name": "Cross country Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51402, + "fields": { + "id_car_model": 19778, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51403, + "fields": { + "id_car_model": 19778, + "name": "Gran Coupe Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51404, + "fields": { + "id_car_model": 19778, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51405, + "fields": { + "id_car_model": 19779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51406, + "fields": { + "id_car_model": 20394, + "name": "John Cooper Works hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51409, + "fields": { + "id_car_model": 220, + "name": "V Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51410, + "fields": { + "id_car_model": 1124, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51411, + "fields": { + "id_car_model": 1124, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51412, + "fields": { + "id_car_model": 1501, + "name": "VU van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51413, + "fields": { + "id_car_model": 1536, + "name": "Carrera Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51414, + "fields": { + "id_car_model": 1536, + "name": "Turbo Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51415, + "fields": { + "id_car_model": 1544, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51416, + "fields": { + "id_car_model": 2233, + "name": "DoubleCab pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51417, + "fields": { + "id_car_model": 19719, + "name": "AMG crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51418, + "fields": { + "id_car_model": 19719, + "name": "Coupe crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51419, + "fields": { + "id_car_model": 20091, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51420, + "fields": { + "id_car_model": 20942, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51423, + "fields": { + "id_car_model": 82, + "name": "Sportback hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51424, + "fields": { + "id_car_model": 82, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51425, + "fields": { + "id_car_model": 85, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51426, + "fields": { + "id_car_model": 845, + "name": "Grand crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51427, + "fields": { + "id_car_model": 1608, + "name": "Cargo Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51428, + "fields": { + "id_car_model": 1759, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51429, + "fields": { + "id_car_model": 1915, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51430, + "fields": { + "id_car_model": 2100, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51431, + "fields": { + "id_car_model": 2279, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51432, + "fields": { + "id_car_model": 19086, + "name": "Crossback hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51433, + "fields": { + "id_car_model": 19719, + "name": "AMG Coupe crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51435, + "fields": { + "id_car_model": 20080, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51436, + "fields": { + "id_car_model": 20350, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51441, + "fields": { + "id_car_model": 109, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51443, + "fields": { + "id_car_model": 359, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51444, + "fields": { + "id_car_model": 359, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51445, + "fields": { + "id_car_model": 1007, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51446, + "fields": { + "id_car_model": 1588, + "name": "Symbol Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51447, + "fields": { + "id_car_model": 1902, + "name": "Kombi minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51449, + "fields": { + "id_car_model": 20349, + "name": "AMG cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51450, + "fields": { + "id_car_model": 20349, + "name": "Cabriolet 2-doors", + "arabic_name": "سطح قابل للطي - بابين" + } +}, +{ + "model": "inventory.carserie", + "pk": 51454, + "fields": { + "id_car_model": 20977, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51455, + "fields": { + "id_car_model": 133, + "name": "Speed Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51456, + "fields": { + "id_car_model": 133, + "name": "V8 Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51457, + "fields": { + "id_car_model": 135, + "name": "S Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51458, + "fields": { + "id_car_model": 648, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51459, + "fields": { + "id_car_model": 1036, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51460, + "fields": { + "id_car_model": 1147, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51461, + "fields": { + "id_car_model": 1549, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51462, + "fields": { + "id_car_model": 2101, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51463, + "fields": { + "id_car_model": 133, + "name": "V8 S cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51464, + "fields": { + "id_car_model": 133, + "name": "Speed cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51465, + "fields": { + "id_car_model": 133, + "name": "V8 cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51466, + "fields": { + "id_car_model": 133, + "name": "Cabriolet 2-doors", + "arabic_name": "سطح قابل للطي - بابين" + } +}, +{ + "model": "inventory.carserie", + "pk": 51467, + "fields": { + "id_car_model": 20980, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51468, + "fields": { + "id_car_model": 20979, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51469, + "fields": { + "id_car_model": 20979, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51470, + "fields": { + "id_car_model": 85, + "name": "Sportback liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51471, + "fields": { + "id_car_model": 109, + "name": "Sportback liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51472, + "fields": { + "id_car_model": 940, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51478, + "fields": { + "id_car_model": 22341, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51479, + "fields": { + "id_car_model": 22475, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51480, + "fields": { + "id_car_model": 848, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51481, + "fields": { + "id_car_model": 915, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51482, + "fields": { + "id_car_model": 915, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51483, + "fields": { + "id_car_model": 961, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51484, + "fields": { + "id_car_model": 973, + "name": "S Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51486, + "fields": { + "id_car_model": 1840, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51487, + "fields": { + "id_car_model": 1908, + "name": "Alltrack wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51488, + "fields": { + "id_car_model": 2234, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51490, + "fields": { + "id_car_model": 19777, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51491, + "fields": { + "id_car_model": 94, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51492, + "fields": { + "id_car_model": 351, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51493, + "fields": { + "id_car_model": 645, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51494, + "fields": { + "id_car_model": 763, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51495, + "fields": { + "id_car_model": 926, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51496, + "fields": { + "id_car_model": 1145, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51497, + "fields": { + "id_car_model": 1256, + "name": "John Cooper Works wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51498, + "fields": { + "id_car_model": 1477, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51499, + "fields": { + "id_car_model": 1686, + "name": "Combi RS wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51500, + "fields": { + "id_car_model": 1686, + "name": "Combi wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51501, + "fields": { + "id_car_model": 1686, + "name": "RS liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51502, + "fields": { + "id_car_model": 1686, + "name": "Liftback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51503, + "fields": { + "id_car_model": 1839, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51504, + "fields": { + "id_car_model": 2236, + "name": "Crew Bus minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51505, + "fields": { + "id_car_model": 20945, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51506, + "fields": { + "id_car_model": 20981, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51507, + "fields": { + "id_car_model": 21006, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51508, + "fields": { + "id_car_model": 280, + "name": "Grand Sport targa 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51509, + "fields": { + "id_car_model": 282, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51510, + "fields": { + "id_car_model": 282, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51511, + "fields": { + "id_car_model": 940, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51512, + "fields": { + "id_car_model": 1908, + "name": "GTI hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51513, + "fields": { + "id_car_model": 2221, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51514, + "fields": { + "id_car_model": 20227, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51516, + "fields": { + "id_car_model": 20997, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51517, + "fields": { + "id_car_model": 113, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51518, + "fields": { + "id_car_model": 114, + "name": "RS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51519, + "fields": { + "id_car_model": 114, + "name": "RS roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51520, + "fields": { + "id_car_model": 563, + "name": "Aperta roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51521, + "fields": { + "id_car_model": 637, + "name": "RS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51522, + "fields": { + "id_car_model": 849, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51523, + "fields": { + "id_car_model": 950, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51524, + "fields": { + "id_car_model": 1687, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51525, + "fields": { + "id_car_model": 1687, + "name": "Spaceback wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51526, + "fields": { + "id_car_model": 1962, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51527, + "fields": { + "id_car_model": 2123, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51528, + "fields": { + "id_car_model": 19767, + "name": "V12 roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51529, + "fields": { + "id_car_model": 20350, + "name": "All-Terrain wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51530, + "fields": { + "id_car_model": 20350, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51531, + "fields": { + "id_car_model": 20350, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51533, + "fields": { + "id_car_model": 20962, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51534, + "fields": { + "id_car_model": 21004, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51535, + "fields": { + "id_car_model": 21005, + "name": "GT liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51536, + "fields": { + "id_car_model": 21001, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 51537, + "fields": { + "id_car_model": 20998, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53055, + "fields": { + "id_car_model": 834, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53056, + "fields": { + "id_car_model": 1427, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53057, + "fields": { + "id_car_model": 1427, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53058, + "fields": { + "id_car_model": 1491, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53059, + "fields": { + "id_car_model": 1735, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53060, + "fields": { + "id_car_model": 1908, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53061, + "fields": { + "id_car_model": 2280, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53062, + "fields": { + "id_car_model": 2315, + "name": "GTS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53064, + "fields": { + "id_car_model": 20395, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53065, + "fields": { + "id_car_model": 22350, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53066, + "fields": { + "id_car_model": 22340, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53123, + "fields": { + "id_car_model": 102, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53124, + "fields": { + "id_car_model": 761, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53125, + "fields": { + "id_car_model": 761, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53126, + "fields": { + "id_car_model": 761, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53127, + "fields": { + "id_car_model": 834, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53128, + "fields": { + "id_car_model": 1258, + "name": "Cooper crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53129, + "fields": { + "id_car_model": 1258, + "name": "Cooper S crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53130, + "fields": { + "id_car_model": 1258, + "name": "John Cooper Works crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53131, + "fields": { + "id_car_model": 1258, + "name": "Cooper SD crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53132, + "fields": { + "id_car_model": 1266, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53133, + "fields": { + "id_car_model": 1478, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53134, + "fields": { + "id_car_model": 1595, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53135, + "fields": { + "id_car_model": 1833, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53136, + "fields": { + "id_car_model": 1902, + "name": "Kombi Maxi minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53137, + "fields": { + "id_car_model": 1908, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53138, + "fields": { + "id_car_model": 2012, + "name": "2329 pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53139, + "fields": { + "id_car_model": 2148, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53144, + "fields": { + "id_car_model": 20959, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53145, + "fields": { + "id_car_model": 22346, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53146, + "fields": { + "id_car_model": 22412, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53147, + "fields": { + "id_car_model": 82, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53148, + "fields": { + "id_car_model": 153, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53149, + "fields": { + "id_car_model": 1381, + "name": "Nismo RS crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53150, + "fields": { + "id_car_model": 1427, + "name": "TwinTop cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53151, + "fields": { + "id_car_model": 1490, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53152, + "fields": { + "id_car_model": 1549, + "name": "Sport Turismo wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53153, + "fields": { + "id_car_model": 1712, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53154, + "fields": { + "id_car_model": 1715, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53155, + "fields": { + "id_car_model": 1718, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53156, + "fields": { + "id_car_model": 1742, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53157, + "fields": { + "id_car_model": 1742, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53158, + "fields": { + "id_car_model": 1742, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53159, + "fields": { + "id_car_model": 1742, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53160, + "fields": { + "id_car_model": 1742, + "name": "Crossover 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53161, + "fields": { + "id_car_model": 1742, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53162, + "fields": { + "id_car_model": 1742, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53163, + "fields": { + "id_car_model": 1793, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53164, + "fields": { + "id_car_model": 1810, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53165, + "fields": { + "id_car_model": 1818, + "name": "Fielder wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53167, + "fields": { + "id_car_model": 1826, + "name": "Athlete Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53168, + "fields": { + "id_car_model": 1826, + "name": "Athlete Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53169, + "fields": { + "id_car_model": 1826, + "name": "Royal Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53170, + "fields": { + "id_car_model": 1826, + "name": "Athlete Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53171, + "fields": { + "id_car_model": 1826, + "name": "Estate wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53172, + "fields": { + "id_car_model": 1834, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53173, + "fields": { + "id_car_model": 1837, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53174, + "fields": { + "id_car_model": 2150, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53175, + "fields": { + "id_car_model": 2150, + "name": "Blit wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53176, + "fields": { + "id_car_model": 2150, + "name": "Qualis wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53177, + "fields": { + "id_car_model": 2151, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53178, + "fields": { + "id_car_model": 2158, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53179, + "fields": { + "id_car_model": 2158, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53180, + "fields": { + "id_car_model": 2158, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53181, + "fields": { + "id_car_model": 2203, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53182, + "fields": { + "id_car_model": 2203, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53183, + "fields": { + "id_car_model": 2212, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53184, + "fields": { + "id_car_model": 2212, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53185, + "fields": { + "id_car_model": 2212, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53186, + "fields": { + "id_car_model": 2229, + "name": "VU van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53187, + "fields": { + "id_car_model": 19209, + "name": "SW Cross wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53188, + "fields": { + "id_car_model": 20350, + "name": "Cabriolet 2-doors", + "arabic_name": "سطح قابل للطي - بابين" + } +}, +{ + "model": "inventory.carserie", + "pk": 53189, + "fields": { + "id_car_model": 20351, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53190, + "fields": { + "id_car_model": 20351, + "name": "AMG crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53193, + "fields": { + "id_car_model": 1723, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53194, + "fields": { + "id_car_model": 20631, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53195, + "fields": { + "id_car_model": 20631, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53196, + "fields": { + "id_car_model": 20631, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53197, + "fields": { + "id_car_model": 20631, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53198, + "fields": { + "id_car_model": 1818, + "name": "Axio Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53199, + "fields": { + "id_car_model": 21002, + "name": "Crossback crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53200, + "fields": { + "id_car_model": 22409, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53201, + "fields": { + "id_car_model": 22421, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53202, + "fields": { + "id_car_model": 22421, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53203, + "fields": { + "id_car_model": 22422, + "name": "Crew Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53204, + "fields": { + "id_car_model": 22422, + "name": "Quad Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53205, + "fields": { + "id_car_model": 22422, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53206, + "fields": { + "id_car_model": 22422, + "name": "Quad Cab pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53207, + "fields": { + "id_car_model": 22417, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53208, + "fields": { + "id_car_model": 22418, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53209, + "fields": { + "id_car_model": 22419, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53210, + "fields": { + "id_car_model": 22414, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53211, + "fields": { + "id_car_model": 85, + "name": "Cabriolet 2-doors", + "arabic_name": "سطح قابل للطي - بابين" + } +}, +{ + "model": "inventory.carserie", + "pk": 53212, + "fields": { + "id_car_model": 956, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53213, + "fields": { + "id_car_model": 1107, + "name": "Sport Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53214, + "fields": { + "id_car_model": 1107, + "name": "MC Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53215, + "fields": { + "id_car_model": 1745, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53216, + "fields": { + "id_car_model": 1818, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53217, + "fields": { + "id_car_model": 1921, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53218, + "fields": { + "id_car_model": 2102, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53219, + "fields": { + "id_car_model": 2134, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53220, + "fields": { + "id_car_model": 2134, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53221, + "fields": { + "id_car_model": 2134, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53222, + "fields": { + "id_car_model": 2134, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53223, + "fields": { + "id_car_model": 2239, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53224, + "fields": { + "id_car_model": 2315, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53225, + "fields": { + "id_car_model": 19209, + "name": "SW wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53226, + "fields": { + "id_car_model": 19393, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53227, + "fields": { + "id_car_model": 19773, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53228, + "fields": { + "id_car_model": 19773, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53229, + "fields": { + "id_car_model": 20364, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53230, + "fields": { + "id_car_model": 20364, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53231, + "fields": { + "id_car_model": 20364, + "name": "Maybach Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53233, + "fields": { + "id_car_model": 20511, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53234, + "fields": { + "id_car_model": 20511, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53236, + "fields": { + "id_car_model": 20966, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53237, + "fields": { + "id_car_model": 22416, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53239, + "fields": { + "id_car_model": 2199, + "name": "Noah minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53252, + "fields": { + "id_car_model": 101, + "name": "Avant wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53253, + "fields": { + "id_car_model": 133, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53254, + "fields": { + "id_car_model": 150, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53255, + "fields": { + "id_car_model": 849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53256, + "fields": { + "id_car_model": 1381, + "name": "R 2.0 crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53257, + "fields": { + "id_car_model": 1386, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53258, + "fields": { + "id_car_model": 1481, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53259, + "fields": { + "id_car_model": 1546, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53260, + "fields": { + "id_car_model": 1707, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53261, + "fields": { + "id_car_model": 1825, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53262, + "fields": { + "id_car_model": 1826, + "name": "Athlete Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53263, + "fields": { + "id_car_model": 1826, + "name": "Royal Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53264, + "fields": { + "id_car_model": 2012, + "name": "21214 Bronto SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53265, + "fields": { + "id_car_model": 2131, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53266, + "fields": { + "id_car_model": 2131, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53267, + "fields": { + "id_car_model": 2131, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53268, + "fields": { + "id_car_model": 2131, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53269, + "fields": { + "id_car_model": 2131, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53270, + "fields": { + "id_car_model": 2131, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53271, + "fields": { + "id_car_model": 2131, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53273, + "fields": { + "id_car_model": 2181, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53274, + "fields": { + "id_car_model": 2294, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53275, + "fields": { + "id_car_model": 2316, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53276, + "fields": { + "id_car_model": 19778, + "name": "Gran Turismo liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53277, + "fields": { + "id_car_model": 19997, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53278, + "fields": { + "id_car_model": 20364, + "name": "Cabriolet 2-doors", + "arabic_name": "سطح قابل للطي - بابين" + } +}, +{ + "model": "inventory.carserie", + "pk": 53279, + "fields": { + "id_car_model": 20364, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53280, + "fields": { + "id_car_model": 20364, + "name": "AMG Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53281, + "fields": { + "id_car_model": 20364, + "name": "AMG cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53287, + "fields": { + "id_car_model": 22439, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53299, + "fields": { + "id_car_model": 69, + "name": "S Volante cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53300, + "fields": { + "id_car_model": 69, + "name": "S Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53301, + "fields": { + "id_car_model": 100, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53302, + "fields": { + "id_car_model": 100, + "name": "Sportback hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53303, + "fields": { + "id_car_model": 133, + "name": "Supersports Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53304, + "fields": { + "id_car_model": 133, + "name": "Supersports cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53305, + "fields": { + "id_car_model": 557, + "name": "TDF Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53306, + "fields": { + "id_car_model": 624, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53307, + "fields": { + "id_car_model": 956, + "name": "X-Line hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53308, + "fields": { + "id_car_model": 973, + "name": "S roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53309, + "fields": { + "id_car_model": 1006, + "name": "Pickup", + "arabic_name": "بيك أب" + } +}, +{ + "model": "inventory.carserie", + "pk": 53310, + "fields": { + "id_car_model": 1006, + "name": "90 SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53311, + "fields": { + "id_car_model": 1006, + "name": "SUV 5-doors", + "arabic_name": "إس يو في 5-أبواب" + } +}, +{ + "model": "inventory.carserie", + "pk": 53312, + "fields": { + "id_car_model": 1011, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53313, + "fields": { + "id_car_model": 1437, + "name": "Sports Tourer wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53314, + "fields": { + "id_car_model": 1437, + "name": "Grand Sport liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53315, + "fields": { + "id_car_model": 1437, + "name": "Country Tourer wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53316, + "fields": { + "id_car_model": 1604, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53317, + "fields": { + "id_car_model": 1908, + "name": "Variant wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53321, + "fields": { + "id_car_model": 2236, + "name": "Kasten van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53323, + "fields": { + "id_car_model": 2236, + "name": "Kombi minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53324, + "fields": { + "id_car_model": 2236, + "name": "Rockton minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53326, + "fields": { + "id_car_model": 19775, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53328, + "fields": { + "id_car_model": 20370, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53329, + "fields": { + "id_car_model": 20395, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53330, + "fields": { + "id_car_model": 20395, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53331, + "fields": { + "id_car_model": 20749, + "name": "3962 minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53332, + "fields": { + "id_car_model": 22348, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53333, + "fields": { + "id_car_model": 22349, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53334, + "fields": { + "id_car_model": 22462, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53335, + "fields": { + "id_car_model": 22463, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53336, + "fields": { + "id_car_model": 22459, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53337, + "fields": { + "id_car_model": 22464, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53340, + "fields": { + "id_car_model": 39, + "name": "Spider cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53341, + "fields": { + "id_car_model": 39, + "name": "Sprint Speciale Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53342, + "fields": { + "id_car_model": 39, + "name": "Sprint Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53343, + "fields": { + "id_car_model": 88, + "name": "Sportback liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53344, + "fields": { + "id_car_model": 133, + "name": "GT3 R Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53345, + "fields": { + "id_car_model": 176, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53346, + "fields": { + "id_car_model": 629, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53347, + "fields": { + "id_car_model": 875, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53348, + "fields": { + "id_car_model": 918, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53349, + "fields": { + "id_car_model": 931, + "name": "Unlimited SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53350, + "fields": { + "id_car_model": 931, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53351, + "fields": { + "id_car_model": 938, + "name": "Grand minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53353, + "fields": { + "id_car_model": 960, + "name": "Prime crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53354, + "fields": { + "id_car_model": 1024, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53355, + "fields": { + "id_car_model": 1026, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53356, + "fields": { + "id_car_model": 1106, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53357, + "fields": { + "id_car_model": 1123, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53358, + "fields": { + "id_car_model": 1258, + "name": "Cooper D crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53359, + "fields": { + "id_car_model": 1391, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53360, + "fields": { + "id_car_model": 1392, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53361, + "fields": { + "id_car_model": 1392, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53362, + "fields": { + "id_car_model": 1433, + "name": "OPC hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53363, + "fields": { + "id_car_model": 1483, + "name": "SW wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53364, + "fields": { + "id_car_model": 1483, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53365, + "fields": { + "id_car_model": 1544, + "name": "GTS roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53366, + "fields": { + "id_car_model": 1547, + "name": "GTS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53367, + "fields": { + "id_car_model": 1607, + "name": "GT hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53370, + "fields": { + "id_car_model": 2143, + "name": "Single Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53371, + "fields": { + "id_car_model": 2217, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53372, + "fields": { + "id_car_model": 2217, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53373, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53374, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53375, + "fields": { + "id_car_model": 2260, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53376, + "fields": { + "id_car_model": 2289, + "name": "Coupe crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53377, + "fields": { + "id_car_model": 2277, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53378, + "fields": { + "id_car_model": 2315, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53379, + "fields": { + "id_car_model": 19074, + "name": "Rocks hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53380, + "fields": { + "id_car_model": 19211, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53381, + "fields": { + "id_car_model": 19302, + "name": "Coupa crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53382, + "fields": { + "id_car_model": 19689, + "name": "Volante cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53383, + "fields": { + "id_car_model": 19776, + "name": "Gran Coupe liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53384, + "fields": { + "id_car_model": 19776, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53385, + "fields": { + "id_car_model": 19776, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53387, + "fields": { + "id_car_model": 20271, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53394, + "fields": { + "id_car_model": 1812, + "name": "E wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53396, + "fields": { + "id_car_model": 22467, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53398, + "fields": { + "id_car_model": 151, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53399, + "fields": { + "id_car_model": 151, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53400, + "fields": { + "id_car_model": 329, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53401, + "fields": { + "id_car_model": 329, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53402, + "fields": { + "id_car_model": 329, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53403, + "fields": { + "id_car_model": 329, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53404, + "fields": { + "id_car_model": 869, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53405, + "fields": { + "id_car_model": 872, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53406, + "fields": { + "id_car_model": 1127, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53407, + "fields": { + "id_car_model": 1293, + "name": "IO Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53408, + "fields": { + "id_car_model": 1293, + "name": "Fortis Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53409, + "fields": { + "id_car_model": 1293, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53410, + "fields": { + "id_car_model": 1293, + "name": "Sportback hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53411, + "fields": { + "id_car_model": 1299, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53412, + "fields": { + "id_car_model": 1697, + "name": "Roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53413, + "fields": { + "id_car_model": 1697, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53414, + "fields": { + "id_car_model": 1697, + "name": "Preliator Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53415, + "fields": { + "id_car_model": 1704, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53416, + "fields": { + "id_car_model": 1704, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53417, + "fields": { + "id_car_model": 1704, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53418, + "fields": { + "id_car_model": 1999, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53419, + "fields": { + "id_car_model": 2000, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53420, + "fields": { + "id_car_model": 2183, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53421, + "fields": { + "id_car_model": 2185, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53422, + "fields": { + "id_car_model": 2200, + "name": "Double Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53423, + "fields": { + "id_car_model": 2200, + "name": "CrewMax pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53424, + "fields": { + "id_car_model": 2200, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53425, + "fields": { + "id_car_model": 2200, + "name": "CrewMax pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53426, + "fields": { + "id_car_model": 2200, + "name": "Double Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53427, + "fields": { + "id_car_model": 19767, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53428, + "fields": { + "id_car_model": 20347, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53429, + "fields": { + "id_car_model": 20397, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53430, + "fields": { + "id_car_model": 20397, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53431, + "fields": { + "id_car_model": 20397, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53432, + "fields": { + "id_car_model": 20994, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53433, + "fields": { + "id_car_model": 20951, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53434, + "fields": { + "id_car_model": 22342, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53435, + "fields": { + "id_car_model": 22473, + "name": "IX minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53436, + "fields": { + "id_car_model": 22473, + "name": "IM minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53437, + "fields": { + "id_car_model": 22345, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53438, + "fields": { + "id_car_model": 22460, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53439, + "fields": { + "id_car_model": 22472, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53440, + "fields": { + "id_car_model": 22472, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53441, + "fields": { + "id_car_model": 22474, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53442, + "fields": { + "id_car_model": 22444, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53443, + "fields": { + "id_car_model": 154, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53444, + "fields": { + "id_car_model": 354, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53445, + "fields": { + "id_car_model": 439, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53446, + "fields": { + "id_car_model": 439, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53447, + "fields": { + "id_car_model": 439, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53448, + "fields": { + "id_car_model": 439, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53449, + "fields": { + "id_car_model": 439, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53450, + "fields": { + "id_car_model": 630, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53451, + "fields": { + "id_car_model": 634, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53452, + "fields": { + "id_car_model": 658, + "name": "Super Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53453, + "fields": { + "id_car_model": 658, + "name": "SuperCrew pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53454, + "fields": { + "id_car_model": 658, + "name": "Double Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53455, + "fields": { + "id_car_model": 658, + "name": "Single Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53456, + "fields": { + "id_car_model": 658, + "name": "Super Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53457, + "fields": { + "id_car_model": 777, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53458, + "fields": { + "id_car_model": 923, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53459, + "fields": { + "id_car_model": 949, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53460, + "fields": { + "id_car_model": 949, + "name": "Sportswagon wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53462, + "fields": { + "id_car_model": 1127, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53463, + "fields": { + "id_car_model": 1255, + "name": "Cooper S cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53464, + "fields": { + "id_car_model": 1424, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53465, + "fields": { + "id_car_model": 1441, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53466, + "fields": { + "id_car_model": 1453, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53467, + "fields": { + "id_car_model": 1594, + "name": "Z.E. minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53468, + "fields": { + "id_car_model": 1636, + "name": "Sport Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53469, + "fields": { + "id_car_model": 1636, + "name": "SportCombi wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53470, + "fields": { + "id_car_model": 1636, + "name": "Convertible cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53471, + "fields": { + "id_car_model": 1636, + "name": "X crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53472, + "fields": { + "id_car_model": 1682, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53473, + "fields": { + "id_car_model": 1682, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53474, + "fields": { + "id_car_model": 1683, + "name": "Combi wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53475, + "fields": { + "id_car_model": 1745, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53476, + "fields": { + "id_car_model": 1745, + "name": "Crossover 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53477, + "fields": { + "id_car_model": 1794, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53478, + "fields": { + "id_car_model": 1810, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53479, + "fields": { + "id_car_model": 1839, + "name": "Minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53480, + "fields": { + "id_car_model": 1839, + "name": "Regius minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53481, + "fields": { + "id_car_model": 1839, + "name": "Minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53482, + "fields": { + "id_car_model": 1912, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53484, + "fields": { + "id_car_model": 1961, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53485, + "fields": { + "id_car_model": 2144, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53486, + "fields": { + "id_car_model": 19774, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53487, + "fields": { + "id_car_model": 20342, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53488, + "fields": { + "id_car_model": 20350, + "name": "AMG cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53489, + "fields": { + "id_car_model": 20350, + "name": "AMG Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53490, + "fields": { + "id_car_model": 20355, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53491, + "fields": { + "id_car_model": 20395, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53492, + "fields": { + "id_car_model": 20395, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53493, + "fields": { + "id_car_model": 20726, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53494, + "fields": { + "id_car_model": 20727, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53495, + "fields": { + "id_car_model": 20964, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53496, + "fields": { + "id_car_model": 20964, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53497, + "fields": { + "id_car_model": 22413, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53498, + "fields": { + "id_car_model": 22411, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53499, + "fields": { + "id_car_model": 22458, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53500, + "fields": { + "id_car_model": 87, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53501, + "fields": { + "id_car_model": 348, + "name": "Multispace minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53502, + "fields": { + "id_car_model": 845, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53503, + "fields": { + "id_car_model": 939, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53504, + "fields": { + "id_car_model": 939, + "name": "SW wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53505, + "fields": { + "id_car_model": 949, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53506, + "fields": { + "id_car_model": 1010, + "name": "SV Coupe SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53507, + "fields": { + "id_car_model": 1381, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53508, + "fields": { + "id_car_model": 1494, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53509, + "fields": { + "id_car_model": 1589, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53510, + "fields": { + "id_car_model": 1707, + "name": "Sports pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53511, + "fields": { + "id_car_model": 1717, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53512, + "fields": { + "id_car_model": 1717, + "name": "WRX STI Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53514, + "fields": { + "id_car_model": 1717, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53515, + "fields": { + "id_car_model": 1717, + "name": "WRX Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53516, + "fields": { + "id_car_model": 1723, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53517, + "fields": { + "id_car_model": 1959, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53518, + "fields": { + "id_car_model": 2280, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53519, + "fields": { + "id_car_model": 2280, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53520, + "fields": { + "id_car_model": 20349, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53521, + "fields": { + "id_car_model": 20355, + "name": "AMG SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53522, + "fields": { + "id_car_model": 22476, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53523, + "fields": { + "id_car_model": 22477, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53524, + "fields": { + "id_car_model": 22478, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53525, + "fields": { + "id_car_model": 87, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53526, + "fields": { + "id_car_model": 102, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53528, + "fields": { + "id_car_model": 637, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53529, + "fields": { + "id_car_model": 637, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53530, + "fields": { + "id_car_model": 637, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53531, + "fields": { + "id_car_model": 753, + "name": "US-spec Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53532, + "fields": { + "id_car_model": 753, + "name": "CN-spec Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53534, + "fields": { + "id_car_model": 753, + "name": "US-spec Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53535, + "fields": { + "id_car_model": 753, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53536, + "fields": { + "id_car_model": 753, + "name": "US-spec Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53537, + "fields": { + "id_car_model": 753, + "name": "CN-spec Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53538, + "fields": { + "id_car_model": 855, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53539, + "fields": { + "id_car_model": 1300, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53540, + "fields": { + "id_car_model": 1683, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53541, + "fields": { + "id_car_model": 1716, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53542, + "fields": { + "id_car_model": 1928, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53543, + "fields": { + "id_car_model": 2177, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53544, + "fields": { + "id_car_model": 20091, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53545, + "fields": { + "id_car_model": 20347, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53546, + "fields": { + "id_car_model": 20349, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53547, + "fields": { + "id_car_model": 20349, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53548, + "fields": { + "id_car_model": 22479, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53549, + "fields": { + "id_car_model": 267, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53550, + "fields": { + "id_car_model": 506, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "بيك اب كابينة عادية بابين" + } +}, +{ + "model": "inventory.carserie", + "pk": 53552, + "fields": { + "id_car_model": 1020, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53553, + "fields": { + "id_car_model": 1599, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53554, + "fields": { + "id_car_model": 1599, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53555, + "fields": { + "id_car_model": 1599, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53556, + "fields": { + "id_car_model": 1599, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53557, + "fields": { + "id_car_model": 1683, + "name": "Combi wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53558, + "fields": { + "id_car_model": 1717, + "name": "WRX wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53560, + "fields": { + "id_car_model": 1717, + "name": "WRX STI Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53561, + "fields": { + "id_car_model": 1717, + "name": "WRX STI Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53562, + "fields": { + "id_car_model": 1717, + "name": "WRX wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53563, + "fields": { + "id_car_model": 1717, + "name": "WRX Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53564, + "fields": { + "id_car_model": 19209, + "name": "Cross Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53565, + "fields": { + "id_car_model": 19391, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53566, + "fields": { + "id_car_model": 155, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53567, + "fields": { + "id_car_model": 506, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53568, + "fields": { + "id_car_model": 506, + "name": "Quad Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53569, + "fields": { + "id_car_model": 506, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53570, + "fields": { + "id_car_model": 596, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53571, + "fields": { + "id_car_model": 596, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53572, + "fields": { + "id_car_model": 622, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53573, + "fields": { + "id_car_model": 1156, + "name": "Van wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53574, + "fields": { + "id_car_model": 1156, + "name": "Van wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53575, + "fields": { + "id_car_model": 1438, + "name": "Caravan wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53576, + "fields": { + "id_car_model": 1438, + "name": "LS Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53577, + "fields": { + "id_car_model": 1599, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53578, + "fields": { + "id_car_model": 1717, + "name": "WRX STI hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53579, + "fields": { + "id_car_model": 1717, + "name": "WRX Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53580, + "fields": { + "id_car_model": 1717, + "name": "WRX STI Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53582, + "fields": { + "id_car_model": 1717, + "name": "WRX STI Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53583, + "fields": { + "id_car_model": 1717, + "name": "WRX STI Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53584, + "fields": { + "id_car_model": 1717, + "name": "WRX Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53586, + "fields": { + "id_car_model": 1717, + "name": "WRX STI Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53587, + "fields": { + "id_car_model": 19280, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53588, + "fields": { + "id_car_model": 19280, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53589, + "fields": { + "id_car_model": 19280, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53590, + "fields": { + "id_car_model": 19780, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53591, + "fields": { + "id_car_model": 20349, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53592, + "fields": { + "id_car_model": 20349, + "name": "Cabriolet 2-doors", + "arabic_name": "سطح قابل للطي - بابين" + } +}, +{ + "model": "inventory.carserie", + "pk": 53593, + "fields": { + "id_car_model": 20349, + "name": "AMG Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53594, + "fields": { + "id_car_model": 22486, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53595, + "fields": { + "id_car_model": 22488, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53596, + "fields": { + "id_car_model": 22485, + "name": "Space minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53597, + "fields": { + "id_car_model": 22485, + "name": "Wagon minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53598, + "fields": { + "id_car_model": 22485, + "name": "Custom minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53599, + "fields": { + "id_car_model": 22485, + "name": "Custom minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53600, + "fields": { + "id_car_model": 22485, + "name": "Wagon minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53601, + "fields": { + "id_car_model": 22485, + "name": "Space minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53602, + "fields": { + "id_car_model": 22485, + "name": "Wagon minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53603, + "fields": { + "id_car_model": 22485, + "name": "Wagon minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53604, + "fields": { + "id_car_model": 22485, + "name": "Sport minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53605, + "fields": { + "id_car_model": 22485, + "name": "Wagon minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53606, + "fields": { + "id_car_model": 22485, + "name": "Active minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53607, + "fields": { + "id_car_model": 22485, + "name": "Classic minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53608, + "fields": { + "id_car_model": 22485, + "name": "Sport minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53609, + "fields": { + "id_car_model": 22490, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53610, + "fields": { + "id_car_model": 22490, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53612, + "fields": { + "id_car_model": 64, + "name": "Superleggera Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53613, + "fields": { + "id_car_model": 97, + "name": "Spyder roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53614, + "fields": { + "id_car_model": 386, + "name": "MCV wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53615, + "fields": { + "id_car_model": 386, + "name": "MCV wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53616, + "fields": { + "id_car_model": 386, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53617, + "fields": { + "id_car_model": 388, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53618, + "fields": { + "id_car_model": 440, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53619, + "fields": { + "id_car_model": 1358, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53620, + "fields": { + "id_car_model": 1358, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53621, + "fields": { + "id_car_model": 1536, + "name": "T Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53622, + "fields": { + "id_car_model": 1598, + "name": "Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53623, + "fields": { + "id_car_model": 1603, + "name": "Stepway hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53624, + "fields": { + "id_car_model": 1802, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53625, + "fields": { + "id_car_model": 1953, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53626, + "fields": { + "id_car_model": 2015, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53627, + "fields": { + "id_car_model": 2269, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53628, + "fields": { + "id_car_model": 2257, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53629, + "fields": { + "id_car_model": 19209, + "name": "Sport Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53630, + "fields": { + "id_car_model": 22343, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53632, + "fields": { + "id_car_model": 114, + "name": "Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53633, + "fields": { + "id_car_model": 114, + "name": "Roadster 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53634, + "fields": { + "id_car_model": 114, + "name": "S Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53635, + "fields": { + "id_car_model": 386, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53636, + "fields": { + "id_car_model": 388, + "name": "Stepway hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53637, + "fields": { + "id_car_model": 388, + "name": "Stepway hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53638, + "fields": { + "id_car_model": 445, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53639, + "fields": { + "id_car_model": 445, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53640, + "fields": { + "id_car_model": 963, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53642, + "fields": { + "id_car_model": 1302, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53644, + "fields": { + "id_car_model": 1548, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53645, + "fields": { + "id_car_model": 1929, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53646, + "fields": { + "id_car_model": 1929, + "name": "Cross minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53647, + "fields": { + "id_car_model": 2166, + "name": "Spade minivan 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53648, + "fields": { + "id_car_model": 2209, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53649, + "fields": { + "id_car_model": 2209, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53650, + "fields": { + "id_car_model": 2224, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53651, + "fields": { + "id_car_model": 2224, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53653, + "fields": { + "id_car_model": 2317, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53654, + "fields": { + "id_car_model": 2317, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53655, + "fields": { + "id_car_model": 2317, + "name": "Gran Coupe Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53656, + "fields": { + "id_car_model": 19693, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53657, + "fields": { + "id_car_model": 19772, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53658, + "fields": { + "id_car_model": 19777, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53675, + "fields": { + "id_car_model": 80, + "name": "Sportback hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53676, + "fields": { + "id_car_model": 159, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53677, + "fields": { + "id_car_model": 267, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53678, + "fields": { + "id_car_model": 386, + "name": "MCV Stepway wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53679, + "fields": { + "id_car_model": 594, + "name": "Weekend wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53681, + "fields": { + "id_car_model": 624, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53682, + "fields": { + "id_car_model": 824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53683, + "fields": { + "id_car_model": 939, + "name": "GT hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53684, + "fields": { + "id_car_model": 939, + "name": "ProCeed wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53685, + "fields": { + "id_car_model": 940, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53686, + "fields": { + "id_car_model": 20269, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53687, + "fields": { + "id_car_model": 1028, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53688, + "fields": { + "id_car_model": 1747, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53689, + "fields": { + "id_car_model": 1908, + "name": "Alltrack wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53690, + "fields": { + "id_car_model": 1908, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53691, + "fields": { + "id_car_model": 1908, + "name": "R hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53692, + "fields": { + "id_car_model": 1908, + "name": "R hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53693, + "fields": { + "id_car_model": 1908, + "name": "GTI hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53694, + "fields": { + "id_car_model": 1908, + "name": "GTI hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53695, + "fields": { + "id_car_model": 2015, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53696, + "fields": { + "id_car_model": 2015, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53697, + "fields": { + "id_car_model": 2015, + "name": "Cross wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53698, + "fields": { + "id_car_model": 2015, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53699, + "fields": { + "id_car_model": 2251, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53700, + "fields": { + "id_car_model": 18965, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53701, + "fields": { + "id_car_model": 19772, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53702, + "fields": { + "id_car_model": 20099, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53703, + "fields": { + "id_car_model": 20349, + "name": "AMG wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53704, + "fields": { + "id_car_model": 20349, + "name": "AMG cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53705, + "fields": { + "id_car_model": 22512, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53706, + "fields": { + "id_car_model": 22511, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53707, + "fields": { + "id_car_model": 22518, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53708, + "fields": { + "id_car_model": 22518, + "name": "Limousine Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53709, + "fields": { + "id_car_model": 22517, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53710, + "fields": { + "id_car_model": 22513, + "name": "N-WGN hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53711, + "fields": { + "id_car_model": 22513, + "name": "N-Van minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53712, + "fields": { + "id_car_model": 22487, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53713, + "fields": { + "id_car_model": 22515, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53714, + "fields": { + "id_car_model": 22514, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53715, + "fields": { + "id_car_model": 22516, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53728, + "fields": { + "id_car_model": 19071, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53729, + "fields": { + "id_car_model": 2241, + "name": "Can-Am Spider (Limited Edition)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53731, + "fields": { + "id_car_model": 22544, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53734, + "fields": { + "id_car_model": 108, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53735, + "fields": { + "id_car_model": 108, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53736, + "fields": { + "id_car_model": 108, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53737, + "fields": { + "id_car_model": 20342, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53738, + "fields": { + "id_car_model": 22552, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53739, + "fields": { + "id_car_model": 22550, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53740, + "fields": { + "id_car_model": 22551, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53741, + "fields": { + "id_car_model": 640, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53742, + "fields": { + "id_car_model": 83, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53743, + "fields": { + "id_car_model": 83, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53745, + "fields": { + "id_car_model": 680, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53746, + "fields": { + "id_car_model": 834, + "name": "Fastback liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53747, + "fields": { + "id_car_model": 1293, + "name": "Cargo wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53748, + "fields": { + "id_car_model": 1598, + "name": "Stepway Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53750, + "fields": { + "id_car_model": 1908, + "name": "Sportsvan minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53752, + "fields": { + "id_car_model": 2012, + "name": "2328 pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53754, + "fields": { + "id_car_model": 2079, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53755, + "fields": { + "id_car_model": 2082, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53756, + "fields": { + "id_car_model": 2314, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53757, + "fields": { + "id_car_model": 19085, + "name": "Cabrio cabriolet", + "arabic_name": "سطح قابل للطي" + } +}, +{ + "model": "inventory.carserie", + "pk": 53758, + "fields": { + "id_car_model": 19085, + "name": "Crossback hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53759, + "fields": { + "id_car_model": 19775, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53760, + "fields": { + "id_car_model": 20342, + "name": "AMG hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53761, + "fields": { + "id_car_model": 20945, + "name": "RS crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53762, + "fields": { + "id_car_model": 99, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53763, + "fields": { + "id_car_model": 22558, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53764, + "fields": { + "id_car_model": 22560, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53765, + "fields": { + "id_car_model": 97, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53766, + "fields": { + "id_car_model": 97, + "name": "Spyder roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53767, + "fields": { + "id_car_model": 133, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53768, + "fields": { + "id_car_model": 267, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53769, + "fields": { + "id_car_model": 267, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53770, + "fields": { + "id_car_model": 506, + "name": "Club Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53771, + "fields": { + "id_car_model": 506, + "name": "Pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53772, + "fields": { + "id_car_model": 777, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53773, + "fields": { + "id_car_model": 793, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53774, + "fields": { + "id_car_model": 961, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53775, + "fields": { + "id_car_model": 973, + "name": "SVJ Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53776, + "fields": { + "id_car_model": 986, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53777, + "fields": { + "id_car_model": 986, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53778, + "fields": { + "id_car_model": 1009, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53779, + "fields": { + "id_car_model": 1426, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53780, + "fields": { + "id_car_model": 417, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53781, + "fields": { + "id_car_model": 777, + "name": "Crossover 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53782, + "fields": { + "id_car_model": 1124, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53783, + "fields": { + "id_car_model": 1124, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53784, + "fields": { + "id_car_model": 1156, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53785, + "fields": { + "id_car_model": 1290, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53786, + "fields": { + "id_car_model": 1395, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53787, + "fields": { + "id_car_model": 1396, + "name": "King Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53788, + "fields": { + "id_car_model": 1396, + "name": "Single Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53789, + "fields": { + "id_car_model": 1396, + "name": "Crew Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53790, + "fields": { + "id_car_model": 1396, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53791, + "fields": { + "id_car_model": 1536, + "name": "Carrera Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53793, + "fields": { + "id_car_model": 1761, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53794, + "fields": { + "id_car_model": 1818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53795, + "fields": { + "id_car_model": 1818, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53796, + "fields": { + "id_car_model": 1818, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53797, + "fields": { + "id_car_model": 1908, + "name": "R wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53800, + "fields": { + "id_car_model": 19210, + "name": "Cross hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53801, + "fields": { + "id_car_model": 19392, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53802, + "fields": { + "id_car_model": 19780, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53803, + "fields": { + "id_car_model": 20248, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53804, + "fields": { + "id_car_model": 20343, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53805, + "fields": { + "id_car_model": 20364, + "name": "Maybach cabriolet 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53806, + "fields": { + "id_car_model": 20977, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53807, + "fields": { + "id_car_model": 11, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53808, + "fields": { + "id_car_model": 20995, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53810, + "fields": { + "id_car_model": 22577, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53811, + "fields": { + "id_car_model": 1917, + "name": "wagon (Alltrack)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53812, + "fields": { + "id_car_model": 22579, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53813, + "fields": { + "id_car_model": 22580, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53814, + "fields": { + "id_car_model": 22580, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53815, + "fields": { + "id_car_model": 22581, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53816, + "fields": { + "id_car_model": 22582, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53817, + "fields": { + "id_car_model": 22583, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53818, + "fields": { + "id_car_model": 22584, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53819, + "fields": { + "id_car_model": 22587, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53820, + "fields": { + "id_car_model": 22591, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53822, + "fields": { + "id_car_model": 23415, + "name": "D20", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53823, + "fields": { + "id_car_model": 23418, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53824, + "fields": { + "id_car_model": 506, + "name": "Regular Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53825, + "fields": { + "id_car_model": 506, + "name": "Club Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53826, + "fields": { + "id_car_model": 1396, + "name": "King Cab pickup 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53827, + "fields": { + "id_car_model": 1396, + "name": "Crew Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53828, + "fields": { + "id_car_model": 1761, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53829, + "fields": { + "id_car_model": 1761, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53830, + "fields": { + "id_car_model": 2078, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53831, + "fields": { + "id_car_model": 22562, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53832, + "fields": { + "id_car_model": 22563, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53833, + "fields": { + "id_car_model": 22563, + "name": "Minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53834, + "fields": { + "id_car_model": 22564, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53835, + "fields": { + "id_car_model": 22566, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53836, + "fields": { + "id_car_model": 22568, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53837, + "fields": { + "id_car_model": 22570, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53838, + "fields": { + "id_car_model": 22571, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53839, + "fields": { + "id_car_model": 22572, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53840, + "fields": { + "id_car_model": 22593, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53841, + "fields": { + "id_car_model": 22594, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53842, + "fields": { + "id_car_model": 22567, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53844, + "fields": { + "id_car_model": 344, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53845, + "fields": { + "id_car_model": 344, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53846, + "fields": { + "id_car_model": 344, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53847, + "fields": { + "id_car_model": 344, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53848, + "fields": { + "id_car_model": 78, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53849, + "fields": { + "id_car_model": 1818, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53850, + "fields": { + "id_car_model": 1818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53851, + "fields": { + "id_car_model": 22600, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53852, + "fields": { + "id_car_model": 595, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53855, + "fields": { + "id_car_model": 1798, + "name": "Hatchback", + "arabic_name": "هاتشباك" + } +}, +{ + "model": "inventory.carserie", + "pk": 53856, + "fields": { + "id_car_model": 1674, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53857, + "fields": { + "id_car_model": 1692, + "name": "speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53858, + "fields": { + "id_car_model": 1692, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53859, + "fields": { + "id_car_model": 597, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53860, + "fields": { + "id_car_model": 22601, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53861, + "fields": { + "id_car_model": 22601, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53862, + "fields": { + "id_car_model": 492, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53863, + "fields": { + "id_car_model": 492, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53864, + "fields": { + "id_car_model": 492, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53865, + "fields": { + "id_car_model": 492, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53866, + "fields": { + "id_car_model": 492, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53867, + "fields": { + "id_car_model": 492, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53868, + "fields": { + "id_car_model": 492, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53869, + "fields": { + "id_car_model": 492, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53870, + "fields": { + "id_car_model": 630, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53872, + "fields": { + "id_car_model": 682, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53873, + "fields": { + "id_car_model": 794, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53874, + "fields": { + "id_car_model": 1266, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53875, + "fields": { + "id_car_model": 1270, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53876, + "fields": { + "id_car_model": 1274, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53877, + "fields": { + "id_car_model": 1274, + "name": "Cargo minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53878, + "fields": { + "id_car_model": 1274, + "name": "Van minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53879, + "fields": { + "id_car_model": 1536, + "name": "Carrera cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53880, + "fields": { + "id_car_model": 1719, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53881, + "fields": { + "id_car_model": 1821, + "name": "Van wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53882, + "fields": { + "id_car_model": 1821, + "name": "SF liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53883, + "fields": { + "id_car_model": 1821, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53884, + "fields": { + "id_car_model": 1821, + "name": "Hardtop Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53886, + "fields": { + "id_car_model": 2196, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53887, + "fields": { + "id_car_model": 2198, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53888, + "fields": { + "id_car_model": 2198, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53889, + "fields": { + "id_car_model": 2198, + "name": "Wagon wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53890, + "fields": { + "id_car_model": 2240, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53891, + "fields": { + "id_car_model": 19779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53892, + "fields": { + "id_car_model": 20186, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53893, + "fields": { + "id_car_model": 20186, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53894, + "fields": { + "id_car_model": 20344, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53895, + "fields": { + "id_car_model": 22612, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53896, + "fields": { + "id_car_model": 22601, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53897, + "fields": { + "id_car_model": 22601, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53899, + "fields": { + "id_car_model": 22601, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53900, + "fields": { + "id_car_model": 22618, + "name": "hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53901, + "fields": { + "id_car_model": 20538, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53902, + "fields": { + "id_car_model": 20538, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53903, + "fields": { + "id_car_model": 2009, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53904, + "fields": { + "id_car_model": 20746, + "name": "Kombi", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53905, + "fields": { + "id_car_model": 22621, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53906, + "fields": { + "id_car_model": 22622, + "name": "wagon (5 doors)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53907, + "fields": { + "id_car_model": 22622, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53908, + "fields": { + "id_car_model": 22622, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53909, + "fields": { + "id_car_model": 22623, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53910, + "fields": { + "id_car_model": 22623, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53911, + "fields": { + "id_car_model": 22623, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53912, + "fields": { + "id_car_model": 22623, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53913, + "fields": { + "id_car_model": 22624, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53914, + "fields": { + "id_car_model": 22624, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53915, + "fields": { + "id_car_model": 22624, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53916, + "fields": { + "id_car_model": 22625, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53917, + "fields": { + "id_car_model": 22626, + "name": "crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53918, + "fields": { + "id_car_model": 22626, + "name": "crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53919, + "fields": { + "id_car_model": 22627, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53920, + "fields": { + "id_car_model": 22628, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53921, + "fields": { + "id_car_model": 22629, + "name": "crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53922, + "fields": { + "id_car_model": 22630, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53923, + "fields": { + "id_car_model": 1878, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53924, + "fields": { + "id_car_model": 1878, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53925, + "fields": { + "id_car_model": 22631, + "name": "hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53926, + "fields": { + "id_car_model": 22631, + "name": "wagon (5 doors)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53927, + "fields": { + "id_car_model": 22631, + "name": "wagon (5 doors)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53928, + "fields": { + "id_car_model": 22631, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53929, + "fields": { + "id_car_model": 22631, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53930, + "fields": { + "id_car_model": 22631, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53931, + "fields": { + "id_car_model": 22631, + "name": "wagon (5 doors)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53932, + "fields": { + "id_car_model": 22631, + "name": "wagon (5 doors)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53933, + "fields": { + "id_car_model": 22631, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53934, + "fields": { + "id_car_model": 22631, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53935, + "fields": { + "id_car_model": 22631, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53936, + "fields": { + "id_car_model": 22634, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53937, + "fields": { + "id_car_model": 22634, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53938, + "fields": { + "id_car_model": 22636, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53939, + "fields": { + "id_car_model": 22636, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53940, + "fields": { + "id_car_model": 22636, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53941, + "fields": { + "id_car_model": 22636, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53942, + "fields": { + "id_car_model": 1881, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53943, + "fields": { + "id_car_model": 1881, + "name": "wagon (5 doors)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53944, + "fields": { + "id_car_model": 22645, + "name": "hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53946, + "fields": { + "id_car_model": 1603, + "name": "Life", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53947, + "fields": { + "id_car_model": 1603, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53948, + "fields": { + "id_car_model": 1603, + "name": "Life City", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53949, + "fields": { + "id_car_model": 1603, + "name": "Stepway", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53950, + "fields": { + "id_car_model": 22639, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53951, + "fields": { + "id_car_model": 1892, + "name": "MPV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53952, + "fields": { + "id_car_model": 1892, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53953, + "fields": { + "id_car_model": 1892, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53954, + "fields": { + "id_car_model": 1892, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53955, + "fields": { + "id_car_model": 1892, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53956, + "fields": { + "id_car_model": 409, + "name": "Hatchback 3/5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53957, + "fields": { + "id_car_model": 22574, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53960, + "fields": { + "id_car_model": 247, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53961, + "fields": { + "id_car_model": 1707, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53962, + "fields": { + "id_car_model": 849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53964, + "fields": { + "id_car_model": 973, + "name": "SVJ roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53965, + "fields": { + "id_car_model": 1588, + "name": "RS hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53967, + "fields": { + "id_car_model": 1704, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53969, + "fields": { + "id_car_model": 1915, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53970, + "fields": { + "id_car_model": 1917, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53971, + "fields": { + "id_car_model": 1917, + "name": "Alltrack wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53974, + "fields": { + "id_car_model": 2137, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53975, + "fields": { + "id_car_model": 2149, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53976, + "fields": { + "id_car_model": 2149, + "name": "Noah minivan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53977, + "fields": { + "id_car_model": 2190, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53979, + "fields": { + "id_car_model": 18965, + "name": "AMG crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53980, + "fields": { + "id_car_model": 19719, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53981, + "fields": { + "id_car_model": 20344, + "name": "wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53982, + "fields": { + "id_car_model": 20370, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53983, + "fields": { + "id_car_model": 22445, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53984, + "fields": { + "id_car_model": 22592, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53985, + "fields": { + "id_car_model": 384, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53986, + "fields": { + "id_car_model": 634, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53987, + "fields": { + "id_car_model": 22602, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53989, + "fields": { + "id_car_model": 20269, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53990, + "fields": { + "id_car_model": 110, + "name": "Avant wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53991, + "fields": { + "id_car_model": 110, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53992, + "fields": { + "id_car_model": 111, + "name": "Sportback liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53993, + "fields": { + "id_car_model": 1270, + "name": "Grandis minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53994, + "fields": { + "id_car_model": 1494, + "name": "SW wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53995, + "fields": { + "id_car_model": 1546, + "name": "Coupe crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53996, + "fields": { + "id_car_model": 1964, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53997, + "fields": { + "id_car_model": 19719, + "name": "Coupe crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53998, + "fields": { + "id_car_model": 20344, + "name": "AMG Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 53999, + "fields": { + "id_car_model": 20344, + "name": "wagon 1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54000, + "fields": { + "id_car_model": 20343, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54001, + "fields": { + "id_car_model": 19719, + "name": "Crossover 1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54002, + "fields": { + "id_car_model": 18963, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54003, + "fields": { + "id_car_model": 19077, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54005, + "fields": { + "id_car_model": 2139, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54006, + "fields": { + "id_car_model": 22620, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54007, + "fields": { + "id_car_model": 22620, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54008, + "fields": { + "id_car_model": 22620, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54009, + "fields": { + "id_car_model": 22620, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54010, + "fields": { + "id_car_model": 84, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54011, + "fields": { + "id_car_model": 84, + "name": "Avant wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54012, + "fields": { + "id_car_model": 84, + "name": "Allroad quattro wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54013, + "fields": { + "id_car_model": 108, + "name": "Avant wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54014, + "fields": { + "id_car_model": 108, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54015, + "fields": { + "id_car_model": 108, + "name": "Avant wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54016, + "fields": { + "id_car_model": 109, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54017, + "fields": { + "id_car_model": 298, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54019, + "fields": { + "id_car_model": 637, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54020, + "fields": { + "id_car_model": 652, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54021, + "fields": { + "id_car_model": 824, + "name": "GT hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54022, + "fields": { + "id_car_model": 891, + "name": "Double Cab pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54023, + "fields": { + "id_car_model": 1256, + "name": "Cooper S wagon 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54024, + "fields": { + "id_car_model": 1274, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54025, + "fields": { + "id_car_model": 1536, + "name": "Speedster cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54026, + "fields": { + "id_car_model": 1723, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54027, + "fields": { + "id_car_model": 1821, + "name": "Van wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54028, + "fields": { + "id_car_model": 1821, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54029, + "fields": { + "id_car_model": 1821, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54031, + "fields": { + "id_car_model": 1821, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54032, + "fields": { + "id_car_model": 1821, + "name": "Van wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54033, + "fields": { + "id_car_model": 1840, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54034, + "fields": { + "id_car_model": 2118, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54035, + "fields": { + "id_car_model": 2149, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54036, + "fields": { + "id_car_model": 2190, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54037, + "fields": { + "id_car_model": 2198, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54038, + "fields": { + "id_car_model": 2198, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54039, + "fields": { + "id_car_model": 2198, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54040, + "fields": { + "id_car_model": 2198, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54041, + "fields": { + "id_car_model": 2227, + "name": "Double minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54042, + "fields": { + "id_car_model": 2240, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54043, + "fields": { + "id_car_model": 2244, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54044, + "fields": { + "id_car_model": 2294, + "name": "Stepway minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54045, + "fields": { + "id_car_model": 19719, + "name": "AMG crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54046, + "fields": { + "id_car_model": 19719, + "name": "AMG Coupe crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54048, + "fields": { + "id_car_model": 22603, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54049, + "fields": { + "id_car_model": 22604, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54050, + "fields": { + "id_car_model": 22649, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54051, + "fields": { + "id_car_model": 22651, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54052, + "fields": { + "id_car_model": 22660, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54053, + "fields": { + "id_car_model": 22667, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54054, + "fields": { + "id_car_model": 22668, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54055, + "fields": { + "id_car_model": 22669, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54056, + "fields": { + "id_car_model": 22671, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54057, + "fields": { + "id_car_model": 22671, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54058, + "fields": { + "id_car_model": 625, + "name": "wagon (5 doors)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54059, + "fields": { + "id_car_model": 22676, + "name": "wagon (5 doors)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54060, + "fields": { + "id_car_model": 22677, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54061, + "fields": { + "id_car_model": 84, + "name": "wagon Audi A4 Avant", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54062, + "fields": { + "id_car_model": 84, + "name": "Sedan Audi A4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54063, + "fields": { + "id_car_model": 19772, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54064, + "fields": { + "id_car_model": 152, + "name": "SUV Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54065, + "fields": { + "id_car_model": 19718, + "name": "Crossover Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54066, + "fields": { + "id_car_model": 20353, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54067, + "fields": { + "id_car_model": 22420, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54069, + "fields": { + "id_car_model": 1818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54070, + "fields": { + "id_car_model": 2308, + "name": "wagon (5 doors)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54071, + "fields": { + "id_car_model": 2308, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54072, + "fields": { + "id_car_model": 2308, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54073, + "fields": { + "id_car_model": 114, + "name": "S roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54074, + "fields": { + "id_car_model": 131, + "name": "Flying Spur Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54075, + "fields": { + "id_car_model": 152, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54076, + "fields": { + "id_car_model": 891, + "name": "Extended Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54077, + "fields": { + "id_car_model": 1595, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54078, + "fields": { + "id_car_model": 2286, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54079, + "fields": { + "id_car_model": 2287, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54083, + "fields": { + "id_car_model": 20350, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54084, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54085, + "fields": { + "id_car_model": 22535, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54086, + "fields": { + "id_car_model": 22684, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54087, + "fields": { + "id_car_model": 22539, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54088, + "fields": { + "id_car_model": 87, + "name": "Allroad quattro wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54089, + "fields": { + "id_car_model": 156, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54091, + "fields": { + "id_car_model": 1293, + "name": "Cargo wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54092, + "fields": { + "id_car_model": 1673, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54093, + "fields": { + "id_car_model": 1673, + "name": "SC Cupra hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54095, + "fields": { + "id_car_model": 1673, + "name": "ST wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54096, + "fields": { + "id_car_model": 1810, + "name": "Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54097, + "fields": { + "id_car_model": 1818, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54098, + "fields": { + "id_car_model": 1818, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54099, + "fields": { + "id_car_model": 1850, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54100, + "fields": { + "id_car_model": 1850, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54101, + "fields": { + "id_car_model": 19775, + "name": "Touring wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54102, + "fields": { + "id_car_model": 19780, + "name": "Gran Coupe Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54103, + "fields": { + "id_car_model": 262, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54105, + "fields": { + "id_car_model": 606, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54106, + "fields": { + "id_car_model": 595, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54107, + "fields": { + "id_car_model": 80, + "name": "Citycarver hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54108, + "fields": { + "id_car_model": 93, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54109, + "fields": { + "id_car_model": 95, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54110, + "fields": { + "id_car_model": 131, + "name": "R Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54111, + "fields": { + "id_car_model": 131, + "name": "T Coupe 2-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54112, + "fields": { + "id_car_model": 424, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54113, + "fields": { + "id_car_model": 428, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54114, + "fields": { + "id_car_model": 852, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54115, + "fields": { + "id_car_model": 1275, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54116, + "fields": { + "id_car_model": 1275, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54117, + "fields": { + "id_car_model": 1483, + "name": "SW wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54118, + "fields": { + "id_car_model": 1588, + "name": "Symbol Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54119, + "fields": { + "id_car_model": 1590, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54120, + "fields": { + "id_car_model": 1636, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54122, + "fields": { + "id_car_model": 1642, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54124, + "fields": { + "id_car_model": 1674, + "name": "FR hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54125, + "fields": { + "id_car_model": 1674, + "name": "Cupra hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54126, + "fields": { + "id_car_model": 19772, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54127, + "fields": { + "id_car_model": 19775, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54128, + "fields": { + "id_car_model": 19780, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54129, + "fields": { + "id_car_model": 19780, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54130, + "fields": { + "id_car_model": 20344, + "name": "AMG wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54132, + "fields": { + "id_car_model": 22493, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54133, + "fields": { + "id_car_model": 22655, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54134, + "fields": { + "id_car_model": 88, + "name": "Sportback liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54135, + "fields": { + "id_car_model": 1106, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54138, + "fields": { + "id_car_model": 1390, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54139, + "fields": { + "id_car_model": 1390, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54140, + "fields": { + "id_car_model": 1390, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54141, + "fields": { + "id_car_model": 1390, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54142, + "fields": { + "id_car_model": 1390, + "name": "Hatchback 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54143, + "fields": { + "id_car_model": 1390, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54148, + "fields": { + "id_car_model": 2154, + "name": "S\\XRS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54150, + "fields": { + "id_car_model": 20350, + "name": "AMG wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54151, + "fields": { + "id_car_model": 103, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54152, + "fields": { + "id_car_model": 104, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54153, + "fields": { + "id_car_model": 156, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54155, + "fields": { + "id_car_model": 22746, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54157, + "fields": { + "id_car_model": 2287, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54158, + "fields": { + "id_car_model": 1006, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54159, + "fields": { + "id_car_model": 22747, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54160, + "fields": { + "id_car_model": 2017, + "name": "wagon (5 doors)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54161, + "fields": { + "id_car_model": 22748, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54162, + "fields": { + "id_car_model": 95, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54163, + "fields": { + "id_car_model": 22771, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54164, + "fields": { + "id_car_model": 19969, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54165, + "fields": { + "id_car_model": 957, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54166, + "fields": { + "id_car_model": 1741, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54167, + "fields": { + "id_car_model": 22569, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54168, + "fields": { + "id_car_model": 1390, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 54170, + "fields": { + "id_car_model": 22671, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62721, + "fields": { + "id_car_model": 84, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62722, + "fields": { + "id_car_model": 84, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62726, + "fields": { + "id_car_model": 93, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62727, + "fields": { + "id_car_model": 93, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62728, + "fields": { + "id_car_model": 114, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62729, + "fields": { + "id_car_model": 114, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62730, + "fields": { + "id_car_model": 114, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62731, + "fields": { + "id_car_model": 114, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62732, + "fields": { + "id_car_model": 114, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62733, + "fields": { + "id_car_model": 114, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62734, + "fields": { + "id_car_model": 114, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62735, + "fields": { + "id_car_model": 114, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62736, + "fields": { + "id_car_model": 114, + "name": "Cabriolet Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62737, + "fields": { + "id_car_model": 114, + "name": "Cabriolet Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62755, + "fields": { + "id_car_model": 78, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62756, + "fields": { + "id_car_model": 78, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62761, + "fields": { + "id_car_model": 2109, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62762, + "fields": { + "id_car_model": 2109, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62763, + "fields": { + "id_car_model": 1356, + "name": "wagon (5 doors)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62764, + "fields": { + "id_car_model": 19775, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62765, + "fields": { + "id_car_model": 93, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62766, + "fields": { + "id_car_model": 22775, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62767, + "fields": { + "id_car_model": 98, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62769, + "fields": { + "id_car_model": 23292, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62770, + "fields": { + "id_car_model": 765, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62773, + "fields": { + "id_car_model": 1132, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62774, + "fields": { + "id_car_model": 1132, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62775, + "fields": { + "id_car_model": 1132, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62776, + "fields": { + "id_car_model": 1132, + "name": "Liftback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62777, + "fields": { + "id_car_model": 1358, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62778, + "fields": { + "id_car_model": 1573, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62779, + "fields": { + "id_car_model": 1791, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62780, + "fields": { + "id_car_model": 1810, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62781, + "fields": { + "id_car_model": 2211, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62782, + "fields": { + "id_car_model": 1291, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62783, + "fields": { + "id_car_model": 1291, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62784, + "fields": { + "id_car_model": 1291, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62785, + "fields": { + "id_car_model": 1291, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62786, + "fields": { + "id_car_model": 1291, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62787, + "fields": { + "id_car_model": 1291, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62788, + "fields": { + "id_car_model": 1291, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62789, + "fields": { + "id_car_model": 1294, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62790, + "fields": { + "id_car_model": 1291, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62791, + "fields": { + "id_car_model": 1291, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62792, + "fields": { + "id_car_model": 14, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62793, + "fields": { + "id_car_model": 1877, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62794, + "fields": { + "id_car_model": 1877, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62795, + "fields": { + "id_car_model": 1877, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62796, + "fields": { + "id_car_model": 1877, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62797, + "fields": { + "id_car_model": 1877, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62798, + "fields": { + "id_car_model": 1877, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62799, + "fields": { + "id_car_model": 1877, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62800, + "fields": { + "id_car_model": 1877, + "name": "hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62801, + "fields": { + "id_car_model": 1824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62802, + "fields": { + "id_car_model": 1686, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62803, + "fields": { + "id_car_model": 98, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62804, + "fields": { + "id_car_model": 135, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62805, + "fields": { + "id_car_model": 2318, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62806, + "fields": { + "id_car_model": 2318, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62807, + "fields": { + "id_car_model": 2319, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62808, + "fields": { + "id_car_model": 22965, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62809, + "fields": { + "id_car_model": 23313, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62810, + "fields": { + "id_car_model": 313, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62811, + "fields": { + "id_car_model": 915, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62812, + "fields": { + "id_car_model": 2286, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62813, + "fields": { + "id_car_model": 1029, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62814, + "fields": { + "id_car_model": 18965, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62815, + "fields": { + "id_car_model": 18964, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62816, + "fields": { + "id_car_model": 1381, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62817, + "fields": { + "id_car_model": 23300, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62818, + "fields": { + "id_car_model": 22884, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62819, + "fields": { + "id_car_model": 1839, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62820, + "fields": { + "id_car_model": 1300, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62821, + "fields": { + "id_car_model": 1300, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62822, + "fields": { + "id_car_model": 1618, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62873, + "fields": { + "id_car_model": 1759, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62898, + "fields": { + "id_car_model": 23035, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62911, + "fields": { + "id_car_model": 20350, + "name": "AMG wagon 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62912, + "fields": { + "id_car_model": 22776, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62913, + "fields": { + "id_car_model": 22779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62914, + "fields": { + "id_car_model": 22678, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62915, + "fields": { + "id_car_model": 22678, + "name": "Sedan (G16)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62916, + "fields": { + "id_car_model": 22678, + "name": "Coupe (G14)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62917, + "fields": { + "id_car_model": 22678, + "name": "Coupe (G15)", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62918, + "fields": { + "id_car_model": 1821, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62919, + "fields": { + "id_car_model": 2154, + "name": "S\\XRS hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62920, + "fields": { + "id_car_model": 2211, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62921, + "fields": { + "id_car_model": 23401, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62922, + "fields": { + "id_car_model": 469, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62923, + "fields": { + "id_car_model": 23290, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62924, + "fields": { + "id_car_model": 22680, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62925, + "fields": { + "id_car_model": 960, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62929, + "fields": { + "id_car_model": 18963, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62930, + "fields": { + "id_car_model": 1686, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62931, + "fields": { + "id_car_model": 1689, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62932, + "fields": { + "id_car_model": 1908, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62933, + "fields": { + "id_car_model": 280, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62934, + "fields": { + "id_car_model": 1403, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62935, + "fields": { + "id_car_model": 1673, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62937, + "fields": { + "id_car_model": 1673, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62938, + "fields": { + "id_car_model": 1674, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62939, + "fields": { + "id_car_model": 1674, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62940, + "fields": { + "id_car_model": 1674, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62941, + "fields": { + "id_car_model": 2368, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62942, + "fields": { + "id_car_model": 2368, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62943, + "fields": { + "id_car_model": 2368, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62944, + "fields": { + "id_car_model": 23141, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62951, + "fields": { + "id_car_model": 22538, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62954, + "fields": { + "id_car_model": 131, + "name": "Flying Spur Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62955, + "fields": { + "id_car_model": 19780, + "name": "Gran Coupe Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62956, + "fields": { + "id_car_model": 428, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62957, + "fields": { + "id_car_model": 765, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62958, + "fields": { + "id_car_model": 827, + "name": "SUV 3-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62959, + "fields": { + "id_car_model": 827, + "name": "SUV 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62960, + "fields": { + "id_car_model": 891, + "name": "Extended Cab pickup 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62964, + "fields": { + "id_car_model": 648, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62968, + "fields": { + "id_car_model": 131, + "name": "Flying Spur Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62969, + "fields": { + "id_car_model": 22678, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62970, + "fields": { + "id_car_model": 22678, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62971, + "fields": { + "id_car_model": 1363, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62972, + "fields": { + "id_car_model": 1363, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62973, + "fields": { + "id_car_model": 1363, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62974, + "fields": { + "id_car_model": 13, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62975, + "fields": { + "id_car_model": 13, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62976, + "fields": { + "id_car_model": 22410, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62977, + "fields": { + "id_car_model": 23419, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62978, + "fields": { + "id_car_model": 22679, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62979, + "fields": { + "id_car_model": 19746, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62982, + "fields": { + "id_car_model": 2286, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62983, + "fields": { + "id_car_model": 1791, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62984, + "fields": { + "id_car_model": 1818, + "name": "Axio Sedan 4-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62985, + "fields": { + "id_car_model": 1818, + "name": "Fielder wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62986, + "fields": { + "id_car_model": 1818, + "name": "Fielder wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62987, + "fields": { + "id_car_model": 631, + "name": "Pickup Double cabin Raptor SuperCrew", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62988, + "fields": { + "id_car_model": 631, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62989, + "fields": { + "id_car_model": 631, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62990, + "fields": { + "id_car_model": 2328, + "name": "Hatchback 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62991, + "fields": { + "id_car_model": 668, + "name": "Grand minivan 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62992, + "fields": { + "id_car_model": 613, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62993, + "fields": { + "id_car_model": 22785, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62994, + "fields": { + "id_car_model": 618, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62995, + "fields": { + "id_car_model": 20052, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62996, + "fields": { + "id_car_model": 22786, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62997, + "fields": { + "id_car_model": 621, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62998, + "fields": { + "id_car_model": 621, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 62999, + "fields": { + "id_car_model": 621, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63000, + "fields": { + "id_car_model": 623, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63001, + "fields": { + "id_car_model": 624, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63002, + "fields": { + "id_car_model": 629, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63003, + "fields": { + "id_car_model": 630, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63004, + "fields": { + "id_car_model": 19066, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63005, + "fields": { + "id_car_model": 19462, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63006, + "fields": { + "id_car_model": 19462, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63007, + "fields": { + "id_car_model": 2177, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63008, + "fields": { + "id_car_model": 79, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63009, + "fields": { + "id_car_model": 85, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63010, + "fields": { + "id_car_model": 88, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63011, + "fields": { + "id_car_model": 89, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63012, + "fields": { + "id_car_model": 91, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63013, + "fields": { + "id_car_model": 91, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63014, + "fields": { + "id_car_model": 102, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63015, + "fields": { + "id_car_model": 104, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63016, + "fields": { + "id_car_model": 109, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63017, + "fields": { + "id_car_model": 112, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63018, + "fields": { + "id_car_model": 22779, + "name": "Compactvan Gran Tourer", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63019, + "fields": { + "id_car_model": 2320, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63020, + "fields": { + "id_car_model": 295, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63021, + "fields": { + "id_car_model": 295, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63022, + "fields": { + "id_car_model": 295, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63023, + "fields": { + "id_car_model": 295, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63024, + "fields": { + "id_car_model": 295, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63025, + "fields": { + "id_car_model": 295, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63026, + "fields": { + "id_car_model": 22780, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63027, + "fields": { + "id_car_model": 22781, + "name": "Sedan AG-1500", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63028, + "fields": { + "id_car_model": 20934, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63029, + "fields": { + "id_car_model": 20934, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63031, + "fields": { + "id_car_model": 362, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63033, + "fields": { + "id_car_model": 2221, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63034, + "fields": { + "id_car_model": 2221, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63035, + "fields": { + "id_car_model": 19903, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63036, + "fields": { + "id_car_model": 19896, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63037, + "fields": { + "id_car_model": 19520, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63038, + "fields": { + "id_car_model": 22783, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63039, + "fields": { + "id_car_model": 19916, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63040, + "fields": { + "id_car_model": 395, + "name": "Microvan Coach", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63042, + "fields": { + "id_car_model": 19923, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63043, + "fields": { + "id_car_model": 409, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63044, + "fields": { + "id_car_model": 410, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63045, + "fields": { + "id_car_model": 19926, + "name": "Sedan Salon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63046, + "fields": { + "id_car_model": 653, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63047, + "fields": { + "id_car_model": 20062, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63048, + "fields": { + "id_car_model": 20062, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63049, + "fields": { + "id_car_model": 20062, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63050, + "fields": { + "id_car_model": 20064, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63051, + "fields": { + "id_car_model": 19275, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63052, + "fields": { + "id_car_model": 20068, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63053, + "fields": { + "id_car_model": 20068, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63054, + "fields": { + "id_car_model": 20961, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63055, + "fields": { + "id_car_model": 20071, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63056, + "fields": { + "id_car_model": 667, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63057, + "fields": { + "id_car_model": 22787, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63058, + "fields": { + "id_car_model": 22787, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63059, + "fields": { + "id_car_model": 22788, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63060, + "fields": { + "id_car_model": 753, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63061, + "fields": { + "id_car_model": 753, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63063, + "fields": { + "id_car_model": 776, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63064, + "fields": { + "id_car_model": 778, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63065, + "fields": { + "id_car_model": 783, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63066, + "fields": { + "id_car_model": 783, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63067, + "fields": { + "id_car_model": 787, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63068, + "fields": { + "id_car_model": 790, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63069, + "fields": { + "id_car_model": 803, + "name": "Minivan Spada", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63070, + "fields": { + "id_car_model": 803, + "name": "Minivan Spada", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63071, + "fields": { + "id_car_model": 803, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63072, + "fields": { + "id_car_model": 20154, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63073, + "fields": { + "id_car_model": 19404, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63074, + "fields": { + "id_car_model": 20157, + "name": "Sedan Amaze", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63075, + "fields": { + "id_car_model": 759, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63076, + "fields": { + "id_car_model": 759, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63077, + "fields": { + "id_car_model": 772, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63078, + "fields": { + "id_car_model": 22561, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63079, + "fields": { + "id_car_model": 22561, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63080, + "fields": { + "id_car_model": 20161, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63081, + "fields": { + "id_car_model": 20162, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63082, + "fields": { + "id_car_model": 20162, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63083, + "fields": { + "id_car_model": 789, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63084, + "fields": { + "id_car_model": 20169, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63085, + "fields": { + "id_car_model": 20170, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63086, + "fields": { + "id_car_model": 22792, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63087, + "fields": { + "id_car_model": 22792, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63088, + "fields": { + "id_car_model": 818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63089, + "fields": { + "id_car_model": 820, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63090, + "fields": { + "id_car_model": 822, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63091, + "fields": { + "id_car_model": 22793, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63092, + "fields": { + "id_car_model": 22793, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63093, + "fields": { + "id_car_model": 22793, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63094, + "fields": { + "id_car_model": 850, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63095, + "fields": { + "id_car_model": 848, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63096, + "fields": { + "id_car_model": 849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63097, + "fields": { + "id_car_model": 849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63098, + "fields": { + "id_car_model": 20209, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63099, + "fields": { + "id_car_model": 853, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63100, + "fields": { + "id_car_model": 853, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63101, + "fields": { + "id_car_model": 20178, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63102, + "fields": { + "id_car_model": 20178, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63103, + "fields": { + "id_car_model": 22797, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63104, + "fields": { + "id_car_model": 22797, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63105, + "fields": { + "id_car_model": 22798, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63106, + "fields": { + "id_car_model": 22800, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63107, + "fields": { + "id_car_model": 22800, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63108, + "fields": { + "id_car_model": 22800, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63109, + "fields": { + "id_car_model": 22800, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63110, + "fields": { + "id_car_model": 22800, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63111, + "fields": { + "id_car_model": 22801, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63112, + "fields": { + "id_car_model": 22801, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63113, + "fields": { + "id_car_model": 22801, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63114, + "fields": { + "id_car_model": 22801, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63115, + "fields": { + "id_car_model": 870, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63116, + "fields": { + "id_car_model": 937, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63117, + "fields": { + "id_car_model": 937, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63118, + "fields": { + "id_car_model": 938, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63119, + "fields": { + "id_car_model": 941, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63120, + "fields": { + "id_car_model": 20264, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63121, + "fields": { + "id_car_model": 20264, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63122, + "fields": { + "id_car_model": 20267, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63123, + "fields": { + "id_car_model": 20267, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63124, + "fields": { + "id_car_model": 20267, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63127, + "fields": { + "id_car_model": 20268, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63128, + "fields": { + "id_car_model": 20268, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63129, + "fields": { + "id_car_model": 20268, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63130, + "fields": { + "id_car_model": 22808, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63131, + "fields": { + "id_car_model": 22808, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63132, + "fields": { + "id_car_model": 20270, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63133, + "fields": { + "id_car_model": 22809, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63134, + "fields": { + "id_car_model": 22809, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63135, + "fields": { + "id_car_model": 22810, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63136, + "fields": { + "id_car_model": 1020, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63137, + "fields": { + "id_car_model": 1020, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63138, + "fields": { + "id_car_model": 1131, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63139, + "fields": { + "id_car_model": 20328, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63140, + "fields": { + "id_car_model": 20328, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63141, + "fields": { + "id_car_model": 22480, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63142, + "fields": { + "id_car_model": 20329, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63143, + "fields": { + "id_car_model": 20329, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63144, + "fields": { + "id_car_model": 20329, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63145, + "fields": { + "id_car_model": 20329, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63146, + "fields": { + "id_car_model": 1159, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63147, + "fields": { + "id_car_model": 1163, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63148, + "fields": { + "id_car_model": 20337, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63149, + "fields": { + "id_car_model": 1172, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63150, + "fields": { + "id_car_model": 1175, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63151, + "fields": { + "id_car_model": 1175, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63152, + "fields": { + "id_car_model": 1175, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63153, + "fields": { + "id_car_model": 1175, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63154, + "fields": { + "id_car_model": 20358, + "name": "Minivan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63155, + "fields": { + "id_car_model": 2352, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63156, + "fields": { + "id_car_model": 2340, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63157, + "fields": { + "id_car_model": 2344, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63158, + "fields": { + "id_car_model": 2345, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63159, + "fields": { + "id_car_model": 22858, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63160, + "fields": { + "id_car_model": 23299, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63161, + "fields": { + "id_car_model": 20362, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63162, + "fields": { + "id_car_model": 2353, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63163, + "fields": { + "id_car_model": 22859, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63164, + "fields": { + "id_car_model": 22860, + "name": "Limousine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63165, + "fields": { + "id_car_model": 22861, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63166, + "fields": { + "id_car_model": 22862, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63167, + "fields": { + "id_car_model": 22863, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63168, + "fields": { + "id_car_model": 1316, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63169, + "fields": { + "id_car_model": 1316, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63170, + "fields": { + "id_car_model": 1316, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63171, + "fields": { + "id_car_model": 1263, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63172, + "fields": { + "id_car_model": 23295, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63173, + "fields": { + "id_car_model": 22605, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63174, + "fields": { + "id_car_model": 22605, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63175, + "fields": { + "id_car_model": 22611, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63176, + "fields": { + "id_car_model": 22865, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63177, + "fields": { + "id_car_model": 19722, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63178, + "fields": { + "id_car_model": 1277, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63179, + "fields": { + "id_car_model": 22866, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63180, + "fields": { + "id_car_model": 20403, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63181, + "fields": { + "id_car_model": 20405, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63182, + "fields": { + "id_car_model": 20408, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63183, + "fields": { + "id_car_model": 20408, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63184, + "fields": { + "id_car_model": 20409, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63185, + "fields": { + "id_car_model": 1308, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63186, + "fields": { + "id_car_model": 20419, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63187, + "fields": { + "id_car_model": 1366, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63188, + "fields": { + "id_car_model": 1371, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63189, + "fields": { + "id_car_model": 1391, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63190, + "fields": { + "id_car_model": 2130, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63191, + "fields": { + "id_car_model": 2130, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63192, + "fields": { + "id_car_model": 1346, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63193, + "fields": { + "id_car_model": 1348, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63194, + "fields": { + "id_car_model": 1352, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63195, + "fields": { + "id_car_model": 1353, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63196, + "fields": { + "id_car_model": 22873, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63197, + "fields": { + "id_car_model": 22873, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63198, + "fields": { + "id_car_model": 2243, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63199, + "fields": { + "id_car_model": 1365, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63200, + "fields": { + "id_car_model": 1368, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63201, + "fields": { + "id_car_model": 22874, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63202, + "fields": { + "id_car_model": 22874, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63203, + "fields": { + "id_car_model": 22876, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63204, + "fields": { + "id_car_model": 20444, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63205, + "fields": { + "id_car_model": 20444, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63206, + "fields": { + "id_car_model": 1384, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63207, + "fields": { + "id_car_model": 20451, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63208, + "fields": { + "id_car_model": 20454, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63209, + "fields": { + "id_car_model": 22877, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63210, + "fields": { + "id_car_model": 22877, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63211, + "fields": { + "id_car_model": 22877, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63212, + "fields": { + "id_car_model": 22877, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63213, + "fields": { + "id_car_model": 22877, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63214, + "fields": { + "id_car_model": 20457, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63215, + "fields": { + "id_car_model": 20457, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63216, + "fields": { + "id_car_model": 2136, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63217, + "fields": { + "id_car_model": 2136, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63218, + "fields": { + "id_car_model": 2144, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63219, + "fields": { + "id_car_model": 2144, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63220, + "fields": { + "id_car_model": 2145, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63221, + "fields": { + "id_car_model": 1422, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63222, + "fields": { + "id_car_model": 1431, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63223, + "fields": { + "id_car_model": 19288, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63224, + "fields": { + "id_car_model": 1453, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63225, + "fields": { + "id_car_model": 19617, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63226, + "fields": { + "id_car_model": 22881, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63227, + "fields": { + "id_car_model": 1501, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63228, + "fields": { + "id_car_model": 22882, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63229, + "fields": { + "id_car_model": 1536, + "name": "targa Targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63230, + "fields": { + "id_car_model": 2361, + "name": "Coupe RS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63231, + "fields": { + "id_car_model": 2362, + "name": "Coupe RS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63232, + "fields": { + "id_car_model": 22883, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63233, + "fields": { + "id_car_model": 20510, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63234, + "fields": { + "id_car_model": 20510, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63235, + "fields": { + "id_car_model": 1544, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63236, + "fields": { + "id_car_model": 1547, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63237, + "fields": { + "id_car_model": 1547, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63238, + "fields": { + "id_car_model": 19075, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63239, + "fields": { + "id_car_model": 1590, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63240, + "fields": { + "id_car_model": 1600, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63241, + "fields": { + "id_car_model": 22886, + "name": "Sedan 105", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63242, + "fields": { + "id_car_model": 22887, + "name": "Sedan 1200", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63243, + "fields": { + "id_car_model": 2370, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63245, + "fields": { + "id_car_model": 1701, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63246, + "fields": { + "id_car_model": 20574, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63247, + "fields": { + "id_car_model": 1727, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63248, + "fields": { + "id_car_model": 1727, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63249, + "fields": { + "id_car_model": 1728, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63250, + "fields": { + "id_car_model": 1728, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63251, + "fields": { + "id_car_model": 1728, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63252, + "fields": { + "id_car_model": 1728, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63253, + "fields": { + "id_car_model": 2231, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63254, + "fields": { + "id_car_model": 22891, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63255, + "fields": { + "id_car_model": 22891, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63256, + "fields": { + "id_car_model": 20590, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63257, + "fields": { + "id_car_model": 20590, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63258, + "fields": { + "id_car_model": 20591, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63259, + "fields": { + "id_car_model": 20594, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63260, + "fields": { + "id_car_model": 1743, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63261, + "fields": { + "id_car_model": 1743, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63262, + "fields": { + "id_car_model": 1743, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63263, + "fields": { + "id_car_model": 1749, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63264, + "fields": { + "id_car_model": 1750, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63265, + "fields": { + "id_car_model": 1750, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63266, + "fields": { + "id_car_model": 1755, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63267, + "fields": { + "id_car_model": 1755, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63268, + "fields": { + "id_car_model": 20588, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63269, + "fields": { + "id_car_model": 22893, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63270, + "fields": { + "id_car_model": 1741, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63271, + "fields": { + "id_car_model": 1810, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63272, + "fields": { + "id_car_model": 1821, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63273, + "fields": { + "id_car_model": 1824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63274, + "fields": { + "id_car_model": 1826, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63275, + "fields": { + "id_car_model": 1839, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63276, + "fields": { + "id_car_model": 2193, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63277, + "fields": { + "id_car_model": 2199, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63278, + "fields": { + "id_car_model": 2199, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63279, + "fields": { + "id_car_model": 2217, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63280, + "fields": { + "id_car_model": 1796, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63281, + "fields": { + "id_car_model": 1796, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63282, + "fields": { + "id_car_model": 1799, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63283, + "fields": { + "id_car_model": 1799, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63284, + "fields": { + "id_car_model": 1813, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63285, + "fields": { + "id_car_model": 1815, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63286, + "fields": { + "id_car_model": 1816, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63287, + "fields": { + "id_car_model": 1816, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63288, + "fields": { + "id_car_model": 1816, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63289, + "fields": { + "id_car_model": 20635, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63290, + "fields": { + "id_car_model": 22896, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63291, + "fields": { + "id_car_model": 20640, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63292, + "fields": { + "id_car_model": 20640, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63293, + "fields": { + "id_car_model": 20640, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63294, + "fields": { + "id_car_model": 20640, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63295, + "fields": { + "id_car_model": 2376, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63296, + "fields": { + "id_car_model": 2376, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63297, + "fields": { + "id_car_model": 20641, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63298, + "fields": { + "id_car_model": 20641, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63299, + "fields": { + "id_car_model": 1831, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63300, + "fields": { + "id_car_model": 1831, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63301, + "fields": { + "id_car_model": 1831, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63302, + "fields": { + "id_car_model": 1831, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63303, + "fields": { + "id_car_model": 20643, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63304, + "fields": { + "id_car_model": 22898, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63305, + "fields": { + "id_car_model": 22899, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63306, + "fields": { + "id_car_model": 22900, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63307, + "fields": { + "id_car_model": 22900, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63308, + "fields": { + "id_car_model": 2149, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63309, + "fields": { + "id_car_model": 22901, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63310, + "fields": { + "id_car_model": 20649, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63311, + "fields": { + "id_car_model": 2161, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63312, + "fields": { + "id_car_model": 22902, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63313, + "fields": { + "id_car_model": 23302, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63314, + "fields": { + "id_car_model": 23302, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63315, + "fields": { + "id_car_model": 2167, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63316, + "fields": { + "id_car_model": 2167, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63317, + "fields": { + "id_car_model": 2167, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63318, + "fields": { + "id_car_model": 2282, + "name": "Minivan Compact", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63319, + "fields": { + "id_car_model": 20653, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63320, + "fields": { + "id_car_model": 20653, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63321, + "fields": { + "id_car_model": 20653, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63322, + "fields": { + "id_car_model": 23315, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63323, + "fields": { + "id_car_model": 2186, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63325, + "fields": { + "id_car_model": 22904, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63326, + "fields": { + "id_car_model": 20658, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63327, + "fields": { + "id_car_model": 2192, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63328, + "fields": { + "id_car_model": 2192, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63329, + "fields": { + "id_car_model": 2192, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63330, + "fields": { + "id_car_model": 22905, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63331, + "fields": { + "id_car_model": 22906, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63332, + "fields": { + "id_car_model": 2235, + "name": "Minivan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63333, + "fields": { + "id_car_model": 1915, + "name": "Minivan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63334, + "fields": { + "id_car_model": 1929, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63335, + "fields": { + "id_car_model": 2236, + "name": "Van Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63336, + "fields": { + "id_car_model": 2234, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63337, + "fields": { + "id_car_model": 22908, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63338, + "fields": { + "id_car_model": 22908, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63339, + "fields": { + "id_car_model": 22909, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63340, + "fields": { + "id_car_model": 22909, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63341, + "fields": { + "id_car_model": 22911, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63342, + "fields": { + "id_car_model": 22912, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63343, + "fields": { + "id_car_model": 22912, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63344, + "fields": { + "id_car_model": 22914, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63345, + "fields": { + "id_car_model": 22918, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63346, + "fields": { + "id_car_model": 22917, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63347, + "fields": { + "id_car_model": 20697, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63348, + "fields": { + "id_car_model": 22920, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63349, + "fields": { + "id_car_model": 22921, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63350, + "fields": { + "id_car_model": 22923, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63351, + "fields": { + "id_car_model": 22924, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63352, + "fields": { + "id_car_model": 22925, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63353, + "fields": { + "id_car_model": 22491, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63354, + "fields": { + "id_car_model": 22926, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63355, + "fields": { + "id_car_model": 22927, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63356, + "fields": { + "id_car_model": 4, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63357, + "fields": { + "id_car_model": 8, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63358, + "fields": { + "id_car_model": 14, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63359, + "fields": { + "id_car_model": 14, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63360, + "fields": { + "id_car_model": 15, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63361, + "fields": { + "id_car_model": 2265, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63362, + "fields": { + "id_car_model": 22573, + "name": "Sedan Pullman", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63363, + "fields": { + "id_car_model": 24, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63364, + "fields": { + "id_car_model": 24, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63365, + "fields": { + "id_car_model": 25, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63366, + "fields": { + "id_car_model": 22930, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63367, + "fields": { + "id_car_model": 2300, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63368, + "fields": { + "id_car_model": 2301, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63369, + "fields": { + "id_car_model": 2302, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63370, + "fields": { + "id_car_model": 22931, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63371, + "fields": { + "id_car_model": 2310, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63372, + "fields": { + "id_car_model": 22932, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63373, + "fields": { + "id_car_model": 22932, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63374, + "fields": { + "id_car_model": 22932, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63375, + "fields": { + "id_car_model": 50, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63376, + "fields": { + "id_car_model": 22933, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63377, + "fields": { + "id_car_model": 22483, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63378, + "fields": { + "id_car_model": 22936, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63379, + "fields": { + "id_car_model": 62, + "name": "Cabriolet Volante", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63382, + "fields": { + "id_car_model": 72, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63383, + "fields": { + "id_car_model": 23312, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63384, + "fields": { + "id_car_model": 22938, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63385, + "fields": { + "id_car_model": 22938, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63386, + "fields": { + "id_car_model": 22938, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63387, + "fields": { + "id_car_model": 22938, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63388, + "fields": { + "id_car_model": 22939, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63389, + "fields": { + "id_car_model": 22943, + "name": "Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63390, + "fields": { + "id_car_model": 22944, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63391, + "fields": { + "id_car_model": 128, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63392, + "fields": { + "id_car_model": 22945, + "name": "Coupe Continental", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63393, + "fields": { + "id_car_model": 22946, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63394, + "fields": { + "id_car_model": 22948, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63395, + "fields": { + "id_car_model": 2290, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63396, + "fields": { + "id_car_model": 22951, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63397, + "fields": { + "id_car_model": 22951, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63398, + "fields": { + "id_car_model": 22952, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63399, + "fields": { + "id_car_model": 22952, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63400, + "fields": { + "id_car_model": 22953, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63401, + "fields": { + "id_car_model": 22954, + "name": "Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63402, + "fields": { + "id_car_model": 22955, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63403, + "fields": { + "id_car_model": 22956, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63404, + "fields": { + "id_car_model": 189, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63405, + "fields": { + "id_car_model": 22957, + "name": "Coupe GSX", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63406, + "fields": { + "id_car_model": 190, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63407, + "fields": { + "id_car_model": 22958, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63408, + "fields": { + "id_car_model": 22958, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63409, + "fields": { + "id_car_model": 22958, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63410, + "fields": { + "id_car_model": 22958, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63411, + "fields": { + "id_car_model": 22958, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63412, + "fields": { + "id_car_model": 196, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63413, + "fields": { + "id_car_model": 198, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63414, + "fields": { + "id_car_model": 19063, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63415, + "fields": { + "id_car_model": 22959, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63416, + "fields": { + "id_car_model": 22960, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63417, + "fields": { + "id_car_model": 23281, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63418, + "fields": { + "id_car_model": 23282, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63419, + "fields": { + "id_car_model": 23283, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63420, + "fields": { + "id_car_model": 19392, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63421, + "fields": { + "id_car_model": 22961, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63422, + "fields": { + "id_car_model": 22961, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63423, + "fields": { + "id_car_model": 22961, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63424, + "fields": { + "id_car_model": 22961, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63425, + "fields": { + "id_car_model": 22961, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63426, + "fields": { + "id_car_model": 223, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63428, + "fields": { + "id_car_model": 19268, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63429, + "fields": { + "id_car_model": 22962, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63430, + "fields": { + "id_car_model": 22964, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63431, + "fields": { + "id_car_model": 22968, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63432, + "fields": { + "id_car_model": 22969, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63433, + "fields": { + "id_car_model": 248, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63434, + "fields": { + "id_car_model": 19819, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63435, + "fields": { + "id_car_model": 22984, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63436, + "fields": { + "id_car_model": 319, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63437, + "fields": { + "id_car_model": 19611, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63438, + "fields": { + "id_car_model": 327, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63439, + "fields": { + "id_car_model": 327, + "name": "Cabriolet Custom", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63440, + "fields": { + "id_car_model": 329, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63441, + "fields": { + "id_car_model": 329, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63442, + "fields": { + "id_car_model": 333, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63443, + "fields": { + "id_car_model": 333, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63444, + "fields": { + "id_car_model": 333, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63445, + "fields": { + "id_car_model": 22985, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63446, + "fields": { + "id_car_model": 22985, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63447, + "fields": { + "id_car_model": 22985, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63448, + "fields": { + "id_car_model": 22985, + "name": "Minivan SWB", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63449, + "fields": { + "id_car_model": 22985, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63450, + "fields": { + "id_car_model": 22985, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63451, + "fields": { + "id_car_model": 19883, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63452, + "fields": { + "id_car_model": 19883, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63453, + "fields": { + "id_car_model": 22986, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63454, + "fields": { + "id_car_model": 22988, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63455, + "fields": { + "id_car_model": 383, + "name": "Compactvan Stepway", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63456, + "fields": { + "id_car_model": 22990, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63457, + "fields": { + "id_car_model": 420, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63458, + "fields": { + "id_car_model": 420, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63459, + "fields": { + "id_car_model": 420, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63460, + "fields": { + "id_car_model": 420, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63461, + "fields": { + "id_car_model": 420, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63462, + "fields": { + "id_car_model": 422, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63463, + "fields": { + "id_car_model": 422, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63464, + "fields": { + "id_car_model": 422, + "name": "Minivan Atrai7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63465, + "fields": { + "id_car_model": 19930, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63466, + "fields": { + "id_car_model": 22992, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63467, + "fields": { + "id_car_model": 22992, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63468, + "fields": { + "id_car_model": 19937, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63469, + "fields": { + "id_car_model": 19937, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63470, + "fields": { + "id_car_model": 19937, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63471, + "fields": { + "id_car_model": 440, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63472, + "fields": { + "id_car_model": 440, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63473, + "fields": { + "id_car_model": 440, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63474, + "fields": { + "id_car_model": 449, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63475, + "fields": { + "id_car_model": 449, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63476, + "fields": { + "id_car_model": 449, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63477, + "fields": { + "id_car_model": 22991, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63478, + "fields": { + "id_car_model": 22995, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63479, + "fields": { + "id_car_model": 22996, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63480, + "fields": { + "id_car_model": 442, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63481, + "fields": { + "id_car_model": 23305, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63482, + "fields": { + "id_car_model": 23306, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63483, + "fields": { + "id_car_model": 22999, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63484, + "fields": { + "id_car_model": 23284, + "name": "Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63485, + "fields": { + "id_car_model": 23000, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63486, + "fields": { + "id_car_model": 23001, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63487, + "fields": { + "id_car_model": 19960, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63488, + "fields": { + "id_car_model": 19960, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63489, + "fields": { + "id_car_model": 470, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63490, + "fields": { + "id_car_model": 2238, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63491, + "fields": { + "id_car_model": 23207, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63492, + "fields": { + "id_car_model": 23002, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63493, + "fields": { + "id_car_model": 23003, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63495, + "fields": { + "id_car_model": 23005, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63496, + "fields": { + "id_car_model": 19971, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63497, + "fields": { + "id_car_model": 23006, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63498, + "fields": { + "id_car_model": 23008, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63499, + "fields": { + "id_car_model": 19975, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63500, + "fields": { + "id_car_model": 23010, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63501, + "fields": { + "id_car_model": 23009, + "name": "SUV opened WC-57", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63502, + "fields": { + "id_car_model": 23009, + "name": "SUV opened WC-4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63503, + "fields": { + "id_car_model": 20949, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63504, + "fields": { + "id_car_model": 23012, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63505, + "fields": { + "id_car_model": 519, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63506, + "fields": { + "id_car_model": 23285, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63507, + "fields": { + "id_car_model": 23286, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63508, + "fields": { + "id_car_model": 23017, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63509, + "fields": { + "id_car_model": 23287, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63510, + "fields": { + "id_car_model": 524, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63511, + "fields": { + "id_car_model": 23289, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63512, + "fields": { + "id_car_model": 20965, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63513, + "fields": { + "id_car_model": 20767, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63515, + "fields": { + "id_car_model": 531, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63516, + "fields": { + "id_car_model": 23021, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63517, + "fields": { + "id_car_model": 23022, + "name": "Coupe Maranello", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63518, + "fields": { + "id_car_model": 23023, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63519, + "fields": { + "id_car_model": 23024, + "name": "Coupe Superfast", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63520, + "fields": { + "id_car_model": 555, + "name": "Cabriolet T", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63521, + "fields": { + "id_car_model": 23025, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63522, + "fields": { + "id_car_model": 23026, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63523, + "fields": { + "id_car_model": 23027, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63524, + "fields": { + "id_car_model": 23028, + "name": "Speedster SP1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63525, + "fields": { + "id_car_model": 23029, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63526, + "fields": { + "id_car_model": 575, + "name": "Compactvan Wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63528, + "fields": { + "id_car_model": 23030, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63529, + "fields": { + "id_car_model": 20019, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63530, + "fields": { + "id_car_model": 23032, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63531, + "fields": { + "id_car_model": 23033, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63532, + "fields": { + "id_car_model": 23036, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63533, + "fields": { + "id_car_model": 23036, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63534, + "fields": { + "id_car_model": 23037, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63535, + "fields": { + "id_car_model": 691, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63536, + "fields": { + "id_car_model": 700, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63537, + "fields": { + "id_car_model": 23041, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63538, + "fields": { + "id_car_model": 23042, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63539, + "fields": { + "id_car_model": 23407, + "name": "Limousine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63540, + "fields": { + "id_car_model": 20120, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63541, + "fields": { + "id_car_model": 20120, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63542, + "fields": { + "id_car_model": 20120, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63543, + "fields": { + "id_car_model": 23046, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63544, + "fields": { + "id_car_model": 20121, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63545, + "fields": { + "id_car_model": 20121, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63546, + "fields": { + "id_car_model": 23047, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63547, + "fields": { + "id_car_model": 20976, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63548, + "fields": { + "id_car_model": 23408, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63549, + "fields": { + "id_car_model": 23050, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63550, + "fields": { + "id_car_model": 23051, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63551, + "fields": { + "id_car_model": 23052, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63552, + "fields": { + "id_car_model": 23053, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63553, + "fields": { + "id_car_model": 20217, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63554, + "fields": { + "id_car_model": 20218, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63555, + "fields": { + "id_car_model": 23056, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63556, + "fields": { + "id_car_model": 20220, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63557, + "fields": { + "id_car_model": 20220, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63558, + "fields": { + "id_car_model": 888, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63559, + "fields": { + "id_car_model": 20223, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63560, + "fields": { + "id_car_model": 20227, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63561, + "fields": { + "id_car_model": 23057, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63562, + "fields": { + "id_car_model": 20228, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63563, + "fields": { + "id_car_model": 20228, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63564, + "fields": { + "id_car_model": 23059, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63565, + "fields": { + "id_car_model": 23060, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63566, + "fields": { + "id_car_model": 23064, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63567, + "fields": { + "id_car_model": 23314, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63568, + "fields": { + "id_car_model": 2286, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63569, + "fields": { + "id_car_model": 919, + "name": "Sedan SWB", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63570, + "fields": { + "id_car_model": 919, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63571, + "fields": { + "id_car_model": 919, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63572, + "fields": { + "id_car_model": 921, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63573, + "fields": { + "id_car_model": 922, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63574, + "fields": { + "id_car_model": 2332, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63575, + "fields": { + "id_car_model": 20785, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63576, + "fields": { + "id_car_model": 23066, + "name": "Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63577, + "fields": { + "id_car_model": 22554, + "name": "Coupe 400 GT", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63578, + "fields": { + "id_car_model": 23067, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63579, + "fields": { + "id_car_model": 20280, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63580, + "fields": { + "id_car_model": 20281, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63581, + "fields": { + "id_car_model": 983, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63582, + "fields": { + "id_car_model": 20282, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63583, + "fields": { + "id_car_model": 20284, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63584, + "fields": { + "id_car_model": 20285, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63585, + "fields": { + "id_car_model": 20286, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63586, + "fields": { + "id_car_model": 23069, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63587, + "fields": { + "id_car_model": 23070, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63588, + "fields": { + "id_car_model": 23071, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63589, + "fields": { + "id_car_model": 23072, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63590, + "fields": { + "id_car_model": 23074, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63591, + "fields": { + "id_car_model": 23075, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63592, + "fields": { + "id_car_model": 23076, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63593, + "fields": { + "id_car_model": 23077, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63594, + "fields": { + "id_car_model": 23078, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63595, + "fields": { + "id_car_model": 20296, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63596, + "fields": { + "id_car_model": 1038, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63597, + "fields": { + "id_car_model": 1038, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63598, + "fields": { + "id_car_model": 1038, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63599, + "fields": { + "id_car_model": 1047, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63600, + "fields": { + "id_car_model": 23080, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63601, + "fields": { + "id_car_model": 23081, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63602, + "fields": { + "id_car_model": 20301, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63603, + "fields": { + "id_car_model": 1049, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63604, + "fields": { + "id_car_model": 23209, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63605, + "fields": { + "id_car_model": 1053, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63606, + "fields": { + "id_car_model": 1060, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63607, + "fields": { + "id_car_model": 23083, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63608, + "fields": { + "id_car_model": 23084, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63609, + "fields": { + "id_car_model": 23087, + "name": "SUV opened 775", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63610, + "fields": { + "id_car_model": 23088, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63611, + "fields": { + "id_car_model": 1115, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63612, + "fields": { + "id_car_model": 23089, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63613, + "fields": { + "id_car_model": 1217, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63614, + "fields": { + "id_car_model": 1223, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63615, + "fields": { + "id_car_model": 1227, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63616, + "fields": { + "id_car_model": 23091, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63617, + "fields": { + "id_car_model": 23092, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63618, + "fields": { + "id_car_model": 23093, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63621, + "fields": { + "id_car_model": 23094, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63622, + "fields": { + "id_car_model": 23095, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63623, + "fields": { + "id_car_model": 23096, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63624, + "fields": { + "id_car_model": 23097, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63625, + "fields": { + "id_car_model": 23098, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63626, + "fields": { + "id_car_model": 19517, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63627, + "fields": { + "id_car_model": 19517, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63628, + "fields": { + "id_car_model": 23104, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63629, + "fields": { + "id_car_model": 23105, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63630, + "fields": { + "id_car_model": 23409, + "name": "Sedan 1925-1929", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63631, + "fields": { + "id_car_model": 23106, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63632, + "fields": { + "id_car_model": 19290, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63633, + "fields": { + "id_car_model": 22461, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63634, + "fields": { + "id_car_model": 23108, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63635, + "fields": { + "id_car_model": 23109, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63636, + "fields": { + "id_car_model": 1515, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63637, + "fields": { + "id_car_model": 20497, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63639, + "fields": { + "id_car_model": 20507, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63640, + "fields": { + "id_car_model": 22624, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63641, + "fields": { + "id_car_model": 22624, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63642, + "fields": { + "id_car_model": 23111, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63643, + "fields": { + "id_car_model": 23114, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63644, + "fields": { + "id_car_model": 23115, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63645, + "fields": { + "id_car_model": 23116, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63646, + "fields": { + "id_car_model": 23117, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63647, + "fields": { + "id_car_model": 23120, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63648, + "fields": { + "id_car_model": 23120, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63649, + "fields": { + "id_car_model": 23120, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63650, + "fields": { + "id_car_model": 23121, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63651, + "fields": { + "id_car_model": 23121, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63652, + "fields": { + "id_car_model": 23122, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63653, + "fields": { + "id_car_model": 23124, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63654, + "fields": { + "id_car_model": 23126, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63655, + "fields": { + "id_car_model": 20534, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63656, + "fields": { + "id_car_model": 20534, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63657, + "fields": { + "id_car_model": 20534, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63658, + "fields": { + "id_car_model": 20534, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63659, + "fields": { + "id_car_model": 20536, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63660, + "fields": { + "id_car_model": 22622, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63661, + "fields": { + "id_car_model": 23127, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63662, + "fields": { + "id_car_model": 1629, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63663, + "fields": { + "id_car_model": 23129, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63664, + "fields": { + "id_car_model": 20542, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63665, + "fields": { + "id_car_model": 23163, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63666, + "fields": { + "id_car_model": 23164, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63667, + "fields": { + "id_car_model": 23164, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63668, + "fields": { + "id_car_model": 23165, + "name": "Roadster TR4A", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63670, + "fields": { + "id_car_model": 23134, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63671, + "fields": { + "id_car_model": 23135, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63672, + "fields": { + "id_car_model": 23136, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63673, + "fields": { + "id_car_model": 1874, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63674, + "fields": { + "id_car_model": 22633, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63675, + "fields": { + "id_car_model": 22633, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63676, + "fields": { + "id_car_model": 22633, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63677, + "fields": { + "id_car_model": 22633, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63678, + "fields": { + "id_car_model": 22635, + "name": "Coupe VXR", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63679, + "fields": { + "id_car_model": 23137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63680, + "fields": { + "id_car_model": 23137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63681, + "fields": { + "id_car_model": 23138, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63682, + "fields": { + "id_car_model": 23139, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63683, + "fields": { + "id_car_model": 23140, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63684, + "fields": { + "id_car_model": 1966, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63685, + "fields": { + "id_car_model": 23166, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63686, + "fields": { + "id_car_model": 23167, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63687, + "fields": { + "id_car_model": 23168, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63688, + "fields": { + "id_car_model": 23323, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63689, + "fields": { + "id_car_model": 23410, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63690, + "fields": { + "id_car_model": 23169, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63691, + "fields": { + "id_car_model": 23412, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63692, + "fields": { + "id_car_model": 1642, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63693, + "fields": { + "id_car_model": 23131, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63694, + "fields": { + "id_car_model": 1670, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63695, + "fields": { + "id_car_model": 23143, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63696, + "fields": { + "id_car_model": 23144, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63697, + "fields": { + "id_car_model": 23145, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63698, + "fields": { + "id_car_model": 23146, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63699, + "fields": { + "id_car_model": 23147, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63700, + "fields": { + "id_car_model": 23148, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63701, + "fields": { + "id_car_model": 23150, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63702, + "fields": { + "id_car_model": 23152, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63703, + "fields": { + "id_car_model": 23153, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63704, + "fields": { + "id_car_model": 23156, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63705, + "fields": { + "id_car_model": 23157, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63706, + "fields": { + "id_car_model": 23158, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63707, + "fields": { + "id_car_model": 20614, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63708, + "fields": { + "id_car_model": 20614, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63709, + "fields": { + "id_car_model": 1783, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63710, + "fields": { + "id_car_model": 23160, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63711, + "fields": { + "id_car_model": 1789, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63712, + "fields": { + "id_car_model": 23171, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63713, + "fields": { + "id_car_model": 23176, + "name": "Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63714, + "fields": { + "id_car_model": 23177, + "name": "Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63715, + "fields": { + "id_car_model": 23179, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63716, + "fields": { + "id_car_model": 23181, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63717, + "fields": { + "id_car_model": 23182, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63718, + "fields": { + "id_car_model": 23185, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63719, + "fields": { + "id_car_model": 23187, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63720, + "fields": { + "id_car_model": 23188, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63721, + "fields": { + "id_car_model": 23308, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63722, + "fields": { + "id_car_model": 23189, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63723, + "fields": { + "id_car_model": 23190, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63724, + "fields": { + "id_car_model": 23221, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63725, + "fields": { + "id_car_model": 2273, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63726, + "fields": { + "id_car_model": 2274, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63727, + "fields": { + "id_car_model": 19773, + "name": "Sedan Gran Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63728, + "fields": { + "id_car_model": 159, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63730, + "fields": { + "id_car_model": 1476, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63731, + "fields": { + "id_car_model": 23422, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63732, + "fields": { + "id_car_model": 23423, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63733, + "fields": { + "id_car_model": 935, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63734, + "fields": { + "id_car_model": 1021, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63735, + "fields": { + "id_car_model": 1024, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63736, + "fields": { + "id_car_model": 2336, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63737, + "fields": { + "id_car_model": 22846, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63738, + "fields": { + "id_car_model": 22848, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63739, + "fields": { + "id_car_model": 23424, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63740, + "fields": { + "id_car_model": 20012, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63741, + "fields": { + "id_car_model": 20013, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63742, + "fields": { + "id_car_model": 1536, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63743, + "fields": { + "id_car_model": 1536, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63746, + "fields": { + "id_car_model": 23425, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63747, + "fields": { + "id_car_model": 23426, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63748, + "fields": { + "id_car_model": 23426, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63749, + "fields": { + "id_car_model": 23426, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63750, + "fields": { + "id_car_model": 23280, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63751, + "fields": { + "id_car_model": 23414, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63752, + "fields": { + "id_car_model": 23427, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63753, + "fields": { + "id_car_model": 22350, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63754, + "fields": { + "id_car_model": 23421, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63755, + "fields": { + "id_car_model": 19707, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63756, + "fields": { + "id_car_model": 22812, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63757, + "fields": { + "id_car_model": 20351, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63758, + "fields": { + "id_car_model": 18964, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63759, + "fields": { + "id_car_model": 1266, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63761, + "fields": { + "id_car_model": 19737, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63762, + "fields": { + "id_car_model": 75, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63763, + "fields": { + "id_car_model": 75, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63764, + "fields": { + "id_car_model": 655, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63765, + "fields": { + "id_car_model": 20187, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63766, + "fields": { + "id_car_model": 1129, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63767, + "fields": { + "id_car_model": 1129, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63768, + "fields": { + "id_car_model": 1129, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63769, + "fields": { + "id_car_model": 1129, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63770, + "fields": { + "id_car_model": 1129, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63771, + "fields": { + "id_car_model": 1129, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63772, + "fields": { + "id_car_model": 1473, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63773, + "fields": { + "id_car_model": 1473, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63774, + "fields": { + "id_car_model": 19939, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63775, + "fields": { + "id_car_model": 19939, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63776, + "fields": { + "id_car_model": 542, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63777, + "fields": { + "id_car_model": 594, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63778, + "fields": { + "id_car_model": 647, + "name": "Hatchback 5 doors Active", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63779, + "fields": { + "id_car_model": 758, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63780, + "fields": { + "id_car_model": 922, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63781, + "fields": { + "id_car_model": 922, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63782, + "fields": { + "id_car_model": 922, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63783, + "fields": { + "id_car_model": 922, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63784, + "fields": { + "id_car_model": 922, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63785, + "fields": { + "id_car_model": 922, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63786, + "fields": { + "id_car_model": 922, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63787, + "fields": { + "id_car_model": 922, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63788, + "fields": { + "id_car_model": 1132, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63789, + "fields": { + "id_car_model": 1132, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63790, + "fields": { + "id_car_model": 1354, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63791, + "fields": { + "id_car_model": 1354, + "name": "wagon 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63792, + "fields": { + "id_car_model": 1354, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63793, + "fields": { + "id_car_model": 1354, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63794, + "fields": { + "id_car_model": 23142, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63795, + "fields": { + "id_car_model": 1716, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63796, + "fields": { + "id_car_model": 1716, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63797, + "fields": { + "id_car_model": 1716, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63798, + "fields": { + "id_car_model": 19777, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63799, + "fields": { + "id_car_model": 19777, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63800, + "fields": { + "id_car_model": 818, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63801, + "fields": { + "id_car_model": 818, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63802, + "fields": { + "id_car_model": 818, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63803, + "fields": { + "id_car_model": 818, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63804, + "fields": { + "id_car_model": 818, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63805, + "fields": { + "id_car_model": 943, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63806, + "fields": { + "id_car_model": 1279, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63807, + "fields": { + "id_car_model": 1279, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63808, + "fields": { + "id_car_model": 1279, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63809, + "fields": { + "id_car_model": 1426, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63810, + "fields": { + "id_car_model": 1426, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63811, + "fields": { + "id_car_model": 1718, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63812, + "fields": { + "id_car_model": 1718, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63813, + "fields": { + "id_car_model": 1718, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63814, + "fields": { + "id_car_model": 1718, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63815, + "fields": { + "id_car_model": 1718, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63816, + "fields": { + "id_car_model": 233, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63817, + "fields": { + "id_car_model": 19914, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63818, + "fields": { + "id_car_model": 19914, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63819, + "fields": { + "id_car_model": 652, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63820, + "fields": { + "id_car_model": 652, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63821, + "fields": { + "id_car_model": 22803, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63822, + "fields": { + "id_car_model": 22803, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63823, + "fields": { + "id_car_model": 2347, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63824, + "fields": { + "id_car_model": 2347, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63825, + "fields": { + "id_car_model": 2347, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63826, + "fields": { + "id_car_model": 1362, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63827, + "fields": { + "id_car_model": 23149, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63828, + "fields": { + "id_car_model": 1874, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63829, + "fields": { + "id_car_model": 1874, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63830, + "fields": { + "id_car_model": 76, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63831, + "fields": { + "id_car_model": 76, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63832, + "fields": { + "id_car_model": 76, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63833, + "fields": { + "id_car_model": 76, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63834, + "fields": { + "id_car_model": 78, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63835, + "fields": { + "id_car_model": 78, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63836, + "fields": { + "id_car_model": 78, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63837, + "fields": { + "id_car_model": 82, + "name": "Hatchback 5 doors Sportback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63838, + "fields": { + "id_car_model": 82, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63839, + "fields": { + "id_car_model": 82, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63840, + "fields": { + "id_car_model": 83, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63841, + "fields": { + "id_car_model": 85, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63842, + "fields": { + "id_car_model": 85, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63843, + "fields": { + "id_car_model": 22774, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63844, + "fields": { + "id_car_model": 22774, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63845, + "fields": { + "id_car_model": 22774, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63846, + "fields": { + "id_car_model": 22774, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63847, + "fields": { + "id_car_model": 22774, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63848, + "fields": { + "id_car_model": 22774, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63849, + "fields": { + "id_car_model": 94, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63850, + "fields": { + "id_car_model": 97, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63851, + "fields": { + "id_car_model": 102, + "name": "Liftback Sportback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63852, + "fields": { + "id_car_model": 102, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63853, + "fields": { + "id_car_model": 103, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63854, + "fields": { + "id_car_model": 103, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63855, + "fields": { + "id_car_model": 109, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63856, + "fields": { + "id_car_model": 109, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63857, + "fields": { + "id_car_model": 100, + "name": "Hatchback 5 doors Sportback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63858, + "fields": { + "id_car_model": 100, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63859, + "fields": { + "id_car_model": 100, + "name": "Hatchback 5 doors Sportback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63860, + "fields": { + "id_car_model": 100, + "name": "Hatchback 5 doors Sportback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63861, + "fields": { + "id_car_model": 101, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63862, + "fields": { + "id_car_model": 23310, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63863, + "fields": { + "id_car_model": 106, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63864, + "fields": { + "id_car_model": 107, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63865, + "fields": { + "id_car_model": 107, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63866, + "fields": { + "id_car_model": 107, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63867, + "fields": { + "id_car_model": 107, + "name": "Hatchback 5 doors Sportback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63868, + "fields": { + "id_car_model": 19772, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63869, + "fields": { + "id_car_model": 19772, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63870, + "fields": { + "id_car_model": 19772, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63871, + "fields": { + "id_car_model": 19772, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63872, + "fields": { + "id_car_model": 22779, + "name": "Compactvan Gran Tourer", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63873, + "fields": { + "id_car_model": 19775, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63874, + "fields": { + "id_car_model": 19775, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63875, + "fields": { + "id_car_model": 19775, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63876, + "fields": { + "id_car_model": 19775, + "name": "Liftback Gran Turismo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63877, + "fields": { + "id_car_model": 19775, + "name": "Liftback Gran Turismo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63878, + "fields": { + "id_car_model": 19775, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63879, + "fields": { + "id_car_model": 19775, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63880, + "fields": { + "id_car_model": 19775, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63881, + "fields": { + "id_car_model": 19776, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63882, + "fields": { + "id_car_model": 19778, + "name": "Liftback Gran Turismo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63883, + "fields": { + "id_car_model": 2314, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63884, + "fields": { + "id_car_model": 2316, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63885, + "fields": { + "id_car_model": 2317, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63886, + "fields": { + "id_car_model": 22678, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63887, + "fields": { + "id_car_model": 22678, + "name": "Sedan Gran Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63888, + "fields": { + "id_car_model": 22467, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63889, + "fields": { + "id_car_model": 2320, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63890, + "fields": { + "id_car_model": 160, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63891, + "fields": { + "id_car_model": 262, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63892, + "fields": { + "id_car_model": 264, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63893, + "fields": { + "id_car_model": 264, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63894, + "fields": { + "id_car_model": 264, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63895, + "fields": { + "id_car_model": 264, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63896, + "fields": { + "id_car_model": 268, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63897, + "fields": { + "id_car_model": 268, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63899, + "fields": { + "id_car_model": 276, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63900, + "fields": { + "id_car_model": 280, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63901, + "fields": { + "id_car_model": 280, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63902, + "fields": { + "id_car_model": 280, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63903, + "fields": { + "id_car_model": 280, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63904, + "fields": { + "id_car_model": 280, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63905, + "fields": { + "id_car_model": 280, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63906, + "fields": { + "id_car_model": 280, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63907, + "fields": { + "id_car_model": 280, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63908, + "fields": { + "id_car_model": 280, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63909, + "fields": { + "id_car_model": 282, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63910, + "fields": { + "id_car_model": 282, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63911, + "fields": { + "id_car_model": 284, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63912, + "fields": { + "id_car_model": 295, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63913, + "fields": { + "id_car_model": 295, + "name": "Hatchback 5 doors Maxx", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63914, + "fields": { + "id_car_model": 295, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63915, + "fields": { + "id_car_model": 23429, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63916, + "fields": { + "id_car_model": 2220, + "name": "Pickup Single cabin Regular", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63917, + "fields": { + "id_car_model": 2220, + "name": "Pickup Double cabin Double", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63918, + "fields": { + "id_car_model": 309, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63919, + "fields": { + "id_car_model": 309, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63920, + "fields": { + "id_car_model": 312, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63921, + "fields": { + "id_car_model": 312, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63922, + "fields": { + "id_car_model": 312, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63923, + "fields": { + "id_car_model": 313, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63924, + "fields": { + "id_car_model": 313, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63925, + "fields": { + "id_car_model": 315, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63926, + "fields": { + "id_car_model": 315, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63927, + "fields": { + "id_car_model": 23430, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63928, + "fields": { + "id_car_model": 259, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63929, + "fields": { + "id_car_model": 259, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63930, + "fields": { + "id_car_model": 19696, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63931, + "fields": { + "id_car_model": 19696, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63932, + "fields": { + "id_car_model": 19832, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63933, + "fields": { + "id_car_model": 19832, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63934, + "fields": { + "id_car_model": 19832, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63935, + "fields": { + "id_car_model": 19697, + "name": "Sedan 2 doors Styleline", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63936, + "fields": { + "id_car_model": 298, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63937, + "fields": { + "id_car_model": 299, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63938, + "fields": { + "id_car_model": 345, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63939, + "fields": { + "id_car_model": 354, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63940, + "fields": { + "id_car_model": 354, + "name": "Cabriolet Pluriel", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63941, + "fields": { + "id_car_model": 354, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63942, + "fields": { + "id_car_model": 22409, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63943, + "fields": { + "id_car_model": 358, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63944, + "fields": { + "id_car_model": 358, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63945, + "fields": { + "id_car_model": 358, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63946, + "fields": { + "id_car_model": 361, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63947, + "fields": { + "id_car_model": 374, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63948, + "fields": { + "id_car_model": 374, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63949, + "fields": { + "id_car_model": 373, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63950, + "fields": { + "id_car_model": 373, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63951, + "fields": { + "id_car_model": 375, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63952, + "fields": { + "id_car_model": 19520, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63953, + "fields": { + "id_car_model": 19520, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63957, + "fields": { + "id_car_model": 395, + "name": "Microvan Coach", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63958, + "fields": { + "id_car_model": 400, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63959, + "fields": { + "id_car_model": 402, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63960, + "fields": { + "id_car_model": 403, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63961, + "fields": { + "id_car_model": 22784, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63962, + "fields": { + "id_car_model": 409, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63963, + "fields": { + "id_car_model": 410, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63964, + "fields": { + "id_car_model": 410, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63965, + "fields": { + "id_car_model": 626, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63966, + "fields": { + "id_car_model": 626, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63967, + "fields": { + "id_car_model": 626, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63968, + "fields": { + "id_car_model": 626, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63969, + "fields": { + "id_car_model": 626, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63970, + "fields": { + "id_car_model": 626, + "name": "wagon 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63971, + "fields": { + "id_car_model": 626, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63972, + "fields": { + "id_car_model": 2328, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63973, + "fields": { + "id_car_model": 653, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63974, + "fields": { + "id_car_model": 653, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63975, + "fields": { + "id_car_model": 653, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63977, + "fields": { + "id_car_model": 663, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63978, + "fields": { + "id_car_model": 663, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63979, + "fields": { + "id_car_model": 663, + "name": "wagon 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63980, + "fields": { + "id_car_model": 663, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63981, + "fields": { + "id_car_model": 612, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63982, + "fields": { + "id_car_model": 614, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63983, + "fields": { + "id_car_model": 614, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63984, + "fields": { + "id_car_model": 23431, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63985, + "fields": { + "id_car_model": 633, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63986, + "fields": { + "id_car_model": 19068, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63987, + "fields": { + "id_car_model": 666, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63988, + "fields": { + "id_car_model": 20078, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63989, + "fields": { + "id_car_model": 20078, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63990, + "fields": { + "id_car_model": 753, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63991, + "fields": { + "id_car_model": 753, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63992, + "fields": { + "id_car_model": 753, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63993, + "fields": { + "id_car_model": 756, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63994, + "fields": { + "id_car_model": 761, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63995, + "fields": { + "id_car_model": 761, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63996, + "fields": { + "id_car_model": 761, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 63997, + "fields": { + "id_car_model": 761, + "name": "wagon 5 doors Shuttle", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64000, + "fields": { + "id_car_model": 777, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64001, + "fields": { + "id_car_model": 780, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64002, + "fields": { + "id_car_model": 780, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64003, + "fields": { + "id_car_model": 782, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64005, + "fields": { + "id_car_model": 782, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64006, + "fields": { + "id_car_model": 783, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64007, + "fields": { + "id_car_model": 802, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64008, + "fields": { + "id_car_model": 20154, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64009, + "fields": { + "id_car_model": 19570, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64010, + "fields": { + "id_car_model": 20157, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64011, + "fields": { + "id_car_model": 22789, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64012, + "fields": { + "id_car_model": 22490, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64013, + "fields": { + "id_car_model": 20166, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64014, + "fields": { + "id_car_model": 20166, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64015, + "fields": { + "id_car_model": 20166, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64016, + "fields": { + "id_car_model": 23413, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64017, + "fields": { + "id_car_model": 20167, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64018, + "fields": { + "id_car_model": 22791, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64019, + "fields": { + "id_car_model": 22791, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64020, + "fields": { + "id_car_model": 20164, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64021, + "fields": { + "id_car_model": 798, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64022, + "fields": { + "id_car_model": 800, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64023, + "fields": { + "id_car_model": 800, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64024, + "fields": { + "id_car_model": 805, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64025, + "fields": { + "id_car_model": 806, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64026, + "fields": { + "id_car_model": 806, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64027, + "fields": { + "id_car_model": 806, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64028, + "fields": { + "id_car_model": 806, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64029, + "fields": { + "id_car_model": 811, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64030, + "fields": { + "id_car_model": 820, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64031, + "fields": { + "id_car_model": 19707, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64032, + "fields": { + "id_car_model": 20209, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64033, + "fields": { + "id_car_model": 20209, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64034, + "fields": { + "id_car_model": 857, + "name": "Hatchback 4 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64035, + "fields": { + "id_car_model": 859, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64036, + "fields": { + "id_car_model": 859, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64037, + "fields": { + "id_car_model": 859, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64038, + "fields": { + "id_car_model": 859, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64039, + "fields": { + "id_car_model": 833, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64040, + "fields": { + "id_car_model": 833, + "name": "Hatchback 5 doors Active", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64041, + "fields": { + "id_car_model": 833, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64042, + "fields": { + "id_car_model": 833, + "name": "Hatchback 5 doors Active", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64043, + "fields": { + "id_car_model": 834, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64044, + "fields": { + "id_car_model": 834, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64045, + "fields": { + "id_car_model": 834, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64046, + "fields": { + "id_car_model": 834, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64047, + "fields": { + "id_car_model": 834, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64048, + "fields": { + "id_car_model": 834, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64049, + "fields": { + "id_car_model": 834, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64050, + "fields": { + "id_car_model": 834, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64051, + "fields": { + "id_car_model": 834, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64052, + "fields": { + "id_car_model": 834, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64055, + "fields": { + "id_car_model": 832, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64056, + "fields": { + "id_car_model": 832, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64057, + "fields": { + "id_car_model": 832, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64058, + "fields": { + "id_car_model": 22565, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64059, + "fields": { + "id_car_model": 844, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64060, + "fields": { + "id_car_model": 844, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64061, + "fields": { + "id_car_model": 844, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64063, + "fields": { + "id_car_model": 22795, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64064, + "fields": { + "id_car_model": 22796, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64065, + "fields": { + "id_car_model": 22796, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64066, + "fields": { + "id_car_model": 22796, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64067, + "fields": { + "id_car_model": 22796, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64068, + "fields": { + "id_car_model": 22799, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64069, + "fields": { + "id_car_model": 22800, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64070, + "fields": { + "id_car_model": 870, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64072, + "fields": { + "id_car_model": 22805, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64073, + "fields": { + "id_car_model": 22805, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64074, + "fields": { + "id_car_model": 22805, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64075, + "fields": { + "id_car_model": 22805, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64076, + "fields": { + "id_car_model": 22805, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64077, + "fields": { + "id_car_model": 22805, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64078, + "fields": { + "id_car_model": 22805, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64079, + "fields": { + "id_car_model": 22805, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64080, + "fields": { + "id_car_model": 22805, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64081, + "fields": { + "id_car_model": 22805, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64082, + "fields": { + "id_car_model": 22805, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64083, + "fields": { + "id_car_model": 22805, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64084, + "fields": { + "id_car_model": 22805, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64085, + "fields": { + "id_car_model": 22805, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64086, + "fields": { + "id_car_model": 22806, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64087, + "fields": { + "id_car_model": 22806, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64088, + "fields": { + "id_car_model": 22806, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64089, + "fields": { + "id_car_model": 22806, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64090, + "fields": { + "id_car_model": 22806, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64091, + "fields": { + "id_car_model": 940, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64094, + "fields": { + "id_car_model": 941, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64095, + "fields": { + "id_car_model": 20264, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64096, + "fields": { + "id_car_model": 20264, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64097, + "fields": { + "id_car_model": 20264, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64098, + "fields": { + "id_car_model": 20264, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64099, + "fields": { + "id_car_model": 20267, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64100, + "fields": { + "id_car_model": 20271, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64103, + "fields": { + "id_car_model": 20274, + "name": "Minivan Grand", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64104, + "fields": { + "id_car_model": 952, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64105, + "fields": { + "id_car_model": 952, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64106, + "fields": { + "id_car_model": 952, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64107, + "fields": { + "id_car_model": 952, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64108, + "fields": { + "id_car_model": 952, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64109, + "fields": { + "id_car_model": 955, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64110, + "fields": { + "id_car_model": 959, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64111, + "fields": { + "id_car_model": 960, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64113, + "fields": { + "id_car_model": 962, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64114, + "fields": { + "id_car_model": 22812, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64115, + "fields": { + "id_car_model": 20266, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64116, + "fields": { + "id_car_model": 20266, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64117, + "fields": { + "id_car_model": 20266, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64118, + "fields": { + "id_car_model": 1999, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64119, + "fields": { + "id_car_model": 1999, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64120, + "fields": { + "id_car_model": 2000, + "name": "SUV 5 doors Tarzan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64121, + "fields": { + "id_car_model": 2009, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64122, + "fields": { + "id_car_model": 2009, + "name": "SUV 3 doors Bronto", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64123, + "fields": { + "id_car_model": 2009, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64124, + "fields": { + "id_car_model": 22834, + "name": "SUV 5 doors Urban", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64125, + "fields": { + "id_car_model": 22834, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64127, + "fields": { + "id_car_model": 23433, + "name": "SUV 5 doors Off-road", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64128, + "fields": { + "id_car_model": 22845, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64129, + "fields": { + "id_car_model": 1022, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64130, + "fields": { + "id_car_model": 1024, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64131, + "fields": { + "id_car_model": 1024, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64132, + "fields": { + "id_car_model": 1123, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64133, + "fields": { + "id_car_model": 1125, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64134, + "fields": { + "id_car_model": 1125, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64135, + "fields": { + "id_car_model": 1125, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64136, + "fields": { + "id_car_model": 1133, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64137, + "fields": { + "id_car_model": 1133, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64138, + "fields": { + "id_car_model": 1141, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64139, + "fields": { + "id_car_model": 1140, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64140, + "fields": { + "id_car_model": 1142, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64141, + "fields": { + "id_car_model": 1142, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64142, + "fields": { + "id_car_model": 1142, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64143, + "fields": { + "id_car_model": 1148, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64144, + "fields": { + "id_car_model": 1156, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64145, + "fields": { + "id_car_model": 1156, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64146, + "fields": { + "id_car_model": 1156, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64147, + "fields": { + "id_car_model": 1156, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64148, + "fields": { + "id_car_model": 1156, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64149, + "fields": { + "id_car_model": 1156, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64150, + "fields": { + "id_car_model": 1156, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64151, + "fields": { + "id_car_model": 1156, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64152, + "fields": { + "id_car_model": 1156, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64153, + "fields": { + "id_car_model": 1170, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64154, + "fields": { + "id_car_model": 1170, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64155, + "fields": { + "id_car_model": 1136, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64156, + "fields": { + "id_car_model": 1136, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64157, + "fields": { + "id_car_model": 1136, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64158, + "fields": { + "id_car_model": 1136, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64159, + "fields": { + "id_car_model": 1136, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64160, + "fields": { + "id_car_model": 1136, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64161, + "fields": { + "id_car_model": 1136, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64162, + "fields": { + "id_car_model": 19204, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64163, + "fields": { + "id_car_model": 20327, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64164, + "fields": { + "id_car_model": 23434, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64165, + "fields": { + "id_car_model": 20349, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64166, + "fields": { + "id_car_model": 20350, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64167, + "fields": { + "id_car_model": 20350, + "name": "wagon 5 doors All-Terrain", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64168, + "fields": { + "id_car_model": 20350, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64169, + "fields": { + "id_car_model": 20350, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64170, + "fields": { + "id_car_model": 20350, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64171, + "fields": { + "id_car_model": 20350, + "name": "Limousine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64172, + "fields": { + "id_car_model": 20355, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64173, + "fields": { + "id_car_model": 20355, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64174, + "fields": { + "id_car_model": 20355, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64175, + "fields": { + "id_car_model": 20351, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64176, + "fields": { + "id_car_model": 22850, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64177, + "fields": { + "id_car_model": 22850, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64178, + "fields": { + "id_car_model": 19718, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64179, + "fields": { + "id_car_model": 22851, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64180, + "fields": { + "id_car_model": 22851, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64181, + "fields": { + "id_car_model": 18966, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64182, + "fields": { + "id_car_model": 2350, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64183, + "fields": { + "id_car_model": 2352, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64184, + "fields": { + "id_car_model": 2352, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64185, + "fields": { + "id_car_model": 1213, + "name": "Limousine Limousine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64186, + "fields": { + "id_car_model": 1214, + "name": "Limousine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64187, + "fields": { + "id_car_model": 23274, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64188, + "fields": { + "id_car_model": 22860, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64189, + "fields": { + "id_car_model": 22860, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64190, + "fields": { + "id_car_model": 22861, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64191, + "fields": { + "id_car_model": 22861, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64193, + "fields": { + "id_car_model": 1267, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64194, + "fields": { + "id_car_model": 1267, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64195, + "fields": { + "id_car_model": 1271, + "name": "wagon 5 doors Plus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64196, + "fields": { + "id_car_model": 1271, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64197, + "fields": { + "id_car_model": 1271, + "name": "Cabriolet CZC", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64198, + "fields": { + "id_car_model": 1271, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64199, + "fields": { + "id_car_model": 1271, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64200, + "fields": { + "id_car_model": 1271, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64201, + "fields": { + "id_car_model": 1271, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64202, + "fields": { + "id_car_model": 1271, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64203, + "fields": { + "id_car_model": 1271, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64204, + "fields": { + "id_car_model": 1271, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64206, + "fields": { + "id_car_model": 1276, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64207, + "fields": { + "id_car_model": 1284, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64208, + "fields": { + "id_car_model": 1290, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64209, + "fields": { + "id_car_model": 1290, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64210, + "fields": { + "id_car_model": 1290, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64211, + "fields": { + "id_car_model": 1290, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64212, + "fields": { + "id_car_model": 1290, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64213, + "fields": { + "id_car_model": 1293, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64214, + "fields": { + "id_car_model": 1293, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64215, + "fields": { + "id_car_model": 1293, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64216, + "fields": { + "id_car_model": 1293, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64217, + "fields": { + "id_car_model": 1293, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64218, + "fields": { + "id_car_model": 1293, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64219, + "fields": { + "id_car_model": 1293, + "name": "wagon 5 doors Wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64220, + "fields": { + "id_car_model": 1293, + "name": "Hatchback 3 doors Celeste", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64221, + "fields": { + "id_car_model": 1293, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64222, + "fields": { + "id_car_model": 1297, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64223, + "fields": { + "id_car_model": 1297, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64224, + "fields": { + "id_car_model": 1297, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64225, + "fields": { + "id_car_model": 1297, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64226, + "fields": { + "id_car_model": 1297, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64227, + "fields": { + "id_car_model": 1297, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64228, + "fields": { + "id_car_model": 1297, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64229, + "fields": { + "id_car_model": 1301, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64230, + "fields": { + "id_car_model": 1301, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64232, + "fields": { + "id_car_model": 1306, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64233, + "fields": { + "id_car_model": 1310, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64234, + "fields": { + "id_car_model": 1310, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64235, + "fields": { + "id_car_model": 1310, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64236, + "fields": { + "id_car_model": 1310, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64237, + "fields": { + "id_car_model": 1315, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64238, + "fields": { + "id_car_model": 22864, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64239, + "fields": { + "id_car_model": 22867, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64240, + "fields": { + "id_car_model": 22868, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64241, + "fields": { + "id_car_model": 22868, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64242, + "fields": { + "id_car_model": 22869, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64243, + "fields": { + "id_car_model": 22869, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64244, + "fields": { + "id_car_model": 22870, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64245, + "fields": { + "id_car_model": 22870, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64246, + "fields": { + "id_car_model": 1282, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64247, + "fields": { + "id_car_model": 22871, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64248, + "fields": { + "id_car_model": 22871, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64249, + "fields": { + "id_car_model": 22567, + "name": "SUV 5 doors Cross", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64250, + "fields": { + "id_car_model": 1356, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64251, + "fields": { + "id_car_model": 1366, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64252, + "fields": { + "id_car_model": 1390, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64253, + "fields": { + "id_car_model": 1390, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64254, + "fields": { + "id_car_model": 1390, + "name": "wagon 5 doors March Box", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64255, + "fields": { + "id_car_model": 1392, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64256, + "fields": { + "id_car_model": 1392, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64257, + "fields": { + "id_car_model": 1392, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64258, + "fields": { + "id_car_model": 1395, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64259, + "fields": { + "id_car_model": 1395, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64260, + "fields": { + "id_car_model": 1396, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64261, + "fields": { + "id_car_model": 1397, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64262, + "fields": { + "id_car_model": 1404, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64263, + "fields": { + "id_car_model": 2121, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64264, + "fields": { + "id_car_model": 2121, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64265, + "fields": { + "id_car_model": 2121, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64266, + "fields": { + "id_car_model": 2121, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64267, + "fields": { + "id_car_model": 19073, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64268, + "fields": { + "id_car_model": 19073, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64269, + "fields": { + "id_car_model": 2130, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64270, + "fields": { + "id_car_model": 2130, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64271, + "fields": { + "id_car_model": 2130, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64272, + "fields": { + "id_car_model": 2134, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64273, + "fields": { + "id_car_model": 2134, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64274, + "fields": { + "id_car_model": 2134, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64275, + "fields": { + "id_car_model": 2134, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64276, + "fields": { + "id_car_model": 2137, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64277, + "fields": { + "id_car_model": 2139, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64278, + "fields": { + "id_car_model": 2139, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64279, + "fields": { + "id_car_model": 2139, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64280, + "fields": { + "id_car_model": 2139, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64281, + "fields": { + "id_car_model": 2139, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64282, + "fields": { + "id_car_model": 2139, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64283, + "fields": { + "id_car_model": 2139, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64284, + "fields": { + "id_car_model": 2139, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64285, + "fields": { + "id_car_model": 2139, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64286, + "fields": { + "id_car_model": 1346, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64287, + "fields": { + "id_car_model": 1348, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64288, + "fields": { + "id_car_model": 1350, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64289, + "fields": { + "id_car_model": 1353, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64290, + "fields": { + "id_car_model": 1353, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64291, + "fields": { + "id_car_model": 23435, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64292, + "fields": { + "id_car_model": 1365, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64293, + "fields": { + "id_car_model": 1376, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64294, + "fields": { + "id_car_model": 1376, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64295, + "fields": { + "id_car_model": 1376, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64296, + "fields": { + "id_car_model": 1376, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64297, + "fields": { + "id_car_model": 1376, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64298, + "fields": { + "id_car_model": 1376, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64299, + "fields": { + "id_car_model": 1377, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64300, + "fields": { + "id_car_model": 1379, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64301, + "fields": { + "id_car_model": 1379, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64302, + "fields": { + "id_car_model": 1379, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64303, + "fields": { + "id_car_model": 1379, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64304, + "fields": { + "id_car_model": 1379, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64305, + "fields": { + "id_car_model": 20446, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64306, + "fields": { + "id_car_model": 1385, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64307, + "fields": { + "id_car_model": 1385, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64308, + "fields": { + "id_car_model": 20453, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64309, + "fields": { + "id_car_model": 20453, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64310, + "fields": { + "id_car_model": 20453, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64311, + "fields": { + "id_car_model": 1400, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64312, + "fields": { + "id_car_model": 2126, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64313, + "fields": { + "id_car_model": 2128, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64314, + "fields": { + "id_car_model": 2129, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64315, + "fields": { + "id_car_model": 2129, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64316, + "fields": { + "id_car_model": 2129, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64317, + "fields": { + "id_car_model": 2129, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64318, + "fields": { + "id_car_model": 2143, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64319, + "fields": { + "id_car_model": 2143, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64320, + "fields": { + "id_car_model": 2143, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64321, + "fields": { + "id_car_model": 1427, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64322, + "fields": { + "id_car_model": 1427, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64323, + "fields": { + "id_car_model": 1427, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64324, + "fields": { + "id_car_model": 1427, + "name": "Hatchback 3 doors GTC", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64325, + "fields": { + "id_car_model": 1427, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64326, + "fields": { + "id_car_model": 1427, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64327, + "fields": { + "id_car_model": 1427, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64328, + "fields": { + "id_car_model": 1427, + "name": "Hatchback 3 doors GTC", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64329, + "fields": { + "id_car_model": 1427, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64330, + "fields": { + "id_car_model": 1427, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64331, + "fields": { + "id_car_model": 1431, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64332, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64333, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64334, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64335, + "fields": { + "id_car_model": 2356, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64336, + "fields": { + "id_car_model": 1437, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64337, + "fields": { + "id_car_model": 1437, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64338, + "fields": { + "id_car_model": 1438, + "name": "wagon 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64339, + "fields": { + "id_car_model": 1438, + "name": "wagon 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64340, + "fields": { + "id_car_model": 1438, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64341, + "fields": { + "id_car_model": 1438, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64342, + "fields": { + "id_car_model": 1438, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64343, + "fields": { + "id_car_model": 1445, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64344, + "fields": { + "id_car_model": 1450, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64345, + "fields": { + "id_car_model": 1451, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64346, + "fields": { + "id_car_model": 1451, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64347, + "fields": { + "id_car_model": 1451, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64348, + "fields": { + "id_car_model": 1451, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64349, + "fields": { + "id_car_model": 1451, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64350, + "fields": { + "id_car_model": 1423, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64351, + "fields": { + "id_car_model": 1423, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64352, + "fields": { + "id_car_model": 22881, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64353, + "fields": { + "id_car_model": 1467, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64354, + "fields": { + "id_car_model": 1471, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64355, + "fields": { + "id_car_model": 1471, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64356, + "fields": { + "id_car_model": 1471, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64357, + "fields": { + "id_car_model": 1474, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64358, + "fields": { + "id_car_model": 1474, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64359, + "fields": { + "id_car_model": 1474, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64360, + "fields": { + "id_car_model": 1481, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64361, + "fields": { + "id_car_model": 1481, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64362, + "fields": { + "id_car_model": 1489, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64363, + "fields": { + "id_car_model": 1489, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64365, + "fields": { + "id_car_model": 1536, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64366, + "fields": { + "id_car_model": 1536, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64367, + "fields": { + "id_car_model": 20510, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64368, + "fields": { + "id_car_model": 1546, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64369, + "fields": { + "id_car_model": 23406, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64370, + "fields": { + "id_car_model": 1549, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64371, + "fields": { + "id_car_model": 1549, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64372, + "fields": { + "id_car_model": 1549, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64375, + "fields": { + "id_car_model": 1588, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64376, + "fields": { + "id_car_model": 1588, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64377, + "fields": { + "id_car_model": 1588, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64378, + "fields": { + "id_car_model": 1588, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64379, + "fields": { + "id_car_model": 1588, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64380, + "fields": { + "id_car_model": 1588, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64381, + "fields": { + "id_car_model": 2363, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64382, + "fields": { + "id_car_model": 19139, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64383, + "fields": { + "id_car_model": 19737, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64384, + "fields": { + "id_car_model": 2365, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64386, + "fields": { + "id_car_model": 1607, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64387, + "fields": { + "id_car_model": 1573, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64388, + "fields": { + "id_car_model": 1575, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64389, + "fields": { + "id_car_model": 1583, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64390, + "fields": { + "id_car_model": 1583, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64392, + "fields": { + "id_car_model": 1587, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64393, + "fields": { + "id_car_model": 1587, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64394, + "fields": { + "id_car_model": 1611, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64395, + "fields": { + "id_car_model": 22885, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64396, + "fields": { + "id_car_model": 22885, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64397, + "fields": { + "id_car_model": 22885, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64398, + "fields": { + "id_car_model": 22885, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64399, + "fields": { + "id_car_model": 22887, + "name": "wagon 5 doors 1202", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64400, + "fields": { + "id_car_model": 22887, + "name": "wagon 3 doors 1201", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64401, + "fields": { + "id_car_model": 1683, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64402, + "fields": { + "id_car_model": 1683, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64403, + "fields": { + "id_car_model": 1683, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64404, + "fields": { + "id_car_model": 1683, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64405, + "fields": { + "id_car_model": 1683, + "name": "Hatchback 5 doors Scout", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64406, + "fields": { + "id_car_model": 1683, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64407, + "fields": { + "id_car_model": 1683, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64408, + "fields": { + "id_car_model": 1683, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64409, + "fields": { + "id_car_model": 1683, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64410, + "fields": { + "id_car_model": 20568, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64411, + "fields": { + "id_car_model": 22888, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64412, + "fields": { + "id_car_model": 1686, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64413, + "fields": { + "id_car_model": 1686, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64414, + "fields": { + "id_car_model": 1686, + "name": "wagon 5 doors Scout", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64415, + "fields": { + "id_car_model": 1686, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64416, + "fields": { + "id_car_model": 1686, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64417, + "fields": { + "id_car_model": 1686, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64418, + "fields": { + "id_car_model": 1686, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64419, + "fields": { + "id_car_model": 1686, + "name": "wagon 5 doors Scout", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64420, + "fields": { + "id_car_model": 1686, + "name": "wagon 5 doors Scout", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64421, + "fields": { + "id_car_model": 1686, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64422, + "fields": { + "id_car_model": 1686, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64423, + "fields": { + "id_car_model": 1686, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64424, + "fields": { + "id_car_model": 1686, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64425, + "fields": { + "id_car_model": 1686, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64426, + "fields": { + "id_car_model": 1686, + "name": "wagon 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64427, + "fields": { + "id_car_model": 2370, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64428, + "fields": { + "id_car_model": 1687, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64429, + "fields": { + "id_car_model": 1687, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64430, + "fields": { + "id_car_model": 1687, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64431, + "fields": { + "id_car_model": 1687, + "name": "wagon 5 doors Spaceback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64432, + "fields": { + "id_car_model": 1687, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64433, + "fields": { + "id_car_model": 22889, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64434, + "fields": { + "id_car_model": 1689, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64435, + "fields": { + "id_car_model": 1704, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64436, + "fields": { + "id_car_model": 1707, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64437, + "fields": { + "id_car_model": 23151, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64438, + "fields": { + "id_car_model": 1715, + "name": "wagon 5 doors Crossover 7", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64439, + "fields": { + "id_car_model": 1717, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64440, + "fields": { + "id_car_model": 2371, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64441, + "fields": { + "id_car_model": 2371, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64442, + "fields": { + "id_car_model": 2391, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64443, + "fields": { + "id_car_model": 2391, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64444, + "fields": { + "id_car_model": 2391, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64445, + "fields": { + "id_car_model": 1719, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64446, + "fields": { + "id_car_model": 1719, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64447, + "fields": { + "id_car_model": 1719, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64448, + "fields": { + "id_car_model": 20583, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64449, + "fields": { + "id_car_model": 20583, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64450, + "fields": { + "id_car_model": 20583, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64451, + "fields": { + "id_car_model": 1720, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64453, + "fields": { + "id_car_model": 1724, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64454, + "fields": { + "id_car_model": 1724, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64455, + "fields": { + "id_car_model": 2231, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64456, + "fields": { + "id_car_model": 2392, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64457, + "fields": { + "id_car_model": 20576, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64458, + "fields": { + "id_car_model": 20576, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64459, + "fields": { + "id_car_model": 1740, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64460, + "fields": { + "id_car_model": 1740, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64461, + "fields": { + "id_car_model": 1740, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64462, + "fields": { + "id_car_model": 1740, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64463, + "fields": { + "id_car_model": 20591, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64464, + "fields": { + "id_car_model": 20591, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64465, + "fields": { + "id_car_model": 20591, + "name": "wagon 5 doors Crescent", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64466, + "fields": { + "id_car_model": 20591, + "name": "Sedan Crescent", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64467, + "fields": { + "id_car_model": 20591, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64468, + "fields": { + "id_car_model": 20591, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64469, + "fields": { + "id_car_model": 20591, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64470, + "fields": { + "id_car_model": 20591, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64471, + "fields": { + "id_car_model": 1745, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64472, + "fields": { + "id_car_model": 1745, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64473, + "fields": { + "id_car_model": 22481, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64474, + "fields": { + "id_car_model": 1746, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64475, + "fields": { + "id_car_model": 1746, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64476, + "fields": { + "id_car_model": 1746, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64477, + "fields": { + "id_car_model": 1747, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64478, + "fields": { + "id_car_model": 1747, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64479, + "fields": { + "id_car_model": 1747, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64482, + "fields": { + "id_car_model": 20609, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64483, + "fields": { + "id_car_model": 1758, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64484, + "fields": { + "id_car_model": 1758, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64486, + "fields": { + "id_car_model": 1810, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64487, + "fields": { + "id_car_model": 1810, + "name": "Sedan Celica Camry", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64488, + "fields": { + "id_car_model": 1812, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64489, + "fields": { + "id_car_model": 1812, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64490, + "fields": { + "id_car_model": 1812, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64491, + "fields": { + "id_car_model": 1812, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64492, + "fields": { + "id_car_model": 1812, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64493, + "fields": { + "id_car_model": 1812, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64494, + "fields": { + "id_car_model": 1812, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64495, + "fields": { + "id_car_model": 1812, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64496, + "fields": { + "id_car_model": 1812, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64497, + "fields": { + "id_car_model": 22894, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64498, + "fields": { + "id_car_model": 22894, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64499, + "fields": { + "id_car_model": 22894, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64500, + "fields": { + "id_car_model": 1814, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64501, + "fields": { + "id_car_model": 1814, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64502, + "fields": { + "id_car_model": 1814, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64503, + "fields": { + "id_car_model": 1814, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64504, + "fields": { + "id_car_model": 1814, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64505, + "fields": { + "id_car_model": 1817, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64506, + "fields": { + "id_car_model": 1817, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64507, + "fields": { + "id_car_model": 1817, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64508, + "fields": { + "id_car_model": 1817, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64509, + "fields": { + "id_car_model": 1818, + "name": "wagon 5 doors Fielder", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64510, + "fields": { + "id_car_model": 1818, + "name": "Sedan Axio", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64511, + "fields": { + "id_car_model": 1818, + "name": "wagon 5 doors Fielder", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64512, + "fields": { + "id_car_model": 1818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64513, + "fields": { + "id_car_model": 1818, + "name": "Hatchback 5 doors Runx", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64514, + "fields": { + "id_car_model": 1818, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64515, + "fields": { + "id_car_model": 1818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64516, + "fields": { + "id_car_model": 1818, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64517, + "fields": { + "id_car_model": 1818, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64518, + "fields": { + "id_car_model": 1818, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64519, + "fields": { + "id_car_model": 1818, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64520, + "fields": { + "id_car_model": 1818, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64521, + "fields": { + "id_car_model": 1818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64522, + "fields": { + "id_car_model": 1821, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64523, + "fields": { + "id_car_model": 1821, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64524, + "fields": { + "id_car_model": 1821, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64525, + "fields": { + "id_car_model": 1821, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64526, + "fields": { + "id_car_model": 1821, + "name": "Liftback T150", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64527, + "fields": { + "id_car_model": 1821, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64528, + "fields": { + "id_car_model": 1821, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64529, + "fields": { + "id_car_model": 1821, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64530, + "fields": { + "id_car_model": 1826, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64531, + "fields": { + "id_car_model": 1826, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64532, + "fields": { + "id_car_model": 1826, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64533, + "fields": { + "id_car_model": 1826, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64534, + "fields": { + "id_car_model": 1826, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64535, + "fields": { + "id_car_model": 1826, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64536, + "fields": { + "id_car_model": 1826, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64537, + "fields": { + "id_car_model": 1826, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64538, + "fields": { + "id_car_model": 1838, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64539, + "fields": { + "id_car_model": 1840, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64540, + "fields": { + "id_car_model": 1842, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64541, + "fields": { + "id_car_model": 1842, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64542, + "fields": { + "id_car_model": 1842, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64543, + "fields": { + "id_car_model": 1842, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64544, + "fields": { + "id_car_model": 1849, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64545, + "fields": { + "id_car_model": 1849, + "name": "SUV 5 doors Arctic Trucks", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64546, + "fields": { + "id_car_model": 1849, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64547, + "fields": { + "id_car_model": 1849, + "name": "SUV 5 doors 76", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64548, + "fields": { + "id_car_model": 1849, + "name": "Pickup Single cabin 79", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64549, + "fields": { + "id_car_model": 1849, + "name": "SUV 3 doors 78", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64550, + "fields": { + "id_car_model": 1849, + "name": "Pickup Double cabin 79", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64551, + "fields": { + "id_car_model": 1849, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64552, + "fields": { + "id_car_model": 1849, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64553, + "fields": { + "id_car_model": 1849, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64554, + "fields": { + "id_car_model": 1849, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64555, + "fields": { + "id_car_model": 1849, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64556, + "fields": { + "id_car_model": 1849, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64557, + "fields": { + "id_car_model": 1849, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64558, + "fields": { + "id_car_model": 1849, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64559, + "fields": { + "id_car_model": 1849, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64560, + "fields": { + "id_car_model": 1850, + "name": "SUV 5 doors Arctic Trucks", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64561, + "fields": { + "id_car_model": 1850, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64562, + "fields": { + "id_car_model": 1850, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64563, + "fields": { + "id_car_model": 1850, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64564, + "fields": { + "id_car_model": 2150, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64565, + "fields": { + "id_car_model": 2170, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64566, + "fields": { + "id_car_model": 2170, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64567, + "fields": { + "id_car_model": 2172, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64568, + "fields": { + "id_car_model": 2177, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64569, + "fields": { + "id_car_model": 2177, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64570, + "fields": { + "id_car_model": 2177, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64571, + "fields": { + "id_car_model": 2177, + "name": "SUV 5 doors Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64572, + "fields": { + "id_car_model": 2177, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64573, + "fields": { + "id_car_model": 2177, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64574, + "fields": { + "id_car_model": 2177, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64575, + "fields": { + "id_car_model": 2177, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64576, + "fields": { + "id_car_model": 2177, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64577, + "fields": { + "id_car_model": 2177, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64578, + "fields": { + "id_car_model": 2193, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64579, + "fields": { + "id_car_model": 2193, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64580, + "fields": { + "id_car_model": 2193, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64581, + "fields": { + "id_car_model": 2193, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64582, + "fields": { + "id_car_model": 2193, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64583, + "fields": { + "id_car_model": 2209, + "name": "wagon 5 doors Ardeo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64584, + "fields": { + "id_car_model": 2210, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64585, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64586, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64587, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64588, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64589, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64590, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64591, + "fields": { + "id_car_model": 2217, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64592, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64593, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64594, + "fields": { + "id_car_model": 2217, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64595, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64596, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64597, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64598, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64599, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64600, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64601, + "fields": { + "id_car_model": 1803, + "name": "Pickup One-and-a-half cabin Open deck", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64602, + "fields": { + "id_car_model": 20981, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64603, + "fields": { + "id_car_model": 1813, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64604, + "fields": { + "id_car_model": 1822, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64605, + "fields": { + "id_car_model": 1822, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64606, + "fields": { + "id_car_model": 1822, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64607, + "fields": { + "id_car_model": 1823, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64608, + "fields": { + "id_car_model": 1848, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64609, + "fields": { + "id_car_model": 1848, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64610, + "fields": { + "id_car_model": 1848, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64611, + "fields": { + "id_car_model": 2159, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64612, + "fields": { + "id_car_model": 2159, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64613, + "fields": { + "id_car_model": 2161, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64614, + "fields": { + "id_car_model": 2161, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64615, + "fields": { + "id_car_model": 2162, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64616, + "fields": { + "id_car_model": 23301, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64617, + "fields": { + "id_car_model": 2175, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64618, + "fields": { + "id_car_model": 2175, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64619, + "fields": { + "id_car_model": 23303, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64620, + "fields": { + "id_car_model": 2180, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64621, + "fields": { + "id_car_model": 2187, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64622, + "fields": { + "id_car_model": 2189, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64623, + "fields": { + "id_car_model": 2195, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64624, + "fields": { + "id_car_model": 2197, + "name": "Pickup Double cabin Double Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64625, + "fields": { + "id_car_model": 2198, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64626, + "fields": { + "id_car_model": 2198, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64627, + "fields": { + "id_car_model": 2204, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64628, + "fields": { + "id_car_model": 2207, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64629, + "fields": { + "id_car_model": 22907, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64630, + "fields": { + "id_car_model": 22907, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64631, + "fields": { + "id_car_model": 2233, + "name": "Pickup Single cabin Single Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64632, + "fields": { + "id_car_model": 1900, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64633, + "fields": { + "id_car_model": 1900, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64634, + "fields": { + "id_car_model": 1900, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64635, + "fields": { + "id_car_model": 1902, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64636, + "fields": { + "id_car_model": 1906, + "name": "Hatchback 5 doors Cross", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64637, + "fields": { + "id_car_model": 1906, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64638, + "fields": { + "id_car_model": 1906, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64639, + "fields": { + "id_car_model": 2377, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64640, + "fields": { + "id_car_model": 2377, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64641, + "fields": { + "id_car_model": 2377, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64642, + "fields": { + "id_car_model": 2378, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64643, + "fields": { + "id_car_model": 2378, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64644, + "fields": { + "id_car_model": 1912, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64645, + "fields": { + "id_car_model": 1921, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64646, + "fields": { + "id_car_model": 1921, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64647, + "fields": { + "id_car_model": 1921, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64648, + "fields": { + "id_car_model": 1921, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64649, + "fields": { + "id_car_model": 1921, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64651, + "fields": { + "id_car_model": 2236, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64652, + "fields": { + "id_car_model": 2236, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64653, + "fields": { + "id_car_model": 22910, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64654, + "fields": { + "id_car_model": 22912, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64655, + "fields": { + "id_car_model": 22914, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64656, + "fields": { + "id_car_model": 22914, + "name": "wagon 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64657, + "fields": { + "id_car_model": 22914, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64658, + "fields": { + "id_car_model": 22914, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64659, + "fields": { + "id_car_model": 1931, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64660, + "fields": { + "id_car_model": 1931, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64661, + "fields": { + "id_car_model": 22918, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64662, + "fields": { + "id_car_model": 22918, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64663, + "fields": { + "id_car_model": 22915, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64664, + "fields": { + "id_car_model": 22915, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64665, + "fields": { + "id_car_model": 1956, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64666, + "fields": { + "id_car_model": 22916, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64667, + "fields": { + "id_car_model": 22916, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64668, + "fields": { + "id_car_model": 1963, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64669, + "fields": { + "id_car_model": 22917, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64670, + "fields": { + "id_car_model": 22917, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64671, + "fields": { + "id_car_model": 22922, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64672, + "fields": { + "id_car_model": 2034, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64673, + "fields": { + "id_car_model": 2034, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64674, + "fields": { + "id_car_model": 2036, + "name": "Phaeton", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64675, + "fields": { + "id_car_model": 22927, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64676, + "fields": { + "id_car_model": 22928, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64677, + "fields": { + "id_car_model": 2100, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64678, + "fields": { + "id_car_model": 2101, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64679, + "fields": { + "id_car_model": 22347, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64680, + "fields": { + "id_car_model": 2, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64681, + "fields": { + "id_car_model": 9, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64682, + "fields": { + "id_car_model": 9, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64683, + "fields": { + "id_car_model": 11, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64685, + "fields": { + "id_car_model": 12, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64686, + "fields": { + "id_car_model": 22929, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64687, + "fields": { + "id_car_model": 21, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64688, + "fields": { + "id_car_model": 21, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64689, + "fields": { + "id_car_model": 22, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64690, + "fields": { + "id_car_model": 23, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64691, + "fields": { + "id_car_model": 23, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64692, + "fields": { + "id_car_model": 25, + "name": "wagon 5 doors Crosswagon Q4", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64693, + "fields": { + "id_car_model": 33, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64694, + "fields": { + "id_car_model": 40, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64695, + "fields": { + "id_car_model": 44, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64696, + "fields": { + "id_car_model": 47, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64697, + "fields": { + "id_car_model": 47, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64698, + "fields": { + "id_car_model": 47, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64699, + "fields": { + "id_car_model": 2299, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64700, + "fields": { + "id_car_model": 2299, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64701, + "fields": { + "id_car_model": 2299, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64702, + "fields": { + "id_car_model": 2299, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64703, + "fields": { + "id_car_model": 2299, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64704, + "fields": { + "id_car_model": 2299, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64705, + "fields": { + "id_car_model": 2299, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64706, + "fields": { + "id_car_model": 2299, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64707, + "fields": { + "id_car_model": 2299, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64708, + "fields": { + "id_car_model": 2300, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64709, + "fields": { + "id_car_model": 2300, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64710, + "fields": { + "id_car_model": 2301, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64711, + "fields": { + "id_car_model": 2301, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64712, + "fields": { + "id_car_model": 2301, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64713, + "fields": { + "id_car_model": 2301, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64714, + "fields": { + "id_car_model": 2301, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64715, + "fields": { + "id_car_model": 2301, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64716, + "fields": { + "id_car_model": 2302, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64717, + "fields": { + "id_car_model": 2302, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64718, + "fields": { + "id_car_model": 2302, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64719, + "fields": { + "id_car_model": 2302, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64720, + "fields": { + "id_car_model": 2302, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64721, + "fields": { + "id_car_model": 2309, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64722, + "fields": { + "id_car_model": 2309, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64723, + "fields": { + "id_car_model": 22931, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64724, + "fields": { + "id_car_model": 22931, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64725, + "fields": { + "id_car_model": 22931, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64726, + "fields": { + "id_car_model": 2310, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64727, + "fields": { + "id_car_model": 2312, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64728, + "fields": { + "id_car_model": 23294, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64729, + "fields": { + "id_car_model": 22933, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64730, + "fields": { + "id_car_model": 22934, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64731, + "fields": { + "id_car_model": 22935, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64732, + "fields": { + "id_car_model": 57, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64733, + "fields": { + "id_car_model": 62, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64734, + "fields": { + "id_car_model": 62, + "name": "Cabriolet Volante", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64736, + "fields": { + "id_car_model": 69, + "name": "Roadster Volante S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64737, + "fields": { + "id_car_model": 74, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64738, + "fields": { + "id_car_model": 22937, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64739, + "fields": { + "id_car_model": 22937, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64740, + "fields": { + "id_car_model": 23438, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64741, + "fields": { + "id_car_model": 20752, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64742, + "fields": { + "id_car_model": 20752, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64743, + "fields": { + "id_car_model": 124, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64744, + "fields": { + "id_car_model": 22940, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64745, + "fields": { + "id_car_model": 22941, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64746, + "fields": { + "id_car_model": 22942, + "name": "Hatchback 4 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64747, + "fields": { + "id_car_model": 19340, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64748, + "fields": { + "id_car_model": 131, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64749, + "fields": { + "id_car_model": 22945, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64750, + "fields": { + "id_car_model": 22945, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64751, + "fields": { + "id_car_model": 22945, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64752, + "fields": { + "id_car_model": 22945, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64753, + "fields": { + "id_car_model": 22945, + "name": "Coupe Continental", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64754, + "fields": { + "id_car_model": 22945, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64755, + "fields": { + "id_car_model": 23439, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64756, + "fields": { + "id_car_model": 22947, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64757, + "fields": { + "id_car_model": 22949, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64758, + "fields": { + "id_car_model": 22950, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64759, + "fields": { + "id_car_model": 22952, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64760, + "fields": { + "id_car_model": 22955, + "name": "targa Grand Sport", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64761, + "fields": { + "id_car_model": 185, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64762, + "fields": { + "id_car_model": 187, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64763, + "fields": { + "id_car_model": 2252, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64764, + "fields": { + "id_car_model": 188, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64765, + "fields": { + "id_car_model": 188, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64766, + "fields": { + "id_car_model": 22958, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64767, + "fields": { + "id_car_model": 22958, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64768, + "fields": { + "id_car_model": 196, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64769, + "fields": { + "id_car_model": 196, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64770, + "fields": { + "id_car_model": 196, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64771, + "fields": { + "id_car_model": 196, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64772, + "fields": { + "id_car_model": 196, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64773, + "fields": { + "id_car_model": 196, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64774, + "fields": { + "id_car_model": 22959, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64775, + "fields": { + "id_car_model": 22959, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64776, + "fields": { + "id_car_model": 22959, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64777, + "fields": { + "id_car_model": 22959, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64778, + "fields": { + "id_car_model": 22959, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64779, + "fields": { + "id_car_model": 217, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64780, + "fields": { + "id_car_model": 220, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64781, + "fields": { + "id_car_model": 22961, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64782, + "fields": { + "id_car_model": 22961, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64783, + "fields": { + "id_car_model": 22961, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64784, + "fields": { + "id_car_model": 22961, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64785, + "fields": { + "id_car_model": 22961, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64786, + "fields": { + "id_car_model": 22961, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64787, + "fields": { + "id_car_model": 22961, + "name": "Sedan 6-window", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64788, + "fields": { + "id_car_model": 22961, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64789, + "fields": { + "id_car_model": 2219, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64790, + "fields": { + "id_car_model": 223, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64792, + "fields": { + "id_car_model": 224, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64793, + "fields": { + "id_car_model": 19461, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64794, + "fields": { + "id_car_model": 22963, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64795, + "fields": { + "id_car_model": 238, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64796, + "fields": { + "id_car_model": 22966, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64797, + "fields": { + "id_car_model": 22967, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64798, + "fields": { + "id_car_model": 247, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64799, + "fields": { + "id_car_model": 249, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64800, + "fields": { + "id_car_model": 22979, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64801, + "fields": { + "id_car_model": 22980, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64802, + "fields": { + "id_car_model": 256, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64803, + "fields": { + "id_car_model": 22340, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64804, + "fields": { + "id_car_model": 22592, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64805, + "fields": { + "id_car_model": 2254, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64806, + "fields": { + "id_car_model": 22984, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64807, + "fields": { + "id_car_model": 22984, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64808, + "fields": { + "id_car_model": 23296, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64809, + "fields": { + "id_car_model": 327, + "name": "Sedan Custom", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64810, + "fields": { + "id_car_model": 327, + "name": "Coupe-Hardtop Custom", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64811, + "fields": { + "id_car_model": 327, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64812, + "fields": { + "id_car_model": 327, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64813, + "fields": { + "id_car_model": 327, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64814, + "fields": { + "id_car_model": 327, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64815, + "fields": { + "id_car_model": 327, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64816, + "fields": { + "id_car_model": 327, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64817, + "fields": { + "id_car_model": 327, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64818, + "fields": { + "id_car_model": 327, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64819, + "fields": { + "id_car_model": 327, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64820, + "fields": { + "id_car_model": 327, + "name": "Phaeton", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64821, + "fields": { + "id_car_model": 329, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64822, + "fields": { + "id_car_model": 329, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64823, + "fields": { + "id_car_model": 336, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64824, + "fields": { + "id_car_model": 335, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64825, + "fields": { + "id_car_model": 22987, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64826, + "fields": { + "id_car_model": 22988, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64827, + "fields": { + "id_car_model": 381, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64828, + "fields": { + "id_car_model": 381, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64829, + "fields": { + "id_car_model": 22989, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64830, + "fields": { + "id_car_model": 386, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64831, + "fields": { + "id_car_model": 389, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64832, + "fields": { + "id_car_model": 422, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64833, + "fields": { + "id_car_model": 424, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64834, + "fields": { + "id_car_model": 23304, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64835, + "fields": { + "id_car_model": 430, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64836, + "fields": { + "id_car_model": 430, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64837, + "fields": { + "id_car_model": 439, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64838, + "fields": { + "id_car_model": 22993, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64839, + "fields": { + "id_car_model": 22993, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64840, + "fields": { + "id_car_model": 22993, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64841, + "fields": { + "id_car_model": 440, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64842, + "fields": { + "id_car_model": 22997, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64843, + "fields": { + "id_car_model": 22997, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64844, + "fields": { + "id_car_model": 19699, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64845, + "fields": { + "id_car_model": 449, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64846, + "fields": { + "id_car_model": 449, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64847, + "fields": { + "id_car_model": 441, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64848, + "fields": { + "id_car_model": 19960, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64849, + "fields": { + "id_car_model": 470, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64850, + "fields": { + "id_car_model": 470, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64851, + "fields": { + "id_car_model": 474, + "name": "Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64852, + "fields": { + "id_car_model": 23440, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64853, + "fields": { + "id_car_model": 23002, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64854, + "fields": { + "id_car_model": 23004, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64855, + "fields": { + "id_car_model": 489, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64856, + "fields": { + "id_car_model": 19971, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64857, + "fields": { + "id_car_model": 23006, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64858, + "fields": { + "id_car_model": 23006, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64859, + "fields": { + "id_car_model": 23007, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64860, + "fields": { + "id_car_model": 493, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64861, + "fields": { + "id_car_model": 19975, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64862, + "fields": { + "id_car_model": 19975, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64863, + "fields": { + "id_car_model": 506, + "name": "Pickup Double cabin Quad Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64864, + "fields": { + "id_car_model": 506, + "name": "Pickup Double cabin Quad Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64865, + "fields": { + "id_car_model": 508, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64866, + "fields": { + "id_car_model": 512, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64867, + "fields": { + "id_car_model": 19983, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64868, + "fields": { + "id_car_model": 23011, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64869, + "fields": { + "id_car_model": 23013, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64870, + "fields": { + "id_car_model": 516, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64871, + "fields": { + "id_car_model": 519, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64872, + "fields": { + "id_car_model": 23288, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64873, + "fields": { + "id_car_model": 23018, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64874, + "fields": { + "id_car_model": 23019, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64875, + "fields": { + "id_car_model": 23020, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64876, + "fields": { + "id_car_model": 523, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64877, + "fields": { + "id_car_model": 20965, + "name": "Phaeton", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64878, + "fields": { + "id_car_model": 20767, + "name": "Phaeton", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64879, + "fields": { + "id_car_model": 20767, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64880, + "fields": { + "id_car_model": 23441, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64881, + "fields": { + "id_car_model": 20951, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64882, + "fields": { + "id_car_model": 543, + "name": "Speedster Barchetta", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64883, + "fields": { + "id_car_model": 547, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64884, + "fields": { + "id_car_model": 551, + "name": "Roadster Barchetta", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64885, + "fields": { + "id_car_model": 23022, + "name": "Roadster Superamerica", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64886, + "fields": { + "id_car_model": 553, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64887, + "fields": { + "id_car_model": 23024, + "name": "Roadster GTS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64888, + "fields": { + "id_car_model": 23026, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64889, + "fields": { + "id_car_model": 22649, + "name": "Roadster Spider", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64890, + "fields": { + "id_car_model": 562, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64891, + "fields": { + "id_car_model": 19614, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64892, + "fields": { + "id_car_model": 574, + "name": "Cabriolet Abarth", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64894, + "fields": { + "id_car_model": 585, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64895, + "fields": { + "id_car_model": 589, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64896, + "fields": { + "id_car_model": 20942, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64898, + "fields": { + "id_car_model": 595, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64899, + "fields": { + "id_car_model": 596, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64900, + "fields": { + "id_car_model": 596, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64901, + "fields": { + "id_car_model": 596, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64902, + "fields": { + "id_car_model": 596, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64903, + "fields": { + "id_car_model": 596, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64904, + "fields": { + "id_car_model": 596, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64905, + "fields": { + "id_car_model": 596, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64906, + "fields": { + "id_car_model": 606, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64907, + "fields": { + "id_car_model": 606, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64908, + "fields": { + "id_car_model": 567, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64909, + "fields": { + "id_car_model": 672, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64911, + "fields": { + "id_car_model": 23034, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64912, + "fields": { + "id_car_model": 23442, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64913, + "fields": { + "id_car_model": 23035, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64914, + "fields": { + "id_car_model": 23414, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64915, + "fields": { + "id_car_model": 22511, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64916, + "fields": { + "id_car_model": 23038, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64917, + "fields": { + "id_car_model": 23039, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64918, + "fields": { + "id_car_model": 23040, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64919, + "fields": { + "id_car_model": 23317, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64920, + "fields": { + "id_car_model": 690, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64921, + "fields": { + "id_car_model": 690, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64922, + "fields": { + "id_car_model": 23291, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64923, + "fields": { + "id_car_model": 702, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64924, + "fields": { + "id_car_model": 702, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64926, + "fields": { + "id_car_model": 708, + "name": "SUV 5 doors XL", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64927, + "fields": { + "id_car_model": 23041, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64928, + "fields": { + "id_car_model": 712, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64929, + "fields": { + "id_car_model": 23043, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64930, + "fields": { + "id_car_model": 716, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64931, + "fields": { + "id_car_model": 23044, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64932, + "fields": { + "id_car_model": 23045, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64933, + "fields": { + "id_car_model": 23045, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64934, + "fields": { + "id_car_model": 23048, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64935, + "fields": { + "id_car_model": 23049, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64936, + "fields": { + "id_car_model": 742, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64937, + "fields": { + "id_car_model": 742, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64938, + "fields": { + "id_car_model": 750, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64939, + "fields": { + "id_car_model": 750, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64940, + "fields": { + "id_car_model": 817, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64941, + "fields": { + "id_car_model": 23055, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64942, + "fields": { + "id_car_model": 20223, + "name": "wagon 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64943, + "fields": { + "id_car_model": 20223, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64944, + "fields": { + "id_car_model": 891, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64945, + "fields": { + "id_car_model": 891, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64946, + "fields": { + "id_car_model": 893, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64947, + "fields": { + "id_car_model": 894, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64948, + "fields": { + "id_car_model": 894, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64949, + "fields": { + "id_car_model": 894, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64950, + "fields": { + "id_car_model": 23058, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64951, + "fields": { + "id_car_model": 23061, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64952, + "fields": { + "id_car_model": 23061, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64953, + "fields": { + "id_car_model": 23062, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64954, + "fields": { + "id_car_model": 23062, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64955, + "fields": { + "id_car_model": 23063, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64956, + "fields": { + "id_car_model": 915, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64957, + "fields": { + "id_car_model": 915, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64958, + "fields": { + "id_car_model": 915, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64959, + "fields": { + "id_car_model": 918, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64960, + "fields": { + "id_car_model": 918, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64961, + "fields": { + "id_car_model": 921, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64962, + "fields": { + "id_car_model": 2332, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64966, + "fields": { + "id_car_model": 20248, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64967, + "fields": { + "id_car_model": 22802, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64968, + "fields": { + "id_car_model": 22804, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64969, + "fields": { + "id_car_model": 931, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64970, + "fields": { + "id_car_model": 23065, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64971, + "fields": { + "id_car_model": 23065, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64972, + "fields": { + "id_car_model": 977, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64973, + "fields": { + "id_car_model": 983, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64974, + "fields": { + "id_car_model": 23068, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64975, + "fields": { + "id_car_model": 20285, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64976, + "fields": { + "id_car_model": 988, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64977, + "fields": { + "id_car_model": 990, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64978, + "fields": { + "id_car_model": 20286, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64979, + "fields": { + "id_car_model": 20286, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64980, + "fields": { + "id_car_model": 1004, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64981, + "fields": { + "id_car_model": 1006, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64982, + "fields": { + "id_car_model": 1006, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64983, + "fields": { + "id_car_model": 23073, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64984, + "fields": { + "id_car_model": 19142, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64985, + "fields": { + "id_car_model": 1037, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64986, + "fields": { + "id_car_model": 20295, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64987, + "fields": { + "id_car_model": 1038, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64988, + "fields": { + "id_car_model": 1038, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64989, + "fields": { + "id_car_model": 23079, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64990, + "fields": { + "id_car_model": 1043, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64991, + "fields": { + "id_car_model": 23082, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64992, + "fields": { + "id_car_model": 1048, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64993, + "fields": { + "id_car_model": 1048, + "name": "SUV 5 doors L", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64994, + "fields": { + "id_car_model": 20301, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64995, + "fields": { + "id_car_model": 20303, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64996, + "fields": { + "id_car_model": 20303, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64997, + "fields": { + "id_car_model": 20303, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64998, + "fields": { + "id_car_model": 1054, + "name": "wagon 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 64999, + "fields": { + "id_car_model": 1061, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65000, + "fields": { + "id_car_model": 1061, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65001, + "fields": { + "id_car_model": 23085, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65002, + "fields": { + "id_car_model": 23086, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65003, + "fields": { + "id_car_model": 23087, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65004, + "fields": { + "id_car_model": 1084, + "name": "Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65005, + "fields": { + "id_car_model": 1096, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65006, + "fields": { + "id_car_model": 1107, + "name": "Cabriolet GranCabrio", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65007, + "fields": { + "id_car_model": 1183, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65008, + "fields": { + "id_car_model": 20372, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65009, + "fields": { + "id_car_model": 1216, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65010, + "fields": { + "id_car_model": 1220, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65011, + "fields": { + "id_car_model": 1224, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65012, + "fields": { + "id_car_model": 1226, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65013, + "fields": { + "id_car_model": 1226, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65014, + "fields": { + "id_car_model": 1227, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65015, + "fields": { + "id_car_model": 23090, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65016, + "fields": { + "id_car_model": 23091, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65017, + "fields": { + "id_car_model": 23092, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65018, + "fields": { + "id_car_model": 1243, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65019, + "fields": { + "id_car_model": 1244, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65020, + "fields": { + "id_car_model": 1247, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65021, + "fields": { + "id_car_model": 1254, + "name": "Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65022, + "fields": { + "id_car_model": 1256, + "name": "wagon 5 doors JCW", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65023, + "fields": { + "id_car_model": 1256, + "name": "Hatchback 3 doors Cooper S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65024, + "fields": { + "id_car_model": 1256, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65025, + "fields": { + "id_car_model": 1258, + "name": "SUV 5 doors Cooper S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65026, + "fields": { + "id_car_model": 1260, + "name": "Hatchback 3 doors JCW", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65027, + "fields": { + "id_car_model": 1260, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65028, + "fields": { + "id_car_model": 1261, + "name": "Hatchback 3 doors JCW", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65030, + "fields": { + "id_car_model": 1338, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65031, + "fields": { + "id_car_model": 1342, + "name": "Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65032, + "fields": { + "id_car_model": 1343, + "name": "Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65033, + "fields": { + "id_car_model": 1412, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65034, + "fields": { + "id_car_model": 1416, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65035, + "fields": { + "id_car_model": 1416, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65036, + "fields": { + "id_car_model": 23099, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65037, + "fields": { + "id_car_model": 23099, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65038, + "fields": { + "id_car_model": 23099, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65039, + "fields": { + "id_car_model": 23100, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65040, + "fields": { + "id_car_model": 23100, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65041, + "fields": { + "id_car_model": 23101, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65042, + "fields": { + "id_car_model": 23101, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65043, + "fields": { + "id_car_model": 23101, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65044, + "fields": { + "id_car_model": 23102, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65045, + "fields": { + "id_car_model": 23102, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65046, + "fields": { + "id_car_model": 23103, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65047, + "fields": { + "id_car_model": 23103, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65048, + "fields": { + "id_car_model": 23103, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65049, + "fields": { + "id_car_model": 23105, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65050, + "fields": { + "id_car_model": 23106, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65051, + "fields": { + "id_car_model": 1463, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65052, + "fields": { + "id_car_model": 19290, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65053, + "fields": { + "id_car_model": 19290, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65054, + "fields": { + "id_car_model": 23107, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65055, + "fields": { + "id_car_model": 22461, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65056, + "fields": { + "id_car_model": 22461, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65057, + "fields": { + "id_car_model": 1513, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65058, + "fields": { + "id_car_model": 1513, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65059, + "fields": { + "id_car_model": 1517, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65060, + "fields": { + "id_car_model": 1517, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65061, + "fields": { + "id_car_model": 1524, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65062, + "fields": { + "id_car_model": 1524, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65063, + "fields": { + "id_car_model": 1524, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65064, + "fields": { + "id_car_model": 1524, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65065, + "fields": { + "id_car_model": 1535, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65066, + "fields": { + "id_car_model": 20509, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65067, + "fields": { + "id_car_model": 20509, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65068, + "fields": { + "id_car_model": 20509, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65069, + "fields": { + "id_car_model": 20509, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65070, + "fields": { + "id_car_model": 23110, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65071, + "fields": { + "id_car_model": 1555, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65072, + "fields": { + "id_car_model": 22624, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65073, + "fields": { + "id_car_model": 23112, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65074, + "fields": { + "id_car_model": 23113, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65075, + "fields": { + "id_car_model": 19141, + "name": "targa Alpha", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65076, + "fields": { + "id_car_model": 23123, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65077, + "fields": { + "id_car_model": 23123, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65078, + "fields": { + "id_car_model": 23125, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65079, + "fields": { + "id_car_model": 1618, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65080, + "fields": { + "id_car_model": 1618, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65081, + "fields": { + "id_car_model": 1622, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65082, + "fields": { + "id_car_model": 22623, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65083, + "fields": { + "id_car_model": 22623, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65084, + "fields": { + "id_car_model": 22623, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65085, + "fields": { + "id_car_model": 22623, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65086, + "fields": { + "id_car_model": 22623, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65087, + "fields": { + "id_car_model": 22623, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65088, + "fields": { + "id_car_model": 22623, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65089, + "fields": { + "id_car_model": 22622, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65090, + "fields": { + "id_car_model": 22622, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65091, + "fields": { + "id_car_model": 22622, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65092, + "fields": { + "id_car_model": 1629, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65093, + "fields": { + "id_car_model": 23128, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65094, + "fields": { + "id_car_model": 23128, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65095, + "fields": { + "id_car_model": 23128, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65096, + "fields": { + "id_car_model": 20540, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65097, + "fields": { + "id_car_model": 23129, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65098, + "fields": { + "id_car_model": 23130, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65099, + "fields": { + "id_car_model": 1636, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65101, + "fields": { + "id_car_model": 1636, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65102, + "fields": { + "id_car_model": 1638, + "name": "wagon 5 doors SportCombi", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65103, + "fields": { + "id_car_model": 1638, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65104, + "fields": { + "id_car_model": 1638, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65105, + "fields": { + "id_car_model": 1640, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65106, + "fields": { + "id_car_model": 1641, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65107, + "fields": { + "id_car_model": 1641, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65108, + "fields": { + "id_car_model": 1642, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65109, + "fields": { + "id_car_model": 1644, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65110, + "fields": { + "id_car_model": 1645, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65111, + "fields": { + "id_car_model": 23132, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65112, + "fields": { + "id_car_model": 23132, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65113, + "fields": { + "id_car_model": 23133, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65114, + "fields": { + "id_car_model": 23133, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65115, + "fields": { + "id_car_model": 23133, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65116, + "fields": { + "id_car_model": 23443, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65117, + "fields": { + "id_car_model": 1669, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65118, + "fields": { + "id_car_model": 1669, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65119, + "fields": { + "id_car_model": 1670, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65120, + "fields": { + "id_car_model": 1670, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65121, + "fields": { + "id_car_model": 2367, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65122, + "fields": { + "id_car_model": 20558, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65123, + "fields": { + "id_car_model": 1674, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65124, + "fields": { + "id_car_model": 1674, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65125, + "fields": { + "id_car_model": 23141, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65126, + "fields": { + "id_car_model": 23148, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65127, + "fields": { + "id_car_model": 23148, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65128, + "fields": { + "id_car_model": 23148, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65131, + "fields": { + "id_car_model": 1775, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65132, + "fields": { + "id_car_model": 1776, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65133, + "fields": { + "id_car_model": 23155, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65134, + "fields": { + "id_car_model": 20964, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65135, + "fields": { + "id_car_model": 23307, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65136, + "fields": { + "id_car_model": 23159, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65137, + "fields": { + "id_car_model": 1785, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65138, + "fields": { + "id_car_model": 1859, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65139, + "fields": { + "id_car_model": 1863, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65140, + "fields": { + "id_car_model": 1864, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65141, + "fields": { + "id_car_model": 1867, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65142, + "fields": { + "id_car_model": 23136, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65143, + "fields": { + "id_car_model": 22625, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65144, + "fields": { + "id_car_model": 1877, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65145, + "fields": { + "id_car_model": 1878, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65146, + "fields": { + "id_car_model": 1878, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65147, + "fields": { + "id_car_model": 1878, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65148, + "fields": { + "id_car_model": 1878, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65149, + "fields": { + "id_car_model": 1878, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65150, + "fields": { + "id_car_model": 1878, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65151, + "fields": { + "id_car_model": 22631, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65152, + "fields": { + "id_car_model": 22631, + "name": "wagon 5 doors Country Tourer", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65153, + "fields": { + "id_car_model": 22631, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65154, + "fields": { + "id_car_model": 22631, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65155, + "fields": { + "id_car_model": 22631, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65156, + "fields": { + "id_car_model": 22631, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65157, + "fields": { + "id_car_model": 22634, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65158, + "fields": { + "id_car_model": 1885, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65159, + "fields": { + "id_car_model": 23137, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65160, + "fields": { + "id_car_model": 23137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65161, + "fields": { + "id_car_model": 23137, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65162, + "fields": { + "id_car_model": 1892, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65163, + "fields": { + "id_car_model": 1892, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65164, + "fields": { + "id_car_model": 1892, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65165, + "fields": { + "id_car_model": 1892, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65167, + "fields": { + "id_car_model": 23167, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65168, + "fields": { + "id_car_model": 1969, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65169, + "fields": { + "id_car_model": 23444, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65170, + "fields": { + "id_car_model": 23170, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65171, + "fields": { + "id_car_model": 23172, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65172, + "fields": { + "id_car_model": 23172, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65173, + "fields": { + "id_car_model": 20984, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65174, + "fields": { + "id_car_model": 23173, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65175, + "fields": { + "id_car_model": 23174, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65176, + "fields": { + "id_car_model": 23175, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65177, + "fields": { + "id_car_model": 1982, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65178, + "fields": { + "id_car_model": 1984, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65179, + "fields": { + "id_car_model": 23178, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65180, + "fields": { + "id_car_model": 23180, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65181, + "fields": { + "id_car_model": 20723, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65182, + "fields": { + "id_car_model": 20723, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65183, + "fields": { + "id_car_model": 2051, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65184, + "fields": { + "id_car_model": 2081, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65185, + "fields": { + "id_car_model": 2086, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65186, + "fields": { + "id_car_model": 656, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 65187, + "fields": { + "id_car_model": 656, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66517, + "fields": { + "id_car_model": 248, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66836, + "fields": { + "id_car_model": 1692, + "name": "Speedster Crossblade", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66837, + "fields": { + "id_car_model": 19690, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66838, + "fields": { + "id_car_model": 23220, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66839, + "fields": { + "id_car_model": 107, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66840, + "fields": { + "id_car_model": 107, + "name": "Hatchback 5 doors Sportback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66841, + "fields": { + "id_car_model": 22777, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66842, + "fields": { + "id_car_model": 19691, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66843, + "fields": { + "id_car_model": 22778, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66844, + "fields": { + "id_car_model": 2273, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66845, + "fields": { + "id_car_model": 2314, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66846, + "fields": { + "id_car_model": 2315, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66847, + "fields": { + "id_car_model": 270, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66849, + "fields": { + "id_car_model": 855, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66850, + "fields": { + "id_car_model": 22811, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66851, + "fields": { + "id_car_model": 1130, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66852, + "fields": { + "id_car_model": 1131, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66853, + "fields": { + "id_car_model": 20350, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66854, + "fields": { + "id_car_model": 20350, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66855, + "fields": { + "id_car_model": 20364, + "name": "Sedan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66856, + "fields": { + "id_car_model": 2339, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66857, + "fields": { + "id_car_model": 2339, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66858, + "fields": { + "id_car_model": 1432, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66859, + "fields": { + "id_car_model": 19288, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66860, + "fields": { + "id_car_model": 1593, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66861, + "fields": { + "id_car_model": 1737, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66862, + "fields": { + "id_car_model": 1737, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66863, + "fields": { + "id_car_model": 1737, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66864, + "fields": { + "id_car_model": 1737, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66865, + "fields": { + "id_car_model": 22892, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66866, + "fields": { + "id_car_model": 22892, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66867, + "fields": { + "id_car_model": 22892, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66868, + "fields": { + "id_car_model": 1739, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66869, + "fields": { + "id_car_model": 20593, + "name": "Pickup One-and-a-half cabin ExtendedCab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66870, + "fields": { + "id_car_model": 20593, + "name": "Pickup Double cabin CrewCab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66871, + "fields": { + "id_car_model": 20594, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66872, + "fields": { + "id_car_model": 20596, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66873, + "fields": { + "id_car_model": 23436, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66874, + "fields": { + "id_car_model": 22897, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66875, + "fields": { + "id_car_model": 22897, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66876, + "fields": { + "id_car_model": 22897, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66877, + "fields": { + "id_car_model": 22897, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66878, + "fields": { + "id_car_model": 22897, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66879, + "fields": { + "id_car_model": 22897, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66880, + "fields": { + "id_car_model": 22897, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66881, + "fields": { + "id_car_model": 20640, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66882, + "fields": { + "id_car_model": 20640, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66883, + "fields": { + "id_car_model": 1819, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66884, + "fields": { + "id_car_model": 1825, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66885, + "fields": { + "id_car_model": 22903, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66886, + "fields": { + "id_car_model": 20982, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66887, + "fields": { + "id_car_model": 22445, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66888, + "fields": { + "id_car_model": 23316, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66890, + "fields": { + "id_car_model": 23536, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66891, + "fields": { + "id_car_model": 23537, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66892, + "fields": { + "id_car_model": 23538, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66893, + "fields": { + "id_car_model": 23539, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66894, + "fields": { + "id_car_model": 23540, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66895, + "fields": { + "id_car_model": 22994, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66896, + "fields": { + "id_car_model": 22994, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66897, + "fields": { + "id_car_model": 22994, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66898, + "fields": { + "id_car_model": 19981, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66899, + "fields": { + "id_car_model": 23542, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66900, + "fields": { + "id_car_model": 23543, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66901, + "fields": { + "id_car_model": 1833, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66902, + "fields": { + "id_car_model": 1850, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66903, + "fields": { + "id_car_model": 1941, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66904, + "fields": { + "id_car_model": 19776, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66906, + "fields": { + "id_car_model": 23428, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66907, + "fields": { + "id_car_model": 357, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66908, + "fields": { + "id_car_model": 2292, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66909, + "fields": { + "id_car_model": 23031, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66910, + "fields": { + "id_car_model": 599, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66911, + "fields": { + "id_car_model": 599, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66912, + "fields": { + "id_car_model": 20156, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66913, + "fields": { + "id_car_model": 20156, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66914, + "fields": { + "id_car_model": 20156, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66915, + "fields": { + "id_car_model": 956, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66916, + "fields": { + "id_car_model": 1549, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66917, + "fields": { + "id_car_model": 1549, + "name": "Hatchback 5 doors Executive", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66918, + "fields": { + "id_car_model": 1549, + "name": "Hatchback 5 doors Executive", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66919, + "fields": { + "id_car_model": 22422, + "name": "Pickup Double cabin Crew Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66920, + "fields": { + "id_car_model": 22422, + "name": "Pickup Double cabin Crew Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66921, + "fields": { + "id_car_model": 22422, + "name": "Pickup Single cabin Regular Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66922, + "fields": { + "id_car_model": 22777, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66923, + "fields": { + "id_car_model": 113, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66924, + "fields": { + "id_car_model": 19800, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66925, + "fields": { + "id_car_model": 22781, + "name": "Hatchback 4 doors CA", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66926, + "fields": { + "id_car_model": 22781, + "name": "Cabriolet DA", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66927, + "fields": { + "id_car_model": 22781, + "name": "Coupe EA/ED", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66928, + "fields": { + "id_car_model": 782, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66929, + "fields": { + "id_car_model": 956, + "name": "Hatchback 5 doors X", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66930, + "fields": { + "id_car_model": 22857, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66931, + "fields": { + "id_car_model": 22857, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66932, + "fields": { + "id_car_model": 2122, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66933, + "fields": { + "id_car_model": 2130, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66934, + "fields": { + "id_car_model": 2136, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66935, + "fields": { + "id_car_model": 2136, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66936, + "fields": { + "id_car_model": 22880, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66937, + "fields": { + "id_car_model": 2147, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66938, + "fields": { + "id_car_model": 2147, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66939, + "fields": { + "id_car_model": 1477, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66940, + "fields": { + "id_car_model": 1712, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66941, + "fields": { + "id_car_model": 20578, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66942, + "fields": { + "id_car_model": 22890, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66943, + "fields": { + "id_car_model": 20579, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66944, + "fields": { + "id_car_model": 1763, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66945, + "fields": { + "id_car_model": 23420, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66946, + "fields": { + "id_car_model": 20982, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66947, + "fields": { + "id_car_model": 23552, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66948, + "fields": { + "id_car_model": 22919, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66949, + "fields": { + "id_car_model": 22919, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66950, + "fields": { + "id_car_model": 19934, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66951, + "fields": { + "id_car_model": 624, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66952, + "fields": { + "id_car_model": 2324, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66953, + "fields": { + "id_car_model": 2324, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66954, + "fields": { + "id_car_model": 23554, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66955, + "fields": { + "id_car_model": 698, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66956, + "fields": { + "id_car_model": 705, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66957, + "fields": { + "id_car_model": 22417, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66958, + "fields": { + "id_car_model": 19346, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66959, + "fields": { + "id_car_model": 918, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66960, + "fields": { + "id_car_model": 918, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66961, + "fields": { + "id_car_model": 1686, + "name": "wagon 5 doors Scout", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66962, + "fields": { + "id_car_model": 23555, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66963, + "fields": { + "id_car_model": 23556, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66964, + "fields": { + "id_car_model": 23557, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66965, + "fields": { + "id_car_model": 23558, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66966, + "fields": { + "id_car_model": 23559, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66967, + "fields": { + "id_car_model": 308, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66968, + "fields": { + "id_car_model": 308, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66969, + "fields": { + "id_car_model": 763, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66970, + "fields": { + "id_car_model": 20025, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66971, + "fields": { + "id_car_model": 23427, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66972, + "fields": { + "id_car_model": 23560, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66973, + "fields": { + "id_car_model": 808, + "name": "Microvan Hobio", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66974, + "fields": { + "id_car_model": 23051, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66975, + "fields": { + "id_car_model": 816, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66976, + "fields": { + "id_car_model": 816, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66977, + "fields": { + "id_car_model": 23297, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66978, + "fields": { + "id_car_model": 878, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66979, + "fields": { + "id_car_model": 23054, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66980, + "fields": { + "id_car_model": 909, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66981, + "fields": { + "id_car_model": 967, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66982, + "fields": { + "id_car_model": 19275, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66983, + "fields": { + "id_car_model": 19275, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66984, + "fields": { + "id_car_model": 19275, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66985, + "fields": { + "id_car_model": 19275, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66986, + "fields": { + "id_car_model": 19275, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66987, + "fields": { + "id_car_model": 23432, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66988, + "fields": { + "id_car_model": 824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66989, + "fields": { + "id_car_model": 22794, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66990, + "fields": { + "id_car_model": 22794, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66991, + "fields": { + "id_car_model": 22514, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66992, + "fields": { + "id_car_model": 22410, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66993, + "fields": { + "id_car_model": 20350, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66994, + "fields": { + "id_car_model": 2345, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66995, + "fields": { + "id_car_model": 2345, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66996, + "fields": { + "id_car_model": 2345, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66997, + "fields": { + "id_car_model": 2345, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66998, + "fields": { + "id_car_model": 2345, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 66999, + "fields": { + "id_car_model": 2345, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67000, + "fields": { + "id_car_model": 2345, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67001, + "fields": { + "id_car_model": 2345, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67002, + "fields": { + "id_car_model": 2345, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67003, + "fields": { + "id_car_model": 2345, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67004, + "fields": { + "id_car_model": 2348, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67005, + "fields": { + "id_car_model": 2348, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67006, + "fields": { + "id_car_model": 23311, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67007, + "fields": { + "id_car_model": 22854, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67008, + "fields": { + "id_car_model": 22854, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67009, + "fields": { + "id_car_model": 22855, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67010, + "fields": { + "id_car_model": 22855, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67011, + "fields": { + "id_car_model": 22856, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67012, + "fields": { + "id_car_model": 22856, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67013, + "fields": { + "id_car_model": 19464, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67014, + "fields": { + "id_car_model": 23534, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67015, + "fields": { + "id_car_model": 19575, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67016, + "fields": { + "id_car_model": 23563, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67017, + "fields": { + "id_car_model": 2370, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67018, + "fields": { + "id_car_model": 2370, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67019, + "fields": { + "id_car_model": 1743, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67020, + "fields": { + "id_car_model": 1904, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67021, + "fields": { + "id_car_model": 1904, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67022, + "fields": { + "id_car_model": 1910, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67023, + "fields": { + "id_car_model": 1910, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67024, + "fields": { + "id_car_model": 1908, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67025, + "fields": { + "id_car_model": 2377, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67026, + "fields": { + "id_car_model": 23535, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67027, + "fields": { + "id_car_model": 20681, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67028, + "fields": { + "id_car_model": 22913, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67029, + "fields": { + "id_car_model": 1916, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67030, + "fields": { + "id_car_model": 1916, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67031, + "fields": { + "id_car_model": 2380, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67032, + "fields": { + "id_car_model": 19883, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67033, + "fields": { + "id_car_model": 19883, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67034, + "fields": { + "id_car_model": 19341, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67035, + "fields": { + "id_car_model": 19895, + "name": "Hatchback 5 doors Cross", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67036, + "fields": { + "id_car_model": 19895, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67037, + "fields": { + "id_car_model": 19895, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67038, + "fields": { + "id_car_model": 796, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67039, + "fields": { + "id_car_model": 796, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67040, + "fields": { + "id_car_model": 796, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67041, + "fields": { + "id_car_model": 23561, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67042, + "fields": { + "id_car_model": 23562, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67043, + "fields": { + "id_car_model": 23567, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67044, + "fields": { + "id_car_model": 23568, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67045, + "fields": { + "id_car_model": 23569, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67046, + "fields": { + "id_car_model": 348, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67047, + "fields": { + "id_car_model": 626, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67048, + "fields": { + "id_car_model": 626, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67049, + "fields": { + "id_car_model": 626, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67050, + "fields": { + "id_car_model": 1991, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67051, + "fields": { + "id_car_model": 1995, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67052, + "fields": { + "id_car_model": 2017, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67053, + "fields": { + "id_car_model": 2017, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67054, + "fields": { + "id_car_model": 1140, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67055, + "fields": { + "id_car_model": 1140, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67056, + "fields": { + "id_car_model": 1140, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67057, + "fields": { + "id_car_model": 1147, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67058, + "fields": { + "id_car_model": 20405, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67059, + "fields": { + "id_car_model": 20408, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67060, + "fields": { + "id_car_model": 20408, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67061, + "fields": { + "id_car_model": 20409, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67062, + "fields": { + "id_car_model": 1291, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67063, + "fields": { + "id_car_model": 18967, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67064, + "fields": { + "id_car_model": 18967, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67065, + "fields": { + "id_car_model": 18967, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67066, + "fields": { + "id_car_model": 1296, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67067, + "fields": { + "id_car_model": 1296, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67068, + "fields": { + "id_car_model": 1296, + "name": "Hatchback 5 doors TOPPO", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67069, + "fields": { + "id_car_model": 1296, + "name": "Hatchback 3 doors TOPPO", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67070, + "fields": { + "id_car_model": 1296, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67071, + "fields": { + "id_car_model": 1296, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67072, + "fields": { + "id_car_model": 2242, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67073, + "fields": { + "id_car_model": 1317, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67074, + "fields": { + "id_car_model": 19723, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67075, + "fields": { + "id_car_model": 1318, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67076, + "fields": { + "id_car_model": 1319, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67077, + "fields": { + "id_car_model": 1359, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67078, + "fields": { + "id_car_model": 1391, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67079, + "fields": { + "id_car_model": 23574, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67080, + "fields": { + "id_car_model": 20457, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67081, + "fields": { + "id_car_model": 20457, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67082, + "fields": { + "id_car_model": 1441, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67083, + "fields": { + "id_car_model": 2227, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67084, + "fields": { + "id_car_model": 2227, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67085, + "fields": { + "id_car_model": 2227, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67086, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 3 doors GR", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67087, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67088, + "fields": { + "id_car_model": 1961, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67089, + "fields": { + "id_car_model": 23575, + "name": "Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67090, + "fields": { + "id_car_model": 23576, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67091, + "fields": { + "id_car_model": 19937, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67092, + "fields": { + "id_car_model": 19937, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67093, + "fields": { + "id_car_model": 19937, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67094, + "fields": { + "id_car_model": 23549, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67095, + "fields": { + "id_car_model": 23578, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67096, + "fields": { + "id_car_model": 23579, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67097, + "fields": { + "id_car_model": 23580, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67098, + "fields": { + "id_car_model": 23581, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67099, + "fields": { + "id_car_model": 23582, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67100, + "fields": { + "id_car_model": 23583, + "name": "Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67101, + "fields": { + "id_car_model": 286, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67102, + "fields": { + "id_car_model": 659, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67103, + "fields": { + "id_car_model": 611, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67104, + "fields": { + "id_car_model": 22671, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67105, + "fields": { + "id_car_model": 1393, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67106, + "fields": { + "id_car_model": 1394, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67107, + "fields": { + "id_car_model": 19206, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67108, + "fields": { + "id_car_model": 1491, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67109, + "fields": { + "id_car_model": 2246, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67110, + "fields": { + "id_car_model": 2229, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67111, + "fields": { + "id_car_model": 2229, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67112, + "fields": { + "id_car_model": 2229, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67113, + "fields": { + "id_car_model": 1501, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67114, + "fields": { + "id_car_model": 1501, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67115, + "fields": { + "id_car_model": 2362, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67116, + "fields": { + "id_car_model": 2185, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67117, + "fields": { + "id_car_model": 2185, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67118, + "fields": { + "id_car_model": 2193, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67119, + "fields": { + "id_car_model": 2193, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67120, + "fields": { + "id_car_model": 2191, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67121, + "fields": { + "id_car_model": 2192, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67122, + "fields": { + "id_car_model": 2199, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67123, + "fields": { + "id_car_model": 344, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67124, + "fields": { + "id_car_model": 334, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67125, + "fields": { + "id_car_model": 20209, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67126, + "fields": { + "id_car_model": 20209, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67127, + "fields": { + "id_car_model": 20209, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67128, + "fields": { + "id_car_model": 23577, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67129, + "fields": { + "id_car_model": 23548, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67130, + "fields": { + "id_car_model": 1782, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67131, + "fields": { + "id_car_model": 19396, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67132, + "fields": { + "id_car_model": 1826, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67133, + "fields": { + "id_car_model": 23161, + "name": "wagon 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67134, + "fields": { + "id_car_model": 23161, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67135, + "fields": { + "id_car_model": 23162, + "name": "wagon 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67136, + "fields": { + "id_car_model": 23162, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67137, + "fields": { + "id_car_model": 23585, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67138, + "fields": { + "id_car_model": 23586, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67139, + "fields": { + "id_car_model": 354, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67140, + "fields": { + "id_car_model": 395, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67141, + "fields": { + "id_car_model": 395, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67142, + "fields": { + "id_car_model": 642, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67143, + "fields": { + "id_car_model": 22788, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67144, + "fields": { + "id_car_model": 845, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67145, + "fields": { + "id_car_model": 22958, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67146, + "fields": { + "id_car_model": 348, + "name": "Van Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67147, + "fields": { + "id_car_model": 22439, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67148, + "fields": { + "id_car_model": 22679, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67149, + "fields": { + "id_car_model": 657, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67150, + "fields": { + "id_car_model": 891, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67151, + "fields": { + "id_car_model": 891, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67152, + "fields": { + "id_car_model": 20227, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67153, + "fields": { + "id_car_model": 23595, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67154, + "fields": { + "id_car_model": 1403, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67155, + "fields": { + "id_car_model": 2123, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67156, + "fields": { + "id_car_model": 1443, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67157, + "fields": { + "id_car_model": 1503, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67158, + "fields": { + "id_car_model": 1530, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67159, + "fields": { + "id_car_model": 22884, + "name": "wagon 5 doors Cross Turismo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67160, + "fields": { + "id_car_model": 1706, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67161, + "fields": { + "id_car_model": 1810, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67162, + "fields": { + "id_car_model": 1810, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67163, + "fields": { + "id_car_model": 21001, + "name": "wagon 5 doors Shooting Brake", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67164, + "fields": { + "id_car_model": 21001, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67165, + "fields": { + "id_car_model": 23597, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67166, + "fields": { + "id_car_model": 23598, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67167, + "fields": { + "id_car_model": 23599, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67168, + "fields": { + "id_car_model": 23600, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67169, + "fields": { + "id_car_model": 2316, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67170, + "fields": { + "id_car_model": 2274, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67171, + "fields": { + "id_car_model": 316, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67172, + "fields": { + "id_car_model": 270, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67173, + "fields": { + "id_car_model": 22782, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67174, + "fields": { + "id_car_model": 22782, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67175, + "fields": { + "id_car_model": 22782, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67176, + "fields": { + "id_car_model": 23570, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67177, + "fields": { + "id_car_model": 23570, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67178, + "fields": { + "id_car_model": 2221, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67179, + "fields": { + "id_car_model": 2221, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67180, + "fields": { + "id_car_model": 19613, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67181, + "fields": { + "id_car_model": 19903, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67182, + "fields": { + "id_car_model": 621, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67183, + "fields": { + "id_car_model": 621, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67184, + "fields": { + "id_car_model": 621, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67185, + "fields": { + "id_car_model": 649, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67186, + "fields": { + "id_car_model": 649, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67187, + "fields": { + "id_car_model": 649, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67188, + "fields": { + "id_car_model": 649, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67189, + "fields": { + "id_car_model": 23222, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67190, + "fields": { + "id_car_model": 20080, + "name": "Van LWB", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67191, + "fields": { + "id_car_model": 19404, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67192, + "fields": { + "id_car_model": 2330, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67193, + "fields": { + "id_car_model": 764, + "name": "Roadster del Sol", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67194, + "fields": { + "id_car_model": 764, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67195, + "fields": { + "id_car_model": 764, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67196, + "fields": { + "id_car_model": 820, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67197, + "fields": { + "id_car_model": 820, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67198, + "fields": { + "id_car_model": 22793, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67199, + "fields": { + "id_car_model": 22793, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67200, + "fields": { + "id_car_model": 22793, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67201, + "fields": { + "id_car_model": 850, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67202, + "fields": { + "id_car_model": 850, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67203, + "fields": { + "id_car_model": 23587, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67204, + "fields": { + "id_car_model": 938, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67205, + "fields": { + "id_car_model": 23588, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67206, + "fields": { + "id_car_model": 950, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67207, + "fields": { + "id_car_model": 22809, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67208, + "fields": { + "id_car_model": 20272, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67209, + "fields": { + "id_car_model": 19616, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67210, + "fields": { + "id_car_model": 23298, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67211, + "fields": { + "id_car_model": 954, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67212, + "fields": { + "id_car_model": 21005, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67213, + "fields": { + "id_car_model": 23433, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67214, + "fields": { + "id_car_model": 23589, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67215, + "fields": { + "id_car_model": 23589, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67216, + "fields": { + "id_car_model": 19571, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67217, + "fields": { + "id_car_model": 23550, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67218, + "fields": { + "id_car_model": 23074, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67219, + "fields": { + "id_car_model": 1143, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67220, + "fields": { + "id_car_model": 1143, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67221, + "fields": { + "id_car_model": 20324, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67222, + "fields": { + "id_car_model": 22847, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67223, + "fields": { + "id_car_model": 20328, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67224, + "fields": { + "id_car_model": 1169, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67225, + "fields": { + "id_car_model": 1169, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67226, + "fields": { + "id_car_model": 1169, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67227, + "fields": { + "id_car_model": 1169, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67228, + "fields": { + "id_car_model": 1169, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67229, + "fields": { + "id_car_model": 1169, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67230, + "fields": { + "id_car_model": 1169, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67231, + "fields": { + "id_car_model": 22849, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67232, + "fields": { + "id_car_model": 20349, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67233, + "fields": { + "id_car_model": 20349, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67234, + "fields": { + "id_car_model": 23571, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67235, + "fields": { + "id_car_model": 23571, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67236, + "fields": { + "id_car_model": 23571, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67237, + "fields": { + "id_car_model": 2340, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67238, + "fields": { + "id_car_model": 2340, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67239, + "fields": { + "id_car_model": 2340, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67240, + "fields": { + "id_car_model": 2342, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67241, + "fields": { + "id_car_model": 2342, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67242, + "fields": { + "id_car_model": 23572, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67243, + "fields": { + "id_car_model": 23573, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67244, + "fields": { + "id_car_model": 20998, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67245, + "fields": { + "id_car_model": 1269, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67246, + "fields": { + "id_car_model": 1269, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67247, + "fields": { + "id_car_model": 1274, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67248, + "fields": { + "id_car_model": 1274, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67249, + "fields": { + "id_car_model": 1274, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67250, + "fields": { + "id_car_model": 1274, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67251, + "fields": { + "id_car_model": 1363, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67252, + "fields": { + "id_car_model": 1367, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67253, + "fields": { + "id_car_model": 1367, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67254, + "fields": { + "id_car_model": 1367, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67255, + "fields": { + "id_car_model": 20438, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67256, + "fields": { + "id_car_model": 20438, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67257, + "fields": { + "id_car_model": 22875, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67258, + "fields": { + "id_car_model": 22875, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67259, + "fields": { + "id_car_model": 2127, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67260, + "fields": { + "id_car_model": 2127, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67261, + "fields": { + "id_car_model": 2245, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67262, + "fields": { + "id_car_model": 2245, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67263, + "fields": { + "id_car_model": 2144, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67264, + "fields": { + "id_car_model": 2144, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67265, + "fields": { + "id_car_model": 2145, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67266, + "fields": { + "id_car_model": 1424, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67267, + "fields": { + "id_car_model": 1431, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67268, + "fields": { + "id_car_model": 1431, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67269, + "fields": { + "id_car_model": 1431, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67270, + "fields": { + "id_car_model": 1431, + "name": "Van LWB", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67271, + "fields": { + "id_car_model": 22459, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67272, + "fields": { + "id_car_model": 19617, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67273, + "fields": { + "id_car_model": 19617, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67274, + "fields": { + "id_car_model": 1594, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67275, + "fields": { + "id_car_model": 1594, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67276, + "fields": { + "id_car_model": 1594, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67277, + "fields": { + "id_car_model": 1594, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67278, + "fields": { + "id_car_model": 1599, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67279, + "fields": { + "id_car_model": 1599, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67280, + "fields": { + "id_car_model": 19736, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67281, + "fields": { + "id_car_model": 1601, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67282, + "fields": { + "id_car_model": 19234, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67283, + "fields": { + "id_car_model": 19234, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67284, + "fields": { + "id_car_model": 2230, + "name": "Minivan L2", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67285, + "fields": { + "id_car_model": 2391, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67286, + "fields": { + "id_car_model": 23564, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67287, + "fields": { + "id_car_model": 23564, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67288, + "fields": { + "id_car_model": 23564, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67289, + "fields": { + "id_car_model": 1735, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67290, + "fields": { + "id_car_model": 20586, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67291, + "fields": { + "id_car_model": 20586, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67292, + "fields": { + "id_car_model": 20586, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67293, + "fields": { + "id_car_model": 20586, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67294, + "fields": { + "id_car_model": 20586, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67295, + "fields": { + "id_car_model": 1849, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67296, + "fields": { + "id_car_model": 1825, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67297, + "fields": { + "id_car_model": 20643, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67298, + "fields": { + "id_car_model": 20643, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67299, + "fields": { + "id_car_model": 20643, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67300, + "fields": { + "id_car_model": 1839, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67301, + "fields": { + "id_car_model": 1839, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67302, + "fields": { + "id_car_model": 1839, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67303, + "fields": { + "id_car_model": 1839, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67304, + "fields": { + "id_car_model": 1841, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67305, + "fields": { + "id_car_model": 1841, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67306, + "fields": { + "id_car_model": 1841, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67307, + "fields": { + "id_car_model": 2149, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67308, + "fields": { + "id_car_model": 22903, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67309, + "fields": { + "id_car_model": 1902, + "name": "Van Maxi", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67310, + "fields": { + "id_car_model": 1902, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67311, + "fields": { + "id_car_model": 1903, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67312, + "fields": { + "id_car_model": 1927, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67313, + "fields": { + "id_car_model": 2236, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67314, + "fields": { + "id_car_model": 2236, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67315, + "fields": { + "id_car_model": 2236, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67316, + "fields": { + "id_car_model": 2236, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67317, + "fields": { + "id_car_model": 2236, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67318, + "fields": { + "id_car_model": 2236, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67319, + "fields": { + "id_car_model": 2236, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67320, + "fields": { + "id_car_model": 2236, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67321, + "fields": { + "id_car_model": 2236, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67322, + "fields": { + "id_car_model": 2236, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67323, + "fields": { + "id_car_model": 23596, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67324, + "fields": { + "id_car_model": 23437, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67325, + "fields": { + "id_car_model": 23565, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67326, + "fields": { + "id_car_model": 22518, + "name": "Limousine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67327, + "fields": { + "id_car_model": 23553, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67328, + "fields": { + "id_car_model": 23590, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67329, + "fields": { + "id_car_model": 23591, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67330, + "fields": { + "id_car_model": 23592, + "name": "wagon 5 doors Sportstourer", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67331, + "fields": { + "id_car_model": 23592, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67332, + "fields": { + "id_car_model": 383, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67333, + "fields": { + "id_car_model": 386, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67334, + "fields": { + "id_car_model": 386, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67335, + "fields": { + "id_car_model": 388, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67336, + "fields": { + "id_car_model": 23593, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67337, + "fields": { + "id_car_model": 22998, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67338, + "fields": { + "id_car_model": 22998, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67339, + "fields": { + "id_car_model": 588, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67340, + "fields": { + "id_car_model": 588, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67341, + "fields": { + "id_car_model": 2222, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67342, + "fields": { + "id_car_model": 23541, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67343, + "fields": { + "id_car_model": 23594, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67344, + "fields": { + "id_car_model": 23544, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67345, + "fields": { + "id_car_model": 23544, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67346, + "fields": { + "id_car_model": 1007, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67347, + "fields": { + "id_car_model": 1010, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67348, + "fields": { + "id_car_model": 1009, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67349, + "fields": { + "id_car_model": 1009, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67350, + "fields": { + "id_car_model": 23601, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67351, + "fields": { + "id_car_model": 1061, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67352, + "fields": { + "id_car_model": 1106, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67353, + "fields": { + "id_car_model": 19715, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67354, + "fields": { + "id_car_model": 23602, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67355, + "fields": { + "id_car_model": 1115, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67356, + "fields": { + "id_car_model": 23603, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67357, + "fields": { + "id_car_model": 1255, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67358, + "fields": { + "id_car_model": 1260, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67359, + "fields": { + "id_car_model": 1260, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67360, + "fields": { + "id_car_model": 23118, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67361, + "fields": { + "id_car_model": 23119, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67362, + "fields": { + "id_car_model": 23546, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67363, + "fields": { + "id_car_model": 23547, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67364, + "fields": { + "id_car_model": 20541, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67365, + "fields": { + "id_car_model": 23154, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67366, + "fields": { + "id_car_model": 1769, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67367, + "fields": { + "id_car_model": 1707, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67368, + "fields": { + "id_car_model": 23604, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67369, + "fields": { + "id_car_model": 23605, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67370, + "fields": { + "id_car_model": 19773, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67371, + "fields": { + "id_car_model": 19776, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67372, + "fields": { + "id_car_model": 153, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67373, + "fields": { + "id_car_model": 154, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67374, + "fields": { + "id_car_model": 23606, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67375, + "fields": { + "id_car_model": 23607, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67376, + "fields": { + "id_car_model": 2315, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67377, + "fields": { + "id_car_model": 22602, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67378, + "fields": { + "id_car_model": 22603, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67379, + "fields": { + "id_car_model": 283, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67380, + "fields": { + "id_car_model": 19608, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67381, + "fields": { + "id_car_model": 312, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67382, + "fields": { + "id_car_model": 22409, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67383, + "fields": { + "id_car_model": 23608, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67384, + "fields": { + "id_car_model": 19068, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67385, + "fields": { + "id_car_model": 667, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67386, + "fields": { + "id_car_model": 667, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67387, + "fields": { + "id_car_model": 23609, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67388, + "fields": { + "id_car_model": 23610, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67389, + "fields": { + "id_car_model": 761, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67390, + "fields": { + "id_car_model": 790, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67391, + "fields": { + "id_car_model": 790, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67392, + "fields": { + "id_car_model": 789, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67393, + "fields": { + "id_car_model": 798, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67394, + "fields": { + "id_car_model": 2224, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67395, + "fields": { + "id_car_model": 23611, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67396, + "fields": { + "id_car_model": 19707, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67397, + "fields": { + "id_car_model": 23612, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67398, + "fields": { + "id_car_model": 22811, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67399, + "fields": { + "id_car_model": 1026, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67400, + "fields": { + "id_car_model": 1142, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67401, + "fields": { + "id_car_model": 1159, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67402, + "fields": { + "id_car_model": 20347, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67403, + "fields": { + "id_car_model": 2344, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67404, + "fields": { + "id_car_model": 23613, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67405, + "fields": { + "id_car_model": 2350, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67406, + "fields": { + "id_car_model": 2148, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67407, + "fields": { + "id_car_model": 22481, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67408, + "fields": { + "id_car_model": 1746, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67409, + "fields": { + "id_car_model": 1810, + "name": "SUV 5 doors Gracia", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67410, + "fields": { + "id_car_model": 1810, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67411, + "fields": { + "id_car_model": 1839, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67412, + "fields": { + "id_car_model": 1839, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67413, + "fields": { + "id_car_model": 1839, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67414, + "fields": { + "id_car_model": 1849, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67415, + "fields": { + "id_car_model": 2217, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67416, + "fields": { + "id_car_model": 1822, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67417, + "fields": { + "id_car_model": 1822, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67418, + "fields": { + "id_car_model": 19397, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67419, + "fields": { + "id_car_model": 23614, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67420, + "fields": { + "id_car_model": 23614, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67421, + "fields": { + "id_car_model": 2210, + "name": "Hatchback 3 doors GRMN", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67422, + "fields": { + "id_car_model": 2378, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67423, + "fields": { + "id_car_model": 21006, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67424, + "fields": { + "id_car_model": 11, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67425, + "fields": { + "id_car_model": 22958, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67426, + "fields": { + "id_car_model": 224, + "name": "SUV 5 doors ESV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67427, + "fields": { + "id_car_model": 23615, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67428, + "fields": { + "id_car_model": 23590, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67429, + "fields": { + "id_car_model": 494, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67430, + "fields": { + "id_car_model": 496, + "name": "SUV 5 doors SRT", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67431, + "fields": { + "id_car_model": 19986, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67432, + "fields": { + "id_car_model": 19986, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67433, + "fields": { + "id_car_model": 23616, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67434, + "fields": { + "id_car_model": 22464, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67435, + "fields": { + "id_car_model": 22464, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67436, + "fields": { + "id_car_model": 708, + "name": "SUV 5 doors XL", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67437, + "fields": { + "id_car_model": 23617, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67438, + "fields": { + "id_car_model": 20232, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67439, + "fields": { + "id_car_model": 22568, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67440, + "fields": { + "id_car_model": 19743, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67441, + "fields": { + "id_car_model": 1673, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67442, + "fields": { + "id_car_model": 20613, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67443, + "fields": { + "id_car_model": 23618, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67444, + "fields": { + "id_car_model": 20727, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67445, + "fields": { + "id_car_model": 20727, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67446, + "fields": { + "id_car_model": 20727, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67447, + "fields": { + "id_car_model": 2054, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67448, + "fields": { + "id_car_model": 20728, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67449, + "fields": { + "id_car_model": 23579, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67450, + "fields": { + "id_car_model": 23579, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67451, + "fields": { + "id_car_model": 239, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67452, + "fields": { + "id_car_model": 1178, + "name": "Field Break crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67453, + "fields": { + "id_car_model": 2123, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67454, + "fields": { + "id_car_model": 19208, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67455, + "fields": { + "id_car_model": 1716, + "name": "STi crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67456, + "fields": { + "id_car_model": 1745, + "name": "XL-7 crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67457, + "fields": { + "id_car_model": 1927, + "name": "Crossover 5-doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67458, + "fields": { + "id_car_model": 100, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67459, + "fields": { + "id_car_model": 100, + "name": "Hatchback 5 doors Sportback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67460, + "fields": { + "id_car_model": 19774, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67461, + "fields": { + "id_car_model": 23428, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67462, + "fields": { + "id_car_model": 269, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67463, + "fields": { + "id_car_model": 277, + "name": "Pickup Double cabin ZR2 Crew Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67464, + "fields": { + "id_car_model": 277, + "name": "Pickup One-and-a-half cabin ZR2 Extended Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67465, + "fields": { + "id_car_model": 19849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67466, + "fields": { + "id_car_model": 19849, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67467, + "fields": { + "id_car_model": 407, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67468, + "fields": { + "id_car_model": 407, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67469, + "fields": { + "id_car_model": 407, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67470, + "fields": { + "id_car_model": 631, + "name": "Pickup Single cabin Regular Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67471, + "fields": { + "id_car_model": 631, + "name": "Pickup Double cabin SuperCrew", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67472, + "fields": { + "id_car_model": 634, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67473, + "fields": { + "id_car_model": 634, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67474, + "fields": { + "id_car_model": 637, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67475, + "fields": { + "id_car_model": 637, + "name": "wagon 5 doors Active", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67476, + "fields": { + "id_car_model": 637, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67477, + "fields": { + "id_car_model": 637, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67478, + "fields": { + "id_car_model": 637, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67479, + "fields": { + "id_car_model": 637, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67480, + "fields": { + "id_car_model": 637, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67481, + "fields": { + "id_car_model": 637, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67482, + "fields": { + "id_car_model": 637, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67483, + "fields": { + "id_car_model": 637, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67484, + "fields": { + "id_car_model": 637, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67485, + "fields": { + "id_car_model": 637, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67486, + "fields": { + "id_car_model": 649, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67487, + "fields": { + "id_car_model": 649, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67488, + "fields": { + "id_car_model": 649, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67489, + "fields": { + "id_car_model": 23619, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67490, + "fields": { + "id_car_model": 23619, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67491, + "fields": { + "id_car_model": 23619, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67492, + "fields": { + "id_car_model": 23619, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67493, + "fields": { + "id_car_model": 23619, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67494, + "fields": { + "id_car_model": 23619, + "name": "wagon 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67495, + "fields": { + "id_car_model": 23620, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67496, + "fields": { + "id_car_model": 23620, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67497, + "fields": { + "id_car_model": 23621, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67498, + "fields": { + "id_car_model": 20078, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67499, + "fields": { + "id_car_model": 19278, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67500, + "fields": { + "id_car_model": 19278, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67501, + "fields": { + "id_car_model": 19278, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67502, + "fields": { + "id_car_model": 19278, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67503, + "fields": { + "id_car_model": 19278, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67504, + "fields": { + "id_car_model": 19278, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67505, + "fields": { + "id_car_model": 19278, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67506, + "fields": { + "id_car_model": 19278, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67507, + "fields": { + "id_car_model": 19278, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67508, + "fields": { + "id_car_model": 19278, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67509, + "fields": { + "id_car_model": 19278, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67510, + "fields": { + "id_car_model": 19278, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67511, + "fields": { + "id_car_model": 774, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67512, + "fields": { + "id_car_model": 824, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67513, + "fields": { + "id_car_model": 824, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67514, + "fields": { + "id_car_model": 23622, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67515, + "fields": { + "id_car_model": 22794, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67516, + "fields": { + "id_car_model": 22794, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67517, + "fields": { + "id_car_model": 873, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67518, + "fields": { + "id_car_model": 22805, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67519, + "fields": { + "id_car_model": 22805, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67520, + "fields": { + "id_car_model": 940, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67521, + "fields": { + "id_car_model": 963, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67522, + "fields": { + "id_car_model": 20264, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67523, + "fields": { + "id_car_model": 23589, + "name": "SUV 3 doors Bronto", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67524, + "fields": { + "id_car_model": 1010, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67525, + "fields": { + "id_car_model": 1020, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67526, + "fields": { + "id_car_model": 1027, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67527, + "fields": { + "id_car_model": 2260, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67528, + "fields": { + "id_car_model": 1148, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67529, + "fields": { + "id_car_model": 1156, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67530, + "fields": { + "id_car_model": 22480, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67531, + "fields": { + "id_car_model": 20349, + "name": "wagon 5 doors All-Terrain", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67532, + "fields": { + "id_car_model": 1190, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67533, + "fields": { + "id_car_model": 1190, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67534, + "fields": { + "id_car_model": 23623, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67535, + "fields": { + "id_car_model": 23623, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67536, + "fields": { + "id_car_model": 23624, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67537, + "fields": { + "id_car_model": 23625, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67538, + "fields": { + "id_car_model": 23626, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67539, + "fields": { + "id_car_model": 2353, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67540, + "fields": { + "id_car_model": 23627, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67541, + "fields": { + "id_car_model": 22865, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67542, + "fields": { + "id_car_model": 22869, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67543, + "fields": { + "id_car_model": 2242, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67544, + "fields": { + "id_car_model": 2242, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67545, + "fields": { + "id_car_model": 1297, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67546, + "fields": { + "id_car_model": 1297, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67547, + "fields": { + "id_car_model": 1354, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67548, + "fields": { + "id_car_model": 20438, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67549, + "fields": { + "id_car_model": 1374, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67550, + "fields": { + "id_car_model": 1374, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67551, + "fields": { + "id_car_model": 1390, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67552, + "fields": { + "id_car_model": 23574, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67553, + "fields": { + "id_car_model": 23628, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67554, + "fields": { + "id_car_model": 23629, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67555, + "fields": { + "id_car_model": 1427, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67556, + "fields": { + "id_car_model": 1483, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67557, + "fields": { + "id_car_model": 1483, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67558, + "fields": { + "id_car_model": 1548, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67559, + "fields": { + "id_car_model": 1683, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67560, + "fields": { + "id_car_model": 20945, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67561, + "fields": { + "id_car_model": 22888, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67562, + "fields": { + "id_car_model": 23630, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67563, + "fields": { + "id_car_model": 1737, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67564, + "fields": { + "id_car_model": 1740, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67565, + "fields": { + "id_car_model": 20591, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67566, + "fields": { + "id_car_model": 1743, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67567, + "fields": { + "id_car_model": 1743, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67568, + "fields": { + "id_car_model": 1748, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67569, + "fields": { + "id_car_model": 1758, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67571, + "fields": { + "id_car_model": 1755, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67572, + "fields": { + "id_car_model": 1756, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67573, + "fields": { + "id_car_model": 23631, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67574, + "fields": { + "id_car_model": 1818, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67575, + "fields": { + "id_car_model": 1818, + "name": "wagon 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67576, + "fields": { + "id_car_model": 1818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67577, + "fields": { + "id_car_model": 1818, + "name": "wagon 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67578, + "fields": { + "id_car_model": 1818, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67579, + "fields": { + "id_car_model": 1818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67580, + "fields": { + "id_car_model": 1842, + "name": "Pickup Double cabin Arctic Trucks", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67581, + "fields": { + "id_car_model": 1842, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67582, + "fields": { + "id_car_model": 2170, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67583, + "fields": { + "id_car_model": 1793, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67584, + "fields": { + "id_car_model": 20631, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67585, + "fields": { + "id_car_model": 20631, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67586, + "fields": { + "id_car_model": 1802, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67587, + "fields": { + "id_car_model": 1843, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67588, + "fields": { + "id_car_model": 19580, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67589, + "fields": { + "id_car_model": 23315, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67590, + "fields": { + "id_car_model": 2200, + "name": "Pickup Double cabin Double Cab Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67591, + "fields": { + "id_car_model": 2203, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67592, + "fields": { + "id_car_model": 2210, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67593, + "fields": { + "id_car_model": 2212, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67594, + "fields": { + "id_car_model": 23632, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67595, + "fields": { + "id_car_model": 23633, + "name": "wagon 5 doors Shooting Brake", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67596, + "fields": { + "id_car_model": 23633, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67597, + "fields": { + "id_car_model": 1901, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67598, + "fields": { + "id_car_model": 1921, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67599, + "fields": { + "id_car_model": 1927, + "name": "SUV 5 doors Allspace", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67600, + "fields": { + "id_car_model": 2378, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67601, + "fields": { + "id_car_model": 2378, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67602, + "fields": { + "id_car_model": 2380, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67603, + "fields": { + "id_car_model": 23634, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67604, + "fields": { + "id_car_model": 23635, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67605, + "fields": { + "id_car_model": 1962, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67606, + "fields": { + "id_car_model": 23636, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67607, + "fields": { + "id_car_model": 23637, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67608, + "fields": { + "id_car_model": 2265, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67609, + "fields": { + "id_car_model": 2301, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67610, + "fields": { + "id_car_model": 2301, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67611, + "fields": { + "id_car_model": 2303, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67612, + "fields": { + "id_car_model": 2304, + "name": "Sedan Gran Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67613, + "fields": { + "id_car_model": 2309, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67614, + "fields": { + "id_car_model": 2309, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67615, + "fields": { + "id_car_model": 2310, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67616, + "fields": { + "id_car_model": 2310, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67617, + "fields": { + "id_car_model": 23638, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67618, + "fields": { + "id_car_model": 2312, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67619, + "fields": { + "id_car_model": 23294, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67620, + "fields": { + "id_car_model": 23639, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67621, + "fields": { + "id_car_model": 22683, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67622, + "fields": { + "id_car_model": 23640, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67623, + "fields": { + "id_car_model": 23641, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67624, + "fields": { + "id_car_model": 23642, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67625, + "fields": { + "id_car_model": 23643, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67626, + "fields": { + "id_car_model": 23644, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67627, + "fields": { + "id_car_model": 196, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67628, + "fields": { + "id_car_model": 200, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67629, + "fields": { + "id_car_model": 23645, + "name": "Sedan DM", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67630, + "fields": { + "id_car_model": 23646, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67631, + "fields": { + "id_car_model": 23646, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67632, + "fields": { + "id_car_model": 23647, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67633, + "fields": { + "id_car_model": 23647, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67634, + "fields": { + "id_car_model": 23648, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67635, + "fields": { + "id_car_model": 23649, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67636, + "fields": { + "id_car_model": 23650, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67637, + "fields": { + "id_car_model": 23651, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67638, + "fields": { + "id_car_model": 327, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67639, + "fields": { + "id_car_model": 327, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67640, + "fields": { + "id_car_model": 329, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67641, + "fields": { + "id_car_model": 23652, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67642, + "fields": { + "id_car_model": 23652, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67643, + "fields": { + "id_car_model": 23652, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67644, + "fields": { + "id_car_model": 384, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67645, + "fields": { + "id_car_model": 23653, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67646, + "fields": { + "id_car_model": 385, + "name": "Compactvan Stepway", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67647, + "fields": { + "id_car_model": 23654, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67648, + "fields": { + "id_car_model": 19940, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67649, + "fields": { + "id_car_model": 19940, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67650, + "fields": { + "id_car_model": 450, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67651, + "fields": { + "id_car_model": 23655, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67652, + "fields": { + "id_car_model": 23656, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67653, + "fields": { + "id_car_model": 23006, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67654, + "fields": { + "id_car_model": 23006, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67655, + "fields": { + "id_car_model": 23006, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67656, + "fields": { + "id_car_model": 501, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67657, + "fields": { + "id_car_model": 23657, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67658, + "fields": { + "id_car_model": 19086, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67659, + "fields": { + "id_car_model": 23658, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67660, + "fields": { + "id_car_model": 23540, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67661, + "fields": { + "id_car_model": 23659, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67662, + "fields": { + "id_car_model": 606, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67663, + "fields": { + "id_car_model": 606, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67664, + "fields": { + "id_car_model": 606, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67665, + "fields": { + "id_car_model": 23660, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67666, + "fields": { + "id_car_model": 705, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67667, + "fields": { + "id_car_model": 23661, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67668, + "fields": { + "id_car_model": 23662, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67669, + "fields": { + "id_car_model": 23663, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67670, + "fields": { + "id_car_model": 23663, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67671, + "fields": { + "id_car_model": 23664, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67672, + "fields": { + "id_car_model": 20234, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67673, + "fields": { + "id_car_model": 23665, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67674, + "fields": { + "id_car_model": 922, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67675, + "fields": { + "id_car_model": 922, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67676, + "fields": { + "id_car_model": 922, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67677, + "fields": { + "id_car_model": 927, + "name": "SUV 5 doors L", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67678, + "fields": { + "id_car_model": 22802, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67679, + "fields": { + "id_car_model": 23666, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67680, + "fields": { + "id_car_model": 23667, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67681, + "fields": { + "id_car_model": 1038, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67682, + "fields": { + "id_car_model": 20302, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67683, + "fields": { + "id_car_model": 23668, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67684, + "fields": { + "id_car_model": 23669, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67685, + "fields": { + "id_car_model": 23670, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67686, + "fields": { + "id_car_model": 23671, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67687, + "fields": { + "id_car_model": 1234, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67688, + "fields": { + "id_car_model": 1324, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67689, + "fields": { + "id_car_model": 23672, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67690, + "fields": { + "id_car_model": 23673, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67691, + "fields": { + "id_car_model": 23674, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67692, + "fields": { + "id_car_model": 23674, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67693, + "fields": { + "id_car_model": 23119, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67694, + "fields": { + "id_car_model": 23120, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67695, + "fields": { + "id_car_model": 23120, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67696, + "fields": { + "id_car_model": 23675, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67697, + "fields": { + "id_car_model": 20574, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67698, + "fields": { + "id_car_model": 5812, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67699, + "fields": { + "id_car_model": 1727, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67700, + "fields": { + "id_car_model": 1727, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67701, + "fields": { + "id_car_model": 2231, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67702, + "fields": { + "id_car_model": 23676, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67703, + "fields": { + "id_car_model": 23677, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67704, + "fields": { + "id_car_model": 23678, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67705, + "fields": { + "id_car_model": 23180, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67706, + "fields": { + "id_car_model": 23180, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67707, + "fields": { + "id_car_model": 23679, + "name": "Phaeton", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67708, + "fields": { + "id_car_model": 23680, + "name": "Phaeton", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67709, + "fields": { + "id_car_model": 23681, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67710, + "fields": { + "id_car_model": 89, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67711, + "fields": { + "id_car_model": 102, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67712, + "fields": { + "id_car_model": 19780, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67713, + "fields": { + "id_car_model": 19780, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67714, + "fields": { + "id_car_model": 19780, + "name": "Sedan Gran Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67715, + "fields": { + "id_car_model": 22678, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67716, + "fields": { + "id_car_model": 22678, + "name": "Sedan Gran Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67717, + "fields": { + "id_car_model": 22678, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67718, + "fields": { + "id_car_model": 269, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67719, + "fields": { + "id_car_model": 316, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67720, + "fields": { + "id_car_model": 2102, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67721, + "fields": { + "id_car_model": 358, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67722, + "fields": { + "id_car_model": 649, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67723, + "fields": { + "id_car_model": 649, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67724, + "fields": { + "id_car_model": 20080, + "name": "Compactvan LWB", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67725, + "fields": { + "id_car_model": 22517, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67726, + "fields": { + "id_car_model": 23292, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67727, + "fields": { + "id_car_model": 753, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67728, + "fields": { + "id_car_model": 761, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67729, + "fields": { + "id_car_model": 761, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67730, + "fields": { + "id_car_model": 761, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67731, + "fields": { + "id_car_model": 761, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67732, + "fields": { + "id_car_model": 761, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67733, + "fields": { + "id_car_model": 761, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67734, + "fields": { + "id_car_model": 793, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67735, + "fields": { + "id_car_model": 112, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67736, + "fields": { + "id_car_model": 19569, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67737, + "fields": { + "id_car_model": 23682, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67738, + "fields": { + "id_car_model": 818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67739, + "fields": { + "id_car_model": 20178, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67740, + "fields": { + "id_car_model": 831, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67741, + "fields": { + "id_car_model": 831, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67742, + "fields": { + "id_car_model": 23612, + "name": "Van Load", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67743, + "fields": { + "id_car_model": 23683, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67744, + "fields": { + "id_car_model": 23684, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67745, + "fields": { + "id_car_model": 23685, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67746, + "fields": { + "id_car_model": 875, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67747, + "fields": { + "id_car_model": 20246, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67748, + "fields": { + "id_car_model": 963, + "name": "SUV 5 doors SWB", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67749, + "fields": { + "id_car_model": 19209, + "name": "wagon 5 doors SW Cross", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67750, + "fields": { + "id_car_model": 19209, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67751, + "fields": { + "id_car_model": 1019, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67752, + "fields": { + "id_car_model": 1132, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67753, + "fields": { + "id_car_model": 1132, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67754, + "fields": { + "id_car_model": 23686, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67755, + "fields": { + "id_car_model": 23687, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67756, + "fields": { + "id_car_model": 23688, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67757, + "fields": { + "id_car_model": 23688, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67758, + "fields": { + "id_car_model": 23688, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67759, + "fields": { + "id_car_model": 23688, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67760, + "fields": { + "id_car_model": 1299, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67761, + "fields": { + "id_car_model": 1397, + "name": "Hatchback 5 doors Aura", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67762, + "fields": { + "id_car_model": 1397, + "name": "SUV 5 doors Autech Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67763, + "fields": { + "id_car_model": 2131, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67764, + "fields": { + "id_car_model": 1387, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67765, + "fields": { + "id_car_model": 1387, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67766, + "fields": { + "id_car_model": 23689, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67767, + "fields": { + "id_car_model": 23689, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67768, + "fields": { + "id_car_model": 1427, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67769, + "fields": { + "id_car_model": 1546, + "name": "SUV 5 doors Coupé", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67770, + "fields": { + "id_car_model": 22884, + "name": "wagon 5 doors Sport Turismo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67771, + "fields": { + "id_car_model": 1599, + "name": "SUV 5 doors E-Tech", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67772, + "fields": { + "id_car_model": 23690, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67773, + "fields": { + "id_car_model": 22346, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67774, + "fields": { + "id_car_model": 1850, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67775, + "fields": { + "id_car_model": 23691, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67776, + "fields": { + "id_car_model": 1838, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67777, + "fields": { + "id_car_model": 2198, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67778, + "fields": { + "id_car_model": 23692, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67779, + "fields": { + "id_car_model": 23693, + "name": "SUV 5 doors Crozz", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67780, + "fields": { + "id_car_model": 22445, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67781, + "fields": { + "id_car_model": 23316, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67782, + "fields": { + "id_car_model": 23694, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67783, + "fields": { + "id_car_model": 23695, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67784, + "fields": { + "id_car_model": 187, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67785, + "fields": { + "id_car_model": 23696, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67786, + "fields": { + "id_car_model": 23697, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67787, + "fields": { + "id_car_model": 23698, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67788, + "fields": { + "id_car_model": 23401, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67789, + "fields": { + "id_car_model": 23699, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67790, + "fields": { + "id_car_model": 22985, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67791, + "fields": { + "id_car_model": 23700, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67792, + "fields": { + "id_car_model": 23701, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67793, + "fields": { + "id_car_model": 448, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67794, + "fields": { + "id_car_model": 23702, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67795, + "fields": { + "id_car_model": 23703, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67796, + "fields": { + "id_car_model": 23704, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67797, + "fields": { + "id_car_model": 23705, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67798, + "fields": { + "id_car_model": 23706, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67799, + "fields": { + "id_car_model": 23707, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67800, + "fields": { + "id_car_model": 23708, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67801, + "fields": { + "id_car_model": 20977, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67802, + "fields": { + "id_car_model": 695, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67803, + "fields": { + "id_car_model": 698, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67804, + "fields": { + "id_car_model": 23709, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67805, + "fields": { + "id_car_model": 23710, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67806, + "fields": { + "id_car_model": 2390, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67807, + "fields": { + "id_car_model": 1038, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67808, + "fields": { + "id_car_model": 19071, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67809, + "fields": { + "id_car_model": 1716, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67810, + "fields": { + "id_car_model": 23711, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67811, + "fields": { + "id_car_model": 23712, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67812, + "fields": { + "id_car_model": 23715, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67813, + "fields": { + "id_car_model": 629, + "name": "SUV 5 doors MAX", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67814, + "fields": { + "id_car_model": 2328, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67815, + "fields": { + "id_car_model": 668, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67816, + "fields": { + "id_car_model": 2324, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67817, + "fields": { + "id_car_model": 23716, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67818, + "fields": { + "id_car_model": 20166, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67819, + "fields": { + "id_car_model": 23717, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67820, + "fields": { + "id_car_model": 1300, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67821, + "fields": { + "id_car_model": 23718, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67822, + "fields": { + "id_car_model": 23719, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67823, + "fields": { + "id_car_model": 23563, + "name": "SUV 5 doors Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67824, + "fields": { + "id_car_model": 23720, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67825, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67826, + "fields": { + "id_car_model": 23721, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67827, + "fields": { + "id_car_model": 19300, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67828, + "fields": { + "id_car_model": 19300, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67829, + "fields": { + "id_car_model": 19300, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67830, + "fields": { + "id_car_model": 19300, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67831, + "fields": { + "id_car_model": 19300, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67832, + "fields": { + "id_car_model": 19300, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67833, + "fields": { + "id_car_model": 23722, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67834, + "fields": { + "id_car_model": 23723, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67835, + "fields": { + "id_car_model": 23724, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67836, + "fields": { + "id_car_model": 23714, + "name": "Sedan Pro", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67837, + "fields": { + "id_car_model": 23725, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67838, + "fields": { + "id_car_model": 23726, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67839, + "fields": { + "id_car_model": 1419, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67840, + "fields": { + "id_car_model": 23727, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67841, + "fields": { + "id_car_model": 1707, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67842, + "fields": { + "id_car_model": 23164, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67843, + "fields": { + "id_car_model": 23164, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67844, + "fields": { + "id_car_model": 23577, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67845, + "fields": { + "id_car_model": 23728, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 67846, + "fields": { + "id_car_model": 23729, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70421, + "fields": { + "id_car_model": 19779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70422, + "fields": { + "id_car_model": 22560, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70423, + "fields": { + "id_car_model": 23730, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70424, + "fields": { + "id_car_model": 23731, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70425, + "fields": { + "id_car_model": 309, + "name": "Hatchback 5 doors Activ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70426, + "fields": { + "id_car_model": 315, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70427, + "fields": { + "id_car_model": 22342, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70428, + "fields": { + "id_car_model": 24915, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70429, + "fields": { + "id_car_model": 614, + "name": "SUV 5 doors Raptor", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70430, + "fields": { + "id_car_model": 2328, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70431, + "fields": { + "id_car_model": 651, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70432, + "fields": { + "id_car_model": 20055, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70433, + "fields": { + "id_car_model": 20055, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70434, + "fields": { + "id_car_model": 2324, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70435, + "fields": { + "id_car_model": 24916, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70436, + "fields": { + "id_car_model": 777, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70437, + "fields": { + "id_car_model": 802, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70438, + "fields": { + "id_car_model": 20167, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70439, + "fields": { + "id_car_model": 22791, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70440, + "fields": { + "id_car_model": 20266, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70441, + "fields": { + "id_car_model": 20266, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70442, + "fields": { + "id_car_model": 20266, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70443, + "fields": { + "id_car_model": 20266, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70444, + "fields": { + "id_car_model": 24917, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70445, + "fields": { + "id_car_model": 2340, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70446, + "fields": { + "id_car_model": 2340, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70447, + "fields": { + "id_car_model": 23732, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70448, + "fields": { + "id_car_model": 1445, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70449, + "fields": { + "id_car_model": 23733, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70450, + "fields": { + "id_car_model": 23734, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70451, + "fields": { + "id_car_model": 1723, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70452, + "fields": { + "id_car_model": 24918, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70453, + "fields": { + "id_car_model": 1818, + "name": "Hatchback 5 doors GR", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70454, + "fields": { + "id_car_model": 24919, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70455, + "fields": { + "id_car_model": 1912, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70456, + "fields": { + "id_car_model": 64, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70457, + "fields": { + "id_car_model": 70, + "name": "Speedster Speedster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70458, + "fields": { + "id_car_model": 70, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70459, + "fields": { + "id_car_model": 72, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70460, + "fields": { + "id_car_model": 19340, + "name": "SUV 5 doors EWB", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70461, + "fields": { + "id_car_model": 24920, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70462, + "fields": { + "id_car_model": 24921, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70463, + "fields": { + "id_car_model": 24921, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70464, + "fields": { + "id_car_model": 24922, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70465, + "fields": { + "id_car_model": 24923, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70466, + "fields": { + "id_car_model": 24924, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70467, + "fields": { + "id_car_model": 23659, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70468, + "fields": { + "id_car_model": 23035, + "name": "SUV 5 doors Vanguard", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70469, + "fields": { + "id_car_model": 24925, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70470, + "fields": { + "id_car_model": 24926, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70471, + "fields": { + "id_car_model": 24927, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70472, + "fields": { + "id_car_model": 24928, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70473, + "fields": { + "id_car_model": 24929, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70474, + "fields": { + "id_car_model": 24929, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70475, + "fields": { + "id_car_model": 19775, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70476, + "fields": { + "id_car_model": 19775, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70477, + "fields": { + "id_car_model": 152, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70478, + "fields": { + "id_car_model": 24930, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70479, + "fields": { + "id_car_model": 309, + "name": "Hatchback 5 doors Activ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70480, + "fields": { + "id_car_model": 24931, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70481, + "fields": { + "id_car_model": 631, + "name": "Pickup Double cabin Lightning", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70482, + "fields": { + "id_car_model": 774, + "name": "Hatchback 5 doors Crosstar", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70483, + "fields": { + "id_car_model": 24932, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70484, + "fields": { + "id_car_model": 22808, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70485, + "fields": { + "id_car_model": 22808, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70486, + "fields": { + "id_car_model": 22850, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70487, + "fields": { + "id_car_model": 24933, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70488, + "fields": { + "id_car_model": 24934, + "name": "Sedan Limousine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70489, + "fields": { + "id_car_model": 1433, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70490, + "fields": { + "id_car_model": 1599, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70491, + "fields": { + "id_car_model": 1717, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70492, + "fields": { + "id_car_model": 1717, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70493, + "fields": { + "id_car_model": 2170, + "name": "Hatchback 5 doors PHV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70494, + "fields": { + "id_car_model": 24935, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70495, + "fields": { + "id_car_model": 2198, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70496, + "fields": { + "id_car_model": 2299, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70497, + "fields": { + "id_car_model": 2299, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70498, + "fields": { + "id_car_model": 2309, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70499, + "fields": { + "id_car_model": 2309, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70500, + "fields": { + "id_car_model": 22933, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70501, + "fields": { + "id_car_model": 19568, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70502, + "fields": { + "id_car_model": 24936, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70503, + "fields": { + "id_car_model": 24937, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70504, + "fields": { + "id_car_model": 24938, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70505, + "fields": { + "id_car_model": 24939, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70506, + "fields": { + "id_car_model": 424, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70507, + "fields": { + "id_car_model": 24940, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70508, + "fields": { + "id_car_model": 574, + "name": "Hatchback 4 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70509, + "fields": { + "id_car_model": 574, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70510, + "fields": { + "id_car_model": 574, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70511, + "fields": { + "id_car_model": 24941, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70512, + "fields": { + "id_car_model": 24942, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70513, + "fields": { + "id_car_model": 696, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70514, + "fields": { + "id_car_model": 696, + "name": "Pickup One-and-a-half cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70515, + "fields": { + "id_car_model": 701, + "name": "Pickup Double cabin Crew Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70516, + "fields": { + "id_car_model": 1011, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70517, + "fields": { + "id_car_model": 24943, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70518, + "fields": { + "id_car_model": 24944, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70519, + "fields": { + "id_car_model": 24944, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70520, + "fields": { + "id_car_model": 24945, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70521, + "fields": { + "id_car_model": 24946, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70522, + "fields": { + "id_car_model": 24947, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70523, + "fields": { + "id_car_model": 1455, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70524, + "fields": { + "id_car_model": 24948, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70525, + "fields": { + "id_car_model": 24948, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70526, + "fields": { + "id_car_model": 24948, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70527, + "fields": { + "id_car_model": 24949, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70528, + "fields": { + "id_car_model": 24950, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70529, + "fields": { + "id_car_model": 24951, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70530, + "fields": { + "id_car_model": 24951, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70531, + "fields": { + "id_car_model": 24952, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70532, + "fields": { + "id_car_model": 23444, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70533, + "fields": { + "id_car_model": 24953, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70534, + "fields": { + "id_car_model": 2046, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70535, + "fields": { + "id_car_model": 2314, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70536, + "fields": { + "id_car_model": 753, + "name": "Hatchback 3 doors AeroDeck", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70537, + "fields": { + "id_car_model": 20189, + "name": "Hatchback 5 doors X", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70538, + "fields": { + "id_car_model": 20189, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70539, + "fields": { + "id_car_model": 20189, + "name": "Hatchback 5 doors X", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70540, + "fields": { + "id_car_model": 20189, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70541, + "fields": { + "id_car_model": 20189, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70542, + "fields": { + "id_car_model": 859, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70543, + "fields": { + "id_car_model": 859, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70544, + "fields": { + "id_car_model": 859, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70545, + "fields": { + "id_car_model": 859, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70546, + "fields": { + "id_car_model": 24954, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70547, + "fields": { + "id_car_model": 24954, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70548, + "fields": { + "id_car_model": 1299, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70549, + "fields": { + "id_car_model": 1404, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70550, + "fields": { + "id_car_model": 2122, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70551, + "fields": { + "id_car_model": 2140, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70552, + "fields": { + "id_car_model": 24955, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70553, + "fields": { + "id_car_model": 22516, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70554, + "fields": { + "id_car_model": 20591, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70555, + "fields": { + "id_car_model": 1836, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70556, + "fields": { + "id_car_model": 2183, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70557, + "fields": { + "id_car_model": 2300, + "name": "Liftback Gran Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70558, + "fields": { + "id_car_model": 22931, + "name": "Liftback Gran Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70559, + "fields": { + "id_car_model": 23638, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70560, + "fields": { + "id_car_model": 24956, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70561, + "fields": { + "id_car_model": 24957, + "name": "SUV 5 doors EV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70562, + "fields": { + "id_car_model": 232, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70563, + "fields": { + "id_car_model": 927, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70564, + "fields": { + "id_car_model": 24958, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70565, + "fields": { + "id_car_model": 24959, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70566, + "fields": { + "id_car_model": 20505, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70567, + "fields": { + "id_car_model": 22565, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70568, + "fields": { + "id_car_model": 859, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70569, + "fields": { + "id_car_model": 859, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70570, + "fields": { + "id_car_model": 859, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70571, + "fields": { + "id_car_model": 1296, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70572, + "fields": { + "id_car_model": 1397, + "name": "Hatchback 5 doors Nismo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70573, + "fields": { + "id_car_model": 1397, + "name": "Hatchback 5 doors Nismo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70574, + "fields": { + "id_car_model": 1404, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70575, + "fields": { + "id_car_model": 1372, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70576, + "fields": { + "id_car_model": 1849, + "name": "SUV 5 doors Arctic Trucks", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70577, + "fields": { + "id_car_model": 20632, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70578, + "fields": { + "id_car_model": 1915, + "name": "Minivan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70579, + "fields": { + "id_car_model": 9, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70580, + "fields": { + "id_car_model": 13, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70581, + "fields": { + "id_car_model": 24960, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70582, + "fields": { + "id_car_model": 24961, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70583, + "fields": { + "id_car_model": 24962, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70584, + "fields": { + "id_car_model": 24963, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70585, + "fields": { + "id_car_model": 24963, + "name": "SUV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70586, + "fields": { + "id_car_model": 24964, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70587, + "fields": { + "id_car_model": 19937, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70588, + "fields": { + "id_car_model": 503, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70589, + "fields": { + "id_car_model": 24965, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70590, + "fields": { + "id_car_model": 24966, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70591, + "fields": { + "id_car_model": 24967, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70592, + "fields": { + "id_car_model": 24968, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70593, + "fields": { + "id_car_model": 24969, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70594, + "fields": { + "id_car_model": 24970, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70595, + "fields": { + "id_car_model": 24971, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70596, + "fields": { + "id_car_model": 24971, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70597, + "fields": { + "id_car_model": 1247, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70598, + "fields": { + "id_car_model": 24972, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70599, + "fields": { + "id_car_model": 24973, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70600, + "fields": { + "id_car_model": 24974, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70601, + "fields": { + "id_car_model": 24975, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70602, + "fields": { + "id_car_model": 24976, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70603, + "fields": { + "id_car_model": 24977, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70604, + "fields": { + "id_car_model": 23599, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70605, + "fields": { + "id_car_model": 24978, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70606, + "fields": { + "id_car_model": 24979, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70607, + "fields": { + "id_car_model": 24980, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70608, + "fields": { + "id_car_model": 24981, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70609, + "fields": { + "id_car_model": 24990, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70610, + "fields": { + "id_car_model": 24991, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70611, + "fields": { + "id_car_model": 277, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70612, + "fields": { + "id_car_model": 1806, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70613, + "fields": { + "id_car_model": 24998, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70614, + "fields": { + "id_car_model": 24999, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70615, + "fields": { + "id_car_model": 25000, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70616, + "fields": { + "id_car_model": 25001, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70617, + "fields": { + "id_car_model": 531, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70618, + "fields": { + "id_car_model": 531, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70619, + "fields": { + "id_car_model": 25011, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70620, + "fields": { + "id_car_model": 1107, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70621, + "fields": { + "id_car_model": 25012, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70622, + "fields": { + "id_car_model": 1849, + "name": "SUV 5 doors Cygnus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70623, + "fields": { + "id_car_model": 1849, + "name": "SUV 5 doors Cygnus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70624, + "fields": { + "id_car_model": 1849, + "name": "SUV 5 doors Cygnus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70625, + "fields": { + "id_car_model": 25022, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70626, + "fields": { + "id_car_model": 23581, + "name": "Sedan Zhigatsar", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70627, + "fields": { + "id_car_model": 19391, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70628, + "fields": { + "id_car_model": 25023, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70629, + "fields": { + "id_car_model": 159, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70630, + "fields": { + "id_car_model": 24992, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70631, + "fields": { + "id_car_model": 2220, + "name": "Pickup Double cabin Crew", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70632, + "fields": { + "id_car_model": 2220, + "name": "Pickup Single cabin Regular", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70633, + "fields": { + "id_car_model": 25005, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70634, + "fields": { + "id_car_model": 23554, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70635, + "fields": { + "id_car_model": 763, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70636, + "fields": { + "id_car_model": 776, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70637, + "fields": { + "id_car_model": 2330, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70638, + "fields": { + "id_car_model": 25024, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70639, + "fields": { + "id_car_model": 25025, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70640, + "fields": { + "id_car_model": 25026, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70641, + "fields": { + "id_car_model": 1821, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70642, + "fields": { + "id_car_model": 1821, + "name": "Coupe T160", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70643, + "fields": { + "id_car_model": 70, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70644, + "fields": { + "id_car_model": 24960, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70645, + "fields": { + "id_car_model": 23645, + "name": "Sedan DM", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70646, + "fields": { + "id_car_model": 25013, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70647, + "fields": { + "id_car_model": 25015, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70648, + "fields": { + "id_car_model": 25015, + "name": "SUV 5 doors Plus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70649, + "fields": { + "id_car_model": 25015, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70650, + "fields": { + "id_car_model": 25016, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70651, + "fields": { + "id_car_model": 25016, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70652, + "fields": { + "id_car_model": 25018, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70653, + "fields": { + "id_car_model": 25018, + "name": "wagon 5 doors Ei5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70654, + "fields": { + "id_car_model": 25018, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70655, + "fields": { + "id_car_model": 25018, + "name": "wagon 5 doors Ei5", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70656, + "fields": { + "id_car_model": 25019, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70657, + "fields": { + "id_car_model": 25028, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70658, + "fields": { + "id_car_model": 25029, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70659, + "fields": { + "id_car_model": 25029, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70660, + "fields": { + "id_car_model": 25030, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70661, + "fields": { + "id_car_model": 358, + "name": "Sedan X", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70662, + "fields": { + "id_car_model": 658, + "name": "Pickup Double cabin Double Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70663, + "fields": { + "id_car_model": 658, + "name": "Pickup One-and-a-half cabin Open Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70664, + "fields": { + "id_car_model": 19393, + "name": "Van LWB Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70665, + "fields": { + "id_car_model": 19393, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70666, + "fields": { + "id_car_model": 19393, + "name": "Van LWB Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70667, + "fields": { + "id_car_model": 25004, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70668, + "fields": { + "id_car_model": 25031, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70669, + "fields": { + "id_car_model": 25032, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70670, + "fields": { + "id_car_model": 25033, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70671, + "fields": { + "id_car_model": 25033, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70672, + "fields": { + "id_car_model": 25034, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70673, + "fields": { + "id_car_model": 824, + "name": "Hatchback 5 doors GT", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70674, + "fields": { + "id_car_model": 845, + "name": "SUV 5 doors Classic", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70675, + "fields": { + "id_car_model": 25035, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70676, + "fields": { + "id_car_model": 25036, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70677, + "fields": { + "id_car_model": 25036, + "name": "wagon 5 doors RV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70678, + "fields": { + "id_car_model": 25037, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70679, + "fields": { + "id_car_model": 24993, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70680, + "fields": { + "id_car_model": 25038, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70681, + "fields": { + "id_car_model": 22812, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70682, + "fields": { + "id_car_model": 19616, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70683, + "fields": { + "id_car_model": 19616, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70684, + "fields": { + "id_car_model": 2002, + "name": "Limousine Consul", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70685, + "fields": { + "id_car_model": 2003, + "name": "wagon 5 doors Tarzan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70686, + "fields": { + "id_car_model": 2004, + "name": "Hatchback 5 doors Tarzan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70687, + "fields": { + "id_car_model": 19209, + "name": "wagon 5 doors SW", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70688, + "fields": { + "id_car_model": 1125, + "name": "Coupe C", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70689, + "fields": { + "id_car_model": 1140, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70690, + "fields": { + "id_car_model": 24986, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70691, + "fields": { + "id_car_model": 24986, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70692, + "fields": { + "id_car_model": 24986, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70693, + "fields": { + "id_car_model": 24986, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70694, + "fields": { + "id_car_model": 1291, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70695, + "fields": { + "id_car_model": 1358, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70696, + "fields": { + "id_car_model": 2148, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70697, + "fields": { + "id_car_model": 2145, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70698, + "fields": { + "id_car_model": 1549, + "name": "Hatchback 5 doors Executive", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70699, + "fields": { + "id_car_model": 24987, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70700, + "fields": { + "id_car_model": 24987, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70701, + "fields": { + "id_car_model": 24987, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70702, + "fields": { + "id_car_model": 24987, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70703, + "fields": { + "id_car_model": 1738, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70704, + "fields": { + "id_car_model": 20590, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70705, + "fields": { + "id_car_model": 22569, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70706, + "fields": { + "id_car_model": 24988, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70707, + "fields": { + "id_car_model": 24989, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70708, + "fields": { + "id_car_model": 25039, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70709, + "fields": { + "id_car_model": 25040, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70710, + "fields": { + "id_car_model": 25040, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70711, + "fields": { + "id_car_model": 2282, + "name": "Van L1", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70712, + "fields": { + "id_car_model": 25041, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70713, + "fields": { + "id_car_model": 1927, + "name": "SUV 5 doors X", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70714, + "fields": { + "id_car_model": 23535, + "name": "SUV 5 doors X", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70715, + "fields": { + "id_car_model": 20683, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70716, + "fields": { + "id_car_model": 20683, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70717, + "fields": { + "id_car_model": 25042, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70718, + "fields": { + "id_car_model": 22570, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70719, + "fields": { + "id_car_model": 21006, + "name": "SUV 5 doors X", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70720, + "fields": { + "id_car_model": 21006, + "name": "SUV 5 doors X", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70721, + "fields": { + "id_car_model": 24994, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70722, + "fields": { + "id_car_model": 24995, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70723, + "fields": { + "id_car_model": 24962, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70724, + "fields": { + "id_car_model": 23646, + "name": "SUV 5 doors EV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70725, + "fields": { + "id_car_model": 25043, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70726, + "fields": { + "id_car_model": 25044, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70727, + "fields": { + "id_car_model": 24996, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70728, + "fields": { + "id_car_model": 24997, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70729, + "fields": { + "id_car_model": 19937, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70730, + "fields": { + "id_car_model": 440, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70731, + "fields": { + "id_car_model": 23305, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70732, + "fields": { + "id_car_model": 25002, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70733, + "fields": { + "id_car_model": 25045, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70734, + "fields": { + "id_car_model": 25046, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70735, + "fields": { + "id_car_model": 25047, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70736, + "fields": { + "id_car_model": 25003, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70737, + "fields": { + "id_car_model": 25048, + "name": "wagon 5 doors Cross Wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70738, + "fields": { + "id_car_model": 25048, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70739, + "fields": { + "id_car_model": 25048, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70740, + "fields": { + "id_car_model": 25048, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70741, + "fields": { + "id_car_model": 25048, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70742, + "fields": { + "id_car_model": 25048, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70743, + "fields": { + "id_car_model": 696, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70744, + "fields": { + "id_car_model": 701, + "name": "Pickup Single cabin Regular Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70745, + "fields": { + "id_car_model": 701, + "name": "Pickup Double cabin Crew Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70746, + "fields": { + "id_car_model": 701, + "name": "Pickup Double cabin Double Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70747, + "fields": { + "id_car_model": 701, + "name": "Pickup Single cabin Regular Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70748, + "fields": { + "id_car_model": 23560, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70749, + "fields": { + "id_car_model": 25006, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70750, + "fields": { + "id_car_model": 25049, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70751, + "fields": { + "id_car_model": 25049, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70752, + "fields": { + "id_car_model": 25050, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70753, + "fields": { + "id_car_model": 25051, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70754, + "fields": { + "id_car_model": 25052, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70755, + "fields": { + "id_car_model": 25052, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70756, + "fields": { + "id_car_model": 25007, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70757, + "fields": { + "id_car_model": 25008, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70758, + "fields": { + "id_car_model": 25009, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70759, + "fields": { + "id_car_model": 24968, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70760, + "fields": { + "id_car_model": 25010, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70761, + "fields": { + "id_car_model": 22345, + "name": "SUV 5 doors Performante", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70762, + "fields": { + "id_car_model": 25053, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70763, + "fields": { + "id_car_model": 25027, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70764, + "fields": { + "id_car_model": 25014, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70765, + "fields": { + "id_car_model": 25017, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70766, + "fields": { + "id_car_model": 25020, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70767, + "fields": { + "id_car_model": 25054, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70768, + "fields": { + "id_car_model": 1706, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70769, + "fields": { + "id_car_model": 25021, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70770, + "fields": { + "id_car_model": 25021, + "name": "Pickup Double cabin Khan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70771, + "fields": { + "id_car_model": 25055, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70772, + "fields": { + "id_car_model": 19298, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70773, + "fields": { + "id_car_model": 25056, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70774, + "fields": { + "id_car_model": 25057, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70775, + "fields": { + "id_car_model": 25058, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70776, + "fields": { + "id_car_model": 25059, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70777, + "fields": { + "id_car_model": 25060, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70778, + "fields": { + "id_car_model": 25060, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70779, + "fields": { + "id_car_model": 25060, + "name": "Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70780, + "fields": { + "id_car_model": 25061, + "name": "suv", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70781, + "fields": { + "id_car_model": 25061, + "name": "suv", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70782, + "fields": { + "id_car_model": 25062, + "name": "Crossover", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70783, + "fields": { + "id_car_model": 150, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70784, + "fields": { + "id_car_model": 820, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70785, + "fields": { + "id_car_model": 820, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70787, + "fields": { + "id_car_model": 1029, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70788, + "fields": { + "id_car_model": 1156, + "name": "Coupe Neo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70789, + "fields": { + "id_car_model": 25064, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70790, + "fields": { + "id_car_model": 20342, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70791, + "fields": { + "id_car_model": 20342, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70792, + "fields": { + "id_car_model": 20343, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70793, + "fields": { + "id_car_model": 22850, + "name": "SUV 5 doors L", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70794, + "fields": { + "id_car_model": 2339, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70795, + "fields": { + "id_car_model": 2339, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70796, + "fields": { + "id_car_model": 25065, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70797, + "fields": { + "id_car_model": 25065, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70798, + "fields": { + "id_car_model": 25065, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70799, + "fields": { + "id_car_model": 25065, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70800, + "fields": { + "id_car_model": 1264, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70801, + "fields": { + "id_car_model": 1842, + "name": "Pickup One-and-a-half cabin Extra Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70802, + "fields": { + "id_car_model": 1826, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70803, + "fields": { + "id_car_model": 25072, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70804, + "fields": { + "id_car_model": 25072, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70805, + "fields": { + "id_car_model": 25072, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70806, + "fields": { + "id_car_model": 1927, + "name": "SUV 5 doors L", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70807, + "fields": { + "id_car_model": 25066, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70808, + "fields": { + "id_car_model": 25066, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70809, + "fields": { + "id_car_model": 25066, + "name": "Sedan GTS", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70810, + "fields": { + "id_car_model": 25067, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70811, + "fields": { + "id_car_model": 25067, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70812, + "fields": { + "id_car_model": 25067, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70813, + "fields": { + "id_car_model": 25067, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70814, + "fields": { + "id_car_model": 25067, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70815, + "fields": { + "id_car_model": 25068, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70816, + "fields": { + "id_car_model": 25068, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70817, + "fields": { + "id_car_model": 20688, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70818, + "fields": { + "id_car_model": 20688, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70819, + "fields": { + "id_car_model": 25069, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70820, + "fields": { + "id_car_model": 25070, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70821, + "fields": { + "id_car_model": 25071, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70822, + "fields": { + "id_car_model": 25071, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70823, + "fields": { + "id_car_model": 25073, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70824, + "fields": { + "id_car_model": 23537, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70825, + "fields": { + "id_car_model": 25074, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70826, + "fields": { + "id_car_model": 25075, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70827, + "fields": { + "id_car_model": 25075, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70828, + "fields": { + "id_car_model": 25075, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70829, + "fields": { + "id_car_model": 25075, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70830, + "fields": { + "id_car_model": 25075, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70831, + "fields": { + "id_car_model": 188, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70832, + "fields": { + "id_car_model": 25076, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70833, + "fields": { + "id_car_model": 225, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70834, + "fields": { + "id_car_model": 225, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70835, + "fields": { + "id_car_model": 22965, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70836, + "fields": { + "id_car_model": 25077, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70837, + "fields": { + "id_car_model": 25077, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70838, + "fields": { + "id_car_model": 25063, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70849, + "fields": { + "id_car_model": 25080, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70850, + "fields": { + "id_car_model": 25081, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70851, + "fields": { + "id_car_model": 25082, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70852, + "fields": { + "id_car_model": 315, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70853, + "fields": { + "id_car_model": 622, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70854, + "fields": { + "id_car_model": 622, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70855, + "fields": { + "id_car_model": 652, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70856, + "fields": { + "id_car_model": 658, + "name": "Pickup Double cabin Raptor", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70857, + "fields": { + "id_car_model": 25083, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70858, + "fields": { + "id_car_model": 25084, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70859, + "fields": { + "id_car_model": 2289, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70860, + "fields": { + "id_car_model": 2289, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70861, + "fields": { + "id_car_model": 23049, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70862, + "fields": { + "id_car_model": 25085, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70863, + "fields": { + "id_car_model": 25086, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70864, + "fields": { + "id_car_model": 837, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70865, + "fields": { + "id_car_model": 837, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70866, + "fields": { + "id_car_model": 831, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70867, + "fields": { + "id_car_model": 25087, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70868, + "fields": { + "id_car_model": 25088, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70869, + "fields": { + "id_car_model": 25089, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70870, + "fields": { + "id_car_model": 2347, + "name": "SUV 5 doors 4x4 Squared", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70871, + "fields": { + "id_car_model": 2352, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70872, + "fields": { + "id_car_model": 25090, + "name": "Sedan PHEV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70873, + "fields": { + "id_car_model": 1916, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70874, + "fields": { + "id_car_model": 1916, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70875, + "fields": { + "id_car_model": 25091, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70876, + "fields": { + "id_car_model": 25092, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70877, + "fields": { + "id_car_model": 23537, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70878, + "fields": { + "id_car_model": 25093, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70879, + "fields": { + "id_car_model": 23644, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70880, + "fields": { + "id_car_model": 25094, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70881, + "fields": { + "id_car_model": 25095, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70882, + "fields": { + "id_car_model": 25096, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70883, + "fields": { + "id_car_model": 19981, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70884, + "fields": { + "id_car_model": 25097, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70885, + "fields": { + "id_car_model": 25098, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70886, + "fields": { + "id_car_model": 24925, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70887, + "fields": { + "id_car_model": 25099, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70888, + "fields": { + "id_car_model": 25100, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70889, + "fields": { + "id_car_model": 25101, + "name": "Limousine", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70890, + "fields": { + "id_car_model": 25102, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70891, + "fields": { + "id_car_model": 25103, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70892, + "fields": { + "id_car_model": 25104, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70893, + "fields": { + "id_car_model": 25105, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70894, + "fields": { + "id_car_model": 25106, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70895, + "fields": { + "id_car_model": 25107, + "name": "SUV 5 doors EV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70896, + "fields": { + "id_car_model": 25108, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70897, + "fields": { + "id_car_model": 25109, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70898, + "fields": { + "id_car_model": 25110, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70899, + "fields": { + "id_car_model": 25111, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70900, + "fields": { + "id_car_model": 25112, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70901, + "fields": { + "id_car_model": 25113, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70902, + "fields": { + "id_car_model": 25114, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70903, + "fields": { + "id_car_model": 25115, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70904, + "fields": { + "id_car_model": 25116, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70905, + "fields": { + "id_car_model": 25117, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70906, + "fields": { + "id_car_model": 25118, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70907, + "fields": { + "id_car_model": 25119, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70908, + "fields": { + "id_car_model": 25119, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70909, + "fields": { + "id_car_model": 25120, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70910, + "fields": { + "id_car_model": 25121, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70911, + "fields": { + "id_car_model": 25122, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70912, + "fields": { + "id_car_model": 25123, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70913, + "fields": { + "id_car_model": 25124, + "name": "Minivan Master Edition", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70914, + "fields": { + "id_car_model": 25124, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70915, + "fields": { + "id_car_model": 1889, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70916, + "fields": { + "id_car_model": 1889, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70917, + "fields": { + "id_car_model": 25125, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70918, + "fields": { + "id_car_model": 25126, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70919, + "fields": { + "id_car_model": 25127, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70920, + "fields": { + "id_car_model": 2313, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70921, + "fields": { + "id_car_model": 303, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70922, + "fields": { + "id_car_model": 19850, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70923, + "fields": { + "id_car_model": 19850, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70924, + "fields": { + "id_car_model": 19850, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70925, + "fields": { + "id_car_model": 25129, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70926, + "fields": { + "id_car_model": 25130, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70927, + "fields": { + "id_car_model": 680, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70928, + "fields": { + "id_car_model": 25131, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70929, + "fields": { + "id_car_model": 25132, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70930, + "fields": { + "id_car_model": 1380, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70931, + "fields": { + "id_car_model": 22612, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70932, + "fields": { + "id_car_model": 25128, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70933, + "fields": { + "id_car_model": 25133, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70934, + "fields": { + "id_car_model": 25134, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70935, + "fields": { + "id_car_model": 25135, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70936, + "fields": { + "id_car_model": 25136, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70937, + "fields": { + "id_car_model": 25137, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70938, + "fields": { + "id_car_model": 22462, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70939, + "fields": { + "id_car_model": 20114, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70940, + "fields": { + "id_car_model": 25138, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70941, + "fields": { + "id_car_model": 25138, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70942, + "fields": { + "id_car_model": 25139, + "name": "Hatchback 5 doors Hatchback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70943, + "fields": { + "id_car_model": 25139, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70944, + "fields": { + "id_car_model": 25140, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70945, + "fields": { + "id_car_model": 25140, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70946, + "fields": { + "id_car_model": 25141, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70947, + "fields": { + "id_car_model": 25142, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70948, + "fields": { + "id_car_model": 25143, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70949, + "fields": { + "id_car_model": 22535, + "name": "Roadster Spider", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 70950, + "fields": { + "id_car_model": 25144, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71576, + "fields": { + "id_car_model": 155, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71577, + "fields": { + "id_car_model": 25409, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71578, + "fields": { + "id_car_model": 25410, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71579, + "fields": { + "id_car_model": 25411, + "name": "SUV 5 doors L", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71580, + "fields": { + "id_car_model": 25412, + "name": "Minivan PHEV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71581, + "fields": { + "id_car_model": 25412, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71582, + "fields": { + "id_car_model": 23716, + "name": "SUV 5 doors X", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71583, + "fields": { + "id_car_model": 25413, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71584, + "fields": { + "id_car_model": 794, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71585, + "fields": { + "id_car_model": 20159, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71586, + "fields": { + "id_car_model": 20159, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71587, + "fields": { + "id_car_model": 25414, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71588, + "fields": { + "id_car_model": 824, + "name": "Hatchback 5 doors GT", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71589, + "fields": { + "id_car_model": 961, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71590, + "fields": { + "id_car_model": 1006, + "name": "SUV 5 doors 130", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71591, + "fields": { + "id_car_model": 25415, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71592, + "fields": { + "id_car_model": 2134, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71593, + "fields": { + "id_car_model": 2134, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71594, + "fields": { + "id_car_model": 2134, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71595, + "fields": { + "id_car_model": 1821, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71596, + "fields": { + "id_car_model": 25416, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71597, + "fields": { + "id_car_model": 2158, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71598, + "fields": { + "id_car_model": 20674, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71599, + "fields": { + "id_car_model": 25417, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71600, + "fields": { + "id_car_model": 23647, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71601, + "fields": { + "id_car_model": 25418, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71602, + "fields": { + "id_car_model": 25419, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71603, + "fields": { + "id_car_model": 25420, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71604, + "fields": { + "id_car_model": 25421, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71605, + "fields": { + "id_car_model": 25422, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71606, + "fields": { + "id_car_model": 25423, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71607, + "fields": { + "id_car_model": 25424, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71608, + "fields": { + "id_car_model": 25425, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71609, + "fields": { + "id_car_model": 25426, + "name": "SUV 5 doors Plus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71610, + "fields": { + "id_car_model": 25426, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71611, + "fields": { + "id_car_model": 25427, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71612, + "fields": { + "id_car_model": 25428, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71613, + "fields": { + "id_car_model": 25429, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71614, + "fields": { + "id_car_model": 25430, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71615, + "fields": { + "id_car_model": 25431, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71616, + "fields": { + "id_car_model": 25432, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71617, + "fields": { + "id_car_model": 23121, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71618, + "fields": { + "id_car_model": 23121, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71619, + "fields": { + "id_car_model": 23121, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71620, + "fields": { + "id_car_model": 25433, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71621, + "fields": { + "id_car_model": 23131, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71622, + "fields": { + "id_car_model": 25434, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71623, + "fields": { + "id_car_model": 25435, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71624, + "fields": { + "id_car_model": 25436, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71625, + "fields": { + "id_car_model": 25437, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71626, + "fields": { + "id_car_model": 2318, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71627, + "fields": { + "id_car_model": 156, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71628, + "fields": { + "id_car_model": 2319, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71629, + "fields": { + "id_car_model": 25439, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71630, + "fields": { + "id_car_model": 25440, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71631, + "fields": { + "id_car_model": 25440, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71632, + "fields": { + "id_car_model": 25440, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71633, + "fields": { + "id_car_model": 25441, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71634, + "fields": { + "id_car_model": 756, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71635, + "fields": { + "id_car_model": 937, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71636, + "fields": { + "id_car_model": 22834, + "name": "SUV 5 doors Bronto", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71637, + "fields": { + "id_car_model": 20344, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71638, + "fields": { + "id_car_model": 20344, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71639, + "fields": { + "id_car_model": 2342, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71640, + "fields": { + "id_car_model": 2342, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71641, + "fields": { + "id_car_model": 20440, + "name": "Pickup One-and-a-half cabin King Cab", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71642, + "fields": { + "id_car_model": 2170, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71643, + "fields": { + "id_car_model": 1836, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71644, + "fields": { + "id_car_model": 2158, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71645, + "fields": { + "id_car_model": 1921, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71646, + "fields": { + "id_car_model": 25442, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71647, + "fields": { + "id_car_model": 25443, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71648, + "fields": { + "id_car_model": 25444, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71649, + "fields": { + "id_car_model": 25445, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71650, + "fields": { + "id_car_model": 25446, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71651, + "fields": { + "id_car_model": 25446, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71652, + "fields": { + "id_car_model": 25446, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71653, + "fields": { + "id_car_model": 25447, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71654, + "fields": { + "id_car_model": 25447, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71655, + "fields": { + "id_car_model": 189, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71656, + "fields": { + "id_car_model": 240, + "name": "Sedan DT", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71657, + "fields": { + "id_car_model": 240, + "name": "Hatchback 5 doors XT", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71658, + "fields": { + "id_car_model": 25448, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71659, + "fields": { + "id_car_model": 25449, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71660, + "fields": { + "id_car_model": 25450, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71661, + "fields": { + "id_car_model": 25450, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71662, + "fields": { + "id_car_model": 25451, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71663, + "fields": { + "id_car_model": 25452, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71664, + "fields": { + "id_car_model": 25453, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71665, + "fields": { + "id_car_model": 25454, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71666, + "fields": { + "id_car_model": 19279, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71667, + "fields": { + "id_car_model": 25455, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71668, + "fields": { + "id_car_model": 25456, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71669, + "fields": { + "id_car_model": 25457, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71670, + "fields": { + "id_car_model": 25457, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71671, + "fields": { + "id_car_model": 25458, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71672, + "fields": { + "id_car_model": 25459, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71673, + "fields": { + "id_car_model": 25460, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71674, + "fields": { + "id_car_model": 25461, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71675, + "fields": { + "id_car_model": 25462, + "name": "Minivan Plus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71676, + "fields": { + "id_car_model": 25463, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71677, + "fields": { + "id_car_model": 25464, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71678, + "fields": { + "id_car_model": 25465, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71679, + "fields": { + "id_car_model": 25466, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71680, + "fields": { + "id_car_model": 23595, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71681, + "fields": { + "id_car_model": 25467, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71682, + "fields": { + "id_car_model": 25468, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71683, + "fields": { + "id_car_model": 25469, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71684, + "fields": { + "id_car_model": 25470, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71685, + "fields": { + "id_car_model": 25471, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71687, + "fields": { + "id_car_model": 19690, + "name": "SUV 5 doors L", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71688, + "fields": { + "id_car_model": 19690, + "name": "SUV 5 doors L", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71689, + "fields": { + "id_car_model": 94, + "name": "SUV 5 doors L", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71690, + "fields": { + "id_car_model": 94, + "name": "SUV 5 doors L", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71691, + "fields": { + "id_car_model": 25472, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71692, + "fields": { + "id_car_model": 25409, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71693, + "fields": { + "id_car_model": 25473, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71694, + "fields": { + "id_car_model": 25474, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71695, + "fields": { + "id_car_model": 25456, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71696, + "fields": { + "id_car_model": 20159, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71697, + "fields": { + "id_car_model": 20266, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71698, + "fields": { + "id_car_model": 20266, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71699, + "fields": { + "id_car_model": 25475, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71700, + "fields": { + "id_car_model": 25476, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71701, + "fields": { + "id_car_model": 20997, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71702, + "fields": { + "id_car_model": 1145, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71703, + "fields": { + "id_car_model": 25477, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71704, + "fields": { + "id_car_model": 22847, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71705, + "fields": { + "id_car_model": 20351, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71706, + "fields": { + "id_car_model": 19718, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71707, + "fields": { + "id_car_model": 22851, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71708, + "fields": { + "id_car_model": 22856, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71709, + "fields": { + "id_car_model": 18966, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71710, + "fields": { + "id_car_model": 22857, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71711, + "fields": { + "id_car_model": 2348, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71712, + "fields": { + "id_car_model": 25478, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71713, + "fields": { + "id_car_model": 1818, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71714, + "fields": { + "id_car_model": 2179, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71715, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 5 doors L X", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71716, + "fields": { + "id_car_model": 20681, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71717, + "fields": { + "id_car_model": 1923, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71718, + "fields": { + "id_car_model": 22445, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71719, + "fields": { + "id_car_model": 25479, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71720, + "fields": { + "id_car_model": 25480, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71721, + "fields": { + "id_car_model": 25481, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71722, + "fields": { + "id_car_model": 22534, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71723, + "fields": { + "id_car_model": 240, + "name": "Sedan Plus", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71724, + "fields": { + "id_car_model": 25482, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71725, + "fields": { + "id_car_model": 25483, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71726, + "fields": { + "id_car_model": 25484, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71727, + "fields": { + "id_car_model": 25485, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71728, + "fields": { + "id_car_model": 23290, + "name": "Cabriolet Spider", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71729, + "fields": { + "id_car_model": 25454, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71730, + "fields": { + "id_car_model": 25487, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71731, + "fields": { + "id_car_model": 25488, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71732, + "fields": { + "id_car_model": 25489, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71733, + "fields": { + "id_car_model": 25490, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71734, + "fields": { + "id_car_model": 25491, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71735, + "fields": { + "id_car_model": 25461, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71736, + "fields": { + "id_car_model": 25492, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71737, + "fields": { + "id_car_model": 25494, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71738, + "fields": { + "id_car_model": 25495, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71739, + "fields": { + "id_car_model": 25496, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71740, + "fields": { + "id_car_model": 25497, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71741, + "fields": { + "id_car_model": 25498, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71742, + "fields": { + "id_car_model": 25499, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71743, + "fields": { + "id_car_model": 25500, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71744, + "fields": { + "id_car_model": 25501, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71745, + "fields": { + "id_car_model": 25502, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71746, + "fields": { + "id_car_model": 25486, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71747, + "fields": { + "id_car_model": 25493, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71748, + "fields": { + "id_car_model": 25027, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71749, + "fields": { + "id_car_model": 23585, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71750, + "fields": { + "id_car_model": 25503, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71751, + "fields": { + "id_car_model": 25504, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71752, + "fields": { + "id_car_model": 23704, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71753, + "fields": { + "id_car_model": 25411, + "name": "SUV 5 doors X", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71754, + "fields": { + "id_car_model": 25505, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71755, + "fields": { + "id_car_model": 25506, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71756, + "fields": { + "id_car_model": 25507, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71757, + "fields": { + "id_car_model": 759, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71758, + "fields": { + "id_car_model": 759, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71759, + "fields": { + "id_car_model": 759, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71760, + "fields": { + "id_car_model": 759, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71761, + "fields": { + "id_car_model": 20268, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71762, + "fields": { + "id_car_model": 20350, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71763, + "fields": { + "id_car_model": 22771, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71764, + "fields": { + "id_car_model": 23311, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71765, + "fields": { + "id_car_model": 25508, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71766, + "fields": { + "id_car_model": 25509, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71767, + "fields": { + "id_car_model": 25509, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71768, + "fields": { + "id_car_model": 1546, + "name": "SUV 5 doors Coupé", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71769, + "fields": { + "id_car_model": 25510, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71770, + "fields": { + "id_car_model": 25511, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71771, + "fields": { + "id_car_model": 25512, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71772, + "fields": { + "id_car_model": 25513, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71773, + "fields": { + "id_car_model": 25514, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71774, + "fields": { + "id_car_model": 25515, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71775, + "fields": { + "id_car_model": 25516, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71776, + "fields": { + "id_car_model": 25517, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71777, + "fields": { + "id_car_model": 25518, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71778, + "fields": { + "id_car_model": 25519, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71779, + "fields": { + "id_car_model": 25520, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71780, + "fields": { + "id_car_model": 25521, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71781, + "fields": { + "id_car_model": 25522, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71782, + "fields": { + "id_car_model": 25523, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71783, + "fields": { + "id_car_model": 25524, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71784, + "fields": { + "id_car_model": 25525, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71785, + "fields": { + "id_car_model": 25526, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71786, + "fields": { + "id_car_model": 25527, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71787, + "fields": { + "id_car_model": 25528, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71788, + "fields": { + "id_car_model": 20590, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71789, + "fields": { + "id_car_model": 1745, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71790, + "fields": { + "id_car_model": 25529, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71791, + "fields": { + "id_car_model": 25530, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71792, + "fields": { + "id_car_model": 25531, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71793, + "fields": { + "id_car_model": 25532, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71794, + "fields": { + "id_car_model": 25533, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71795, + "fields": { + "id_car_model": 25534, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71796, + "fields": { + "id_car_model": 25535, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71797, + "fields": { + "id_car_model": 25536, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71798, + "fields": { + "id_car_model": 24928, + "name": "SUV 5 doors DNA", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71799, + "fields": { + "id_car_model": 25537, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71800, + "fields": { + "id_car_model": 26662, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71801, + "fields": { + "id_car_model": 26663, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71802, + "fields": { + "id_car_model": 26663, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71803, + "fields": { + "id_car_model": 26664, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71804, + "fields": { + "id_car_model": 87, + "name": "Sedan L", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71805, + "fields": { + "id_car_model": 19777, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71806, + "fields": { + "id_car_model": 155, + "name": "SUV 5 doors Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71807, + "fields": { + "id_car_model": 152, + "name": "SUV 5 doors Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71808, + "fields": { + "id_car_model": 26665, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71809, + "fields": { + "id_car_model": 26666, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71810, + "fields": { + "id_car_model": 26667, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71811, + "fields": { + "id_car_model": 25043, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71812, + "fields": { + "id_car_model": 26668, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71813, + "fields": { + "id_car_model": 653, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71814, + "fields": { + "id_car_model": 653, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71815, + "fields": { + "id_car_model": 26669, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71816, + "fields": { + "id_car_model": 26670, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71817, + "fields": { + "id_car_model": 803, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71818, + "fields": { + "id_car_model": 771, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71819, + "fields": { + "id_car_model": 771, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71820, + "fields": { + "id_car_model": 771, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71821, + "fields": { + "id_car_model": 771, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71822, + "fields": { + "id_car_model": 855, + "name": "SUV 5 doors L", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71823, + "fields": { + "id_car_model": 820, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71824, + "fields": { + "id_car_model": 22680, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71825, + "fields": { + "id_car_model": 26671, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71826, + "fields": { + "id_car_model": 1490, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71827, + "fields": { + "id_car_model": 1490, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71828, + "fields": { + "id_car_model": 1490, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71829, + "fields": { + "id_car_model": 1490, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71830, + "fields": { + "id_car_model": 1590, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71831, + "fields": { + "id_car_model": 22655, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71832, + "fields": { + "id_car_model": 1928, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71833, + "fields": { + "id_car_model": 1901, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71834, + "fields": { + "id_car_model": 26672, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71835, + "fields": { + "id_car_model": 19063, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71836, + "fields": { + "id_car_model": 190, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71837, + "fields": { + "id_car_model": 26673, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71838, + "fields": { + "id_car_model": 26674, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71839, + "fields": { + "id_car_model": 26675, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71840, + "fields": { + "id_car_model": 26676, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71841, + "fields": { + "id_car_model": 26677, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71842, + "fields": { + "id_car_model": 23441, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71843, + "fields": { + "id_car_model": 20091, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71844, + "fields": { + "id_car_model": 26678, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71845, + "fields": { + "id_car_model": 26679, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71846, + "fields": { + "id_car_model": 26680, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71847, + "fields": { + "id_car_model": 26681, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71848, + "fields": { + "id_car_model": 26681, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71849, + "fields": { + "id_car_model": 26682, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71850, + "fields": { + "id_car_model": 26683, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71851, + "fields": { + "id_car_model": 26684, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71852, + "fields": { + "id_car_model": 26689, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71853, + "fields": { + "id_car_model": 26690, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71854, + "fields": { + "id_car_model": 26690, + "name": "SUV opened", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71855, + "fields": { + "id_car_model": 26691, + "name": "Roadster Spider", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71856, + "fields": { + "id_car_model": 26691, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71857, + "fields": { + "id_car_model": 26692, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71858, + "fields": { + "id_car_model": 23122, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71859, + "fields": { + "id_car_model": 23122, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71860, + "fields": { + "id_car_model": 26693, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71861, + "fields": { + "id_car_model": 26694, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71862, + "fields": { + "id_car_model": 26695, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71863, + "fields": { + "id_car_model": 26696, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71864, + "fields": { + "id_car_model": 26697, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71865, + "fields": { + "id_car_model": 26698, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71866, + "fields": { + "id_car_model": 26699, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71867, + "fields": { + "id_car_model": 26700, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71868, + "fields": { + "id_car_model": 26685, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71869, + "fields": { + "id_car_model": 26686, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71870, + "fields": { + "id_car_model": 26687, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 71871, + "fields": { + "id_car_model": 26688, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72908, + "fields": { + "id_car_model": 26729, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72909, + "fields": { + "id_car_model": 26730, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72910, + "fields": { + "id_car_model": 26731, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72911, + "fields": { + "id_car_model": 26732, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72912, + "fields": { + "id_car_model": 26733, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72913, + "fields": { + "id_car_model": 26734, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72914, + "fields": { + "id_car_model": 26735, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72915, + "fields": { + "id_car_model": 26736, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72916, + "fields": { + "id_car_model": 26737, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72917, + "fields": { + "id_car_model": 26738, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72918, + "fields": { + "id_car_model": 26739, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72919, + "fields": { + "id_car_model": 26740, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72920, + "fields": { + "id_car_model": 26741, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72921, + "fields": { + "id_car_model": 26742, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72922, + "fields": { + "id_car_model": 26743, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72923, + "fields": { + "id_car_model": 26744, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72924, + "fields": { + "id_car_model": 26745, + "name": "Pickup Double cabin L", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72925, + "fields": { + "id_car_model": 26746, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72926, + "fields": { + "id_car_model": 26747, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72927, + "fields": { + "id_car_model": 26748, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72928, + "fields": { + "id_car_model": 26749, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72929, + "fields": { + "id_car_model": 26750, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72930, + "fields": { + "id_car_model": 26751, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72931, + "fields": { + "id_car_model": 26752, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72932, + "fields": { + "id_car_model": 26753, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72933, + "fields": { + "id_car_model": 26753, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72934, + "fields": { + "id_car_model": 26754, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72935, + "fields": { + "id_car_model": 26755, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72936, + "fields": { + "id_car_model": 25043, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72937, + "fields": { + "id_car_model": 26668, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72938, + "fields": { + "id_car_model": 290, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72939, + "fields": { + "id_car_model": 316, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72940, + "fields": { + "id_car_model": 753, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72941, + "fields": { + "id_car_model": 1022, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72942, + "fields": { + "id_car_model": 20350, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72943, + "fields": { + "id_car_model": 1717, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72944, + "fields": { + "id_car_model": 1794, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72945, + "fields": { + "id_car_model": 1918, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72946, + "fields": { + "id_car_model": 25479, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72947, + "fields": { + "id_car_model": 189, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72948, + "fields": { + "id_car_model": 1009, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72949, + "fields": { + "id_car_model": 1217, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72950, + "fields": { + "id_car_model": 1918, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72951, + "fields": { + "id_car_model": 22479, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72952, + "fields": { + "id_car_model": 23599, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72953, + "fields": { + "id_car_model": 87, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72954, + "fields": { + "id_car_model": 27066, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72955, + "fields": { + "id_car_model": 27067, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72956, + "fields": { + "id_car_model": 27068, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72957, + "fields": { + "id_car_model": 27069, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72958, + "fields": { + "id_car_model": 27070, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72959, + "fields": { + "id_car_model": 27071, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72960, + "fields": { + "id_car_model": 27071, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72961, + "fields": { + "id_car_model": 27071, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72962, + "fields": { + "id_car_model": 27072, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72963, + "fields": { + "id_car_model": 27073, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72964, + "fields": { + "id_car_model": 20353, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72965, + "fields": { + "id_car_model": 23274, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72966, + "fields": { + "id_car_model": 19464, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72967, + "fields": { + "id_car_model": 1486, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72968, + "fields": { + "id_car_model": 1486, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72969, + "fields": { + "id_car_model": 27074, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72970, + "fields": { + "id_car_model": 1850, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72971, + "fields": { + "id_car_model": 20981, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72972, + "fields": { + "id_car_model": 2186, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72973, + "fields": { + "id_car_model": 2186, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72974, + "fields": { + "id_car_model": 2233, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72975, + "fields": { + "id_car_model": 24960, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72976, + "fields": { + "id_car_model": 27075, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72977, + "fields": { + "id_car_model": 27076, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72978, + "fields": { + "id_car_model": 19986, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72979, + "fields": { + "id_car_model": 27077, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72980, + "fields": { + "id_car_model": 27077, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72981, + "fields": { + "id_car_model": 27078, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72982, + "fields": { + "id_car_model": 27078, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72983, + "fields": { + "id_car_model": 27079, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72984, + "fields": { + "id_car_model": 27080, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72985, + "fields": { + "id_car_model": 27081, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72986, + "fields": { + "id_car_model": 27082, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72987, + "fields": { + "id_car_model": 27083, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72988, + "fields": { + "id_car_model": 27084, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72989, + "fields": { + "id_car_model": 27085, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72990, + "fields": { + "id_car_model": 27086, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72991, + "fields": { + "id_car_model": 27087, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72992, + "fields": { + "id_car_model": 1236, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72993, + "fields": { + "id_car_model": 1236, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72994, + "fields": { + "id_car_model": 27088, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72995, + "fields": { + "id_car_model": 20493, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72996, + "fields": { + "id_car_model": 27089, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72997, + "fields": { + "id_car_model": 27090, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72998, + "fields": { + "id_car_model": 27091, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 72999, + "fields": { + "id_car_model": 27092, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73000, + "fields": { + "id_car_model": 27093, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73001, + "fields": { + "id_car_model": 27094, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73002, + "fields": { + "id_car_model": 27095, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73003, + "fields": { + "id_car_model": 27095, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73004, + "fields": { + "id_car_model": 27095, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73005, + "fields": { + "id_car_model": 24987, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73006, + "fields": { + "id_car_model": 27096, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73007, + "fields": { + "id_car_model": 27097, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73008, + "fields": { + "id_car_model": 27098, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73009, + "fields": { + "id_car_model": 27099, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73014, + "fields": { + "id_car_model": 24998, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73015, + "fields": { + "id_car_model": 27100, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73016, + "fields": { + "id_car_model": 27101, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73017, + "fields": { + "id_car_model": 23731, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73018, + "fields": { + "id_car_model": 22413, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73019, + "fields": { + "id_car_model": 27102, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73020, + "fields": { + "id_car_model": 27103, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73021, + "fields": { + "id_car_model": 27104, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73022, + "fields": { + "id_car_model": 27105, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73023, + "fields": { + "id_car_model": 630, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73024, + "fields": { + "id_car_model": 23414, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73025, + "fields": { + "id_car_model": 27106, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73026, + "fields": { + "id_car_model": 27107, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73027, + "fields": { + "id_car_model": 27108, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73028, + "fields": { + "id_car_model": 27109, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73029, + "fields": { + "id_car_model": 25506, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73030, + "fields": { + "id_car_model": 25506, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73031, + "fields": { + "id_car_model": 23421, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73032, + "fields": { + "id_car_model": 845, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73033, + "fields": { + "id_car_model": 22410, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73034, + "fields": { + "id_car_model": 27110, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73035, + "fields": { + "id_car_model": 22669, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73036, + "fields": { + "id_car_model": 1141, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73037, + "fields": { + "id_car_model": 1266, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73038, + "fields": { + "id_car_model": 2141, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73039, + "fields": { + "id_car_model": 1912, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73040, + "fields": { + "id_car_model": 22487, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73041, + "fields": { + "id_car_model": 27111, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73042, + "fields": { + "id_car_model": 27112, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73043, + "fields": { + "id_car_model": 27113, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73044, + "fields": { + "id_car_model": 26672, + "name": "Cabriolet Volante", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73045, + "fields": { + "id_car_model": 27114, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73046, + "fields": { + "id_car_model": 24960, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73047, + "fields": { + "id_car_model": 27115, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73048, + "fields": { + "id_car_model": 27116, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73049, + "fields": { + "id_car_model": 27117, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73050, + "fields": { + "id_car_model": 27118, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73051, + "fields": { + "id_car_model": 27119, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73052, + "fields": { + "id_car_model": 27120, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73053, + "fields": { + "id_car_model": 190, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73054, + "fields": { + "id_car_model": 19265, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73055, + "fields": { + "id_car_model": 27121, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73056, + "fields": { + "id_car_model": 27122, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73057, + "fields": { + "id_car_model": 27123, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73058, + "fields": { + "id_car_model": 27124, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73059, + "fields": { + "id_car_model": 27125, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73060, + "fields": { + "id_car_model": 27126, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73061, + "fields": { + "id_car_model": 22343, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73062, + "fields": { + "id_car_model": 27127, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73063, + "fields": { + "id_car_model": 27128, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73064, + "fields": { + "id_car_model": 27129, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73065, + "fields": { + "id_car_model": 27130, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73066, + "fields": { + "id_car_model": 27131, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73067, + "fields": { + "id_car_model": 607, + "name": "Minivan L3", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73068, + "fields": { + "id_car_model": 27134, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73069, + "fields": { + "id_car_model": 27135, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73070, + "fields": { + "id_car_model": 27136, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73071, + "fields": { + "id_car_model": 27137, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73072, + "fields": { + "id_car_model": 27138, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73073, + "fields": { + "id_car_model": 25050, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73074, + "fields": { + "id_car_model": 27139, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73075, + "fields": { + "id_car_model": 27140, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73076, + "fields": { + "id_car_model": 27141, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73077, + "fields": { + "id_car_model": 27142, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73078, + "fields": { + "id_car_model": 27143, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73079, + "fields": { + "id_car_model": 27144, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73080, + "fields": { + "id_car_model": 27145, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73081, + "fields": { + "id_car_model": 27146, + "name": "SUV 5 doors Air", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73082, + "fields": { + "id_car_model": 27147, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73083, + "fields": { + "id_car_model": 27148, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73084, + "fields": { + "id_car_model": 27149, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73085, + "fields": { + "id_car_model": 27150, + "name": "Pickup Double cabin KHAN", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73086, + "fields": { + "id_car_model": 27151, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73087, + "fields": { + "id_car_model": 23602, + "name": "Roadster Cielo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73088, + "fields": { + "id_car_model": 27152, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73089, + "fields": { + "id_car_model": 27153, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73090, + "fields": { + "id_car_model": 1234, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73091, + "fields": { + "id_car_model": 27154, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73092, + "fields": { + "id_car_model": 27155, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73093, + "fields": { + "id_car_model": 27156, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73094, + "fields": { + "id_car_model": 27157, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73095, + "fields": { + "id_car_model": 27158, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73096, + "fields": { + "id_car_model": 27159, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73097, + "fields": { + "id_car_model": 27160, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73098, + "fields": { + "id_car_model": 27161, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73099, + "fields": { + "id_car_model": 27162, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73100, + "fields": { + "id_car_model": 27096, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73101, + "fields": { + "id_car_model": 22420, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73102, + "fields": { + "id_car_model": 27163, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73103, + "fields": { + "id_car_model": 27164, + "name": "SUV 5 doors DD-i", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73104, + "fields": { + "id_car_model": 24928, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73105, + "fields": { + "id_car_model": 27165, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73106, + "fields": { + "id_car_model": 27165, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73107, + "fields": { + "id_car_model": 20797, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73108, + "fields": { + "id_car_model": 27166, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73109, + "fields": { + "id_car_model": 27167, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73110, + "fields": { + "id_car_model": 27168, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73111, + "fields": { + "id_car_model": 19265, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73112, + "fields": { + "id_car_model": 27132, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73113, + "fields": { + "id_car_model": 27133, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73114, + "fields": { + "id_car_model": 27145, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73115, + "fields": { + "id_car_model": 27292, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73116, + "fields": { + "id_car_model": 27292, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73117, + "fields": { + "id_car_model": 27292, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73118, + "fields": { + "id_car_model": 27292, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73119, + "fields": { + "id_car_model": 27293, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73120, + "fields": { + "id_car_model": 23570, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73121, + "fields": { + "id_car_model": 24916, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73122, + "fields": { + "id_car_model": 27294, + "name": "SUV 5 doors S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73123, + "fields": { + "id_car_model": 27294, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73124, + "fields": { + "id_car_model": 27295, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73125, + "fields": { + "id_car_model": 25413, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73126, + "fields": { + "id_car_model": 779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73127, + "fields": { + "id_car_model": 779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73128, + "fields": { + "id_car_model": 824, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73129, + "fields": { + "id_car_model": 23683, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73130, + "fields": { + "id_car_model": 27296, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73131, + "fields": { + "id_car_model": 27297, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73132, + "fields": { + "id_car_model": 1476, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73133, + "fields": { + "id_car_model": 27298, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73134, + "fields": { + "id_car_model": 27299, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73135, + "fields": { + "id_car_model": 1917, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73136, + "fields": { + "id_car_model": 1912, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73137, + "fields": { + "id_car_model": 27300, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73138, + "fields": { + "id_car_model": 27301, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73139, + "fields": { + "id_car_model": 22668, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73140, + "fields": { + "id_car_model": 27302, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73141, + "fields": { + "id_car_model": 27303, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73142, + "fields": { + "id_car_model": 27304, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73143, + "fields": { + "id_car_model": 27305, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73144, + "fields": { + "id_car_model": 27306, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73145, + "fields": { + "id_car_model": 27307, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73146, + "fields": { + "id_car_model": 27308, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73147, + "fields": { + "id_car_model": 27309, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73148, + "fields": { + "id_car_model": 25523, + "name": "SUV 5 doors S", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73149, + "fields": { + "id_car_model": 23079, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73150, + "fields": { + "id_car_model": 25144, + "name": "wagon 5 doors Touring", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73151, + "fields": { + "id_car_model": 27310, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73152, + "fields": { + "id_car_model": 27311, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73153, + "fields": { + "id_car_model": 27312, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73154, + "fields": { + "id_car_model": 27313, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73155, + "fields": { + "id_car_model": 27314, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73156, + "fields": { + "id_car_model": 640, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73157, + "fields": { + "id_car_model": 24921, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73158, + "fields": { + "id_car_model": 27332, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73159, + "fields": { + "id_car_model": 774, + "name": "Hatchback 5 doors Crosstar", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73160, + "fields": { + "id_car_model": 779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73161, + "fields": { + "id_car_model": 849, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73162, + "fields": { + "id_car_model": 2280, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73163, + "fields": { + "id_car_model": 1494, + "name": "Sedan L", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73164, + "fields": { + "id_car_model": 1471, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73165, + "fields": { + "id_car_model": 1501, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73166, + "fields": { + "id_car_model": 27333, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73167, + "fields": { + "id_car_model": 155, + "name": "SUV 5 doors Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73168, + "fields": { + "id_car_model": 19772, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73169, + "fields": { + "id_car_model": 22467, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73170, + "fields": { + "id_car_model": 19265, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73171, + "fields": { + "id_car_model": 27334, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73172, + "fields": { + "id_car_model": 23697, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73173, + "fields": { + "id_car_model": 23697, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73174, + "fields": { + "id_car_model": 27331, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73175, + "fields": { + "id_car_model": 27335, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73176, + "fields": { + "id_car_model": 27336, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73177, + "fields": { + "id_car_model": 27337, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73178, + "fields": { + "id_car_model": 27338, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73179, + "fields": { + "id_car_model": 27339, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73180, + "fields": { + "id_car_model": 27340, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73181, + "fields": { + "id_car_model": 25051, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73182, + "fields": { + "id_car_model": 27341, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73183, + "fields": { + "id_car_model": 27342, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73184, + "fields": { + "id_car_model": 27343, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73185, + "fields": { + "id_car_model": 27344, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73186, + "fields": { + "id_car_model": 27330, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73187, + "fields": { + "id_car_model": 27345, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73188, + "fields": { + "id_car_model": 27346, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73189, + "fields": { + "id_car_model": 27347, + "name": "Hatchback 5 doors GT", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73190, + "fields": { + "id_car_model": 27348, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73191, + "fields": { + "id_car_model": 27348, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73192, + "fields": { + "id_car_model": 27348, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73193, + "fields": { + "id_car_model": 27349, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73194, + "fields": { + "id_car_model": 27350, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73195, + "fields": { + "id_car_model": 27351, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73196, + "fields": { + "id_car_model": 27352, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73197, + "fields": { + "id_car_model": 27353, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73213, + "fields": { + "id_car_model": 22416, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73214, + "fields": { + "id_car_model": 27475, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73215, + "fields": { + "id_car_model": 27476, + "name": "Pickup", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73216, + "fields": { + "id_car_model": 22488, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73217, + "fields": { + "id_car_model": 152, + "name": "SUV 5 doors Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73218, + "fields": { + "id_car_model": 27477, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73219, + "fields": { + "id_car_model": 27478, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73220, + "fields": { + "id_car_model": 624, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73221, + "fields": { + "id_car_model": 27479, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73222, + "fields": { + "id_car_model": 27480, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73223, + "fields": { + "id_car_model": 960, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73224, + "fields": { + "id_car_model": 20267, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73225, + "fields": { + "id_car_model": 20264, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73226, + "fields": { + "id_car_model": 1290, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73227, + "fields": { + "id_car_model": 1290, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73228, + "fields": { + "id_car_model": 2127, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73229, + "fields": { + "id_car_model": 2131, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73230, + "fields": { + "id_car_model": 20438, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73231, + "fields": { + "id_car_model": 1494, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73232, + "fields": { + "id_car_model": 1494, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73233, + "fields": { + "id_car_model": 1494, + "name": "Sedan L", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73234, + "fields": { + "id_car_model": 27481, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73235, + "fields": { + "id_car_model": 1849, + "name": "SUV 5 doors 76", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73236, + "fields": { + "id_car_model": 1849, + "name": "Pickup Single cabin 79", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73237, + "fields": { + "id_car_model": 1849, + "name": "SUV 3 doors 71", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73238, + "fields": { + "id_car_model": 1849, + "name": "Pickup Double cabin 79", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73239, + "fields": { + "id_car_model": 21006, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73240, + "fields": { + "id_car_model": 27482, + "name": "Fastback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73241, + "fields": { + "id_car_model": 22581, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73242, + "fields": { + "id_car_model": 27483, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73243, + "fields": { + "id_car_model": 19693, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73244, + "fields": { + "id_car_model": 27484, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73245, + "fields": { + "id_car_model": 27485, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73246, + "fields": { + "id_car_model": 27486, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73247, + "fields": { + "id_car_model": 27487, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73248, + "fields": { + "id_car_model": 27488, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73249, + "fields": { + "id_car_model": 27489, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73250, + "fields": { + "id_car_model": 27490, + "name": "Pickup Double cabin LWB", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73251, + "fields": { + "id_car_model": 27491, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73252, + "fields": { + "id_car_model": 19280, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73253, + "fields": { + "id_car_model": 27492, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73254, + "fields": { + "id_car_model": 27493, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73255, + "fields": { + "id_car_model": 27494, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73256, + "fields": { + "id_car_model": 27495, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73257, + "fields": { + "id_car_model": 27496, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73258, + "fields": { + "id_car_model": 27497, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73259, + "fields": { + "id_car_model": 27498, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73260, + "fields": { + "id_car_model": 27499, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73261, + "fields": { + "id_car_model": 1756, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73262, + "fields": { + "id_car_model": 27500, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73263, + "fields": { + "id_car_model": 27501, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73264, + "fields": { + "id_car_model": 27502, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73265, + "fields": { + "id_car_model": 27502, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73266, + "fields": { + "id_car_model": 27503, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73267, + "fields": { + "id_car_model": 27504, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73268, + "fields": { + "id_car_model": 27505, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73269, + "fields": { + "id_car_model": 27506, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73270, + "fields": { + "id_car_model": 27507, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73271, + "fields": { + "id_car_model": 27508, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73272, + "fields": { + "id_car_model": 27509, + "name": "Pickup Double cabin LWB", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73273, + "fields": { + "id_car_model": 27510, + "name": "Pickup Double cabin LWB", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73279, + "fields": { + "id_car_model": 313, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73280, + "fields": { + "id_car_model": 22474, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73281, + "fields": { + "id_car_model": 27514, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73282, + "fields": { + "id_car_model": 25456, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73283, + "fields": { + "id_car_model": 818, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73284, + "fields": { + "id_car_model": 859, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73285, + "fields": { + "id_car_model": 1271, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73286, + "fields": { + "id_car_model": 1397, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73287, + "fields": { + "id_car_model": 1604, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73288, + "fields": { + "id_car_model": 20520, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73289, + "fields": { + "id_car_model": 20520, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73290, + "fields": { + "id_car_model": 27515, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73291, + "fields": { + "id_car_model": 20945, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73292, + "fields": { + "id_car_model": 1818, + "name": "Sedan Axio", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73293, + "fields": { + "id_car_model": 1818, + "name": "wagon 5 doors Fielder", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73294, + "fields": { + "id_car_model": 2203, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73295, + "fields": { + "id_car_model": 1927, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73296, + "fields": { + "id_car_model": 1901, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73297, + "fields": { + "id_car_model": 27516, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73298, + "fields": { + "id_car_model": 27517, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73299, + "fields": { + "id_car_model": 27518, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73300, + "fields": { + "id_car_model": 27519, + "name": "Roadster Spider", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73301, + "fields": { + "id_car_model": 27519, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73302, + "fields": { + "id_car_model": 27520, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73303, + "fields": { + "id_car_model": 27521, + "name": "Phaeton", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73304, + "fields": { + "id_car_model": 27521, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73305, + "fields": { + "id_car_model": 27521, + "name": "Roadster Sports Special", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73306, + "fields": { + "id_car_model": 27521, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73307, + "fields": { + "id_car_model": 27521, + "name": "Cabriolet Torpedo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73308, + "fields": { + "id_car_model": 27522, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73309, + "fields": { + "id_car_model": 27523, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73310, + "fields": { + "id_car_model": 27524, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73311, + "fields": { + "id_car_model": 27525, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73312, + "fields": { + "id_car_model": 27526, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73313, + "fields": { + "id_car_model": 27527, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73314, + "fields": { + "id_car_model": 27528, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73315, + "fields": { + "id_car_model": 931, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73316, + "fields": { + "id_car_model": 931, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73317, + "fields": { + "id_car_model": 20248, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73318, + "fields": { + "id_car_model": 27529, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73319, + "fields": { + "id_car_model": 25103, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73320, + "fields": { + "id_car_model": 27530, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73321, + "fields": { + "id_car_model": 27531, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73322, + "fields": { + "id_car_model": 27532, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73323, + "fields": { + "id_car_model": 27533, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73324, + "fields": { + "id_car_model": 1258, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73325, + "fields": { + "id_car_model": 27534, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73326, + "fields": { + "id_car_model": 1549, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73327, + "fields": { + "id_car_model": 27535, + "name": "Sedan EV", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73328, + "fields": { + "id_car_model": 1716, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73329, + "fields": { + "id_car_model": 5812, + "name": "SUV 5 doors Layback", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73330, + "fields": { + "id_car_model": 1758, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73331, + "fields": { + "id_car_model": 27536, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73332, + "fields": { + "id_car_model": 27536, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73333, + "fields": { + "id_car_model": 27503, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73334, + "fields": { + "id_car_model": 27537, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73335, + "fields": { + "id_car_model": 27538, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73336, + "fields": { + "id_car_model": 27539, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73337, + "fields": { + "id_car_model": 18970, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73338, + "fields": { + "id_car_model": 88, + "name": "Sedan L", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73339, + "fields": { + "id_car_model": 27647, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73340, + "fields": { + "id_car_model": 27648, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73341, + "fields": { + "id_car_model": 312, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73342, + "fields": { + "id_car_model": 25131, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73343, + "fields": { + "id_car_model": 23610, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73344, + "fields": { + "id_car_model": 20166, + "name": "Microvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73345, + "fields": { + "id_car_model": 19707, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73346, + "fields": { + "id_car_model": 855, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73347, + "fields": { + "id_car_model": 938, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73348, + "fields": { + "id_car_model": 27649, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73349, + "fields": { + "id_car_model": 22855, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73350, + "fields": { + "id_car_model": 27650, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73351, + "fields": { + "id_car_model": 1433, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73352, + "fields": { + "id_car_model": 1477, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73353, + "fields": { + "id_car_model": 1588, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73354, + "fields": { + "id_car_model": 22655, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73355, + "fields": { + "id_car_model": 22889, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73356, + "fields": { + "id_car_model": 1901, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73357, + "fields": { + "id_car_model": 1901, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73358, + "fields": { + "id_car_model": 24960, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73359, + "fields": { + "id_car_model": 27651, + "name": "SUV 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73360, + "fields": { + "id_car_model": 27652, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73361, + "fields": { + "id_car_model": 27653, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73362, + "fields": { + "id_car_model": 27654, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73363, + "fields": { + "id_car_model": 27655, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73364, + "fields": { + "id_car_model": 27656, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73365, + "fields": { + "id_car_model": 23317, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73366, + "fields": { + "id_car_model": 27657, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73367, + "fields": { + "id_car_model": 27658, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73368, + "fields": { + "id_car_model": 20232, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73369, + "fields": { + "id_car_model": 27659, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73370, + "fields": { + "id_car_model": 27660, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73371, + "fields": { + "id_car_model": 27661, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73372, + "fields": { + "id_car_model": 27662, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73373, + "fields": { + "id_car_model": 27663, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73374, + "fields": { + "id_car_model": 1548, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73375, + "fields": { + "id_car_model": 22884, + "name": "wagon 5 doors Sport Turismo", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73376, + "fields": { + "id_car_model": 22884, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73377, + "fields": { + "id_car_model": 27664, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73378, + "fields": { + "id_car_model": 27665, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73379, + "fields": { + "id_car_model": 26693, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73380, + "fields": { + "id_car_model": 1741, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73381, + "fields": { + "id_car_model": 27666, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73382, + "fields": { + "id_car_model": 95, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73383, + "fields": { + "id_car_model": 19777, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73384, + "fields": { + "id_car_model": 19776, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73385, + "fields": { + "id_car_model": 19776, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73386, + "fields": { + "id_car_model": 2315, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73387, + "fields": { + "id_car_model": 2315, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73388, + "fields": { + "id_car_model": 27729, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73389, + "fields": { + "id_car_model": 24990, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73390, + "fields": { + "id_car_model": 27730, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73391, + "fields": { + "id_car_model": 27731, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73392, + "fields": { + "id_car_model": 20079, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73393, + "fields": { + "id_car_model": 20079, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73394, + "fields": { + "id_car_model": 27732, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73395, + "fields": { + "id_car_model": 27733, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73396, + "fields": { + "id_car_model": 1403, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73397, + "fields": { + "id_car_model": 1687, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73398, + "fields": { + "id_car_model": 1810, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73399, + "fields": { + "id_car_model": 2217, + "name": "Hatchback 3 doors GR", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73400, + "fields": { + "id_car_model": 1908, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73401, + "fields": { + "id_car_model": 1908, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73402, + "fields": { + "id_car_model": 72, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73403, + "fields": { + "id_car_model": 27734, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73404, + "fields": { + "id_car_model": 27735, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73405, + "fields": { + "id_car_model": 27736, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73406, + "fields": { + "id_car_model": 27737, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73407, + "fields": { + "id_car_model": 23283, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73408, + "fields": { + "id_car_model": 23700, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73409, + "fields": { + "id_car_model": 27738, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73410, + "fields": { + "id_car_model": 27739, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73411, + "fields": { + "id_car_model": 27739, + "name": "Coupe Business Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73412, + "fields": { + "id_car_model": 494, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73413, + "fields": { + "id_car_model": 27740, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73414, + "fields": { + "id_car_model": 27741, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73415, + "fields": { + "id_car_model": 27742, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73416, + "fields": { + "id_car_model": 27743, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73417, + "fields": { + "id_car_model": 27744, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73418, + "fields": { + "id_car_model": 27745, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73419, + "fields": { + "id_car_model": 27745, + "name": "Pickup Quartermaster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73420, + "fields": { + "id_car_model": 27746, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73421, + "fields": { + "id_car_model": 27747, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73422, + "fields": { + "id_car_model": 27747, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73423, + "fields": { + "id_car_model": 27748, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73424, + "fields": { + "id_car_model": 27749, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73425, + "fields": { + "id_car_model": 27750, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73426, + "fields": { + "id_car_model": 1037, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73427, + "fields": { + "id_car_model": 23082, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73428, + "fields": { + "id_car_model": 27751, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73429, + "fields": { + "id_car_model": 27752, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73430, + "fields": { + "id_car_model": 27753, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73431, + "fields": { + "id_car_model": 27754, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73432, + "fields": { + "id_car_model": 27755, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73433, + "fields": { + "id_car_model": 27756, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73434, + "fields": { + "id_car_model": 27757, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73435, + "fields": { + "id_car_model": 27758, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73436, + "fields": { + "id_car_model": 27759, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73437, + "fields": { + "id_car_model": 24953, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73438, + "fields": { + "id_car_model": 27760, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73439, + "fields": { + "id_car_model": 20078, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73440, + "fields": { + "id_car_model": 20355, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73441, + "fields": { + "id_car_model": 2347, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73442, + "fields": { + "id_car_model": 1279, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73443, + "fields": { + "id_car_model": 1686, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73444, + "fields": { + "id_car_model": 1686, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73445, + "fields": { + "id_car_model": 2370, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73446, + "fields": { + "id_car_model": 2370, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73447, + "fields": { + "id_car_model": 82, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73448, + "fields": { + "id_car_model": 82, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73449, + "fields": { + "id_car_model": 112, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73450, + "fields": { + "id_car_model": 25094, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73451, + "fields": { + "id_car_model": 27761, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73452, + "fields": { + "id_car_model": 492, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73453, + "fields": { + "id_car_model": 27762, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73455, + "fields": { + "id_car_model": 875, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73456, + "fields": { + "id_car_model": 27764, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73457, + "fields": { + "id_car_model": 27765, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73458, + "fields": { + "id_car_model": 27766, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73459, + "fields": { + "id_car_model": 27767, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73460, + "fields": { + "id_car_model": 25458, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73461, + "fields": { + "id_car_model": 25011, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73462, + "fields": { + "id_car_model": 25459, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73463, + "fields": { + "id_car_model": 27768, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73464, + "fields": { + "id_car_model": 27769, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73465, + "fields": { + "id_car_model": 27770, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73466, + "fields": { + "id_car_model": 107, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73467, + "fields": { + "id_car_model": 107, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73468, + "fields": { + "id_car_model": 26729, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73469, + "fields": { + "id_car_model": 27772, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73470, + "fields": { + "id_car_model": 27772, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73471, + "fields": { + "id_car_model": 27772, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73472, + "fields": { + "id_car_model": 27773, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73473, + "fields": { + "id_car_model": 25089, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73474, + "fields": { + "id_car_model": 20272, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73475, + "fields": { + "id_car_model": 2345, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73476, + "fields": { + "id_car_model": 2345, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73477, + "fields": { + "id_car_model": 1687, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73478, + "fields": { + "id_car_model": 1687, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73479, + "fields": { + "id_car_model": 1689, + "name": "wagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73480, + "fields": { + "id_car_model": 1689, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73481, + "fields": { + "id_car_model": 1798, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73482, + "fields": { + "id_car_model": 19760, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73483, + "fields": { + "id_car_model": 27771, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73484, + "fields": { + "id_car_model": 27774, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73485, + "fields": { + "id_car_model": 27775, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73486, + "fields": { + "id_car_model": 27776, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73487, + "fields": { + "id_car_model": 27777, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73488, + "fields": { + "id_car_model": 384, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73489, + "fields": { + "id_car_model": 27778, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73490, + "fields": { + "id_car_model": 27779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73491, + "fields": { + "id_car_model": 27779, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73492, + "fields": { + "id_car_model": 23018, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73493, + "fields": { + "id_car_model": 574, + "name": "Sedan 2 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73494, + "fields": { + "id_car_model": 27780, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73495, + "fields": { + "id_car_model": 1004, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73496, + "fields": { + "id_car_model": 20313, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73497, + "fields": { + "id_car_model": 1232, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73498, + "fields": { + "id_car_model": 27781, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73499, + "fields": { + "id_car_model": 27782, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73506, + "fields": { + "id_car_model": 27882, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73507, + "fields": { + "id_car_model": 19211, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73508, + "fields": { + "id_car_model": 27883, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73509, + "fields": { + "id_car_model": 1163, + "name": "targa", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73510, + "fields": { + "id_car_model": 22478, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73511, + "fields": { + "id_car_model": 27884, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73512, + "fields": { + "id_car_model": 27885, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73513, + "fields": { + "id_car_model": 27886, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73514, + "fields": { + "id_car_model": 27887, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73515, + "fields": { + "id_car_model": 27888, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73516, + "fields": { + "id_car_model": 27889, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73517, + "fields": { + "id_car_model": 23603, + "name": "Roadster", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73518, + "fields": { + "id_car_model": 1759, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73519, + "fields": { + "id_car_model": 22460, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73520, + "fields": { + "id_car_model": 27914, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73521, + "fields": { + "id_car_model": 27915, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73522, + "fields": { + "id_car_model": 27915, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73523, + "fields": { + "id_car_model": 27916, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73524, + "fields": { + "id_car_model": 27917, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73525, + "fields": { + "id_car_model": 27917, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73526, + "fields": { + "id_car_model": 27918, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73527, + "fields": { + "id_car_model": 27919, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73528, + "fields": { + "id_car_model": 19776, + "name": "Liftback Gran Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73529, + "fields": { + "id_car_model": 27920, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73530, + "fields": { + "id_car_model": 652, + "name": "SUV 5 doors Sport", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73531, + "fields": { + "id_car_model": 27921, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73532, + "fields": { + "id_car_model": 27921, + "name": "Coupe-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73533, + "fields": { + "id_car_model": 20370, + "name": "Minivan Kompakt", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73534, + "fields": { + "id_car_model": 20370, + "name": "Minivan Extra Lang", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73535, + "fields": { + "id_car_model": 2231, + "name": "wagon 5 doors Sportwagon", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73536, + "fields": { + "id_car_model": 1927, + "name": "SUV 5 doors L Pro", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73537, + "fields": { + "id_car_model": 22571, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73538, + "fields": { + "id_car_model": 27922, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73539, + "fields": { + "id_car_model": 27923, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73540, + "fields": { + "id_car_model": 27924, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73541, + "fields": { + "id_car_model": 27925, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73542, + "fields": { + "id_car_model": 27926, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73543, + "fields": { + "id_car_model": 27927, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73544, + "fields": { + "id_car_model": 27928, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73545, + "fields": { + "id_car_model": 27929, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73546, + "fields": { + "id_car_model": 27929, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73547, + "fields": { + "id_car_model": 27930, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73548, + "fields": { + "id_car_model": 27931, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73549, + "fields": { + "id_car_model": 23714, + "name": "Sedan L", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73550, + "fields": { + "id_car_model": 27932, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73551, + "fields": { + "id_car_model": 27933, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73552, + "fields": { + "id_car_model": 27934, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73553, + "fields": { + "id_car_model": 27935, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73554, + "fields": { + "id_car_model": 27936, + "name": "Coupe berlinetta", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73555, + "fields": { + "id_car_model": 27937, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73556, + "fields": { + "id_car_model": 27938, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73557, + "fields": { + "id_car_model": 27939, + "name": "Hatchback 3 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73558, + "fields": { + "id_car_model": 27940, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73559, + "fields": { + "id_car_model": 926, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73560, + "fields": { + "id_car_model": 27941, + "name": "Pickup Double cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73561, + "fields": { + "id_car_model": 23066, + "name": "Coupe GT-XR", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73562, + "fields": { + "id_car_model": 27942, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73563, + "fields": { + "id_car_model": 27943, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73564, + "fields": { + "id_car_model": 27944, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73565, + "fields": { + "id_car_model": 27945, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73566, + "fields": { + "id_car_model": 27946, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73567, + "fields": { + "id_car_model": 27947, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73568, + "fields": { + "id_car_model": 19290, + "name": "Cabriolet", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73569, + "fields": { + "id_car_model": 19290, + "name": "Sedan-Hardtop", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73570, + "fields": { + "id_car_model": 27948, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73571, + "fields": { + "id_car_model": 22486, + "name": "SUV 5 doors Series II", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73572, + "fields": { + "id_car_model": 20552, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73573, + "fields": { + "id_car_model": 27949, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73574, + "fields": { + "id_car_model": 27950, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73575, + "fields": { + "id_car_model": 27951, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73576, + "fields": { + "id_car_model": 27952, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73577, + "fields": { + "id_car_model": 27953, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73578, + "fields": { + "id_car_model": 27954, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73579, + "fields": { + "id_car_model": 27955, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73580, + "fields": { + "id_car_model": 27956, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73581, + "fields": { + "id_car_model": 27957, + "name": "Compactvan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73582, + "fields": { + "id_car_model": 776, + "name": "Compactvan Crosstar", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73583, + "fields": { + "id_car_model": 20370, + "name": "Minivan Long", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73584, + "fields": { + "id_car_model": 2137, + "name": "Pickup Single cabin", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73585, + "fields": { + "id_car_model": 28007, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73586, + "fields": { + "id_car_model": 28008, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73587, + "fields": { + "id_car_model": 28009, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73588, + "fields": { + "id_car_model": 28010, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73589, + "fields": { + "id_car_model": 28011, + "name": "Coupe", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73590, + "fields": { + "id_car_model": 28012, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73591, + "fields": { + "id_car_model": 28013, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73592, + "fields": { + "id_car_model": 28014, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73593, + "fields": { + "id_car_model": 28015, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73594, + "fields": { + "id_car_model": 28016, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73595, + "fields": { + "id_car_model": 28017, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73596, + "fields": { + "id_car_model": 28018, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73597, + "fields": { + "id_car_model": 28019, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73598, + "fields": { + "id_car_model": 28020, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73599, + "fields": { + "id_car_model": 28021, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73600, + "fields": { + "id_car_model": 28022, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73601, + "fields": { + "id_car_model": 28023, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73602, + "fields": { + "id_car_model": 28024, + "name": "wagon 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73603, + "fields": { + "id_car_model": 28025, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73604, + "fields": { + "id_car_model": 28026, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73605, + "fields": { + "id_car_model": 28027, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73606, + "fields": { + "id_car_model": 28028, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73607, + "fields": { + "id_car_model": 28029, + "name": "liftback ", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73608, + "fields": { + "id_car_model": 28030, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73609, + "fields": { + "id_car_model": 28030, + "name": "Van", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73610, + "fields": { + "id_car_model": 28031, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73611, + "fields": { + "id_car_model": 28032, + "name": "Minivan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73612, + "fields": { + "id_car_model": 28033, + "name": "SUV 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73613, + "fields": { + "id_car_model": 28034, + "name": "Hatchback 5 doors", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73614, + "fields": { + "id_car_model": 28035, + "name": "Sedan", + "arabic_name": "-" + } +}, +{ + "model": "inventory.carserie", + "pk": 73615, + "fields": { + "id_car_model": 28036, + "name": "SUV 5-doors", + "arabic_name": "إس يو في 5-أبواب" + } +} +] diff --git a/carspecification_backup.json b/carspecification_backup.json new file mode 100644 index 00000000..baf02c3a --- /dev/null +++ b/carspecification_backup.json @@ -0,0 +1,848 @@ +[ +{ + "model": "inventory.carspecification", + "pk": 1, + "fields": { + "name": "Bodywork", + "arabic_name": "هيكل السيارة", + "id_parent": null + } +}, +{ + "model": "inventory.carspecification", + "pk": 2, + "fields": { + "name": "Body type", + "arabic_name": "نوع الهيكل", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 3, + "fields": { + "name": "Number of doors", + "arabic_name": "عدد الأبواب", + "id_parent": 1549 + } +}, +{ + "model": "inventory.carspecification", + "pk": 4, + "fields": { + "name": "Number of seater", + "arabic_name": "عدد المقاعد", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 5, + "fields": { + "name": "Length", + "arabic_name": "الطول", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 6, + "fields": { + "name": "Width", + "arabic_name": "العرض", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 7, + "fields": { + "name": "Height", + "arabic_name": "الارتفاع", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 8, + "fields": { + "name": "Wheelbase", + "arabic_name": "قاعدة العجلات", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 9, + "fields": { + "name": "Front track", + "arabic_name": "المسار الأمامي", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 10, + "fields": { + "name": "Rear track", + "arabic_name": "المسار الخلفي", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 11, + "fields": { + "name": "Engine", + "arabic_name": "المحرك", + "id_parent": null + } +}, +{ + "model": "inventory.carspecification", + "pk": 12, + "fields": { + "name": "Engine type", + "arabic_name": "نوع المحرك", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 13, + "fields": { + "name": "Capacity", + "arabic_name": "السعة", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 14, + "fields": { + "name": "Engine power", + "arabic_name": "قوة المحرك", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 15, + "fields": { + "name": "Max power at RPM", + "arabic_name": "القوة القصوى عند دورة في الدقيقة", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 16, + "fields": { + "name": "Maximum torque", + "arabic_name": "العزم الأقصى", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 17, + "fields": { + "name": "Injection type", + "arabic_name": "نوع الحقن", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 18, + "fields": { + "name": "Overhead camshaft", + "arabic_name": "عمود الحدبات العلوي", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 19, + "fields": { + "name": "Cylinder layout", + "arabic_name": "تخطيط الأسطوانة", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 20, + "fields": { + "name": "Number of cylinders", + "arabic_name": "عدد الأسطوانات", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 21, + "fields": { + "name": "Compression ratio", + "arabic_name": "نسبة الضغط", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 22, + "fields": { + "name": "Fuel", + "arabic_name": "الوقود", + "id_parent": 31 + } +}, +{ + "model": "inventory.carspecification", + "pk": 23, + "fields": { + "name": "Gearbox", + "arabic_name": "(جيربوكس) علبة التروس", + "id_parent": null + } +}, +{ + "model": "inventory.carspecification", + "pk": 24, + "fields": { + "name": "Gearbox type", + "arabic_name": "نوع علبة التروس", + "id_parent": 23 + } +}, +{ + "model": "inventory.carspecification", + "pk": 26, + "fields": { + "name": "Number of gear", + "arabic_name": "عدد السرعات", + "id_parent": 23 + } +}, +{ + "model": "inventory.carspecification", + "pk": 27, + "fields": { + "name": "Drive wheels", + "arabic_name": "عجلات القيادة", + "id_parent": 23 + } +}, +{ + "model": "inventory.carspecification", + "pk": 29, + "fields": { + "name": "Front brakes", + "arabic_name": "الفرامل الأمامية", + "id_parent": 40 + } +}, +{ + "model": "inventory.carspecification", + "pk": 30, + "fields": { + "name": "Rear brakes", + "arabic_name": "الفرامل الخلفية", + "id_parent": 40 + } +}, +{ + "model": "inventory.carspecification", + "pk": 31, + "fields": { + "name": "Operating characteristics", + "arabic_name": "خصائص التشغيل", + "id_parent": null + } +}, +{ + "model": "inventory.carspecification", + "pk": 32, + "fields": { + "name": "Max speed", + "arabic_name": "السرعة القصوى", + "id_parent": 31 + } +}, +{ + "model": "inventory.carspecification", + "pk": 33, + "fields": { + "name": "Acceleration (0-100 km/h)", + "arabic_name": "التسارع (من ٠ إلى ١٠٠ كم/ساعة)", + "id_parent": 31 + } +}, +{ + "model": "inventory.carspecification", + "pk": 34, + "fields": { + "name": "Curb weight", + "arabic_name": "وزن الرصيف", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 35, + "fields": { + "name": "Fuel tank capacity", + "arabic_name": "سعة خزان الوقود", + "id_parent": 31 + } +}, +{ + "model": "inventory.carspecification", + "pk": 36, + "fields": { + "name": "Wheel size", + "arabic_name": "حجم العجلة", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 37, + "fields": { + "name": "Emission standards", + "arabic_name": "معايير الانبعاثات", + "id_parent": 31 + } +}, +{ + "model": "inventory.carspecification", + "pk": 38, + "fields": { + "name": "Ground clearance", + "arabic_name": "المسافة الفارغة عن الأرض", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 39, + "fields": { + "name": "Valves per cylinder", + "arabic_name": "صمامات لكل اسطوانة", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 40, + "fields": { + "name": "Suspension and brakes", + "arabic_name": "التعليق والفرامل", + "id_parent": null + } +}, +{ + "model": "inventory.carspecification", + "pk": 41, + "fields": { + "name": "Front suspension", + "arabic_name": "تعليق أمامي", + "id_parent": 40 + } +}, +{ + "model": "inventory.carspecification", + "pk": 42, + "fields": { + "name": "Back suspension", + "arabic_name": "تعليق الخلفي", + "id_parent": 40 + } +}, +{ + "model": "inventory.carspecification", + "pk": 44, + "fields": { + "name": "Max trunk capacity", + "arabic_name": "الحد الأقصى لسعة صندوق السيارة", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 45, + "fields": { + "name": "Min trunk capacity", + "arabic_name": "الحد الأدنى لسعة صندوق السيارة", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 46, + "fields": { + "name": "Boost type", + "arabic_name": "نوع الدفع", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 47, + "fields": { + "name": "Cylinder bore", + "arabic_name": "قطر الأسطوانة", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 48, + "fields": { + "name": "Stroke cycle", + "arabic_name": "دورة الشوط", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 49, + "fields": { + "name": "Bore/stroke ratio", + "arabic_name": "نسبة القطر إلى الشوط", + "id_parent": 23 + } +}, +{ + "model": "inventory.carspecification", + "pk": 50, + "fields": { + "name": "City driving fuel consumption per 100 km", + "arabic_name": "استهلاك الوقود داخل المدينة لكل ١٠٠ كيلومتر", + "id_parent": 31 + } +}, +{ + "model": "inventory.carspecification", + "pk": 51, + "fields": { + "name": "Highway driving fuel consumption per 100 km", + "arabic_name": "استهلاك الوقود على الطريق السريع لكل ١٠٠ كيلومتر", + "id_parent": 31 + } +}, +{ + "model": "inventory.carspecification", + "pk": 52, + "fields": { + "name": "Mixed driving fuel consumption per 100 km", + "arabic_name": "استهلاك الوقود لكل ١٠٠ كيلومتر في القيادة المختطلة", + "id_parent": 31 + } +}, +{ + "model": "inventory.carspecification", + "pk": 53, + "fields": { + "name": "Steering", + "arabic_name": "التوجيه", + "id_parent": null + } +}, +{ + "model": "inventory.carspecification", + "pk": 54, + "fields": { + "name": "Steering type", + "arabic_name": "نوع التوجيه", + "id_parent": 53 + } +}, +{ + "model": "inventory.carspecification", + "pk": 55, + "fields": { + "name": "Engine model", + "arabic_name": "نموذج المحرك", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 56, + "fields": { + "name": "Electric motor power", + "arabic_name": "قوة المحرك الكهربائي", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 57, + "fields": { + "name": "Turning circle", + "arabic_name": "دائرة الالتفاف", + "id_parent": 23 + } +}, +{ + "model": "inventory.carspecification", + "pk": 58, + "fields": { + "name": "Full weight", + "arabic_name": "الوزن الكامل", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 59, + "fields": { + "name": "Disc size", + "arabic_name": "حجم القرص", + "id_parent": 31 + } +}, +{ + "model": "inventory.carspecification", + "pk": 60, + "fields": { + "name": "Total power output", + "arabic_name": "إجمالي قوة الإخراج", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 61, + "fields": { + "name": "Engine placement", + "arabic_name": "موضع المحرك", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 62, + "fields": { + "name": "Cruising range", + "arabic_name": "مدى السير", + "id_parent": 31 + } +}, +{ + "model": "inventory.carspecification", + "pk": 63, + "fields": { + "name": "Full cycle charge", + "arabic_name": "شحن دورة كاملة", + "id_parent": 31 + } +}, +{ + "model": "inventory.carspecification", + "pk": 66, + "fields": { + "name": "Car width with mirrors", + "arabic_name": "عرض السيارة مع المرايا", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1521, + "fields": { + "name": "Cylinder bore and stroke cycle", + "arabic_name": "دورة حجم الاسطوانة والشوط", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1549, + "fields": { + "name": "General information", + "arabic_name": "معلومات عامة", + "id_parent": null + } +}, +{ + "model": "inventory.carspecification", + "pk": 1550, + "fields": { + "name": "Volume and weight", + "arabic_name": "الحجم والوزن", + "id_parent": null + } +}, +{ + "model": "inventory.carspecification", + "pk": 1551, + "fields": { + "name": "Security", + "arabic_name": "الأمان", + "id_parent": null + } +}, +{ + "model": "inventory.carspecification", + "pk": 1552, + "fields": { + "name": "Country", + "arabic_name": "الدولة", + "id_parent": 1549 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1553, + "fields": { + "name": "Car class", + "arabic_name": "فئة السيارة", + "id_parent": 1549 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1554, + "fields": { + "name": "Clearance", + "arabic_name": "إرتفاع السيارة عن الارض", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1555, + "fields": { + "name": "Front track width", + "arabic_name": "عرض المسار الأمامي للسيارة", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1556, + "fields": { + "name": "Back track width", + "arabic_name": "عرض المسار الخلفي للسيارة", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1558, + "fields": { + "name": "Max power (h.p.)", + "arabic_name": "القوة القصوى (حصان)", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1559, + "fields": { + "name": "Max power (kW)", + "arabic_name": "القوة القصوى (كيلوواط)", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1560, + "fields": { + "name": "Model assembly", + "arabic_name": "تجميع الطراز", + "id_parent": 1549 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1561, + "fields": { + "name": "CO2 emissions", + "arabic_name": "انبعاثات ثاني أكسيد الكربون", + "id_parent": 31 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1562, + "fields": { + "name": "Safety assessment", + "arabic_name": "تقييم السلامة", + "id_parent": 1551 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1563, + "fields": { + "name": "Rating name", + "arabic_name": "اسم التقييم", + "id_parent": 1551 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1564, + "fields": { + "name": "Turnover of maximum torque", + "arabic_name": "تحول العزم الأقصى", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1565, + "fields": { + "name": "Payload", + "arabic_name": "الحمولة", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1566, + "fields": { + "name": "Presence of intercooler", + "arabic_name": "وجود مبرد بيني", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1567, + "fields": { + "name": "Trailer load (with brakes)", + "arabic_name": "حمولة المقطورة (مع الفرامل)", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1568, + "fields": { + "name": "Front/rear axle load", + "arabic_name": "حمولة محور العجلات الأمامي / الخلفي", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1569, + "fields": { + "name": "Loading height", + "arabic_name": "ارتفاع التحميل", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1570, + "fields": { + "name": "Cargo compartment (Length x Width x Height)", + "arabic_name": "حجرة البضائع (الطول x العرض x الارتفاع)", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1571, + "fields": { + "name": "Cargo compartment volume", + "arabic_name": "حجم حيز التحميل في السيارة", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1631, + "fields": { + "name": "Accumulator battery", + "arabic_name": "البطارية المجمعة", + "id_parent": null + } +}, +{ + "model": "inventory.carspecification", + "pk": 1632, + "fields": { + "name": "Battery capacity", + "arabic_name": "سعة البطارية", + "id_parent": 1631 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1634, + "fields": { + "name": "Electric power reserve", + "arabic_name": "احتياطي الطاقة الكهربائية", + "id_parent": 1631 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1635, + "fields": { + "name": "Charging time", + "arabic_name": "وقت الشحن", + "id_parent": 1631 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1636, + "fields": { + "name": "Fuel consumption city/highway/mixed, l", + "arabic_name": "استهلاك الوقود في المدينة / الطريق السريع / المختلط، لتر", + "id_parent": 31 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1641, + "fields": { + "name": "Rudder location", + "arabic_name": "موقع الدفة", + "id_parent": 53 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1642, + "fields": { + "name": "Dimensions", + "arabic_name": "الأبعاد", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1644, + "fields": { + "name": "Pitch Circle Diameter", + "arabic_name": "قطر دائرة التركيب", + "id_parent": 1 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1645, + "fields": { + "name": "Engine code", + "arabic_name": "كود المحرك", + "id_parent": 11 + } +}, +{ + "model": "inventory.carspecification", + "pk": 1646, + "fields": { + "name": "Disc sizes", + "arabic_name": "أحجام الأقراص", + "id_parent": 1 + } +} +] diff --git a/carspecificationvalue_backup.json b/carspecificationvalue_backup.json new file mode 100644 index 00000000..74060bbb Binary files /dev/null and b/carspecificationvalue_backup.json differ diff --git a/cartrim_backup.json b/cartrim_backup.json new file mode 100644 index 00000000..48ea673d --- /dev/null +++ b/cartrim_backup.json @@ -0,0 +1,940678 @@ +[ +{ + "model": "inventory.cartrim", + "pk": 2392, + "fields": { + "id_car_serie": 457, + "name": "2.0 CVT 2WD (147 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2393, + "fields": { + "id_car_serie": 457, + "name": "2.0 CVT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2394, + "fields": { + "id_car_serie": 457, + "name": "2.0 MT 2WD (147 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2398, + "fields": { + "id_car_serie": 457, + "name": "2.4 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2399, + "fields": { + "id_car_serie": 457, + "name": "2.4 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2400, + "fields": { + "id_car_serie": 458, + "name": "1.2 VTi ETG (72 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2401, + "fields": { + "id_car_serie": 458, + "name": "1.2 VTi MT (72 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2402, + "fields": { + "id_car_serie": 458, + "name": "1.6 VTi AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2403, + "fields": { + "id_car_serie": 458, + "name": "1.6 VTi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2410, + "fields": { + "id_car_serie": 461, + "name": "1.1 MT (61 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2411, + "fields": { + "id_car_serie": 461, + "name": "1.4 SensoDrive (75 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2412, + "fields": { + "id_car_serie": 461, + "name": "1.4 SensoDrive (90 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2413, + "fields": { + "id_car_serie": 461, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2415, + "fields": { + "id_car_serie": 461, + "name": "1.4 HDi SensoDrive (70 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2416, + "fields": { + "id_car_serie": 461, + "name": "1.4 HDi MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2417, + "fields": { + "id_car_serie": 461, + "name": "1.6 SensoDrive (110 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2418, + "fields": { + "id_car_serie": 461, + "name": "1.6 HDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2419, + "fields": { + "id_car_serie": 461, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2434, + "fields": { + "id_car_serie": 464, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2435, + "fields": { + "id_car_serie": 464, + "name": "1.6 HDi MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2436, + "fields": { + "id_car_serie": 464, + "name": "1.6 HDi MT AWD (114 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2437, + "fields": { + "id_car_serie": 464, + "name": "1.8 HDi MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2438, + "fields": { + "id_car_serie": 464, + "name": "1.8 HDi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2439, + "fields": { + "id_car_serie": 464, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2440, + "fields": { + "id_car_serie": 464, + "name": "2.0 CVT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2441, + "fields": { + "id_car_serie": 464, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2442, + "fields": { + "id_car_serie": 464, + "name": "2.0 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2443, + "fields": { + "id_car_serie": 465, + "name": "1.2 AMT (82 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2444, + "fields": { + "id_car_serie": 465, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2445, + "fields": { + "id_car_serie": 465, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2446, + "fields": { + "id_car_serie": 465, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2447, + "fields": { + "id_car_serie": 465, + "name": "1.6 AMT (92 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2504, + "fields": { + "id_car_serie": 471, + "name": "2.2 MT (173 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2505, + "fields": { + "id_car_serie": 471, + "name": "2.7 HDI AT (208 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2507, + "fields": { + "id_car_serie": 471, + "name": "3.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2550, + "fields": { + "id_car_serie": 477, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2552, + "fields": { + "id_car_serie": 477, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2553, + "fields": { + "id_car_serie": 477, + "name": "1.6 THP MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2557, + "fields": { + "id_car_serie": 477, + "name": "2.0 Hdi AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2559, + "fields": { + "id_car_serie": 478, + "name": "1.6 AT THP (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2560, + "fields": { + "id_car_serie": 478, + "name": "1.6 MT THP (200 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2561, + "fields": { + "id_car_serie": 478, + "name": "1.6 MT e-HD (112 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2562, + "fields": { + "id_car_serie": 478, + "name": "2.0 AT HDi (163 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2563, + "fields": { + "id_car_serie": 478, + "name": "2.0 MT HDi (163 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2564, + "fields": { + "id_car_serie": 479, + "name": "0.4 MT (18 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2565, + "fields": { + "id_car_serie": 479, + "name": "0.4 MT (23 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2568, + "fields": { + "id_car_serie": 479, + "name": "0.6 MT (32 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2569, + "fields": { + "id_car_serie": 480, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2570, + "fields": { + "id_car_serie": 480, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2571, + "fields": { + "id_car_serie": 480, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2572, + "fields": { + "id_car_serie": 480, + "name": "2.1 TD MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2609, + "fields": { + "id_car_serie": 486, + "name": "0.6 MT (32 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2610, + "fields": { + "id_car_serie": 486, + "name": "0.7 MT (34 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2611, + "fields": { + "id_car_serie": 486, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2612, + "fields": { + "id_car_serie": 486, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2613, + "fields": { + "id_car_serie": 486, + "name": "1.0 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2614, + "fields": { + "id_car_serie": 486, + "name": "1.1 MT (48 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2615, + "fields": { + "id_car_serie": 486, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2617, + "fields": { + "id_car_serie": 486, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2618, + "fields": { + "id_car_serie": 486, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2619, + "fields": { + "id_car_serie": 486, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2620, + "fields": { + "id_car_serie": 486, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2711, + "fields": { + "id_car_serie": 494, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2713, + "fields": { + "id_car_serie": 494, + "name": "1.6 AT (110 hp) diesel", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2714, + "fields": { + "id_car_serie": 494, + "name": "1,6i (110 hp diesel", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2716, + "fields": { + "id_car_serie": 494, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2747, + "fields": { + "id_car_serie": 498, + "name": "6.0 MT (547 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2765, + "fields": { + "id_car_serie": 505, + "name": "1.4 MT (62 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2766, + "fields": { + "id_car_serie": 506, + "name": "1.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2767, + "fields": { + "id_car_serie": 506, + "name": "1.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2768, + "fields": { + "id_car_serie": 506, + "name": "1.5 dCI 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2769, + "fields": { + "id_car_serie": 506, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2775, + "fields": { + "id_car_serie": 508, + "name": "1.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2776, + "fields": { + "id_car_serie": 508, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 2788, + "fields": { + "id_car_serie": 511, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2794, + "fields": { + "id_car_serie": 513, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2795, + "fields": { + "id_car_serie": 513, + "name": "1.9 D MT (63 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2878, + "fields": { + "id_car_serie": 534, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2879, + "fields": { + "id_car_serie": 534, + "name": "2.0 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2880, + "fields": { + "id_car_serie": 535, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2881, + "fields": { + "id_car_serie": 535, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2882, + "fields": { + "id_car_serie": 535, + "name": "2.0 AT (146 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2883, + "fields": { + "id_car_serie": 535, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2884, + "fields": { + "id_car_serie": 535, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2885, + "fields": { + "id_car_serie": 535, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2886, + "fields": { + "id_car_serie": 535, + "name": "2.0 MT (146 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2887, + "fields": { + "id_car_serie": 535, + "name": "2.2 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2888, + "fields": { + "id_car_serie": 535, + "name": "2.2 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2890, + "fields": { + "id_car_serie": 536, + "name": "2.0 AT (142 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2898, + "fields": { + "id_car_serie": 538, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2899, + "fields": { + "id_car_serie": 538, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2900, + "fields": { + "id_car_serie": 538, + "name": "2.3 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2901, + "fields": { + "id_car_serie": 538, + "name": "2.3 D MT (77 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2902, + "fields": { + "id_car_serie": 538, + "name": "2.9 TD MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2903, + "fields": { + "id_car_serie": 538, + "name": "2.9 D MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2904, + "fields": { + "id_car_serie": 538, + "name": "3.2 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2905, + "fields": { + "id_car_serie": 538, + "name": "3.2 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2926, + "fields": { + "id_car_serie": 542, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2927, + "fields": { + "id_car_serie": 542, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2936, + "fields": { + "id_car_serie": 545, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2937, + "fields": { + "id_car_serie": 545, + "name": "1.8 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2938, + "fields": { + "id_car_serie": 545, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2939, + "fields": { + "id_car_serie": 545, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2940, + "fields": { + "id_car_serie": 545, + "name": "2.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2942, + "fields": { + "id_car_serie": 545, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2943, + "fields": { + "id_car_serie": 545, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2944, + "fields": { + "id_car_serie": 545, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2946, + "fields": { + "id_car_serie": 545, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2947, + "fields": { + "id_car_serie": 546, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2951, + "fields": { + "id_car_serie": 546, + "name": "2.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2955, + "fields": { + "id_car_serie": 546, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2958, + "fields": { + "id_car_serie": 547, + "name": "0.8 4MT (41 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2960, + "fields": { + "id_car_serie": 548, + "name": "2.0 MT (142 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 2961, + "fields": { + "id_car_serie": 548, + "name": "2.5 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3002, + "fields": { + "id_car_serie": 559, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3004, + "fields": { + "id_car_serie": 559, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3009, + "fields": { + "id_car_serie": 561, + "name": "0.7 MT (31 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3011, + "fields": { + "id_car_serie": 561, + "name": "1.0 AT (56 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3108, + "fields": { + "id_car_serie": 582, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3109, + "fields": { + "id_car_serie": 582, + "name": "0.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3114, + "fields": { + "id_car_serie": 585, + "name": "1.6 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3116, + "fields": { + "id_car_serie": 585, + "name": "1.6 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3123, + "fields": { + "id_car_serie": 588, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3124, + "fields": { + "id_car_serie": 588, + "name": "1.5 AT (103 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3125, + "fields": { + "id_car_serie": 588, + "name": "1.5 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3126, + "fields": { + "id_car_serie": 588, + "name": "1.5 MT AWD (103 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3127, + "fields": { + "id_car_serie": 589, + "name": "0.7 AT 2WD (64 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3136, + "fields": { + "id_car_serie": 594, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3143, + "fields": { + "id_car_serie": 598, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3144, + "fields": { + "id_car_serie": 598, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3166, + "fields": { + "id_car_serie": 603, + "name": "1.0 AT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3167, + "fields": { + "id_car_serie": 603, + "name": "1.0 MT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3168, + "fields": { + "id_car_serie": 603, + "name": "1.3 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3169, + "fields": { + "id_car_serie": 603, + "name": "1.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3257, + "fields": { + "id_car_serie": 618, + "name": "4.2 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3258, + "fields": { + "id_car_serie": 618, + "name": "4.2 MT (173 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3259, + "fields": { + "id_car_serie": 618, + "name": "5.3 AT (289 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3260, + "fields": { + "id_car_serie": 618, + "name": "5.3 MT (289 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3265, + "fields": { + "id_car_serie": 621, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3266, + "fields": { + "id_car_serie": 621, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3269, + "fields": { + "id_car_serie": 621, + "name": "2.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3270, + "fields": { + "id_car_serie": 621, + "name": "2.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3327, + "fields": { + "id_car_serie": 647, + "name": "1.6 AT (92 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3328, + "fields": { + "id_car_serie": 647, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3330, + "fields": { + "id_car_serie": 648, + "name": "4.6 MT (304 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3334, + "fields": { + "id_car_serie": 651, + "name": "4.7 MT (302 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3335, + "fields": { + "id_car_serie": 652, + "name": "5.8 MT (330 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3336, + "fields": { + "id_car_serie": 653, + "name": "1.6 MT (104 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3343, + "fields": { + "id_car_serie": 657, + "name": "2.0 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3344, + "fields": { + "id_car_serie": 657, + "name": "2.4 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3346, + "fields": { + "id_car_serie": 657, + "name": "3.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3348, + "fields": { + "id_car_serie": 658, + "name": "3.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3349, + "fields": { + "id_car_serie": 659, + "name": "2.4 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3351, + "fields": { + "id_car_serie": 660, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3353, + "fields": { + "id_car_serie": 661, + "name": "2.4 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3405, + "fields": { + "id_car_serie": 671, + "name": "1.4 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3406, + "fields": { + "id_car_serie": 671, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3407, + "fields": { + "id_car_serie": 671, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3408, + "fields": { + "id_car_serie": 671, + "name": "2.4 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3409, + "fields": { + "id_car_serie": 671, + "name": "2.4 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3413, + "fields": { + "id_car_serie": 672, + "name": "2.2 Turbo MT (142 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3414, + "fields": { + "id_car_serie": 672, + "name": "2.2 Turbo MT (174 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3415, + "fields": { + "id_car_serie": 672, + "name": "2.2 Turbo MT (224 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3416, + "fields": { + "id_car_serie": 672, + "name": "2.2 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3422, + "fields": { + "id_car_serie": 672, + "name": "2.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3423, + "fields": { + "id_car_serie": 672, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3424, + "fields": { + "id_car_serie": 672, + "name": "2.5 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3426, + "fields": { + "id_car_serie": 672, + "name": "2.5 MT (96 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3428, + "fields": { + "id_car_serie": 672, + "name": "3.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3439, + "fields": { + "id_car_serie": 674, + "name": "3.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3450, + "fields": { + "id_car_serie": 677, + "name": "2.0 d AMT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3451, + "fields": { + "id_car_serie": 677, + "name": "2.0 d MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3452, + "fields": { + "id_car_serie": 677, + "name": "2.4 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3457, + "fields": { + "id_car_serie": 677, + "name": "3.6 AT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3458, + "fields": { + "id_car_serie": 677, + "name": "3.6 AT (287 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3459, + "fields": { + "id_car_serie": 678, + "name": "2.7 AT (193 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3464, + "fields": { + "id_car_serie": 679, + "name": "3.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3469, + "fields": { + "id_car_serie": 681, + "name": "2.8 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3470, + "fields": { + "id_car_serie": 681, + "name": "2.8 AT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3473, + "fields": { + "id_car_serie": 681, + "name": "3.7 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3474, + "fields": { + "id_car_serie": 681, + "name": "3.7 AT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3475, + "fields": { + "id_car_serie": 681, + "name": "3.7 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3477, + "fields": { + "id_car_serie": 681, + "name": "4.0 AT (260 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3478, + "fields": { + "id_car_serie": 681, + "name": "4.0 AT AWD (260 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3479, + "fields": { + "id_car_serie": 682, + "name": "2.2 AT (93 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3480, + "fields": { + "id_car_serie": 682, + "name": "2.2 MT (93 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3499, + "fields": { + "id_car_serie": 686, + "name": "2.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3501, + "fields": { + "id_car_serie": 686, + "name": "2.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3502, + "fields": { + "id_car_serie": 686, + "name": "2.5 Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3503, + "fields": { + "id_car_serie": 687, + "name": "2.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3504, + "fields": { + "id_car_serie": 687, + "name": "2.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3505, + "fields": { + "id_car_serie": 687, + "name": "3.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3548, + "fields": { + "id_car_serie": 704, + "name": "AT (8 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3550, + "fields": { + "id_car_serie": 705, + "name": "3.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3570, + "fields": { + "id_car_serie": 710, + "name": "2.0 AT TSi (205 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3571, + "fields": { + "id_car_serie": 710, + "name": "2.0 AT TSi 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3572, + "fields": { + "id_car_serie": 710, + "name": "2.0 MT ESi (140 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3573, + "fields": { + "id_car_serie": 710, + "name": "2.0 MT TSi (210 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3574, + "fields": { + "id_car_serie": 710, + "name": "2.0 MT TSi 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3575, + "fields": { + "id_car_serie": 711, + "name": "3.3 AT ESi (161 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3576, + "fields": { + "id_car_serie": 711, + "name": "3.5 AT TSi (218 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3587, + "fields": { + "id_car_serie": 717, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3588, + "fields": { + "id_car_serie": 717, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3594, + "fields": { + "id_car_serie": 719, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3597, + "fields": { + "id_car_serie": 721, + "name": "1.1 MT (52 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3602, + "fields": { + "id_car_serie": 724, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3603, + "fields": { + "id_car_serie": 725, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3628, + "fields": { + "id_car_serie": 737, + "name": "4.8 AT (310 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3629, + "fields": { + "id_car_serie": 737, + "name": "4.8 AT (340 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3630, + "fields": { + "id_car_serie": 737, + "name": "4.8 MT (310 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3631, + "fields": { + "id_car_serie": 737, + "name": "4.8 MT (340 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3632, + "fields": { + "id_car_serie": 738, + "name": "4.9 AT (340 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3633, + "fields": { + "id_car_serie": 738, + "name": "4.9 MT (340 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3638, + "fields": { + "id_car_serie": 742, + "name": "4.9 MT (340 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3639, + "fields": { + "id_car_serie": 742, + "name": "4.9 MT (360 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3640, + "fields": { + "id_car_serie": 743, + "name": "4.9 MT (440 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3651, + "fields": { + "id_car_serie": 751, + "name": "5.7 AMT (540 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3652, + "fields": { + "id_car_serie": 751, + "name": "5.7 MT (540 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3657, + "fields": { + "id_car_serie": 753, + "name": "6.0 MT (660 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3658, + "fields": { + "id_car_serie": 754, + "name": "6.3 AMT (740 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3665, + "fields": { + "id_car_serie": 758, + "name": "2.9 MT (478 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3673, + "fields": { + "id_car_serie": 763, + "name": "6.3 AMT (660 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2016 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3674, + "fields": { + "id_car_serie": 764, + "name": "6.3 Hybrid AMT (800 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3684, + "fields": { + "id_car_serie": 767, + "name": "4.9 MT (440 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3716, + "fields": { + "id_car_serie": 772, + "name": "0.6 MT (23 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3770, + "fields": { + "id_car_serie": 782, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3771, + "fields": { + "id_car_serie": 782, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3772, + "fields": { + "id_car_serie": 782, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3773, + "fields": { + "id_car_serie": 782, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3774, + "fields": { + "id_car_serie": 782, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3775, + "fields": { + "id_car_serie": 782, + "name": "1.8 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3776, + "fields": { + "id_car_serie": 782, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3777, + "fields": { + "id_car_serie": 782, + "name": "1.8 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3778, + "fields": { + "id_car_serie": 782, + "name": "1.8 MT (111 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3779, + "fields": { + "id_car_serie": 782, + "name": "2.0 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3780, + "fields": { + "id_car_serie": 782, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3781, + "fields": { + "id_car_serie": 782, + "name": "2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3782, + "fields": { + "id_car_serie": 782, + "name": "2.0 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3783, + "fields": { + "id_car_serie": 782, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3784, + "fields": { + "id_car_serie": 782, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3785, + "fields": { + "id_car_serie": 782, + "name": "2.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3787, + "fields": { + "id_car_serie": 783, + "name": "1.4 MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1966, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3788, + "fields": { + "id_car_serie": 783, + "name": "1.4 MT (52 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3815, + "fields": { + "id_car_serie": 786, + "name": "0.9 TwinAir Turbo MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3820, + "fields": { + "id_car_serie": 786, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3821, + "fields": { + "id_car_serie": 786, + "name": "1.6 D MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 3822, + "fields": { + "id_car_serie": 787, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3823, + "fields": { + "id_car_serie": 788, + "name": "0.9 MT (35 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3824, + "fields": { + "id_car_serie": 789, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3825, + "fields": { + "id_car_serie": 789, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3826, + "fields": { + "id_car_serie": 789, + "name": "1.4 MT (77 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3827, + "fields": { + "id_car_serie": 789, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 3905, + "fields": { + "id_car_serie": 803, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4049, + "fields": { + "id_car_serie": 817, + "name": "1.6 AT 4x2 (120 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4053, + "fields": { + "id_car_serie": 817, + "name": "1.6 MT 4x2 (120 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4054, + "fields": { + "id_car_serie": 817, + "name": "1.6 MT 4x4 (120 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4057, + "fields": { + "id_car_serie": 817, + "name": "2.0 MT 4x4 (135 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4060, + "fields": { + "id_car_serie": 818, + "name": "1.1 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4062, + "fields": { + "id_car_serie": 819, + "name": "1.0 MT (66 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4092, + "fields": { + "id_car_serie": 823, + "name": "1.2 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4093, + "fields": { + "id_car_serie": 823, + "name": "1.7 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4183, + "fields": { + "id_car_serie": 832, + "name": "2.0 CVT (260 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4184, + "fields": { + "id_car_serie": 833, + "name": "3.0 AT EFI V6 XL (135 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4186, + "fields": { + "id_car_serie": 833, + "name": "3.0 MT EFI XL (135 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4188, + "fields": { + "id_car_serie": 833, + "name": "4.0 AT V6 XL (155 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4189, + "fields": { + "id_car_serie": 833, + "name": "4.0 AT Long 4WD XL (155 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4190, + "fields": { + "id_car_serie": 833, + "name": "4.0 MT XL (155 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4193, + "fields": { + "id_car_serie": 62992, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4195, + "fields": { + "id_car_serie": 62992, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4196, + "fields": { + "id_car_serie": 62992, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4197, + "fields": { + "id_car_serie": 62992, + "name": "1.6 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4198, + "fields": { + "id_car_serie": 62992, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4257, + "fields": { + "id_car_serie": 846, + "name": "1.0 EcoBoost MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4259, + "fields": { + "id_car_serie": 846, + "name": "1.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4260, + "fields": { + "id_car_serie": 846, + "name": "1.5 TDCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4318, + "fields": { + "id_car_serie": 856, + "name": "5.4 AT L (258 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4319, + "fields": { + "id_car_serie": 856, + "name": "5.4 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4320, + "fields": { + "id_car_serie": 856, + "name": "5.4 AT (263 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4321, + "fields": { + "id_car_serie": 856, + "name": "5.4 AT 4WD (263 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4326, + "fields": { + "id_car_serie": 856, + "name": "7.3 TD AT (238 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4327, + "fields": { + "id_car_serie": 856, + "name": "7.3 TD AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4328, + "fields": { + "id_car_serie": 856, + "name": "7.3 TD AT (253 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4329, + "fields": { + "id_car_serie": 856, + "name": "7.3 TD AT 4WD (253 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4363, + "fields": { + "id_car_serie": 862, + "name": "2.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4364, + "fields": { + "id_car_serie": 862, + "name": "2.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4365, + "fields": { + "id_car_serie": 862, + "name": "3.3 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4366, + "fields": { + "id_car_serie": 862, + "name": "3.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4367, + "fields": { + "id_car_serie": 862, + "name": "4.2 AT (117 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4368, + "fields": { + "id_car_serie": 862, + "name": "4.9 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4369, + "fields": { + "id_car_serie": 862, + "name": "4.9 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4465, + "fields": { + "id_car_serie": 872, + "name": "3.9 AT (195 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4466, + "fields": { + "id_car_serie": 872, + "name": "4.2 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4477, + "fields": { + "id_car_serie": 875, + "name": "1.4 Durashift EST (80 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4478, + "fields": { + "id_car_serie": 875, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4479, + "fields": { + "id_car_serie": 875, + "name": "1.4 TDCI Durashift EST (68 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4480, + "fields": { + "id_car_serie": 875, + "name": "1.4 TDCI MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4481, + "fields": { + "id_car_serie": 875, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4482, + "fields": { + "id_car_serie": 875, + "name": "1.6 EuroV MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4483, + "fields": { + "id_car_serie": 875, + "name": "1.6 TDCI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4530, + "fields": { + "id_car_serie": 880, + "name": "5.4 T MT (558 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4531, + "fields": { + "id_car_serie": 880, + "name": "5.4 T MT EU-spec (549 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4532, + "fields": { + "id_car_serie": 881, + "name": "1.8 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4533, + "fields": { + "id_car_serie": 881, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4577, + "fields": { + "id_car_serie": 891, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4578, + "fields": { + "id_car_serie": 891, + "name": "1.6i MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4579, + "fields": { + "id_car_serie": 891, + "name": "1.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4778, + "fields": { + "id_car_serie": 906, + "name": "3.5 AT AWD (263 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4779, + "fields": { + "id_car_serie": 906, + "name": "3.5 AT (263 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4805, + "fields": { + "id_car_serie": 911, + "name": "3.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4807, + "fields": { + "id_car_serie": 911, + "name": "3.8 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4808, + "fields": { + "id_car_serie": 912, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4809, + "fields": { + "id_car_serie": 912, + "name": "1.5 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4810, + "fields": { + "id_car_serie": 912, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4816, + "fields": { + "id_car_serie": 916, + "name": "0.6 MT (23 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4817, + "fields": { + "id_car_serie": 916, + "name": "0.6 MT (30 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4818, + "fields": { + "id_car_serie": 917, + "name": "0.9 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4819, + "fields": { + "id_car_serie": 918, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4820, + "fields": { + "id_car_serie": 918, + "name": "1.8 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4821, + "fields": { + "id_car_serie": 918, + "name": "1.8 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4827, + "fields": { + "id_car_serie": 920, + "name": "3.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4828, + "fields": { + "id_car_serie": 920, + "name": "3.2D MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4829, + "fields": { + "id_car_serie": 921, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4830, + "fields": { + "id_car_serie": 921, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4839, + "fields": { + "id_car_serie": 925, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4840, + "fields": { + "id_car_serie": 925, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4841, + "fields": { + "id_car_serie": 925, + "name": "2.4 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 4847, + "fields": { + "id_car_serie": 928, + "name": "1.0 MT (52 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4848, + "fields": { + "id_car_serie": 928, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4890, + "fields": { + "id_car_serie": 940, + "name": "1.8 MT (142 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4892, + "fields": { + "id_car_serie": 941, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4893, + "fields": { + "id_car_serie": 941, + "name": "1.6 MT Turbo (140 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 4894, + "fields": { + "id_car_serie": 941, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5011, + "fields": { + "id_car_serie": 974, + "name": "5.7 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5020, + "fields": { + "id_car_serie": 978, + "name": "4.1 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5021, + "fields": { + "id_car_serie": 978, + "name": "4.1 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5043, + "fields": { + "id_car_serie": 978, + "name": "7.5 AT (230 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5045, + "fields": { + "id_car_serie": 978, + "name": "7.5 MT (230 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5050, + "fields": { + "id_car_serie": 980, + "name": "2.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5051, + "fields": { + "id_car_serie": 980, + "name": "2.8 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5052, + "fields": { + "id_car_serie": 981, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5054, + "fields": { + "id_car_serie": 981, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5085, + "fields": { + "id_car_serie": 994, + "name": "2.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5087, + "fields": { + "id_car_serie": 995, + "name": "2.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5088, + "fields": { + "id_car_serie": 996, + "name": "2.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5114, + "fields": { + "id_car_serie": 1006, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5115, + "fields": { + "id_car_serie": 1006, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5116, + "fields": { + "id_car_serie": 1006, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5117, + "fields": { + "id_car_serie": 1006, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5118, + "fields": { + "id_car_serie": 1007, + "name": "1.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5120, + "fields": { + "id_car_serie": 1008, + "name": "1.5 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5121, + "fields": { + "id_car_serie": 1008, + "name": "1.5 D MT (32 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5122, + "fields": { + "id_car_serie": 1008, + "name": "1.8 MT (74 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5123, + "fields": { + "id_car_serie": 1008, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5124, + "fields": { + "id_car_serie": 1008, + "name": "2.0 D MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5125, + "fields": { + "id_car_serie": 1009, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5127, + "fields": { + "id_car_serie": 1009, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5128, + "fields": { + "id_car_serie": 1009, + "name": "2.0 D MT (52 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5176, + "fields": { + "id_car_serie": 1021, + "name": "1.5 MT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5181, + "fields": { + "id_car_serie": 1022, + "name": "3.2 MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5182, + "fields": { + "id_car_serie": 1023, + "name": "3.1 TD MT (3 dr) (114 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5184, + "fields": { + "id_car_serie": 1023, + "name": "3.2 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5185, + "fields": { + "id_car_serie": 1024, + "name": "3.8 AT (233 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5187, + "fields": { + "id_car_serie": 1024, + "name": "5.7 MT (306 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5188, + "fields": { + "id_car_serie": 1024, + "name": "5.7 MT (320 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5189, + "fields": { + "id_car_serie": 1024, + "name": "5.7 MT (329 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5190, + "fields": { + "id_car_serie": 1025, + "name": "2.3 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5191, + "fields": { + "id_car_serie": 1025, + "name": "2.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5192, + "fields": { + "id_car_serie": 1025, + "name": "3.1 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5193, + "fields": { + "id_car_serie": 1025, + "name": "3.1 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5194, + "fields": { + "id_car_serie": 1025, + "name": "3.5 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5195, + "fields": { + "id_car_serie": 1025, + "name": "3.5 MT (215 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5223, + "fields": { + "id_car_serie": 1031, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5233, + "fields": { + "id_car_serie": 1034, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5234, + "fields": { + "id_car_serie": 1034, + "name": "1.5 CVT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5289, + "fields": { + "id_car_serie": 1046, + "name": "Hybrid 1.5hyb CVT (112 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5290, + "fields": { + "id_car_serie": 1046, + "name": "1.5 MT GT (114 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5291, + "fields": { + "id_car_serie": 1047, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5292, + "fields": { + "id_car_serie": 1047, + "name": "1.8 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5293, + "fields": { + "id_car_serie": 1047, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5294, + "fields": { + "id_car_serie": 1047, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5304, + "fields": { + "id_car_serie": 1050, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5305, + "fields": { + "id_car_serie": 1050, + "name": "2.0 AT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5310, + "fields": { + "id_car_serie": 1052, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5311, + "fields": { + "id_car_serie": 1052, + "name": "2.4 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5316, + "fields": { + "id_car_serie": 1053, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5319, + "fields": { + "id_car_serie": 1054, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5320, + "fields": { + "id_car_serie": 1054, + "name": "1.5 CVT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5336, + "fields": { + "id_car_serie": 1056, + "name": "1.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5338, + "fields": { + "id_car_serie": 1056, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5339, + "fields": { + "id_car_serie": 1056, + "name": "2.2 CTDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5368, + "fields": { + "id_car_serie": 1063, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5369, + "fields": { + "id_car_serie": 1063, + "name": "1.5 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5370, + "fields": { + "id_car_serie": 1063, + "name": "1.5 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5371, + "fields": { + "id_car_serie": 1063, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5372, + "fields": { + "id_car_serie": 1063, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5391, + "fields": { + "id_car_serie": 1070, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5392, + "fields": { + "id_car_serie": 1070, + "name": "1.5 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5393, + "fields": { + "id_car_serie": 1070, + "name": "1.5 CVT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5403, + "fields": { + "id_car_serie": 1074, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5404, + "fields": { + "id_car_serie": 1074, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5425, + "fields": { + "id_car_serie": 1079, + "name": "1.6 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5426, + "fields": { + "id_car_serie": 1079, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5428, + "fields": { + "id_car_serie": 1080, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5429, + "fields": { + "id_car_serie": 1080, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5432, + "fields": { + "id_car_serie": 1081, + "name": "3.5 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5433, + "fields": { + "id_car_serie": 1082, + "name": "2.0 AT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5434, + "fields": { + "id_car_serie": 1082, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5435, + "fields": { + "id_car_serie": 1082, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5436, + "fields": { + "id_car_serie": 1082, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5437, + "fields": { + "id_car_serie": 1083, + "name": "2.0 MT GT Edition 100 UK (237 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5438, + "fields": { + "id_car_serie": 1083, + "name": "2.0 MT (237 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5439, + "fields": { + "id_car_serie": 1083, + "name": "2.2 MT Type V (239 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5440, + "fields": { + "id_car_serie": 1083, + "name": "2.2 MT (239 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5443, + "fields": { + "id_car_serie": 1085, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5445, + "fields": { + "id_car_serie": 1085, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5453, + "fields": { + "id_car_serie": 1088, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5454, + "fields": { + "id_car_serie": 1088, + "name": "0.7 AT Turbo (64 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5455, + "fields": { + "id_car_serie": 1089, + "name": "0.7 AT (48 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5456, + "fields": { + "id_car_serie": 1089, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5457, + "fields": { + "id_car_serie": 1089, + "name": "0.7 MT (48 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5458, + "fields": { + "id_car_serie": 1089, + "name": "0.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5459, + "fields": { + "id_car_serie": 1090, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5460, + "fields": { + "id_car_serie": 1090, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5461, + "fields": { + "id_car_serie": 1090, + "name": "2.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5462, + "fields": { + "id_car_serie": 1090, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5463, + "fields": { + "id_car_serie": 1090, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5478, + "fields": { + "id_car_serie": 1095, + "name": "2.2 MT RWD (103 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5479, + "fields": { + "id_car_serie": 1095, + "name": "2.2 MT AWD (102 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5480, + "fields": { + "id_car_serie": 1095, + "name": "3.2 D MT RWD (102 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5481, + "fields": { + "id_car_serie": 1095, + "name": "3.2 D MT AWD (102 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5482, + "fields": { + "id_car_serie": 1096, + "name": "2.4 MT 2WD (126 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5483, + "fields": { + "id_car_serie": 1096, + "name": "2.4 MT 4WD (126 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5484, + "fields": { + "id_car_serie": 1097, + "name": "2.4 D MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5498, + "fields": { + "id_car_serie": 1104, + "name": "3.7 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5499, + "fields": { + "id_car_serie": 1104, + "name": "3.7 MT (245 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5513, + "fields": { + "id_car_serie": 1107, + "name": "1.0 AT (58 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5514, + "fields": { + "id_car_serie": 1107, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5515, + "fields": { + "id_car_serie": 1107, + "name": "1.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5525, + "fields": { + "id_car_serie": 1109, + "name": "3.8 AT (334 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5536, + "fields": { + "id_car_serie": 1111, + "name": "2.5 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5538, + "fields": { + "id_car_serie": 1111, + "name": "3.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5539, + "fields": { + "id_car_serie": 1111, + "name": "3.5 AT (225 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5584, + "fields": { + "id_car_serie": 1119, + "name": "2.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5585, + "fields": { + "id_car_serie": 1119, + "name": "2.0 AT (260 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5587, + "fields": { + "id_car_serie": 1119, + "name": "2.0 MT (260 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5589, + "fields": { + "id_car_serie": 1119, + "name": "3.8 AT (354 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5591, + "fields": { + "id_car_serie": 1119, + "name": "3.8 MT (354 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5670, + "fields": { + "id_car_serie": 1131, + "name": "1.4 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5671, + "fields": { + "id_car_serie": 1131, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5672, + "fields": { + "id_car_serie": 1131, + "name": "1.4 MT blue (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5673, + "fields": { + "id_car_serie": 1131, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5674, + "fields": { + "id_car_serie": 1131, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5675, + "fields": { + "id_car_serie": 1131, + "name": "1.6 MT blue (125 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5676, + "fields": { + "id_car_serie": 1132, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5677, + "fields": { + "id_car_serie": 1132, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5678, + "fields": { + "id_car_serie": 1132, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5679, + "fields": { + "id_car_serie": 1132, + "name": "2.0 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5680, + "fields": { + "id_car_serie": 1132, + "name": "2.0 CRDi AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5681, + "fields": { + "id_car_serie": 1132, + "name": "2.0 CRDi MT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5687, + "fields": { + "id_car_serie": 1133, + "name": "3.0 CRDI Shiftronic (239 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5710, + "fields": { + "id_car_serie": 1136, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5711, + "fields": { + "id_car_serie": 1136, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5712, + "fields": { + "id_car_serie": 1136, + "name": "1.8 AT (123 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5713, + "fields": { + "id_car_serie": 1136, + "name": "1.8 MT (123 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5714, + "fields": { + "id_car_serie": 1137, + "name": "2.5 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5715, + "fields": { + "id_car_serie": 1138, + "name": "1.5 CRDi MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5717, + "fields": { + "id_car_serie": 1138, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5718, + "fields": { + "id_car_serie": 1138, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5719, + "fields": { + "id_car_serie": 1138, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5720, + "fields": { + "id_car_serie": 1138, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5740, + "fields": { + "id_car_serie": 1142, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5741, + "fields": { + "id_car_serie": 1142, + "name": "2.0 AT (138 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5742, + "fields": { + "id_car_serie": 1142, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5743, + "fields": { + "id_car_serie": 1142, + "name": "2.0 MT (138 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5744, + "fields": { + "id_car_serie": 1143, + "name": "1.5 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5745, + "fields": { + "id_car_serie": 1143, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5746, + "fields": { + "id_car_serie": 1143, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5747, + "fields": { + "id_car_serie": 1143, + "name": "1.5 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5748, + "fields": { + "id_car_serie": 1143, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5772, + "fields": { + "id_car_serie": 1148, + "name": "2.0 AT (93 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5773, + "fields": { + "id_car_serie": 1148, + "name": "2.0 MT (93 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5774, + "fields": { + "id_car_serie": 1149, + "name": "2.5 AT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5775, + "fields": { + "id_car_serie": 1149, + "name": "2.5 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5790, + "fields": { + "id_car_serie": 1151, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5792, + "fields": { + "id_car_serie": 1151, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5808, + "fields": { + "id_car_serie": 1153, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5811, + "fields": { + "id_car_serie": 1153, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5812, + "fields": { + "id_car_serie": 1153, + "name": "2.7 AT (167 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5813, + "fields": { + "id_car_serie": 1153, + "name": "2.7 MT (167 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5816, + "fields": { + "id_car_serie": 1154, + "name": "1.6 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5867, + "fields": { + "id_car_serie": 1169, + "name": "2.0 T AT (211 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5870, + "fields": { + "id_car_serie": 1169, + "name": "3.5 AT AWD Hybrid (298 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5871, + "fields": { + "id_car_serie": 1169, + "name": "3.5 AT Hybrid (302 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5880, + "fields": { + "id_car_serie": 1173, + "name": "3.5 CVT AWD (283 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2016 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5881, + "fields": { + "id_car_serie": 1173, + "name": "3.5 CVT (265 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5882, + "fields": { + "id_car_serie": 1173, + "name": "3.5 CVT AWD (262 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5883, + "fields": { + "id_car_serie": 1174, + "name": "3.0 D AT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5884, + "fields": { + "id_car_serie": 1174, + "name": "3.7 AT AWD (333 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5885, + "fields": { + "id_car_serie": 1174, + "name": "5.0 AT AWD (400 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5901, + "fields": { + "id_car_serie": 1180, + "name": "0.6 MT (30 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5902, + "fields": { + "id_car_serie": 1180, + "name": "0.6 MT (31 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5903, + "fields": { + "id_car_serie": 1180, + "name": "1.0 AT (54 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5904, + "fields": { + "id_car_serie": 1180, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5905, + "fields": { + "id_car_serie": 1181, + "name": "4.6 MT (325 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5908, + "fields": { + "id_car_serie": 1183, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5909, + "fields": { + "id_car_serie": 1183, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5911, + "fields": { + "id_car_serie": 1184, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 5912, + "fields": { + "id_car_serie": 1185, + "name": "6.0 MT (408 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5913, + "fields": { + "id_car_serie": 1186, + "name": "5.0 MT (330 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 5920, + "fields": { + "id_car_serie": 1187, + "name": "3.0 MT (235 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6022, + "fields": { + "id_car_serie": 1207, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6025, + "fields": { + "id_car_serie": 1207, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6089, + "fields": { + "id_car_serie": 1213, + "name": "3.2 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6090, + "fields": { + "id_car_serie": 1213, + "name": "3.5 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6098, + "fields": { + "id_car_serie": 1216, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6101, + "fields": { + "id_car_serie": 1219, + "name": "1.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6104, + "fields": { + "id_car_serie": 1219, + "name": "1.8 AT (142 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6105, + "fields": { + "id_car_serie": 1219, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6106, + "fields": { + "id_car_serie": 1220, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6107, + "fields": { + "id_car_serie": 1220, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6108, + "fields": { + "id_car_serie": 1220, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6109, + "fields": { + "id_car_serie": 1220, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6110, + "fields": { + "id_car_serie": 1221, + "name": "2.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6111, + "fields": { + "id_car_serie": 1221, + "name": "2.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6112, + "fields": { + "id_car_serie": 1222, + "name": "2.4 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6115, + "fields": { + "id_car_serie": 1224, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6116, + "fields": { + "id_car_serie": 1224, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6117, + "fields": { + "id_car_serie": 1224, + "name": "2.0 Turbo MT (176 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6130, + "fields": { + "id_car_serie": 1230, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6131, + "fields": { + "id_car_serie": 1230, + "name": "2.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6132, + "fields": { + "id_car_serie": 1230, + "name": "2.7 D AT (207 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6133, + "fields": { + "id_car_serie": 1230, + "name": "2.7 D MT (207 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6134, + "fields": { + "id_car_serie": 1230, + "name": "3.0 AT (238 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6135, + "fields": { + "id_car_serie": 1230, + "name": "3.0 MT (238 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6137, + "fields": { + "id_car_serie": 1230, + "name": "4.2 AT (298 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6183, + "fields": { + "id_car_serie": 1236, + "name": "3.5 MT (550 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6220, + "fields": { + "id_car_serie": 1243, + "name": "3.0 CRD AT AWD (218 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6221, + "fields": { + "id_car_serie": 1243, + "name": "3.7 AT (213 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6222, + "fields": { + "id_car_serie": 1243, + "name": "3.7 AT AWD (213 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6223, + "fields": { + "id_car_serie": 1243, + "name": "4.7 AT (231 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6224, + "fields": { + "id_car_serie": 1243, + "name": "5.7 AT AWD (326 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6225, + "fields": { + "id_car_serie": 1243, + "name": "5.7 AT (334 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6251, + "fields": { + "id_car_serie": 1248, + "name": "2.4 MT (174 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6252, + "fields": { + "id_car_serie": 1248, + "name": "2.4 MT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6265, + "fields": { + "id_car_serie": 1251, + "name": "4.6 MT (325 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6279, + "fields": { + "id_car_serie": 1256, + "name": "3.3 GDI AT (290 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6280, + "fields": { + "id_car_serie": 1257, + "name": "1.5 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6281, + "fields": { + "id_car_serie": 1257, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6329, + "fields": { + "id_car_serie": 1268, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6330, + "fields": { + "id_car_serie": 1269, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6331, + "fields": { + "id_car_serie": 1269, + "name": "1.8 MT (151 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6332, + "fields": { + "id_car_serie": 1270, + "name": "2.5 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6333, + "fields": { + "id_car_serie": 1270, + "name": "3.0 AT (191 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6334, + "fields": { + "id_car_serie": 1270, + "name": "3.6 AT (227 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6335, + "fields": { + "id_car_serie": 1271, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6336, + "fields": { + "id_car_serie": 1271, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6338, + "fields": { + "id_car_serie": 1271, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6339, + "fields": { + "id_car_serie": 1271, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6353, + "fields": { + "id_car_serie": 1273, + "name": "3.8 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6354, + "fields": { + "id_car_serie": 1273, + "name": "4.6 AT 4WD (342 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6368, + "fields": { + "id_car_serie": 1278, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6371, + "fields": { + "id_car_serie": 1278, + "name": "2.5 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6383, + "fields": { + "id_car_serie": 1281, + "name": "3.8 GDI AT (334 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6384, + "fields": { + "id_car_serie": 1282, + "name": "1.0 AT (78 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6385, + "fields": { + "id_car_serie": 1282, + "name": "1.0 TCi CVT (106 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6386, + "fields": { + "id_car_serie": 1282, + "name": "1.0 LPi AT (78 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6388, + "fields": { + "id_car_serie": 1283, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6391, + "fields": { + "id_car_serie": 1283, + "name": "2.0 TD MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6460, + "fields": { + "id_car_serie": 1295, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6461, + "fields": { + "id_car_serie": 1295, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6477, + "fields": { + "id_car_serie": 1297, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6480, + "fields": { + "id_car_serie": 1297, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6481, + "fields": { + "id_car_serie": 1297, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6482, + "fields": { + "id_car_serie": 1297, + "name": "1.6d MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6483, + "fields": { + "id_car_serie": 1297, + "name": "1.6d MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6484, + "fields": { + "id_car_serie": 1298, + "name": "0.8 AT (54 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6485, + "fields": { + "id_car_serie": 1298, + "name": "0.8 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6486, + "fields": { + "id_car_serie": 1298, + "name": "0.8 Turbo MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6557, + "fields": { + "id_car_serie": 1313, + "name": "5.0 AMT (1360 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6561, + "fields": { + "id_car_serie": 1317, + "name": "3.9 MT (375 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6562, + "fields": { + "id_car_serie": 1317, + "name": "4.8 MT (375 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6573, + "fields": { + "id_car_serie": 1320, + "name": "3.9 AT (350 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6588, + "fields": { + "id_car_serie": 1323, + "name": "LP 610-4 (610 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6589, + "fields": { + "id_car_serie": 1324, + "name": "3.5 MT (255 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6591, + "fields": { + "id_car_serie": 1325, + "name": "3.9 MT (365 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6601, + "fields": { + "id_car_serie": 1330, + "name": "6.5 MT (640 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6740, + "fields": { + "id_car_serie": 1355, + "name": "2.0 MT Turbo (185 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6744, + "fields": { + "id_car_serie": 1355, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6745, + "fields": { + "id_car_serie": 1355, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6746, + "fields": { + "id_car_serie": 1355, + "name": "3.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6747, + "fields": { + "id_car_serie": 1355, + "name": "3.2 AT (230 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6748, + "fields": { + "id_car_serie": 1356, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6749, + "fields": { + "id_car_serie": 1356, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6750, + "fields": { + "id_car_serie": 1356, + "name": "2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6751, + "fields": { + "id_car_serie": 1356, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6752, + "fields": { + "id_car_serie": 1356, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6753, + "fields": { + "id_car_serie": 1356, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6771, + "fields": { + "id_car_serie": 1359, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6772, + "fields": { + "id_car_serie": 1359, + "name": "2.0 MT Turbo (147 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6845, + "fields": { + "id_car_serie": 1372, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6846, + "fields": { + "id_car_serie": 1372, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6847, + "fields": { + "id_car_serie": 1373, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6848, + "fields": { + "id_car_serie": 1374, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6849, + "fields": { + "id_car_serie": 1374, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6888, + "fields": { + "id_car_serie": 1388, + "name": "2.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6894, + "fields": { + "id_car_serie": 1391, + "name": "1.8 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6900, + "fields": { + "id_car_serie": 1394, + "name": "1.8 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6903, + "fields": { + "id_car_serie": 1396, + "name": "4.6 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6904, + "fields": { + "id_car_serie": 1396, + "name": "4.6 AT AWD (306 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6909, + "fields": { + "id_car_serie": 1400, + "name": "2.4 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6912, + "fields": { + "id_car_serie": 1401, + "name": "4.6 AT (284 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6914, + "fields": { + "id_car_serie": 1401, + "name": "5.4 AT (232 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6962, + "fields": { + "id_car_serie": 1419, + "name": "2.0 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6963, + "fields": { + "id_car_serie": 1419, + "name": "2.0 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6964, + "fields": { + "id_car_serie": 1419, + "name": "2.2 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6965, + "fields": { + "id_car_serie": 1419, + "name": "2.2 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6971, + "fields": { + "id_car_serie": 1422, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6973, + "fields": { + "id_car_serie": 1422, + "name": "2.2 AT (178 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6977, + "fields": { + "id_car_serie": 1424, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6978, + "fields": { + "id_car_serie": 1425, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6979, + "fields": { + "id_car_serie": 1425, + "name": "2.0 MT (225 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 6980, + "fields": { + "id_car_serie": 1426, + "name": "3.5 IPS (280 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6981, + "fields": { + "id_car_serie": 1426, + "name": "3.5 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 6983, + "fields": { + "id_car_serie": 1427, + "name": "2.2 MT SE/SA (184 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7004, + "fields": { + "id_car_serie": 1439, + "name": "2.1 AT (750 ST) (62 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7005, + "fields": { + "id_car_serie": 1439, + "name": "2.1 AT (750 ST 2WD) (62 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7006, + "fields": { + "id_car_serie": 1439, + "name": "2.5 AT (650 Di) (50 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7007, + "fields": { + "id_car_serie": 1440, + "name": "2.0 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7034, + "fields": { + "id_car_serie": 1454, + "name": "4.6 MT (360 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7035, + "fields": { + "id_car_serie": 1455, + "name": "2.5 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7036, + "fields": { + "id_car_serie": 1456, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 7038, + "fields": { + "id_car_serie": 1456, + "name": "1.8 MT (300 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 7039, + "fields": { + "id_car_serie": 1456, + "name": "2.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 7040, + "fields": { + "id_car_serie": 1457, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 7041, + "fields": { + "id_car_serie": 1457, + "name": "2.3 MT (195 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 7042, + "fields": { + "id_car_serie": 1457, + "name": "2.5 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 7043, + "fields": { + "id_car_serie": 1457, + "name": "3.0 MT (295 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 7044, + "fields": { + "id_car_serie": 1457, + "name": "3.5 MT (315 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 7045, + "fields": { + "id_car_serie": 1458, + "name": "2.8 T AT (360 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7046, + "fields": { + "id_car_serie": 1458, + "name": "2.8 T AT (420 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7047, + "fields": { + "id_car_serie": 1458, + "name": "3.5 AT (300 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7048, + "fields": { + "id_car_serie": 1459, + "name": "2.8 T AT (360 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7049, + "fields": { + "id_car_serie": 1459, + "name": "2.8 T AT (420 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7050, + "fields": { + "id_car_serie": 1459, + "name": "3.5 AT (300 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7051, + "fields": { + "id_car_serie": 1460, + "name": "1.0 MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7063, + "fields": { + "id_car_serie": 1465, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7064, + "fields": { + "id_car_serie": 1465, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7065, + "fields": { + "id_car_serie": 1465, + "name": "1.5 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7074, + "fields": { + "id_car_serie": 1468, + "name": "0.8 MT (37 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 7075, + "fields": { + "id_car_serie": 1469, + "name": "1.3 MT DX (82 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7091, + "fields": { + "id_car_serie": 1477, + "name": "2.0 MT (306 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7115, + "fields": { + "id_car_serie": 1481, + "name": "4.7 MT (310 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7116, + "fields": { + "id_car_serie": 1481, + "name": "4.9 MT (300 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7117, + "fields": { + "id_car_serie": 1482, + "name": "3.2 MT (430 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7126, + "fields": { + "id_car_serie": 1486, + "name": "4.1 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7127, + "fields": { + "id_car_serie": 1486, + "name": "4.7 MT (290 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7128, + "fields": { + "id_car_serie": 1486, + "name": "4.9 MT (320 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7129, + "fields": { + "id_car_serie": 1487, + "name": "2.8 AT (225 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7130, + "fields": { + "id_car_serie": 1487, + "name": "2.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7131, + "fields": { + "id_car_serie": 1487, + "name": "2.8 MT (225 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7132, + "fields": { + "id_car_serie": 1487, + "name": "2.8 MT (250 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7133, + "fields": { + "id_car_serie": 1488, + "name": "4.9 AT (320 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7134, + "fields": { + "id_car_serie": 1488, + "name": "4.9 MT (320 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7135, + "fields": { + "id_car_serie": 1489, + "name": "4.2 AT (265 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7136, + "fields": { + "id_car_serie": 1489, + "name": "4.2 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7137, + "fields": { + "id_car_serie": 1489, + "name": "4.9 AT (290 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7138, + "fields": { + "id_car_serie": 1489, + "name": "4.9 MT (290 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7139, + "fields": { + "id_car_serie": 1490, + "name": "6.0 AMT (624 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7140, + "fields": { + "id_car_serie": 1491, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7141, + "fields": { + "id_car_serie": 1491, + "name": "3.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7142, + "fields": { + "id_car_serie": 1492, + "name": "4.2 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7143, + "fields": { + "id_car_serie": 1492, + "name": "4.9 MT (290 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7298, + "fields": { + "id_car_serie": 1524, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7300, + "fields": { + "id_car_serie": 1525, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 7303, + "fields": { + "id_car_serie": 1526, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 7304, + "fields": { + "id_car_serie": 1526, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 7307, + "fields": { + "id_car_serie": 1526, + "name": "0.7 T CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 7308, + "fields": { + "id_car_serie": 1526, + "name": "0.7 T CVT (64 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 7353, + "fields": { + "id_car_serie": 1530, + "name": "2.0 AT 4WD (144 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 7354, + "fields": { + "id_car_serie": 1530, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7355, + "fields": { + "id_car_serie": 1530, + "name": "2.0 SKYACTIV-G ​​SKYACTIV-Drive (151 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 7356, + "fields": { + "id_car_serie": 1530, + "name": "2.3 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 7357, + "fields": { + "id_car_serie": 1531, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7358, + "fields": { + "id_car_serie": 1531, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7359, + "fields": { + "id_car_serie": 1531, + "name": "2.0 D AT AWD (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7361, + "fields": { + "id_car_serie": 1531, + "name": "2.0 D MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7362, + "fields": { + "id_car_serie": 1531, + "name": "2.0 D MT AWD (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7363, + "fields": { + "id_car_serie": 1531, + "name": "2.5 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7364, + "fields": { + "id_car_serie": 1531, + "name": "2.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7365, + "fields": { + "id_car_serie": 1531, + "name": "2.0 D AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7366, + "fields": { + "id_car_serie": 1531, + "name": "2.5 D AT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7369, + "fields": { + "id_car_serie": 1531, + "name": "2.5 D MT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7370, + "fields": { + "id_car_serie": 1531, + "name": "2.5 D MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7387, + "fields": { + "id_car_serie": 1533, + "name": "2.5 MZR-CD MT 4x4 (143 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7413, + "fields": { + "id_car_serie": 1537, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7416, + "fields": { + "id_car_serie": 1537, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7417, + "fields": { + "id_car_serie": 1537, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7419, + "fields": { + "id_car_serie": 1537, + "name": "2.0 MT D Comprex (82 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7430, + "fields": { + "id_car_serie": 1539, + "name": "2.2 TD MT AWD (173 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7431, + "fields": { + "id_car_serie": 1539, + "name": "2.3 T AT AWD (248 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7432, + "fields": { + "id_car_serie": 1539, + "name": "2.3 T AT (248 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7433, + "fields": { + "id_car_serie": 1539, + "name": "2.3 T MT AWD (260 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7435, + "fields": { + "id_car_serie": 1539, + "name": "2.5 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7445, + "fields": { + "id_car_serie": 1542, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7446, + "fields": { + "id_car_serie": 1542, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7447, + "fields": { + "id_car_serie": 1542, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7448, + "fields": { + "id_car_serie": 1542, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7449, + "fields": { + "id_car_serie": 1542, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7450, + "fields": { + "id_car_serie": 1542, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7451, + "fields": { + "id_car_serie": 1542, + "name": "2.0 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7454, + "fields": { + "id_car_serie": 1544, + "name": "2.5 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7455, + "fields": { + "id_car_serie": 1544, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7456, + "fields": { + "id_car_serie": 1545, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7457, + "fields": { + "id_car_serie": 1545, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7458, + "fields": { + "id_car_serie": 1545, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7459, + "fields": { + "id_car_serie": 1545, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7461, + "fields": { + "id_car_serie": 1546, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7463, + "fields": { + "id_car_serie": 1546, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7464, + "fields": { + "id_car_serie": 1547, + "name": "2.3 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7465, + "fields": { + "id_car_serie": 1547, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7466, + "fields": { + "id_car_serie": 1548, + "name": "1.3 Twin Turbo AT (230 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7467, + "fields": { + "id_car_serie": 1548, + "name": "2.0 Twin Turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7525, + "fields": { + "id_car_serie": 1556, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7526, + "fields": { + "id_car_serie": 1556, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7527, + "fields": { + "id_car_serie": 1556, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7528, + "fields": { + "id_car_serie": 1556, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7535, + "fields": { + "id_car_serie": 1558, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7537, + "fields": { + "id_car_serie": 1558, + "name": "2.5 MT (167 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7539, + "fields": { + "id_car_serie": 1559, + "name": "4.0 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7540, + "fields": { + "id_car_serie": 1560, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7541, + "fields": { + "id_car_serie": 1560, + "name": "1.8 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7542, + "fields": { + "id_car_serie": 1560, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7543, + "fields": { + "id_car_serie": 1560, + "name": "1.8 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7544, + "fields": { + "id_car_serie": 1560, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7545, + "fields": { + "id_car_serie": 1560, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7564, + "fields": { + "id_car_serie": 1567, + "name": "1.3 AT (76 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7565, + "fields": { + "id_car_serie": 1567, + "name": "1.3 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7566, + "fields": { + "id_car_serie": 1567, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7567, + "fields": { + "id_car_serie": 1567, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7574, + "fields": { + "id_car_serie": 1570, + "name": "1.3r AT (192 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7575, + "fields": { + "id_car_serie": 1570, + "name": "1.3r AT (210 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7576, + "fields": { + "id_car_serie": 1570, + "name": "1.3r AT (215 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7577, + "fields": { + "id_car_serie": 1570, + "name": "1.3r MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7578, + "fields": { + "id_car_serie": 1570, + "name": "1.3r MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7579, + "fields": { + "id_car_serie": 1570, + "name": "1.3r MT (231 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7580, + "fields": { + "id_car_serie": 1570, + "name": "1.3r MT (250 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7582, + "fields": { + "id_car_serie": 1571, + "name": "0.7 AT Turbo (58 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7583, + "fields": { + "id_car_serie": 1571, + "name": "0.7 MT (42 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7587, + "fields": { + "id_car_serie": 1573, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7588, + "fields": { + "id_car_serie": 1573, + "name": "0.7 AT 2WD (54 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7601, + "fields": { + "id_car_serie": 1575, + "name": "1.5 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 7602, + "fields": { + "id_car_serie": 1575, + "name": "1.5 AT e-4WD (113 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 7608, + "fields": { + "id_car_serie": 1579, + "name": "3.8 AMT (737 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7610, + "fields": { + "id_car_serie": 1580, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7613, + "fields": { + "id_car_serie": 1581, + "name": "6.0 MT (394 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7614, + "fields": { + "id_car_serie": 1582, + "name": "6.0 AT (394 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7615, + "fields": { + "id_car_serie": 1583, + "name": "1.7 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7616, + "fields": { + "id_car_serie": 1583, + "name": "1.7 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7617, + "fields": { + "id_car_serie": 1583, + "name": "1.8 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7618, + "fields": { + "id_car_serie": 1583, + "name": "1.8 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7619, + "fields": { + "id_car_serie": 1583, + "name": "2.0 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7620, + "fields": { + "id_car_serie": 1583, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7621, + "fields": { + "id_car_serie": 1583, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7622, + "fields": { + "id_car_serie": 1583, + "name": "2.0 AT (118 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7623, + "fields": { + "id_car_serie": 1583, + "name": "2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7624, + "fields": { + "id_car_serie": 1583, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7625, + "fields": { + "id_car_serie": 1583, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7626, + "fields": { + "id_car_serie": 1583, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7627, + "fields": { + "id_car_serie": 1583, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7628, + "fields": { + "id_car_serie": 1583, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7629, + "fields": { + "id_car_serie": 1583, + "name": "2.0 MT (118 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7630, + "fields": { + "id_car_serie": 1583, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7631, + "fields": { + "id_car_serie": 1583, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7632, + "fields": { + "id_car_serie": 1583, + "name": "2.0 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7633, + "fields": { + "id_car_serie": 1583, + "name": "2.0 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7634, + "fields": { + "id_car_serie": 1583, + "name": "2.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7635, + "fields": { + "id_car_serie": 1583, + "name": "2.3 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7636, + "fields": { + "id_car_serie": 1583, + "name": "2.3 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7637, + "fields": { + "id_car_serie": 1583, + "name": "2.3 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7638, + "fields": { + "id_car_serie": 1583, + "name": "2.3 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7639, + "fields": { + "id_car_serie": 1583, + "name": "2.3 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7640, + "fields": { + "id_car_serie": 1583, + "name": "2.3 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7641, + "fields": { + "id_car_serie": 1583, + "name": "2.3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7642, + "fields": { + "id_car_serie": 1583, + "name": "2.3 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7643, + "fields": { + "id_car_serie": 1583, + "name": "2.3 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7644, + "fields": { + "id_car_serie": 1583, + "name": "2.3 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7645, + "fields": { + "id_car_serie": 1583, + "name": "2.5 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7646, + "fields": { + "id_car_serie": 1583, + "name": "2.5 MT (195 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7647, + "fields": { + "id_car_serie": 1583, + "name": "2.5 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7648, + "fields": { + "id_car_serie": 1583, + "name": "2.5 MT (235 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7649, + "fields": { + "id_car_serie": 1583, + "name": "2.5 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7650, + "fields": { + "id_car_serie": 1583, + "name": "2.5 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7651, + "fields": { + "id_car_serie": 1583, + "name": "2.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7652, + "fields": { + "id_car_serie": 1583, + "name": "2.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7653, + "fields": { + "id_car_serie": 1583, + "name": "2.5 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7654, + "fields": { + "id_car_serie": 1583, + "name": "2.5 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7655, + "fields": { + "id_car_serie": 1583, + "name": "2.5 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7656, + "fields": { + "id_car_serie": 1583, + "name": "2.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7657, + "fields": { + "id_car_serie": 1583, + "name": "2.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7658, + "fields": { + "id_car_serie": 1583, + "name": "2.6 AT (166 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7659, + "fields": { + "id_car_serie": 1583, + "name": "2.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7660, + "fields": { + "id_car_serie": 1583, + "name": "2.6 MT (166 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7948, + "fields": { + "id_car_serie": 1616, + "name": "1.6 Touchshift (102 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7949, + "fields": { + "id_car_serie": 1616, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7950, + "fields": { + "id_car_serie": 1616, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7952, + "fields": { + "id_car_serie": 1616, + "name": "1.7 CDI Touchshift (91 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7953, + "fields": { + "id_car_serie": 1616, + "name": "1.7 CDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7954, + "fields": { + "id_car_serie": 1616, + "name": "1.7 CDI MT (91 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7955, + "fields": { + "id_car_serie": 1616, + "name": "1.9 Touchshift (125 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7956, + "fields": { + "id_car_serie": 1616, + "name": "1.9 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7979, + "fields": { + "id_car_serie": 1620, + "name": "2.0 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7980, + "fields": { + "id_car_serie": 1620, + "name": "2.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7981, + "fields": { + "id_car_serie": 1620, + "name": "2.0 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7982, + "fields": { + "id_car_serie": 1620, + "name": "2.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7983, + "fields": { + "id_car_serie": 1620, + "name": "2.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7984, + "fields": { + "id_car_serie": 1620, + "name": "2.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7985, + "fields": { + "id_car_serie": 1620, + "name": "2.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7986, + "fields": { + "id_car_serie": 1620, + "name": "2.4 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 7987, + "fields": { + "id_car_serie": 1620, + "name": "3.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8199, + "fields": { + "id_car_serie": 1628, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8200, + "fields": { + "id_car_serie": 1628, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8201, + "fields": { + "id_car_serie": 1628, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8216, + "fields": { + "id_car_serie": 1636, + "name": "2.3 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8217, + "fields": { + "id_car_serie": 1636, + "name": "3.0 AT (212 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8218, + "fields": { + "id_car_serie": 1637, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8220, + "fields": { + "id_car_serie": 1638, + "name": "4.2 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8224, + "fields": { + "id_car_serie": 1640, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8225, + "fields": { + "id_car_serie": 1640, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8226, + "fields": { + "id_car_serie": 1640, + "name": "2.5 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8227, + "fields": { + "id_car_serie": 1640, + "name": "2.5 MT (173 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8249, + "fields": { + "id_car_serie": 1647, + "name": "2.5 D AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8250, + "fields": { + "id_car_serie": 1647, + "name": "2.5 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8253, + "fields": { + "id_car_serie": 1649, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 8254, + "fields": { + "id_car_serie": 1650, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 8255, + "fields": { + "id_car_serie": 1650, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 8256, + "fields": { + "id_car_serie": 1651, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 8257, + "fields": { + "id_car_serie": 1651, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 8258, + "fields": { + "id_car_serie": 1652, + "name": "1.8 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8259, + "fields": { + "id_car_serie": 1652, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8266, + "fields": { + "id_car_serie": 1655, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8267, + "fields": { + "id_car_serie": 1655, + "name": "1.8 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8268, + "fields": { + "id_car_serie": 1656, + "name": "1.6 MT (104 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8269, + "fields": { + "id_car_serie": 1656, + "name": "2.0 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8270, + "fields": { + "id_car_serie": 1656, + "name": "2.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8277, + "fields": { + "id_car_serie": 1660, + "name": "1.1 MT (59 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1966 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8278, + "fields": { + "id_car_serie": 1660, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8279, + "fields": { + "id_car_serie": 1660, + "name": "1.5 MT (66 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8280, + "fields": { + "id_car_serie": 1661, + "name": "2.0 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8281, + "fields": { + "id_car_serie": 1661, + "name": "2.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8282, + "fields": { + "id_car_serie": 1662, + "name": "3.9 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8354, + "fields": { + "id_car_serie": 1677, + "name": "0.5 CVT (21 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8355, + "fields": { + "id_car_serie": 1677, + "name": "0.5 CVT (6 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8356, + "fields": { + "id_car_serie": 1678, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8562, + "fields": { + "id_car_serie": 1712, + "name": "1.6 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8563, + "fields": { + "id_car_serie": 1712, + "name": "1.6 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8564, + "fields": { + "id_car_serie": 1712, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8565, + "fields": { + "id_car_serie": 1712, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8566, + "fields": { + "id_car_serie": 1712, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8567, + "fields": { + "id_car_serie": 1712, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8568, + "fields": { + "id_car_serie": 1712, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8569, + "fields": { + "id_car_serie": 1712, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8570, + "fields": { + "id_car_serie": 1712, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8571, + "fields": { + "id_car_serie": 1712, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8573, + "fields": { + "id_car_serie": 1713, + "name": "3.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8575, + "fields": { + "id_car_serie": 1713, + "name": "3.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8578, + "fields": { + "id_car_serie": 1713, + "name": "3.5 AT (260 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8589, + "fields": { + "id_car_serie": 1716, + "name": "1.3 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8590, + "fields": { + "id_car_serie": 1716, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8618, + "fields": { + "id_car_serie": 1722, + "name": "3.8 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8619, + "fields": { + "id_car_serie": 1722, + "name": "3.8 AT 2WD (218 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8640, + "fields": { + "id_car_serie": 1724, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8641, + "fields": { + "id_car_serie": 1724, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8643, + "fields": { + "id_car_serie": 1724, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8644, + "fields": { + "id_car_serie": 1724, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8646, + "fields": { + "id_car_serie": 1724, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8650, + "fields": { + "id_car_serie": 1726, + "name": "2.0 DI-D MT (134 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8651, + "fields": { + "id_car_serie": 1726, + "name": "2.4 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8652, + "fields": { + "id_car_serie": 1726, + "name": "2.4 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8653, + "fields": { + "id_car_serie": 1726, + "name": "2.4 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8660, + "fields": { + "id_car_serie": 1728, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8661, + "fields": { + "id_car_serie": 1728, + "name": "0.7 AT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8662, + "fields": { + "id_car_serie": 1729, + "name": "i-MiEV CVT (67 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 8724, + "fields": { + "id_car_serie": 1738, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8728, + "fields": { + "id_car_serie": 1738, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8730, + "fields": { + "id_car_serie": 1738, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8731, + "fields": { + "id_car_serie": 1738, + "name": "2.0 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8732, + "fields": { + "id_car_serie": 1738, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8733, + "fields": { + "id_car_serie": 1738, + "name": "2.0 MT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8734, + "fields": { + "id_car_serie": 1738, + "name": "2.4 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8735, + "fields": { + "id_car_serie": 1738, + "name": "2.4 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8738, + "fields": { + "id_car_serie": 1738, + "name": "2.5 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8739, + "fields": { + "id_car_serie": 1738, + "name": "2.5 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8741, + "fields": { + "id_car_serie": 1738, + "name": "2.5 AT VR-4 type S 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8742, + "fields": { + "id_car_serie": 1738, + "name": "2.5 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8743, + "fields": { + "id_car_serie": 1738, + "name": "2.5 MT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8745, + "fields": { + "id_car_serie": 1738, + "name": "2.5 MT VR-4 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8746, + "fields": { + "id_car_serie": 1739, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8747, + "fields": { + "id_car_serie": 1739, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8748, + "fields": { + "id_car_serie": 1739, + "name": "1.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8749, + "fields": { + "id_car_serie": 1739, + "name": "1.5 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8750, + "fields": { + "id_car_serie": 1739, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8751, + "fields": { + "id_car_serie": 1739, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8752, + "fields": { + "id_car_serie": 1739, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8753, + "fields": { + "id_car_serie": 1739, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8886, + "fields": { + "id_car_serie": 1752, + "name": "1.1 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8915, + "fields": { + "id_car_serie": 1757, + "name": "1.1 MT (74 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8916, + "fields": { + "id_car_serie": 1758, + "name": "3.5 AT (241 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8917, + "fields": { + "id_car_serie": 1758, + "name": "4.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8918, + "fields": { + "id_car_serie": 1759, + "name": "3.7 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8919, + "fields": { + "id_car_serie": 1759, + "name": "3.7 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8930, + "fields": { + "id_car_serie": 1764, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8931, + "fields": { + "id_car_serie": 1764, + "name": "2.4 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8932, + "fields": { + "id_car_serie": 1764, + "name": "2.5 TD MT 4WD (99 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8936, + "fields": { + "id_car_serie": 1764, + "name": "3.0 AT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8971, + "fields": { + "id_car_serie": 1770, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8972, + "fields": { + "id_car_serie": 1770, + "name": "0.7 MT LX (48 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8974, + "fields": { + "id_car_serie": 1770, + "name": "0.7 MT 4WD RX (64 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8975, + "fields": { + "id_car_serie": 1771, + "name": "1.4 AT (70 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8976, + "fields": { + "id_car_serie": 1771, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8977, + "fields": { + "id_car_serie": 1771, + "name": "1.6 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8978, + "fields": { + "id_car_serie": 1771, + "name": "1.6 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8979, + "fields": { + "id_car_serie": 1771, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8980, + "fields": { + "id_car_serie": 1771, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8981, + "fields": { + "id_car_serie": 1771, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8982, + "fields": { + "id_car_serie": 1771, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8983, + "fields": { + "id_car_serie": 1771, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8984, + "fields": { + "id_car_serie": 1771, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8985, + "fields": { + "id_car_serie": 1771, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8986, + "fields": { + "id_car_serie": 1771, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 8991, + "fields": { + "id_car_serie": 1772, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9042, + "fields": { + "id_car_serie": 1788, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9043, + "fields": { + "id_car_serie": 1789, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 9044, + "fields": { + "id_car_serie": 1790, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 9045, + "fields": { + "id_car_serie": 1790, + "name": "3.7 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 9058, + "fields": { + "id_car_serie": 1795, + "name": "4.8 MT (368 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9062, + "fields": { + "id_car_serie": 1796, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9067, + "fields": { + "id_car_serie": 1798, + "name": "3.7 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 9084, + "fields": { + "id_car_serie": 1802, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9085, + "fields": { + "id_car_serie": 1802, + "name": "1.6 MT SR (102 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9086, + "fields": { + "id_car_serie": 1802, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9087, + "fields": { + "id_car_serie": 1802, + "name": "2.0 MT GTI (143 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9095, + "fields": { + "id_car_serie": 1803, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9097, + "fields": { + "id_car_serie": 1803, + "name": "2.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9098, + "fields": { + "id_car_serie": 1803, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9100, + "fields": { + "id_car_serie": 1803, + "name": "2.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9127, + "fields": { + "id_car_serie": 1813, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9128, + "fields": { + "id_car_serie": 1813, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9131, + "fields": { + "id_car_serie": 1815, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9133, + "fields": { + "id_car_serie": 1815, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9134, + "fields": { + "id_car_serie": 1815, + "name": "2.0 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9135, + "fields": { + "id_car_serie": 1815, + "name": "2.2 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9136, + "fields": { + "id_car_serie": 1815, + "name": "2.2 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9149, + "fields": { + "id_car_serie": 1819, + "name": "2.4 TD AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9150, + "fields": { + "id_car_serie": 1819, + "name": "2.4 TD 4WD AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9151, + "fields": { + "id_car_serie": 1819, + "name": "2.5 2WD AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9152, + "fields": { + "id_car_serie": 1819, + "name": "2.5 4WD AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9153, + "fields": { + "id_car_serie": 1819, + "name": "2.5 TDi 2WD AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9154, + "fields": { + "id_car_serie": 1819, + "name": "2.5 TDi 4WD AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9155, + "fields": { + "id_car_serie": 1819, + "name": "3.0 i V6 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9156, + "fields": { + "id_car_serie": 1820, + "name": "1.0 AT (52 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9157, + "fields": { + "id_car_serie": 1820, + "name": "1.0 MT (52 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9197, + "fields": { + "id_car_serie": 1828, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9198, + "fields": { + "id_car_serie": 1828, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9199, + "fields": { + "id_car_serie": 1828, + "name": "2.8 D AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9200, + "fields": { + "id_car_serie": 1828, + "name": "2.8 D MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9216, + "fields": { + "id_car_serie": 1831, + "name": "2.0 4WD CVT (138 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 9217, + "fields": { + "id_car_serie": 1831, + "name": "2.0 2WD CVT (138 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 9223, + "fields": { + "id_car_serie": 1833, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9224, + "fields": { + "id_car_serie": 1833, + "name": "2.2 AT (79 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9225, + "fields": { + "id_car_serie": 1833, + "name": "2.2 AT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9226, + "fields": { + "id_car_serie": 1833, + "name": "2.2 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9227, + "fields": { + "id_car_serie": 1833, + "name": "2.2 MT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9234, + "fields": { + "id_car_serie": 1836, + "name": "1.0 AT (76 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9246, + "fields": { + "id_car_serie": 1839, + "name": "3.8 GR6 (570 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9254, + "fields": { + "id_car_serie": 1841, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9255, + "fields": { + "id_car_serie": 1841, + "name": "2.0 CVT 4WD (139 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9260, + "fields": { + "id_car_serie": 1843, + "name": "2.0 TDI AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9261, + "fields": { + "id_car_serie": 1843, + "name": "2.0 TDI AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9262, + "fields": { + "id_car_serie": 1843, + "name": "2.4 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9263, + "fields": { + "id_car_serie": 1843, + "name": "2.4 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9278, + "fields": { + "id_car_serie": 1847, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9279, + "fields": { + "id_car_serie": 1847, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9281, + "fields": { + "id_car_serie": 1847, + "name": "2.0 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9283, + "fields": { + "id_car_serie": 1848, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9284, + "fields": { + "id_car_serie": 1848, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9285, + "fields": { + "id_car_serie": 1848, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9286, + "fields": { + "id_car_serie": 1848, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9348, + "fields": { + "id_car_serie": 1867, + "name": "1.0 AT (52 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9349, + "fields": { + "id_car_serie": 1867, + "name": "1.0 MT (52 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9354, + "fields": { + "id_car_serie": 1870, + "name": "0.7 AT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9355, + "fields": { + "id_car_serie": 1870, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9356, + "fields": { + "id_car_serie": 1870, + "name": "0.7 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9357, + "fields": { + "id_car_serie": 1870, + "name": "0.7 MT (52 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9359, + "fields": { + "id_car_serie": 1871, + "name": "3.0 MT GTO-3 (352 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9361, + "fields": { + "id_car_serie": 1872, + "name": "4.4 MT (660 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 9379, + "fields": { + "id_car_serie": 1879, + "name": "3.1 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9407, + "fields": { + "id_car_serie": 1889, + "name": "3.5 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9408, + "fields": { + "id_car_serie": 1889, + "name": "3.8 AT (197 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9412, + "fields": { + "id_car_serie": 1891, + "name": "2.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9413, + "fields": { + "id_car_serie": 1891, + "name": "2.5 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9414, + "fields": { + "id_car_serie": 1891, + "name": "2.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9415, + "fields": { + "id_car_serie": 1891, + "name": "2.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9416, + "fields": { + "id_car_serie": 1891, + "name": "2.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9417, + "fields": { + "id_car_serie": 1891, + "name": "2.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9441, + "fields": { + "id_car_serie": 1896, + "name": "1.4 E-REV CVT (86 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 9554, + "fields": { + "id_car_serie": 1905, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9555, + "fields": { + "id_car_serie": 1905, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9557, + "fields": { + "id_car_serie": 1905, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9559, + "fields": { + "id_car_serie": 1905, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9563, + "fields": { + "id_car_serie": 1905, + "name": "2.0 T MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9564, + "fields": { + "id_car_serie": 1905, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9565, + "fields": { + "id_car_serie": 1905, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9614, + "fields": { + "id_car_serie": 1909, + "name": "1.4 Turbo MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 9615, + "fields": { + "id_car_serie": 1909, + "name": "1.4 Turbo ecoFLEX MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 9616, + "fields": { + "id_car_serie": 1909, + "name": "1.6 Turbo AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 9617, + "fields": { + "id_car_serie": 1909, + "name": "1.6 Turbo MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 9618, + "fields": { + "id_car_serie": 1909, + "name": "2.0 CDTI ecoFLEX AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 9619, + "fields": { + "id_car_serie": 1909, + "name": "2.0 CDTI ecoFLEX MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 9620, + "fields": { + "id_car_serie": 1909, + "name": "2.0 CDTI BiTurbo ecoFLEX MT (195 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 9861, + "fields": { + "id_car_serie": 1931, + "name": "1.4 Turbo AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 9863, + "fields": { + "id_car_serie": 1931, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 9864, + "fields": { + "id_car_serie": 1931, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 9865, + "fields": { + "id_car_serie": 1931, + "name": "1.7 CDTI AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9866, + "fields": { + "id_car_serie": 1931, + "name": "1.7 CDTI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9867, + "fields": { + "id_car_serie": 1931, + "name": "1.7 CDTI MT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9868, + "fields": { + "id_car_serie": 1931, + "name": "1.8 AT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 9869, + "fields": { + "id_car_serie": 1931, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 9977, + "fields": { + "id_car_serie": 1940, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9979, + "fields": { + "id_car_serie": 1940, + "name": "1.9 CDTI AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9980, + "fields": { + "id_car_serie": 1940, + "name": "1.9 CDTI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9981, + "fields": { + "id_car_serie": 1940, + "name": "1.9 CDTI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9982, + "fields": { + "id_car_serie": 1940, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9983, + "fields": { + "id_car_serie": 1940, + "name": "2.0 DTI MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9984, + "fields": { + "id_car_serie": 1940, + "name": "2.2 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9985, + "fields": { + "id_car_serie": 1940, + "name": "2.2 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9986, + "fields": { + "id_car_serie": 1940, + "name": "2.2 DTI AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9987, + "fields": { + "id_car_serie": 1940, + "name": "2.2 DTI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9991, + "fields": { + "id_car_serie": 1940, + "name": "3.0 CDTI AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9992, + "fields": { + "id_car_serie": 1940, + "name": "3.0 CDTI MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9993, + "fields": { + "id_car_serie": 1940, + "name": "3.2 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9994, + "fields": { + "id_car_serie": 1940, + "name": "3.2 MT (211 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9995, + "fields": { + "id_car_serie": 1941, + "name": "2.2 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9996, + "fields": { + "id_car_serie": 1941, + "name": "2.2 DTI MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9997, + "fields": { + "id_car_serie": 1941, + "name": "3.0 AT (201 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 9998, + "fields": { + "id_car_serie": 1942, + "name": "2.0 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10100, + "fields": { + "id_car_serie": 1950, + "name": "2.5 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10101, + "fields": { + "id_car_serie": 1951, + "name": "6.0 AMT (730 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 10107, + "fields": { + "id_car_serie": 1957, + "name": "4.6 MT (309 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10108, + "fields": { + "id_car_serie": 1958, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 10109, + "fields": { + "id_car_serie": 1958, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 10110, + "fields": { + "id_car_serie": 1959, + "name": "0.7 AT (31 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10111, + "fields": { + "id_car_serie": 1959, + "name": "0.7 MT (31 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10115, + "fields": { + "id_car_serie": 1960, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10125, + "fields": { + "id_car_serie": 1962, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10126, + "fields": { + "id_car_serie": 1963, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 10343, + "fields": { + "id_car_serie": 1992, + "name": "1.2 VTi 2-tronic (72 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 10344, + "fields": { + "id_car_serie": 1992, + "name": "1.2 VTi MT (72 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 10345, + "fields": { + "id_car_serie": 1992, + "name": "1.6 VTi AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 10346, + "fields": { + "id_car_serie": 1992, + "name": "1.6 VTi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 10544, + "fields": { + "id_car_serie": 2011, + "name": "2.0 CVT 4x2 (147 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10545, + "fields": { + "id_car_serie": 2011, + "name": "2.0 CVT 4x4 (147 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10546, + "fields": { + "id_car_serie": 2011, + "name": "2.0 MT 4x2 (147 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10549, + "fields": { + "id_car_serie": 2011, + "name": "2.4 CVT 4x4 (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10550, + "fields": { + "id_car_serie": 2011, + "name": "2.4 MT 4x4 (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10553, + "fields": { + "id_car_serie": 2012, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 10554, + "fields": { + "id_car_serie": 2012, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 10695, + "fields": { + "id_car_serie": 2021, + "name": "1.6 VTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 10696, + "fields": { + "id_car_serie": 2021, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 10697, + "fields": { + "id_car_serie": 2021, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10698, + "fields": { + "id_car_serie": 2021, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 10699, + "fields": { + "id_car_serie": 2021, + "name": "1.6 HDI MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 10700, + "fields": { + "id_car_serie": 2022, + "name": "1.6 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10701, + "fields": { + "id_car_serie": 2022, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10702, + "fields": { + "id_car_serie": 2022, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10785, + "fields": { + "id_car_serie": 2032, + "name": "2.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10786, + "fields": { + "id_car_serie": 2032, + "name": "2.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10787, + "fields": { + "id_car_serie": 2032, + "name": "2.7 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10788, + "fields": { + "id_car_serie": 2032, + "name": "2.7 AT (144 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10789, + "fields": { + "id_car_serie": 2032, + "name": "2.7 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10790, + "fields": { + "id_car_serie": 2032, + "name": "2.7 MT (144 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10797, + "fields": { + "id_car_serie": 2033, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10799, + "fields": { + "id_car_serie": 2033, + "name": "2.0 Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10801, + "fields": { + "id_car_serie": 2033, + "name": "2.1 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10806, + "fields": { + "id_car_serie": 2033, + "name": "3.0 MT (194 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10808, + "fields": { + "id_car_serie": 2033, + "name": "3.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10819, + "fields": { + "id_car_serie": 2034, + "name": "2.2 MT (158 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10821, + "fields": { + "id_car_serie": 2034, + "name": "2.2 HDi AT (133 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10824, + "fields": { + "id_car_serie": 2034, + "name": "2.2 HDi MT (133 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10835, + "fields": { + "id_car_serie": 2035, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10837, + "fields": { + "id_car_serie": 2035, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10839, + "fields": { + "id_car_serie": 2035, + "name": "2.0 HDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10859, + "fields": { + "id_car_serie": 2040, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 10862, + "fields": { + "id_car_serie": 2040, + "name": "1.4 MT (38 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 10869, + "fields": { + "id_car_serie": 2042, + "name": "2.0 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10870, + "fields": { + "id_car_serie": 2042, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10871, + "fields": { + "id_car_serie": 2042, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10926, + "fields": { + "id_car_serie": 2056, + "name": "3.4 AT AWD (188 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10927, + "fields": { + "id_car_serie": 2056, + "name": "3.4 AT FWD (188 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10931, + "fields": { + "id_car_serie": 2058, + "name": "2.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 10932, + "fields": { + "id_car_serie": 2058, + "name": "2.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11007, + "fields": { + "id_car_serie": 2068, + "name": "3.6 AT (256 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11039, + "fields": { + "id_car_serie": 2076, + "name": "5.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11090, + "fields": { + "id_car_serie": 2085, + "name": "6.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11091, + "fields": { + "id_car_serie": 2086, + "name": "3.4 AT (186 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11092, + "fields": { + "id_car_serie": 2086, + "name": "3.4 AT AWD (186 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11127, + "fields": { + "id_car_serie": 2092, + "name": "1.7 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11128, + "fields": { + "id_car_serie": 2092, + "name": "1.8 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11134, + "fields": { + "id_car_serie": 2094, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11135, + "fields": { + "id_car_serie": 2094, + "name": "2.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11136, + "fields": { + "id_car_serie": 2094, + "name": "2.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11137, + "fields": { + "id_car_serie": 2094, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11138, + "fields": { + "id_car_serie": 2094, + "name": "2.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11156, + "fields": { + "id_car_serie": 2095, + "name": "5.4 MT (350 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11179, + "fields": { + "id_car_serie": 2102, + "name": "5.7 MT (612 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11195, + "fields": { + "id_car_serie": 2105, + "name": "S 3.0 PDK AWD (340 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 11196, + "fields": { + "id_car_serie": 2105, + "name": "Turbo 3.6 PDK AWD (400 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 11197, + "fields": { + "id_car_serie": 2105, + "name": "S Diesel 3.0 PDK AWD (245 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 11208, + "fields": { + "id_car_serie": 2107, + "name": "1.2 MT (53 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11210, + "fields": { + "id_car_serie": 2109, + "name": "1.6 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 11211, + "fields": { + "id_car_serie": 2109, + "name": "1.6 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 11212, + "fields": { + "id_car_serie": 2109, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 11213, + "fields": { + "id_car_serie": 2110, + "name": "1.3 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 11214, + "fields": { + "id_car_serie": 2110, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 11217, + "fields": { + "id_car_serie": 2111, + "name": "1.8 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 11218, + "fields": { + "id_car_serie": 2111, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 11219, + "fields": { + "id_car_serie": 2112, + "name": "1.1 AT (71 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11220, + "fields": { + "id_car_serie": 2113, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11221, + "fields": { + "id_car_serie": 2113, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11224, + "fields": { + "id_car_serie": 2115, + "name": "1.6 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 11225, + "fields": { + "id_car_serie": 2115, + "name": "1.6 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 11226, + "fields": { + "id_car_serie": 2115, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 11272, + "fields": { + "id_car_serie": 2126, + "name": "4.1 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11273, + "fields": { + "id_car_serie": 2127, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11280, + "fields": { + "id_car_serie": 2130, + "name": "4.6i MT (322 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11310, + "fields": { + "id_car_serie": 2136, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11311, + "fields": { + "id_car_serie": 2136, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11312, + "fields": { + "id_car_serie": 2137, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11313, + "fields": { + "id_car_serie": 2137, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11314, + "fields": { + "id_car_serie": 2137, + "name": "1.6 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11316, + "fields": { + "id_car_serie": 2138, + "name": "1.6 AT (83 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11317, + "fields": { + "id_car_serie": 2138, + "name": "1.6 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11318, + "fields": { + "id_car_serie": 2138, + "name": "1.6 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11319, + "fields": { + "id_car_serie": 2138, + "name": "1.6 AT (67 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11320, + "fields": { + "id_car_serie": 2138, + "name": "1.6 AT (66 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11322, + "fields": { + "id_car_serie": 2138, + "name": "1.6 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11324, + "fields": { + "id_car_serie": 2138, + "name": "1.6 MT (93 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11325, + "fields": { + "id_car_serie": 2139, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11354, + "fields": { + "id_car_serie": 2143, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11355, + "fields": { + "id_car_serie": 2143, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11357, + "fields": { + "id_car_serie": 2143, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11360, + "fields": { + "id_car_serie": 2143, + "name": "2.0 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11361, + "fields": { + "id_car_serie": 2143, + "name": "2.0 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11366, + "fields": { + "id_car_serie": 2143, + "name": "2.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11367, + "fields": { + "id_car_serie": 2143, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11410, + "fields": { + "id_car_serie": 2147, + "name": "2.0 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11415, + "fields": { + "id_car_serie": 2147, + "name": "2.1 D MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11416, + "fields": { + "id_car_serie": 2147, + "name": "2.1 Td MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11418, + "fields": { + "id_car_serie": 2147, + "name": "2.2 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11419, + "fields": { + "id_car_serie": 2147, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11421, + "fields": { + "id_car_serie": 2147, + "name": "2.5 T MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11422, + "fields": { + "id_car_serie": 2147, + "name": "2.5 T MT (182 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11430, + "fields": { + "id_car_serie": 2148, + "name": "2.1 TD MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11431, + "fields": { + "id_car_serie": 2148, + "name": "2.7 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11432, + "fields": { + "id_car_serie": 2148, + "name": "2.7 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11433, + "fields": { + "id_car_serie": 2148, + "name": "2.7 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11434, + "fields": { + "id_car_serie": 2148, + "name": "2.7 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11435, + "fields": { + "id_car_serie": 2148, + "name": "2.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11436, + "fields": { + "id_car_serie": 2148, + "name": "2.7 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11437, + "fields": { + "id_car_serie": 2148, + "name": "2.7 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11438, + "fields": { + "id_car_serie": 2148, + "name": "2.7 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11472, + "fields": { + "id_car_serie": 2154, + "name": "1.1 MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11473, + "fields": { + "id_car_serie": 2154, + "name": "1.1 MT (59 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11477, + "fields": { + "id_car_serie": 2155, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11483, + "fields": { + "id_car_serie": 2155, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11486, + "fields": { + "id_car_serie": 2155, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11495, + "fields": { + "id_car_serie": 2155, + "name": "1.7 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11496, + "fields": { + "id_car_serie": 2155, + "name": "1.7 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11498, + "fields": { + "id_car_serie": 2156, + "name": "2.0 Twin-scroll turbo MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11499, + "fields": { + "id_car_serie": 2156, + "name": "2.2 dCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11645, + "fields": { + "id_car_serie": 2181, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11657, + "fields": { + "id_car_serie": 2184, + "name": "8kw (11 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 11660, + "fields": { + "id_car_serie": 2185, + "name": "2.0 T AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11662, + "fields": { + "id_car_serie": 2185, + "name": "2.0 T MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11663, + "fields": { + "id_car_serie": 2185, + "name": "2.0 dCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11664, + "fields": { + "id_car_serie": 2185, + "name": "2.0 dCi MT (173 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11667, + "fields": { + "id_car_serie": 2185, + "name": "2.2 dCi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11669, + "fields": { + "id_car_serie": 2185, + "name": "3.5 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11670, + "fields": { + "id_car_serie": 2186, + "name": "1.2 TCe MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11671, + "fields": { + "id_car_serie": 2186, + "name": "1.6 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11672, + "fields": { + "id_car_serie": 2187, + "name": "Z.E. (88 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 11678, + "fields": { + "id_car_serie": 2190, + "name": "2.3 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11679, + "fields": { + "id_car_serie": 2190, + "name": "3.5 CVT (218 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11682, + "fields": { + "id_car_serie": 2193, + "name": "5.4 AT (326 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11689, + "fields": { + "id_car_serie": 2200, + "name": "4.6 MT (325 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11849, + "fields": { + "id_car_serie": 2223, + "name": "2.0 AT (104 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11850, + "fields": { + "id_car_serie": 2223, + "name": "2.0 MT (104 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11851, + "fields": { + "id_car_serie": 2223, + "name": "2.2 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11852, + "fields": { + "id_car_serie": 2223, + "name": "2.2 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11853, + "fields": { + "id_car_serie": 2223, + "name": "3.5 AT (142 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11854, + "fields": { + "id_car_serie": 2223, + "name": "3.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11855, + "fields": { + "id_car_serie": 2223, + "name": "3.5 MT (142 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11856, + "fields": { + "id_car_serie": 2223, + "name": "3.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11857, + "fields": { + "id_car_serie": 2224, + "name": "2.0 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11859, + "fields": { + "id_car_serie": 2224, + "name": "2.0 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11861, + "fields": { + "id_car_serie": 2224, + "name": "2.3 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11863, + "fields": { + "id_car_serie": 2224, + "name": "2.3 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11865, + "fields": { + "id_car_serie": 2224, + "name": "2.4 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11867, + "fields": { + "id_car_serie": 2224, + "name": "2.4 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11869, + "fields": { + "id_car_serie": 2224, + "name": "2.6 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11871, + "fields": { + "id_car_serie": 2224, + "name": "2.6 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11873, + "fields": { + "id_car_serie": 2224, + "name": "2.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11875, + "fields": { + "id_car_serie": 2224, + "name": "2.6 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11877, + "fields": { + "id_car_serie": 2224, + "name": "3.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11879, + "fields": { + "id_car_serie": 2224, + "name": "3.5 AT (193 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11881, + "fields": { + "id_car_serie": 2224, + "name": "3.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11883, + "fields": { + "id_car_serie": 2224, + "name": "3.5 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 11889, + "fields": { + "id_car_serie": 2225, + "name": "2.5 MT (167 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12001, + "fields": { + "id_car_serie": 2232, + "name": "4.2 AT (279 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12002, + "fields": { + "id_car_serie": 2232, + "name": "5.3 AT (304 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12003, + "fields": { + "id_car_serie": 2233, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12209, + "fields": { + "id_car_serie": 2239, + "name": "0.8 MT (38 hp)", + "arabic_name": "-", + "start_production_year": 1959, + "end_production_year": 1966 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12210, + "fields": { + "id_car_serie": 2239, + "name": "1.5 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12211, + "fields": { + "id_car_serie": 2239, + "name": "1.5 MT Estate (65 hp)", + "arabic_name": "-", + "start_production_year": 1966, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12213, + "fields": { + "id_car_serie": 2240, + "name": "0.8 MT (38 hp)", + "arabic_name": "-", + "start_production_year": 1960, + "end_production_year": 1967 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12214, + "fields": { + "id_car_serie": 2240, + "name": "1.5 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12215, + "fields": { + "id_car_serie": 2240, + "name": "1.5 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1966, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12216, + "fields": { + "id_car_serie": 2240, + "name": "1.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12228, + "fields": { + "id_car_serie": 2243, + "name": "7.0 MT (558 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12243, + "fields": { + "id_car_serie": 2254, + "name": "3.6 AT (269 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12244, + "fields": { + "id_car_serie": 2254, + "name": "3.6 AT AWD (269 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12245, + "fields": { + "id_car_serie": 2255, + "name": "3.5 AT AWD (203 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12246, + "fields": { + "id_car_serie": 2255, + "name": "3.5 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12252, + "fields": { + "id_car_serie": 2257, + "name": "2.0 MT Red Line (264 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12254, + "fields": { + "id_car_serie": 2257, + "name": "2.4 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12270, + "fields": { + "id_car_serie": 2261, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12271, + "fields": { + "id_car_serie": 2261, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12272, + "fields": { + "id_car_serie": 2262, + "name": "1.3 CVT (94 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12275, + "fields": { + "id_car_serie": 2264, + "name": "1.5 AT (108 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12276, + "fields": { + "id_car_serie": 2264, + "name": "1.5 MT (108 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12279, + "fields": { + "id_car_serie": 2266, + "name": "1.8 AT (128 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12280, + "fields": { + "id_car_serie": 2266, + "name": "1.8 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12281, + "fields": { + "id_car_serie": 2267, + "name": "0.8 MT (34 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12440, + "fields": { + "id_car_serie": 2283, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12441, + "fields": { + "id_car_serie": 2283, + "name": "1.2 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12442, + "fields": { + "id_car_serie": 2283, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12443, + "fields": { + "id_car_serie": 2283, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12444, + "fields": { + "id_car_serie": 2283, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12446, + "fields": { + "id_car_serie": 2283, + "name": "1.7 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12447, + "fields": { + "id_car_serie": 2284, + "name": "0.8 MT (34 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12448, + "fields": { + "id_car_serie": 2284, + "name": "0.9 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12451, + "fields": { + "id_car_serie": 2285, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12452, + "fields": { + "id_car_serie": 2285, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12453, + "fields": { + "id_car_serie": 2285, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12454, + "fields": { + "id_car_serie": 2285, + "name": "1.7 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12464, + "fields": { + "id_car_serie": 2287, + "name": "1.1 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12465, + "fields": { + "id_car_serie": 2288, + "name": "2.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12571, + "fields": { + "id_car_serie": 2303, + "name": "1.4 TDI DPF MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12573, + "fields": { + "id_car_serie": 2303, + "name": "1.4 TDI MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12574, + "fields": { + "id_car_serie": 2303, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12575, + "fields": { + "id_car_serie": 2303, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12639, + "fields": { + "id_car_serie": 2310, + "name": "0.7 AMT (61 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12640, + "fields": { + "id_car_serie": 2310, + "name": "0.7 AMT (82 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12641, + "fields": { + "id_car_serie": 2311, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12642, + "fields": { + "id_car_serie": 2312, + "name": "4.6 MT (355 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12671, + "fields": { + "id_car_serie": 2321, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12672, + "fields": { + "id_car_serie": 2322, + "name": "2.2 MT D (68 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12673, + "fields": { + "id_car_serie": 2322, + "name": "2.2 MT D (71 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12674, + "fields": { + "id_car_serie": 2322, + "name": "2.5 MT D (79 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12725, + "fields": { + "id_car_serie": 2330, + "name": "2.0 D T-tronic (149 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12726, + "fields": { + "id_car_serie": 2330, + "name": "2.0 D T-tronic 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12729, + "fields": { + "id_car_serie": 2330, + "name": "2.0 D MT (149 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12731, + "fields": { + "id_car_serie": 2330, + "name": "3.2 T-tronic 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12741, + "fields": { + "id_car_serie": 2332, + "name": "2.5 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12742, + "fields": { + "id_car_serie": 2332, + "name": "2.5 Turbo AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12743, + "fields": { + "id_car_serie": 2332, + "name": "2.5 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12744, + "fields": { + "id_car_serie": 2332, + "name": "2.5 Turbo MT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12745, + "fields": { + "id_car_serie": 2333, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12746, + "fields": { + "id_car_serie": 2333, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12747, + "fields": { + "id_car_serie": 2334, + "name": "1.3 AT FWD (92 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12748, + "fields": { + "id_car_serie": 2334, + "name": "1.3 AT AWD (92 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12756, + "fields": { + "id_car_serie": 2336, + "name": "2.0 CVT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12757, + "fields": { + "id_car_serie": 2336, + "name": "2.0 CVT FWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12758, + "fields": { + "id_car_serie": 2336, + "name": "2.5 CVT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12829, + "fields": { + "id_car_serie": 2345, + "name": "1.2 MT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12855, + "fields": { + "id_car_serie": 2350, + "name": "0.7 CVT (45 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12856, + "fields": { + "id_car_serie": 2350, + "name": "0.7 CVT 4WD (45 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12859, + "fields": { + "id_car_serie": 2350, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12860, + "fields": { + "id_car_serie": 2350, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12861, + "fields": { + "id_car_serie": 2351, + "name": "0.7 CVT (54 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12862, + "fields": { + "id_car_serie": 2351, + "name": "0.7 CVT AWD (54 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12863, + "fields": { + "id_car_serie": 2351, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12864, + "fields": { + "id_car_serie": 2351, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12865, + "fields": { + "id_car_serie": 2351, + "name": "0.7 MT AWD (45 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12866, + "fields": { + "id_car_serie": 2351, + "name": "0.7 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12867, + "fields": { + "id_car_serie": 2351, + "name": "0.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12868, + "fields": { + "id_car_serie": 2351, + "name": "0.7 MT AWD (54 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12879, + "fields": { + "id_car_serie": 2354, + "name": "3.3 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12880, + "fields": { + "id_car_serie": 2354, + "name": "3.3 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12881, + "fields": { + "id_car_serie": 2354, + "name": "3.3 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12883, + "fields": { + "id_car_serie": 2355, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12884, + "fields": { + "id_car_serie": 2355, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12885, + "fields": { + "id_car_serie": 2356, + "name": "1.3 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12886, + "fields": { + "id_car_serie": 2356, + "name": "1.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12887, + "fields": { + "id_car_serie": 2356, + "name": "1.4 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12888, + "fields": { + "id_car_serie": 2356, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12890, + "fields": { + "id_car_serie": 2356, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 12998, + "fields": { + "id_car_serie": 2379, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 12999, + "fields": { + "id_car_serie": 2379, + "name": "0.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13000, + "fields": { + "id_car_serie": 2379, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13001, + "fields": { + "id_car_serie": 2380, + "name": "2.4 CVT (178 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13002, + "fields": { + "id_car_serie": 2380, + "name": "2.4 4WD CVT (178 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13003, + "fields": { + "id_car_serie": 2380, + "name": "2.4 MT (178 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13030, + "fields": { + "id_car_serie": 2389, + "name": "1.2 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13032, + "fields": { + "id_car_serie": 2389, + "name": "1.2 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13048, + "fields": { + "id_car_serie": 2393, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13049, + "fields": { + "id_car_serie": 2393, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13050, + "fields": { + "id_car_serie": 2393, + "name": "2.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13070, + "fields": { + "id_car_serie": 2396, + "name": "1.6 AT 4x4 (97 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13071, + "fields": { + "id_car_serie": 2396, + "name": "1.6 MT 4x4 (97 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13072, + "fields": { + "id_car_serie": 2397, + "name": "3.6 AT AWD (252 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13074, + "fields": { + "id_car_serie": 2398, + "name": "1.4 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13075, + "fields": { + "id_car_serie": 2398, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13076, + "fields": { + "id_car_serie": 2398, + "name": "1.4 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13077, + "fields": { + "id_car_serie": 2398, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13078, + "fields": { + "id_car_serie": 2398, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13084, + "fields": { + "id_car_serie": 2401, + "name": "1.1 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13085, + "fields": { + "id_car_serie": 2401, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13086, + "fields": { + "id_car_serie": 2401, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13087, + "fields": { + "id_car_serie": 2401, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13088, + "fields": { + "id_car_serie": 2401, + "name": "1.4 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13089, + "fields": { + "id_car_serie": 2401, + "name": "1.4 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13090, + "fields": { + "id_car_serie": 2401, + "name": "1.4 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13091, + "fields": { + "id_car_serie": 2401, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13092, + "fields": { + "id_car_serie": 2401, + "name": "1.9 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13104, + "fields": { + "id_car_serie": 2404, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13105, + "fields": { + "id_car_serie": 2405, + "name": "2.2 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13106, + "fields": { + "id_car_serie": 2405, + "name": "2.2 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13107, + "fields": { + "id_car_serie": 2405, + "name": "2.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13108, + "fields": { + "id_car_serie": 2405, + "name": "2.7 MT (166 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13118, + "fields": { + "id_car_serie": 2410, + "name": "0.6 MT (33 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13121, + "fields": { + "id_car_serie": 2412, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13122, + "fields": { + "id_car_serie": 2412, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13134, + "fields": { + "id_car_serie": 2419, + "name": "AT (20 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13141, + "fields": { + "id_car_serie": 2423, + "name": "2.2 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13151, + "fields": { + "id_car_serie": 2426, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13152, + "fields": { + "id_car_serie": 2427, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13153, + "fields": { + "id_car_serie": 2427, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13154, + "fields": { + "id_car_serie": 2427, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13155, + "fields": { + "id_car_serie": 2427, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13156, + "fields": { + "id_car_serie": 2427, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13222, + "fields": { + "id_car_serie": 2442, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13223, + "fields": { + "id_car_serie": 2442, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13224, + "fields": { + "id_car_serie": 2442, + "name": "2.0 TD MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13234, + "fields": { + "id_car_serie": 2446, + "name": "1.0 CVT (72 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13237, + "fields": { + "id_car_serie": 2446, + "name": "1.3 CVT (86 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13241, + "fields": { + "id_car_serie": 2447, + "name": "2.4 CVT (167 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13242, + "fields": { + "id_car_serie": 2447, + "name": "2.4 CVT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13243, + "fields": { + "id_car_serie": 2447, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13246, + "fields": { + "id_car_serie": 2450, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13247, + "fields": { + "id_car_serie": 2450, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13248, + "fields": { + "id_car_serie": 2450, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13318, + "fields": { + "id_car_serie": 2463, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13320, + "fields": { + "id_car_serie": 2463, + "name": "1.8 CVT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13322, + "fields": { + "id_car_serie": 2463, + "name": "1.8 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13368, + "fields": { + "id_car_serie": 2472, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13369, + "fields": { + "id_car_serie": 2472, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13371, + "fields": { + "id_car_serie": 2472, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13374, + "fields": { + "id_car_serie": 2472, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13375, + "fields": { + "id_car_serie": 2472, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13387, + "fields": { + "id_car_serie": 2475, + "name": "1.3 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13388, + "fields": { + "id_car_serie": 2475, + "name": "1.3 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13389, + "fields": { + "id_car_serie": 2475, + "name": "1.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13390, + "fields": { + "id_car_serie": 2475, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13401, + "fields": { + "id_car_serie": 2479, + "name": "4.0 AT 4WD (264 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13402, + "fields": { + "id_car_serie": 2479, + "name": "4.0 AT (264 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13405, + "fields": { + "id_car_serie": 2479, + "name": "4.0 MT 4WD (264 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13410, + "fields": { + "id_car_serie": 2480, + "name": "2.7 AT (158 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13412, + "fields": { + "id_car_serie": 2480, + "name": "3.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13414, + "fields": { + "id_car_serie": 2480, + "name": "4.0 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13415, + "fields": { + "id_car_serie": 2480, + "name": "4.0 MT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13416, + "fields": { + "id_car_serie": 2481, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13417, + "fields": { + "id_car_serie": 2481, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13418, + "fields": { + "id_car_serie": 2481, + "name": "1.5 AT AWD (105 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13420, + "fields": { + "id_car_serie": 2481, + "name": "1.5 AT FWD (110 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13422, + "fields": { + "id_car_serie": 2482, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13423, + "fields": { + "id_car_serie": 2482, + "name": "2.0 AT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13424, + "fields": { + "id_car_serie": 2482, + "name": "2.0 AT AWD (145 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13425, + "fields": { + "id_car_serie": 2482, + "name": "2.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13426, + "fields": { + "id_car_serie": 2482, + "name": "2.0 AT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13427, + "fields": { + "id_car_serie": 2482, + "name": "2.2 D AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13428, + "fields": { + "id_car_serie": 2482, + "name": "2.2 D AT AWD (94 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13429, + "fields": { + "id_car_serie": 2483, + "name": "2.7 AT 8seat (145 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13430, + "fields": { + "id_car_serie": 2483, + "name": "3.0 TD AT 4WD 8seat (130 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13431, + "fields": { + "id_car_serie": 2483, + "name": "3.0 TD AT 4WD 7seat (130 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13432, + "fields": { + "id_car_serie": 2483, + "name": "3.0 TD AT 8seat (130 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13433, + "fields": { + "id_car_serie": 2483, + "name": "3.0 TD AT 7seat (130 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13481, + "fields": { + "id_car_serie": 2490, + "name": "2.0 AT 8seat (136 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13482, + "fields": { + "id_car_serie": 2490, + "name": "2.0 MT 7seat (132 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13483, + "fields": { + "id_car_serie": 2490, + "name": "2.5 D-4D AT 8seat (102 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13484, + "fields": { + "id_car_serie": 2490, + "name": "2.5 D-4D MT 7seat (102 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13485, + "fields": { + "id_car_serie": 2490, + "name": "2.7 AT 7seat (158 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13488, + "fields": { + "id_car_serie": 2492, + "name": "1.0 CVT VVT-i (68 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13489, + "fields": { + "id_car_serie": 2492, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 13494, + "fields": { + "id_car_serie": 2492, + "name": "1.4 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13544, + "fields": { + "id_car_serie": 2510, + "name": "3.5 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13551, + "fields": { + "id_car_serie": 2516, + "name": "3.9 MT SE (272 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13554, + "fields": { + "id_car_serie": 2519, + "name": "4.4 MT (323 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13555, + "fields": { + "id_car_serie": 2520, + "name": "4.0 MT (350 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13557, + "fields": { + "id_car_serie": 2520, + "name": "4.5 MT (426 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13558, + "fields": { + "id_car_serie": 2521, + "name": "4.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13559, + "fields": { + "id_car_serie": 2521, + "name": "4.3 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13560, + "fields": { + "id_car_serie": 2521, + "name": "4.5 MT (288 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13562, + "fields": { + "id_car_serie": 2521, + "name": "5.0 MT (340 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13563, + "fields": { + "id_car_serie": 2522, + "name": "4.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13564, + "fields": { + "id_car_serie": 2522, + "name": "4.3 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13565, + "fields": { + "id_car_serie": 2522, + "name": "5.0 MT (326 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13566, + "fields": { + "id_car_serie": 2522, + "name": "5.0 MT (340 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13567, + "fields": { + "id_car_serie": 2523, + "name": "2.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13568, + "fields": { + "id_car_serie": 2523, + "name": "2.9 MT (168 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13570, + "fields": { + "id_car_serie": 2524, + "name": "4.0 MT (400 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13571, + "fields": { + "id_car_serie": 2525, + "name": "3.6 MT (360 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13968, + "fields": { + "id_car_serie": 2560, + "name": "3.3 MT (124 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13969, + "fields": { + "id_car_serie": 2561, + "name": "2.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13970, + "fields": { + "id_car_serie": 2561, + "name": "2.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13971, + "fields": { + "id_car_serie": 2561, + "name": "2.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 13972, + "fields": { + "id_car_serie": 2561, + "name": "2.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14013, + "fields": { + "id_car_serie": 2570, + "name": "6.0 AT (634 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14017, + "fields": { + "id_car_serie": 2573, + "name": "2.8 MT (260 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14019, + "fields": { + "id_car_serie": 2575, + "name": "3.0 MT GT (400 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14020, + "fields": { + "id_car_serie": 2575, + "name": "3.0 MT GT (408 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14226, + "fields": { + "id_car_serie": 2591, + "name": "1.6 MT (104 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 14276, + "fields": { + "id_car_serie": 2596, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14279, + "fields": { + "id_car_serie": 2596, + "name": "1.4 16V AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14280, + "fields": { + "id_car_serie": 2596, + "name": "1.4 16V FSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14281, + "fields": { + "id_car_serie": 2596, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14282, + "fields": { + "id_car_serie": 2596, + "name": "1.4 16V MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14283, + "fields": { + "id_car_serie": 2596, + "name": "1.4 16V MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14285, + "fields": { + "id_car_serie": 2596, + "name": "1.7 SDI MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14311, + "fields": { + "id_car_serie": 2598, + "name": "1.8 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 14312, + "fields": { + "id_car_serie": 2598, + "name": "1.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 14313, + "fields": { + "id_car_serie": 2598, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 14412, + "fields": { + "id_car_serie": 2608, + "name": "3.8 62TE (197 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14413, + "fields": { + "id_car_serie": 2608, + "name": "4.0 62TE (251 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14529, + "fields": { + "id_car_serie": 2622, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14531, + "fields": { + "id_car_serie": 2622, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14532, + "fields": { + "id_car_serie": 2622, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14533, + "fields": { + "id_car_serie": 2622, + "name": "1.8 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14534, + "fields": { + "id_car_serie": 2622, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14535, + "fields": { + "id_car_serie": 2622, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14536, + "fields": { + "id_car_serie": 2622, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14537, + "fields": { + "id_car_serie": 2622, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14538, + "fields": { + "id_car_serie": 2622, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14539, + "fields": { + "id_car_serie": 2622, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14540, + "fields": { + "id_car_serie": 2622, + "name": "1.9 SDI MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14541, + "fields": { + "id_car_serie": 2622, + "name": "1.9 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14542, + "fields": { + "id_car_serie": 2622, + "name": "1.9 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14543, + "fields": { + "id_car_serie": 2622, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14544, + "fields": { + "id_car_serie": 2622, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14545, + "fields": { + "id_car_serie": 2622, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14546, + "fields": { + "id_car_serie": 2622, + "name": "2.8 VR6 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14547, + "fields": { + "id_car_serie": 2622, + "name": "2.8 VR6 MT (174 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14688, + "fields": { + "id_car_serie": 2637, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14690, + "fields": { + "id_car_serie": 2637, + "name": "1.7 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14692, + "fields": { + "id_car_serie": 2637, + "name": "1.7 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14693, + "fields": { + "id_car_serie": 2637, + "name": "1.7 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14695, + "fields": { + "id_car_serie": 2637, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14696, + "fields": { + "id_car_serie": 2637, + "name": "1.9 TDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14699, + "fields": { + "id_car_serie": 2637, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14700, + "fields": { + "id_car_serie": 2637, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14912, + "fields": { + "id_car_serie": 2657, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14914, + "fields": { + "id_car_serie": 2657, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14916, + "fields": { + "id_car_serie": 2657, + "name": "2.3 T AT T-5 (250 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14917, + "fields": { + "id_car_serie": 2657, + "name": "2.3 T MT T-5 (241 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14918, + "fields": { + "id_car_serie": 2657, + "name": "2.3 T MT (250 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14919, + "fields": { + "id_car_serie": 2657, + "name": "2.4 AT (144 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14920, + "fields": { + "id_car_serie": 2657, + "name": "2.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14921, + "fields": { + "id_car_serie": 2657, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14922, + "fields": { + "id_car_serie": 2657, + "name": "2.4 T AT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14923, + "fields": { + "id_car_serie": 2657, + "name": "2.4 T AT (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14924, + "fields": { + "id_car_serie": 2657, + "name": "2.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14926, + "fields": { + "id_car_serie": 2657, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14927, + "fields": { + "id_car_serie": 2657, + "name": "2.4 T MT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14928, + "fields": { + "id_car_serie": 2657, + "name": "2.4 T MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14929, + "fields": { + "id_car_serie": 2657, + "name": "2.5 TDI AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14930, + "fields": { + "id_car_serie": 2657, + "name": "2.5 T MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14954, + "fields": { + "id_car_serie": 2659, + "name": "2.9 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14955, + "fields": { + "id_car_serie": 2659, + "name": "2.9 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14956, + "fields": { + "id_car_serie": 2659, + "name": "2.9 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14969, + "fields": { + "id_car_serie": 2661, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14970, + "fields": { + "id_car_serie": 2661, + "name": "1.6 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14971, + "fields": { + "id_car_serie": 2661, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14974, + "fields": { + "id_car_serie": 2661, + "name": "2.0 D MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14977, + "fields": { + "id_car_serie": 2661, + "name": "2.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14978, + "fields": { + "id_car_serie": 2661, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 14982, + "fields": { + "id_car_serie": 2661, + "name": "2.5 T5 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15089, + "fields": { + "id_car_serie": 2676, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 15097, + "fields": { + "id_car_serie": 2680, + "name": "2.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 15101, + "fields": { + "id_car_serie": 2682, + "name": "2.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 15103, + "fields": { + "id_car_serie": 2684, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15104, + "fields": { + "id_car_serie": 2684, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15145, + "fields": { + "id_car_serie": 2694, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15146, + "fields": { + "id_car_serie": 2694, + "name": "1.7 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15149, + "fields": { + "id_car_serie": 2696, + "name": "1.8 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15150, + "fields": { + "id_car_serie": 2696, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15167, + "fields": { + "id_car_serie": 2705, + "name": "21051 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15170, + "fields": { + "id_car_serie": 2705, + "name": "2105 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15172, + "fields": { + "id_car_serie": 2705, + "name": "21053 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15174, + "fields": { + "id_car_serie": 2705, + "name": "21055D MT (53 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15176, + "fields": { + "id_car_serie": 2705, + "name": "21054-30 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15182, + "fields": { + "id_car_serie": 2707, + "name": "21079 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15183, + "fields": { + "id_car_serie": 2707, + "name": "21072 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15185, + "fields": { + "id_car_serie": 2707, + "name": "21074i MT (73 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15187, + "fields": { + "id_car_serie": 2707, + "name": "21074 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15204, + "fields": { + "id_car_serie": 2712, + "name": "21100 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15205, + "fields": { + "id_car_serie": 2712, + "name": "21102 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15206, + "fields": { + "id_car_serie": 2712, + "name": "21103M MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15207, + "fields": { + "id_car_serie": 2712, + "name": "21101 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15277, + "fields": { + "id_car_serie": 2736, + "name": "5.5 AT (195 hp)", + "arabic_name": "-", + "start_production_year": 1959, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15279, + "fields": { + "id_car_serie": 2738, + "name": "21L 2.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1962, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15537, + "fields": { + "id_car_serie": 2436, + "name": "3.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15544, + "fields": { + "id_car_serie": 2598, + "name": "2.0 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 15545, + "fields": { + "id_car_serie": 2608, + "name": "3.6 62TE (283 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15547, + "fields": { + "id_car_serie": 2839, + "name": "6.2 MT (437 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 15548, + "fields": { + "id_car_serie": 2840, + "name": "1.7 AT (127 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15549, + "fields": { + "id_car_serie": 2840, + "name": "1.7 MT (127 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15550, + "fields": { + "id_car_serie": 2841, + "name": "1.8 AT (142 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15551, + "fields": { + "id_car_serie": 2841, + "name": "1.8 MT (142 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15552, + "fields": { + "id_car_serie": 2841, + "name": "1.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15553, + "fields": { + "id_car_serie": 2842, + "name": "1.8 AT (142 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15554, + "fields": { + "id_car_serie": 2842, + "name": "1.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15555, + "fields": { + "id_car_serie": 2842, + "name": "1.8 MT (142 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15556, + "fields": { + "id_car_serie": 2842, + "name": "1.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15557, + "fields": { + "id_car_serie": 2843, + "name": "3.2 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15558, + "fields": { + "id_car_serie": 2843, + "name": "3.2 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15559, + "fields": { + "id_car_serie": 2844, + "name": "3.2 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15560, + "fields": { + "id_car_serie": 2844, + "name": "3.2 AT (230 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15561, + "fields": { + "id_car_serie": 2844, + "name": "3.2 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15562, + "fields": { + "id_car_serie": 2844, + "name": "3.2 MT (230 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15563, + "fields": { + "id_car_serie": 2845, + "name": "3.5 AT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15565, + "fields": { + "id_car_serie": 2846, + "name": "3.5 AT AWD (273 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 15567, + "fields": { + "id_car_serie": 2847, + "name": "3.5 AT (294 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15570, + "fields": { + "id_car_serie": 2848, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15571, + "fields": { + "id_car_serie": 2848, + "name": "3.7 AT (305 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15573, + "fields": { + "id_car_serie": 2849, + "name": "2.4 AT (201 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 15574, + "fields": { + "id_car_serie": 2849, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 15575, + "fields": { + "id_car_serie": 2850, + "name": "2.4 AT (201 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 15578, + "fields": { + "id_car_serie": 2851, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15579, + "fields": { + "id_car_serie": 2851, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15588, + "fields": { + "id_car_serie": 2851, + "name": "2.0 SS (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15589, + "fields": { + "id_car_serie": 2851, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15591, + "fields": { + "id_car_serie": 2852, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15610, + "fields": { + "id_car_serie": 2853, + "name": "1.9 JTD MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15658, + "fields": { + "id_car_serie": 2854, + "name": "3.2 MT (250 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15659, + "fields": { + "id_car_serie": 2855, + "name": "1.8 MPI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15661, + "fields": { + "id_car_serie": 2855, + "name": "1.9 JTS MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15662, + "fields": { + "id_car_serie": 2855, + "name": "1.9 JTDM Q-Tronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15663, + "fields": { + "id_car_serie": 2855, + "name": "1.9 JTDM ECO MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15664, + "fields": { + "id_car_serie": 2855, + "name": "1.9 JTDM MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15665, + "fields": { + "id_car_serie": 2855, + "name": "1.9 JTDM ECO MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15666, + "fields": { + "id_car_serie": 2855, + "name": "1.9 JTDM MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15667, + "fields": { + "id_car_serie": 2855, + "name": "2.0 JTDM ECO MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15668, + "fields": { + "id_car_serie": 2855, + "name": "2.0 JTDM MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15669, + "fields": { + "id_car_serie": 2855, + "name": "2.0 JTDM ECO MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15670, + "fields": { + "id_car_serie": 2855, + "name": "2.2 JTS Selespeed (185 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15671, + "fields": { + "id_car_serie": 2855, + "name": "2.2 JTS MT (185 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15672, + "fields": { + "id_car_serie": 2855, + "name": "2.4 JTDM Q-Tronic (200 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15674, + "fields": { + "id_car_serie": 2855, + "name": "2.4 JTDM MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15675, + "fields": { + "id_car_serie": 2855, + "name": "2.4 JTDM MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15676, + "fields": { + "id_car_serie": 2855, + "name": "2.4 JTDM Q4 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15677, + "fields": { + "id_car_serie": 2855, + "name": "3.2 JTS Q-tronic Q4 (260 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15678, + "fields": { + "id_car_serie": 2855, + "name": "3.2 JTS MT (260 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15679, + "fields": { + "id_car_serie": 2855, + "name": "3.2 JTS Q4 MT (260 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15680, + "fields": { + "id_car_serie": 2856, + "name": "1.8 MPI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15682, + "fields": { + "id_car_serie": 2856, + "name": "1.9 JTS MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15683, + "fields": { + "id_car_serie": 2856, + "name": "1.9 JTDM ECO MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15684, + "fields": { + "id_car_serie": 2856, + "name": "1.9 JTDM Q-Tronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15685, + "fields": { + "id_car_serie": 2856, + "name": "1.9 JTDM MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15686, + "fields": { + "id_car_serie": 2856, + "name": "1.9 JTDM ECO MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15687, + "fields": { + "id_car_serie": 2856, + "name": "1.9 JTDM MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15688, + "fields": { + "id_car_serie": 2856, + "name": "1.9 JTDM MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15689, + "fields": { + "id_car_serie": 2856, + "name": "2.0 JTDM MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15690, + "fields": { + "id_car_serie": 2856, + "name": "2.0 JTDM ECO MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15691, + "fields": { + "id_car_serie": 2856, + "name": "2.0 JTDM ECO MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15692, + "fields": { + "id_car_serie": 2856, + "name": "2.2 JTS Selespeed (185 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15693, + "fields": { + "id_car_serie": 2856, + "name": "2.2 JTS MT (185 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15694, + "fields": { + "id_car_serie": 2856, + "name": "2.4 JTDM Q-Tronic (200 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15696, + "fields": { + "id_car_serie": 2856, + "name": "2.4 JTDM MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15697, + "fields": { + "id_car_serie": 2856, + "name": "2.4 JTDM Q4 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15698, + "fields": { + "id_car_serie": 2856, + "name": "2.4 JTDM MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15699, + "fields": { + "id_car_serie": 2856, + "name": "3.2 JTS Q-tronic Q4 (260 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15700, + "fields": { + "id_car_serie": 2856, + "name": "3.2 JTS Q4 MT (260 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15701, + "fields": { + "id_car_serie": 2856, + "name": "3.2 JTS MT (260 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15702, + "fields": { + "id_car_serie": 2857, + "name": "2.4 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15703, + "fields": { + "id_car_serie": 2857, + "name": "2.4 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15704, + "fields": { + "id_car_serie": 2857, + "name": "2.4 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15705, + "fields": { + "id_car_serie": 2857, + "name": "2.4 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15706, + "fields": { + "id_car_serie": 2857, + "name": "2.4 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15707, + "fields": { + "id_car_serie": 2857, + "name": "2.4 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15708, + "fields": { + "id_car_serie": 2857, + "name": "3.2 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15709, + "fields": { + "id_car_serie": 2857, + "name": "3.2 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15710, + "fields": { + "id_car_serie": 2858, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15711, + "fields": { + "id_car_serie": 2858, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15712, + "fields": { + "id_car_serie": 2858, + "name": "1.4 MT AWD (90 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15714, + "fields": { + "id_car_serie": 2858, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15715, + "fields": { + "id_car_serie": 2858, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15717, + "fields": { + "id_car_serie": 2858, + "name": "1.7 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15718, + "fields": { + "id_car_serie": 2858, + "name": "1.7 MT AWD (107 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15721, + "fields": { + "id_car_serie": 2858, + "name": "1.7 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15722, + "fields": { + "id_car_serie": 2858, + "name": "1.7 MT AWD (132 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15725, + "fields": { + "id_car_serie": 2858, + "name": "1.8 TD MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15726, + "fields": { + "id_car_serie": 2859, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15727, + "fields": { + "id_car_serie": 2859, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15728, + "fields": { + "id_car_serie": 2859, + "name": "1.4 MT AWD (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15729, + "fields": { + "id_car_serie": 2859, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15731, + "fields": { + "id_car_serie": 2859, + "name": "1.7 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15732, + "fields": { + "id_car_serie": 2859, + "name": "1.7 MT AWD (107 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15735, + "fields": { + "id_car_serie": 2859, + "name": "1.7 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15736, + "fields": { + "id_car_serie": 2859, + "name": "1.7 MT AWD (132 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15738, + "fields": { + "id_car_serie": 2859, + "name": "1.8 TD MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15739, + "fields": { + "id_car_serie": 2860, + "name": "4.7 MT (444 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15740, + "fields": { + "id_car_serie": 2861, + "name": "4.7 MT (444 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15741, + "fields": { + "id_car_serie": 2862, + "name": "1.2 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15742, + "fields": { + "id_car_serie": 2862, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15743, + "fields": { + "id_car_serie": 2862, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15746, + "fields": { + "id_car_serie": 2863, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15747, + "fields": { + "id_car_serie": 2863, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15748, + "fields": { + "id_car_serie": 2863, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15749, + "fields": { + "id_car_serie": 2864, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15752, + "fields": { + "id_car_serie": 2864, + "name": "1.2 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15753, + "fields": { + "id_car_serie": 2864, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15754, + "fields": { + "id_car_serie": 2864, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15757, + "fields": { + "id_car_serie": 2864, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15758, + "fields": { + "id_car_serie": 2864, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15759, + "fields": { + "id_car_serie": 2864, + "name": "1.5 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15760, + "fields": { + "id_car_serie": 2864, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15761, + "fields": { + "id_car_serie": 2865, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15762, + "fields": { + "id_car_serie": 2865, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15763, + "fields": { + "id_car_serie": 2865, + "name": "1.8 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15764, + "fields": { + "id_car_serie": 2865, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15765, + "fields": { + "id_car_serie": 2865, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15768, + "fields": { + "id_car_serie": 2865, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15769, + "fields": { + "id_car_serie": 2865, + "name": "2.5 MT (158 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15770, + "fields": { + "id_car_serie": 2866, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15771, + "fields": { + "id_car_serie": 2866, + "name": "1.8 AT (121 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15772, + "fields": { + "id_car_serie": 2866, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15773, + "fields": { + "id_car_serie": 2866, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15774, + "fields": { + "id_car_serie": 2866, + "name": "2.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15775, + "fields": { + "id_car_serie": 2866, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15776, + "fields": { + "id_car_serie": 2866, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15777, + "fields": { + "id_car_serie": 2866, + "name": "2.0 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15778, + "fields": { + "id_car_serie": 2866, + "name": "2.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15790, + "fields": { + "id_car_serie": 2868, + "name": "2.2 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15792, + "fields": { + "id_car_serie": 2868, + "name": "2.4 TD MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15794, + "fields": { + "id_car_serie": 2868, + "name": "3.2 AT 4x4 (260 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15795, + "fields": { + "id_car_serie": 2868, + "name": "3.2 MT 4X4 (260 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15797, + "fields": { + "id_car_serie": 2869, + "name": "1.4 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15807, + "fields": { + "id_car_serie": 2870, + "name": "1.4 MT 4WD (56 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15808, + "fields": { + "id_car_serie": 2870, + "name": "1.9 D 4WD MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15809, + "fields": { + "id_car_serie": 2870, + "name": "1.9 D 4WD MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15812, + "fields": { + "id_car_serie": 2872, + "name": "1.8 MT (77 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15813, + "fields": { + "id_car_serie": 2872, + "name": "2.2 D MT (61 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15814, + "fields": { + "id_car_serie": 2873, + "name": "5.9 AT (420 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15815, + "fields": { + "id_car_serie": 2873, + "name": "5.9 MT (420 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15816, + "fields": { + "id_car_serie": 2874, + "name": "5.9 AT (420 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15817, + "fields": { + "id_car_serie": 2874, + "name": "5.9 MT (420 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15818, + "fields": { + "id_car_serie": 2875, + "name": "5.9 V12 AT (477 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15820, + "fields": { + "id_car_serie": 2875, + "name": "5.9 V12 MT (477 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15828, + "fields": { + "id_car_serie": 3045, + "name": "2.8 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15829, + "fields": { + "id_car_serie": 3045, + "name": "2.8 AT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15830, + "fields": { + "id_car_serie": 3045, + "name": "2.8 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15831, + "fields": { + "id_car_serie": 3045, + "name": "2.8 MT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15832, + "fields": { + "id_car_serie": 3045, + "name": "3.5 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15833, + "fields": { + "id_car_serie": 3045, + "name": "3.5 AT AWD (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15834, + "fields": { + "id_car_serie": 3045, + "name": "3.5 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15835, + "fields": { + "id_car_serie": 3045, + "name": "3.5 MT AWD (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15836, + "fields": { + "id_car_serie": 3045, + "name": "3.7 AT (242 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15837, + "fields": { + "id_car_serie": 3045, + "name": "3.7 AT AWD (242 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15838, + "fields": { + "id_car_serie": 3045, + "name": "3.7 MT (242 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15839, + "fields": { + "id_car_serie": 3045, + "name": "3.7 MT AWD (242 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15840, + "fields": { + "id_car_serie": 3045, + "name": "5.3 AT (300 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15844, + "fields": { + "id_car_serie": 3046, + "name": "2.8 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15845, + "fields": { + "id_car_serie": 3046, + "name": "2.8 AT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15846, + "fields": { + "id_car_serie": 3046, + "name": "2.8 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15847, + "fields": { + "id_car_serie": 3046, + "name": "2.8 MT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15848, + "fields": { + "id_car_serie": 3046, + "name": "3.5 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15849, + "fields": { + "id_car_serie": 3046, + "name": "3.5 AT AWD (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15850, + "fields": { + "id_car_serie": 3046, + "name": "3.5 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15851, + "fields": { + "id_car_serie": 3046, + "name": "3.5 MT AWD (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15852, + "fields": { + "id_car_serie": 3046, + "name": "3.7 AT (242 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15853, + "fields": { + "id_car_serie": 3046, + "name": "3.7 AT AWD (242 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15854, + "fields": { + "id_car_serie": 3046, + "name": "3.7 MT (242 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15855, + "fields": { + "id_car_serie": 3046, + "name": "3.7 MT AWD (242 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15860, + "fields": { + "id_car_serie": 3047, + "name": "1.0 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15861, + "fields": { + "id_car_serie": 3047, + "name": "1.0 Flexpower MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15868, + "fields": { + "id_car_serie": 3049, + "name": "1.0 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15869, + "fields": { + "id_car_serie": 3049, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15870, + "fields": { + "id_car_serie": 3049, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15871, + "fields": { + "id_car_serie": 3049, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15872, + "fields": { + "id_car_serie": 3050, + "name": "1.0 Flexpower MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15876, + "fields": { + "id_car_serie": 3051, + "name": "6.2 MT (466 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15877, + "fields": { + "id_car_serie": 3052, + "name": "6.2 AT (659 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15879, + "fields": { + "id_car_serie": 3053, + "name": "1.4 Turbo AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15880, + "fields": { + "id_car_serie": 3053, + "name": "1.4 Turbo MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15881, + "fields": { + "id_car_serie": 3053, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15882, + "fields": { + "id_car_serie": 3053, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15883, + "fields": { + "id_car_serie": 3053, + "name": "1.7 TD MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15884, + "fields": { + "id_car_serie": 3053, + "name": "1.8 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15885, + "fields": { + "id_car_serie": 3053, + "name": "1.8 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15886, + "fields": { + "id_car_serie": 3053, + "name": "2.0 TD AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15887, + "fields": { + "id_car_serie": 3053, + "name": "2.0 TD MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15888, + "fields": { + "id_car_serie": 3054, + "name": "1.4 Turbo AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15889, + "fields": { + "id_car_serie": 3054, + "name": "1.4 Turbo MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15890, + "fields": { + "id_car_serie": 3054, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15891, + "fields": { + "id_car_serie": 3054, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15892, + "fields": { + "id_car_serie": 3054, + "name": "1.7 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15893, + "fields": { + "id_car_serie": 3054, + "name": "1.7 TD MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15894, + "fields": { + "id_car_serie": 3054, + "name": "1.8 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15895, + "fields": { + "id_car_serie": 3054, + "name": "1.8 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15896, + "fields": { + "id_car_serie": 3054, + "name": "2.0 TD AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15897, + "fields": { + "id_car_serie": 3054, + "name": "2.0 TD MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15898, + "fields": { + "id_car_serie": 3055, + "name": "1.4 Turbo AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15899, + "fields": { + "id_car_serie": 3055, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15900, + "fields": { + "id_car_serie": 3055, + "name": "1.4 Turbo MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15901, + "fields": { + "id_car_serie": 3055, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15902, + "fields": { + "id_car_serie": 3055, + "name": "1.7 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15903, + "fields": { + "id_car_serie": 3055, + "name": "1.7 TD MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15904, + "fields": { + "id_car_serie": 3055, + "name": "1.8 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15905, + "fields": { + "id_car_serie": 3055, + "name": "1.8 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15906, + "fields": { + "id_car_serie": 3055, + "name": "2.0 TD AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15907, + "fields": { + "id_car_serie": 3055, + "name": "2.0 TD MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15908, + "fields": { + "id_car_serie": 3056, + "name": "2.4 Ecotec AT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15909, + "fields": { + "id_car_serie": 3056, + "name": "2.4 Ecotec AT (182 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15910, + "fields": { + "id_car_serie": 3056, + "name": "3.0 AT (264 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15911, + "fields": { + "id_car_serie": 3056, + "name": "3.0 AT 4WD (264 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15912, + "fields": { + "id_car_serie": 3056, + "name": "3.6 AT (301 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15913, + "fields": { + "id_car_serie": 3056, + "name": "3.6 AT 4WD (301 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15914, + "fields": { + "id_car_serie": 3057, + "name": "4.3 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 15919, + "fields": { + "id_car_serie": 3058, + "name": "3.5 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15922, + "fields": { + "id_car_serie": 3059, + "name": "1.2 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15923, + "fields": { + "id_car_serie": 3059, + "name": "1.4 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15924, + "fields": { + "id_car_serie": 3059, + "name": "1.4 LPG MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15925, + "fields": { + "id_car_serie": 3059, + "name": "1.4 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15926, + "fields": { + "id_car_serie": 3060, + "name": "1.2 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15927, + "fields": { + "id_car_serie": 3060, + "name": "1.4 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15928, + "fields": { + "id_car_serie": 3060, + "name": "1.4 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15929, + "fields": { + "id_car_serie": 3061, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15930, + "fields": { + "id_car_serie": 3061, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15931, + "fields": { + "id_car_serie": 3061, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15932, + "fields": { + "id_car_serie": 3061, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15934, + "fields": { + "id_car_serie": 3062, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15935, + "fields": { + "id_car_serie": 3062, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15936, + "fields": { + "id_car_serie": 3062, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15937, + "fields": { + "id_car_serie": 3062, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15938, + "fields": { + "id_car_serie": 3062, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15940, + "fields": { + "id_car_serie": 3063, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15945, + "fields": { + "id_car_serie": 3065, + "name": "1.3 AT (79 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15946, + "fields": { + "id_car_serie": 3065, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15947, + "fields": { + "id_car_serie": 3066, + "name": "1.0 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15948, + "fields": { + "id_car_serie": 3066, + "name": "1.3 AT (79 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15949, + "fields": { + "id_car_serie": 3066, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15950, + "fields": { + "id_car_serie": 3067, + "name": "3.4 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15952, + "fields": { + "id_car_serie": 3067, + "name": "3.8 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15953, + "fields": { + "id_car_serie": 3067, + "name": "3.8 Supercharged AT H.D. (240 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15955, + "fields": { + "id_car_serie": 3068, + "name": "1.7 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 15956, + "fields": { + "id_car_serie": 3069, + "name": "1.4 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15957, + "fields": { + "id_car_serie": 3069, + "name": "1.6 LPG MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15958, + "fields": { + "id_car_serie": 3069, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15959, + "fields": { + "id_car_serie": 3069, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15960, + "fields": { + "id_car_serie": 3069, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15963, + "fields": { + "id_car_serie": 3070, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15964, + "fields": { + "id_car_serie": 3070, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15965, + "fields": { + "id_car_serie": 3070, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15966, + "fields": { + "id_car_serie": 3071, + "name": "3.8 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15967, + "fields": { + "id_car_serie": 3071, + "name": "3.8 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15968, + "fields": { + "id_car_serie": 3072, + "name": "4.3 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15969, + "fields": { + "id_car_serie": 3072, + "name": "4.3 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15970, + "fields": { + "id_car_serie": 3072, + "name": "4.3 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15971, + "fields": { + "id_car_serie": 3072, + "name": "4.3 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15972, + "fields": { + "id_car_serie": 3073, + "name": "4.3 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15973, + "fields": { + "id_car_serie": 3073, + "name": "4.3 AT 4WD LWB (190 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15974, + "fields": { + "id_car_serie": 3073, + "name": "4.3 MT 4WD LWB (190 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15975, + "fields": { + "id_car_serie": 3073, + "name": "4.3 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15976, + "fields": { + "id_car_serie": 3074, + "name": "4.3 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15980, + "fields": { + "id_car_serie": 3075, + "name": "1.4 AT (138 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 15981, + "fields": { + "id_car_serie": 3075, + "name": "1.4 MT (138 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 15982, + "fields": { + "id_car_serie": 3075, + "name": "1.8 AT (138 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 15983, + "fields": { + "id_car_serie": 3075, + "name": "1.8 MT (138 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 15985, + "fields": { + "id_car_serie": 3076, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 15988, + "fields": { + "id_car_serie": 3077, + "name": "1.0 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15989, + "fields": { + "id_car_serie": 3077, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15990, + "fields": { + "id_car_serie": 3077, + "name": "1.2 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15991, + "fields": { + "id_car_serie": 3077, + "name": "1.2 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 15994, + "fields": { + "id_car_serie": 3079, + "name": "5.3 Ecotec Hydra-Matic AWD (355 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16008, + "fields": { + "id_car_serie": 3081, + "name": "2.8 D AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16009, + "fields": { + "id_car_serie": 3081, + "name": "2.8 D MT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16019, + "fields": { + "id_car_serie": 3085, + "name": "2.7 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16020, + "fields": { + "id_car_serie": 3085, + "name": "3.2 AT (228 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16021, + "fields": { + "id_car_serie": 3085, + "name": "3.5 AT (234 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16022, + "fields": { + "id_car_serie": 3085, + "name": "3.5 AT Limited (252 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16024, + "fields": { + "id_car_serie": 3086, + "name": "3.2 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16025, + "fields": { + "id_car_serie": 3086, + "name": "3.2 AT SRT-6 (335 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16026, + "fields": { + "id_car_serie": 3086, + "name": "3.2 MT (215 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16027, + "fields": { + "id_car_serie": 3087, + "name": "3.2 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16028, + "fields": { + "id_car_serie": 3087, + "name": "3.2 AT SRT-6 (335 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16029, + "fields": { + "id_car_serie": 3087, + "name": "3.2 MT (215 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16030, + "fields": { + "id_car_serie": 3088, + "name": "3.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16031, + "fields": { + "id_car_serie": 3088, + "name": "3.8 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16032, + "fields": { + "id_car_serie": 3089, + "name": "2.7 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16033, + "fields": { + "id_car_serie": 3089, + "name": "3.2 AT (225 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16034, + "fields": { + "id_car_serie": 3089, + "name": "3.5 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16037, + "fields": { + "id_car_serie": 3090, + "name": "2.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16038, + "fields": { + "id_car_serie": 3090, + "name": "2.5 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16039, + "fields": { + "id_car_serie": 3090, + "name": "2.5 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16040, + "fields": { + "id_car_serie": 3090, + "name": "3.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16041, + "fields": { + "id_car_serie": 3090, + "name": "3.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16042, + "fields": { + "id_car_serie": 3090, + "name": "3.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16043, + "fields": { + "id_car_serie": 3090, + "name": "3.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16046, + "fields": { + "id_car_serie": 3091, + "name": "2.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16047, + "fields": { + "id_car_serie": 3091, + "name": "2.5 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16050, + "fields": { + "id_car_serie": 3091, + "name": "2.5 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16051, + "fields": { + "id_car_serie": 3091, + "name": "3.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16052, + "fields": { + "id_car_serie": 3091, + "name": "3.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16053, + "fields": { + "id_car_serie": 3091, + "name": "3.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16054, + "fields": { + "id_car_serie": 3091, + "name": "3.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16055, + "fields": { + "id_car_serie": 3092, + "name": "2.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16056, + "fields": { + "id_car_serie": 3092, + "name": "2.5 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16058, + "fields": { + "id_car_serie": 3092, + "name": "2.5 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16060, + "fields": { + "id_car_serie": 3092, + "name": "3.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16062, + "fields": { + "id_car_serie": 3093, + "name": "3.5 AT (257 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16063, + "fields": { + "id_car_serie": 3094, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16065, + "fields": { + "id_car_serie": 3094, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16066, + "fields": { + "id_car_serie": 3094, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16067, + "fields": { + "id_car_serie": 3095, + "name": "3.5 AT (214 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16069, + "fields": { + "id_car_serie": 3096, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16070, + "fields": { + "id_car_serie": 3096, + "name": "2.4 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16072, + "fields": { + "id_car_serie": 3096, + "name": "2.4 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16073, + "fields": { + "id_car_serie": 3096, + "name": "2.4 MT GT (223 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16074, + "fields": { + "id_car_serie": 3097, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16085, + "fields": { + "id_car_serie": 3098, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16086, + "fields": { + "id_car_serie": 3098, + "name": "2.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16089, + "fields": { + "id_car_serie": 3098, + "name": "2.4 AT (172 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16090, + "fields": { + "id_car_serie": 3098, + "name": "2.4 MT (172 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16091, + "fields": { + "id_car_serie": 3098, + "name": "2.7 AT (188 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16093, + "fields": { + "id_car_serie": 3098, + "name": "3.5 AT (235 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16095, + "fields": { + "id_car_serie": 3099, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16096, + "fields": { + "id_car_serie": 3099, + "name": "2.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16099, + "fields": { + "id_car_serie": 3099, + "name": "2.4 AT (172 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16101, + "fields": { + "id_car_serie": 3099, + "name": "2.7 AT (188 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16102, + "fields": { + "id_car_serie": 3099, + "name": "2.7 MT (188 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16103, + "fields": { + "id_car_serie": 3099, + "name": "3.5 AT (235 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16105, + "fields": { + "id_car_serie": 3100, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16106, + "fields": { + "id_car_serie": 3100, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16107, + "fields": { + "id_car_serie": 3100, + "name": "2.5 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16108, + "fields": { + "id_car_serie": 3101, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16109, + "fields": { + "id_car_serie": 3101, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16110, + "fields": { + "id_car_serie": 3101, + "name": "2.5 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16111, + "fields": { + "id_car_serie": 3102, + "name": "3.3 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16113, + "fields": { + "id_car_serie": 3102, + "name": "3.8 AT (197 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16114, + "fields": { + "id_car_serie": 3102, + "name": "4.0 AT (251 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16115, + "fields": { + "id_car_serie": 3103, + "name": "8.0 MT (455 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16116, + "fields": { + "id_car_serie": 3104, + "name": "8.0 MT (394 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16117, + "fields": { + "id_car_serie": 3105, + "name": "3.6 AT (283 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16118, + "fields": { + "id_car_serie": 3106, + "name": "0.6 MT (22 hp)", + "arabic_name": "-", + "start_production_year": 1961, + "end_production_year": 1969 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16119, + "fields": { + "id_car_serie": 3106, + "name": "0.6 MT (35 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16120, + "fields": { + "id_car_serie": 3106, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16121, + "fields": { + "id_car_serie": 3107, + "name": "0.6 MT (22 hp)", + "arabic_name": "-", + "start_production_year": 1961, + "end_production_year": 1969 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16122, + "fields": { + "id_car_serie": 3107, + "name": "0.6 MT (35 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16123, + "fields": { + "id_car_serie": 3107, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16124, + "fields": { + "id_car_serie": 3108, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16125, + "fields": { + "id_car_serie": 3108, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16128, + "fields": { + "id_car_serie": 3109, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16131, + "fields": { + "id_car_serie": 3109, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16132, + "fields": { + "id_car_serie": 3109, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16133, + "fields": { + "id_car_serie": 3109, + "name": "1.4 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16135, + "fields": { + "id_car_serie": 3109, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16136, + "fields": { + "id_car_serie": 3109, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16137, + "fields": { + "id_car_serie": 3109, + "name": "1.4 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16138, + "fields": { + "id_car_serie": 3109, + "name": "1.4 MT (52 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16139, + "fields": { + "id_car_serie": 3109, + "name": "1.5 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16140, + "fields": { + "id_car_serie": 3110, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16141, + "fields": { + "id_car_serie": 3110, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16142, + "fields": { + "id_car_serie": 3110, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16143, + "fields": { + "id_car_serie": 3110, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16144, + "fields": { + "id_car_serie": 3110, + "name": "1.6 HDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16145, + "fields": { + "id_car_serie": 3110, + "name": "1.6 HDi MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16157, + "fields": { + "id_car_serie": 3111, + "name": "1.9 GTi MT (158 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16159, + "fields": { + "id_car_serie": 3111, + "name": "1.9 GTi MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16160, + "fields": { + "id_car_serie": 3111, + "name": "1.9 GTi MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16179, + "fields": { + "id_car_serie": 3111, + "name": "1.8 TRD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16181, + "fields": { + "id_car_serie": 3111, + "name": "1.9 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16182, + "fields": { + "id_car_serie": 3111, + "name": "1.9 MT 4X4 (107 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16199, + "fields": { + "id_car_serie": 3115, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16200, + "fields": { + "id_car_serie": 3115, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16201, + "fields": { + "id_car_serie": 3115, + "name": "1.4 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16202, + "fields": { + "id_car_serie": 3115, + "name": "1.4 HDi AMT (68 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16203, + "fields": { + "id_car_serie": 3115, + "name": "1.4 HDi MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16204, + "fields": { + "id_car_serie": 3115, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16205, + "fields": { + "id_car_serie": 3115, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16206, + "fields": { + "id_car_serie": 3115, + "name": "1.6 HDi MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16207, + "fields": { + "id_car_serie": 3115, + "name": "1.6 HDi MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16208, + "fields": { + "id_car_serie": 3116, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16209, + "fields": { + "id_car_serie": 3116, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16210, + "fields": { + "id_car_serie": 3116, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16213, + "fields": { + "id_car_serie": 3117, + "name": "1.6 VTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16214, + "fields": { + "id_car_serie": 3117, + "name": "1.6 VTi MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16215, + "fields": { + "id_car_serie": 3117, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16217, + "fields": { + "id_car_serie": 3118, + "name": "1.6 VTi AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16220, + "fields": { + "id_car_serie": 3118, + "name": "1.6 VTi MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16221, + "fields": { + "id_car_serie": 3118, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16222, + "fields": { + "id_car_serie": 3118, + "name": "1.6 HDi MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16225, + "fields": { + "id_car_serie": 3119, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16226, + "fields": { + "id_car_serie": 3119, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16227, + "fields": { + "id_car_serie": 3119, + "name": "1.6 THP MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16228, + "fields": { + "id_car_serie": 3119, + "name": "1.6 e-HDi ETG (115 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16229, + "fields": { + "id_car_serie": 3119, + "name": "1.6 HDi ETG (92 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16230, + "fields": { + "id_car_serie": 3119, + "name": "1.6 e-HDi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16231, + "fields": { + "id_car_serie": 3119, + "name": "1.6 HDi MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16233, + "fields": { + "id_car_serie": 3120, + "name": "1.6 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16234, + "fields": { + "id_car_serie": 3120, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16235, + "fields": { + "id_car_serie": 3120, + "name": "1.6 THP MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16236, + "fields": { + "id_car_serie": 3120, + "name": "1.6 HDi AMT (109 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16237, + "fields": { + "id_car_serie": 3120, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16238, + "fields": { + "id_car_serie": 3120, + "name": "1.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16239, + "fields": { + "id_car_serie": 3120, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16241, + "fields": { + "id_car_serie": 3120, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16243, + "fields": { + "id_car_serie": 3120, + "name": "2.0 Hdi AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16244, + "fields": { + "id_car_serie": 3120, + "name": "2.0 Hdi AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16245, + "fields": { + "id_car_serie": 3120, + "name": "2.0 Hdi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16246, + "fields": { + "id_car_serie": 3120, + "name": "2.0 Hdi MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16247, + "fields": { + "id_car_serie": 3120, + "name": "2.2 Hdi T AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16248, + "fields": { + "id_car_serie": 3120, + "name": "2.2 HDi MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16249, + "fields": { + "id_car_serie": 3120, + "name": "2.7 HDi AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16250, + "fields": { + "id_car_serie": 3120, + "name": "2.9 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16251, + "fields": { + "id_car_serie": 3120, + "name": "3.0 Hdi AT (241 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16252, + "fields": { + "id_car_serie": 3121, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16262, + "fields": { + "id_car_serie": 3121, + "name": "2.2 HDi T AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16282, + "fields": { + "id_car_serie": 3123, + "name": "2.5 TRi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16286, + "fields": { + "id_car_serie": 3123, + "name": "2.5 D Turbo MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16287, + "fields": { + "id_car_serie": 3123, + "name": "2.5 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16289, + "fields": { + "id_car_serie": 3124, + "name": "2.5 TRi AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16290, + "fields": { + "id_car_serie": 3124, + "name": "2.5 GTi MT (123 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16291, + "fields": { + "id_car_serie": 3124, + "name": "2.5 GTi Turbo MT (168 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16293, + "fields": { + "id_car_serie": 3124, + "name": "2.5 D Turbo MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16294, + "fields": { + "id_car_serie": 3124, + "name": "2.5 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16295, + "fields": { + "id_car_serie": 3125, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16296, + "fields": { + "id_car_serie": 3125, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16297, + "fields": { + "id_car_serie": 3125, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16298, + "fields": { + "id_car_serie": 3125, + "name": "1.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16300, + "fields": { + "id_car_serie": 3126, + "name": "1.4 VTi MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16302, + "fields": { + "id_car_serie": 3126, + "name": "1.6 VTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16303, + "fields": { + "id_car_serie": 3126, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16304, + "fields": { + "id_car_serie": 3126, + "name": "1.6 THP MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16310, + "fields": { + "id_car_serie": 3127, + "name": "1.0 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16311, + "fields": { + "id_car_serie": 3127, + "name": "1.0 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16312, + "fields": { + "id_car_serie": 3127, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16313, + "fields": { + "id_car_serie": 3127, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16314, + "fields": { + "id_car_serie": 3128, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16317, + "fields": { + "id_car_serie": 3128, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16318, + "fields": { + "id_car_serie": 3128, + "name": "1.3 AT (65 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16319, + "fields": { + "id_car_serie": 3128, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16320, + "fields": { + "id_car_serie": 3129, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16321, + "fields": { + "id_car_serie": 3129, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16322, + "fields": { + "id_car_serie": 3129, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16324, + "fields": { + "id_car_serie": 3129, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16325, + "fields": { + "id_car_serie": 3129, + "name": "1.5 MT D (57 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16327, + "fields": { + "id_car_serie": 3129, + "name": "1.6 VTS MT (118 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16328, + "fields": { + "id_car_serie": 3129, + "name": "1.6 VTL MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16329, + "fields": { + "id_car_serie": 3129, + "name": "1.6 VTS MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16330, + "fields": { + "id_car_serie": 3130, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16331, + "fields": { + "id_car_serie": 3130, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16332, + "fields": { + "id_car_serie": 3130, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16334, + "fields": { + "id_car_serie": 3130, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16335, + "fields": { + "id_car_serie": 3130, + "name": "1.5 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16337, + "fields": { + "id_car_serie": 3130, + "name": "1.6 VTS MT (118 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16338, + "fields": { + "id_car_serie": 3130, + "name": "1.6 VTL MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16339, + "fields": { + "id_car_serie": 3130, + "name": "1.6 VTS MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16368, + "fields": { + "id_car_serie": 3133, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16369, + "fields": { + "id_car_serie": 3133, + "name": "2.0 Turbo MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16371, + "fields": { + "id_car_serie": 3133, + "name": "2.1 TD MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16375, + "fields": { + "id_car_serie": 3133, + "name": "3.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16376, + "fields": { + "id_car_serie": 3133, + "name": "2.9 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16377, + "fields": { + "id_car_serie": 3133, + "name": "3.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16380, + "fields": { + "id_car_serie": 3134, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16381, + "fields": { + "id_car_serie": 3134, + "name": "2.0 Turbo MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16383, + "fields": { + "id_car_serie": 3134, + "name": "2.1 TD MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16386, + "fields": { + "id_car_serie": 3134, + "name": "2.9 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16387, + "fields": { + "id_car_serie": 3134, + "name": "3.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16388, + "fields": { + "id_car_serie": 3135, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16390, + "fields": { + "id_car_serie": 3135, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16392, + "fields": { + "id_car_serie": 3135, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16396, + "fields": { + "id_car_serie": 3135, + "name": "1.9 D MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16398, + "fields": { + "id_car_serie": 3135, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16401, + "fields": { + "id_car_serie": 3135, + "name": "2.0 HDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16402, + "fields": { + "id_car_serie": 3135, + "name": "2.0 HDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16403, + "fields": { + "id_car_serie": 3136, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16405, + "fields": { + "id_car_serie": 3136, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16407, + "fields": { + "id_car_serie": 3136, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16411, + "fields": { + "id_car_serie": 3136, + "name": "1.9 D MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16415, + "fields": { + "id_car_serie": 3136, + "name": "2.0 HDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16416, + "fields": { + "id_car_serie": 3136, + "name": "2.0 HDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16427, + "fields": { + "id_car_serie": 3137, + "name": "2.0 MT (167 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16428, + "fields": { + "id_car_serie": 3137, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16429, + "fields": { + "id_car_serie": 3137, + "name": "2.0 HDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16430, + "fields": { + "id_car_serie": 3138, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16431, + "fields": { + "id_car_serie": 3138, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16433, + "fields": { + "id_car_serie": 3138, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16436, + "fields": { + "id_car_serie": 3138, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16437, + "fields": { + "id_car_serie": 3138, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16438, + "fields": { + "id_car_serie": 3139, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16439, + "fields": { + "id_car_serie": 3139, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16441, + "fields": { + "id_car_serie": 3139, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16442, + "fields": { + "id_car_serie": 3139, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16443, + "fields": { + "id_car_serie": 3139, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16444, + "fields": { + "id_car_serie": 3139, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16445, + "fields": { + "id_car_serie": 3139, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16446, + "fields": { + "id_car_serie": 3139, + "name": "1.9 D MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16447, + "fields": { + "id_car_serie": 3139, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16448, + "fields": { + "id_car_serie": 3139, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16449, + "fields": { + "id_car_serie": 3139, + "name": "2.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16450, + "fields": { + "id_car_serie": 3140, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16451, + "fields": { + "id_car_serie": 3140, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16453, + "fields": { + "id_car_serie": 3140, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16454, + "fields": { + "id_car_serie": 3140, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16455, + "fields": { + "id_car_serie": 3140, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16456, + "fields": { + "id_car_serie": 3140, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16457, + "fields": { + "id_car_serie": 3140, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16458, + "fields": { + "id_car_serie": 3140, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16459, + "fields": { + "id_car_serie": 3141, + "name": "1.4 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16460, + "fields": { + "id_car_serie": 3142, + "name": "1.4 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16466, + "fields": { + "id_car_serie": 3144, + "name": "1.4 MT (62 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16469, + "fields": { + "id_car_serie": 3144, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16472, + "fields": { + "id_car_serie": 3145, + "name": "1.4 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16473, + "fields": { + "id_car_serie": 3145, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16475, + "fields": { + "id_car_serie": 3146, + "name": "1.2 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16476, + "fields": { + "id_car_serie": 3146, + "name": "1.5 MT (110 hp) diesel", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16477, + "fields": { + "id_car_serie": 3146, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16478, + "fields": { + "id_car_serie": 3146, + "name": "1.5 MT (90 hp) diesel", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16479, + "fields": { + "id_car_serie": 3146, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16485, + "fields": { + "id_car_serie": 3148, + "name": "1.5 D MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16486, + "fields": { + "id_car_serie": 3148, + "name": "1.5 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16488, + "fields": { + "id_car_serie": 3149, + "name": "0.9 TCe MT (97 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16490, + "fields": { + "id_car_serie": 3149, + "name": "1.5 dCi MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16491, + "fields": { + "id_car_serie": 3149, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16492, + "fields": { + "id_car_serie": 3150, + "name": "0.8 MT (38 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16493, + "fields": { + "id_car_serie": 3151, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16497, + "fields": { + "id_car_serie": 3152, + "name": "1.4 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16498, + "fields": { + "id_car_serie": 3152, + "name": "1.4 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16499, + "fields": { + "id_car_serie": 3152, + "name": "1.6 MT 16V (106 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16500, + "fields": { + "id_car_serie": 3153, + "name": "1.2 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16504, + "fields": { + "id_car_serie": 3153, + "name": "1.6 MT 16V (106 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16506, + "fields": { + "id_car_serie": 3154, + "name": "2.3 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16507, + "fields": { + "id_car_serie": 3154, + "name": "2.3 MT AWD (129 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16508, + "fields": { + "id_car_serie": 3154, + "name": "2.3 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16509, + "fields": { + "id_car_serie": 3154, + "name": "2.3 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16511, + "fields": { + "id_car_serie": 3154, + "name": "2.3 MT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16512, + "fields": { + "id_car_serie": 3154, + "name": "2.9 TD AT AWD (120 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16513, + "fields": { + "id_car_serie": 3154, + "name": "2.9 D AT (98 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16514, + "fields": { + "id_car_serie": 3154, + "name": "2.9 TD MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16515, + "fields": { + "id_car_serie": 3154, + "name": "2.9 D MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16519, + "fields": { + "id_car_serie": 3155, + "name": "2.0 MT AWD (126 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16520, + "fields": { + "id_car_serie": 3155, + "name": "2.3 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16521, + "fields": { + "id_car_serie": 3155, + "name": "2.9 TD MT AWD (120 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16522, + "fields": { + "id_car_serie": 3155, + "name": "2.9 TD MT AWD (129 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16523, + "fields": { + "id_car_serie": 3155, + "name": "2.9 TD MT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16525, + "fields": { + "id_car_serie": 3156, + "name": "1.6 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16526, + "fields": { + "id_car_serie": 3156, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16527, + "fields": { + "id_car_serie": 3156, + "name": "1.8 AT (142 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16530, + "fields": { + "id_car_serie": 3157, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16531, + "fields": { + "id_car_serie": 3157, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16532, + "fields": { + "id_car_serie": 3157, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16533, + "fields": { + "id_car_serie": 3157, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16534, + "fields": { + "id_car_serie": 3158, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16535, + "fields": { + "id_car_serie": 3158, + "name": "1.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16536, + "fields": { + "id_car_serie": 3158, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16537, + "fields": { + "id_car_serie": 3158, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16538, + "fields": { + "id_car_serie": 3158, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16539, + "fields": { + "id_car_serie": 3159, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16540, + "fields": { + "id_car_serie": 3159, + "name": "1.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16541, + "fields": { + "id_car_serie": 3159, + "name": "1.5 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16542, + "fields": { + "id_car_serie": 3159, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16543, + "fields": { + "id_car_serie": 3159, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16544, + "fields": { + "id_car_serie": 3160, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16545, + "fields": { + "id_car_serie": 3160, + "name": "1.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16546, + "fields": { + "id_car_serie": 3160, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16547, + "fields": { + "id_car_serie": 3160, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16548, + "fields": { + "id_car_serie": 3160, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16556, + "fields": { + "id_car_serie": 3162, + "name": "1.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16557, + "fields": { + "id_car_serie": 3163, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16558, + "fields": { + "id_car_serie": 3163, + "name": "1.5 i 16V (90 hp) Automatic)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16560, + "fields": { + "id_car_serie": 3164, + "name": "1.4 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16561, + "fields": { + "id_car_serie": 3164, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16562, + "fields": { + "id_car_serie": 3164, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16563, + "fields": { + "id_car_serie": 3164, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16564, + "fields": { + "id_car_serie": 3164, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16570, + "fields": { + "id_car_serie": 3165, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16571, + "fields": { + "id_car_serie": 3165, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16572, + "fields": { + "id_car_serie": 3165, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16576, + "fields": { + "id_car_serie": 3166, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16577, + "fields": { + "id_car_serie": 3167, + "name": "1.5 AT (89 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16578, + "fields": { + "id_car_serie": 3167, + "name": "1.5 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16579, + "fields": { + "id_car_serie": 3167, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16580, + "fields": { + "id_car_serie": 3167, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16581, + "fields": { + "id_car_serie": 3167, + "name": "2.0 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16582, + "fields": { + "id_car_serie": 3167, + "name": "2.0 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16594, + "fields": { + "id_car_serie": 3174, + "name": "1.6 AT (99 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16595, + "fields": { + "id_car_serie": 3174, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16598, + "fields": { + "id_car_serie": 3175, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16599, + "fields": { + "id_car_serie": 3175, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16600, + "fields": { + "id_car_serie": 3175, + "name": "1.5 AT AWD (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16601, + "fields": { + "id_car_serie": 3175, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16602, + "fields": { + "id_car_serie": 3175, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16605, + "fields": { + "id_car_serie": 3176, + "name": "1.3 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16606, + "fields": { + "id_car_serie": 3176, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16607, + "fields": { + "id_car_serie": 3176, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16612, + "fields": { + "id_car_serie": 3176, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16613, + "fields": { + "id_car_serie": 3177, + "name": "1.3 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16614, + "fields": { + "id_car_serie": 3177, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16615, + "fields": { + "id_car_serie": 3177, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16616, + "fields": { + "id_car_serie": 3177, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16617, + "fields": { + "id_car_serie": 3177, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16618, + "fields": { + "id_car_serie": 3177, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16620, + "fields": { + "id_car_serie": 3177, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16625, + "fields": { + "id_car_serie": 3179, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16626, + "fields": { + "id_car_serie": 3180, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16628, + "fields": { + "id_car_serie": 3181, + "name": "0.7 MT (33 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16629, + "fields": { + "id_car_serie": 3181, + "name": "0.7 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16631, + "fields": { + "id_car_serie": 3182, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16640, + "fields": { + "id_car_serie": 3187, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16641, + "fields": { + "id_car_serie": 3187, + "name": "0.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16642, + "fields": { + "id_car_serie": 3188, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16643, + "fields": { + "id_car_serie": 3188, + "name": "0.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16645, + "fields": { + "id_car_serie": 3189, + "name": "2.8 TD MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16654, + "fields": { + "id_car_serie": 3191, + "name": "1.0 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16655, + "fields": { + "id_car_serie": 3191, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16656, + "fields": { + "id_car_serie": 3191, + "name": "1.3 AT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16657, + "fields": { + "id_car_serie": 3191, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16658, + "fields": { + "id_car_serie": 3191, + "name": "1.3 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16661, + "fields": { + "id_car_serie": 3192, + "name": "1.5 MT RWD (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16662, + "fields": { + "id_car_serie": 3192, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16663, + "fields": { + "id_car_serie": 3193, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16664, + "fields": { + "id_car_serie": 3194, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16665, + "fields": { + "id_car_serie": 3195, + "name": "1.0 MT (62 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16666, + "fields": { + "id_car_serie": 3196, + "name": "1.0 MT (62 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16667, + "fields": { + "id_car_serie": 3197, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16668, + "fields": { + "id_car_serie": 3198, + "name": "1.0 MT (62 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16673, + "fields": { + "id_car_serie": 3201, + "name": "1.2 AT (70 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16674, + "fields": { + "id_car_serie": 3201, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16675, + "fields": { + "id_car_serie": 3201, + "name": "1.4 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16676, + "fields": { + "id_car_serie": 3201, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16677, + "fields": { + "id_car_serie": 3202, + "name": "1.2 AT (70 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16678, + "fields": { + "id_car_serie": 3202, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16679, + "fields": { + "id_car_serie": 3203, + "name": "1.2 AT (70 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16680, + "fields": { + "id_car_serie": 3203, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16681, + "fields": { + "id_car_serie": 3204, + "name": "1.4 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16682, + "fields": { + "id_car_serie": 3204, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16683, + "fields": { + "id_car_serie": 3205, + "name": "4.0 MT (283 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16684, + "fields": { + "id_car_serie": 3205, + "name": "4.0 MT (304 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16685, + "fields": { + "id_car_serie": 3206, + "name": "4.0 MT (304 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16686, + "fields": { + "id_car_serie": 3207, + "name": "2.6 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16687, + "fields": { + "id_car_serie": 3207, + "name": "2.6 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16688, + "fields": { + "id_car_serie": 3208, + "name": "2.6 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16689, + "fields": { + "id_car_serie": 3208, + "name": "2.6 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16691, + "fields": { + "id_car_serie": 3209, + "name": "2.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16692, + "fields": { + "id_car_serie": 3209, + "name": "2.4 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16693, + "fields": { + "id_car_serie": 3209, + "name": "2.4 MT (173 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16694, + "fields": { + "id_car_serie": 3209, + "name": "3.5 AT (235 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16695, + "fields": { + "id_car_serie": 3209, + "name": "3.5 AT AWD (235 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16697, + "fields": { + "id_car_serie": 3210, + "name": "3.3 AT (182 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16698, + "fields": { + "id_car_serie": 3210, + "name": "3.8 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16699, + "fields": { + "id_car_serie": 3211, + "name": "3.5 V6 4AT SE (253 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16701, + "fields": { + "id_car_serie": 3211, + "name": "3.6 V6 5AT SXT (309 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16703, + "fields": { + "id_car_serie": 3211, + "name": "5.7 V8 AT R/T (375 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16704, + "fields": { + "id_car_serie": 3211, + "name": "5.7 V8 MT R/T (381 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16720, + "fields": { + "id_car_serie": 3214, + "name": "3.6 AT (294 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16721, + "fields": { + "id_car_serie": 3214, + "name": "3.6 AT AWD (294 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16724, + "fields": { + "id_car_serie": 3214, + "name": "5.7 AT (364 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16725, + "fields": { + "id_car_serie": 3214, + "name": "5.7 AT AWD (364 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16734, + "fields": { + "id_car_serie": 3216, + "name": "2.7 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16735, + "fields": { + "id_car_serie": 3216, + "name": "3.2 AT (225 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16736, + "fields": { + "id_car_serie": 3216, + "name": "3.5 AT (234 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16737, + "fields": { + "id_car_serie": 3216, + "name": "3.5 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16740, + "fields": { + "id_car_serie": 3217, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16741, + "fields": { + "id_car_serie": 3217, + "name": "2.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16744, + "fields": { + "id_car_serie": 3218, + "name": "4.7 AT AWD (310 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16745, + "fields": { + "id_car_serie": 3218, + "name": "5.7 AT (396 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16756, + "fields": { + "id_car_serie": 3220, + "name": "5.2 MT (172 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16757, + "fields": { + "id_car_serie": 3220, + "name": "5.9 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16760, + "fields": { + "id_car_serie": 3221, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16761, + "fields": { + "id_car_serie": 3221, + "name": "2.4 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16762, + "fields": { + "id_car_serie": 3221, + "name": "2.7 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16763, + "fields": { + "id_car_serie": 3222, + "name": "2.4 AT (149 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16764, + "fields": { + "id_car_serie": 3222, + "name": "2.4 MT (149 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16765, + "fields": { + "id_car_serie": 3222, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16766, + "fields": { + "id_car_serie": 3222, + "name": "3.0 MT (203 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16770, + "fields": { + "id_car_serie": 3226, + "name": "2.5 TD MT (134 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16772, + "fields": { + "id_car_serie": 3227, + "name": "1.5 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16773, + "fields": { + "id_car_serie": 3227, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16774, + "fields": { + "id_car_serie": 3227, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16775, + "fields": { + "id_car_serie": 3227, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16776, + "fields": { + "id_car_serie": 3228, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16777, + "fields": { + "id_car_serie": 3228, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16783, + "fields": { + "id_car_serie": 3231, + "name": "1.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16785, + "fields": { + "id_car_serie": 3231, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16787, + "fields": { + "id_car_serie": 3232, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16790, + "fields": { + "id_car_serie": 3232, + "name": "2.4 MT (118 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16791, + "fields": { + "id_car_serie": 3232, + "name": "2.4 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16792, + "fields": { + "id_car_serie": 3233, + "name": "1.5 AT (92 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16793, + "fields": { + "id_car_serie": 3233, + "name": "1.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16794, + "fields": { + "id_car_serie": 3234, + "name": "1.5 AT (81 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16795, + "fields": { + "id_car_serie": 3234, + "name": "1.5 AT (92 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16796, + "fields": { + "id_car_serie": 3234, + "name": "1.5 MT (81 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16797, + "fields": { + "id_car_serie": 3234, + "name": "1.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16798, + "fields": { + "id_car_serie": 3234, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16799, + "fields": { + "id_car_serie": 3234, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16802, + "fields": { + "id_car_serie": 3236, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16803, + "fields": { + "id_car_serie": 3236, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16804, + "fields": { + "id_car_serie": 3237, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16805, + "fields": { + "id_car_serie": 3237, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16807, + "fields": { + "id_car_serie": 3239, + "name": "1.3 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16818, + "fields": { + "id_car_serie": 3242, + "name": "3.2 MT (270 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16819, + "fields": { + "id_car_serie": 3243, + "name": "3.2 MT (270 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16820, + "fields": { + "id_car_serie": 3244, + "name": "3.4 MT (300 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16821, + "fields": { + "id_car_serie": 3245, + "name": "3.4 MT (300 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16823, + "fields": { + "id_car_serie": 3246, + "name": "3.4 MT (300 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16824, + "fields": { + "id_car_serie": 3246, + "name": "3.4 MT (320 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16825, + "fields": { + "id_car_serie": 3247, + "name": "3.6 MT F1 (400 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16826, + "fields": { + "id_car_serie": 3247, + "name": "3.6 MT Challenge Stradale (425 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16828, + "fields": { + "id_car_serie": 3248, + "name": "3.6 MT (400 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16830, + "fields": { + "id_car_serie": 3249, + "name": "5.5 AT (442 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16831, + "fields": { + "id_car_serie": 3249, + "name": "5.5 MT (442 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16832, + "fields": { + "id_car_serie": 3250, + "name": "4.5 AMT (570 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16833, + "fields": { + "id_car_serie": 3251, + "name": "4.5 AMT (570 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 16834, + "fields": { + "id_car_serie": 3252, + "name": "5.5 MT (479 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16835, + "fields": { + "id_car_serie": 3253, + "name": "5.5 MT (485 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16837, + "fields": { + "id_car_serie": 3254, + "name": "5.7 MT (515 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16839, + "fields": { + "id_car_serie": 3255, + "name": "5.7 MT (532 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16840, + "fields": { + "id_car_serie": 3256, + "name": "6.0 AMT (620 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16842, + "fields": { + "id_car_serie": 3257, + "name": "6.0 AMT (670 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16851, + "fields": { + "id_car_serie": 3262, + "name": "4.3 DGS (490 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16853, + "fields": { + "id_car_serie": 3262, + "name": "4.3 MT (490 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16854, + "fields": { + "id_car_serie": 3263, + "name": "4.7 MT (520 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16855, + "fields": { + "id_car_serie": 3264, + "name": "4.7 MT (520 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16859, + "fields": { + "id_car_serie": 3265, + "name": "3.4 MT (296 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16863, + "fields": { + "id_car_serie": 3266, + "name": "3.4 MT (291 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16865, + "fields": { + "id_car_serie": 3267, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16866, + "fields": { + "id_car_serie": 3267, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16867, + "fields": { + "id_car_serie": 3267, + "name": "1.6 MT (104 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16868, + "fields": { + "id_car_serie": 3267, + "name": "1.6 MT (108 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16869, + "fields": { + "id_car_serie": 3267, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16870, + "fields": { + "id_car_serie": 3267, + "name": "1.8 AT (118 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16871, + "fields": { + "id_car_serie": 3267, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16872, + "fields": { + "id_car_serie": 3267, + "name": "1.8 MT (118 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16873, + "fields": { + "id_car_serie": 3268, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16874, + "fields": { + "id_car_serie": 3268, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16890, + "fields": { + "id_car_serie": 3270, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1966, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16891, + "fields": { + "id_car_serie": 3270, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16892, + "fields": { + "id_car_serie": 3270, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16893, + "fields": { + "id_car_serie": 3270, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16894, + "fields": { + "id_car_serie": 3270, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16895, + "fields": { + "id_car_serie": 3270, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16897, + "fields": { + "id_car_serie": 3271, + "name": "1.3 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16898, + "fields": { + "id_car_serie": 3272, + "name": "0.9 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16899, + "fields": { + "id_car_serie": 3272, + "name": "0.9 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16902, + "fields": { + "id_car_serie": 3272, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16903, + "fields": { + "id_car_serie": 3272, + "name": "1.3 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16904, + "fields": { + "id_car_serie": 3273, + "name": "1.1 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16905, + "fields": { + "id_car_serie": 3273, + "name": "1.1 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16906, + "fields": { + "id_car_serie": 3273, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16907, + "fields": { + "id_car_serie": 3273, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16908, + "fields": { + "id_car_serie": 3274, + "name": "1.1 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16909, + "fields": { + "id_car_serie": 3274, + "name": "1.1 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16910, + "fields": { + "id_car_serie": 3274, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16911, + "fields": { + "id_car_serie": 3274, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16912, + "fields": { + "id_car_serie": 3275, + "name": "1.1 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16913, + "fields": { + "id_car_serie": 3275, + "name": "1.1 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16914, + "fields": { + "id_car_serie": 3275, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16915, + "fields": { + "id_car_serie": 3276, + "name": "3.2 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16916, + "fields": { + "id_car_serie": 3276, + "name": "3.2 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16917, + "fields": { + "id_car_serie": 3277, + "name": "2.9 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16918, + "fields": { + "id_car_serie": 3277, + "name": "2.9 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16919, + "fields": { + "id_car_serie": 3277, + "name": "2.9 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16920, + "fields": { + "id_car_serie": 3277, + "name": "2.9 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16921, + "fields": { + "id_car_serie": 3277, + "name": "3.2 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16922, + "fields": { + "id_car_serie": 3277, + "name": "3.2 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16923, + "fields": { + "id_car_serie": 3278, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16924, + "fields": { + "id_car_serie": 3278, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16925, + "fields": { + "id_car_serie": 3278, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16926, + "fields": { + "id_car_serie": 3278, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16927, + "fields": { + "id_car_serie": 3278, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16928, + "fields": { + "id_car_serie": 3278, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16929, + "fields": { + "id_car_serie": 3278, + "name": "2.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16931, + "fields": { + "id_car_serie": 3279, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16932, + "fields": { + "id_car_serie": 3279, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16933, + "fields": { + "id_car_serie": 3279, + "name": "1.3 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16934, + "fields": { + "id_car_serie": 3279, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16935, + "fields": { + "id_car_serie": 3279, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16936, + "fields": { + "id_car_serie": 3279, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16937, + "fields": { + "id_car_serie": 3279, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16938, + "fields": { + "id_car_serie": 3279, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16939, + "fields": { + "id_car_serie": 3279, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16940, + "fields": { + "id_car_serie": 3279, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16941, + "fields": { + "id_car_serie": 3279, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16942, + "fields": { + "id_car_serie": 3279, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16943, + "fields": { + "id_car_serie": 3279, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16944, + "fields": { + "id_car_serie": 3279, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16945, + "fields": { + "id_car_serie": 3279, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16946, + "fields": { + "id_car_serie": 3279, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16947, + "fields": { + "id_car_serie": 3279, + "name": "2.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16956, + "fields": { + "id_car_serie": 3280, + "name": "1.2 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16957, + "fields": { + "id_car_serie": 3280, + "name": "1.2 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16960, + "fields": { + "id_car_serie": 3280, + "name": "1.4 AMT (100 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16961, + "fields": { + "id_car_serie": 3280, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16969, + "fields": { + "id_car_serie": 3281, + "name": "1.3d AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16970, + "fields": { + "id_car_serie": 3281, + "name": "1.3d AT (95 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16971, + "fields": { + "id_car_serie": 3281, + "name": "1.3d MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16979, + "fields": { + "id_car_serie": 3282, + "name": "1.4 MT 16v (90 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16980, + "fields": { + "id_car_serie": 3282, + "name": "1.9 MT (150 hp) 16v Multijet 6MT", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16981, + "fields": { + "id_car_serie": 3282, + "name": "1.9 16v Multijet 115 (120 hp) 5MT", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16992, + "fields": { + "id_car_serie": 3284, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16994, + "fields": { + "id_car_serie": 3284, + "name": "1.6 TD AMT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16995, + "fields": { + "id_car_serie": 3284, + "name": "1.6 TD MT Maxi (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16996, + "fields": { + "id_car_serie": 3284, + "name": "1.6 TD MT Maxi (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16997, + "fields": { + "id_car_serie": 3284, + "name": "2.0 TD MT Maxi (135 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16998, + "fields": { + "id_car_serie": 3285, + "name": "1.1 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 16999, + "fields": { + "id_car_serie": 3285, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17000, + "fields": { + "id_car_serie": 3285, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17001, + "fields": { + "id_car_serie": 3286, + "name": "1.1 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17002, + "fields": { + "id_car_serie": 3286, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17003, + "fields": { + "id_car_serie": 3286, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17006, + "fields": { + "id_car_serie": 3287, + "name": "1.4 AT (73 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17007, + "fields": { + "id_car_serie": 3287, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17008, + "fields": { + "id_car_serie": 3288, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17009, + "fields": { + "id_car_serie": 3288, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17010, + "fields": { + "id_car_serie": 3288, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17014, + "fields": { + "id_car_serie": 3288, + "name": "1.9 TD MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17015, + "fields": { + "id_car_serie": 3288, + "name": "1.9 TD MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17016, + "fields": { + "id_car_serie": 3288, + "name": "1.9 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17017, + "fields": { + "id_car_serie": 3288, + "name": "1.9 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17018, + "fields": { + "id_car_serie": 3288, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17019, + "fields": { + "id_car_serie": 3288, + "name": "2.0 MT (154 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17020, + "fields": { + "id_car_serie": 3288, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17021, + "fields": { + "id_car_serie": 3288, + "name": "2.4 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17022, + "fields": { + "id_car_serie": 3288, + "name": "2.4 TD MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17024, + "fields": { + "id_car_serie": 3289, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17025, + "fields": { + "id_car_serie": 3289, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17026, + "fields": { + "id_car_serie": 3289, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17029, + "fields": { + "id_car_serie": 3289, + "name": "1.9 TD MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17030, + "fields": { + "id_car_serie": 3289, + "name": "1.9 TD MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17031, + "fields": { + "id_car_serie": 3289, + "name": "1.9 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17032, + "fields": { + "id_car_serie": 3289, + "name": "1.9 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17033, + "fields": { + "id_car_serie": 3289, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17034, + "fields": { + "id_car_serie": 3289, + "name": "2.0 MT (154 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17035, + "fields": { + "id_car_serie": 3289, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17036, + "fields": { + "id_car_serie": 3289, + "name": "2.4 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17037, + "fields": { + "id_car_serie": 3289, + "name": "2.4 TD MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17041, + "fields": { + "id_car_serie": 3290, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17042, + "fields": { + "id_car_serie": 3290, + "name": "1.9 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17043, + "fields": { + "id_car_serie": 3291, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17044, + "fields": { + "id_car_serie": 3291, + "name": "1.2 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17045, + "fields": { + "id_car_serie": 3291, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17046, + "fields": { + "id_car_serie": 3291, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17047, + "fields": { + "id_car_serie": 3291, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17048, + "fields": { + "id_car_serie": 3291, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17049, + "fields": { + "id_car_serie": 3291, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17050, + "fields": { + "id_car_serie": 3291, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17051, + "fields": { + "id_car_serie": 3291, + "name": "1.7d MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17052, + "fields": { + "id_car_serie": 3291, + "name": "1.9d MT (63 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17056, + "fields": { + "id_car_serie": 3292, + "name": "1.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17057, + "fields": { + "id_car_serie": 3292, + "name": "1.2 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17058, + "fields": { + "id_car_serie": 3292, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17059, + "fields": { + "id_car_serie": 3292, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17060, + "fields": { + "id_car_serie": 3292, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17063, + "fields": { + "id_car_serie": 3292, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17068, + "fields": { + "id_car_serie": 3293, + "name": "1.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17069, + "fields": { + "id_car_serie": 3293, + "name": "1.2 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17070, + "fields": { + "id_car_serie": 3293, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17071, + "fields": { + "id_car_serie": 3293, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17072, + "fields": { + "id_car_serie": 3293, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17075, + "fields": { + "id_car_serie": 3293, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17088, + "fields": { + "id_car_serie": 3295, + "name": "1.4 AMT (77 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17089, + "fields": { + "id_car_serie": 3295, + "name": "1.4 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17091, + "fields": { + "id_car_serie": 3295, + "name": "1.4 MT (77 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17102, + "fields": { + "id_car_serie": 3296, + "name": "1.4 AMT (77 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17104, + "fields": { + "id_car_serie": 3296, + "name": "1.4 MT Mair (135 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17105, + "fields": { + "id_car_serie": 3296, + "name": "1.4 MT (77 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17110, + "fields": { + "id_car_serie": 3297, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17113, + "fields": { + "id_car_serie": 3297, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17114, + "fields": { + "id_car_serie": 3297, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17115, + "fields": { + "id_car_serie": 3297, + "name": "1.9 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17116, + "fields": { + "id_car_serie": 3297, + "name": "1.9 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17117, + "fields": { + "id_car_serie": 3298, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17118, + "fields": { + "id_car_serie": 3298, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17121, + "fields": { + "id_car_serie": 3298, + "name": "1.5 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17122, + "fields": { + "id_car_serie": 3298, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17125, + "fields": { + "id_car_serie": 3298, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17126, + "fields": { + "id_car_serie": 3298, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17127, + "fields": { + "id_car_serie": 3298, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17128, + "fields": { + "id_car_serie": 3298, + "name": "1.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17129, + "fields": { + "id_car_serie": 3298, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17130, + "fields": { + "id_car_serie": 3298, + "name": "1.9 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17131, + "fields": { + "id_car_serie": 3298, + "name": "1.9 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17140, + "fields": { + "id_car_serie": 3299, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17141, + "fields": { + "id_car_serie": 3299, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17142, + "fields": { + "id_car_serie": 3299, + "name": "1.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17146, + "fields": { + "id_car_serie": 3300, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17149, + "fields": { + "id_car_serie": 3300, + "name": "1.9 TD MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17150, + "fields": { + "id_car_serie": 3300, + "name": "1.9 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17151, + "fields": { + "id_car_serie": 3300, + "name": "1.9 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17152, + "fields": { + "id_car_serie": 3301, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17153, + "fields": { + "id_car_serie": 3301, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17154, + "fields": { + "id_car_serie": 3301, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17156, + "fields": { + "id_car_serie": 3301, + "name": "1.9 TD MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17157, + "fields": { + "id_car_serie": 3301, + "name": "1.9 TD MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17158, + "fields": { + "id_car_serie": 3301, + "name": "1.9 TD MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17159, + "fields": { + "id_car_serie": 3301, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17160, + "fields": { + "id_car_serie": 3302, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17161, + "fields": { + "id_car_serie": 3302, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17162, + "fields": { + "id_car_serie": 3302, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17164, + "fields": { + "id_car_serie": 3302, + "name": "1.9 TD MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17165, + "fields": { + "id_car_serie": 3302, + "name": "1.9 TD MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17166, + "fields": { + "id_car_serie": 3302, + "name": "1.9 TD MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17167, + "fields": { + "id_car_serie": 3302, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17169, + "fields": { + "id_car_serie": 3303, + "name": "1.4 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17170, + "fields": { + "id_car_serie": 3303, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17173, + "fields": { + "id_car_serie": 3303, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17175, + "fields": { + "id_car_serie": 3303, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17179, + "fields": { + "id_car_serie": 3303, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17180, + "fields": { + "id_car_serie": 3303, + "name": "1.9 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17182, + "fields": { + "id_car_serie": 3303, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17185, + "fields": { + "id_car_serie": 3304, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17188, + "fields": { + "id_car_serie": 3304, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17189, + "fields": { + "id_car_serie": 3304, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17193, + "fields": { + "id_car_serie": 3304, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17195, + "fields": { + "id_car_serie": 3304, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17197, + "fields": { + "id_car_serie": 3304, + "name": "2.0 MT AWD (115 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17198, + "fields": { + "id_car_serie": 3305, + "name": "1.1 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17200, + "fields": { + "id_car_serie": 3305, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17201, + "fields": { + "id_car_serie": 3305, + "name": "1.4 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17202, + "fields": { + "id_car_serie": 3305, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17203, + "fields": { + "id_car_serie": 3305, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17206, + "fields": { + "id_car_serie": 3305, + "name": "1.8 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17211, + "fields": { + "id_car_serie": 3305, + "name": "1.9 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17212, + "fields": { + "id_car_serie": 3305, + "name": "1.9 D AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17213, + "fields": { + "id_car_serie": 3305, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17215, + "fields": { + "id_car_serie": 3305, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17216, + "fields": { + "id_car_serie": 3305, + "name": "2.0 MT (146 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17217, + "fields": { + "id_car_serie": 3306, + "name": "1.1 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17219, + "fields": { + "id_car_serie": 3306, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17220, + "fields": { + "id_car_serie": 3306, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17221, + "fields": { + "id_car_serie": 3306, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17223, + "fields": { + "id_car_serie": 3306, + "name": "1.8 MT (104 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17224, + "fields": { + "id_car_serie": 3306, + "name": "1.8 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17225, + "fields": { + "id_car_serie": 3306, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17226, + "fields": { + "id_car_serie": 3306, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17227, + "fields": { + "id_car_serie": 3306, + "name": "1.9 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17228, + "fields": { + "id_car_serie": 3306, + "name": "1.9 D AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17230, + "fields": { + "id_car_serie": 3306, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17233, + "fields": { + "id_car_serie": 3306, + "name": "2.0 i.e. 16V Sport MT (139 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17234, + "fields": { + "id_car_serie": 3306, + "name": "2.0 MT (146 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17236, + "fields": { + "id_car_serie": 3307, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17238, + "fields": { + "id_car_serie": 3307, + "name": "2.0 TD MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17239, + "fields": { + "id_car_serie": 3307, + "name": "2.2 TD MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17255, + "fields": { + "id_car_serie": 3310, + "name": "5.8 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17256, + "fields": { + "id_car_serie": 3310, + "name": "5.8 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17257, + "fields": { + "id_car_serie": 3311, + "name": "1.0 EcoBoost MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17258, + "fields": { + "id_car_serie": 3311, + "name": "1.0 EcoBoost MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17259, + "fields": { + "id_car_serie": 3311, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17260, + "fields": { + "id_car_serie": 3311, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17261, + "fields": { + "id_car_serie": 3311, + "name": "1.6 EcoBoost MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17262, + "fields": { + "id_car_serie": 3311, + "name": "1.6 LPG MT (117 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17263, + "fields": { + "id_car_serie": 3311, + "name": "1.6 Flexi-fuel MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17264, + "fields": { + "id_car_serie": 3311, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17265, + "fields": { + "id_car_serie": 3311, + "name": "2.0 TDCi DPF Powershift (115 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17266, + "fields": { + "id_car_serie": 3311, + "name": "2.0 TDCi DPF Powershift (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17267, + "fields": { + "id_car_serie": 3311, + "name": "2.0 TDCi DPF Powershift (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17268, + "fields": { + "id_car_serie": 3311, + "name": "2.0 TDCi DPF MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17269, + "fields": { + "id_car_serie": 3311, + "name": "2.0 TDCi DPF MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17270, + "fields": { + "id_car_serie": 3312, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17271, + "fields": { + "id_car_serie": 3312, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17272, + "fields": { + "id_car_serie": 3312, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17273, + "fields": { + "id_car_serie": 3312, + "name": "2.3 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17274, + "fields": { + "id_car_serie": 3312, + "name": "2.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17275, + "fields": { + "id_car_serie": 3313, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17276, + "fields": { + "id_car_serie": 3313, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17277, + "fields": { + "id_car_serie": 3313, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17278, + "fields": { + "id_car_serie": 3313, + "name": "2.3 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17279, + "fields": { + "id_car_serie": 3314, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17280, + "fields": { + "id_car_serie": 3314, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17281, + "fields": { + "id_car_serie": 3314, + "name": "2.3 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17282, + "fields": { + "id_car_serie": 3315, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17283, + "fields": { + "id_car_serie": 3315, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17284, + "fields": { + "id_car_serie": 3315, + "name": "2.3 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17289, + "fields": { + "id_car_serie": 3317, + "name": "1.6 EcoBoost AT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17290, + "fields": { + "id_car_serie": 3317, + "name": "1.6 EcoBoost AT (178 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17291, + "fields": { + "id_car_serie": 3317, + "name": "2.0 EcoBoost AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17292, + "fields": { + "id_car_serie": 3317, + "name": "2.0 EcoBoost AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17293, + "fields": { + "id_car_serie": 3317, + "name": "2.5 AT (168 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17294, + "fields": { + "id_car_serie": 3318, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17295, + "fields": { + "id_car_serie": 3318, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17296, + "fields": { + "id_car_serie": 3319, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17297, + "fields": { + "id_car_serie": 3319, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17299, + "fields": { + "id_car_serie": 3319, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17300, + "fields": { + "id_car_serie": 3319, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17301, + "fields": { + "id_car_serie": 3319, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17302, + "fields": { + "id_car_serie": 3319, + "name": "1.8 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17303, + "fields": { + "id_car_serie": 3319, + "name": "1.8 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17305, + "fields": { + "id_car_serie": 3320, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17308, + "fields": { + "id_car_serie": 3320, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17310, + "fields": { + "id_car_serie": 3320, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17311, + "fields": { + "id_car_serie": 3320, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17312, + "fields": { + "id_car_serie": 3320, + "name": "1.8 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17313, + "fields": { + "id_car_serie": 3320, + "name": "1.8 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17314, + "fields": { + "id_car_serie": 3321, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17315, + "fields": { + "id_car_serie": 3321, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17318, + "fields": { + "id_car_serie": 3321, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17320, + "fields": { + "id_car_serie": 3321, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17321, + "fields": { + "id_car_serie": 3321, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17322, + "fields": { + "id_car_serie": 3321, + "name": "1.8 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17323, + "fields": { + "id_car_serie": 3321, + "name": "1.8 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17327, + "fields": { + "id_car_serie": 3322, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17329, + "fields": { + "id_car_serie": 3322, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17331, + "fields": { + "id_car_serie": 3322, + "name": "1.8 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17333, + "fields": { + "id_car_serie": 3323, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17334, + "fields": { + "id_car_serie": 3323, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17335, + "fields": { + "id_car_serie": 3323, + "name": "1.8 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17338, + "fields": { + "id_car_serie": 3325, + "name": "5.4 Flex Fuel AT AWD EL (310 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17339, + "fields": { + "id_car_serie": 3325, + "name": "5.4 Flex Fuel AT EL (310 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17340, + "fields": { + "id_car_serie": 3326, + "name": "2.0 EcoBoost AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17342, + "fields": { + "id_car_serie": 3326, + "name": "3.5 SelectShift (294 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17343, + "fields": { + "id_car_serie": 3326, + "name": "3.5 SelectShift 4WD (294 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17356, + "fields": { + "id_car_serie": 3327, + "name": "6.1 AT (411 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17371, + "fields": { + "id_car_serie": 3330, + "name": "1.3 AT (83 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17372, + "fields": { + "id_car_serie": 3330, + "name": "1.3 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17373, + "fields": { + "id_car_serie": 3330, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17380, + "fields": { + "id_car_serie": 3331, + "name": "1.6 Ti-VCT PowerShift (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17381, + "fields": { + "id_car_serie": 3331, + "name": "1.6 Ti-VCT MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17383, + "fields": { + "id_car_serie": 3332, + "name": "1.0 EcoBoost Powershift (100 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17384, + "fields": { + "id_car_serie": 3332, + "name": "1.0 EcoBoost MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17385, + "fields": { + "id_car_serie": 3332, + "name": "1.0 EcoBoost MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17386, + "fields": { + "id_car_serie": 3332, + "name": "1.0 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17387, + "fields": { + "id_car_serie": 3332, + "name": "1.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17388, + "fields": { + "id_car_serie": 3332, + "name": "1.5 TDCi MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17389, + "fields": { + "id_car_serie": 3332, + "name": "1.6 Ti-VCT PowerShift (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17391, + "fields": { + "id_car_serie": 3332, + "name": "1.6 TDCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17392, + "fields": { + "id_car_serie": 3333, + "name": "1.0 EcoBoost Powershift (100 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17393, + "fields": { + "id_car_serie": 3333, + "name": "1.0 EcoBoost MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17394, + "fields": { + "id_car_serie": 3333, + "name": "1.0 EcoBoost MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17395, + "fields": { + "id_car_serie": 3333, + "name": "1.0 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17396, + "fields": { + "id_car_serie": 3333, + "name": "1.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17397, + "fields": { + "id_car_serie": 3333, + "name": "1.5 TDCi MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17398, + "fields": { + "id_car_serie": 3333, + "name": "1.6 Ti-VCT PowerShift (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17399, + "fields": { + "id_car_serie": 3333, + "name": "1.6 TDCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17404, + "fields": { + "id_car_serie": 3335, + "name": "1.0 EcoBoost MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17405, + "fields": { + "id_car_serie": 3335, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17406, + "fields": { + "id_car_serie": 3335, + "name": "1.6 PowerShift (105 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17407, + "fields": { + "id_car_serie": 3335, + "name": "1.6 PowerShift (125 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17408, + "fields": { + "id_car_serie": 3335, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17409, + "fields": { + "id_car_serie": 3335, + "name": "1.6 FlexiFuel MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17410, + "fields": { + "id_car_serie": 3335, + "name": "1.6 EcoBoost MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17411, + "fields": { + "id_car_serie": 3335, + "name": "1.6 EcoBoost MT (182 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17412, + "fields": { + "id_car_serie": 3335, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17413, + "fields": { + "id_car_serie": 3335, + "name": "1.6 TDCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17414, + "fields": { + "id_car_serie": 3335, + "name": "1.6 TDCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17415, + "fields": { + "id_car_serie": 3335, + "name": "2.0 PowerShift (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17416, + "fields": { + "id_car_serie": 3335, + "name": "2.0 PowerShift (160 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17417, + "fields": { + "id_car_serie": 3335, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17418, + "fields": { + "id_car_serie": 3335, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17419, + "fields": { + "id_car_serie": 3335, + "name": "2.0 TDCi PowerShift (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17420, + "fields": { + "id_car_serie": 3335, + "name": "2.0 TDCi PowerShift (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17421, + "fields": { + "id_car_serie": 3335, + "name": "2.0 TDCi PowerShift (163 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17422, + "fields": { + "id_car_serie": 3335, + "name": "2.0 TDCi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17423, + "fields": { + "id_car_serie": 3335, + "name": "2.0 TDCi MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17424, + "fields": { + "id_car_serie": 3336, + "name": "1.0 EcoBoost MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17425, + "fields": { + "id_car_serie": 3336, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17426, + "fields": { + "id_car_serie": 3336, + "name": "1.6 TDCi ECOnetic 99 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17427, + "fields": { + "id_car_serie": 3336, + "name": "1.6 PowerShift (125 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17428, + "fields": { + "id_car_serie": 3336, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17430, + "fields": { + "id_car_serie": 3336, + "name": "1.6 EcoBoost MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17431, + "fields": { + "id_car_serie": 3336, + "name": "1.6 EcoBoost MT (182 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17432, + "fields": { + "id_car_serie": 3336, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17434, + "fields": { + "id_car_serie": 3336, + "name": "1.6 FlexiFuel MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17435, + "fields": { + "id_car_serie": 3336, + "name": "1.6 TDCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17436, + "fields": { + "id_car_serie": 3336, + "name": "2.0 PowerShift (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17437, + "fields": { + "id_car_serie": 3336, + "name": "2.0 PowerShift (160 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17438, + "fields": { + "id_car_serie": 3336, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17439, + "fields": { + "id_car_serie": 3336, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17440, + "fields": { + "id_car_serie": 3336, + "name": "2.0 TDCi PowerShift (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17441, + "fields": { + "id_car_serie": 3336, + "name": "2.0 TDCi PowerShift (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17442, + "fields": { + "id_car_serie": 3336, + "name": "2.0 TDCi PowerShift (163 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17443, + "fields": { + "id_car_serie": 3336, + "name": "2.0 TDCi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17444, + "fields": { + "id_car_serie": 3336, + "name": "2.0 TDCi MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17445, + "fields": { + "id_car_serie": 3337, + "name": "1.0 EcoBoost MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17446, + "fields": { + "id_car_serie": 3337, + "name": "1.0 EcoBoost MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17447, + "fields": { + "id_car_serie": 3337, + "name": "1.6 TDCi ECOnetic 88 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17448, + "fields": { + "id_car_serie": 3337, + "name": "1.6 PowerShift (125 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17449, + "fields": { + "id_car_serie": 3337, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17450, + "fields": { + "id_car_serie": 3337, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17451, + "fields": { + "id_car_serie": 3337, + "name": "1.6 EcoBoost MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17452, + "fields": { + "id_car_serie": 3337, + "name": "1.6 EcoBoost MT (182 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17453, + "fields": { + "id_car_serie": 3337, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17454, + "fields": { + "id_car_serie": 3337, + "name": "1.6 FlexiFuel MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17457, + "fields": { + "id_car_serie": 3337, + "name": "2.0 PowerShift (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17458, + "fields": { + "id_car_serie": 3337, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17459, + "fields": { + "id_car_serie": 3337, + "name": "2.0 TDCi PowerShift (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17460, + "fields": { + "id_car_serie": 3337, + "name": "2.0 TDCi PowerShift (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17461, + "fields": { + "id_car_serie": 3337, + "name": "2.0 TDCi PowerShift (163 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17462, + "fields": { + "id_car_serie": 3337, + "name": "2.0 TDCi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17463, + "fields": { + "id_car_serie": 3337, + "name": "2.0 TDCi MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17464, + "fields": { + "id_car_serie": 3338, + "name": "1.5 AT (178 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17465, + "fields": { + "id_car_serie": 3338, + "name": "1.6 AT (178 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17466, + "fields": { + "id_car_serie": 3338, + "name": "1.6 MT (182 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17467, + "fields": { + "id_car_serie": 3338, + "name": "2.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17468, + "fields": { + "id_car_serie": 3338, + "name": "2.0 AT (240 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17469, + "fields": { + "id_car_serie": 3338, + "name": "2.0 CVT (141 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17470, + "fields": { + "id_car_serie": 3338, + "name": "2.5 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17474, + "fields": { + "id_car_serie": 3339, + "name": "2.0 Duratec MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17475, + "fields": { + "id_car_serie": 3339, + "name": "2.0 TDCi AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17477, + "fields": { + "id_car_serie": 3339, + "name": "2.0 TDCi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17481, + "fields": { + "id_car_serie": 3339, + "name": "2.3 Duratec AT (161 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17482, + "fields": { + "id_car_serie": 3340, + "name": "2.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17483, + "fields": { + "id_car_serie": 3340, + "name": "2.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17484, + "fields": { + "id_car_serie": 3340, + "name": "4.2 AT (117 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17485, + "fields": { + "id_car_serie": 3340, + "name": "4.2 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17486, + "fields": { + "id_car_serie": 3341, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17487, + "fields": { + "id_car_serie": 3341, + "name": "1.7 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17488, + "fields": { + "id_car_serie": 3341, + "name": "2.0 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17489, + "fields": { + "id_car_serie": 3341, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17490, + "fields": { + "id_car_serie": 3341, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17491, + "fields": { + "id_car_serie": 3341, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17492, + "fields": { + "id_car_serie": 3341, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17493, + "fields": { + "id_car_serie": 3341, + "name": "2.1 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17494, + "fields": { + "id_car_serie": 3341, + "name": "2.3 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17495, + "fields": { + "id_car_serie": 3341, + "name": "2.3 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17496, + "fields": { + "id_car_serie": 3341, + "name": "2.3 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17497, + "fields": { + "id_car_serie": 3341, + "name": "2.5 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17498, + "fields": { + "id_car_serie": 3341, + "name": "2.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17499, + "fields": { + "id_car_serie": 3341, + "name": "2.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17500, + "fields": { + "id_car_serie": 3341, + "name": "2.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17501, + "fields": { + "id_car_serie": 3341, + "name": "2.8 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17502, + "fields": { + "id_car_serie": 3341, + "name": "2.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17503, + "fields": { + "id_car_serie": 3341, + "name": "2.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17504, + "fields": { + "id_car_serie": 3342, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17505, + "fields": { + "id_car_serie": 3342, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17506, + "fields": { + "id_car_serie": 3342, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17507, + "fields": { + "id_car_serie": 3342, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17508, + "fields": { + "id_car_serie": 3342, + "name": "2.3 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17509, + "fields": { + "id_car_serie": 3342, + "name": "2.3 MT (111 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17510, + "fields": { + "id_car_serie": 3342, + "name": "2.3 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17511, + "fields": { + "id_car_serie": 3342, + "name": "2.5 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17512, + "fields": { + "id_car_serie": 3342, + "name": "2.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17513, + "fields": { + "id_car_serie": 3342, + "name": "2.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17514, + "fields": { + "id_car_serie": 3342, + "name": "2.8 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17515, + "fields": { + "id_car_serie": 3342, + "name": "2.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17516, + "fields": { + "id_car_serie": 3342, + "name": "2.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17517, + "fields": { + "id_car_serie": 3343, + "name": "1.2 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17518, + "fields": { + "id_car_serie": 3343, + "name": "1.3 TDCi MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17519, + "fields": { + "id_car_serie": 3344, + "name": "1.6 EcoBoost AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17520, + "fields": { + "id_car_serie": 3344, + "name": "1.6 EcoBoost AT AWD (182 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17521, + "fields": { + "id_car_serie": 3344, + "name": "1.6 EcoBoost MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17522, + "fields": { + "id_car_serie": 3344, + "name": "2.0 Duratorq TDCi PowerShift AWD (140 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17523, + "fields": { + "id_car_serie": 3344, + "name": "2.5 (150 hp), gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17526, + "fields": { + "id_car_serie": 3344, + "name": "2.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17531, + "fields": { + "id_car_serie": 3345, + "name": "2.3 MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17533, + "fields": { + "id_car_serie": 3345, + "name": "3.0 AT 4x4 (203 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17542, + "fields": { + "id_car_serie": 3347, + "name": "2.3 AT (309 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17543, + "fields": { + "id_car_serie": 3347, + "name": "2.3 MT (309 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17544, + "fields": { + "id_car_serie": 3347, + "name": "5.0 MT (426 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17545, + "fields": { + "id_car_serie": 3348, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17546, + "fields": { + "id_car_serie": 3348, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17547, + "fields": { + "id_car_serie": 3348, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17548, + "fields": { + "id_car_serie": 3348, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17549, + "fields": { + "id_car_serie": 3348, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17550, + "fields": { + "id_car_serie": 3348, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17551, + "fields": { + "id_car_serie": 3348, + "name": "1.8 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17552, + "fields": { + "id_car_serie": 3348, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17554, + "fields": { + "id_car_serie": 3349, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17556, + "fields": { + "id_car_serie": 3349, + "name": "2.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17557, + "fields": { + "id_car_serie": 3350, + "name": "2.3 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17559, + "fields": { + "id_car_serie": 3350, + "name": "2.3 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17561, + "fields": { + "id_car_serie": 3350, + "name": "3.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17563, + "fields": { + "id_car_serie": 3350, + "name": "3.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17565, + "fields": { + "id_car_serie": 3350, + "name": "4.0 AT (207 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17567, + "fields": { + "id_car_serie": 3350, + "name": "4.0 MT (207 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17569, + "fields": { + "id_car_serie": 3351, + "name": "2.3 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17571, + "fields": { + "id_car_serie": 3351, + "name": "2.3 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17573, + "fields": { + "id_car_serie": 3351, + "name": "3.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17575, + "fields": { + "id_car_serie": 3351, + "name": "3.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17577, + "fields": { + "id_car_serie": 3351, + "name": "4.0 AT (207 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17579, + "fields": { + "id_car_serie": 3351, + "name": "4.0 MT (207 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17591, + "fields": { + "id_car_serie": 3354, + "name": "1.6 EcoBoost MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17594, + "fields": { + "id_car_serie": 3354, + "name": "2.0 EcoBoost Powershift (240 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17595, + "fields": { + "id_car_serie": 3354, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17596, + "fields": { + "id_car_serie": 3354, + "name": "2.0 EcoBoost MT (203 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17597, + "fields": { + "id_car_serie": 3354, + "name": "2.0 EcoBoost MT (240 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17598, + "fields": { + "id_car_serie": 3354, + "name": "2.0 TDCi DPF Powershift (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17599, + "fields": { + "id_car_serie": 3354, + "name": "2.0 TDCi DPF Powershift (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17600, + "fields": { + "id_car_serie": 3354, + "name": "2.0 TDCi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17601, + "fields": { + "id_car_serie": 3354, + "name": "2.0 TDCi DPF MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17602, + "fields": { + "id_car_serie": 3354, + "name": "2.2 TDCi DPF AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17603, + "fields": { + "id_car_serie": 3354, + "name": "2.2 TDCi DPF MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17604, + "fields": { + "id_car_serie": 3354, + "name": "2.3 Powershift (161 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17607, + "fields": { + "id_car_serie": 3355, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17608, + "fields": { + "id_car_serie": 3355, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17609, + "fields": { + "id_car_serie": 3355, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17610, + "fields": { + "id_car_serie": 3355, + "name": "2.3 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17611, + "fields": { + "id_car_serie": 3355, + "name": "2.3 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17612, + "fields": { + "id_car_serie": 3355, + "name": "2.5 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17613, + "fields": { + "id_car_serie": 3355, + "name": "2.5 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17614, + "fields": { + "id_car_serie": 3355, + "name": "2.9 Cosworth AT (207 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17615, + "fields": { + "id_car_serie": 3355, + "name": "2.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17616, + "fields": { + "id_car_serie": 3356, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17618, + "fields": { + "id_car_serie": 3356, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17623, + "fields": { + "id_car_serie": 3356, + "name": "2.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17626, + "fields": { + "id_car_serie": 3357, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17627, + "fields": { + "id_car_serie": 3357, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17628, + "fields": { + "id_car_serie": 3357, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17630, + "fields": { + "id_car_serie": 3357, + "name": "1.8 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17631, + "fields": { + "id_car_serie": 3357, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17633, + "fields": { + "id_car_serie": 3357, + "name": "1.8 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17634, + "fields": { + "id_car_serie": 3357, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17635, + "fields": { + "id_car_serie": 3357, + "name": "1.8 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17638, + "fields": { + "id_car_serie": 3357, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17641, + "fields": { + "id_car_serie": 3357, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17645, + "fields": { + "id_car_serie": 3357, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17646, + "fields": { + "id_car_serie": 3357, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17648, + "fields": { + "id_car_serie": 3357, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17649, + "fields": { + "id_car_serie": 3357, + "name": "2.0 Cosworth MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17653, + "fields": { + "id_car_serie": 3358, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17654, + "fields": { + "id_car_serie": 3358, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17655, + "fields": { + "id_car_serie": 3358, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17657, + "fields": { + "id_car_serie": 3358, + "name": "1.8 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17658, + "fields": { + "id_car_serie": 3358, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17660, + "fields": { + "id_car_serie": 3358, + "name": "1.8 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17661, + "fields": { + "id_car_serie": 3358, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17663, + "fields": { + "id_car_serie": 3358, + "name": "1.8 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17664, + "fields": { + "id_car_serie": 3358, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17668, + "fields": { + "id_car_serie": 3358, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17670, + "fields": { + "id_car_serie": 3358, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17672, + "fields": { + "id_car_serie": 3358, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17673, + "fields": { + "id_car_serie": 3358, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17674, + "fields": { + "id_car_serie": 3358, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17675, + "fields": { + "id_car_serie": 3358, + "name": "2.0 4x4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17683, + "fields": { + "id_car_serie": 3358, + "name": "2.9 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17684, + "fields": { + "id_car_serie": 3358, + "name": "2.9 MT 4x4 (145 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17685, + "fields": { + "id_car_serie": 3358, + "name": "2.9 MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17686, + "fields": { + "id_car_serie": 3359, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17687, + "fields": { + "id_car_serie": 3359, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17688, + "fields": { + "id_car_serie": 3359, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17690, + "fields": { + "id_car_serie": 3359, + "name": "1.8 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17691, + "fields": { + "id_car_serie": 3359, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17693, + "fields": { + "id_car_serie": 3359, + "name": "1.8 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17694, + "fields": { + "id_car_serie": 3359, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17696, + "fields": { + "id_car_serie": 3359, + "name": "1.8 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17697, + "fields": { + "id_car_serie": 3359, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17701, + "fields": { + "id_car_serie": 3359, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17703, + "fields": { + "id_car_serie": 3359, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17705, + "fields": { + "id_car_serie": 3359, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17706, + "fields": { + "id_car_serie": 3359, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17707, + "fields": { + "id_car_serie": 3359, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17708, + "fields": { + "id_car_serie": 3359, + "name": "2.0 MT 4x4 (120 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17711, + "fields": { + "id_car_serie": 3359, + "name": "2.0 Cosworth MT (220 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17716, + "fields": { + "id_car_serie": 3359, + "name": "2.9 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17717, + "fields": { + "id_car_serie": 3359, + "name": "2.9 MT 4x4 (145 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17718, + "fields": { + "id_car_serie": 3359, + "name": "2.9 MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17719, + "fields": { + "id_car_serie": 3360, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17720, + "fields": { + "id_car_serie": 3360, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17721, + "fields": { + "id_car_serie": 3360, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17723, + "fields": { + "id_car_serie": 3360, + "name": "1.8 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17724, + "fields": { + "id_car_serie": 3360, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17726, + "fields": { + "id_car_serie": 3360, + "name": "1.8 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17727, + "fields": { + "id_car_serie": 3360, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17728, + "fields": { + "id_car_serie": 3360, + "name": "1.8 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17729, + "fields": { + "id_car_serie": 3360, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17734, + "fields": { + "id_car_serie": 3360, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17736, + "fields": { + "id_car_serie": 3360, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17738, + "fields": { + "id_car_serie": 3360, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17739, + "fields": { + "id_car_serie": 3360, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17741, + "fields": { + "id_car_serie": 3360, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17747, + "fields": { + "id_car_serie": 3360, + "name": "2.9 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17749, + "fields": { + "id_car_serie": 3361, + "name": "4.0 AT 4x4 (210 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17751, + "fields": { + "id_car_serie": 3362, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17752, + "fields": { + "id_car_serie": 3362, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17753, + "fields": { + "id_car_serie": 3362, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17754, + "fields": { + "id_car_serie": 3363, + "name": "3.5 AT (263 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17755, + "fields": { + "id_car_serie": 3364, + "name": "2.3 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17757, + "fields": { + "id_car_serie": 3364, + "name": "2.3 AT (99 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17758, + "fields": { + "id_car_serie": 3364, + "name": "2.3 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17760, + "fields": { + "id_car_serie": 3364, + "name": "2.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17761, + "fields": { + "id_car_serie": 3364, + "name": "3.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17765, + "fields": { + "id_car_serie": 3365, + "name": "2.3 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17766, + "fields": { + "id_car_serie": 3365, + "name": "2.3 AT AWD (102 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17768, + "fields": { + "id_car_serie": 3365, + "name": "2.3 AT (99 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17770, + "fields": { + "id_car_serie": 3365, + "name": "2.3 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17771, + "fields": { + "id_car_serie": 3365, + "name": "2.3 MT AWD (102 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17773, + "fields": { + "id_car_serie": 3365, + "name": "2.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17774, + "fields": { + "id_car_serie": 3365, + "name": "3.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17775, + "fields": { + "id_car_serie": 3366, + "name": "4.0 AT (256 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17776, + "fields": { + "id_car_serie": 3366, + "name": "4.0 AT (284 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17777, + "fields": { + "id_car_serie": 3367, + "name": "1.3 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17778, + "fields": { + "id_car_serie": 3367, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17779, + "fields": { + "id_car_serie": 3368, + "name": "1.3 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17780, + "fields": { + "id_car_serie": 3368, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17784, + "fields": { + "id_car_serie": 3369, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17788, + "fields": { + "id_car_serie": 3370, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17789, + "fields": { + "id_car_serie": 3371, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17791, + "fields": { + "id_car_serie": 3371, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17792, + "fields": { + "id_car_serie": 3372, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17793, + "fields": { + "id_car_serie": 3373, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17794, + "fields": { + "id_car_serie": 3374, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17795, + "fields": { + "id_car_serie": 3375, + "name": "1.0 AT (56 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17796, + "fields": { + "id_car_serie": 3375, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17797, + "fields": { + "id_car_serie": 3375, + "name": "1.3 AT (70 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17798, + "fields": { + "id_car_serie": 3375, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17799, + "fields": { + "id_car_serie": 3376, + "name": "1.0 AT (56 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17800, + "fields": { + "id_car_serie": 3376, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17801, + "fields": { + "id_car_serie": 3376, + "name": "1.3 AT (70 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17802, + "fields": { + "id_car_serie": 3376, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17803, + "fields": { + "id_car_serie": 3377, + "name": "1.0 AT (56 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17804, + "fields": { + "id_car_serie": 3377, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17805, + "fields": { + "id_car_serie": 3377, + "name": "1.3 AT (70 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17806, + "fields": { + "id_car_serie": 3377, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17809, + "fields": { + "id_car_serie": 3378, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17821, + "fields": { + "id_car_serie": 3381, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17825, + "fields": { + "id_car_serie": 3382, + "name": "2.8 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17837, + "fields": { + "id_car_serie": 3386, + "name": "4.3 AT (192 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17838, + "fields": { + "id_car_serie": 3386, + "name": "4.3 AT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17839, + "fields": { + "id_car_serie": 3387, + "name": "4.3 AT (192 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17840, + "fields": { + "id_car_serie": 3387, + "name": "4.3 AT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17843, + "fields": { + "id_car_serie": 3389, + "name": "4.8 AT (285 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17844, + "fields": { + "id_car_serie": 3389, + "name": "5.3 AT (301 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17845, + "fields": { + "id_car_serie": 3389, + "name": "5.3 AT AWD (301 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17846, + "fields": { + "id_car_serie": 3389, + "name": "6.0 AT (323 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17847, + "fields": { + "id_car_serie": 3389, + "name": "6.0 AT AWD (323 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17848, + "fields": { + "id_car_serie": 3390, + "name": "4.3 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17851, + "fields": { + "id_car_serie": 3391, + "name": "4.3 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17856, + "fields": { + "id_car_serie": 3392, + "name": "6.0 AT (323 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17861, + "fields": { + "id_car_serie": 3394, + "name": "2.2 AT SWB 2WD (120 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17862, + "fields": { + "id_car_serie": 3394, + "name": "2.2 MT SWB 2WD (120 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17863, + "fields": { + "id_car_serie": 3394, + "name": "4.3 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17864, + "fields": { + "id_car_serie": 3394, + "name": "4.3 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17869, + "fields": { + "id_car_serie": 3396, + "name": "5.3 AT XL 4WD (324 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17870, + "fields": { + "id_car_serie": 3396, + "name": "5.3 AT (320 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17871, + "fields": { + "id_car_serie": 3396, + "name": "6.2 AT (385 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17872, + "fields": { + "id_car_serie": 3396, + "name": "6.2 AT 4WD (385 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17893, + "fields": { + "id_car_serie": 3402, + "name": "1.8 CVT (112 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17894, + "fields": { + "id_car_serie": 3402, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17895, + "fields": { + "id_car_serie": 3403, + "name": "1.8 CVT (112 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17896, + "fields": { + "id_car_serie": 3403, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17898, + "fields": { + "id_car_serie": 3404, + "name": "2.2 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17899, + "fields": { + "id_car_serie": 3404, + "name": "3.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17900, + "fields": { + "id_car_serie": 3404, + "name": "3.0 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17902, + "fields": { + "id_car_serie": 3405, + "name": "2.2 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17904, + "fields": { + "id_car_serie": 3406, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17905, + "fields": { + "id_car_serie": 3406, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17907, + "fields": { + "id_car_serie": 3406, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17909, + "fields": { + "id_car_serie": 3407, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17910, + "fields": { + "id_car_serie": 3407, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17912, + "fields": { + "id_car_serie": 3407, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17913, + "fields": { + "id_car_serie": 3408, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17915, + "fields": { + "id_car_serie": 3408, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17916, + "fields": { + "id_car_serie": 3409, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17917, + "fields": { + "id_car_serie": 3409, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17918, + "fields": { + "id_car_serie": 3409, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17919, + "fields": { + "id_car_serie": 3409, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17920, + "fields": { + "id_car_serie": 3410, + "name": "3.8 AT (207 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17921, + "fields": { + "id_car_serie": 3410, + "name": "3.8 AT (233 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17922, + "fields": { + "id_car_serie": 3410, + "name": "5.0 AT (243 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17923, + "fields": { + "id_car_serie": 3410, + "name": "5.7 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17924, + "fields": { + "id_car_serie": 3411, + "name": "3.8 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17925, + "fields": { + "id_car_serie": 3411, + "name": "3.8 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17926, + "fields": { + "id_car_serie": 3411, + "name": "3.8 AT (233 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17927, + "fields": { + "id_car_serie": 3411, + "name": "5.7 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17928, + "fields": { + "id_car_serie": 3412, + "name": "3.8 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17929, + "fields": { + "id_car_serie": 3412, + "name": "3.8 AT (207 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17930, + "fields": { + "id_car_serie": 3412, + "name": "3.8 AT (233 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17931, + "fields": { + "id_car_serie": 3412, + "name": "3.8 MT (207 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17932, + "fields": { + "id_car_serie": 3412, + "name": "5.7 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17933, + "fields": { + "id_car_serie": 3413, + "name": "3.8 AT (207 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17934, + "fields": { + "id_car_serie": 3413, + "name": "3.8 AT (233 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17935, + "fields": { + "id_car_serie": 3413, + "name": "3.8 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17936, + "fields": { + "id_car_serie": 3413, + "name": "3.8 MT (207 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17938, + "fields": { + "id_car_serie": 3413, + "name": "5.7 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17940, + "fields": { + "id_car_serie": 3413, + "name": "5.7 MT (300 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17941, + "fields": { + "id_car_serie": 3413, + "name": "5.7 MT (320 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17942, + "fields": { + "id_car_serie": 3414, + "name": "3.8 AT VH (200 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17943, + "fields": { + "id_car_serie": 3414, + "name": "3.8 AT VH (207 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17944, + "fields": { + "id_car_serie": 3414, + "name": "3.8 AT VH (233 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17945, + "fields": { + "id_car_serie": 3414, + "name": "5.7 AT VH (306 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17946, + "fields": { + "id_car_serie": 3415, + "name": "3.6 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17949, + "fields": { + "id_car_serie": 3415, + "name": "3.6 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17950, + "fields": { + "id_car_serie": 3415, + "name": "3.6 MT Omega (265 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17952, + "fields": { + "id_car_serie": 3415, + "name": "6.0 MT (367 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17954, + "fields": { + "id_car_serie": 3416, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17955, + "fields": { + "id_car_serie": 3416, + "name": "2.2 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17956, + "fields": { + "id_car_serie": 3416, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17957, + "fields": { + "id_car_serie": 3417, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17958, + "fields": { + "id_car_serie": 3418, + "name": "2.4 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17959, + "fields": { + "id_car_serie": 3418, + "name": "2.4 CVT (185 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17960, + "fields": { + "id_car_serie": 3418, + "name": "2.4 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17961, + "fields": { + "id_car_serie": 3418, + "name": "2.4 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17962, + "fields": { + "id_car_serie": 3418, + "name": "3.5 AT (281 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17963, + "fields": { + "id_car_serie": 3419, + "name": "2.4 CVT (185 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17964, + "fields": { + "id_car_serie": 3419, + "name": "2.4 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17965, + "fields": { + "id_car_serie": 3419, + "name": "3.5 AT (281 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17966, + "fields": { + "id_car_serie": 3419, + "name": "3.5 MT (281 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17968, + "fields": { + "id_car_serie": 3420, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17969, + "fields": { + "id_car_serie": 3420, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 17973, + "fields": { + "id_car_serie": 3421, + "name": "1.5 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17985, + "fields": { + "id_car_serie": 3423, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17988, + "fields": { + "id_car_serie": 3423, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17989, + "fields": { + "id_car_serie": 3423, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17991, + "fields": { + "id_car_serie": 3424, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17994, + "fields": { + "id_car_serie": 3424, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17995, + "fields": { + "id_car_serie": 3424, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17996, + "fields": { + "id_car_serie": 3425, + "name": "2.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17997, + "fields": { + "id_car_serie": 3425, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17998, + "fields": { + "id_car_serie": 3425, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 17999, + "fields": { + "id_car_serie": 3425, + "name": "2.0 MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18000, + "fields": { + "id_car_serie": 3425, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18001, + "fields": { + "id_car_serie": 3425, + "name": "2.2 i-DTEC AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18002, + "fields": { + "id_car_serie": 3425, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18003, + "fields": { + "id_car_serie": 3425, + "name": "2.2 i-DTEC MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18004, + "fields": { + "id_car_serie": 3425, + "name": "2.4 AT 4WD (187 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18005, + "fields": { + "id_car_serie": 3425, + "name": "2.4 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18008, + "fields": { + "id_car_serie": 3426, + "name": "1.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18009, + "fields": { + "id_car_serie": 3427, + "name": "2.4 AT (194 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18010, + "fields": { + "id_car_serie": 3427, + "name": "3.5 AT (281 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18011, + "fields": { + "id_car_serie": 3427, + "name": "3.5 AT 4WD (281 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18012, + "fields": { + "id_car_serie": 3428, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18013, + "fields": { + "id_car_serie": 3428, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18014, + "fields": { + "id_car_serie": 3428, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18015, + "fields": { + "id_car_serie": 3428, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18016, + "fields": { + "id_car_serie": 3429, + "name": "2.4 AT (166 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18017, + "fields": { + "id_car_serie": 3429, + "name": "2.4 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18018, + "fields": { + "id_car_serie": 3429, + "name": "2.4 MT (166 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18019, + "fields": { + "id_car_serie": 3429, + "name": "2.4 MT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18021, + "fields": { + "id_car_serie": 3430, + "name": "1.3 CVT (100 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18022, + "fields": { + "id_car_serie": 3430, + "name": "1.3 CVT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18023, + "fields": { + "id_car_serie": 3430, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18028, + "fields": { + "id_car_serie": 3430, + "name": "1.5 CVT 4WD (132 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18029, + "fields": { + "id_car_serie": 3430, + "name": "1.5 CVT (132 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18032, + "fields": { + "id_car_serie": 3431, + "name": "1.6 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18033, + "fields": { + "id_car_serie": 3431, + "name": "1.6 CVT (105 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18034, + "fields": { + "id_car_serie": 3431, + "name": "1.6 CVT (124 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18035, + "fields": { + "id_car_serie": 3431, + "name": "1.6 CVT (124 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18036, + "fields": { + "id_car_serie": 3431, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18037, + "fields": { + "id_car_serie": 3431, + "name": "1.6 MT (105 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18038, + "fields": { + "id_car_serie": 3431, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18039, + "fields": { + "id_car_serie": 3431, + "name": "1.6 MT (124 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18040, + "fields": { + "id_car_serie": 3432, + "name": "1.6 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18041, + "fields": { + "id_car_serie": 3432, + "name": "1.6 CVT (105 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18042, + "fields": { + "id_car_serie": 3432, + "name": "1.6 CVT (124 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18043, + "fields": { + "id_car_serie": 3432, + "name": "1.6 CVT (124 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18044, + "fields": { + "id_car_serie": 3432, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18045, + "fields": { + "id_car_serie": 3432, + "name": "1.6 MT (105 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18046, + "fields": { + "id_car_serie": 3432, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18047, + "fields": { + "id_car_serie": 3432, + "name": "1.6 MT (124 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18050, + "fields": { + "id_car_serie": 3434, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18054, + "fields": { + "id_car_serie": 3435, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18056, + "fields": { + "id_car_serie": 3436, + "name": "1.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18061, + "fields": { + "id_car_serie": 3437, + "name": "3.5 AT (295 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18062, + "fields": { + "id_car_serie": 3437, + "name": "3.5 AT (300 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18063, + "fields": { + "id_car_serie": 3438, + "name": "0.7 AT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18064, + "fields": { + "id_car_serie": 3438, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18065, + "fields": { + "id_car_serie": 3438, + "name": "0.7 T AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18066, + "fields": { + "id_car_serie": 3438, + "name": "0.7 T AT (64 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18067, + "fields": { + "id_car_serie": 3439, + "name": "1.3 AT (66 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18068, + "fields": { + "id_car_serie": 3439, + "name": "1.3 CVT 4WD (66 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18069, + "fields": { + "id_car_serie": 3439, + "name": "1.3 MT (66 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18070, + "fields": { + "id_car_serie": 3440, + "name": "1.3 AT (66 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18071, + "fields": { + "id_car_serie": 3440, + "name": "1.3 CVT 4WD (66 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18072, + "fields": { + "id_car_serie": 3440, + "name": "1.3 MT (66 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18073, + "fields": { + "id_car_serie": 3441, + "name": "3.5 AT (248 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18074, + "fields": { + "id_car_serie": 3442, + "name": "2.4 AT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18077, + "fields": { + "id_car_serie": 3442, + "name": "2.4 CVT (173 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18078, + "fields": { + "id_car_serie": 3443, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18079, + "fields": { + "id_car_serie": 3443, + "name": "1.5 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18080, + "fields": { + "id_car_serie": 3444, + "name": "3.2 AT 4WD (208 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18081, + "fields": { + "id_car_serie": 3444, + "name": "3.2 AT (208 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18082, + "fields": { + "id_car_serie": 3444, + "name": "3.2 MT 4WD (208 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18083, + "fields": { + "id_car_serie": 3444, + "name": "3.2 MT (208 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18086, + "fields": { + "id_car_serie": 3445, + "name": "3.5 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18087, + "fields": { + "id_car_serie": 3445, + "name": "3.5 AT 4WD (257 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18088, + "fields": { + "id_car_serie": 3446, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18089, + "fields": { + "id_car_serie": 3446, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18090, + "fields": { + "id_car_serie": 3446, + "name": "2.2 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18091, + "fields": { + "id_car_serie": 3446, + "name": "2.2 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18092, + "fields": { + "id_car_serie": 3446, + "name": "2.2 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18093, + "fields": { + "id_car_serie": 3446, + "name": "2.2 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18094, + "fields": { + "id_car_serie": 3447, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18095, + "fields": { + "id_car_serie": 3447, + "name": "3.2 AT (225 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18096, + "fields": { + "id_car_serie": 3448, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18097, + "fields": { + "id_car_serie": 3448, + "name": "2.0 sVT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18098, + "fields": { + "id_car_serie": 3449, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18099, + "fields": { + "id_car_serie": 3449, + "name": "1.8 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18100, + "fields": { + "id_car_serie": 3449, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18101, + "fields": { + "id_car_serie": 3449, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18107, + "fields": { + "id_car_serie": 3452, + "name": "6.5 D AT (197 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18110, + "fields": { + "id_car_serie": 3454, + "name": "6.0 AT (325 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18112, + "fields": { + "id_car_serie": 3455, + "name": "6.0 AT (320 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18113, + "fields": { + "id_car_serie": 3456, + "name": "1.4 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18114, + "fields": { + "id_car_serie": 3456, + "name": "1.4 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18115, + "fields": { + "id_car_serie": 3456, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18117, + "fields": { + "id_car_serie": 3456, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18119, + "fields": { + "id_car_serie": 3456, + "name": "1.6 CRDi AT (128 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18120, + "fields": { + "id_car_serie": 3456, + "name": "1.6 CRDi MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18121, + "fields": { + "id_car_serie": 3457, + "name": "1.6 CRDi AT (128 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18122, + "fields": { + "id_car_serie": 3457, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18124, + "fields": { + "id_car_serie": 3458, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18126, + "fields": { + "id_car_serie": 3458, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18131, + "fields": { + "id_car_serie": 3459, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18133, + "fields": { + "id_car_serie": 3459, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18134, + "fields": { + "id_car_serie": 3459, + "name": "2.7 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18136, + "fields": { + "id_car_serie": 3459, + "name": "2.7 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18142, + "fields": { + "id_car_serie": 3461, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18143, + "fields": { + "id_car_serie": 3461, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18144, + "fields": { + "id_car_serie": 3461, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18145, + "fields": { + "id_car_serie": 3461, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18146, + "fields": { + "id_car_serie": 3462, + "name": "3.8 AT (290 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18147, + "fields": { + "id_car_serie": 3462, + "name": "4.6 AT (373 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18150, + "fields": { + "id_car_serie": 3463, + "name": "1.3 MT (77 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18151, + "fields": { + "id_car_serie": 3463, + "name": "1.5 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18152, + "fields": { + "id_car_serie": 3463, + "name": "1.5 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18153, + "fields": { + "id_car_serie": 3463, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18154, + "fields": { + "id_car_serie": 3463, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18155, + "fields": { + "id_car_serie": 3464, + "name": "2.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18156, + "fields": { + "id_car_serie": 3464, + "name": "2.5 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18158, + "fields": { + "id_car_serie": 3464, + "name": "2.5 TD MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18159, + "fields": { + "id_car_serie": 3464, + "name": "2.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18161, + "fields": { + "id_car_serie": 3464, + "name": "2.5 TD MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18162, + "fields": { + "id_car_serie": 3464, + "name": "3.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18163, + "fields": { + "id_car_serie": 3464, + "name": "3.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18164, + "fields": { + "id_car_serie": 3464, + "name": "3.0 MT (161 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18165, + "fields": { + "id_car_serie": 3465, + "name": "2.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18166, + "fields": { + "id_car_serie": 3465, + "name": "2.5 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18168, + "fields": { + "id_car_serie": 3465, + "name": "2.5 TD MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18169, + "fields": { + "id_car_serie": 3465, + "name": "2.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18171, + "fields": { + "id_car_serie": 3465, + "name": "2.5 TD MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18173, + "fields": { + "id_car_serie": 3465, + "name": "3.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18175, + "fields": { + "id_car_serie": 3465, + "name": "3.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18176, + "fields": { + "id_car_serie": 3465, + "name": "3.0 MT (161 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18177, + "fields": { + "id_car_serie": 3466, + "name": "3.0 AT (249 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18178, + "fields": { + "id_car_serie": 3466, + "name": "3.0 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18179, + "fields": { + "id_car_serie": 3466, + "name": "3.8 AT AWD (315 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18183, + "fields": { + "id_car_serie": 3467, + "name": "1.4 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18184, + "fields": { + "id_car_serie": 3467, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18185, + "fields": { + "id_car_serie": 3467, + "name": "1.5 CRDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18187, + "fields": { + "id_car_serie": 3467, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18188, + "fields": { + "id_car_serie": 3467, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18192, + "fields": { + "id_car_serie": 3468, + "name": "1.4 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18193, + "fields": { + "id_car_serie": 3468, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18194, + "fields": { + "id_car_serie": 3468, + "name": "1.5 CRDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18196, + "fields": { + "id_car_serie": 3468, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18197, + "fields": { + "id_car_serie": 3468, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18198, + "fields": { + "id_car_serie": 3469, + "name": "2.4 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18199, + "fields": { + "id_car_serie": 3469, + "name": "3.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18203, + "fields": { + "id_car_serie": 3470, + "name": "1.2 AT (78 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18204, + "fields": { + "id_car_serie": 3470, + "name": "1.2 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18205, + "fields": { + "id_car_serie": 3471, + "name": "1.1 CRDi blue MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18208, + "fields": { + "id_car_serie": 3471, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18209, + "fields": { + "id_car_serie": 3471, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18210, + "fields": { + "id_car_serie": 3471, + "name": "1.4 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18221, + "fields": { + "id_car_serie": 3473, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18222, + "fields": { + "id_car_serie": 3473, + "name": "1.4 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18223, + "fields": { + "id_car_serie": 3473, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18224, + "fields": { + "id_car_serie": 3473, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18225, + "fields": { + "id_car_serie": 3473, + "name": "1.6 TD AT (128 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18226, + "fields": { + "id_car_serie": 3473, + "name": "1.6 TD MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18227, + "fields": { + "id_car_serie": 3474, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18228, + "fields": { + "id_car_serie": 3474, + "name": "1.4 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18229, + "fields": { + "id_car_serie": 3474, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18230, + "fields": { + "id_car_serie": 3474, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18231, + "fields": { + "id_car_serie": 3474, + "name": "1.6 TD AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18232, + "fields": { + "id_car_serie": 3474, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18233, + "fields": { + "id_car_serie": 3474, + "name": "1.6 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18234, + "fields": { + "id_car_serie": 3474, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18235, + "fields": { + "id_car_serie": 3475, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18236, + "fields": { + "id_car_serie": 3475, + "name": "1.4 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18238, + "fields": { + "id_car_serie": 3475, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18239, + "fields": { + "id_car_serie": 3475, + "name": "1.6 TD AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18240, + "fields": { + "id_car_serie": 3475, + "name": "1.6 TD AT (128 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18241, + "fields": { + "id_car_serie": 3475, + "name": "1.6 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18242, + "fields": { + "id_car_serie": 3475, + "name": "1.6 TD MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18259, + "fields": { + "id_car_serie": 3478, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18260, + "fields": { + "id_car_serie": 3478, + "name": "1.6 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18262, + "fields": { + "id_car_serie": 3478, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18263, + "fields": { + "id_car_serie": 3478, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18264, + "fields": { + "id_car_serie": 3478, + "name": "1.8 AT (128 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18265, + "fields": { + "id_car_serie": 3478, + "name": "1.8 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18268, + "fields": { + "id_car_serie": 3479, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18269, + "fields": { + "id_car_serie": 3479, + "name": "1.6 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18271, + "fields": { + "id_car_serie": 3479, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18272, + "fields": { + "id_car_serie": 3479, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18273, + "fields": { + "id_car_serie": 3479, + "name": "1.8 AT (128 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18274, + "fields": { + "id_car_serie": 3479, + "name": "1.8 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18278, + "fields": { + "id_car_serie": 3480, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18280, + "fields": { + "id_car_serie": 3480, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18281, + "fields": { + "id_car_serie": 3481, + "name": "2.0 CRDi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18282, + "fields": { + "id_car_serie": 3481, + "name": "2.0 CRDi AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18283, + "fields": { + "id_car_serie": 3481, + "name": "2.0 CRDi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18284, + "fields": { + "id_car_serie": 3481, + "name": "2.2 CRDi AT (197 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18285, + "fields": { + "id_car_serie": 3481, + "name": "2.2 CRDi AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18286, + "fields": { + "id_car_serie": 3481, + "name": "2.2 CRDi MT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18287, + "fields": { + "id_car_serie": 3481, + "name": "2.2 CRDi MT (197 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18288, + "fields": { + "id_car_serie": 3481, + "name": "2.4 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18289, + "fields": { + "id_car_serie": 3481, + "name": "2.4 AT 4WD (7 places) (175 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18290, + "fields": { + "id_car_serie": 3481, + "name": "2.4 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18291, + "fields": { + "id_car_serie": 3481, + "name": "2.4 MT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18300, + "fields": { + "id_car_serie": 3484, + "name": "2.0 MPi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18301, + "fields": { + "id_car_serie": 3484, + "name": "2.0 T GDi AT (274 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18302, + "fields": { + "id_car_serie": 3484, + "name": "2.0 MPi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18303, + "fields": { + "id_car_serie": 3484, + "name": "2.4 MPi AT (178 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18304, + "fields": { + "id_car_serie": 3484, + "name": "2.4 MPi MT (178 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18306, + "fields": { + "id_car_serie": 3485, + "name": "2.4 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18309, + "fields": { + "id_car_serie": 3485, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18310, + "fields": { + "id_car_serie": 3485, + "name": "2.5 CRDi 6MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18311, + "fields": { + "id_car_serie": 3485, + "name": "2.5 CRDi MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18312, + "fields": { + "id_car_serie": 3486, + "name": "2.0 AT (142 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18314, + "fields": { + "id_car_serie": 3486, + "name": "2.0 MT (142 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18316, + "fields": { + "id_car_serie": 3486, + "name": "2.7 AT (172 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18317, + "fields": { + "id_car_serie": 3486, + "name": "2.7 6MT (172 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18318, + "fields": { + "id_car_serie": 3487, + "name": "2.0 AT AWD (164 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18319, + "fields": { + "id_car_serie": 3487, + "name": "2.4 AT 2WD (176 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18320, + "fields": { + "id_car_serie": 3487, + "name": "2.0 CRDi AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18321, + "fields": { + "id_car_serie": 3487, + "name": "2.0 CRDi AT 2WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18322, + "fields": { + "id_car_serie": 3487, + "name": "2.0 MT AWD (164 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18323, + "fields": { + "id_car_serie": 3487, + "name": "2.0 CRDi MT AWD (184 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18324, + "fields": { + "id_car_serie": 3487, + "name": "2.4 AT 2WD (182 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18326, + "fields": { + "id_car_serie": 3488, + "name": "1.4 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18327, + "fields": { + "id_car_serie": 3488, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18328, + "fields": { + "id_car_serie": 3488, + "name": "1.5 CRDi AT (112 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18329, + "fields": { + "id_car_serie": 3488, + "name": "1.5 MT CRDi (112 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18330, + "fields": { + "id_car_serie": 3488, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18331, + "fields": { + "id_car_serie": 3488, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18332, + "fields": { + "id_car_serie": 3489, + "name": "1.4 MT (108 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18335, + "fields": { + "id_car_serie": 3489, + "name": "1.6 MT CRDi (128 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18347, + "fields": { + "id_car_serie": 3493, + "name": "3.5 MT (309 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18350, + "fields": { + "id_car_serie": 3493, + "name": "3.7 MT (333 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18355, + "fields": { + "id_car_serie": 3496, + "name": "Q45 AT (340 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18357, + "fields": { + "id_car_serie": 3498, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18358, + "fields": { + "id_car_serie": 3499, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18359, + "fields": { + "id_car_serie": 3499, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18360, + "fields": { + "id_car_serie": 3499, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18361, + "fields": { + "id_car_serie": 3499, + "name": "1.6 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18362, + "fields": { + "id_car_serie": 3499, + "name": "1.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18363, + "fields": { + "id_car_serie": 3500, + "name": "1.0 MT (48 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18366, + "fields": { + "id_car_serie": 3501, + "name": "1.0 MT (48 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18367, + "fields": { + "id_car_serie": 3501, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18368, + "fields": { + "id_car_serie": 3501, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18369, + "fields": { + "id_car_serie": 3502, + "name": "2.2 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18372, + "fields": { + "id_car_serie": 3502, + "name": "3.2 MT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18374, + "fields": { + "id_car_serie": 3503, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18375, + "fields": { + "id_car_serie": 3503, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18376, + "fields": { + "id_car_serie": 3503, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18377, + "fields": { + "id_car_serie": 3503, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18398, + "fields": { + "id_car_serie": 3506, + "name": "2.5 d MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18399, + "fields": { + "id_car_serie": 3506, + "name": "3.0 d MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18400, + "fields": { + "id_car_serie": 54076, + "name": "2.5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18406, + "fields": { + "id_car_serie": 3509, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18407, + "fields": { + "id_car_serie": 3509, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18408, + "fields": { + "id_car_serie": 3509, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18409, + "fields": { + "id_car_serie": 3509, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18412, + "fields": { + "id_car_serie": 3510, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18413, + "fields": { + "id_car_serie": 3510, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18436, + "fields": { + "id_car_serie": 3514, + "name": "3.0 TD AT AWD (145 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18440, + "fields": { + "id_car_serie": 3514, + "name": "3.2 AT AWD (215 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18446, + "fields": { + "id_car_serie": 3515, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18448, + "fields": { + "id_car_serie": 3515, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18450, + "fields": { + "id_car_serie": 3516, + "name": "2.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18451, + "fields": { + "id_car_serie": 3516, + "name": "2.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18456, + "fields": { + "id_car_serie": 3517, + "name": "2.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18457, + "fields": { + "id_car_serie": 3517, + "name": "2.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18462, + "fields": { + "id_car_serie": 3518, + "name": "2.2 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18463, + "fields": { + "id_car_serie": 3518, + "name": "2.2 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18464, + "fields": { + "id_car_serie": 3518, + "name": "2.3 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18465, + "fields": { + "id_car_serie": 3518, + "name": "2.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18466, + "fields": { + "id_car_serie": 3518, + "name": "2.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18467, + "fields": { + "id_car_serie": 3518, + "name": "2.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18468, + "fields": { + "id_car_serie": 3518, + "name": "2.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18469, + "fields": { + "id_car_serie": 3518, + "name": "2.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18470, + "fields": { + "id_car_serie": 3518, + "name": "3.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18471, + "fields": { + "id_car_serie": 3518, + "name": "3.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18472, + "fields": { + "id_car_serie": 3519, + "name": "2.2 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18473, + "fields": { + "id_car_serie": 3519, + "name": "2.2 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18474, + "fields": { + "id_car_serie": 3519, + "name": "2.3 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18475, + "fields": { + "id_car_serie": 3519, + "name": "2.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18476, + "fields": { + "id_car_serie": 3519, + "name": "2.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18477, + "fields": { + "id_car_serie": 3519, + "name": "2.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18478, + "fields": { + "id_car_serie": 3519, + "name": "2.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18479, + "fields": { + "id_car_serie": 3519, + "name": "2.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18480, + "fields": { + "id_car_serie": 3519, + "name": "3.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18481, + "fields": { + "id_car_serie": 3519, + "name": "3.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18482, + "fields": { + "id_car_serie": 3520, + "name": "2.2 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18483, + "fields": { + "id_car_serie": 3520, + "name": "2.2 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18484, + "fields": { + "id_car_serie": 3520, + "name": "2.3 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18485, + "fields": { + "id_car_serie": 3520, + "name": "2.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18486, + "fields": { + "id_car_serie": 3520, + "name": "2.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18487, + "fields": { + "id_car_serie": 3520, + "name": "2.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18488, + "fields": { + "id_car_serie": 3520, + "name": "2.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18489, + "fields": { + "id_car_serie": 3520, + "name": "2.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18490, + "fields": { + "id_car_serie": 3520, + "name": "3.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18491, + "fields": { + "id_car_serie": 3520, + "name": "3.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18495, + "fields": { + "id_car_serie": 3521, + "name": "3.1 D MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18498, + "fields": { + "id_car_serie": 3521, + "name": "3.2 DTI MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18499, + "fields": { + "id_car_serie": 3521, + "name": "3.2 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18501, + "fields": { + "id_car_serie": 3521, + "name": "3.5 MT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18503, + "fields": { + "id_car_serie": 3522, + "name": "3.0 DTI 4WD MT (159 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18504, + "fields": { + "id_car_serie": 3522, + "name": "3.1 D MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18509, + "fields": { + "id_car_serie": 3522, + "name": "3.5 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18510, + "fields": { + "id_car_serie": 3522, + "name": "3.5 MT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18515, + "fields": { + "id_car_serie": 3524, + "name": "1.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18523, + "fields": { + "id_car_serie": 3529, + "name": "4.2 MT (173 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18524, + "fields": { + "id_car_serie": 3529, + "name": "5.3 MT (276 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18525, + "fields": { + "id_car_serie": 3530, + "name": "3.0 V6 AT (340 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18526, + "fields": { + "id_car_serie": 3530, + "name": "S 3.0 V6 AT (380 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18527, + "fields": { + "id_car_serie": 3530, + "name": "R 5.0 V8 AT (550 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18528, + "fields": { + "id_car_serie": 3531, + "name": "3.0 V6 AT (340 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18529, + "fields": { + "id_car_serie": 3531, + "name": "S 3.0 V6 AT (380 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18530, + "fields": { + "id_car_serie": 3531, + "name": "S 5.0 V8 AT (495 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18531, + "fields": { + "id_car_serie": 3532, + "name": "2.0 D MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18532, + "fields": { + "id_car_serie": 3532, + "name": "2.1 AT (157 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18533, + "fields": { + "id_car_serie": 3532, + "name": "2.1 MT (157 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18534, + "fields": { + "id_car_serie": 3532, + "name": "2.2 D AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18535, + "fields": { + "id_car_serie": 3532, + "name": "2.2 D MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18536, + "fields": { + "id_car_serie": 3532, + "name": "2.2 D MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18537, + "fields": { + "id_car_serie": 3532, + "name": "2.5 AT (194 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18538, + "fields": { + "id_car_serie": 3532, + "name": "2.5 MT (194 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18539, + "fields": { + "id_car_serie": 3532, + "name": "3.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18540, + "fields": { + "id_car_serie": 3532, + "name": "3.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18541, + "fields": { + "id_car_serie": 3533, + "name": "2.0 D MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18542, + "fields": { + "id_car_serie": 3533, + "name": "2.1 AT (157 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18543, + "fields": { + "id_car_serie": 3533, + "name": "2.1 MT (157 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18544, + "fields": { + "id_car_serie": 3533, + "name": "2.2 D AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18545, + "fields": { + "id_car_serie": 3533, + "name": "2.2 D MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18546, + "fields": { + "id_car_serie": 3533, + "name": "2.2 D MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18547, + "fields": { + "id_car_serie": 3533, + "name": "2.5 AT (194 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18548, + "fields": { + "id_car_serie": 3533, + "name": "2.5 MT (194 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18549, + "fields": { + "id_car_serie": 3533, + "name": "3.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18550, + "fields": { + "id_car_serie": 3533, + "name": "3.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18554, + "fields": { + "id_car_serie": 3535, + "name": "2.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18557, + "fields": { + "id_car_serie": 3535, + "name": "3.0 AT (340 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18558, + "fields": { + "id_car_serie": 3535, + "name": "3.0 AT AWD (340 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18560, + "fields": { + "id_car_serie": 3535, + "name": "3.0 D AT (275 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18561, + "fields": { + "id_car_serie": 3535, + "name": "3.0 AT (238 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18571, + "fields": { + "id_car_serie": 3536, + "name": "5.0 AT (375 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18572, + "fields": { + "id_car_serie": 3536, + "name": "5.0 AT (470 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18573, + "fields": { + "id_car_serie": 3536, + "name": "5.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18576, + "fields": { + "id_car_serie": 3537, + "name": "4.0 AT (233 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18578, + "fields": { + "id_car_serie": 3537, + "name": "4.0 MT (226 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18579, + "fields": { + "id_car_serie": 3537, + "name": "4.0 MT (233 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18580, + "fields": { + "id_car_serie": 3537, + "name": "5.3 AT (284 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18581, + "fields": { + "id_car_serie": 3537, + "name": "6.0 AT (302 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18582, + "fields": { + "id_car_serie": 3537, + "name": "6.0 AT (318 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18584, + "fields": { + "id_car_serie": 3538, + "name": "4.0 AT (233 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18586, + "fields": { + "id_car_serie": 3538, + "name": "4.0 MT (226 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18587, + "fields": { + "id_car_serie": 3538, + "name": "4.0 MT (233 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18588, + "fields": { + "id_car_serie": 3538, + "name": "5.3 AT (284 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18589, + "fields": { + "id_car_serie": 3538, + "name": "6.0 AT (302 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18590, + "fields": { + "id_car_serie": 3538, + "name": "6.0 AT (318 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18596, + "fields": { + "id_car_serie": 3541, + "name": "2.0 TD AT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18599, + "fields": { + "id_car_serie": 3541, + "name": "2.4 Tigershark Multiair AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18600, + "fields": { + "id_car_serie": 3541, + "name": "2.4 Tigershark Multiair AT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18601, + "fields": { + "id_car_serie": 3541, + "name": "2.4 AT (187 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18602, + "fields": { + "id_car_serie": 3541, + "name": "2.4 AT AWD (187 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18603, + "fields": { + "id_car_serie": 3541, + "name": "3.2 Pentastar AT AWD (272 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18604, + "fields": { + "id_car_serie": 3541, + "name": "3.2 AT (271 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18609, + "fields": { + "id_car_serie": 3542, + "name": "2.4 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18610, + "fields": { + "id_car_serie": 3543, + "name": "3.0 TD Multijet II AT AWD (247 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18611, + "fields": { + "id_car_serie": 3543, + "name": "3.6 AT AWD (286 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18612, + "fields": { + "id_car_serie": 3543, + "name": "5.7 Hemi AT AWD (347 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18623, + "fields": { + "id_car_serie": 3545, + "name": "3.6 AT (284 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18625, + "fields": { + "id_car_serie": 3545, + "name": "3.8 AT (199 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18629, + "fields": { + "id_car_serie": 3546, + "name": "3.6 AT (284 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18631, + "fields": { + "id_car_serie": 3546, + "name": "3.8 AT (199 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18633, + "fields": { + "id_car_serie": 3547, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18634, + "fields": { + "id_car_serie": 3547, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18635, + "fields": { + "id_car_serie": 3547, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18636, + "fields": { + "id_car_serie": 3547, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18637, + "fields": { + "id_car_serie": 3548, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18638, + "fields": { + "id_car_serie": 3548, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18639, + "fields": { + "id_car_serie": 3549, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18640, + "fields": { + "id_car_serie": 3549, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18641, + "fields": { + "id_car_serie": 3550, + "name": "1.6 GDI MT (7 places) (135 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18652, + "fields": { + "id_car_serie": 3551, + "name": "2.9 CRDi AT (182 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18655, + "fields": { + "id_car_serie": 3551, + "name": "3.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18657, + "fields": { + "id_car_serie": 3552, + "name": "1.6 T-GDi MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18658, + "fields": { + "id_car_serie": 3553, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18659, + "fields": { + "id_car_serie": 3553, + "name": "1.4 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18660, + "fields": { + "id_car_serie": 3553, + "name": "1.6 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18662, + "fields": { + "id_car_serie": 3553, + "name": "1.6 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18664, + "fields": { + "id_car_serie": 3553, + "name": "1.6 CRDi AT (128 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18665, + "fields": { + "id_car_serie": 3553, + "name": "1.6 CRDi MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18667, + "fields": { + "id_car_serie": 3554, + "name": "1.6 T-GDi MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18668, + "fields": { + "id_car_serie": 3555, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18669, + "fields": { + "id_car_serie": 3555, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18672, + "fields": { + "id_car_serie": 3555, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18673, + "fields": { + "id_car_serie": 3556, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18674, + "fields": { + "id_car_serie": 3556, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18675, + "fields": { + "id_car_serie": 3557, + "name": "1.6 AT (121 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18676, + "fields": { + "id_car_serie": 3557, + "name": "1.6 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18679, + "fields": { + "id_car_serie": 3557, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18680, + "fields": { + "id_car_serie": 3557, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18681, + "fields": { + "id_car_serie": 3558, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18682, + "fields": { + "id_car_serie": 3558, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18683, + "fields": { + "id_car_serie": 3558, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18684, + "fields": { + "id_car_serie": 3558, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18685, + "fields": { + "id_car_serie": 3559, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18686, + "fields": { + "id_car_serie": 3559, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18687, + "fields": { + "id_car_serie": 3559, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18688, + "fields": { + "id_car_serie": 3560, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18689, + "fields": { + "id_car_serie": 3560, + "name": "2.0 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18690, + "fields": { + "id_car_serie": 3560, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18691, + "fields": { + "id_car_serie": 3560, + "name": "2.0 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18692, + "fields": { + "id_car_serie": 3560, + "name": "2.0 CRDi AT (148 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18693, + "fields": { + "id_car_serie": 3560, + "name": "2.0 CRDi MT (148 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18697, + "fields": { + "id_car_serie": 3560, + "name": "2.7 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18698, + "fields": { + "id_car_serie": 3561, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18700, + "fields": { + "id_car_serie": 3561, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18701, + "fields": { + "id_car_serie": 3561, + "name": "2.4 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18702, + "fields": { + "id_car_serie": 3562, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18703, + "fields": { + "id_car_serie": 3562, + "name": "1.2 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18705, + "fields": { + "id_car_serie": 3563, + "name": "1.2 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18707, + "fields": { + "id_car_serie": 3564, + "name": "1.3 AT (64 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18708, + "fields": { + "id_car_serie": 3564, + "name": "1.3 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18711, + "fields": { + "id_car_serie": 3565, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18712, + "fields": { + "id_car_serie": 3565, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18713, + "fields": { + "id_car_serie": 3565, + "name": "1.3 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18714, + "fields": { + "id_car_serie": 3565, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18715, + "fields": { + "id_car_serie": 3566, + "name": "1.4 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18716, + "fields": { + "id_car_serie": 3566, + "name": "1.4 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18717, + "fields": { + "id_car_serie": 3566, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18718, + "fields": { + "id_car_serie": 3566, + "name": "1.6 6AT (123 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18719, + "fields": { + "id_car_serie": 3566, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18723, + "fields": { + "id_car_serie": 3567, + "name": "1.4 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18724, + "fields": { + "id_car_serie": 3567, + "name": "1.4 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18726, + "fields": { + "id_car_serie": 3567, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18727, + "fields": { + "id_car_serie": 3567, + "name": "1.6 6AT (123 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18728, + "fields": { + "id_car_serie": 3567, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18729, + "fields": { + "id_car_serie": 3567, + "name": "1.6 6MT (123 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18735, + "fields": { + "id_car_serie": 3569, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18736, + "fields": { + "id_car_serie": 3569, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18737, + "fields": { + "id_car_serie": 3569, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18740, + "fields": { + "id_car_serie": 3569, + "name": "1.8 AT (111 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18741, + "fields": { + "id_car_serie": 3569, + "name": "1.8 MT (111 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18742, + "fields": { + "id_car_serie": 3570, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18743, + "fields": { + "id_car_serie": 3570, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18744, + "fields": { + "id_car_serie": 3570, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18745, + "fields": { + "id_car_serie": 3570, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18746, + "fields": { + "id_car_serie": 3571, + "name": "2.0 TD AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18747, + "fields": { + "id_car_serie": 3571, + "name": "2.0 TD AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18748, + "fields": { + "id_car_serie": 3571, + "name": "2.0 TD MT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18749, + "fields": { + "id_car_serie": 3571, + "name": "2.0 TD MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18750, + "fields": { + "id_car_serie": 3571, + "name": "2.2 TD AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18751, + "fields": { + "id_car_serie": 3571, + "name": "2.2 TD MT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18752, + "fields": { + "id_car_serie": 3571, + "name": "2.4 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18753, + "fields": { + "id_car_serie": 3571, + "name": "2.4 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18754, + "fields": { + "id_car_serie": 3571, + "name": "2.4 MT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18755, + "fields": { + "id_car_serie": 3571, + "name": "2.4 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18758, + "fields": { + "id_car_serie": 3572, + "name": "1.6 AT (124 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18759, + "fields": { + "id_car_serie": 3572, + "name": "1.6 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18760, + "fields": { + "id_car_serie": 3572, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18762, + "fields": { + "id_car_serie": 3572, + "name": "1.6 VGT AT (128 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18765, + "fields": { + "id_car_serie": 3573, + "name": "1.6 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18766, + "fields": { + "id_car_serie": 3573, + "name": "1.7 CRDi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18767, + "fields": { + "id_car_serie": 3573, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18768, + "fields": { + "id_car_serie": 3573, + "name": "2.0 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18769, + "fields": { + "id_car_serie": 3573, + "name": "2.0 GDI AT (166 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18770, + "fields": { + "id_car_serie": 3573, + "name": "2.0 GDI AT AWD (166 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18771, + "fields": { + "id_car_serie": 3573, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18772, + "fields": { + "id_car_serie": 3573, + "name": "2.0 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18773, + "fields": { + "id_car_serie": 3573, + "name": "2.0 GDI MT (166 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18774, + "fields": { + "id_car_serie": 3573, + "name": "2.0 GDI MT AWD (166 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18775, + "fields": { + "id_car_serie": 3573, + "name": "2.0 CRDi AT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18776, + "fields": { + "id_car_serie": 3573, + "name": "2.0 CRDi AT AWD (184 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18777, + "fields": { + "id_car_serie": 3573, + "name": "2.0 CRDi MT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18778, + "fields": { + "id_car_serie": 3573, + "name": "2.0 CRDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18779, + "fields": { + "id_car_serie": 3573, + "name": "2.0 CRDi MT AWD (184 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18780, + "fields": { + "id_car_serie": 3575, + "name": "6.5 AMT AWD (700 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18783, + "fields": { + "id_car_serie": 3576, + "name": "6.0 MT 4WD (550 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18793, + "fields": { + "id_car_serie": 3578, + "name": "5.2 AMT AWD (560 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18794, + "fields": { + "id_car_serie": 3578, + "name": "5.2 MT AWD (560 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18801, + "fields": { + "id_car_serie": 3579, + "name": "5.2 AMT AWD (560 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18802, + "fields": { + "id_car_serie": 3579, + "name": "5.2 MT AWD (560 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18805, + "fields": { + "id_car_serie": 3580, + "name": "6.2 MT 4WD (580 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18809, + "fields": { + "id_car_serie": 3582, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18811, + "fields": { + "id_car_serie": 3583, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18812, + "fields": { + "id_car_serie": 3583, + "name": "2.0 MT (119 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18815, + "fields": { + "id_car_serie": 3583, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18816, + "fields": { + "id_car_serie": 3584, + "name": "2.0 MT (119 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18817, + "fields": { + "id_car_serie": 3584, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18819, + "fields": { + "id_car_serie": 3585, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18820, + "fields": { + "id_car_serie": 3585, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18824, + "fields": { + "id_car_serie": 3597, + "name": "0.9 AMT (86 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18825, + "fields": { + "id_car_serie": 3597, + "name": "0.9 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18826, + "fields": { + "id_car_serie": 3597, + "name": "1.2 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18828, + "fields": { + "id_car_serie": 3601, + "name": "2.7 TD AT (188 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18829, + "fields": { + "id_car_serie": 3601, + "name": "2.7 TD MT (188 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18831, + "fields": { + "id_car_serie": 3601, + "name": "3.0 TDV6 4WD AT (211 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18832, + "fields": { + "id_car_serie": 3601, + "name": "3.0 TD AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18833, + "fields": { + "id_car_serie": 3601, + "name": "3.0 SDV6 4WD AT (252 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18834, + "fields": { + "id_car_serie": 3601, + "name": "5.0 4WD AT (385 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18835, + "fields": { + "id_car_serie": 3602, + "name": "2.0 Si4 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18836, + "fields": { + "id_car_serie": 3602, + "name": "2.2 TD4 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18837, + "fields": { + "id_car_serie": 3602, + "name": "2.2 SD4 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18838, + "fields": { + "id_car_serie": 3602, + "name": "2.2 TD4 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18839, + "fields": { + "id_car_serie": 3602, + "name": "2.2 eD4 MT 2WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18856, + "fields": { + "id_car_serie": 3605, + "name": "3.0 V6 Supercharged AT AWD LWB (340 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18857, + "fields": { + "id_car_serie": 3605, + "name": "3.0 TDV6 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18859, + "fields": { + "id_car_serie": 3605, + "name": "4.4 SDV8 AT AWD (339 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18860, + "fields": { + "id_car_serie": 3605, + "name": "5.0 V8 Supercharged AT AWD LWB (565 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18861, + "fields": { + "id_car_serie": 3605, + "name": "5.0 V8 Supercharged AT AWD (525 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18862, + "fields": { + "id_car_serie": 3606, + "name": "3.0 V6 Supercharged AT AWD (340 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18864, + "fields": { + "id_car_serie": 3606, + "name": "3.0 SDV6 AT 4WD (292 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18866, + "fields": { + "id_car_serie": 3606, + "name": "4.4 SDV8 AT AWD (339 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18867, + "fields": { + "id_car_serie": 3606, + "name": "5.0 V8 Supercharged AT AWD (510 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18880, + "fields": { + "id_car_serie": 3611, + "name": "2.4 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18896, + "fields": { + "id_car_serie": 3616, + "name": "430 AT (286 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18897, + "fields": { + "id_car_serie": 3616, + "name": "430 AT (304 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18901, + "fields": { + "id_car_serie": 3618, + "name": "1.3 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18902, + "fields": { + "id_car_serie": 3618, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18904, + "fields": { + "id_car_serie": 3620, + "name": "3.0 AT (232 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18905, + "fields": { + "id_car_serie": 3620, + "name": "3.9 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18908, + "fields": { + "id_car_serie": 3622, + "name": "2.0hyb CVT (141 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18909, + "fields": { + "id_car_serie": 47274, + "name": "5.4 L AT (304 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18910, + "fields": { + "id_car_serie": 47274, + "name": "5.4 L AT AWD (304 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18913, + "fields": { + "id_car_serie": 3624, + "name": "4.6 AT (238 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18914, + "fields": { + "id_car_serie": 3625, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18917, + "fields": { + "id_car_serie": 3626, + "name": "2.2 MT Turbo (218 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18918, + "fields": { + "id_car_serie": 3627, + "name": "3.5 S MT (350 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18920, + "fields": { + "id_car_serie": 3635, + "name": "5.0 MT (435 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18921, + "fields": { + "id_car_serie": 3636, + "name": "5.0 MT (435 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18922, + "fields": { + "id_car_serie": 3637, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18925, + "fields": { + "id_car_serie": 3638, + "name": "1.6 MT (96 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18933, + "fields": { + "id_car_serie": 3640, + "name": "1.3 MT Gypsy King (60 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18934, + "fields": { + "id_car_serie": 3640, + "name": "1.3 MT Gypsy King (66 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18935, + "fields": { + "id_car_serie": 3640, + "name": "1.3 MT Gypsy King (80 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18936, + "fields": { + "id_car_serie": 3641, + "name": "4.2 AMT (390 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18937, + "fields": { + "id_car_serie": 3641, + "name": "4.2 MT (390 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18938, + "fields": { + "id_car_serie": 3642, + "name": "4.2 AMT (390 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18939, + "fields": { + "id_car_serie": 3642, + "name": "4.2 MT (390 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18940, + "fields": { + "id_car_serie": 3643, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18941, + "fields": { + "id_car_serie": 3643, + "name": "2.8 MT (225 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18942, + "fields": { + "id_car_serie": 3644, + "name": "2.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18943, + "fields": { + "id_car_serie": 3644, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18948, + "fields": { + "id_car_serie": 3644, + "name": "2.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18949, + "fields": { + "id_car_serie": 3644, + "name": "2.0 MT (245 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18950, + "fields": { + "id_car_serie": 3644, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18951, + "fields": { + "id_car_serie": 3644, + "name": "2.5 MT (188 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18952, + "fields": { + "id_car_serie": 3644, + "name": "2.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18953, + "fields": { + "id_car_serie": 3644, + "name": "2.8 MT (225 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18954, + "fields": { + "id_car_serie": 3644, + "name": "2.8 MT (279 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18955, + "fields": { + "id_car_serie": 3645, + "name": "2.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18956, + "fields": { + "id_car_serie": 3645, + "name": "2.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18957, + "fields": { + "id_car_serie": 3645, + "name": "2.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18958, + "fields": { + "id_car_serie": 3645, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18959, + "fields": { + "id_car_serie": 3645, + "name": "2.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18960, + "fields": { + "id_car_serie": 3645, + "name": "2.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18961, + "fields": { + "id_car_serie": 3645, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18962, + "fields": { + "id_car_serie": 3645, + "name": "2.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18963, + "fields": { + "id_car_serie": 3646, + "name": "3.0 V6 AT (330 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18964, + "fields": { + "id_car_serie": 3646, + "name": "S 3.0 V6 AT (410 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18965, + "fields": { + "id_car_serie": 3646, + "name": "S Q4 3.0 V6 AT (410 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18966, + "fields": { + "id_car_serie": 3646, + "name": "Diesel 3.0 V6 AT (275 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18968, + "fields": { + "id_car_serie": 3647, + "name": "4.7 AT (460 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18970, + "fields": { + "id_car_serie": 3648, + "name": "4.2 AT (405 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18971, + "fields": { + "id_car_serie": 3649, + "name": "S Q4 3.0 AT (410 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18972, + "fields": { + "id_car_serie": 3649, + "name": "S 3.0 AT (410 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18973, + "fields": { + "id_car_serie": 3649, + "name": "Diesel 3.0 AT (275 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18974, + "fields": { + "id_car_serie": 3649, + "name": "GTS 3.8 AT (530 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18975, + "fields": { + "id_car_serie": 3650, + "name": "6.0 AT (612 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18976, + "fields": { + "id_car_serie": 3651, + "name": "5.5 AT (550 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18978, + "fields": { + "id_car_serie": 3652, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18979, + "fields": { + "id_car_serie": 3652, + "name": "1.3 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18980, + "fields": { + "id_car_serie": 3652, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18981, + "fields": { + "id_car_serie": 3652, + "name": "1.8 MT D (60 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18982, + "fields": { + "id_car_serie": 3653, + "name": "1.2 CVT (75 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18983, + "fields": { + "id_car_serie": 3653, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18984, + "fields": { + "id_car_serie": 3653, + "name": "1.3 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18985, + "fields": { + "id_car_serie": 3653, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18986, + "fields": { + "id_car_serie": 3653, + "name": "1.8 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 18988, + "fields": { + "id_car_serie": 3654, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18989, + "fields": { + "id_car_serie": 3654, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18990, + "fields": { + "id_car_serie": 3654, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18991, + "fields": { + "id_car_serie": 3655, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18993, + "fields": { + "id_car_serie": 3655, + "name": "1.5 AT (103 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18994, + "fields": { + "id_car_serie": 3655, + "name": "1.5 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18995, + "fields": { + "id_car_serie": 3655, + "name": "1.6 MZ-CD MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18996, + "fields": { + "id_car_serie": 3656, + "name": "1.5 SKYACTIV-G AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18997, + "fields": { + "id_car_serie": 3656, + "name": "1.5 SKYACTIV-G MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18998, + "fields": { + "id_car_serie": 3656, + "name": "1.6 AT (104 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 18999, + "fields": { + "id_car_serie": 3656, + "name": "1.6 MT (104 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19001, + "fields": { + "id_car_serie": 3656, + "name": "2.0 SKYACTIV-G AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19002, + "fields": { + "id_car_serie": 3656, + "name": "2.0 SKYACTIV-G MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19005, + "fields": { + "id_car_serie": 3656, + "name": "2.2 SKYACTIV-D MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19006, + "fields": { + "id_car_serie": 3657, + "name": "1.5 SKYACTIV-G AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19007, + "fields": { + "id_car_serie": 3657, + "name": "1.5 SKYACTIV-G MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19008, + "fields": { + "id_car_serie": 3657, + "name": "1.6 AT (104 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19009, + "fields": { + "id_car_serie": 3657, + "name": "1.6 MT (104 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19011, + "fields": { + "id_car_serie": 3657, + "name": "2.0 SKYACTIV-G AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19012, + "fields": { + "id_car_serie": 3657, + "name": "2.0 SKYACTIV-G MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19013, + "fields": { + "id_car_serie": 3657, + "name": "2.0 SKYACTIV-G MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19014, + "fields": { + "id_car_serie": 3657, + "name": "2.2 SKYACTIV-D AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19015, + "fields": { + "id_car_serie": 3657, + "name": "2.2 SKYACTIV-D MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19016, + "fields": { + "id_car_serie": 3658, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19017, + "fields": { + "id_car_serie": 3658, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19018, + "fields": { + "id_car_serie": 3658, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19021, + "fields": { + "id_car_serie": 3658, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19022, + "fields": { + "id_car_serie": 3658, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19026, + "fields": { + "id_car_serie": 3658, + "name": "2.0 D MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19027, + "fields": { + "id_car_serie": 3658, + "name": "2.0 DiTD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19028, + "fields": { + "id_car_serie": 3659, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19029, + "fields": { + "id_car_serie": 3659, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19030, + "fields": { + "id_car_serie": 3659, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19033, + "fields": { + "id_car_serie": 3659, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19034, + "fields": { + "id_car_serie": 3659, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19038, + "fields": { + "id_car_serie": 3659, + "name": "2.0 D MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19039, + "fields": { + "id_car_serie": 3659, + "name": "2.0 DiTD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19044, + "fields": { + "id_car_serie": 3661, + "name": "1.6 MZ-CD MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19045, + "fields": { + "id_car_serie": 3661, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19046, + "fields": { + "id_car_serie": 3661, + "name": "2.0 AT (144 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19047, + "fields": { + "id_car_serie": 3661, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19048, + "fields": { + "id_car_serie": 3661, + "name": "2.5 AT (159 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19049, + "fields": { + "id_car_serie": 3661, + "name": "2.5 MT (159 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19050, + "fields": { + "id_car_serie": 3662, + "name": "2.0 SKYACTIV-G AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19051, + "fields": { + "id_car_serie": 3662, + "name": "2.0 SKYACTIV-G AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19052, + "fields": { + "id_car_serie": 3662, + "name": "2.0 SKYACTIV-G MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19053, + "fields": { + "id_car_serie": 3662, + "name": "2.0 SKYACTIV-G MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19055, + "fields": { + "id_car_serie": 3662, + "name": "2.2 SKYACTIV-D AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19057, + "fields": { + "id_car_serie": 3662, + "name": "2.2 SKYACTIV-D MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19058, + "fields": { + "id_car_serie": 3662, + "name": "2.5 SKYACTIV-G AT (186 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19059, + "fields": { + "id_car_serie": 3662, + "name": "2.5 SKYACTIV-G MT (186 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19061, + "fields": { + "id_car_serie": 3663, + "name": "2.0 SKYACTIV-G AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19063, + "fields": { + "id_car_serie": 3663, + "name": "2.0 SKYACTIV-G MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19064, + "fields": { + "id_car_serie": 3663, + "name": "2.2 SKYACTIV-D AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19065, + "fields": { + "id_car_serie": 3663, + "name": "2.2 SKYACTIV-D MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19066, + "fields": { + "id_car_serie": 3663, + "name": "2.5 SKYACTIV-G AT (192 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19069, + "fields": { + "id_car_serie": 3664, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19070, + "fields": { + "id_car_serie": 3664, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19071, + "fields": { + "id_car_serie": 3664, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19072, + "fields": { + "id_car_serie": 3664, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19073, + "fields": { + "id_car_serie": 3664, + "name": "2.0 DiTD MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19076, + "fields": { + "id_car_serie": 3665, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19077, + "fields": { + "id_car_serie": 3665, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19078, + "fields": { + "id_car_serie": 3665, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19079, + "fields": { + "id_car_serie": 3665, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19080, + "fields": { + "id_car_serie": 3665, + "name": "2.0 DiTD MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19084, + "fields": { + "id_car_serie": 3666, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19085, + "fields": { + "id_car_serie": 3666, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19086, + "fields": { + "id_car_serie": 3666, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19087, + "fields": { + "id_car_serie": 3666, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19088, + "fields": { + "id_car_serie": 3666, + "name": "2.0 DiTD MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19089, + "fields": { + "id_car_serie": 3667, + "name": "2.0 MT Turbo (110 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19090, + "fields": { + "id_car_serie": 3667, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19092, + "fields": { + "id_car_serie": 3667, + "name": "2.2 MT (127 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19094, + "fields": { + "id_car_serie": 3667, + "name": "3.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19095, + "fields": { + "id_car_serie": 3667, + "name": "3.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19096, + "fields": { + "id_car_serie": 3668, + "name": "2.0 AT (153 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19102, + "fields": { + "id_car_serie": 3671, + "name": "1.5 SKYACTIV-G AT 4WD (111 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19103, + "fields": { + "id_car_serie": 3671, + "name": "1.5 SKYACTIV-G AT (111 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19109, + "fields": { + "id_car_serie": 3672, + "name": "1.5 SKYACTIV-G AT 4WD (111 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19110, + "fields": { + "id_car_serie": 3672, + "name": "1.5 SKYACTIV-G AT (111 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19111, + "fields": { + "id_car_serie": 3672, + "name": "2.0 SKYACTIV-G AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19113, + "fields": { + "id_car_serie": 3672, + "name": "2.2 SKYACTIV-D AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19114, + "fields": { + "id_car_serie": 3672, + "name": "2.2 SKYACTIV-D MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19115, + "fields": { + "id_car_serie": 3673, + "name": "2.3 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19116, + "fields": { + "id_car_serie": 3673, + "name": "2.3 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19121, + "fields": { + "id_car_serie": 3673, + "name": "3.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19122, + "fields": { + "id_car_serie": 3673, + "name": "3.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19133, + "fields": { + "id_car_serie": 3674, + "name": "3.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19134, + "fields": { + "id_car_serie": 3674, + "name": "3.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19164, + "fields": { + "id_car_serie": 3677, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19165, + "fields": { + "id_car_serie": 3677, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19168, + "fields": { + "id_car_serie": 3677, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19172, + "fields": { + "id_car_serie": 3677, + "name": "2.0 TD MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19173, + "fields": { + "id_car_serie": 3678, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19174, + "fields": { + "id_car_serie": 3678, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19175, + "fields": { + "id_car_serie": 3678, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19176, + "fields": { + "id_car_serie": 3678, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19177, + "fields": { + "id_car_serie": 3678, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19178, + "fields": { + "id_car_serie": 3678, + "name": "2.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19179, + "fields": { + "id_car_serie": 3678, + "name": "2.0 TD AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19181, + "fields": { + "id_car_serie": 3678, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19182, + "fields": { + "id_car_serie": 3679, + "name": "0.7 AT Turbo (61 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19184, + "fields": { + "id_car_serie": 3679, + "name": "0.7 MT (52 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19185, + "fields": { + "id_car_serie": 3679, + "name": "0.7 MT Turbo (61 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19187, + "fields": { + "id_car_serie": 3681, + "name": "1.3 SKYACTIV-G MT (84 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19188, + "fields": { + "id_car_serie": 3681, + "name": "1.3 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19189, + "fields": { + "id_car_serie": 3681, + "name": "EV CVT (102 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19191, + "fields": { + "id_car_serie": 3681, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19192, + "fields": { + "id_car_serie": 3681, + "name": "1.5 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19193, + "fields": { + "id_car_serie": 3681, + "name": "1.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19206, + "fields": { + "id_car_serie": 3683, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19207, + "fields": { + "id_car_serie": 3683, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19208, + "fields": { + "id_car_serie": 3683, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19209, + "fields": { + "id_car_serie": 3683, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19210, + "fields": { + "id_car_serie": 3683, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19211, + "fields": { + "id_car_serie": 3683, + "name": "1.5 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19220, + "fields": { + "id_car_serie": 3685, + "name": "2.3 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19221, + "fields": { + "id_car_serie": 3685, + "name": "2.3 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19222, + "fields": { + "id_car_serie": 3685, + "name": "2.3 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19223, + "fields": { + "id_car_serie": 3685, + "name": "2.3 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19224, + "fields": { + "id_car_serie": 3687, + "name": "2.0 AT 4WD (139 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19225, + "fields": { + "id_car_serie": 3687, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19240, + "fields": { + "id_car_serie": 3692, + "name": "2.0 MT (167 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19241, + "fields": { + "id_car_serie": 3692, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19243, + "fields": { + "id_car_serie": 3693, + "name": "1.3 AT (255 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19244, + "fields": { + "id_car_serie": 3693, + "name": "1.3 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19245, + "fields": { + "id_car_serie": 3693, + "name": "1.3 MT (255 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19246, + "fields": { + "id_car_serie": 3694, + "name": "3.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19247, + "fields": { + "id_car_serie": 3694, + "name": "3.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19248, + "fields": { + "id_car_serie": 3695, + "name": "2.3 AT (153 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19249, + "fields": { + "id_car_serie": 3695, + "name": "2.3 AT AWD (153 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19250, + "fields": { + "id_car_serie": 3695, + "name": "2.3 MT (153 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19254, + "fields": { + "id_car_serie": 3695, + "name": "2.5 AT (171 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19255, + "fields": { + "id_car_serie": 3695, + "name": "2.5 AT AWD (171 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19256, + "fields": { + "id_car_serie": 3695, + "name": "2.5 MT (171 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19258, + "fields": { + "id_car_serie": 3695, + "name": "3.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19259, + "fields": { + "id_car_serie": 3695, + "name": "3.0 AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19260, + "fields": { + "id_car_serie": 3696, + "name": "3.8 AMT (625 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19261, + "fields": { + "id_car_serie": 3697, + "name": "3.8 AMT (625 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19281, + "fields": { + "id_car_serie": 3699, + "name": "1.5 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19283, + "fields": { + "id_car_serie": 3699, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19284, + "fields": { + "id_car_serie": 3699, + "name": "1.6 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19285, + "fields": { + "id_car_serie": 3699, + "name": "1.6 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19286, + "fields": { + "id_car_serie": 3699, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19287, + "fields": { + "id_car_serie": 3699, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19288, + "fields": { + "id_car_serie": 3699, + "name": "1.8 AMT (109 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19289, + "fields": { + "id_car_serie": 3699, + "name": "1.8 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19290, + "fields": { + "id_car_serie": 3699, + "name": "1.8 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19291, + "fields": { + "id_car_serie": 3699, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19292, + "fields": { + "id_car_serie": 3699, + "name": "2.0 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19294, + "fields": { + "id_car_serie": 3699, + "name": "2.0 AMT (211 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19295, + "fields": { + "id_car_serie": 3699, + "name": "2.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19296, + "fields": { + "id_car_serie": 3699, + "name": "2.1 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19297, + "fields": { + "id_car_serie": 3700, + "name": "180 1.6 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19298, + "fields": { + "id_car_serie": 3700, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19300, + "fields": { + "id_car_serie": 3700, + "name": "2.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19301, + "fields": { + "id_car_serie": 3700, + "name": "200 2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19303, + "fields": { + "id_car_serie": 3700, + "name": "250 BlueTEC 2.1d AT (204 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19304, + "fields": { + "id_car_serie": 3700, + "name": "220 BlueTEC 2.1d MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19307, + "fields": { + "id_car_serie": 3701, + "name": "5.5 AT (517 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19308, + "fields": { + "id_car_serie": 3702, + "name": "1.8 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19309, + "fields": { + "id_car_serie": 3702, + "name": "1.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19311, + "fields": { + "id_car_serie": 3702, + "name": "1.8 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19313, + "fields": { + "id_car_serie": 3702, + "name": "1.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19314, + "fields": { + "id_car_serie": 3702, + "name": "2.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19315, + "fields": { + "id_car_serie": 3702, + "name": "2.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19316, + "fields": { + "id_car_serie": 3702, + "name": "2.7 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19317, + "fields": { + "id_car_serie": 3702, + "name": "2.7 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19322, + "fields": { + "id_car_serie": 3702, + "name": "3.2 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19325, + "fields": { + "id_car_serie": 3702, + "name": "5.0 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19330, + "fields": { + "id_car_serie": 3703, + "name": "1.8 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19331, + "fields": { + "id_car_serie": 3703, + "name": "1.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19333, + "fields": { + "id_car_serie": 3703, + "name": "1.8 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19334, + "fields": { + "id_car_serie": 3703, + "name": "1.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19338, + "fields": { + "id_car_serie": 3703, + "name": "2.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19339, + "fields": { + "id_car_serie": 3703, + "name": "2.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19340, + "fields": { + "id_car_serie": 3703, + "name": "2.7 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19341, + "fields": { + "id_car_serie": 3703, + "name": "2.7 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19347, + "fields": { + "id_car_serie": 3703, + "name": "3.2 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19350, + "fields": { + "id_car_serie": 3703, + "name": "5.0 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19351, + "fields": { + "id_car_serie": 3703, + "name": "5.0 MT (306 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19356, + "fields": { + "id_car_serie": 3704, + "name": "2.1 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19361, + "fields": { + "id_car_serie": 3704, + "name": "3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19364, + "fields": { + "id_car_serie": 3705, + "name": "2.1 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19365, + "fields": { + "id_car_serie": 3705, + "name": "2.1 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19368, + "fields": { + "id_car_serie": 3705, + "name": "3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19371, + "fields": { + "id_car_serie": 3706, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19372, + "fields": { + "id_car_serie": 3706, + "name": "2.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19374, + "fields": { + "id_car_serie": 3706, + "name": "2.1 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19376, + "fields": { + "id_car_serie": 3706, + "name": "2.1 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19379, + "fields": { + "id_car_serie": 3706, + "name": "2.1 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19380, + "fields": { + "id_car_serie": 3706, + "name": "2.1 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19382, + "fields": { + "id_car_serie": 3706, + "name": "3.0 AT (333 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19387, + "fields": { + "id_car_serie": 3706, + "name": "3.5 AT (252 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19391, + "fields": { + "id_car_serie": 3706, + "name": "4.7 AT (408 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19407, + "fields": { + "id_car_serie": 3708, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19408, + "fields": { + "id_car_serie": 3708, + "name": "2.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19409, + "fields": { + "id_car_serie": 3708, + "name": "2.1 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19410, + "fields": { + "id_car_serie": 3708, + "name": "2.1 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19413, + "fields": { + "id_car_serie": 3708, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19414, + "fields": { + "id_car_serie": 3708, + "name": "2.1 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19429, + "fields": { + "id_car_serie": 3709, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19430, + "fields": { + "id_car_serie": 3709, + "name": "2.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19431, + "fields": { + "id_car_serie": 3709, + "name": "2.1 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19432, + "fields": { + "id_car_serie": 3709, + "name": "2.1 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19433, + "fields": { + "id_car_serie": 3709, + "name": "2.1 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19434, + "fields": { + "id_car_serie": 3709, + "name": "2.1 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19435, + "fields": { + "id_car_serie": 3709, + "name": "3.0 AT (333 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19436, + "fields": { + "id_car_serie": 3709, + "name": "3.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19437, + "fields": { + "id_car_serie": 3709, + "name": "3.5 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19438, + "fields": { + "id_car_serie": 3709, + "name": "3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19439, + "fields": { + "id_car_serie": 3709, + "name": "4.7 AT (408 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19459, + "fields": { + "id_car_serie": 3714, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19460, + "fields": { + "id_car_serie": 3714, + "name": "2.1 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19465, + "fields": { + "id_car_serie": 3714, + "name": "2.1 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19466, + "fields": { + "id_car_serie": 3714, + "name": "2.1 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19489, + "fields": { + "id_car_serie": 3718, + "name": "300 CDI BlueTEC 2.1hyb AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19496, + "fields": { + "id_car_serie": 3718, + "name": "400 3.5hyb AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19502, + "fields": { + "id_car_serie": 3718, + "name": "6.0 AT (530 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19505, + "fields": { + "id_car_serie": 3720, + "name": "1.8 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19506, + "fields": { + "id_car_serie": 3720, + "name": "1.8 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19507, + "fields": { + "id_car_serie": 3720, + "name": "1.8 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19508, + "fields": { + "id_car_serie": 3720, + "name": "1.8 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19510, + "fields": { + "id_car_serie": 3720, + "name": "2.1 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19511, + "fields": { + "id_car_serie": 3720, + "name": "3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19513, + "fields": { + "id_car_serie": 3721, + "name": "5.4 AT (626 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19514, + "fields": { + "id_car_serie": 3722, + "name": "5.4 AT (626 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19515, + "fields": { + "id_car_serie": 3722, + "name": "5.4 AT (650 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19516, + "fields": { + "id_car_serie": 3723, + "name": "6.2 AMG Speedshift DCT (571 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19517, + "fields": { + "id_car_serie": 3723, + "name": "GT 6.2 AMG Speedshift DCT (591 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19518, + "fields": { + "id_car_serie": 3724, + "name": "6.2 AMG Speedshift DCT (571 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19519, + "fields": { + "id_car_serie": 3724, + "name": "GT 6.2 AMG Speedshift DCT (591 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19531, + "fields": { + "id_car_serie": 3726, + "name": "3.0 CDI AT extended (224 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19532, + "fields": { + "id_car_serie": 3726, + "name": "3.5 AT extended (258 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19533, + "fields": { + "id_car_serie": 3727, + "name": "2.5 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19539, + "fields": { + "id_car_serie": 3728, + "name": "2.5 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19540, + "fields": { + "id_car_serie": 3728, + "name": "2.5 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19541, + "fields": { + "id_car_serie": 3728, + "name": "2.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19544, + "fields": { + "id_car_serie": 3728, + "name": "2.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19547, + "fields": { + "id_car_serie": 3729, + "name": "2.3 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19548, + "fields": { + "id_car_serie": 3729, + "name": "2.3 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19549, + "fields": { + "id_car_serie": 3729, + "name": "2.3 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19552, + "fields": { + "id_car_serie": 3729, + "name": "2.8 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19555, + "fields": { + "id_car_serie": 3729, + "name": "2.8 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19556, + "fields": { + "id_car_serie": 3729, + "name": "2.8 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19557, + "fields": { + "id_car_serie": 3729, + "name": "3.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19558, + "fields": { + "id_car_serie": 3729, + "name": "3.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19559, + "fields": { + "id_car_serie": 3730, + "name": "2.0 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19560, + "fields": { + "id_car_serie": 3730, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19562, + "fields": { + "id_car_serie": 3730, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19565, + "fields": { + "id_car_serie": 3730, + "name": "2.3 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19566, + "fields": { + "id_car_serie": 3730, + "name": "2.3 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19567, + "fields": { + "id_car_serie": 3730, + "name": "2.4 AT (65 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19568, + "fields": { + "id_car_serie": 3730, + "name": "2.4 AT (72 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19569, + "fields": { + "id_car_serie": 3730, + "name": "2.4 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19570, + "fields": { + "id_car_serie": 3730, + "name": "2.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19571, + "fields": { + "id_car_serie": 3730, + "name": "2.5 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19572, + "fields": { + "id_car_serie": 3730, + "name": "2.5 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19573, + "fields": { + "id_car_serie": 3730, + "name": "2.5 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19574, + "fields": { + "id_car_serie": 3730, + "name": "2.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19576, + "fields": { + "id_car_serie": 3730, + "name": "280 5-speed 2.8 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19577, + "fields": { + "id_car_serie": 3730, + "name": "3.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19578, + "fields": { + "id_car_serie": 3730, + "name": "3.0 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19579, + "fields": { + "id_car_serie": 3730, + "name": "3.0 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19580, + "fields": { + "id_car_serie": 3730, + "name": "3.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19581, + "fields": { + "id_car_serie": 3730, + "name": "3.0 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19582, + "fields": { + "id_car_serie": 3730, + "name": "3.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19583, + "fields": { + "id_car_serie": 3731, + "name": "2.0 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19584, + "fields": { + "id_car_serie": 3731, + "name": "2.0 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19585, + "fields": { + "id_car_serie": 3731, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19586, + "fields": { + "id_car_serie": 3731, + "name": "2.0 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19587, + "fields": { + "id_car_serie": 3731, + "name": "2.0 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19588, + "fields": { + "id_car_serie": 3731, + "name": "2.0 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19591, + "fields": { + "id_car_serie": 3731, + "name": "2.3 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19592, + "fields": { + "id_car_serie": 3731, + "name": "2.3 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19593, + "fields": { + "id_car_serie": 3731, + "name": "2.3 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19594, + "fields": { + "id_car_serie": 3731, + "name": "2.3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19595, + "fields": { + "id_car_serie": 3731, + "name": "2.4 AT (65 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19596, + "fields": { + "id_car_serie": 3731, + "name": "2.4 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19597, + "fields": { + "id_car_serie": 3731, + "name": "2.5 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19598, + "fields": { + "id_car_serie": 3731, + "name": "2.5 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19599, + "fields": { + "id_car_serie": 3731, + "name": "2.5 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19600, + "fields": { + "id_car_serie": 3731, + "name": "2.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19606, + "fields": { + "id_car_serie": 3731, + "name": "280 5-speed 2.8 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19607, + "fields": { + "id_car_serie": 3731, + "name": "3.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19608, + "fields": { + "id_car_serie": 3731, + "name": "3.0 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19609, + "fields": { + "id_car_serie": 3731, + "name": "3.0 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19610, + "fields": { + "id_car_serie": 3731, + "name": "3.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19611, + "fields": { + "id_car_serie": 3731, + "name": "3.0 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19612, + "fields": { + "id_car_serie": 3731, + "name": "3.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19613, + "fields": { + "id_car_serie": 3732, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19614, + "fields": { + "id_car_serie": 3732, + "name": "3.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19615, + "fields": { + "id_car_serie": 3733, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19616, + "fields": { + "id_car_serie": 3733, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19617, + "fields": { + "id_car_serie": 3733, + "name": "2.3 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19618, + "fields": { + "id_car_serie": 3733, + "name": "2.3 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19619, + "fields": { + "id_car_serie": 3733, + "name": "2.3 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19620, + "fields": { + "id_car_serie": 3733, + "name": "2.3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19621, + "fields": { + "id_car_serie": 3733, + "name": "3.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19622, + "fields": { + "id_car_serie": 3733, + "name": "3.0 AT (188 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19623, + "fields": { + "id_car_serie": 3733, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19624, + "fields": { + "id_car_serie": 3733, + "name": "3.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19625, + "fields": { + "id_car_serie": 3733, + "name": "3.0 MT (188 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19626, + "fields": { + "id_car_serie": 3733, + "name": "3.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19627, + "fields": { + "id_car_serie": 3733, + "name": "3.2 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19628, + "fields": { + "id_car_serie": 3733, + "name": "3.2 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19629, + "fields": { + "id_car_serie": 3734, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19630, + "fields": { + "id_car_serie": 3734, + "name": "2.0 AT (118 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19631, + "fields": { + "id_car_serie": 3734, + "name": "2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19632, + "fields": { + "id_car_serie": 3734, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19633, + "fields": { + "id_car_serie": 3734, + "name": "2.0 MT (118 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19634, + "fields": { + "id_car_serie": 3734, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19635, + "fields": { + "id_car_serie": 3734, + "name": "2.0 AT (72 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19636, + "fields": { + "id_car_serie": 3734, + "name": "2.0 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19637, + "fields": { + "id_car_serie": 3734, + "name": "2.0 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19638, + "fields": { + "id_car_serie": 3734, + "name": "2.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19639, + "fields": { + "id_car_serie": 3734, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19640, + "fields": { + "id_car_serie": 3734, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19641, + "fields": { + "id_car_serie": 3734, + "name": "2.3 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19642, + "fields": { + "id_car_serie": 3734, + "name": "2.3 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19643, + "fields": { + "id_car_serie": 3734, + "name": "2.3 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19644, + "fields": { + "id_car_serie": 3734, + "name": "2.3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19645, + "fields": { + "id_car_serie": 3734, + "name": "2.5 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19646, + "fields": { + "id_car_serie": 3734, + "name": "2.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19647, + "fields": { + "id_car_serie": 3734, + "name": "2.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19648, + "fields": { + "id_car_serie": 3734, + "name": "2.5 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19649, + "fields": { + "id_car_serie": 3734, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19650, + "fields": { + "id_car_serie": 3734, + "name": "2.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19659, + "fields": { + "id_car_serie": 3734, + "name": "2.8 AT (197 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19660, + "fields": { + "id_car_serie": 3734, + "name": "2.8 MT (197 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19695, + "fields": { + "id_car_serie": 3734, + "name": "5.0 AT (326 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19696, + "fields": { + "id_car_serie": 3735, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19697, + "fields": { + "id_car_serie": 3735, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19698, + "fields": { + "id_car_serie": 3735, + "name": "2.0 AT (118 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19699, + "fields": { + "id_car_serie": 3735, + "name": "2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19700, + "fields": { + "id_car_serie": 3735, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19701, + "fields": { + "id_car_serie": 3735, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19702, + "fields": { + "id_car_serie": 3735, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19703, + "fields": { + "id_car_serie": 3735, + "name": "2.0 MT (118 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19704, + "fields": { + "id_car_serie": 3735, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19705, + "fields": { + "id_car_serie": 3735, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19706, + "fields": { + "id_car_serie": 3735, + "name": "2.0 AT (72 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19707, + "fields": { + "id_car_serie": 3735, + "name": "2.0 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19708, + "fields": { + "id_car_serie": 3735, + "name": "2.0 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19709, + "fields": { + "id_car_serie": 3735, + "name": "2.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19710, + "fields": { + "id_car_serie": 3735, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19711, + "fields": { + "id_car_serie": 3735, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19712, + "fields": { + "id_car_serie": 3735, + "name": "2.3 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19713, + "fields": { + "id_car_serie": 3735, + "name": "2.3 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19714, + "fields": { + "id_car_serie": 3735, + "name": "2.3 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19715, + "fields": { + "id_car_serie": 3735, + "name": "2.3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19716, + "fields": { + "id_car_serie": 3735, + "name": "2.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19717, + "fields": { + "id_car_serie": 3735, + "name": "2.5 AT (92 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19718, + "fields": { + "id_car_serie": 3735, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19719, + "fields": { + "id_car_serie": 3735, + "name": "2.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19728, + "fields": { + "id_car_serie": 3735, + "name": "2.8 AT (197 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19729, + "fields": { + "id_car_serie": 3735, + "name": "2.8 MT (197 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19734, + "fields": { + "id_car_serie": 3735, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19739, + "fields": { + "id_car_serie": 3735, + "name": "3.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19740, + "fields": { + "id_car_serie": 3735, + "name": "3.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19741, + "fields": { + "id_car_serie": 3735, + "name": "3.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19742, + "fields": { + "id_car_serie": 3735, + "name": "3.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19747, + "fields": { + "id_car_serie": 3735, + "name": "3.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19748, + "fields": { + "id_car_serie": 3735, + "name": "3.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19749, + "fields": { + "id_car_serie": 3735, + "name": "3.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19758, + "fields": { + "id_car_serie": 3736, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19761, + "fields": { + "id_car_serie": 3736, + "name": "2.5 MT (173 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19762, + "fields": { + "id_car_serie": 3736, + "name": "2.5 MT (199 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19763, + "fields": { + "id_car_serie": 3737, + "name": "4.6 AT (242 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19764, + "fields": { + "id_car_serie": 3738, + "name": "4.6 MT (300 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19765, + "fields": { + "id_car_serie": 3739, + "name": "4.6 AT (340 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19766, + "fields": { + "id_car_serie": 3740, + "name": "2.5 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19771, + "fields": { + "id_car_serie": 3743, + "name": "4.0 AT (213 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19776, + "fields": { + "id_car_serie": 3745, + "name": "2.3 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19777, + "fields": { + "id_car_serie": 3745, + "name": "2.3 AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19778, + "fields": { + "id_car_serie": 3745, + "name": "2.3 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19779, + "fields": { + "id_car_serie": 3745, + "name": "2.3 MT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19780, + "fields": { + "id_car_serie": 3745, + "name": "3.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19781, + "fields": { + "id_car_serie": 3746, + "name": "2.3 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19782, + "fields": { + "id_car_serie": 3746, + "name": "2.3 AT AWD (86 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19783, + "fields": { + "id_car_serie": 3746, + "name": "2.3 5MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19784, + "fields": { + "id_car_serie": 3746, + "name": "2.3 5MT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19785, + "fields": { + "id_car_serie": 3746, + "name": "3.0 5MT (137 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19787, + "fields": { + "id_car_serie": 3747, + "name": "1.9 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19789, + "fields": { + "id_car_serie": 3747, + "name": "2.0 MT (111 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19791, + "fields": { + "id_car_serie": 3748, + "name": "1.9 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19793, + "fields": { + "id_car_serie": 3748, + "name": "2.0 MT (111 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19794, + "fields": { + "id_car_serie": 3749, + "name": "3.3 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19795, + "fields": { + "id_car_serie": 3750, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19797, + "fields": { + "id_car_serie": 3751, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19803, + "fields": { + "id_car_serie": 3754, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19805, + "fields": { + "id_car_serie": 3754, + "name": "1.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19806, + "fields": { + "id_car_serie": 3754, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19807, + "fields": { + "id_car_serie": 3754, + "name": "2.0 TDi MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19808, + "fields": { + "id_car_serie": 3754, + "name": "2.0 TDi MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19809, + "fields": { + "id_car_serie": 3755, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19810, + "fields": { + "id_car_serie": 3755, + "name": "1.8 CVT (117 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19811, + "fields": { + "id_car_serie": 3755, + "name": "1.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19812, + "fields": { + "id_car_serie": 3755, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19813, + "fields": { + "id_car_serie": 3755, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19814, + "fields": { + "id_car_serie": 3755, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19816, + "fields": { + "id_car_serie": 3756, + "name": "1.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19817, + "fields": { + "id_car_serie": 3756, + "name": "2.0 TDi MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19818, + "fields": { + "id_car_serie": 3756, + "name": "2.0 TDi MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19819, + "fields": { + "id_car_serie": 3756, + "name": "2.5 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19821, + "fields": { + "id_car_serie": 3757, + "name": "1.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19822, + "fields": { + "id_car_serie": 3757, + "name": "2.0 TDi MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19823, + "fields": { + "id_car_serie": 3757, + "name": "2.0 TDi MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19824, + "fields": { + "id_car_serie": 3757, + "name": "2.5 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19826, + "fields": { + "id_car_serie": 3758, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19827, + "fields": { + "id_car_serie": 3758, + "name": "1.8 T MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19830, + "fields": { + "id_car_serie": 3758, + "name": "2.0 CDTi MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19831, + "fields": { + "id_car_serie": 3758, + "name": "2.0 CDTi MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19832, + "fields": { + "id_car_serie": 3758, + "name": "2.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19833, + "fields": { + "id_car_serie": 3758, + "name": "2.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19834, + "fields": { + "id_car_serie": 3758, + "name": "2.5 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19835, + "fields": { + "id_car_serie": 3758, + "name": "4.6 MT (260 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19837, + "fields": { + "id_car_serie": 3759, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19838, + "fields": { + "id_car_serie": 3759, + "name": "1.8 T MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19841, + "fields": { + "id_car_serie": 3759, + "name": "2.0 CDTi MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19842, + "fields": { + "id_car_serie": 3759, + "name": "2.0 CDTi MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19843, + "fields": { + "id_car_serie": 3759, + "name": "2.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19844, + "fields": { + "id_car_serie": 3759, + "name": "2.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19845, + "fields": { + "id_car_serie": 3759, + "name": "2.5 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19846, + "fields": { + "id_car_serie": 3759, + "name": "4.6 MT (260 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19851, + "fields": { + "id_car_serie": 3761, + "name": "Cooper 1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19852, + "fields": { + "id_car_serie": 3761, + "name": "One 1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19853, + "fields": { + "id_car_serie": 3761, + "name": "Cooper 1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19854, + "fields": { + "id_car_serie": 3761, + "name": "One 1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19855, + "fields": { + "id_car_serie": 3761, + "name": "One 1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19856, + "fields": { + "id_car_serie": 3761, + "name": "Cooper D 1.6d AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19857, + "fields": { + "id_car_serie": 3761, + "name": "Cooper D 1.6d MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19858, + "fields": { + "id_car_serie": 3761, + "name": "One D 1.6d MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19859, + "fields": { + "id_car_serie": 3761, + "name": "Cooper SD 2.0d AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19860, + "fields": { + "id_car_serie": 3761, + "name": "Cooper SD 2.0d MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19862, + "fields": { + "id_car_serie": 3762, + "name": "3.0 Twin Turbo MT (324 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19863, + "fields": { + "id_car_serie": 3763, + "name": "3.0 AT (161 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19864, + "fields": { + "id_car_serie": 3763, + "name": "3.0 AT (222 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19866, + "fields": { + "id_car_serie": 3763, + "name": "3.0 MT (161 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19867, + "fields": { + "id_car_serie": 3763, + "name": "3.0 MT (222 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19869, + "fields": { + "id_car_serie": 3763, + "name": "3.0 Twin Turbo MT AWD (286 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19870, + "fields": { + "id_car_serie": 3764, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 201, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19871, + "fields": { + "id_car_serie": 3764, + "name": "1.8 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19872, + "fields": { + "id_car_serie": 3764, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 19876, + "fields": { + "id_car_serie": 3765, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19878, + "fields": { + "id_car_serie": 3765, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19881, + "fields": { + "id_car_serie": 3765, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19884, + "fields": { + "id_car_serie": 3765, + "name": "1.8 GDI AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19887, + "fields": { + "id_car_serie": 3765, + "name": "1.8 GDI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19890, + "fields": { + "id_car_serie": 3765, + "name": "1.9 TD MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19891, + "fields": { + "id_car_serie": 3765, + "name": "1.9 DI-D MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19896, + "fields": { + "id_car_serie": 3766, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19899, + "fields": { + "id_car_serie": 3766, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19902, + "fields": { + "id_car_serie": 3766, + "name": "1.8 GDI AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19905, + "fields": { + "id_car_serie": 3766, + "name": "1.8 GDI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19908, + "fields": { + "id_car_serie": 3766, + "name": "1.9 TD MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19909, + "fields": { + "id_car_serie": 3766, + "name": "1.9 DI-D MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19913, + "fields": { + "id_car_serie": 3767, + "name": "2.4 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19914, + "fields": { + "id_car_serie": 3767, + "name": "2.4 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19917, + "fields": { + "id_car_serie": 3767, + "name": "3.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19918, + "fields": { + "id_car_serie": 3767, + "name": "3.0 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19941, + "fields": { + "id_car_serie": 3770, + "name": "1.1 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19944, + "fields": { + "id_car_serie": 3770, + "name": "1.3 Allshift (95 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19947, + "fields": { + "id_car_serie": 3770, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19952, + "fields": { + "id_car_serie": 3770, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19953, + "fields": { + "id_car_serie": 3770, + "name": "1.5 Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19954, + "fields": { + "id_car_serie": 3770, + "name": "1.5 DI-D Allshift (95 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19957, + "fields": { + "id_car_serie": 3770, + "name": "1.5 DI-D MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19970, + "fields": { + "id_car_serie": 3773, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19971, + "fields": { + "id_car_serie": 3773, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19975, + "fields": { + "id_car_serie": 3774, + "name": "2.4 Sportronic (162 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19976, + "fields": { + "id_car_serie": 3774, + "name": "2.4 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19977, + "fields": { + "id_car_serie": 3774, + "name": "3.8 Sportronic (265 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19978, + "fields": { + "id_car_serie": 3774, + "name": "3.8 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19979, + "fields": { + "id_car_serie": 3775, + "name": "2.4 Sportronic (162 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19980, + "fields": { + "id_car_serie": 3775, + "name": "2.4 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19981, + "fields": { + "id_car_serie": 3775, + "name": "3.8 Sportronic (265 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19982, + "fields": { + "id_car_serie": 3775, + "name": "3.8 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19985, + "fields": { + "id_car_serie": 3776, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19986, + "fields": { + "id_car_serie": 3776, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19987, + "fields": { + "id_car_serie": 3776, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19990, + "fields": { + "id_car_serie": 3776, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19991, + "fields": { + "id_car_serie": 3776, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19992, + "fields": { + "id_car_serie": 3776, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19993, + "fields": { + "id_car_serie": 3776, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19994, + "fields": { + "id_car_serie": 3776, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19995, + "fields": { + "id_car_serie": 3776, + "name": "2.0 AT (195 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19996, + "fields": { + "id_car_serie": 3776, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19998, + "fields": { + "id_car_serie": 3776, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 19999, + "fields": { + "id_car_serie": 3776, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20000, + "fields": { + "id_car_serie": 3776, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20002, + "fields": { + "id_car_serie": 3777, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20003, + "fields": { + "id_car_serie": 3777, + "name": "3.8 AT (230 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20004, + "fields": { + "id_car_serie": 3777, + "name": "3.8 AT (258 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20007, + "fields": { + "id_car_serie": 3778, + "name": "2.5 DI-D AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20010, + "fields": { + "id_car_serie": 3778, + "name": "2.5 DI-D MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20017, + "fields": { + "id_car_serie": 3779, + "name": "2.5 DI-D AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20018, + "fields": { + "id_car_serie": 3779, + "name": "2.5 DI-D MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20033, + "fields": { + "id_car_serie": 3781, + "name": "2.0 TC-SST AWD (295 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20034, + "fields": { + "id_car_serie": 3781, + "name": "2.0 MT AWD Turbo (295 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20058, + "fields": { + "id_car_serie": 3785, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20059, + "fields": { + "id_car_serie": 3785, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20066, + "fields": { + "id_car_serie": 3785, + "name": "1.6 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20067, + "fields": { + "id_car_serie": 3785, + "name": "1.6 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20068, + "fields": { + "id_car_serie": 3785, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20069, + "fields": { + "id_car_serie": 3785, + "name": "1.8 AT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20070, + "fields": { + "id_car_serie": 3785, + "name": "1.8 MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20071, + "fields": { + "id_car_serie": 3785, + "name": "2.0 TD AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20072, + "fields": { + "id_car_serie": 3785, + "name": "2.0 TD AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20073, + "fields": { + "id_car_serie": 3785, + "name": "2.0 TD MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20074, + "fields": { + "id_car_serie": 3785, + "name": "2.0 TD MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20076, + "fields": { + "id_car_serie": 3786, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20078, + "fields": { + "id_car_serie": 3786, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20079, + "fields": { + "id_car_serie": 3786, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20080, + "fields": { + "id_car_serie": 3786, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20081, + "fields": { + "id_car_serie": 3786, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20082, + "fields": { + "id_car_serie": 3786, + "name": "1.5 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20084, + "fields": { + "id_car_serie": 3786, + "name": "1.6 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20086, + "fields": { + "id_car_serie": 3786, + "name": "1.6 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20094, + "fields": { + "id_car_serie": 3787, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20096, + "fields": { + "id_car_serie": 3787, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20097, + "fields": { + "id_car_serie": 3787, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20100, + "fields": { + "id_car_serie": 3787, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20106, + "fields": { + "id_car_serie": 3787, + "name": "1.6 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20107, + "fields": { + "id_car_serie": 3788, + "name": "3.2 DI-D AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20108, + "fields": { + "id_car_serie": 3788, + "name": "3.2 DI-D MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20109, + "fields": { + "id_car_serie": 3788, + "name": "3.8 AT (247 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20110, + "fields": { + "id_car_serie": 3789, + "name": "3.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20111, + "fields": { + "id_car_serie": 3789, + "name": "3.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20112, + "fields": { + "id_car_serie": 3789, + "name": "3.2 DI-D AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20113, + "fields": { + "id_car_serie": 3789, + "name": "3.2 DI-D MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20116, + "fields": { + "id_car_serie": 3789, + "name": "3.8 AT (247 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20117, + "fields": { + "id_car_serie": 3790, + "name": "2.0 CVT (146 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20118, + "fields": { + "id_car_serie": 3790, + "name": "2.0 CVT 4WD (146 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20119, + "fields": { + "id_car_serie": 3790, + "name": "2.4 CVT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20120, + "fields": { + "id_car_serie": 3790, + "name": "2.0 CVT 4WD PHEV (220 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20121, + "fields": { + "id_car_serie": 3790, + "name": "3.0 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20125, + "fields": { + "id_car_serie": 3791, + "name": "3.2 DI-D MT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20135, + "fields": { + "id_car_serie": 3792, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20138, + "fields": { + "id_car_serie": 3792, + "name": "3.2 DI-D AT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20141, + "fields": { + "id_car_serie": 3792, + "name": "3.2 DI-D MT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20146, + "fields": { + "id_car_serie": 3793, + "name": "1.8 AT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20147, + "fields": { + "id_car_serie": 3793, + "name": "1.8 AT AWD (116 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20149, + "fields": { + "id_car_serie": 3793, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20150, + "fields": { + "id_car_serie": 3794, + "name": "1.8 AT AWD (116 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20153, + "fields": { + "id_car_serie": 3794, + "name": "1.8 AT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20155, + "fields": { + "id_car_serie": 3794, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20156, + "fields": { + "id_car_serie": 3795, + "name": "0.7 AT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20157, + "fields": { + "id_car_serie": 3795, + "name": "0.7 AT 2WD (52 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20158, + "fields": { + "id_car_serie": 3795, + "name": "0.7 Turbo AT 2WD (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20159, + "fields": { + "id_car_serie": 3795, + "name": "0.7 Turbo AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20160, + "fields": { + "id_car_serie": 3795, + "name": "0.7 MT 2WD (52 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20161, + "fields": { + "id_car_serie": 3795, + "name": "0.7 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20162, + "fields": { + "id_car_serie": 3795, + "name": "0.7 Turbo MT 2WD (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20163, + "fields": { + "id_car_serie": 3795, + "name": "0.7 Turbo MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20164, + "fields": { + "id_car_serie": 3796, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20165, + "fields": { + "id_car_serie": 3796, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20166, + "fields": { + "id_car_serie": 3796, + "name": "2.0 GDI AT (129 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20167, + "fields": { + "id_car_serie": 3796, + "name": "2.0 GDI MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20170, + "fields": { + "id_car_serie": 3797, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20171, + "fields": { + "id_car_serie": 3797, + "name": "1.8 GDI AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20172, + "fields": { + "id_car_serie": 3797, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20173, + "fields": { + "id_car_serie": 3797, + "name": "1.8 GDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20174, + "fields": { + "id_car_serie": 3797, + "name": "2.0 GDI AT (129 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20175, + "fields": { + "id_car_serie": 3797, + "name": "2.0 GDI MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20176, + "fields": { + "id_car_serie": 3798, + "name": "2.5 DI-D AT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20177, + "fields": { + "id_car_serie": 3798, + "name": "2.5 TD MT AWD (115 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20178, + "fields": { + "id_car_serie": 3798, + "name": "3.0 AT AWD (222 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20179, + "fields": { + "id_car_serie": 3798, + "name": "3.2 DI-D AT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20180, + "fields": { + "id_car_serie": 3798, + "name": "3.2 DI-D MT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20187, + "fields": { + "id_car_serie": 3801, + "name": "3.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20188, + "fields": { + "id_car_serie": 3801, + "name": "3.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20189, + "fields": { + "id_car_serie": 3802, + "name": "3.0 AT V6 (205 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20190, + "fields": { + "id_car_serie": 3802, + "name": "3.0 AT V6 (195 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20191, + "fields": { + "id_car_serie": 3802, + "name": "3.0 MT V6 (205 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20192, + "fields": { + "id_car_serie": 3802, + "name": "3.0 MT V6 (195 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20193, + "fields": { + "id_car_serie": 3803, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20194, + "fields": { + "id_car_serie": 3803, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20195, + "fields": { + "id_car_serie": 3803, + "name": "2.4 GDI AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20196, + "fields": { + "id_car_serie": 3803, + "name": "2.4 GDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20197, + "fields": { + "id_car_serie": 3804, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20198, + "fields": { + "id_car_serie": 3804, + "name": "2.4 GDi AT (147 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20200, + "fields": { + "id_car_serie": 3804, + "name": "2.4 GDi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20202, + "fields": { + "id_car_serie": 3804, + "name": "2.4 GDi MT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20203, + "fields": { + "id_car_serie": 3804, + "name": "2.4 GDi MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20204, + "fields": { + "id_car_serie": 3804, + "name": "2.4 GDi MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20205, + "fields": { + "id_car_serie": 3804, + "name": "2.4 GDi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20206, + "fields": { + "id_car_serie": 3804, + "name": "3.0 GDi AT (215 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20207, + "fields": { + "id_car_serie": 3804, + "name": "3.0 GDi AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20208, + "fields": { + "id_car_serie": 3805, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20210, + "fields": { + "id_car_serie": 3805, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20214, + "fields": { + "id_car_serie": 3807, + "name": "4.0 AT (213 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20215, + "fields": { + "id_car_serie": 3807, + "name": "4.6 AT (304 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20216, + "fields": { + "id_car_serie": 3808, + "name": "2.5 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20222, + "fields": { + "id_car_serie": 3809, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20223, + "fields": { + "id_car_serie": 3809, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20227, + "fields": { + "id_car_serie": 3809, + "name": "1.8 CVT (144 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20229, + "fields": { + "id_car_serie": 3810, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20230, + "fields": { + "id_car_serie": 3810, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20234, + "fields": { + "id_car_serie": 3810, + "name": "1.8 CVT (144 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20241, + "fields": { + "id_car_serie": 3812, + "name": "1.8 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20244, + "fields": { + "id_car_serie": 3814, + "name": "4.8 AT (368 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20245, + "fields": { + "id_car_serie": 3814, + "name": "4.8 MT (368 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20246, + "fields": { + "id_car_serie": 3815, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20247, + "fields": { + "id_car_serie": 3815, + "name": "1.5 MT (37 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20248, + "fields": { + "id_car_serie": 3815, + "name": "1.7 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20249, + "fields": { + "id_car_serie": 3815, + "name": "1.8 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20250, + "fields": { + "id_car_serie": 3815, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20251, + "fields": { + "id_car_serie": 3816, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20252, + "fields": { + "id_car_serie": 3816, + "name": "1.5 MT (37 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20253, + "fields": { + "id_car_serie": 3816, + "name": "1.7 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20254, + "fields": { + "id_car_serie": 3816, + "name": "1.8 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20255, + "fields": { + "id_car_serie": 3816, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20256, + "fields": { + "id_car_serie": 3817, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20257, + "fields": { + "id_car_serie": 3817, + "name": "1.5 MT (37 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20258, + "fields": { + "id_car_serie": 3817, + "name": "1.7 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20259, + "fields": { + "id_car_serie": 3817, + "name": "1.8 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20260, + "fields": { + "id_car_serie": 3817, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20261, + "fields": { + "id_car_serie": 3818, + "name": "2.0 AT Turbo (200 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20262, + "fields": { + "id_car_serie": 3818, + "name": "2.0 MT Turbo (200 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20263, + "fields": { + "id_car_serie": 3819, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20264, + "fields": { + "id_car_serie": 3819, + "name": "3.0 Twin Turbo AT (286 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20265, + "fields": { + "id_car_serie": 3819, + "name": "3.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20266, + "fields": { + "id_car_serie": 3819, + "name": "3.0 Twin Turbo MT (286 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20277, + "fields": { + "id_car_serie": 3824, + "name": "1.6 AT AWD (109 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20278, + "fields": { + "id_car_serie": 3825, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20280, + "fields": { + "id_car_serie": 3826, + "name": "2.5 CVT (182 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20282, + "fields": { + "id_car_serie": 3827, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20283, + "fields": { + "id_car_serie": 3827, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20284, + "fields": { + "id_car_serie": 3827, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20285, + "fields": { + "id_car_serie": 3827, + "name": "2.0 D AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20286, + "fields": { + "id_car_serie": 3827, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20288, + "fields": { + "id_car_serie": 3827, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20289, + "fields": { + "id_car_serie": 3827, + "name": "2.0 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20290, + "fields": { + "id_car_serie": 3828, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20291, + "fields": { + "id_car_serie": 3828, + "name": "1.5 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20292, + "fields": { + "id_car_serie": 3828, + "name": "2.0 CVT (133 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20293, + "fields": { + "id_car_serie": 3829, + "name": "1.8 SSS AT (123 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20294, + "fields": { + "id_car_serie": 3829, + "name": "1.8 SSS AT 4WD (123 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20296, + "fields": { + "id_car_serie": 3829, + "name": "1.8 SSS CVT (128 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20297, + "fields": { + "id_car_serie": 3829, + "name": "1.8 SSS MT (123 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20298, + "fields": { + "id_car_serie": 3829, + "name": "1.8 SSS MT 4WD (123 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20300, + "fields": { + "id_car_serie": 3829, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20301, + "fields": { + "id_car_serie": 3829, + "name": "2.0 SSS AT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20303, + "fields": { + "id_car_serie": 3829, + "name": "2.0 SSS CVT (143 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20304, + "fields": { + "id_car_serie": 3829, + "name": "2.0 SSS CVT (188 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20305, + "fields": { + "id_car_serie": 3829, + "name": "2.0 SSS MT (143 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20306, + "fields": { + "id_car_serie": 3829, + "name": "2.0 SSS MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20307, + "fields": { + "id_car_serie": 3829, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20309, + "fields": { + "id_car_serie": 3829, + "name": "2.0 D AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20311, + "fields": { + "id_car_serie": 3829, + "name": "2.0 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20313, + "fields": { + "id_car_serie": 3830, + "name": "2.5 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20314, + "fields": { + "id_car_serie": 3830, + "name": "2.5 T AWD AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20315, + "fields": { + "id_car_serie": 3830, + "name": "2.5 T AWD AT (260 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20316, + "fields": { + "id_car_serie": 3830, + "name": "3.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20317, + "fields": { + "id_car_serie": 3830, + "name": "3.0 T AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20319, + "fields": { + "id_car_serie": 3831, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20320, + "fields": { + "id_car_serie": 3831, + "name": "2.5 AT (179 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20323, + "fields": { + "id_car_serie": 3832, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20326, + "fields": { + "id_car_serie": 3833, + "name": "3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20327, + "fields": { + "id_car_serie": 3834, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20328, + "fields": { + "id_car_serie": 3834, + "name": "1.5 CVT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20342, + "fields": { + "id_car_serie": 3837, + "name": "3.7 AT (332 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20344, + "fields": { + "id_car_serie": 3837, + "name": "3.7 MT (332 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20346, + "fields": { + "id_car_serie": 3838, + "name": "2.5 AT (225 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20347, + "fields": { + "id_car_serie": 3838, + "name": "3.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20348, + "fields": { + "id_car_serie": 3838, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20349, + "fields": { + "id_car_serie": 3838, + "name": "4.5 AT (333 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20350, + "fields": { + "id_car_serie": 3839, + "name": "2.5 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20353, + "fields": { + "id_car_serie": 3839, + "name": "2.5 T AT AWD (260 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20354, + "fields": { + "id_car_serie": 3839, + "name": "3.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20355, + "fields": { + "id_car_serie": 3839, + "name": "3.0 T AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20356, + "fields": { + "id_car_serie": 3839, + "name": "3.0 T CVT (280 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20357, + "fields": { + "id_car_serie": 3840, + "name": "1.2 DIG-T MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20358, + "fields": { + "id_car_serie": 3840, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20359, + "fields": { + "id_car_serie": 3840, + "name": "1.6 DIG-T MCVT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20360, + "fields": { + "id_car_serie": 3840, + "name": "1.6 DIG-T MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20361, + "fields": { + "id_car_serie": 3840, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20364, + "fields": { + "id_car_serie": 3842, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20365, + "fields": { + "id_car_serie": 3842, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20367, + "fields": { + "id_car_serie": 3842, + "name": "2.5 AT (235 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20368, + "fields": { + "id_car_serie": 3842, + "name": "2.5 T AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20369, + "fields": { + "id_car_serie": 3842, + "name": "2.8 D AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20370, + "fields": { + "id_car_serie": 3843, + "name": "2.0 AT (123 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20371, + "fields": { + "id_car_serie": 3843, + "name": "2.5 AT (187 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20372, + "fields": { + "id_car_serie": 3843, + "name": "2.5 T 4WD AT (232 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20375, + "fields": { + "id_car_serie": 3843, + "name": "3.0 AT (227 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20376, + "fields": { + "id_car_serie": 3843, + "name": "3.0 T AT (266 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20377, + "fields": { + "id_car_serie": 3844, + "name": "1.2 CVT (79 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20378, + "fields": { + "id_car_serie": 3844, + "name": "1.2 CVT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20379, + "fields": { + "id_car_serie": 3845, + "name": "3.5 CVT (290 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20380, + "fields": { + "id_car_serie": 3846, + "name": "1.2 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20382, + "fields": { + "id_car_serie": 3846, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20383, + "fields": { + "id_car_serie": 3846, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20384, + "fields": { + "id_car_serie": 3847, + "name": "2.7 TD MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20385, + "fields": { + "id_car_serie": 3847, + "name": "2.7 TDi MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20388, + "fields": { + "id_car_serie": 3849, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20389, + "fields": { + "id_car_serie": 3849, + "name": "0.7 turbo AT (60 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20390, + "fields": { + "id_car_serie": 3849, + "name": "0.7 turbo AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20391, + "fields": { + "id_car_serie": 3850, + "name": "3.5 Xtronic AWD (249 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20393, + "fields": { + "id_car_serie": 3851, + "name": "3.5 CVT (249 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20394, + "fields": { + "id_car_serie": 3851, + "name": "3.5 CVT (256 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20395, + "fields": { + "id_car_serie": 3851, + "name": "3.5 CVT (265 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20396, + "fields": { + "id_car_serie": 3851, + "name": "3.5 CVT (265 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20397, + "fields": { + "id_car_serie": 3852, + "name": "2.5 dCi Turbo AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20399, + "fields": { + "id_car_serie": 3852, + "name": "2.5 dCi Turbo MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20401, + "fields": { + "id_car_serie": 3852, + "name": "3.0 dCi Turbo AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20403, + "fields": { + "id_car_serie": 3853, + "name": "2.5 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20404, + "fields": { + "id_car_serie": 3853, + "name": "2.5 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20421, + "fields": { + "id_car_serie": 3855, + "name": "1.2 MPI MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20422, + "fields": { + "id_car_serie": 3855, + "name": "1.2 DIG-S MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20423, + "fields": { + "id_car_serie": 3855, + "name": "1.5 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20424, + "fields": { + "id_car_serie": 3855, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20425, + "fields": { + "id_car_serie": 3856, + "name": "2.5 Turbo dCi MT AWD (133 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20428, + "fields": { + "id_car_serie": 3859, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20429, + "fields": { + "id_car_serie": 3859, + "name": "0.7 4WD AT (50 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20435, + "fields": { + "id_car_serie": 3861, + "name": "5.6 AT 4WD (405 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20437, + "fields": { + "id_car_serie": 3862, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20438, + "fields": { + "id_car_serie": 3862, + "name": "2.3 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20440, + "fields": { + "id_car_serie": 3863, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20441, + "fields": { + "id_car_serie": 3863, + "name": "2.3 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20443, + "fields": { + "id_car_serie": 3864, + "name": "2.2 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20444, + "fields": { + "id_car_serie": 3864, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20445, + "fields": { + "id_car_serie": 3864, + "name": "3.4 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20447, + "fields": { + "id_car_serie": 3865, + "name": "2.2 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20448, + "fields": { + "id_car_serie": 3865, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20449, + "fields": { + "id_car_serie": 3865, + "name": "3.4 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20450, + "fields": { + "id_car_serie": 3866, + "name": "3.5 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20452, + "fields": { + "id_car_serie": 3867, + "name": "4.2 AT (273 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20453, + "fields": { + "id_car_serie": 3868, + "name": "2.3 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20454, + "fields": { + "id_car_serie": 3868, + "name": "2.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20455, + "fields": { + "id_car_serie": 3868, + "name": "2.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20456, + "fields": { + "id_car_serie": 3868, + "name": "3.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20457, + "fields": { + "id_car_serie": 3869, + "name": "2.3 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20458, + "fields": { + "id_car_serie": 3869, + "name": "2.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20459, + "fields": { + "id_car_serie": 3869, + "name": "2.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20460, + "fields": { + "id_car_serie": 3869, + "name": "3.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20461, + "fields": { + "id_car_serie": 3870, + "name": "2.2 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20462, + "fields": { + "id_car_serie": 3870, + "name": "2.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20463, + "fields": { + "id_car_serie": 3870, + "name": "3.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20464, + "fields": { + "id_car_serie": 3871, + "name": "2.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20465, + "fields": { + "id_car_serie": 3871, + "name": "3.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20466, + "fields": { + "id_car_serie": 3872, + "name": "2.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20467, + "fields": { + "id_car_serie": 3872, + "name": "3.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20468, + "fields": { + "id_car_serie": 3873, + "name": "2.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20469, + "fields": { + "id_car_serie": 3873, + "name": "3.1 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20470, + "fields": { + "id_car_serie": 3873, + "name": "3.4 AT (213 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20471, + "fields": { + "id_car_serie": 3874, + "name": "2.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20472, + "fields": { + "id_car_serie": 3874, + "name": "3.1 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20473, + "fields": { + "id_car_serie": 3874, + "name": "3.4 AT (213 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20474, + "fields": { + "id_car_serie": 3875, + "name": "2.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20475, + "fields": { + "id_car_serie": 3875, + "name": "3.1 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20476, + "fields": { + "id_car_serie": 3875, + "name": "3.4 AT (213 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20477, + "fields": { + "id_car_serie": 3876, + "name": "3.8 AT (172 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20478, + "fields": { + "id_car_serie": 3876, + "name": "3.8 AT (208 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20479, + "fields": { + "id_car_serie": 3876, + "name": "3.8 AT (243 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20480, + "fields": { + "id_car_serie": 3877, + "name": "3.8 AT (172 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20481, + "fields": { + "id_car_serie": 3877, + "name": "3.8 AT (208 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20482, + "fields": { + "id_car_serie": 3877, + "name": "3.8 AT (243 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20483, + "fields": { + "id_car_serie": 3878, + "name": "3.4 AT (182 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20486, + "fields": { + "id_car_serie": 3879, + "name": "2.8 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20487, + "fields": { + "id_car_serie": 3879, + "name": "2.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20488, + "fields": { + "id_car_serie": 3879, + "name": "2.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20489, + "fields": { + "id_car_serie": 3879, + "name": "2.8 AT (146 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20490, + "fields": { + "id_car_serie": 3879, + "name": "2.8 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20491, + "fields": { + "id_car_serie": 3879, + "name": "2.8 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20492, + "fields": { + "id_car_serie": 3879, + "name": "2.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20493, + "fields": { + "id_car_serie": 3879, + "name": "2.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20494, + "fields": { + "id_car_serie": 3879, + "name": "2.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20495, + "fields": { + "id_car_serie": 3879, + "name": "2.8 MT (146 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20496, + "fields": { + "id_car_serie": 3879, + "name": "2.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20497, + "fields": { + "id_car_serie": 3879, + "name": "2.8 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20498, + "fields": { + "id_car_serie": 3880, + "name": "1.0 LPG ecoFlex MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20499, + "fields": { + "id_car_serie": 3880, + "name": "1.2 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20500, + "fields": { + "id_car_serie": 3880, + "name": "1.2 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20501, + "fields": { + "id_car_serie": 3880, + "name": "1.2 LPG ecoFlex MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20502, + "fields": { + "id_car_serie": 3881, + "name": "2.2 CDTi AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20503, + "fields": { + "id_car_serie": 3881, + "name": "2.2 CDTi AT AWD (184 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20504, + "fields": { + "id_car_serie": 3881, + "name": "2.2 CDTi MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20505, + "fields": { + "id_car_serie": 3881, + "name": "2.2 CDTi MT AWD (164 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20506, + "fields": { + "id_car_serie": 3881, + "name": "2.2 CDTi MT AWD (184 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20507, + "fields": { + "id_car_serie": 3881, + "name": "2.4 AT AWD (167 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20508, + "fields": { + "id_car_serie": 3881, + "name": "2.4 MT (167 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20509, + "fields": { + "id_car_serie": 3881, + "name": "2.4 MT AWD (167 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20510, + "fields": { + "id_car_serie": 3881, + "name": "3.0 V6 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20538, + "fields": { + "id_car_serie": 3883, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20539, + "fields": { + "id_car_serie": 3883, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20564, + "fields": { + "id_car_serie": 3885, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20565, + "fields": { + "id_car_serie": 3885, + "name": "1.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20566, + "fields": { + "id_car_serie": 3885, + "name": "1.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20567, + "fields": { + "id_car_serie": 3885, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20568, + "fields": { + "id_car_serie": 3885, + "name": "1.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20569, + "fields": { + "id_car_serie": 3885, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20570, + "fields": { + "id_car_serie": 3885, + "name": "1.7 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20571, + "fields": { + "id_car_serie": 3885, + "name": "1.7 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20573, + "fields": { + "id_car_serie": 3886, + "name": "1.4 Turbo AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20574, + "fields": { + "id_car_serie": 3886, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20576, + "fields": { + "id_car_serie": 3886, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20577, + "fields": { + "id_car_serie": 3886, + "name": "1.6 SIDI Turbo AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20578, + "fields": { + "id_car_serie": 3886, + "name": "1.6 Turbo AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20579, + "fields": { + "id_car_serie": 3886, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20580, + "fields": { + "id_car_serie": 3886, + "name": "1.6 SIDI Turbo ecoFLEX MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20581, + "fields": { + "id_car_serie": 3886, + "name": "1.6 CDTI ecoFLEX MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20582, + "fields": { + "id_car_serie": 3886, + "name": "1.7 CDTI ecoFLEX MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20583, + "fields": { + "id_car_serie": 3886, + "name": "1.7 CDTI ecoFLEX A+ MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20585, + "fields": { + "id_car_serie": 3886, + "name": "2.0 CDTI AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20587, + "fields": { + "id_car_serie": 3886, + "name": "2.0 CDTI MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20588, + "fields": { + "id_car_serie": 3887, + "name": "2.0T MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20598, + "fields": { + "id_car_serie": 3887, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20622, + "fields": { + "id_car_serie": 3889, + "name": "2.5 TD MT 4x4 (76 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20623, + "fields": { + "id_car_serie": 3889, + "name": "2.5 TD MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20624, + "fields": { + "id_car_serie": 3889, + "name": "2.5 TD MT 4x4 (100 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20625, + "fields": { + "id_car_serie": 3889, + "name": "2.5 TD MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20628, + "fields": { + "id_car_serie": 3889, + "name": "3.1 TD MT 4x4 (109 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20638, + "fields": { + "id_car_serie": 3890, + "name": "2.5 TD Euro III MT 4x4 (76 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20639, + "fields": { + "id_car_serie": 3890, + "name": "2.5 TD MT 4x4 (76 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20640, + "fields": { + "id_car_serie": 3890, + "name": "2.5 TD MT 4x4 (100 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20641, + "fields": { + "id_car_serie": 3890, + "name": "2.5 TD MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20644, + "fields": { + "id_car_serie": 3890, + "name": "3.1 TD MT 4x4 (109 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20656, + "fields": { + "id_car_serie": 3891, + "name": "2.5 TD MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20657, + "fields": { + "id_car_serie": 3891, + "name": "2.5 TD MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20662, + "fields": { + "id_car_serie": 3892, + "name": "1.4 CNG Turbo MT L2H2 (120 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20664, + "fields": { + "id_car_serie": 3892, + "name": "1.6 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20665, + "fields": { + "id_car_serie": 3892, + "name": "1.6d MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20666, + "fields": { + "id_car_serie": 3892, + "name": "1.6 CDTI MT L2H1 (105 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20667, + "fields": { + "id_car_serie": 3892, + "name": "2.0 CDTI MT L1H1 (135 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20668, + "fields": { + "id_car_serie": 3893, + "name": "2.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20669, + "fields": { + "id_car_serie": 3893, + "name": "2.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20670, + "fields": { + "id_car_serie": 3893, + "name": "2.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20671, + "fields": { + "id_car_serie": 3893, + "name": "2.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20672, + "fields": { + "id_car_serie": 3894, + "name": "2.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20673, + "fields": { + "id_car_serie": 3894, + "name": "2.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20674, + "fields": { + "id_car_serie": 3894, + "name": "2.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20675, + "fields": { + "id_car_serie": 3894, + "name": "2.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20677, + "fields": { + "id_car_serie": 3895, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20678, + "fields": { + "id_car_serie": 3895, + "name": "1.2 AMT (85 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20679, + "fields": { + "id_car_serie": 3895, + "name": "1.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20681, + "fields": { + "id_car_serie": 3895, + "name": "1.4 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20682, + "fields": { + "id_car_serie": 3895, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20683, + "fields": { + "id_car_serie": 3895, + "name": "1.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20684, + "fields": { + "id_car_serie": 3895, + "name": "1.7 CDTI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20686, + "fields": { + "id_car_serie": 3896, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20687, + "fields": { + "id_car_serie": 3896, + "name": "1.2 AMT (85 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20688, + "fields": { + "id_car_serie": 3896, + "name": "1.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20690, + "fields": { + "id_car_serie": 3896, + "name": "1.4 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20691, + "fields": { + "id_car_serie": 3896, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20692, + "fields": { + "id_car_serie": 3896, + "name": "1.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20693, + "fields": { + "id_car_serie": 3896, + "name": "1.7 CDTI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20694, + "fields": { + "id_car_serie": 3897, + "name": "2.8 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20695, + "fields": { + "id_car_serie": 3897, + "name": "2.8 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20697, + "fields": { + "id_car_serie": 3898, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20698, + "fields": { + "id_car_serie": 3898, + "name": "2.2 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20699, + "fields": { + "id_car_serie": 3898, + "name": "2.2 DTI AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20700, + "fields": { + "id_car_serie": 3898, + "name": "2.2 DTI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20705, + "fields": { + "id_car_serie": 3899, + "name": "2.2 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20707, + "fields": { + "id_car_serie": 3899, + "name": "2.2 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20709, + "fields": { + "id_car_serie": 3899, + "name": "2.2 DTI AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20711, + "fields": { + "id_car_serie": 3899, + "name": "2.2 DTI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20712, + "fields": { + "id_car_serie": 3899, + "name": "2.2 DTI MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20714, + "fields": { + "id_car_serie": 3899, + "name": "3.2 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20715, + "fields": { + "id_car_serie": 3899, + "name": "3.2 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20716, + "fields": { + "id_car_serie": 3900, + "name": "1.4 Turbo LPG ecoFLEX MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20717, + "fields": { + "id_car_serie": 3900, + "name": "1.6 SIDI Turbo Ecotec AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20718, + "fields": { + "id_car_serie": 3900, + "name": "1.6 SIDI Turbo Ecotec MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20719, + "fields": { + "id_car_serie": 3900, + "name": "1.8 Ecotec MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20722, + "fields": { + "id_car_serie": 3900, + "name": "2.0 CDTI AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20723, + "fields": { + "id_car_serie": 3900, + "name": "2.0 CDTi Ecotec AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20725, + "fields": { + "id_car_serie": 3900, + "name": "2.0 BiTurbo CDTI AT (195 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20726, + "fields": { + "id_car_serie": 3900, + "name": "2.0 BiTurbo CDTI AT 4x4 (195 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20727, + "fields": { + "id_car_serie": 3900, + "name": "2.0 CDTI ecoFLEX MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20728, + "fields": { + "id_car_serie": 3900, + "name": "2.0 CDTI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20729, + "fields": { + "id_car_serie": 3900, + "name": "2.0 CDTi Ecotec MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20731, + "fields": { + "id_car_serie": 3900, + "name": "2.0 BiTurbo CDTI MT (195 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20753, + "fields": { + "id_car_serie": 3903, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20754, + "fields": { + "id_car_serie": 3903, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20758, + "fields": { + "id_car_serie": 3903, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20759, + "fields": { + "id_car_serie": 3903, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20760, + "fields": { + "id_car_serie": 3903, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20761, + "fields": { + "id_car_serie": 3903, + "name": "1.7 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20762, + "fields": { + "id_car_serie": 3903, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20764, + "fields": { + "id_car_serie": 3904, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20767, + "fields": { + "id_car_serie": 3904, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20770, + "fields": { + "id_car_serie": 3904, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20777, + "fields": { + "id_car_serie": 3905, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20778, + "fields": { + "id_car_serie": 3905, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20779, + "fields": { + "id_car_serie": 3905, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20780, + "fields": { + "id_car_serie": 3905, + "name": "1.6i AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20783, + "fields": { + "id_car_serie": 3905, + "name": "1.6 D AT (55 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20785, + "fields": { + "id_car_serie": 3905, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20786, + "fields": { + "id_car_serie": 3905, + "name": "1.6 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20787, + "fields": { + "id_car_serie": 3905, + "name": "1.6 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20788, + "fields": { + "id_car_serie": 3905, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20789, + "fields": { + "id_car_serie": 3905, + "name": "1.6 D 5MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20799, + "fields": { + "id_car_serie": 3906, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20800, + "fields": { + "id_car_serie": 3906, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20801, + "fields": { + "id_car_serie": 3906, + "name": "1.3 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20802, + "fields": { + "id_car_serie": 3906, + "name": "1.6i AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20803, + "fields": { + "id_car_serie": 3906, + "name": "1.6i 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20804, + "fields": { + "id_car_serie": 3906, + "name": "1.5 Turbo D 5MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20805, + "fields": { + "id_car_serie": 3906, + "name": "1.6 D AT (55 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20806, + "fields": { + "id_car_serie": 3906, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20807, + "fields": { + "id_car_serie": 3906, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20808, + "fields": { + "id_car_serie": 3906, + "name": "1.6 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20809, + "fields": { + "id_car_serie": 3906, + "name": "1.6 5MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20810, + "fields": { + "id_car_serie": 3906, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20811, + "fields": { + "id_car_serie": 3906, + "name": "1.6 D 5MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20815, + "fields": { + "id_car_serie": 3906, + "name": "1.8 5MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20821, + "fields": { + "id_car_serie": 3907, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20822, + "fields": { + "id_car_serie": 3907, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20823, + "fields": { + "id_car_serie": 3907, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20824, + "fields": { + "id_car_serie": 3907, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20825, + "fields": { + "id_car_serie": 3907, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20826, + "fields": { + "id_car_serie": 3907, + "name": "1.6i AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20827, + "fields": { + "id_car_serie": 3907, + "name": "1.6i 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20828, + "fields": { + "id_car_serie": 3907, + "name": "1.6 D AT (55 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20829, + "fields": { + "id_car_serie": 3907, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20830, + "fields": { + "id_car_serie": 3907, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20831, + "fields": { + "id_car_serie": 3907, + "name": "1.6 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20832, + "fields": { + "id_car_serie": 3907, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20833, + "fields": { + "id_car_serie": 3907, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20834, + "fields": { + "id_car_serie": 3907, + "name": "1.6 D 5MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20838, + "fields": { + "id_car_serie": 3907, + "name": "1.8 5MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20846, + "fields": { + "id_car_serie": 3908, + "name": "1.3i 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20847, + "fields": { + "id_car_serie": 3908, + "name": "1.3i MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20848, + "fields": { + "id_car_serie": 3908, + "name": "1.4i MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20849, + "fields": { + "id_car_serie": 3908, + "name": "1.4i 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20850, + "fields": { + "id_car_serie": 3908, + "name": "1.6i AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20851, + "fields": { + "id_car_serie": 3908, + "name": "1.6i 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20852, + "fields": { + "id_car_serie": 3908, + "name": "1.8i 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20853, + "fields": { + "id_car_serie": 3908, + "name": "1.8i 5MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20854, + "fields": { + "id_car_serie": 3908, + "name": "2.0i AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20855, + "fields": { + "id_car_serie": 3908, + "name": "2.0i 5MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20869, + "fields": { + "id_car_serie": 3909, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20876, + "fields": { + "id_car_serie": 3909, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20882, + "fields": { + "id_car_serie": 3910, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20890, + "fields": { + "id_car_serie": 3910, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20895, + "fields": { + "id_car_serie": 3911, + "name": "1.4 Turbo AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20897, + "fields": { + "id_car_serie": 3911, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20898, + "fields": { + "id_car_serie": 3911, + "name": "1.4 Turbo MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20899, + "fields": { + "id_car_serie": 3911, + "name": "1.6 CDTI MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 20902, + "fields": { + "id_car_serie": 3912, + "name": "3.0 DTI MT 4WD (159 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20903, + "fields": { + "id_car_serie": 3912, + "name": "3.5 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20904, + "fields": { + "id_car_serie": 3912, + "name": "3.5 MT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20906, + "fields": { + "id_car_serie": 3913, + "name": "3.0 DTI MT 4WD (159 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20907, + "fields": { + "id_car_serie": 3913, + "name": "3.5 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20908, + "fields": { + "id_car_serie": 3913, + "name": "3.5 MT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20909, + "fields": { + "id_car_serie": 3914, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20910, + "fields": { + "id_car_serie": 3914, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20911, + "fields": { + "id_car_serie": 3914, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20912, + "fields": { + "id_car_serie": 3914, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20913, + "fields": { + "id_car_serie": 3914, + "name": "2.0 dTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20917, + "fields": { + "id_car_serie": 3914, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20918, + "fields": { + "id_car_serie": 3914, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20919, + "fields": { + "id_car_serie": 3914, + "name": "2.5 DT AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20921, + "fields": { + "id_car_serie": 3914, + "name": "2.5 DT MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20925, + "fields": { + "id_car_serie": 3914, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20926, + "fields": { + "id_car_serie": 3914, + "name": "3.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20929, + "fields": { + "id_car_serie": 3915, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20930, + "fields": { + "id_car_serie": 3915, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20931, + "fields": { + "id_car_serie": 3915, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20932, + "fields": { + "id_car_serie": 3915, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20933, + "fields": { + "id_car_serie": 3915, + "name": "2.0 DTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20937, + "fields": { + "id_car_serie": 3915, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20938, + "fields": { + "id_car_serie": 3915, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20939, + "fields": { + "id_car_serie": 3915, + "name": "2.5 TD AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20941, + "fields": { + "id_car_serie": 3915, + "name": "2.5 TD MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20945, + "fields": { + "id_car_serie": 3915, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20946, + "fields": { + "id_car_serie": 3915, + "name": "3.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20967, + "fields": { + "id_car_serie": 3917, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20968, + "fields": { + "id_car_serie": 3917, + "name": "1.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20969, + "fields": { + "id_car_serie": 3917, + "name": "1.8 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20970, + "fields": { + "id_car_serie": 3917, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20971, + "fields": { + "id_car_serie": 3917, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20972, + "fields": { + "id_car_serie": 3917, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20973, + "fields": { + "id_car_serie": 3917, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20974, + "fields": { + "id_car_serie": 3917, + "name": "1.9 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20975, + "fields": { + "id_car_serie": 3917, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20976, + "fields": { + "id_car_serie": 3917, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20977, + "fields": { + "id_car_serie": 3917, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20978, + "fields": { + "id_car_serie": 3917, + "name": "2.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20979, + "fields": { + "id_car_serie": 3917, + "name": "2.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20980, + "fields": { + "id_car_serie": 3917, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20981, + "fields": { + "id_car_serie": 3917, + "name": "2.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20982, + "fields": { + "id_car_serie": 3917, + "name": "2.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20983, + "fields": { + "id_car_serie": 3917, + "name": "2.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20984, + "fields": { + "id_car_serie": 3918, + "name": "2.5 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20985, + "fields": { + "id_car_serie": 3918, + "name": "2.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20986, + "fields": { + "id_car_serie": 3918, + "name": "2.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20987, + "fields": { + "id_car_serie": 3918, + "name": "2.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20989, + "fields": { + "id_car_serie": 3918, + "name": "3.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20991, + "fields": { + "id_car_serie": 3918, + "name": "3.0 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20993, + "fields": { + "id_car_serie": 3918, + "name": "3.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20995, + "fields": { + "id_car_serie": 3918, + "name": "3.0 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20997, + "fields": { + "id_car_serie": 3919, + "name": "1.4 Twinport Easytronic (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20998, + "fields": { + "id_car_serie": 3919, + "name": "1.4 Twinport MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 20999, + "fields": { + "id_car_serie": 3919, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21002, + "fields": { + "id_car_serie": 3920, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21004, + "fields": { + "id_car_serie": 3920, + "name": "1.9 CDTi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21005, + "fields": { + "id_car_serie": 3920, + "name": "1.9 CDTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21006, + "fields": { + "id_car_serie": 3920, + "name": "1.9 CDTi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21007, + "fields": { + "id_car_serie": 3920, + "name": "2.0 Turbo MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21008, + "fields": { + "id_car_serie": 3920, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21009, + "fields": { + "id_car_serie": 3920, + "name": "2.2 DGi AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21010, + "fields": { + "id_car_serie": 3920, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21011, + "fields": { + "id_car_serie": 3920, + "name": "2.2 direct MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21012, + "fields": { + "id_car_serie": 3920, + "name": "2.2 DTI AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21013, + "fields": { + "id_car_serie": 3920, + "name": "2.2 DTi MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21018, + "fields": { + "id_car_serie": 3920, + "name": "3.0 CDTi AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21020, + "fields": { + "id_car_serie": 3920, + "name": "3.0 CDTi MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21022, + "fields": { + "id_car_serie": 3920, + "name": "3.2 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21023, + "fields": { + "id_car_serie": 3920, + "name": "3.2 MT (211 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21026, + "fields": { + "id_car_serie": 3921, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21028, + "fields": { + "id_car_serie": 3921, + "name": "1.9 CDTi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21029, + "fields": { + "id_car_serie": 3921, + "name": "1.9 CDTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21030, + "fields": { + "id_car_serie": 3921, + "name": "1.9 CDTi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21031, + "fields": { + "id_car_serie": 3921, + "name": "2.0 Turbo MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21032, + "fields": { + "id_car_serie": 3921, + "name": "2.0 DTI MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21033, + "fields": { + "id_car_serie": 3921, + "name": "2.2 direct AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21034, + "fields": { + "id_car_serie": 3921, + "name": "2.2 direct MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21035, + "fields": { + "id_car_serie": 3921, + "name": "2.2 DTI AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21036, + "fields": { + "id_car_serie": 3921, + "name": "2.2 DTI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21039, + "fields": { + "id_car_serie": 3921, + "name": "3.0 CDTi AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21040, + "fields": { + "id_car_serie": 3921, + "name": "3.0 CDTi MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21042, + "fields": { + "id_car_serie": 3921, + "name": "3.2 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21043, + "fields": { + "id_car_serie": 3921, + "name": "3.2 MT (211 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21044, + "fields": { + "id_car_serie": 3922, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21048, + "fields": { + "id_car_serie": 3922, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21050, + "fields": { + "id_car_serie": 3922, + "name": "1.9 CDTi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21051, + "fields": { + "id_car_serie": 3922, + "name": "1.9 CDTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21052, + "fields": { + "id_car_serie": 3922, + "name": "1.9 CDTI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21053, + "fields": { + "id_car_serie": 3922, + "name": "2.0 Turbo MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21054, + "fields": { + "id_car_serie": 3922, + "name": "2.0 DTI MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21055, + "fields": { + "id_car_serie": 3922, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21056, + "fields": { + "id_car_serie": 3922, + "name": "2.2 direct AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21057, + "fields": { + "id_car_serie": 3922, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21058, + "fields": { + "id_car_serie": 3922, + "name": "2.2 direct MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21059, + "fields": { + "id_car_serie": 3922, + "name": "2.2 DTI AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21060, + "fields": { + "id_car_serie": 3922, + "name": "2.2 DTI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21065, + "fields": { + "id_car_serie": 3922, + "name": "3.0 CDTi AT (176 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21067, + "fields": { + "id_car_serie": 3922, + "name": "3.0 CDTi MT (176 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21069, + "fields": { + "id_car_serie": 3922, + "name": "3.2 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21070, + "fields": { + "id_car_serie": 3922, + "name": "3.2 MT (211 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21081, + "fields": { + "id_car_serie": 3925, + "name": "1.4 Turbo AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21083, + "fields": { + "id_car_serie": 3925, + "name": "1.4 Turbo MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21084, + "fields": { + "id_car_serie": 3925, + "name": "1.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21089, + "fields": { + "id_car_serie": 3925, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21091, + "fields": { + "id_car_serie": 3925, + "name": "2.0 CDTI AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21092, + "fields": { + "id_car_serie": 3925, + "name": "2.0 CDTI AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21094, + "fields": { + "id_car_serie": 3925, + "name": "2.0 CDTI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21097, + "fields": { + "id_car_serie": 3927, + "name": "7.3 MT S 7.3 (555 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21100, + "fields": { + "id_car_serie": 3930, + "name": "4.6 MT (305 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21101, + "fields": { + "id_car_serie": 3931, + "name": "0.9 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21102, + "fields": { + "id_car_serie": 3931, + "name": "1.0 AT (45 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21103, + "fields": { + "id_car_serie": 3931, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21104, + "fields": { + "id_car_serie": 3931, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21105, + "fields": { + "id_car_serie": 3931, + "name": "1.1 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21106, + "fields": { + "id_car_serie": 3931, + "name": "1.1 MT (66 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21107, + "fields": { + "id_car_serie": 3931, + "name": "1.4 AT (72 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21108, + "fields": { + "id_car_serie": 3931, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21109, + "fields": { + "id_car_serie": 3932, + "name": "0.9 MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21110, + "fields": { + "id_car_serie": 3932, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21111, + "fields": { + "id_car_serie": 3932, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21112, + "fields": { + "id_car_serie": 3932, + "name": "1.1 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21113, + "fields": { + "id_car_serie": 3932, + "name": "1.1 MT (66 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21114, + "fields": { + "id_car_serie": 3932, + "name": "1.2 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21115, + "fields": { + "id_car_serie": 3932, + "name": "1.4 AT (72 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21116, + "fields": { + "id_car_serie": 3932, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21117, + "fields": { + "id_car_serie": 3933, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21118, + "fields": { + "id_car_serie": 3933, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21119, + "fields": { + "id_car_serie": 3933, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21120, + "fields": { + "id_car_serie": 3933, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21121, + "fields": { + "id_car_serie": 3933, + "name": "1.5 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21123, + "fields": { + "id_car_serie": 3933, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21124, + "fields": { + "id_car_serie": 3934, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21125, + "fields": { + "id_car_serie": 3934, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21126, + "fields": { + "id_car_serie": 3934, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21127, + "fields": { + "id_car_serie": 3934, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21128, + "fields": { + "id_car_serie": 3934, + "name": "1.5 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21129, + "fields": { + "id_car_serie": 3934, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21130, + "fields": { + "id_car_serie": 3934, + "name": "1.6 MT (118 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21131, + "fields": { + "id_car_serie": 3934, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21133, + "fields": { + "id_car_serie": 3935, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21134, + "fields": { + "id_car_serie": 3935, + "name": "1.4d MT (54 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21136, + "fields": { + "id_car_serie": 3936, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21137, + "fields": { + "id_car_serie": 3936, + "name": "1.4d MT (54 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21138, + "fields": { + "id_car_serie": 3937, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21139, + "fields": { + "id_car_serie": 3937, + "name": "1.1 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21140, + "fields": { + "id_car_serie": 3938, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1969 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21141, + "fields": { + "id_car_serie": 3938, + "name": "1.1 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21142, + "fields": { + "id_car_serie": 3938, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21143, + "fields": { + "id_car_serie": 3938, + "name": "2.0 MT (39 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21145, + "fields": { + "id_car_serie": 3940, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21148, + "fields": { + "id_car_serie": 3940, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21149, + "fields": { + "id_car_serie": 3940, + "name": "1.4 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21152, + "fields": { + "id_car_serie": 3940, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21155, + "fields": { + "id_car_serie": 3940, + "name": "1.9 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21156, + "fields": { + "id_car_serie": 3941, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21157, + "fields": { + "id_car_serie": 3941, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21159, + "fields": { + "id_car_serie": 3941, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21160, + "fields": { + "id_car_serie": 3941, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21161, + "fields": { + "id_car_serie": 3941, + "name": "1.3 MT Rallye (101 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21162, + "fields": { + "id_car_serie": 3941, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21166, + "fields": { + "id_car_serie": 3941, + "name": "1.6 MT GTI (113 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21167, + "fields": { + "id_car_serie": 3941, + "name": "1.6 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21169, + "fields": { + "id_car_serie": 3941, + "name": "1.8 MT D (59 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21170, + "fields": { + "id_car_serie": 3941, + "name": "1.8 MT D (78 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21172, + "fields": { + "id_car_serie": 3941, + "name": "1.9 MT D (64 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21173, + "fields": { + "id_car_serie": 3942, + "name": "1.0 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21174, + "fields": { + "id_car_serie": 3942, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21175, + "fields": { + "id_car_serie": 3942, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21177, + "fields": { + "id_car_serie": 3942, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21178, + "fields": { + "id_car_serie": 3942, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21181, + "fields": { + "id_car_serie": 3942, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21184, + "fields": { + "id_car_serie": 3942, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21185, + "fields": { + "id_car_serie": 3942, + "name": "1.8 TD MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21187, + "fields": { + "id_car_serie": 3943, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21188, + "fields": { + "id_car_serie": 3943, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21189, + "fields": { + "id_car_serie": 3943, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21190, + "fields": { + "id_car_serie": 3944, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21192, + "fields": { + "id_car_serie": 3944, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21193, + "fields": { + "id_car_serie": 3944, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21194, + "fields": { + "id_car_serie": 3944, + "name": "1.4 HDi MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21195, + "fields": { + "id_car_serie": 3944, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21196, + "fields": { + "id_car_serie": 3944, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21197, + "fields": { + "id_car_serie": 3944, + "name": "1.6 HDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21198, + "fields": { + "id_car_serie": 3944, + "name": "2.0 MT (138 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21199, + "fields": { + "id_car_serie": 3944, + "name": "2.0 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21201, + "fields": { + "id_car_serie": 3945, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21202, + "fields": { + "id_car_serie": 3945, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21204, + "fields": { + "id_car_serie": 3945, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21206, + "fields": { + "id_car_serie": 3945, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21207, + "fields": { + "id_car_serie": 3946, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21209, + "fields": { + "id_car_serie": 3946, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21210, + "fields": { + "id_car_serie": 3946, + "name": "1.4 HDi MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21220, + "fields": { + "id_car_serie": 3947, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21222, + "fields": { + "id_car_serie": 3947, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21223, + "fields": { + "id_car_serie": 3947, + "name": "1.4 HDi MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21230, + "fields": { + "id_car_serie": 3948, + "name": "1.6 VTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21231, + "fields": { + "id_car_serie": 3948, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21236, + "fields": { + "id_car_serie": 3949, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21237, + "fields": { + "id_car_serie": 3949, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21242, + "fields": { + "id_car_serie": 3949, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21244, + "fields": { + "id_car_serie": 3949, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21245, + "fields": { + "id_car_serie": 3950, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21246, + "fields": { + "id_car_serie": 3950, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21247, + "fields": { + "id_car_serie": 3950, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21248, + "fields": { + "id_car_serie": 3950, + "name": "1.4 VTi MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21249, + "fields": { + "id_car_serie": 3950, + "name": "1.4 HDi MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21250, + "fields": { + "id_car_serie": 3950, + "name": "1.6 VTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21251, + "fields": { + "id_car_serie": 3950, + "name": "1.6 HDi MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21252, + "fields": { + "id_car_serie": 3950, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21254, + "fields": { + "id_car_serie": 3950, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21255, + "fields": { + "id_car_serie": 3951, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21256, + "fields": { + "id_car_serie": 3951, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21257, + "fields": { + "id_car_serie": 3951, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21258, + "fields": { + "id_car_serie": 3951, + "name": "1.4 VTi MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21259, + "fields": { + "id_car_serie": 3951, + "name": "1.4 HDi MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21261, + "fields": { + "id_car_serie": 3951, + "name": "1.6 VTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21262, + "fields": { + "id_car_serie": 3951, + "name": "1.6 HDi MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21263, + "fields": { + "id_car_serie": 3951, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21265, + "fields": { + "id_car_serie": 3951, + "name": "1.6 MT RC (175 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21267, + "fields": { + "id_car_serie": 3951, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21268, + "fields": { + "id_car_serie": 3952, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21270, + "fields": { + "id_car_serie": 3952, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21271, + "fields": { + "id_car_serie": 3952, + "name": "1.4d MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21272, + "fields": { + "id_car_serie": 3952, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21273, + "fields": { + "id_car_serie": 3952, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21275, + "fields": { + "id_car_serie": 3952, + "name": "1.6d MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21276, + "fields": { + "id_car_serie": 3952, + "name": "1.6d MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21277, + "fields": { + "id_car_serie": 3953, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21279, + "fields": { + "id_car_serie": 3953, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21281, + "fields": { + "id_car_serie": 3953, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21282, + "fields": { + "id_car_serie": 3953, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21283, + "fields": { + "id_car_serie": 3953, + "name": "1.6 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21285, + "fields": { + "id_car_serie": 3953, + "name": "1.6d MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21286, + "fields": { + "id_car_serie": 3953, + "name": "1.6d MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21287, + "fields": { + "id_car_serie": 3954, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21288, + "fields": { + "id_car_serie": 3954, + "name": "1.6 VTI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21289, + "fields": { + "id_car_serie": 3954, + "name": "1.6 THP MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21290, + "fields": { + "id_car_serie": 3954, + "name": "1.6 e-HDi ETG (115 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21294, + "fields": { + "id_car_serie": 3955, + "name": "1.1 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21295, + "fields": { + "id_car_serie": 3955, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21296, + "fields": { + "id_car_serie": 3955, + "name": "1.4 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21297, + "fields": { + "id_car_serie": 3956, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21298, + "fields": { + "id_car_serie": 3956, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21299, + "fields": { + "id_car_serie": 3957, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21300, + "fields": { + "id_car_serie": 3957, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21301, + "fields": { + "id_car_serie": 3958, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21302, + "fields": { + "id_car_serie": 3958, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21303, + "fields": { + "id_car_serie": 3958, + "name": "1.4 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21306, + "fields": { + "id_car_serie": 3959, + "name": "1.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21309, + "fields": { + "id_car_serie": 3959, + "name": "1.5 MT (49 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21310, + "fields": { + "id_car_serie": 3959, + "name": "1.6 AT (89 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21311, + "fields": { + "id_car_serie": 3959, + "name": "1.6 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21312, + "fields": { + "id_car_serie": 3959, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21313, + "fields": { + "id_car_serie": 3959, + "name": "1.6 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21314, + "fields": { + "id_car_serie": 3959, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21315, + "fields": { + "id_car_serie": 3959, + "name": "1.9 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21316, + "fields": { + "id_car_serie": 3959, + "name": "1.9 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21317, + "fields": { + "id_car_serie": 3959, + "name": "1.9 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21318, + "fields": { + "id_car_serie": 3960, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21319, + "fields": { + "id_car_serie": 3960, + "name": "1.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21322, + "fields": { + "id_car_serie": 3960, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21323, + "fields": { + "id_car_serie": 3960, + "name": "1.5 MT (49 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21324, + "fields": { + "id_car_serie": 3960, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21325, + "fields": { + "id_car_serie": 3960, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21326, + "fields": { + "id_car_serie": 3960, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21327, + "fields": { + "id_car_serie": 3960, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21328, + "fields": { + "id_car_serie": 3960, + "name": "1.9 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21329, + "fields": { + "id_car_serie": 3960, + "name": "1.9 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21330, + "fields": { + "id_car_serie": 3960, + "name": "1.9 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21331, + "fields": { + "id_car_serie": 3960, + "name": "1.9 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21332, + "fields": { + "id_car_serie": 3960, + "name": "1.9 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21333, + "fields": { + "id_car_serie": 3961, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21334, + "fields": { + "id_car_serie": 3961, + "name": "1.6 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21335, + "fields": { + "id_car_serie": 3961, + "name": "1.8 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21336, + "fields": { + "id_car_serie": 3961, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21337, + "fields": { + "id_car_serie": 3961, + "name": "1.9 MT D (68 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21338, + "fields": { + "id_car_serie": 3961, + "name": "1.9 MT D (69 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21340, + "fields": { + "id_car_serie": 3961, + "name": "1.9 MT TD (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21342, + "fields": { + "id_car_serie": 3961, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21343, + "fields": { + "id_car_serie": 3961, + "name": "2.0 MT HDI (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21346, + "fields": { + "id_car_serie": 3962, + "name": "1.8 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21347, + "fields": { + "id_car_serie": 3962, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21349, + "fields": { + "id_car_serie": 3962, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21352, + "fields": { + "id_car_serie": 3963, + "name": "1.4 MT SL (75 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21353, + "fields": { + "id_car_serie": 3963, + "name": "1.6 MT SR (89 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21355, + "fields": { + "id_car_serie": 3963, + "name": "1.8 MT ST (101 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21356, + "fields": { + "id_car_serie": 3963, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21359, + "fields": { + "id_car_serie": 3963, + "name": "1.9 MT SLD (68 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21360, + "fields": { + "id_car_serie": 3963, + "name": "1.9 MT D (69 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21362, + "fields": { + "id_car_serie": 3963, + "name": "1.9 MT SRDT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21363, + "fields": { + "id_car_serie": 3963, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21364, + "fields": { + "id_car_serie": 3963, + "name": "2.0 MT ST (121 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21365, + "fields": { + "id_car_serie": 3963, + "name": "2.0 MT HDI (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21366, + "fields": { + "id_car_serie": 53258, + "name": "1.1 MT (61 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21367, + "fields": { + "id_car_serie": 3964, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21368, + "fields": { + "id_car_serie": 53258, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21369, + "fields": { + "id_car_serie": 3964, + "name": "1.8 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21370, + "fields": { + "id_car_serie": 53258, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21371, + "fields": { + "id_car_serie": 53258, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21373, + "fields": { + "id_car_serie": 3964, + "name": "1.9 SD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21374, + "fields": { + "id_car_serie": 3964, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21375, + "fields": { + "id_car_serie": 3964, + "name": "1.9 D MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21376, + "fields": { + "id_car_serie": 3964, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21377, + "fields": { + "id_car_serie": 53258, + "name": "1.9 D MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21378, + "fields": { + "id_car_serie": 53258, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21379, + "fields": { + "id_car_serie": 53258, + "name": "2.0 HDI MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21380, + "fields": { + "id_car_serie": 53258, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21381, + "fields": { + "id_car_serie": 53258, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21382, + "fields": { + "id_car_serie": 3965, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21383, + "fields": { + "id_car_serie": 3965, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21384, + "fields": { + "id_car_serie": 3965, + "name": "1.6 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21387, + "fields": { + "id_car_serie": 3965, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21388, + "fields": { + "id_car_serie": 3965, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21392, + "fields": { + "id_car_serie": 3965, + "name": "1.9 MT TD (68 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21393, + "fields": { + "id_car_serie": 3965, + "name": "1.9 DI-D MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21395, + "fields": { + "id_car_serie": 3965, + "name": "1.9 MT TD (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21397, + "fields": { + "id_car_serie": 3965, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21398, + "fields": { + "id_car_serie": 3965, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21399, + "fields": { + "id_car_serie": 3965, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21401, + "fields": { + "id_car_serie": 3965, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21402, + "fields": { + "id_car_serie": 3965, + "name": "2.0 MT HDI (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21405, + "fields": { + "id_car_serie": 3966, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21407, + "fields": { + "id_car_serie": 3967, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21408, + "fields": { + "id_car_serie": 3967, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21414, + "fields": { + "id_car_serie": 3967, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21420, + "fields": { + "id_car_serie": 3968, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21422, + "fields": { + "id_car_serie": 3968, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21423, + "fields": { + "id_car_serie": 3968, + "name": "1.6 HDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21424, + "fields": { + "id_car_serie": 3968, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21425, + "fields": { + "id_car_serie": 3968, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21426, + "fields": { + "id_car_serie": 3968, + "name": "2.0 HDi AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21427, + "fields": { + "id_car_serie": 3968, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21428, + "fields": { + "id_car_serie": 3968, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21430, + "fields": { + "id_car_serie": 3968, + "name": "2.0 HDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21433, + "fields": { + "id_car_serie": 3969, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21435, + "fields": { + "id_car_serie": 3969, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21436, + "fields": { + "id_car_serie": 3969, + "name": "1.6 HDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21437, + "fields": { + "id_car_serie": 3969, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21438, + "fields": { + "id_car_serie": 3969, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21439, + "fields": { + "id_car_serie": 3969, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21440, + "fields": { + "id_car_serie": 3969, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21441, + "fields": { + "id_car_serie": 3969, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21443, + "fields": { + "id_car_serie": 3969, + "name": "2.0 HDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21445, + "fields": { + "id_car_serie": 3970, + "name": "1.2 VTi MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21446, + "fields": { + "id_car_serie": 3970, + "name": "1.6 THP MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21447, + "fields": { + "id_car_serie": 3970, + "name": "1.6 THP MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21448, + "fields": { + "id_car_serie": 3970, + "name": "1.6 VTI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21455, + "fields": { + "id_car_serie": 3971, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21456, + "fields": { + "id_car_serie": 3971, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21465, + "fields": { + "id_car_serie": 3971, + "name": "1.9 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21466, + "fields": { + "id_car_serie": 3971, + "name": "1.9 MT (158 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21468, + "fields": { + "id_car_serie": 3971, + "name": "1.9d MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21469, + "fields": { + "id_car_serie": 3972, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21473, + "fields": { + "id_car_serie": 3972, + "name": "1.4 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21474, + "fields": { + "id_car_serie": 3972, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21475, + "fields": { + "id_car_serie": 3972, + "name": "1.6 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21476, + "fields": { + "id_car_serie": 3972, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21477, + "fields": { + "id_car_serie": 3972, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21478, + "fields": { + "id_car_serie": 3972, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21479, + "fields": { + "id_car_serie": 3972, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21481, + "fields": { + "id_car_serie": 3972, + "name": "1.9 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21482, + "fields": { + "id_car_serie": 3972, + "name": "1.9 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21483, + "fields": { + "id_car_serie": 3972, + "name": "1.9 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21486, + "fields": { + "id_car_serie": 3972, + "name": "1.9 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21487, + "fields": { + "id_car_serie": 3972, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21488, + "fields": { + "id_car_serie": 3972, + "name": "1.9 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21489, + "fields": { + "id_car_serie": 3972, + "name": "1.9 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21493, + "fields": { + "id_car_serie": 3973, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21495, + "fields": { + "id_car_serie": 3973, + "name": "1.8 AT (103 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21496, + "fields": { + "id_car_serie": 3973, + "name": "1.8 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21508, + "fields": { + "id_car_serie": 3973, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21511, + "fields": { + "id_car_serie": 3973, + "name": "1.9 TD MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21512, + "fields": { + "id_car_serie": 3973, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21525, + "fields": { + "id_car_serie": 3974, + "name": "1.8 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21526, + "fields": { + "id_car_serie": 3974, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21540, + "fields": { + "id_car_serie": 3974, + "name": "1.9 MT D (68 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21542, + "fields": { + "id_car_serie": 3974, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21544, + "fields": { + "id_car_serie": 3974, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21546, + "fields": { + "id_car_serie": 3974, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21548, + "fields": { + "id_car_serie": 3974, + "name": "2.0 T MT 4WD (196 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21549, + "fields": { + "id_car_serie": 3975, + "name": "2.0 AT (138 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21551, + "fields": { + "id_car_serie": 3975, + "name": "2.0 MT (138 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21552, + "fields": { + "id_car_serie": 3975, + "name": "2.2 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21553, + "fields": { + "id_car_serie": 3975, + "name": "2.2 HDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21558, + "fields": { + "id_car_serie": 3976, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21560, + "fields": { + "id_car_serie": 3976, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21562, + "fields": { + "id_car_serie": 3976, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21565, + "fields": { + "id_car_serie": 3976, + "name": "2.0 AT (138 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21566, + "fields": { + "id_car_serie": 3976, + "name": "2.0 HPi AT (143 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21569, + "fields": { + "id_car_serie": 3976, + "name": "2.0 MT (138 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21570, + "fields": { + "id_car_serie": 3976, + "name": "2.0 HPi MT (143 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21571, + "fields": { + "id_car_serie": 3976, + "name": "2.0 HDi AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21572, + "fields": { + "id_car_serie": 3976, + "name": "2.0 HDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21573, + "fields": { + "id_car_serie": 3976, + "name": "2.0 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21574, + "fields": { + "id_car_serie": 3976, + "name": "2.2 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21575, + "fields": { + "id_car_serie": 3976, + "name": "2.2 HDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21581, + "fields": { + "id_car_serie": 3977, + "name": "1.8 AT (117 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21583, + "fields": { + "id_car_serie": 3977, + "name": "1.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21589, + "fields": { + "id_car_serie": 3977, + "name": "2.0 AT (138 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21590, + "fields": { + "id_car_serie": 3977, + "name": "2.0 HPi AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21592, + "fields": { + "id_car_serie": 3977, + "name": "2.0 MT (138 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21593, + "fields": { + "id_car_serie": 3977, + "name": "2.0 HPi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21595, + "fields": { + "id_car_serie": 3977, + "name": "2.0 HDi AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21596, + "fields": { + "id_car_serie": 3977, + "name": "2.0 HDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21597, + "fields": { + "id_car_serie": 3977, + "name": "2.0 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21599, + "fields": { + "id_car_serie": 3977, + "name": "2.2 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21600, + "fields": { + "id_car_serie": 3977, + "name": "2.2 HDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21605, + "fields": { + "id_car_serie": 3978, + "name": "2.2 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21606, + "fields": { + "id_car_serie": 3978, + "name": "2.7 HDi AT (205 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21609, + "fields": { + "id_car_serie": 3979, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21613, + "fields": { + "id_car_serie": 3979, + "name": "2.0 HDi AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21614, + "fields": { + "id_car_serie": 3979, + "name": "2.0 HDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21615, + "fields": { + "id_car_serie": 3979, + "name": "2.0 HDi 6AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21616, + "fields": { + "id_car_serie": 3979, + "name": "2.0 HDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21617, + "fields": { + "id_car_serie": 3979, + "name": "2.2 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21618, + "fields": { + "id_car_serie": 3979, + "name": "2.2 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21619, + "fields": { + "id_car_serie": 3979, + "name": "2.9 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21620, + "fields": { + "id_car_serie": 3980, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21624, + "fields": { + "id_car_serie": 3980, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21628, + "fields": { + "id_car_serie": 3980, + "name": "2.2 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21630, + "fields": { + "id_car_serie": 3981, + "name": "1.6 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21631, + "fields": { + "id_car_serie": 3981, + "name": "1.8 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21632, + "fields": { + "id_car_serie": 3981, + "name": "1.9 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21633, + "fields": { + "id_car_serie": 3981, + "name": "2.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21634, + "fields": { + "id_car_serie": 3982, + "name": "2.0 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21635, + "fields": { + "id_car_serie": 3982, + "name": "2.0 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21636, + "fields": { + "id_car_serie": 3982, + "name": "2.0 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21637, + "fields": { + "id_car_serie": 3982, + "name": "2.7 MT (144 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21638, + "fields": { + "id_car_serie": 3983, + "name": "2.0 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21639, + "fields": { + "id_car_serie": 3983, + "name": "2.0 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21640, + "fields": { + "id_car_serie": 3983, + "name": "2.0 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21641, + "fields": { + "id_car_serie": 3983, + "name": "2.0 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21642, + "fields": { + "id_car_serie": 3984, + "name": "1.8 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21643, + "fields": { + "id_car_serie": 3984, + "name": "2.0 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21644, + "fields": { + "id_car_serie": 3984, + "name": "2.1 MT (62 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21645, + "fields": { + "id_car_serie": 3984, + "name": "2.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21646, + "fields": { + "id_car_serie": 3985, + "name": "1.8 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21647, + "fields": { + "id_car_serie": 3985, + "name": "1.8 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21648, + "fields": { + "id_car_serie": 3985, + "name": "1.8 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21649, + "fields": { + "id_car_serie": 3985, + "name": "1.8 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21650, + "fields": { + "id_car_serie": 3985, + "name": "1.9 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21651, + "fields": { + "id_car_serie": 3985, + "name": "2.0 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21652, + "fields": { + "id_car_serie": 3985, + "name": "2.0 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21653, + "fields": { + "id_car_serie": 3985, + "name": "2.0 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21654, + "fields": { + "id_car_serie": 3985, + "name": "2.0 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21655, + "fields": { + "id_car_serie": 3985, + "name": "2.1 MT (62 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21658, + "fields": { + "id_car_serie": 3986, + "name": "2.0 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21661, + "fields": { + "id_car_serie": 3986, + "name": "2.2 MT GTI (131 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21664, + "fields": { + "id_car_serie": 3986, + "name": "2.5 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21666, + "fields": { + "id_car_serie": 3986, + "name": "2.5 D MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21669, + "fields": { + "id_car_serie": 3987, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21670, + "fields": { + "id_car_serie": 3987, + "name": "2.0 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21671, + "fields": { + "id_car_serie": 3987, + "name": "2.0 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21673, + "fields": { + "id_car_serie": 3987, + "name": "2.2 AT GTI (131 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21676, + "fields": { + "id_car_serie": 3987, + "name": "2.2 MT GTI (131 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21682, + "fields": { + "id_car_serie": 3987, + "name": "2.5 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21683, + "fields": { + "id_car_serie": 3987, + "name": "2.5 D MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21684, + "fields": { + "id_car_serie": 3987, + "name": "2.5 TD MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21685, + "fields": { + "id_car_serie": 3987, + "name": "2.8 AT V6 (170 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21686, + "fields": { + "id_car_serie": 3987, + "name": "2.8 MT V6 (170 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21708, + "fields": { + "id_car_serie": 3990, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21709, + "fields": { + "id_car_serie": 3990, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21710, + "fields": { + "id_car_serie": 3990, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21711, + "fields": { + "id_car_serie": 3990, + "name": "1.6 HDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21712, + "fields": { + "id_car_serie": 3990, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21713, + "fields": { + "id_car_serie": 3991, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21714, + "fields": { + "id_car_serie": 3991, + "name": "1.6 THP MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21715, + "fields": { + "id_car_serie": 3991, + "name": "1.6 THP MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21716, + "fields": { + "id_car_serie": 3991, + "name": "2.0 HDi MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21717, + "fields": { + "id_car_serie": 3992, + "name": "2.2 AT (146 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21718, + "fields": { + "id_car_serie": 3992, + "name": "2.2 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21719, + "fields": { + "id_car_serie": 3992, + "name": "2.2 MT (146 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21720, + "fields": { + "id_car_serie": 3992, + "name": "2.2 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21721, + "fields": { + "id_car_serie": 3993, + "name": "2.2 AT (146 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21722, + "fields": { + "id_car_serie": 3993, + "name": "2.2 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21723, + "fields": { + "id_car_serie": 3993, + "name": "2.2 MT (146 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21724, + "fields": { + "id_car_serie": 3993, + "name": "2.2 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21728, + "fields": { + "id_car_serie": 3994, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21733, + "fields": { + "id_car_serie": 3996, + "name": "2.2 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21734, + "fields": { + "id_car_serie": 3996, + "name": "2.2 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21735, + "fields": { + "id_car_serie": 3996, + "name": "2.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21736, + "fields": { + "id_car_serie": 3996, + "name": "2.5 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21737, + "fields": { + "id_car_serie": 3996, + "name": "2.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21738, + "fields": { + "id_car_serie": 3996, + "name": "2.5 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21739, + "fields": { + "id_car_serie": 3996, + "name": "3.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21740, + "fields": { + "id_car_serie": 3996, + "name": "3.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21750, + "fields": { + "id_car_serie": 3998, + "name": "3.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21752, + "fields": { + "id_car_serie": 3998, + "name": "3.8 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21753, + "fields": { + "id_car_serie": 3999, + "name": "2.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21755, + "fields": { + "id_car_serie": 3999, + "name": "3.1 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21762, + "fields": { + "id_car_serie": 4002, + "name": "3.8 AT (208 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21764, + "fields": { + "id_car_serie": 4002, + "name": "4.6 AT (279 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21766, + "fields": { + "id_car_serie": 4003, + "name": "3.4 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21769, + "fields": { + "id_car_serie": 4003, + "name": "3.8 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21772, + "fields": { + "id_car_serie": 4003, + "name": "5.7 AT (275 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21779, + "fields": { + "id_car_serie": 4003, + "name": "5.7 MT (279 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21785, + "fields": { + "id_car_serie": 4004, + "name": "3.4 MT (148 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21789, + "fields": { + "id_car_serie": 4004, + "name": "3.8 MT (196 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21799, + "fields": { + "id_car_serie": 4004, + "name": "5.7 MT (275 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21803, + "fields": { + "id_car_serie": 4005, + "name": "2.2 AT (148 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21804, + "fields": { + "id_car_serie": 4005, + "name": "2.2 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21805, + "fields": { + "id_car_serie": 4005, + "name": "2.2 MT (148 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21806, + "fields": { + "id_car_serie": 4005, + "name": "2.2 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21807, + "fields": { + "id_car_serie": 4005, + "name": "2.4 AT (171 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21808, + "fields": { + "id_car_serie": 4005, + "name": "2.4 MT (171 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21809, + "fields": { + "id_car_serie": 4006, + "name": "2.2 AT (148 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21810, + "fields": { + "id_car_serie": 4006, + "name": "2.2 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21811, + "fields": { + "id_car_serie": 4006, + "name": "2.2 MT (148 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21812, + "fields": { + "id_car_serie": 4006, + "name": "2.2 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21813, + "fields": { + "id_car_serie": 4006, + "name": "2.4 AT (171 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21814, + "fields": { + "id_car_serie": 4006, + "name": "2.4 MT (171 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21815, + "fields": { + "id_car_serie": 4007, + "name": "2.2 AT (148 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21816, + "fields": { + "id_car_serie": 4007, + "name": "2.2 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21817, + "fields": { + "id_car_serie": 4007, + "name": "2.2 MT (148 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21818, + "fields": { + "id_car_serie": 4007, + "name": "2.2 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21819, + "fields": { + "id_car_serie": 4007, + "name": "2.4 AT (171 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21820, + "fields": { + "id_car_serie": 4007, + "name": "2.4 MT (171 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21821, + "fields": { + "id_car_serie": 4008, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21822, + "fields": { + "id_car_serie": 4008, + "name": "2.2 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21823, + "fields": { + "id_car_serie": 4008, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21824, + "fields": { + "id_car_serie": 4008, + "name": "2.2 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21825, + "fields": { + "id_car_serie": 4008, + "name": "2.4 AT (171 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21826, + "fields": { + "id_car_serie": 4008, + "name": "2.4 MT (171 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21828, + "fields": { + "id_car_serie": 4009, + "name": "3.5 AT GT (204 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21831, + "fields": { + "id_car_serie": 4009, + "name": "3.9 MT GTP (243 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21832, + "fields": { + "id_car_serie": 4010, + "name": "3.5 AT GT (204 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21834, + "fields": { + "id_car_serie": 4010, + "name": "3.9 AT GTP (243 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21835, + "fields": { + "id_car_serie": 4011, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21836, + "fields": { + "id_car_serie": 4011, + "name": "3.5 AT GT (205 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21838, + "fields": { + "id_car_serie": 4011, + "name": "3.9 AT GTP (243 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21840, + "fields": { + "id_car_serie": 4012, + "name": "2.2 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21842, + "fields": { + "id_car_serie": 4012, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21843, + "fields": { + "id_car_serie": 4012, + "name": "3.4 AT SE2 (173 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21844, + "fields": { + "id_car_serie": 4012, + "name": "3.4 AT GT (177 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21846, + "fields": { + "id_car_serie": 4013, + "name": "2.2 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21847, + "fields": { + "id_car_serie": 4013, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21850, + "fields": { + "id_car_serie": 4013, + "name": "3.4 AT GT (177 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21851, + "fields": { + "id_car_serie": 4014, + "name": "3.8 AT GT (203 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21852, + "fields": { + "id_car_serie": 4014, + "name": "3.8 AT GTP (264 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21854, + "fields": { + "id_car_serie": 4015, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21855, + "fields": { + "id_car_serie": 4015, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21856, + "fields": { + "id_car_serie": 4015, + "name": "2.0 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21857, + "fields": { + "id_car_serie": 4015, + "name": "2.0 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21858, + "fields": { + "id_car_serie": 4016, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21859, + "fields": { + "id_car_serie": 4016, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21860, + "fields": { + "id_car_serie": 4016, + "name": "2.0 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21861, + "fields": { + "id_car_serie": 4016, + "name": "2.0 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21862, + "fields": { + "id_car_serie": 4017, + "name": "3.5 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21866, + "fields": { + "id_car_serie": 4017, + "name": "3.9 AT (243 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21868, + "fields": { + "id_car_serie": 4018, + "name": "2.5 AT (92 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21869, + "fields": { + "id_car_serie": 4018, + "name": "2.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21870, + "fields": { + "id_car_serie": 4018, + "name": "2.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21871, + "fields": { + "id_car_serie": 4018, + "name": "2.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21872, + "fields": { + "id_car_serie": 4018, + "name": "2.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21873, + "fields": { + "id_car_serie": 4018, + "name": "2.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21874, + "fields": { + "id_car_serie": 4019, + "name": "2.5 AT (92 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21875, + "fields": { + "id_car_serie": 4019, + "name": "2.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21876, + "fields": { + "id_car_serie": 4019, + "name": "2.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21877, + "fields": { + "id_car_serie": 4019, + "name": "2.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21878, + "fields": { + "id_car_serie": 4019, + "name": "2.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21879, + "fields": { + "id_car_serie": 4019, + "name": "2.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21881, + "fields": { + "id_car_serie": 4020, + "name": "2.0 MT (260 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21883, + "fields": { + "id_car_serie": 4020, + "name": "2.4 MT (173 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21885, + "fields": { + "id_car_serie": 4021, + "name": "2.0 MT Turbo (260 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21887, + "fields": { + "id_car_serie": 4021, + "name": "2.4 MT (173 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21888, + "fields": { + "id_car_serie": 4022, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21889, + "fields": { + "id_car_serie": 4022, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21890, + "fields": { + "id_car_serie": 4022, + "name": "2.0 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21891, + "fields": { + "id_car_serie": 4022, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21892, + "fields": { + "id_car_serie": 4022, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21893, + "fields": { + "id_car_serie": 4022, + "name": "2.0 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21894, + "fields": { + "id_car_serie": 4022, + "name": "3.1 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21895, + "fields": { + "id_car_serie": 4022, + "name": "3.1 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21898, + "fields": { + "id_car_serie": 4023, + "name": "2.2 MT Ecotec (141 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21913, + "fields": { + "id_car_serie": 4025, + "name": "2.2 MT Ecotec (141 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21945, + "fields": { + "id_car_serie": 4030, + "name": "3.8 PDK AWD (520 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21946, + "fields": { + "id_car_serie": 4030, + "name": "S 3.8 PDK AWD (560 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21949, + "fields": { + "id_car_serie": 4031, + "name": "3.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21950, + "fields": { + "id_car_serie": 4032, + "name": "2.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21951, + "fields": { + "id_car_serie": 4032, + "name": "2.5 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21952, + "fields": { + "id_car_serie": 4032, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21953, + "fields": { + "id_car_serie": 4032, + "name": "2.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21954, + "fields": { + "id_car_serie": 4032, + "name": "2.5 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21955, + "fields": { + "id_car_serie": 4032, + "name": "2.5 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21956, + "fields": { + "id_car_serie": 4032, + "name": "2.5 MT (250 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21957, + "fields": { + "id_car_serie": 4032, + "name": "2.7 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21958, + "fields": { + "id_car_serie": 4032, + "name": "3.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21960, + "fields": { + "id_car_serie": 4033, + "name": "3.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21961, + "fields": { + "id_car_serie": 4033, + "name": "3.0 MT Turbo S (305 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21963, + "fields": { + "id_car_serie": 4034, + "name": "3.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21967, + "fields": { + "id_car_serie": 4035, + "name": "3.4 PDK (330 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2016 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21969, + "fields": { + "id_car_serie": 4035, + "name": "3.4 MT (330 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2016 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21970, + "fields": { + "id_car_serie": 4036, + "name": "Diesel 3.0 Tiptronic AWD (245 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21972, + "fields": { + "id_car_serie": 4036, + "name": "3.6 Tiptronic AWD (300 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21973, + "fields": { + "id_car_serie": 4036, + "name": "3.6 MT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21976, + "fields": { + "id_car_serie": 4036, + "name": "GTS 4.8 Tiptronic AWD (420 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21977, + "fields": { + "id_car_serie": 4036, + "name": "Turbo 4.8 PDK AWD (500 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21978, + "fields": { + "id_car_serie": 4036, + "name": "Turbo S 4.8 Tiptronic AWD (550 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 21983, + "fields": { + "id_car_serie": 4037, + "name": "S 3.4 MT (320 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21984, + "fields": { + "id_car_serie": 4037, + "name": "R 3.4 MT (330 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21985, + "fields": { + "id_car_serie": 4038, + "name": "S 3.0 PDK (420 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21986, + "fields": { + "id_car_serie": 4038, + "name": "4S 3.0 PDK AWD (420 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21987, + "fields": { + "id_car_serie": 4038, + "name": "Diesel 3.0 Tiptronic S (250 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21990, + "fields": { + "id_car_serie": 4038, + "name": "3.6 PDK (310 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21991, + "fields": { + "id_car_serie": 4038, + "name": "4 3.6 PDK AWD (310 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21992, + "fields": { + "id_car_serie": 4038, + "name": "GTS 4.8 PDK AWD (440 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21993, + "fields": { + "id_car_serie": 4038, + "name": "Turbo 4.8 PDK AWD (520 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21994, + "fields": { + "id_car_serie": 4038, + "name": "Turbo S 4.8 PDK AWD (570 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21995, + "fields": { + "id_car_serie": 4039, + "name": "1.3 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21996, + "fields": { + "id_car_serie": 4039, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21997, + "fields": { + "id_car_serie": 4039, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21998, + "fields": { + "id_car_serie": 4039, + "name": "1.6 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 21999, + "fields": { + "id_car_serie": 4040, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22000, + "fields": { + "id_car_serie": 4040, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22001, + "fields": { + "id_car_serie": 4041, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22002, + "fields": { + "id_car_serie": 4042, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22003, + "fields": { + "id_car_serie": 4042, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22004, + "fields": { + "id_car_serie": 4042, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22005, + "fields": { + "id_car_serie": 4042, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22006, + "fields": { + "id_car_serie": 4042, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22007, + "fields": { + "id_car_serie": 4042, + "name": "2.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22008, + "fields": { + "id_car_serie": 4043, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22009, + "fields": { + "id_car_serie": 4043, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22010, + "fields": { + "id_car_serie": 4043, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22011, + "fields": { + "id_car_serie": 4043, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22012, + "fields": { + "id_car_serie": 4043, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22013, + "fields": { + "id_car_serie": 4043, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22014, + "fields": { + "id_car_serie": 4043, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22015, + "fields": { + "id_car_serie": 4043, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22016, + "fields": { + "id_car_serie": 4043, + "name": "2.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22017, + "fields": { + "id_car_serie": 4043, + "name": "2.0 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22038, + "fields": { + "id_car_serie": 4048, + "name": "1.6 AMT (126 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22039, + "fields": { + "id_car_serie": 4048, + "name": "1.6 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22040, + "fields": { + "id_car_serie": 4048, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22041, + "fields": { + "id_car_serie": 4049, + "name": "1.6 AMT (126 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22042, + "fields": { + "id_car_serie": 4049, + "name": "1.6 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22043, + "fields": { + "id_car_serie": 4049, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22044, + "fields": { + "id_car_serie": 4050, + "name": "1.4 5MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22045, + "fields": { + "id_car_serie": 4050, + "name": "1.4 4MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22049, + "fields": { + "id_car_serie": 4051, + "name": "1.4 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22050, + "fields": { + "id_car_serie": 4051, + "name": "1.4 4MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22051, + "fields": { + "id_car_serie": 4051, + "name": "1.4 5MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22052, + "fields": { + "id_car_serie": 4051, + "name": "1.4 T MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22054, + "fields": { + "id_car_serie": 4051, + "name": "1.6 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22061, + "fields": { + "id_car_serie": 4051, + "name": "1.7 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22063, + "fields": { + "id_car_serie": 4052, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22066, + "fields": { + "id_car_serie": 4053, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22067, + "fields": { + "id_car_serie": 4053, + "name": "1.3 MT (61 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22069, + "fields": { + "id_car_serie": 4054, + "name": "1.4 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22072, + "fields": { + "id_car_serie": 4054, + "name": "1.6 AWD MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22073, + "fields": { + "id_car_serie": 4054, + "name": "1.6 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22075, + "fields": { + "id_car_serie": 4054, + "name": "2.1 D MT (66 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22078, + "fields": { + "id_car_serie": 4055, + "name": "1.4 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22084, + "fields": { + "id_car_serie": 4055, + "name": "1.6 T MT (127 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22086, + "fields": { + "id_car_serie": 4055, + "name": "1.6 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22089, + "fields": { + "id_car_serie": 4055, + "name": "2.0 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22090, + "fields": { + "id_car_serie": 4055, + "name": "2.1 D MT (66 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22092, + "fields": { + "id_car_serie": 4055, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22093, + "fields": { + "id_car_serie": 4056, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22096, + "fields": { + "id_car_serie": 4057, + "name": "1.7 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22097, + "fields": { + "id_car_serie": 4057, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22098, + "fields": { + "id_car_serie": 4057, + "name": "1.7 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22099, + "fields": { + "id_car_serie": 4057, + "name": "1.9 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22104, + "fields": { + "id_car_serie": 4057, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22105, + "fields": { + "id_car_serie": 4057, + "name": "2.0 T MT Quadra (162 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22110, + "fields": { + "id_car_serie": 4057, + "name": "2.1 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22111, + "fields": { + "id_car_serie": 4057, + "name": "2.1 Td MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22113, + "fields": { + "id_car_serie": 4057, + "name": "2.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22114, + "fields": { + "id_car_serie": 4058, + "name": "1.7 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22115, + "fields": { + "id_car_serie": 4058, + "name": "1.9 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22118, + "fields": { + "id_car_serie": 4058, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22120, + "fields": { + "id_car_serie": 4058, + "name": "2.1 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22121, + "fields": { + "id_car_serie": 4058, + "name": "2.1 Td MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22122, + "fields": { + "id_car_serie": 4058, + "name": "2.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22124, + "fields": { + "id_car_serie": 4059, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22126, + "fields": { + "id_car_serie": 4059, + "name": "1.7 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22130, + "fields": { + "id_car_serie": 4059, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22137, + "fields": { + "id_car_serie": 4059, + "name": "2.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22145, + "fields": { + "id_car_serie": 4063, + "name": "1.0 MT (42 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22147, + "fields": { + "id_car_serie": 4063, + "name": "1.1 MT (47 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22148, + "fields": { + "id_car_serie": 4063, + "name": "1.1 5MT (47 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22150, + "fields": { + "id_car_serie": 4063, + "name": "1.4 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22153, + "fields": { + "id_car_serie": 4063, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22155, + "fields": { + "id_car_serie": 4063, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22156, + "fields": { + "id_car_serie": 4063, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22157, + "fields": { + "id_car_serie": 4063, + "name": "1.6 TD MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22163, + "fields": { + "id_car_serie": 49036, + "name": "1.1 MT (49 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22165, + "fields": { + "id_car_serie": 49036, + "name": "1.4 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22166, + "fields": { + "id_car_serie": 49036, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22167, + "fields": { + "id_car_serie": 49036, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22168, + "fields": { + "id_car_serie": 49036, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22169, + "fields": { + "id_car_serie": 49036, + "name": "1.6 TD MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22170, + "fields": { + "id_car_serie": 49036, + "name": "1.7 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22175, + "fields": { + "id_car_serie": 4065, + "name": "0.9 TsE MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22178, + "fields": { + "id_car_serie": 4065, + "name": "1.5 dCI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22180, + "fields": { + "id_car_serie": 4067, + "name": "1.9 dCi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22181, + "fields": { + "id_car_serie": 4067, + "name": "2.0 T AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22182, + "fields": { + "id_car_serie": 4067, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22183, + "fields": { + "id_car_serie": 4067, + "name": "2.0 T MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22189, + "fields": { + "id_car_serie": 4067, + "name": "2.2 dCi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22190, + "fields": { + "id_car_serie": 4067, + "name": "2.2 dCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22191, + "fields": { + "id_car_serie": 4067, + "name": "3.0 dCi AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22192, + "fields": { + "id_car_serie": 4067, + "name": "3.5 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22195, + "fields": { + "id_car_serie": 4068, + "name": "1.6 CVT (114 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22196, + "fields": { + "id_car_serie": 4068, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22197, + "fields": { + "id_car_serie": 4068, + "name": "2.0 CVT (137 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22198, + "fields": { + "id_car_serie": 4068, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22204, + "fields": { + "id_car_serie": 4069, + "name": "1.5 dCi MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22207, + "fields": { + "id_car_serie": 4070, + "name": "2.0 dCi AT 4x4 (173 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22211, + "fields": { + "id_car_serie": 4070, + "name": "2.5 CVT 4x4 (171 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22212, + "fields": { + "id_car_serie": 4070, + "name": "2.5 MT 4x4 (171 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22213, + "fields": { + "id_car_serie": 4071, + "name": "2.0 T AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22215, + "fields": { + "id_car_serie": 4072, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22216, + "fields": { + "id_car_serie": 4072, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22217, + "fields": { + "id_car_serie": 4072, + "name": "2.0 T AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22218, + "fields": { + "id_car_serie": 4072, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22219, + "fields": { + "id_car_serie": 4072, + "name": "2.0 dCi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22221, + "fields": { + "id_car_serie": 4072, + "name": "2.0 dCi MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22222, + "fields": { + "id_car_serie": 4072, + "name": "2.0 dCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22223, + "fields": { + "id_car_serie": 4072, + "name": "2.0 dCi MT (173 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22225, + "fields": { + "id_car_serie": 4073, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22227, + "fields": { + "id_car_serie": 4073, + "name": "2.0 T AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22228, + "fields": { + "id_car_serie": 4073, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22229, + "fields": { + "id_car_serie": 4073, + "name": "2.0 dCi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22231, + "fields": { + "id_car_serie": 4073, + "name": "2.0 dCi MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22232, + "fields": { + "id_car_serie": 4073, + "name": "2.0 dCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22233, + "fields": { + "id_car_serie": 4073, + "name": "2.0 dCi MT (173 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22234, + "fields": { + "id_car_serie": 4074, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22235, + "fields": { + "id_car_serie": 4074, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22261, + "fields": { + "id_car_serie": 4078, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22263, + "fields": { + "id_car_serie": 4078, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22264, + "fields": { + "id_car_serie": 4078, + "name": "2.0 dCi MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22268, + "fields": { + "id_car_serie": 4079, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22269, + "fields": { + "id_car_serie": 4079, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22270, + "fields": { + "id_car_serie": 4080, + "name": "0.8 MT (34 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22271, + "fields": { + "id_car_serie": 4081, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22272, + "fields": { + "id_car_serie": 4081, + "name": "2.3 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22284, + "fields": { + "id_car_serie": 4083, + "name": "1.4 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22285, + "fields": { + "id_car_serie": 4083, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22287, + "fields": { + "id_car_serie": 4083, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22288, + "fields": { + "id_car_serie": 4083, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22293, + "fields": { + "id_car_serie": 4084, + "name": "1.5 dCi MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22298, + "fields": { + "id_car_serie": 4086, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22300, + "fields": { + "id_car_serie": 4088, + "name": "6.7 AT (453 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22302, + "fields": { + "id_car_serie": 4090, + "name": "6.75 T AT (304 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22307, + "fields": { + "id_car_serie": 4092, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22308, + "fields": { + "id_car_serie": 4092, + "name": "1.4 CVT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22311, + "fields": { + "id_car_serie": 4092, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22327, + "fields": { + "id_car_serie": 4096, + "name": "1.1 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22328, + "fields": { + "id_car_serie": 4096, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22329, + "fields": { + "id_car_serie": 4096, + "name": "1.4 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22330, + "fields": { + "id_car_serie": 4096, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22331, + "fields": { + "id_car_serie": 4096, + "name": "1.8 CVT (117 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22332, + "fields": { + "id_car_serie": 4096, + "name": "1.8 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22333, + "fields": { + "id_car_serie": 4096, + "name": "2.0 TD MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22334, + "fields": { + "id_car_serie": 4096, + "name": "2.0 TD MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22335, + "fields": { + "id_car_serie": 4097, + "name": "1.1 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22336, + "fields": { + "id_car_serie": 4097, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22337, + "fields": { + "id_car_serie": 4097, + "name": "1.4 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22338, + "fields": { + "id_car_serie": 4097, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22339, + "fields": { + "id_car_serie": 4097, + "name": "1.8 CVT (117 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22340, + "fields": { + "id_car_serie": 4097, + "name": "1.8 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22341, + "fields": { + "id_car_serie": 4097, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22342, + "fields": { + "id_car_serie": 4097, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22358, + "fields": { + "id_car_serie": 4100, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22359, + "fields": { + "id_car_serie": 4100, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22361, + "fields": { + "id_car_serie": 4100, + "name": "1.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22362, + "fields": { + "id_car_serie": 4100, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22363, + "fields": { + "id_car_serie": 4100, + "name": "2.0 TD MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22364, + "fields": { + "id_car_serie": 4100, + "name": "2.0 TD MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22365, + "fields": { + "id_car_serie": 4101, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22366, + "fields": { + "id_car_serie": 4101, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22368, + "fields": { + "id_car_serie": 4101, + "name": "1.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22369, + "fields": { + "id_car_serie": 4101, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22370, + "fields": { + "id_car_serie": 4101, + "name": "2.0 TD MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22371, + "fields": { + "id_car_serie": 4101, + "name": "2.0 TD MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22372, + "fields": { + "id_car_serie": 4102, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22373, + "fields": { + "id_car_serie": 4102, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22374, + "fields": { + "id_car_serie": 4102, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22375, + "fields": { + "id_car_serie": 4102, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22376, + "fields": { + "id_car_serie": 4102, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22377, + "fields": { + "id_car_serie": 4102, + "name": "2.0 CDT AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22378, + "fields": { + "id_car_serie": 4102, + "name": "2.0 CDTi AT (131 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22379, + "fields": { + "id_car_serie": 4102, + "name": "2.0 CDT MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22380, + "fields": { + "id_car_serie": 4102, + "name": "2.0 CDTi MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22381, + "fields": { + "id_car_serie": 4102, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22382, + "fields": { + "id_car_serie": 4102, + "name": "2.5 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22383, + "fields": { + "id_car_serie": 4103, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22385, + "fields": { + "id_car_serie": 4103, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22386, + "fields": { + "id_car_serie": 4103, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22387, + "fields": { + "id_car_serie": 4103, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22388, + "fields": { + "id_car_serie": 4103, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22389, + "fields": { + "id_car_serie": 4103, + "name": "2.0 CDT AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22391, + "fields": { + "id_car_serie": 4103, + "name": "2.0 CDT MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22392, + "fields": { + "id_car_serie": 4103, + "name": "2.0 CDTi MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22393, + "fields": { + "id_car_serie": 4103, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22394, + "fields": { + "id_car_serie": 4103, + "name": "2.5 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22434, + "fields": { + "id_car_serie": 4107, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22435, + "fields": { + "id_car_serie": 4107, + "name": "1.4 CVT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22436, + "fields": { + "id_car_serie": 4107, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22437, + "fields": { + "id_car_serie": 4107, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22438, + "fields": { + "id_car_serie": 4107, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22439, + "fields": { + "id_car_serie": 4108, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22440, + "fields": { + "id_car_serie": 4108, + "name": "1.4 CVT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22441, + "fields": { + "id_car_serie": 4108, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22442, + "fields": { + "id_car_serie": 4108, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22443, + "fields": { + "id_car_serie": 4108, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22444, + "fields": { + "id_car_serie": 4109, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22445, + "fields": { + "id_car_serie": 4109, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22446, + "fields": { + "id_car_serie": 4110, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22447, + "fields": { + "id_car_serie": 4111, + "name": "1.0 MT (41 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22448, + "fields": { + "id_car_serie": 4111, + "name": "1.3 AT (50 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22450, + "fields": { + "id_car_serie": 4111, + "name": "1.3 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22451, + "fields": { + "id_car_serie": 4111, + "name": "1.3 MT (53 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22452, + "fields": { + "id_car_serie": 4111, + "name": "1.3 MT (61 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22453, + "fields": { + "id_car_serie": 4111, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22454, + "fields": { + "id_car_serie": 4112, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22455, + "fields": { + "id_car_serie": 4112, + "name": "1.9 TD MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22456, + "fields": { + "id_car_serie": 4112, + "name": "1.9 TD AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22457, + "fields": { + "id_car_serie": 4112, + "name": "1.9 TD AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22458, + "fields": { + "id_car_serie": 4112, + "name": "1.9 TD MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22460, + "fields": { + "id_car_serie": 4112, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22461, + "fields": { + "id_car_serie": 4112, + "name": "2.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22464, + "fields": { + "id_car_serie": 4112, + "name": "2.0 turbo AT (210 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22465, + "fields": { + "id_car_serie": 4112, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22466, + "fields": { + "id_car_serie": 4112, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22469, + "fields": { + "id_car_serie": 4112, + "name": "2.0 turbo MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22471, + "fields": { + "id_car_serie": 4112, + "name": "2.8 turbo AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22473, + "fields": { + "id_car_serie": 4112, + "name": "2.8 MT (230 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22474, + "fields": { + "id_car_serie": 4112, + "name": "2.8 turbo MT (250 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22479, + "fields": { + "id_car_serie": 4113, + "name": "1.9 TD AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22482, + "fields": { + "id_car_serie": 4113, + "name": "1.9 TD MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22484, + "fields": { + "id_car_serie": 4113, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22485, + "fields": { + "id_car_serie": 4113, + "name": "2.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22488, + "fields": { + "id_car_serie": 4113, + "name": "2.0 turbo AT (210 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22489, + "fields": { + "id_car_serie": 4113, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22490, + "fields": { + "id_car_serie": 4113, + "name": "2.0 turbo MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22494, + "fields": { + "id_car_serie": 4113, + "name": "2.8 turbo AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22498, + "fields": { + "id_car_serie": 4113, + "name": "2.8 turbo MT (250 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22501, + "fields": { + "id_car_serie": 4114, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22502, + "fields": { + "id_car_serie": 4114, + "name": "1.9 TD MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22503, + "fields": { + "id_car_serie": 4114, + "name": "1.9 TD AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22505, + "fields": { + "id_car_serie": 4114, + "name": "1.9 TD MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22507, + "fields": { + "id_car_serie": 4114, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22508, + "fields": { + "id_car_serie": 4114, + "name": "2.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22512, + "fields": { + "id_car_serie": 4114, + "name": "2.0 turbo AT (211 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22515, + "fields": { + "id_car_serie": 4114, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22516, + "fields": { + "id_car_serie": 4114, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22520, + "fields": { + "id_car_serie": 4114, + "name": "2.0 turbo MT (211 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22523, + "fields": { + "id_car_serie": 4114, + "name": "2.2 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22524, + "fields": { + "id_car_serie": 4114, + "name": "2.2 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22525, + "fields": { + "id_car_serie": 4114, + "name": "2.8 turbo AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22528, + "fields": { + "id_car_serie": 4114, + "name": "2.8 turbo MT (250 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22557, + "fields": { + "id_car_serie": 4116, + "name": "2.3 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22559, + "fields": { + "id_car_serie": 4116, + "name": "2.3 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22560, + "fields": { + "id_car_serie": 4116, + "name": "2.3 MT (260 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22571, + "fields": { + "id_car_serie": 4118, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22572, + "fields": { + "id_car_serie": 4118, + "name": "2.0 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22574, + "fields": { + "id_car_serie": 4118, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22576, + "fields": { + "id_car_serie": 4118, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22579, + "fields": { + "id_car_serie": 4119, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22580, + "fields": { + "id_car_serie": 4119, + "name": "2.0 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22582, + "fields": { + "id_car_serie": 4119, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22584, + "fields": { + "id_car_serie": 4119, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22588, + "fields": { + "id_car_serie": 4120, + "name": "2.0 Turbo AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22596, + "fields": { + "id_car_serie": 4120, + "name": "2.0 Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22603, + "fields": { + "id_car_serie": 4120, + "name": "2.3 Turbo AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22605, + "fields": { + "id_car_serie": 4120, + "name": "2.3 Turbo AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22607, + "fields": { + "id_car_serie": 4120, + "name": "2.3 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22608, + "fields": { + "id_car_serie": 4120, + "name": "2.3 Turbo MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22610, + "fields": { + "id_car_serie": 4120, + "name": "2.3 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22611, + "fields": { + "id_car_serie": 4120, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22612, + "fields": { + "id_car_serie": 4120, + "name": "3.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22625, + "fields": { + "id_car_serie": 4121, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22626, + "fields": { + "id_car_serie": 4121, + "name": "2.0 Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22633, + "fields": { + "id_car_serie": 4121, + "name": "2.3 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22634, + "fields": { + "id_car_serie": 4121, + "name": "2.3 Turbo AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22636, + "fields": { + "id_car_serie": 4121, + "name": "2.3 Turbo AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22639, + "fields": { + "id_car_serie": 4121, + "name": "2.3 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22640, + "fields": { + "id_car_serie": 4121, + "name": "2.3 Turbo MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22642, + "fields": { + "id_car_serie": 4121, + "name": "2.3 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22644, + "fields": { + "id_car_serie": 4121, + "name": "2.3 Turbo MT (225 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22645, + "fields": { + "id_car_serie": 4121, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22646, + "fields": { + "id_car_serie": 4121, + "name": "3.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22647, + "fields": { + "id_car_serie": 4122, + "name": "2.0 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22648, + "fields": { + "id_car_serie": 4122, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22649, + "fields": { + "id_car_serie": 4123, + "name": "1.7 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22650, + "fields": { + "id_car_serie": 4123, + "name": "1.8 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22652, + "fields": { + "id_car_serie": 4123, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22654, + "fields": { + "id_car_serie": 4123, + "name": "2.0 MT (118 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22657, + "fields": { + "id_car_serie": 4123, + "name": "2.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22671, + "fields": { + "id_car_serie": 4128, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22672, + "fields": { + "id_car_serie": 4128, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22673, + "fields": { + "id_car_serie": 4129, + "name": "2.2 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22674, + "fields": { + "id_car_serie": 4129, + "name": "2.2 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22676, + "fields": { + "id_car_serie": 4130, + "name": "2.0 MT Red Line (208 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22677, + "fields": { + "id_car_serie": 4130, + "name": "2.2 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22678, + "fields": { + "id_car_serie": 4130, + "name": "2.2 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22683, + "fields": { + "id_car_serie": 4132, + "name": "1.9 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22684, + "fields": { + "id_car_serie": 4132, + "name": "1.9 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22685, + "fields": { + "id_car_serie": 4132, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22686, + "fields": { + "id_car_serie": 4132, + "name": "1.9 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22691, + "fields": { + "id_car_serie": 4134, + "name": "2.4 AT 2WD (169 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22692, + "fields": { + "id_car_serie": 4134, + "name": "2.4 AT AWD (169 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22693, + "fields": { + "id_car_serie": 4134, + "name": "2.4 AT Hybrid (173 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22694, + "fields": { + "id_car_serie": 4134, + "name": "3.5 AT AWD (222 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22695, + "fields": { + "id_car_serie": 4134, + "name": "3.5 AT 2WD (222 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22696, + "fields": { + "id_car_serie": 4134, + "name": "3.6 AT AWD (252 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22697, + "fields": { + "id_car_serie": 4134, + "name": "3.6 AT 2WD (252 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22698, + "fields": { + "id_car_serie": 4135, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22699, + "fields": { + "id_car_serie": 4135, + "name": "2.5 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22700, + "fields": { + "id_car_serie": 4136, + "name": "2.4 AT (158 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22701, + "fields": { + "id_car_serie": 4136, + "name": "2.4 MT (158 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22702, + "fields": { + "id_car_serie": 4137, + "name": "1.4 TSi DSG (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22703, + "fields": { + "id_car_serie": 4137, + "name": "1.4 TSi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22704, + "fields": { + "id_car_serie": 4137, + "name": "2.0 TSi DSG (200 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22705, + "fields": { + "id_car_serie": 4137, + "name": "2.0 TDi DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22707, + "fields": { + "id_car_serie": 4137, + "name": "2.0 TDi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22708, + "fields": { + "id_car_serie": 4137, + "name": "2.0 TDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22710, + "fields": { + "id_car_serie": 4137, + "name": "2.0 TDi MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22721, + "fields": { + "id_car_serie": 4139, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22722, + "fields": { + "id_car_serie": 4139, + "name": "1.4 TSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22723, + "fields": { + "id_car_serie": 4139, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22728, + "fields": { + "id_car_serie": 4139, + "name": "1.8 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22741, + "fields": { + "id_car_serie": 4140, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22743, + "fields": { + "id_car_serie": 4140, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22746, + "fields": { + "id_car_serie": 4140, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22748, + "fields": { + "id_car_serie": 4141, + "name": "1.6 MPI MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22749, + "fields": { + "id_car_serie": 4141, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22751, + "fields": { + "id_car_serie": 4141, + "name": "2.0 TDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22752, + "fields": { + "id_car_serie": 4141, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22753, + "fields": { + "id_car_serie": 4142, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22754, + "fields": { + "id_car_serie": 4142, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22755, + "fields": { + "id_car_serie": 4142, + "name": "2.0 TSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22757, + "fields": { + "id_car_serie": 4142, + "name": "2.0 TDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22758, + "fields": { + "id_car_serie": 4142, + "name": "2.0 TDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22759, + "fields": { + "id_car_serie": 4142, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22760, + "fields": { + "id_car_serie": 4143, + "name": "0.9 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22761, + "fields": { + "id_car_serie": 4144, + "name": "0.9 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22762, + "fields": { + "id_car_serie": 4144, + "name": "0.9 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22763, + "fields": { + "id_car_serie": 4144, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22775, + "fields": { + "id_car_serie": 4145, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22802, + "fields": { + "id_car_serie": 4148, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22803, + "fields": { + "id_car_serie": 4148, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22804, + "fields": { + "id_car_serie": 4148, + "name": "1.2 TSI MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22806, + "fields": { + "id_car_serie": 4148, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22807, + "fields": { + "id_car_serie": 4148, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22810, + "fields": { + "id_car_serie": 4148, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22817, + "fields": { + "id_car_serie": 4148, + "name": "2.0 TDI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22819, + "fields": { + "id_car_serie": 4148, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22829, + "fields": { + "id_car_serie": 4148, + "name": "1.8 TSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22836, + "fields": { + "id_car_serie": 4148, + "name": "2.0 TDI MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22853, + "fields": { + "id_car_serie": 4151, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22855, + "fields": { + "id_car_serie": 4151, + "name": "1.2 TSI MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22856, + "fields": { + "id_car_serie": 4151, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22857, + "fields": { + "id_car_serie": 4151, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22870, + "fields": { + "id_car_serie": 4154, + "name": "1.0 AT (60 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22871, + "fields": { + "id_car_serie": 4154, + "name": "1.0 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22872, + "fields": { + "id_car_serie": 4154, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22873, + "fields": { + "id_car_serie": 4154, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22874, + "fields": { + "id_car_serie": 4155, + "name": "1.0 AT (60 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22875, + "fields": { + "id_car_serie": 4155, + "name": "1.0 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22876, + "fields": { + "id_car_serie": 4155, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22877, + "fields": { + "id_car_serie": 4155, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22878, + "fields": { + "id_car_serie": 4156, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22879, + "fields": { + "id_car_serie": 4156, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22880, + "fields": { + "id_car_serie": 4156, + "name": "1.2 TSI MT Green tec (105 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22881, + "fields": { + "id_car_serie": 4156, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22882, + "fields": { + "id_car_serie": 4156, + "name": "1.2 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22883, + "fields": { + "id_car_serie": 4156, + "name": "1.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22886, + "fields": { + "id_car_serie": 4156, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22887, + "fields": { + "id_car_serie": 4156, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22888, + "fields": { + "id_car_serie": 4156, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22889, + "fields": { + "id_car_serie": 4156, + "name": "1.6 TDI MT Green tec (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22890, + "fields": { + "id_car_serie": 4156, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22891, + "fields": { + "id_car_serie": 4156, + "name": "1.6 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22892, + "fields": { + "id_car_serie": 4157, + "name": "1.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22893, + "fields": { + "id_car_serie": 4157, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22894, + "fields": { + "id_car_serie": 4157, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22897, + "fields": { + "id_car_serie": 4157, + "name": "1.4 TDI DPF MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22899, + "fields": { + "id_car_serie": 4157, + "name": "1.4 TDI MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22900, + "fields": { + "id_car_serie": 4157, + "name": "1.4 TDI MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22902, + "fields": { + "id_car_serie": 4157, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22906, + "fields": { + "id_car_serie": 4157, + "name": "1.9 TDI DPF MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22907, + "fields": { + "id_car_serie": 4158, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22908, + "fields": { + "id_car_serie": 4158, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22909, + "fields": { + "id_car_serie": 4159, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22910, + "fields": { + "id_car_serie": 4159, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22911, + "fields": { + "id_car_serie": 4159, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22912, + "fields": { + "id_car_serie": 4160, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22913, + "fields": { + "id_car_serie": 4160, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22914, + "fields": { + "id_car_serie": 4160, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22915, + "fields": { + "id_car_serie": 4160, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22916, + "fields": { + "id_car_serie": 4160, + "name": "1.9D MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22917, + "fields": { + "id_car_serie": 4161, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22918, + "fields": { + "id_car_serie": 4161, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22919, + "fields": { + "id_car_serie": 4161, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22920, + "fields": { + "id_car_serie": 4161, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22921, + "fields": { + "id_car_serie": 4161, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22931, + "fields": { + "id_car_serie": 4162, + "name": "1.8 TSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22935, + "fields": { + "id_car_serie": 4163, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22936, + "fields": { + "id_car_serie": 4163, + "name": "1.2 TSI 6MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22938, + "fields": { + "id_car_serie": 4163, + "name": "1.4 TSI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22939, + "fields": { + "id_car_serie": 4163, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22940, + "fields": { + "id_car_serie": 4163, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22941, + "fields": { + "id_car_serie": 4163, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22942, + "fields": { + "id_car_serie": 4163, + "name": "1.6 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22943, + "fields": { + "id_car_serie": 4163, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22944, + "fields": { + "id_car_serie": 4163, + "name": "1.6 TDI MT 4x4 (105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22945, + "fields": { + "id_car_serie": 4163, + "name": "1.8 TSI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22946, + "fields": { + "id_car_serie": 4163, + "name": "1.8 TSI DSG 4x4 (180 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22947, + "fields": { + "id_car_serie": 4163, + "name": "1.8 TSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22949, + "fields": { + "id_car_serie": 4163, + "name": "2.0 TDI DSG (143 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22958, + "fields": { + "id_car_serie": 4165, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22959, + "fields": { + "id_car_serie": 4165, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22960, + "fields": { + "id_car_serie": 4165, + "name": "1.2 TSI MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22961, + "fields": { + "id_car_serie": 4165, + "name": "1.4 TSI DSG Green tec (122 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22963, + "fields": { + "id_car_serie": 4165, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22964, + "fields": { + "id_car_serie": 4165, + "name": "1.6 TDI DSG (90 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22965, + "fields": { + "id_car_serie": 4165, + "name": "1.6 TDI MT Green tec (90 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22966, + "fields": { + "id_car_serie": 4165, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22967, + "fields": { + "id_car_serie": 4166, + "name": "1.4 TSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22968, + "fields": { + "id_car_serie": 4166, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22969, + "fields": { + "id_car_serie": 4166, + "name": "1.8 TSI DSG (152 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22970, + "fields": { + "id_car_serie": 4166, + "name": "1.8 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22971, + "fields": { + "id_car_serie": 4166, + "name": "2.0 TSI DSG (200 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22972, + "fields": { + "id_car_serie": 4166, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22973, + "fields": { + "id_car_serie": 4166, + "name": "2.0 TDI DSG 4x4 (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22974, + "fields": { + "id_car_serie": 4166, + "name": "2.0 TDI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22975, + "fields": { + "id_car_serie": 4166, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22976, + "fields": { + "id_car_serie": 4166, + "name": "2.0 TDI MT 4x4 (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22977, + "fields": { + "id_car_serie": 4166, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22978, + "fields": { + "id_car_serie": 4166, + "name": "3.6 FSI DSG 4x4 (260 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22979, + "fields": { + "id_car_serie": 4167, + "name": "1.4 TSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22980, + "fields": { + "id_car_serie": 4167, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22981, + "fields": { + "id_car_serie": 4167, + "name": "1.8 TSI DSG (152 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22982, + "fields": { + "id_car_serie": 4167, + "name": "1.8 TSI MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22983, + "fields": { + "id_car_serie": 4167, + "name": "2.0 TSI DSG (200 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22984, + "fields": { + "id_car_serie": 4167, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22985, + "fields": { + "id_car_serie": 4167, + "name": "2.0 TDI DSG 4x4 (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22986, + "fields": { + "id_car_serie": 4167, + "name": "2.0 TDI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22987, + "fields": { + "id_car_serie": 4167, + "name": "2.0 TDI MT 4x4 (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22988, + "fields": { + "id_car_serie": 4167, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22989, + "fields": { + "id_car_serie": 4167, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22990, + "fields": { + "id_car_serie": 4167, + "name": "3.6 FSI DSG 4x4 (260 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 22991, + "fields": { + "id_car_serie": 4168, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22992, + "fields": { + "id_car_serie": 4168, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22993, + "fields": { + "id_car_serie": 4168, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22994, + "fields": { + "id_car_serie": 4168, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22996, + "fields": { + "id_car_serie": 4168, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22997, + "fields": { + "id_car_serie": 4168, + "name": "1.8 TSI DSG 4x4 (152 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22998, + "fields": { + "id_car_serie": 4168, + "name": "1.8 TSI MT 4x4 (152 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 22999, + "fields": { + "id_car_serie": 4168, + "name": "2.0 TDI DSG 4x4 (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23000, + "fields": { + "id_car_serie": 4168, + "name": "2.0 TDI DSG 4x4 (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23001, + "fields": { + "id_car_serie": 4168, + "name": "2.0 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23002, + "fields": { + "id_car_serie": 4168, + "name": "2.0 TDI MT 4x4 (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23003, + "fields": { + "id_car_serie": 4168, + "name": "2.0 TDI MT 4x4 (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23004, + "fields": { + "id_car_serie": 4168, + "name": "2.0 TDI MT 4x4 (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23011, + "fields": { + "id_car_serie": 4170, + "name": "0.8 CDi AMT (45 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23013, + "fields": { + "id_car_serie": 4170, + "name": "1.0 AMT (71 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23014, + "fields": { + "id_car_serie": 4170, + "name": "1.0 AMT (84 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23016, + "fields": { + "id_car_serie": 4171, + "name": "6.0 AT (500 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23017, + "fields": { + "id_car_serie": 4171, + "name": "6.0 MT (500 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23018, + "fields": { + "id_car_serie": 4172, + "name": "6.0 MT (500 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23023, + "fields": { + "id_car_serie": 4174, + "name": "4.2 MT (405 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23025, + "fields": { + "id_car_serie": 4175, + "name": "2.0 AT (149 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23026, + "fields": { + "id_car_serie": 4175, + "name": "2.0 TD AT (149 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23027, + "fields": { + "id_car_serie": 4175, + "name": "2.0 MT (149 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23028, + "fields": { + "id_car_serie": 4175, + "name": "2.0 TD MT (149 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23029, + "fields": { + "id_car_serie": 4175, + "name": "2.0 AT AWD (149 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23030, + "fields": { + "id_car_serie": 4175, + "name": "2.0 TD AT AWD (149 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23033, + "fields": { + "id_car_serie": 4175, + "name": "2.0 MT AWD (149 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23034, + "fields": { + "id_car_serie": 4175, + "name": "2.0 TD MT AWD (149 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23043, + "fields": { + "id_car_serie": 4178, + "name": "2.3 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23044, + "fields": { + "id_car_serie": 4178, + "name": "2.9 D MT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23045, + "fields": { + "id_car_serie": 4179, + "name": "2.0 MT 4WD (126 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23047, + "fields": { + "id_car_serie": 4179, + "name": "2.3 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23048, + "fields": { + "id_car_serie": 4179, + "name": "2.3 MT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23049, + "fields": { + "id_car_serie": 4179, + "name": "2.3 D MT AWD (80 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23050, + "fields": { + "id_car_serie": 4179, + "name": "2.3 D MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23052, + "fields": { + "id_car_serie": 4179, + "name": "2.9 TD MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23053, + "fields": { + "id_car_serie": 4179, + "name": "2.9 D MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23054, + "fields": { + "id_car_serie": 4179, + "name": "3.2 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23057, + "fields": { + "id_car_serie": 4180, + "name": "2.0 Xdi T-Tronic 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23058, + "fields": { + "id_car_serie": 4180, + "name": "2.0 Xdi MT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23059, + "fields": { + "id_car_serie": 4180, + "name": "2.0 Xdi MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23060, + "fields": { + "id_car_serie": 4180, + "name": "2.3 E-Tronic 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23061, + "fields": { + "id_car_serie": 4180, + "name": "2.3 E-Tronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23062, + "fields": { + "id_car_serie": 4180, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23063, + "fields": { + "id_car_serie": 4180, + "name": "2.3 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23064, + "fields": { + "id_car_serie": 4181, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23065, + "fields": { + "id_car_serie": 4181, + "name": "2.3 D AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23066, + "fields": { + "id_car_serie": 4181, + "name": "2.3 D MT AWD (101 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23067, + "fields": { + "id_car_serie": 4181, + "name": "2.9 TDI AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23068, + "fields": { + "id_car_serie": 4181, + "name": "2.9 TDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23071, + "fields": { + "id_car_serie": 4182, + "name": "2.9 TDI AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23072, + "fields": { + "id_car_serie": 4182, + "name": "2.9 TDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23073, + "fields": { + "id_car_serie": 4183, + "name": "2.0 DTR T-Tronic (155 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23074, + "fields": { + "id_car_serie": 4183, + "name": "2.0 DTR T-Tronic 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23075, + "fields": { + "id_car_serie": 4183, + "name": "2.0 DTR MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23076, + "fields": { + "id_car_serie": 4183, + "name": "2.0 DTR MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23078, + "fields": { + "id_car_serie": 4183, + "name": "2.7 XVT T-Tronic AWD (186 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23079, + "fields": { + "id_car_serie": 4183, + "name": "2.7 Xdi MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23080, + "fields": { + "id_car_serie": 4183, + "name": "3.2 T-Tronic AWD (220 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23110, + "fields": { + "id_car_serie": 4189, + "name": "1.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23111, + "fields": { + "id_car_serie": 4190, + "name": "2.0 Lineartronic AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23112, + "fields": { + "id_car_serie": 4190, + "name": "2.0 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23114, + "fields": { + "id_car_serie": 4190, + "name": "2.5 Lineartronic AWD (167 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23142, + "fields": { + "id_car_serie": 4193, + "name": "1.3 AT (66 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23143, + "fields": { + "id_car_serie": 4193, + "name": "1.3 MT (66 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23144, + "fields": { + "id_car_serie": 4193, + "name": "1.6 AT (69 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23145, + "fields": { + "id_car_serie": 4193, + "name": "1.6 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23168, + "fields": { + "id_car_serie": 4194, + "name": "2.0 TD MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23169, + "fields": { + "id_car_serie": 4194, + "name": "2.5 Lineartronic AWD (167 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23170, + "fields": { + "id_car_serie": 4194, + "name": "2.5 MT AWD (167 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23171, + "fields": { + "id_car_serie": 4194, + "name": "3.6 E-5AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23188, + "fields": { + "id_car_serie": 4197, + "name": "3.6 AT AWD (258 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23204, + "fields": { + "id_car_serie": 4201, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23205, + "fields": { + "id_car_serie": 4201, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23206, + "fields": { + "id_car_serie": 4201, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23207, + "fields": { + "id_car_serie": 4201, + "name": "1.6 MT 4 WD (96 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23209, + "fields": { + "id_car_serie": 4201, + "name": "1.8 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23210, + "fields": { + "id_car_serie": 4201, + "name": "1.9 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23211, + "fields": { + "id_car_serie": 4202, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23212, + "fields": { + "id_car_serie": 4202, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23214, + "fields": { + "id_car_serie": 4202, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23216, + "fields": { + "id_car_serie": 4202, + "name": "1.8 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23218, + "fields": { + "id_car_serie": 4203, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23219, + "fields": { + "id_car_serie": 4203, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23220, + "fields": { + "id_car_serie": 4203, + "name": "1.8 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23221, + "fields": { + "id_car_serie": 4203, + "name": "1.9 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23228, + "fields": { + "id_car_serie": 4205, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23229, + "fields": { + "id_car_serie": 4205, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23230, + "fields": { + "id_car_serie": 4205, + "name": "2.7 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23231, + "fields": { + "id_car_serie": 4206, + "name": "2.0 AT (127 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23232, + "fields": { + "id_car_serie": 4206, + "name": "2.0 MT (127 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23234, + "fields": { + "id_car_serie": 4207, + "name": "2.0 AT (127 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23236, + "fields": { + "id_car_serie": 4207, + "name": "2.0 MT (127 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23256, + "fields": { + "id_car_serie": 4211, + "name": "1.3 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23260, + "fields": { + "id_car_serie": 4211, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23264, + "fields": { + "id_car_serie": 4212, + "name": "1.3 AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23266, + "fields": { + "id_car_serie": 4212, + "name": "1.3 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23270, + "fields": { + "id_car_serie": 4213, + "name": "2.0 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23271, + "fields": { + "id_car_serie": 4214, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23272, + "fields": { + "id_car_serie": 4214, + "name": "1.6 AT AWD (106 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23273, + "fields": { + "id_car_serie": 4214, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23274, + "fields": { + "id_car_serie": 4214, + "name": "1.6 MT AWD (106 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23275, + "fields": { + "id_car_serie": 4215, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23276, + "fields": { + "id_car_serie": 4215, + "name": "1.6 AT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23277, + "fields": { + "id_car_serie": 4215, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23278, + "fields": { + "id_car_serie": 4215, + "name": "1.6 MT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23293, + "fields": { + "id_car_serie": 4220, + "name": "1.6 CVT (117 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23294, + "fields": { + "id_car_serie": 4220, + "name": "1.6 CVT 4WD (117 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23295, + "fields": { + "id_car_serie": 4220, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23296, + "fields": { + "id_car_serie": 4220, + "name": "1.6 MT 4WD (117 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23297, + "fields": { + "id_car_serie": 4220, + "name": "1.6 DDiS MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23298, + "fields": { + "id_car_serie": 4220, + "name": "1.6 DDiS MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23299, + "fields": { + "id_car_serie": 4221, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23300, + "fields": { + "id_car_serie": 4221, + "name": "0.7 AT AWD (54 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23301, + "fields": { + "id_car_serie": 4221, + "name": "0.7 CVT (54 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23302, + "fields": { + "id_car_serie": 4221, + "name": "0.7 CVT AWD (54 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23303, + "fields": { + "id_car_serie": 4221, + "name": "0.7 turbo CVT (64 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23304, + "fields": { + "id_car_serie": 4221, + "name": "0.7 turbo CVT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23305, + "fields": { + "id_car_serie": 4221, + "name": "0.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23306, + "fields": { + "id_car_serie": 4221, + "name": "0.7 MT AWD (54 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23307, + "fields": { + "id_car_serie": 4222, + "name": "1.0 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23308, + "fields": { + "id_car_serie": 4222, + "name": "1.0 MT (53 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23309, + "fields": { + "id_car_serie": 4222, + "name": "1.3 AT (76 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23312, + "fields": { + "id_car_serie": 4222, + "name": "1.3 AT (93 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23318, + "fields": { + "id_car_serie": 4223, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23319, + "fields": { + "id_car_serie": 4223, + "name": "1.6 MT (81 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23320, + "fields": { + "id_car_serie": 4224, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23321, + "fields": { + "id_car_serie": 4224, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23322, + "fields": { + "id_car_serie": 4224, + "name": "1.6 MT (81 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23323, + "fields": { + "id_car_serie": 4225, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23324, + "fields": { + "id_car_serie": 4225, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23325, + "fields": { + "id_car_serie": 4225, + "name": "1.2 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23326, + "fields": { + "id_car_serie": 4225, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23327, + "fields": { + "id_car_serie": 4225, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23328, + "fields": { + "id_car_serie": 4225, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23329, + "fields": { + "id_car_serie": 4226, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23330, + "fields": { + "id_car_serie": 4227, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23331, + "fields": { + "id_car_serie": 4227, + "name": "1.2 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23333, + "fields": { + "id_car_serie": 4227, + "name": "1.4 TD MT (71 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23335, + "fields": { + "id_car_serie": 4228, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23339, + "fields": { + "id_car_serie": 4231, + "name": "3.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23340, + "fields": { + "id_car_serie": 4231, + "name": "3.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23341, + "fields": { + "id_car_serie": 4232, + "name": "3.5 MT (168 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23342, + "fields": { + "id_car_serie": 4233, + "name": "3.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23343, + "fields": { + "id_car_serie": 4233, + "name": "3.5 MT (168 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23344, + "fields": { + "id_car_serie": 4234, + "name": "GT 3.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23345, + "fields": { + "id_car_serie": 4234, + "name": "GT 4.5 MT (430 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23346, + "fields": { + "id_car_serie": 4235, + "name": "4.0 AT RWD (270 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23347, + "fields": { + "id_car_serie": 4235, + "name": "4.0 AT AWD (270 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23348, + "fields": { + "id_car_serie": 4236, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23349, + "fields": { + "id_car_serie": 4236, + "name": "1.8 CVT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23350, + "fields": { + "id_car_serie": 4236, + "name": "1.8 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23351, + "fields": { + "id_car_serie": 4236, + "name": "2.0 CVT (158 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23352, + "fields": { + "id_car_serie": 4237, + "name": "2.4 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23354, + "fields": { + "id_car_serie": 4237, + "name": "3.5 AT (265 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23363, + "fields": { + "id_car_serie": 4239, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23364, + "fields": { + "id_car_serie": 4239, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23365, + "fields": { + "id_car_serie": 4239, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23366, + "fields": { + "id_car_serie": 4239, + "name": "2.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23367, + "fields": { + "id_car_serie": 4240, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23368, + "fields": { + "id_car_serie": 4240, + "name": "3.0 Twin-Turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23370, + "fields": { + "id_car_serie": 4241, + "name": "1.4 D-4D MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23371, + "fields": { + "id_car_serie": 4241, + "name": "1.6 CVT (132 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23372, + "fields": { + "id_car_serie": 4241, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23374, + "fields": { + "id_car_serie": 4241, + "name": "2.0 D-4D MT (124 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23379, + "fields": { + "id_car_serie": 4242, + "name": "1.8 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23382, + "fields": { + "id_car_serie": 4243, + "name": "3.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23383, + "fields": { + "id_car_serie": 4244, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23384, + "fields": { + "id_car_serie": 4244, + "name": "1.8 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23385, + "fields": { + "id_car_serie": 4244, + "name": "1.8 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23386, + "fields": { + "id_car_serie": 4244, + "name": "2.0 CVT (152 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23387, + "fields": { + "id_car_serie": 4244, + "name": "2.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23388, + "fields": { + "id_car_serie": 4244, + "name": "2.0 D-4D MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23389, + "fields": { + "id_car_serie": 4244, + "name": "2.2 D-4D CVT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23390, + "fields": { + "id_car_serie": 4244, + "name": "2.2 D-4D MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23391, + "fields": { + "id_car_serie": 4244, + "name": "2.2 D-4D MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23392, + "fields": { + "id_car_serie": 4245, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23393, + "fields": { + "id_car_serie": 4245, + "name": "1.8 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23394, + "fields": { + "id_car_serie": 4245, + "name": "1.8 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23395, + "fields": { + "id_car_serie": 4245, + "name": "2.0 CVT (152 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23396, + "fields": { + "id_car_serie": 4245, + "name": "2.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23397, + "fields": { + "id_car_serie": 4245, + "name": "2.0 D-4D MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23398, + "fields": { + "id_car_serie": 4245, + "name": "2.2 D-4D AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23399, + "fields": { + "id_car_serie": 4245, + "name": "2.2 D-4D MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23400, + "fields": { + "id_car_serie": 4245, + "name": "2.2 D-4D MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23401, + "fields": { + "id_car_serie": 4248, + "name": "1.3 AT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23402, + "fields": { + "id_car_serie": 4248, + "name": "1.3 AT 2WD (92 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23403, + "fields": { + "id_car_serie": 4248, + "name": "1.5 AT 2WD (109 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23404, + "fields": { + "id_car_serie": 4249, + "name": "2.4 TD MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23406, + "fields": { + "id_car_serie": 4251, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23407, + "fields": { + "id_car_serie": 4251, + "name": "2.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23408, + "fields": { + "id_car_serie": 4251, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23409, + "fields": { + "id_car_serie": 4251, + "name": "2.0 AT GT-FOUR (260 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23410, + "fields": { + "id_car_serie": 4252, + "name": "2.0 AT (148 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23411, + "fields": { + "id_car_serie": 4252, + "name": "2.5 AT (181 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23413, + "fields": { + "id_car_serie": 4252, + "name": "3.5 AT (249 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23414, + "fields": { + "id_car_serie": 4252, + "name": "3.5 AT (277 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23427, + "fields": { + "id_car_serie": 4254, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23428, + "fields": { + "id_car_serie": 4254, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23429, + "fields": { + "id_car_serie": 4254, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23430, + "fields": { + "id_car_serie": 4254, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23431, + "fields": { + "id_car_serie": 4254, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23432, + "fields": { + "id_car_serie": 4254, + "name": "2.0 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23437, + "fields": { + "id_car_serie": 4255, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23439, + "fields": { + "id_car_serie": 4256, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23441, + "fields": { + "id_car_serie": 4257, + "name": "1.8 VT-i AT (143 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23442, + "fields": { + "id_car_serie": 4257, + "name": "1.8 GT-R AT (183 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23443, + "fields": { + "id_car_serie": 4257, + "name": "1.8 VVTL - i Sport AT (192 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23444, + "fields": { + "id_car_serie": 4257, + "name": "1.8 VT-i MT (143 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23445, + "fields": { + "id_car_serie": 4257, + "name": "1.8 GT-R MT (183 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23446, + "fields": { + "id_car_serie": 4257, + "name": "1.8 VVTL - i Sport MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23447, + "fields": { + "id_car_serie": 4258, + "name": "4.3 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23448, + "fields": { + "id_car_serie": 4259, + "name": "5.0 6AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23449, + "fields": { + "id_car_serie": 4260, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23450, + "fields": { + "id_car_serie": 4260, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23453, + "fields": { + "id_car_serie": 4260, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23455, + "fields": { + "id_car_serie": 4260, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23456, + "fields": { + "id_car_serie": 4260, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23457, + "fields": { + "id_car_serie": 4260, + "name": "2.5 Twin-Turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23459, + "fields": { + "id_car_serie": 4260, + "name": "2.5 Twin-Turbo MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23460, + "fields": { + "id_car_serie": 4260, + "name": "2.4 TD AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23461, + "fields": { + "id_car_serie": 4260, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23464, + "fields": { + "id_car_serie": 4261, + "name": "1.6 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23466, + "fields": { + "id_car_serie": 4261, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23468, + "fields": { + "id_car_serie": 4261, + "name": "1.8 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23477, + "fields": { + "id_car_serie": 4263, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23478, + "fields": { + "id_car_serie": 4263, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23479, + "fields": { + "id_car_serie": 4263, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23480, + "fields": { + "id_car_serie": 4263, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23482, + "fields": { + "id_car_serie": 4263, + "name": "2.0 MT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23483, + "fields": { + "id_car_serie": 4263, + "name": "2.2 d AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23484, + "fields": { + "id_car_serie": 4263, + "name": "2.2 d AT AWD (94 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23485, + "fields": { + "id_car_serie": 4263, + "name": "2.2 d MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23486, + "fields": { + "id_car_serie": 4264, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23487, + "fields": { + "id_car_serie": 4264, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23488, + "fields": { + "id_car_serie": 4264, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23489, + "fields": { + "id_car_serie": 4264, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23490, + "fields": { + "id_car_serie": 4264, + "name": "1.5 D AT (67 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23491, + "fields": { + "id_car_serie": 4264, + "name": "1.5 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23498, + "fields": { + "id_car_serie": 4266, + "name": "2.4 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23499, + "fields": { + "id_car_serie": 4266, + "name": "3.0 AT Overdrive (190 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23500, + "fields": { + "id_car_serie": 4267, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23501, + "fields": { + "id_car_serie": 4267, + "name": "2.5T AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23503, + "fields": { + "id_car_serie": 4267, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23504, + "fields": { + "id_car_serie": 4267, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23505, + "fields": { + "id_car_serie": 4267, + "name": "2.5 AT RWD (200 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23507, + "fields": { + "id_car_serie": 4267, + "name": "2.4 TD AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23508, + "fields": { + "id_car_serie": 4267, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23510, + "fields": { + "id_car_serie": 4269, + "name": "2.5 AT RWD (203 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23511, + "fields": { + "id_car_serie": 4269, + "name": "2.5 AT AWD (203 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23513, + "fields": { + "id_car_serie": 49254, + "name": "3.5 AT (315 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23514, + "fields": { + "id_car_serie": 4270, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23515, + "fields": { + "id_car_serie": 4270, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23516, + "fields": { + "id_car_serie": 4270, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23517, + "fields": { + "id_car_serie": 4270, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23520, + "fields": { + "id_car_serie": 4271, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23522, + "fields": { + "id_car_serie": 4272, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23523, + "fields": { + "id_car_serie": 4272, + "name": "1.5 MT Overdrive (110 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23524, + "fields": { + "id_car_serie": 4273, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23525, + "fields": { + "id_car_serie": 4273, + "name": "1.5 MT Overdrive (110 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23526, + "fields": { + "id_car_serie": 15375, + "name": "2.4 Hybrid CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23527, + "fields": { + "id_car_serie": 4274, + "name": "2.4 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23530, + "fields": { + "id_car_serie": 4275, + "name": "2.0 CVT (151 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23531, + "fields": { + "id_car_serie": 4275, + "name": "2.0 CVT 4WD (151 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23533, + "fields": { + "id_car_serie": 4276, + "name": "2.7 AT (188 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23534, + "fields": { + "id_car_serie": 4276, + "name": "3.5 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23538, + "fields": { + "id_car_serie": 4277, + "name": "2.7 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23539, + "fields": { + "id_car_serie": 4277, + "name": "2.7 AT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23540, + "fields": { + "id_car_serie": 4277, + "name": "3.0 TD AT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23541, + "fields": { + "id_car_serie": 4277, + "name": "3.4 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23542, + "fields": { + "id_car_serie": 4277, + "name": "3.4 AT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23543, + "fields": { + "id_car_serie": 4277, + "name": "4.0 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23544, + "fields": { + "id_car_serie": 4278, + "name": "2.5 TD AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23545, + "fields": { + "id_car_serie": 4278, + "name": "2.5 TD MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23556, + "fields": { + "id_car_serie": 4279, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23557, + "fields": { + "id_car_serie": 4279, + "name": "2.4 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23559, + "fields": { + "id_car_serie": 4280, + "name": "1.8 CVT (144 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23560, + "fields": { + "id_car_serie": 4280, + "name": "2.0 CVT (158 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23561, + "fields": { + "id_car_serie": 4281, + "name": "1.5 CVT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23562, + "fields": { + "id_car_serie": 4281, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23563, + "fields": { + "id_car_serie": 4281, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23567, + "fields": { + "id_car_serie": 4282, + "name": "3.5 AT (273 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23570, + "fields": { + "id_car_serie": 4283, + "name": "4.5 TD 4WD AT (235 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23571, + "fields": { + "id_car_serie": 4283, + "name": "4.5 Twinturbo D 4WD AT (265 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23572, + "fields": { + "id_car_serie": 4283, + "name": "4.5 TD 4WD AT (286 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23575, + "fields": { + "id_car_serie": 4283, + "name": "4.6 4WD AT (318 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23576, + "fields": { + "id_car_serie": 4283, + "name": "4.7 4WD AT (288 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23577, + "fields": { + "id_car_serie": 4283, + "name": "5.7 4WD AT (381 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23578, + "fields": { + "id_car_serie": 4284, + "name": "2.7 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23580, + "fields": { + "id_car_serie": 4284, + "name": "3.0 D AT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23581, + "fields": { + "id_car_serie": 4284, + "name": "3.0 D MT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23583, + "fields": { + "id_car_serie": 4285, + "name": "2.7 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23585, + "fields": { + "id_car_serie": 4285, + "name": "3.0 D AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23587, + "fields": { + "id_car_serie": 4285, + "name": "3.0 D MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23591, + "fields": { + "id_car_serie": 4286, + "name": "1.1 MT (41 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23592, + "fields": { + "id_car_serie": 4287, + "name": "1.1 MT (41 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23593, + "fields": { + "id_car_serie": 4288, + "name": "1.0 MT (41 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23594, + "fields": { + "id_car_serie": 4289, + "name": "1.1 MT (41 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23597, + "fields": { + "id_car_serie": 4291, + "name": "0.6 MT (26 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23598, + "fields": { + "id_car_serie": 4292, + "name": "0.6 MT (23 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1969 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23599, + "fields": { + "id_car_serie": 4292, + "name": "0.6 MT (26 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1969 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23600, + "fields": { + "id_car_serie": 4293, + "name": "5.5 MT (720 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23601, + "fields": { + "id_car_serie": 4293, + "name": "5.5 MT (888 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23602, + "fields": { + "id_car_serie": 4294, + "name": "5.5 MT (720 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23603, + "fields": { + "id_car_serie": 4295, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23604, + "fields": { + "id_car_serie": 4295, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23605, + "fields": { + "id_car_serie": 4296, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23606, + "fields": { + "id_car_serie": 4296, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23607, + "fields": { + "id_car_serie": 4297, + "name": "2.8 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23608, + "fields": { + "id_car_serie": 4297, + "name": "2.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23610, + "fields": { + "id_car_serie": 4299, + "name": "3.5 MT (197 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23611, + "fields": { + "id_car_serie": 4300, + "name": "3.5 MT (197 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23612, + "fields": { + "id_car_serie": 4301, + "name": "4.2 MT (304 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23613, + "fields": { + "id_car_serie": 4302, + "name": "4.2 MT (304 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23614, + "fields": { + "id_car_serie": 4303, + "name": "4.0 MT (396 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23615, + "fields": { + "id_car_serie": 4304, + "name": "3.6 MT (355 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23617, + "fields": { + "id_car_serie": 4304, + "name": "4.0 MT (396 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23618, + "fields": { + "id_car_serie": 4305, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23619, + "fields": { + "id_car_serie": 4305, + "name": "1.2 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23620, + "fields": { + "id_car_serie": 4305, + "name": "1.2 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23624, + "fields": { + "id_car_serie": 4306, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23634, + "fields": { + "id_car_serie": 4307, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23645, + "fields": { + "id_car_serie": 4308, + "name": "1.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 23657, + "fields": { + "id_car_serie": 4309, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23658, + "fields": { + "id_car_serie": 4309, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23659, + "fields": { + "id_car_serie": 4309, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23660, + "fields": { + "id_car_serie": 4309, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23661, + "fields": { + "id_car_serie": 4309, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23662, + "fields": { + "id_car_serie": 4309, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23663, + "fields": { + "id_car_serie": 4309, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23664, + "fields": { + "id_car_serie": 4309, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23665, + "fields": { + "id_car_serie": 4309, + "name": "2.0 AT (99 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23666, + "fields": { + "id_car_serie": 4309, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23667, + "fields": { + "id_car_serie": 4309, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23668, + "fields": { + "id_car_serie": 4309, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23669, + "fields": { + "id_car_serie": 4309, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23670, + "fields": { + "id_car_serie": 4309, + "name": "2.3 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23671, + "fields": { + "id_car_serie": 4309, + "name": "2.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23672, + "fields": { + "id_car_serie": 4309, + "name": "2.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23673, + "fields": { + "id_car_serie": 4309, + "name": "2.3 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23674, + "fields": { + "id_car_serie": 4309, + "name": "2.4 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23675, + "fields": { + "id_car_serie": 4309, + "name": "2.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23676, + "fields": { + "id_car_serie": 4309, + "name": "2.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23677, + "fields": { + "id_car_serie": 4309, + "name": "2.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23678, + "fields": { + "id_car_serie": 4309, + "name": "3.0 AT (154 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23681, + "fields": { + "id_car_serie": 4309, + "name": "3.0 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23682, + "fields": { + "id_car_serie": 4309, + "name": "3.0 MT (154 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23685, + "fields": { + "id_car_serie": 4309, + "name": "3.0 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23686, + "fields": { + "id_car_serie": 4310, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23689, + "fields": { + "id_car_serie": 4310, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23690, + "fields": { + "id_car_serie": 4310, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23693, + "fields": { + "id_car_serie": 4310, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23694, + "fields": { + "id_car_serie": 4310, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23695, + "fields": { + "id_car_serie": 4310, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23696, + "fields": { + "id_car_serie": 4310, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23697, + "fields": { + "id_car_serie": 4310, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23698, + "fields": { + "id_car_serie": 4310, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23699, + "fields": { + "id_car_serie": 4310, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23700, + "fields": { + "id_car_serie": 4310, + "name": "2.3 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23701, + "fields": { + "id_car_serie": 4310, + "name": "2.3 AT (89 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23702, + "fields": { + "id_car_serie": 4310, + "name": "2.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23703, + "fields": { + "id_car_serie": 4310, + "name": "2.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23704, + "fields": { + "id_car_serie": 4310, + "name": "2.3 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23705, + "fields": { + "id_car_serie": 4310, + "name": "2.4 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23706, + "fields": { + "id_car_serie": 4310, + "name": "2.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23707, + "fields": { + "id_car_serie": 4310, + "name": "2.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23708, + "fields": { + "id_car_serie": 4310, + "name": "2.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23709, + "fields": { + "id_car_serie": 4310, + "name": "3.0 AT (154 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23712, + "fields": { + "id_car_serie": 4310, + "name": "3.0 MT (154 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23715, + "fields": { + "id_car_serie": 4310, + "name": "3.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23776, + "fields": { + "id_car_serie": 4314, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23779, + "fields": { + "id_car_serie": 4316, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23785, + "fields": { + "id_car_serie": 4318, + "name": "1.0 AT (54 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23786, + "fields": { + "id_car_serie": 4318, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23787, + "fields": { + "id_car_serie": 4318, + "name": "1.2 MT (42 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23788, + "fields": { + "id_car_serie": 4318, + "name": "1.3d AT (70 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23789, + "fields": { + "id_car_serie": 4318, + "name": "1.3d MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23790, + "fields": { + "id_car_serie": 4318, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23791, + "fields": { + "id_car_serie": 4318, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23792, + "fields": { + "id_car_serie": 4318, + "name": "1.7d MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23793, + "fields": { + "id_car_serie": 4318, + "name": "1.7d MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23794, + "fields": { + "id_car_serie": 4318, + "name": "1.7d MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23795, + "fields": { + "id_car_serie": 4318, + "name": "GSi 1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23796, + "fields": { + "id_car_serie": 4319, + "name": "1.0 AT (58 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23797, + "fields": { + "id_car_serie": 4319, + "name": "1.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23798, + "fields": { + "id_car_serie": 4319, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23799, + "fields": { + "id_car_serie": 4319, + "name": "1.3d AT (70 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23800, + "fields": { + "id_car_serie": 4319, + "name": "1.3d MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23801, + "fields": { + "id_car_serie": 4319, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23802, + "fields": { + "id_car_serie": 4319, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23803, + "fields": { + "id_car_serie": 4319, + "name": "1.7d MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23804, + "fields": { + "id_car_serie": 4319, + "name": "1.7d MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23805, + "fields": { + "id_car_serie": 4319, + "name": "1.7d MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23806, + "fields": { + "id_car_serie": 4319, + "name": "GSi 1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23855, + "fields": { + "id_car_serie": 4325, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23857, + "fields": { + "id_car_serie": 4325, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23858, + "fields": { + "id_car_serie": 4325, + "name": "2.0d MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23859, + "fields": { + "id_car_serie": 4325, + "name": "2.2 AT (144 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23860, + "fields": { + "id_car_serie": 4325, + "name": "2.2 MT (144 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23861, + "fields": { + "id_car_serie": 4325, + "name": "2.2d MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23862, + "fields": { + "id_car_serie": 4325, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23863, + "fields": { + "id_car_serie": 4325, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23864, + "fields": { + "id_car_serie": 4325, + "name": "2.5d AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23865, + "fields": { + "id_car_serie": 4325, + "name": "2.5d AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23866, + "fields": { + "id_car_serie": 4325, + "name": "2.5d MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23867, + "fields": { + "id_car_serie": 4325, + "name": "2.5d MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23868, + "fields": { + "id_car_serie": 4325, + "name": "2.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23869, + "fields": { + "id_car_serie": 4325, + "name": "2.6 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23870, + "fields": { + "id_car_serie": 4325, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23871, + "fields": { + "id_car_serie": 4325, + "name": "3.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23872, + "fields": { + "id_car_serie": 4325, + "name": "3.2 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23873, + "fields": { + "id_car_serie": 4325, + "name": "5.7 AT (315 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23880, + "fields": { + "id_car_serie": 4326, + "name": "2.5 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23881, + "fields": { + "id_car_serie": 4326, + "name": "2.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23885, + "fields": { + "id_car_serie": 4326, + "name": "2.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23890, + "fields": { + "id_car_serie": 4326, + "name": "3.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23899, + "fields": { + "id_car_serie": 4327, + "name": "2.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23903, + "fields": { + "id_car_serie": 4327, + "name": "3.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23904, + "fields": { + "id_car_serie": 4328, + "name": "1.3d MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23905, + "fields": { + "id_car_serie": 4328, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23906, + "fields": { + "id_car_serie": 4328, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23907, + "fields": { + "id_car_serie": 4328, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23909, + "fields": { + "id_car_serie": 4329, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23911, + "fields": { + "id_car_serie": 4329, + "name": "1.9d MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23912, + "fields": { + "id_car_serie": 4329, + "name": "1.9d MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23913, + "fields": { + "id_car_serie": 4329, + "name": "2.0 16V Turbo ECOTEC (175 hp) MT", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23914, + "fields": { + "id_car_serie": 4329, + "name": "2.2 16V Direct ECOTEC (155 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23916, + "fields": { + "id_car_serie": 4329, + "name": "2.2 16V Direct ECOTEC (155 hp) MT", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23921, + "fields": { + "id_car_serie": 4329, + "name": "2.8 MT (230 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23924, + "fields": { + "id_car_serie": 4329, + "name": "3.0d 3.0 V6 CDTi 24V ECOTEC (184 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23926, + "fields": { + "id_car_serie": 4329, + "name": "3.0d V6 CDTi 24V ECOTEC (184 hp) MT", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23930, + "fields": { + "id_car_serie": 4330, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23932, + "fields": { + "id_car_serie": 4330, + "name": "1.9d MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23933, + "fields": { + "id_car_serie": 4330, + "name": "1.9d MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23934, + "fields": { + "id_car_serie": 4330, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23936, + "fields": { + "id_car_serie": 4330, + "name": "2.2 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23940, + "fields": { + "id_car_serie": 4330, + "name": "2.8 V6 24V Turbo ECOTEC (230 hp) MT", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23949, + "fields": { + "id_car_serie": 4331, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23953, + "fields": { + "id_car_serie": 4331, + "name": "1.9d MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23954, + "fields": { + "id_car_serie": 4331, + "name": "1.9d CDTi ECOTEC (150 hp) MT", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23955, + "fields": { + "id_car_serie": 4331, + "name": "2.0 MT 16V Turbo ECOTEC (175 hp) MT", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23958, + "fields": { + "id_car_serie": 4331, + "name": "2.2 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23963, + "fields": { + "id_car_serie": 4331, + "name": "2.8 AT (230 hp) V6 24V Turbo ECOTEC ", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23968, + "fields": { + "id_car_serie": 4331, + "name": "3.0d AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23970, + "fields": { + "id_car_serie": 4331, + "name": "3.0d MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23973, + "fields": { + "id_car_serie": 4332, + "name": "1.8 AT (78 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23974, + "fields": { + "id_car_serie": 4332, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23975, + "fields": { + "id_car_serie": 4332, + "name": "1.8 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23976, + "fields": { + "id_car_serie": 4332, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23977, + "fields": { + "id_car_serie": 4332, + "name": "2.3 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23978, + "fields": { + "id_car_serie": 4332, + "name": "2.3 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23979, + "fields": { + "id_car_serie": 4332, + "name": "2.3 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23980, + "fields": { + "id_car_serie": 4332, + "name": "2.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23981, + "fields": { + "id_car_serie": 4332, + "name": "2.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23982, + "fields": { + "id_car_serie": 4332, + "name": "2.3 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 23991, + "fields": { + "id_car_serie": 4334, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24000, + "fields": { + "id_car_serie": 4336, + "name": "1.6 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24001, + "fields": { + "id_car_serie": 4336, + "name": "1.8 AT (78 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24002, + "fields": { + "id_car_serie": 4336, + "name": "1.8 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24003, + "fields": { + "id_car_serie": 4336, + "name": "2.3 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24004, + "fields": { + "id_car_serie": 4336, + "name": "2.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24011, + "fields": { + "id_car_serie": 4338, + "name": "2.5 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24013, + "fields": { + "id_car_serie": 4339, + "name": "2.5 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24014, + "fields": { + "id_car_serie": 4340, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24015, + "fields": { + "id_car_serie": 4340, + "name": "1.2 BlueMotion TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24016, + "fields": { + "id_car_serie": 4340, + "name": "1.4 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24017, + "fields": { + "id_car_serie": 4340, + "name": "1.4 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24019, + "fields": { + "id_car_serie": 4340, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24022, + "fields": { + "id_car_serie": 4340, + "name": "2.0 TSI DSG (200 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24024, + "fields": { + "id_car_serie": 4340, + "name": "2.0 TSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24026, + "fields": { + "id_car_serie": 4340, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24027, + "fields": { + "id_car_serie": 4340, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24030, + "fields": { + "id_car_serie": 4341, + "name": "1.2 TSI BlueMotion DSG (105 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24031, + "fields": { + "id_car_serie": 4341, + "name": "1.2 TSI BlueMotion MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24032, + "fields": { + "id_car_serie": 4341, + "name": "1.4 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24033, + "fields": { + "id_car_serie": 4341, + "name": "1.4 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24035, + "fields": { + "id_car_serie": 4341, + "name": "1.6 TDI BlueMotion MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24038, + "fields": { + "id_car_serie": 4341, + "name": "2.0 TSI DSG (200 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24039, + "fields": { + "id_car_serie": 4341, + "name": "2.0 TSI DSG (210 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24040, + "fields": { + "id_car_serie": 4341, + "name": "2.0 TSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24042, + "fields": { + "id_car_serie": 4341, + "name": "2.0 TDI AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24043, + "fields": { + "id_car_serie": 4341, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24046, + "fields": { + "id_car_serie": 4342, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24047, + "fields": { + "id_car_serie": 4342, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24048, + "fields": { + "id_car_serie": 4342, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24049, + "fields": { + "id_car_serie": 4342, + "name": "1.6 16V MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24050, + "fields": { + "id_car_serie": 4342, + "name": "1.6 FSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24051, + "fields": { + "id_car_serie": 4342, + "name": "1.8 5V Turbo AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24052, + "fields": { + "id_car_serie": 4342, + "name": "1.8 5V Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24053, + "fields": { + "id_car_serie": 4342, + "name": "1.8 5V Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24054, + "fields": { + "id_car_serie": 4342, + "name": "1.9 TDI AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24055, + "fields": { + "id_car_serie": 4342, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24056, + "fields": { + "id_car_serie": 4342, + "name": "1.9 TDI 4Motion MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24057, + "fields": { + "id_car_serie": 4342, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24058, + "fields": { + "id_car_serie": 4342, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24059, + "fields": { + "id_car_serie": 4342, + "name": "1.9 TDI 4Motion MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24060, + "fields": { + "id_car_serie": 4342, + "name": "1.9 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24061, + "fields": { + "id_car_serie": 4342, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24062, + "fields": { + "id_car_serie": 4342, + "name": "1.9 TDI 4Motion MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24063, + "fields": { + "id_car_serie": 4342, + "name": "1.9 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24064, + "fields": { + "id_car_serie": 4342, + "name": "1.9 TDI 4Motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24065, + "fields": { + "id_car_serie": 4342, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24066, + "fields": { + "id_car_serie": 4342, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24067, + "fields": { + "id_car_serie": 4342, + "name": "2.0 4Motion MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24068, + "fields": { + "id_car_serie": 4342, + "name": "2.3 V5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24069, + "fields": { + "id_car_serie": 4342, + "name": "2.3 V5 4Motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24070, + "fields": { + "id_car_serie": 4342, + "name": "2.3 V5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24071, + "fields": { + "id_car_serie": 4342, + "name": "2.3 V5 4Motion MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24072, + "fields": { + "id_car_serie": 4342, + "name": "2.3 V5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24073, + "fields": { + "id_car_serie": 4342, + "name": "2.8 V6 4Motion MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24074, + "fields": { + "id_car_serie": 4343, + "name": "1.4 16V MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24075, + "fields": { + "id_car_serie": 4343, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24076, + "fields": { + "id_car_serie": 4343, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24077, + "fields": { + "id_car_serie": 4343, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24078, + "fields": { + "id_car_serie": 4343, + "name": "1.6 16V MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24079, + "fields": { + "id_car_serie": 4343, + "name": "1.6 16V FSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24080, + "fields": { + "id_car_serie": 4343, + "name": "1.8 5V Turbo AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24081, + "fields": { + "id_car_serie": 4343, + "name": "1.8 MT 4Motion (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24082, + "fields": { + "id_car_serie": 4343, + "name": "1.8 5V Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24083, + "fields": { + "id_car_serie": 4343, + "name": "1.8 5V Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24084, + "fields": { + "id_car_serie": 4343, + "name": "1.9 TDI AT (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24085, + "fields": { + "id_car_serie": 4343, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24086, + "fields": { + "id_car_serie": 4343, + "name": "1.9 TDI AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24087, + "fields": { + "id_car_serie": 4343, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24088, + "fields": { + "id_car_serie": 4343, + "name": "1.9 TDI AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24089, + "fields": { + "id_car_serie": 4343, + "name": "1.9 TDI MT 4Motion (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24090, + "fields": { + "id_car_serie": 4343, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24091, + "fields": { + "id_car_serie": 4343, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24092, + "fields": { + "id_car_serie": 4343, + "name": "1.9 TDI 4Motion MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24093, + "fields": { + "id_car_serie": 4343, + "name": "1.9 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24094, + "fields": { + "id_car_serie": 4343, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24095, + "fields": { + "id_car_serie": 4343, + "name": "1.9 TDI 4Motion MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24096, + "fields": { + "id_car_serie": 4343, + "name": "1.9 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24097, + "fields": { + "id_car_serie": 4343, + "name": "1.9 TDI 4Motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24098, + "fields": { + "id_car_serie": 4343, + "name": "1.9 SDI MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24099, + "fields": { + "id_car_serie": 4343, + "name": "1.9 TDI 4Motion MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24100, + "fields": { + "id_car_serie": 4343, + "name": "1.9 TDI MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24101, + "fields": { + "id_car_serie": 4343, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24102, + "fields": { + "id_car_serie": 4343, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24103, + "fields": { + "id_car_serie": 4343, + "name": "2.0 4Motion MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24104, + "fields": { + "id_car_serie": 4343, + "name": "2.3 V5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24105, + "fields": { + "id_car_serie": 4343, + "name": "2.3 V5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24106, + "fields": { + "id_car_serie": 4343, + "name": "2.3 V5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24107, + "fields": { + "id_car_serie": 4343, + "name": "2.3 V5 4Motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24108, + "fields": { + "id_car_serie": 4343, + "name": "2.3 V5 4Motion MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24109, + "fields": { + "id_car_serie": 4343, + "name": "2.3 V5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24110, + "fields": { + "id_car_serie": 4343, + "name": "2.8 V6 4Motion MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24111, + "fields": { + "id_car_serie": 4344, + "name": "1.2 TSI MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24115, + "fields": { + "id_car_serie": 4344, + "name": "1.6 TDI 5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24119, + "fields": { + "id_car_serie": 4344, + "name": "2.0 TDI 4Motion MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24122, + "fields": { + "id_car_serie": 4345, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24123, + "fields": { + "id_car_serie": 4345, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24124, + "fields": { + "id_car_serie": 4345, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24125, + "fields": { + "id_car_serie": 4345, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24126, + "fields": { + "id_car_serie": 4345, + "name": "1.3 Formel E MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24127, + "fields": { + "id_car_serie": 4346, + "name": "1.4 TSI BlueMotion MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24128, + "fields": { + "id_car_serie": 4346, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24129, + "fields": { + "id_car_serie": 4346, + "name": "2.0 TSI DSG (210 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24130, + "fields": { + "id_car_serie": 4346, + "name": "2.0 TDI BlueMotion MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24131, + "fields": { + "id_car_serie": 4346, + "name": "2.0 TSI MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24132, + "fields": { + "id_car_serie": 4346, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24133, + "fields": { + "id_car_serie": 4346, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24136, + "fields": { + "id_car_serie": 4347, + "name": "1.2 TSI BlueMotion MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24146, + "fields": { + "id_car_serie": 4347, + "name": "1.6 TDI BlueMotion MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24159, + "fields": { + "id_car_serie": 4348, + "name": "1.6 TDI BlueMotion MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24166, + "fields": { + "id_car_serie": 4348, + "name": "2.0 TDI BlueMotion MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24168, + "fields": { + "id_car_serie": 4349, + "name": "1.2 TSI BlueMotion DSG (105 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24169, + "fields": { + "id_car_serie": 4349, + "name": "1.2 TSI BlueMotion MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24170, + "fields": { + "id_car_serie": 4349, + "name": "1.2 TSI BlueMotion MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24171, + "fields": { + "id_car_serie": 4349, + "name": "1.4 TSI BlueMotion DSG (122 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24172, + "fields": { + "id_car_serie": 4349, + "name": "1.4 TSI BlueMotion DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24173, + "fields": { + "id_car_serie": 4349, + "name": "1.4 TSI BlueMotion MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24175, + "fields": { + "id_car_serie": 4349, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24176, + "fields": { + "id_car_serie": 4349, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24181, + "fields": { + "id_car_serie": 4349, + "name": "1.4 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24183, + "fields": { + "id_car_serie": 4350, + "name": "1.2 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24184, + "fields": { + "id_car_serie": 4350, + "name": "1.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24185, + "fields": { + "id_car_serie": 4350, + "name": "1.2 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24186, + "fields": { + "id_car_serie": 4350, + "name": "1.4 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24187, + "fields": { + "id_car_serie": 4350, + "name": "1.4 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24188, + "fields": { + "id_car_serie": 4350, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24189, + "fields": { + "id_car_serie": 4350, + "name": "1.6 AMT (102 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24193, + "fields": { + "id_car_serie": 4350, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24194, + "fields": { + "id_car_serie": 4350, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24196, + "fields": { + "id_car_serie": 4350, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24199, + "fields": { + "id_car_serie": 4351, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24200, + "fields": { + "id_car_serie": 4351, + "name": "1.4 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24202, + "fields": { + "id_car_serie": 4351, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24203, + "fields": { + "id_car_serie": 4351, + "name": "1.4 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24206, + "fields": { + "id_car_serie": 4351, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24207, + "fields": { + "id_car_serie": 4351, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24208, + "fields": { + "id_car_serie": 4351, + "name": "1.6 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24210, + "fields": { + "id_car_serie": 4351, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24213, + "fields": { + "id_car_serie": 4351, + "name": "2.0 TSI DSG (200 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24215, + "fields": { + "id_car_serie": 4351, + "name": "2.0 TSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24216, + "fields": { + "id_car_serie": 4351, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24217, + "fields": { + "id_car_serie": 4351, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24245, + "fields": { + "id_car_serie": 49434, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24258, + "fields": { + "id_car_serie": 49434, + "name": "2.5 TDI AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24259, + "fields": { + "id_car_serie": 49434, + "name": "2.5 TDI AT (174 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24260, + "fields": { + "id_car_serie": 49434, + "name": "2.5 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24261, + "fields": { + "id_car_serie": 49434, + "name": "2.5 TDI MT 4Motion (130 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24262, + "fields": { + "id_car_serie": 49434, + "name": "2.5 TDI MT (174 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24263, + "fields": { + "id_car_serie": 49434, + "name": "2.5 TDI MT 4Motion (174 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24267, + "fields": { + "id_car_serie": 4355, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24268, + "fields": { + "id_car_serie": 4355, + "name": "1.4 TSI DSG EcoFuel (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24270, + "fields": { + "id_car_serie": 4355, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24274, + "fields": { + "id_car_serie": 4355, + "name": "1.8 TSI DSG (152 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24275, + "fields": { + "id_car_serie": 4355, + "name": "1.8 TSI MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24276, + "fields": { + "id_car_serie": 4355, + "name": "2.0 TSI DSG (210 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24277, + "fields": { + "id_car_serie": 4355, + "name": "2.0 TSI MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24278, + "fields": { + "id_car_serie": 4355, + "name": "2.0 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24279, + "fields": { + "id_car_serie": 4355, + "name": "2.0 TDI 4Motion DSG (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24280, + "fields": { + "id_car_serie": 4355, + "name": "2.0 TDI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24283, + "fields": { + "id_car_serie": 4355, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24300, + "fields": { + "id_car_serie": 4356, + "name": "2.0 TDI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24306, + "fields": { + "id_car_serie": 4356, + "name": "2.0 TSI MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24307, + "fields": { + "id_car_serie": 4357, + "name": "1.4 TFSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24308, + "fields": { + "id_car_serie": 4357, + "name": "1.4 TFSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24309, + "fields": { + "id_car_serie": 4357, + "name": "1.8 TSI DSG (152 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24310, + "fields": { + "id_car_serie": 4357, + "name": "1.8 TSI MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24311, + "fields": { + "id_car_serie": 4357, + "name": "2.0 TSI DSG (210 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24314, + "fields": { + "id_car_serie": 4357, + "name": "2.0 TDI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24320, + "fields": { + "id_car_serie": 4357, + "name": "3.6 4Motion DSG (300 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24329, + "fields": { + "id_car_serie": 4358, + "name": "6.0 Tiptronic 4Motion L (450 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24333, + "fields": { + "id_car_serie": 4360, + "name": "1.0 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24334, + "fields": { + "id_car_serie": 4360, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24335, + "fields": { + "id_car_serie": 4361, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24337, + "fields": { + "id_car_serie": 4361, + "name": "1.4 DSG (85 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24342, + "fields": { + "id_car_serie": 4361, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24350, + "fields": { + "id_car_serie": 4361, + "name": "1.6 BiFuel MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24353, + "fields": { + "id_car_serie": 4363, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24355, + "fields": { + "id_car_serie": 4363, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24356, + "fields": { + "id_car_serie": 4363, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24359, + "fields": { + "id_car_serie": 4363, + "name": "1.4 DSG (85 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24360, + "fields": { + "id_car_serie": 4363, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24363, + "fields": { + "id_car_serie": 4363, + "name": "1.6 TDi MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24378, + "fields": { + "id_car_serie": 4365, + "name": "1.4 TSI AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24379, + "fields": { + "id_car_serie": 4365, + "name": "1.4 TSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24381, + "fields": { + "id_car_serie": 4365, + "name": "2.0 TDI AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24382, + "fields": { + "id_car_serie": 4365, + "name": "2.0 TDI AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24385, + "fields": { + "id_car_serie": 4365, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24386, + "fields": { + "id_car_serie": 4365, + "name": "2.0 TDI MT 4Motion (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24387, + "fields": { + "id_car_serie": 4365, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24389, + "fields": { + "id_car_serie": 4366, + "name": "1.8 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24390, + "fields": { + "id_car_serie": 4366, + "name": "2.2 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24393, + "fields": { + "id_car_serie": 4366, + "name": "2.5d MT (79 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24396, + "fields": { + "id_car_serie": 4367, + "name": "1.8 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24397, + "fields": { + "id_car_serie": 4367, + "name": "2.2 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24400, + "fields": { + "id_car_serie": 4367, + "name": "2.5d MT (79 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24403, + "fields": { + "id_car_serie": 4368, + "name": "1.8 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24404, + "fields": { + "id_car_serie": 4368, + "name": "2.2 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24407, + "fields": { + "id_car_serie": 4368, + "name": "2.5d MT (79 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24410, + "fields": { + "id_car_serie": 4369, + "name": "1.4 TSI BlueMotion DSG (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24412, + "fields": { + "id_car_serie": 4369, + "name": "1.4 TSI BlueMotion MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24413, + "fields": { + "id_car_serie": 4369, + "name": "1.4 TSI 4Motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24417, + "fields": { + "id_car_serie": 4369, + "name": "2.0 TSI 4Motion AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24418, + "fields": { + "id_car_serie": 4369, + "name": "2.0 TSI 4Motion AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24419, + "fields": { + "id_car_serie": 4369, + "name": "2.0 TSI 4Motion AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24421, + "fields": { + "id_car_serie": 4369, + "name": "2.0 TSI 4Motion DSG (210 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24426, + "fields": { + "id_car_serie": 4369, + "name": "2.0 TDI 4Motion AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24433, + "fields": { + "id_car_serie": 4370, + "name": "3.0 TDI Tiptronic 4Motion (204 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24435, + "fields": { + "id_car_serie": 4370, + "name": "3.0 TDI Tiptronic 4Motion (245 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24437, + "fields": { + "id_car_serie": 4370, + "name": "3.6 FSI Tiptronic 4Motion (249 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24438, + "fields": { + "id_car_serie": 4370, + "name": "3.6 FSI Tiptronic 4Motion (280 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24442, + "fields": { + "id_car_serie": 4371, + "name": "1.4 TSI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24443, + "fields": { + "id_car_serie": 4371, + "name": "1.4 TSI 7DSG (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24444, + "fields": { + "id_car_serie": 4371, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24452, + "fields": { + "id_car_serie": 4371, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24453, + "fields": { + "id_car_serie": 4372, + "name": "1.8 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24454, + "fields": { + "id_car_serie": 4372, + "name": "1.8 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24455, + "fields": { + "id_car_serie": 4372, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24456, + "fields": { + "id_car_serie": 4372, + "name": "1.8 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24457, + "fields": { + "id_car_serie": 4373, + "name": "1.7 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24458, + "fields": { + "id_car_serie": 4373, + "name": "1.7 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24459, + "fields": { + "id_car_serie": 4373, + "name": "1.8 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24460, + "fields": { + "id_car_serie": 4373, + "name": "1.8 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24461, + "fields": { + "id_car_serie": 4373, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24462, + "fields": { + "id_car_serie": 4373, + "name": "1.8 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24464, + "fields": { + "id_car_serie": 4375, + "name": "1.0 AMT (60 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24465, + "fields": { + "id_car_serie": 4375, + "name": "1.0 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24466, + "fields": { + "id_car_serie": 4375, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24467, + "fields": { + "id_car_serie": 4375, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24468, + "fields": { + "id_car_serie": 4375, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24482, + "fields": { + "id_car_serie": 4379, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24485, + "fields": { + "id_car_serie": 4379, + "name": "2.1 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24486, + "fields": { + "id_car_serie": 4379, + "name": "2.1 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24487, + "fields": { + "id_car_serie": 4379, + "name": "2.1 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24488, + "fields": { + "id_car_serie": 4379, + "name": "2.1 Turbo MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24489, + "fields": { + "id_car_serie": 4379, + "name": "2.3 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24490, + "fields": { + "id_car_serie": 4379, + "name": "2.3 AT (138 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24491, + "fields": { + "id_car_serie": 4379, + "name": "2.3 AT (142 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24494, + "fields": { + "id_car_serie": 4379, + "name": "2.3 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24495, + "fields": { + "id_car_serie": 4379, + "name": "2.3 MT (138 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24496, + "fields": { + "id_car_serie": 4379, + "name": "2.3 MT (142 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24497, + "fields": { + "id_car_serie": 4379, + "name": "2.4 d MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24498, + "fields": { + "id_car_serie": 4379, + "name": "2.7 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24501, + "fields": { + "id_car_serie": 4380, + "name": "2.1 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24502, + "fields": { + "id_car_serie": 4380, + "name": "2.1 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24526, + "fields": { + "id_car_serie": 4384, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24527, + "fields": { + "id_car_serie": 4384, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24528, + "fields": { + "id_car_serie": 4384, + "name": "1.6d MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24529, + "fields": { + "id_car_serie": 4384, + "name": "1.7 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24538, + "fields": { + "id_car_serie": 4384, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24542, + "fields": { + "id_car_serie": 4384, + "name": "2.0 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24545, + "fields": { + "id_car_serie": 4384, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24548, + "fields": { + "id_car_serie": 4385, + "name": "1.4 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24551, + "fields": { + "id_car_serie": 4385, + "name": "1.6d MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24552, + "fields": { + "id_car_serie": 4385, + "name": "1.7 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24561, + "fields": { + "id_car_serie": 4385, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24564, + "fields": { + "id_car_serie": 4385, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24565, + "fields": { + "id_car_serie": 4385, + "name": "2.0 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24568, + "fields": { + "id_car_serie": 4385, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24569, + "fields": { + "id_car_serie": 4385, + "name": "2.0 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24571, + "fields": { + "id_car_serie": 4386, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24573, + "fields": { + "id_car_serie": 4386, + "name": "1.6d MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24575, + "fields": { + "id_car_serie": 4386, + "name": "1.7 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24584, + "fields": { + "id_car_serie": 4386, + "name": "2.0 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24588, + "fields": { + "id_car_serie": 4386, + "name": "2.0 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24589, + "fields": { + "id_car_serie": 4386, + "name": "2.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24592, + "fields": { + "id_car_serie": 4387, + "name": "1.1 CVT (45 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24593, + "fields": { + "id_car_serie": 4387, + "name": "1.3 CVT (57 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24594, + "fields": { + "id_car_serie": 4388, + "name": "1.1 CVT (66 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24595, + "fields": { + "id_car_serie": 4388, + "name": "1.3 CVT (57 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24607, + "fields": { + "id_car_serie": 4389, + "name": "2.3 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24608, + "fields": { + "id_car_serie": 4389, + "name": "2.3 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24611, + "fields": { + "id_car_serie": 4389, + "name": "2.3 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24620, + "fields": { + "id_car_serie": 4390, + "name": "2.3 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24621, + "fields": { + "id_car_serie": 4390, + "name": "2.3 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24623, + "fields": { + "id_car_serie": 4390, + "name": "2.3 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24628, + "fields": { + "id_car_serie": 4390, + "name": "2.3 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24630, + "fields": { + "id_car_serie": 4390, + "name": "2.3 Turbo AT (177 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24631, + "fields": { + "id_car_serie": 4390, + "name": "2.3 Turbo AT (182 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24632, + "fields": { + "id_car_serie": 4390, + "name": "2.3 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24633, + "fields": { + "id_car_serie": 4390, + "name": "2.3 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24635, + "fields": { + "id_car_serie": 4390, + "name": "2.3 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24639, + "fields": { + "id_car_serie": 4390, + "name": "2.3 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24641, + "fields": { + "id_car_serie": 4390, + "name": "2.3 Turbo MT (177 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24642, + "fields": { + "id_car_serie": 4390, + "name": "2.3 Turbo MT (182 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24643, + "fields": { + "id_car_serie": 4390, + "name": "2.4 D AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24644, + "fields": { + "id_car_serie": 4390, + "name": "2.4 D MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24645, + "fields": { + "id_car_serie": 4390, + "name": "2.4 D MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24646, + "fields": { + "id_car_serie": 4391, + "name": "2.4 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24647, + "fields": { + "id_car_serie": 4391, + "name": "2.4 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24648, + "fields": { + "id_car_serie": 4391, + "name": "2.8 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24649, + "fields": { + "id_car_serie": 4391, + "name": "2.8 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24650, + "fields": { + "id_car_serie": 4391, + "name": "2.8 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24651, + "fields": { + "id_car_serie": 4391, + "name": "2.8 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24655, + "fields": { + "id_car_serie": 4392, + "name": "2.3 T MT (182 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24657, + "fields": { + "id_car_serie": 4392, + "name": "2.4 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24666, + "fields": { + "id_car_serie": 4393, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24668, + "fields": { + "id_car_serie": 4393, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24670, + "fields": { + "id_car_serie": 4393, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24671, + "fields": { + "id_car_serie": 4393, + "name": "2.3 T5 AT (225 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24672, + "fields": { + "id_car_serie": 4393, + "name": "2.3 T AT (240 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24673, + "fields": { + "id_car_serie": 4393, + "name": "2.3 T5 MT (225 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24674, + "fields": { + "id_car_serie": 4393, + "name": "2.3 T5 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24682, + "fields": { + "id_car_serie": 4393, + "name": "2.5 AT (144 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24683, + "fields": { + "id_car_serie": 4393, + "name": "2.5 T MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24684, + "fields": { + "id_car_serie": 4394, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24685, + "fields": { + "id_car_serie": 4394, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24687, + "fields": { + "id_car_serie": 4394, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24688, + "fields": { + "id_car_serie": 4394, + "name": "2.3 T5 AT (225 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24690, + "fields": { + "id_car_serie": 4394, + "name": "2.3 T5 MT (225 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24691, + "fields": { + "id_car_serie": 4394, + "name": "2.3 T MT (250 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24698, + "fields": { + "id_car_serie": 4394, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24699, + "fields": { + "id_car_serie": 4394, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24700, + "fields": { + "id_car_serie": 4395, + "name": "2.0 MT (111 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24701, + "fields": { + "id_car_serie": 4395, + "name": "2.0 T MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24702, + "fields": { + "id_car_serie": 4395, + "name": "2.3 T AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24703, + "fields": { + "id_car_serie": 4395, + "name": "2.3 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24704, + "fields": { + "id_car_serie": 4395, + "name": "2.3 T AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24705, + "fields": { + "id_car_serie": 4395, + "name": "2.3 T MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24706, + "fields": { + "id_car_serie": 4395, + "name": "2.3 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24707, + "fields": { + "id_car_serie": 4395, + "name": "2.3 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24708, + "fields": { + "id_car_serie": 4395, + "name": "2.4 TD AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24709, + "fields": { + "id_car_serie": 4395, + "name": "2.4 D MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24710, + "fields": { + "id_car_serie": 4396, + "name": "2.0 MT (111 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24711, + "fields": { + "id_car_serie": 4396, + "name": "2.0 T MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24712, + "fields": { + "id_car_serie": 4396, + "name": "2.3 T AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24713, + "fields": { + "id_car_serie": 4396, + "name": "2.3 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24714, + "fields": { + "id_car_serie": 4396, + "name": "2.3 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24715, + "fields": { + "id_car_serie": 4396, + "name": "2.3 T MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24716, + "fields": { + "id_car_serie": 4396, + "name": "2.3 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24717, + "fields": { + "id_car_serie": 4396, + "name": "2.3 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24718, + "fields": { + "id_car_serie": 4396, + "name": "2.4 TD AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24719, + "fields": { + "id_car_serie": 4396, + "name": "2.4 D MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24720, + "fields": { + "id_car_serie": 4396, + "name": "2.4 TD MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24724, + "fields": { + "id_car_serie": 4397, + "name": "2.4 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24725, + "fields": { + "id_car_serie": 4397, + "name": "2.4 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24730, + "fields": { + "id_car_serie": 4398, + "name": "2.4 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24731, + "fields": { + "id_car_serie": 4398, + "name": "2.4 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24735, + "fields": { + "id_car_serie": 4399, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24736, + "fields": { + "id_car_serie": 4399, + "name": "1.6 D2 DRIVe Start/Stop MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24737, + "fields": { + "id_car_serie": 4399, + "name": "2.0 Powershift (145 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24738, + "fields": { + "id_car_serie": 4399, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24739, + "fields": { + "id_car_serie": 4399, + "name": "2.0 F DRIVe MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24740, + "fields": { + "id_car_serie": 4399, + "name": "2.4 Geartronic (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24741, + "fields": { + "id_car_serie": 4399, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24742, + "fields": { + "id_car_serie": 4399, + "name": "2.4 D5 Geartronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24743, + "fields": { + "id_car_serie": 4399, + "name": "2.4 D5 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24744, + "fields": { + "id_car_serie": 4399, + "name": "2.5 T5 Geartronic (230 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24745, + "fields": { + "id_car_serie": 4399, + "name": "2.5 T5 MT (230 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24747, + "fields": { + "id_car_serie": 4400, + "name": "2.5 T5 Geartronic (230 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24752, + "fields": { + "id_car_serie": 4402, + "name": "4.3 AT (283 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24775, + "fields": { + "id_car_serie": 4407, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24776, + "fields": { + "id_car_serie": 4407, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24777, + "fields": { + "id_car_serie": 4407, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24778, + "fields": { + "id_car_serie": 4407, + "name": "1.6 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24779, + "fields": { + "id_car_serie": 4407, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24780, + "fields": { + "id_car_serie": 4407, + "name": "1.6 6MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24781, + "fields": { + "id_car_serie": 4408, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24782, + "fields": { + "id_car_serie": 4408, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24783, + "fields": { + "id_car_serie": 4408, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24784, + "fields": { + "id_car_serie": 4408, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24785, + "fields": { + "id_car_serie": 4408, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24786, + "fields": { + "id_car_serie": 4408, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24787, + "fields": { + "id_car_serie": 4408, + "name": "1.6 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24788, + "fields": { + "id_car_serie": 4408, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24789, + "fields": { + "id_car_serie": 4408, + "name": "1.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24790, + "fields": { + "id_car_serie": 4408, + "name": "1.6 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24791, + "fields": { + "id_car_serie": 4408, + "name": "1.6 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24792, + "fields": { + "id_car_serie": 4408, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24793, + "fields": { + "id_car_serie": 4408, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24794, + "fields": { + "id_car_serie": 4408, + "name": "1.6 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24795, + "fields": { + "id_car_serie": 4408, + "name": "2.0 D AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24796, + "fields": { + "id_car_serie": 4408, + "name": "2.0 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24797, + "fields": { + "id_car_serie": 4408, + "name": "2.0 D MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24798, + "fields": { + "id_car_serie": 4408, + "name": "2.2 D AT (79 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24799, + "fields": { + "id_car_serie": 4408, + "name": "2.2 D MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24801, + "fields": { + "id_car_serie": 4409, + "name": "1.3 Turbo AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24802, + "fields": { + "id_car_serie": 4409, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24803, + "fields": { + "id_car_serie": 4409, + "name": "1.3 Turbo MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24806, + "fields": { + "id_car_serie": 4409, + "name": "1.5 D AT (54 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24807, + "fields": { + "id_car_serie": 4409, + "name": "1.5 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24808, + "fields": { + "id_car_serie": 4410, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24810, + "fields": { + "id_car_serie": 4410, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24811, + "fields": { + "id_car_serie": 4410, + "name": "1.3 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24812, + "fields": { + "id_car_serie": 4410, + "name": "1.5 D AT (54 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24813, + "fields": { + "id_car_serie": 4410, + "name": "1.5 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24818, + "fields": { + "id_car_serie": 4412, + "name": "3.0 AT Overdrive (223 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24819, + "fields": { + "id_car_serie": 4412, + "name": "3.0 Twin-Turbo AT Overdrive (280 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24820, + "fields": { + "id_car_serie": 4412, + "name": "3.0 Twin-Turbo AT Overdrive (324 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24821, + "fields": { + "id_car_serie": 4412, + "name": "3.0 MT Overdrive (223 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24822, + "fields": { + "id_car_serie": 4412, + "name": "3.0 Twin-Turbo MT Overdrive (280 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24823, + "fields": { + "id_car_serie": 4412, + "name": "3.0 Twin-Turbo MT Overdrive (324 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24830, + "fields": { + "id_car_serie": 4413, + "name": "4.0 AT Overdrive L1 (245 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24831, + "fields": { + "id_car_serie": 4413, + "name": "4.0 MT 4x4 L1 (236 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24847, + "fields": { + "id_car_serie": 4415, + "name": "4.0 MT (236 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24848, + "fields": { + "id_car_serie": 4416, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24849, + "fields": { + "id_car_serie": 4416, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24850, + "fields": { + "id_car_serie": 4416, + "name": "1.5 TD MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24851, + "fields": { + "id_car_serie": 4417, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24852, + "fields": { + "id_car_serie": 4417, + "name": "1.5 TD AT (67 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24853, + "fields": { + "id_car_serie": 4417, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24854, + "fields": { + "id_car_serie": 4417, + "name": "1.5 TD MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24855, + "fields": { + "id_car_serie": 4418, + "name": "2.0 D AT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24856, + "fields": { + "id_car_serie": 4418, + "name": "2.0 D AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24857, + "fields": { + "id_car_serie": 4418, + "name": "2.0 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24858, + "fields": { + "id_car_serie": 4418, + "name": "2.0 D MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24859, + "fields": { + "id_car_serie": 4418, + "name": "2.2 D AT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24860, + "fields": { + "id_car_serie": 4418, + "name": "2.2 D AT (79 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24861, + "fields": { + "id_car_serie": 4418, + "name": "2.2 D MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24862, + "fields": { + "id_car_serie": 4418, + "name": "2.2 D MT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24863, + "fields": { + "id_car_serie": 4419, + "name": "4.0 AT Long (236 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24864, + "fields": { + "id_car_serie": 4419, + "name": "5.7 AT (381 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24865, + "fields": { + "id_car_serie": 4419, + "name": "5.7 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24867, + "fields": { + "id_car_serie": 4420, + "name": "4.6 AT (310 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24868, + "fields": { + "id_car_serie": 4420, + "name": "4.6 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24869, + "fields": { + "id_car_serie": 4420, + "name": "5.7 AT (381 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24870, + "fields": { + "id_car_serie": 4420, + "name": "5.7 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24871, + "fields": { + "id_car_serie": 4421, + "name": "4.6 AT (310 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24872, + "fields": { + "id_car_serie": 4421, + "name": "4.6 AT Long (310 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24873, + "fields": { + "id_car_serie": 4421, + "name": "5.7 AT (381 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24874, + "fields": { + "id_car_serie": 4421, + "name": "5.7 AT TRD Sport (381 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24889, + "fields": { + "id_car_serie": 4425, + "name": "2.7 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24890, + "fields": { + "id_car_serie": 4425, + "name": "2.7 AT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24899, + "fields": { + "id_car_serie": 4427, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24900, + "fields": { + "id_car_serie": 4427, + "name": "1.8 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24901, + "fields": { + "id_car_serie": 4427, + "name": "1.8 CVT (7 places) (147 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24902, + "fields": { + "id_car_serie": 4427, + "name": "1.8 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24903, + "fields": { + "id_car_serie": 4427, + "name": "2.0 D-4D MT (7 places) (124 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24910, + "fields": { + "id_car_serie": 4429, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24911, + "fields": { + "id_car_serie": 4429, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24912, + "fields": { + "id_car_serie": 4430, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24913, + "fields": { + "id_car_serie": 4430, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24914, + "fields": { + "id_car_serie": 4430, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24919, + "fields": { + "id_car_serie": 4432, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24921, + "fields": { + "id_car_serie": 4432, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 24936, + "fields": { + "id_car_serie": 4437, + "name": "3.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24944, + "fields": { + "id_car_serie": 4440, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24945, + "fields": { + "id_car_serie": 4440, + "name": "1.3 6MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24946, + "fields": { + "id_car_serie": 4440, + "name": "1.3 5MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24947, + "fields": { + "id_car_serie": 4440, + "name": "1.4 D-4D MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24949, + "fields": { + "id_car_serie": 4441, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24951, + "fields": { + "id_car_serie": 4441, + "name": "1.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 24952, + "fields": { + "id_car_serie": 4441, + "name": "1.4 D-4D MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25091, + "fields": { + "id_car_serie": 2249, + "name": "3.5 AT (227 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25092, + "fields": { + "id_car_serie": 2249, + "name": "3.6 AT (252 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25101, + "fields": { + "id_car_serie": 2879, + "name": "5.3 MT (310 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25102, + "fields": { + "id_car_serie": 2880, + "name": "5.3 AT (310 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25104, + "fields": { + "id_car_serie": 2882, + "name": "5.9 AT (573 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25105, + "fields": { + "id_car_serie": 2883, + "name": "5.9 AT (573 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25106, + "fields": { + "id_car_serie": 2884, + "name": "5.9 MT (517 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25108, + "fields": { + "id_car_serie": 2886, + "name": "4.7 AMT (426 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25109, + "fields": { + "id_car_serie": 2886, + "name": "4.7 MT (426 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25110, + "fields": { + "id_car_serie": 2887, + "name": "4.7 AMT (426 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25111, + "fields": { + "id_car_serie": 2887, + "name": "4.7 MT (426 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25112, + "fields": { + "id_car_serie": 2888, + "name": "5.3 MT (438 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25113, + "fields": { + "id_car_serie": 2889, + "name": "5.3 MT (309 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25114, + "fields": { + "id_car_serie": 2890, + "name": "5.9 AT (497 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25115, + "fields": { + "id_car_serie": 2891, + "name": "5.9 AT (497 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25116, + "fields": { + "id_car_serie": 2892, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25118, + "fields": { + "id_car_serie": 2892, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25119, + "fields": { + "id_car_serie": 2892, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25124, + "fields": { + "id_car_serie": 2892, + "name": "2.3 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25125, + "fields": { + "id_car_serie": 2892, + "name": "2.3 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25128, + "fields": { + "id_car_serie": 2892, + "name": "2.4 D MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25130, + "fields": { + "id_car_serie": 2892, + "name": "2.5 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25131, + "fields": { + "id_car_serie": 2892, + "name": "2.6 quattro AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25132, + "fields": { + "id_car_serie": 2892, + "name": "2.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25133, + "fields": { + "id_car_serie": 2892, + "name": "2.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25134, + "fields": { + "id_car_serie": 2892, + "name": "2.6 quattro MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25135, + "fields": { + "id_car_serie": 2892, + "name": "2.8 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25136, + "fields": { + "id_car_serie": 2892, + "name": "2.8 quattro AT (174 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25137, + "fields": { + "id_car_serie": 2892, + "name": "2.8 quattro MT (174 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25138, + "fields": { + "id_car_serie": 2892, + "name": "2.8 MT (174 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25141, + "fields": { + "id_car_serie": 2893, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25142, + "fields": { + "id_car_serie": 2893, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25147, + "fields": { + "id_car_serie": 2893, + "name": "2.3 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25150, + "fields": { + "id_car_serie": 2893, + "name": "2.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25151, + "fields": { + "id_car_serie": 2893, + "name": "2.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25152, + "fields": { + "id_car_serie": 2893, + "name": "2.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25165, + "fields": { + "id_car_serie": 2894, + "name": "2.1 Turbo AT (182 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25168, + "fields": { + "id_car_serie": 2894, + "name": "2.1 Quattro MT (182 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25169, + "fields": { + "id_car_serie": 2894, + "name": "2.1 Turbo MT (182 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25171, + "fields": { + "id_car_serie": 2894, + "name": "2.2 Turbo AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25174, + "fields": { + "id_car_serie": 2894, + "name": "2.2 Turbo AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25177, + "fields": { + "id_car_serie": 2894, + "name": "2.2 MT (138 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25178, + "fields": { + "id_car_serie": 2894, + "name": "2.2 Quattro MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25179, + "fields": { + "id_car_serie": 2894, + "name": "2.2 Turbo MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25181, + "fields": { + "id_car_serie": 2894, + "name": "2.2 Quattro MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25182, + "fields": { + "id_car_serie": 2894, + "name": "2.2 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25183, + "fields": { + "id_car_serie": 2894, + "name": "2.2 Quattro MT 20V (220 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25187, + "fields": { + "id_car_serie": 2895, + "name": "2.1 Quattro MT (182 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25192, + "fields": { + "id_car_serie": 2895, + "name": "2.2 Quattro MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25194, + "fields": { + "id_car_serie": 2895, + "name": "2.2 Quattro MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25195, + "fields": { + "id_car_serie": 2895, + "name": "2.2 Quattro MT 20V (220 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25200, + "fields": { + "id_car_serie": 2896, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25202, + "fields": { + "id_car_serie": 2896, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25203, + "fields": { + "id_car_serie": 2896, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25208, + "fields": { + "id_car_serie": 2896, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25209, + "fields": { + "id_car_serie": 2896, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25214, + "fields": { + "id_car_serie": 2896, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25218, + "fields": { + "id_car_serie": 2896, + "name": "2.3 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25220, + "fields": { + "id_car_serie": 2896, + "name": "2.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25221, + "fields": { + "id_car_serie": 2896, + "name": "2.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25222, + "fields": { + "id_car_serie": 2896, + "name": "2.6 MT quartto (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25223, + "fields": { + "id_car_serie": 2896, + "name": "2.8 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25224, + "fields": { + "id_car_serie": 2896, + "name": "2.8 MT (174 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25225, + "fields": { + "id_car_serie": 2896, + "name": "2.8 MT quattro (174 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25229, + "fields": { + "id_car_serie": 2897, + "name": "1.6 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25231, + "fields": { + "id_car_serie": 2897, + "name": "1.9 TD MT quattro (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25232, + "fields": { + "id_car_serie": 2897, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25238, + "fields": { + "id_car_serie": 2897, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25239, + "fields": { + "id_car_serie": 2897, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25240, + "fields": { + "id_car_serie": 2897, + "name": "2.0 MT quattro (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25248, + "fields": { + "id_car_serie": 2897, + "name": "2.3 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25249, + "fields": { + "id_car_serie": 2897, + "name": "2.3 MT quattro (133 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25251, + "fields": { + "id_car_serie": 2897, + "name": "2.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25252, + "fields": { + "id_car_serie": 2897, + "name": "2.6 MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25254, + "fields": { + "id_car_serie": 2897, + "name": "2.8 MT (174 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25255, + "fields": { + "id_car_serie": 2897, + "name": "2.8 MT quattro (174 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25256, + "fields": { + "id_car_serie": 2898, + "name": "1.6 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25257, + "fields": { + "id_car_serie": 2898, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25260, + "fields": { + "id_car_serie": 2898, + "name": "2.2 E MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25266, + "fields": { + "id_car_serie": 2898, + "name": "2.3 E MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25267, + "fields": { + "id_car_serie": 2898, + "name": "2.3 E quattro MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25270, + "fields": { + "id_car_serie": 2898, + "name": "2.3 E 20V MT (167 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25271, + "fields": { + "id_car_serie": 2898, + "name": "2.3 E 20V quattro MT (167 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25290, + "fields": { + "id_car_serie": 2901, + "name": "1.4 TFSI S tronic (122 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25292, + "fields": { + "id_car_serie": 2901, + "name": "1.4 TFSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25294, + "fields": { + "id_car_serie": 2901, + "name": "1.2 TFSI S tronic (105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25295, + "fields": { + "id_car_serie": 2901, + "name": "1.2 TFSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25296, + "fields": { + "id_car_serie": 2901, + "name": "1.8 TFSI S tronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25297, + "fields": { + "id_car_serie": 2901, + "name": "1.8 TFSI S tronic quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25298, + "fields": { + "id_car_serie": 2901, + "name": "1.8 TFSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25299, + "fields": { + "id_car_serie": 2901, + "name": "2.0 TDI S tronic (143 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25300, + "fields": { + "id_car_serie": 2901, + "name": "2.0 TDI S tronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25301, + "fields": { + "id_car_serie": 2901, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25302, + "fields": { + "id_car_serie": 2902, + "name": "1.4 TFSI S tronic (125 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25303, + "fields": { + "id_car_serie": 2902, + "name": "1.4 TFSI S tronic (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25304, + "fields": { + "id_car_serie": 2902, + "name": "1.4 TFSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25305, + "fields": { + "id_car_serie": 2902, + "name": "1.4 TFSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25306, + "fields": { + "id_car_serie": 2902, + "name": "1.8 TFSI S tronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25307, + "fields": { + "id_car_serie": 2902, + "name": "1.8 TFSI S tronic quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25308, + "fields": { + "id_car_serie": 2902, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25313, + "fields": { + "id_car_serie": 2903, + "name": "1.4 TFSI S tronic (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25316, + "fields": { + "id_car_serie": 2903, + "name": "1.4 TFSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25317, + "fields": { + "id_car_serie": 2903, + "name": "2.0 TDI S-tronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25318, + "fields": { + "id_car_serie": 2903, + "name": "1.6 TDI S tronic (105 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25319, + "fields": { + "id_car_serie": 2903, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25320, + "fields": { + "id_car_serie": 2903, + "name": "1.8 TFSI S tronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25321, + "fields": { + "id_car_serie": 2903, + "name": "1.8 TFSI S tronic quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25322, + "fields": { + "id_car_serie": 2903, + "name": "1.8 TFSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25323, + "fields": { + "id_car_serie": 2903, + "name": "2.0 TDI S tronic (143 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25326, + "fields": { + "id_car_serie": 2903, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25327, + "fields": { + "id_car_serie": 2903, + "name": "2.0 TDI MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25328, + "fields": { + "id_car_serie": 2903, + "name": "2.0 TDI MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25329, + "fields": { + "id_car_serie": 2904, + "name": "1.2 TFSI S tronic (105 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25330, + "fields": { + "id_car_serie": 2904, + "name": "1.2 TFSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25331, + "fields": { + "id_car_serie": 2904, + "name": "1.4 TFSI S tronic (122 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25333, + "fields": { + "id_car_serie": 2904, + "name": "1.4 TFSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25335, + "fields": { + "id_car_serie": 2904, + "name": "1.6 TDI S tronic (105 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25336, + "fields": { + "id_car_serie": 2904, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25338, + "fields": { + "id_car_serie": 2904, + "name": "1.8 TFSI S tronic quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25339, + "fields": { + "id_car_serie": 2904, + "name": "1.8 TFSI S tronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25340, + "fields": { + "id_car_serie": 2904, + "name": "1.8 TFSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25341, + "fields": { + "id_car_serie": 2904, + "name": "2.0 TDI S tronic (143 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25343, + "fields": { + "id_car_serie": 2904, + "name": "2.0 TDI S tronic quattro (184 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25344, + "fields": { + "id_car_serie": 2904, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25345, + "fields": { + "id_car_serie": 2904, + "name": "2.0 TDI MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25346, + "fields": { + "id_car_serie": 2904, + "name": "2.0 TDI MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25355, + "fields": { + "id_car_serie": 2906, + "name": "1.8 TFSI multitronic (120 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25356, + "fields": { + "id_car_serie": 2906, + "name": "1.8 TFSI multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25357, + "fields": { + "id_car_serie": 2906, + "name": "1.8 TFSI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25358, + "fields": { + "id_car_serie": 2906, + "name": "1.8 TFSI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25359, + "fields": { + "id_car_serie": 2906, + "name": "1.8 TFSI MT quattro (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25360, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TFSI S tronic quattro (211 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25361, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TFSI S tronic quattro (225 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25362, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TFSI multitronic (211 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25363, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TFSI multitronic (225 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25364, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TFSI MT (211 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25365, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TFSI MT quattro (211 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25366, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TFSI MT (225 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25367, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TFSI MT quattro (225 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25368, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TDI S tronic quattro (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25369, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TDI multitronic (143 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25370, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TDI multitronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25371, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TDI multitronic (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25373, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25374, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25375, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TDI MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25377, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TDI MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25378, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TDI MT quattro (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25379, + "fields": { + "id_car_serie": 2906, + "name": "3.0 TFSI S tronic quattro (272 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25380, + "fields": { + "id_car_serie": 2906, + "name": "3.0 TDI S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25381, + "fields": { + "id_car_serie": 2906, + "name": "3.0 TDI multitronic (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25382, + "fields": { + "id_car_serie": 2906, + "name": "3.0 TDI MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25383, + "fields": { + "id_car_serie": 2906, + "name": "3.0 TDI MT quattro (245 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25389, + "fields": { + "id_car_serie": 2907, + "name": "2.0 TFSI S tronic quattro (211 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25390, + "fields": { + "id_car_serie": 2907, + "name": "2.0 TFSI S tronic quattro (225 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25393, + "fields": { + "id_car_serie": 2907, + "name": "2.0 TFSI MT quattro (211 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25395, + "fields": { + "id_car_serie": 2907, + "name": "2.0 TFSI MT quattro (225 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25397, + "fields": { + "id_car_serie": 2907, + "name": "2.0 TDI S tronic quattro (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25403, + "fields": { + "id_car_serie": 2907, + "name": "2.0 TDI MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25406, + "fields": { + "id_car_serie": 2907, + "name": "2.0 TDI MT quattro (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25409, + "fields": { + "id_car_serie": 2907, + "name": "3.0 TDI S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25412, + "fields": { + "id_car_serie": 2907, + "name": "3.0 TDI clean diesel S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25413, + "fields": { + "id_car_serie": 2908, + "name": "1.8 TFSI multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25414, + "fields": { + "id_car_serie": 2908, + "name": "1.8 TFSI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25415, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TFSI S tronic quattro (211 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25416, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TFSI S tronic quattro (225 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25417, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TFSI multitronic (211 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25418, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TFSI multitronic (225 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25419, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TFSI MT quattro (211 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25420, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TFSI MT (211 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25421, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TFSI MT (225 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25422, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TFSI MT quattro (225 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25423, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TDI S tronic quattro (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25424, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TDI multitronic (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25425, + "fields": { + "id_car_serie": 2908, + "name": "1.8 TFSI MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25426, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TDI MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25427, + "fields": { + "id_car_serie": 2908, + "name": "3.0 TFSI S tronic quattro (272 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25428, + "fields": { + "id_car_serie": 2908, + "name": "3.0 TDI clean diesel S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25429, + "fields": { + "id_car_serie": 2908, + "name": "3.0 TDI multitronic (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25430, + "fields": { + "id_car_serie": 2908, + "name": "3.0 TDI MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25431, + "fields": { + "id_car_serie": 2908, + "name": "3.0 TDI MT quattro (245 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25453, + "fields": { + "id_car_serie": 2910, + "name": "1.8 TFSI multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25454, + "fields": { + "id_car_serie": 2910, + "name": "2.0 TFSI S tronic quattro (211 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25455, + "fields": { + "id_car_serie": 2910, + "name": "2.0 TFSI S tronic quattro (225 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25456, + "fields": { + "id_car_serie": 2910, + "name": "2.0 TFSI multitronic (211 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25457, + "fields": { + "id_car_serie": 2910, + "name": "2.0 TFSI multitronic (225 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25458, + "fields": { + "id_car_serie": 2910, + "name": "2.0 TFSI MT (211 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25459, + "fields": { + "id_car_serie": 2910, + "name": "2.0 TFSI MT (225 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25460, + "fields": { + "id_car_serie": 2910, + "name": "2.0 TDI multitronic (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25461, + "fields": { + "id_car_serie": 2910, + "name": "2.0 TDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25462, + "fields": { + "id_car_serie": 2910, + "name": "2.0 TDI MT quattro (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25463, + "fields": { + "id_car_serie": 2910, + "name": "2.0 TDI MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25464, + "fields": { + "id_car_serie": 2910, + "name": "3.0 TFSI S tronic quattro (272 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25465, + "fields": { + "id_car_serie": 2910, + "name": "3.0 TDI S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25466, + "fields": { + "id_car_serie": 2910, + "name": "3.0 TDI multitronic (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25471, + "fields": { + "id_car_serie": 2912, + "name": "2.0 TFSI multitronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25472, + "fields": { + "id_car_serie": 2912, + "name": "2.0 TFSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25473, + "fields": { + "id_car_serie": 2912, + "name": "2.0 TDI multitronic (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25474, + "fields": { + "id_car_serie": 2912, + "name": "2.0 TDI multitronic (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25475, + "fields": { + "id_car_serie": 2912, + "name": "2.0 TDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25476, + "fields": { + "id_car_serie": 2912, + "name": "2.0 TDI MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25477, + "fields": { + "id_car_serie": 2912, + "name": "2.0 TFSI Hybrid tiptronic (211 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25478, + "fields": { + "id_car_serie": 2912, + "name": "2.8 FSI S-tronic quattro (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25479, + "fields": { + "id_car_serie": 2912, + "name": "2.8 FSI multitronic (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25480, + "fields": { + "id_car_serie": 2912, + "name": "2.8 FSI MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25482, + "fields": { + "id_car_serie": 2912, + "name": "3.0 TFSI S-tronic quattro (300 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25483, + "fields": { + "id_car_serie": 2912, + "name": "3.0 TFSI S-tronic quattro (310 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25484, + "fields": { + "id_car_serie": 2912, + "name": "3.0 TDI S-tronic quattro (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25486, + "fields": { + "id_car_serie": 2912, + "name": "3.0 TDI tiptronic quattro (313 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25487, + "fields": { + "id_car_serie": 2912, + "name": "3.0 TDI multitronic (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25488, + "fields": { + "id_car_serie": 2912, + "name": "3.0 TDI MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25489, + "fields": { + "id_car_serie": 2913, + "name": "2.0 TFSI multitronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25490, + "fields": { + "id_car_serie": 2913, + "name": "2.0 TFSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25491, + "fields": { + "id_car_serie": 2913, + "name": "2.0 TDI multitronic (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25492, + "fields": { + "id_car_serie": 2913, + "name": "2.0 TDI multitronic (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25493, + "fields": { + "id_car_serie": 2913, + "name": "2.0 TDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25494, + "fields": { + "id_car_serie": 2913, + "name": "2.0 TDI MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25495, + "fields": { + "id_car_serie": 2913, + "name": "2.8 FSI S tronic quattro (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25496, + "fields": { + "id_car_serie": 2913, + "name": "2.8 FSI multitronic (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25497, + "fields": { + "id_car_serie": 2913, + "name": "2.8 FSI MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25498, + "fields": { + "id_car_serie": 2913, + "name": "3.0 TFSI S tronic quattro (300 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25499, + "fields": { + "id_car_serie": 2913, + "name": "3.0 TFSI S tronic quattro (310 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25500, + "fields": { + "id_car_serie": 2913, + "name": "3.0 TDI S-tronic quattro (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25501, + "fields": { + "id_car_serie": 2913, + "name": "3.0 TDI Euro 6 S-tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25502, + "fields": { + "id_car_serie": 2913, + "name": "3.0 TDI tiptronic quattro (313 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25503, + "fields": { + "id_car_serie": 2913, + "name": "3.0 TDI multitronic (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25504, + "fields": { + "id_car_serie": 2913, + "name": "3.0 TDI MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25506, + "fields": { + "id_car_serie": 2914, + "name": "3.0 TFSI tiptronic quattro (310 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25507, + "fields": { + "id_car_serie": 2914, + "name": "3.0 TDI tiptronic quattro (250 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25508, + "fields": { + "id_car_serie": 2914, + "name": "3.0 TDI L tiptronic quattro (258 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25509, + "fields": { + "id_car_serie": 2914, + "name": "4.0 TFSI tiptronic quattro (435 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25513, + "fields": { + "id_car_serie": 2915, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25516, + "fields": { + "id_car_serie": 2915, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25519, + "fields": { + "id_car_serie": 2915, + "name": "2.0 16 V MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25523, + "fields": { + "id_car_serie": 2915, + "name": "2.2 S2 quattro MT (230 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25525, + "fields": { + "id_car_serie": 2915, + "name": "2.3 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25528, + "fields": { + "id_car_serie": 2915, + "name": "2.3 E 20V AT (167 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25531, + "fields": { + "id_car_serie": 2915, + "name": "2.3 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25532, + "fields": { + "id_car_serie": 2915, + "name": "2.3 E quattro MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25535, + "fields": { + "id_car_serie": 2915, + "name": "2.3 E 20V MT (167 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25536, + "fields": { + "id_car_serie": 2915, + "name": "2.3 E 20V quattro MT (167 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25545, + "fields": { + "id_car_serie": 2916, + "name": "2.0 TFSI Tiptronic quattro (225 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25546, + "fields": { + "id_car_serie": 2916, + "name": "2.0 TFSI MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25547, + "fields": { + "id_car_serie": 2916, + "name": "2.0 TFSI MT quattro (225 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25549, + "fields": { + "id_car_serie": 2916, + "name": "2.0 TDI S tronic quattro (177 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25551, + "fields": { + "id_car_serie": 2916, + "name": "2.0 TDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25552, + "fields": { + "id_car_serie": 2916, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25553, + "fields": { + "id_car_serie": 2916, + "name": "2.0 TDI MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25555, + "fields": { + "id_car_serie": 2916, + "name": "2.0 TFSI Hybrid Tiptronic quattro (211 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25556, + "fields": { + "id_car_serie": 2916, + "name": "3.0 TFSI Tiptronic quattro (272 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25557, + "fields": { + "id_car_serie": 2916, + "name": "3.0 TDI S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25558, + "fields": { + "id_car_serie": 2916, + "name": "3.0 TDI clean diesel S tronic quattro (258 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25559, + "fields": { + "id_car_serie": 2917, + "name": "V10 S tronic quattro plus (619 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25560, + "fields": { + "id_car_serie": 2917, + "name": "V10 quattro S tronic (548 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25569, + "fields": { + "id_car_serie": 2919, + "name": "4.2 FSI S tronic quattro (450 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25570, + "fields": { + "id_car_serie": 2920, + "name": "4.2 FSI S tronic quattro (450 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25571, + "fields": { + "id_car_serie": 2921, + "name": "4.2 FSI S tronic quattro (450 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25572, + "fields": { + "id_car_serie": 2922, + "name": "4.0 TFSI quattro Tiptronic (560 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25573, + "fields": { + "id_car_serie": 2923, + "name": "2.0 TFSI MT quattro (231 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25574, + "fields": { + "id_car_serie": 2924, + "name": "2.0 TFSI MT quattro (231 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25575, + "fields": { + "id_car_serie": 2925, + "name": "2.2i Turbo 4WD MT (230 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25578, + "fields": { + "id_car_serie": 2927, + "name": "2.0 TFSI MT quattro (300 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25579, + "fields": { + "id_car_serie": 2928, + "name": "2.0 TFSI S tronic quattro (300 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25581, + "fields": { + "id_car_serie": 2929, + "name": "2.0 TFSI S tronic quattro (300 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25582, + "fields": { + "id_car_serie": 2929, + "name": "2.0 TFSI MT quattro (300 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25583, + "fields": { + "id_car_serie": 2930, + "name": "2.0 TFSI S tronic quattro (300 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25584, + "fields": { + "id_car_serie": 2930, + "name": "2.0 TFSI MT quattro (300 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25587, + "fields": { + "id_car_serie": 2933, + "name": "3.0 TFSI S tronic quattro (333 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25588, + "fields": { + "id_car_serie": 2934, + "name": "3.0 TFSI S tronic quattro (333 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25589, + "fields": { + "id_car_serie": 2935, + "name": "3.0 TFSI quattro S tronic (333 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25590, + "fields": { + "id_car_serie": 2936, + "name": "4.0 TFSI quattro S tronic (420 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25591, + "fields": { + "id_car_serie": 2937, + "name": "4.0 TFSI quattro S tronic (420 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25592, + "fields": { + "id_car_serie": 2938, + "name": "4.0 TFSI Quattro Tiptronic (520 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 25594, + "fields": { + "id_car_serie": 2939, + "name": "1.8 TFSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25601, + "fields": { + "id_car_serie": 2939, + "name": "2.0 TFSI MT (230 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25603, + "fields": { + "id_car_serie": 2939, + "name": "2.0 TDI MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25606, + "fields": { + "id_car_serie": 2940, + "name": "1.8 TFSI S tronic (160 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25607, + "fields": { + "id_car_serie": 2940, + "name": "1.8 TFSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25609, + "fields": { + "id_car_serie": 2940, + "name": "2.0 TFSI quattro S tronic (211 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25610, + "fields": { + "id_car_serie": 2940, + "name": "2.0 TFSI S tronic (211 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25613, + "fields": { + "id_car_serie": 2940, + "name": "2.0 TFSI MT (211 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25619, + "fields": { + "id_car_serie": 2941, + "name": "1.8 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25621, + "fields": { + "id_car_serie": 2941, + "name": "1.8 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25631, + "fields": { + "id_car_serie": 2944, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25637, + "fields": { + "id_car_serie": 2945, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25639, + "fields": { + "id_car_serie": 2945, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25640, + "fields": { + "id_car_serie": 2945, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25645, + "fields": { + "id_car_serie": 2945, + "name": "2.0 T MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25646, + "fields": { + "id_car_serie": 2946, + "name": "1.8 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25647, + "fields": { + "id_car_serie": 2946, + "name": "1.8 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25648, + "fields": { + "id_car_serie": 2946, + "name": "2.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25649, + "fields": { + "id_car_serie": 2946, + "name": "2.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25653, + "fields": { + "id_car_serie": 47548, + "name": "R 6.8 AT (389 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25654, + "fields": { + "id_car_serie": 47548, + "name": "R 6.8 AT (406 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25655, + "fields": { + "id_car_serie": 47548, + "name": "R 6.8 AT (408 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25656, + "fields": { + "id_car_serie": 47548, + "name": "R 6.8 AT (426 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25657, + "fields": { + "id_car_serie": 47547, + "name": "6.8 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25658, + "fields": { + "id_car_serie": 2952, + "name": "4.0 AT (507 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25659, + "fields": { + "id_car_serie": 2952, + "name": "S 4.0 AT (528 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25952, + "fields": { + "id_car_serie": 2976, + "name": "3.0i AT (231 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25953, + "fields": { + "id_car_serie": 2976, + "name": "3.0i MT (231 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25956, + "fields": { + "id_car_serie": 2977, + "name": "1.9i MT (118 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25957, + "fields": { + "id_car_serie": 2977, + "name": "2.2i AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25960, + "fields": { + "id_car_serie": 2977, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 25966, + "fields": { + "id_car_serie": 2978, + "name": "sDrive20i AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26002, + "fields": { + "id_car_serie": 2988, + "name": "2.0 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26003, + "fields": { + "id_car_serie": 2989, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26008, + "fields": { + "id_car_serie": 2990, + "name": "5.9 AT (345 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26009, + "fields": { + "id_car_serie": 2990, + "name": "5.9 AT (394 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26011, + "fields": { + "id_car_serie": 2992, + "name": "8.0 DSG (1001 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26012, + "fields": { + "id_car_serie": 2993, + "name": "3.1 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26013, + "fields": { + "id_car_serie": 2993, + "name": "3.1 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26014, + "fields": { + "id_car_serie": 2994, + "name": "3.8 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26016, + "fields": { + "id_car_serie": 2995, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26017, + "fields": { + "id_car_serie": 2996, + "name": "1.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26018, + "fields": { + "id_car_serie": 2996, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26020, + "fields": { + "id_car_serie": 2997, + "name": "3.0 AT (172 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26025, + "fields": { + "id_car_serie": 2999, + "name": "3.8 AT (208 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26026, + "fields": { + "id_car_serie": 3000, + "name": "2.8 AT (201 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26027, + "fields": { + "id_car_serie": 3000, + "name": "3.6 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26028, + "fields": { + "id_car_serie": 3001, + "name": "3.8 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26029, + "fields": { + "id_car_serie": 3002, + "name": "3.8 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26031, + "fields": { + "id_car_serie": 3003, + "name": "2.0 AT (124 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26033, + "fields": { + "id_car_serie": 3004, + "name": "3.8 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26034, + "fields": { + "id_car_serie": 3004, + "name": "3.8 AT (225 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26035, + "fields": { + "id_car_serie": 3004, + "name": "3.8 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26046, + "fields": { + "id_car_serie": 3011, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26047, + "fields": { + "id_car_serie": 3011, + "name": "1.8 CVT (121 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26048, + "fields": { + "id_car_serie": 3011, + "name": "1.8 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26049, + "fields": { + "id_car_serie": 3012, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26050, + "fields": { + "id_car_serie": 3012, + "name": "1.8 CVT (121 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26051, + "fields": { + "id_car_serie": 3012, + "name": "1.8 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26054, + "fields": { + "id_car_serie": 3013, + "name": "2.0 MT (276 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26057, + "fields": { + "id_car_serie": 3014, + "name": "2.0 AT RWD (226 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26058, + "fields": { + "id_car_serie": 3014, + "name": "2.0 AT AWD (276 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26063, + "fields": { + "id_car_serie": 3015, + "name": "2.0 AT RWD (276 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26064, + "fields": { + "id_car_serie": 3015, + "name": "2.0 AT AWD (276 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26065, + "fields": { + "id_car_serie": 3015, + "name": "3.6 AT AWD (321 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26066, + "fields": { + "id_car_serie": 3015, + "name": "3.6 AT RWD (321 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26067, + "fields": { + "id_car_serie": 3015, + "name": "3.6 AT RWD (426 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26075, + "fields": { + "id_car_serie": 3018, + "name": "6.2 V8 AT 4WD (426 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26076, + "fields": { + "id_car_serie": 3018, + "name": "6.2 V8 AT 4WD ESV (426 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26077, + "fields": { + "id_car_serie": 3019, + "name": "5.7 AT (188 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26078, + "fields": { + "id_car_serie": 3019, + "name": "5.7 AT (264 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26079, + "fields": { + "id_car_serie": 3020, + "name": "4.6 i AT (279 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26082, + "fields": { + "id_car_serie": 3021, + "name": "7.7 AT (380 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26089, + "fields": { + "id_car_serie": 3023, + "name": "5.7 MT (440 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26090, + "fields": { + "id_car_serie": 3024, + "name": "5.7 MT (440 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26103, + "fields": { + "id_car_serie": 3027, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26104, + "fields": { + "id_car_serie": 3028, + "name": "1.8 Flexfuel MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26105, + "fields": { + "id_car_serie": 3028, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26106, + "fields": { + "id_car_serie": 3028, + "name": "2.0 Flexpower MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26107, + "fields": { + "id_car_serie": 3028, + "name": "2.0 Flexpower MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26108, + "fields": { + "id_car_serie": 3029, + "name": "1.8 Flexfuel MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26109, + "fields": { + "id_car_serie": 3029, + "name": "2.0 Flexpower MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26110, + "fields": { + "id_car_serie": 3029, + "name": "2.0 Flexpower MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26111, + "fields": { + "id_car_serie": 3029, + "name": "2.0 GSi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26112, + "fields": { + "id_car_serie": 3029, + "name": "2.0 Flexpower MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26113, + "fields": { + "id_car_serie": 3030, + "name": "5.3 FlexFuel 4AT (320 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26114, + "fields": { + "id_car_serie": 3030, + "name": "5.3 FlexFuel 6AT (320 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26115, + "fields": { + "id_car_serie": 3030, + "name": "6.0 6AT 4WD (366 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26116, + "fields": { + "id_car_serie": 3030, + "name": "6.0 6AT (366 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26117, + "fields": { + "id_car_serie": 3031, + "name": "1.2 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26118, + "fields": { + "id_car_serie": 3031, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26119, + "fields": { + "id_car_serie": 3031, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26120, + "fields": { + "id_car_serie": 3031, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26121, + "fields": { + "id_car_serie": 3031, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26128, + "fields": { + "id_car_serie": 3032, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26146, + "fields": { + "id_car_serie": 3036, + "name": "3.6 V6 AT (328 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26147, + "fields": { + "id_car_serie": 3036, + "name": "3.6 V6 MT (328 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26148, + "fields": { + "id_car_serie": 3036, + "name": "6.2 V8 AT (405 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26149, + "fields": { + "id_car_serie": 3036, + "name": "6.2 V8 MT (432 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26150, + "fields": { + "id_car_serie": 3036, + "name": "7.0 V8 MT (511 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26156, + "fields": { + "id_car_serie": 3038, + "name": "6.0 AT (360 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26157, + "fields": { + "id_car_serie": 3039, + "name": "2.2 D AT AWD (7 places) (184 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26158, + "fields": { + "id_car_serie": 3039, + "name": "2.2 D MT (5 places) (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26159, + "fields": { + "id_car_serie": 3039, + "name": "2.4 AT AWD (7 places) (167 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26160, + "fields": { + "id_car_serie": 3039, + "name": "2.4 AT AWD (5 places) (167 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26161, + "fields": { + "id_car_serie": 3039, + "name": "2.4 MT (7 places) (167 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26162, + "fields": { + "id_car_serie": 3039, + "name": "2.4 MT AWD (5 places) (167 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26163, + "fields": { + "id_car_serie": 3039, + "name": "2.4 MT AWD (7 places) (167 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26165, + "fields": { + "id_car_serie": 3040, + "name": "2.2 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26167, + "fields": { + "id_car_serie": 3040, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26169, + "fields": { + "id_car_serie": 3040, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26170, + "fields": { + "id_car_serie": 3040, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26172, + "fields": { + "id_car_serie": 3041, + "name": "2.2 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26174, + "fields": { + "id_car_serie": 3041, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26175, + "fields": { + "id_car_serie": 3041, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26176, + "fields": { + "id_car_serie": 3041, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26177, + "fields": { + "id_car_serie": 3041, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26178, + "fields": { + "id_car_serie": 3042, + "name": "2.2 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26180, + "fields": { + "id_car_serie": 3042, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26181, + "fields": { + "id_car_serie": 3042, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26182, + "fields": { + "id_car_serie": 3043, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26183, + "fields": { + "id_car_serie": 3043, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26184, + "fields": { + "id_car_serie": 3044, + "name": "2.8 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26185, + "fields": { + "id_car_serie": 3044, + "name": "2.8 AT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26186, + "fields": { + "id_car_serie": 3044, + "name": "2.8 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26187, + "fields": { + "id_car_serie": 3044, + "name": "2.8 MT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26188, + "fields": { + "id_car_serie": 3044, + "name": "3.5 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26189, + "fields": { + "id_car_serie": 3044, + "name": "3.5 AT AWD (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26190, + "fields": { + "id_car_serie": 3044, + "name": "3.5 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26191, + "fields": { + "id_car_serie": 3044, + "name": "3.5 MT AWD (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26192, + "fields": { + "id_car_serie": 3044, + "name": "3.7 AT (242 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26193, + "fields": { + "id_car_serie": 3044, + "name": "3.7 AT AWD (242 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26194, + "fields": { + "id_car_serie": 3044, + "name": "3.7 MT (242 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26195, + "fields": { + "id_car_serie": 3044, + "name": "3.7 MT AWD (242 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26196, + "fields": { + "id_car_serie": 3044, + "name": "5.3 AT (300 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26198, + "fields": { + "id_car_serie": 3044, + "name": "5.3 MT (300 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26200, + "fields": { + "id_car_serie": 3574, + "name": "6.5 AMT AWD (700 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26201, + "fields": { + "id_car_serie": 3586, + "name": "1.6 MT E (75 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26202, + "fields": { + "id_car_serie": 3586, + "name": "1.8 MT LE (113 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26205, + "fields": { + "id_car_serie": 3586, + "name": "1.9 TDS MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26206, + "fields": { + "id_car_serie": 3586, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26207, + "fields": { + "id_car_serie": 3586, + "name": "2.0 MT HF Integrale AWD (169 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26208, + "fields": { + "id_car_serie": 3587, + "name": "1.6 MT E (75 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26209, + "fields": { + "id_car_serie": 3587, + "name": "1.6 MT E (78 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26210, + "fields": { + "id_car_serie": 3587, + "name": "1.6 MT LE (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26211, + "fields": { + "id_car_serie": 3587, + "name": "1.8 MT LE (113 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26214, + "fields": { + "id_car_serie": 3587, + "name": "1.8 MT GT (131 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26215, + "fields": { + "id_car_serie": 3587, + "name": "1.9 TDS MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26217, + "fields": { + "id_car_serie": 3587, + "name": "2.0 MT E (113 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26218, + "fields": { + "id_car_serie": 3587, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26219, + "fields": { + "id_car_serie": 3587, + "name": "2.0 MT Turbo E (162 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26220, + "fields": { + "id_car_serie": 3587, + "name": "2.0 MT HF Integrale AWD (169 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26221, + "fields": { + "id_car_serie": 3588, + "name": "1.4 T-Jet MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26222, + "fields": { + "id_car_serie": 3588, + "name": "1.4 T-Jet MultiAir MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26223, + "fields": { + "id_car_serie": 3588, + "name": "1.4 T-Jet MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26224, + "fields": { + "id_car_serie": 3588, + "name": "1.6 JTD AT Multijet DFN DPF (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26226, + "fields": { + "id_car_serie": 3588, + "name": "1.6 JTD MT Multijet DPF (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26228, + "fields": { + "id_car_serie": 3588, + "name": "1.9 Twinturbo Multijet MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26229, + "fields": { + "id_car_serie": 3588, + "name": "2.0 JTD MT Multijet DPF (165 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26230, + "fields": { + "id_car_serie": 3589, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26231, + "fields": { + "id_car_serie": 3589, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26232, + "fields": { + "id_car_serie": 3589, + "name": "2.5 i AT (138 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26234, + "fields": { + "id_car_serie": 3589, + "name": "2.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26235, + "fields": { + "id_car_serie": 3589, + "name": "2.5 i MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26236, + "fields": { + "id_car_serie": 3590, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26237, + "fields": { + "id_car_serie": 3590, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26238, + "fields": { + "id_car_serie": 3590, + "name": "2.5 AT (138 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26240, + "fields": { + "id_car_serie": 3590, + "name": "2.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26243, + "fields": { + "id_car_serie": 3591, + "name": "2.0 MT Turbo (205 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26244, + "fields": { + "id_car_serie": 3591, + "name": "2.0 MT Turbo (220 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26245, + "fields": { + "id_car_serie": 3591, + "name": "2.4 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26247, + "fields": { + "id_car_serie": 3592, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26248, + "fields": { + "id_car_serie": 3592, + "name": "2.0 MT Turbo (220 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26249, + "fields": { + "id_car_serie": 3592, + "name": "2.4 TD MT (124 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26250, + "fields": { + "id_car_serie": 3592, + "name": "2.4 JTD MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26251, + "fields": { + "id_car_serie": 3592, + "name": "2.4 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26252, + "fields": { + "id_car_serie": 3592, + "name": "2.4 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26253, + "fields": { + "id_car_serie": 3592, + "name": "3.0 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26254, + "fields": { + "id_car_serie": 3593, + "name": "2.0 AT LE (146 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26255, + "fields": { + "id_car_serie": 3593, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26256, + "fields": { + "id_car_serie": 3593, + "name": "2.0 MT LE (146 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26257, + "fields": { + "id_car_serie": 3593, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26258, + "fields": { + "id_car_serie": 3593, + "name": "2.0 MT Turbo (220 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26259, + "fields": { + "id_car_serie": 3593, + "name": "2.4 TD MT (124 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26260, + "fields": { + "id_car_serie": 3593, + "name": "2.4 JTD MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26261, + "fields": { + "id_car_serie": 3593, + "name": "2.4 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26262, + "fields": { + "id_car_serie": 3593, + "name": "2.4 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26263, + "fields": { + "id_car_serie": 3593, + "name": "3.0 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26264, + "fields": { + "id_car_serie": 3594, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26266, + "fields": { + "id_car_serie": 3594, + "name": "1.9 TD MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26267, + "fields": { + "id_car_serie": 3594, + "name": "1.9 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26268, + "fields": { + "id_car_serie": 3594, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26269, + "fields": { + "id_car_serie": 3594, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26270, + "fields": { + "id_car_serie": 3594, + "name": "2.4 TD MT (138 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26271, + "fields": { + "id_car_serie": 3594, + "name": "2.4 TD MT (148 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26272, + "fields": { + "id_car_serie": 3595, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26274, + "fields": { + "id_car_serie": 3595, + "name": "1.9 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26275, + "fields": { + "id_car_serie": 3595, + "name": "1.9 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26276, + "fields": { + "id_car_serie": 3595, + "name": "2.0 AT (154 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26277, + "fields": { + "id_car_serie": 3595, + "name": "2.0 MT (154 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26278, + "fields": { + "id_car_serie": 3595, + "name": "2.4 TD MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26279, + "fields": { + "id_car_serie": 3595, + "name": "2.4 TD MT (148 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26280, + "fields": { + "id_car_serie": 3596, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26281, + "fields": { + "id_car_serie": 3596, + "name": "3.0 AT (239 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26283, + "fields": { + "id_car_serie": 3598, + "name": "2.4 TD MT (121 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26308, + "fields": { + "id_car_serie": 3628, + "name": "2.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26319, + "fields": { + "id_car_serie": 3632, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26320, + "fields": { + "id_car_serie": 3632, + "name": "1.5 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26322, + "fields": { + "id_car_serie": 3684, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26323, + "fields": { + "id_car_serie": 3684, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26324, + "fields": { + "id_car_serie": 3684, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26325, + "fields": { + "id_car_serie": 3684, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26326, + "fields": { + "id_car_serie": 3684, + "name": "2.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26327, + "fields": { + "id_car_serie": 3684, + "name": "2.2 AT (127 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26328, + "fields": { + "id_car_serie": 3684, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26329, + "fields": { + "id_car_serie": 3684, + "name": "2.2 MT (127 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26330, + "fields": { + "id_car_serie": 3684, + "name": "3.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26331, + "fields": { + "id_car_serie": 3684, + "name": "3.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26336, + "fields": { + "id_car_serie": 3686, + "name": "2.0 MZR 6MT (167 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26339, + "fields": { + "id_car_serie": 4481, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26340, + "fields": { + "id_car_serie": 4481, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26341, + "fields": { + "id_car_serie": 4481, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26342, + "fields": { + "id_car_serie": 4481, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26343, + "fields": { + "id_car_serie": 4481, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26344, + "fields": { + "id_car_serie": 4482, + "name": "4.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26345, + "fields": { + "id_car_serie": 4483, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26346, + "fields": { + "id_car_serie": 4483, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26347, + "fields": { + "id_car_serie": 4483, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26348, + "fields": { + "id_car_serie": 4483, + "name": "1.9 DCI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26349, + "fields": { + "id_car_serie": 4483, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26350, + "fields": { + "id_car_serie": 4483, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26351, + "fields": { + "id_car_serie": 4483, + "name": "2.2 DTI MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26352, + "fields": { + "id_car_serie": 4483, + "name": "2.2 DCI MT (138 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26353, + "fields": { + "id_car_serie": 4483, + "name": "2.5 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26354, + "fields": { + "id_car_serie": 4484, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26355, + "fields": { + "id_car_serie": 4484, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26356, + "fields": { + "id_car_serie": 4484, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26357, + "fields": { + "id_car_serie": 4484, + "name": "1.9 dCi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26358, + "fields": { + "id_car_serie": 4484, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26359, + "fields": { + "id_car_serie": 4484, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26360, + "fields": { + "id_car_serie": 4484, + "name": "2.2 DTI MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26361, + "fields": { + "id_car_serie": 4484, + "name": "2.2 dCi MT (138 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26362, + "fields": { + "id_car_serie": 4484, + "name": "2.5 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26364, + "fields": { + "id_car_serie": 4485, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26365, + "fields": { + "id_car_serie": 4485, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26367, + "fields": { + "id_car_serie": 4485, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26368, + "fields": { + "id_car_serie": 4485, + "name": "1.9 dCi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26370, + "fields": { + "id_car_serie": 4485, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26372, + "fields": { + "id_car_serie": 4485, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26374, + "fields": { + "id_car_serie": 4485, + "name": "2.2 DTI MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26375, + "fields": { + "id_car_serie": 4485, + "name": "2.2 dCi MT (138 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26376, + "fields": { + "id_car_serie": 4485, + "name": "2.5 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26377, + "fields": { + "id_car_serie": 4486, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26378, + "fields": { + "id_car_serie": 4486, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26379, + "fields": { + "id_car_serie": 4486, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26380, + "fields": { + "id_car_serie": 4486, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26382, + "fields": { + "id_car_serie": 4486, + "name": "1.8 GTI AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26383, + "fields": { + "id_car_serie": 4486, + "name": "1.8 GTI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26384, + "fields": { + "id_car_serie": 4486, + "name": "2.0 D AT (76 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26385, + "fields": { + "id_car_serie": 4486, + "name": "2.0 D MT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26386, + "fields": { + "id_car_serie": 4487, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26387, + "fields": { + "id_car_serie": 4487, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26388, + "fields": { + "id_car_serie": 4488, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26389, + "fields": { + "id_car_serie": 4488, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26390, + "fields": { + "id_car_serie": 4488, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26391, + "fields": { + "id_car_serie": 4488, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26395, + "fields": { + "id_car_serie": 4488, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26396, + "fields": { + "id_car_serie": 4488, + "name": "1.8 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26397, + "fields": { + "id_car_serie": 4489, + "name": "1.2 DIG-T MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26398, + "fields": { + "id_car_serie": 4489, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26399, + "fields": { + "id_car_serie": 4489, + "name": "1.6 dCi CVT (130 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26400, + "fields": { + "id_car_serie": 4489, + "name": "1.6 dCi MT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26401, + "fields": { + "id_car_serie": 4489, + "name": "1.6 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26402, + "fields": { + "id_car_serie": 4489, + "name": "2.0 CVT (144 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26403, + "fields": { + "id_car_serie": 4489, + "name": "2.0 CVT AWD (144 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26404, + "fields": { + "id_car_serie": 4489, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26405, + "fields": { + "id_car_serie": 4490, + "name": "3.5 CVT (260 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26408, + "fields": { + "id_car_serie": 4492, + "name": "3.0 D T 4WD AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26412, + "fields": { + "id_car_serie": 4492, + "name": "4.8 4WD AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26413, + "fields": { + "id_car_serie": 4493, + "name": "2.8 D T 4WD AT (129 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26414, + "fields": { + "id_car_serie": 4493, + "name": "2.8 D T 4WD MT (129 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26419, + "fields": { + "id_car_serie": 4496, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26420, + "fields": { + "id_car_serie": 4496, + "name": "2.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26421, + "fields": { + "id_car_serie": 4496, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26429, + "fields": { + "id_car_serie": 4499, + "name": "2.5 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26430, + "fields": { + "id_car_serie": 4499, + "name": "2.5 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26431, + "fields": { + "id_car_serie": 4499, + "name": "2.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26432, + "fields": { + "id_car_serie": 4499, + "name": "3.0 MT (260 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26440, + "fields": { + "id_car_serie": 4501, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26442, + "fields": { + "id_car_serie": 4501, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26443, + "fields": { + "id_car_serie": 4502, + "name": "2.5 Xtronic (173 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26445, + "fields": { + "id_car_serie": 4503, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26446, + "fields": { + "id_car_serie": 4503, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26448, + "fields": { + "id_car_serie": 4504, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26449, + "fields": { + "id_car_serie": 4504, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26459, + "fields": { + "id_car_serie": 4508, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26460, + "fields": { + "id_car_serie": 4508, + "name": "1.6 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26461, + "fields": { + "id_car_serie": 4508, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26462, + "fields": { + "id_car_serie": 4509, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26463, + "fields": { + "id_car_serie": 4509, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26464, + "fields": { + "id_car_serie": 4509, + "name": "1.8 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26466, + "fields": { + "id_car_serie": 4510, + "name": "4.0 AT (265 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26467, + "fields": { + "id_car_serie": 4510, + "name": "4.0 MT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26468, + "fields": { + "id_car_serie": 4511, + "name": "2.0 CVT AWD (141 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26469, + "fields": { + "id_car_serie": 4511, + "name": "2.0 MT AWD (141 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26470, + "fields": { + "id_car_serie": 4511, + "name": "2.0 TD AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26471, + "fields": { + "id_car_serie": 4511, + "name": "2.0 TD MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26472, + "fields": { + "id_car_serie": 4511, + "name": "2.0 TD MT AWD (173 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26473, + "fields": { + "id_car_serie": 4511, + "name": "2.5 CVT AWD (169 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26475, + "fields": { + "id_car_serie": 4512, + "name": "2.0 AT RWD (160 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26476, + "fields": { + "id_car_serie": 4512, + "name": "2.0 AT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26477, + "fields": { + "id_car_serie": 4512, + "name": "2.5 AT AWD (196 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26478, + "fields": { + "id_car_serie": 4512, + "name": "2.5 AT RWD (200 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26479, + "fields": { + "id_car_serie": 4512, + "name": "2.5 T AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26480, + "fields": { + "id_car_serie": 4513, + "name": "2.0 AT RWD (160 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26481, + "fields": { + "id_car_serie": 4513, + "name": "2.0 AT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26483, + "fields": { + "id_car_serie": 4513, + "name": "2.5 AT RWD (200 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26484, + "fields": { + "id_car_serie": 4513, + "name": "2.5 AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26485, + "fields": { + "id_car_serie": 4513, + "name": "2.5 T AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26486, + "fields": { + "id_car_serie": 4513, + "name": "2.5 T MT (280 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26487, + "fields": { + "id_car_serie": 4514, + "name": "2.5 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26488, + "fields": { + "id_car_serie": 4514, + "name": "2.5 AT 4WD (203 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26489, + "fields": { + "id_car_serie": 4514, + "name": "3.5 AT (318 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26496, + "fields": { + "id_car_serie": 4516, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26499, + "fields": { + "id_car_serie": 4518, + "name": "1.5 MT Overdrive (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26500, + "fields": { + "id_car_serie": 4519, + "name": "1.5 AT Overdrive (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26501, + "fields": { + "id_car_serie": 4519, + "name": "1.5 MT Overdrive (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26502, + "fields": { + "id_car_serie": 4520, + "name": "1.0 CVT (69 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26503, + "fields": { + "id_car_serie": 4520, + "name": "1.0 CVT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26504, + "fields": { + "id_car_serie": 4520, + "name": "1.3 CVT (95 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26507, + "fields": { + "id_car_serie": 4522, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26509, + "fields": { + "id_car_serie": 4523, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26510, + "fields": { + "id_car_serie": 4523, + "name": "1.8 CVT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26512, + "fields": { + "id_car_serie": 4523, + "name": "1.8 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26514, + "fields": { + "id_car_serie": 4523, + "name": "2.0 CVT (158 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26515, + "fields": { + "id_car_serie": 4524, + "name": "2.4 AT (168 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26517, + "fields": { + "id_car_serie": 4524, + "name": "3.5 AT 8seat (275 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26520, + "fields": { + "id_car_serie": 4526, + "name": "1.3 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26521, + "fields": { + "id_car_serie": 4526, + "name": "1.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26522, + "fields": { + "id_car_serie": 4526, + "name": "1.4 D-4D CVT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26523, + "fields": { + "id_car_serie": 4526, + "name": "1.4 D-4D MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26524, + "fields": { + "id_car_serie": 4527, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26525, + "fields": { + "id_car_serie": 4527, + "name": "1.5 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26537, + "fields": { + "id_car_serie": 4529, + "name": "2.2 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26538, + "fields": { + "id_car_serie": 4529, + "name": "3.0 AT (188 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26539, + "fields": { + "id_car_serie": 4529, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26540, + "fields": { + "id_car_serie": 4530, + "name": "3.0 AT (188 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26541, + "fields": { + "id_car_serie": 4531, + "name": "2.2 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26542, + "fields": { + "id_car_serie": 4531, + "name": "3.0 AT (188 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26543, + "fields": { + "id_car_serie": 4532, + "name": "4.6 AT (310 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26544, + "fields": { + "id_car_serie": 4532, + "name": "4.6 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26547, + "fields": { + "id_car_serie": 4532, + "name": "4.7 AT (276 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26548, + "fields": { + "id_car_serie": 4532, + "name": "4.7 AT 4WD (276 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26551, + "fields": { + "id_car_serie": 4532, + "name": "5.7 AT (381 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26552, + "fields": { + "id_car_serie": 4532, + "name": "5.7 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26554, + "fields": { + "id_car_serie": 4533, + "name": "3.5 AT (266 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26556, + "fields": { + "id_car_serie": 4534, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26557, + "fields": { + "id_car_serie": 4534, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26558, + "fields": { + "id_car_serie": 4534, + "name": "2.0 Powershift (145 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26559, + "fields": { + "id_car_serie": 4534, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26560, + "fields": { + "id_car_serie": 4534, + "name": "2.4 Geartronic (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26563, + "fields": { + "id_car_serie": 4534, + "name": "2.4 D5 Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26566, + "fields": { + "id_car_serie": 4535, + "name": "1.6 T3 Turbo Powershift (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26567, + "fields": { + "id_car_serie": 4535, + "name": "2.0 T4 Turbo AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26568, + "fields": { + "id_car_serie": 4535, + "name": "1.6 T3 Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26569, + "fields": { + "id_car_serie": 4535, + "name": "1.6 T4 Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26570, + "fields": { + "id_car_serie": 4535, + "name": "1.6 D2 Turbo Powershift (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26571, + "fields": { + "id_car_serie": 4535, + "name": "1.6 D2 Turbo MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26577, + "fields": { + "id_car_serie": 4535, + "name": "2.0 D4 Turbo Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26579, + "fields": { + "id_car_serie": 4535, + "name": "2.0 D3 Turbo MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26580, + "fields": { + "id_car_serie": 4535, + "name": "2.0 D4 Turbo MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26582, + "fields": { + "id_car_serie": 4535, + "name": "2.4 D5 Turbo Geartronic (205 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26583, + "fields": { + "id_car_serie": 4535, + "name": "2.4 D5 Turbo Geartronic AWD (205 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26584, + "fields": { + "id_car_serie": 4535, + "name": "2.4 D5 Turbo Geartronic (215 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26585, + "fields": { + "id_car_serie": 4535, + "name": "2.4 D5 Turbo Geartronic AWD (215 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26586, + "fields": { + "id_car_serie": 4535, + "name": "2.4 D5 Turbo MT (205 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26587, + "fields": { + "id_car_serie": 4535, + "name": "2.4 D5 Turbo MT (215 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26588, + "fields": { + "id_car_serie": 4535, + "name": "2.5 T5 Turbo Geartronic (249 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26590, + "fields": { + "id_car_serie": 4535, + "name": "3.0 T6 Turbo Geartronic AWD (304 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26591, + "fields": { + "id_car_serie": 4536, + "name": "1.6 T4F Turbo Geartronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26592, + "fields": { + "id_car_serie": 4536, + "name": "1.6 T4 Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26593, + "fields": { + "id_car_serie": 4536, + "name": "1.6 D2 Turbo MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26594, + "fields": { + "id_car_serie": 4536, + "name": "2.0 Turbo Geartronic (203 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26597, + "fields": { + "id_car_serie": 4536, + "name": "2.0 Turbo MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26598, + "fields": { + "id_car_serie": 4536, + "name": "2.0 TD MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26600, + "fields": { + "id_car_serie": 4536, + "name": "2.0 D4 Turbo Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26601, + "fields": { + "id_car_serie": 4536, + "name": "2.0 D3 Turbo MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26602, + "fields": { + "id_car_serie": 4536, + "name": "2.0 D4 Turbo MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26603, + "fields": { + "id_car_serie": 4536, + "name": "2.4 TD AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26604, + "fields": { + "id_car_serie": 4536, + "name": "2.4 D5 Biturbo Geartronic AWD (215 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26605, + "fields": { + "id_car_serie": 4536, + "name": "2.4 D5 Biturbo Geartronic (215 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26606, + "fields": { + "id_car_serie": 4536, + "name": "2.4 TD MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26607, + "fields": { + "id_car_serie": 4536, + "name": "2.4 D5 Biturbo MT (215 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26608, + "fields": { + "id_car_serie": 4536, + "name": "2.5 Turbo Geartronic (231 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26609, + "fields": { + "id_car_serie": 4536, + "name": "2.5 T5 Turbo Geartronic (249 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26610, + "fields": { + "id_car_serie": 4536, + "name": "2.5 Turbo MT (231 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26611, + "fields": { + "id_car_serie": 4536, + "name": "3.0 T6 Turbo Geartronic AWD (304 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26614, + "fields": { + "id_car_serie": 4537, + "name": "1.6 T4 Powershift (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26615, + "fields": { + "id_car_serie": 4537, + "name": "1.6 T2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26616, + "fields": { + "id_car_serie": 4537, + "name": "1.6 T3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26617, + "fields": { + "id_car_serie": 4537, + "name": "1.6 T4 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26618, + "fields": { + "id_car_serie": 4537, + "name": "1.6 D2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26621, + "fields": { + "id_car_serie": 4537, + "name": "2.0 D3 Geartronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26622, + "fields": { + "id_car_serie": 4537, + "name": "2.0 D4 Geartronic (177 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26623, + "fields": { + "id_car_serie": 4537, + "name": "2.0 D3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26624, + "fields": { + "id_car_serie": 4537, + "name": "2.0 D4 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26625, + "fields": { + "id_car_serie": 4537, + "name": "2.5 T5 Geartronic (254 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26626, + "fields": { + "id_car_serie": 4538, + "name": "1.6 T4F Powershift (180 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26627, + "fields": { + "id_car_serie": 4538, + "name": "1.6 T4 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26628, + "fields": { + "id_car_serie": 4538, + "name": "1.6 D DRIVe MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26629, + "fields": { + "id_car_serie": 4538, + "name": "1.6 T4F MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26631, + "fields": { + "id_car_serie": 4538, + "name": "2.0 T AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26633, + "fields": { + "id_car_serie": 4538, + "name": "2.0 D4 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26635, + "fields": { + "id_car_serie": 4538, + "name": "2.0 D4 Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26638, + "fields": { + "id_car_serie": 4538, + "name": "2.0 F MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26639, + "fields": { + "id_car_serie": 4538, + "name": "2.0 D3 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26641, + "fields": { + "id_car_serie": 4538, + "name": "2.4 D5 Geartronic AWD (185 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26642, + "fields": { + "id_car_serie": 4538, + "name": "2.4 D5 AT AWD (205 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26643, + "fields": { + "id_car_serie": 4538, + "name": "2.4 D5 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26644, + "fields": { + "id_car_serie": 4538, + "name": "2.4 D5 Geartronic (215 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26645, + "fields": { + "id_car_serie": 4538, + "name": "2.4 D5 MT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26646, + "fields": { + "id_car_serie": 4538, + "name": "2.4 D5 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26647, + "fields": { + "id_car_serie": 4538, + "name": "2.4 D MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26648, + "fields": { + "id_car_serie": 4538, + "name": "2.5 T Geartronic (200 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26649, + "fields": { + "id_car_serie": 4538, + "name": "2.5 T MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26651, + "fields": { + "id_car_serie": 4538, + "name": "3.0 T6 Geartronic AWD (304 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26652, + "fields": { + "id_car_serie": 4538, + "name": "3.2 Geartronic AWD (238 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26653, + "fields": { + "id_car_serie": 4538, + "name": "3.2 Geartronic (238 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26654, + "fields": { + "id_car_serie": 4539, + "name": "2.0 T5 Powershift (240 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26655, + "fields": { + "id_car_serie": 4539, + "name": "2.0 T5 Drive-E Geartronic (245 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26656, + "fields": { + "id_car_serie": 4539, + "name": "2.0 D3 Geartronic (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26657, + "fields": { + "id_car_serie": 4539, + "name": "2.0 D4 AT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26658, + "fields": { + "id_car_serie": 4539, + "name": "2.0 D3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26659, + "fields": { + "id_car_serie": 4539, + "name": "2.0 D4 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26660, + "fields": { + "id_car_serie": 4539, + "name": "2.4 D4 Geartronic AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26661, + "fields": { + "id_car_serie": 4539, + "name": "2.4 D4 Geartronic AWD (181 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26662, + "fields": { + "id_car_serie": 4539, + "name": "2.4 D5 Geartronic AWD (215 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26663, + "fields": { + "id_car_serie": 4539, + "name": "2.4 D4 MT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26664, + "fields": { + "id_car_serie": 4539, + "name": "2.4 D4 MT AWD (181 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26665, + "fields": { + "id_car_serie": 4539, + "name": "2.4 D5 MT AWD (215 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26666, + "fields": { + "id_car_serie": 4539, + "name": "2.5 T5 Geartronic AWD (249 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26667, + "fields": { + "id_car_serie": 4539, + "name": "3.0 T6 Geartronic AWD (304 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26668, + "fields": { + "id_car_serie": 4540, + "name": "2.0 D4 Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26669, + "fields": { + "id_car_serie": 4540, + "name": "2.0 D3 Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26672, + "fields": { + "id_car_serie": 4540, + "name": "2.4 D4 Geartronic AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26673, + "fields": { + "id_car_serie": 4540, + "name": "2.4 TD Geartronic (175 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26674, + "fields": { + "id_car_serie": 4540, + "name": "2.4 D5 Geartronic AWD (185 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26675, + "fields": { + "id_car_serie": 4540, + "name": "2.4 D5 Geartronic AWD (205 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26676, + "fields": { + "id_car_serie": 4540, + "name": "2.4 D5 Geartronic AWD (215 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26677, + "fields": { + "id_car_serie": 4540, + "name": "2.4 TD MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26679, + "fields": { + "id_car_serie": 4540, + "name": "2.4 D5 MT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26680, + "fields": { + "id_car_serie": 4540, + "name": "2.4 D5 MT AWD (205 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26681, + "fields": { + "id_car_serie": 4540, + "name": "2.4 D5 MT AWD (215 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26683, + "fields": { + "id_car_serie": 4540, + "name": "3.2 Geartronic AWD (238 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26688, + "fields": { + "id_car_serie": 4541, + "name": "2.5 T5 MT AWD (5 places) (210 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26691, + "fields": { + "id_car_serie": 4542, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26694, + "fields": { + "id_car_serie": 4544, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26695, + "fields": { + "id_car_serie": 4545, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26696, + "fields": { + "id_car_serie": 4546, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26697, + "fields": { + "id_car_serie": 4547, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1969 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26701, + "fields": { + "id_car_serie": 4548, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26702, + "fields": { + "id_car_serie": 4548, + "name": "1.0 MT (49 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26706, + "fields": { + "id_car_serie": 4550, + "name": "0.9 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26707, + "fields": { + "id_car_serie": 4550, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26708, + "fields": { + "id_car_serie": 4550, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26710, + "fields": { + "id_car_serie": 4550, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26712, + "fields": { + "id_car_serie": 4551, + "name": "2.2 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26716, + "fields": { + "id_car_serie": 4552, + "name": "2.8 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26729, + "fields": { + "id_car_serie": 4557, + "name": "21081 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26731, + "fields": { + "id_car_serie": 4557, + "name": "2108 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26732, + "fields": { + "id_car_serie": 4557, + "name": "21083 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26733, + "fields": { + "id_car_serie": 4557, + "name": "21083-20 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26734, + "fields": { + "id_car_serie": 4558, + "name": "21123 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26735, + "fields": { + "id_car_serie": 4559, + "name": "21122 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26736, + "fields": { + "id_car_serie": 4559, + "name": "21120 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26738, + "fields": { + "id_car_serie": 4559, + "name": "21121 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26739, + "fields": { + "id_car_serie": 4559, + "name": "21124 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26743, + "fields": { + "id_car_serie": 4561, + "name": "1.6 MT (118 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26745, + "fields": { + "id_car_serie": 4562, + "name": "1.6 AT 16 valves (98 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26746, + "fields": { + "id_car_serie": 4562, + "name": "1.6 MT 16 valves (106 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26748, + "fields": { + "id_car_serie": 4562, + "name": "1.6 MT 8 valves (2181) (87 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26751, + "fields": { + "id_car_serie": 4563, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26769, + "fields": { + "id_car_serie": 4570, + "name": "2413 2.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26770, + "fields": { + "id_car_serie": 4571, + "name": "2410 2.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26774, + "fields": { + "id_car_serie": 4573, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26778, + "fields": { + "id_car_serie": 4573, + "name": "5.5 AT (195 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26779, + "fields": { + "id_car_serie": 4573, + "name": "5.5 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26781, + "fields": { + "id_car_serie": 4575, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26783, + "fields": { + "id_car_serie": 4576, + "name": "310221 2.1d MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26784, + "fields": { + "id_car_serie": 4576, + "name": "310221 2.3 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26785, + "fields": { + "id_car_serie": 4576, + "name": "310221 2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26786, + "fields": { + "id_car_serie": 4576, + "name": "310221 2.5 MT (81 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26787, + "fields": { + "id_car_serie": 4576, + "name": "310221 2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26788, + "fields": { + "id_car_serie": 4577, + "name": "2.1 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26789, + "fields": { + "id_car_serie": 4577, + "name": "2.1 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26792, + "fields": { + "id_car_serie": 4577, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26796, + "fields": { + "id_car_serie": 4578, + "name": "2.1 MT 4WD (65 hp)", + "arabic_name": "-", + "start_production_year": 1953, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26801, + "fields": { + "id_car_serie": 4583, + "name": "1.1 MT (53 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26802, + "fields": { + "id_car_serie": 4583, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26803, + "fields": { + "id_car_serie": 4584, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26805, + "fields": { + "id_car_serie": 4584, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26806, + "fields": { + "id_car_serie": 4585, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26807, + "fields": { + "id_car_serie": 4585, + "name": "1.4 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26809, + "fields": { + "id_car_serie": 4586, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26810, + "fields": { + "id_car_serie": 4587, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26811, + "fields": { + "id_car_serie": 4588, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26812, + "fields": { + "id_car_serie": 4589, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26814, + "fields": { + "id_car_serie": 4590, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26817, + "fields": { + "id_car_serie": 4591, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26820, + "fields": { + "id_car_serie": 4593, + "name": "1.6 MT (74 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26821, + "fields": { + "id_car_serie": 4593, + "name": "1.7 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26822, + "fields": { + "id_car_serie": 4594, + "name": "400-420A 1.1 MT (23 hp)", + "arabic_name": "-", + "start_production_year": 1949, + "end_production_year": 1954 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26824, + "fields": { + "id_car_serie": 4596, + "name": "1.1 MT (23 hp)", + "arabic_name": "-", + "start_production_year": 1948, + "end_production_year": 1948 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26825, + "fields": { + "id_car_serie": 4597, + "name": "1.1 MT (23 hp)", + "arabic_name": "-", + "start_production_year": 1946, + "end_production_year": 1954 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26826, + "fields": { + "id_car_serie": 4598, + "name": "1.1 MT (26 hp)", + "arabic_name": "-", + "start_production_year": 1954, + "end_production_year": 1956 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26828, + "fields": { + "id_car_serie": 4600, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26829, + "fields": { + "id_car_serie": 4600, + "name": "1.6 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26831, + "fields": { + "id_car_serie": 4602, + "name": "2.3 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26832, + "fields": { + "id_car_serie": 4602, + "name": "3.2 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26833, + "fields": { + "id_car_serie": 4603, + "name": "2.3 MT 2WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26835, + "fields": { + "id_car_serie": 4603, + "name": "2.6 D MT 4WD (104 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26836, + "fields": { + "id_car_serie": 4603, + "name": "2.9 D MT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26837, + "fields": { + "id_car_serie": 4603, + "name": "3.2 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26838, + "fields": { + "id_car_serie": 4604, + "name": "2.3 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26844, + "fields": { + "id_car_serie": 4605, + "name": "315192 2.9 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26845, + "fields": { + "id_car_serie": 4605, + "name": "315192-10 2.9 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26846, + "fields": { + "id_car_serie": 4605, + "name": "31519-10 2.9 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26849, + "fields": { + "id_car_serie": 4606, + "name": "31512 2.5 MT (76 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26850, + "fields": { + "id_car_serie": 4606, + "name": "315123 2.5d MT (86 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26851, + "fields": { + "id_car_serie": 4609, + "name": "2.7 MT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26854, + "fields": { + "id_car_serie": 4609, + "name": "2.4 TD MT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26856, + "fields": { + "id_car_serie": 4609, + "name": "2.7 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26859, + "fields": { + "id_car_serie": 4611, + "name": "2.2 TD MT 4WD (114 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26864, + "fields": { + "id_car_serie": 4613, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26874, + "fields": { + "id_car_serie": 4615, + "name": "3.5 CVT (231 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26875, + "fields": { + "id_car_serie": 4615, + "name": "3.5 CVT AWD (231 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26876, + "fields": { + "id_car_serie": 4616, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26879, + "fields": { + "id_car_serie": 4616, + "name": "2.0 MT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 26880, + "fields": { + "id_car_serie": 4617, + "name": "2.0 Turbo AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26881, + "fields": { + "id_car_serie": 4617, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26891, + "fields": { + "id_car_serie": 4619, + "name": "1.5 CVT (114 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26894, + "fields": { + "id_car_serie": 4619, + "name": "1.6 turbo CVT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26895, + "fields": { + "id_car_serie": 4619, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26896, + "fields": { + "id_car_serie": 4619, + "name": "1.6 turbo MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26899, + "fields": { + "id_car_serie": 4620, + "name": "1.8 TFSI multitronic (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26900, + "fields": { + "id_car_serie": 4620, + "name": "1.8 TFSI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26901, + "fields": { + "id_car_serie": 4620, + "name": "1.8 TFSI MT quattro (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26902, + "fields": { + "id_car_serie": 4620, + "name": "1.8 TFSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26905, + "fields": { + "id_car_serie": 4620, + "name": "2.0 TFSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26906, + "fields": { + "id_car_serie": 4620, + "name": "2.0 TFSI MT (211 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26907, + "fields": { + "id_car_serie": 4620, + "name": "2.0 TFSI MT quattro (211 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26908, + "fields": { + "id_car_serie": 4620, + "name": "2.0 TDI MT quattro (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26911, + "fields": { + "id_car_serie": 4620, + "name": "2.0 TDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26912, + "fields": { + "id_car_serie": 4620, + "name": "2.0 TFSI flexible fuel MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26913, + "fields": { + "id_car_serie": 4620, + "name": "2.0 TFSI flexible fuel MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26921, + "fields": { + "id_car_serie": 4620, + "name": "3.2 FSI tiptronic quattro (265 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26922, + "fields": { + "id_car_serie": 4620, + "name": "3.2 FSI MT quattro (265 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26923, + "fields": { + "id_car_serie": 4621, + "name": "1.8 TFSI multitronic (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26926, + "fields": { + "id_car_serie": 4621, + "name": "1.8 TFSI MT quattro (160 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26927, + "fields": { + "id_car_serie": 4621, + "name": "1.8 TFSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26928, + "fields": { + "id_car_serie": 4621, + "name": "2.0 TFSI S tronic quattro (211 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26931, + "fields": { + "id_car_serie": 4621, + "name": "2.0 TFSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26932, + "fields": { + "id_car_serie": 4621, + "name": "2.0 TFSI MT (211 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26936, + "fields": { + "id_car_serie": 4621, + "name": "2.0 TDI MT quattro (143 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26939, + "fields": { + "id_car_serie": 4621, + "name": "2.0 TDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26940, + "fields": { + "id_car_serie": 4621, + "name": "2.0 TDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26943, + "fields": { + "id_car_serie": 4621, + "name": "2.7 TDI multitronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26944, + "fields": { + "id_car_serie": 4621, + "name": "2.7 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26947, + "fields": { + "id_car_serie": 4621, + "name": "3.2 FSI tiptronic quattro (265 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26948, + "fields": { + "id_car_serie": 4621, + "name": "3.2 FSI multitronic (265 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26949, + "fields": { + "id_car_serie": 4621, + "name": "3.2 FSI MT quattro (265 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26950, + "fields": { + "id_car_serie": 4622, + "name": "1.8 T multitronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26953, + "fields": { + "id_car_serie": 4622, + "name": "2.0 TFSI multitronic (200 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26957, + "fields": { + "id_car_serie": 4622, + "name": "2.0 TFSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26958, + "fields": { + "id_car_serie": 4622, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26967, + "fields": { + "id_car_serie": 4622, + "name": "3.0 TDI MT quattro (233 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26973, + "fields": { + "id_car_serie": 4623, + "name": "1.8 T multitronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26976, + "fields": { + "id_car_serie": 4623, + "name": "1.9 TDI multitronic (115 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26979, + "fields": { + "id_car_serie": 4623, + "name": "2.0 TFSI tiptronic quattro (220 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26984, + "fields": { + "id_car_serie": 4623, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26987, + "fields": { + "id_car_serie": 4623, + "name": "2.0 TFSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26990, + "fields": { + "id_car_serie": 4623, + "name": "2.0 TDI multitronic (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26993, + "fields": { + "id_car_serie": 4623, + "name": "2.0 TDI tiptronic quattro (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 26996, + "fields": { + "id_car_serie": 4623, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27005, + "fields": { + "id_car_serie": 4623, + "name": "3.0 TDI tiptronic quattro (204 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27008, + "fields": { + "id_car_serie": 4623, + "name": "3.0 TDI MT quattro (233 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27014, + "fields": { + "id_car_serie": 4624, + "name": "1.8 CVT (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27017, + "fields": { + "id_car_serie": 4624, + "name": "1.9 CVT (115 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27022, + "fields": { + "id_car_serie": 4624, + "name": "2.0 CVT (200 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27028, + "fields": { + "id_car_serie": 4624, + "name": "2.0 TFSI MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27031, + "fields": { + "id_car_serie": 4624, + "name": "2.0 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27034, + "fields": { + "id_car_serie": 4624, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27037, + "fields": { + "id_car_serie": 4624, + "name": "2.7 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27046, + "fields": { + "id_car_serie": 4625, + "name": "1.8 T multitronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27507, + "fields": { + "id_car_serie": 4847, + "name": "1.5 AT (231 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 27546, + "fields": { + "id_car_serie": 4855, + "name": "2.2i AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27547, + "fields": { + "id_car_serie": 4855, + "name": "2.2i MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27606, + "fields": { + "id_car_serie": 4876, + "name": "7.3 AT (582 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27610, + "fields": { + "id_car_serie": 4880, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27623, + "fields": { + "id_car_serie": 4883, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 27624, + "fields": { + "id_car_serie": 4883, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 27625, + "fields": { + "id_car_serie": 4884, + "name": "5.9 AT (261 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27639, + "fields": { + "id_car_serie": 4885, + "name": "5.9 AT (265 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27642, + "fields": { + "id_car_serie": 4898, + "name": "3.6 AT (243 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27643, + "fields": { + "id_car_serie": 4898, + "name": "3.8 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27644, + "fields": { + "id_car_serie": 4898, + "name": "5.3 AT (300 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27648, + "fields": { + "id_car_serie": 4901, + "name": "3.8 AT (243 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27649, + "fields": { + "id_car_serie": 4905, + "name": "3.8 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27650, + "fields": { + "id_car_serie": 4905, + "name": "3.8 AT (243 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27652, + "fields": { + "id_car_serie": 4889, + "name": "2.7 AT (172 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 27658, + "fields": { + "id_car_serie": 4916, + "name": "0.8 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27662, + "fields": { + "id_car_serie": 4922, + "name": "AT (2 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 27663, + "fields": { + "id_car_serie": 4906, + "name": "3.1 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27664, + "fields": { + "id_car_serie": 4906, + "name": "3.8 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27668, + "fields": { + "id_car_serie": 5356, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27669, + "fields": { + "id_car_serie": 5358, + "name": "2.0 TDCi PowerShift AWD (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27674, + "fields": { + "id_car_serie": 5358, + "name": "2.0 TDCi MT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27675, + "fields": { + "id_car_serie": 5358, + "name": "2.5 AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27680, + "fields": { + "id_car_serie": 5362, + "name": "2.4 MT 4x4 (118 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27683, + "fields": { + "id_car_serie": 5362, + "name": "2.7 TD MT 4x4 (125 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27684, + "fields": { + "id_car_serie": 5357, + "name": "1.3 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27685, + "fields": { + "id_car_serie": 5357, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27686, + "fields": { + "id_car_serie": 5357, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27691, + "fields": { + "id_car_serie": 5361, + "name": "2.7 TD MT 4x4 (125 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27692, + "fields": { + "id_car_serie": 5366, + "name": "2.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27695, + "fields": { + "id_car_serie": 5366, + "name": "2.2 GT MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27696, + "fields": { + "id_car_serie": 5366, + "name": "3.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27697, + "fields": { + "id_car_serie": 5368, + "name": "2.3 AT (99 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27698, + "fields": { + "id_car_serie": 5368, + "name": "2.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27726, + "fields": { + "id_car_serie": 5371, + "name": "2.5 TD MT (84 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27748, + "fields": { + "id_car_serie": 5376, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27750, + "fields": { + "id_car_serie": 5376, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27762, + "fields": { + "id_car_serie": 5377, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27763, + "fields": { + "id_car_serie": 5377, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27765, + "fields": { + "id_car_serie": 5377, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27768, + "fields": { + "id_car_serie": 5377, + "name": "2.5 TD MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27772, + "fields": { + "id_car_serie": 5377, + "name": "2.9 Cosworth AT (195 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27773, + "fields": { + "id_car_serie": 5377, + "name": "2.9 MT 4x4 (145 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27785, + "fields": { + "id_car_serie": 5378, + "name": "2.5 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27812, + "fields": { + "id_car_serie": 5375, + "name": "1.8 TDCi 5MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27813, + "fields": { + "id_car_serie": 5375, + "name": "1.8 TDCi 6MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27815, + "fields": { + "id_car_serie": 5375, + "name": "2.0 TDCi DPF AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27817, + "fields": { + "id_car_serie": 5375, + "name": "2.0 TDCi DPF MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27818, + "fields": { + "id_car_serie": 5375, + "name": "2.2 TDCi DPF MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27820, + "fields": { + "id_car_serie": 5375, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27822, + "fields": { + "id_car_serie": 5381, + "name": "1.6 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27823, + "fields": { + "id_car_serie": 5381, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27827, + "fields": { + "id_car_serie": 5381, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27830, + "fields": { + "id_car_serie": 5381, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27833, + "fields": { + "id_car_serie": 5381, + "name": "2.3 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27835, + "fields": { + "id_car_serie": 5381, + "name": "2.8 4x4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27837, + "fields": { + "id_car_serie": 5384, + "name": "3.5 AT (263 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27838, + "fields": { + "id_car_serie": 5385, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27840, + "fields": { + "id_car_serie": 5386, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27842, + "fields": { + "id_car_serie": 5379, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27843, + "fields": { + "id_car_serie": 5379, + "name": "1.6 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27845, + "fields": { + "id_car_serie": 5379, + "name": "1.8 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27847, + "fields": { + "id_car_serie": 5379, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27848, + "fields": { + "id_car_serie": 5379, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27852, + "fields": { + "id_car_serie": 5379, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27854, + "fields": { + "id_car_serie": 5379, + "name": "2.3 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27855, + "fields": { + "id_car_serie": 5379, + "name": "2.3 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27870, + "fields": { + "id_car_serie": 5380, + "name": "2.0 Cosworth MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27880, + "fields": { + "id_car_serie": 5390, + "name": "3.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27881, + "fields": { + "id_car_serie": 5390, + "name": "3.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27884, + "fields": { + "id_car_serie": 5391, + "name": "3.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27887, + "fields": { + "id_car_serie": 5392, + "name": "3.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27889, + "fields": { + "id_car_serie": 5392, + "name": "3.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27892, + "fields": { + "id_car_serie": 5395, + "name": "3.8 5AT (147 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27893, + "fields": { + "id_car_serie": 5395, + "name": "3.8 MT Superchargen (233 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27895, + "fields": { + "id_car_serie": 5395, + "name": "4.6 MT (208 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27897, + "fields": { + "id_car_serie": 5388, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27908, + "fields": { + "id_car_serie": 5404, + "name": "3.5 MT (354 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27910, + "fields": { + "id_car_serie": 5396, + "name": "2.3 Turbo Coupe AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27912, + "fields": { + "id_car_serie": 5396, + "name": "3.8 3AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27924, + "fields": { + "id_car_serie": 5389, + "name": "3.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27927, + "fields": { + "id_car_serie": 5416, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27932, + "fields": { + "id_car_serie": 5416, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27942, + "fields": { + "id_car_serie": 5413, + "name": "1.4 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27943, + "fields": { + "id_car_serie": 5413, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27945, + "fields": { + "id_car_serie": 5413, + "name": "1.7 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27947, + "fields": { + "id_car_serie": 5413, + "name": "1.7 MT (144 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27948, + "fields": { + "id_car_serie": 5413, + "name": "1.9 TD MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27950, + "fields": { + "id_car_serie": 5413, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27957, + "fields": { + "id_car_serie": 5424, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27958, + "fields": { + "id_car_serie": 5424, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27966, + "fields": { + "id_car_serie": 5417, + "name": "1.2 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27967, + "fields": { + "id_car_serie": 5417, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27968, + "fields": { + "id_car_serie": 5417, + "name": "1.4 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27969, + "fields": { + "id_car_serie": 5417, + "name": "1.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27970, + "fields": { + "id_car_serie": 5417, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27989, + "fields": { + "id_car_serie": 5427, + "name": "2.0 JTS MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27990, + "fields": { + "id_car_serie": 5427, + "name": "2.0 MT (202 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27993, + "fields": { + "id_car_serie": 5427, + "name": "3.2 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 27994, + "fields": { + "id_car_serie": 5428, + "name": "0.9 MT TwinAir (105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 28002, + "fields": { + "id_car_serie": 5428, + "name": "1.4 MT MultiAir (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 28005, + "fields": { + "id_car_serie": 5428, + "name": "1.6 MT JTD (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 28006, + "fields": { + "id_car_serie": 5429, + "name": "2.6 MT (203 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28007, + "fields": { + "id_car_serie": 5433, + "name": "3.0 MT (207 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28010, + "fields": { + "id_car_serie": 5435, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28011, + "fields": { + "id_car_serie": 5435, + "name": "2.7 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28014, + "fields": { + "id_car_serie": 5437, + "name": "2.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28015, + "fields": { + "id_car_serie": 5437, + "name": "2.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28016, + "fields": { + "id_car_serie": 5432, + "name": "1.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28019, + "fields": { + "id_car_serie": 5432, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28020, + "fields": { + "id_car_serie": 5432, + "name": "1.7 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28021, + "fields": { + "id_car_serie": 5432, + "name": "1.7 MT (118 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28024, + "fields": { + "id_car_serie": 5439, + "name": "2.0 MT (300 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 28025, + "fields": { + "id_car_serie": 5421, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28026, + "fields": { + "id_car_serie": 5421, + "name": "1.2 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28029, + "fields": { + "id_car_serie": 5421, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28030, + "fields": { + "id_car_serie": 5442, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28036, + "fields": { + "id_car_serie": 5444, + "name": "5.3 MT (700 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28039, + "fields": { + "id_car_serie": 5448, + "name": "7.3 AMT (760 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28040, + "fields": { + "id_car_serie": 5441, + "name": "2.1 TD MT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28044, + "fields": { + "id_car_serie": 5441, + "name": "2.5 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28046, + "fields": { + "id_car_serie": 5441, + "name": "2.5 TD MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28049, + "fields": { + "id_car_serie": 5441, + "name": "2.7 MT 4WD (71 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28055, + "fields": { + "id_car_serie": 5453, + "name": "4.3 AMT (385 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28057, + "fields": { + "id_car_serie": 5455, + "name": "5.3 MT (550 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28059, + "fields": { + "id_car_serie": 5456, + "name": "5.3 AT (340 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28060, + "fields": { + "id_car_serie": 5456, + "name": "5.3 AT (375 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28062, + "fields": { + "id_car_serie": 5456, + "name": "5.3 MT (375 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28068, + "fields": { + "id_car_serie": 5457, + "name": "5.3 AT (340 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28071, + "fields": { + "id_car_serie": 5457, + "name": "5.3 MT (375 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28072, + "fields": { + "id_car_serie": 5459, + "name": "5.3 AT (335 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28073, + "fields": { + "id_car_serie": 5459, + "name": "5.3 MT (335 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28081, + "fields": { + "id_car_serie": 5464, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28082, + "fields": { + "id_car_serie": 5464, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28083, + "fields": { + "id_car_serie": 5452, + "name": "5.9 MT (517 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 28086, + "fields": { + "id_car_serie": 5465, + "name": "1.6 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28087, + "fields": { + "id_car_serie": 5465, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28091, + "fields": { + "id_car_serie": 5465, + "name": "1.6 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28096, + "fields": { + "id_car_serie": 5465, + "name": "1.8 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28102, + "fields": { + "id_car_serie": 5465, + "name": "1.8 E MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28103, + "fields": { + "id_car_serie": 5465, + "name": "1.8 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28106, + "fields": { + "id_car_serie": 5465, + "name": "1.8 S MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28113, + "fields": { + "id_car_serie": 5465, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28121, + "fields": { + "id_car_serie": 5465, + "name": "2.0 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28123, + "fields": { + "id_car_serie": 5465, + "name": "2.0 E MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28127, + "fields": { + "id_car_serie": 5465, + "name": "2.0 E MT (137 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28169, + "fields": { + "id_car_serie": 5470, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28170, + "fields": { + "id_car_serie": 5470, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28214, + "fields": { + "id_car_serie": 5454, + "name": "4.3 MT (385 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28217, + "fields": { + "id_car_serie": 5469, + "name": "1.4 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28219, + "fields": { + "id_car_serie": 5469, + "name": "1.4 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28220, + "fields": { + "id_car_serie": 5469, + "name": "1.6 FSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28292, + "fields": { + "id_car_serie": 5468, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28293, + "fields": { + "id_car_serie": 5468, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28294, + "fields": { + "id_car_serie": 5468, + "name": "2.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28298, + "fields": { + "id_car_serie": 5468, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28305, + "fields": { + "id_car_serie": 5474, + "name": "2.0 FSI Tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28308, + "fields": { + "id_car_serie": 5474, + "name": "2.0 FSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28323, + "fields": { + "id_car_serie": 5479, + "name": "2.0 TFSI S tronic quattro (211 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28326, + "fields": { + "id_car_serie": 5479, + "name": "2.7 TDI multitronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28328, + "fields": { + "id_car_serie": 5479, + "name": "2.7 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28329, + "fields": { + "id_car_serie": 5479, + "name": "3.2 FSI S tronic quattro (265 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28330, + "fields": { + "id_car_serie": 5479, + "name": "3.2 FSI multitronic (265 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28332, + "fields": { + "id_car_serie": 5481, + "name": "2.5 TDI tiptronic quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28333, + "fields": { + "id_car_serie": 5481, + "name": "2.5 TDI MT quattro (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28334, + "fields": { + "id_car_serie": 5481, + "name": "2.5 TDI quattro MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28337, + "fields": { + "id_car_serie": 5481, + "name": "4.2 tiptronic quattro (300 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28339, + "fields": { + "id_car_serie": 5482, + "name": "2.0 TFSI multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28344, + "fields": { + "id_car_serie": 5482, + "name": "2.0 TDI multitronic (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28347, + "fields": { + "id_car_serie": 5482, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28350, + "fields": { + "id_car_serie": 5482, + "name": "2.4 AT quattro (177 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28351, + "fields": { + "id_car_serie": 5482, + "name": "2.4 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28352, + "fields": { + "id_car_serie": 5482, + "name": "2.4 MT quattro (177 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28358, + "fields": { + "id_car_serie": 5482, + "name": "2.7 TDI MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28362, + "fields": { + "id_car_serie": 5482, + "name": "2.8 FSI multitronic (210 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28365, + "fields": { + "id_car_serie": 5482, + "name": "2.8 FSI tiptronic quattro (210 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28369, + "fields": { + "id_car_serie": 5482, + "name": "2.8 FSI MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28370, + "fields": { + "id_car_serie": 5482, + "name": "2.8 FSI MT quattro (210 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28371, + "fields": { + "id_car_serie": 5482, + "name": "3.0 AT quattro (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28374, + "fields": { + "id_car_serie": 5482, + "name": "3.0 TDI CSF tiptronic quattro (225 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28376, + "fields": { + "id_car_serie": 5482, + "name": "3.0 TDI MT quattro (225 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28387, + "fields": { + "id_car_serie": 5482, + "name": "4.2 MT quattro (335 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28399, + "fields": { + "id_car_serie": 5484, + "name": "2.4 MT quattro (177 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28411, + "fields": { + "id_car_serie": 5484, + "name": "2.7 TDI MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28414, + "fields": { + "id_car_serie": 5484, + "name": "3.0 MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28415, + "fields": { + "id_car_serie": 5484, + "name": "3.0 MT quattro (218 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28418, + "fields": { + "id_car_serie": 5478, + "name": "1.8 TFSI multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28420, + "fields": { + "id_car_serie": 5478, + "name": "1.8 TFSI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28421, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TFSI S tronic quattro (211 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28423, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TFSI multitronic (211 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28425, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TFSI MT quattro (211 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28426, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TFSI MT (211 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28432, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28473, + "fields": { + "id_car_serie": 5487, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28474, + "fields": { + "id_car_serie": 5487, + "name": "1.8 T tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28477, + "fields": { + "id_car_serie": 5487, + "name": "1.8 T MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28478, + "fields": { + "id_car_serie": 5487, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28479, + "fields": { + "id_car_serie": 5487, + "name": "1.8 T MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28480, + "fields": { + "id_car_serie": 5487, + "name": "1.8 T MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28481, + "fields": { + "id_car_serie": 5487, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28482, + "fields": { + "id_car_serie": 5487, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28483, + "fields": { + "id_car_serie": 5487, + "name": "2.4 tiptronic (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28484, + "fields": { + "id_car_serie": 5487, + "name": "2.4 tiptronic quattro (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28485, + "fields": { + "id_car_serie": 5487, + "name": "2.4 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28486, + "fields": { + "id_car_serie": 5487, + "name": "2.4 MT quattro (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28489, + "fields": { + "id_car_serie": 5487, + "name": "2.5 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28491, + "fields": { + "id_car_serie": 5487, + "name": "2.7 T tiptronic quattro (230 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28492, + "fields": { + "id_car_serie": 5487, + "name": "2.7 T tiptronic (230 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28493, + "fields": { + "id_car_serie": 5487, + "name": "2.7 T MT quattro (230 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28494, + "fields": { + "id_car_serie": 5487, + "name": "2.7 T MT (230 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28497, + "fields": { + "id_car_serie": 5487, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28498, + "fields": { + "id_car_serie": 5487, + "name": "2.8 MT quattro (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28521, + "fields": { + "id_car_serie": 5488, + "name": "1.8 T multitronic (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28523, + "fields": { + "id_car_serie": 5488, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28560, + "fields": { + "id_car_serie": 5483, + "name": "2.7 TDI tiptronic quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28582, + "fields": { + "id_car_serie": 5483, + "name": "4.2 FSI tiptronic quattro (350 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28584, + "fields": { + "id_car_serie": 5486, + "name": "1.8 tiptronic (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28586, + "fields": { + "id_car_serie": 5486, + "name": "1.8 tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28587, + "fields": { + "id_car_serie": 5486, + "name": "1.8 tiptronic (180 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28588, + "fields": { + "id_car_serie": 5486, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28589, + "fields": { + "id_car_serie": 5486, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28590, + "fields": { + "id_car_serie": 5486, + "name": "1.8 MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28591, + "fields": { + "id_car_serie": 5486, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28592, + "fields": { + "id_car_serie": 5486, + "name": "1.8 MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28593, + "fields": { + "id_car_serie": 5486, + "name": "1.9 TDI tiptronic (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28594, + "fields": { + "id_car_serie": 5486, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28596, + "fields": { + "id_car_serie": 5486, + "name": "2.4 tiptronic quattro (165 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28597, + "fields": { + "id_car_serie": 5486, + "name": "2.4 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28599, + "fields": { + "id_car_serie": 5486, + "name": "2.5 TDI tiptronic quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28600, + "fields": { + "id_car_serie": 5486, + "name": "2.5 TDI tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28601, + "fields": { + "id_car_serie": 5486, + "name": "2.5 TDI MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28602, + "fields": { + "id_car_serie": 5486, + "name": "2.5 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28603, + "fields": { + "id_car_serie": 5486, + "name": "2.7 T tiptronic quattro (230 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28605, + "fields": { + "id_car_serie": 5486, + "name": "2.7 T MT (230 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28607, + "fields": { + "id_car_serie": 5486, + "name": "2.8 tiptronic (193 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28609, + "fields": { + "id_car_serie": 5486, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28611, + "fields": { + "id_car_serie": 5493, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28617, + "fields": { + "id_car_serie": 5493, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28619, + "fields": { + "id_car_serie": 5493, + "name": "1.9 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28621, + "fields": { + "id_car_serie": 5493, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28623, + "fields": { + "id_car_serie": 5493, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28624, + "fields": { + "id_car_serie": 5493, + "name": "2.1 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28626, + "fields": { + "id_car_serie": 5493, + "name": "2.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28673, + "fields": { + "id_car_serie": 5492, + "name": "1.8 20V TFSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28674, + "fields": { + "id_car_serie": 5492, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28675, + "fields": { + "id_car_serie": 5492, + "name": "2.0 E MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28679, + "fields": { + "id_car_serie": 5492, + "name": "2.6 V6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28681, + "fields": { + "id_car_serie": 5492, + "name": "2.8 E MT (174 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28683, + "fields": { + "id_car_serie": 5496, + "name": "2.0 TFSI MT quattro (211 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28684, + "fields": { + "id_car_serie": 5496, + "name": "2.0 TDI clean diesel S tronic quattro (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28685, + "fields": { + "id_car_serie": 5496, + "name": "2.0 TDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28686, + "fields": { + "id_car_serie": 5496, + "name": "2.0 TDI MT quattro (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28687, + "fields": { + "id_car_serie": 5496, + "name": "2.0 TDI MT quattro (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28691, + "fields": { + "id_car_serie": 5498, + "name": "2.1 AT (200 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28693, + "fields": { + "id_car_serie": 5498, + "name": "2.1 MT (200 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28699, + "fields": { + "id_car_serie": 5504, + "name": "5.0 TFSI quattro AT (580 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28700, + "fields": { + "id_car_serie": 5506, + "name": "4.2 TFSI quattro AT (450 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28701, + "fields": { + "id_car_serie": 5507, + "name": "4.2 TFSI quattro AT (450 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28702, + "fields": { + "id_car_serie": 5497, + "name": "3.0 AT (272 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 28703, + "fields": { + "id_car_serie": 5497, + "name": "3.0 AT (333 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 28722, + "fields": { + "id_car_serie": 5513, + "name": "3.0 TFSI S tronic quattro (333 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28723, + "fields": { + "id_car_serie": 5505, + "name": "5.0 TFSI quattro AT (580 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28725, + "fields": { + "id_car_serie": 5515, + "name": "4.2 FSI tiptronic quattro (354 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28726, + "fields": { + "id_car_serie": 5515, + "name": "4.2 FSI MT quattro (354 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28728, + "fields": { + "id_car_serie": 5516, + "name": "5.2 FSI V10 quattro AT (435 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28739, + "fields": { + "id_car_serie": 5514, + "name": "3.0 TFSI S tronic quattro (333 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28744, + "fields": { + "id_car_serie": 5523, + "name": "4.0 TFSI tiptronic quattro (520 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28767, + "fields": { + "id_car_serie": 5524, + "name": "5.2 V10 FSI quattro AT (450 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28768, + "fields": { + "id_car_serie": 5525, + "name": "4.2 quattro AT (340 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28779, + "fields": { + "id_car_serie": 5530, + "name": "1.1 MT (48 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28780, + "fields": { + "id_car_serie": 5530, + "name": "1.1 MT (49 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28782, + "fields": { + "id_car_serie": 5530, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28783, + "fields": { + "id_car_serie": 5530, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28784, + "fields": { + "id_car_serie": 5530, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28785, + "fields": { + "id_car_serie": 5530, + "name": "1.5 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28787, + "fields": { + "id_car_serie": 5530, + "name": "1.8 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28788, + "fields": { + "id_car_serie": 5532, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28790, + "fields": { + "id_car_serie": 5532, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28791, + "fields": { + "id_car_serie": 5532, + "name": "1.6 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28792, + "fields": { + "id_car_serie": 5532, + "name": "1.6 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28793, + "fields": { + "id_car_serie": 5532, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28794, + "fields": { + "id_car_serie": 5532, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28796, + "fields": { + "id_car_serie": 5532, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28797, + "fields": { + "id_car_serie": 5532, + "name": "2.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28798, + "fields": { + "id_car_serie": 5533, + "name": "1.5 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28799, + "fields": { + "id_car_serie": 5533, + "name": "1.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28801, + "fields": { + "id_car_serie": 5533, + "name": "1.8 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28813, + "fields": { + "id_car_serie": 5542, + "name": "6.8 AT (389 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28814, + "fields": { + "id_car_serie": 5542, + "name": "6.8 AT (406 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28816, + "fields": { + "id_car_serie": 5536, + "name": "1.7 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28818, + "fields": { + "id_car_serie": 5536, + "name": "2.0 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28819, + "fields": { + "id_car_serie": 5536, + "name": "2.0 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28821, + "fields": { + "id_car_serie": 5536, + "name": "2.2 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28825, + "fields": { + "id_car_serie": 5549, + "name": "6.75i AT Turbo (389 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28826, + "fields": { + "id_car_serie": 5551, + "name": "3.0 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 28827, + "fields": { + "id_car_serie": 5551, + "name": "4.0 MT (272 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29604, + "fields": { + "id_car_serie": 5601, + "name": "6.2 AT (750 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29639, + "fields": { + "id_car_serie": 5607, + "name": "5.9 AT (390 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29640, + "fields": { + "id_car_serie": 5610, + "name": "3.5 MT (559 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29641, + "fields": { + "id_car_serie": 5610, + "name": "S 3.5 MT (620 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29657, + "fields": { + "id_car_serie": 5619, + "name": "3.8 AT (208 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29658, + "fields": { + "id_car_serie": 5620, + "name": "3.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29659, + "fields": { + "id_car_serie": 5620, + "name": "3.8 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29663, + "fields": { + "id_car_serie": 5625, + "name": "3.4 AT (187 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29664, + "fields": { + "id_car_serie": 5625, + "name": "3.4 AT AWD (187 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29665, + "fields": { + "id_car_serie": 5625, + "name": "3.5 AT AWD (198 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29669, + "fields": { + "id_car_serie": 5625, + "name": "3.6 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29670, + "fields": { + "id_car_serie": 5625, + "name": "3.6 AT AWD (245 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29677, + "fields": { + "id_car_serie": 5614, + "name": "3.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29681, + "fields": { + "id_car_serie": 5628, + "name": "3.5 AT 4WD (203 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29682, + "fields": { + "id_car_serie": 5628, + "name": "3.9 AT (237 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29683, + "fields": { + "id_car_serie": 5630, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 29684, + "fields": { + "id_car_serie": 5632, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29687, + "fields": { + "id_car_serie": 5635, + "name": "2.4 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 29688, + "fields": { + "id_car_serie": 5635, + "name": "2.4 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 29690, + "fields": { + "id_car_serie": 5642, + "name": "3.6 V6 VVT DI RWD (304 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29732, + "fields": { + "id_car_serie": 5657, + "name": "4.1 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29734, + "fields": { + "id_car_serie": 5657, + "name": "4.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29735, + "fields": { + "id_car_serie": 5657, + "name": "4.9 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29736, + "fields": { + "id_car_serie": 5658, + "name": "4.1 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29737, + "fields": { + "id_car_serie": 5658, + "name": "4.1 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29741, + "fields": { + "id_car_serie": 5653, + "name": "5.7 AT (258 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29742, + "fields": { + "id_car_serie": 5659, + "name": "5.7 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29743, + "fields": { + "id_car_serie": 5659, + "name": "5.7 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29746, + "fields": { + "id_car_serie": 5660, + "name": "4.6 AT (320 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29747, + "fields": { + "id_car_serie": 5660, + "name": "4.6 AT AWD (320 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29753, + "fields": { + "id_car_serie": 5664, + "name": "2.3 D MT (61 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29754, + "fields": { + "id_car_serie": 5664, + "name": "2.5 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29755, + "fields": { + "id_car_serie": 5664, + "name": "2.7 D AT (79 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29757, + "fields": { + "id_car_serie": 5665, + "name": "1.6 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29759, + "fields": { + "id_car_serie": 5665, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29760, + "fields": { + "id_car_serie": 5665, + "name": "1.8 MT (153 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29761, + "fields": { + "id_car_serie": 5665, + "name": "1.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29763, + "fields": { + "id_car_serie": 5670, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 29765, + "fields": { + "id_car_serie": 5672, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 29766, + "fields": { + "id_car_serie": 5672, + "name": "2.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 29768, + "fields": { + "id_car_serie": 5677, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 29771, + "fields": { + "id_car_serie": 5680, + "name": "1.3 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 29778, + "fields": { + "id_car_serie": 5682, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29780, + "fields": { + "id_car_serie": 5682, + "name": "2.4 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29781, + "fields": { + "id_car_serie": 5682, + "name": "2.4 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29782, + "fields": { + "id_car_serie": 5685, + "name": "1.6 MT 4WD (119 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 29784, + "fields": { + "id_car_serie": 5685, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29786, + "fields": { + "id_car_serie": 5685, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 29788, + "fields": { + "id_car_serie": 5685, + "name": "2.0 MT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29790, + "fields": { + "id_car_serie": 5685, + "name": "2.0 MT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 29794, + "fields": { + "id_car_serie": 5687, + "name": "2.4 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29795, + "fields": { + "id_car_serie": 5687, + "name": "3.4 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29796, + "fields": { + "id_car_serie": 5692, + "name": "1.2 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29798, + "fields": { + "id_car_serie": 5692, + "name": "1.4 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29812, + "fields": { + "id_car_serie": 5695, + "name": "2.2 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29813, + "fields": { + "id_car_serie": 5695, + "name": "2.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29814, + "fields": { + "id_car_serie": 5695, + "name": "2.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29815, + "fields": { + "id_car_serie": 5695, + "name": "2.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29816, + "fields": { + "id_car_serie": 5695, + "name": "3.1 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29817, + "fields": { + "id_car_serie": 5695, + "name": "3.1 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29821, + "fields": { + "id_car_serie": 5690, + "name": "1.2 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29822, + "fields": { + "id_car_serie": 5690, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29823, + "fields": { + "id_car_serie": 5690, + "name": "1.4 LPG MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29826, + "fields": { + "id_car_serie": 5691, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29827, + "fields": { + "id_car_serie": 5700, + "name": "3.6 V6 AT (312 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29828, + "fields": { + "id_car_serie": 5700, + "name": "3.6 V6 AT (328 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29830, + "fields": { + "id_car_serie": 5700, + "name": "3.6 V6 MT (328 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29832, + "fields": { + "id_car_serie": 5700, + "name": "6.2 V8 MT (426 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29834, + "fields": { + "id_car_serie": 5701, + "name": "3.6 V6 AT (328 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29835, + "fields": { + "id_car_serie": 5701, + "name": "3.6 V6 MT (304 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29837, + "fields": { + "id_car_serie": 5701, + "name": "6.2 V8 AT (426 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29838, + "fields": { + "id_car_serie": 5701, + "name": "6.2 V8 MT (426 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29845, + "fields": { + "id_car_serie": 5702, + "name": "5.7 AT (275 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29848, + "fields": { + "id_car_serie": 5702, + "name": "5.7 MT (285 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29851, + "fields": { + "id_car_serie": 5703, + "name": "3.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29857, + "fields": { + "id_car_serie": 5703, + "name": "5.7 AT (275 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29860, + "fields": { + "id_car_serie": 5703, + "name": "5.7 MT (275 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29871, + "fields": { + "id_car_serie": 5704, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29874, + "fields": { + "id_car_serie": 5704, + "name": "2.8 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29878, + "fields": { + "id_car_serie": 5704, + "name": "5.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29879, + "fields": { + "id_car_serie": 5704, + "name": "5.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29884, + "fields": { + "id_car_serie": 5706, + "name": "5.7 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29887, + "fields": { + "id_car_serie": 5707, + "name": "5.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29890, + "fields": { + "id_car_serie": 5705, + "name": "3.8 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29892, + "fields": { + "id_car_serie": 5712, + "name": "1.0 Flex Fuel MT (77 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29895, + "fields": { + "id_car_serie": 5716, + "name": "2.4 AT (171 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29896, + "fields": { + "id_car_serie": 5716, + "name": "2.4 MT (171 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29902, + "fields": { + "id_car_serie": 5713, + "name": "1.6 AT (65 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29904, + "fields": { + "id_car_serie": 5713, + "name": "1.8 D AT (51 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29906, + "fields": { + "id_car_serie": 5718, + "name": "2.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29907, + "fields": { + "id_car_serie": 5718, + "name": "2.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29909, + "fields": { + "id_car_serie": 5721, + "name": "1.4 Turbo AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29910, + "fields": { + "id_car_serie": 5721, + "name": "1.4 Turbo MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29911, + "fields": { + "id_car_serie": 5721, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29914, + "fields": { + "id_car_serie": 5721, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29915, + "fields": { + "id_car_serie": 5721, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29917, + "fields": { + "id_car_serie": 5721, + "name": "1.8 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29919, + "fields": { + "id_car_serie": 5721, + "name": "2.0 TD AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29920, + "fields": { + "id_car_serie": 5721, + "name": "2.0 TD MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29923, + "fields": { + "id_car_serie": 5722, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29926, + "fields": { + "id_car_serie": 5722, + "name": "1.8 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29928, + "fields": { + "id_car_serie": 5722, + "name": "2.0 TD MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29929, + "fields": { + "id_car_serie": 5717, + "name": "2.0 Turbocharged MT (260 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29933, + "fields": { + "id_car_serie": 5717, + "name": "2.4 MT (171 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29938, + "fields": { + "id_car_serie": 5727, + "name": "2.2 Ecotec MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29939, + "fields": { + "id_car_serie": 5727, + "name": "2.4 Ecotec AT (172 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29941, + "fields": { + "id_car_serie": 5724, + "name": "3.4 5AT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29942, + "fields": { + "id_car_serie": 5724, + "name": "3.4 5AT (185 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29944, + "fields": { + "id_car_serie": 5728, + "name": "3.8 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29947, + "fields": { + "id_car_serie": 5733, + "name": "2.4 MT (124 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29950, + "fields": { + "id_car_serie": 5733, + "name": "3.5 MT (197 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29951, + "fields": { + "id_car_serie": 5734, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29960, + "fields": { + "id_car_serie": 5738, + "name": "2.4 AT (167 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29982, + "fields": { + "id_car_serie": 5742, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29984, + "fields": { + "id_car_serie": 5748, + "name": "1.8 3AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29985, + "fields": { + "id_car_serie": 5748, + "name": "1.8 4AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29986, + "fields": { + "id_car_serie": 5748, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29988, + "fields": { + "id_car_serie": 5749, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29990, + "fields": { + "id_car_serie": 5749, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29991, + "fields": { + "id_car_serie": 5747, + "name": "1.4 Turbo MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29992, + "fields": { + "id_car_serie": 5747, + "name": "1.8 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29994, + "fields": { + "id_car_serie": 5747, + "name": "2.0 VCDi AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29996, + "fields": { + "id_car_serie": 5747, + "name": "2.0 VCDi MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29997, + "fields": { + "id_car_serie": 5753, + "name": "5.3 AT (300 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 29999, + "fields": { + "id_car_serie": 5753, + "name": "6.0 MT (390 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30000, + "fields": { + "id_car_serie": 5757, + "name": "4.8 AT (275 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30001, + "fields": { + "id_car_serie": 5757, + "name": "4.8 AT AWD (275 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30002, + "fields": { + "id_car_serie": 5757, + "name": "4.8 AT AWD (285 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30003, + "fields": { + "id_car_serie": 5757, + "name": "4.8 AT (285 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30006, + "fields": { + "id_car_serie": 5757, + "name": "5.3 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30008, + "fields": { + "id_car_serie": 5757, + "name": "5.3 AT AWD (295 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30009, + "fields": { + "id_car_serie": 5757, + "name": "5.3 AT (295 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30012, + "fields": { + "id_car_serie": 5758, + "name": "5.7 AT AWD (255 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30014, + "fields": { + "id_car_serie": 5758, + "name": "5.7 AT (255 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30015, + "fields": { + "id_car_serie": 5756, + "name": "4.8 AT (295 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30016, + "fields": { + "id_car_serie": 5756, + "name": "5.3 FlexFuel AT AWD (320 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30021, + "fields": { + "id_car_serie": 5759, + "name": "5.7 AT AWD (258 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30023, + "fields": { + "id_car_serie": 5759, + "name": "5.7 AT (255 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30024, + "fields": { + "id_car_serie": 5759, + "name": "5.7 AT AWD (255 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30029, + "fields": { + "id_car_serie": 5759, + "name": "6.5 TD AT AWD (182 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30031, + "fields": { + "id_car_serie": 5759, + "name": "6.5 TD MT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30063, + "fields": { + "id_car_serie": 5766, + "name": "3.5 AT (252 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30064, + "fields": { + "id_car_serie": 5769, + "name": "3.3 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30068, + "fields": { + "id_car_serie": 5754, + "name": "6.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30070, + "fields": { + "id_car_serie": 5763, + "name": "4.2 AT (275 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30074, + "fields": { + "id_car_serie": 5763, + "name": "4.2 AT (291 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30087, + "fields": { + "id_car_serie": 5772, + "name": "5.2 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30088, + "fields": { + "id_car_serie": 5771, + "name": "2.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30090, + "fields": { + "id_car_serie": 5771, + "name": "3.3 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30092, + "fields": { + "id_car_serie": 5774, + "name": "3.5 AT (214 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30093, + "fields": { + "id_car_serie": 5776, + "name": "6.1 MT (425 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30098, + "fields": { + "id_car_serie": 5778, + "name": "3.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30100, + "fields": { + "id_car_serie": 5778, + "name": "3.8 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30102, + "fields": { + "id_car_serie": 5779, + "name": "3.6 Pentastar VVT (287 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 30105, + "fields": { + "id_car_serie": 5782, + "name": "3.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30106, + "fields": { + "id_car_serie": 5783, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30107, + "fields": { + "id_car_serie": 5783, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30108, + "fields": { + "id_car_serie": 5783, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30111, + "fields": { + "id_car_serie": 5784, + "name": "2.4 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30112, + "fields": { + "id_car_serie": 5784, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30116, + "fields": { + "id_car_serie": 5786, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30117, + "fields": { + "id_car_serie": 5786, + "name": "2.5 AT (166 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30120, + "fields": { + "id_car_serie": 5790, + "name": "3.5 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30121, + "fields": { + "id_car_serie": 5785, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30122, + "fields": { + "id_car_serie": 5785, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30123, + "fields": { + "id_car_serie": 5785, + "name": "2.7 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30141, + "fields": { + "id_car_serie": 5793, + "name": "2.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30155, + "fields": { + "id_car_serie": 5803, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30158, + "fields": { + "id_car_serie": 5803, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30162, + "fields": { + "id_car_serie": 5803, + "name": "1.4 HDi MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30169, + "fields": { + "id_car_serie": 47150, + "name": "2.8 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 30170, + "fields": { + "id_car_serie": 47150, + "name": "3.6 AT (283 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 30171, + "fields": { + "id_car_serie": 47150, + "name": "3.8 AT (193 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30175, + "fields": { + "id_car_serie": 5798, + "name": "1.6d MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30181, + "fields": { + "id_car_serie": 5802, + "name": "1.4 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30182, + "fields": { + "id_car_serie": 5802, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30183, + "fields": { + "id_car_serie": 5802, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30188, + "fields": { + "id_car_serie": 5804, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30189, + "fields": { + "id_car_serie": 5804, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30190, + "fields": { + "id_car_serie": 5804, + "name": "1.4 HDi MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30192, + "fields": { + "id_car_serie": 5804, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30204, + "fields": { + "id_car_serie": 5809, + "name": "1.6 VTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30208, + "fields": { + "id_car_serie": 5809, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30210, + "fields": { + "id_car_serie": 5809, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30222, + "fields": { + "id_car_serie": 5811, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30224, + "fields": { + "id_car_serie": 5811, + "name": "1.6 THP AMT (155 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30226, + "fields": { + "id_car_serie": 5811, + "name": "1.6 HDi MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30227, + "fields": { + "id_car_serie": 5811, + "name": "1.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30228, + "fields": { + "id_car_serie": 5811, + "name": "2.0 AMT (143 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30230, + "fields": { + "id_car_serie": 5811, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30232, + "fields": { + "id_car_serie": 5814, + "name": "2.0 HDi AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30233, + "fields": { + "id_car_serie": 5814, + "name": "2.0 HDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30236, + "fields": { + "id_car_serie": 5814, + "name": "2.2 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30244, + "fields": { + "id_car_serie": 5816, + "name": "2.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30246, + "fields": { + "id_car_serie": 5816, + "name": "2.4 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30247, + "fields": { + "id_car_serie": 5816, + "name": "2.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30250, + "fields": { + "id_car_serie": 5815, + "name": "2.2 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30252, + "fields": { + "id_car_serie": 5815, + "name": "2.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30253, + "fields": { + "id_car_serie": 5815, + "name": "2.4 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30254, + "fields": { + "id_car_serie": 5815, + "name": "2.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30289, + "fields": { + "id_car_serie": 5833, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30294, + "fields": { + "id_car_serie": 5835, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30297, + "fields": { + "id_car_serie": 5837, + "name": "1.5d MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30299, + "fields": { + "id_car_serie": 5837, + "name": "1.6 MPI MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30300, + "fields": { + "id_car_serie": 5839, + "name": "2.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30307, + "fields": { + "id_car_serie": 5842, + "name": "3.2 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30309, + "fields": { + "id_car_serie": 5845, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30310, + "fields": { + "id_car_serie": 5845, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30312, + "fields": { + "id_car_serie": 5845, + "name": "1.8 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30314, + "fields": { + "id_car_serie": 5845, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30315, + "fields": { + "id_car_serie": 5845, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30329, + "fields": { + "id_car_serie": 5834, + "name": "1.5 D MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30347, + "fields": { + "id_car_serie": 5857, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30351, + "fields": { + "id_car_serie": 5858, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30352, + "fields": { + "id_car_serie": 5858, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30353, + "fields": { + "id_car_serie": 5858, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30356, + "fields": { + "id_car_serie": 5859, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30357, + "fields": { + "id_car_serie": 5859, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30358, + "fields": { + "id_car_serie": 5859, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30361, + "fields": { + "id_car_serie": 5860, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30362, + "fields": { + "id_car_serie": 5860, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30363, + "fields": { + "id_car_serie": 5860, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30366, + "fields": { + "id_car_serie": 5861, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30367, + "fields": { + "id_car_serie": 5861, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30384, + "fields": { + "id_car_serie": 5856, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30388, + "fields": { + "id_car_serie": 5856, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30389, + "fields": { + "id_car_serie": 5856, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30397, + "fields": { + "id_car_serie": 5870, + "name": "2.2 4WD AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30430, + "fields": { + "id_car_serie": 5878, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30432, + "fields": { + "id_car_serie": 5878, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30433, + "fields": { + "id_car_serie": 5878, + "name": "1.6 AT (83 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30435, + "fields": { + "id_car_serie": 5878, + "name": "1.6 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30437, + "fields": { + "id_car_serie": 5878, + "name": "1.6 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30465, + "fields": { + "id_car_serie": 5902, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 30479, + "fields": { + "id_car_serie": 5904, + "name": "1.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30480, + "fields": { + "id_car_serie": 5906, + "name": "1.0 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 30482, + "fields": { + "id_car_serie": 5906, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 30484, + "fields": { + "id_car_serie": 5908, + "name": "4.2 AT (178 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30485, + "fields": { + "id_car_serie": 5910, + "name": "4.0 AT (241 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30487, + "fields": { + "id_car_serie": 5910, + "name": "4.0 MT (241 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30489, + "fields": { + "id_car_serie": 5910, + "name": "6.0 MT (318 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30490, + "fields": { + "id_car_serie": 5911, + "name": "4.0 AT (284 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30492, + "fields": { + "id_car_serie": 5907, + "name": "1.0 AT (59 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30494, + "fields": { + "id_car_serie": 5907, + "name": "1.0 MT (59 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30502, + "fields": { + "id_car_serie": 5907, + "name": "1.3 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30504, + "fields": { + "id_car_serie": 5907, + "name": "1.3 MT (140 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30509, + "fields": { + "id_car_serie": 5909, + "name": "2.8 AT (149 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30510, + "fields": { + "id_car_serie": 5909, + "name": "2.8 MT (149 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30511, + "fields": { + "id_car_serie": 5909, + "name": "3.4 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30512, + "fields": { + "id_car_serie": 5909, + "name": "3.4 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30515, + "fields": { + "id_car_serie": 5909, + "name": "4.2 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30516, + "fields": { + "id_car_serie": 5909, + "name": "4.2 AT (178 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30517, + "fields": { + "id_car_serie": 5909, + "name": "4.2 AT (186 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30520, + "fields": { + "id_car_serie": 5909, + "name": "4.2 MT (173 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30521, + "fields": { + "id_car_serie": 5909, + "name": "4.2 MT (186 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30522, + "fields": { + "id_car_serie": 5909, + "name": "4.2 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30525, + "fields": { + "id_car_serie": 5909, + "name": "5.3 AT (268 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30526, + "fields": { + "id_car_serie": 5909, + "name": "5.3 AT (295 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30527, + "fields": { + "id_car_serie": 5909, + "name": "5.3 MT (253 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30530, + "fields": { + "id_car_serie": 5913, + "name": "3.6 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30532, + "fields": { + "id_car_serie": 5913, + "name": "4.0 AT (222 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30533, + "fields": { + "id_car_serie": 5913, + "name": "4.0 MT (222 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30534, + "fields": { + "id_car_serie": 5913, + "name": "6.0 AT (311 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30537, + "fields": { + "id_car_serie": 5918, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30540, + "fields": { + "id_car_serie": 5898, + "name": "1.0 AT 4WD (56 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30542, + "fields": { + "id_car_serie": 5898, + "name": "1.0 MT 4WD (56 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30543, + "fields": { + "id_car_serie": 5898, + "name": "1.3 AT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30545, + "fields": { + "id_car_serie": 5898, + "name": "1.3 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30553, + "fields": { + "id_car_serie": 5912, + "name": "4.2 AT (400 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30558, + "fields": { + "id_car_serie": 5922, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 30565, + "fields": { + "id_car_serie": 5936, + "name": "2.2 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30567, + "fields": { + "id_car_serie": 5936, + "name": "2.2 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30568, + "fields": { + "id_car_serie": 5936, + "name": "2.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30570, + "fields": { + "id_car_serie": 5936, + "name": "2.6 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30598, + "fields": { + "id_car_serie": 5942, + "name": "1.6 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30600, + "fields": { + "id_car_serie": 5942, + "name": "2.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30603, + "fields": { + "id_car_serie": 5938, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30605, + "fields": { + "id_car_serie": 5938, + "name": "2.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30609, + "fields": { + "id_car_serie": 5938, + "name": "2.4 CVT (174 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30634, + "fields": { + "id_car_serie": 5947, + "name": "5.9 MT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30683, + "fields": { + "id_car_serie": 5956, + "name": "3.5 AT (214 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30723, + "fields": { + "id_car_serie": 5961, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30750, + "fields": { + "id_car_serie": 5964, + "name": "8.3 AT (510 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30791, + "fields": { + "id_car_serie": 5968, + "name": "3.7 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30792, + "fields": { + "id_car_serie": 5968, + "name": "3.9 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30795, + "fields": { + "id_car_serie": 5968, + "name": "5.2 MT (235 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30797, + "fields": { + "id_car_serie": 5968, + "name": "5.6 MT (230 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30799, + "fields": { + "id_car_serie": 5968, + "name": "5.7 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30801, + "fields": { + "id_car_serie": 5968, + "name": "5.9 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30803, + "fields": { + "id_car_serie": 5968, + "name": "5.9 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30805, + "fields": { + "id_car_serie": 5969, + "name": "3.7 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30807, + "fields": { + "id_car_serie": 5969, + "name": "3.9 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30809, + "fields": { + "id_car_serie": 5969, + "name": "5.2 AT (235 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30811, + "fields": { + "id_car_serie": 5969, + "name": "5.6 AT (230 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30813, + "fields": { + "id_car_serie": 5969, + "name": "5.7 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30814, + "fields": { + "id_car_serie": 5969, + "name": "5.7 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30817, + "fields": { + "id_car_serie": 5969, + "name": "5.9 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30818, + "fields": { + "id_car_serie": 5969, + "name": "5.9 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30821, + "fields": { + "id_car_serie": 5971, + "name": "5.2 MT (172 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30822, + "fields": { + "id_car_serie": 5971, + "name": "5.9 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30853, + "fields": { + "id_car_serie": 5970, + "name": "5.2 MT (172 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30857, + "fields": { + "id_car_serie": 5980, + "name": "8.0 MT (450 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30861, + "fields": { + "id_car_serie": 5960, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30863, + "fields": { + "id_car_serie": 5979, + "name": "8.3 MT (507 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30867, + "fields": { + "id_car_serie": 5985, + "name": "2.4 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30870, + "fields": { + "id_car_serie": 5982, + "name": "8.0 MT (406 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30897, + "fields": { + "id_car_serie": 5986, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30935, + "fields": { + "id_car_serie": 6030, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30937, + "fields": { + "id_car_serie": 6030, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30947, + "fields": { + "id_car_serie": 6035, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30949, + "fields": { + "id_car_serie": 6035, + "name": "2.0 MT (154 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30951, + "fields": { + "id_car_serie": 6035, + "name": "2.0 MT Turbo (220 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30955, + "fields": { + "id_car_serie": 6034, + "name": "0.9 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30957, + "fields": { + "id_car_serie": 6034, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30959, + "fields": { + "id_car_serie": 6037, + "name": "1.4 MT (77 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 30965, + "fields": { + "id_car_serie": 6033, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30969, + "fields": { + "id_car_serie": 6033, + "name": "1.9 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30971, + "fields": { + "id_car_serie": 6033, + "name": "1.9 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30973, + "fields": { + "id_car_serie": 6033, + "name": "2.0 MT (154 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30975, + "fields": { + "id_car_serie": 6038, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30977, + "fields": { + "id_car_serie": 6038, + "name": "1.9 D MT (63 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 30981, + "fields": { + "id_car_serie": 6041, + "name": "1.3 D MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 30983, + "fields": { + "id_car_serie": 6041, + "name": "1.4 AT (77 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 30985, + "fields": { + "id_car_serie": 6041, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 30987, + "fields": { + "id_car_serie": 6041, + "name": "1.9 D MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 30991, + "fields": { + "id_car_serie": 6043, + "name": "1.9 D MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31026, + "fields": { + "id_car_serie": 6050, + "name": "1.4 AMT (77 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31055, + "fields": { + "id_car_serie": 6049, + "name": "1.4 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31058, + "fields": { + "id_car_serie": 6053, + "name": "1.2 CVT (80 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31059, + "fields": { + "id_car_serie": 6053, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31062, + "fields": { + "id_car_serie": 6053, + "name": "1.9 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31063, + "fields": { + "id_car_serie": 6055, + "name": "1.2 CVT (60 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31064, + "fields": { + "id_car_serie": 6055, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31083, + "fields": { + "id_car_serie": 6054, + "name": "1.2 CVT (80 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31084, + "fields": { + "id_car_serie": 6054, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31087, + "fields": { + "id_car_serie": 6054, + "name": "1.9 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31115, + "fields": { + "id_car_serie": 6056, + "name": "1.2 MT (74 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31121, + "fields": { + "id_car_serie": 6056, + "name": "1.7 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31155, + "fields": { + "id_car_serie": 6075, + "name": "5.8 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31159, + "fields": { + "id_car_serie": 6074, + "name": "5.8 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31161, + "fields": { + "id_car_serie": 6078, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31163, + "fields": { + "id_car_serie": 6078, + "name": "1.6 TDCi MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31165, + "fields": { + "id_car_serie": 6078, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31167, + "fields": { + "id_car_serie": 6078, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31169, + "fields": { + "id_car_serie": 6078, + "name": "2.0 TDCi DPF MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31171, + "fields": { + "id_car_serie": 6076, + "name": "4.7 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1966, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31173, + "fields": { + "id_car_serie": 6082, + "name": "4.6 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31178, + "fields": { + "id_car_serie": 6077, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31180, + "fields": { + "id_car_serie": 6077, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31183, + "fields": { + "id_car_serie": 6077, + "name": "2.0 TDCi AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31193, + "fields": { + "id_car_serie": 6087, + "name": "2.0 MT (127 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31202, + "fields": { + "id_car_serie": 6087, + "name": "3.0 AT (201 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31204, + "fields": { + "id_car_serie": 6089, + "name": "1.8 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31207, + "fields": { + "id_car_serie": 6091, + "name": "1.8 AT (128 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31208, + "fields": { + "id_car_serie": 6091, + "name": "1.8 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31220, + "fields": { + "id_car_serie": 6088, + "name": "1.8 AT (128 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31223, + "fields": { + "id_car_serie": 6088, + "name": "1.9 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31224, + "fields": { + "id_car_serie": 6092, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31227, + "fields": { + "id_car_serie": 6092, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31228, + "fields": { + "id_car_serie": 6092, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31229, + "fields": { + "id_car_serie": 6092, + "name": "1.8 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31247, + "fields": { + "id_car_serie": 6096, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31251, + "fields": { + "id_car_serie": 6096, + "name": "1.6 MT 4X4 (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31263, + "fields": { + "id_car_serie": 6093, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31265, + "fields": { + "id_car_serie": 6093, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31271, + "fields": { + "id_car_serie": 6095, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31279, + "fields": { + "id_car_serie": 6099, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31281, + "fields": { + "id_car_serie": 6099, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31305, + "fields": { + "id_car_serie": 6098, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31307, + "fields": { + "id_car_serie": 6100, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31309, + "fields": { + "id_car_serie": 6100, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31325, + "fields": { + "id_car_serie": 6105, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31327, + "fields": { + "id_car_serie": 6105, + "name": "1.6 AT (79 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31329, + "fields": { + "id_car_serie": 6105, + "name": "1.6 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31331, + "fields": { + "id_car_serie": 6090, + "name": "1.8 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31333, + "fields": { + "id_car_serie": 6090, + "name": "1.9 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31337, + "fields": { + "id_car_serie": 6103, + "name": "1.3 4MT (63 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31339, + "fields": { + "id_car_serie": 6103, + "name": "1.4 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31341, + "fields": { + "id_car_serie": 6103, + "name": "1.6 MT (74 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31342, + "fields": { + "id_car_serie": 6103, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31345, + "fields": { + "id_car_serie": 6106, + "name": "1.1 4MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31347, + "fields": { + "id_car_serie": 6106, + "name": "1.1 MT (59 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31349, + "fields": { + "id_car_serie": 6106, + "name": "1.6 AT (79 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31353, + "fields": { + "id_car_serie": 6106, + "name": "1.6 4MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31355, + "fields": { + "id_car_serie": 6106, + "name": "1.6 5MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31357, + "fields": { + "id_car_serie": 6109, + "name": "1.3 4MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31359, + "fields": { + "id_car_serie": 6110, + "name": "1.1 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31361, + "fields": { + "id_car_serie": 6110, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31363, + "fields": { + "id_car_serie": 6110, + "name": "1.3 MT (66 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31365, + "fields": { + "id_car_serie": 6110, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31369, + "fields": { + "id_car_serie": 6102, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31371, + "fields": { + "id_car_serie": 6102, + "name": "1.6 MT XR3i (102 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31373, + "fields": { + "id_car_serie": 6111, + "name": "1.1 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31375, + "fields": { + "id_car_serie": 6115, + "name": "4.6 AT (232 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31377, + "fields": { + "id_car_serie": 6115, + "name": "5.4 AT (260 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31379, + "fields": { + "id_car_serie": 6115, + "name": "5.4 AT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31381, + "fields": { + "id_car_serie": 6107, + "name": "1.6 MT XR3i (110 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31383, + "fields": { + "id_car_serie": 6112, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31385, + "fields": { + "id_car_serie": 6112, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31413, + "fields": { + "id_car_serie": 6119, + "name": "4.0 5AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31415, + "fields": { + "id_car_serie": 6119, + "name": "4.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31417, + "fields": { + "id_car_serie": 6119, + "name": "4.0 MT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31429, + "fields": { + "id_car_serie": 6116, + "name": "4.6 AT (232 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31431, + "fields": { + "id_car_serie": 6116, + "name": "4.6 AT AWD (232 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31433, + "fields": { + "id_car_serie": 6116, + "name": "5.4 AT (260 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31435, + "fields": { + "id_car_serie": 6116, + "name": "5.4 AT AWD (260 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31448, + "fields": { + "id_car_serie": 6122, + "name": "4.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31449, + "fields": { + "id_car_serie": 6122, + "name": "4.0 MT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31456, + "fields": { + "id_car_serie": 6121, + "name": "4.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31457, + "fields": { + "id_car_serie": 6121, + "name": "4.0 AT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31503, + "fields": { + "id_car_serie": 6134, + "name": "1.4 AT (96 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31505, + "fields": { + "id_car_serie": 6134, + "name": "1.4 MT (96 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31507, + "fields": { + "id_car_serie": 6134, + "name": "1.6 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31523, + "fields": { + "id_car_serie": 6136, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31525, + "fields": { + "id_car_serie": 6136, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31527, + "fields": { + "id_car_serie": 6136, + "name": "1.4 TDCi MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31533, + "fields": { + "id_car_serie": 6138, + "name": "1.3 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31535, + "fields": { + "id_car_serie": 6138, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31537, + "fields": { + "id_car_serie": 6138, + "name": "1.8 D MT (59 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31541, + "fields": { + "id_car_serie": 6140, + "name": "1.4 MT (74 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31547, + "fields": { + "id_car_serie": 6140, + "name": "1.8 D MT (59 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31555, + "fields": { + "id_car_serie": 6141, + "name": "1.1 5MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31569, + "fields": { + "id_car_serie": 6141, + "name": "1.8 D MT (59 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31571, + "fields": { + "id_car_serie": 6143, + "name": "1.0 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31573, + "fields": { + "id_car_serie": 6143, + "name": "1.1 Economy MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31575, + "fields": { + "id_car_serie": 6143, + "name": "1.6 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31577, + "fields": { + "id_car_serie": 6145, + "name": "3.5 AT AWD (265 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31589, + "fields": { + "id_car_serie": 6142, + "name": "1.0 5MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31591, + "fields": { + "id_car_serie": 6142, + "name": "1.1 S MT (52 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31593, + "fields": { + "id_car_serie": 6142, + "name": "1.4 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31595, + "fields": { + "id_car_serie": 6142, + "name": "1.4 MT (74 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31599, + "fields": { + "id_car_serie": 6142, + "name": "1.6 D MT (53 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31601, + "fields": { + "id_car_serie": 6146, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31603, + "fields": { + "id_car_serie": 6146, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31605, + "fields": { + "id_car_serie": 6146, + "name": "1.6 TDCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31607, + "fields": { + "id_car_serie": 6146, + "name": "1.8 TDCi MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31609, + "fields": { + "id_car_serie": 6146, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31619, + "fields": { + "id_car_serie": 6139, + "name": "1.3 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31621, + "fields": { + "id_car_serie": 6139, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31623, + "fields": { + "id_car_serie": 6139, + "name": "1.8 D MT (59 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31625, + "fields": { + "id_car_serie": 6147, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31627, + "fields": { + "id_car_serie": 6147, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31629, + "fields": { + "id_car_serie": 6147, + "name": "1.6 TDCi ECOnetic MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31631, + "fields": { + "id_car_serie": 6147, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31633, + "fields": { + "id_car_serie": 6147, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31635, + "fields": { + "id_car_serie": 6147, + "name": "2.0 TDCi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31726, + "fields": { + "id_car_serie": 6097, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31727, + "fields": { + "id_car_serie": 6097, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31731, + "fields": { + "id_car_serie": 6162, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31733, + "fields": { + "id_car_serie": 6162, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31736, + "fields": { + "id_car_serie": 6162, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31737, + "fields": { + "id_car_serie": 6162, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31739, + "fields": { + "id_car_serie": 6162, + "name": "1.8 TDDi AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31740, + "fields": { + "id_car_serie": 6162, + "name": "1.8 TDDi MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31744, + "fields": { + "id_car_serie": 6162, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31745, + "fields": { + "id_car_serie": 6155, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31747, + "fields": { + "id_car_serie": 6155, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31749, + "fields": { + "id_car_serie": 6155, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31752, + "fields": { + "id_car_serie": 6155, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31753, + "fields": { + "id_car_serie": 6155, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31756, + "fields": { + "id_car_serie": 6155, + "name": "1.8 TDCi MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31757, + "fields": { + "id_car_serie": 6155, + "name": "1.8 TDDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31758, + "fields": { + "id_car_serie": 6155, + "name": "1.8 TDDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31759, + "fields": { + "id_car_serie": 6155, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31773, + "fields": { + "id_car_serie": 6170, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31774, + "fields": { + "id_car_serie": 6170, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31775, + "fields": { + "id_car_serie": 6170, + "name": "1.8 TDi AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31776, + "fields": { + "id_car_serie": 6170, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31777, + "fields": { + "id_car_serie": 6170, + "name": "1.8 TDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31779, + "fields": { + "id_car_serie": 6170, + "name": "1.8 TDCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31780, + "fields": { + "id_car_serie": 6170, + "name": "1.8 TDCi MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31781, + "fields": { + "id_car_serie": 6170, + "name": "2.0 AT (111 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31782, + "fields": { + "id_car_serie": 6170, + "name": "2.0i AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31788, + "fields": { + "id_car_serie": 6157, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31791, + "fields": { + "id_car_serie": 6157, + "name": "1.6 TDCi MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31792, + "fields": { + "id_car_serie": 6157, + "name": "1.6 TDCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31806, + "fields": { + "id_car_serie": 6172, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31809, + "fields": { + "id_car_serie": 6172, + "name": "1.8 MT TDCi (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31811, + "fields": { + "id_car_serie": 6172, + "name": "1.8 MT TDDi (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31814, + "fields": { + "id_car_serie": 6172, + "name": "1.8 MT TDDi (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31816, + "fields": { + "id_car_serie": 6172, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31819, + "fields": { + "id_car_serie": 6173, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31821, + "fields": { + "id_car_serie": 6173, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31822, + "fields": { + "id_car_serie": 6173, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31823, + "fields": { + "id_car_serie": 6173, + "name": "1.8 Di AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31825, + "fields": { + "id_car_serie": 6173, + "name": "1.8 MT TDDi (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31827, + "fields": { + "id_car_serie": 6173, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31828, + "fields": { + "id_car_serie": 6173, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31841, + "fields": { + "id_car_serie": 6171, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31842, + "fields": { + "id_car_serie": 6171, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31848, + "fields": { + "id_car_serie": 6171, + "name": "2.0 TDCi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31849, + "fields": { + "id_car_serie": 6176, + "name": "2.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31862, + "fields": { + "id_car_serie": 6178, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31864, + "fields": { + "id_car_serie": 6178, + "name": "2.0 TDCi DuraShift (130 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31867, + "fields": { + "id_car_serie": 6178, + "name": "2.0 TDCi MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31868, + "fields": { + "id_car_serie": 6178, + "name": "2.2 TDCi MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31881, + "fields": { + "id_car_serie": 6179, + "name": "1.9 TDi AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31883, + "fields": { + "id_car_serie": 6179, + "name": "1.9 TDi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31884, + "fields": { + "id_car_serie": 6179, + "name": "1.9 TDi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31886, + "fields": { + "id_car_serie": 6179, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31887, + "fields": { + "id_car_serie": 6179, + "name": "2.3 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31890, + "fields": { + "id_car_serie": 6179, + "name": "2.8 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31891, + "fields": { + "id_car_serie": 6184, + "name": "2.3 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31896, + "fields": { + "id_car_serie": 6188, + "name": "2.5T MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31912, + "fields": { + "id_car_serie": 6180, + "name": "1.9 TDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31913, + "fields": { + "id_car_serie": 6180, + "name": "1.9 TDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31914, + "fields": { + "id_car_serie": 6180, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31916, + "fields": { + "id_car_serie": 6180, + "name": "2.3 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31917, + "fields": { + "id_car_serie": 6180, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31918, + "fields": { + "id_car_serie": 6180, + "name": "2.8 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31921, + "fields": { + "id_car_serie": 6180, + "name": "2.8 MT (174 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31923, + "fields": { + "id_car_serie": 6189, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31924, + "fields": { + "id_car_serie": 6189, + "name": "1.8 TDCi 5MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31925, + "fields": { + "id_car_serie": 6189, + "name": "1.8 TDCi 6MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31926, + "fields": { + "id_car_serie": 6189, + "name": "2.5T MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31929, + "fields": { + "id_car_serie": 6189, + "name": "2.0 TDCi DPF AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31932, + "fields": { + "id_car_serie": 6189, + "name": "2.0 TDCi DPF MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31933, + "fields": { + "id_car_serie": 6189, + "name": "2.2 TDCi DPF MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31934, + "fields": { + "id_car_serie": 6189, + "name": "2.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31938, + "fields": { + "id_car_serie": 6190, + "name": "1.8 TDCi 5MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31939, + "fields": { + "id_car_serie": 6190, + "name": "1.8 TDCi 6MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31942, + "fields": { + "id_car_serie": 6190, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31943, + "fields": { + "id_car_serie": 6190, + "name": "2.0 TDCi DPF AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31944, + "fields": { + "id_car_serie": 6190, + "name": "2.0 TDCi DPF AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31945, + "fields": { + "id_car_serie": 6190, + "name": "2.0 TDCi DPF MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31946, + "fields": { + "id_car_serie": 6190, + "name": "2.0 TDCi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31947, + "fields": { + "id_car_serie": 6190, + "name": "2.2 TDCi DPF MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31948, + "fields": { + "id_car_serie": 6190, + "name": "2.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31951, + "fields": { + "id_car_serie": 6193, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31953, + "fields": { + "id_car_serie": 6193, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31954, + "fields": { + "id_car_serie": 6193, + "name": "2.0 TDCi AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31955, + "fields": { + "id_car_serie": 6193, + "name": "2.0 TDCi AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31956, + "fields": { + "id_car_serie": 6193, + "name": "2.0 Di MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31957, + "fields": { + "id_car_serie": 6193, + "name": "2.0 TDCi 5MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31958, + "fields": { + "id_car_serie": 6193, + "name": "2.0 Di MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31960, + "fields": { + "id_car_serie": 6193, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31973, + "fields": { + "id_car_serie": 6191, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31977, + "fields": { + "id_car_serie": 45146, + "name": "2.0 TDCi AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31978, + "fields": { + "id_car_serie": 45146, + "name": "2.0 TDCi AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31979, + "fields": { + "id_car_serie": 6191, + "name": "2.0 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31980, + "fields": { + "id_car_serie": 6191, + "name": "2.0 TDCi 5MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31981, + "fields": { + "id_car_serie": 6191, + "name": "2.0 TDDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31983, + "fields": { + "id_car_serie": 6191, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31989, + "fields": { + "id_car_serie": 6196, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31991, + "fields": { + "id_car_serie": 6196, + "name": "1.8 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31992, + "fields": { + "id_car_serie": 6196, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31995, + "fields": { + "id_car_serie": 6196, + "name": "2.5 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 31998, + "fields": { + "id_car_serie": 6197, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32000, + "fields": { + "id_car_serie": 6197, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32003, + "fields": { + "id_car_serie": 6197, + "name": "1.8 TD MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32004, + "fields": { + "id_car_serie": 6197, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32007, + "fields": { + "id_car_serie": 6197, + "name": "2.0 4x4 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32008, + "fields": { + "id_car_serie": 6197, + "name": "2.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32022, + "fields": { + "id_car_serie": 6199, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32023, + "fields": { + "id_car_serie": 6199, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32026, + "fields": { + "id_car_serie": 6199, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32030, + "fields": { + "id_car_serie": 6199, + "name": "2.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32031, + "fields": { + "id_car_serie": 6199, + "name": "2.5 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32034, + "fields": { + "id_car_serie": 6200, + "name": "3.7 AT (305 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 32053, + "fields": { + "id_car_serie": 6195, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32054, + "fields": { + "id_car_serie": 6195, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32058, + "fields": { + "id_car_serie": 6195, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32059, + "fields": { + "id_car_serie": 6195, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32068, + "fields": { + "id_car_serie": 6201, + "name": "GT 4.6 MT (304 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32069, + "fields": { + "id_car_serie": 6202, + "name": "3.7 AT (309 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32072, + "fields": { + "id_car_serie": 6202, + "name": "4.0 AT (213 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32076, + "fields": { + "id_car_serie": 6202, + "name": "GT 4.6 AT (304 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32080, + "fields": { + "id_car_serie": 6202, + "name": "GT 5.0 AT (418 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32132, + "fields": { + "id_car_serie": 6210, + "name": "4.0 MT 4x4 (210 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32141, + "fields": { + "id_car_serie": 6218, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32144, + "fields": { + "id_car_serie": 6219, + "name": "1.5 MT (74 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32182, + "fields": { + "id_car_serie": 6232, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32263, + "fields": { + "id_car_serie": 6251, + "name": "XL 2500 6.0 AT (304 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32282, + "fields": { + "id_car_serie": 6260, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 32285, + "fields": { + "id_car_serie": 6257, + "name": "1.3 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 32286, + "fields": { + "id_car_serie": 6263, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 32289, + "fields": { + "id_car_serie": 6264, + "name": "2.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32299, + "fields": { + "id_car_serie": 6262, + "name": "2.2 MT 2WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32300, + "fields": { + "id_car_serie": 6262, + "name": "2.2 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32304, + "fields": { + "id_car_serie": 6271, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 32317, + "fields": { + "id_car_serie": 6273, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 32318, + "fields": { + "id_car_serie": 6273, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 32324, + "fields": { + "id_car_serie": 6281, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32325, + "fields": { + "id_car_serie": 6282, + "name": "3.8 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32372, + "fields": { + "id_car_serie": 6297, + "name": "2.2 i-DTEC AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32373, + "fields": { + "id_car_serie": 6297, + "name": "2.2 i-DTEC MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32374, + "fields": { + "id_car_serie": 6297, + "name": "Type S 2.4 AT (201 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32378, + "fields": { + "id_car_serie": 6298, + "name": "2.2 i-DTEC AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32389, + "fields": { + "id_car_serie": 6274, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 32393, + "fields": { + "id_car_serie": 6300, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32396, + "fields": { + "id_car_serie": 6300, + "name": "Type S 2.4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32409, + "fields": { + "id_car_serie": 6304, + "name": "2.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32416, + "fields": { + "id_car_serie": 6302, + "name": "2.4 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32445, + "fields": { + "id_car_serie": 6311, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32451, + "fields": { + "id_car_serie": 6315, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32455, + "fields": { + "id_car_serie": 6294, + "name": "3.8 AT (224 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32456, + "fields": { + "id_car_serie": 6294, + "name": "3.8 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32457, + "fields": { + "id_car_serie": 6294, + "name": "5.0 MT (243 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32458, + "fields": { + "id_car_serie": 6294, + "name": "5.0 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32472, + "fields": { + "id_car_serie": 6313, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32484, + "fields": { + "id_car_serie": 6314, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32485, + "fields": { + "id_car_serie": 6316, + "name": "1.6 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32486, + "fields": { + "id_car_serie": 6316, + "name": "1.6 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32487, + "fields": { + "id_car_serie": 6316, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32490, + "fields": { + "id_car_serie": 6316, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32523, + "fields": { + "id_car_serie": 6322, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32527, + "fields": { + "id_car_serie": 6326, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32528, + "fields": { + "id_car_serie": 6326, + "name": "1.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32531, + "fields": { + "id_car_serie": 6326, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32532, + "fields": { + "id_car_serie": 6326, + "name": "1.5 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32533, + "fields": { + "id_car_serie": 6326, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32538, + "fields": { + "id_car_serie": 6326, + "name": "1.6 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32543, + "fields": { + "id_car_serie": 6326, + "name": "1.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32545, + "fields": { + "id_car_serie": 6325, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32548, + "fields": { + "id_car_serie": 6325, + "name": "1.5 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32549, + "fields": { + "id_car_serie": 6325, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32555, + "fields": { + "id_car_serie": 6325, + "name": "1.6 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32560, + "fields": { + "id_car_serie": 6325, + "name": "1.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32577, + "fields": { + "id_car_serie": 6317, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32592, + "fields": { + "id_car_serie": 6338, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32593, + "fields": { + "id_car_serie": 6338, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32595, + "fields": { + "id_car_serie": 6338, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32597, + "fields": { + "id_car_serie": 6338, + "name": "1.7 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32599, + "fields": { + "id_car_serie": 6329, + "name": "1.6 i-DTEC MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 32626, + "fields": { + "id_car_serie": 6344, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32631, + "fields": { + "id_car_serie": 6339, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32632, + "fields": { + "id_car_serie": 6339, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32633, + "fields": { + "id_car_serie": 6339, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32639, + "fields": { + "id_car_serie": 6339, + "name": "1.6 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32658, + "fields": { + "id_car_serie": 6339, + "name": "1.5 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32661, + "fields": { + "id_car_serie": 6339, + "name": "1.6 CVT (114 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32663, + "fields": { + "id_car_serie": 6339, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32664, + "fields": { + "id_car_serie": 6347, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32665, + "fields": { + "id_car_serie": 6347, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32666, + "fields": { + "id_car_serie": 6347, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32667, + "fields": { + "id_car_serie": 6347, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32670, + "fields": { + "id_car_serie": 6347, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32671, + "fields": { + "id_car_serie": 6347, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32673, + "fields": { + "id_car_serie": 6348, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32674, + "fields": { + "id_car_serie": 6348, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32675, + "fields": { + "id_car_serie": 6348, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32684, + "fields": { + "id_car_serie": 6318, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32694, + "fields": { + "id_car_serie": 6349, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32695, + "fields": { + "id_car_serie": 6349, + "name": "1.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32713, + "fields": { + "id_car_serie": 6351, + "name": "1.5VEi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32718, + "fields": { + "id_car_serie": 6351, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32723, + "fields": { + "id_car_serie": 6356, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32731, + "fields": { + "id_car_serie": 6345, + "name": "1.7 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32733, + "fields": { + "id_car_serie": 6345, + "name": "1.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32735, + "fields": { + "id_car_serie": 6355, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32741, + "fields": { + "id_car_serie": 6358, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32743, + "fields": { + "id_car_serie": 6358, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32746, + "fields": { + "id_car_serie": 6358, + "name": "2.2 CTDi AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32747, + "fields": { + "id_car_serie": 6358, + "name": "2.2 CTDi MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32750, + "fields": { + "id_car_serie": 6358, + "name": "2.4 AT (166 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32757, + "fields": { + "id_car_serie": 6362, + "name": "1.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32762, + "fields": { + "id_car_serie": 6359, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32765, + "fields": { + "id_car_serie": 6359, + "name": "2.0 MT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32768, + "fields": { + "id_car_serie": 6359, + "name": "2.4 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32769, + "fields": { + "id_car_serie": 6359, + "name": "2.4 AT 4WD (162 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32772, + "fields": { + "id_car_serie": 6360, + "name": "2.0 AT (128 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32773, + "fields": { + "id_car_serie": 6360, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32782, + "fields": { + "id_car_serie": 6366, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32785, + "fields": { + "id_car_serie": 6366, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32787, + "fields": { + "id_car_serie": 6366, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32818, + "fields": { + "id_car_serie": 6365, + "name": "3.5 AT (275 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32819, + "fields": { + "id_car_serie": 6368, + "name": "2.4 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32820, + "fields": { + "id_car_serie": 6368, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32821, + "fields": { + "id_car_serie": 6368, + "name": "2.4 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32822, + "fields": { + "id_car_serie": 6368, + "name": "2.4 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32829, + "fields": { + "id_car_serie": 6379, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32832, + "fields": { + "id_car_serie": 6379, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32833, + "fields": { + "id_car_serie": 6379, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32838, + "fields": { + "id_car_serie": 6380, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32845, + "fields": { + "id_car_serie": 6372, + "name": "1.3 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32848, + "fields": { + "id_car_serie": 6372, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32856, + "fields": { + "id_car_serie": 6377, + "name": "1.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32860, + "fields": { + "id_car_serie": 6377, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32867, + "fields": { + "id_car_serie": 6378, + "name": "1.6 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32870, + "fields": { + "id_car_serie": 6378, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32874, + "fields": { + "id_car_serie": 6378, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32884, + "fields": { + "id_car_serie": 6389, + "name": "0.7 AT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32898, + "fields": { + "id_car_serie": 6381, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32901, + "fields": { + "id_car_serie": 6381, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32902, + "fields": { + "id_car_serie": 6394, + "name": "3.5 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32905, + "fields": { + "id_car_serie": 6400, + "name": "3.2 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32906, + "fields": { + "id_car_serie": 6400, + "name": "3.2 AT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32907, + "fields": { + "id_car_serie": 6400, + "name": "3.2 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32910, + "fields": { + "id_car_serie": 6399, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32911, + "fields": { + "id_car_serie": 6399, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32913, + "fields": { + "id_car_serie": 6399, + "name": "1.6 AT 4WD 5 places (120 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32914, + "fields": { + "id_car_serie": 6399, + "name": "1.6 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32916, + "fields": { + "id_car_serie": 6402, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32917, + "fields": { + "id_car_serie": 6402, + "name": "2.2 AT 4WS (200 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32920, + "fields": { + "id_car_serie": 6402, + "name": "2.3 MT 4WS (160 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32928, + "fields": { + "id_car_serie": 6404, + "name": "1.8 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32931, + "fields": { + "id_car_serie": 6404, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32936, + "fields": { + "id_car_serie": 6411, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32937, + "fields": { + "id_car_serie": 6411, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32971, + "fields": { + "id_car_serie": 6421, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32981, + "fields": { + "id_car_serie": 6431, + "name": "1.3 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32983, + "fields": { + "id_car_serie": 6431, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32986, + "fields": { + "id_car_serie": 6431, + "name": "1.5 TDI MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32993, + "fields": { + "id_car_serie": 6432, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 32997, + "fields": { + "id_car_serie": 6432, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33000, + "fields": { + "id_car_serie": 6434, + "name": "1.3 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33001, + "fields": { + "id_car_serie": 6434, + "name": "1.3 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33004, + "fields": { + "id_car_serie": 6434, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33006, + "fields": { + "id_car_serie": 6434, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33009, + "fields": { + "id_car_serie": 6435, + "name": "1.3 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33011, + "fields": { + "id_car_serie": 6435, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33014, + "fields": { + "id_car_serie": 6435, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33016, + "fields": { + "id_car_serie": 6430, + "name": "1.4 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33019, + "fields": { + "id_car_serie": 6430, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33022, + "fields": { + "id_car_serie": 6433, + "name": "1.3 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33047, + "fields": { + "id_car_serie": 6436, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33050, + "fields": { + "id_car_serie": 6436, + "name": "1.5 AT (93 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33065, + "fields": { + "id_car_serie": 6443, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33071, + "fields": { + "id_car_serie": 6403, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33072, + "fields": { + "id_car_serie": 6403, + "name": "2.0 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33077, + "fields": { + "id_car_serie": 6403, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33086, + "fields": { + "id_car_serie": 6442, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33092, + "fields": { + "id_car_serie": 6442, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33094, + "fields": { + "id_car_serie": 6445, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33095, + "fields": { + "id_car_serie": 6445, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33097, + "fields": { + "id_car_serie": 6445, + "name": "1.6 CRDi MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33103, + "fields": { + "id_car_serie": 6447, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33106, + "fields": { + "id_car_serie": 6447, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33118, + "fields": { + "id_car_serie": 6448, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33121, + "fields": { + "id_car_serie": 6413, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33130, + "fields": { + "id_car_serie": 6449, + "name": "1.8 AT (128 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33133, + "fields": { + "id_car_serie": 6449, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33134, + "fields": { + "id_car_serie": 6449, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33141, + "fields": { + "id_car_serie": 6450, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33142, + "fields": { + "id_car_serie": 6450, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33143, + "fields": { + "id_car_serie": 6455, + "name": "1.1 AT (69 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33146, + "fields": { + "id_car_serie": 6455, + "name": "1.2 AT (78 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33150, + "fields": { + "id_car_serie": 6456, + "name": "1.6 CRDi AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33153, + "fields": { + "id_car_serie": 6457, + "name": "1.6 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33155, + "fields": { + "id_car_serie": 6457, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33187, + "fields": { + "id_car_serie": 6469, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33190, + "fields": { + "id_car_serie": 6469, + "name": "2.0 CRDi MT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33199, + "fields": { + "id_car_serie": 6469, + "name": "2.7 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33211, + "fields": { + "id_car_serie": 6446, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33223, + "fields": { + "id_car_serie": 6468, + "name": "2.2 CRDi AT (158 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33228, + "fields": { + "id_car_serie": 6468, + "name": "2.2 CRDi MT AWD (158 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33238, + "fields": { + "id_car_serie": 6468, + "name": "2.7 MT AWD (188 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33247, + "fields": { + "id_car_serie": 6473, + "name": "2.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33256, + "fields": { + "id_car_serie": 6452, + "name": "3.8 AT (334 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33259, + "fields": { + "id_car_serie": 6475, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33262, + "fields": { + "id_car_serie": 6475, + "name": "2.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33265, + "fields": { + "id_car_serie": 6476, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33268, + "fields": { + "id_car_serie": 6479, + "name": "2.4 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33271, + "fields": { + "id_car_serie": 6479, + "name": "2.4 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33274, + "fields": { + "id_car_serie": 6479, + "name": "2.4 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33277, + "fields": { + "id_car_serie": 6479, + "name": "2.5 TD AT (99 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33280, + "fields": { + "id_car_serie": 6479, + "name": "2.5 CRDi AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33283, + "fields": { + "id_car_serie": 6479, + "name": "2.5 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 33286, + "fields": { + "id_car_serie": 6479, + "name": "2.5 CRDi MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36212, + "fields": { + "id_car_serie": 7099, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36215, + "fields": { + "id_car_serie": 7101, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36219, + "fields": { + "id_car_serie": 7101, + "name": "2.0 TD MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36236, + "fields": { + "id_car_serie": 7105, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36238, + "fields": { + "id_car_serie": 7105, + "name": "0.7 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36240, + "fields": { + "id_car_serie": 7105, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36241, + "fields": { + "id_car_serie": 7105, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36256, + "fields": { + "id_car_serie": 7109, + "name": "3.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36257, + "fields": { + "id_car_serie": 7110, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36268, + "fields": { + "id_car_serie": 7112, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36269, + "fields": { + "id_car_serie": 7118, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36270, + "fields": { + "id_car_serie": 7118, + "name": "0.7 MT (52 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36283, + "fields": { + "id_car_serie": 7117, + "name": "3.3 AT (223 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36287, + "fields": { + "id_car_serie": 7120, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36288, + "fields": { + "id_car_serie": 7121, + "name": "1.0 AT (58 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36289, + "fields": { + "id_car_serie": 7121, + "name": "1.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36290, + "fields": { + "id_car_serie": 7121, + "name": "1.3 CVT (79 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36291, + "fields": { + "id_car_serie": 7121, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36296, + "fields": { + "id_car_serie": 7127, + "name": "4.4 MT (286 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36300, + "fields": { + "id_car_serie": 7132, + "name": "3.5 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36301, + "fields": { + "id_car_serie": 7132, + "name": "3.9 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36312, + "fields": { + "id_car_serie": 7128, + "name": "4.8 MT (368 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 36337, + "fields": { + "id_car_serie": 7137, + "name": "1.8 AT Turbo (169 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36338, + "fields": { + "id_car_serie": 7137, + "name": "1.8 MT Turbo (169 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36339, + "fields": { + "id_car_serie": 7145, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36342, + "fields": { + "id_car_serie": 7145, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36346, + "fields": { + "id_car_serie": 7145, + "name": "2.2 D MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36348, + "fields": { + "id_car_serie": 7146, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36351, + "fields": { + "id_car_serie": 7146, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36357, + "fields": { + "id_car_serie": 7149, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36358, + "fields": { + "id_car_serie": 7149, + "name": "1.4 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36360, + "fields": { + "id_car_serie": 7149, + "name": "1.6 AT (99 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36362, + "fields": { + "id_car_serie": 7149, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36364, + "fields": { + "id_car_serie": 7149, + "name": "2.0 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36366, + "fields": { + "id_car_serie": 7150, + "name": "1.4 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36368, + "fields": { + "id_car_serie": 7150, + "name": "1.6 AT (99 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36370, + "fields": { + "id_car_serie": 7150, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36371, + "fields": { + "id_car_serie": 7150, + "name": "2.0 GTi MT (143 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36372, + "fields": { + "id_car_serie": 7150, + "name": "2.0 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36387, + "fields": { + "id_car_serie": 7147, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36390, + "fields": { + "id_car_serie": 7147, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36392, + "fields": { + "id_car_serie": 7147, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36394, + "fields": { + "id_car_serie": 7147, + "name": "2.2 D MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36396, + "fields": { + "id_car_serie": 7153, + "name": "2.5 sVT (175 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36397, + "fields": { + "id_car_serie": 7153, + "name": "3.5 MT (270 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36398, + "fields": { + "id_car_serie": 7154, + "name": "2.5 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36399, + "fields": { + "id_car_serie": 7154, + "name": "2.5 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36400, + "fields": { + "id_car_serie": 7154, + "name": "3.5 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36402, + "fields": { + "id_car_serie": 7158, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36406, + "fields": { + "id_car_serie": 7158, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36409, + "fields": { + "id_car_serie": 7158, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36414, + "fields": { + "id_car_serie": 7158, + "name": "2.0 D MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36416, + "fields": { + "id_car_serie": 7158, + "name": "2.0 MT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36417, + "fields": { + "id_car_serie": 7158, + "name": "2.0 D AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36419, + "fields": { + "id_car_serie": 7148, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36420, + "fields": { + "id_car_serie": 7148, + "name": "1.4 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36422, + "fields": { + "id_car_serie": 7148, + "name": "1.6 AT (99 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36424, + "fields": { + "id_car_serie": 7148, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36426, + "fields": { + "id_car_serie": 7156, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36427, + "fields": { + "id_car_serie": 7156, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36428, + "fields": { + "id_car_serie": 7152, + "name": "2.5 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36429, + "fields": { + "id_car_serie": 7152, + "name": "2.5 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36430, + "fields": { + "id_car_serie": 7152, + "name": "3.5 MT (270 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36433, + "fields": { + "id_car_serie": 7162, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36435, + "fields": { + "id_car_serie": 7162, + "name": "1.8 SSS AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36436, + "fields": { + "id_car_serie": 7162, + "name": "1.8 SSS MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36437, + "fields": { + "id_car_serie": 7162, + "name": "1.8 SSS MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36438, + "fields": { + "id_car_serie": 7162, + "name": "2.0 SSS AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36440, + "fields": { + "id_car_serie": 7162, + "name": "2.0 T SSS AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36443, + "fields": { + "id_car_serie": 7162, + "name": "2.0 SSS MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36444, + "fields": { + "id_car_serie": 7162, + "name": "2.0 T SSS MT (210 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36447, + "fields": { + "id_car_serie": 7162, + "name": "2.0 TD AT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36449, + "fields": { + "id_car_serie": 7162, + "name": "2.0 TD MT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36457, + "fields": { + "id_car_serie": 7165, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36463, + "fields": { + "id_car_serie": 7165, + "name": "2.0 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36466, + "fields": { + "id_car_serie": 7165, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36470, + "fields": { + "id_car_serie": 7165, + "name": "2.0 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36473, + "fields": { + "id_car_serie": 7166, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36483, + "fields": { + "id_car_serie": 7166, + "name": "2.0 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36487, + "fields": { + "id_car_serie": 7166, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36492, + "fields": { + "id_car_serie": 7166, + "name": "2.0 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36500, + "fields": { + "id_car_serie": 7164, + "name": "1.6 AT (79 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36501, + "fields": { + "id_car_serie": 7164, + "name": "1.6 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36503, + "fields": { + "id_car_serie": 7164, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36505, + "fields": { + "id_car_serie": 7164, + "name": "1.8 SSS AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36506, + "fields": { + "id_car_serie": 7164, + "name": "1.8 T SSS AT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36507, + "fields": { + "id_car_serie": 7164, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36508, + "fields": { + "id_car_serie": 7164, + "name": "1.8 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36509, + "fields": { + "id_car_serie": 7164, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36510, + "fields": { + "id_car_serie": 7164, + "name": "1.8 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36513, + "fields": { + "id_car_serie": 7164, + "name": "1.8 SSS MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36514, + "fields": { + "id_car_serie": 7164, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36515, + "fields": { + "id_car_serie": 7164, + "name": "1.8 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36516, + "fields": { + "id_car_serie": 7164, + "name": "2.0 SSS AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36517, + "fields": { + "id_car_serie": 7164, + "name": "2.0 SSS AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36518, + "fields": { + "id_car_serie": 7164, + "name": "2.0 T SSS AT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36519, + "fields": { + "id_car_serie": 7164, + "name": "2.0 SSS MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36522, + "fields": { + "id_car_serie": 7164, + "name": "2.0 D AT (67 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36523, + "fields": { + "id_car_serie": 7164, + "name": "2.0 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36525, + "fields": { + "id_car_serie": 7167, + "name": "1.6 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36527, + "fields": { + "id_car_serie": 7167, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36551, + "fields": { + "id_car_serie": 7167, + "name": "2.0 D MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36567, + "fields": { + "id_car_serie": 7169, + "name": "1.8 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36580, + "fields": { + "id_car_serie": 7171, + "name": "1.8 T SSS MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36581, + "fields": { + "id_car_serie": 7171, + "name": "1.8 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36584, + "fields": { + "id_car_serie": 7174, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36587, + "fields": { + "id_car_serie": 7174, + "name": "3.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36589, + "fields": { + "id_car_serie": 7174, + "name": "3.0 Turbo AT (255 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36590, + "fields": { + "id_car_serie": 7175, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36595, + "fields": { + "id_car_serie": 7175, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36598, + "fields": { + "id_car_serie": 7175, + "name": "2.8 D AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36599, + "fields": { + "id_car_serie": 7175, + "name": "2.8 D MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36603, + "fields": { + "id_car_serie": 7163, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36604, + "fields": { + "id_car_serie": 7168, + "name": "1.6 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36605, + "fields": { + "id_car_serie": 7168, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36609, + "fields": { + "id_car_serie": 7168, + "name": "1.8 T SSS MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36611, + "fields": { + "id_car_serie": 7168, + "name": "1.8 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36612, + "fields": { + "id_car_serie": 7168, + "name": "2.0 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36613, + "fields": { + "id_car_serie": 7168, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36616, + "fields": { + "id_car_serie": 7168, + "name": "2.0 TD AT (79 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36621, + "fields": { + "id_car_serie": 7168, + "name": "2.0 TD MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36622, + "fields": { + "id_car_serie": 7168, + "name": "2.0 D AT (58 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36623, + "fields": { + "id_car_serie": 7168, + "name": "2.0 D AT (67 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36624, + "fields": { + "id_car_serie": 7168, + "name": "2.0 D MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36625, + "fields": { + "id_car_serie": 7168, + "name": "2.0 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36628, + "fields": { + "id_car_serie": 7176, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36629, + "fields": { + "id_car_serie": 7176, + "name": "2.0 LPG MT (123 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36630, + "fields": { + "id_car_serie": 7176, + "name": "2.8 D MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36633, + "fields": { + "id_car_serie": 7176, + "name": "3.0 MT (153 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36637, + "fields": { + "id_car_serie": 7177, + "name": "2.0 LPG AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36638, + "fields": { + "id_car_serie": 7177, + "name": "2.0 LPG MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36648, + "fields": { + "id_car_serie": 7172, + "name": "1.8 AT (103 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36650, + "fields": { + "id_car_serie": 7172, + "name": "1.8 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36652, + "fields": { + "id_car_serie": 7182, + "name": "1.2 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36656, + "fields": { + "id_car_serie": 7187, + "name": "1.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36657, + "fields": { + "id_car_serie": 7173, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36658, + "fields": { + "id_car_serie": 7173, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36659, + "fields": { + "id_car_serie": 7173, + "name": "2.5 Turbo 4WD AT (235 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36660, + "fields": { + "id_car_serie": 7173, + "name": "2.8 D AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36661, + "fields": { + "id_car_serie": 7173, + "name": "3.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36664, + "fields": { + "id_car_serie": 7186, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36665, + "fields": { + "id_car_serie": 7191, + "name": "1.4 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36666, + "fields": { + "id_car_serie": 7191, + "name": "1.4 AT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36669, + "fields": { + "id_car_serie": 7191, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36670, + "fields": { + "id_car_serie": 7191, + "name": "1.5 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36673, + "fields": { + "id_car_serie": 7192, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36674, + "fields": { + "id_car_serie": 7192, + "name": "1.3 AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36675, + "fields": { + "id_car_serie": 7192, + "name": "1.3 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36676, + "fields": { + "id_car_serie": 7178, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36677, + "fields": { + "id_car_serie": 7178, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36678, + "fields": { + "id_car_serie": 7185, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36679, + "fields": { + "id_car_serie": 7195, + "name": "2.5 AT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36682, + "fields": { + "id_car_serie": 7195, + "name": "3.5 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36686, + "fields": { + "id_car_serie": 7200, + "name": "2.5 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36687, + "fields": { + "id_car_serie": 7200, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36689, + "fields": { + "id_car_serie": 7200, + "name": "4.5 AT (333 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36699, + "fields": { + "id_car_serie": 7205, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36700, + "fields": { + "id_car_serie": 7205, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36714, + "fields": { + "id_car_serie": 7196, + "name": "3.0 TD AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36718, + "fields": { + "id_car_serie": 7196, + "name": "3.3 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36719, + "fields": { + "id_car_serie": 7196, + "name": "3.3 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36720, + "fields": { + "id_car_serie": 7196, + "name": "3.5 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36721, + "fields": { + "id_car_serie": 7196, + "name": "3.5 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36726, + "fields": { + "id_car_serie": 7212, + "name": "1.4 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36748, + "fields": { + "id_car_serie": 7215, + "name": "1.5 D MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36750, + "fields": { + "id_car_serie": 7216, + "name": "1.0 CVT (60 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36759, + "fields": { + "id_car_serie": 7216, + "name": "1.5 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36763, + "fields": { + "id_car_serie": 7217, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36773, + "fields": { + "id_car_serie": 7219, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36774, + "fields": { + "id_car_serie": 7219, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36776, + "fields": { + "id_car_serie": 7219, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36779, + "fields": { + "id_car_serie": 7219, + "name": "3.5 MT (255 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36791, + "fields": { + "id_car_serie": 7224, + "name": "1.2 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36792, + "fields": { + "id_car_serie": 7224, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36793, + "fields": { + "id_car_serie": 7224, + "name": "1.2 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36797, + "fields": { + "id_car_serie": 7214, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36798, + "fields": { + "id_car_serie": 7214, + "name": "1.4 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36799, + "fields": { + "id_car_serie": 7214, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36801, + "fields": { + "id_car_serie": 7214, + "name": "1.5 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36802, + "fields": { + "id_car_serie": 7218, + "name": "3.5 AT (268 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36803, + "fields": { + "id_car_serie": 7218, + "name": "3.5 MT (268 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36806, + "fields": { + "id_car_serie": 7226, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36807, + "fields": { + "id_car_serie": 7226, + "name": "1.2 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36808, + "fields": { + "id_car_serie": 7226, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36809, + "fields": { + "id_car_serie": 7226, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36810, + "fields": { + "id_car_serie": 7226, + "name": "1.4 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36811, + "fields": { + "id_car_serie": 7226, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36814, + "fields": { + "id_car_serie": 7226, + "name": "1.6 SR MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36816, + "fields": { + "id_car_serie": 48783, + "name": "1.0 CVT (60 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36818, + "fields": { + "id_car_serie": 48783, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36820, + "fields": { + "id_car_serie": 7229, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36823, + "fields": { + "id_car_serie": 48784, + "name": "1.5 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36824, + "fields": { + "id_car_serie": 7230, + "name": "1.0 AT (50 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36826, + "fields": { + "id_car_serie": 7230, + "name": "1.0i MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36828, + "fields": { + "id_car_serie": 7230, + "name": "1.2 AT (57 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36831, + "fields": { + "id_car_serie": 7230, + "name": "1.2 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36832, + "fields": { + "id_car_serie": 7221, + "name": "3.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36833, + "fields": { + "id_car_serie": 7221, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36836, + "fields": { + "id_car_serie": 7228, + "name": "1.0 CVT (60 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36838, + "fields": { + "id_car_serie": 7228, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36844, + "fields": { + "id_car_serie": 7234, + "name": "2.5 dCi AT (174 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36854, + "fields": { + "id_car_serie": 7236, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36855, + "fields": { + "id_car_serie": 7236, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36862, + "fields": { + "id_car_serie": 7240, + "name": "1.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36866, + "fields": { + "id_car_serie": 7240, + "name": "1.5 DCI MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36868, + "fields": { + "id_car_serie": 7240, + "name": "1.5 DCI MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36870, + "fields": { + "id_car_serie": 7240, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36871, + "fields": { + "id_car_serie": 7241, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 36872, + "fields": { + "id_car_serie": 7241, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 36873, + "fields": { + "id_car_serie": 7241, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 36874, + "fields": { + "id_car_serie": 7241, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 36876, + "fields": { + "id_car_serie": 7233, + "name": "3.5 Xtronic AWD (234 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36900, + "fields": { + "id_car_serie": 7245, + "name": "2.5 dCi Turbo AT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36902, + "fields": { + "id_car_serie": 7245, + "name": "2.5 dCi Turbo MT AWD 7 seats (190 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36903, + "fields": { + "id_car_serie": 7245, + "name": "2.5 dCi Turbo MT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36904, + "fields": { + "id_car_serie": 7245, + "name": "3.0 dCi Turbo AT AWD (231 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36908, + "fields": { + "id_car_serie": 7248, + "name": "2.4 4WD MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36910, + "fields": { + "id_car_serie": 7248, + "name": "2.7 TD 4WD AT (99 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36913, + "fields": { + "id_car_serie": 7248, + "name": "2.7 TD 4WD MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36919, + "fields": { + "id_car_serie": 7248, + "name": "3.0 4WD MT (148 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36920, + "fields": { + "id_car_serie": 7246, + "name": "2.5 dCi AT (174 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36922, + "fields": { + "id_car_serie": 7246, + "name": "2.5 dCi MT (174 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36926, + "fields": { + "id_car_serie": 7250, + "name": "2.8 TD MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36927, + "fields": { + "id_car_serie": 7250, + "name": "3.0 TD AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36929, + "fields": { + "id_car_serie": 7250, + "name": "3.0 TD MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36934, + "fields": { + "id_car_serie": 7250, + "name": "4.2 TD MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36935, + "fields": { + "id_car_serie": 7250, + "name": "4.5 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36936, + "fields": { + "id_car_serie": 7250, + "name": "4.5 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36940, + "fields": { + "id_car_serie": 7251, + "name": "2.8 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36946, + "fields": { + "id_car_serie": 7254, + "name": "2.8 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36948, + "fields": { + "id_car_serie": 7254, + "name": "2.8 D MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36953, + "fields": { + "id_car_serie": 7254, + "name": "3.3 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36956, + "fields": { + "id_car_serie": 7247, + "name": "2.7 TD 4WD MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36958, + "fields": { + "id_car_serie": 7247, + "name": "3.2 TD 4WD AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36962, + "fields": { + "id_car_serie": 7247, + "name": "3.5 4WD AT (243 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36964, + "fields": { + "id_car_serie": 7247, + "name": "3.5 4WD MT (253 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36966, + "fields": { + "id_car_serie": 7249, + "name": "3.0 Di AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36968, + "fields": { + "id_car_serie": 7249, + "name": "3.0 Di MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36970, + "fields": { + "id_car_serie": 7249, + "name": "4.2 D AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36972, + "fields": { + "id_car_serie": 7249, + "name": "4.2 D MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36974, + "fields": { + "id_car_serie": 7249, + "name": "4.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36975, + "fields": { + "id_car_serie": 7249, + "name": "4.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36985, + "fields": { + "id_car_serie": 7253, + "name": "2.8 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36993, + "fields": { + "id_car_serie": 7253, + "name": "3.3 D MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 36998, + "fields": { + "id_car_serie": 7260, + "name": "4.3 AT (193 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37000, + "fields": { + "id_car_serie": 7261, + "name": "4.3 AT AWD (203 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37001, + "fields": { + "id_car_serie": 7227, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37002, + "fields": { + "id_car_serie": 7227, + "name": "1.2 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37004, + "fields": { + "id_car_serie": 7227, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37006, + "fields": { + "id_car_serie": 7227, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37007, + "fields": { + "id_car_serie": 7227, + "name": "1.5 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37008, + "fields": { + "id_car_serie": 7227, + "name": "1.5 D MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37009, + "fields": { + "id_car_serie": 7227, + "name": "1.6 SR MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37010, + "fields": { + "id_car_serie": 7259, + "name": "4.0 AT (253 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37014, + "fields": { + "id_car_serie": 7266, + "name": "3.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37015, + "fields": { + "id_car_serie": 7266, + "name": "3.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37016, + "fields": { + "id_car_serie": 7266, + "name": "3.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37017, + "fields": { + "id_car_serie": 7266, + "name": "3.8 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37018, + "fields": { + "id_car_serie": 7266, + "name": "4.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37020, + "fields": { + "id_car_serie": 7269, + "name": "5.7 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37022, + "fields": { + "id_car_serie": 7269, + "name": "6.6 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37023, + "fields": { + "id_car_serie": 7239, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37025, + "fields": { + "id_car_serie": 7239, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37026, + "fields": { + "id_car_serie": 7239, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37028, + "fields": { + "id_car_serie": 7268, + "name": "5.7 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37030, + "fields": { + "id_car_serie": 7268, + "name": "6.6 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37031, + "fields": { + "id_car_serie": 7273, + "name": "1.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37033, + "fields": { + "id_car_serie": 7273, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37048, + "fields": { + "id_car_serie": 7267, + "name": "3.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37049, + "fields": { + "id_car_serie": 7267, + "name": "3.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37050, + "fields": { + "id_car_serie": 7267, + "name": "3.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37052, + "fields": { + "id_car_serie": 7267, + "name": "4.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37061, + "fields": { + "id_car_serie": 7279, + "name": "1.6 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37062, + "fields": { + "id_car_serie": 7279, + "name": "1.6 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37063, + "fields": { + "id_car_serie": 7279, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37064, + "fields": { + "id_car_serie": 7279, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37065, + "fields": { + "id_car_serie": 7279, + "name": "1.9 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37067, + "fields": { + "id_car_serie": 7282, + "name": "1.6 CDTI ecoFlex MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37069, + "fields": { + "id_car_serie": 7282, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37070, + "fields": { + "id_car_serie": 7282, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37071, + "fields": { + "id_car_serie": 7282, + "name": "1.6 CDTI ecoFlex MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37072, + "fields": { + "id_car_serie": 7282, + "name": "1.4 Turbo AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37073, + "fields": { + "id_car_serie": 7282, + "name": "1.4 Turbo ecoFLEX MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37075, + "fields": { + "id_car_serie": 7281, + "name": "1.4 Turbo AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37077, + "fields": { + "id_car_serie": 7281, + "name": "1.4 Turbo MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37079, + "fields": { + "id_car_serie": 7281, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37080, + "fields": { + "id_car_serie": 7281, + "name": "1.6 Turbo AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37081, + "fields": { + "id_car_serie": 7281, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37083, + "fields": { + "id_car_serie": 7281, + "name": "1.6 CDTI ecoFLEX MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37085, + "fields": { + "id_car_serie": 7281, + "name": "2.0 CDTI AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37086, + "fields": { + "id_car_serie": 7281, + "name": "2.0 CDTI ecoFLEX MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37087, + "fields": { + "id_car_serie": 7283, + "name": "1.4 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37088, + "fields": { + "id_car_serie": 7283, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37090, + "fields": { + "id_car_serie": 7283, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37091, + "fields": { + "id_car_serie": 7283, + "name": "1.6 AT (71 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37093, + "fields": { + "id_car_serie": 7283, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37094, + "fields": { + "id_car_serie": 7283, + "name": "1.6 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37096, + "fields": { + "id_car_serie": 7283, + "name": "1.7 TDS MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37098, + "fields": { + "id_car_serie": 7283, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37106, + "fields": { + "id_car_serie": 7286, + "name": "1.6 Turbo AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37108, + "fields": { + "id_car_serie": 7286, + "name": "1.6 Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37109, + "fields": { + "id_car_serie": 7286, + "name": "1.7 CDTI ecoFLEX A+ MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37110, + "fields": { + "id_car_serie": 7286, + "name": "1.7 CDTI ecoFLEX A+ MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37111, + "fields": { + "id_car_serie": 7286, + "name": "1.4 Turbo AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37112, + "fields": { + "id_car_serie": 7286, + "name": "1.4 Turbo MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37122, + "fields": { + "id_car_serie": 7287, + "name": "2.0 Turbo MT (240 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37126, + "fields": { + "id_car_serie": 7284, + "name": "1.4 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37127, + "fields": { + "id_car_serie": 7284, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37128, + "fields": { + "id_car_serie": 7284, + "name": "1.6 AT (71 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37130, + "fields": { + "id_car_serie": 7284, + "name": "1.6 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37132, + "fields": { + "id_car_serie": 7284, + "name": "1.7 TDS MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37133, + "fields": { + "id_car_serie": 7284, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 37136, + "fields": { + "id_car_serie": 7284, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37141, + "fields": { + "id_car_serie": 7289, + "name": "1.4 ecoFLEX MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37149, + "fields": { + "id_car_serie": 7289, + "name": "1.7 CDTI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37150, + "fields": { + "id_car_serie": 7289, + "name": "1.9 CDTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37151, + "fields": { + "id_car_serie": 7289, + "name": "1.9 CDTI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37152, + "fields": { + "id_car_serie": 7289, + "name": "1.9 CDTI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37154, + "fields": { + "id_car_serie": 7289, + "name": "2.0 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37157, + "fields": { + "id_car_serie": 7290, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37158, + "fields": { + "id_car_serie": 7290, + "name": "1.6 Easytronic (105 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37160, + "fields": { + "id_car_serie": 7290, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37162, + "fields": { + "id_car_serie": 7290, + "name": "1.7 CDTI 6MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37164, + "fields": { + "id_car_serie": 7290, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37165, + "fields": { + "id_car_serie": 7290, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37166, + "fields": { + "id_car_serie": 7290, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37167, + "fields": { + "id_car_serie": 7290, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37168, + "fields": { + "id_car_serie": 7290, + "name": "1.9 CDTI AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37170, + "fields": { + "id_car_serie": 7290, + "name": "1.9 CDTI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37172, + "fields": { + "id_car_serie": 7290, + "name": "2.0 Turbo MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37173, + "fields": { + "id_car_serie": 7290, + "name": "2.0 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37189, + "fields": { + "id_car_serie": 7293, + "name": "1.7 CDTI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37210, + "fields": { + "id_car_serie": 7288, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37213, + "fields": { + "id_car_serie": 7288, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37214, + "fields": { + "id_car_serie": 7288, + "name": "1.6 Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37215, + "fields": { + "id_car_serie": 7288, + "name": "1.7 CDTI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37216, + "fields": { + "id_car_serie": 7288, + "name": "1.7 CDTI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37218, + "fields": { + "id_car_serie": 7288, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37220, + "fields": { + "id_car_serie": 7288, + "name": "1.9 CDTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37221, + "fields": { + "id_car_serie": 7288, + "name": "2.0 Turbo MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37222, + "fields": { + "id_car_serie": 7288, + "name": "2.0 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37226, + "fields": { + "id_car_serie": 7294, + "name": "1.4 Easytronic (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37238, + "fields": { + "id_car_serie": 7294, + "name": "1.7 CDTI MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37244, + "fields": { + "id_car_serie": 7294, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37284, + "fields": { + "id_car_serie": 7291, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37285, + "fields": { + "id_car_serie": 7291, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37286, + "fields": { + "id_car_serie": 7291, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37287, + "fields": { + "id_car_serie": 7291, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37288, + "fields": { + "id_car_serie": 7291, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37292, + "fields": { + "id_car_serie": 7297, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37294, + "fields": { + "id_car_serie": 7297, + "name": "1.6 AT (71 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37296, + "fields": { + "id_car_serie": 7297, + "name": "1.6 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37301, + "fields": { + "id_car_serie": 7297, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37307, + "fields": { + "id_car_serie": 7298, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37314, + "fields": { + "id_car_serie": 7298, + "name": "1.6 AT (71 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37321, + "fields": { + "id_car_serie": 7298, + "name": "1.6 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37340, + "fields": { + "id_car_serie": 7298, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37344, + "fields": { + "id_car_serie": 7301, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37348, + "fields": { + "id_car_serie": 7301, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37351, + "fields": { + "id_car_serie": 7301, + "name": "1.7 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37354, + "fields": { + "id_car_serie": 7301, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37357, + "fields": { + "id_car_serie": 7301, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37367, + "fields": { + "id_car_serie": 48826, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37417, + "fields": { + "id_car_serie": 7299, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37423, + "fields": { + "id_car_serie": 7299, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37427, + "fields": { + "id_car_serie": 7299, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37434, + "fields": { + "id_car_serie": 7299, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37441, + "fields": { + "id_car_serie": 7299, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37444, + "fields": { + "id_car_serie": 7299, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37448, + "fields": { + "id_car_serie": 7299, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37450, + "fields": { + "id_car_serie": 7299, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37451, + "fields": { + "id_car_serie": 7300, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37453, + "fields": { + "id_car_serie": 7300, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37464, + "fields": { + "id_car_serie": 7300, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37471, + "fields": { + "id_car_serie": 7300, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37476, + "fields": { + "id_car_serie": 7300, + "name": "1.7 DTi MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37478, + "fields": { + "id_car_serie": 7300, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37481, + "fields": { + "id_car_serie": 7300, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37483, + "fields": { + "id_car_serie": 7300, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37486, + "fields": { + "id_car_serie": 7300, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37487, + "fields": { + "id_car_serie": 7300, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37490, + "fields": { + "id_car_serie": 7300, + "name": "2.0 DTI MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37493, + "fields": { + "id_car_serie": 7300, + "name": "2.0 DI MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37494, + "fields": { + "id_car_serie": 7305, + "name": "1.2 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37496, + "fields": { + "id_car_serie": 7305, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37497, + "fields": { + "id_car_serie": 7305, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37498, + "fields": { + "id_car_serie": 7305, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37500, + "fields": { + "id_car_serie": 7306, + "name": "2.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37501, + "fields": { + "id_car_serie": 7306, + "name": "2.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37503, + "fields": { + "id_car_serie": 7306, + "name": "2.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37504, + "fields": { + "id_car_serie": 7306, + "name": "2.8 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37506, + "fields": { + "id_car_serie": 7306, + "name": "2.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37507, + "fields": { + "id_car_serie": 7306, + "name": "2.8 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37508, + "fields": { + "id_car_serie": 7306, + "name": "2.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37513, + "fields": { + "id_car_serie": 7309, + "name": "2.8 TD MT AWD (113 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37516, + "fields": { + "id_car_serie": 7310, + "name": "2.3 TD MT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37518, + "fields": { + "id_car_serie": 7310, + "name": "2.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37520, + "fields": { + "id_car_serie": 7313, + "name": "1.4 Turbo LPG ecoFLEX MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37523, + "fields": { + "id_car_serie": 7313, + "name": "1.8 Ecotec MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37528, + "fields": { + "id_car_serie": 7313, + "name": "2.0 CDTI AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37538, + "fields": { + "id_car_serie": 7285, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37554, + "fields": { + "id_car_serie": 7316, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37594, + "fields": { + "id_car_serie": 7318, + "name": "1.6 Easytronic (100 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37596, + "fields": { + "id_car_serie": 7318, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37598, + "fields": { + "id_car_serie": 7318, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37600, + "fields": { + "id_car_serie": 7318, + "name": "1.7 CDTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37601, + "fields": { + "id_car_serie": 7318, + "name": "1.7 CDTI MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37603, + "fields": { + "id_car_serie": 7318, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37607, + "fields": { + "id_car_serie": 7317, + "name": "1.4 Turbo MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37608, + "fields": { + "id_car_serie": 7317, + "name": "1.4 Turbo MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37610, + "fields": { + "id_car_serie": 7317, + "name": "1.7 CDTi AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37611, + "fields": { + "id_car_serie": 7317, + "name": "1.7 CDTi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37613, + "fields": { + "id_car_serie": 7323, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37618, + "fields": { + "id_car_serie": 7323, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37626, + "fields": { + "id_car_serie": 7323, + "name": "2.3 TD MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37627, + "fields": { + "id_car_serie": 7323, + "name": "2.3 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37630, + "fields": { + "id_car_serie": 7323, + "name": "2.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37631, + "fields": { + "id_car_serie": 7323, + "name": "2.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37634, + "fields": { + "id_car_serie": 7323, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37636, + "fields": { + "id_car_serie": 7323, + "name": "3.0 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37638, + "fields": { + "id_car_serie": 7323, + "name": "3.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37640, + "fields": { + "id_car_serie": 7323, + "name": "3.0 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37643, + "fields": { + "id_car_serie": 7320, + "name": "3.1 TD MT 4WD (114 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37644, + "fields": { + "id_car_serie": 7320, + "name": "3.2 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37647, + "fields": { + "id_car_serie": 7321, + "name": "3.1 TD MT 4WD (114 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37648, + "fields": { + "id_car_serie": 7321, + "name": "3.2 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37650, + "fields": { + "id_car_serie": 7325, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37654, + "fields": { + "id_car_serie": 7325, + "name": "1.9 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37656, + "fields": { + "id_car_serie": 7325, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37657, + "fields": { + "id_car_serie": 7325, + "name": "2.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37658, + "fields": { + "id_car_serie": 7325, + "name": "2.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37660, + "fields": { + "id_car_serie": 7326, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37661, + "fields": { + "id_car_serie": 7326, + "name": "1.9 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37663, + "fields": { + "id_car_serie": 7326, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37664, + "fields": { + "id_car_serie": 7292, + "name": "1.6 Twinport MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37667, + "fields": { + "id_car_serie": 7292, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37671, + "fields": { + "id_car_serie": 7292, + "name": "2.0 T MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37673, + "fields": { + "id_car_serie": 7292, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37674, + "fields": { + "id_car_serie": 7292, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37684, + "fields": { + "id_car_serie": 7324, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37687, + "fields": { + "id_car_serie": 7324, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37690, + "fields": { + "id_car_serie": 7324, + "name": "2.3 TD AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37693, + "fields": { + "id_car_serie": 7324, + "name": "2.3 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37696, + "fields": { + "id_car_serie": 7324, + "name": "2.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37697, + "fields": { + "id_car_serie": 7324, + "name": "2.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37698, + "fields": { + "id_car_serie": 7324, + "name": "2.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37700, + "fields": { + "id_car_serie": 7324, + "name": "3.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37701, + "fields": { + "id_car_serie": 7324, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37703, + "fields": { + "id_car_serie": 7324, + "name": "3.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37706, + "fields": { + "id_car_serie": 7327, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37707, + "fields": { + "id_car_serie": 7327, + "name": "1.7 MT (66 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37708, + "fields": { + "id_car_serie": 7327, + "name": "1.7 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37710, + "fields": { + "id_car_serie": 7327, + "name": "1.9 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37711, + "fields": { + "id_car_serie": 7327, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37713, + "fields": { + "id_car_serie": 7327, + "name": "2.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37714, + "fields": { + "id_car_serie": 7327, + "name": "2.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37721, + "fields": { + "id_car_serie": 7304, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37723, + "fields": { + "id_car_serie": 7304, + "name": "1.7 DI MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37724, + "fields": { + "id_car_serie": 7304, + "name": "1.7 DTI MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37728, + "fields": { + "id_car_serie": 7332, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37730, + "fields": { + "id_car_serie": 7332, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37733, + "fields": { + "id_car_serie": 7328, + "name": "2.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37735, + "fields": { + "id_car_serie": 7328, + "name": "2.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37736, + "fields": { + "id_car_serie": 7328, + "name": "2.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37738, + "fields": { + "id_car_serie": 7328, + "name": "2.5 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37740, + "fields": { + "id_car_serie": 7328, + "name": "2.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37741, + "fields": { + "id_car_serie": 7328, + "name": "2.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37743, + "fields": { + "id_car_serie": 7328, + "name": "2.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37745, + "fields": { + "id_car_serie": 7328, + "name": "3.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37746, + "fields": { + "id_car_serie": 7328, + "name": "3.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37748, + "fields": { + "id_car_serie": 7328, + "name": "3.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37770, + "fields": { + "id_car_serie": 7348, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37775, + "fields": { + "id_car_serie": 7348, + "name": "1.5 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37776, + "fields": { + "id_car_serie": 7346, + "name": "0.7 MT (48 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 37778, + "fields": { + "id_car_serie": 7346, + "name": "1.0 AT (61 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 37780, + "fields": { + "id_car_serie": 7347, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37781, + "fields": { + "id_car_serie": 7347, + "name": "1.6 MT HDi (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37790, + "fields": { + "id_car_serie": 7357, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37791, + "fields": { + "id_car_serie": 7357, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37795, + "fields": { + "id_car_serie": 7357, + "name": "2.0 HDi AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37796, + "fields": { + "id_car_serie": 7357, + "name": "1.6 THP MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37805, + "fields": { + "id_car_serie": 7361, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37806, + "fields": { + "id_car_serie": 7361, + "name": "1.6 THP AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37816, + "fields": { + "id_car_serie": 7349, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37819, + "fields": { + "id_car_serie": 7349, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37821, + "fields": { + "id_car_serie": 7349, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37824, + "fields": { + "id_car_serie": 7349, + "name": "1.5 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37825, + "fields": { + "id_car_serie": 7349, + "name": "1.6 MT (104 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37826, + "fields": { + "id_car_serie": 7349, + "name": "1.6 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37831, + "fields": { + "id_car_serie": 7362, + "name": "1.6 THP MT (203 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37836, + "fields": { + "id_car_serie": 7363, + "name": "1.4 VTi MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37841, + "fields": { + "id_car_serie": 7363, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37844, + "fields": { + "id_car_serie": 7363, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37845, + "fields": { + "id_car_serie": 7363, + "name": "2.0 HDi AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37846, + "fields": { + "id_car_serie": 7363, + "name": "2.0 HDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37904, + "fields": { + "id_car_serie": 7358, + "name": "1.6 VTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37906, + "fields": { + "id_car_serie": 7358, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37910, + "fields": { + "id_car_serie": 7358, + "name": "1.6 HDi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37911, + "fields": { + "id_car_serie": 7358, + "name": "1.6 HDi MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37942, + "fields": { + "id_car_serie": 7386, + "name": "3.5 AT (253 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37947, + "fields": { + "id_car_serie": 7390, + "name": "3.8 AT (208 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37950, + "fields": { + "id_car_serie": 7380, + "name": "1.6 THP AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37952, + "fields": { + "id_car_serie": 7380, + "name": "1.6 THP MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37955, + "fields": { + "id_car_serie": 7397, + "name": "2.3 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37957, + "fields": { + "id_car_serie": 7397, + "name": "2.3 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37959, + "fields": { + "id_car_serie": 7397, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37960, + "fields": { + "id_car_serie": 7397, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37962, + "fields": { + "id_car_serie": 7397, + "name": "3.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37964, + "fields": { + "id_car_serie": 7400, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37965, + "fields": { + "id_car_serie": 7400, + "name": "2.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37969, + "fields": { + "id_car_serie": 7400, + "name": "2.5 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37972, + "fields": { + "id_car_serie": 7400, + "name": "2.5 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37974, + "fields": { + "id_car_serie": 7400, + "name": "3.1 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37975, + "fields": { + "id_car_serie": 7391, + "name": "3.8 AT SSEi (228 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37977, + "fields": { + "id_car_serie": 7401, + "name": "3.1 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37984, + "fields": { + "id_car_serie": 7402, + "name": "3.8 AT GTP (243 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37985, + "fields": { + "id_car_serie": 7398, + "name": "2.3 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37987, + "fields": { + "id_car_serie": 7398, + "name": "2.3 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37989, + "fields": { + "id_car_serie": 7398, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37990, + "fields": { + "id_car_serie": 7398, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37992, + "fields": { + "id_car_serie": 7398, + "name": "3.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37994, + "fields": { + "id_car_serie": 7404, + "name": "2.3 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37995, + "fields": { + "id_car_serie": 7404, + "name": "2.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37997, + "fields": { + "id_car_serie": 7404, + "name": "3.1 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 37999, + "fields": { + "id_car_serie": 7404, + "name": "3.1 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38000, + "fields": { + "id_car_serie": 7404, + "name": "3.1 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38002, + "fields": { + "id_car_serie": 7404, + "name": "3.1 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38004, + "fields": { + "id_car_serie": 7404, + "name": "3.4 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38005, + "fields": { + "id_car_serie": 7399, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38007, + "fields": { + "id_car_serie": 7399, + "name": "2.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38014, + "fields": { + "id_car_serie": 7399, + "name": "2.5 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38015, + "fields": { + "id_car_serie": 7399, + "name": "3.1 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38019, + "fields": { + "id_car_serie": 7412, + "name": "2.3 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38020, + "fields": { + "id_car_serie": 7412, + "name": "2.5 AT (92 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38022, + "fields": { + "id_car_serie": 7412, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38024, + "fields": { + "id_car_serie": 7410, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38025, + "fields": { + "id_car_serie": 7410, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38027, + "fields": { + "id_car_serie": 7410, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38029, + "fields": { + "id_car_serie": 7410, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38030, + "fields": { + "id_car_serie": 7410, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38032, + "fields": { + "id_car_serie": 7411, + "name": "2.3 AT (78 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38034, + "fields": { + "id_car_serie": 7411, + "name": "2.5 AT (92 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38035, + "fields": { + "id_car_serie": 7411, + "name": "2.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38037, + "fields": { + "id_car_serie": 7411, + "name": "3.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38039, + "fields": { + "id_car_serie": 7416, + "name": "3.1 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38042, + "fields": { + "id_car_serie": 7417, + "name": "1.8 AT AWD (124 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38044, + "fields": { + "id_car_serie": 7417, + "name": "1.8 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38045, + "fields": { + "id_car_serie": 7403, + "name": "2.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38047, + "fields": { + "id_car_serie": 7403, + "name": "2.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38049, + "fields": { + "id_car_serie": 7403, + "name": "3.1 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38050, + "fields": { + "id_car_serie": 7403, + "name": "3.1 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38052, + "fields": { + "id_car_serie": 7403, + "name": "3.1 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38054, + "fields": { + "id_car_serie": 7403, + "name": "3.1 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38055, + "fields": { + "id_car_serie": 7403, + "name": "3.4 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38062, + "fields": { + "id_car_serie": 7418, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38072, + "fields": { + "id_car_serie": 7407, + "name": "3.4 AT (186 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38074, + "fields": { + "id_car_serie": 7407, + "name": "3.4 AT AWD (187 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38077, + "fields": { + "id_car_serie": 7425, + "name": "2.7 6MT (237 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38082, + "fields": { + "id_car_serie": 7425, + "name": "S 3.2 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38092, + "fields": { + "id_car_serie": 7426, + "name": "2.7 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38102, + "fields": { + "id_car_serie": 7428, + "name": "4.8 AT Turbo (500 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38114, + "fields": { + "id_car_serie": 7443, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38115, + "fields": { + "id_car_serie": 7443, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38119, + "fields": { + "id_car_serie": 7429, + "name": "4.5 AT Turbo (450 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38120, + "fields": { + "id_car_serie": 7429, + "name": "4.5 AT Turbo (500 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38186, + "fields": { + "id_car_serie": 7463, + "name": "1.4 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38192, + "fields": { + "id_car_serie": 7463, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38194, + "fields": { + "id_car_serie": 7463, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38198, + "fields": { + "id_car_serie": 7464, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38200, + "fields": { + "id_car_serie": 7464, + "name": "1.7 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38206, + "fields": { + "id_car_serie": 7464, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38208, + "fields": { + "id_car_serie": 4056, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38210, + "fields": { + "id_car_serie": 4056, + "name": "1.7 AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38212, + "fields": { + "id_car_serie": 4056, + "name": "1.7 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38214, + "fields": { + "id_car_serie": 7468, + "name": "1.7 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38216, + "fields": { + "id_car_serie": 7468, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38218, + "fields": { + "id_car_serie": 7466, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38220, + "fields": { + "id_car_serie": 7466, + "name": "1.7 AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38224, + "fields": { + "id_car_serie": 7466, + "name": "1.9 TD MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38270, + "fields": { + "id_car_serie": 7475, + "name": "0.8 MT (37 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38272, + "fields": { + "id_car_serie": 7475, + "name": "1.1 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38275, + "fields": { + "id_car_serie": 7475, + "name": "1.3 MT (42 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38276, + "fields": { + "id_car_serie": 7475, + "name": "1.3 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38306, + "fields": { + "id_car_serie": 7479, + "name": "1.2 TCe AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 38308, + "fields": { + "id_car_serie": 7479, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 38312, + "fields": { + "id_car_serie": 7484, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38314, + "fields": { + "id_car_serie": 7484, + "name": "2.0 MT (138 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38326, + "fields": { + "id_car_serie": 7490, + "name": "2.0 dCi Euro5 MT 4x4 (173 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38328, + "fields": { + "id_car_serie": 7490, + "name": "2.0 dCi MT 4x4 (173 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38330, + "fields": { + "id_car_serie": 7490, + "name": "2.5 Euro5 MT 4x4 (171 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38332, + "fields": { + "id_car_serie": 7465, + "name": "1.7 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38334, + "fields": { + "id_car_serie": 7486, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38336, + "fields": { + "id_car_serie": 7486, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38342, + "fields": { + "id_car_serie": 7488, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38344, + "fields": { + "id_car_serie": 7488, + "name": "1.5 dCi MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38350, + "fields": { + "id_car_serie": 7488, + "name": "1.9 dTi MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38352, + "fields": { + "id_car_serie": 7492, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38354, + "fields": { + "id_car_serie": 7492, + "name": "1.8 AT (123 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38356, + "fields": { + "id_car_serie": 7492, + "name": "1.9 DCi MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38358, + "fields": { + "id_car_serie": 7492, + "name": "1.9 DCi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38360, + "fields": { + "id_car_serie": 7492, + "name": "2.0 T AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38362, + "fields": { + "id_car_serie": 7492, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38364, + "fields": { + "id_car_serie": 7492, + "name": "2.0 T MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38372, + "fields": { + "id_car_serie": 7493, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38376, + "fields": { + "id_car_serie": 7493, + "name": "2.0 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38380, + "fields": { + "id_car_serie": 7493, + "name": "3.0 MT (167 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38382, + "fields": { + "id_car_serie": 7474, + "name": "0.8 MT (37 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38384, + "fields": { + "id_car_serie": 7474, + "name": "1.1 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38386, + "fields": { + "id_car_serie": 7474, + "name": "1.3 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38396, + "fields": { + "id_car_serie": 7491, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38398, + "fields": { + "id_car_serie": 7491, + "name": "1.8 AT (123 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38400, + "fields": { + "id_car_serie": 7491, + "name": "1.9 DCi MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38402, + "fields": { + "id_car_serie": 7491, + "name": "1.9 DCi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38406, + "fields": { + "id_car_serie": 7491, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38410, + "fields": { + "id_car_serie": 7491, + "name": "2.2 DCi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38414, + "fields": { + "id_car_serie": 7497, + "name": "1.5 dCi EDC (110 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38416, + "fields": { + "id_car_serie": 7497, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38418, + "fields": { + "id_car_serie": 7497, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38420, + "fields": { + "id_car_serie": 7497, + "name": "1.9 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38435, + "fields": { + "id_car_serie": 7500, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38436, + "fields": { + "id_car_serie": 7500, + "name": "1.5 dCi MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38439, + "fields": { + "id_car_serie": 7500, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38442, + "fields": { + "id_car_serie": 7500, + "name": "2.0 AT (134 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38443, + "fields": { + "id_car_serie": 7500, + "name": "2.0 MT (134 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38450, + "fields": { + "id_car_serie": 7501, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38452, + "fields": { + "id_car_serie": 7501, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38456, + "fields": { + "id_car_serie": 7502, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38458, + "fields": { + "id_car_serie": 7502, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38460, + "fields": { + "id_car_serie": 7502, + "name": "2.0 T MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38462, + "fields": { + "id_car_serie": 7489, + "name": "2.5 CVT 4x4 (171 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38466, + "fields": { + "id_car_serie": 4078, + "name": "1.5 dCi MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38468, + "fields": { + "id_car_serie": 4078, + "name": "1.9 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38474, + "fields": { + "id_car_serie": 7503, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38488, + "fields": { + "id_car_serie": 7506, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38491, + "fields": { + "id_car_serie": 7506, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38503, + "fields": { + "id_car_serie": 7516, + "name": "1.9 dTi MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38506, + "fields": { + "id_car_serie": 7516, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38507, + "fields": { + "id_car_serie": 7501, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38516, + "fields": { + "id_car_serie": 7501, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38542, + "fields": { + "id_car_serie": 7508, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38554, + "fields": { + "id_car_serie": 7494, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38562, + "fields": { + "id_car_serie": 7494, + "name": "2.2 TD MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38564, + "fields": { + "id_car_serie": 7494, + "name": "3.0 AT (167 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38572, + "fields": { + "id_car_serie": 7514, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38576, + "fields": { + "id_car_serie": 7515, + "name": "1.6 MT (111 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38578, + "fields": { + "id_car_serie": 7515, + "name": "2.0 AT (134 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38580, + "fields": { + "id_car_serie": 7515, + "name": "2.0 Turbo MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38584, + "fields": { + "id_car_serie": 7518, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38588, + "fields": { + "id_car_serie": 7509, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38594, + "fields": { + "id_car_serie": 7509, + "name": "1.9 dTi MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38596, + "fields": { + "id_car_serie": 7509, + "name": "2.0 MT (138 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38600, + "fields": { + "id_car_serie": 7516, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38602, + "fields": { + "id_car_serie": 7516, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38612, + "fields": { + "id_car_serie": 7516, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38616, + "fields": { + "id_car_serie": 7525, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38620, + "fields": { + "id_car_serie": 7531, + "name": "5.4 AT (326 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38622, + "fields": { + "id_car_serie": 7498, + "name": "1.2 TCe MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38624, + "fields": { + "id_car_serie": 7498, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38628, + "fields": { + "id_car_serie": 7498, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38630, + "fields": { + "id_car_serie": 7498, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38632, + "fields": { + "id_car_serie": 7498, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38726, + "fields": { + "id_car_serie": 4116, + "name": "2.0 T AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38762, + "fields": { + "id_car_serie": 7572, + "name": "1.9 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38763, + "fields": { + "id_car_serie": 7572, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38767, + "fields": { + "id_car_serie": 7577, + "name": "2.4 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38770, + "fields": { + "id_car_serie": 7579, + "name": "2.4 AT (158 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38784, + "fields": { + "id_car_serie": 7587, + "name": "1.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38786, + "fields": { + "id_car_serie": 7587, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 38788, + "fields": { + "id_car_serie": 7587, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41796, + "fields": { + "id_car_serie": 5810, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41797, + "fields": { + "id_car_serie": 5810, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41802, + "fields": { + "id_car_serie": 5810, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41806, + "fields": { + "id_car_serie": 14779, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41807, + "fields": { + "id_car_serie": 5810, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41808, + "fields": { + "id_car_serie": 14779, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41809, + "fields": { + "id_car_serie": 14779, + "name": "1.6 THP MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41810, + "fields": { + "id_car_serie": 14779, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41813, + "fields": { + "id_car_serie": 5810, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41815, + "fields": { + "id_car_serie": 8303, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41816, + "fields": { + "id_car_serie": 8303, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41821, + "fields": { + "id_car_serie": 8303, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41822, + "fields": { + "id_car_serie": 8303, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41824, + "fields": { + "id_car_serie": 8303, + "name": "1.7 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41825, + "fields": { + "id_car_serie": 8304, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41826, + "fields": { + "id_car_serie": 8304, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41830, + "fields": { + "id_car_serie": 8304, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41832, + "fields": { + "id_car_serie": 8304, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41833, + "fields": { + "id_car_serie": 8304, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41837, + "fields": { + "id_car_serie": 8307, + "name": "1.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41839, + "fields": { + "id_car_serie": 8307, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41842, + "fields": { + "id_car_serie": 8307, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41843, + "fields": { + "id_car_serie": 8307, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41845, + "fields": { + "id_car_serie": 8307, + "name": "1.7 DI MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41846, + "fields": { + "id_car_serie": 8307, + "name": "1.7 DTI MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41847, + "fields": { + "id_car_serie": 8307, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41848, + "fields": { + "id_car_serie": 8308, + "name": "1.0 Easytronic (58 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41849, + "fields": { + "id_car_serie": 8308, + "name": "1.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41851, + "fields": { + "id_car_serie": 8308, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41854, + "fields": { + "id_car_serie": 8308, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41855, + "fields": { + "id_car_serie": 8308, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41857, + "fields": { + "id_car_serie": 8308, + "name": "1.7 DI MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41858, + "fields": { + "id_car_serie": 8308, + "name": "1.7 DTI MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41859, + "fields": { + "id_car_serie": 8308, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41864, + "fields": { + "id_car_serie": 8309, + "name": "1.4 AT (60 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41865, + "fields": { + "id_car_serie": 8309, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41868, + "fields": { + "id_car_serie": 8309, + "name": "1.7 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41873, + "fields": { + "id_car_serie": 8310, + "name": "1.4 AT (60 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41875, + "fields": { + "id_car_serie": 8310, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41878, + "fields": { + "id_car_serie": 8310, + "name": "1.5 D MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41879, + "fields": { + "id_car_serie": 8310, + "name": "1.5 TD MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41882, + "fields": { + "id_car_serie": 8310, + "name": "1.7 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41883, + "fields": { + "id_car_serie": 8311, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41884, + "fields": { + "id_car_serie": 8311, + "name": "1.2 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41885, + "fields": { + "id_car_serie": 8311, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41886, + "fields": { + "id_car_serie": 8311, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41889, + "fields": { + "id_car_serie": 8311, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41890, + "fields": { + "id_car_serie": 8311, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41891, + "fields": { + "id_car_serie": 8311, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41892, + "fields": { + "id_car_serie": 8311, + "name": "1.5 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41893, + "fields": { + "id_car_serie": 8311, + "name": "1.5 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41894, + "fields": { + "id_car_serie": 8311, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41895, + "fields": { + "id_car_serie": 8312, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41901, + "fields": { + "id_car_serie": 8312, + "name": "1.2 MT (75 hp), MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 41903, + "fields": { + "id_car_serie": 8312, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41904, + "fields": { + "id_car_serie": 8312, + "name": "1.5 D MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41905, + "fields": { + "id_car_serie": 8312, + "name": "1.5 TD MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41906, + "fields": { + "id_car_serie": 8312, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41907, + "fields": { + "id_car_serie": 8305, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41908, + "fields": { + "id_car_serie": 8305, + "name": "1.2 Easytronic (80 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41909, + "fields": { + "id_car_serie": 8305, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41910, + "fields": { + "id_car_serie": 8305, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41911, + "fields": { + "id_car_serie": 8305, + "name": "1.2 EcoFlex MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41912, + "fields": { + "id_car_serie": 8305, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41913, + "fields": { + "id_car_serie": 8305, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41914, + "fields": { + "id_car_serie": 8305, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41916, + "fields": { + "id_car_serie": 8305, + "name": "1.2 ecoFLEX MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41917, + "fields": { + "id_car_serie": 8306, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41918, + "fields": { + "id_car_serie": 8306, + "name": "1.2 Easytronic (80 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41919, + "fields": { + "id_car_serie": 8306, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41920, + "fields": { + "id_car_serie": 8306, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41921, + "fields": { + "id_car_serie": 8306, + "name": "1.2 EcoFlex MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41922, + "fields": { + "id_car_serie": 8306, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41923, + "fields": { + "id_car_serie": 8306, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41924, + "fields": { + "id_car_serie": 8306, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41925, + "fields": { + "id_car_serie": 8306, + "name": "1.2 ecoFLEX MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41927, + "fields": { + "id_car_serie": 8315, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41930, + "fields": { + "id_car_serie": 8315, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41933, + "fields": { + "id_car_serie": 8315, + "name": "1.7 MT (144 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41934, + "fields": { + "id_car_serie": 8315, + "name": "1.9 TD MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41937, + "fields": { + "id_car_serie": 8315, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41941, + "fields": { + "id_car_serie": 8314, + "name": "2.0 MT (212 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41942, + "fields": { + "id_car_serie": 8316, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41944, + "fields": { + "id_car_serie": 8316, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41945, + "fields": { + "id_car_serie": 8316, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41946, + "fields": { + "id_car_serie": 8316, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41947, + "fields": { + "id_car_serie": 8316, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41948, + "fields": { + "id_car_serie": 8316, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41949, + "fields": { + "id_car_serie": 8316, + "name": "1.8 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41951, + "fields": { + "id_car_serie": 8316, + "name": "2.0 MT (146 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41954, + "fields": { + "id_car_serie": 8316, + "name": "2.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41955, + "fields": { + "id_car_serie": 8316, + "name": "2.4 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41956, + "fields": { + "id_car_serie": 8316, + "name": "2.5 MT (154 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41960, + "fields": { + "id_car_serie": 8316, + "name": "3.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41964, + "fields": { + "id_car_serie": 8317, + "name": "2.2 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41965, + "fields": { + "id_car_serie": 8317, + "name": "2.2 JTS MT (185 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41968, + "fields": { + "id_car_serie": 8317, + "name": "2.4 JTD MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41971, + "fields": { + "id_car_serie": 8317, + "name": "3.2 AT (260 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41973, + "fields": { + "id_car_serie": 8317, + "name": "3.2 JTS MT (260 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41975, + "fields": { + "id_car_serie": 8318, + "name": "1.9 JTD MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41976, + "fields": { + "id_car_serie": 8318, + "name": "1.9 JTD MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41977, + "fields": { + "id_car_serie": 8318, + "name": "2.0 Selespeed (165 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41978, + "fields": { + "id_car_serie": 8318, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41979, + "fields": { + "id_car_serie": 8318, + "name": "3.2 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41980, + "fields": { + "id_car_serie": 8319, + "name": "1.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41981, + "fields": { + "id_car_serie": 8319, + "name": "1.3 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41983, + "fields": { + "id_car_serie": 8321, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1966, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 41999, + "fields": { + "id_car_serie": 8322, + "name": "1.8 MT (292 hp)", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42001, + "fields": { + "id_car_serie": 8320, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42002, + "fields": { + "id_car_serie": 8320, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42003, + "fields": { + "id_car_serie": 8320, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42004, + "fields": { + "id_car_serie": 8320, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42005, + "fields": { + "id_car_serie": 8320, + "name": "3.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42007, + "fields": { + "id_car_serie": 8320, + "name": "3.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42008, + "fields": { + "id_car_serie": 8320, + "name": "3.2 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42009, + "fields": { + "id_car_serie": 8323, + "name": "3.0 MT (207 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42016, + "fields": { + "id_car_serie": 8327, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42017, + "fields": { + "id_car_serie": 8327, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42023, + "fields": { + "id_car_serie": 8327, + "name": "1.8 quattro MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42024, + "fields": { + "id_car_serie": 8327, + "name": "1.9 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42025, + "fields": { + "id_car_serie": 8327, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42027, + "fields": { + "id_car_serie": 8327, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42031, + "fields": { + "id_car_serie": 8327, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42034, + "fields": { + "id_car_serie": 8327, + "name": "2.0 D MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42035, + "fields": { + "id_car_serie": 8327, + "name": "2.0 TD MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42036, + "fields": { + "id_car_serie": 8327, + "name": "2.1 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42037, + "fields": { + "id_car_serie": 8327, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42039, + "fields": { + "id_car_serie": 8327, + "name": "2.2 T AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42045, + "fields": { + "id_car_serie": 8327, + "name": "2.2 quattro MT (138 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42046, + "fields": { + "id_car_serie": 8327, + "name": "2.2 T quattro MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42047, + "fields": { + "id_car_serie": 8327, + "name": "2.2 T MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42058, + "fields": { + "id_car_serie": 8328, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42063, + "fields": { + "id_car_serie": 8328, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42064, + "fields": { + "id_car_serie": 8328, + "name": "1.8 quattro MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42067, + "fields": { + "id_car_serie": 8328, + "name": "2.0 TD AT (87 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42069, + "fields": { + "id_car_serie": 8328, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42072, + "fields": { + "id_car_serie": 8328, + "name": "2.0 D MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42073, + "fields": { + "id_car_serie": 8328, + "name": "2.0 TD MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42075, + "fields": { + "id_car_serie": 8328, + "name": "2.2 T AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42081, + "fields": { + "id_car_serie": 8328, + "name": "2.2 quattro MT (138 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42082, + "fields": { + "id_car_serie": 8328, + "name": "2.2 T MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42083, + "fields": { + "id_car_serie": 8328, + "name": "2.2 T quattro MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42105, + "fields": { + "id_car_serie": 8333, + "name": "2.1 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42106, + "fields": { + "id_car_serie": 8333, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42107, + "fields": { + "id_car_serie": 8333, + "name": "2.1 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42118, + "fields": { + "id_car_serie": 8330, + "name": "2.0 D MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42142, + "fields": { + "id_car_serie": 8337, + "name": "2.5 TDI tiptronic quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42143, + "fields": { + "id_car_serie": 8337, + "name": "2.5 TDI tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42146, + "fields": { + "id_car_serie": 8337, + "name": "2.5 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42149, + "fields": { + "id_car_serie": 8337, + "name": "2.8 AT quattro (174 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42150, + "fields": { + "id_car_serie": 8337, + "name": "2.8 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42151, + "fields": { + "id_car_serie": 8337, + "name": "2.8 tiptronic (193 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42152, + "fields": { + "id_car_serie": 8337, + "name": "2.8 tiptronic quattro (193 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42155, + "fields": { + "id_car_serie": 8337, + "name": "2.8 MT quattro (174 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42156, + "fields": { + "id_car_serie": 8337, + "name": "2.8 MT (174 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42157, + "fields": { + "id_car_serie": 8337, + "name": "2.8 MT quattro (193 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42158, + "fields": { + "id_car_serie": 8337, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42160, + "fields": { + "id_car_serie": 8337, + "name": "3.7 tiptronic (230 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42161, + "fields": { + "id_car_serie": 8337, + "name": "3.7 tiptronic quattro (230 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42162, + "fields": { + "id_car_serie": 8337, + "name": "3.7 tiptronic (260 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42163, + "fields": { + "id_car_serie": 8337, + "name": "3.7 tiptronic quattro (260 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42166, + "fields": { + "id_car_serie": 8337, + "name": "4.2 tiptronic quattro (300 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42180, + "fields": { + "id_car_serie": 8339, + "name": "4.2 FSI quattro R tronic (430 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42181, + "fields": { + "id_car_serie": 8339, + "name": "4.2 FSI quattro MT (430 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42182, + "fields": { + "id_car_serie": 8339, + "name": "5.2 FSI quattro R tronic (525 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42183, + "fields": { + "id_car_serie": 8339, + "name": "5.2 FSI quattro MT (525 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42186, + "fields": { + "id_car_serie": 8340, + "name": "5.2 FSI S tronic quattro (525 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42187, + "fields": { + "id_car_serie": 8340, + "name": "5.2 FSI MT quattro (525 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42189, + "fields": { + "id_car_serie": 8342, + "name": "4.2 FSI MT quattro (420 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42190, + "fields": { + "id_car_serie": 8343, + "name": "4.2 FSI MT quattro (420 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42191, + "fields": { + "id_car_serie": 8344, + "name": "4.2 FSI MT quattro (420 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42192, + "fields": { + "id_car_serie": 8345, + "name": "2.7 T MT quattro (380 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42194, + "fields": { + "id_car_serie": 8349, + "name": "4.2 tiptronic quattro (344 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42195, + "fields": { + "id_car_serie": 8349, + "name": "4.2 MT quattro (344 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42196, + "fields": { + "id_car_serie": 8350, + "name": "4.2 tiptronic quattro (344 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42197, + "fields": { + "id_car_serie": 8350, + "name": "4.2 MT quattro (344 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42198, + "fields": { + "id_car_serie": 8351, + "name": "4.2 tiptronic quattro (344 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42199, + "fields": { + "id_car_serie": 8351, + "name": "4.2 MT quattro (344 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42200, + "fields": { + "id_car_serie": 8352, + "name": "4.2 tiptronic quattro (344 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42201, + "fields": { + "id_car_serie": 8352, + "name": "4.2 MT quattro (344 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42202, + "fields": { + "id_car_serie": 8353, + "name": "4.2 tiptronic quattro (344 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42203, + "fields": { + "id_car_serie": 8353, + "name": "4.2 MT quattro (344 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42206, + "fields": { + "id_car_serie": 8347, + "name": "3.0 TFSI S tronic quattro (333 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42209, + "fields": { + "id_car_serie": 8348, + "name": "3.0 TFSI S tronic quattro (333 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42210, + "fields": { + "id_car_serie": 8358, + "name": "0.9 MT (34 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42211, + "fields": { + "id_car_serie": 8358, + "name": "1.0 MT (35 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42212, + "fields": { + "id_car_serie": 8358, + "name": "1.0 MT (39 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42213, + "fields": { + "id_car_serie": 8358, + "name": "1.0 MT (41 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42214, + "fields": { + "id_car_serie": 8358, + "name": "1.0 MT (42 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42215, + "fields": { + "id_car_serie": 8358, + "name": "1.3 MT (53 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42219, + "fields": { + "id_car_serie": 8361, + "name": "4.4 AT Turbo (354 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42223, + "fields": { + "id_car_serie": 8363, + "name": "6.0 AT Twin Turbo (560 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42238, + "fields": { + "id_car_serie": 8357, + "name": "3.0 TFSI tiptronic quattro (354 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42239, + "fields": { + "id_car_serie": 8357, + "name": "3.0 TDI tiptronic quattro (313 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42266, + "fields": { + "id_car_serie": 8356, + "name": "2.0 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42267, + "fields": { + "id_car_serie": 8356, + "name": "2.0 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42272, + "fields": { + "id_car_serie": 8369, + "name": "4.9 MT (400 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42347, + "fields": { + "id_car_serie": 8392, + "name": "1.8 T MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42348, + "fields": { + "id_car_serie": 8394, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42349, + "fields": { + "id_car_serie": 8394, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42350, + "fields": { + "id_car_serie": 8394, + "name": "1.8 AT (118 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42351, + "fields": { + "id_car_serie": 8394, + "name": "1.8 MT (118 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42352, + "fields": { + "id_car_serie": 8396, + "name": "3.0 AT (172 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42353, + "fields": { + "id_car_serie": 8396, + "name": "3.4 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42354, + "fields": { + "id_car_serie": 8395, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42355, + "fields": { + "id_car_serie": 8395, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42356, + "fields": { + "id_car_serie": 8398, + "name": "3.8 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42357, + "fields": { + "id_car_serie": 8399, + "name": "7.5 AT (254 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42360, + "fields": { + "id_car_serie": 8393, + "name": "8.0 MT (532 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42363, + "fields": { + "id_car_serie": 8400, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42365, + "fields": { + "id_car_serie": 8400, + "name": "2.4 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42377, + "fields": { + "id_car_serie": 8401, + "name": "2.4 MT (167 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42378, + "fields": { + "id_car_serie": 8402, + "name": "1.5 AMT (152 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42379, + "fields": { + "id_car_serie": 8402, + "name": "1.5 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42380, + "fields": { + "id_car_serie": 8402, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42397, + "fields": { + "id_car_serie": 8410, + "name": "3.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42400, + "fields": { + "id_car_serie": 8404, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42401, + "fields": { + "id_car_serie": 8413, + "name": "2.3 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42402, + "fields": { + "id_car_serie": 8413, + "name": "2.3 MT (260 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42403, + "fields": { + "id_car_serie": 8414, + "name": "1.4 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42404, + "fields": { + "id_car_serie": 8414, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42406, + "fields": { + "id_car_serie": 8414, + "name": "1.6 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42407, + "fields": { + "id_car_serie": 8414, + "name": "1.8 MT (124 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42408, + "fields": { + "id_car_serie": 8414, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42409, + "fields": { + "id_car_serie": 8414, + "name": "1.8 MT (153 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42410, + "fields": { + "id_car_serie": 8414, + "name": "1.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42411, + "fields": { + "id_car_serie": 8414, + "name": "1.8 MT (232 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42421, + "fields": { + "id_car_serie": 8415, + "name": "2.0 T AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42422, + "fields": { + "id_car_serie": 8415, + "name": "2.0 TS AT (210 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42423, + "fields": { + "id_car_serie": 8415, + "name": "2.0 T MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42424, + "fields": { + "id_car_serie": 8415, + "name": "2.0 TS MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42425, + "fields": { + "id_car_serie": 8415, + "name": "2.8 T AT (255 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42426, + "fields": { + "id_car_serie": 8415, + "name": "2.8 T MT (255 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42427, + "fields": { + "id_car_serie": 8416, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42428, + "fields": { + "id_car_serie": 8416, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42429, + "fields": { + "id_car_serie": 8417, + "name": "1.8 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42430, + "fields": { + "id_car_serie": 8418, + "name": "2.2 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42431, + "fields": { + "id_car_serie": 8418, + "name": "2.8 TD MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42432, + "fields": { + "id_car_serie": 8419, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42436, + "fields": { + "id_car_serie": 8421, + "name": "1.3 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42437, + "fields": { + "id_car_serie": 8422, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42439, + "fields": { + "id_car_serie": 8423, + "name": "1.3 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42464, + "fields": { + "id_car_serie": 8426, + "name": "5.3 AT 4WD (295 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42465, + "fields": { + "id_car_serie": 8426, + "name": "5.3 AT (295 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42466, + "fields": { + "id_car_serie": 8426, + "name": "8.1 AT (320 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42467, + "fields": { + "id_car_serie": 8426, + "name": "8.1 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42468, + "fields": { + "id_car_serie": 8427, + "name": "2.2 TD AT (7 places) (184 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42470, + "fields": { + "id_car_serie": 8427, + "name": "2.4 AT (5 places) (167 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42471, + "fields": { + "id_car_serie": 8427, + "name": "2.4 AT (7 places) (167 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42473, + "fields": { + "id_car_serie": 8427, + "name": "2.4 MT (7 places) (167 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42474, + "fields": { + "id_car_serie": 8427, + "name": "2.4 MT (5 places) (167 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42475, + "fields": { + "id_car_serie": 8428, + "name": "2.0 DT AT 7 places (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42476, + "fields": { + "id_car_serie": 8428, + "name": "2.0 DT AT 5 places (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42477, + "fields": { + "id_car_serie": 8428, + "name": "2.0 DT MT 5 places (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42478, + "fields": { + "id_car_serie": 8428, + "name": "2.0 DT MT 7 places (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42479, + "fields": { + "id_car_serie": 8428, + "name": "2.4 AT 7 places (136 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42480, + "fields": { + "id_car_serie": 8428, + "name": "2.4 AT 5 places (136 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42483, + "fields": { + "id_car_serie": 8428, + "name": "2.4 LPG MT 7 places (136 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42484, + "fields": { + "id_car_serie": 8428, + "name": "2.4 MT 5 places (136 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42487, + "fields": { + "id_car_serie": 8428, + "name": "3.2 AT 5 places (230 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42489, + "fields": { + "id_car_serie": 8429, + "name": "2.2 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42490, + "fields": { + "id_car_serie": 8429, + "name": "2.2 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42509, + "fields": { + "id_car_serie": 8432, + "name": "2.5 AT (92 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42510, + "fields": { + "id_car_serie": 8432, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42511, + "fields": { + "id_car_serie": 8432, + "name": "2.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42512, + "fields": { + "id_car_serie": 8432, + "name": "2.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42530, + "fields": { + "id_car_serie": 8434, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42531, + "fields": { + "id_car_serie": 8434, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42534, + "fields": { + "id_car_serie": 8439, + "name": "3.4 Hydra-Matic O.D. (210 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42535, + "fields": { + "id_car_serie": 8440, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42536, + "fields": { + "id_car_serie": 8440, + "name": "2.2 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42537, + "fields": { + "id_car_serie": 8440, + "name": "3.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42538, + "fields": { + "id_car_serie": 8440, + "name": "3.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42539, + "fields": { + "id_car_serie": 8440, + "name": "4.1 MT (168 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42540, + "fields": { + "id_car_serie": 8441, + "name": "3.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42541, + "fields": { + "id_car_serie": 8441, + "name": "3.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42542, + "fields": { + "id_car_serie": 8442, + "name": "6.0 AT (400 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42543, + "fields": { + "id_car_serie": 8442, + "name": "6.0 MT (400 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42544, + "fields": { + "id_car_serie": 8443, + "name": "6.0 AT (400 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42545, + "fields": { + "id_car_serie": 8443, + "name": "6.0 MT (400 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42557, + "fields": { + "id_car_serie": 8445, + "name": "5.7 MT (345 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42559, + "fields": { + "id_car_serie": 8446, + "name": "5.7 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42560, + "fields": { + "id_car_serie": 8446, + "name": "5.7 AT (230 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42561, + "fields": { + "id_car_serie": 8446, + "name": "5.7 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42576, + "fields": { + "id_car_serie": 8451, + "name": "2.7 AT (193 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42579, + "fields": { + "id_car_serie": 8451, + "name": "3.5 AT (249 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42582, + "fields": { + "id_car_serie": 8451, + "name": "5.7 AT AWD (340 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42583, + "fields": { + "id_car_serie": 8451, + "name": "5.7 AT (340 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42585, + "fields": { + "id_car_serie": 8452, + "name": "2.7 AT (193 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42587, + "fields": { + "id_car_serie": 8452, + "name": "3.0 D AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42588, + "fields": { + "id_car_serie": 8452, + "name": "3.5 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42589, + "fields": { + "id_car_serie": 8452, + "name": "3.5 AT (249 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42592, + "fields": { + "id_car_serie": 8452, + "name": "5.7 AT AWD (340 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42593, + "fields": { + "id_car_serie": 8452, + "name": "5.7 AT (340 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42596, + "fields": { + "id_car_serie": 8453, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42597, + "fields": { + "id_car_serie": 8454, + "name": "5.3 FlexFuel 6AT 4WD 1500 (320 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42598, + "fields": { + "id_car_serie": 8454, + "name": "5.3 FlexFuel 6AT 1500 (320 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42599, + "fields": { + "id_car_serie": 8454, + "name": "6.0 2500 4AT 4WD (352 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42600, + "fields": { + "id_car_serie": 8454, + "name": "6.0 2500 6AT (352 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42601, + "fields": { + "id_car_serie": 8455, + "name": "5.3 C1500 AT (285 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42602, + "fields": { + "id_car_serie": 8455, + "name": "5.3 K1500 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42603, + "fields": { + "id_car_serie": 8455, + "name": "5.3 FlexFuel AT 4WD K1500 (295 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42604, + "fields": { + "id_car_serie": 8455, + "name": "5.3 FlexFuel AT C1500 (295 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42605, + "fields": { + "id_car_serie": 8455, + "name": "6.0 K2500 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42606, + "fields": { + "id_car_serie": 8455, + "name": "6.0 K2500 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42607, + "fields": { + "id_car_serie": 8455, + "name": "6.0 C2500 AT (325 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42608, + "fields": { + "id_car_serie": 8455, + "name": "6.0 C2500 AT (300 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42609, + "fields": { + "id_car_serie": 8455, + "name": "6.0 K2500 AT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42610, + "fields": { + "id_car_serie": 8455, + "name": "8.1 K2500 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42611, + "fields": { + "id_car_serie": 8455, + "name": "8.1 C2500 AT (320 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42612, + "fields": { + "id_car_serie": 8455, + "name": "8.1 K2500 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42613, + "fields": { + "id_car_serie": 8455, + "name": "8.1 C2500 AT (340 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42614, + "fields": { + "id_car_serie": 8456, + "name": "5.7 K1500 4AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42615, + "fields": { + "id_car_serie": 8456, + "name": "5.7 C1500 4AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42616, + "fields": { + "id_car_serie": 8456, + "name": "5.7 K2500 4AT 4WD (255 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42617, + "fields": { + "id_car_serie": 8456, + "name": "5.7 K1500 4AT 4WD (255 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42622, + "fields": { + "id_car_serie": 8456, + "name": "7.4 C2500 4AT (230 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42623, + "fields": { + "id_car_serie": 8456, + "name": "6.5TD K2500 4AT 4WD (195 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42630, + "fields": { + "id_car_serie": 8459, + "name": "3.5 AT (214 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42632, + "fields": { + "id_car_serie": 8460, + "name": "3.4 AT AWD (188 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42633, + "fields": { + "id_car_serie": 8460, + "name": "3.4 AT (188 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42634, + "fields": { + "id_car_serie": 8461, + "name": "3.5 AT (257 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42639, + "fields": { + "id_car_serie": 8463, + "name": "3.3 AT (182 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42640, + "fields": { + "id_car_serie": 8463, + "name": "3.8 AT AWD (218 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42641, + "fields": { + "id_car_serie": 8463, + "name": "3.8 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42642, + "fields": { + "id_car_serie": 8464, + "name": "3.3 AT (158 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42644, + "fields": { + "id_car_serie": 8464, + "name": "3.8 AT (166 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42647, + "fields": { + "id_car_serie": 8465, + "name": "3.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42648, + "fields": { + "id_car_serie": 8466, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42649, + "fields": { + "id_car_serie": 8466, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42650, + "fields": { + "id_car_serie": 8466, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42651, + "fields": { + "id_car_serie": 8466, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42663, + "fields": { + "id_car_serie": 8468, + "name": "0.6 MT (29 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42668, + "fields": { + "id_car_serie": 8470, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42669, + "fields": { + "id_car_serie": 8470, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42670, + "fields": { + "id_car_serie": 8470, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42671, + "fields": { + "id_car_serie": 8470, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42672, + "fields": { + "id_car_serie": 8473, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42677, + "fields": { + "id_car_serie": 8473, + "name": "1.6 HDi AMT (109 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42685, + "fields": { + "id_car_serie": 8473, + "name": "2.2 Hdi MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42717, + "fields": { + "id_car_serie": 8472, + "name": "2.0 HDI AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42719, + "fields": { + "id_car_serie": 8472, + "name": "2.0 HDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42720, + "fields": { + "id_car_serie": 8472, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42721, + "fields": { + "id_car_serie": 8472, + "name": "2.0 HDI AT (107 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42722, + "fields": { + "id_car_serie": 8472, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42723, + "fields": { + "id_car_serie": 8472, + "name": "2.0 HDI MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42724, + "fields": { + "id_car_serie": 8472, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42725, + "fields": { + "id_car_serie": 8472, + "name": "2.0 HDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42726, + "fields": { + "id_car_serie": 8472, + "name": "2.2 HDi AT (133 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42727, + "fields": { + "id_car_serie": 8472, + "name": "2.2 HDi MT (133 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42743, + "fields": { + "id_car_serie": 8478, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42745, + "fields": { + "id_car_serie": 8478, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42746, + "fields": { + "id_car_serie": 8478, + "name": "2.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42747, + "fields": { + "id_car_serie": 8478, + "name": "2.0 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42748, + "fields": { + "id_car_serie": 8478, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42749, + "fields": { + "id_car_serie": 8478, + "name": "2.0 Turbo MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42750, + "fields": { + "id_car_serie": 8478, + "name": "2.1 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42751, + "fields": { + "id_car_serie": 8479, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42754, + "fields": { + "id_car_serie": 8479, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42755, + "fields": { + "id_car_serie": 8479, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42756, + "fields": { + "id_car_serie": 8479, + "name": "1.9 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42758, + "fields": { + "id_car_serie": 8479, + "name": "1.9 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42760, + "fields": { + "id_car_serie": 8479, + "name": "2.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42762, + "fields": { + "id_car_serie": 8479, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42763, + "fields": { + "id_car_serie": 8479, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42764, + "fields": { + "id_car_serie": 8479, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42766, + "fields": { + "id_car_serie": 8479, + "name": "2.1 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42770, + "fields": { + "id_car_serie": 8480, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42771, + "fields": { + "id_car_serie": 8480, + "name": "2.0 Turbo MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42772, + "fields": { + "id_car_serie": 8480, + "name": "2.1 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42773, + "fields": { + "id_car_serie": 8480, + "name": "2.1 TD MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42774, + "fields": { + "id_car_serie": 8480, + "name": "3.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42775, + "fields": { + "id_car_serie": 8480, + "name": "3.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42777, + "fields": { + "id_car_serie": 8481, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42778, + "fields": { + "id_car_serie": 8481, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42779, + "fields": { + "id_car_serie": 8481, + "name": "2.1 TD MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42780, + "fields": { + "id_car_serie": 8481, + "name": "2.1 D MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42781, + "fields": { + "id_car_serie": 8481, + "name": "3.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42788, + "fields": { + "id_car_serie": 8486, + "name": "3.2 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42789, + "fields": { + "id_car_serie": 8487, + "name": "2.2 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42790, + "fields": { + "id_car_serie": 8487, + "name": "2.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42791, + "fields": { + "id_car_serie": 8488, + "name": "1.2 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42792, + "fields": { + "id_car_serie": 8488, + "name": "1.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42795, + "fields": { + "id_car_serie": 8488, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42796, + "fields": { + "id_car_serie": 8488, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42799, + "fields": { + "id_car_serie": 8489, + "name": "1.5 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42800, + "fields": { + "id_car_serie": 8489, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42801, + "fields": { + "id_car_serie": 8489, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42802, + "fields": { + "id_car_serie": 8489, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42803, + "fields": { + "id_car_serie": 8490, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42804, + "fields": { + "id_car_serie": 8490, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42805, + "fields": { + "id_car_serie": 8490, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42807, + "fields": { + "id_car_serie": 8490, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42810, + "fields": { + "id_car_serie": 8492, + "name": "1.0 AT (61 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42811, + "fields": { + "id_car_serie": 8492, + "name": "0.8 MT (51 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42813, + "fields": { + "id_car_serie": 8493, + "name": "1.5 AT (90 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42814, + "fields": { + "id_car_serie": 8493, + "name": "1.5 i MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42816, + "fields": { + "id_car_serie": 8493, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42817, + "fields": { + "id_car_serie": 8494, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42818, + "fields": { + "id_car_serie": 8494, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42819, + "fields": { + "id_car_serie": 8494, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42820, + "fields": { + "id_car_serie": 8494, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42822, + "fields": { + "id_car_serie": 8497, + "name": "2.0 VGT AT 5seat (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42823, + "fields": { + "id_car_serie": 8497, + "name": "2.0 VGT AT 7seat (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42824, + "fields": { + "id_car_serie": 8497, + "name": "2.0 VGT MT 7seat (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42825, + "fields": { + "id_car_serie": 8497, + "name": "2.0 VGT MT 4WD 5seat (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42832, + "fields": { + "id_car_serie": 8496, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42833, + "fields": { + "id_car_serie": 8496, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42849, + "fields": { + "id_car_serie": 8500, + "name": "1.0 AT (54 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42850, + "fields": { + "id_car_serie": 8500, + "name": "1.0 AT (56 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42851, + "fields": { + "id_car_serie": 8500, + "name": "1.0 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42852, + "fields": { + "id_car_serie": 8500, + "name": "1.0 MT (51 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42853, + "fields": { + "id_car_serie": 8500, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42854, + "fields": { + "id_car_serie": 8500, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42855, + "fields": { + "id_car_serie": 8500, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42856, + "fields": { + "id_car_serie": 8500, + "name": "1.0 MT (37 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42857, + "fields": { + "id_car_serie": 8500, + "name": "1.0 MT (48 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42858, + "fields": { + "id_car_serie": 8500, + "name": "1.3 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42861, + "fields": { + "id_car_serie": 8503, + "name": "1.0 AT (51 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42862, + "fields": { + "id_car_serie": 8503, + "name": "1.0 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42863, + "fields": { + "id_car_serie": 8503, + "name": "1.0 MT (51 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42864, + "fields": { + "id_car_serie": 8503, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42865, + "fields": { + "id_car_serie": 8503, + "name": "1.0 AT (37 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42866, + "fields": { + "id_car_serie": 8503, + "name": "1.0 AT (46 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42867, + "fields": { + "id_car_serie": 8503, + "name": "1.0 MT (37 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42868, + "fields": { + "id_car_serie": 8503, + "name": "1.0 MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42869, + "fields": { + "id_car_serie": 8504, + "name": "1.0 AT (51 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42870, + "fields": { + "id_car_serie": 8504, + "name": "1.0 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42871, + "fields": { + "id_car_serie": 8504, + "name": "1.0 MT (51 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42872, + "fields": { + "id_car_serie": 8504, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42873, + "fields": { + "id_car_serie": 8504, + "name": "1.0 AT (37 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42874, + "fields": { + "id_car_serie": 8504, + "name": "1.0 AT (46 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42875, + "fields": { + "id_car_serie": 8504, + "name": "1.0 MT (37 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42876, + "fields": { + "id_car_serie": 8504, + "name": "1.0 MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42877, + "fields": { + "id_car_serie": 8505, + "name": "1.0 AT (50 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42878, + "fields": { + "id_car_serie": 8505, + "name": "1.0 AT (51 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42879, + "fields": { + "id_car_serie": 8505, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42880, + "fields": { + "id_car_serie": 8505, + "name": "1.0 MT (51 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42881, + "fields": { + "id_car_serie": 8495, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42882, + "fields": { + "id_car_serie": 8495, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42883, + "fields": { + "id_car_serie": 8495, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42884, + "fields": { + "id_car_serie": 8495, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42886, + "fields": { + "id_car_serie": 8501, + "name": "1.0 AT (54 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42887, + "fields": { + "id_car_serie": 8501, + "name": "1.0 AT (56 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42888, + "fields": { + "id_car_serie": 8501, + "name": "1.0 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42889, + "fields": { + "id_car_serie": 8501, + "name": "1.0 MT (51 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42890, + "fields": { + "id_car_serie": 8501, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42891, + "fields": { + "id_car_serie": 8501, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42892, + "fields": { + "id_car_serie": 8501, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42893, + "fields": { + "id_car_serie": 8501, + "name": "1.0 MT (37 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42894, + "fields": { + "id_car_serie": 8501, + "name": "1.0 MT (48 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42895, + "fields": { + "id_car_serie": 8501, + "name": "1.3 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42898, + "fields": { + "id_car_serie": 8502, + "name": "1.0 AT (54 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42899, + "fields": { + "id_car_serie": 8502, + "name": "1.0 AT (56 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42900, + "fields": { + "id_car_serie": 8502, + "name": "1.0 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42901, + "fields": { + "id_car_serie": 8502, + "name": "1.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42902, + "fields": { + "id_car_serie": 8502, + "name": "1.0 MT (51 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42903, + "fields": { + "id_car_serie": 8502, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42904, + "fields": { + "id_car_serie": 8502, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42905, + "fields": { + "id_car_serie": 8502, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42906, + "fields": { + "id_car_serie": 8502, + "name": "1.0 MT (37 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42907, + "fields": { + "id_car_serie": 8502, + "name": "1.0 MT (48 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42908, + "fields": { + "id_car_serie": 8502, + "name": "1.3 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42911, + "fields": { + "id_car_serie": 8506, + "name": "1.0 AT (50 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42912, + "fields": { + "id_car_serie": 8506, + "name": "1.0 AT (51 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42913, + "fields": { + "id_car_serie": 8506, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42914, + "fields": { + "id_car_serie": 8506, + "name": "1.0 MT (51 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42915, + "fields": { + "id_car_serie": 8509, + "name": "0.7 Turbo AT (64 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42918, + "fields": { + "id_car_serie": 8509, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42920, + "fields": { + "id_car_serie": 8510, + "name": "1.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42924, + "fields": { + "id_car_serie": 8512, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42925, + "fields": { + "id_car_serie": 8507, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42926, + "fields": { + "id_car_serie": 8507, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42927, + "fields": { + "id_car_serie": 8507, + "name": "1.6 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42928, + "fields": { + "id_car_serie": 8507, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42929, + "fields": { + "id_car_serie": 8508, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42930, + "fields": { + "id_car_serie": 8508, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 42931, + "fields": { + "id_car_serie": 8513, + "name": "1.0 AT (56 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42932, + "fields": { + "id_car_serie": 8513, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42935, + "fields": { + "id_car_serie": 8518, + "name": "0.8 MT (39 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42938, + "fields": { + "id_car_serie": 8519, + "name": "0.8 MT (39 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42941, + "fields": { + "id_car_serie": 8520, + "name": "0.5 MT (27 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42942, + "fields": { + "id_car_serie": 8520, + "name": "0.6 MT (30 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42951, + "fields": { + "id_car_serie": 8521, + "name": "0.5 MT (27 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42952, + "fields": { + "id_car_serie": 8521, + "name": "0.6 MT (30 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42962, + "fields": { + "id_car_serie": 8524, + "name": "1.3 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42963, + "fields": { + "id_car_serie": 8524, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42964, + "fields": { + "id_car_serie": 8524, + "name": "1.5 AT (103 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42965, + "fields": { + "id_car_serie": 8524, + "name": "1.5 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42985, + "fields": { + "id_car_serie": 8533, + "name": "2.4 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42986, + "fields": { + "id_car_serie": 8534, + "name": "2.4 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42987, + "fields": { + "id_car_serie": 8535, + "name": "2.0 AMT (141 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42988, + "fields": { + "id_car_serie": 8535, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42989, + "fields": { + "id_car_serie": 8535, + "name": "2.5 AT (166 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42990, + "fields": { + "id_car_serie": 8536, + "name": "3.7 AT (214 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42991, + "fields": { + "id_car_serie": 8536, + "name": "4.7 AT (234 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42992, + "fields": { + "id_car_serie": 8536, + "name": "4.7 AT 4WD (303 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42993, + "fields": { + "id_car_serie": 8536, + "name": "5.7 AT 4WD (339 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42994, + "fields": { + "id_car_serie": 8536, + "name": "5.7 AT (335 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42995, + "fields": { + "id_car_serie": 8537, + "name": "3.9 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42996, + "fields": { + "id_car_serie": 8537, + "name": "4.7 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42997, + "fields": { + "id_car_serie": 8537, + "name": "4.7 AT (238 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42998, + "fields": { + "id_car_serie": 8537, + "name": "5.2 AT 4WD (236 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 42999, + "fields": { + "id_car_serie": 8537, + "name": "5.2 AT (236 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43000, + "fields": { + "id_car_serie": 8537, + "name": "5.9 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43001, + "fields": { + "id_car_serie": 8537, + "name": "5.9 TorqueFlite (250 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43003, + "fields": { + "id_car_serie": 8538, + "name": "3.0 AT (166 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43005, + "fields": { + "id_car_serie": 8538, + "name": "3.0 AT (226 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43007, + "fields": { + "id_car_serie": 8538, + "name": "3.0 MT (166 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43009, + "fields": { + "id_car_serie": 8538, + "name": "3.0 MT (226 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43010, + "fields": { + "id_car_serie": 8538, + "name": "3.0 MT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43012, + "fields": { + "id_car_serie": 8539, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43013, + "fields": { + "id_car_serie": 8539, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43014, + "fields": { + "id_car_serie": 8539, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43027, + "fields": { + "id_car_serie": 8544, + "name": "5.5 AT GTA (442 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43028, + "fields": { + "id_car_serie": 8544, + "name": "5.5 MT GT (436 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43054, + "fields": { + "id_car_serie": 8550, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43055, + "fields": { + "id_car_serie": 8553, + "name": "0.9 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43056, + "fields": { + "id_car_serie": 8553, + "name": "1.0 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43058, + "fields": { + "id_car_serie": 8553, + "name": "1.1 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43059, + "fields": { + "id_car_serie": 8553, + "name": "1.3 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43060, + "fields": { + "id_car_serie": 8553, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43061, + "fields": { + "id_car_serie": 8554, + "name": "2.0 D MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 43062, + "fields": { + "id_car_serie": 8554, + "name": "2.0 D MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 43063, + "fields": { + "id_car_serie": 8554, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 43064, + "fields": { + "id_car_serie": 8554, + "name": "3.6 AT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 43065, + "fields": { + "id_car_serie": 8551, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43067, + "fields": { + "id_car_serie": 8551, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43069, + "fields": { + "id_car_serie": 8551, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43072, + "fields": { + "id_car_serie": 8551, + "name": "1.9 TD MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43075, + "fields": { + "id_car_serie": 8552, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43076, + "fields": { + "id_car_serie": 8552, + "name": "1.4 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43077, + "fields": { + "id_car_serie": 8552, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43078, + "fields": { + "id_car_serie": 8552, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43081, + "fields": { + "id_car_serie": 8552, + "name": "1.7 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43085, + "fields": { + "id_car_serie": 8558, + "name": "1.8 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43086, + "fields": { + "id_car_serie": 8558, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43087, + "fields": { + "id_car_serie": 8558, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43088, + "fields": { + "id_car_serie": 8558, + "name": "2.0 JTD MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43090, + "fields": { + "id_car_serie": 8558, + "name": "2.1 TD MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43091, + "fields": { + "id_car_serie": 8559, + "name": "0.9 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43093, + "fields": { + "id_car_serie": 8559, + "name": "1.0 MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43096, + "fields": { + "id_car_serie": 8559, + "name": "1.1 MT (51 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43098, + "fields": { + "id_car_serie": 8559, + "name": "1.1 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43107, + "fields": { + "id_car_serie": 8559, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43108, + "fields": { + "id_car_serie": 8559, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43110, + "fields": { + "id_car_serie": 8559, + "name": "1.7 D MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43112, + "fields": { + "id_car_serie": 8560, + "name": "0.9 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43114, + "fields": { + "id_car_serie": 8560, + "name": "1.0 MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43115, + "fields": { + "id_car_serie": 8560, + "name": "1.1 MT (51 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43119, + "fields": { + "id_car_serie": 8560, + "name": "1.1 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43123, + "fields": { + "id_car_serie": 8560, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43125, + "fields": { + "id_car_serie": 8560, + "name": "1.3 D MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43128, + "fields": { + "id_car_serie": 8560, + "name": "1.4 TD MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43131, + "fields": { + "id_car_serie": 8560, + "name": "1.7 D MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43149, + "fields": { + "id_car_serie": 8562, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43150, + "fields": { + "id_car_serie": 8562, + "name": "1.6 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43151, + "fields": { + "id_car_serie": 8562, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43152, + "fields": { + "id_car_serie": 8562, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43153, + "fields": { + "id_car_serie": 8562, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43154, + "fields": { + "id_car_serie": 8562, + "name": "2.3 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43155, + "fields": { + "id_car_serie": 8562, + "name": "3.0 MT (138 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43174, + "fields": { + "id_car_serie": 8567, + "name": "1.3 AT (63 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43175, + "fields": { + "id_car_serie": 8567, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43176, + "fields": { + "id_car_serie": 8568, + "name": "3.3 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43177, + "fields": { + "id_car_serie": 8568, + "name": "3.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43178, + "fields": { + "id_car_serie": 8568, + "name": "5.8 AT (154 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43179, + "fields": { + "id_car_serie": 8568, + "name": "5.8 MT (154 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43180, + "fields": { + "id_car_serie": 8566, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43181, + "fields": { + "id_car_serie": 8566, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43182, + "fields": { + "id_car_serie": 8569, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43183, + "fields": { + "id_car_serie": 8569, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43184, + "fields": { + "id_car_serie": 8569, + "name": "1.6 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43185, + "fields": { + "id_car_serie": 8569, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43186, + "fields": { + "id_car_serie": 8569, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43187, + "fields": { + "id_car_serie": 8569, + "name": "2.3 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43188, + "fields": { + "id_car_serie": 8570, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43189, + "fields": { + "id_car_serie": 8570, + "name": "1.3 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43190, + "fields": { + "id_car_serie": 8570, + "name": "1.6 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43191, + "fields": { + "id_car_serie": 8570, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43192, + "fields": { + "id_car_serie": 8570, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43193, + "fields": { + "id_car_serie": 8571, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43194, + "fields": { + "id_car_serie": 8571, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43195, + "fields": { + "id_car_serie": 8571, + "name": "1.6 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43196, + "fields": { + "id_car_serie": 8571, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43197, + "fields": { + "id_car_serie": 8571, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43198, + "fields": { + "id_car_serie": 8571, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43199, + "fields": { + "id_car_serie": 8574, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43200, + "fields": { + "id_car_serie": 8574, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43203, + "fields": { + "id_car_serie": 8574, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43204, + "fields": { + "id_car_serie": 8574, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43205, + "fields": { + "id_car_serie": 8574, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43206, + "fields": { + "id_car_serie": 8574, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43207, + "fields": { + "id_car_serie": 8574, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43208, + "fields": { + "id_car_serie": 8574, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43209, + "fields": { + "id_car_serie": 8574, + "name": "1.8 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43210, + "fields": { + "id_car_serie": 8575, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43211, + "fields": { + "id_car_serie": 8575, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43212, + "fields": { + "id_car_serie": 8575, + "name": "1.6 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43213, + "fields": { + "id_car_serie": 8575, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43214, + "fields": { + "id_car_serie": 8572, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43215, + "fields": { + "id_car_serie": 8572, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43216, + "fields": { + "id_car_serie": 8572, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43217, + "fields": { + "id_car_serie": 8572, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43218, + "fields": { + "id_car_serie": 8572, + "name": "2.3 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43219, + "fields": { + "id_car_serie": 8573, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43220, + "fields": { + "id_car_serie": 8573, + "name": "1.6 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43221, + "fields": { + "id_car_serie": 8573, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43246, + "fields": { + "id_car_serie": 8585, + "name": "2.2 MT 4X4 (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 43247, + "fields": { + "id_car_serie": 8585, + "name": "2.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 43267, + "fields": { + "id_car_serie": 8586, + "name": "2.2 MT 4X4 (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 43268, + "fields": { + "id_car_serie": 8586, + "name": "2.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 43278, + "fields": { + "id_car_serie": 8596, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 43279, + "fields": { + "id_car_serie": 8596, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 43290, + "fields": { + "id_car_serie": 8600, + "name": "1.5 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43291, + "fields": { + "id_car_serie": 8601, + "name": "1.3 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43292, + "fields": { + "id_car_serie": 8601, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43293, + "fields": { + "id_car_serie": 8602, + "name": "1.3 AT (83 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43294, + "fields": { + "id_car_serie": 8602, + "name": "1.3 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43296, + "fields": { + "id_car_serie": 8602, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43305, + "fields": { + "id_car_serie": 8604, + "name": "1.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43306, + "fields": { + "id_car_serie": 8604, + "name": "1.2 AT (67 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43307, + "fields": { + "id_car_serie": 8604, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43308, + "fields": { + "id_car_serie": 8604, + "name": "1.2 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43309, + "fields": { + "id_car_serie": 8604, + "name": "1.2 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43318, + "fields": { + "id_car_serie": 8603, + "name": "1.2 AT (76 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43319, + "fields": { + "id_car_serie": 8603, + "name": "1.2 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43320, + "fields": { + "id_car_serie": 8603, + "name": "1.3 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43321, + "fields": { + "id_car_serie": 8603, + "name": "1.3 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43322, + "fields": { + "id_car_serie": 8603, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43323, + "fields": { + "id_car_serie": 8603, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43330, + "fields": { + "id_car_serie": 8610, + "name": "3.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43331, + "fields": { + "id_car_serie": 8611, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43332, + "fields": { + "id_car_serie": 8611, + "name": "3.2 AT (225 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43334, + "fields": { + "id_car_serie": 8612, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43335, + "fields": { + "id_car_serie": 8612, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43336, + "fields": { + "id_car_serie": 8612, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43337, + "fields": { + "id_car_serie": 8612, + "name": "3.2 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43344, + "fields": { + "id_car_serie": 8617, + "name": "2.3 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43345, + "fields": { + "id_car_serie": 8617, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43350, + "fields": { + "id_car_serie": 8613, + "name": "2.5 AT L (190 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43355, + "fields": { + "id_car_serie": 8618, + "name": "3.5 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43366, + "fields": { + "id_car_serie": 8622, + "name": "1.7 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43367, + "fields": { + "id_car_serie": 8622, + "name": "1.7 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43369, + "fields": { + "id_car_serie": 8622, + "name": "1.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43370, + "fields": { + "id_car_serie": 8622, + "name": "2.0 AT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43371, + "fields": { + "id_car_serie": 8622, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43373, + "fields": { + "id_car_serie": 8622, + "name": "2.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43376, + "fields": { + "id_car_serie": 8625, + "name": "0.7 MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43377, + "fields": { + "id_car_serie": 8625, + "name": "0.7 MT Turbo 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43378, + "fields": { + "id_car_serie": 8626, + "name": "0.7 AT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43379, + "fields": { + "id_car_serie": 8626, + "name": "0.7 AT Turbo 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43395, + "fields": { + "id_car_serie": 8629, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43396, + "fields": { + "id_car_serie": 8630, + "name": "2.2 CRDi AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43397, + "fields": { + "id_car_serie": 8630, + "name": "2.7 AT (192 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43398, + "fields": { + "id_car_serie": 8630, + "name": "3.3 AT (235 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43421, + "fields": { + "id_car_serie": 8633, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43422, + "fields": { + "id_car_serie": 8633, + "name": "2.4 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43423, + "fields": { + "id_car_serie": 8633, + "name": "2.4 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43424, + "fields": { + "id_car_serie": 8633, + "name": "3.0 AT (164 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43425, + "fields": { + "id_car_serie": 8636, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43426, + "fields": { + "id_car_serie": 8636, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43427, + "fields": { + "id_car_serie": 8636, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43428, + "fields": { + "id_car_serie": 8637, + "name": "1.5 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43429, + "fields": { + "id_car_serie": 8637, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43430, + "fields": { + "id_car_serie": 8637, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43433, + "fields": { + "id_car_serie": 8637, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43434, + "fields": { + "id_car_serie": 8637, + "name": "1.8 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43435, + "fields": { + "id_car_serie": 8637, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43436, + "fields": { + "id_car_serie": 8638, + "name": "1.4 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 43437, + "fields": { + "id_car_serie": 8638, + "name": "1.4 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 43438, + "fields": { + "id_car_serie": 8638, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 43439, + "fields": { + "id_car_serie": 8638, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 43440, + "fields": { + "id_car_serie": 8639, + "name": "1.4 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 43441, + "fields": { + "id_car_serie": 8639, + "name": "1.4 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 43442, + "fields": { + "id_car_serie": 8639, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 43443, + "fields": { + "id_car_serie": 8639, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 43444, + "fields": { + "id_car_serie": 8640, + "name": "1.4 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43445, + "fields": { + "id_car_serie": 8640, + "name": "1.4 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43446, + "fields": { + "id_car_serie": 8640, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43447, + "fields": { + "id_car_serie": 8640, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43448, + "fields": { + "id_car_serie": 8641, + "name": "1.4 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43449, + "fields": { + "id_car_serie": 8641, + "name": "1.4 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43450, + "fields": { + "id_car_serie": 8641, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43451, + "fields": { + "id_car_serie": 8641, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43454, + "fields": { + "id_car_serie": 8643, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43455, + "fields": { + "id_car_serie": 8643, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43456, + "fields": { + "id_car_serie": 8643, + "name": "2.0 AT (142 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43457, + "fields": { + "id_car_serie": 8643, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43458, + "fields": { + "id_car_serie": 8644, + "name": "3.0 CRDi AT 4WD Shiftronic (245 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43459, + "fields": { + "id_car_serie": 8644, + "name": "3.0 CRDi AT 2WD Shiftronic (245 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43460, + "fields": { + "id_car_serie": 8644, + "name": "3.8 AT 2WD Shiftronic (264 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43461, + "fields": { + "id_car_serie": 8644, + "name": "3.8 AT 4WD Shiftronic (264 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43467, + "fields": { + "id_car_serie": 8645, + "name": "2.0 CRDI AT 2WD (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43468, + "fields": { + "id_car_serie": 8645, + "name": "2.0 MT 4WD (142 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43469, + "fields": { + "id_car_serie": 8645, + "name": "2.0 CRDI MT 2WD (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43470, + "fields": { + "id_car_serie": 8645, + "name": "2.0 CRDi AT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43471, + "fields": { + "id_car_serie": 8645, + "name": "2.0 CRDI AT 2WD (112 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43472, + "fields": { + "id_car_serie": 8645, + "name": "2.0 AT 2WD (142 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43473, + "fields": { + "id_car_serie": 8645, + "name": "2.0 AT 4WD (142 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43474, + "fields": { + "id_car_serie": 8645, + "name": "2.0 CRDI MT 2WD (112 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43475, + "fields": { + "id_car_serie": 8645, + "name": "2.0 CRDi MT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43476, + "fields": { + "id_car_serie": 8645, + "name": "2.0 CRDI MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43479, + "fields": { + "id_car_serie": 8645, + "name": "2.7 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43483, + "fields": { + "id_car_serie": 8632, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43484, + "fields": { + "id_car_serie": 8632, + "name": "2.0 MT (146 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43485, + "fields": { + "id_car_serie": 8632, + "name": "2.5 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43487, + "fields": { + "id_car_serie": 8632, + "name": "3.0 AT (194 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43489, + "fields": { + "id_car_serie": 8632, + "name": "3.5 AT (224 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43500, + "fields": { + "id_car_serie": 8649, + "name": "5.6 AT AWD (405 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 43502, + "fields": { + "id_car_serie": 8650, + "name": "5.6 AT AWD (405 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43513, + "fields": { + "id_car_serie": 8652, + "name": "FX35 AT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43514, + "fields": { + "id_car_serie": 8652, + "name": "FX35 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43539, + "fields": { + "id_car_serie": 8659, + "name": "2.0 AT (86 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43540, + "fields": { + "id_car_serie": 8659, + "name": "2.0 MT (86 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43563, + "fields": { + "id_car_serie": 8662, + "name": "4.2 MT (269 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43564, + "fields": { + "id_car_serie": 8663, + "name": "3.8 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 1961, + "end_production_year": 1964 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43565, + "fields": { + "id_car_serie": 8663, + "name": "4.2 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43566, + "fields": { + "id_car_serie": 8664, + "name": "3.8 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 1961, + "end_production_year": 1964 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43567, + "fields": { + "id_car_serie": 8664, + "name": "4.2 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43572, + "fields": { + "id_car_serie": 8666, + "name": "4.2 AT (300 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43573, + "fields": { + "id_car_serie": 8666, + "name": "4.2 AT (400 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43586, + "fields": { + "id_car_serie": 8668, + "name": "6.0 AT Long (311 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43587, + "fields": { + "id_car_serie": 8668, + "name": "6.0 AT (311 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43594, + "fields": { + "id_car_serie": 8669, + "name": "3.2 AT (219 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43595, + "fields": { + "id_car_serie": 8669, + "name": "3.2 MT (219 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43602, + "fields": { + "id_car_serie": 8669, + "name": "4.0 AT (249 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43603, + "fields": { + "id_car_serie": 8669, + "name": "4.0 MT (249 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43606, + "fields": { + "id_car_serie": 8670, + "name": "4.2 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43608, + "fields": { + "id_car_serie": 8670, + "name": "4.2 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43609, + "fields": { + "id_car_serie": 8670, + "name": "4.2 MT (181 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43610, + "fields": { + "id_car_serie": 8670, + "name": "5.3 AT (254 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43611, + "fields": { + "id_car_serie": 8670, + "name": "5.3 AT (264 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43612, + "fields": { + "id_car_serie": 8670, + "name": "5.3 AT (268 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43613, + "fields": { + "id_car_serie": 8670, + "name": "5.3 AT (287 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43615, + "fields": { + "id_car_serie": 8661, + "name": "4.2 MT (269 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43617, + "fields": { + "id_car_serie": 8665, + "name": "3.0 AT (238 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43618, + "fields": { + "id_car_serie": 8665, + "name": "4.2 AT (298 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43620, + "fields": { + "id_car_serie": 8665, + "name": "4.2 AT Supercharged (416 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43621, + "fields": { + "id_car_serie": 8665, + "name": "5.0 AT (385 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43623, + "fields": { + "id_car_serie": 8671, + "name": "3.4 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43624, + "fields": { + "id_car_serie": 8671, + "name": "3.4 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43625, + "fields": { + "id_car_serie": 8671, + "name": "4.2 AT (169 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43626, + "fields": { + "id_car_serie": 8671, + "name": "4.2 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43627, + "fields": { + "id_car_serie": 8671, + "name": "5.3 AT (253 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43628, + "fields": { + "id_car_serie": 8671, + "name": "5.3 AT (287 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43629, + "fields": { + "id_car_serie": 8672, + "name": "2.8 AT (149 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43630, + "fields": { + "id_car_serie": 8672, + "name": "4.2 AT (186 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43631, + "fields": { + "id_car_serie": 8672, + "name": "5.3 MT (269 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43632, + "fields": { + "id_car_serie": 8673, + "name": "2.4 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43633, + "fields": { + "id_car_serie": 8673, + "name": "2.4 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43634, + "fields": { + "id_car_serie": 8673, + "name": "2.5 MT Soft Top (118 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43636, + "fields": { + "id_car_serie": 8673, + "name": "2.5 MT (118 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43637, + "fields": { + "id_car_serie": 8673, + "name": "2.5 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43639, + "fields": { + "id_car_serie": 8673, + "name": "4.0 AT (183 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43641, + "fields": { + "id_car_serie": 8673, + "name": "4.0 AT Rubicon (193 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43642, + "fields": { + "id_car_serie": 8673, + "name": "4.0 MT (178 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43643, + "fields": { + "id_car_serie": 8673, + "name": "4.0 MT (183 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43644, + "fields": { + "id_car_serie": 8673, + "name": "4.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43645, + "fields": { + "id_car_serie": 8673, + "name": "4.0 MT Rubicon (193 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43647, + "fields": { + "id_car_serie": 8674, + "name": "2.5 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43648, + "fields": { + "id_car_serie": 8674, + "name": "4.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43649, + "fields": { + "id_car_serie": 8674, + "name": "4.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43650, + "fields": { + "id_car_serie": 8677, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43652, + "fields": { + "id_car_serie": 8677, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43654, + "fields": { + "id_car_serie": 8677, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43656, + "fields": { + "id_car_serie": 8677, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43657, + "fields": { + "id_car_serie": 8677, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43658, + "fields": { + "id_car_serie": 8677, + "name": "2.0 CRDi MT (111 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43659, + "fields": { + "id_car_serie": 8678, + "name": "1.8 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43660, + "fields": { + "id_car_serie": 8678, + "name": "1.8 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43664, + "fields": { + "id_car_serie": 8676, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43665, + "fields": { + "id_car_serie": 8676, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43666, + "fields": { + "id_car_serie": 8676, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43668, + "fields": { + "id_car_serie": 8676, + "name": "2.0 CRDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43676, + "fields": { + "id_car_serie": 8680, + "name": "2.0 AT (142 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43677, + "fields": { + "id_car_serie": 8680, + "name": "2.0 CRDi MT (138 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43679, + "fields": { + "id_car_serie": 8680, + "name": "2.0 CRDi AT (138 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43680, + "fields": { + "id_car_serie": 8680, + "name": "2.0 MT (142 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43683, + "fields": { + "id_car_serie": 8680, + "name": "2.7 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43685, + "fields": { + "id_car_serie": 8683, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43686, + "fields": { + "id_car_serie": 8683, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43687, + "fields": { + "id_car_serie": 8684, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43688, + "fields": { + "id_car_serie": 8684, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43689, + "fields": { + "id_car_serie": 8684, + "name": "1.6 CRDi AT (128 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43690, + "fields": { + "id_car_serie": 8684, + "name": "1.6 EcoDynamics MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43691, + "fields": { + "id_car_serie": 8684, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43692, + "fields": { + "id_car_serie": 8684, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43693, + "fields": { + "id_car_serie": 8685, + "name": "1.4 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43694, + "fields": { + "id_car_serie": 8685, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43695, + "fields": { + "id_car_serie": 8685, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43696, + "fields": { + "id_car_serie": 8685, + "name": "1.6 CRDi AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43697, + "fields": { + "id_car_serie": 8685, + "name": "1.6 CRDi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43698, + "fields": { + "id_car_serie": 8685, + "name": "1.6 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43699, + "fields": { + "id_car_serie": 8685, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43700, + "fields": { + "id_car_serie": 8685, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43701, + "fields": { + "id_car_serie": 8685, + "name": "2.0 CRDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43702, + "fields": { + "id_car_serie": 8686, + "name": "1.4 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43703, + "fields": { + "id_car_serie": 8686, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43704, + "fields": { + "id_car_serie": 8686, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43705, + "fields": { + "id_car_serie": 8686, + "name": "1.6 CRDi AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43706, + "fields": { + "id_car_serie": 8686, + "name": "1.6 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43707, + "fields": { + "id_car_serie": 8686, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43708, + "fields": { + "id_car_serie": 8686, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43709, + "fields": { + "id_car_serie": 8686, + "name": "2.0 CRDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43710, + "fields": { + "id_car_serie": 8689, + "name": "1.6 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43712, + "fields": { + "id_car_serie": 8689, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43714, + "fields": { + "id_car_serie": 8689, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43716, + "fields": { + "id_car_serie": 8689, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43720, + "fields": { + "id_car_serie": 8687, + "name": "1.4 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43721, + "fields": { + "id_car_serie": 8687, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43722, + "fields": { + "id_car_serie": 8687, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43723, + "fields": { + "id_car_serie": 8687, + "name": "1.6 CRDi AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43724, + "fields": { + "id_car_serie": 8687, + "name": "1.6 CRDi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43725, + "fields": { + "id_car_serie": 8687, + "name": "1.6 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43726, + "fields": { + "id_car_serie": 8687, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43727, + "fields": { + "id_car_serie": 8687, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43728, + "fields": { + "id_car_serie": 8687, + "name": "2.0 CRDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43729, + "fields": { + "id_car_serie": 8688, + "name": "1.6 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43730, + "fields": { + "id_car_serie": 8688, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43731, + "fields": { + "id_car_serie": 8688, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43736, + "fields": { + "id_car_serie": 8690, + "name": "1.6 VGT AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43738, + "fields": { + "id_car_serie": 8690, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43739, + "fields": { + "id_car_serie": 8690, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43740, + "fields": { + "id_car_serie": 8690, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43758, + "fields": { + "id_car_serie": 8695, + "name": "2.4 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43759, + "fields": { + "id_car_serie": 8695, + "name": "2.7 AT (188 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43761, + "fields": { + "id_car_serie": 8681, + "name": "2.0 MT (134 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43762, + "fields": { + "id_car_serie": 8681, + "name": "2.5 AT (166 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43763, + "fields": { + "id_car_serie": 8681, + "name": "2.5 MT (166 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43764, + "fields": { + "id_car_serie": 8682, + "name": "1.4 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43765, + "fields": { + "id_car_serie": 8682, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43766, + "fields": { + "id_car_serie": 8682, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43767, + "fields": { + "id_car_serie": 8682, + "name": "1.6 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43768, + "fields": { + "id_car_serie": 8682, + "name": "1.6 CRDi EcoDynamics MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43769, + "fields": { + "id_car_serie": 8682, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43770, + "fields": { + "id_car_serie": 8682, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43771, + "fields": { + "id_car_serie": 8696, + "name": "2.0 AT (149 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43772, + "fields": { + "id_car_serie": 8696, + "name": "2.0 MT (149 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43773, + "fields": { + "id_car_serie": 8696, + "name": "2.4 AT (151 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43774, + "fields": { + "id_car_serie": 8696, + "name": "2.4 MT (151 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43781, + "fields": { + "id_car_serie": 8698, + "name": "1.4 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43782, + "fields": { + "id_car_serie": 8698, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43783, + "fields": { + "id_car_serie": 8698, + "name": "1.5 CRDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43784, + "fields": { + "id_car_serie": 8698, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43785, + "fields": { + "id_car_serie": 8698, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43786, + "fields": { + "id_car_serie": 8699, + "name": "1.4 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43787, + "fields": { + "id_car_serie": 8699, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43788, + "fields": { + "id_car_serie": 8699, + "name": "1.5 CRDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43789, + "fields": { + "id_car_serie": 8699, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43790, + "fields": { + "id_car_serie": 8699, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43791, + "fields": { + "id_car_serie": 8693, + "name": "2.0 MPI AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43794, + "fields": { + "id_car_serie": 8693, + "name": "2.0 MPI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43797, + "fields": { + "id_car_serie": 8693, + "name": "2.4 MPI AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43807, + "fields": { + "id_car_serie": 8700, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43809, + "fields": { + "id_car_serie": 8700, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43812, + "fields": { + "id_car_serie": 8700, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43814, + "fields": { + "id_car_serie": 8700, + "name": "1.5 AT (108 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43815, + "fields": { + "id_car_serie": 8700, + "name": "1.5 MT (108 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43828, + "fields": { + "id_car_serie": 8702, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43829, + "fields": { + "id_car_serie": 8702, + "name": "1.8 AT (111 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43830, + "fields": { + "id_car_serie": 8702, + "name": "1.8 MT (111 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43831, + "fields": { + "id_car_serie": 8703, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43832, + "fields": { + "id_car_serie": 8703, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43833, + "fields": { + "id_car_serie": 8703, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43834, + "fields": { + "id_car_serie": 8703, + "name": "1.6 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43835, + "fields": { + "id_car_serie": 8703, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43843, + "fields": { + "id_car_serie": 8705, + "name": "2.0 TD AT (113 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43844, + "fields": { + "id_car_serie": 8705, + "name": "2.0 TD MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43853, + "fields": { + "id_car_serie": 8709, + "name": "5.0 MT (520 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43862, + "fields": { + "id_car_serie": 8713, + "name": "1.0 MT Abarth (69 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43871, + "fields": { + "id_car_serie": 8715, + "name": "1.6 I.e. (107 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43872, + "fields": { + "id_car_serie": 8715, + "name": "1.6 I.e. (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43881, + "fields": { + "id_car_serie": 8717, + "name": "4.4 AT (299 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43882, + "fields": { + "id_car_serie": 8717, + "name": "2.7 TD MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43883, + "fields": { + "id_car_serie": 8717, + "name": "2.7 TD AT (190 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43884, + "fields": { + "id_car_serie": 8718, + "name": "2.5 TD AT (138 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43885, + "fields": { + "id_car_serie": 8718, + "name": "2.5 TD MT (138 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43888, + "fields": { + "id_car_serie": 8721, + "name": "2.2 TD4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43889, + "fields": { + "id_car_serie": 8721, + "name": "2.2 SD4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43891, + "fields": { + "id_car_serie": 8721, + "name": "2.2 TD4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43892, + "fields": { + "id_car_serie": 8721, + "name": "3.2 i6 AT (233 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43893, + "fields": { + "id_car_serie": 8722, + "name": "2.2 DTI AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43894, + "fields": { + "id_car_serie": 8722, + "name": "2.2 TD AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43895, + "fields": { + "id_car_serie": 8722, + "name": "2.2 SD AT (190 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43897, + "fields": { + "id_car_serie": 8722, + "name": "2.2 DTI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43898, + "fields": { + "id_car_serie": 8722, + "name": "2.2 TD MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43899, + "fields": { + "id_car_serie": 8722, + "name": "3.2 AT (233 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43900, + "fields": { + "id_car_serie": 8723, + "name": "1.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43904, + "fields": { + "id_car_serie": 8723, + "name": "2.0 TD MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43906, + "fields": { + "id_car_serie": 8723, + "name": "2.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43907, + "fields": { + "id_car_serie": 8724, + "name": "1.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43908, + "fields": { + "id_car_serie": 8724, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43909, + "fields": { + "id_car_serie": 8724, + "name": "2.0 TD AT (112 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43910, + "fields": { + "id_car_serie": 8724, + "name": "2.0 TD MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43911, + "fields": { + "id_car_serie": 8724, + "name": "2.0 DI MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43912, + "fields": { + "id_car_serie": 8724, + "name": "2.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43923, + "fields": { + "id_car_serie": 8720, + "name": "2.0 MT (134 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43925, + "fields": { + "id_car_serie": 8720, + "name": "2.5 TDi MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43926, + "fields": { + "id_car_serie": 8720, + "name": "3.5 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43927, + "fields": { + "id_car_serie": 8720, + "name": "3.5 MT (166 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43939, + "fields": { + "id_car_serie": 8730, + "name": "400 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43941, + "fields": { + "id_car_serie": 8732, + "name": "350 AT (275 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43960, + "fields": { + "id_car_serie": 8739, + "name": "450 AT (212 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43970, + "fields": { + "id_car_serie": 8741, + "name": "330 AT (233 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43971, + "fields": { + "id_car_serie": 8741, + "name": "300 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43972, + "fields": { + "id_car_serie": 8741, + "name": "300 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43975, + "fields": { + "id_car_serie": 8745, + "name": "3.0 AT (213 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43976, + "fields": { + "id_car_serie": 8745, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43977, + "fields": { + "id_car_serie": 8745, + "name": "3.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43978, + "fields": { + "id_car_serie": 8745, + "name": "3.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43995, + "fields": { + "id_car_serie": 8749, + "name": "3.5 AT (268 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 43996, + "fields": { + "id_car_serie": 8749, + "name": "3.5 AT AWD (268 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44003, + "fields": { + "id_car_serie": 8751, + "name": "1.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44012, + "fields": { + "id_car_serie": 8755, + "name": "2.2 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 44019, + "fields": { + "id_car_serie": 8758, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 44021, + "fields": { + "id_car_serie": 8758, + "name": "2.6 D MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 44023, + "fields": { + "id_car_serie": 8762, + "name": "3.2 Biturbo AT (370 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44024, + "fields": { + "id_car_serie": 8762, + "name": "3.2 Biturbo MT (370 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44040, + "fields": { + "id_car_serie": 8766, + "name": "1.1 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 44041, + "fields": { + "id_car_serie": 8769, + "name": "1.1 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44042, + "fields": { + "id_car_serie": 8769, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44043, + "fields": { + "id_car_serie": 8769, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44044, + "fields": { + "id_car_serie": 8768, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44045, + "fields": { + "id_car_serie": 8768, + "name": "1.3 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44047, + "fields": { + "id_car_serie": 8770, + "name": "4.2 Turbo AT (400 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44050, + "fields": { + "id_car_serie": 8771, + "name": "2.0 Biturbo MT (287 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44051, + "fields": { + "id_car_serie": 8771, + "name": "2.0 Biturbo MT (306 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44053, + "fields": { + "id_car_serie": 8771, + "name": "2.8 Biturbo MT (284 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44055, + "fields": { + "id_car_serie": 8771, + "name": "3.2 Turbo MT (335 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44060, + "fields": { + "id_car_serie": 8773, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44061, + "fields": { + "id_car_serie": 8773, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44062, + "fields": { + "id_car_serie": 8773, + "name": "1.5 AT (103 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44063, + "fields": { + "id_car_serie": 8773, + "name": "1.5 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44065, + "fields": { + "id_car_serie": 8776, + "name": "1.4 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44066, + "fields": { + "id_car_serie": 8776, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44067, + "fields": { + "id_car_serie": 8776, + "name": "1.4 MZ-CD AT (68 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44068, + "fields": { + "id_car_serie": 8776, + "name": "1.4 MZ-CD MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44069, + "fields": { + "id_car_serie": 8776, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44070, + "fields": { + "id_car_serie": 8777, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44071, + "fields": { + "id_car_serie": 8777, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44072, + "fields": { + "id_car_serie": 8777, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44077, + "fields": { + "id_car_serie": 8777, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44080, + "fields": { + "id_car_serie": 8767, + "name": "3.2 Turbo MT (326 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44081, + "fields": { + "id_car_serie": 8774, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44082, + "fields": { + "id_car_serie": 8774, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44083, + "fields": { + "id_car_serie": 8774, + "name": "1.4 MZ-CD MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44085, + "fields": { + "id_car_serie": 8774, + "name": "1.5 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44086, + "fields": { + "id_car_serie": 8774, + "name": "1.6 MZ-CD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44087, + "fields": { + "id_car_serie": 8775, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44088, + "fields": { + "id_car_serie": 8775, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44089, + "fields": { + "id_car_serie": 8775, + "name": "1.4 MZ-CD MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44091, + "fields": { + "id_car_serie": 8775, + "name": "1.5 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44098, + "fields": { + "id_car_serie": 8778, + "name": "2.5 AT (172 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44099, + "fields": { + "id_car_serie": 8778, + "name": "2.5 MT (172 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44100, + "fields": { + "id_car_serie": 8779, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44101, + "fields": { + "id_car_serie": 8779, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44102, + "fields": { + "id_car_serie": 8779, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44103, + "fields": { + "id_car_serie": 8779, + "name": "2.0 MZR-CD MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44108, + "fields": { + "id_car_serie": 8779, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44109, + "fields": { + "id_car_serie": 8782, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44110, + "fields": { + "id_car_serie": 8782, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44112, + "fields": { + "id_car_serie": 8782, + "name": "2.0 MZR-CD MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44115, + "fields": { + "id_car_serie": 8782, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44126, + "fields": { + "id_car_serie": 8781, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44127, + "fields": { + "id_car_serie": 8781, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44129, + "fields": { + "id_car_serie": 8781, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44131, + "fields": { + "id_car_serie": 8781, + "name": "2.0 MZR-CD MT (121 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44132, + "fields": { + "id_car_serie": 8781, + "name": "2.0 MZR-CD MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44134, + "fields": { + "id_car_serie": 8781, + "name": "2.3 AT 4WD (162 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44135, + "fields": { + "id_car_serie": 8781, + "name": "2.3 MT (166 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44136, + "fields": { + "id_car_serie": 8783, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44137, + "fields": { + "id_car_serie": 8783, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44170, + "fields": { + "id_car_serie": 8780, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44171, + "fields": { + "id_car_serie": 8780, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44173, + "fields": { + "id_car_serie": 8780, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44175, + "fields": { + "id_car_serie": 8780, + "name": "2.0 MZR-CD MT (121 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44176, + "fields": { + "id_car_serie": 8780, + "name": "2.0 MZR-CD MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44178, + "fields": { + "id_car_serie": 8780, + "name": "2.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44179, + "fields": { + "id_car_serie": 8780, + "name": "2.3 AT (157 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44181, + "fields": { + "id_car_serie": 8780, + "name": "2.3 MT (166 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44182, + "fields": { + "id_car_serie": 8780, + "name": "2.3 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44183, + "fields": { + "id_car_serie": 8780, + "name": "2.3 MT (157 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44184, + "fields": { + "id_car_serie": 8780, + "name": "3.0 AT (223 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44185, + "fields": { + "id_car_serie": 8780, + "name": "3.0 MT (223 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44190, + "fields": { + "id_car_serie": 8789, + "name": "0.7 AT AWD (54 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44191, + "fields": { + "id_car_serie": 8789, + "name": "0.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44192, + "fields": { + "id_car_serie": 8789, + "name": "0.7 MT AWD (54 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44193, + "fields": { + "id_car_serie": 8789, + "name": "0.7 MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44220, + "fields": { + "id_car_serie": 8793, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44221, + "fields": { + "id_car_serie": 8793, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44234, + "fields": { + "id_car_serie": 8796, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44235, + "fields": { + "id_car_serie": 8796, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44237, + "fields": { + "id_car_serie": 8796, + "name": "1.5 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44238, + "fields": { + "id_car_serie": 8796, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44241, + "fields": { + "id_car_serie": 8796, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44244, + "fields": { + "id_car_serie": 8797, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44245, + "fields": { + "id_car_serie": 8797, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44246, + "fields": { + "id_car_serie": 8797, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44247, + "fields": { + "id_car_serie": 8797, + "name": "1.5 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44250, + "fields": { + "id_car_serie": 8800, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44251, + "fields": { + "id_car_serie": 8800, + "name": "2.0 MZR-CD MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44252, + "fields": { + "id_car_serie": 8800, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44255, + "fields": { + "id_car_serie": 8800, + "name": "2.3 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44256, + "fields": { + "id_car_serie": 8800, + "name": "2.5 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44257, + "fields": { + "id_car_serie": 8800, + "name": "2.5 AT (172 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44258, + "fields": { + "id_car_serie": 8800, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44259, + "fields": { + "id_car_serie": 8801, + "name": "2.5 TD AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44260, + "fields": { + "id_car_serie": 8801, + "name": "2.5 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44263, + "fields": { + "id_car_serie": 8801, + "name": "3.0 AT (154 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44264, + "fields": { + "id_car_serie": 8801, + "name": "3.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44277, + "fields": { + "id_car_serie": 8799, + "name": "1.3 MT (127 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44278, + "fields": { + "id_car_serie": 8799, + "name": "1.8 AT (83 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44279, + "fields": { + "id_car_serie": 8799, + "name": "1.8 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44280, + "fields": { + "id_car_serie": 8799, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44281, + "fields": { + "id_car_serie": 8799, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44282, + "fields": { + "id_car_serie": 8799, + "name": "2.2 MT (66 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44297, + "fields": { + "id_car_serie": 8806, + "name": "2.5 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44298, + "fields": { + "id_car_serie": 8806, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44299, + "fields": { + "id_car_serie": 8809, + "name": "1.5 CVT (95 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44300, + "fields": { + "id_car_serie": 8809, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44303, + "fields": { + "id_car_serie": 8809, + "name": "1.7 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44305, + "fields": { + "id_car_serie": 8809, + "name": "2.0 CVT (193 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44306, + "fields": { + "id_car_serie": 8809, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44307, + "fields": { + "id_car_serie": 8809, + "name": "2.0 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44308, + "fields": { + "id_car_serie": 8809, + "name": "2.0 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44309, + "fields": { + "id_car_serie": 8809, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44310, + "fields": { + "id_car_serie": 8809, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44311, + "fields": { + "id_car_serie": 8809, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44312, + "fields": { + "id_car_serie": 8810, + "name": "1.5 CVT (95 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44313, + "fields": { + "id_car_serie": 8810, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44314, + "fields": { + "id_car_serie": 8810, + "name": "1.7 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44315, + "fields": { + "id_car_serie": 8810, + "name": "1.7 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44316, + "fields": { + "id_car_serie": 8810, + "name": "2.0 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44317, + "fields": { + "id_car_serie": 8810, + "name": "2.0 CVT (193 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44318, + "fields": { + "id_car_serie": 8810, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44319, + "fields": { + "id_car_serie": 8810, + "name": "2.0 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44320, + "fields": { + "id_car_serie": 8810, + "name": "2.0 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44321, + "fields": { + "id_car_serie": 8810, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44322, + "fields": { + "id_car_serie": 8810, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44323, + "fields": { + "id_car_serie": 8810, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44337, + "fields": { + "id_car_serie": 8807, + "name": "2.3 AT (153 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44408, + "fields": { + "id_car_serie": 8814, + "name": "1.8 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44410, + "fields": { + "id_car_serie": 8814, + "name": "1.8 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44411, + "fields": { + "id_car_serie": 8814, + "name": "2.1 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44413, + "fields": { + "id_car_serie": 8814, + "name": "2.1 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44414, + "fields": { + "id_car_serie": 8814, + "name": "2.1 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44415, + "fields": { + "id_car_serie": 8814, + "name": "2.1 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44416, + "fields": { + "id_car_serie": 8814, + "name": "3.5 AT (252 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44417, + "fields": { + "id_car_serie": 8814, + "name": "3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44418, + "fields": { + "id_car_serie": 8814, + "name": "4.7 AT (408 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44420, + "fields": { + "id_car_serie": 8817, + "name": "2.1 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44421, + "fields": { + "id_car_serie": 8817, + "name": "2.1 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44424, + "fields": { + "id_car_serie": 8817, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44425, + "fields": { + "id_car_serie": 8817, + "name": "2.1 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44426, + "fields": { + "id_car_serie": 8817, + "name": "2.1 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44428, + "fields": { + "id_car_serie": 8818, + "name": "1.8 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44430, + "fields": { + "id_car_serie": 8818, + "name": "1.8 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44444, + "fields": { + "id_car_serie": 8818, + "name": "2.7 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44445, + "fields": { + "id_car_serie": 8818, + "name": "2.7 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44448, + "fields": { + "id_car_serie": 8818, + "name": "3.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44453, + "fields": { + "id_car_serie": 8818, + "name": "3.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44456, + "fields": { + "id_car_serie": 8818, + "name": "3.2 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44470, + "fields": { + "id_car_serie": 8815, + "name": "1.8 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44471, + "fields": { + "id_car_serie": 8815, + "name": "2.1 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44474, + "fields": { + "id_car_serie": 8815, + "name": "2.1 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44475, + "fields": { + "id_car_serie": 8815, + "name": "2.1 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44476, + "fields": { + "id_car_serie": 8815, + "name": "2.1 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44477, + "fields": { + "id_car_serie": 8815, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44479, + "fields": { + "id_car_serie": 8815, + "name": "3.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44480, + "fields": { + "id_car_serie": 8815, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44497, + "fields": { + "id_car_serie": 8816, + "name": "1.8 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44499, + "fields": { + "id_car_serie": 8816, + "name": "2.1 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44500, + "fields": { + "id_car_serie": 8816, + "name": "3.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44501, + "fields": { + "id_car_serie": 8816, + "name": "3.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44502, + "fields": { + "id_car_serie": 8816, + "name": "3.5 AT (292 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44507, + "fields": { + "id_car_serie": 8819, + "name": "1.8 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44523, + "fields": { + "id_car_serie": 8819, + "name": "2.7 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44524, + "fields": { + "id_car_serie": 8819, + "name": "2.7 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44531, + "fields": { + "id_car_serie": 8819, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44532, + "fields": { + "id_car_serie": 8819, + "name": "320 3.0d AT (224 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44535, + "fields": { + "id_car_serie": 8819, + "name": "3.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44538, + "fields": { + "id_car_serie": 8819, + "name": "3.2 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44541, + "fields": { + "id_car_serie": 8819, + "name": "4.0 AT (260 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44542, + "fields": { + "id_car_serie": 8819, + "name": "4.0 AT (314 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44556, + "fields": { + "id_car_serie": 8823, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44557, + "fields": { + "id_car_serie": 8823, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44558, + "fields": { + "id_car_serie": 8823, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44559, + "fields": { + "id_car_serie": 8823, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44560, + "fields": { + "id_car_serie": 8823, + "name": "2.5 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44561, + "fields": { + "id_car_serie": 8823, + "name": "2.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44563, + "fields": { + "id_car_serie": 8823, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44566, + "fields": { + "id_car_serie": 8823, + "name": "3.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44569, + "fields": { + "id_car_serie": 8823, + "name": "3.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44571, + "fields": { + "id_car_serie": 8823, + "name": "3.2 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44573, + "fields": { + "id_car_serie": 8824, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44574, + "fields": { + "id_car_serie": 8824, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44575, + "fields": { + "id_car_serie": 8824, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44576, + "fields": { + "id_car_serie": 8824, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44578, + "fields": { + "id_car_serie": 8824, + "name": "3.2 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44614, + "fields": { + "id_car_serie": 8826, + "name": "5.5 AT (517 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44617, + "fields": { + "id_car_serie": 8827, + "name": "5.0 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44621, + "fields": { + "id_car_serie": 8827, + "name": "5.8 AT (367 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44624, + "fields": { + "id_car_serie": 8828, + "name": "4.2 AT (279 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44625, + "fields": { + "id_car_serie": 8828, + "name": "5.0 AT (320 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44626, + "fields": { + "id_car_serie": 8828, + "name": "6.0 AT (394 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44662, + "fields": { + "id_car_serie": 8820, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44663, + "fields": { + "id_car_serie": 8820, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44664, + "fields": { + "id_car_serie": 8820, + "name": "2.2 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44666, + "fields": { + "id_car_serie": 8820, + "name": "2.2 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44668, + "fields": { + "id_car_serie": 8820, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44669, + "fields": { + "id_car_serie": 8820, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44670, + "fields": { + "id_car_serie": 8820, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44671, + "fields": { + "id_car_serie": 8820, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44672, + "fields": { + "id_car_serie": 8820, + "name": "2.5 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44673, + "fields": { + "id_car_serie": 8820, + "name": "2.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44674, + "fields": { + "id_car_serie": 8820, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44681, + "fields": { + "id_car_serie": 8820, + "name": "2.8 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44682, + "fields": { + "id_car_serie": 8820, + "name": "2.9 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44683, + "fields": { + "id_car_serie": 8820, + "name": "2.9 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44684, + "fields": { + "id_car_serie": 8820, + "name": "3.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44687, + "fields": { + "id_car_serie": 8820, + "name": "430 4.3 AT (279 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44693, + "fields": { + "id_car_serie": 8821, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44694, + "fields": { + "id_car_serie": 8821, + "name": "2.0 AT (186 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44695, + "fields": { + "id_car_serie": 8821, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44696, + "fields": { + "id_car_serie": 8821, + "name": "2.0 MT (186 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44697, + "fields": { + "id_car_serie": 8821, + "name": "2.0 MT (88 hp) diesel, MT", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44698, + "fields": { + "id_car_serie": 8821, + "name": "2.2 AT (102 hp) diesel, MT, RWD", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44700, + "fields": { + "id_car_serie": 8821, + "name": "2.2 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44705, + "fields": { + "id_car_serie": 8821, + "name": "2.2 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44708, + "fields": { + "id_car_serie": 8821, + "name": "2.2 MT (95 hp) diesel, MT", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44709, + "fields": { + "id_car_serie": 8821, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44710, + "fields": { + "id_car_serie": 8821, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44711, + "fields": { + "id_car_serie": 8821, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44712, + "fields": { + "id_car_serie": 8821, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44713, + "fields": { + "id_car_serie": 8821, + "name": "2.5 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44714, + "fields": { + "id_car_serie": 8821, + "name": "2.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44715, + "fields": { + "id_car_serie": 8821, + "name": "2.5 MT (150 hp) diesel, MT", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44720, + "fields": { + "id_car_serie": 8821, + "name": "2.8 AT (193 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44722, + "fields": { + "id_car_serie": 8821, + "name": "2.8 AT (204 hp) gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44723, + "fields": { + "id_car_serie": 8821, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44724, + "fields": { + "id_car_serie": 8821, + "name": "2.8 MT (204 hp) gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44725, + "fields": { + "id_car_serie": 8821, + "name": "2.8 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44726, + "fields": { + "id_car_serie": 8821, + "name": "2.9 AT (129 hp) diesel, Automatic transmission", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44727, + "fields": { + "id_car_serie": 8821, + "name": "2.9 MT (129 hp) diesel, MT", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44728, + "fields": { + "id_car_serie": 8821, + "name": "3.0 AT (136 hp) diesel, MT", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44730, + "fields": { + "id_car_serie": 8821, + "name": "3.0 AT (177 hp) diesel, Automatic transmission", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44731, + "fields": { + "id_car_serie": 8821, + "name": "3.0 MT (136 hp) diesel, Automatic transmission", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44733, + "fields": { + "id_car_serie": 8821, + "name": "3.2 AT (220 hp) gasoline, Automatic transmission", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44734, + "fields": { + "id_car_serie": 8821, + "name": "3.2 AT (224 hp) gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44735, + "fields": { + "id_car_serie": 8821, + "name": "3.2 AT (224 hp) gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44738, + "fields": { + "id_car_serie": 8821, + "name": "4.2 AT (279 hp) gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44741, + "fields": { + "id_car_serie": 8821, + "name": "4.3 AT (279 hp) gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44742, + "fields": { + "id_car_serie": 8821, + "name": "50 AMG 5.0 AT (347 hp) gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44744, + "fields": { + "id_car_serie": 8821, + "name": "55 AMG 5.4 AT (354 hp) gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44745, + "fields": { + "id_car_serie": 8830, + "name": "2.1 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44746, + "fields": { + "id_car_serie": 8830, + "name": "300 3.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44748, + "fields": { + "id_car_serie": 8830, + "name": "350 3.0d AT (235 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44749, + "fields": { + "id_car_serie": 8830, + "name": "350 3.0d AT (235 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44753, + "fields": { + "id_car_serie": 8830, + "name": "350 3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44754, + "fields": { + "id_car_serie": 8830, + "name": "350 3.5 AT (306 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44757, + "fields": { + "id_car_serie": 8830, + "name": "400 3.5hyb AT (299 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44760, + "fields": { + "id_car_serie": 8830, + "name": "500 4.7 AT (435 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44764, + "fields": { + "id_car_serie": 8830, + "name": "5.5 AT (517 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44765, + "fields": { + "id_car_serie": 8831, + "name": "5.5 AT (517 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44814, + "fields": { + "id_car_serie": 8839, + "name": "4.2 AT (279 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44892, + "fields": { + "id_car_serie": 8841, + "name": "3.5 AT (194 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44893, + "fields": { + "id_car_serie": 8841, + "name": "3.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44894, + "fields": { + "id_car_serie": 8841, + "name": "3.5 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44895, + "fields": { + "id_car_serie": 8841, + "name": "3.5 MT (194 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44896, + "fields": { + "id_car_serie": 8841, + "name": "3.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44897, + "fields": { + "id_car_serie": 8841, + "name": "3.5 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44898, + "fields": { + "id_car_serie": 8841, + "name": "4.5 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44899, + "fields": { + "id_car_serie": 8841, + "name": "4.5 AT (224 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44900, + "fields": { + "id_car_serie": 8841, + "name": "4.5 MT (218 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44901, + "fields": { + "id_car_serie": 8841, + "name": "4.5 MT (224 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44902, + "fields": { + "id_car_serie": 8841, + "name": "6.8 AT (286 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44903, + "fields": { + "id_car_serie": 8841, + "name": "6.8 MT (286 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44904, + "fields": { + "id_car_serie": 8844, + "name": "4.6 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44905, + "fields": { + "id_car_serie": 8844, + "name": "4.6 AT (223 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44906, + "fields": { + "id_car_serie": 8844, + "name": "4.6 AT (235 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44907, + "fields": { + "id_car_serie": 8845, + "name": "4.6 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44908, + "fields": { + "id_car_serie": 8846, + "name": "4.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44935, + "fields": { + "id_car_serie": 8850, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44936, + "fields": { + "id_car_serie": 8850, + "name": "1.3 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44937, + "fields": { + "id_car_serie": 8853, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44938, + "fields": { + "id_car_serie": 8853, + "name": "1.8 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44939, + "fields": { + "id_car_serie": 8853, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44940, + "fields": { + "id_car_serie": 8853, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44960, + "fields": { + "id_car_serie": 8859, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44961, + "fields": { + "id_car_serie": 8859, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44965, + "fields": { + "id_car_serie": 8861, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44966, + "fields": { + "id_car_serie": 8863, + "name": "1.6 MT 2WD (117 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44967, + "fields": { + "id_car_serie": 8863, + "name": "1.8 CVT 2WD (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44968, + "fields": { + "id_car_serie": 8863, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44990, + "fields": { + "id_car_serie": 8867, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44991, + "fields": { + "id_car_serie": 8867, + "name": "2.0 AT T 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44992, + "fields": { + "id_car_serie": 8867, + "name": "2.0 AT T (213 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44993, + "fields": { + "id_car_serie": 8867, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44994, + "fields": { + "id_car_serie": 8867, + "name": "2.0 MT T 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 44995, + "fields": { + "id_car_serie": 8867, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45006, + "fields": { + "id_car_serie": 8869, + "name": "2.4 AT AWD (145 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45009, + "fields": { + "id_car_serie": 8869, + "name": "2.4 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45011, + "fields": { + "id_car_serie": 8869, + "name": "2.5 TD AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45013, + "fields": { + "id_car_serie": 8869, + "name": "2.5 TD MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45014, + "fields": { + "id_car_serie": 8869, + "name": "2.8 TD AT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45015, + "fields": { + "id_car_serie": 8869, + "name": "2.8 TD MT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45016, + "fields": { + "id_car_serie": 8869, + "name": "3.0 AT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45021, + "fields": { + "id_car_serie": 8870, + "name": "2.5 TD AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45023, + "fields": { + "id_car_serie": 8870, + "name": "2.5 TD MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45025, + "fields": { + "id_car_serie": 8871, + "name": "1.8 GDI AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45026, + "fields": { + "id_car_serie": 8871, + "name": "1.8 GDI AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45027, + "fields": { + "id_car_serie": 8871, + "name": "1.8 GDI AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45028, + "fields": { + "id_car_serie": 8871, + "name": "1.8 GDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45029, + "fields": { + "id_car_serie": 8871, + "name": "1.8 GDI MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45030, + "fields": { + "id_car_serie": 8871, + "name": "1.8 GDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45031, + "fields": { + "id_car_serie": 8871, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45032, + "fields": { + "id_car_serie": 8871, + "name": "2.0 GDI AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45033, + "fields": { + "id_car_serie": 8871, + "name": "2.0 GDI AT AWD (145 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45034, + "fields": { + "id_car_serie": 8871, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45035, + "fields": { + "id_car_serie": 8871, + "name": "2.0 GDI MT AWD (145 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45036, + "fields": { + "id_car_serie": 8871, + "name": "2.0 GDI MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45037, + "fields": { + "id_car_serie": 8871, + "name": "2.0 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45038, + "fields": { + "id_car_serie": 8871, + "name": "2.4 GDI AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45039, + "fields": { + "id_car_serie": 8871, + "name": "2.4 GDI AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45040, + "fields": { + "id_car_serie": 8871, + "name": "2.4 GDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45041, + "fields": { + "id_car_serie": 8871, + "name": "2.4 GDI MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45042, + "fields": { + "id_car_serie": 8871, + "name": "2.5 V6 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45044, + "fields": { + "id_car_serie": 8871, + "name": "2.5 AT VR-4 AWD (280 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45045, + "fields": { + "id_car_serie": 8871, + "name": "2.5 V6 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45047, + "fields": { + "id_car_serie": 8871, + "name": "2.5 MT VR-4 AWD (280 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45057, + "fields": { + "id_car_serie": 8872, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45058, + "fields": { + "id_car_serie": 8872, + "name": "2.0 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45059, + "fields": { + "id_car_serie": 8872, + "name": "2.4 GDI AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45061, + "fields": { + "id_car_serie": 8872, + "name": "2.4 GDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45064, + "fields": { + "id_car_serie": 8872, + "name": "2.5 V6 MT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45065, + "fields": { + "id_car_serie": 8872, + "name": "2.5 V6 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45067, + "fields": { + "id_car_serie": 8873, + "name": "1.8 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45068, + "fields": { + "id_car_serie": 8873, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45070, + "fields": { + "id_car_serie": 8873, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45071, + "fields": { + "id_car_serie": 8873, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45073, + "fields": { + "id_car_serie": 8873, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45074, + "fields": { + "id_car_serie": 8873, + "name": "2.0 GTI-V6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45076, + "fields": { + "id_car_serie": 8873, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45077, + "fields": { + "id_car_serie": 8873, + "name": "2.0 GTI-V6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45078, + "fields": { + "id_car_serie": 8873, + "name": "2.0 MT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45079, + "fields": { + "id_car_serie": 8873, + "name": "2.0 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45083, + "fields": { + "id_car_serie": 8876, + "name": "1.8 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45084, + "fields": { + "id_car_serie": 8876, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45085, + "fields": { + "id_car_serie": 8876, + "name": "1.8 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45086, + "fields": { + "id_car_serie": 8876, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45088, + "fields": { + "id_car_serie": 8876, + "name": "1.8 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45090, + "fields": { + "id_car_serie": 8876, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45094, + "fields": { + "id_car_serie": 8876, + "name": "2.0 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45095, + "fields": { + "id_car_serie": 8876, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45097, + "fields": { + "id_car_serie": 8876, + "name": "2.0 GTI-16V MT (144 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45100, + "fields": { + "id_car_serie": 8877, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45101, + "fields": { + "id_car_serie": 8877, + "name": "1.8 TD AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45102, + "fields": { + "id_car_serie": 8877, + "name": "1.8 TD MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45103, + "fields": { + "id_car_serie": 8877, + "name": "2.0 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45106, + "fields": { + "id_car_serie": 8877, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45107, + "fields": { + "id_car_serie": 8877, + "name": "2.0 MT Turbo (150 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45108, + "fields": { + "id_car_serie": 8877, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45112, + "fields": { + "id_car_serie": 8878, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45113, + "fields": { + "id_car_serie": 8878, + "name": "2.0 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45115, + "fields": { + "id_car_serie": 8878, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45116, + "fields": { + "id_car_serie": 8878, + "name": "2.0 MT Turbo (170 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45118, + "fields": { + "id_car_serie": 8878, + "name": "2.3 MT Turbo Disel (84 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45119, + "fields": { + "id_car_serie": 8874, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45120, + "fields": { + "id_car_serie": 8874, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45121, + "fields": { + "id_car_serie": 8874, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45122, + "fields": { + "id_car_serie": 8874, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45123, + "fields": { + "id_car_serie": 8874, + "name": "2.0 D AT AWD (94 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45124, + "fields": { + "id_car_serie": 8874, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45125, + "fields": { + "id_car_serie": 8874, + "name": "2.0 GTI-V6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45126, + "fields": { + "id_car_serie": 8874, + "name": "2.0 GTI-V6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45127, + "fields": { + "id_car_serie": 8874, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45128, + "fields": { + "id_car_serie": 8874, + "name": "2.0 MT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45129, + "fields": { + "id_car_serie": 8874, + "name": "2.0 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45130, + "fields": { + "id_car_serie": 8874, + "name": "2.5 GTI-V6 MT Dynamic-4 (170 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45131, + "fields": { + "id_car_serie": 8875, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45132, + "fields": { + "id_car_serie": 8875, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45133, + "fields": { + "id_car_serie": 8875, + "name": "1.8 AT (76 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45134, + "fields": { + "id_car_serie": 8875, + "name": "1.8 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45136, + "fields": { + "id_car_serie": 8875, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45137, + "fields": { + "id_car_serie": 8875, + "name": "2.0 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45138, + "fields": { + "id_car_serie": 8875, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45140, + "fields": { + "id_car_serie": 8875, + "name": "2.0 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45141, + "fields": { + "id_car_serie": 8875, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45142, + "fields": { + "id_car_serie": 8875, + "name": "2.0 GTI-16V MT (144 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45143, + "fields": { + "id_car_serie": 8875, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45144, + "fields": { + "id_car_serie": 8875, + "name": "2.0 MT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45145, + "fields": { + "id_car_serie": 8879, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45146, + "fields": { + "id_car_serie": 8879, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45147, + "fields": { + "id_car_serie": 8879, + "name": "2.0 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45148, + "fields": { + "id_car_serie": 8879, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45149, + "fields": { + "id_car_serie": 8879, + "name": "2.3 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45150, + "fields": { + "id_car_serie": 8879, + "name": "2.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45152, + "fields": { + "id_car_serie": 8880, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45154, + "fields": { + "id_car_serie": 8880, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45155, + "fields": { + "id_car_serie": 8883, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45156, + "fields": { + "id_car_serie": 8883, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45157, + "fields": { + "id_car_serie": 8883, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45158, + "fields": { + "id_car_serie": 8883, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45159, + "fields": { + "id_car_serie": 8883, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45162, + "fields": { + "id_car_serie": 8883, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45163, + "fields": { + "id_car_serie": 8883, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45166, + "fields": { + "id_car_serie": 8883, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45168, + "fields": { + "id_car_serie": 8884, + "name": "2.4 T MT 4WD (132 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45169, + "fields": { + "id_car_serie": 8884, + "name": "2.5 TD AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45170, + "fields": { + "id_car_serie": 8884, + "name": "2.5 TD AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45171, + "fields": { + "id_car_serie": 8884, + "name": "2.5 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45172, + "fields": { + "id_car_serie": 8884, + "name": "2.5 TD MT 4WD (104 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45197, + "fields": { + "id_car_serie": 8860, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45198, + "fields": { + "id_car_serie": 8860, + "name": "1.6 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45199, + "fields": { + "id_car_serie": 8860, + "name": "1.6 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45200, + "fields": { + "id_car_serie": 8860, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45201, + "fields": { + "id_car_serie": 8860, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45203, + "fields": { + "id_car_serie": 8881, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45207, + "fields": { + "id_car_serie": 8881, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45214, + "fields": { + "id_car_serie": 8886, + "name": "2.0 CVT 4WD PHEV (220 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45222, + "fields": { + "id_car_serie": 8887, + "name": "2.0 DI-D DPF AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45223, + "fields": { + "id_car_serie": 8887, + "name": "2.0 DI-D DPF MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45224, + "fields": { + "id_car_serie": 8887, + "name": "2.2 DI-D DPF AT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45225, + "fields": { + "id_car_serie": 8887, + "name": "2.2 DI-D DPF MT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45226, + "fields": { + "id_car_serie": 8887, + "name": "2.4 LPG CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45227, + "fields": { + "id_car_serie": 8887, + "name": "2.4 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45228, + "fields": { + "id_car_serie": 8887, + "name": "2.4 LPG MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45229, + "fields": { + "id_car_serie": 8887, + "name": "2.4 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45230, + "fields": { + "id_car_serie": 8887, + "name": "3.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45241, + "fields": { + "id_car_serie": 8888, + "name": "2.0 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45242, + "fields": { + "id_car_serie": 8888, + "name": "2.0 MT 2WD (136 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45243, + "fields": { + "id_car_serie": 8888, + "name": "2.0 Turbo MT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45244, + "fields": { + "id_car_serie": 8888, + "name": "2.4 AT 4WD (139 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45245, + "fields": { + "id_car_serie": 8888, + "name": "2.4 AT 2WD (139 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45247, + "fields": { + "id_car_serie": 8888, + "name": "2.4 AT 2WD (160 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45248, + "fields": { + "id_car_serie": 8888, + "name": "2.4 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45249, + "fields": { + "id_car_serie": 8888, + "name": "2.4 MT 2WD (139 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45250, + "fields": { + "id_car_serie": 8888, + "name": "2.4 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45251, + "fields": { + "id_car_serie": 8888, + "name": "2.4 MT 2WD (160 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45252, + "fields": { + "id_car_serie": 8894, + "name": "1.8 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45253, + "fields": { + "id_car_serie": 8894, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45254, + "fields": { + "id_car_serie": 8894, + "name": "2.0 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45256, + "fields": { + "id_car_serie": 8894, + "name": "2.4 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45257, + "fields": { + "id_car_serie": 8894, + "name": "2.4 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45262, + "fields": { + "id_car_serie": 8895, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45263, + "fields": { + "id_car_serie": 8895, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45264, + "fields": { + "id_car_serie": 8895, + "name": "2.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45266, + "fields": { + "id_car_serie": 8895, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45267, + "fields": { + "id_car_serie": 8895, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45273, + "fields": { + "id_car_serie": 8895, + "name": "2.0 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45290, + "fields": { + "id_car_serie": 8898, + "name": "1.8 TD AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45292, + "fields": { + "id_car_serie": 8898, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45296, + "fields": { + "id_car_serie": 8898, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45297, + "fields": { + "id_car_serie": 8898, + "name": "1.8 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45299, + "fields": { + "id_car_serie": 8898, + "name": "2.0 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45301, + "fields": { + "id_car_serie": 8898, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45302, + "fields": { + "id_car_serie": 8898, + "name": "2.0 MT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45310, + "fields": { + "id_car_serie": 8893, + "name": "2.5 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45312, + "fields": { + "id_car_serie": 8893, + "name": "2.5 TD MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45313, + "fields": { + "id_car_serie": 8893, + "name": "3.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45314, + "fields": { + "id_car_serie": 8893, + "name": "3.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45315, + "fields": { + "id_car_serie": 8893, + "name": "3.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45316, + "fields": { + "id_car_serie": 8893, + "name": "3.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45318, + "fields": { + "id_car_serie": 8897, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45320, + "fields": { + "id_car_serie": 8897, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45321, + "fields": { + "id_car_serie": 8897, + "name": "1.8 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45323, + "fields": { + "id_car_serie": 8897, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45324, + "fields": { + "id_car_serie": 8897, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45326, + "fields": { + "id_car_serie": 8897, + "name": "2.0 MT TD (82 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45327, + "fields": { + "id_car_serie": 8900, + "name": "CVT (41 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45328, + "fields": { + "id_car_serie": 8901, + "name": "2.0 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 45329, + "fields": { + "id_car_serie": 8901, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 45338, + "fields": { + "id_car_serie": 8903, + "name": "1.8 MT (111 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45340, + "fields": { + "id_car_serie": 8904, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45342, + "fields": { + "id_car_serie": 8904, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45343, + "fields": { + "id_car_serie": 8904, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45346, + "fields": { + "id_car_serie": 8905, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45348, + "fields": { + "id_car_serie": 8905, + "name": "1.8 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45349, + "fields": { + "id_car_serie": 8905, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45352, + "fields": { + "id_car_serie": 8906, + "name": "4.8 MT (368 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 45363, + "fields": { + "id_car_serie": 8911, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45366, + "fields": { + "id_car_serie": 8911, + "name": "3.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45367, + "fields": { + "id_car_serie": 8911, + "name": "3.0 turbo MT (228 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45368, + "fields": { + "id_car_serie": 8912, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45370, + "fields": { + "id_car_serie": 8912, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45377, + "fields": { + "id_car_serie": 8912, + "name": "1.8 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45378, + "fields": { + "id_car_serie": 8912, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45380, + "fields": { + "id_car_serie": 8912, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45391, + "fields": { + "id_car_serie": 8916, + "name": "3.0 Turbo AT (270 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45392, + "fields": { + "id_car_serie": 8916, + "name": "4.1 AT (270 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45393, + "fields": { + "id_car_serie": 8918, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45394, + "fields": { + "id_car_serie": 8918, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45395, + "fields": { + "id_car_serie": 8918, + "name": "3.0 AT (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45396, + "fields": { + "id_car_serie": 8919, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45397, + "fields": { + "id_car_serie": 8919, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45398, + "fields": { + "id_car_serie": 8919, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45399, + "fields": { + "id_car_serie": 8919, + "name": "3.0 AT (193 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45414, + "fields": { + "id_car_serie": 8922, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45415, + "fields": { + "id_car_serie": 8922, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45416, + "fields": { + "id_car_serie": 8922, + "name": "2.5 AT AWD (235 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45417, + "fields": { + "id_car_serie": 8922, + "name": "2.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45418, + "fields": { + "id_car_serie": 8922, + "name": "3.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45419, + "fields": { + "id_car_serie": 8922, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45422, + "fields": { + "id_car_serie": 8925, + "name": "2.0 AT (144 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45424, + "fields": { + "id_car_serie": 8925, + "name": "2.0 MT (123 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45425, + "fields": { + "id_car_serie": 8925, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45428, + "fields": { + "id_car_serie": 8925, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45432, + "fields": { + "id_car_serie": 8925, + "name": "2.8 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45433, + "fields": { + "id_car_serie": 8915, + "name": "3.0 Turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45434, + "fields": { + "id_car_serie": 8915, + "name": "4.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45435, + "fields": { + "id_car_serie": 8915, + "name": "4.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45444, + "fields": { + "id_car_serie": 8926, + "name": "3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45445, + "fields": { + "id_car_serie": 8926, + "name": "3.5 MT (300 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45446, + "fields": { + "id_car_serie": 8926, + "name": "3.5 MT (306 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45447, + "fields": { + "id_car_serie": 8927, + "name": "3.5 AT (300 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45448, + "fields": { + "id_car_serie": 8927, + "name": "3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45449, + "fields": { + "id_car_serie": 8927, + "name": "3.5 MT (287 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45450, + "fields": { + "id_car_serie": 8927, + "name": "3.5 MT (300 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45451, + "fields": { + "id_car_serie": 8927, + "name": "3.5 MT (306 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45456, + "fields": { + "id_car_serie": 8930, + "name": "3.0 AT (169 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45459, + "fields": { + "id_car_serie": 8930, + "name": "3.0 MT (169 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45460, + "fields": { + "id_car_serie": 8930, + "name": "3.0 T MT (225 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45461, + "fields": { + "id_car_serie": 8931, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45462, + "fields": { + "id_car_serie": 8931, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45465, + "fields": { + "id_car_serie": 8923, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45466, + "fields": { + "id_car_serie": 8923, + "name": "2.8 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45467, + "fields": { + "id_car_serie": 8923, + "name": "3.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45468, + "fields": { + "id_car_serie": 8923, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45469, + "fields": { + "id_car_serie": 8923, + "name": "3.0 AT (255 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45470, + "fields": { + "id_car_serie": 8928, + "name": "3.0 AT (222 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45471, + "fields": { + "id_car_serie": 8928, + "name": "3.0 MT (222 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45477, + "fields": { + "id_car_serie": 8934, + "name": "2.0 MT (123 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45482, + "fields": { + "id_car_serie": 8934, + "name": "2.8 AT (168 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45483, + "fields": { + "id_car_serie": 8934, + "name": "2.8 MT (168 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45484, + "fields": { + "id_car_serie": 8935, + "name": "2.0 T AT (144 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45485, + "fields": { + "id_car_serie": 8935, + "name": "2.0 T MT (144 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45493, + "fields": { + "id_car_serie": 8920, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45494, + "fields": { + "id_car_serie": 8920, + "name": "2.0 MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45495, + "fields": { + "id_car_serie": 8920, + "name": "2.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45496, + "fields": { + "id_car_serie": 8920, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45497, + "fields": { + "id_car_serie": 8920, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45498, + "fields": { + "id_car_serie": 8920, + "name": "2.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45499, + "fields": { + "id_car_serie": 8920, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45501, + "fields": { + "id_car_serie": 8932, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45502, + "fields": { + "id_car_serie": 8932, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45503, + "fields": { + "id_car_serie": 8932, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45506, + "fields": { + "id_car_serie": 8933, + "name": "2.4 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45509, + "fields": { + "id_car_serie": 8933, + "name": "2.8 D AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45511, + "fields": { + "id_car_serie": 8933, + "name": "2.8 D MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45512, + "fields": { + "id_car_serie": 8937, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45513, + "fields": { + "id_car_serie": 8937, + "name": "4.1 AT (270 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45514, + "fields": { + "id_car_serie": 8940, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45515, + "fields": { + "id_car_serie": 8941, + "name": "0.7 4WD AT (50 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45516, + "fields": { + "id_car_serie": 8941, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45519, + "fields": { + "id_car_serie": 8942, + "name": "0.7 4WD AT (50 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45520, + "fields": { + "id_car_serie": 8942, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45521, + "fields": { + "id_car_serie": 8942, + "name": "0.7 4WD T AT (50 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45522, + "fields": { + "id_car_serie": 8942, + "name": "0.7 T AT (50 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45523, + "fields": { + "id_car_serie": 8942, + "name": "0.7 4WD MT (50 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45524, + "fields": { + "id_car_serie": 8942, + "name": "0.7 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45527, + "fields": { + "id_car_serie": 8938, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45529, + "fields": { + "id_car_serie": 8938, + "name": "2.0 T AT (207 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45530, + "fields": { + "id_car_serie": 8938, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45532, + "fields": { + "id_car_serie": 8938, + "name": "3.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45533, + "fields": { + "id_car_serie": 8938, + "name": "3.0 T AT (251 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45534, + "fields": { + "id_car_serie": 8939, + "name": "0.7 4WD AT (54 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45535, + "fields": { + "id_car_serie": 8939, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45536, + "fields": { + "id_car_serie": 8939, + "name": "0.7 Turbo AT (60 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45544, + "fields": { + "id_car_serie": 8945, + "name": "3.1 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45545, + "fields": { + "id_car_serie": 8945, + "name": "3.8 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45551, + "fields": { + "id_car_serie": 8946, + "name": "2.4 AT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45553, + "fields": { + "id_car_serie": 8946, + "name": "2.4 MT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45554, + "fields": { + "id_car_serie": 8946, + "name": "3.2 AT AWD (227 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45557, + "fields": { + "id_car_serie": 8950, + "name": "3.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45558, + "fields": { + "id_car_serie": 8950, + "name": "3.8 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45559, + "fields": { + "id_car_serie": 8951, + "name": "3.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45560, + "fields": { + "id_car_serie": 8951, + "name": "3.8 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45577, + "fields": { + "id_car_serie": 8952, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45578, + "fields": { + "id_car_serie": 8952, + "name": "5.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45579, + "fields": { + "id_car_serie": 8952, + "name": "5.7 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45580, + "fields": { + "id_car_serie": 8952, + "name": "5.7 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45581, + "fields": { + "id_car_serie": 8952, + "name": "6.6 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45582, + "fields": { + "id_car_serie": 8953, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45583, + "fields": { + "id_car_serie": 8953, + "name": "5.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45584, + "fields": { + "id_car_serie": 8953, + "name": "5.7 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45585, + "fields": { + "id_car_serie": 8953, + "name": "5.7 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45586, + "fields": { + "id_car_serie": 8953, + "name": "6.6 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45620, + "fields": { + "id_car_serie": 8960, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45621, + "fields": { + "id_car_serie": 8960, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45622, + "fields": { + "id_car_serie": 8961, + "name": "1.2 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45623, + "fields": { + "id_car_serie": 8961, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45624, + "fields": { + "id_car_serie": 8961, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45625, + "fields": { + "id_car_serie": 8961, + "name": "1.6 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45626, + "fields": { + "id_car_serie": 8961, + "name": "1.6 D 5MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45627, + "fields": { + "id_car_serie": 8962, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45630, + "fields": { + "id_car_serie": 8962, + "name": "1.2 AT (60 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45632, + "fields": { + "id_car_serie": 8962, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45633, + "fields": { + "id_car_serie": 8962, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45634, + "fields": { + "id_car_serie": 8962, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45635, + "fields": { + "id_car_serie": 8962, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45638, + "fields": { + "id_car_serie": 8965, + "name": "1.2 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45639, + "fields": { + "id_car_serie": 8965, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45640, + "fields": { + "id_car_serie": 8965, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45641, + "fields": { + "id_car_serie": 8965, + "name": "1.6 D AT (54 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45642, + "fields": { + "id_car_serie": 8965, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45643, + "fields": { + "id_car_serie": 8966, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45644, + "fields": { + "id_car_serie": 8966, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45647, + "fields": { + "id_car_serie": 8966, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45649, + "fields": { + "id_car_serie": 8966, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45651, + "fields": { + "id_car_serie": 8966, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45652, + "fields": { + "id_car_serie": 8966, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45653, + "fields": { + "id_car_serie": 8966, + "name": "2.0 DI MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45654, + "fields": { + "id_car_serie": 8966, + "name": "2.0 DTI MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45658, + "fields": { + "id_car_serie": 8966, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45660, + "fields": { + "id_car_serie": 8966, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45664, + "fields": { + "id_car_serie": 8963, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45667, + "fields": { + "id_car_serie": 8963, + "name": "1.2 AT (60 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45669, + "fields": { + "id_car_serie": 8963, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45670, + "fields": { + "id_car_serie": 8963, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45671, + "fields": { + "id_car_serie": 8963, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45672, + "fields": { + "id_car_serie": 8963, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45673, + "fields": { + "id_car_serie": 8963, + "name": "1.9 GT/E 5MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45674, + "fields": { + "id_car_serie": 8963, + "name": "1.9 GT/E MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45676, + "fields": { + "id_car_serie": 8963, + "name": "2.0 GT/E 5MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45677, + "fields": { + "id_car_serie": 8964, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45678, + "fields": { + "id_car_serie": 8964, + "name": "1.2 AT (60 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45679, + "fields": { + "id_car_serie": 8964, + "name": "1.2 MT (52 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45680, + "fields": { + "id_car_serie": 8964, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45681, + "fields": { + "id_car_serie": 8964, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45684, + "fields": { + "id_car_serie": 8969, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45688, + "fields": { + "id_car_serie": 8969, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45689, + "fields": { + "id_car_serie": 8969, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45690, + "fields": { + "id_car_serie": 8969, + "name": "1.7 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45692, + "fields": { + "id_car_serie": 8969, + "name": "1.7 TD MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45694, + "fields": { + "id_car_serie": 8969, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45696, + "fields": { + "id_car_serie": 8969, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45698, + "fields": { + "id_car_serie": 8969, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45701, + "fields": { + "id_car_serie": 8969, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45708, + "fields": { + "id_car_serie": 8969, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45711, + "fields": { + "id_car_serie": 8969, + "name": "2.0 MT AWD (129 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45712, + "fields": { + "id_car_serie": 8969, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45716, + "fields": { + "id_car_serie": 8969, + "name": "2.0 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45717, + "fields": { + "id_car_serie": 8969, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45720, + "fields": { + "id_car_serie": 8969, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45723, + "fields": { + "id_car_serie": 8970, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45724, + "fields": { + "id_car_serie": 8970, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45727, + "fields": { + "id_car_serie": 8970, + "name": "1.7 TD MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45729, + "fields": { + "id_car_serie": 8970, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45732, + "fields": { + "id_car_serie": 8970, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45735, + "fields": { + "id_car_serie": 8970, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45737, + "fields": { + "id_car_serie": 8970, + "name": "2.0 DI MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45739, + "fields": { + "id_car_serie": 8970, + "name": "2.0 DTI MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45741, + "fields": { + "id_car_serie": 8970, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45743, + "fields": { + "id_car_serie": 8970, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45744, + "fields": { + "id_car_serie": 8970, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45764, + "fields": { + "id_car_serie": 8959, + "name": "1.2 MT (53 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45765, + "fields": { + "id_car_serie": 8959, + "name": "1.2 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45766, + "fields": { + "id_car_serie": 8959, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45767, + "fields": { + "id_car_serie": 8959, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45768, + "fields": { + "id_car_serie": 8959, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45769, + "fields": { + "id_car_serie": 8959, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45770, + "fields": { + "id_car_serie": 8959, + "name": "1.6 D 5MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45771, + "fields": { + "id_car_serie": 8959, + "name": "1.8 GTE 5MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45788, + "fields": { + "id_car_serie": 8967, + "name": "2.5 MT (194 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45790, + "fields": { + "id_car_serie": 8968, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45791, + "fields": { + "id_car_serie": 8968, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45794, + "fields": { + "id_car_serie": 8968, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45796, + "fields": { + "id_car_serie": 8968, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45798, + "fields": { + "id_car_serie": 8968, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45799, + "fields": { + "id_car_serie": 8968, + "name": "2.0 DI MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45800, + "fields": { + "id_car_serie": 8968, + "name": "2.0 DTI MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45804, + "fields": { + "id_car_serie": 8968, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45805, + "fields": { + "id_car_serie": 8968, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45814, + "fields": { + "id_car_serie": 8958, + "name": "1.2 MT (53 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45815, + "fields": { + "id_car_serie": 8958, + "name": "1.2 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45816, + "fields": { + "id_car_serie": 8958, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45817, + "fields": { + "id_car_serie": 8958, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45818, + "fields": { + "id_car_serie": 8958, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45820, + "fields": { + "id_car_serie": 8958, + "name": "1.6 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45821, + "fields": { + "id_car_serie": 8958, + "name": "1.8 GTE 5MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45822, + "fields": { + "id_car_serie": 8976, + "name": "1.6 THP AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45823, + "fields": { + "id_car_serie": 8976, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45824, + "fields": { + "id_car_serie": 8976, + "name": "1.6 THP MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45826, + "fields": { + "id_car_serie": 8976, + "name": "1.6 HDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45828, + "fields": { + "id_car_serie": 8976, + "name": "2.0 HDi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45839, + "fields": { + "id_car_serie": 8972, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45841, + "fields": { + "id_car_serie": 8972, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45842, + "fields": { + "id_car_serie": 8972, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45843, + "fields": { + "id_car_serie": 8972, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45844, + "fields": { + "id_car_serie": 8972, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45845, + "fields": { + "id_car_serie": 8972, + "name": "2.0 DI MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45847, + "fields": { + "id_car_serie": 8972, + "name": "2.0 DTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45848, + "fields": { + "id_car_serie": 8972, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45849, + "fields": { + "id_car_serie": 8972, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45850, + "fields": { + "id_car_serie": 8972, + "name": "2.2 DTI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45883, + "fields": { + "id_car_serie": 8982, + "name": "2.2 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45884, + "fields": { + "id_car_serie": 8982, + "name": "2.2 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45886, + "fields": { + "id_car_serie": 8980, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45887, + "fields": { + "id_car_serie": 8980, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45888, + "fields": { + "id_car_serie": 8980, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45890, + "fields": { + "id_car_serie": 8980, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45903, + "fields": { + "id_car_serie": 8986, + "name": "3.8 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45909, + "fields": { + "id_car_serie": 8986, + "name": "5.7 AT (309 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45910, + "fields": { + "id_car_serie": 8986, + "name": "5.7 MT (329 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45922, + "fields": { + "id_car_serie": 8989, + "name": "6.6 AT (335 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1969 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45931, + "fields": { + "id_car_serie": 8992, + "name": "2.2 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45932, + "fields": { + "id_car_serie": 8992, + "name": "2.2 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45933, + "fields": { + "id_car_serie": 8992, + "name": "2.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45934, + "fields": { + "id_car_serie": 8992, + "name": "2.5 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45935, + "fields": { + "id_car_serie": 8992, + "name": "2.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45936, + "fields": { + "id_car_serie": 8992, + "name": "2.5 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45937, + "fields": { + "id_car_serie": 8992, + "name": "3.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45938, + "fields": { + "id_car_serie": 8992, + "name": "3.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45939, + "fields": { + "id_car_serie": 8992, + "name": "3.3 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45940, + "fields": { + "id_car_serie": 8992, + "name": "3.3 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45941, + "fields": { + "id_car_serie": 8994, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45942, + "fields": { + "id_car_serie": 8994, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45943, + "fields": { + "id_car_serie": 8994, + "name": "2.0 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45944, + "fields": { + "id_car_serie": 8994, + "name": "2.0 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45951, + "fields": { + "id_car_serie": 8996, + "name": "3.6 MT (325 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45956, + "fields": { + "id_car_serie": 8996, + "name": "4 3.6 MT (325 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45961, + "fields": { + "id_car_serie": 8996, + "name": "S 3.8 MT (355 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45966, + "fields": { + "id_car_serie": 8996, + "name": "4S 3.8 MT (355 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45976, + "fields": { + "id_car_serie": 8998, + "name": "4 3.6 MT (325 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45977, + "fields": { + "id_car_serie": 8998, + "name": "3.6 MT (325 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45988, + "fields": { + "id_car_serie": 8998, + "name": "S 3.8 MT (355 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45989, + "fields": { + "id_car_serie": 8998, + "name": "4S 3.8 MT (355 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45995, + "fields": { + "id_car_serie": 9000, + "name": "3.4 MT Carrera 4 (300 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 45996, + "fields": { + "id_car_serie": 9000, + "name": "3.4 MT Carrera (300 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46007, + "fields": { + "id_car_serie": 9001, + "name": "3.6 MT Carrera (285 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46008, + "fields": { + "id_car_serie": 9001, + "name": "3.6 MT Carrera (272 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46009, + "fields": { + "id_car_serie": 8993, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46010, + "fields": { + "id_car_serie": 8993, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46011, + "fields": { + "id_car_serie": 8993, + "name": "2.0 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46012, + "fields": { + "id_car_serie": 8993, + "name": "2.0 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46027, + "fields": { + "id_car_serie": 9003, + "name": "3.6 MT GT2 (430 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46035, + "fields": { + "id_car_serie": 8985, + "name": "2.5 AT (89 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46036, + "fields": { + "id_car_serie": 8985, + "name": "2.5 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46037, + "fields": { + "id_car_serie": 8985, + "name": "2.8 AT (137 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46038, + "fields": { + "id_car_serie": 8985, + "name": "2.8 MT (137 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46061, + "fields": { + "id_car_serie": 9005, + "name": "3.6 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46062, + "fields": { + "id_car_serie": 9005, + "name": "3.6 MT (250 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46110, + "fields": { + "id_car_serie": 9002, + "name": "3.6 MT Carrera (272 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46112, + "fields": { + "id_car_serie": 9002, + "name": "3.6 MT Carrera 4 (285 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46113, + "fields": { + "id_car_serie": 9002, + "name": "3.6 MT Carrera (285 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46136, + "fields": { + "id_car_serie": 9014, + "name": "2.5 AT (92 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46137, + "fields": { + "id_car_serie": 9014, + "name": "2.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46138, + "fields": { + "id_car_serie": 9014, + "name": "3.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46139, + "fields": { + "id_car_serie": 9014, + "name": "3.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46140, + "fields": { + "id_car_serie": 9014, + "name": "5.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46141, + "fields": { + "id_car_serie": 9014, + "name": "5.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46142, + "fields": { + "id_car_serie": 9016, + "name": "Diesel 3.0 Tiptronic (250 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46144, + "fields": { + "id_car_serie": 9016, + "name": "3.6 PDK (300 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46146, + "fields": { + "id_car_serie": 9016, + "name": "3.6 MT (300 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46147, + "fields": { + "id_car_serie": 9016, + "name": "4S 4.8 PDK AWD (400 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46148, + "fields": { + "id_car_serie": 9016, + "name": "S 4.8 PDK (400 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46149, + "fields": { + "id_car_serie": 9016, + "name": "GTS 4.8 PDK (430 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46150, + "fields": { + "id_car_serie": 9016, + "name": "Turbo 4.8 PDK AWD (500 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46151, + "fields": { + "id_car_serie": 9016, + "name": "Turbo S 4.8 PDK AWD (550 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46152, + "fields": { + "id_car_serie": 9016, + "name": "S 4.8 MT (400 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46154, + "fields": { + "id_car_serie": 9015, + "name": "2.5 AT (92 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46155, + "fields": { + "id_car_serie": 9015, + "name": "2.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46156, + "fields": { + "id_car_serie": 9015, + "name": "3.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46157, + "fields": { + "id_car_serie": 9015, + "name": "3.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46158, + "fields": { + "id_car_serie": 9015, + "name": "5.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46159, + "fields": { + "id_car_serie": 9015, + "name": "5.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46160, + "fields": { + "id_car_serie": 9018, + "name": "1.1 MT (42 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46162, + "fields": { + "id_car_serie": 9021, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46163, + "fields": { + "id_car_serie": 9021, + "name": "1.5 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46164, + "fields": { + "id_car_serie": 9021, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46165, + "fields": { + "id_car_serie": 9021, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46166, + "fields": { + "id_car_serie": 9021, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46184, + "fields": { + "id_car_serie": 9027, + "name": "2.7 MT (275 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46196, + "fields": { + "id_car_serie": 9029, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46199, + "fields": { + "id_car_serie": 9031, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46200, + "fields": { + "id_car_serie": 9031, + "name": "1.8i MT Turbo (136 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46212, + "fields": { + "id_car_serie": 9030, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46214, + "fields": { + "id_car_serie": 9030, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46226, + "fields": { + "id_car_serie": 9035, + "name": "1.5 dCi MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46227, + "fields": { + "id_car_serie": 9035, + "name": "1.5 dCi MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46228, + "fields": { + "id_car_serie": 9035, + "name": "1.5 dCi MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46235, + "fields": { + "id_car_serie": 9037, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46238, + "fields": { + "id_car_serie": 9037, + "name": "1.5 dCi MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46239, + "fields": { + "id_car_serie": 9037, + "name": "1.5 dCi MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46240, + "fields": { + "id_car_serie": 9037, + "name": "1.6 AT (111 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46241, + "fields": { + "id_car_serie": 9037, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46247, + "fields": { + "id_car_serie": 9038, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46248, + "fields": { + "id_car_serie": 9038, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46252, + "fields": { + "id_car_serie": 9038, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46253, + "fields": { + "id_car_serie": 9038, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46254, + "fields": { + "id_car_serie": 9038, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46255, + "fields": { + "id_car_serie": 9038, + "name": "1.9 dTi MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46258, + "fields": { + "id_car_serie": 9040, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46259, + "fields": { + "id_car_serie": 9040, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46263, + "fields": { + "id_car_serie": 9040, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46264, + "fields": { + "id_car_serie": 9040, + "name": "1.8 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46265, + "fields": { + "id_car_serie": 9040, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46266, + "fields": { + "id_car_serie": 9040, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46270, + "fields": { + "id_car_serie": 9039, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46272, + "fields": { + "id_car_serie": 9039, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46273, + "fields": { + "id_car_serie": 9039, + "name": "1.4 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46274, + "fields": { + "id_car_serie": 9039, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46275, + "fields": { + "id_car_serie": 9039, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46278, + "fields": { + "id_car_serie": 9039, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46279, + "fields": { + "id_car_serie": 9039, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46280, + "fields": { + "id_car_serie": 9039, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46281, + "fields": { + "id_car_serie": 9039, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46282, + "fields": { + "id_car_serie": 9039, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46284, + "fields": { + "id_car_serie": 9042, + "name": "1.5 dCi MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46285, + "fields": { + "id_car_serie": 9042, + "name": "1.6 MT 4x4 (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46286, + "fields": { + "id_car_serie": 9042, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46287, + "fields": { + "id_car_serie": 9042, + "name": "2.0 AT 4x4 (135 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46288, + "fields": { + "id_car_serie": 9042, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46289, + "fields": { + "id_car_serie": 9042, + "name": "2.0 MT 4x4 (135 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46296, + "fields": { + "id_car_serie": 9036, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46299, + "fields": { + "id_car_serie": 9036, + "name": "1.5 dCi MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46300, + "fields": { + "id_car_serie": 9036, + "name": "1.5 dCi MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46301, + "fields": { + "id_car_serie": 9036, + "name": "1.6 AT (111 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46302, + "fields": { + "id_car_serie": 9036, + "name": "1.6 MT (111 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46304, + "fields": { + "id_car_serie": 9043, + "name": "1.9 dTi MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46306, + "fields": { + "id_car_serie": 9043, + "name": "2.0 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46307, + "fields": { + "id_car_serie": 9043, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46308, + "fields": { + "id_car_serie": 9043, + "name": "2.2 dCi MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46309, + "fields": { + "id_car_serie": 9043, + "name": "2.2 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46310, + "fields": { + "id_car_serie": 9043, + "name": "3.0 AT (167 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46313, + "fields": { + "id_car_serie": 9045, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46315, + "fields": { + "id_car_serie": 9045, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46316, + "fields": { + "id_car_serie": 9045, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46317, + "fields": { + "id_car_serie": 9045, + "name": "2.1 D MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46320, + "fields": { + "id_car_serie": 9041, + "name": "1.1 AT (49 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46322, + "fields": { + "id_car_serie": 9041, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46324, + "fields": { + "id_car_serie": 9041, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46325, + "fields": { + "id_car_serie": 9041, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46326, + "fields": { + "id_car_serie": 9041, + "name": "1.8 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46328, + "fields": { + "id_car_serie": 9041, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46329, + "fields": { + "id_car_serie": 9041, + "name": "1.8 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46330, + "fields": { + "id_car_serie": 9041, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46332, + "fields": { + "id_car_serie": 9046, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46338, + "fields": { + "id_car_serie": 9046, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46355, + "fields": { + "id_car_serie": 9044, + "name": "2.1 TD MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46358, + "fields": { + "id_car_serie": 9044, + "name": "2.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46360, + "fields": { + "id_car_serie": 9044, + "name": "2.8 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46363, + "fields": { + "id_car_serie": 9050, + "name": "2.2 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46369, + "fields": { + "id_car_serie": 9053, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46371, + "fields": { + "id_car_serie": 9053, + "name": "2.0 AT (144 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46372, + "fields": { + "id_car_serie": 9053, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46373, + "fields": { + "id_car_serie": 9053, + "name": "2.5 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46375, + "fields": { + "id_car_serie": 9051, + "name": "2.1 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46376, + "fields": { + "id_car_serie": 9051, + "name": "2.2 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46377, + "fields": { + "id_car_serie": 9051, + "name": "2.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46378, + "fields": { + "id_car_serie": 9051, + "name": "2.2 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46379, + "fields": { + "id_car_serie": 9051, + "name": "2.5 TD AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46380, + "fields": { + "id_car_serie": 9051, + "name": "2.5 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46381, + "fields": { + "id_car_serie": 9051, + "name": "3.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46383, + "fields": { + "id_car_serie": 9051, + "name": "3.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46396, + "fields": { + "id_car_serie": 9056, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46397, + "fields": { + "id_car_serie": 9056, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46398, + "fields": { + "id_car_serie": 9056, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46399, + "fields": { + "id_car_serie": 9056, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46401, + "fields": { + "id_car_serie": 9057, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46402, + "fields": { + "id_car_serie": 9058, + "name": "6.6 AT (632 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 46413, + "fields": { + "id_car_serie": 9063, + "name": "2.0 AT (154 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46415, + "fields": { + "id_car_serie": 9063, + "name": "2.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46416, + "fields": { + "id_car_serie": 9063, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46417, + "fields": { + "id_car_serie": 9063, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46418, + "fields": { + "id_car_serie": 9063, + "name": "2.0 MT (154 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46419, + "fields": { + "id_car_serie": 9063, + "name": "2.0 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46421, + "fields": { + "id_car_serie": 9063, + "name": "2.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46423, + "fields": { + "id_car_serie": 9063, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46424, + "fields": { + "id_car_serie": 9063, + "name": "2.3 MT (224 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46440, + "fields": { + "id_car_serie": 9065, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46441, + "fields": { + "id_car_serie": 9065, + "name": "2.0 AT (154 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46442, + "fields": { + "id_car_serie": 9065, + "name": "2.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46443, + "fields": { + "id_car_serie": 9065, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46444, + "fields": { + "id_car_serie": 9065, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46445, + "fields": { + "id_car_serie": 9065, + "name": "2.0 MT (154 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46446, + "fields": { + "id_car_serie": 9065, + "name": "2.0 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46448, + "fields": { + "id_car_serie": 9065, + "name": "2.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46449, + "fields": { + "id_car_serie": 9065, + "name": "2.2 TD MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46450, + "fields": { + "id_car_serie": 9065, + "name": "2.2 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46451, + "fields": { + "id_car_serie": 9065, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46466, + "fields": { + "id_car_serie": 9068, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46467, + "fields": { + "id_car_serie": 9068, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46468, + "fields": { + "id_car_serie": 9068, + "name": "2.0 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46469, + "fields": { + "id_car_serie": 9068, + "name": "2.0 MT (118 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46470, + "fields": { + "id_car_serie": 9068, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46471, + "fields": { + "id_car_serie": 9068, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46472, + "fields": { + "id_car_serie": 9068, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46473, + "fields": { + "id_car_serie": 9068, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46474, + "fields": { + "id_car_serie": 9068, + "name": "2.1 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46475, + "fields": { + "id_car_serie": 9068, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46479, + "fields": { + "id_car_serie": 9069, + "name": "2.0 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46480, + "fields": { + "id_car_serie": 9069, + "name": "2.0 MT (118 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46481, + "fields": { + "id_car_serie": 9069, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46482, + "fields": { + "id_car_serie": 9069, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46483, + "fields": { + "id_car_serie": 9069, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46484, + "fields": { + "id_car_serie": 9069, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46488, + "fields": { + "id_car_serie": 9070, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46491, + "fields": { + "id_car_serie": 9070, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46504, + "fields": { + "id_car_serie": 9067, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46505, + "fields": { + "id_car_serie": 9067, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46506, + "fields": { + "id_car_serie": 9067, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46507, + "fields": { + "id_car_serie": 9067, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46509, + "fields": { + "id_car_serie": 9067, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46515, + "fields": { + "id_car_serie": 9073, + "name": "2.2 AT (139 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46516, + "fields": { + "id_car_serie": 9073, + "name": "2.2 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46517, + "fields": { + "id_car_serie": 9073, + "name": "3.0 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46518, + "fields": { + "id_car_serie": 9074, + "name": "1.9 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46519, + "fields": { + "id_car_serie": 9074, + "name": "1.9 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46520, + "fields": { + "id_car_serie": 9074, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46521, + "fields": { + "id_car_serie": 9074, + "name": "1.9 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46528, + "fields": { + "id_car_serie": 9080, + "name": "2.2 CVT AWD (145 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46530, + "fields": { + "id_car_serie": 9080, + "name": "2.2 MT FWD (145 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46531, + "fields": { + "id_car_serie": 9080, + "name": "3.0 AT AWD (184 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46532, + "fields": { + "id_car_serie": 9080, + "name": "3.5 AT Red Line AWD (253 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46533, + "fields": { + "id_car_serie": 9080, + "name": "3.5 AT Red Line FWD (253 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46535, + "fields": { + "id_car_serie": 9081, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46538, + "fields": { + "id_car_serie": 9081, + "name": "1.9 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46542, + "fields": { + "id_car_serie": 9081, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46548, + "fields": { + "id_car_serie": 9081, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46556, + "fields": { + "id_car_serie": 9083, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46558, + "fields": { + "id_car_serie": 9083, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46559, + "fields": { + "id_car_serie": 9083, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46560, + "fields": { + "id_car_serie": 9083, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46561, + "fields": { + "id_car_serie": 9083, + "name": "1.9 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46563, + "fields": { + "id_car_serie": 9083, + "name": "1.9 TD MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46564, + "fields": { + "id_car_serie": 9083, + "name": "1.9 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46565, + "fields": { + "id_car_serie": 9083, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46573, + "fields": { + "id_car_serie": 9085, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46574, + "fields": { + "id_car_serie": 9085, + "name": "1.8 T MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46575, + "fields": { + "id_car_serie": 9085, + "name": "1.9 TD MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46577, + "fields": { + "id_car_serie": 9085, + "name": "2.0 6MT FSI (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46578, + "fields": { + "id_car_serie": 9085, + "name": "2.0 TD DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46579, + "fields": { + "id_car_serie": 9085, + "name": "2.0 5MT FSI (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46580, + "fields": { + "id_car_serie": 9085, + "name": "2.0 TD MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46581, + "fields": { + "id_car_serie": 9086, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46582, + "fields": { + "id_car_serie": 9086, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46583, + "fields": { + "id_car_serie": 9086, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46584, + "fields": { + "id_car_serie": 9086, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46585, + "fields": { + "id_car_serie": 9086, + "name": "1.8 T MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46586, + "fields": { + "id_car_serie": 9086, + "name": "1.9 TD MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46587, + "fields": { + "id_car_serie": 9086, + "name": "1.9 TD MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46588, + "fields": { + "id_car_serie": 9086, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46589, + "fields": { + "id_car_serie": 9086, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46590, + "fields": { + "id_car_serie": 9086, + "name": "2.3 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46593, + "fields": { + "id_car_serie": 9087, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46596, + "fields": { + "id_car_serie": 9087, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46601, + "fields": { + "id_car_serie": 9087, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46602, + "fields": { + "id_car_serie": 9087, + "name": "1.9 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46603, + "fields": { + "id_car_serie": 9087, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46605, + "fields": { + "id_car_serie": 9087, + "name": "1.9 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46606, + "fields": { + "id_car_serie": 9087, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46607, + "fields": { + "id_car_serie": 9087, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46608, + "fields": { + "id_car_serie": 9087, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46609, + "fields": { + "id_car_serie": 9087, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46615, + "fields": { + "id_car_serie": 9090, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46631, + "fields": { + "id_car_serie": 9091, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46636, + "fields": { + "id_car_serie": 9082, + "name": "1.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46638, + "fields": { + "id_car_serie": 9082, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46639, + "fields": { + "id_car_serie": 9082, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46641, + "fields": { + "id_car_serie": 9082, + "name": "1.8 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46642, + "fields": { + "id_car_serie": 9082, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46643, + "fields": { + "id_car_serie": 9082, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46644, + "fields": { + "id_car_serie": 9082, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46646, + "fields": { + "id_car_serie": 9082, + "name": "2.0 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46650, + "fields": { + "id_car_serie": 9089, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46651, + "fields": { + "id_car_serie": 9089, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46652, + "fields": { + "id_car_serie": 9089, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46654, + "fields": { + "id_car_serie": 9089, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46655, + "fields": { + "id_car_serie": 9089, + "name": "1.4 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46656, + "fields": { + "id_car_serie": 9089, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46657, + "fields": { + "id_car_serie": 9089, + "name": "1.9 TDI MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46658, + "fields": { + "id_car_serie": 9089, + "name": "1.9 SDI MT (64 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46659, + "fields": { + "id_car_serie": 9089, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46663, + "fields": { + "id_car_serie": 9092, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46664, + "fields": { + "id_car_serie": 9092, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46682, + "fields": { + "id_car_serie": 9097, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46689, + "fields": { + "id_car_serie": 9097, + "name": "1.9 TD MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46692, + "fields": { + "id_car_serie": 9097, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46694, + "fields": { + "id_car_serie": 9097, + "name": "1.9 TD MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46716, + "fields": { + "id_car_serie": 9103, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46717, + "fields": { + "id_car_serie": 9103, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46718, + "fields": { + "id_car_serie": 9103, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46720, + "fields": { + "id_car_serie": 9103, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46721, + "fields": { + "id_car_serie": 9103, + "name": "2.5 TDI Tiptronic (155 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46722, + "fields": { + "id_car_serie": 9103, + "name": "2.5 TDI Tiptronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46723, + "fields": { + "id_car_serie": 9103, + "name": "2.5 TDI MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46724, + "fields": { + "id_car_serie": 9103, + "name": "2.5 TDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46725, + "fields": { + "id_car_serie": 9103, + "name": "2.8 Tiptronic (193 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46726, + "fields": { + "id_car_serie": 9103, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46744, + "fields": { + "id_car_serie": 9093, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46757, + "fields": { + "id_car_serie": 9106, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46758, + "fields": { + "id_car_serie": 9106, + "name": "2.8 AT (197 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46759, + "fields": { + "id_car_serie": 9106, + "name": "3.2 4AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46764, + "fields": { + "id_car_serie": 9102, + "name": "1.8 TSI MT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46765, + "fields": { + "id_car_serie": 9102, + "name": "2.0 TSI DSG (200 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46766, + "fields": { + "id_car_serie": 9102, + "name": "2.0 TDI DSG 4x4 (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46767, + "fields": { + "id_car_serie": 9102, + "name": "2.0 TDI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46768, + "fields": { + "id_car_serie": 9102, + "name": "2.0 TDI MT Green tec (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46769, + "fields": { + "id_car_serie": 9102, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46770, + "fields": { + "id_car_serie": 9102, + "name": "2.0 TDI MT 4x4 (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46771, + "fields": { + "id_car_serie": 9102, + "name": "3.6 FSI V6 4x4 DSG (260 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46777, + "fields": { + "id_car_serie": 9108, + "name": "2.0 DTR T-Tronic 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46781, + "fields": { + "id_car_serie": 9108, + "name": "2.0 DTR MT 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46784, + "fields": { + "id_car_serie": 9109, + "name": "2.0 TD AT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46786, + "fields": { + "id_car_serie": 9109, + "name": "2.0 TD MT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46787, + "fields": { + "id_car_serie": 9109, + "name": "2.0 TD MT 2WD (141 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46794, + "fields": { + "id_car_serie": 9110, + "name": "2.7 Xdi AT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46795, + "fields": { + "id_car_serie": 9110, + "name": "2.7 XVT AT AWD (186 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46796, + "fields": { + "id_car_serie": 9110, + "name": "2.7 Xdi MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46797, + "fields": { + "id_car_serie": 9110, + "name": "3.2 AT AWD (220 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46798, + "fields": { + "id_car_serie": 9101, + "name": "1.4 TSI MT Green tec (125 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46799, + "fields": { + "id_car_serie": 9101, + "name": "1.8 TSI AT (152 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46800, + "fields": { + "id_car_serie": 9101, + "name": "1.8 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46801, + "fields": { + "id_car_serie": 9101, + "name": "1.8 TSI MT 4x4 (152 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46802, + "fields": { + "id_car_serie": 9101, + "name": "1.8 TSI MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46803, + "fields": { + "id_car_serie": 9101, + "name": "1.8 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46804, + "fields": { + "id_car_serie": 9101, + "name": "1.9 TDI MT GreenLine (105 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46805, + "fields": { + "id_car_serie": 9101, + "name": "2.0 TSI DSG (200 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46806, + "fields": { + "id_car_serie": 9101, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46807, + "fields": { + "id_car_serie": 9101, + "name": "2.0 TDI MT 4x4 (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46808, + "fields": { + "id_car_serie": 9101, + "name": "2.0 TDI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46809, + "fields": { + "id_car_serie": 9101, + "name": "2.0 TDI MT Green tec (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46810, + "fields": { + "id_car_serie": 9101, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46811, + "fields": { + "id_car_serie": 9101, + "name": "3.6 FSI DSG 4x4 (260 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46812, + "fields": { + "id_car_serie": 9111, + "name": "2.3 AT RX 230 (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46813, + "fields": { + "id_car_serie": 9111, + "name": "2.3 MT RX 230 (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46814, + "fields": { + "id_car_serie": 9111, + "name": "2.7 AT RX 270 Xdi (165 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46815, + "fields": { + "id_car_serie": 9111, + "name": "2.7 MT RX 270 Xdi (165 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46816, + "fields": { + "id_car_serie": 9111, + "name": "2.9 AT RX 290 TD (120 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46817, + "fields": { + "id_car_serie": 9111, + "name": "2.9 MT RX 290 TD (120 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46818, + "fields": { + "id_car_serie": 9111, + "name": "3.2 AT AWD RX 320 (220 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46819, + "fields": { + "id_car_serie": 9111, + "name": "3.2 MT AWD RX 320 (220 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46828, + "fields": { + "id_car_serie": 9113, + "name": "2.0 TD AT AWD (141 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46829, + "fields": { + "id_car_serie": 9113, + "name": "2.0 TD AT (141 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46830, + "fields": { + "id_car_serie": 9113, + "name": "2.0 TD MT AWD (141 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46831, + "fields": { + "id_car_serie": 9113, + "name": "2.0 TD MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46832, + "fields": { + "id_car_serie": 9116, + "name": "1.3 DDiS MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46833, + "fields": { + "id_car_serie": 9116, + "name": "1.5 MT AWD (99 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46834, + "fields": { + "id_car_serie": 9117, + "name": "1.3 MT AWD (68 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46835, + "fields": { + "id_car_serie": 9117, + "name": "1.3 MT AWD (85 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46836, + "fields": { + "id_car_serie": 9118, + "name": "1.3 MT AWD (68 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46837, + "fields": { + "id_car_serie": 9118, + "name": "1.3 MT AWD (85 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46838, + "fields": { + "id_car_serie": 9121, + "name": "1.0 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46840, + "fields": { + "id_car_serie": 9121, + "name": "1.2 MT AWD (69 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46841, + "fields": { + "id_car_serie": 9122, + "name": "1.0 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46842, + "fields": { + "id_car_serie": 9114, + "name": "1.0 MT (48 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46850, + "fields": { + "id_car_serie": 9123, + "name": "2.5 CVT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 46851, + "fields": { + "id_car_serie": 9123, + "name": "3.6 CVT AWD (260 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 46852, + "fields": { + "id_car_serie": 9124, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46854, + "fields": { + "id_car_serie": 9124, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46859, + "fields": { + "id_car_serie": 9124, + "name": "2.5 AT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46861, + "fields": { + "id_car_serie": 9124, + "name": "2.5 MT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46863, + "fields": { + "id_car_serie": 9124, + "name": "3.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46864, + "fields": { + "id_car_serie": 9124, + "name": "3.0 MT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46866, + "fields": { + "id_car_serie": 9125, + "name": "2.0 MT 4WD (138 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46869, + "fields": { + "id_car_serie": 9125, + "name": "2.5 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46871, + "fields": { + "id_car_serie": 9125, + "name": "3.0 MT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46876, + "fields": { + "id_car_serie": 9128, + "name": "2.0 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46877, + "fields": { + "id_car_serie": 9128, + "name": "2.0 Turbo MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46878, + "fields": { + "id_car_serie": 9128, + "name": "2.0 Turbo MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46880, + "fields": { + "id_car_serie": 9128, + "name": "2.2 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46881, + "fields": { + "id_car_serie": 9128, + "name": "2.2 MT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46883, + "fields": { + "id_car_serie": 9128, + "name": "2.5 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46884, + "fields": { + "id_car_serie": 9120, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46885, + "fields": { + "id_car_serie": 9120, + "name": "1.2 MT (74 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46887, + "fields": { + "id_car_serie": 9126, + "name": "2.0 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46890, + "fields": { + "id_car_serie": 9126, + "name": "2.5 MT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46891, + "fields": { + "id_car_serie": 9126, + "name": "3.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46892, + "fields": { + "id_car_serie": 9127, + "name": "2.0 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46893, + "fields": { + "id_car_serie": 9127, + "name": "2.0 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46894, + "fields": { + "id_car_serie": 9127, + "name": "2.5 AT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46895, + "fields": { + "id_car_serie": 9127, + "name": "2.5 AT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46896, + "fields": { + "id_car_serie": 9127, + "name": "2.5 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46897, + "fields": { + "id_car_serie": 9127, + "name": "2.5 MT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46898, + "fields": { + "id_car_serie": 9127, + "name": "2.5 MT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46899, + "fields": { + "id_car_serie": 9127, + "name": "2.5 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46900, + "fields": { + "id_car_serie": 9127, + "name": "3.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46908, + "fields": { + "id_car_serie": 9131, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46909, + "fields": { + "id_car_serie": 9131, + "name": "2.0 Turbo MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46910, + "fields": { + "id_car_serie": 9131, + "name": "2.0 Turbo MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46912, + "fields": { + "id_car_serie": 9131, + "name": "2.2 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46917, + "fields": { + "id_car_serie": 9133, + "name": "2.5 AT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46919, + "fields": { + "id_car_serie": 9133, + "name": "2.5 T AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46920, + "fields": { + "id_car_serie": 9133, + "name": "2.5 MT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46922, + "fields": { + "id_car_serie": 9133, + "name": "2.5 T MT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46923, + "fields": { + "id_car_serie": 9133, + "name": "3.0 AT AWD (245 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46924, + "fields": { + "id_car_serie": 9134, + "name": "2.5 AT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46925, + "fields": { + "id_car_serie": 9134, + "name": "2.5 MT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46926, + "fields": { + "id_car_serie": 9134, + "name": "3.0 AT 4WD (209 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46927, + "fields": { + "id_car_serie": 9119, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46928, + "fields": { + "id_car_serie": 9119, + "name": "1.2 MT AWD (74 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46929, + "fields": { + "id_car_serie": 9119, + "name": "1.2 MT (74 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46933, + "fields": { + "id_car_serie": 9129, + "name": "2.0 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46935, + "fields": { + "id_car_serie": 9129, + "name": "2.2 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46936, + "fields": { + "id_car_serie": 9129, + "name": "2.2 MT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46937, + "fields": { + "id_car_serie": 9129, + "name": "2.5 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46943, + "fields": { + "id_car_serie": 53193, + "name": "2.2 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46945, + "fields": { + "id_car_serie": 53193, + "name": "2.5 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46966, + "fields": { + "id_car_serie": 9130, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46967, + "fields": { + "id_car_serie": 9130, + "name": "2.0 Turbo Super MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46968, + "fields": { + "id_car_serie": 9130, + "name": "2.0 Turbo MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46971, + "fields": { + "id_car_serie": 9130, + "name": "2.2 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46973, + "fields": { + "id_car_serie": 9135, + "name": "2.5 AT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46974, + "fields": { + "id_car_serie": 9135, + "name": "2.5 MT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46975, + "fields": { + "id_car_serie": 9135, + "name": "3.0 AT 4WD (209 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46978, + "fields": { + "id_car_serie": 9143, + "name": "0.7 AT (55 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46982, + "fields": { + "id_car_serie": 9143, + "name": "0.7 MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46984, + "fields": { + "id_car_serie": 9143, + "name": "0.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46985, + "fields": { + "id_car_serie": 9143, + "name": "1.1 AT (62 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46986, + "fields": { + "id_car_serie": 9143, + "name": "1.1 MT (62 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46987, + "fields": { + "id_car_serie": 9144, + "name": "1.0 AT (53 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46988, + "fields": { + "id_car_serie": 9144, + "name": "1.0 MT (53 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46989, + "fields": { + "id_car_serie": 9145, + "name": "1.0 AT (53 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46990, + "fields": { + "id_car_serie": 9145, + "name": "1.0 MT (53 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46995, + "fields": { + "id_car_serie": 9148, + "name": "0.8 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46996, + "fields": { + "id_car_serie": 9151, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 46997, + "fields": { + "id_car_serie": 9151, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47002, + "fields": { + "id_car_serie": 9153, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47003, + "fields": { + "id_car_serie": 9146, + "name": "0.8 AT (39 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47004, + "fields": { + "id_car_serie": 9146, + "name": "0.8 MT (39 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47012, + "fields": { + "id_car_serie": 9155, + "name": "1.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47015, + "fields": { + "id_car_serie": 9156, + "name": "1.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47019, + "fields": { + "id_car_serie": 9157, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47021, + "fields": { + "id_car_serie": 9157, + "name": "1.3 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47022, + "fields": { + "id_car_serie": 9157, + "name": "1.3 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47023, + "fields": { + "id_car_serie": 9157, + "name": "1.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47038, + "fields": { + "id_car_serie": 9159, + "name": "1.6 MT AWD (106 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47039, + "fields": { + "id_car_serie": 9159, + "name": "1.9 TD MT AWD (129 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47040, + "fields": { + "id_car_serie": 9159, + "name": "2.4 AT AWD (169 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47042, + "fields": { + "id_car_serie": 9160, + "name": "1.9 DDiS MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47043, + "fields": { + "id_car_serie": 9160, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47044, + "fields": { + "id_car_serie": 9160, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47045, + "fields": { + "id_car_serie": 9160, + "name": "2.4 AT (169 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47046, + "fields": { + "id_car_serie": 9160, + "name": "2.4 MT (169 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47047, + "fields": { + "id_car_serie": 9160, + "name": "2.7 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47079, + "fields": { + "id_car_serie": 9154, + "name": "1.3 AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47080, + "fields": { + "id_car_serie": 9154, + "name": "1.3 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47081, + "fields": { + "id_car_serie": 9154, + "name": "1.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47082, + "fields": { + "id_car_serie": 9154, + "name": "1.3 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47083, + "fields": { + "id_car_serie": 9154, + "name": "1.5 D MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47105, + "fields": { + "id_car_serie": 9167, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47108, + "fields": { + "id_car_serie": 9167, + "name": "1.6 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47109, + "fields": { + "id_car_serie": 9167, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47110, + "fields": { + "id_car_serie": 9168, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47112, + "fields": { + "id_car_serie": 9168, + "name": "1.6 AT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47113, + "fields": { + "id_car_serie": 9168, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47116, + "fields": { + "id_car_serie": 9168, + "name": "1.6 MT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47146, + "fields": { + "id_car_serie": 9176, + "name": "0.7 AT AWD (55 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47147, + "fields": { + "id_car_serie": 9176, + "name": "0.7 AT (55 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47148, + "fields": { + "id_car_serie": 9176, + "name": "0.7 AT AWD (58 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47149, + "fields": { + "id_car_serie": 9176, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47150, + "fields": { + "id_car_serie": 9176, + "name": "0.7 3AT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47151, + "fields": { + "id_car_serie": 9176, + "name": "0.7 4AT (64 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47152, + "fields": { + "id_car_serie": 9176, + "name": "0.7 4AT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47153, + "fields": { + "id_car_serie": 9176, + "name": "0.7 MT AWD (55 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47154, + "fields": { + "id_car_serie": 9176, + "name": "0.7 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47155, + "fields": { + "id_car_serie": 9176, + "name": "0.7 MT AWD (58 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47156, + "fields": { + "id_car_serie": 9176, + "name": "0.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47157, + "fields": { + "id_car_serie": 9176, + "name": "0.7 turbo MT (61 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47158, + "fields": { + "id_car_serie": 9176, + "name": "0.7 turbo MT AWD (61 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47159, + "fields": { + "id_car_serie": 9176, + "name": "0.7 MT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47160, + "fields": { + "id_car_serie": 9176, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47175, + "fields": { + "id_car_serie": 9174, + "name": "0.7 AT AWD (60 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47176, + "fields": { + "id_car_serie": 9174, + "name": "0.7 AT (60 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47177, + "fields": { + "id_car_serie": 9174, + "name": "0.7 AT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47178, + "fields": { + "id_car_serie": 9174, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47181, + "fields": { + "id_car_serie": 9179, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47182, + "fields": { + "id_car_serie": 9179, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47185, + "fields": { + "id_car_serie": 9179, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47186, + "fields": { + "id_car_serie": 9179, + "name": "1.6 MT 4WD (107 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47191, + "fields": { + "id_car_serie": 9179, + "name": "1.6 DDiS MT (89 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47192, + "fields": { + "id_car_serie": 9179, + "name": "1.9 DDiS MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47193, + "fields": { + "id_car_serie": 9179, + "name": "1.9 DDiS MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47234, + "fields": { + "id_car_serie": 9178, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47235, + "fields": { + "id_car_serie": 9178, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47236, + "fields": { + "id_car_serie": 9178, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 47237, + "fields": { + "id_car_serie": 9178, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 47238, + "fields": { + "id_car_serie": 9188, + "name": "2.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47239, + "fields": { + "id_car_serie": 9188, + "name": "2.8 D MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47250, + "fields": { + "id_car_serie": 9183, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47251, + "fields": { + "id_car_serie": 9183, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47253, + "fields": { + "id_car_serie": 9183, + "name": "1.4 D MT (53 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47254, + "fields": { + "id_car_serie": 9183, + "name": "1.4 TD MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47261, + "fields": { + "id_car_serie": 9192, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47262, + "fields": { + "id_car_serie": 9195, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47263, + "fields": { + "id_car_serie": 9195, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47264, + "fields": { + "id_car_serie": 9195, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47265, + "fields": { + "id_car_serie": 9195, + "name": "2.0 CVT (152 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47266, + "fields": { + "id_car_serie": 9196, + "name": "2.4 AT (159 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47267, + "fields": { + "id_car_serie": 9196, + "name": "2.4 AT 4WD (159 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47269, + "fields": { + "id_car_serie": 9196, + "name": "3.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47270, + "fields": { + "id_car_serie": 9196, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47271, + "fields": { + "id_car_serie": 9197, + "name": "2.4 CVT FWD (170 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47272, + "fields": { + "id_car_serie": 9197, + "name": "2.4 CVT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47279, + "fields": { + "id_car_serie": 9198, + "name": "1.0 AMT (69 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 47280, + "fields": { + "id_car_serie": 9198, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 47282, + "fields": { + "id_car_serie": 9199, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47283, + "fields": { + "id_car_serie": 9199, + "name": "1.4 HDi MT (55 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47284, + "fields": { + "id_car_serie": 9200, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47286, + "fields": { + "id_car_serie": 9200, + "name": "1.4 HDi MT (55 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47287, + "fields": { + "id_car_serie": 9201, + "name": "1.3 AT 2WD (88 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47288, + "fields": { + "id_car_serie": 9201, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47291, + "fields": { + "id_car_serie": 9202, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47292, + "fields": { + "id_car_serie": 9193, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47294, + "fields": { + "id_car_serie": 9205, + "name": "3.0 AT (213 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47295, + "fields": { + "id_car_serie": 9206, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47299, + "fields": { + "id_car_serie": 9204, + "name": "3.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47301, + "fields": { + "id_car_serie": 9204, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47302, + "fields": { + "id_car_serie": 9207, + "name": "1.3 Turbo AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47303, + "fields": { + "id_car_serie": 9207, + "name": "1.3 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47304, + "fields": { + "id_car_serie": 9207, + "name": "1.3 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47305, + "fields": { + "id_car_serie": 9207, + "name": "1.3 AT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47306, + "fields": { + "id_car_serie": 9207, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47307, + "fields": { + "id_car_serie": 9207, + "name": "1.3 MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47308, + "fields": { + "id_car_serie": 9210, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47309, + "fields": { + "id_car_serie": 9210, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47310, + "fields": { + "id_car_serie": 9210, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47311, + "fields": { + "id_car_serie": 9210, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47312, + "fields": { + "id_car_serie": 9210, + "name": "2.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47313, + "fields": { + "id_car_serie": 9210, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47314, + "fields": { + "id_car_serie": 9210, + "name": "2.5 Twin-Turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47315, + "fields": { + "id_car_serie": 9210, + "name": "2.5 Twin-Turbo MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47316, + "fields": { + "id_car_serie": 9210, + "name": "2.4 TD AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47317, + "fields": { + "id_car_serie": 9210, + "name": "2.4 TD MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47318, + "fields": { + "id_car_serie": 9210, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47319, + "fields": { + "id_car_serie": 9211, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47320, + "fields": { + "id_car_serie": 9211, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47321, + "fields": { + "id_car_serie": 9211, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47322, + "fields": { + "id_car_serie": 9211, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47323, + "fields": { + "id_car_serie": 9211, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47324, + "fields": { + "id_car_serie": 9211, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47325, + "fields": { + "id_car_serie": 9211, + "name": "2.0 Supercharged AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47326, + "fields": { + "id_car_serie": 9211, + "name": "2.0 Twin-turbo AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47327, + "fields": { + "id_car_serie": 9211, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47328, + "fields": { + "id_car_serie": 9211, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47329, + "fields": { + "id_car_serie": 9211, + "name": "2.0 Twin-turbo MT (210 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47330, + "fields": { + "id_car_serie": 9211, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47331, + "fields": { + "id_car_serie": 9211, + "name": "2.5 Twin-Turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47332, + "fields": { + "id_car_serie": 9211, + "name": "2.4 D AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47333, + "fields": { + "id_car_serie": 9211, + "name": "2.4 TD AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47334, + "fields": { + "id_car_serie": 9211, + "name": "2.4 D MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47335, + "fields": { + "id_car_serie": 9211, + "name": "2.4 TD MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47336, + "fields": { + "id_car_serie": 9211, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47348, + "fields": { + "id_car_serie": 9215, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47349, + "fields": { + "id_car_serie": 9215, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47350, + "fields": { + "id_car_serie": 9215, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47352, + "fields": { + "id_car_serie": 9216, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47353, + "fields": { + "id_car_serie": 9216, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47354, + "fields": { + "id_car_serie": 9216, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47355, + "fields": { + "id_car_serie": 9216, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47357, + "fields": { + "id_car_serie": 9216, + "name": "2.0 AT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47358, + "fields": { + "id_car_serie": 9216, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47360, + "fields": { + "id_car_serie": 9216, + "name": "2.0 MT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47363, + "fields": { + "id_car_serie": 9216, + "name": "2.0 D AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47364, + "fields": { + "id_car_serie": 9216, + "name": "2.0 D MT AWD (73 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47365, + "fields": { + "id_car_serie": 9216, + "name": "2.0 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47384, + "fields": { + "id_car_serie": 9213, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47385, + "fields": { + "id_car_serie": 9217, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47387, + "fields": { + "id_car_serie": 9218, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47388, + "fields": { + "id_car_serie": 9218, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47389, + "fields": { + "id_car_serie": 9218, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47391, + "fields": { + "id_car_serie": 9223, + "name": "1.8 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47392, + "fields": { + "id_car_serie": 9223, + "name": "1.8 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47393, + "fields": { + "id_car_serie": 9224, + "name": "1.8 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47394, + "fields": { + "id_car_serie": 9224, + "name": "1.8 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47401, + "fields": { + "id_car_serie": 62918, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47402, + "fields": { + "id_car_serie": 62918, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47403, + "fields": { + "id_car_serie": 62918, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47404, + "fields": { + "id_car_serie": 9222, + "name": "1.8 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47405, + "fields": { + "id_car_serie": 9222, + "name": "1.8 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47408, + "fields": { + "id_car_serie": 9229, + "name": "4.0 AT (265 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47410, + "fields": { + "id_car_serie": 9230, + "name": "4.0 AT (260 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47416, + "fields": { + "id_car_serie": 9232, + "name": "2.8 AT Overdrive (156 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47417, + "fields": { + "id_car_serie": 9232, + "name": "2.8 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47419, + "fields": { + "id_car_serie": 9232, + "name": "2.8 MT Overdrive (156 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47420, + "fields": { + "id_car_serie": 9232, + "name": "2.8 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47427, + "fields": { + "id_car_serie": 9237, + "name": "4.3 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47428, + "fields": { + "id_car_serie": 9237, + "name": "4.6 AT (347 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47429, + "fields": { + "id_car_serie": 9238, + "name": "4.3 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47430, + "fields": { + "id_car_serie": 9238, + "name": "4.3 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47451, + "fields": { + "id_car_serie": 9240, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47452, + "fields": { + "id_car_serie": 9240, + "name": "4.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47453, + "fields": { + "id_car_serie": 9240, + "name": "4.0 AT (265 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47471, + "fields": { + "id_car_serie": 9241, + "name": "4.0 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47472, + "fields": { + "id_car_serie": 9241, + "name": "4.0 AT (260 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47484, + "fields": { + "id_car_serie": 9248, + "name": "2.7 AT RWD (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47485, + "fields": { + "id_car_serie": 9248, + "name": "2.7 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47487, + "fields": { + "id_car_serie": 9248, + "name": "3.0 TD AT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47493, + "fields": { + "id_car_serie": 9248, + "name": "3.4 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47494, + "fields": { + "id_car_serie": 9249, + "name": "2.0 AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47495, + "fields": { + "id_car_serie": 9249, + "name": "2.0 MT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47500, + "fields": { + "id_car_serie": 9249, + "name": "3.0 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47501, + "fields": { + "id_car_serie": 9249, + "name": "3.0 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47504, + "fields": { + "id_car_serie": 9250, + "name": "2.0 AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47505, + "fields": { + "id_car_serie": 9250, + "name": "2.0 MT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47510, + "fields": { + "id_car_serie": 9250, + "name": "3.0 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47511, + "fields": { + "id_car_serie": 9250, + "name": "3.0 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47514, + "fields": { + "id_car_serie": 9253, + "name": "2.4 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47515, + "fields": { + "id_car_serie": 9253, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47517, + "fields": { + "id_car_serie": 9253, + "name": "3.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47518, + "fields": { + "id_car_serie": 9253, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47521, + "fields": { + "id_car_serie": 9252, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47522, + "fields": { + "id_car_serie": 9252, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47523, + "fields": { + "id_car_serie": 9252, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47530, + "fields": { + "id_car_serie": 9254, + "name": "2.4 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47531, + "fields": { + "id_car_serie": 9254, + "name": "2.4 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47535, + "fields": { + "id_car_serie": 9257, + "name": "2.7 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47536, + "fields": { + "id_car_serie": 9257, + "name": "3.0 TD AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47538, + "fields": { + "id_car_serie": 9257, + "name": "3.0 TD MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47540, + "fields": { + "id_car_serie": 9257, + "name": "3.4 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47541, + "fields": { + "id_car_serie": 9257, + "name": "3.4 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47542, + "fields": { + "id_car_serie": 9258, + "name": "2.7 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47543, + "fields": { + "id_car_serie": 9258, + "name": "2.7 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47548, + "fields": { + "id_car_serie": 9258, + "name": "3.4 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47549, + "fields": { + "id_car_serie": 9258, + "name": "3.4 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47550, + "fields": { + "id_car_serie": 9259, + "name": "3.0 DT AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47551, + "fields": { + "id_car_serie": 9259, + "name": "3.0 DT MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47557, + "fields": { + "id_car_serie": 9256, + "name": "2.7 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47558, + "fields": { + "id_car_serie": 9256, + "name": "2.7 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47562, + "fields": { + "id_car_serie": 9256, + "name": "3.0 TD AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47564, + "fields": { + "id_car_serie": 9256, + "name": "2.7 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47566, + "fields": { + "id_car_serie": 9256, + "name": "3.0 TD MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47568, + "fields": { + "id_car_serie": 9256, + "name": "2.7 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47570, + "fields": { + "id_car_serie": 9256, + "name": "3.4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47571, + "fields": { + "id_car_serie": 9256, + "name": "4.0 AT (249 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47572, + "fields": { + "id_car_serie": 9256, + "name": "3.4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47577, + "fields": { + "id_car_serie": 9260, + "name": "3.0 DT AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47578, + "fields": { + "id_car_serie": 9260, + "name": "3.0 DT MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47590, + "fields": { + "id_car_serie": 9255, + "name": "2.7 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47592, + "fields": { + "id_car_serie": 9255, + "name": "2.7 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47594, + "fields": { + "id_car_serie": 9255, + "name": "3.0 TD AT (173 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47596, + "fields": { + "id_car_serie": 9255, + "name": "3.0 TD MT (173 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47597, + "fields": { + "id_car_serie": 9255, + "name": "3.4 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47598, + "fields": { + "id_car_serie": 9255, + "name": "4.0 AT (249 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47612, + "fields": { + "id_car_serie": 9268, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47645, + "fields": { + "id_car_serie": 9269, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47664, + "fields": { + "id_car_serie": 9247, + "name": "2.4 AT 4WD (157 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47665, + "fields": { + "id_car_serie": 9247, + "name": "2.4 AT (157 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47666, + "fields": { + "id_car_serie": 9247, + "name": "3.0 AT 4WD (223 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47667, + "fields": { + "id_car_serie": 9247, + "name": "3.0 AT (223 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47674, + "fields": { + "id_car_serie": 9267, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47683, + "fields": { + "id_car_serie": 9272, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47713, + "fields": { + "id_car_serie": 9273, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47740, + "fields": { + "id_car_serie": 9274, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47772, + "fields": { + "id_car_serie": 9275, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47776, + "fields": { + "id_car_serie": 9275, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47777, + "fields": { + "id_car_serie": 9275, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47785, + "fields": { + "id_car_serie": 9270, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47788, + "fields": { + "id_car_serie": 9270, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47807, + "fields": { + "id_car_serie": 9277, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47815, + "fields": { + "id_car_serie": 9277, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47819, + "fields": { + "id_car_serie": 9277, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47820, + "fields": { + "id_car_serie": 9278, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47821, + "fields": { + "id_car_serie": 9278, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47822, + "fields": { + "id_car_serie": 9278, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47823, + "fields": { + "id_car_serie": 9278, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47824, + "fields": { + "id_car_serie": 9278, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47825, + "fields": { + "id_car_serie": 9278, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47826, + "fields": { + "id_car_serie": 9278, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47827, + "fields": { + "id_car_serie": 9278, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47828, + "fields": { + "id_car_serie": 9278, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47829, + "fields": { + "id_car_serie": 9278, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47830, + "fields": { + "id_car_serie": 9278, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47831, + "fields": { + "id_car_serie": 9278, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47832, + "fields": { + "id_car_serie": 9278, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47833, + "fields": { + "id_car_serie": 9278, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47834, + "fields": { + "id_car_serie": 9279, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47835, + "fields": { + "id_car_serie": 9279, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47836, + "fields": { + "id_car_serie": 9279, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47837, + "fields": { + "id_car_serie": 9279, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47838, + "fields": { + "id_car_serie": 9279, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47839, + "fields": { + "id_car_serie": 9279, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47840, + "fields": { + "id_car_serie": 9279, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47841, + "fields": { + "id_car_serie": 9279, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47842, + "fields": { + "id_car_serie": 9279, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47843, + "fields": { + "id_car_serie": 9279, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47844, + "fields": { + "id_car_serie": 9279, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47845, + "fields": { + "id_car_serie": 9279, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47846, + "fields": { + "id_car_serie": 9279, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47847, + "fields": { + "id_car_serie": 9279, + "name": "1.7 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47852, + "fields": { + "id_car_serie": 9279, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47853, + "fields": { + "id_car_serie": 9279, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47854, + "fields": { + "id_car_serie": 9279, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47855, + "fields": { + "id_car_serie": 9279, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47856, + "fields": { + "id_car_serie": 9280, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47857, + "fields": { + "id_car_serie": 9280, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47858, + "fields": { + "id_car_serie": 9280, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47859, + "fields": { + "id_car_serie": 9280, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47860, + "fields": { + "id_car_serie": 9280, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47861, + "fields": { + "id_car_serie": 9280, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47862, + "fields": { + "id_car_serie": 9280, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47863, + "fields": { + "id_car_serie": 9280, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47864, + "fields": { + "id_car_serie": 9280, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47865, + "fields": { + "id_car_serie": 9280, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47866, + "fields": { + "id_car_serie": 9280, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47867, + "fields": { + "id_car_serie": 9280, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47868, + "fields": { + "id_car_serie": 9280, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47869, + "fields": { + "id_car_serie": 9280, + "name": "1.7 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47874, + "fields": { + "id_car_serie": 9280, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47875, + "fields": { + "id_car_serie": 9280, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47876, + "fields": { + "id_car_serie": 9280, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47877, + "fields": { + "id_car_serie": 9280, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47878, + "fields": { + "id_car_serie": 9281, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47879, + "fields": { + "id_car_serie": 9281, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47880, + "fields": { + "id_car_serie": 9281, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47881, + "fields": { + "id_car_serie": 9281, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47882, + "fields": { + "id_car_serie": 9281, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47883, + "fields": { + "id_car_serie": 9281, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47884, + "fields": { + "id_car_serie": 9281, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47885, + "fields": { + "id_car_serie": 9281, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47886, + "fields": { + "id_car_serie": 9281, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47887, + "fields": { + "id_car_serie": 9281, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47888, + "fields": { + "id_car_serie": 9281, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47889, + "fields": { + "id_car_serie": 9281, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47890, + "fields": { + "id_car_serie": 9281, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47891, + "fields": { + "id_car_serie": 9281, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47892, + "fields": { + "id_car_serie": 9281, + "name": "1.7 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47897, + "fields": { + "id_car_serie": 9281, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47898, + "fields": { + "id_car_serie": 9281, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47899, + "fields": { + "id_car_serie": 9281, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47900, + "fields": { + "id_car_serie": 9281, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47901, + "fields": { + "id_car_serie": 9281, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47902, + "fields": { + "id_car_serie": 9281, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47904, + "fields": { + "id_car_serie": 9271, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47909, + "fields": { + "id_car_serie": 9271, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47914, + "fields": { + "id_car_serie": 9271, + "name": "2.2 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47915, + "fields": { + "id_car_serie": 9276, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47951, + "fields": { + "id_car_serie": 9276, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47953, + "fields": { + "id_car_serie": 9284, + "name": "1.2 MT (52 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47954, + "fields": { + "id_car_serie": 9284, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47955, + "fields": { + "id_car_serie": 9284, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47956, + "fields": { + "id_car_serie": 9284, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47957, + "fields": { + "id_car_serie": 9284, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47958, + "fields": { + "id_car_serie": 9285, + "name": "1.2 MT (52 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47959, + "fields": { + "id_car_serie": 9288, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47960, + "fields": { + "id_car_serie": 9288, + "name": "1.2 AT (65 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47961, + "fields": { + "id_car_serie": 9288, + "name": "1.2 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47962, + "fields": { + "id_car_serie": 9288, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47963, + "fields": { + "id_car_serie": 9288, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47964, + "fields": { + "id_car_serie": 9288, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47965, + "fields": { + "id_car_serie": 9288, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47966, + "fields": { + "id_car_serie": 9288, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47967, + "fields": { + "id_car_serie": 9288, + "name": "1.5d MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47968, + "fields": { + "id_car_serie": 9288, + "name": "1.5d MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47969, + "fields": { + "id_car_serie": 9288, + "name": "GSi 1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47970, + "fields": { + "id_car_serie": 9288, + "name": "GSi 1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47971, + "fields": { + "id_car_serie": 9288, + "name": "1.7d MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47972, + "fields": { + "id_car_serie": 9289, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 47973, + "fields": { + "id_car_serie": 9289, + "name": "1.4 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 47974, + "fields": { + "id_car_serie": 9282, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47975, + "fields": { + "id_car_serie": 9282, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47976, + "fields": { + "id_car_serie": 9282, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47977, + "fields": { + "id_car_serie": 9282, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47979, + "fields": { + "id_car_serie": 9282, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47980, + "fields": { + "id_car_serie": 9282, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47981, + "fields": { + "id_car_serie": 9282, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47982, + "fields": { + "id_car_serie": 9282, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47983, + "fields": { + "id_car_serie": 9282, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47984, + "fields": { + "id_car_serie": 9282, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47985, + "fields": { + "id_car_serie": 9282, + "name": "1.7 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47990, + "fields": { + "id_car_serie": 9282, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47991, + "fields": { + "id_car_serie": 9282, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47992, + "fields": { + "id_car_serie": 9287, + "name": "1.2 AT (65 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47993, + "fields": { + "id_car_serie": 9287, + "name": "1.2 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47994, + "fields": { + "id_car_serie": 9287, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47995, + "fields": { + "id_car_serie": 9287, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47996, + "fields": { + "id_car_serie": 9287, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47998, + "fields": { + "id_car_serie": 9287, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 47999, + "fields": { + "id_car_serie": 9287, + "name": "1.7d MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48009, + "fields": { + "id_car_serie": 9294, + "name": "6.2 AT (431 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48010, + "fields": { + "id_car_serie": 9295, + "name": "3.0 AT (124 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48011, + "fields": { + "id_car_serie": 9295, + "name": "3.0 MT (124 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48012, + "fields": { + "id_car_serie": 9283, + "name": "1.2 MT (52 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48013, + "fields": { + "id_car_serie": 9283, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48014, + "fields": { + "id_car_serie": 9283, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48015, + "fields": { + "id_car_serie": 9283, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48016, + "fields": { + "id_car_serie": 9283, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48017, + "fields": { + "id_car_serie": 9283, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48018, + "fields": { + "id_car_serie": 9283, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48019, + "fields": { + "id_car_serie": 9283, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48033, + "fields": { + "id_car_serie": 9297, + "name": "5.7 MT (499 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48034, + "fields": { + "id_car_serie": 9292, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48035, + "fields": { + "id_car_serie": 9292, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48036, + "fields": { + "id_car_serie": 9292, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48037, + "fields": { + "id_car_serie": 9296, + "name": "1.6 AT (72 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48038, + "fields": { + "id_car_serie": 9296, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48039, + "fields": { + "id_car_serie": 9296, + "name": "2.0 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48040, + "fields": { + "id_car_serie": 9296, + "name": "2.0 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48041, + "fields": { + "id_car_serie": 9296, + "name": "2.0 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48042, + "fields": { + "id_car_serie": 9296, + "name": "2.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48043, + "fields": { + "id_car_serie": 9298, + "name": "3.0 MT Atlantiq (282 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48044, + "fields": { + "id_car_serie": 9299, + "name": "1.4 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48045, + "fields": { + "id_car_serie": 9299, + "name": "1.4 TSI Euro5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48046, + "fields": { + "id_car_serie": 9299, + "name": "1.6 FSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48047, + "fields": { + "id_car_serie": 9299, + "name": "2.0 TSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48048, + "fields": { + "id_car_serie": 9299, + "name": "2.0 FSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48049, + "fields": { + "id_car_serie": 9299, + "name": "2.0 TSI MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48050, + "fields": { + "id_car_serie": 9299, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48051, + "fields": { + "id_car_serie": 9299, + "name": "2.0 TDI Euro5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48052, + "fields": { + "id_car_serie": 9299, + "name": "3.2 V6 FSI DSG (250 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48053, + "fields": { + "id_car_serie": 9299, + "name": "3.6 V6 FSI DSG (260 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48055, + "fields": { + "id_car_serie": 9302, + "name": "1.8 G60 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48056, + "fields": { + "id_car_serie": 9302, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48057, + "fields": { + "id_car_serie": 9302, + "name": "1.8 G60 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48059, + "fields": { + "id_car_serie": 9302, + "name": "2.0 16V AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48061, + "fields": { + "id_car_serie": 9302, + "name": "2.0 16V MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48062, + "fields": { + "id_car_serie": 9302, + "name": "2.9 VR6 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48063, + "fields": { + "id_car_serie": 9302, + "name": "2.9 VR6 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48065, + "fields": { + "id_car_serie": 9303, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48066, + "fields": { + "id_car_serie": 9304, + "name": "2.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48067, + "fields": { + "id_car_serie": 9304, + "name": "2.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48069, + "fields": { + "id_car_serie": 9304, + "name": "2.5 TD MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48114, + "fields": { + "id_car_serie": 9306, + "name": "3.6 4motion DSG (300 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48115, + "fields": { + "id_car_serie": 9307, + "name": "1.4 TSI BlueMotion DSG (122 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48117, + "fields": { + "id_car_serie": 9307, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48118, + "fields": { + "id_car_serie": 9307, + "name": "1.4 TSI BlueMotion MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48119, + "fields": { + "id_car_serie": 9307, + "name": "1.6 FSI AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48120, + "fields": { + "id_car_serie": 9307, + "name": "1.6 MPI MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48121, + "fields": { + "id_car_serie": 9307, + "name": "1.6 FSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48122, + "fields": { + "id_car_serie": 9307, + "name": "1.6 TDI BlueMotion MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48123, + "fields": { + "id_car_serie": 9307, + "name": "1.8 TSI DSG (152 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48124, + "fields": { + "id_car_serie": 9307, + "name": "1.8 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48125, + "fields": { + "id_car_serie": 9307, + "name": "1.8 TSI AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48126, + "fields": { + "id_car_serie": 9307, + "name": "1.8 TSI MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48127, + "fields": { + "id_car_serie": 9307, + "name": "1.8 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48128, + "fields": { + "id_car_serie": 9307, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48129, + "fields": { + "id_car_serie": 9307, + "name": "2.0 FSI AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48131, + "fields": { + "id_car_serie": 9307, + "name": "2.0 TSI AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48132, + "fields": { + "id_car_serie": 9307, + "name": "2.0 FSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48133, + "fields": { + "id_car_serie": 9307, + "name": "2.0 FSI 4Motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48135, + "fields": { + "id_car_serie": 9307, + "name": "2.0 TSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48138, + "fields": { + "id_car_serie": 9307, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48139, + "fields": { + "id_car_serie": 9307, + "name": "2.0 BlueTDI DSG (143 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48141, + "fields": { + "id_car_serie": 9307, + "name": "2.0 TDI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48142, + "fields": { + "id_car_serie": 9307, + "name": "2.0 TDI 4Motion DSG (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48143, + "fields": { + "id_car_serie": 9307, + "name": "2.0 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48144, + "fields": { + "id_car_serie": 9307, + "name": "2.0 TDI BlueMotion MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48145, + "fields": { + "id_car_serie": 9307, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48146, + "fields": { + "id_car_serie": 9307, + "name": "2.0 TDI BlueMotion MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48147, + "fields": { + "id_car_serie": 9307, + "name": "2.0 TDI 4Motion MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48148, + "fields": { + "id_car_serie": 9307, + "name": "2.0 BlueTDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48150, + "fields": { + "id_car_serie": 9307, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48151, + "fields": { + "id_car_serie": 9307, + "name": "3.2 FSI 4Motion DSG (250 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48154, + "fields": { + "id_car_serie": 9308, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48156, + "fields": { + "id_car_serie": 9308, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48160, + "fields": { + "id_car_serie": 9308, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48161, + "fields": { + "id_car_serie": 9308, + "name": "1.8 T AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48165, + "fields": { + "id_car_serie": 9308, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48166, + "fields": { + "id_car_serie": 9308, + "name": "1.8 Syncro MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48167, + "fields": { + "id_car_serie": 9308, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48171, + "fields": { + "id_car_serie": 9308, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48172, + "fields": { + "id_car_serie": 9308, + "name": "1.9 TDI AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48174, + "fields": { + "id_car_serie": 9308, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48176, + "fields": { + "id_car_serie": 9308, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48177, + "fields": { + "id_car_serie": 9308, + "name": "1.9 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48178, + "fields": { + "id_car_serie": 9308, + "name": "1.9 TDI 4Motion MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48181, + "fields": { + "id_car_serie": 9308, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48185, + "fields": { + "id_car_serie": 9308, + "name": "2.0 4Motion MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48186, + "fields": { + "id_car_serie": 9308, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48189, + "fields": { + "id_car_serie": 9308, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48191, + "fields": { + "id_car_serie": 9308, + "name": "2.3 Syncro MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48192, + "fields": { + "id_car_serie": 9308, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48195, + "fields": { + "id_car_serie": 9308, + "name": "2.5 TDI AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48196, + "fields": { + "id_car_serie": 9308, + "name": "2.5 TDI 4Motion AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48199, + "fields": { + "id_car_serie": 9308, + "name": "2.5 TDI 4Motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48200, + "fields": { + "id_car_serie": 9308, + "name": "2.5 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48203, + "fields": { + "id_car_serie": 9308, + "name": "2.8 Syncro AT (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48206, + "fields": { + "id_car_serie": 9308, + "name": "2.8 Syncro MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48210, + "fields": { + "id_car_serie": 9311, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48223, + "fields": { + "id_car_serie": 9311, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48246, + "fields": { + "id_car_serie": 9309, + "name": "1.6 MPI MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48249, + "fields": { + "id_car_serie": 9309, + "name": "1.8 TSI AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48253, + "fields": { + "id_car_serie": 9309, + "name": "1.8 TSI MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48254, + "fields": { + "id_car_serie": 9309, + "name": "1.8 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48263, + "fields": { + "id_car_serie": 9309, + "name": "1.9 TDI BlueMotion MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48264, + "fields": { + "id_car_serie": 9309, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48271, + "fields": { + "id_car_serie": 9309, + "name": "2.0 FSI AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48275, + "fields": { + "id_car_serie": 9309, + "name": "2.0 TDI BlueMotion MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48300, + "fields": { + "id_car_serie": 9310, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48336, + "fields": { + "id_car_serie": 9315, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48337, + "fields": { + "id_car_serie": 9315, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48343, + "fields": { + "id_car_serie": 9315, + "name": "1.8 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48349, + "fields": { + "id_car_serie": 9315, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48353, + "fields": { + "id_car_serie": 9315, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48356, + "fields": { + "id_car_serie": 9316, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48360, + "fields": { + "id_car_serie": 9316, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48362, + "fields": { + "id_car_serie": 9317, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48363, + "fields": { + "id_car_serie": 9317, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48378, + "fields": { + "id_car_serie": 9301, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48379, + "fields": { + "id_car_serie": 9301, + "name": "1.6 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48380, + "fields": { + "id_car_serie": 9301, + "name": "1.6 MT (48 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48381, + "fields": { + "id_car_serie": 9314, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48383, + "fields": { + "id_car_serie": 9314, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48391, + "fields": { + "id_car_serie": 9319, + "name": "3.0 TD 4Motion AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48396, + "fields": { + "id_car_serie": 9319, + "name": "3.6 L 4Motion AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48398, + "fields": { + "id_car_serie": 9319, + "name": "4.2 L 4Motion AT (335 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48399, + "fields": { + "id_car_serie": 9319, + "name": "4.2 4Motion AT (335 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48405, + "fields": { + "id_car_serie": 9322, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48406, + "fields": { + "id_car_serie": 9322, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48408, + "fields": { + "id_car_serie": 9322, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48409, + "fields": { + "id_car_serie": 9322, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48410, + "fields": { + "id_car_serie": 9322, + "name": "1.7 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48411, + "fields": { + "id_car_serie": 9322, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48412, + "fields": { + "id_car_serie": 9322, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48413, + "fields": { + "id_car_serie": 9322, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48414, + "fields": { + "id_car_serie": 9322, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48415, + "fields": { + "id_car_serie": 9322, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48431, + "fields": { + "id_car_serie": 9305, + "name": "1.4 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48432, + "fields": { + "id_car_serie": 9305, + "name": "1.4 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48433, + "fields": { + "id_car_serie": 9305, + "name": "1.4 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48434, + "fields": { + "id_car_serie": 9305, + "name": "1.4 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48435, + "fields": { + "id_car_serie": 9305, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48436, + "fields": { + "id_car_serie": 9305, + "name": "1.4 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48437, + "fields": { + "id_car_serie": 9305, + "name": "1.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48438, + "fields": { + "id_car_serie": 9305, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48439, + "fields": { + "id_car_serie": 9305, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48440, + "fields": { + "id_car_serie": 9305, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48441, + "fields": { + "id_car_serie": 9305, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48442, + "fields": { + "id_car_serie": 9305, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48443, + "fields": { + "id_car_serie": 9305, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48444, + "fields": { + "id_car_serie": 9305, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48445, + "fields": { + "id_car_serie": 9305, + "name": "1.9 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48446, + "fields": { + "id_car_serie": 9305, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48447, + "fields": { + "id_car_serie": 9305, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48448, + "fields": { + "id_car_serie": 9305, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48449, + "fields": { + "id_car_serie": 9305, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48450, + "fields": { + "id_car_serie": 9305, + "name": "2.0 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48451, + "fields": { + "id_car_serie": 9305, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48453, + "fields": { + "id_car_serie": 9321, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48489, + "fields": { + "id_car_serie": 9327, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48491, + "fields": { + "id_car_serie": 9327, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48492, + "fields": { + "id_car_serie": 9327, + "name": "1.4 16V MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48499, + "fields": { + "id_car_serie": 9328, + "name": "1.6TDi MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48875, + "fields": { + "id_car_serie": 9364, + "name": "1.6 MT 8 valves (Euro-4) (82 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48877, + "fields": { + "id_car_serie": 9369, + "name": "21111 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48889, + "fields": { + "id_car_serie": 9376, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48894, + "fields": { + "id_car_serie": 9379, + "name": "2.4 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48897, + "fields": { + "id_car_serie": 9380, + "name": "5.5 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48898, + "fields": { + "id_car_serie": 9381, + "name": "3.3 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1934, + "end_production_year": 1943 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48899, + "fields": { + "id_car_serie": 9382, + "name": "0.7 MT (23 hp)", + "arabic_name": "-", + "start_production_year": 1960, + "end_production_year": 1963 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48900, + "fields": { + "id_car_serie": 9382, + "name": "0.9 MT (27 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48901, + "fields": { + "id_car_serie": 9385, + "name": "0.9 MT (27 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48902, + "fields": { + "id_car_serie": 9384, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48904, + "fields": { + "id_car_serie": 9384, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48905, + "fields": { + "id_car_serie": 9384, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48906, + "fields": { + "id_car_serie": 9386, + "name": "7.0 AT (303 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48907, + "fields": { + "id_car_serie": 9387, + "name": "7.0 AT (303 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48909, + "fields": { + "id_car_serie": 9378, + "name": "2.3 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48911, + "fields": { + "id_car_serie": 9378, + "name": "2.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48913, + "fields": { + "id_car_serie": 9383, + "name": "1140 1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48914, + "fields": { + "id_car_serie": 9383, + "name": "1.1 MT (53 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48915, + "fields": { + "id_car_serie": 9383, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48916, + "fields": { + "id_car_serie": 9383, + "name": "1.3 MT (66 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48921, + "fields": { + "id_car_serie": 9388, + "name": "1.6 MT Orbit (80 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48922, + "fields": { + "id_car_serie": 9388, + "name": "1.7 MT Orbit (85 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48923, + "fields": { + "id_car_serie": 9388, + "name": "1.8 D MT Oda (64 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48924, + "fields": { + "id_car_serie": 9392, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48928, + "fields": { + "id_car_serie": 9391, + "name": "1.2 MT (42 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48931, + "fields": { + "id_car_serie": 9396, + "name": "1.1 MT (53 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48932, + "fields": { + "id_car_serie": 9399, + "name": "1.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48933, + "fields": { + "id_car_serie": 9399, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48934, + "fields": { + "id_car_serie": 9390, + "name": "2.3 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48937, + "fields": { + "id_car_serie": 9397, + "name": "1.2 MT (42 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48938, + "fields": { + "id_car_serie": 9398, + "name": "1.4 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48939, + "fields": { + "id_car_serie": 49474, + "name": "7.7 AT (311 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48940, + "fields": { + "id_car_serie": 9403, + "name": "1.4 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1962, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48941, + "fields": { + "id_car_serie": 9404, + "name": "1.4 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1958, + "end_production_year": 1963 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48942, + "fields": { + "id_car_serie": 9405, + "name": "1.2 MT (35 hp)", + "arabic_name": "-", + "start_production_year": 1956, + "end_production_year": 1958 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48943, + "fields": { + "id_car_serie": 9406, + "name": "1.4 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1969 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48945, + "fields": { + "id_car_serie": 9401, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48946, + "fields": { + "id_car_serie": 9402, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48947, + "fields": { + "id_car_serie": 9402, + "name": "1.6 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48948, + "fields": { + "id_car_serie": 9402, + "name": "1.7 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48956, + "fields": { + "id_car_serie": 9415, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48959, + "fields": { + "id_car_serie": 9417, + "name": "1.7 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48960, + "fields": { + "id_car_serie": 9417, + "name": "1.8 MT (77 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48961, + "fields": { + "id_car_serie": 9417, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48962, + "fields": { + "id_car_serie": 9417, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48963, + "fields": { + "id_car_serie": 9417, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48964, + "fields": { + "id_car_serie": 9417, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48965, + "fields": { + "id_car_serie": 9413, + "name": "1.7 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48966, + "fields": { + "id_car_serie": 9413, + "name": "1.8 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48967, + "fields": { + "id_car_serie": 9413, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48968, + "fields": { + "id_car_serie": 9413, + "name": "2.0 MT AWD (145 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48969, + "fields": { + "id_car_serie": 9413, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48970, + "fields": { + "id_car_serie": 9414, + "name": "1.6 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48971, + "fields": { + "id_car_serie": 9414, + "name": "1.7 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48972, + "fields": { + "id_car_serie": 9414, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48974, + "fields": { + "id_car_serie": 9421, + "name": "1.4 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48975, + "fields": { + "id_car_serie": 9422, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1969 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48976, + "fields": { + "id_car_serie": 9423, + "name": "1.3 MT (93 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48978, + "fields": { + "id_car_serie": 9419, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48979, + "fields": { + "id_car_serie": 9424, + "name": "2.4 MT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48980, + "fields": { + "id_car_serie": 9427, + "name": "2.9 5MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48981, + "fields": { + "id_car_serie": 9428, + "name": "2.7 MT (144 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48982, + "fields": { + "id_car_serie": 9425, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48986, + "fields": { + "id_car_serie": 9429, + "name": "31605 2.5 D 5MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48987, + "fields": { + "id_car_serie": 9429, + "name": "31602 2.7 4MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48988, + "fields": { + "id_car_serie": 9429, + "name": "31603 2.9 4MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 48989, + "fields": { + "id_car_serie": 9429, + "name": "31603 2.9 5MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49001, + "fields": { + "id_car_serie": 9434, + "name": "2.0 Flexpower MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49004, + "fields": { + "id_car_serie": 9431, + "name": "2.7 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49006, + "fields": { + "id_car_serie": 9435, + "name": "2.2 TD MT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49007, + "fields": { + "id_car_serie": 9436, + "name": "3.6 AT AWD (281 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49008, + "fields": { + "id_car_serie": 9436, + "name": "3.6 AT (281 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49009, + "fields": { + "id_car_serie": 9436, + "name": "3.6 AT (288 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49010, + "fields": { + "id_car_serie": 9436, + "name": "3.6 AT AWD (288 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49012, + "fields": { + "id_car_serie": 9438, + "name": "2.0 Flexpower MT (133 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49013, + "fields": { + "id_car_serie": 9438, + "name": "2.0 Flexpower MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49014, + "fields": { + "id_car_serie": 9408, + "name": "1.4 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1957, + "end_production_year": 1958 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49018, + "fields": { + "id_car_serie": 9442, + "name": "3.4 AT SWB AWD (188 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49019, + "fields": { + "id_car_serie": 9442, + "name": "3.4 AT LWB AWD (188 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49020, + "fields": { + "id_car_serie": 9442, + "name": "3.4 AT LWB (188 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49021, + "fields": { + "id_car_serie": 9442, + "name": "3.4 AT SWB (188 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49022, + "fields": { + "id_car_serie": 9445, + "name": "2.0 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49023, + "fields": { + "id_car_serie": 9445, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49027, + "fields": { + "id_car_serie": 9445, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49028, + "fields": { + "id_car_serie": 9445, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49034, + "fields": { + "id_car_serie": 9445, + "name": "2.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49037, + "fields": { + "id_car_serie": 9445, + "name": "2.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49038, + "fields": { + "id_car_serie": 9446, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49039, + "fields": { + "id_car_serie": 9446, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49040, + "fields": { + "id_car_serie": 9446, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49041, + "fields": { + "id_car_serie": 9446, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49042, + "fields": { + "id_car_serie": 9446, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49043, + "fields": { + "id_car_serie": 9446, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49045, + "fields": { + "id_car_serie": 9443, + "name": "1.5 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49046, + "fields": { + "id_car_serie": 9444, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49047, + "fields": { + "id_car_serie": 9444, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49048, + "fields": { + "id_car_serie": 9444, + "name": "2.0 AT (144 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49049, + "fields": { + "id_car_serie": 9444, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49050, + "fields": { + "id_car_serie": 9444, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49051, + "fields": { + "id_car_serie": 9444, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49052, + "fields": { + "id_car_serie": 9447, + "name": "1.8 Ecotec MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49053, + "fields": { + "id_car_serie": 9450, + "name": "2.4 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49054, + "fields": { + "id_car_serie": 9450, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49057, + "fields": { + "id_car_serie": 9450, + "name": "2.5 TD AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49058, + "fields": { + "id_car_serie": 9450, + "name": "2.5 TD AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49059, + "fields": { + "id_car_serie": 9450, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49060, + "fields": { + "id_car_serie": 9451, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49061, + "fields": { + "id_car_serie": 9451, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49062, + "fields": { + "id_car_serie": 9451, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49065, + "fields": { + "id_car_serie": 9451, + "name": "2.0 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49066, + "fields": { + "id_car_serie": 9451, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49067, + "fields": { + "id_car_serie": 9451, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49069, + "fields": { + "id_car_serie": 9451, + "name": "2.0 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49070, + "fields": { + "id_car_serie": 9451, + "name": "2.0 GT MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49071, + "fields": { + "id_car_serie": 9451, + "name": "2.0 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49072, + "fields": { + "id_car_serie": 9452, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49075, + "fields": { + "id_car_serie": 9452, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49077, + "fields": { + "id_car_serie": 9452, + "name": "2.0 GT MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49078, + "fields": { + "id_car_serie": 9452, + "name": "2.0 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49083, + "fields": { + "id_car_serie": 9448, + "name": "2.5 AT (164 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49085, + "fields": { + "id_car_serie": 9449, + "name": "1.0 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49086, + "fields": { + "id_car_serie": 9449, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49096, + "fields": { + "id_car_serie": 9456, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49097, + "fields": { + "id_car_serie": 9456, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49098, + "fields": { + "id_car_serie": 9456, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49099, + "fields": { + "id_car_serie": 9456, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49100, + "fields": { + "id_car_serie": 9456, + "name": "2.0 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49101, + "fields": { + "id_car_serie": 9457, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49102, + "fields": { + "id_car_serie": 9457, + "name": "1.8 GTI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49103, + "fields": { + "id_car_serie": 9453, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49104, + "fields": { + "id_car_serie": 9453, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49105, + "fields": { + "id_car_serie": 9453, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49107, + "fields": { + "id_car_serie": 9453, + "name": "2.0 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49108, + "fields": { + "id_car_serie": 9453, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49109, + "fields": { + "id_car_serie": 9453, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49111, + "fields": { + "id_car_serie": 9453, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49113, + "fields": { + "id_car_serie": 9453, + "name": "2.0 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49114, + "fields": { + "id_car_serie": 9453, + "name": "2.0 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49126, + "fields": { + "id_car_serie": 9458, + "name": "1.3 AT (79 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49127, + "fields": { + "id_car_serie": 9458, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49128, + "fields": { + "id_car_serie": 9458, + "name": "1.5 AT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49129, + "fields": { + "id_car_serie": 9458, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49130, + "fields": { + "id_car_serie": 9458, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49131, + "fields": { + "id_car_serie": 9458, + "name": "1.5 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49132, + "fields": { + "id_car_serie": 9458, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49133, + "fields": { + "id_car_serie": 9458, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49134, + "fields": { + "id_car_serie": 9458, + "name": "1.8 GTI AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49135, + "fields": { + "id_car_serie": 9458, + "name": "1.8 GTI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49137, + "fields": { + "id_car_serie": 9461, + "name": "3.3 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49138, + "fields": { + "id_car_serie": 9462, + "name": "3.0 AT (151 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49139, + "fields": { + "id_car_serie": 9463, + "name": "0.7 CVT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49140, + "fields": { + "id_car_serie": 9463, + "name": "0.7 CVT (54 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49141, + "fields": { + "id_car_serie": 9463, + "name": "0.7 turbo CVT (64 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49142, + "fields": { + "id_car_serie": 9463, + "name": "0.7 turbo CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49143, + "fields": { + "id_car_serie": 9439, + "name": "1.6 AT (117 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49144, + "fields": { + "id_car_serie": 9439, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49145, + "fields": { + "id_car_serie": 9460, + "name": "3.5 AT (243 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49149, + "fields": { + "id_car_serie": 9464, + "name": "4.2 D 4WD AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49150, + "fields": { + "id_car_serie": 9464, + "name": "4.2 D 4WD MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49152, + "fields": { + "id_car_serie": 9465, + "name": "4.2 4WD AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49153, + "fields": { + "id_car_serie": 9465, + "name": "4.2 4WD MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49156, + "fields": { + "id_car_serie": 9465, + "name": "4.2 D 4WD MT (123 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49158, + "fields": { + "id_car_serie": 9468, + "name": "1.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49160, + "fields": { + "id_car_serie": 9468, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49161, + "fields": { + "id_car_serie": 9469, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49162, + "fields": { + "id_car_serie": 9469, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49165, + "fields": { + "id_car_serie": 9469, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49166, + "fields": { + "id_car_serie": 9469, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49167, + "fields": { + "id_car_serie": 9440, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49168, + "fields": { + "id_car_serie": 9459, + "name": "2.5 AT (222 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49169, + "fields": { + "id_car_serie": 9459, + "name": "3.0d AT (238 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49170, + "fields": { + "id_car_serie": 9459, + "name": "3.5hyb AT (303 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49171, + "fields": { + "id_car_serie": 9459, + "name": "3.7 AT (333 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49172, + "fields": { + "id_car_serie": 9459, + "name": "3.7 AT (333 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49173, + "fields": { + "id_car_serie": 9459, + "name": "5.6 AT (408 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49174, + "fields": { + "id_car_serie": 9459, + "name": "5.6 AT (408 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49175, + "fields": { + "id_car_serie": 9470, + "name": "4.5 AT (270 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49176, + "fields": { + "id_car_serie": 9471, + "name": "4.4 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49177, + "fields": { + "id_car_serie": 9474, + "name": "1.6 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49178, + "fields": { + "id_car_serie": 9474, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49201, + "fields": { + "id_car_serie": 9477, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49203, + "fields": { + "id_car_serie": 9479, + "name": "3.7 AT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49226, + "fields": { + "id_car_serie": 9483, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49316, + "fields": { + "id_car_serie": 9492, + "name": "2.0 AT (153 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49326, + "fields": { + "id_car_serie": 9496, + "name": "1.5 AT AWD (105 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49333, + "fields": { + "id_car_serie": 9499, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49392, + "fields": { + "id_car_serie": 9503, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49402, + "fields": { + "id_car_serie": 9503, + "name": "1.6 GTI 16V MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49422, + "fields": { + "id_car_serie": 9495, + "name": "1.3 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49432, + "fields": { + "id_car_serie": 9497, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49438, + "fields": { + "id_car_serie": 9508, + "name": "1.5 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49444, + "fields": { + "id_car_serie": 9509, + "name": "3.5 Xtronic (249 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49463, + "fields": { + "id_car_serie": 9513, + "name": "1.8 5AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49465, + "fields": { + "id_car_serie": 9516, + "name": "1.2 AT (70 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49497, + "fields": { + "id_car_serie": 9510, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49515, + "fields": { + "id_car_serie": 9522, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49518, + "fields": { + "id_car_serie": 9524, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49526, + "fields": { + "id_car_serie": 9506, + "name": "1.3 4MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49535, + "fields": { + "id_car_serie": 9525, + "name": "1.8 AT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49549, + "fields": { + "id_car_serie": 9529, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49550, + "fields": { + "id_car_serie": 9529, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49558, + "fields": { + "id_car_serie": 9529, + "name": "2.4 TD MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49588, + "fields": { + "id_car_serie": 9528, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49646, + "fields": { + "id_car_serie": 9543, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49650, + "fields": { + "id_car_serie": 9534, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49657, + "fields": { + "id_car_serie": 9540, + "name": "3.0 AT (256 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49660, + "fields": { + "id_car_serie": 9547, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49670, + "fields": { + "id_car_serie": 9544, + "name": "1.5 AT Overdrive (102 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49680, + "fields": { + "id_car_serie": 9545, + "name": "2.2 MT (137 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49682, + "fields": { + "id_car_serie": 9551, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49692, + "fields": { + "id_car_serie": 9550, + "name": "1.0 AT (70 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49699, + "fields": { + "id_car_serie": 9553, + "name": "1.0 AT 4WD (71 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49718, + "fields": { + "id_car_serie": 9564, + "name": "1.3 CVT (87 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49731, + "fields": { + "id_car_serie": 9556, + "name": "2.2 D turbo MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49736, + "fields": { + "id_car_serie": 9562, + "name": "1.5 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49744, + "fields": { + "id_car_serie": 9569, + "name": "3.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49745, + "fields": { + "id_car_serie": 9570, + "name": "1.5 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49767, + "fields": { + "id_car_serie": 9571, + "name": "2.4 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49789, + "fields": { + "id_car_serie": 9563, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49812, + "fields": { + "id_car_serie": 9576, + "name": "2.0 AT AWD (128 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49823, + "fields": { + "id_car_serie": 9580, + "name": "3.3 AT (230 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49829, + "fields": { + "id_car_serie": 9587, + "name": "2.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49837, + "fields": { + "id_car_serie": 9589, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49839, + "fields": { + "id_car_serie": 9592, + "name": "1.3 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49854, + "fields": { + "id_car_serie": 9591, + "name": "1.3 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49855, + "fields": { + "id_car_serie": 9591, + "name": "1.3 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49856, + "fields": { + "id_car_serie": 9591, + "name": "1.3 AT Turbo (135 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49867, + "fields": { + "id_car_serie": 9593, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49870, + "fields": { + "id_car_serie": 9596, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49871, + "fields": { + "id_car_serie": 9597, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49883, + "fields": { + "id_car_serie": 9590, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49896, + "fields": { + "id_car_serie": 9600, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49914, + "fields": { + "id_car_serie": 9602, + "name": "2.0 AT Overdrive (152 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49947, + "fields": { + "id_car_serie": 9594, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49951, + "fields": { + "id_car_serie": 9606, + "name": "5.7 AT Long (381 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49952, + "fields": { + "id_car_serie": 9606, + "name": "5.7 AT (381 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49953, + "fields": { + "id_car_serie": 9607, + "name": "4.0 AT (236 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49954, + "fields": { + "id_car_serie": 9607, + "name": "4.0 AT Long (236 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49957, + "fields": { + "id_car_serie": 9607, + "name": "5.7 AT Long (381 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49958, + "fields": { + "id_car_serie": 9607, + "name": "5.7 AT (381 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49963, + "fields": { + "id_car_serie": 9608, + "name": "4.7 AT (271 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49964, + "fields": { + "id_car_serie": 9608, + "name": "4.7 AT 4WD (271 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49967, + "fields": { + "id_car_serie": 9608, + "name": "5.7 AT (381 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49968, + "fields": { + "id_car_serie": 9608, + "name": "5.7 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49969, + "fields": { + "id_car_serie": 9611, + "name": "1.3 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49971, + "fields": { + "id_car_serie": 9611, + "name": "1.4 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49972, + "fields": { + "id_car_serie": 9611, + "name": "1.4 CRDi MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49973, + "fields": { + "id_car_serie": 9611, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49974, + "fields": { + "id_car_serie": 9611, + "name": "1.5 CVT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49975, + "fields": { + "id_car_serie": 9611, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 49986, + "fields": { + "id_car_serie": 9610, + "name": "3.4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49987, + "fields": { + "id_car_serie": 9610, + "name": "3.4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49990, + "fields": { + "id_car_serie": 9610, + "name": "4.7 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49993, + "fields": { + "id_car_serie": 9610, + "name": "4.7 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49996, + "fields": { + "id_car_serie": 9612, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49997, + "fields": { + "id_car_serie": 9612, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49998, + "fields": { + "id_car_serie": 9612, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 49999, + "fields": { + "id_car_serie": 9612, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50000, + "fields": { + "id_car_serie": 9612, + "name": "1.5 MT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50001, + "fields": { + "id_car_serie": 9612, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50002, + "fields": { + "id_car_serie": 9613, + "name": "1.3 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50003, + "fields": { + "id_car_serie": 9613, + "name": "1.3 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50005, + "fields": { + "id_car_serie": 9617, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50018, + "fields": { + "id_car_serie": 9616, + "name": "1.3 AT (65 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50019, + "fields": { + "id_car_serie": 9616, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50020, + "fields": { + "id_car_serie": 9616, + "name": "1.5 AT (71 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50021, + "fields": { + "id_car_serie": 9616, + "name": "1.5 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50022, + "fields": { + "id_car_serie": 9618, + "name": "2.0 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50023, + "fields": { + "id_car_serie": 9618, + "name": "2.0 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50025, + "fields": { + "id_car_serie": 9618, + "name": "2.0 AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50027, + "fields": { + "id_car_serie": 9618, + "name": "2.0 MT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50030, + "fields": { + "id_car_serie": 9618, + "name": "2.2 TD AT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50031, + "fields": { + "id_car_serie": 9618, + "name": "2.2 TD AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50034, + "fields": { + "id_car_serie": 9618, + "name": "2.2 TD MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50035, + "fields": { + "id_car_serie": 9618, + "name": "2.2 TD MT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50036, + "fields": { + "id_car_serie": 9619, + "name": "1.8 AT Skylight roof (79 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50037, + "fields": { + "id_car_serie": 9619, + "name": "1.8 MT Twin moon roof (79 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50038, + "fields": { + "id_car_serie": 9619, + "name": "2.0 TD AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50039, + "fields": { + "id_car_serie": 9619, + "name": "2.0 TD AT Skylight roof (85 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50040, + "fields": { + "id_car_serie": 9619, + "name": "2.0 MT Twin moon roof (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50041, + "fields": { + "id_car_serie": 9619, + "name": "2.0 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50042, + "fields": { + "id_car_serie": 9619, + "name": "2.0 TD AT High roof (85 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50043, + "fields": { + "id_car_serie": 9619, + "name": "2.0 TD AT Middle roof (85 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50044, + "fields": { + "id_car_serie": 9619, + "name": "2.0 TD MT Twin moon roof (85 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50045, + "fields": { + "id_car_serie": 9619, + "name": "2.0 MT Skylight roof (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50046, + "fields": { + "id_car_serie": 9622, + "name": "1.6 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50047, + "fields": { + "id_car_serie": 9622, + "name": "1.8 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50048, + "fields": { + "id_car_serie": 9622, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50049, + "fields": { + "id_car_serie": 9622, + "name": "2.0 D-4D MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50050, + "fields": { + "id_car_serie": 9622, + "name": "2.2 D-4D AT (152 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50051, + "fields": { + "id_car_serie": 9623, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50052, + "fields": { + "id_car_serie": 9623, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50053, + "fields": { + "id_car_serie": 9623, + "name": "2.4 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50054, + "fields": { + "id_car_serie": 9623, + "name": "3.0 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50055, + "fields": { + "id_car_serie": 9620, + "name": "2.4 CVT 4WD 7seat (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50056, + "fields": { + "id_car_serie": 9620, + "name": "2.4 CVT 4WD 5seat (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50057, + "fields": { + "id_car_serie": 9620, + "name": "3.5 AT 4WD 7seat (280 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50058, + "fields": { + "id_car_serie": 9621, + "name": "2.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50059, + "fields": { + "id_car_serie": 9621, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50060, + "fields": { + "id_car_serie": 9621, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50061, + "fields": { + "id_car_serie": 9621, + "name": "2.5 Twin-turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50063, + "fields": { + "id_car_serie": 9621, + "name": "2.5 Twin-turbo MT (280 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50064, + "fields": { + "id_car_serie": 9626, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50065, + "fields": { + "id_car_serie": 9626, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50066, + "fields": { + "id_car_serie": 9626, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50068, + "fields": { + "id_car_serie": 9626, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50070, + "fields": { + "id_car_serie": 9627, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50071, + "fields": { + "id_car_serie": 9627, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50073, + "fields": { + "id_car_serie": 9627, + "name": "2.0 AT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50074, + "fields": { + "id_car_serie": 9627, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50076, + "fields": { + "id_car_serie": 9627, + "name": "2.0 MT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50077, + "fields": { + "id_car_serie": 9627, + "name": "2.2 TD AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50078, + "fields": { + "id_car_serie": 9627, + "name": "2.2 TD MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50079, + "fields": { + "id_car_serie": 9628, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50080, + "fields": { + "id_car_serie": 9628, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50082, + "fields": { + "id_car_serie": 9628, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50084, + "fields": { + "id_car_serie": 9628, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50085, + "fields": { + "id_car_serie": 9628, + "name": "2.0 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50086, + "fields": { + "id_car_serie": 9628, + "name": "2.0 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50103, + "fields": { + "id_car_serie": 9629, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50104, + "fields": { + "id_car_serie": 9629, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50105, + "fields": { + "id_car_serie": 9629, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50106, + "fields": { + "id_car_serie": 9629, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50109, + "fields": { + "id_car_serie": 9630, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50110, + "fields": { + "id_car_serie": 9631, + "name": "1.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50111, + "fields": { + "id_car_serie": 9631, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50112, + "fields": { + "id_car_serie": 9634, + "name": "1.0 CVT (69 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50114, + "fields": { + "id_car_serie": 9634, + "name": "1.3 CVT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50117, + "fields": { + "id_car_serie": 9624, + "name": "1.3 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50118, + "fields": { + "id_car_serie": 9624, + "name": "1.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50119, + "fields": { + "id_car_serie": 9624, + "name": "1.4 D-4D AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50120, + "fields": { + "id_car_serie": 9624, + "name": "1.4 D-4D MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50125, + "fields": { + "id_car_serie": 9625, + "name": "1.3 CVT (87 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50126, + "fields": { + "id_car_serie": 9625, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50127, + "fields": { + "id_car_serie": 9625, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50128, + "fields": { + "id_car_serie": 9625, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50131, + "fields": { + "id_car_serie": 9632, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50132, + "fields": { + "id_car_serie": 9632, + "name": "2.0 CVT (155 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50147, + "fields": { + "id_car_serie": 9637, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50148, + "fields": { + "id_car_serie": 9637, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50149, + "fields": { + "id_car_serie": 9637, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50150, + "fields": { + "id_car_serie": 9637, + "name": "1.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50152, + "fields": { + "id_car_serie": 9638, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50154, + "fields": { + "id_car_serie": 9638, + "name": "3.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50155, + "fields": { + "id_car_serie": 9633, + "name": "2.7 AT AWD (181 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50156, + "fields": { + "id_car_serie": 9633, + "name": "2.7 AT (181 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50157, + "fields": { + "id_car_serie": 9633, + "name": "3.5 FWD (268 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50158, + "fields": { + "id_car_serie": 9633, + "name": "3.5 AT AWD (268 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50160, + "fields": { + "id_car_serie": 9635, + "name": "1.0 AT (70 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50162, + "fields": { + "id_car_serie": 9635, + "name": "1.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50164, + "fields": { + "id_car_serie": 9635, + "name": "1.3 4WD AT (88 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50165, + "fields": { + "id_car_serie": 9635, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50167, + "fields": { + "id_car_serie": 9635, + "name": "1.3 CVT (87 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50168, + "fields": { + "id_car_serie": 9635, + "name": "1.3 4WD MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50173, + "fields": { + "id_car_serie": 9641, + "name": "1.5 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50174, + "fields": { + "id_car_serie": 9641, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50176, + "fields": { + "id_car_serie": 9642, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50178, + "fields": { + "id_car_serie": 9642, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50179, + "fields": { + "id_car_serie": 9642, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50180, + "fields": { + "id_car_serie": 9642, + "name": "1.4 D-4D AT (89 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50181, + "fields": { + "id_car_serie": 9642, + "name": "1.4 D-4D MT (89 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50185, + "fields": { + "id_car_serie": 9643, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50187, + "fields": { + "id_car_serie": 9643, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50188, + "fields": { + "id_car_serie": 9643, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50189, + "fields": { + "id_car_serie": 9643, + "name": "1.4 D-4D AT (89 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50190, + "fields": { + "id_car_serie": 9643, + "name": "1.4 D-4D MT (89 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50195, + "fields": { + "id_car_serie": 9646, + "name": "3.5 AT 2WD (280 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50196, + "fields": { + "id_car_serie": 9646, + "name": "3.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50197, + "fields": { + "id_car_serie": 9639, + "name": "2.5 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50199, + "fields": { + "id_car_serie": 9639, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50201, + "fields": { + "id_car_serie": 9640, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50206, + "fields": { + "id_car_serie": 9647, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50207, + "fields": { + "id_car_serie": 9647, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50208, + "fields": { + "id_car_serie": 9648, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50209, + "fields": { + "id_car_serie": 9649, + "name": "1.3 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50210, + "fields": { + "id_car_serie": 9649, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50211, + "fields": { + "id_car_serie": 9649, + "name": "1.4 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50212, + "fields": { + "id_car_serie": 9649, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50213, + "fields": { + "id_car_serie": 9644, + "name": "1.0 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50214, + "fields": { + "id_car_serie": 9644, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50215, + "fields": { + "id_car_serie": 9644, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50216, + "fields": { + "id_car_serie": 9644, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50217, + "fields": { + "id_car_serie": 9644, + "name": "1.4 D-4D AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50218, + "fields": { + "id_car_serie": 9644, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50219, + "fields": { + "id_car_serie": 9644, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50220, + "fields": { + "id_car_serie": 9645, + "name": "1.0 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50221, + "fields": { + "id_car_serie": 9645, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50222, + "fields": { + "id_car_serie": 9645, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50223, + "fields": { + "id_car_serie": 9645, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50224, + "fields": { + "id_car_serie": 9645, + "name": "1.4 D-4D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50225, + "fields": { + "id_car_serie": 9645, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50226, + "fields": { + "id_car_serie": 9645, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50231, + "fields": { + "id_car_serie": 4854, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50238, + "fields": { + "id_car_serie": 5611, + "name": "6.0 MT (461 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50241, + "fields": { + "id_car_serie": 4919, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50244, + "fields": { + "id_car_serie": 5625, + "name": "3.5 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50246, + "fields": { + "id_car_serie": 5628, + "name": "3.5 AT 2WD (203 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50247, + "fields": { + "id_car_serie": 5635, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50258, + "fields": { + "id_car_serie": 5682, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50265, + "fields": { + "id_car_serie": 5718, + "name": "3.1 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50272, + "fields": { + "id_car_serie": 5743, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50273, + "fields": { + "id_car_serie": 5747, + "name": "1.8 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50275, + "fields": { + "id_car_serie": 5748, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50276, + "fields": { + "id_car_serie": 5749, + "name": "2.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50277, + "fields": { + "id_car_serie": 5753, + "name": "6.0 AT (390 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50282, + "fields": { + "id_car_serie": 5771, + "name": "3.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50291, + "fields": { + "id_car_serie": 2420, + "name": "60 AWD (328 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50294, + "fields": { + "id_car_serie": 3223, + "name": "8.4 MT (640 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50295, + "fields": { + "id_car_serie": 3347, + "name": "3.7 AT (305 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50296, + "fields": { + "id_car_serie": 3347, + "name": "3.7 MT (305 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50297, + "fields": { + "id_car_serie": 3347, + "name": "5.0 AT (426 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50299, + "fields": { + "id_car_serie": 3880, + "name": "1.2 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50300, + "fields": { + "id_car_serie": 3880, + "name": "1.2 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50301, + "fields": { + "id_car_serie": 3895, + "name": "1.2 ecoFLEX MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50302, + "fields": { + "id_car_serie": 3895, + "name": "1.2 ecoFLEX Start/Stop MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50303, + "fields": { + "id_car_serie": 3895, + "name": "1.4 Turbo ecoFLEX Start/Stop MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50304, + "fields": { + "id_car_serie": 3895, + "name": "1.4 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50305, + "fields": { + "id_car_serie": 3896, + "name": "1.2 ecoFLEX MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50307, + "fields": { + "id_car_serie": 3896, + "name": "1.4 Turbo ecoFLEX Start/Stop MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50308, + "fields": { + "id_car_serie": 3896, + "name": "1.4 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50313, + "fields": { + "id_car_serie": 4280, + "name": "1.8 CVT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50314, + "fields": { + "id_car_serie": 4351, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50319, + "fields": { + "id_car_serie": 4562, + "name": "1.6 MT 8 valves (82 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50320, + "fields": { + "id_car_serie": 4562, + "name": "1.6 MT 16 valves (98 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50326, + "fields": { + "id_car_serie": 4573, + "name": "2.3 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50328, + "fields": { + "id_car_serie": 4577, + "name": "2.3 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50330, + "fields": { + "id_car_serie": 4584, + "name": "1.4 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50331, + "fields": { + "id_car_serie": 4585, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50334, + "fields": { + "id_car_serie": 4601, + "name": "2.6 D MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50335, + "fields": { + "id_car_serie": 4603, + "name": "2.3 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50336, + "fields": { + "id_car_serie": 4605, + "name": "315128-10 D 2.2 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50339, + "fields": { + "id_car_serie": 4606, + "name": "315122 2.5 MT (74 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50341, + "fields": { + "id_car_serie": 4609, + "name": "2.2 TD MT 4WD (114 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50342, + "fields": { + "id_car_serie": 4609, + "name": "2.9 MT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50345, + "fields": { + "id_car_serie": 4612, + "name": "2.7 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50346, + "fields": { + "id_car_serie": 4612, + "name": "2.7 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50348, + "fields": { + "id_car_serie": 4613, + "name": "2.2 MT (138 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50350, + "fields": { + "id_car_serie": 4615, + "name": "2.5 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50351, + "fields": { + "id_car_serie": 4615, + "name": "2.5 AT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50352, + "fields": { + "id_car_serie": 4616, + "name": "1.6 MT AWD (102 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50353, + "fields": { + "id_car_serie": 4616, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 50354, + "fields": { + "id_car_serie": 4617, + "name": "2.4 AT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50358, + "fields": { + "id_car_serie": 4619, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50359, + "fields": { + "id_car_serie": 4619, + "name": "1.6 CVT (117 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50360, + "fields": { + "id_car_serie": 4619, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50361, + "fields": { + "id_car_serie": 4620, + "name": "1.8 TFSI multitronic (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50362, + "fields": { + "id_car_serie": 4620, + "name": "2.0 TFSI multitronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50363, + "fields": { + "id_car_serie": 4620, + "name": "2.0 TFSI multitronic (211 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50364, + "fields": { + "id_car_serie": 4620, + "name": "2.0 TDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50365, + "fields": { + "id_car_serie": 4620, + "name": "2.0 TDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50366, + "fields": { + "id_car_serie": 4620, + "name": "2.7 TDI multitronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50367, + "fields": { + "id_car_serie": 4620, + "name": "2.7 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50368, + "fields": { + "id_car_serie": 4620, + "name": "3.0 TDI MT quattro (240 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50369, + "fields": { + "id_car_serie": 4620, + "name": "3.2 FSI multitronic (265 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50370, + "fields": { + "id_car_serie": 4621, + "name": "1.8 TFSI multitronic (160 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50371, + "fields": { + "id_car_serie": 4621, + "name": "1.8 TFSI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50372, + "fields": { + "id_car_serie": 4621, + "name": "2.0 TFSI multitronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50373, + "fields": { + "id_car_serie": 4621, + "name": "2.0 TFSI multitronic (211 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50374, + "fields": { + "id_car_serie": 4621, + "name": "2.0 TFSI MT quattro (211 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50375, + "fields": { + "id_car_serie": 4621, + "name": "2.0 TDI MT quattro (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50376, + "fields": { + "id_car_serie": 4621, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50377, + "fields": { + "id_car_serie": 4621, + "name": "2.0 TDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50378, + "fields": { + "id_car_serie": 4621, + "name": "2.0 TFSI flexible fuel MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50379, + "fields": { + "id_car_serie": 4621, + "name": "2.0 TFSI flexible fuel MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50381, + "fields": { + "id_car_serie": 4621, + "name": "3.0 TDI MT quattro (240 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50383, + "fields": { + "id_car_serie": 4622, + "name": "1.8 T MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50395, + "fields": { + "id_car_serie": 4623, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50396, + "fields": { + "id_car_serie": 4623, + "name": "1.8 T MT quattro (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50397, + "fields": { + "id_car_serie": 4623, + "name": "1.8 T MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50398, + "fields": { + "id_car_serie": 4623, + "name": "1.9 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50399, + "fields": { + "id_car_serie": 4623, + "name": "2.0 TFSI multitronic (200 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50400, + "fields": { + "id_car_serie": 4623, + "name": "2.0 multitronic (131 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50402, + "fields": { + "id_car_serie": 4623, + "name": "2.0 TFSI tiptronic quattro (200 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50403, + "fields": { + "id_car_serie": 4623, + "name": "2.0 TFSI multitronic (220 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50404, + "fields": { + "id_car_serie": 4623, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50405, + "fields": { + "id_car_serie": 4623, + "name": "2.0 TFSI MT quattro (200 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50406, + "fields": { + "id_car_serie": 4623, + "name": "2.0 TFSI MT quattro (220 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50407, + "fields": { + "id_car_serie": 4623, + "name": "2.0 TFSI MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50411, + "fields": { + "id_car_serie": 4623, + "name": "2.0 TDI MT quattro (170 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50412, + "fields": { + "id_car_serie": 4623, + "name": "2.0 TDI MT quattro (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50414, + "fields": { + "id_car_serie": 4623, + "name": "2.5 TDI multitronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50415, + "fields": { + "id_car_serie": 4623, + "name": "2.5 TDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50416, + "fields": { + "id_car_serie": 4623, + "name": "2.7 TDI multitronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50417, + "fields": { + "id_car_serie": 4623, + "name": "2.7 TDI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50418, + "fields": { + "id_car_serie": 4623, + "name": "3.0 TDI tiptronic quattro (233 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50419, + "fields": { + "id_car_serie": 4623, + "name": "3.0 TDI MT quattro (204 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50423, + "fields": { + "id_car_serie": 4624, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50426, + "fields": { + "id_car_serie": 4624, + "name": "1.9 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50428, + "fields": { + "id_car_serie": 4624, + "name": "2.0 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50429, + "fields": { + "id_car_serie": 4624, + "name": "2.0 CVT (220 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50430, + "fields": { + "id_car_serie": 4624, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50432, + "fields": { + "id_car_serie": 4624, + "name": "2.0 TFSI MT quattro (220 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50437, + "fields": { + "id_car_serie": 4624, + "name": "2.5 CVT (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50438, + "fields": { + "id_car_serie": 4624, + "name": "2.5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50442, + "fields": { + "id_car_serie": 4624, + "name": "3.1 CVT (255 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50444, + "fields": { + "id_car_serie": 4625, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50445, + "fields": { + "id_car_serie": 4625, + "name": "1.8 T Tiptronic quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50446, + "fields": { + "id_car_serie": 4625, + "name": "1.8 T Tiptronic quattro (190 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50447, + "fields": { + "id_car_serie": 4625, + "name": "1.8 T multitronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50448, + "fields": { + "id_car_serie": 4625, + "name": "1.8 T multitronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50449, + "fields": { + "id_car_serie": 4625, + "name": "1.8 T MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50450, + "fields": { + "id_car_serie": 4625, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50451, + "fields": { + "id_car_serie": 4625, + "name": "1.8 T MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50452, + "fields": { + "id_car_serie": 4625, + "name": "1.8 T MT quattro (190 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50453, + "fields": { + "id_car_serie": 4625, + "name": "1.8 T MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50454, + "fields": { + "id_car_serie": 4625, + "name": "1.9 TDI multitronic (130 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50455, + "fields": { + "id_car_serie": 4625, + "name": "1.9 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50456, + "fields": { + "id_car_serie": 4625, + "name": "1.9 TDI MT quattro (130 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50457, + "fields": { + "id_car_serie": 4625, + "name": "1.9 TDI 6MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50458, + "fields": { + "id_car_serie": 4625, + "name": "2.0 multitronic (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50459, + "fields": { + "id_car_serie": 4625, + "name": "2.0 FSI multitronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50460, + "fields": { + "id_car_serie": 4625, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50461, + "fields": { + "id_car_serie": 4625, + "name": "2.0 FSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50462, + "fields": { + "id_car_serie": 4625, + "name": "2.4 multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50463, + "fields": { + "id_car_serie": 4625, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50464, + "fields": { + "id_car_serie": 4625, + "name": "2.5 TDI tiptronic quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50465, + "fields": { + "id_car_serie": 4625, + "name": "2.5 TDI multitronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50466, + "fields": { + "id_car_serie": 4625, + "name": "2.5 TDI MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50467, + "fields": { + "id_car_serie": 4625, + "name": "2.5 TDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50468, + "fields": { + "id_car_serie": 4625, + "name": "2.5 TDI MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50469, + "fields": { + "id_car_serie": 4625, + "name": "3.0 multitronic (220 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50470, + "fields": { + "id_car_serie": 4625, + "name": "3.0 tiptronic quattro (220 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50471, + "fields": { + "id_car_serie": 4625, + "name": "3.0 MT quattro (220 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50472, + "fields": { + "id_car_serie": 4625, + "name": "3.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50474, + "fields": { + "id_car_serie": 4626, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50475, + "fields": { + "id_car_serie": 4626, + "name": "1.8 T multitronic quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50476, + "fields": { + "id_car_serie": 4626, + "name": "1.8 T multitronic quattro (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50477, + "fields": { + "id_car_serie": 4626, + "name": "1.8 T Tiptronic quattro (190 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50478, + "fields": { + "id_car_serie": 4626, + "name": "1.8 T multitronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50479, + "fields": { + "id_car_serie": 4626, + "name": "1.8 T multitronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50480, + "fields": { + "id_car_serie": 4626, + "name": "1.8 T multitronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50481, + "fields": { + "id_car_serie": 4626, + "name": "1.8 T Tiptronic quattro (170 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50483, + "fields": { + "id_car_serie": 4626, + "name": "1.8 T MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50484, + "fields": { + "id_car_serie": 4626, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50485, + "fields": { + "id_car_serie": 4626, + "name": "1.8 T MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50486, + "fields": { + "id_car_serie": 4626, + "name": "1.8 T MT quattro (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50487, + "fields": { + "id_car_serie": 4626, + "name": "1.8 T MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50488, + "fields": { + "id_car_serie": 4626, + "name": "1.8 T MT quattro (170 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50489, + "fields": { + "id_car_serie": 4626, + "name": "1.8 T MT quattro (190 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50490, + "fields": { + "id_car_serie": 4626, + "name": "1.8 T MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50491, + "fields": { + "id_car_serie": 4626, + "name": "1.9 TDI Tiptronic quattro (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50492, + "fields": { + "id_car_serie": 4626, + "name": "1.9 TDI MT quattro (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50493, + "fields": { + "id_car_serie": 4626, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50494, + "fields": { + "id_car_serie": 4626, + "name": "1.9 TDI 6MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50495, + "fields": { + "id_car_serie": 4626, + "name": "1.9 TDI 5MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50496, + "fields": { + "id_car_serie": 4626, + "name": "2.0 multitronic (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50497, + "fields": { + "id_car_serie": 4626, + "name": "2.0 Tiptronic quattro (130 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50499, + "fields": { + "id_car_serie": 4626, + "name": "2.0 FSI multitronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50500, + "fields": { + "id_car_serie": 4626, + "name": "2.0 MT quattro (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50501, + "fields": { + "id_car_serie": 4626, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50502, + "fields": { + "id_car_serie": 4626, + "name": "2.0 FSI MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50503, + "fields": { + "id_car_serie": 4626, + "name": "2.0 FSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50504, + "fields": { + "id_car_serie": 4626, + "name": "2.4 multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50505, + "fields": { + "id_car_serie": 4626, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50506, + "fields": { + "id_car_serie": 4626, + "name": "2.5 TDI tiptronic quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50507, + "fields": { + "id_car_serie": 4626, + "name": "2.5 TDI multitronic (155 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50508, + "fields": { + "id_car_serie": 4626, + "name": "2.5 TDI multitronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50509, + "fields": { + "id_car_serie": 4626, + "name": "2.5 TDI MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50510, + "fields": { + "id_car_serie": 4626, + "name": "2.5 TDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50511, + "fields": { + "id_car_serie": 4626, + "name": "2.5 TDI MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50512, + "fields": { + "id_car_serie": 4626, + "name": "3.0 multitronic (220 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50513, + "fields": { + "id_car_serie": 4626, + "name": "3.0 tiptronic quattro (220 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50514, + "fields": { + "id_car_serie": 4626, + "name": "3.0 MT quattro (220 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50515, + "fields": { + "id_car_serie": 4626, + "name": "3.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50516, + "fields": { + "id_car_serie": 4627, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50521, + "fields": { + "id_car_serie": 4627, + "name": "1.8 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50522, + "fields": { + "id_car_serie": 4627, + "name": "1.8 AT (180 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50527, + "fields": { + "id_car_serie": 4627, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50528, + "fields": { + "id_car_serie": 4627, + "name": "1.8 MT (180 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50530, + "fields": { + "id_car_serie": 4627, + "name": "1.9d AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50531, + "fields": { + "id_car_serie": 4627, + "name": "1.9 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50532, + "fields": { + "id_car_serie": 4627, + "name": "1.9 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50535, + "fields": { + "id_car_serie": 4627, + "name": "1.9d MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50536, + "fields": { + "id_car_serie": 4627, + "name": "1.9d MT (116 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50537, + "fields": { + "id_car_serie": 4627, + "name": "1.9 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50538, + "fields": { + "id_car_serie": 4627, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50539, + "fields": { + "id_car_serie": 4627, + "name": "2.4 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50540, + "fields": { + "id_car_serie": 4627, + "name": "2.4 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50541, + "fields": { + "id_car_serie": 4627, + "name": "2.4 MT (165 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50542, + "fields": { + "id_car_serie": 4627, + "name": "2.5d AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50543, + "fields": { + "id_car_serie": 4627, + "name": "2.5d AT (150 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50544, + "fields": { + "id_car_serie": 4627, + "name": "2.5d MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50545, + "fields": { + "id_car_serie": 4627, + "name": "2.5d MT (150 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50557, + "fields": { + "id_car_serie": 4628, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50558, + "fields": { + "id_car_serie": 4628, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50559, + "fields": { + "id_car_serie": 4628, + "name": "1.8 AT quattro (125 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50560, + "fields": { + "id_car_serie": 4628, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50561, + "fields": { + "id_car_serie": 4628, + "name": "1.8 T AT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50562, + "fields": { + "id_car_serie": 4628, + "name": "1.8 T AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50565, + "fields": { + "id_car_serie": 4628, + "name": "1.8 MT quattro (125 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50566, + "fields": { + "id_car_serie": 4628, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50567, + "fields": { + "id_car_serie": 4628, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50568, + "fields": { + "id_car_serie": 4628, + "name": "1.8 T MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50573, + "fields": { + "id_car_serie": 4628, + "name": "1.9 D AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50596, + "fields": { + "id_car_serie": 4628, + "name": "2.8 MT (174 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50597, + "fields": { + "id_car_serie": 4628, + "name": "2.8 MT quattro (174 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50600, + "fields": { + "id_car_serie": 4629, + "name": "6.2 MT (442 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50606, + "fields": { + "id_car_serie": 4630, + "name": "4.9 AT (260 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50607, + "fields": { + "id_car_serie": 4632, + "name": "4.9 MT (340 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50608, + "fields": { + "id_car_serie": 4632, + "name": "4.9 MT (370 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50609, + "fields": { + "id_car_serie": 4633, + "name": "4.9 MT (228 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50610, + "fields": { + "id_car_serie": 4633, + "name": "4.9 MT (250 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50611, + "fields": { + "id_car_serie": 4633, + "name": "4.9 MT (326 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50612, + "fields": { + "id_car_serie": 4633, + "name": "4.9 MT Lightweight (340 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50613, + "fields": { + "id_car_serie": 4633, + "name": "4.9 MT (370 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50621, + "fields": { + "id_car_serie": 4636, + "name": "1.6 MT (127 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50625, + "fields": { + "id_car_serie": 4638, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50626, + "fields": { + "id_car_serie": 4638, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50627, + "fields": { + "id_car_serie": 4639, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50628, + "fields": { + "id_car_serie": 4639, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50633, + "fields": { + "id_car_serie": 4642, + "name": "2.7 AT (161 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50634, + "fields": { + "id_car_serie": 4642, + "name": "2.7 MT (161 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50635, + "fields": { + "id_car_serie": 4643, + "name": "2.5 AT (151 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50636, + "fields": { + "id_car_serie": 4643, + "name": "2.5 MT (151 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50637, + "fields": { + "id_car_serie": 4643, + "name": "2.7 AT (161 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50638, + "fields": { + "id_car_serie": 4643, + "name": "2.7 MT (161 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50639, + "fields": { + "id_car_serie": 4644, + "name": "3.7 AT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50644, + "fields": { + "id_car_serie": 4647, + "name": "2.3 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50647, + "fields": { + "id_car_serie": 4651, + "name": "3.2 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50651, + "fields": { + "id_car_serie": 4652, + "name": "3.2 AT (258 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50652, + "fields": { + "id_car_serie": 4652, + "name": "3.2 AT (270 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50654, + "fields": { + "id_car_serie": 4652, + "name": "3.2 MT (258 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50655, + "fields": { + "id_car_serie": 4652, + "name": "3.2 MT (270 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50657, + "fields": { + "id_car_serie": 4653, + "name": "3.2 AT (228 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50658, + "fields": { + "id_car_serie": 4654, + "name": "2.5 AT (176 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50659, + "fields": { + "id_car_serie": 4654, + "name": "3.2 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50661, + "fields": { + "id_car_serie": 4655, + "name": "2.4 MT (201 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50663, + "fields": { + "id_car_serie": 4659, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50680, + "fields": { + "id_car_serie": 4660, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50709, + "fields": { + "id_car_serie": 4660, + "name": "3.0 MT (233 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50710, + "fields": { + "id_car_serie": 4661, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50711, + "fields": { + "id_car_serie": 4661, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50817, + "fields": { + "id_car_serie": 4897, + "name": "2.4 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50819, + "fields": { + "id_car_serie": 4901, + "name": "3.8 AT (208 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50821, + "fields": { + "id_car_serie": 4902, + "name": "3.8 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50847, + "fields": { + "id_car_serie": 5375, + "name": "2.0 FlexiFuel MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50856, + "fields": { + "id_car_serie": 5377, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50873, + "fields": { + "id_car_serie": 5379, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50887, + "fields": { + "id_car_serie": 5381, + "name": "1.8 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50892, + "fields": { + "id_car_serie": 5384, + "name": "3.5 AT AWD (263 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50895, + "fields": { + "id_car_serie": 5387, + "name": "3.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50897, + "fields": { + "id_car_serie": 5388, + "name": "3.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50899, + "fields": { + "id_car_serie": 5391, + "name": "2.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50904, + "fields": { + "id_car_serie": 5395, + "name": "3.8 AT (142 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50906, + "fields": { + "id_car_serie": 5396, + "name": "2.3 Turbo Coupe MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50908, + "fields": { + "id_car_serie": 5404, + "name": "4.6 MT (326 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50912, + "fields": { + "id_car_serie": 5413, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50913, + "fields": { + "id_car_serie": 5413, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50933, + "fields": { + "id_car_serie": 5424, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50944, + "fields": { + "id_car_serie": 5432, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50959, + "fields": { + "id_car_serie": 5445, + "name": "1.3 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50962, + "fields": { + "id_car_serie": 5453, + "name": "4.3 MT (385 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50964, + "fields": { + "id_car_serie": 5455, + "name": "5.3 MT (557 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50965, + "fields": { + "id_car_serie": 5456, + "name": "5.3 MT (340 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50970, + "fields": { + "id_car_serie": 5459, + "name": "6.3 AT (507 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50974, + "fields": { + "id_car_serie": 5465, + "name": "1.6 AT (70 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 50975, + "fields": { + "id_car_serie": 5465, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51014, + "fields": { + "id_car_serie": 5469, + "name": "1.2 TDI AMT (61 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51068, + "fields": { + "id_car_serie": 5479, + "name": "2.0 TFSI multitronic (211 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51074, + "fields": { + "id_car_serie": 5481, + "name": "2.7 T tiptronic quattro (250 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51109, + "fields": { + "id_car_serie": 5486, + "name": "1.8 multitronic (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51115, + "fields": { + "id_car_serie": 5487, + "name": "1.8 T tiptronic (180 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51151, + "fields": { + "id_car_serie": 5496, + "name": "2.0 TFSI tiptronic quattro (211 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51161, + "fields": { + "id_car_serie": 5517, + "name": "5.2 FSI V10 quattro AT (435 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51457, + "fields": { + "id_car_serie": 5613, + "name": "2.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51465, + "fields": { + "id_car_serie": 5642, + "name": "3.6 V6 VVT DI AWD (304 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51467, + "fields": { + "id_car_serie": 5644, + "name": "2.8 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51476, + "fields": { + "id_car_serie": 5656, + "name": "4.6 AT Northstar (299 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51479, + "fields": { + "id_car_serie": 5658, + "name": "5.7 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51485, + "fields": { + "id_car_serie": 5685, + "name": "1.6 MT (119 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 51491, + "fields": { + "id_car_serie": 5692, + "name": "1.2 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51501, + "fields": { + "id_car_serie": 5700, + "name": "3.6 V6 MT (312 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51503, + "fields": { + "id_car_serie": 5701, + "name": "3.6 V6 AT (312 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51509, + "fields": { + "id_car_serie": 5703, + "name": "3.4 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51514, + "fields": { + "id_car_serie": 5704, + "name": "2.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51521, + "fields": { + "id_car_serie": 5707, + "name": "4.3 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51527, + "fields": { + "id_car_serie": 5721, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51528, + "fields": { + "id_car_serie": 5721, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51529, + "fields": { + "id_car_serie": 5721, + "name": "1.8 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51530, + "fields": { + "id_car_serie": 5722, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51533, + "fields": { + "id_car_serie": 5728, + "name": "3.4 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51534, + "fields": { + "id_car_serie": 5729, + "name": "5.7 AT (260 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51544, + "fields": { + "id_car_serie": 5744, + "name": "1.7 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51545, + "fields": { + "id_car_serie": 5756, + "name": "5.3 AT AWD (320 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51548, + "fields": { + "id_car_serie": 5757, + "name": "5.3 AT (285 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51550, + "fields": { + "id_car_serie": 5758, + "name": "5.7 AT (258 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51551, + "fields": { + "id_car_serie": 5759, + "name": "5.7 AT (258 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51562, + "fields": { + "id_car_serie": 5762, + "name": "2.0 MT AWD (126 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51564, + "fields": { + "id_car_serie": 5763, + "name": "4.2 AT 4WD (275 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51565, + "fields": { + "id_car_serie": 5763, + "name": "4.2 AT 4WD (291 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51567, + "fields": { + "id_car_serie": 5763, + "name": "5.3 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51570, + "fields": { + "id_car_serie": 5769, + "name": "3.5 AT (217 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51571, + "fields": { + "id_car_serie": 5774, + "name": "3.3 AT (153 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51572, + "fields": { + "id_car_serie": 5783, + "name": "2.7 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51573, + "fields": { + "id_car_serie": 5784, + "name": "2.4 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51574, + "fields": { + "id_car_serie": 5784, + "name": "3.0 MT (203 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51575, + "fields": { + "id_car_serie": 5787, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51576, + "fields": { + "id_car_serie": 5787, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51586, + "fields": { + "id_car_serie": 5798, + "name": "1.6d MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51589, + "fields": { + "id_car_serie": 5802, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51594, + "fields": { + "id_car_serie": 5803, + "name": "1.6i MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51595, + "fields": { + "id_car_serie": 5804, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51596, + "fields": { + "id_car_serie": 5804, + "name": "1.6 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51601, + "fields": { + "id_car_serie": 5809, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51604, + "fields": { + "id_car_serie": 5809, + "name": "1.6i MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51609, + "fields": { + "id_car_serie": 5810, + "name": "2.0 HDi AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51611, + "fields": { + "id_car_serie": 5811, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51612, + "fields": { + "id_car_serie": 5811, + "name": "1.6 THP AMT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51613, + "fields": { + "id_car_serie": 5811, + "name": "1.6 HDi AMT (109 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51614, + "fields": { + "id_car_serie": 5811, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51615, + "fields": { + "id_car_serie": 5811, + "name": "2.0 HDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51616, + "fields": { + "id_car_serie": 5814, + "name": "2.0 HDI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51617, + "fields": { + "id_car_serie": 5814, + "name": "2.2 HDi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51619, + "fields": { + "id_car_serie": 5815, + "name": "2.4 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51620, + "fields": { + "id_car_serie": 5815, + "name": "2.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51621, + "fields": { + "id_car_serie": 5816, + "name": "2.2 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51623, + "fields": { + "id_car_serie": 5816, + "name": "2.4 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51624, + "fields": { + "id_car_serie": 5833, + "name": "1.5 D MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51625, + "fields": { + "id_car_serie": 5833, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51626, + "fields": { + "id_car_serie": 5834, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51627, + "fields": { + "id_car_serie": 5835, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51628, + "fields": { + "id_car_serie": 5837, + "name": "1.5 dCi MT (88 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51629, + "fields": { + "id_car_serie": 5839, + "name": "2.8 TD MT (88 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51630, + "fields": { + "id_car_serie": 5842, + "name": "3.2 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51631, + "fields": { + "id_car_serie": 5844, + "name": "0.8 MT (38 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51634, + "fields": { + "id_car_serie": 5845, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51636, + "fields": { + "id_car_serie": 5856, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51637, + "fields": { + "id_car_serie": 5856, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51638, + "fields": { + "id_car_serie": 5856, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51639, + "fields": { + "id_car_serie": 5856, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51640, + "fields": { + "id_car_serie": 5857, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51641, + "fields": { + "id_car_serie": 5857, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51642, + "fields": { + "id_car_serie": 5858, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51643, + "fields": { + "id_car_serie": 5858, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51644, + "fields": { + "id_car_serie": 5858, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51645, + "fields": { + "id_car_serie": 5859, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51646, + "fields": { + "id_car_serie": 5860, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51647, + "fields": { + "id_car_serie": 5861, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51648, + "fields": { + "id_car_serie": 5861, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51649, + "fields": { + "id_car_serie": 5870, + "name": "2.4 AT (159 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51651, + "fields": { + "id_car_serie": 5878, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51652, + "fields": { + "id_car_serie": 5878, + "name": "1.6 AT (78 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51653, + "fields": { + "id_car_serie": 5878, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51654, + "fields": { + "id_car_serie": 5878, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51661, + "fields": { + "id_car_serie": 5898, + "name": "0.7 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51662, + "fields": { + "id_car_serie": 5898, + "name": "1.0 AT (56 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51663, + "fields": { + "id_car_serie": 5898, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51664, + "fields": { + "id_car_serie": 5898, + "name": "1.3 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51665, + "fields": { + "id_car_serie": 5898, + "name": "1.3 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51666, + "fields": { + "id_car_serie": 5902, + "name": "0.7 AT AWD (58 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 51670, + "fields": { + "id_car_serie": 5906, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 51672, + "fields": { + "id_car_serie": 5907, + "name": "1.3 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51678, + "fields": { + "id_car_serie": 5908, + "name": "4.2 AT (164 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51679, + "fields": { + "id_car_serie": 5909, + "name": "4.2 AT (167 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51680, + "fields": { + "id_car_serie": 5909, + "name": "4.2 AT (169 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51681, + "fields": { + "id_car_serie": 5909, + "name": "4.2 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51682, + "fields": { + "id_car_serie": 5909, + "name": "4.2 MT (169 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51683, + "fields": { + "id_car_serie": 5909, + "name": "5.3 AT (253 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51684, + "fields": { + "id_car_serie": 5909, + "name": "5.3 AT (264 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51685, + "fields": { + "id_car_serie": 5909, + "name": "5.3 MT (268 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51686, + "fields": { + "id_car_serie": 5909, + "name": "5.3 MT (295 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51687, + "fields": { + "id_car_serie": 5910, + "name": "4.0 AT (326 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51688, + "fields": { + "id_car_serie": 5910, + "name": "6.0 AT (318 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51689, + "fields": { + "id_car_serie": 5911, + "name": "4.0 AT (363 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51690, + "fields": { + "id_car_serie": 5919, + "name": "1.0 MT (62 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51691, + "fields": { + "id_car_serie": 5920, + "name": "1.2 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 51692, + "fields": { + "id_car_serie": 5936, + "name": "2.2 AT (146 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51693, + "fields": { + "id_car_serie": 5936, + "name": "2.2 MT (146 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51694, + "fields": { + "id_car_serie": 5936, + "name": "2.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51695, + "fields": { + "id_car_serie": 5936, + "name": "2.6 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51698, + "fields": { + "id_car_serie": 5938, + "name": "2.4 MT (174 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51700, + "fields": { + "id_car_serie": 5939, + "name": "3.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51701, + "fields": { + "id_car_serie": 5939, + "name": "3.8 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51704, + "fields": { + "id_car_serie": 5940, + "name": "3.0 AT (144 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51706, + "fields": { + "id_car_serie": 5940, + "name": "3.3 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51712, + "fields": { + "id_car_serie": 5942, + "name": "2.6 TorqueFlite (114 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51716, + "fields": { + "id_car_serie": 5945, + "name": "3.7 MT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51718, + "fields": { + "id_car_serie": 5945, + "name": "4.7 MT AWD (260 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51723, + "fields": { + "id_car_serie": 5947, + "name": "3.7 MT AWD (214 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51726, + "fields": { + "id_car_serie": 5947, + "name": "4.7 MT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51737, + "fields": { + "id_car_serie": 5948, + "name": "3.9 MT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51748, + "fields": { + "id_car_serie": 5956, + "name": "3.3 AT (153 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51750, + "fields": { + "id_car_serie": 5960, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51752, + "fields": { + "id_car_serie": 5961, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51753, + "fields": { + "id_car_serie": 5964, + "name": "8.3 MT (510 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51786, + "fields": { + "id_car_serie": 5968, + "name": "3.7 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51787, + "fields": { + "id_car_serie": 5968, + "name": "5.2 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51788, + "fields": { + "id_car_serie": 5968, + "name": "5.2 AT (235 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51789, + "fields": { + "id_car_serie": 5968, + "name": "5.6 AT (230 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51790, + "fields": { + "id_car_serie": 5968, + "name": "5.7 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51791, + "fields": { + "id_car_serie": 5968, + "name": "5.9 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51792, + "fields": { + "id_car_serie": 5968, + "name": "5.9 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51793, + "fields": { + "id_car_serie": 5968, + "name": "5.9 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51794, + "fields": { + "id_car_serie": 5969, + "name": "3.7 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51795, + "fields": { + "id_car_serie": 5969, + "name": "5.2 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51796, + "fields": { + "id_car_serie": 5969, + "name": "5.2 MT (235 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51797, + "fields": { + "id_car_serie": 5969, + "name": "5.6 MT (230 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51798, + "fields": { + "id_car_serie": 5969, + "name": "5.9 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51799, + "fields": { + "id_car_serie": 5969, + "name": "5.9 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51800, + "fields": { + "id_car_serie": 5969, + "name": "5.9 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51801, + "fields": { + "id_car_serie": 5970, + "name": "5.2 AT (172 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51802, + "fields": { + "id_car_serie": 5970, + "name": "5.9 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51803, + "fields": { + "id_car_serie": 5971, + "name": "5.2 AT (172 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51806, + "fields": { + "id_car_serie": 5976, + "name": "8.4 MT (600 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51807, + "fields": { + "id_car_serie": 5977, + "name": "8.4 MT (600 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51808, + "fields": { + "id_car_serie": 5978, + "name": "8.3 MT (517 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51809, + "fields": { + "id_car_serie": 5981, + "name": "8.0 MT (420 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51810, + "fields": { + "id_car_serie": 5983, + "name": "1.6 AT (117 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 51812, + "fields": { + "id_car_serie": 5983, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 51813, + "fields": { + "id_car_serie": 5984, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51815, + "fields": { + "id_car_serie": 5985, + "name": "2.5 TD MT 4x4 (130 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51816, + "fields": { + "id_car_serie": 5986, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51817, + "fields": { + "id_car_serie": 5987, + "name": "1.8 MT (270 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51820, + "fields": { + "id_car_serie": 5993, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51825, + "fields": { + "id_car_serie": 6012, + "name": "4.9 MT (428 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51827, + "fields": { + "id_car_serie": 6030, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51828, + "fields": { + "id_car_serie": 6030, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51829, + "fields": { + "id_car_serie": 6030, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51830, + "fields": { + "id_car_serie": 6030, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51831, + "fields": { + "id_car_serie": 6033, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51832, + "fields": { + "id_car_serie": 6033, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51833, + "fields": { + "id_car_serie": 6033, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51835, + "fields": { + "id_car_serie": 6033, + "name": "1.9 JTD MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51836, + "fields": { + "id_car_serie": 6033, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51837, + "fields": { + "id_car_serie": 6034, + "name": "0.7 MT (31 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51841, + "fields": { + "id_car_serie": 6035, + "name": "2.0 MT Turbo (190 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51842, + "fields": { + "id_car_serie": 6036, + "name": "1.6 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51848, + "fields": { + "id_car_serie": 6038, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51849, + "fields": { + "id_car_serie": 6038, + "name": "1.9 JTD MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51850, + "fields": { + "id_car_serie": 6041, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 51851, + "fields": { + "id_car_serie": 6041, + "name": "1.2 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 51857, + "fields": { + "id_car_serie": 6043, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51865, + "fields": { + "id_car_serie": 6046, + "name": "0.8 MT (34 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51866, + "fields": { + "id_car_serie": 6046, + "name": "0.9 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51898, + "fields": { + "id_car_serie": 6053, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51899, + "fields": { + "id_car_serie": 6053, + "name": "1.9 TD MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51901, + "fields": { + "id_car_serie": 6054, + "name": "1.9 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51902, + "fields": { + "id_car_serie": 6055, + "name": "1.2 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51903, + "fields": { + "id_car_serie": 6055, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51904, + "fields": { + "id_car_serie": 6056, + "name": "1.1 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51905, + "fields": { + "id_car_serie": 6056, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51906, + "fields": { + "id_car_serie": 6056, + "name": "1.2 MT (59 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51907, + "fields": { + "id_car_serie": 6056, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51916, + "fields": { + "id_car_serie": 6074, + "name": "5.8 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51917, + "fields": { + "id_car_serie": 6077, + "name": "1.6 TDCi DPF MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51918, + "fields": { + "id_car_serie": 6077, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51919, + "fields": { + "id_car_serie": 6077, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51920, + "fields": { + "id_car_serie": 6077, + "name": "2.0 TDCi DPF MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51921, + "fields": { + "id_car_serie": 6078, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51922, + "fields": { + "id_car_serie": 6078, + "name": "1.6 TDCi CVT (109 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51923, + "fields": { + "id_car_serie": 6078, + "name": "1.6 TDCi DPF MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51924, + "fields": { + "id_car_serie": 6078, + "name": "1.8 TDCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51925, + "fields": { + "id_car_serie": 6078, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51926, + "fields": { + "id_car_serie": 6078, + "name": "2.0 TDCi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51927, + "fields": { + "id_car_serie": 6082, + "name": "4.6 AT (193 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51935, + "fields": { + "id_car_serie": 6087, + "name": "2.0 MT 4WD (127 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51939, + "fields": { + "id_car_serie": 6087, + "name": "3.0 AT 4WD (201 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51940, + "fields": { + "id_car_serie": 6088, + "name": "1.8 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51941, + "fields": { + "id_car_serie": 6088, + "name": "1.9 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51942, + "fields": { + "id_car_serie": 6089, + "name": "1.8 AT (128 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51943, + "fields": { + "id_car_serie": 6089, + "name": "1.9 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51944, + "fields": { + "id_car_serie": 6089, + "name": "1.9 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51945, + "fields": { + "id_car_serie": 6090, + "name": "1.8 AT (128 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51946, + "fields": { + "id_car_serie": 6090, + "name": "1.9 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51947, + "fields": { + "id_car_serie": 6091, + "name": "1.9 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51948, + "fields": { + "id_car_serie": 6091, + "name": "1.9 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51949, + "fields": { + "id_car_serie": 6092, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51950, + "fields": { + "id_car_serie": 6092, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51951, + "fields": { + "id_car_serie": 6093, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51952, + "fields": { + "id_car_serie": 6093, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51953, + "fields": { + "id_car_serie": 6094, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51954, + "fields": { + "id_car_serie": 6094, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51955, + "fields": { + "id_car_serie": 6094, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51956, + "fields": { + "id_car_serie": 6094, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51957, + "fields": { + "id_car_serie": 6094, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51958, + "fields": { + "id_car_serie": 6094, + "name": "1.8 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51962, + "fields": { + "id_car_serie": 6095, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51963, + "fields": { + "id_car_serie": 6095, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51964, + "fields": { + "id_car_serie": 6096, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51968, + "fields": { + "id_car_serie": 6096, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51971, + "fields": { + "id_car_serie": 6098, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51972, + "fields": { + "id_car_serie": 6098, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51973, + "fields": { + "id_car_serie": 6098, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51974, + "fields": { + "id_car_serie": 6099, + "name": "1.3 4MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51975, + "fields": { + "id_car_serie": 6099, + "name": "1.6i MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51976, + "fields": { + "id_car_serie": 6099, + "name": "1.4i MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51977, + "fields": { + "id_car_serie": 6100, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51978, + "fields": { + "id_car_serie": 6100, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51981, + "fields": { + "id_car_serie": 6101, + "name": "1.1 4MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51982, + "fields": { + "id_car_serie": 6102, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51983, + "fields": { + "id_car_serie": 6102, + "name": "1.6 cat. MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51984, + "fields": { + "id_car_serie": 6102, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51986, + "fields": { + "id_car_serie": 6103, + "name": "1.3 5MT (63 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51987, + "fields": { + "id_car_serie": 6103, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51988, + "fields": { + "id_car_serie": 6103, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51989, + "fields": { + "id_car_serie": 6103, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51990, + "fields": { + "id_car_serie": 6103, + "name": "1.8 MT (96 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51994, + "fields": { + "id_car_serie": 6104, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51997, + "fields": { + "id_car_serie": 6105, + "name": "1.3 AT (69 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51998, + "fields": { + "id_car_serie": 6105, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 51999, + "fields": { + "id_car_serie": 6105, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52000, + "fields": { + "id_car_serie": 6106, + "name": "1.1 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52001, + "fields": { + "id_car_serie": 6106, + "name": "1.3 4MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52003, + "fields": { + "id_car_serie": 6106, + "name": "1.6 Alc. 5MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52005, + "fields": { + "id_car_serie": 6107, + "name": "1.6 MT XR3i (105 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52009, + "fields": { + "id_car_serie": 6109, + "name": "1.3 5MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52011, + "fields": { + "id_car_serie": 6110, + "name": "1.1 MT (48 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52012, + "fields": { + "id_car_serie": 6110, + "name": "1.3 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52013, + "fields": { + "id_car_serie": 6110, + "name": "1.3 S MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52016, + "fields": { + "id_car_serie": 6112, + "name": "1.1 MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52017, + "fields": { + "id_car_serie": 6115, + "name": "4.6 AT AWD (232 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52018, + "fields": { + "id_car_serie": 6115, + "name": "5.4 AT AWD (260 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52019, + "fields": { + "id_car_serie": 6115, + "name": "5.4 AT (300 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52024, + "fields": { + "id_car_serie": 6117, + "name": "4.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52025, + "fields": { + "id_car_serie": 6117, + "name": "4.0 AT 4x4 (210 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52028, + "fields": { + "id_car_serie": 6117, + "name": "4.6 AT (292 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52029, + "fields": { + "id_car_serie": 6117, + "name": "4.6 AT 4x4 (292 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52035, + "fields": { + "id_car_serie": 6118, + "name": "4.6 AT 4x4 (239 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52038, + "fields": { + "id_car_serie": 6119, + "name": "4.0 5AT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52039, + "fields": { + "id_car_serie": 6119, + "name": "4.0 AT 4x4 (205 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52040, + "fields": { + "id_car_serie": 6119, + "name": "4.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52042, + "fields": { + "id_car_serie": 49679, + "name": "8.1 6MT 4WD 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52048, + "fields": { + "id_car_serie": 6121, + "name": "4.0 MT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52049, + "fields": { + "id_car_serie": 6121, + "name": "4.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52050, + "fields": { + "id_car_serie": 6122, + "name": "4.0 4AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52051, + "fields": { + "id_car_serie": 6122, + "name": "4.0 4AT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52078, + "fields": { + "id_car_serie": 6134, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52080, + "fields": { + "id_car_serie": 6135, + "name": "1.4 AT (96 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52081, + "fields": { + "id_car_serie": 6135, + "name": "1.4 MT (96 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52082, + "fields": { + "id_car_serie": 6135, + "name": "1.6 Ti-VCT MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52085, + "fields": { + "id_car_serie": 6136, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52089, + "fields": { + "id_car_serie": 6136, + "name": "1.6 TDCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52092, + "fields": { + "id_car_serie": 6138, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52095, + "fields": { + "id_car_serie": 6139, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52098, + "fields": { + "id_car_serie": 6140, + "name": "1.3 MT (59 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52100, + "fields": { + "id_car_serie": 6140, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52104, + "fields": { + "id_car_serie": 6141, + "name": "1.1 4MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52105, + "fields": { + "id_car_serie": 6141, + "name": "1.3 MT (59 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52106, + "fields": { + "id_car_serie": 6141, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52108, + "fields": { + "id_car_serie": 6141, + "name": "1.6 RS Turbo MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52110, + "fields": { + "id_car_serie": 6141, + "name": "1.8 RS1800 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52111, + "fields": { + "id_car_serie": 6142, + "name": "1.1 4MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52112, + "fields": { + "id_car_serie": 6142, + "name": "1.3 S MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52113, + "fields": { + "id_car_serie": 6142, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52114, + "fields": { + "id_car_serie": 6142, + "name": "1.4 S MT (74 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52116, + "fields": { + "id_car_serie": 6143, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52117, + "fields": { + "id_car_serie": 6143, + "name": "1.1 S MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52118, + "fields": { + "id_car_serie": 6143, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52119, + "fields": { + "id_car_serie": 6145, + "name": "3.5 AT FWD (265 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52121, + "fields": { + "id_car_serie": 6146, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52122, + "fields": { + "id_car_serie": 6146, + "name": "1.6 TDCi MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52123, + "fields": { + "id_car_serie": 6146, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52124, + "fields": { + "id_car_serie": 6146, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52125, + "fields": { + "id_car_serie": 6146, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52126, + "fields": { + "id_car_serie": 6146, + "name": "2.0 TDCi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52127, + "fields": { + "id_car_serie": 6147, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52128, + "fields": { + "id_car_serie": 6147, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52129, + "fields": { + "id_car_serie": 6147, + "name": "1.6 TDCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52130, + "fields": { + "id_car_serie": 6147, + "name": "1.8 TDCi MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52131, + "fields": { + "id_car_serie": 6147, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52132, + "fields": { + "id_car_serie": 6149, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52133, + "fields": { + "id_car_serie": 6149, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52134, + "fields": { + "id_car_serie": 6149, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52135, + "fields": { + "id_car_serie": 6149, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52136, + "fields": { + "id_car_serie": 6149, + "name": "1.6 TDCi MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52137, + "fields": { + "id_car_serie": 6149, + "name": "1.6 TDCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52138, + "fields": { + "id_car_serie": 6149, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52139, + "fields": { + "id_car_serie": 6149, + "name": "1.8 TDCi MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52140, + "fields": { + "id_car_serie": 6149, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52141, + "fields": { + "id_car_serie": 6149, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52142, + "fields": { + "id_car_serie": 6149, + "name": "2.0 TDCi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52155, + "fields": { + "id_car_serie": 6156, + "name": "2.3i MT (153 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52159, + "fields": { + "id_car_serie": 6157, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52160, + "fields": { + "id_car_serie": 6157, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52161, + "fields": { + "id_car_serie": 6157, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52162, + "fields": { + "id_car_serie": 6157, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52163, + "fields": { + "id_car_serie": 6157, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52164, + "fields": { + "id_car_serie": 6157, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52177, + "fields": { + "id_car_serie": 6157, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52178, + "fields": { + "id_car_serie": 6157, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52179, + "fields": { + "id_car_serie": 6157, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52180, + "fields": { + "id_car_serie": 6157, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52181, + "fields": { + "id_car_serie": 6157, + "name": "1.8 TDCi MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52182, + "fields": { + "id_car_serie": 6157, + "name": "2.0 TDCi AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52183, + "fields": { + "id_car_serie": 6157, + "name": "2.0 TDCi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52185, + "fields": { + "id_car_serie": 6161, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52186, + "fields": { + "id_car_serie": 6161, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52187, + "fields": { + "id_car_serie": 6161, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52188, + "fields": { + "id_car_serie": 6161, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52189, + "fields": { + "id_car_serie": 6161, + "name": "1.6 TDCi MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52190, + "fields": { + "id_car_serie": 6161, + "name": "1.6 TDCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52191, + "fields": { + "id_car_serie": 6161, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52192, + "fields": { + "id_car_serie": 6161, + "name": "1.8 TDCi MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52193, + "fields": { + "id_car_serie": 6161, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52194, + "fields": { + "id_car_serie": 6161, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52195, + "fields": { + "id_car_serie": 6161, + "name": "2.0 TDCi AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52196, + "fields": { + "id_car_serie": 6161, + "name": "2.0 TDCi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52197, + "fields": { + "id_car_serie": 6162, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52198, + "fields": { + "id_car_serie": 6162, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52200, + "fields": { + "id_car_serie": 6162, + "name": "1.8 TDDi AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52201, + "fields": { + "id_car_serie": 6162, + "name": "1.8 TDDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52202, + "fields": { + "id_car_serie": 6162, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52203, + "fields": { + "id_car_serie": 6154, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52204, + "fields": { + "id_car_serie": 6154, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52205, + "fields": { + "id_car_serie": 6154, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52207, + "fields": { + "id_car_serie": 6154, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52210, + "fields": { + "id_car_serie": 6154, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52211, + "fields": { + "id_car_serie": 6154, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52212, + "fields": { + "id_car_serie": 6154, + "name": "1.8 TDDi AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52213, + "fields": { + "id_car_serie": 6154, + "name": "1.8 TDDi AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52214, + "fields": { + "id_car_serie": 6154, + "name": "1.8 TDCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52215, + "fields": { + "id_car_serie": 6154, + "name": "1.8 TDDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52216, + "fields": { + "id_car_serie": 6154, + "name": "1.8 TDDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52217, + "fields": { + "id_car_serie": 6154, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52218, + "fields": { + "id_car_serie": 6154, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52219, + "fields": { + "id_car_serie": 6155, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52221, + "fields": { + "id_car_serie": 6155, + "name": "1.8 TDCi AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52222, + "fields": { + "id_car_serie": 6155, + "name": "1.8 TDDi AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52223, + "fields": { + "id_car_serie": 6155, + "name": "1.8 TDDi AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52224, + "fields": { + "id_car_serie": 6155, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52240, + "fields": { + "id_car_serie": 6165, + "name": "2.0 MT (173 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52250, + "fields": { + "id_car_serie": 6170, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52251, + "fields": { + "id_car_serie": 6170, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52252, + "fields": { + "id_car_serie": 6170, + "name": "1.8 TDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52253, + "fields": { + "id_car_serie": 6171, + "name": "1.4 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52254, + "fields": { + "id_car_serie": 6171, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52255, + "fields": { + "id_car_serie": 6171, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52256, + "fields": { + "id_car_serie": 6171, + "name": "1.8 TDCi MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52257, + "fields": { + "id_car_serie": 6171, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52258, + "fields": { + "id_car_serie": 6171, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52260, + "fields": { + "id_car_serie": 6172, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52261, + "fields": { + "id_car_serie": 6172, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52262, + "fields": { + "id_car_serie": 6172, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52263, + "fields": { + "id_car_serie": 6172, + "name": "1.8 AT TDDi (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52264, + "fields": { + "id_car_serie": 6172, + "name": "1.8 MT TDCi (101 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52265, + "fields": { + "id_car_serie": 6172, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52266, + "fields": { + "id_car_serie": 6173, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52267, + "fields": { + "id_car_serie": 6173, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52268, + "fields": { + "id_car_serie": 6173, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52269, + "fields": { + "id_car_serie": 6173, + "name": "1.8 AT TDDi (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52270, + "fields": { + "id_car_serie": 6173, + "name": "1.8 MT TDCi (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52271, + "fields": { + "id_car_serie": 6176, + "name": "2.3 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52272, + "fields": { + "id_car_serie": 6176, + "name": "3.0 AT (212 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52273, + "fields": { + "id_car_serie": 6178, + "name": "1.8 TDCi MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52274, + "fields": { + "id_car_serie": 6178, + "name": "1.8 TDCi 5MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52275, + "fields": { + "id_car_serie": 6178, + "name": "2.0 TDCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52278, + "fields": { + "id_car_serie": 6179, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52279, + "fields": { + "id_car_serie": 6179, + "name": "2.8 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52280, + "fields": { + "id_car_serie": 6180, + "name": "1.9 TDi AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52281, + "fields": { + "id_car_serie": 6180, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52282, + "fields": { + "id_car_serie": 6180, + "name": "2.8 AT 4x4 (174 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52286, + "fields": { + "id_car_serie": 6184, + "name": "2.5 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52287, + "fields": { + "id_car_serie": 6184, + "name": "3.0 MT (138 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52293, + "fields": { + "id_car_serie": 6189, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52295, + "fields": { + "id_car_serie": 6189, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52296, + "fields": { + "id_car_serie": 6189, + "name": "2.0 TDCi DPF AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52297, + "fields": { + "id_car_serie": 6189, + "name": "2.0 TDCi DPF MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52300, + "fields": { + "id_car_serie": 6190, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52301, + "fields": { + "id_car_serie": 6190, + "name": "2.5T MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52302, + "fields": { + "id_car_serie": 6191, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52304, + "fields": { + "id_car_serie": 6191, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52305, + "fields": { + "id_car_serie": 6191, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52307, + "fields": { + "id_car_serie": 6191, + "name": "2.5 5MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52315, + "fields": { + "id_car_serie": 6193, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52323, + "fields": { + "id_car_serie": 6195, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52324, + "fields": { + "id_car_serie": 6195, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52325, + "fields": { + "id_car_serie": 6195, + "name": "1.8 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52326, + "fields": { + "id_car_serie": 6195, + "name": "2.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52327, + "fields": { + "id_car_serie": 6195, + "name": "2.5 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52328, + "fields": { + "id_car_serie": 6196, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52329, + "fields": { + "id_car_serie": 6196, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52330, + "fields": { + "id_car_serie": 6196, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52331, + "fields": { + "id_car_serie": 6196, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52332, + "fields": { + "id_car_serie": 6196, + "name": "2.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52336, + "fields": { + "id_car_serie": 6197, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52337, + "fields": { + "id_car_serie": 6197, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52338, + "fields": { + "id_car_serie": 6197, + "name": "2.5 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52343, + "fields": { + "id_car_serie": 6199, + "name": "1.8 TD MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52344, + "fields": { + "id_car_serie": 6199, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52345, + "fields": { + "id_car_serie": 6199, + "name": "2.0 4x4 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52346, + "fields": { + "id_car_serie": 6200, + "name": "2.3 AT (309 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 52347, + "fields": { + "id_car_serie": 6200, + "name": "2.3 MT (309 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 52348, + "fields": { + "id_car_serie": 6200, + "name": "3.7 MT (305 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 52349, + "fields": { + "id_car_serie": 6200, + "name": "5.0 AT (426 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 52350, + "fields": { + "id_car_serie": 6200, + "name": "5.0 MT (426 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 52352, + "fields": { + "id_car_serie": 6201, + "name": "4.0 MT (213 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52353, + "fields": { + "id_car_serie": 6201, + "name": "GT 4.6 AT (304 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52355, + "fields": { + "id_car_serie": 6202, + "name": "3.7 MT (309 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52357, + "fields": { + "id_car_serie": 6202, + "name": "4.0 MT (213 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52359, + "fields": { + "id_car_serie": 6202, + "name": "GT 4.6 MT (304 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52360, + "fields": { + "id_car_serie": 6202, + "name": "GT 5.0 MT (418 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52361, + "fields": { + "id_car_serie": 6202, + "name": "Boss 302 5.0 MT (450 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52381, + "fields": { + "id_car_serie": 6210, + "name": "4.0 AT 4x4 (210 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52390, + "fields": { + "id_car_serie": 6230, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52391, + "fields": { + "id_car_serie": 6236, + "name": "4.3 AT (192 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52418, + "fields": { + "id_car_serie": 6251, + "name": "XL 2500 6.0 AT (323 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52424, + "fields": { + "id_car_serie": 6256, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 52428, + "fields": { + "id_car_serie": 6261, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 52434, + "fields": { + "id_car_serie": 6273, + "name": "1.3 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 52435, + "fields": { + "id_car_serie": 6274, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 52436, + "fields": { + "id_car_serie": 6282, + "name": "5.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52437, + "fields": { + "id_car_serie": 6283, + "name": "5.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52451, + "fields": { + "id_car_serie": 6297, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52453, + "fields": { + "id_car_serie": 6297, + "name": "Type S 2.4 MT (201 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52456, + "fields": { + "id_car_serie": 6298, + "name": "2.2 i-DTEC MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52458, + "fields": { + "id_car_serie": 6298, + "name": "Type S 2.4 AT (201 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52460, + "fields": { + "id_car_serie": 6298, + "name": "Type S 2.4 MT (201 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52466, + "fields": { + "id_car_serie": 6300, + "name": "2.2 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52469, + "fields": { + "id_car_serie": 6300, + "name": "Type S 2.4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52473, + "fields": { + "id_car_serie": 6302, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52498, + "fields": { + "id_car_serie": 6311, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52505, + "fields": { + "id_car_serie": 6314, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52510, + "fields": { + "id_car_serie": 6316, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52511, + "fields": { + "id_car_serie": 6316, + "name": "1.8 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52512, + "fields": { + "id_car_serie": 6317, + "name": "1.6 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52513, + "fields": { + "id_car_serie": 6318, + "name": "1.6 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52514, + "fields": { + "id_car_serie": 6325, + "name": "1.3 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52515, + "fields": { + "id_car_serie": 6325, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52516, + "fields": { + "id_car_serie": 6325, + "name": "1.5 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52517, + "fields": { + "id_car_serie": 6325, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52522, + "fields": { + "id_car_serie": 6326, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52523, + "fields": { + "id_car_serie": 6326, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52524, + "fields": { + "id_car_serie": 6326, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52525, + "fields": { + "id_car_serie": 6326, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52526, + "fields": { + "id_car_serie": 6326, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52530, + "fields": { + "id_car_serie": 6330, + "name": "1.8 AT (142 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 52531, + "fields": { + "id_car_serie": 6330, + "name": "1.8 MT (142 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 52547, + "fields": { + "id_car_serie": 6338, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52553, + "fields": { + "id_car_serie": 6340, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52554, + "fields": { + "id_car_serie": 6340, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52570, + "fields": { + "id_car_serie": 6339, + "name": "1.5 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52581, + "fields": { + "id_car_serie": 6348, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52584, + "fields": { + "id_car_serie": 6349, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52585, + "fields": { + "id_car_serie": 6349, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52586, + "fields": { + "id_car_serie": 6349, + "name": "1.5 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52588, + "fields": { + "id_car_serie": 6349, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52597, + "fields": { + "id_car_serie": 6351, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52614, + "fields": { + "id_car_serie": 6359, + "name": "2.0 AT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52615, + "fields": { + "id_car_serie": 6359, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52616, + "fields": { + "id_car_serie": 6359, + "name": "2.4 MT 4WD (162 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52620, + "fields": { + "id_car_serie": 6360, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52621, + "fields": { + "id_car_serie": 6360, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52629, + "fields": { + "id_car_serie": 6366, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52631, + "fields": { + "id_car_serie": 6366, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52633, + "fields": { + "id_car_serie": 6366, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52635, + "fields": { + "id_car_serie": 6372, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52638, + "fields": { + "id_car_serie": 6375, + "name": "1.0 CVT (82 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52640, + "fields": { + "id_car_serie": 6375, + "name": "1.0 MT (77 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52641, + "fields": { + "id_car_serie": 6377, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52642, + "fields": { + "id_car_serie": 6377, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52646, + "fields": { + "id_car_serie": 6378, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52647, + "fields": { + "id_car_serie": 6378, + "name": "1.6 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52648, + "fields": { + "id_car_serie": 6378, + "name": "1.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52650, + "fields": { + "id_car_serie": 6379, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52651, + "fields": { + "id_car_serie": 6379, + "name": "1.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52653, + "fields": { + "id_car_serie": 6379, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52657, + "fields": { + "id_car_serie": 6380, + "name": "1.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52659, + "fields": { + "id_car_serie": 6380, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52660, + "fields": { + "id_car_serie": 6380, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52661, + "fields": { + "id_car_serie": 6381, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52662, + "fields": { + "id_car_serie": 6381, + "name": "1.6 AT (99 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52663, + "fields": { + "id_car_serie": 6383, + "name": "1.2 MT (77 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52666, + "fields": { + "id_car_serie": 6384, + "name": "3.5 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52672, + "fields": { + "id_car_serie": 6389, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52673, + "fields": { + "id_car_serie": 6390, + "name": "0.7 T AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52674, + "fields": { + "id_car_serie": 6395, + "name": "3.5 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52675, + "fields": { + "id_car_serie": 6395, + "name": "3.5 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52677, + "fields": { + "id_car_serie": 6399, + "name": "1.3 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52678, + "fields": { + "id_car_serie": 6399, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52680, + "fields": { + "id_car_serie": 6400, + "name": "3.2 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52681, + "fields": { + "id_car_serie": 6402, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52682, + "fields": { + "id_car_serie": 6402, + "name": "2.2 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52683, + "fields": { + "id_car_serie": 6402, + "name": "2.3 AT 4WS (160 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52687, + "fields": { + "id_car_serie": 6403, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52688, + "fields": { + "id_car_serie": 6403, + "name": "2.0 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52691, + "fields": { + "id_car_serie": 6403, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52692, + "fields": { + "id_car_serie": 6404, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52693, + "fields": { + "id_car_serie": 6404, + "name": "1.9 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52694, + "fields": { + "id_car_serie": 6405, + "name": "1.6 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52695, + "fields": { + "id_car_serie": 6405, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52696, + "fields": { + "id_car_serie": 6413, + "name": "2.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52697, + "fields": { + "id_car_serie": 6413, + "name": "2.4 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52698, + "fields": { + "id_car_serie": 6413, + "name": "2.4 AT 4WD (162 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52702, + "fields": { + "id_car_serie": 6421, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52703, + "fields": { + "id_car_serie": 6421, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52704, + "fields": { + "id_car_serie": 6429, + "name": "1.4 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52705, + "fields": { + "id_car_serie": 6429, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52706, + "fields": { + "id_car_serie": 6430, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52707, + "fields": { + "id_car_serie": 6430, + "name": "1.5 CRDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52708, + "fields": { + "id_car_serie": 6430, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52709, + "fields": { + "id_car_serie": 6431, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52710, + "fields": { + "id_car_serie": 6431, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52713, + "fields": { + "id_car_serie": 6431, + "name": "1.5 TDI MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52715, + "fields": { + "id_car_serie": 6432, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52716, + "fields": { + "id_car_serie": 6432, + "name": "1.3 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52717, + "fields": { + "id_car_serie": 6432, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52720, + "fields": { + "id_car_serie": 6432, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52722, + "fields": { + "id_car_serie": 6433, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52723, + "fields": { + "id_car_serie": 6433, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52724, + "fields": { + "id_car_serie": 6433, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52725, + "fields": { + "id_car_serie": 6433, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52726, + "fields": { + "id_car_serie": 6433, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52727, + "fields": { + "id_car_serie": 6434, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52728, + "fields": { + "id_car_serie": 6434, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52729, + "fields": { + "id_car_serie": 6434, + "name": "1.5 AT (93 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52730, + "fields": { + "id_car_serie": 6434, + "name": "1.5 MT (96 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52731, + "fields": { + "id_car_serie": 6435, + "name": "1.3 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52732, + "fields": { + "id_car_serie": 6435, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52733, + "fields": { + "id_car_serie": 6435, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52734, + "fields": { + "id_car_serie": 6435, + "name": "1.5 AT (96 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52735, + "fields": { + "id_car_serie": 6435, + "name": "1.5 MT (96 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52737, + "fields": { + "id_car_serie": 6436, + "name": "1.3 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52738, + "fields": { + "id_car_serie": 6436, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52739, + "fields": { + "id_car_serie": 6436, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52740, + "fields": { + "id_car_serie": 6436, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52741, + "fields": { + "id_car_serie": 6436, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52742, + "fields": { + "id_car_serie": 6438, + "name": "1.6 AT (124 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52743, + "fields": { + "id_car_serie": 6438, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52756, + "fields": { + "id_car_serie": 6442, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52757, + "fields": { + "id_car_serie": 6442, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52760, + "fields": { + "id_car_serie": 6443, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52761, + "fields": { + "id_car_serie": 6443, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52765, + "fields": { + "id_car_serie": 6445, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52766, + "fields": { + "id_car_serie": 6445, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52767, + "fields": { + "id_car_serie": 6445, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52774, + "fields": { + "id_car_serie": 6446, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52780, + "fields": { + "id_car_serie": 6447, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52782, + "fields": { + "id_car_serie": 6447, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52783, + "fields": { + "id_car_serie": 6447, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52784, + "fields": { + "id_car_serie": 6447, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52785, + "fields": { + "id_car_serie": 6447, + "name": "2.0 CRDi MT (111 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52787, + "fields": { + "id_car_serie": 6448, + "name": "1.6 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52788, + "fields": { + "id_car_serie": 6448, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52791, + "fields": { + "id_car_serie": 6448, + "name": "1.9 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52792, + "fields": { + "id_car_serie": 6448, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52793, + "fields": { + "id_car_serie": 6449, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52794, + "fields": { + "id_car_serie": 6449, + "name": "1.6 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52795, + "fields": { + "id_car_serie": 6449, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52796, + "fields": { + "id_car_serie": 6449, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52797, + "fields": { + "id_car_serie": 6449, + "name": "1.8 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52798, + "fields": { + "id_car_serie": 6449, + "name": "1.9 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52799, + "fields": { + "id_car_serie": 6450, + "name": "1.5 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52800, + "fields": { + "id_car_serie": 6450, + "name": "1.5 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52801, + "fields": { + "id_car_serie": 6450, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52803, + "fields": { + "id_car_serie": 6450, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52804, + "fields": { + "id_car_serie": 6452, + "name": "3.3 Shiftronic (262 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52805, + "fields": { + "id_car_serie": 6452, + "name": "4.6 AT (366 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52807, + "fields": { + "id_car_serie": 6455, + "name": "1.1 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52809, + "fields": { + "id_car_serie": 6455, + "name": "1.2 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52810, + "fields": { + "id_car_serie": 6456, + "name": "1.6 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52811, + "fields": { + "id_car_serie": 6457, + "name": "1.4 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52812, + "fields": { + "id_car_serie": 6457, + "name": "1.6 CRDi AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52813, + "fields": { + "id_car_serie": 6457, + "name": "1.6 CRDi MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52816, + "fields": { + "id_car_serie": 6468, + "name": "2.0 CRDi AT (151 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52819, + "fields": { + "id_car_serie": 6468, + "name": "2.2 CRDi AT AWD (158 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52820, + "fields": { + "id_car_serie": 6468, + "name": "2.2 CRDi AT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52821, + "fields": { + "id_car_serie": 6468, + "name": "2.2 CRDi AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52822, + "fields": { + "id_car_serie": 6468, + "name": "2.2 CRDi MT (158 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52823, + "fields": { + "id_car_serie": 6468, + "name": "2.2 CRDi MT (153 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52827, + "fields": { + "id_car_serie": 6468, + "name": "2.7 AT (188 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52828, + "fields": { + "id_car_serie": 6468, + "name": "2.7 AT AWD (188 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52829, + "fields": { + "id_car_serie": 6468, + "name": "2.7 MT (188 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52830, + "fields": { + "id_car_serie": 6468, + "name": "3.3 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52832, + "fields": { + "id_car_serie": 6469, + "name": "2.0 CRDi AT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52834, + "fields": { + "id_car_serie": 6469, + "name": "2.0 CRDi MT 2WD (112 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52837, + "fields": { + "id_car_serie": 6469, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52840, + "fields": { + "id_car_serie": 6473, + "name": "2.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52842, + "fields": { + "id_car_serie": 6473, + "name": "2.0 CRDi AT (148 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52843, + "fields": { + "id_car_serie": 6473, + "name": "2.0 CRDi MT (148 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52845, + "fields": { + "id_car_serie": 6473, + "name": "3.3 AT (247 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52846, + "fields": { + "id_car_serie": 6474, + "name": "2.0 VGT AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52847, + "fields": { + "id_car_serie": 6474, + "name": "2.0 CRDi AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52848, + "fields": { + "id_car_serie": 6474, + "name": "2.0 VGT MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52849, + "fields": { + "id_car_serie": 6474, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52850, + "fields": { + "id_car_serie": 6474, + "name": "2.4 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52851, + "fields": { + "id_car_serie": 6474, + "name": "2.4 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52852, + "fields": { + "id_car_serie": 6473, + "name": "2.7 AT (172 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52856, + "fields": { + "id_car_serie": 6475, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52857, + "fields": { + "id_car_serie": 6475, + "name": "2.5 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52858, + "fields": { + "id_car_serie": 6476, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52860, + "fields": { + "id_car_serie": 6476, + "name": "2.0 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52861, + "fields": { + "id_car_serie": 6476, + "name": "3.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52862, + "fields": { + "id_car_serie": 6477, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52863, + "fields": { + "id_car_serie": 6477, + "name": "2.0 MT (104 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52864, + "fields": { + "id_car_serie": 6477, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52865, + "fields": { + "id_car_serie": 6477, + "name": "3.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52868, + "fields": { + "id_car_serie": 6478, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52869, + "fields": { + "id_car_serie": 6478, + "name": "2.0 MT (111 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52870, + "fields": { + "id_car_serie": 6478, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52872, + "fields": { + "id_car_serie": 6478, + "name": "3.0 AT (146 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52874, + "fields": { + "id_car_serie": 6479, + "name": "2.4 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52876, + "fields": { + "id_car_serie": 6479, + "name": "2.4 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52880, + "fields": { + "id_car_serie": 6479, + "name": "2.5 CRDi AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52881, + "fields": { + "id_car_serie": 6479, + "name": "2.5 TD AT (80 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52882, + "fields": { + "id_car_serie": 6479, + "name": "2.5 TD AT 4WD LWB (80 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52883, + "fields": { + "id_car_serie": 6479, + "name": "2.5 TD MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52885, + "fields": { + "id_car_serie": 6479, + "name": "2.5 TD MT 4WD LWB (80 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52886, + "fields": { + "id_car_serie": 6479, + "name": "2.5 TDI MT 4WD (99 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52887, + "fields": { + "id_car_serie": 6488, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52888, + "fields": { + "id_car_serie": 6488, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52891, + "fields": { + "id_car_serie": 6489, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52892, + "fields": { + "id_car_serie": 6489, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52894, + "fields": { + "id_car_serie": 6490, + "name": "2.5 AT (167 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52896, + "fields": { + "id_car_serie": 6490, + "name": "3.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52897, + "fields": { + "id_car_serie": 6490, + "name": "3.5 AT (197 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52904, + "fields": { + "id_car_serie": 6494, + "name": "3.5 MT (260 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52905, + "fields": { + "id_car_serie": 6494, + "name": "3.5 MT (302 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52906, + "fields": { + "id_car_serie": 6495, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52907, + "fields": { + "id_car_serie": 6495, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52908, + "fields": { + "id_car_serie": 6495, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52909, + "fields": { + "id_car_serie": 6495, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52910, + "fields": { + "id_car_serie": 6496, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52911, + "fields": { + "id_car_serie": 6496, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52912, + "fields": { + "id_car_serie": 6496, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52913, + "fields": { + "id_car_serie": 6496, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52919, + "fields": { + "id_car_serie": 6502, + "name": "M30 AT (164 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52920, + "fields": { + "id_car_serie": 6503, + "name": "M30 AT (164 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52921, + "fields": { + "id_car_serie": 6504, + "name": "Q41 AT (269 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52922, + "fields": { + "id_car_serie": 6505, + "name": "Q45 AT (282 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52930, + "fields": { + "id_car_serie": 6516, + "name": "1.6 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52931, + "fields": { + "id_car_serie": 6516, + "name": "1.8 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52932, + "fields": { + "id_car_serie": 6522, + "name": "2.3 MT RWD S (97 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52933, + "fields": { + "id_car_serie": 6522, + "name": "2.6 AT RWD S (122 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52934, + "fields": { + "id_car_serie": 6522, + "name": "2.6 MT AWD XS (122 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52935, + "fields": { + "id_car_serie": 6522, + "name": "2.6 MT AWD S (122 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52936, + "fields": { + "id_car_serie": 6523, + "name": "4.2 AT (279 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52937, + "fields": { + "id_car_serie": 6523, + "name": "4.2 AT AWD (279 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52938, + "fields": { + "id_car_serie": 6524, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52939, + "fields": { + "id_car_serie": 6524, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52940, + "fields": { + "id_car_serie": 6525, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52941, + "fields": { + "id_car_serie": 6525, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52942, + "fields": { + "id_car_serie": 6525, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52956, + "fields": { + "id_car_serie": 6527, + "name": "3.5 AT (231 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52957, + "fields": { + "id_car_serie": 6527, + "name": "3.5 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52962, + "fields": { + "id_car_serie": 6529, + "name": "2.2 D MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52966, + "fields": { + "id_car_serie": 6529, + "name": "2.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52970, + "fields": { + "id_car_serie": 6529, + "name": "2.8 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52971, + "fields": { + "id_car_serie": 6530, + "name": "2.0 AT (86 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 52972, + "fields": { + "id_car_serie": 6530, + "name": "2.0 MT (86 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53013, + "fields": { + "id_car_serie": 6535, + "name": "2.5 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53014, + "fields": { + "id_car_serie": 6535, + "name": "2.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53020, + "fields": { + "id_car_serie": 6536, + "name": "2.5 TD MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53021, + "fields": { + "id_car_serie": 6536, + "name": "3.0 TD AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53023, + "fields": { + "id_car_serie": 6536, + "name": "3.0 TD 4WD MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53025, + "fields": { + "id_car_serie": 6537, + "name": "2.5 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53026, + "fields": { + "id_car_serie": 6537, + "name": "2.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53031, + "fields": { + "id_car_serie": 6538, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53032, + "fields": { + "id_car_serie": 6538, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53033, + "fields": { + "id_car_serie": 6538, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53034, + "fields": { + "id_car_serie": 6538, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53035, + "fields": { + "id_car_serie": 6538, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53036, + "fields": { + "id_car_serie": 6538, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53037, + "fields": { + "id_car_serie": 6539, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53040, + "fields": { + "id_car_serie": 6539, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53043, + "fields": { + "id_car_serie": 6539, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53044, + "fields": { + "id_car_serie": 6539, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53053, + "fields": { + "id_car_serie": 6540, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53056, + "fields": { + "id_car_serie": 6540, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53059, + "fields": { + "id_car_serie": 6540, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53060, + "fields": { + "id_car_serie": 6540, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53069, + "fields": { + "id_car_serie": 6541, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53072, + "fields": { + "id_car_serie": 6541, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53075, + "fields": { + "id_car_serie": 6541, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53076, + "fields": { + "id_car_serie": 6541, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53087, + "fields": { + "id_car_serie": 6542, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53088, + "fields": { + "id_car_serie": 6542, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53094, + "fields": { + "id_car_serie": 6542, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53095, + "fields": { + "id_car_serie": 6543, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53096, + "fields": { + "id_car_serie": 6543, + "name": "1.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53097, + "fields": { + "id_car_serie": 6543, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53098, + "fields": { + "id_car_serie": 6543, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53099, + "fields": { + "id_car_serie": 6543, + "name": "1.5 AT (50 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53100, + "fields": { + "id_car_serie": 6543, + "name": "1.5 AT (67 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53101, + "fields": { + "id_car_serie": 6543, + "name": "1.5 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53102, + "fields": { + "id_car_serie": 6543, + "name": "1.5 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53103, + "fields": { + "id_car_serie": 6543, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53104, + "fields": { + "id_car_serie": 6543, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53105, + "fields": { + "id_car_serie": 6544, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53107, + "fields": { + "id_car_serie": 6545, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53108, + "fields": { + "id_car_serie": 6545, + "name": "1.8 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53119, + "fields": { + "id_car_serie": 6550, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53122, + "fields": { + "id_car_serie": 6550, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53128, + "fields": { + "id_car_serie": 6551, + "name": "3.2 MT (208 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53129, + "fields": { + "id_car_serie": 6551, + "name": "3.2 MT 4WD (208 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53140, + "fields": { + "id_car_serie": 6563, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53141, + "fields": { + "id_car_serie": 6563, + "name": "2.4 MT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53146, + "fields": { + "id_car_serie": 6573, + "name": "3.6 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53147, + "fields": { + "id_car_serie": 6573, + "name": "3.6 AT (212 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53148, + "fields": { + "id_car_serie": 6573, + "name": "3.6 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53149, + "fields": { + "id_car_serie": 6573, + "name": "3.6 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53150, + "fields": { + "id_car_serie": 6573, + "name": "3.6 MT (212 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53151, + "fields": { + "id_car_serie": 6573, + "name": "3.6 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53152, + "fields": { + "id_car_serie": 6573, + "name": "5.3 AT (264 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53153, + "fields": { + "id_car_serie": 6573, + "name": "5.3 AT (268 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53154, + "fields": { + "id_car_serie": 6573, + "name": "5.3 AT (275 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53155, + "fields": { + "id_car_serie": 6573, + "name": "5.3 AT (287 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53156, + "fields": { + "id_car_serie": 6573, + "name": "5.3 AT (295 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53157, + "fields": { + "id_car_serie": 6574, + "name": "3.6 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53158, + "fields": { + "id_car_serie": 6574, + "name": "3.6 AT (199 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53159, + "fields": { + "id_car_serie": 6574, + "name": "3.6 AT (212 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53160, + "fields": { + "id_car_serie": 6574, + "name": "3.6 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53161, + "fields": { + "id_car_serie": 6574, + "name": "3.6 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53162, + "fields": { + "id_car_serie": 6574, + "name": "3.6 MT (199 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53163, + "fields": { + "id_car_serie": 6574, + "name": "3.6 MT (212 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53164, + "fields": { + "id_car_serie": 6574, + "name": "3.6 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53167, + "fields": { + "id_car_serie": 6574, + "name": "5.3 AT (275 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53168, + "fields": { + "id_car_serie": 6574, + "name": "5.3 AT (287 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53169, + "fields": { + "id_car_serie": 6574, + "name": "5.3 AT (295 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53170, + "fields": { + "id_car_serie": 6575, + "name": "5.3 AT (289 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53171, + "fields": { + "id_car_serie": 6575, + "name": "5.3 MT (289 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53175, + "fields": { + "id_car_serie": 6576, + "name": "4.2 AT (298 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53183, + "fields": { + "id_car_serie": 6578, + "name": "2.8 CRD AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53185, + "fields": { + "id_car_serie": 6578, + "name": "3.7 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53186, + "fields": { + "id_car_serie": 6579, + "name": "2.4 MT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53187, + "fields": { + "id_car_serie": 6579, + "name": "2.5 TD MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53188, + "fields": { + "id_car_serie": 6579, + "name": "2.8 TD AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53189, + "fields": { + "id_car_serie": 6579, + "name": "2.8 D AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53191, + "fields": { + "id_car_serie": 6579, + "name": "3.7 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53192, + "fields": { + "id_car_serie": 6579, + "name": "3.7 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53201, + "fields": { + "id_car_serie": 6580, + "name": "4.0 MT Country (190 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53205, + "fields": { + "id_car_serie": 6581, + "name": "2.1 MT TD 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53210, + "fields": { + "id_car_serie": 6581, + "name": "2.5 MT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53211, + "fields": { + "id_car_serie": 6581, + "name": "2.5 MT (127 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53212, + "fields": { + "id_car_serie": 6581, + "name": "2.5 MT 4WD (127 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53213, + "fields": { + "id_car_serie": 6581, + "name": "2.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53215, + "fields": { + "id_car_serie": 6581, + "name": "2.5 TD MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53223, + "fields": { + "id_car_serie": 6581, + "name": "4.0 MT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53224, + "fields": { + "id_car_serie": 6581, + "name": "4.0 MT Sport 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53225, + "fields": { + "id_car_serie": 6581, + "name": "4.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53226, + "fields": { + "id_car_serie": 6581, + "name": "4.0 MT Sport (192 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53237, + "fields": { + "id_car_serie": 6585, + "name": "3.6 AT (286 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53238, + "fields": { + "id_car_serie": 6585, + "name": "5.7 AT AWD (352 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53239, + "fields": { + "id_car_serie": 6586, + "name": "3.0 CRD AT (215 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53240, + "fields": { + "id_car_serie": 6586, + "name": "3.7 AT 2WD (210 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53241, + "fields": { + "id_car_serie": 6586, + "name": "3.7 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53242, + "fields": { + "id_car_serie": 6586, + "name": "4.7 AT 2WD (238 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53243, + "fields": { + "id_car_serie": 6586, + "name": "4.7 AT (231 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53244, + "fields": { + "id_car_serie": 6586, + "name": "4.7 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53245, + "fields": { + "id_car_serie": 6586, + "name": "5.7 AT 4WD (326 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53246, + "fields": { + "id_car_serie": 6587, + "name": "2.7 D AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53247, + "fields": { + "id_car_serie": 6587, + "name": "3.1 AT TD (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53248, + "fields": { + "id_car_serie": 6587, + "name": "4.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53249, + "fields": { + "id_car_serie": 6587, + "name": "4.7 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53250, + "fields": { + "id_car_serie": 6587, + "name": "4.7 AT (235 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53251, + "fields": { + "id_car_serie": 6587, + "name": "4.7 AT (258 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53252, + "fields": { + "id_car_serie": 6588, + "name": "2.5 MT TD 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53256, + "fields": { + "id_car_serie": 6588, + "name": "4.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53257, + "fields": { + "id_car_serie": 6588, + "name": "4.0 AT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53260, + "fields": { + "id_car_serie": 6588, + "name": "5.2 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53264, + "fields": { + "id_car_serie": 6590, + "name": "2.4 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53265, + "fields": { + "id_car_serie": 6590, + "name": "2.4 MT AWD (156 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53270, + "fields": { + "id_car_serie": 6590, + "name": "3.7 AT (213 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53271, + "fields": { + "id_car_serie": 6590, + "name": "3.7 AT AWD (213 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53272, + "fields": { + "id_car_serie": 6590, + "name": "3.7 MT (213 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53273, + "fields": { + "id_car_serie": 6590, + "name": "3.7 MT AWD (213 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53274, + "fields": { + "id_car_serie": 6598, + "name": "2.5 AT (148 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53275, + "fields": { + "id_car_serie": 6598, + "name": "2.5 MT (148 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53276, + "fields": { + "id_car_serie": 6598, + "name": "2.9 CRDi AT (142 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53277, + "fields": { + "id_car_serie": 6598, + "name": "2.9 CRDi MT (142 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53279, + "fields": { + "id_car_serie": 6599, + "name": "2.5 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53282, + "fields": { + "id_car_serie": 6599, + "name": "2.5 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53283, + "fields": { + "id_car_serie": 6599, + "name": "2.9 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53286, + "fields": { + "id_car_serie": 6599, + "name": "2.9 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53294, + "fields": { + "id_car_serie": 6611, + "name": "1.0 MT (62 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53296, + "fields": { + "id_car_serie": 6611, + "name": "1.1 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53299, + "fields": { + "id_car_serie": 6617, + "name": "2.2 CRDi AT (194 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53304, + "fields": { + "id_car_serie": 6620, + "name": "2.2 D AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53306, + "fields": { + "id_car_serie": 6620, + "name": "2.2 D MT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53308, + "fields": { + "id_car_serie": 6620, + "name": "2.4 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53310, + "fields": { + "id_car_serie": 6620, + "name": "2.4 MT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53311, + "fields": { + "id_car_serie": 6620, + "name": "2.4 MT 2WD (174 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53312, + "fields": { + "id_car_serie": 6620, + "name": "3.5 AT 4WD (276 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53313, + "fields": { + "id_car_serie": 6620, + "name": "3.5 AT 2WD (276 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53314, + "fields": { + "id_car_serie": 6621, + "name": "2.5 CRDi AWD AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53315, + "fields": { + "id_car_serie": 6621, + "name": "2.5 CRDi 4WD AT (144 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53316, + "fields": { + "id_car_serie": 6621, + "name": "2.5 CRDi 4WD MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53317, + "fields": { + "id_car_serie": 6621, + "name": "2.5 CRDi 4WD MT (144 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53319, + "fields": { + "id_car_serie": 6621, + "name": "3.3 AWD AT (248 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53324, + "fields": { + "id_car_serie": 6623, + "name": "1.6 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53326, + "fields": { + "id_car_serie": 6623, + "name": "1.6 CRDi AT (128 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53327, + "fields": { + "id_car_serie": 6623, + "name": "1.6 CRDi MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53328, + "fields": { + "id_car_serie": 6623, + "name": "2.0 AT (142 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53329, + "fields": { + "id_car_serie": 6623, + "name": "2.0 MT (142 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53330, + "fields": { + "id_car_serie": 6625, + "name": "1.6 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53331, + "fields": { + "id_car_serie": 6625, + "name": "1.7 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53332, + "fields": { + "id_car_serie": 6625, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53333, + "fields": { + "id_car_serie": 6625, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53334, + "fields": { + "id_car_serie": 6625, + "name": "2.0 AT (261 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53335, + "fields": { + "id_car_serie": 6625, + "name": "2.0 AT 4WD (261 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53336, + "fields": { + "id_car_serie": 6625, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53337, + "fields": { + "id_car_serie": 6625, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53338, + "fields": { + "id_car_serie": 6625, + "name": "2.0 TD AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53339, + "fields": { + "id_car_serie": 6625, + "name": "2.0 TD AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53340, + "fields": { + "id_car_serie": 6625, + "name": "2.0 TD AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53341, + "fields": { + "id_car_serie": 6625, + "name": "2.0 TD MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53342, + "fields": { + "id_car_serie": 6625, + "name": "2.0 TD MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53343, + "fields": { + "id_car_serie": 6625, + "name": "2.0 TD MT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53344, + "fields": { + "id_car_serie": 6625, + "name": "2.4 AT (176 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53345, + "fields": { + "id_car_serie": 6625, + "name": "2.4 MT (176 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53346, + "fields": { + "id_car_serie": 6626, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53347, + "fields": { + "id_car_serie": 6626, + "name": "2.0 AT AWD (141 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53348, + "fields": { + "id_car_serie": 6626, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53349, + "fields": { + "id_car_serie": 6626, + "name": "2.0 MT AWD (141 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53350, + "fields": { + "id_car_serie": 6626, + "name": "2.0 CRDi AT AWD (112 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53351, + "fields": { + "id_car_serie": 6626, + "name": "2.0 CRDi AT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53352, + "fields": { + "id_car_serie": 6626, + "name": "2.0 CRDi AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53353, + "fields": { + "id_car_serie": 6626, + "name": "2.0 CRDi MT AWD (112 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53354, + "fields": { + "id_car_serie": 6626, + "name": "2.0 CRDi MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53357, + "fields": { + "id_car_serie": 6626, + "name": "2.7 AT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53359, + "fields": { + "id_car_serie": 6627, + "name": "2.0 AT AWD (128 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53361, + "fields": { + "id_car_serie": 6627, + "name": "2.0 TD AT AWD (83 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53363, + "fields": { + "id_car_serie": 6627, + "name": "2.0 MT AWD (128 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53366, + "fields": { + "id_car_serie": 6627, + "name": "2.0 TD MT AWD (83 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53367, + "fields": { + "id_car_serie": 6628, + "name": "2.0 AT AWD (118 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53368, + "fields": { + "id_car_serie": 6628, + "name": "2.0 AT AWD (128 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53369, + "fields": { + "id_car_serie": 6628, + "name": "2.0 MRDi AT AWD (128 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53370, + "fields": { + "id_car_serie": 6628, + "name": "2.0 MT AWD (118 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53371, + "fields": { + "id_car_serie": 6628, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53372, + "fields": { + "id_car_serie": 6628, + "name": "2.0 MRDi MT AWD (128 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53373, + "fields": { + "id_car_serie": 6628, + "name": "2.0 MRi MT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53374, + "fields": { + "id_car_serie": 6628, + "name": "2.0 MRi MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53375, + "fields": { + "id_car_serie": 6628, + "name": "2.0 TD AT AWD (83 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53376, + "fields": { + "id_car_serie": 6628, + "name": "2.0 TD MT AWD (83 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53377, + "fields": { + "id_car_serie": 6628, + "name": "2.2 D MT AWD (63 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53379, + "fields": { + "id_car_serie": 6633, + "name": "4.7 MT (655 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53380, + "fields": { + "id_car_serie": 6634, + "name": "4.7 MT (806 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53381, + "fields": { + "id_car_serie": 6635, + "name": "4.7 MT (1018 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53382, + "fields": { + "id_car_serie": 6635, + "name": "4.7 MT (806 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53383, + "fields": { + "id_car_serie": 6635, + "name": "4.8 AMT (888 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53384, + "fields": { + "id_car_serie": 6648, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53385, + "fields": { + "id_car_serie": 6648, + "name": "2.5 MT (217 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53386, + "fields": { + "id_car_serie": 6648, + "name": "3.5 AT (255 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53387, + "fields": { + "id_car_serie": 6648, + "name": "3.5 MT (255 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53390, + "fields": { + "id_car_serie": 6652, + "name": "1.8 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53391, + "fields": { + "id_car_serie": 6652, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53392, + "fields": { + "id_car_serie": 6653, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53393, + "fields": { + "id_car_serie": 6653, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53394, + "fields": { + "id_car_serie": 6653, + "name": "1.8 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53396, + "fields": { + "id_car_serie": 6653, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53397, + "fields": { + "id_car_serie": 6653, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53398, + "fields": { + "id_car_serie": 6653, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53399, + "fields": { + "id_car_serie": 6653, + "name": "2.0 MT (186 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53400, + "fields": { + "id_car_serie": 6654, + "name": "1.3 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53401, + "fields": { + "id_car_serie": 6654, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53402, + "fields": { + "id_car_serie": 6654, + "name": "1.6 MT GT (105 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53403, + "fields": { + "id_car_serie": 6654, + "name": "1.6 MT GT i. e. (107 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53404, + "fields": { + "id_car_serie": 6654, + "name": "1.6 turbo MT HF (132 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53406, + "fields": { + "id_car_serie": 6654, + "name": "1.6 turbo MT HF (140 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53407, + "fields": { + "id_car_serie": 6654, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53410, + "fields": { + "id_car_serie": 6655, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53411, + "fields": { + "id_car_serie": 6657, + "name": "2.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53416, + "fields": { + "id_car_serie": 6659, + "name": "1.4 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53417, + "fields": { + "id_car_serie": 6659, + "name": "1.4 MT (77 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53418, + "fields": { + "id_car_serie": 6659, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53421, + "fields": { + "id_car_serie": 6660, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53431, + "fields": { + "id_car_serie": 6662, + "name": "2.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53432, + "fields": { + "id_car_serie": 6662, + "name": "2.0 MT (146 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53433, + "fields": { + "id_car_serie": 6662, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53434, + "fields": { + "id_car_serie": 6662, + "name": "2.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53435, + "fields": { + "id_car_serie": 6662, + "name": "2.0 MT (181 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53436, + "fields": { + "id_car_serie": 6662, + "name": "2.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53438, + "fields": { + "id_car_serie": 6662, + "name": "2.5 MT (118 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53439, + "fields": { + "id_car_serie": 6662, + "name": "3.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53440, + "fields": { + "id_car_serie": 6662, + "name": "3.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53443, + "fields": { + "id_car_serie": 6663, + "name": "2.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53450, + "fields": { + "id_car_serie": 6663, + "name": "2.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53453, + "fields": { + "id_car_serie": 6663, + "name": "2.0 MT Turbo (181 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53457, + "fields": { + "id_car_serie": 6663, + "name": "2.5 MT Turbo DS (118 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53468, + "fields": { + "id_car_serie": 6667, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53469, + "fields": { + "id_car_serie": 6668, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53470, + "fields": { + "id_car_serie": 6668, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53471, + "fields": { + "id_car_serie": 6668, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53472, + "fields": { + "id_car_serie": 6668, + "name": "1.2 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53473, + "fields": { + "id_car_serie": 6668, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53474, + "fields": { + "id_car_serie": 6672, + "name": "2.9 TDi AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53477, + "fields": { + "id_car_serie": 6672, + "name": "4.4 AT (286 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53483, + "fields": { + "id_car_serie": 6673, + "name": "2.5 TD AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53485, + "fields": { + "id_car_serie": 6673, + "name": "2.5 TD MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53490, + "fields": { + "id_car_serie": 6673, + "name": "4.6 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53491, + "fields": { + "id_car_serie": 6673, + "name": "4.6 AT (226 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53496, + "fields": { + "id_car_serie": 6674, + "name": "2.5 D MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53497, + "fields": { + "id_car_serie": 6674, + "name": "2.5 TDi MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53507, + "fields": { + "id_car_serie": 6674, + "name": "3.5 MT (167 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53513, + "fields": { + "id_car_serie": 6674, + "name": "4.3 MT (202 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53514, + "fields": { + "id_car_serie": 6675, + "name": "3.0 TD AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53515, + "fields": { + "id_car_serie": 6675, + "name": "3.6 TD AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53516, + "fields": { + "id_car_serie": 6675, + "name": "5.0 AT (375 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53517, + "fields": { + "id_car_serie": 6675, + "name": "5.0 SC AT (510 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53518, + "fields": { + "id_car_serie": 6676, + "name": "2.7 TD AT (190 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53519, + "fields": { + "id_car_serie": 6676, + "name": "3.6 TD AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53520, + "fields": { + "id_car_serie": 6676, + "name": "4.2 AT (390 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53521, + "fields": { + "id_car_serie": 6676, + "name": "4.4 AT (300 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53525, + "fields": { + "id_car_serie": 6683, + "name": "2.4 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 53526, + "fields": { + "id_car_serie": 6683, + "name": "2.8 D MT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 53537, + "fields": { + "id_car_serie": 6687, + "name": "300 AT (228 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53549, + "fields": { + "id_car_serie": 6691, + "name": "250h CVT (189 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53550, + "fields": { + "id_car_serie": 6693, + "name": "500 AT (423 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53557, + "fields": { + "id_car_serie": 6693, + "name": "2.5 6 MT (208 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53558, + "fields": { + "id_car_serie": 6693, + "name": "2.5 AT (208 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53584, + "fields": { + "id_car_serie": 6719, + "name": "5.4 AT AWD (232 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53588, + "fields": { + "id_car_serie": 6719, + "name": "5.4 AT AWD (304 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53589, + "fields": { + "id_car_serie": 6719, + "name": "5.4 AT (304 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53595, + "fields": { + "id_car_serie": 6723, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53596, + "fields": { + "id_car_serie": 6728, + "name": "2.2 MT Turbo (264 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53598, + "fields": { + "id_car_serie": 6729, + "name": "2.2 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53601, + "fields": { + "id_car_serie": 6730, + "name": "2.0 MT (142 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53602, + "fields": { + "id_car_serie": 6730, + "name": "2.2 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53603, + "fields": { + "id_car_serie": 6731, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53605, + "fields": { + "id_car_serie": 6736, + "name": "1.8 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53609, + "fields": { + "id_car_serie": 6738, + "name": "2.7 D MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53612, + "fields": { + "id_car_serie": 6741, + "name": "2.2 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 53613, + "fields": { + "id_car_serie": 6741, + "name": "2.2 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 53614, + "fields": { + "id_car_serie": 6742, + "name": "1.8 Turbo AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 53615, + "fields": { + "id_car_serie": 6742, + "name": "2.0 Turbo AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 53619, + "fields": { + "id_car_serie": 6744, + "name": "2.5 D MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53620, + "fields": { + "id_car_serie": 6745, + "name": "2.5 D MT (72 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 53621, + "fields": { + "id_car_serie": 6747, + "name": "2.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53622, + "fields": { + "id_car_serie": 6752, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53623, + "fields": { + "id_car_serie": 6753, + "name": "2.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53624, + "fields": { + "id_car_serie": 6754, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 53625, + "fields": { + "id_car_serie": 6754, + "name": "2.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 53626, + "fields": { + "id_car_serie": 6755, + "name": "2.5 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53627, + "fields": { + "id_car_serie": 6764, + "name": "0.8 MT (35 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53628, + "fields": { + "id_car_serie": 6764, + "name": "0.8 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53629, + "fields": { + "id_car_serie": 6765, + "name": "0.8 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53631, + "fields": { + "id_car_serie": 6765, + "name": "1.1 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53632, + "fields": { + "id_car_serie": 6771, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53633, + "fields": { + "id_car_serie": 6771, + "name": "1.5 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53634, + "fields": { + "id_car_serie": 6772, + "name": "2.8 Turbo MT (225 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53635, + "fields": { + "id_car_serie": 6772, + "name": "2.8 Turbo MT (250 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53636, + "fields": { + "id_car_serie": 6774, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53637, + "fields": { + "id_car_serie": 6774, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53638, + "fields": { + "id_car_serie": 6774, + "name": "2.8 MT (279 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53639, + "fields": { + "id_car_serie": 6779, + "name": "2.0 Biturbo MT (306 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53640, + "fields": { + "id_car_serie": 6779, + "name": "2.8 Biturbo MT (284 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53641, + "fields": { + "id_car_serie": 6789, + "name": "4.9 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53642, + "fields": { + "id_car_serie": 6789, + "name": "4.9 MT (300 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53643, + "fields": { + "id_car_serie": 6791, + "name": "5.5 AT (550 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53644, + "fields": { + "id_car_serie": 6792, + "name": "1.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53645, + "fields": { + "id_car_serie": 6794, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53646, + "fields": { + "id_car_serie": 6794, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53647, + "fields": { + "id_car_serie": 6796, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53648, + "fields": { + "id_car_serie": 6796, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53649, + "fields": { + "id_car_serie": 6796, + "name": "1.6 CiTD MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53650, + "fields": { + "id_car_serie": 6796, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53651, + "fields": { + "id_car_serie": 6796, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53652, + "fields": { + "id_car_serie": 6796, + "name": "2.2 CiTD MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53653, + "fields": { + "id_car_serie": 6796, + "name": "2.2 CiTD MT (185 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53654, + "fields": { + "id_car_serie": 6796, + "name": "2.5 MT (169 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53655, + "fields": { + "id_car_serie": 6797, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53656, + "fields": { + "id_car_serie": 6797, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53657, + "fields": { + "id_car_serie": 6797, + "name": "1.6 CiTD MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53658, + "fields": { + "id_car_serie": 6797, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53659, + "fields": { + "id_car_serie": 6797, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53660, + "fields": { + "id_car_serie": 6797, + "name": "2.2 CiTD MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53661, + "fields": { + "id_car_serie": 6797, + "name": "2.5 MT (169 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53662, + "fields": { + "id_car_serie": 6798, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53663, + "fields": { + "id_car_serie": 6798, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53664, + "fields": { + "id_car_serie": 6798, + "name": "1.6 CiTD MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53665, + "fields": { + "id_car_serie": 6798, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53667, + "fields": { + "id_car_serie": 6798, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53669, + "fields": { + "id_car_serie": 6798, + "name": "2.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53671, + "fields": { + "id_car_serie": 6798, + "name": "2.3 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53673, + "fields": { + "id_car_serie": 6799, + "name": "1.4 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53674, + "fields": { + "id_car_serie": 6799, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53675, + "fields": { + "id_car_serie": 6799, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53676, + "fields": { + "id_car_serie": 6799, + "name": "1.6 CiTD MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53679, + "fields": { + "id_car_serie": 6799, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53684, + "fields": { + "id_car_serie": 6800, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53685, + "fields": { + "id_car_serie": 6800, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53686, + "fields": { + "id_car_serie": 6800, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53688, + "fields": { + "id_car_serie": 6800, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53689, + "fields": { + "id_car_serie": 6800, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53690, + "fields": { + "id_car_serie": 6800, + "name": "2.0 D MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53691, + "fields": { + "id_car_serie": 6801, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53692, + "fields": { + "id_car_serie": 6801, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53697, + "fields": { + "id_car_serie": 6801, + "name": "2.0 D MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53698, + "fields": { + "id_car_serie": 6802, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53699, + "fields": { + "id_car_serie": 6802, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53700, + "fields": { + "id_car_serie": 6802, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53701, + "fields": { + "id_car_serie": 6802, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53702, + "fields": { + "id_car_serie": 6802, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53709, + "fields": { + "id_car_serie": 6803, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53710, + "fields": { + "id_car_serie": 6803, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53713, + "fields": { + "id_car_serie": 6803, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53714, + "fields": { + "id_car_serie": 6803, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53717, + "fields": { + "id_car_serie": 6804, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53719, + "fields": { + "id_car_serie": 6804, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53720, + "fields": { + "id_car_serie": 6804, + "name": "1.6 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53721, + "fields": { + "id_car_serie": 6804, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53723, + "fields": { + "id_car_serie": 6804, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53724, + "fields": { + "id_car_serie": 6804, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53726, + "fields": { + "id_car_serie": 6804, + "name": "1.7 D MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53727, + "fields": { + "id_car_serie": 6804, + "name": "1.8 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53733, + "fields": { + "id_car_serie": 6804, + "name": "1.8 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53740, + "fields": { + "id_car_serie": 6805, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53742, + "fields": { + "id_car_serie": 6805, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53743, + "fields": { + "id_car_serie": 6805, + "name": "1.6 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53744, + "fields": { + "id_car_serie": 6805, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53746, + "fields": { + "id_car_serie": 6805, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53747, + "fields": { + "id_car_serie": 6805, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53750, + "fields": { + "id_car_serie": 6805, + "name": "1.7 D MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53769, + "fields": { + "id_car_serie": 6806, + "name": "1.6 T MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53770, + "fields": { + "id_car_serie": 6806, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53775, + "fields": { + "id_car_serie": 6807, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53779, + "fields": { + "id_car_serie": 6807, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53783, + "fields": { + "id_car_serie": 6807, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53794, + "fields": { + "id_car_serie": 6808, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53795, + "fields": { + "id_car_serie": 6808, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53796, + "fields": { + "id_car_serie": 6808, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53797, + "fields": { + "id_car_serie": 6808, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53798, + "fields": { + "id_car_serie": 6808, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53799, + "fields": { + "id_car_serie": 6808, + "name": "1.5 AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53800, + "fields": { + "id_car_serie": 6808, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53801, + "fields": { + "id_car_serie": 6808, + "name": "1.5 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53802, + "fields": { + "id_car_serie": 6808, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53803, + "fields": { + "id_car_serie": 6808, + "name": "1.5 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53804, + "fields": { + "id_car_serie": 6808, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53805, + "fields": { + "id_car_serie": 6808, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53806, + "fields": { + "id_car_serie": 6808, + "name": "1.6 AT (104 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53809, + "fields": { + "id_car_serie": 6808, + "name": "1.6 AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53810, + "fields": { + "id_car_serie": 6808, + "name": "1.6 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53811, + "fields": { + "id_car_serie": 6808, + "name": "1.6 MT (104 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53815, + "fields": { + "id_car_serie": 6808, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53816, + "fields": { + "id_car_serie": 6808, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53817, + "fields": { + "id_car_serie": 6808, + "name": "1.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53818, + "fields": { + "id_car_serie": 6808, + "name": "1.7 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53844, + "fields": { + "id_car_serie": 6810, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53845, + "fields": { + "id_car_serie": 6810, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53846, + "fields": { + "id_car_serie": 6810, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53847, + "fields": { + "id_car_serie": 6810, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53848, + "fields": { + "id_car_serie": 6811, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53849, + "fields": { + "id_car_serie": 6811, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53850, + "fields": { + "id_car_serie": 6811, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53851, + "fields": { + "id_car_serie": 6811, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53852, + "fields": { + "id_car_serie": 6811, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53853, + "fields": { + "id_car_serie": 6812, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53854, + "fields": { + "id_car_serie": 6812, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53855, + "fields": { + "id_car_serie": 6812, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53856, + "fields": { + "id_car_serie": 6812, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53857, + "fields": { + "id_car_serie": 6812, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53864, + "fields": { + "id_car_serie": 6815, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53865, + "fields": { + "id_car_serie": 6815, + "name": "2.0 AT (146 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53866, + "fields": { + "id_car_serie": 6815, + "name": "2.0 MT (146 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53867, + "fields": { + "id_car_serie": 6815, + "name": "2.0 MZR-CD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53868, + "fields": { + "id_car_serie": 6815, + "name": "2.0 MZR-CD MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53869, + "fields": { + "id_car_serie": 6815, + "name": "2.3 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53870, + "fields": { + "id_car_serie": 6815, + "name": "2.3 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53871, + "fields": { + "id_car_serie": 6817, + "name": "1.6 MT (74 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53872, + "fields": { + "id_car_serie": 6818, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53874, + "fields": { + "id_car_serie": 6818, + "name": "2.0 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53875, + "fields": { + "id_car_serie": 6818, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53877, + "fields": { + "id_car_serie": 6818, + "name": "2.0 Comprex D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53880, + "fields": { + "id_car_serie": 6819, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53881, + "fields": { + "id_car_serie": 6819, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53882, + "fields": { + "id_car_serie": 6819, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53883, + "fields": { + "id_car_serie": 6819, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53884, + "fields": { + "id_car_serie": 6819, + "name": "2.0 Comprex D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53889, + "fields": { + "id_car_serie": 6820, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53890, + "fields": { + "id_car_serie": 6820, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53891, + "fields": { + "id_car_serie": 6820, + "name": "2.0 DiTD MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53892, + "fields": { + "id_car_serie": 6820, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53893, + "fields": { + "id_car_serie": 6820, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53901, + "fields": { + "id_car_serie": 6821, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53903, + "fields": { + "id_car_serie": 6821, + "name": "2.0 Comprex D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53904, + "fields": { + "id_car_serie": 6821, + "name": "2.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53906, + "fields": { + "id_car_serie": 6821, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53907, + "fields": { + "id_car_serie": 6821, + "name": "2.2 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53908, + "fields": { + "id_car_serie": 6822, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53909, + "fields": { + "id_car_serie": 6822, + "name": "1.8 5MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53910, + "fields": { + "id_car_serie": 6822, + "name": "2.0 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53911, + "fields": { + "id_car_serie": 6822, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53912, + "fields": { + "id_car_serie": 6822, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53913, + "fields": { + "id_car_serie": 6822, + "name": "2.0 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53914, + "fields": { + "id_car_serie": 6822, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53915, + "fields": { + "id_car_serie": 6822, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53916, + "fields": { + "id_car_serie": 6822, + "name": "2.0 Cat AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53917, + "fields": { + "id_car_serie": 6822, + "name": "2.0 Cat MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53918, + "fields": { + "id_car_serie": 6822, + "name": "2.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53919, + "fields": { + "id_car_serie": 6822, + "name": "2.2 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53920, + "fields": { + "id_car_serie": 6822, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53921, + "fields": { + "id_car_serie": 6822, + "name": "2.2 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53924, + "fields": { + "id_car_serie": 6823, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53927, + "fields": { + "id_car_serie": 6823, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53929, + "fields": { + "id_car_serie": 6823, + "name": "2.0 Comprex D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53935, + "fields": { + "id_car_serie": 6824, + "name": "2.0 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53936, + "fields": { + "id_car_serie": 6824, + "name": "2.0 MT 4WS (140 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53938, + "fields": { + "id_car_serie": 6824, + "name": "2.0 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53939, + "fields": { + "id_car_serie": 6824, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53940, + "fields": { + "id_car_serie": 6824, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53941, + "fields": { + "id_car_serie": 6824, + "name": "2.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53942, + "fields": { + "id_car_serie": 6824, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53947, + "fields": { + "id_car_serie": 6825, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53948, + "fields": { + "id_car_serie": 6825, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53949, + "fields": { + "id_car_serie": 6825, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53950, + "fields": { + "id_car_serie": 6825, + "name": "2.0 MT 4WS (140 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53951, + "fields": { + "id_car_serie": 6825, + "name": "2.0 MT 4WS (148 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53952, + "fields": { + "id_car_serie": 6825, + "name": "2.0 MT (148 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53953, + "fields": { + "id_car_serie": 6826, + "name": "1.6 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53954, + "fields": { + "id_car_serie": 6826, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53955, + "fields": { + "id_car_serie": 6826, + "name": "2.0 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53956, + "fields": { + "id_car_serie": 6826, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53957, + "fields": { + "id_car_serie": 6826, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53958, + "fields": { + "id_car_serie": 6826, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53959, + "fields": { + "id_car_serie": 6826, + "name": "2.0 AT (63 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53960, + "fields": { + "id_car_serie": 6826, + "name": "2.0 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53965, + "fields": { + "id_car_serie": 6829, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53966, + "fields": { + "id_car_serie": 6829, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53967, + "fields": { + "id_car_serie": 6830, + "name": "2.0 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53968, + "fields": { + "id_car_serie": 6830, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53969, + "fields": { + "id_car_serie": 6830, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53970, + "fields": { + "id_car_serie": 6830, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53971, + "fields": { + "id_car_serie": 6830, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53972, + "fields": { + "id_car_serie": 6830, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53973, + "fields": { + "id_car_serie": 6831, + "name": "2.0 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53974, + "fields": { + "id_car_serie": 6831, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53975, + "fields": { + "id_car_serie": 6831, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53976, + "fields": { + "id_car_serie": 6831, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53977, + "fields": { + "id_car_serie": 6831, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53978, + "fields": { + "id_car_serie": 6831, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53981, + "fields": { + "id_car_serie": 6834, + "name": "2.0 SKYACTIV-G AT (154 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53983, + "fields": { + "id_car_serie": 6835, + "name": "2.0 SKYACTIV-G AT (154 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53985, + "fields": { + "id_car_serie": 6836, + "name": "1.5 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53986, + "fields": { + "id_car_serie": 6836, + "name": "1.5 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53993, + "fields": { + "id_car_serie": 6844, + "name": "2.0 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 53999, + "fields": { + "id_car_serie": 6844, + "name": "2.0 TD MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54001, + "fields": { + "id_car_serie": 6846, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54002, + "fields": { + "id_car_serie": 6846, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54009, + "fields": { + "id_car_serie": 6847, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54011, + "fields": { + "id_car_serie": 6847, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54013, + "fields": { + "id_car_serie": 6847, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54014, + "fields": { + "id_car_serie": 6847, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54015, + "fields": { + "id_car_serie": 6847, + "name": "2.0 TD AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54019, + "fields": { + "id_car_serie": 6848, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54022, + "fields": { + "id_car_serie": 6848, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54025, + "fields": { + "id_car_serie": 6849, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54029, + "fields": { + "id_car_serie": 6849, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54032, + "fields": { + "id_car_serie": 6849, + "name": "2.0 TD MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54033, + "fields": { + "id_car_serie": 6850, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54036, + "fields": { + "id_car_serie": 6850, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54038, + "fields": { + "id_car_serie": 6850, + "name": "1.8 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54049, + "fields": { + "id_car_serie": 6850, + "name": "2.0 TD MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54053, + "fields": { + "id_car_serie": 6855, + "name": "3.7 AT (277 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54054, + "fields": { + "id_car_serie": 6855, + "name": "3.7 AT AWD (277 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54055, + "fields": { + "id_car_serie": 6856, + "name": "1.3 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54057, + "fields": { + "id_car_serie": 6856, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54058, + "fields": { + "id_car_serie": 6856, + "name": "1.5 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54060, + "fields": { + "id_car_serie": 6856, + "name": "1.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54061, + "fields": { + "id_car_serie": 6857, + "name": "1.3 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54062, + "fields": { + "id_car_serie": 6857, + "name": "1.3 AT e-4WD (91 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54064, + "fields": { + "id_car_serie": 6857, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54065, + "fields": { + "id_car_serie": 6857, + "name": "1.5 AT e-4WD (113 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54066, + "fields": { + "id_car_serie": 6857, + "name": "1.5 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54067, + "fields": { + "id_car_serie": 6857, + "name": "1.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54077, + "fields": { + "id_car_serie": 6866, + "name": "1.8 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54078, + "fields": { + "id_car_serie": 6866, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54079, + "fields": { + "id_car_serie": 6866, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54080, + "fields": { + "id_car_serie": 6866, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54081, + "fields": { + "id_car_serie": 6867, + "name": "0.7 AT (55 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54082, + "fields": { + "id_car_serie": 6867, + "name": "0.7 Turbo AT (60 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54083, + "fields": { + "id_car_serie": 6867, + "name": "0.7 Turbo AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54084, + "fields": { + "id_car_serie": 6867, + "name": "0.7 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54093, + "fields": { + "id_car_serie": 6872, + "name": "1.8 MZR MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54094, + "fields": { + "id_car_serie": 6872, + "name": "2.0 MZR AT (158 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54095, + "fields": { + "id_car_serie": 6872, + "name": "2.0 MZR AT (166 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54096, + "fields": { + "id_car_serie": 6872, + "name": "2.0 MZR 5MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54097, + "fields": { + "id_car_serie": 6872, + "name": "2.0 MZR 6MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54098, + "fields": { + "id_car_serie": 6873, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54101, + "fields": { + "id_car_serie": 6873, + "name": "1.8 6MT (142 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54103, + "fields": { + "id_car_serie": 6874, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54104, + "fields": { + "id_car_serie": 6874, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54105, + "fields": { + "id_car_serie": 6874, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54106, + "fields": { + "id_car_serie": 6874, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54107, + "fields": { + "id_car_serie": 6878, + "name": "2.0 AT 4WD (139 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54108, + "fields": { + "id_car_serie": 6878, + "name": "2.0 AT (151 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54110, + "fields": { + "id_car_serie": 6878, + "name": "2.3 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54111, + "fields": { + "id_car_serie": 6879, + "name": "1.8 AT 5seat (135 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54112, + "fields": { + "id_car_serie": 6879, + "name": "1.8 AT 5seat (130 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54113, + "fields": { + "id_car_serie": 6879, + "name": "1.8 AT 4WD 5seat (135 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54114, + "fields": { + "id_car_serie": 6879, + "name": "1.8 AT 4WD 7seat (135 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54115, + "fields": { + "id_car_serie": 6879, + "name": "1.8 AT 7seat (135 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54116, + "fields": { + "id_car_serie": 6879, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54118, + "fields": { + "id_car_serie": 6879, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54119, + "fields": { + "id_car_serie": 6879, + "name": "2.0 AT 7seat (165 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54120, + "fields": { + "id_car_serie": 6879, + "name": "2.0 AT 5seat (165 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54121, + "fields": { + "id_car_serie": 6879, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54123, + "fields": { + "id_car_serie": 6879, + "name": "2.0 TD MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54133, + "fields": { + "id_car_serie": 6883, + "name": "1.6 AT (104 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54134, + "fields": { + "id_car_serie": 6883, + "name": "1.6 MT (104 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54145, + "fields": { + "id_car_serie": 6887, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54146, + "fields": { + "id_car_serie": 6887, + "name": "1.8 MT (146 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54147, + "fields": { + "id_car_serie": 6887, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54148, + "fields": { + "id_car_serie": 6895, + "name": "6.1 MT (550 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54187, + "fields": { + "id_car_serie": 6904, + "name": "1.4 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54188, + "fields": { + "id_car_serie": 6904, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54189, + "fields": { + "id_car_serie": 6904, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54190, + "fields": { + "id_car_serie": 6904, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54191, + "fields": { + "id_car_serie": 6904, + "name": "1.7 AT (60 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54193, + "fields": { + "id_car_serie": 6904, + "name": "1.7 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54195, + "fields": { + "id_car_serie": 6904, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54197, + "fields": { + "id_car_serie": 6904, + "name": "1.7 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54199, + "fields": { + "id_car_serie": 6904, + "name": "1.9 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54200, + "fields": { + "id_car_serie": 6904, + "name": "1.9 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54203, + "fields": { + "id_car_serie": 6906, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54208, + "fields": { + "id_car_serie": 6906, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54209, + "fields": { + "id_car_serie": 6906, + "name": "1.6 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54214, + "fields": { + "id_car_serie": 6906, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54215, + "fields": { + "id_car_serie": 6906, + "name": "2.1 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54223, + "fields": { + "id_car_serie": 6907, + "name": "1.6 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54224, + "fields": { + "id_car_serie": 6907, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54225, + "fields": { + "id_car_serie": 6907, + "name": "1.8 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54226, + "fields": { + "id_car_serie": 6907, + "name": "1.8 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54227, + "fields": { + "id_car_serie": 6907, + "name": "1.8 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54228, + "fields": { + "id_car_serie": 6907, + "name": "1.8 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54229, + "fields": { + "id_car_serie": 6907, + "name": "1.8 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54230, + "fields": { + "id_car_serie": 6907, + "name": "2.1 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54231, + "fields": { + "id_car_serie": 6907, + "name": "2.1 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54232, + "fields": { + "id_car_serie": 6907, + "name": "2.1 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54233, + "fields": { + "id_car_serie": 6907, + "name": "2.1 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54280, + "fields": { + "id_car_serie": 6910, + "name": "1.6 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54282, + "fields": { + "id_car_serie": 6910, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54283, + "fields": { + "id_car_serie": 6910, + "name": "1.8 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54285, + "fields": { + "id_car_serie": 6910, + "name": "1.8 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54287, + "fields": { + "id_car_serie": 6910, + "name": "1.8 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54288, + "fields": { + "id_car_serie": 6910, + "name": "1.8 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54290, + "fields": { + "id_car_serie": 6910, + "name": "1.8 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54295, + "fields": { + "id_car_serie": 6910, + "name": "2.1 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54297, + "fields": { + "id_car_serie": 6910, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54298, + "fields": { + "id_car_serie": 6910, + "name": "2.1 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54305, + "fields": { + "id_car_serie": 6910, + "name": "280 3.0 AT (231 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54430, + "fields": { + "id_car_serie": 6914, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54431, + "fields": { + "id_car_serie": 6914, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54432, + "fields": { + "id_car_serie": 6914, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54433, + "fields": { + "id_car_serie": 6914, + "name": "2.0 AT (192 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54434, + "fields": { + "id_car_serie": 6914, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54435, + "fields": { + "id_car_serie": 6914, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54436, + "fields": { + "id_car_serie": 6914, + "name": "2.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54437, + "fields": { + "id_car_serie": 6914, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54438, + "fields": { + "id_car_serie": 6914, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54443, + "fields": { + "id_car_serie": 6914, + "name": "2.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54444, + "fields": { + "id_car_serie": 6914, + "name": "2.2 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54447, + "fields": { + "id_car_serie": 6914, + "name": "2.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54448, + "fields": { + "id_car_serie": 6914, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54463, + "fields": { + "id_car_serie": 6915, + "name": "1.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54485, + "fields": { + "id_car_serie": 6915, + "name": "1.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54486, + "fields": { + "id_car_serie": 6915, + "name": "1.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54495, + "fields": { + "id_car_serie": 6918, + "name": "1.6 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 54496, + "fields": { + "id_car_serie": 6918, + "name": "1.6 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 54497, + "fields": { + "id_car_serie": 6918, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 54498, + "fields": { + "id_car_serie": 6918, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 54505, + "fields": { + "id_car_serie": 6919, + "name": "1.8 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54506, + "fields": { + "id_car_serie": 6919, + "name": "1.8 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54507, + "fields": { + "id_car_serie": 6919, + "name": "1.8 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54508, + "fields": { + "id_car_serie": 6919, + "name": "200 2.2d AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54510, + "fields": { + "id_car_serie": 6919, + "name": "200 2.2d MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54512, + "fields": { + "id_car_serie": 6919, + "name": "2.5 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54513, + "fields": { + "id_car_serie": 6919, + "name": "2.5 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54514, + "fields": { + "id_car_serie": 6919, + "name": "3.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54515, + "fields": { + "id_car_serie": 6919, + "name": "3.5 MT (272 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54516, + "fields": { + "id_car_serie": 6920, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54518, + "fields": { + "id_car_serie": 6920, + "name": "2.0 AT (192 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54519, + "fields": { + "id_car_serie": 6920, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54521, + "fields": { + "id_car_serie": 6920, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54524, + "fields": { + "id_car_serie": 6920, + "name": "3.2 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54525, + "fields": { + "id_car_serie": 6920, + "name": "4.3 AT (279 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54527, + "fields": { + "id_car_serie": 6921, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54529, + "fields": { + "id_car_serie": 6921, + "name": "2.0 AT (192 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54530, + "fields": { + "id_car_serie": 6921, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54532, + "fields": { + "id_car_serie": 6921, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54533, + "fields": { + "id_car_serie": 6921, + "name": "2.3 AT (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54535, + "fields": { + "id_car_serie": 6921, + "name": "2.3 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54537, + "fields": { + "id_car_serie": 6921, + "name": "3.2 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54538, + "fields": { + "id_car_serie": 6921, + "name": "4.3 AT (279 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54601, + "fields": { + "id_car_serie": 6929, + "name": "350 3.5d AT (136 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54636, + "fields": { + "id_car_serie": 6933, + "name": "350 3.0d AT (211 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54638, + "fields": { + "id_car_serie": 6933, + "name": "320 3.0d AT (224 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54643, + "fields": { + "id_car_serie": 6934, + "name": "1.6 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 54644, + "fields": { + "id_car_serie": 6934, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 54651, + "fields": { + "id_car_serie": 6934, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 54652, + "fields": { + "id_car_serie": 6935, + "name": "2.1 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54658, + "fields": { + "id_car_serie": 6935, + "name": "2.1 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54672, + "fields": { + "id_car_serie": 6936, + "name": "300 3.0d AT (190 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54674, + "fields": { + "id_car_serie": 6936, + "name": "320 3.0d AT (211 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54677, + "fields": { + "id_car_serie": 6936, + "name": "350 3.0d AT (224 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54687, + "fields": { + "id_car_serie": 6937, + "name": "270 2.7d AT (163 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54689, + "fields": { + "id_car_serie": 6937, + "name": "270 2.7d MT (163 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54705, + "fields": { + "id_car_serie": 6941, + "name": "3.7 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54706, + "fields": { + "id_car_serie": 6941, + "name": "3.7 MT (245 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54713, + "fields": { + "id_car_serie": 6941, + "name": "5.5 AT (500 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54736, + "fields": { + "id_car_serie": 6943, + "name": "3.5 AT (195 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54737, + "fields": { + "id_car_serie": 6943, + "name": "3.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54738, + "fields": { + "id_car_serie": 6943, + "name": "3.5 MT (195 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54739, + "fields": { + "id_car_serie": 6943, + "name": "3.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54740, + "fields": { + "id_car_serie": 6943, + "name": "3.8 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54741, + "fields": { + "id_car_serie": 6943, + "name": "3.8 MT (218 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54742, + "fields": { + "id_car_serie": 6943, + "name": "4.5 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54743, + "fields": { + "id_car_serie": 6943, + "name": "4.5 AT (225 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54744, + "fields": { + "id_car_serie": 6943, + "name": "4.5 MT (218 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54745, + "fields": { + "id_car_serie": 6943, + "name": "4.5 MT (225 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54746, + "fields": { + "id_car_serie": 6943, + "name": "5.0 AT (241 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54747, + "fields": { + "id_car_serie": 6943, + "name": "5.0 MT (241 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54752, + "fields": { + "id_car_serie": 6944, + "name": "3.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54753, + "fields": { + "id_car_serie": 6944, + "name": "3.0 AT (188 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54754, + "fields": { + "id_car_serie": 6944, + "name": "3.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54755, + "fields": { + "id_car_serie": 6944, + "name": "3.0 MT (188 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54756, + "fields": { + "id_car_serie": 6944, + "name": "3.5 AT (195 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54757, + "fields": { + "id_car_serie": 6944, + "name": "3.5 MT (195 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54758, + "fields": { + "id_car_serie": 6944, + "name": "3.8 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54759, + "fields": { + "id_car_serie": 6944, + "name": "3.8 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54760, + "fields": { + "id_car_serie": 6944, + "name": "3.8 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54761, + "fields": { + "id_car_serie": 6944, + "name": "3.8 MT (218 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54762, + "fields": { + "id_car_serie": 6944, + "name": "4.2 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54763, + "fields": { + "id_car_serie": 6944, + "name": "4.2 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54764, + "fields": { + "id_car_serie": 6944, + "name": "4.2 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54765, + "fields": { + "id_car_serie": 6944, + "name": "4.2 MT (218 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54766, + "fields": { + "id_car_serie": 6944, + "name": "4.5 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54767, + "fields": { + "id_car_serie": 6944, + "name": "4.5 AT (224 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54768, + "fields": { + "id_car_serie": 6944, + "name": "4.5 MT (218 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54769, + "fields": { + "id_car_serie": 6944, + "name": "4.5 MT (224 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54770, + "fields": { + "id_car_serie": 6944, + "name": "5.0 AT (223 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54771, + "fields": { + "id_car_serie": 6944, + "name": "5.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54772, + "fields": { + "id_car_serie": 6944, + "name": "5.0 AT (241 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54773, + "fields": { + "id_car_serie": 6944, + "name": "5.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54774, + "fields": { + "id_car_serie": 6944, + "name": "5.0 MT (223 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54775, + "fields": { + "id_car_serie": 6944, + "name": "5.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54776, + "fields": { + "id_car_serie": 6944, + "name": "5.0 MT (241 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54777, + "fields": { + "id_car_serie": 6944, + "name": "5.0 MT (245 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54817, + "fields": { + "id_car_serie": 6949, + "name": "3.0 CDI TouchShift L2H1 (204 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54819, + "fields": { + "id_car_serie": 6949, + "name": "3.2 TouchShift L1H1 (218 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54821, + "fields": { + "id_car_serie": 6949, + "name": "3.5 TouchShift L3H1 (258 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54822, + "fields": { + "id_car_serie": 6953, + "name": "3.8 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54823, + "fields": { + "id_car_serie": 6953, + "name": "3.8 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54824, + "fields": { + "id_car_serie": 6953, + "name": "4.6 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54825, + "fields": { + "id_car_serie": 6953, + "name": "4.9 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54826, + "fields": { + "id_car_serie": 6954, + "name": "2.3 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54827, + "fields": { + "id_car_serie": 6954, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54828, + "fields": { + "id_car_serie": 6954, + "name": "3.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54829, + "fields": { + "id_car_serie": 6954, + "name": "3.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54830, + "fields": { + "id_car_serie": 6954, + "name": "4.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54831, + "fields": { + "id_car_serie": 6954, + "name": "4.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54832, + "fields": { + "id_car_serie": 6955, + "name": "2.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54833, + "fields": { + "id_car_serie": 6955, + "name": "2.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54834, + "fields": { + "id_car_serie": 6955, + "name": "3.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54835, + "fields": { + "id_car_serie": 6955, + "name": "3.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54836, + "fields": { + "id_car_serie": 6955, + "name": "4.2 AT (119 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54837, + "fields": { + "id_car_serie": 6955, + "name": "4.2 MT (119 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54838, + "fields": { + "id_car_serie": 6955, + "name": "4.9 AT (134 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54839, + "fields": { + "id_car_serie": 6955, + "name": "4.9 MT (134 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54840, + "fields": { + "id_car_serie": 6956, + "name": "2.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54841, + "fields": { + "id_car_serie": 6956, + "name": "2.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54842, + "fields": { + "id_car_serie": 6956, + "name": "3.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54843, + "fields": { + "id_car_serie": 6956, + "name": "3.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54844, + "fields": { + "id_car_serie": 6956, + "name": "4.2 AT (119 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54845, + "fields": { + "id_car_serie": 6956, + "name": "4.2 MT (119 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54846, + "fields": { + "id_car_serie": 6956, + "name": "4.9 AT (134 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54847, + "fields": { + "id_car_serie": 6956, + "name": "4.9 MT (134 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54848, + "fields": { + "id_car_serie": 6957, + "name": "2.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54849, + "fields": { + "id_car_serie": 6957, + "name": "2.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54850, + "fields": { + "id_car_serie": 6957, + "name": "3.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54851, + "fields": { + "id_car_serie": 6957, + "name": "3.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54852, + "fields": { + "id_car_serie": 6957, + "name": "4.2 AT (119 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54853, + "fields": { + "id_car_serie": 6957, + "name": "4.2 MT (119 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54854, + "fields": { + "id_car_serie": 6957, + "name": "4.9 AT (134 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54855, + "fields": { + "id_car_serie": 6957, + "name": "4.9 MT (134 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54856, + "fields": { + "id_car_serie": 6958, + "name": "4.9 AT (134 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54857, + "fields": { + "id_car_serie": 6958, + "name": "5.8 AT (149 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54858, + "fields": { + "id_car_serie": 6958, + "name": "6.6 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54859, + "fields": { + "id_car_serie": 6959, + "name": "4.9 AT (134 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54860, + "fields": { + "id_car_serie": 6959, + "name": "5.8 AT (149 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54861, + "fields": { + "id_car_serie": 6959, + "name": "6.6 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54862, + "fields": { + "id_car_serie": 6960, + "name": "5.8 AT (161 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54863, + "fields": { + "id_car_serie": 6963, + "name": "2.3 AT Hybrid 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54865, + "fields": { + "id_car_serie": 6963, + "name": "2.3 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54866, + "fields": { + "id_car_serie": 6963, + "name": "2.3 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54867, + "fields": { + "id_car_serie": 6963, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54868, + "fields": { + "id_car_serie": 6963, + "name": "3.0 AT 4WD (203 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54870, + "fields": { + "id_car_serie": 6967, + "name": "4.6 AT (235 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54873, + "fields": { + "id_car_serie": 6968, + "name": "4.0 AT (208 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54874, + "fields": { + "id_car_serie": 6968, + "name": "4.0 AT (213 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54875, + "fields": { + "id_car_serie": 6968, + "name": "4.0 AT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54876, + "fields": { + "id_car_serie": 6968, + "name": "4.9 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54877, + "fields": { + "id_car_serie": 6968, + "name": "4.9 AT AWD (218 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54878, + "fields": { + "id_car_serie": 6970, + "name": "3.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54879, + "fields": { + "id_car_serie": 6970, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54880, + "fields": { + "id_car_serie": 6971, + "name": "3.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54881, + "fields": { + "id_car_serie": 6971, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54884, + "fields": { + "id_car_serie": 6973, + "name": "3.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54885, + "fields": { + "id_car_serie": 6973, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54886, + "fields": { + "id_car_serie": 6974, + "name": "3.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54887, + "fields": { + "id_car_serie": 6974, + "name": "3.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54888, + "fields": { + "id_car_serie": 6975, + "name": "3.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54889, + "fields": { + "id_car_serie": 6975, + "name": "3.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54891, + "fields": { + "id_car_serie": 6976, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54893, + "fields": { + "id_car_serie": 6977, + "name": "3.0 AT (157 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54895, + "fields": { + "id_car_serie": 6978, + "name": "2.3 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54896, + "fields": { + "id_car_serie": 6978, + "name": "2.3 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54900, + "fields": { + "id_car_serie": 6996, + "name": "4.6 MT (320 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54901, + "fields": { + "id_car_serie": 6998, + "name": "0.5 CVT (21 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 54907, + "fields": { + "id_car_serie": 7004, + "name": "1.6 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54908, + "fields": { + "id_car_serie": 7004, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54921, + "fields": { + "id_car_serie": 7011, + "name": "1.6 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 54922, + "fields": { + "id_car_serie": 7011, + "name": "1.6 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 54925, + "fields": { + "id_car_serie": 7012, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54926, + "fields": { + "id_car_serie": 7012, + "name": "2.0 AT 4WD (126 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54927, + "fields": { + "id_car_serie": 7012, + "name": "2.0 Turbo R AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54928, + "fields": { + "id_car_serie": 7012, + "name": "2.4 GDI AT 4WD (139 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54929, + "fields": { + "id_car_serie": 7012, + "name": "2.4 GDI AT (139 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54930, + "fields": { + "id_car_serie": 7015, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54931, + "fields": { + "id_car_serie": 7015, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54932, + "fields": { + "id_car_serie": 7015, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54933, + "fields": { + "id_car_serie": 7015, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54934, + "fields": { + "id_car_serie": 7015, + "name": "2.0 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54935, + "fields": { + "id_car_serie": 7017, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54936, + "fields": { + "id_car_serie": 7017, + "name": "2.0 AT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54937, + "fields": { + "id_car_serie": 7017, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54938, + "fields": { + "id_car_serie": 7017, + "name": "2.0 TD MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54940, + "fields": { + "id_car_serie": 7017, + "name": "2.4 AT (146 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54941, + "fields": { + "id_car_serie": 7018, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54942, + "fields": { + "id_car_serie": 7018, + "name": "1.3 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54943, + "fields": { + "id_car_serie": 7018, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54944, + "fields": { + "id_car_serie": 7018, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54945, + "fields": { + "id_car_serie": 7018, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54946, + "fields": { + "id_car_serie": 7018, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54947, + "fields": { + "id_car_serie": 7018, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54948, + "fields": { + "id_car_serie": 7018, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54949, + "fields": { + "id_car_serie": 7019, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54952, + "fields": { + "id_car_serie": 7019, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54955, + "fields": { + "id_car_serie": 7019, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54958, + "fields": { + "id_car_serie": 7020, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54961, + "fields": { + "id_car_serie": 7020, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54962, + "fields": { + "id_car_serie": 7020, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54968, + "fields": { + "id_car_serie": 7021, + "name": "1.5 DI-D MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54969, + "fields": { + "id_car_serie": 7021, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54980, + "fields": { + "id_car_serie": 7027, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54982, + "fields": { + "id_car_serie": 7027, + "name": "2.5 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54984, + "fields": { + "id_car_serie": 7027, + "name": "3.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54985, + "fields": { + "id_car_serie": 7029, + "name": "1.8 AT GDI (165 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54986, + "fields": { + "id_car_serie": 7029, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54987, + "fields": { + "id_car_serie": 7029, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54988, + "fields": { + "id_car_serie": 7031, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54989, + "fields": { + "id_car_serie": 7031, + "name": "0.7 AT (50 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54990, + "fields": { + "id_car_serie": 7034, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54991, + "fields": { + "id_car_serie": 7034, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54998, + "fields": { + "id_car_serie": 7035, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 54999, + "fields": { + "id_car_serie": 7035, + "name": "1.8 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55001, + "fields": { + "id_car_serie": 7035, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55002, + "fields": { + "id_car_serie": 7035, + "name": "1.8 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55004, + "fields": { + "id_car_serie": 7035, + "name": "1.8 AT (76 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55005, + "fields": { + "id_car_serie": 7035, + "name": "1.8 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55010, + "fields": { + "id_car_serie": 7045, + "name": "2.0 T 6MT (286 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55011, + "fields": { + "id_car_serie": 7046, + "name": "2.0 T MT (330 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55012, + "fields": { + "id_car_serie": 7046, + "name": "2.0 T MT (411 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55013, + "fields": { + "id_car_serie": 7047, + "name": "2.0 T MT (280 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55014, + "fields": { + "id_car_serie": 7047, + "name": "2.0 T MT (310 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55015, + "fields": { + "id_car_serie": 7048, + "name": "2.0 Twin-Scroll Turbo MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55016, + "fields": { + "id_car_serie": 7049, + "name": "2.0 T MT (353 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55017, + "fields": { + "id_car_serie": 7050, + "name": "2.0 Twin-Scroll Turbo MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55018, + "fields": { + "id_car_serie": 7051, + "name": "2.0 T MT (270 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55019, + "fields": { + "id_car_serie": 7052, + "name": "2.0 T MT (260 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55020, + "fields": { + "id_car_serie": 7053, + "name": "2.0 T MT (250 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55021, + "fields": { + "id_car_serie": 7054, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55022, + "fields": { + "id_car_serie": 7054, + "name": "1.8 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55023, + "fields": { + "id_car_serie": 7054, + "name": "1.8 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55025, + "fields": { + "id_car_serie": 7054, + "name": "2.0d CVT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55085, + "fields": { + "id_car_serie": 7061, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55086, + "fields": { + "id_car_serie": 7061, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55087, + "fields": { + "id_car_serie": 7061, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55090, + "fields": { + "id_car_serie": 7061, + "name": "1.6 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55091, + "fields": { + "id_car_serie": 7061, + "name": "1.8 T AT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55093, + "fields": { + "id_car_serie": 7061, + "name": "1.8 T MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55121, + "fields": { + "id_car_serie": 7064, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55122, + "fields": { + "id_car_serie": 7064, + "name": "1.5 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55123, + "fields": { + "id_car_serie": 7064, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55124, + "fields": { + "id_car_serie": 7064, + "name": "1.5 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55125, + "fields": { + "id_car_serie": 7064, + "name": "1.8 T MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55126, + "fields": { + "id_car_serie": 7064, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55134, + "fields": { + "id_car_serie": 7066, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55135, + "fields": { + "id_car_serie": 7066, + "name": "1.4 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55136, + "fields": { + "id_car_serie": 7066, + "name": "1.4 4MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55139, + "fields": { + "id_car_serie": 7066, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55140, + "fields": { + "id_car_serie": 7066, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55144, + "fields": { + "id_car_serie": 7068, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55145, + "fields": { + "id_car_serie": 7069, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55146, + "fields": { + "id_car_serie": 7073, + "name": "1.3 AT (79 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55147, + "fields": { + "id_car_serie": 7073, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55148, + "fields": { + "id_car_serie": 7073, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55149, + "fields": { + "id_car_serie": 7073, + "name": "1.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55150, + "fields": { + "id_car_serie": 7073, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55151, + "fields": { + "id_car_serie": 7073, + "name": "1.5 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55152, + "fields": { + "id_car_serie": 7073, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55153, + "fields": { + "id_car_serie": 7073, + "name": "1.5 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55154, + "fields": { + "id_car_serie": 7073, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55155, + "fields": { + "id_car_serie": 7073, + "name": "1.5 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55156, + "fields": { + "id_car_serie": 7073, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55157, + "fields": { + "id_car_serie": 7073, + "name": "1.6 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55158, + "fields": { + "id_car_serie": 7073, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55159, + "fields": { + "id_car_serie": 7073, + "name": "1.6 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55160, + "fields": { + "id_car_serie": 7073, + "name": "1.8 D AT (76 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55161, + "fields": { + "id_car_serie": 7073, + "name": "1.8 D AT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55162, + "fields": { + "id_car_serie": 7073, + "name": "1.8 D MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55163, + "fields": { + "id_car_serie": 7073, + "name": "1.8 D MT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55164, + "fields": { + "id_car_serie": 7073, + "name": "2.0 D AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55166, + "fields": { + "id_car_serie": 7073, + "name": "2.0 D MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55168, + "fields": { + "id_car_serie": 7074, + "name": "1.3 AT (79 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55169, + "fields": { + "id_car_serie": 7074, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55170, + "fields": { + "id_car_serie": 7074, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55171, + "fields": { + "id_car_serie": 7074, + "name": "1.5 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55172, + "fields": { + "id_car_serie": 7074, + "name": "1.5 AT (92 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55173, + "fields": { + "id_car_serie": 7074, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55174, + "fields": { + "id_car_serie": 7074, + "name": "1.5 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55175, + "fields": { + "id_car_serie": 7074, + "name": "1.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55176, + "fields": { + "id_car_serie": 7074, + "name": "1.6 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55177, + "fields": { + "id_car_serie": 7074, + "name": "1.6 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55178, + "fields": { + "id_car_serie": 7075, + "name": "1.3 AT (79 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55179, + "fields": { + "id_car_serie": 7075, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55180, + "fields": { + "id_car_serie": 7075, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55181, + "fields": { + "id_car_serie": 7075, + "name": "1.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55182, + "fields": { + "id_car_serie": 7075, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55183, + "fields": { + "id_car_serie": 7075, + "name": "1.5 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55184, + "fields": { + "id_car_serie": 7075, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55185, + "fields": { + "id_car_serie": 7075, + "name": "1.5 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55186, + "fields": { + "id_car_serie": 7075, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55187, + "fields": { + "id_car_serie": 7075, + "name": "1.5 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55190, + "fields": { + "id_car_serie": 7075, + "name": "1.6 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55191, + "fields": { + "id_car_serie": 7075, + "name": "1.6 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55192, + "fields": { + "id_car_serie": 7075, + "name": "1.6 MT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55193, + "fields": { + "id_car_serie": 7075, + "name": "1.6 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55196, + "fields": { + "id_car_serie": 7077, + "name": "1.5 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55197, + "fields": { + "id_car_serie": 7077, + "name": "1.5 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55198, + "fields": { + "id_car_serie": 7078, + "name": "3.5 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55199, + "fields": { + "id_car_serie": 7078, + "name": "3.5 GDI MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55200, + "fields": { + "id_car_serie": 7078, + "name": "3.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55201, + "fields": { + "id_car_serie": 7079, + "name": "3.5 GDI AT (220 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55202, + "fields": { + "id_car_serie": 7079, + "name": "3.5 GDI MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55203, + "fields": { + "id_car_serie": 7079, + "name": "3.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55204, + "fields": { + "id_car_serie": 7080, + "name": "3.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55205, + "fields": { + "id_car_serie": 7080, + "name": "3.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55206, + "fields": { + "id_car_serie": 7080, + "name": "3.5 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55207, + "fields": { + "id_car_serie": 7080, + "name": "3.5 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55208, + "fields": { + "id_car_serie": 7081, + "name": "3.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55209, + "fields": { + "id_car_serie": 7081, + "name": "3.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55210, + "fields": { + "id_car_serie": 7081, + "name": "3.5 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55211, + "fields": { + "id_car_serie": 7081, + "name": "3.5 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55212, + "fields": { + "id_car_serie": 7082, + "name": "2.5 TD AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55213, + "fields": { + "id_car_serie": 7082, + "name": "2.5 TD MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55214, + "fields": { + "id_car_serie": 7082, + "name": "2.6 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55215, + "fields": { + "id_car_serie": 7082, + "name": "2.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55216, + "fields": { + "id_car_serie": 7082, + "name": "3.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55217, + "fields": { + "id_car_serie": 7082, + "name": "3.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55218, + "fields": { + "id_car_serie": 7083, + "name": "2.5 TD AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55219, + "fields": { + "id_car_serie": 7083, + "name": "2.5 TD MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55220, + "fields": { + "id_car_serie": 7083, + "name": "2.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55221, + "fields": { + "id_car_serie": 7083, + "name": "2.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55222, + "fields": { + "id_car_serie": 7083, + "name": "3.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55223, + "fields": { + "id_car_serie": 7083, + "name": "3.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55229, + "fields": { + "id_car_serie": 7084, + "name": "3.0 AT (167 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55230, + "fields": { + "id_car_serie": 7084, + "name": "3.0 AT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55231, + "fields": { + "id_car_serie": 7084, + "name": "3.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55233, + "fields": { + "id_car_serie": 7084, + "name": "3.0 MT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55235, + "fields": { + "id_car_serie": 7084, + "name": "3.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55236, + "fields": { + "id_car_serie": 7084, + "name": "3.5 AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55238, + "fields": { + "id_car_serie": 7086, + "name": "2.5 TD MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55239, + "fields": { + "id_car_serie": 7086, + "name": "3.0 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55240, + "fields": { + "id_car_serie": 7086, + "name": "3.0 MT (173 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55241, + "fields": { + "id_car_serie": 7086, + "name": "3.2 DI-D AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55242, + "fields": { + "id_car_serie": 7086, + "name": "3.2 DI-D MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55243, + "fields": { + "id_car_serie": 7086, + "name": "3.5 GDI AT (220 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55244, + "fields": { + "id_car_serie": 7086, + "name": "3.5 MT (194 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55245, + "fields": { + "id_car_serie": 7087, + "name": "2.5 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55246, + "fields": { + "id_car_serie": 7087, + "name": "3.0 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55247, + "fields": { + "id_car_serie": 7087, + "name": "3.0 MT (173 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55248, + "fields": { + "id_car_serie": 7087, + "name": "3.2 DI-D AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55249, + "fields": { + "id_car_serie": 7087, + "name": "3.2 DI-D MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55267, + "fields": { + "id_car_serie": 7088, + "name": "3.5 AT (194 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55269, + "fields": { + "id_car_serie": 7088, + "name": "3.5 GDI AT (203 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55272, + "fields": { + "id_car_serie": 7088, + "name": "3.5 MT (194 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55274, + "fields": { + "id_car_serie": 7088, + "name": "3.5 GDI MT (203 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55288, + "fields": { + "id_car_serie": 7089, + "name": "3.5 GDI AT (203 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55291, + "fields": { + "id_car_serie": 7089, + "name": "3.5 GDI MT (202 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55297, + "fields": { + "id_car_serie": 7090, + "name": "2.5 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55301, + "fields": { + "id_car_serie": 7091, + "name": "2.5 TD AT (99 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55304, + "fields": { + "id_car_serie": 7091, + "name": "2.5 TD MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55308, + "fields": { + "id_car_serie": 7091, + "name": "3.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55309, + "fields": { + "id_car_serie": 7091, + "name": "3.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55310, + "fields": { + "id_car_serie": 7093, + "name": "0.7 AT 2WD (52 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55312, + "fields": { + "id_car_serie": 7093, + "name": "0.7 Turbo AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55316, + "fields": { + "id_car_serie": 7093, + "name": "0.7 Turbo MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55318, + "fields": { + "id_car_serie": 7099, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55319, + "fields": { + "id_car_serie": 7099, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55320, + "fields": { + "id_car_serie": 7099, + "name": "2.0 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55321, + "fields": { + "id_car_serie": 7099, + "name": "2.0 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55322, + "fields": { + "id_car_serie": 7099, + "name": "2.0 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55323, + "fields": { + "id_car_serie": 7099, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55324, + "fields": { + "id_car_serie": 7099, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55325, + "fields": { + "id_car_serie": 7099, + "name": "2.0 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55326, + "fields": { + "id_car_serie": 7099, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55327, + "fields": { + "id_car_serie": 7099, + "name": "2.0 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55328, + "fields": { + "id_car_serie": 7099, + "name": "2.0 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55329, + "fields": { + "id_car_serie": 7099, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55330, + "fields": { + "id_car_serie": 7099, + "name": "2.0 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55331, + "fields": { + "id_car_serie": 7101, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55335, + "fields": { + "id_car_serie": 7109, + "name": "2.5 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55338, + "fields": { + "id_car_serie": 7120, + "name": "1.2 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55339, + "fields": { + "id_car_serie": 7120, + "name": "1.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55349, + "fields": { + "id_car_serie": 7145, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55351, + "fields": { + "id_car_serie": 7146, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55352, + "fields": { + "id_car_serie": 7146, + "name": "2.2 D MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55356, + "fields": { + "id_car_serie": 7148, + "name": "2.0 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55358, + "fields": { + "id_car_serie": 7150, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55363, + "fields": { + "id_car_serie": 7162, + "name": "1.6 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55364, + "fields": { + "id_car_serie": 7162, + "name": "1.8 SSS AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55369, + "fields": { + "id_car_serie": 7164, + "name": "1.8 SSS AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55370, + "fields": { + "id_car_serie": 7164, + "name": "1.8 SSS AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55371, + "fields": { + "id_car_serie": 7164, + "name": "1.8 SSS MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55372, + "fields": { + "id_car_serie": 7164, + "name": "1.8 SSS MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55373, + "fields": { + "id_car_serie": 7164, + "name": "2.0 SSS MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55374, + "fields": { + "id_car_serie": 7164, + "name": "2.0 T SSS MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55375, + "fields": { + "id_car_serie": 7165, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55389, + "fields": { + "id_car_serie": 7167, + "name": "2.0 D MT (66 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55392, + "fields": { + "id_car_serie": 7168, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55393, + "fields": { + "id_car_serie": 7168, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55395, + "fields": { + "id_car_serie": 7169, + "name": "1.6 MT (96 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55398, + "fields": { + "id_car_serie": 7170, + "name": "1.8 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55404, + "fields": { + "id_car_serie": 7173, + "name": "3.0 T AT (270 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55409, + "fields": { + "id_car_serie": 7176, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55411, + "fields": { + "id_car_serie": 7177, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55412, + "fields": { + "id_car_serie": 7177, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55414, + "fields": { + "id_car_serie": 7182, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55415, + "fields": { + "id_car_serie": 7183, + "name": "1.2 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55416, + "fields": { + "id_car_serie": 7191, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55417, + "fields": { + "id_car_serie": 7192, + "name": "1.3 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55419, + "fields": { + "id_car_serie": 7195, + "name": "3.5 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55420, + "fields": { + "id_car_serie": 7196, + "name": "3.0 TD AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55422, + "fields": { + "id_car_serie": 7200, + "name": "3.5 AT (313 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55425, + "fields": { + "id_car_serie": 7214, + "name": "1.2 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55430, + "fields": { + "id_car_serie": 7216, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55432, + "fields": { + "id_car_serie": 7217, + "name": "1.0 AT (50 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55433, + "fields": { + "id_car_serie": 7219, + "name": "3.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55434, + "fields": { + "id_car_serie": 7219, + "name": "3.5 AT (255 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55436, + "fields": { + "id_car_serie": 7223, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55437, + "fields": { + "id_car_serie": 7223, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55438, + "fields": { + "id_car_serie": 7225, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55439, + "fields": { + "id_car_serie": 7225, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55440, + "fields": { + "id_car_serie": 7226, + "name": "1.5 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55441, + "fields": { + "id_car_serie": 7226, + "name": "1.5 D MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55442, + "fields": { + "id_car_serie": 7227, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55443, + "fields": { + "id_car_serie": 7227, + "name": "1.4 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55446, + "fields": { + "id_car_serie": 7228, + "name": "1.5 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55447, + "fields": { + "id_car_serie": 7229, + "name": "1.3 CVT (75 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55449, + "fields": { + "id_car_serie": 7230, + "name": "1.0 MT Turbo (85 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55452, + "fields": { + "id_car_serie": 7234, + "name": "2.5 dCi MT (174 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55460, + "fields": { + "id_car_serie": 7240, + "name": "1.5 DCI MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55461, + "fields": { + "id_car_serie": 7240, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55462, + "fields": { + "id_car_serie": 7241, + "name": "2.0 CVT (133 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 55467, + "fields": { + "id_car_serie": 7247, + "name": "3.5 AT (243 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55471, + "fields": { + "id_car_serie": 7248, + "name": "3.0 4WD AT (148 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55472, + "fields": { + "id_car_serie": 7249, + "name": "2.8 D MT (129 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55475, + "fields": { + "id_car_serie": 7250, + "name": "4.2 TD AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55479, + "fields": { + "id_car_serie": 7252, + "name": "2.8 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55481, + "fields": { + "id_car_serie": 7253, + "name": "2.8 D MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55485, + "fields": { + "id_car_serie": 7254, + "name": "3.3 D MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55486, + "fields": { + "id_car_serie": 7267, + "name": "3.8 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55487, + "fields": { + "id_car_serie": 7268, + "name": "5.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55488, + "fields": { + "id_car_serie": 7268, + "name": "5.7 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55489, + "fields": { + "id_car_serie": 7269, + "name": "5.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55490, + "fields": { + "id_car_serie": 7269, + "name": "5.7 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55497, + "fields": { + "id_car_serie": 7278, + "name": "1.6 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55498, + "fields": { + "id_car_serie": 7279, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55501, + "fields": { + "id_car_serie": 48826, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55503, + "fields": { + "id_car_serie": 7281, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55504, + "fields": { + "id_car_serie": 7281, + "name": "1.6 Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55506, + "fields": { + "id_car_serie": 7282, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55507, + "fields": { + "id_car_serie": 7283, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55509, + "fields": { + "id_car_serie": 7283, + "name": "1.7 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55510, + "fields": { + "id_car_serie": 7283, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55512, + "fields": { + "id_car_serie": 7284, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 55513, + "fields": { + "id_car_serie": 7284, + "name": "1.7 TD MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55514, + "fields": { + "id_car_serie": 7285, + "name": "1.6 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55515, + "fields": { + "id_car_serie": 7286, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55516, + "fields": { + "id_car_serie": 7286, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55517, + "fields": { + "id_car_serie": 7286, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55520, + "fields": { + "id_car_serie": 7288, + "name": "1.4 ecoFLEX MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55521, + "fields": { + "id_car_serie": 7288, + "name": "1.6 Easytronic (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55522, + "fields": { + "id_car_serie": 7288, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55523, + "fields": { + "id_car_serie": 7288, + "name": "1.9 CDTI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55525, + "fields": { + "id_car_serie": 7289, + "name": "1.4 ecoFLEX Easytronic (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55531, + "fields": { + "id_car_serie": 7290, + "name": "1.7 CDTI MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55532, + "fields": { + "id_car_serie": 7290, + "name": "1.9 CDTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55533, + "fields": { + "id_car_serie": 7290, + "name": "1.9 CDTI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55534, + "fields": { + "id_car_serie": 7291, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55535, + "fields": { + "id_car_serie": 7291, + "name": "2.2 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55536, + "fields": { + "id_car_serie": 7292, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55537, + "fields": { + "id_car_serie": 7292, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55538, + "fields": { + "id_car_serie": 7292, + "name": "2.0 T MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55539, + "fields": { + "id_car_serie": 7292, + "name": "2.2 DTi MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55547, + "fields": { + "id_car_serie": 7294, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55550, + "fields": { + "id_car_serie": 7294, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55571, + "fields": { + "id_car_serie": 7297, + "name": "1.4 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55573, + "fields": { + "id_car_serie": 7297, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55590, + "fields": { + "id_car_serie": 7299, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55592, + "fields": { + "id_car_serie": 7299, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55594, + "fields": { + "id_car_serie": 7299, + "name": "1.7 DTi MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55595, + "fields": { + "id_car_serie": 7299, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55596, + "fields": { + "id_car_serie": 7299, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55598, + "fields": { + "id_car_serie": 7300, + "name": "2.0 DTI AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55601, + "fields": { + "id_car_serie": 7300, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55603, + "fields": { + "id_car_serie": 7300, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55609, + "fields": { + "id_car_serie": 7300, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55610, + "fields": { + "id_car_serie": 7300, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55614, + "fields": { + "id_car_serie": 7301, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55618, + "fields": { + "id_car_serie": 7305, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55619, + "fields": { + "id_car_serie": 7306, + "name": "2.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55620, + "fields": { + "id_car_serie": 7306, + "name": "2.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55621, + "fields": { + "id_car_serie": 7306, + "name": "2.8 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55625, + "fields": { + "id_car_serie": 7309, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55626, + "fields": { + "id_car_serie": 7309, + "name": "2.5 TDS MT AWD (115 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55627, + "fields": { + "id_car_serie": 7310, + "name": "2.2 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55628, + "fields": { + "id_car_serie": 7310, + "name": "2.5 TDS MT AWD (115 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55635, + "fields": { + "id_car_serie": 7313, + "name": "2.0 SIDI Turbo Ecotec AT 4x4 (249 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55640, + "fields": { + "id_car_serie": 7314, + "name": "2.0 SIDI Turbo AT 4x4 (249 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55646, + "fields": { + "id_car_serie": 7317, + "name": "1.4 Turbo AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55647, + "fields": { + "id_car_serie": 7317, + "name": "1.7 DT AT (100 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55651, + "fields": { + "id_car_serie": 7318, + "name": "1.8 Easytronic (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55653, + "fields": { + "id_car_serie": 7320, + "name": "3.2 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55654, + "fields": { + "id_car_serie": 7321, + "name": "3.2 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55655, + "fields": { + "id_car_serie": 7323, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55658, + "fields": { + "id_car_serie": 7323, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55659, + "fields": { + "id_car_serie": 7323, + "name": "2.3 TD AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55660, + "fields": { + "id_car_serie": 7323, + "name": "2.4 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55661, + "fields": { + "id_car_serie": 7323, + "name": "2.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55662, + "fields": { + "id_car_serie": 7323, + "name": "3.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55663, + "fields": { + "id_car_serie": 7323, + "name": "3.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55668, + "fields": { + "id_car_serie": 7324, + "name": "2.3 TD MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55669, + "fields": { + "id_car_serie": 7324, + "name": "2.4 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55672, + "fields": { + "id_car_serie": 7324, + "name": "3.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55675, + "fields": { + "id_car_serie": 7326, + "name": "1.7 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55676, + "fields": { + "id_car_serie": 7326, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55677, + "fields": { + "id_car_serie": 7327, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55678, + "fields": { + "id_car_serie": 7327, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55679, + "fields": { + "id_car_serie": 7328, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55680, + "fields": { + "id_car_serie": 7328, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55681, + "fields": { + "id_car_serie": 7328, + "name": "2.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55682, + "fields": { + "id_car_serie": 7328, + "name": "2.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55683, + "fields": { + "id_car_serie": 7328, + "name": "2.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55684, + "fields": { + "id_car_serie": 7328, + "name": "3.0 AT (154 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55685, + "fields": { + "id_car_serie": 7328, + "name": "3.0 MT (154 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55686, + "fields": { + "id_car_serie": 7328, + "name": "3.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55687, + "fields": { + "id_car_serie": 7332, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55690, + "fields": { + "id_car_serie": 7347, + "name": "1.4 2-Tronic (75 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55691, + "fields": { + "id_car_serie": 7347, + "name": "1.6 2-Tronic (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55692, + "fields": { + "id_car_serie": 7348, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55693, + "fields": { + "id_car_serie": 7348, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55694, + "fields": { + "id_car_serie": 7348, + "name": "1.4 MT TD (50 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55695, + "fields": { + "id_car_serie": 7349, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55696, + "fields": { + "id_car_serie": 7349, + "name": "1.6 AT (89 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55698, + "fields": { + "id_car_serie": 7349, + "name": "1.4 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55704, + "fields": { + "id_car_serie": 7358, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55705, + "fields": { + "id_car_serie": 7358, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55706, + "fields": { + "id_car_serie": 7358, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55713, + "fields": { + "id_car_serie": 7361, + "name": "1.4 VTi MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55715, + "fields": { + "id_car_serie": 7361, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55723, + "fields": { + "id_car_serie": 7363, + "name": "1.6 T AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55724, + "fields": { + "id_car_serie": 7363, + "name": "1.6 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55725, + "fields": { + "id_car_serie": 7363, + "name": "1.6 THP MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55726, + "fields": { + "id_car_serie": 7363, + "name": "1.6 HDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55727, + "fields": { + "id_car_serie": 7380, + "name": "1.6 THP MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55731, + "fields": { + "id_car_serie": 7391, + "name": "3.8 AT SSEi (208 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55732, + "fields": { + "id_car_serie": 7397, + "name": "2.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55733, + "fields": { + "id_car_serie": 7397, + "name": "2.3 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55734, + "fields": { + "id_car_serie": 7397, + "name": "3.1 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55735, + "fields": { + "id_car_serie": 7398, + "name": "2.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55736, + "fields": { + "id_car_serie": 7398, + "name": "2.3 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55737, + "fields": { + "id_car_serie": 7398, + "name": "3.1 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55738, + "fields": { + "id_car_serie": 7399, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55739, + "fields": { + "id_car_serie": 7399, + "name": "2.3 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55740, + "fields": { + "id_car_serie": 7399, + "name": "2.5 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55742, + "fields": { + "id_car_serie": 7399, + "name": "3.1 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55743, + "fields": { + "id_car_serie": 7400, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55744, + "fields": { + "id_car_serie": 7400, + "name": "2.3 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55747, + "fields": { + "id_car_serie": 7400, + "name": "3.1 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55748, + "fields": { + "id_car_serie": 7401, + "name": "3.1 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55749, + "fields": { + "id_car_serie": 7402, + "name": "3.1 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55750, + "fields": { + "id_car_serie": 7402, + "name": "3.8 AT GT (197 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55751, + "fields": { + "id_car_serie": 7403, + "name": "2.3 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55752, + "fields": { + "id_car_serie": 7403, + "name": "2.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55753, + "fields": { + "id_car_serie": 7403, + "name": "3.1 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55754, + "fields": { + "id_car_serie": 7403, + "name": "3.1 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55755, + "fields": { + "id_car_serie": 7403, + "name": "3.4 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55756, + "fields": { + "id_car_serie": 7404, + "name": "2.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55757, + "fields": { + "id_car_serie": 7404, + "name": "2.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55758, + "fields": { + "id_car_serie": 7404, + "name": "3.1 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55759, + "fields": { + "id_car_serie": 7404, + "name": "3.1 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55760, + "fields": { + "id_car_serie": 7404, + "name": "3.4 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55763, + "fields": { + "id_car_serie": 7410, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55764, + "fields": { + "id_car_serie": 7410, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55765, + "fields": { + "id_car_serie": 7410, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55766, + "fields": { + "id_car_serie": 7411, + "name": "2.3 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55767, + "fields": { + "id_car_serie": 7411, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55768, + "fields": { + "id_car_serie": 7412, + "name": "2.3 AT (78 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55769, + "fields": { + "id_car_serie": 7412, + "name": "2.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55770, + "fields": { + "id_car_serie": 7412, + "name": "3.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55772, + "fields": { + "id_car_serie": 7416, + "name": "3.8 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55773, + "fields": { + "id_car_serie": 7417, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55774, + "fields": { + "id_car_serie": 7418, + "name": "1.8 AT (124 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55775, + "fields": { + "id_car_serie": 7418, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55786, + "fields": { + "id_car_serie": 7428, + "name": "4.8 AT GTS (405 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55787, + "fields": { + "id_car_serie": 7428, + "name": "4.8 AT Turbo S (550 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55790, + "fields": { + "id_car_serie": 7429, + "name": "4.5 AT Turbo S (521 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55813, + "fields": { + "id_car_serie": 7462, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55815, + "fields": { + "id_car_serie": 7463, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55819, + "fields": { + "id_car_serie": 7463, + "name": "1.9 dT MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55823, + "fields": { + "id_car_serie": 7464, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55824, + "fields": { + "id_car_serie": 7464, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55825, + "fields": { + "id_car_serie": 7464, + "name": "1.9 dT MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55826, + "fields": { + "id_car_serie": 7465, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55827, + "fields": { + "id_car_serie": 7466, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55828, + "fields": { + "id_car_serie": 7466, + "name": "1.7 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55829, + "fields": { + "id_car_serie": 7466, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55831, + "fields": { + "id_car_serie": 4056, + "name": "1.7 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55832, + "fields": { + "id_car_serie": 4056, + "name": "1.9 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55833, + "fields": { + "id_car_serie": 7468, + "name": "1.7 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55835, + "fields": { + "id_car_serie": 7474, + "name": "1.3 AT (58 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55837, + "fields": { + "id_car_serie": 7474, + "name": "1.4 AT (58 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55839, + "fields": { + "id_car_serie": 7475, + "name": "1.0 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55840, + "fields": { + "id_car_serie": 7475, + "name": "1.3 AT (55 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55841, + "fields": { + "id_car_serie": 7475, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55842, + "fields": { + "id_car_serie": 7475, + "name": "1.4 AT (58 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55856, + "fields": { + "id_car_serie": 7479, + "name": "0.9 TCe MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 55857, + "fields": { + "id_car_serie": 7479, + "name": "1.5 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 55861, + "fields": { + "id_car_serie": 7484, + "name": "2.0 CVT (138 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55862, + "fields": { + "id_car_serie": 7486, + "name": "1.5 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55863, + "fields": { + "id_car_serie": 7486, + "name": "1.5 dCi MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55871, + "fields": { + "id_car_serie": 7488, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55874, + "fields": { + "id_car_serie": 7488, + "name": "1.9 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55876, + "fields": { + "id_car_serie": 7489, + "name": "2.0 dCi AT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55877, + "fields": { + "id_car_serie": 7489, + "name": "2.5 MT 4x4 (171 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55878, + "fields": { + "id_car_serie": 7490, + "name": "2.0 dCi Euro5 AT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55880, + "fields": { + "id_car_serie": 7490, + "name": "2.5 CVT 4x4 (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55881, + "fields": { + "id_car_serie": 7490, + "name": "2.5 MT 4x4 (171 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55885, + "fields": { + "id_car_serie": 7491, + "name": "1.8 MT (123 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55886, + "fields": { + "id_car_serie": 7491, + "name": "1.9 DCi MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55887, + "fields": { + "id_car_serie": 7491, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55888, + "fields": { + "id_car_serie": 7491, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55889, + "fields": { + "id_car_serie": 7491, + "name": "2.0 T MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55891, + "fields": { + "id_car_serie": 7491, + "name": "2.2 DCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55893, + "fields": { + "id_car_serie": 7492, + "name": "1.8 MT (123 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55894, + "fields": { + "id_car_serie": 7492, + "name": "1.9 DCi MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55895, + "fields": { + "id_car_serie": 7492, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55897, + "fields": { + "id_car_serie": 7492, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55899, + "fields": { + "id_car_serie": 7492, + "name": "2.2 DCi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55900, + "fields": { + "id_car_serie": 7492, + "name": "2.2 DCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55904, + "fields": { + "id_car_serie": 7493, + "name": "2.0 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55905, + "fields": { + "id_car_serie": 7493, + "name": "2.2 dT MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55906, + "fields": { + "id_car_serie": 7493, + "name": "2.2 D MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55910, + "fields": { + "id_car_serie": 7494, + "name": "2.0 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55911, + "fields": { + "id_car_serie": 7494, + "name": "2.0 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55912, + "fields": { + "id_car_serie": 7494, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55913, + "fields": { + "id_car_serie": 7494, + "name": "2.2 D MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55914, + "fields": { + "id_car_serie": 7494, + "name": "3.0 AT (194 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55915, + "fields": { + "id_car_serie": 7494, + "name": "3.0 MT (167 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55917, + "fields": { + "id_car_serie": 7497, + "name": "1.4 TCe MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55919, + "fields": { + "id_car_serie": 7497, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55922, + "fields": { + "id_car_serie": 7498, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55923, + "fields": { + "id_car_serie": 7498, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55924, + "fields": { + "id_car_serie": 7498, + "name": "1.6 CVT (114 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55926, + "fields": { + "id_car_serie": 7498, + "name": "1.6 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55928, + "fields": { + "id_car_serie": 4078, + "name": "1.4 TCe MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55931, + "fields": { + "id_car_serie": 7500, + "name": "1.5 dCi MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55932, + "fields": { + "id_car_serie": 7500, + "name": "1.5 dCi MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55933, + "fields": { + "id_car_serie": 7500, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55934, + "fields": { + "id_car_serie": 7500, + "name": "1.9 dCi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55935, + "fields": { + "id_car_serie": 7501, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55938, + "fields": { + "id_car_serie": 7501, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55940, + "fields": { + "id_car_serie": 7501, + "name": "2.0 T MT (225 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55941, + "fields": { + "id_car_serie": 7502, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55942, + "fields": { + "id_car_serie": 7502, + "name": "1.9 dCi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55943, + "fields": { + "id_car_serie": 7502, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55949, + "fields": { + "id_car_serie": 7503, + "name": "1.4 TCe MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55954, + "fields": { + "id_car_serie": 7501, + "name": "1.5 dCi MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55956, + "fields": { + "id_car_serie": 7501, + "name": "1.9 dCi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55970, + "fields": { + "id_car_serie": 7516, + "name": "1.9 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55972, + "fields": { + "id_car_serie": 7516, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55979, + "fields": { + "id_car_serie": 7508, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55982, + "fields": { + "id_car_serie": 7509, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55983, + "fields": { + "id_car_serie": 7509, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55984, + "fields": { + "id_car_serie": 7509, + "name": "1.9 dCi AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55985, + "fields": { + "id_car_serie": 7509, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55988, + "fields": { + "id_car_serie": 7514, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55990, + "fields": { + "id_car_serie": 7515, + "name": "1.5 dCi MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55991, + "fields": { + "id_car_serie": 7515, + "name": "1.9 dCi MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55992, + "fields": { + "id_car_serie": 7515, + "name": "2.0 MT (134 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55994, + "fields": { + "id_car_serie": 7516, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55998, + "fields": { + "id_car_serie": 7516, + "name": "1.9 dTi AT (98 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 55999, + "fields": { + "id_car_serie": 7516, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56004, + "fields": { + "id_car_serie": 7518, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56006, + "fields": { + "id_car_serie": 7532, + "name": "6.75 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56007, + "fields": { + "id_car_serie": 7533, + "name": "6.75 AT (329 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56042, + "fields": { + "id_car_serie": 7554, + "name": "2.0 T AT (220 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56049, + "fields": { + "id_car_serie": 7572, + "name": "1.9 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56050, + "fields": { + "id_car_serie": 7572, + "name": "1.9 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56051, + "fields": { + "id_car_serie": 7572, + "name": "1.9 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56052, + "fields": { + "id_car_serie": 7572, + "name": "1.9 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56053, + "fields": { + "id_car_serie": 7579, + "name": "2.4 MT (158 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56054, + "fields": { + "id_car_serie": 7580, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56055, + "fields": { + "id_car_serie": 7580, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56057, + "fields": { + "id_car_serie": 7587, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56095, + "fields": { + "id_car_serie": 7591, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56096, + "fields": { + "id_car_serie": 7591, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56099, + "fields": { + "id_car_serie": 7592, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56100, + "fields": { + "id_car_serie": 7592, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56101, + "fields": { + "id_car_serie": 7592, + "name": "1.4 TDI MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56106, + "fields": { + "id_car_serie": 7593, + "name": "1.2i MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56107, + "fields": { + "id_car_serie": 7593, + "name": "1.5i MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56114, + "fields": { + "id_car_serie": 7593, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56116, + "fields": { + "id_car_serie": 7594, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56118, + "fields": { + "id_car_serie": 7594, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56119, + "fields": { + "id_car_serie": 7594, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56145, + "fields": { + "id_car_serie": 7596, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56150, + "fields": { + "id_car_serie": 7596, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56163, + "fields": { + "id_car_serie": 7608, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56164, + "fields": { + "id_car_serie": 7608, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56165, + "fields": { + "id_car_serie": 7608, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56167, + "fields": { + "id_car_serie": 7609, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56168, + "fields": { + "id_car_serie": 7609, + "name": "1.3 SPI MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56169, + "fields": { + "id_car_serie": 7609, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56170, + "fields": { + "id_car_serie": 7609, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56172, + "fields": { + "id_car_serie": 7610, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56173, + "fields": { + "id_car_serie": 7610, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56174, + "fields": { + "id_car_serie": 7610, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56175, + "fields": { + "id_car_serie": 7610, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56208, + "fields": { + "id_car_serie": 7612, + "name": "2.0 TSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56209, + "fields": { + "id_car_serie": 7612, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56210, + "fields": { + "id_car_serie": 7613, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56211, + "fields": { + "id_car_serie": 7613, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56212, + "fields": { + "id_car_serie": 7613, + "name": "1.6 Tiptronic (102 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56213, + "fields": { + "id_car_serie": 7613, + "name": "1.6 FSI Tiptronic (115 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56214, + "fields": { + "id_car_serie": 7613, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56215, + "fields": { + "id_car_serie": 7613, + "name": "1.6 FSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56217, + "fields": { + "id_car_serie": 7613, + "name": "1.9 TDI DPF MT 4x4 (105 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56218, + "fields": { + "id_car_serie": 7613, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56219, + "fields": { + "id_car_serie": 7613, + "name": "1.9 TDI MT 4x4 (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56220, + "fields": { + "id_car_serie": 7613, + "name": "2.0 FSI Tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56221, + "fields": { + "id_car_serie": 7613, + "name": "2.0 FSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56222, + "fields": { + "id_car_serie": 7613, + "name": "2.0 FSI MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56223, + "fields": { + "id_car_serie": 7613, + "name": "2.0 TDI MT 4x4 (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56224, + "fields": { + "id_car_serie": 7613, + "name": "2.0 TDI DPF MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56225, + "fields": { + "id_car_serie": 7613, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56227, + "fields": { + "id_car_serie": 7614, + "name": "1.4 MPI MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56228, + "fields": { + "id_car_serie": 7614, + "name": "1.6 MPI AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56230, + "fields": { + "id_car_serie": 7614, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56232, + "fields": { + "id_car_serie": 7614, + "name": "1.8 TSI MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56233, + "fields": { + "id_car_serie": 7614, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56234, + "fields": { + "id_car_serie": 7614, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56237, + "fields": { + "id_car_serie": 7614, + "name": "2.0 TDI Euro V MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56238, + "fields": { + "id_car_serie": 7614, + "name": "2.0 TDI Euro V MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56240, + "fields": { + "id_car_serie": 7615, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56242, + "fields": { + "id_car_serie": 7615, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56244, + "fields": { + "id_car_serie": 7615, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56245, + "fields": { + "id_car_serie": 7615, + "name": "1.8 T AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56246, + "fields": { + "id_car_serie": 7615, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56247, + "fields": { + "id_car_serie": 7615, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56254, + "fields": { + "id_car_serie": 7615, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56256, + "fields": { + "id_car_serie": 7615, + "name": "1.9 SDI MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56257, + "fields": { + "id_car_serie": 7615, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56259, + "fields": { + "id_car_serie": 7615, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56260, + "fields": { + "id_car_serie": 7615, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56272, + "fields": { + "id_car_serie": 7616, + "name": "2.0 FSI MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56283, + "fields": { + "id_car_serie": 7620, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56284, + "fields": { + "id_car_serie": 7620, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56285, + "fields": { + "id_car_serie": 7620, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56286, + "fields": { + "id_car_serie": 7620, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56287, + "fields": { + "id_car_serie": 7620, + "name": "1.8 TSI 4x4 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56288, + "fields": { + "id_car_serie": 7620, + "name": "2.0 TDI 4x4 DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56289, + "fields": { + "id_car_serie": 7620, + "name": "2.0 TDI 4x4 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56290, + "fields": { + "id_car_serie": 7620, + "name": "2.0 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56291, + "fields": { + "id_car_serie": 7620, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56312, + "fields": { + "id_car_serie": 7639, + "name": "2.7 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56314, + "fields": { + "id_car_serie": 7639, + "name": "2.7 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56316, + "fields": { + "id_car_serie": 7639, + "name": "3.2 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56317, + "fields": { + "id_car_serie": 7639, + "name": "3.2 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56344, + "fields": { + "id_car_serie": 7650, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56347, + "fields": { + "id_car_serie": 7650, + "name": "2.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56348, + "fields": { + "id_car_serie": 7650, + "name": "2.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56350, + "fields": { + "id_car_serie": 7650, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56351, + "fields": { + "id_car_serie": 7650, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56354, + "fields": { + "id_car_serie": 7650, + "name": "2.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56355, + "fields": { + "id_car_serie": 7650, + "name": "2.0 MT (250 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56358, + "fields": { + "id_car_serie": 7650, + "name": "2.5 AT (167 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56360, + "fields": { + "id_car_serie": 7651, + "name": "1.6i MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56363, + "fields": { + "id_car_serie": 7651, + "name": "1.6i Lineartronic AWD (114 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56389, + "fields": { + "id_car_serie": 7654, + "name": "1.5 I AT (100 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56390, + "fields": { + "id_car_serie": 7654, + "name": "1.5 I AT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56391, + "fields": { + "id_car_serie": 7654, + "name": "1.5 R AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56392, + "fields": { + "id_car_serie": 7654, + "name": "1.5 R AT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56393, + "fields": { + "id_car_serie": 7654, + "name": "1.5 I MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56394, + "fields": { + "id_car_serie": 7654, + "name": "1.5 I MT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56395, + "fields": { + "id_car_serie": 7654, + "name": "1.5 R MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56396, + "fields": { + "id_car_serie": 7654, + "name": "1.5 R MT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56397, + "fields": { + "id_car_serie": 7654, + "name": "2.0 AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56398, + "fields": { + "id_car_serie": 7654, + "name": "2.0 R AT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56399, + "fields": { + "id_car_serie": 7654, + "name": "2.0 MT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56400, + "fields": { + "id_car_serie": 7654, + "name": "2.0 R MT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56408, + "fields": { + "id_car_serie": 7657, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56409, + "fields": { + "id_car_serie": 7657, + "name": "1.5 AT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56410, + "fields": { + "id_car_serie": 7657, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56411, + "fields": { + "id_car_serie": 7657, + "name": "1.5 MT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56412, + "fields": { + "id_car_serie": 7657, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56413, + "fields": { + "id_car_serie": 7657, + "name": "1.6 AT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56414, + "fields": { + "id_car_serie": 7657, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56415, + "fields": { + "id_car_serie": 7657, + "name": "1.6 MT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56416, + "fields": { + "id_car_serie": 7657, + "name": "2.0 AT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56418, + "fields": { + "id_car_serie": 7657, + "name": "2.0 MT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56419, + "fields": { + "id_car_serie": 7657, + "name": "2.0 MT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56420, + "fields": { + "id_car_serie": 7657, + "name": "2.5 AT AWD (167 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56421, + "fields": { + "id_car_serie": 7658, + "name": "1.5 AT TS AWD (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56422, + "fields": { + "id_car_serie": 7658, + "name": "1.5 AT TS (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56423, + "fields": { + "id_car_serie": 7658, + "name": "1.5 MT TS AWD (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56424, + "fields": { + "id_car_serie": 7658, + "name": "1.5 MT TS (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56425, + "fields": { + "id_car_serie": 7658, + "name": "1.6 AT TS (95 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56426, + "fields": { + "id_car_serie": 7658, + "name": "1.6 AT TS AWD (95 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56427, + "fields": { + "id_car_serie": 7658, + "name": "1.6 MT TS (95 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56428, + "fields": { + "id_car_serie": 7658, + "name": "1.6 MT TS AWD (95 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56429, + "fields": { + "id_car_serie": 7658, + "name": "2.0 AT GX AWD (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56430, + "fields": { + "id_car_serie": 7658, + "name": "2.0 AT GX AWD (155 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56431, + "fields": { + "id_car_serie": 7658, + "name": "2.0 MT WRX AWD (250 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56432, + "fields": { + "id_car_serie": 7658, + "name": "2.0 MT WRX AWD (225 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56433, + "fields": { + "id_car_serie": 7658, + "name": "2.5 MT RS AWD (165 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56434, + "fields": { + "id_car_serie": 7659, + "name": "1.6 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56435, + "fields": { + "id_car_serie": 7659, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56436, + "fields": { + "id_car_serie": 7659, + "name": "1.6 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56443, + "fields": { + "id_car_serie": 7660, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56444, + "fields": { + "id_car_serie": 7660, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56448, + "fields": { + "id_car_serie": 7660, + "name": "1.6 MT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56449, + "fields": { + "id_car_serie": 7660, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56455, + "fields": { + "id_car_serie": 7660, + "name": "2.0 AT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56458, + "fields": { + "id_car_serie": 7660, + "name": "2.0 MT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56463, + "fields": { + "id_car_serie": 7661, + "name": "1.6 MT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56464, + "fields": { + "id_car_serie": 7661, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56471, + "fields": { + "id_car_serie": 7661, + "name": "2.0 AT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56473, + "fields": { + "id_car_serie": 7661, + "name": "2.0 MT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56475, + "fields": { + "id_car_serie": 7664, + "name": "1.2 MT (61 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56476, + "fields": { + "id_car_serie": 7664, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56479, + "fields": { + "id_car_serie": 7665, + "name": "1.3 MT (61 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56481, + "fields": { + "id_car_serie": 7665, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56484, + "fields": { + "id_car_serie": 7666, + "name": "1.3 MT (61 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56486, + "fields": { + "id_car_serie": 7666, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56489, + "fields": { + "id_car_serie": 7667, + "name": "1.3 MT (61 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56490, + "fields": { + "id_car_serie": 7667, + "name": "1.6 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56503, + "fields": { + "id_car_serie": 7671, + "name": "0.7 MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56504, + "fields": { + "id_car_serie": 7671, + "name": "0.7 MT 4WD (45 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56507, + "fields": { + "id_car_serie": 7671, + "name": "0.7 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56508, + "fields": { + "id_car_serie": 7671, + "name": "0.7 MT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56511, + "fields": { + "id_car_serie": 7671, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56512, + "fields": { + "id_car_serie": 7671, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56513, + "fields": { + "id_car_serie": 7679, + "name": "3.0 AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56514, + "fields": { + "id_car_serie": 7681, + "name": "1.8 MT AWD (120 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56515, + "fields": { + "id_car_serie": 7681, + "name": "1.8 MT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56516, + "fields": { + "id_car_serie": 7681, + "name": "1.8 Turbo MT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56517, + "fields": { + "id_car_serie": 7681, + "name": "2.7 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56528, + "fields": { + "id_car_serie": 7688, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56529, + "fields": { + "id_car_serie": 7688, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56530, + "fields": { + "id_car_serie": 7688, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56533, + "fields": { + "id_car_serie": 7689, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56534, + "fields": { + "id_car_serie": 7689, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56535, + "fields": { + "id_car_serie": 7689, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56537, + "fields": { + "id_car_serie": 7689, + "name": "2.5 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56541, + "fields": { + "id_car_serie": 7690, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56543, + "fields": { + "id_car_serie": 7690, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56546, + "fields": { + "id_car_serie": 7690, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56547, + "fields": { + "id_car_serie": 7690, + "name": "2.0 V6 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56548, + "fields": { + "id_car_serie": 7691, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56550, + "fields": { + "id_car_serie": 7691, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56554, + "fields": { + "id_car_serie": 7691, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56555, + "fields": { + "id_car_serie": 7691, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56557, + "fields": { + "id_car_serie": 7697, + "name": "2.0 CVT (137 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56558, + "fields": { + "id_car_serie": 7699, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56560, + "fields": { + "id_car_serie": 7700, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56561, + "fields": { + "id_car_serie": 7700, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56603, + "fields": { + "id_car_serie": 7712, + "name": "1.0 MT (53 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56604, + "fields": { + "id_car_serie": 7712, + "name": "1.3 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56605, + "fields": { + "id_car_serie": 7712, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56606, + "fields": { + "id_car_serie": 7712, + "name": "1.3 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56607, + "fields": { + "id_car_serie": 7713, + "name": "1.0 MT (53 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56608, + "fields": { + "id_car_serie": 7713, + "name": "1.3 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56609, + "fields": { + "id_car_serie": 7713, + "name": "1.3 GTI MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56610, + "fields": { + "id_car_serie": 7713, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56614, + "fields": { + "id_car_serie": 7714, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56615, + "fields": { + "id_car_serie": 7714, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56616, + "fields": { + "id_car_serie": 7714, + "name": "1.3 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56617, + "fields": { + "id_car_serie": 7715, + "name": "1.0 AT (50 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56619, + "fields": { + "id_car_serie": 7715, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56627, + "fields": { + "id_car_serie": 7715, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56631, + "fields": { + "id_car_serie": 7719, + "name": "1.0 AT (69 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56636, + "fields": { + "id_car_serie": 7727, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56637, + "fields": { + "id_car_serie": 7729, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56638, + "fields": { + "id_car_serie": 7729, + "name": "1.4 TDI MT (71 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56639, + "fields": { + "id_car_serie": 7730, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56642, + "fields": { + "id_car_serie": 7730, + "name": "1.4 TDI MT (71 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56647, + "fields": { + "id_car_serie": 7747, + "name": "2.7 AT (157 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56648, + "fields": { + "id_car_serie": 7747, + "name": "4.0 AT 4WD (270 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56649, + "fields": { + "id_car_serie": 7747, + "name": "4.0 AT (270 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56650, + "fields": { + "id_car_serie": 7748, + "name": "4.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56651, + "fields": { + "id_car_serie": 7748, + "name": "4.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56652, + "fields": { + "id_car_serie": 7748, + "name": "4.7 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56653, + "fields": { + "id_car_serie": 7748, + "name": "4.7 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56654, + "fields": { + "id_car_serie": 7748, + "name": "4.7 AT 4WD (273 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56659, + "fields": { + "id_car_serie": 7749, + "name": "3.0 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56660, + "fields": { + "id_car_serie": 7749, + "name": "3.0 TD MT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56661, + "fields": { + "id_car_serie": 7749, + "name": "3.4 MT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56663, + "fields": { + "id_car_serie": 7749, + "name": "3.4 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56664, + "fields": { + "id_car_serie": 7750, + "name": "2.4 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56665, + "fields": { + "id_car_serie": 7750, + "name": "2.4 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56667, + "fields": { + "id_car_serie": 7750, + "name": "3.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56668, + "fields": { + "id_car_serie": 7750, + "name": "3.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56670, + "fields": { + "id_car_serie": 7751, + "name": "2.4 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56671, + "fields": { + "id_car_serie": 7751, + "name": "2.4 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56674, + "fields": { + "id_car_serie": 7751, + "name": "3.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56675, + "fields": { + "id_car_serie": 7751, + "name": "3.0 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56676, + "fields": { + "id_car_serie": 7752, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56678, + "fields": { + "id_car_serie": 7752, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56679, + "fields": { + "id_car_serie": 7752, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56683, + "fields": { + "id_car_serie": 7757, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56684, + "fields": { + "id_car_serie": 7757, + "name": "1.4 D-4D 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56685, + "fields": { + "id_car_serie": 7757, + "name": "1.4 D-4D 6MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56686, + "fields": { + "id_car_serie": 7757, + "name": "1.5 CVT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56687, + "fields": { + "id_car_serie": 7757, + "name": "1.6 MMT (124 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56688, + "fields": { + "id_car_serie": 7757, + "name": "1.6 MMT (132 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56689, + "fields": { + "id_car_serie": 7757, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56690, + "fields": { + "id_car_serie": 7757, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56691, + "fields": { + "id_car_serie": 7757, + "name": "1.8 CVT 4WD (127 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56694, + "fields": { + "id_car_serie": 7757, + "name": "1.8 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56695, + "fields": { + "id_car_serie": 7757, + "name": "2.0 D-4D MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56696, + "fields": { + "id_car_serie": 7757, + "name": "2.2 D-4D Euro4 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56697, + "fields": { + "id_car_serie": 7758, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56698, + "fields": { + "id_car_serie": 7758, + "name": "1.4 D-4D MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56699, + "fields": { + "id_car_serie": 7758, + "name": "1.4 D-4D 6MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56700, + "fields": { + "id_car_serie": 7758, + "name": "1.6 MMT (124 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56701, + "fields": { + "id_car_serie": 7758, + "name": "1.6 MMT (132 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56702, + "fields": { + "id_car_serie": 7758, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56703, + "fields": { + "id_car_serie": 7758, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56704, + "fields": { + "id_car_serie": 7760, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56705, + "fields": { + "id_car_serie": 7760, + "name": "1.8 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56706, + "fields": { + "id_car_serie": 7760, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56707, + "fields": { + "id_car_serie": 7760, + "name": "2.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56708, + "fields": { + "id_car_serie": 7760, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56709, + "fields": { + "id_car_serie": 7760, + "name": "2.0 D4-D MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56710, + "fields": { + "id_car_serie": 7760, + "name": "2.2 D4-D MT (148 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56711, + "fields": { + "id_car_serie": 7760, + "name": "2.2 D4-D MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56712, + "fields": { + "id_car_serie": 7760, + "name": "2.4 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56713, + "fields": { + "id_car_serie": 7761, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56714, + "fields": { + "id_car_serie": 7761, + "name": "1.8 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56715, + "fields": { + "id_car_serie": 7761, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56716, + "fields": { + "id_car_serie": 7761, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56717, + "fields": { + "id_car_serie": 7761, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56718, + "fields": { + "id_car_serie": 7761, + "name": "2.0 D MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56720, + "fields": { + "id_car_serie": 7761, + "name": "2.2 D MT (148 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56721, + "fields": { + "id_car_serie": 7761, + "name": "2.2 D MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56722, + "fields": { + "id_car_serie": 7761, + "name": "2.4 D MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56723, + "fields": { + "id_car_serie": 7762, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56724, + "fields": { + "id_car_serie": 7762, + "name": "1.8 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56725, + "fields": { + "id_car_serie": 7762, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56727, + "fields": { + "id_car_serie": 7762, + "name": "2.0 D MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56728, + "fields": { + "id_car_serie": 7762, + "name": "2.0 D MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56730, + "fields": { + "id_car_serie": 7763, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56731, + "fields": { + "id_car_serie": 7763, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56733, + "fields": { + "id_car_serie": 7763, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56735, + "fields": { + "id_car_serie": 7763, + "name": "2.0 AT (128 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56737, + "fields": { + "id_car_serie": 7763, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56739, + "fields": { + "id_car_serie": 7763, + "name": "2.0 D4-D MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56740, + "fields": { + "id_car_serie": 7763, + "name": "2.0 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56742, + "fields": { + "id_car_serie": 7764, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56743, + "fields": { + "id_car_serie": 7764, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56744, + "fields": { + "id_car_serie": 7764, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56745, + "fields": { + "id_car_serie": 7764, + "name": "2.0 AT (128 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56746, + "fields": { + "id_car_serie": 7764, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56747, + "fields": { + "id_car_serie": 7764, + "name": "2.0 D4-D MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56748, + "fields": { + "id_car_serie": 7764, + "name": "2.0 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56750, + "fields": { + "id_car_serie": 7765, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56751, + "fields": { + "id_car_serie": 7765, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56752, + "fields": { + "id_car_serie": 7765, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56753, + "fields": { + "id_car_serie": 7765, + "name": "2.0 AT (128 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56755, + "fields": { + "id_car_serie": 7765, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56757, + "fields": { + "id_car_serie": 7765, + "name": "2.0 D4-D MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56758, + "fields": { + "id_car_serie": 7765, + "name": "2.0 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56759, + "fields": { + "id_car_serie": 7773, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56760, + "fields": { + "id_car_serie": 7773, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56762, + "fields": { + "id_car_serie": 7773, + "name": "2.0 AT G (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56763, + "fields": { + "id_car_serie": 7773, + "name": "2.0 AT 4WD GT (190 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56765, + "fields": { + "id_car_serie": 7773, + "name": "2.0 AT 4WD GT-T (260 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56767, + "fields": { + "id_car_serie": 7773, + "name": "2.0 MT 4WD GT-T (260 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56770, + "fields": { + "id_car_serie": 7774, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56771, + "fields": { + "id_car_serie": 7774, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56772, + "fields": { + "id_car_serie": 7774, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56773, + "fields": { + "id_car_serie": 7774, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56774, + "fields": { + "id_car_serie": 7774, + "name": "2.0 AT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56775, + "fields": { + "id_car_serie": 7774, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56776, + "fields": { + "id_car_serie": 7774, + "name": "2.0 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56778, + "fields": { + "id_car_serie": 7774, + "name": "2.0 D AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56779, + "fields": { + "id_car_serie": 7774, + "name": "2.0 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56787, + "fields": { + "id_car_serie": 7776, + "name": "2.5 AT Overdrive (179 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56788, + "fields": { + "id_car_serie": 7776, + "name": "2.5 MT Overdrive (179 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56789, + "fields": { + "id_car_serie": 7776, + "name": "3.5 Dual VVT-i AT (277 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56857, + "fields": { + "id_car_serie": 7788, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56858, + "fields": { + "id_car_serie": 7788, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56866, + "fields": { + "id_car_serie": 7789, + "name": "2.0 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56867, + "fields": { + "id_car_serie": 7789, + "name": "2.0 AT (92 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56870, + "fields": { + "id_car_serie": 7791, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56874, + "fields": { + "id_car_serie": 7791, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56875, + "fields": { + "id_car_serie": 7791, + "name": "2.0 MT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56876, + "fields": { + "id_car_serie": 7791, + "name": "2.0 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56879, + "fields": { + "id_car_serie": 7792, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56880, + "fields": { + "id_car_serie": 7792, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56885, + "fields": { + "id_car_serie": 7792, + "name": "1.8 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56888, + "fields": { + "id_car_serie": 7792, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56889, + "fields": { + "id_car_serie": 7792, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56890, + "fields": { + "id_car_serie": 7792, + "name": "2.0 MT (158 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56892, + "fields": { + "id_car_serie": 7792, + "name": "2.0 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56894, + "fields": { + "id_car_serie": 7793, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56896, + "fields": { + "id_car_serie": 7793, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56897, + "fields": { + "id_car_serie": 7793, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56899, + "fields": { + "id_car_serie": 7793, + "name": "2.0 AT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56901, + "fields": { + "id_car_serie": 7793, + "name": "2.0 MT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56905, + "fields": { + "id_car_serie": 7794, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56906, + "fields": { + "id_car_serie": 7794, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56909, + "fields": { + "id_car_serie": 7794, + "name": "1.6 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56914, + "fields": { + "id_car_serie": 7794, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56918, + "fields": { + "id_car_serie": 7794, + "name": "2.0 D AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56919, + "fields": { + "id_car_serie": 7794, + "name": "2.0 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56949, + "fields": { + "id_car_serie": 7799, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56951, + "fields": { + "id_car_serie": 7800, + "name": "1.6 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56959, + "fields": { + "id_car_serie": 7803, + "name": "1.6 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56961, + "fields": { + "id_car_serie": 7805, + "name": "2.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56962, + "fields": { + "id_car_serie": 7805, + "name": "2.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56963, + "fields": { + "id_car_serie": 7806, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56967, + "fields": { + "id_car_serie": 7806, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56968, + "fields": { + "id_car_serie": 7806, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56969, + "fields": { + "id_car_serie": 7806, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56971, + "fields": { + "id_car_serie": 7806, + "name": "2.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56973, + "fields": { + "id_car_serie": 7807, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56975, + "fields": { + "id_car_serie": 7808, + "name": "1.6 GT MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56978, + "fields": { + "id_car_serie": 7808, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56980, + "fields": { + "id_car_serie": 7808, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56984, + "fields": { + "id_car_serie": 7809, + "name": "2.0 GT MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56985, + "fields": { + "id_car_serie": 7809, + "name": "2.0 GT-S MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56988, + "fields": { + "id_car_serie": 7810, + "name": "1.6 GT MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56991, + "fields": { + "id_car_serie": 7810, + "name": "1.8 MT ST (105 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56992, + "fields": { + "id_car_serie": 7810, + "name": "2.0 GT-S AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56993, + "fields": { + "id_car_serie": 7810, + "name": "2.0 GT MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56994, + "fields": { + "id_car_serie": 7810, + "name": "2.0 GT-S MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56995, + "fields": { + "id_car_serie": 7810, + "name": "2.0 GT-Four MT (190 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56996, + "fields": { + "id_car_serie": 7811, + "name": "1.6 AT (77 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56997, + "fields": { + "id_car_serie": 7811, + "name": "1.6 GT MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56998, + "fields": { + "id_car_serie": 7811, + "name": "1.6 MT (77 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 56999, + "fields": { + "id_car_serie": 7811, + "name": "2.0 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57000, + "fields": { + "id_car_serie": 7811, + "name": "2.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57005, + "fields": { + "id_car_serie": 7812, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57008, + "fields": { + "id_car_serie": 7812, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57009, + "fields": { + "id_car_serie": 7812, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57017, + "fields": { + "id_car_serie": 7813, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57019, + "fields": { + "id_car_serie": 7815, + "name": "4.0 AT L1 (164 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57049, + "fields": { + "id_car_serie": 7820, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57050, + "fields": { + "id_car_serie": 7820, + "name": "1.4 D-4D MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57052, + "fields": { + "id_car_serie": 7820, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57053, + "fields": { + "id_car_serie": 7820, + "name": "1.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57058, + "fields": { + "id_car_serie": 7817, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57059, + "fields": { + "id_car_serie": 7817, + "name": "1.4 D-4D MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57069, + "fields": { + "id_car_serie": 7817, + "name": "2.0 D-4D MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57089, + "fields": { + "id_car_serie": 7823, + "name": "2.0 D-4D MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57090, + "fields": { + "id_car_serie": 7824, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57091, + "fields": { + "id_car_serie": 7824, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57094, + "fields": { + "id_car_serie": 7824, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57095, + "fields": { + "id_car_serie": 7824, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57096, + "fields": { + "id_car_serie": 7824, + "name": "2.0 D MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57100, + "fields": { + "id_car_serie": 7825, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57103, + "fields": { + "id_car_serie": 7825, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57105, + "fields": { + "id_car_serie": 7825, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57116, + "fields": { + "id_car_serie": 7826, + "name": "1.8 3AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57117, + "fields": { + "id_car_serie": 7826, + "name": "1.8 MT Overdrive (120 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57131, + "fields": { + "id_car_serie": 7828, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57132, + "fields": { + "id_car_serie": 7828, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57134, + "fields": { + "id_car_serie": 7829, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57135, + "fields": { + "id_car_serie": 7829, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57136, + "fields": { + "id_car_serie": 7829, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57137, + "fields": { + "id_car_serie": 7829, + "name": "2.0 D MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57142, + "fields": { + "id_car_serie": 7830, + "name": "2.0 D MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57150, + "fields": { + "id_car_serie": 7832, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57151, + "fields": { + "id_car_serie": 7832, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57152, + "fields": { + "id_car_serie": 7832, + "name": "1.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57153, + "fields": { + "id_car_serie": 7832, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57154, + "fields": { + "id_car_serie": 7832, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57155, + "fields": { + "id_car_serie": 7832, + "name": "1.6 MT Overdrive (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57156, + "fields": { + "id_car_serie": 7832, + "name": "2.0 D AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57158, + "fields": { + "id_car_serie": 7832, + "name": "2.0 D MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57162, + "fields": { + "id_car_serie": 7833, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57169, + "fields": { + "id_car_serie": 7834, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57170, + "fields": { + "id_car_serie": 7834, + "name": "1.6 MT Overdrive 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57198, + "fields": { + "id_car_serie": 7837, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57200, + "fields": { + "id_car_serie": 7837, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57209, + "fields": { + "id_car_serie": 7838, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57239, + "fields": { + "id_car_serie": 7841, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57240, + "fields": { + "id_car_serie": 7841, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57244, + "fields": { + "id_car_serie": 7842, + "name": "Trueno 1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57245, + "fields": { + "id_car_serie": 7842, + "name": "Trueno 1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57260, + "fields": { + "id_car_serie": 7844, + "name": "1.6 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57261, + "fields": { + "id_car_serie": 7844, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57262, + "fields": { + "id_car_serie": 7844, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57264, + "fields": { + "id_car_serie": 7845, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57268, + "fields": { + "id_car_serie": 7845, + "name": "1.6 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57269, + "fields": { + "id_car_serie": 7845, + "name": "1.6 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57270, + "fields": { + "id_car_serie": 7845, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57272, + "fields": { + "id_car_serie": 7845, + "name": "1.8 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57273, + "fields": { + "id_car_serie": 7846, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57275, + "fields": { + "id_car_serie": 7846, + "name": "1.8 MT Overdrive (75 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57276, + "fields": { + "id_car_serie": 7847, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57279, + "fields": { + "id_car_serie": 7847, + "name": "1.8 MT Overdrive (75 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57280, + "fields": { + "id_car_serie": 7848, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57281, + "fields": { + "id_car_serie": 7848, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57282, + "fields": { + "id_car_serie": 7848, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57283, + "fields": { + "id_car_serie": 7848, + "name": "1.6 AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57284, + "fields": { + "id_car_serie": 7848, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57285, + "fields": { + "id_car_serie": 7848, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57286, + "fields": { + "id_car_serie": 7848, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57287, + "fields": { + "id_car_serie": 7848, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57288, + "fields": { + "id_car_serie": 7848, + "name": "1.8 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57304, + "fields": { + "id_car_serie": 7854, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57307, + "fields": { + "id_car_serie": 7856, + "name": "1.3 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57308, + "fields": { + "id_car_serie": 7856, + "name": "1.3 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57309, + "fields": { + "id_car_serie": 7856, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57310, + "fields": { + "id_car_serie": 7856, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57311, + "fields": { + "id_car_serie": 7856, + "name": "1.5 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57312, + "fields": { + "id_car_serie": 7856, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57313, + "fields": { + "id_car_serie": 7856, + "name": "1.5 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57315, + "fields": { + "id_car_serie": 7856, + "name": "1.5 D AT (67 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57316, + "fields": { + "id_car_serie": 7856, + "name": "1.5 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57317, + "fields": { + "id_car_serie": 7857, + "name": "1.3 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57318, + "fields": { + "id_car_serie": 7857, + "name": "1.3 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57319, + "fields": { + "id_car_serie": 7857, + "name": "1.5 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57320, + "fields": { + "id_car_serie": 7857, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57321, + "fields": { + "id_car_serie": 7857, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57322, + "fields": { + "id_car_serie": 7857, + "name": "1.5 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57323, + "fields": { + "id_car_serie": 7857, + "name": "1.5 D AT (67 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57324, + "fields": { + "id_car_serie": 7857, + "name": "1.5 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57325, + "fields": { + "id_car_serie": 7859, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57327, + "fields": { + "id_car_serie": 7859, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57328, + "fields": { + "id_car_serie": 7859, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57329, + "fields": { + "id_car_serie": 7859, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57330, + "fields": { + "id_car_serie": 7859, + "name": "2.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57331, + "fields": { + "id_car_serie": 7860, + "name": "2.5T AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57332, + "fields": { + "id_car_serie": 7860, + "name": "2.5T MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57333, + "fields": { + "id_car_serie": 7859, + "name": "2.4 TD AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57334, + "fields": { + "id_car_serie": 7859, + "name": "2.4 TD MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57335, + "fields": { + "id_car_serie": 7859, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57336, + "fields": { + "id_car_serie": 7860, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57338, + "fields": { + "id_car_serie": 7860, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57340, + "fields": { + "id_car_serie": 7860, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57344, + "fields": { + "id_car_serie": 7860, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57349, + "fields": { + "id_car_serie": 7860, + "name": "2.4 TD AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57351, + "fields": { + "id_car_serie": 7860, + "name": "2.4 TD MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57352, + "fields": { + "id_car_serie": 7860, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57353, + "fields": { + "id_car_serie": 7861, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57354, + "fields": { + "id_car_serie": 7862, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57355, + "fields": { + "id_car_serie": 7864, + "name": "2.5 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57356, + "fields": { + "id_car_serie": 7864, + "name": "2.5 AT 4WD (203 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57359, + "fields": { + "id_car_serie": 7864, + "name": "3.0 AT (255 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57360, + "fields": { + "id_car_serie": 7864, + "name": "3.0 AT 4WD (255 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57381, + "fields": { + "id_car_serie": 7869, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57385, + "fields": { + "id_car_serie": 7869, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57389, + "fields": { + "id_car_serie": 7869, + "name": "2.4 TD AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57392, + "fields": { + "id_car_serie": 7870, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57394, + "fields": { + "id_car_serie": 7870, + "name": "2.4 TD AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57411, + "fields": { + "id_car_serie": 7872, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57428, + "fields": { + "id_car_serie": 7872, + "name": "2.5 AT RWD (200 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57445, + "fields": { + "id_car_serie": 7877, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57446, + "fields": { + "id_car_serie": 7877, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57447, + "fields": { + "id_car_serie": 7877, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57448, + "fields": { + "id_car_serie": 7877, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57449, + "fields": { + "id_car_serie": 7886, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57450, + "fields": { + "id_car_serie": 7886, + "name": "2.4 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57451, + "fields": { + "id_car_serie": 7886, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57452, + "fields": { + "id_car_serie": 7886, + "name": "3.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57454, + "fields": { + "id_car_serie": 7886, + "name": "3.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57455, + "fields": { + "id_car_serie": 7886, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57456, + "fields": { + "id_car_serie": 7887, + "name": "2.2 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57457, + "fields": { + "id_car_serie": 7887, + "name": "2.2 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57458, + "fields": { + "id_car_serie": 7887, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57459, + "fields": { + "id_car_serie": 7887, + "name": "2.4 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57460, + "fields": { + "id_car_serie": 7887, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57461, + "fields": { + "id_car_serie": 7887, + "name": "3.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57462, + "fields": { + "id_car_serie": 7891, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57464, + "fields": { + "id_car_serie": 7891, + "name": "2.0 MT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57466, + "fields": { + "id_car_serie": 7891, + "name": "2.7 AT AWD (145 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57469, + "fields": { + "id_car_serie": 7891, + "name": "3.0 D MT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57470, + "fields": { + "id_car_serie": 7892, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57474, + "fields": { + "id_car_serie": 7892, + "name": "2.7 AT AWD (145 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57477, + "fields": { + "id_car_serie": 7892, + "name": "3.0 D MT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57478, + "fields": { + "id_car_serie": 7893, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57482, + "fields": { + "id_car_serie": 7893, + "name": "2.7 AT AWD (145 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57485, + "fields": { + "id_car_serie": 7893, + "name": "3.0 D MT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57486, + "fields": { + "id_car_serie": 7894, + "name": "2.0 MT AWD (88 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57493, + "fields": { + "id_car_serie": 7895, + "name": "2.8 D MT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57496, + "fields": { + "id_car_serie": 7896, + "name": "2.8 D MT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57497, + "fields": { + "id_car_serie": 7898, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57498, + "fields": { + "id_car_serie": 7898, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57499, + "fields": { + "id_car_serie": 7898, + "name": "2.2 D AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57500, + "fields": { + "id_car_serie": 7900, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57501, + "fields": { + "id_car_serie": 7900, + "name": "2.0 CVT (155 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57502, + "fields": { + "id_car_serie": 7900, + "name": "2.0 CVT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57503, + "fields": { + "id_car_serie": 7902, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57504, + "fields": { + "id_car_serie": 7902, + "name": "2.4 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57505, + "fields": { + "id_car_serie": 7902, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57506, + "fields": { + "id_car_serie": 7902, + "name": "3.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57508, + "fields": { + "id_car_serie": 7903, + "name": "4.2 TD AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 57509, + "fields": { + "id_car_serie": 7903, + "name": "4.2 TD MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 57513, + "fields": { + "id_car_serie": 7904, + "name": "4.2 TD AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 57515, + "fields": { + "id_car_serie": 7904, + "name": "4.2 TD MT (167 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 57518, + "fields": { + "id_car_serie": 7904, + "name": "4.5 AT (224 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 57519, + "fields": { + "id_car_serie": 7904, + "name": "4.5 MT (224 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 57522, + "fields": { + "id_car_serie": 7905, + "name": "4.2 D MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 57524, + "fields": { + "id_car_serie": 7905, + "name": "4.5 V8 TD MT (205 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 57534, + "fields": { + "id_car_serie": 7907, + "name": "4.0 AT J80G (155 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57537, + "fields": { + "id_car_serie": 7907, + "name": "4.2 D MT J81V (135 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57539, + "fields": { + "id_car_serie": 7907, + "name": "4.2 TD MT J81V (170 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57542, + "fields": { + "id_car_serie": 7907, + "name": "4.5 AT J80G (215 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57544, + "fields": { + "id_car_serie": 7907, + "name": "4.5 MT J80G (215 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57555, + "fields": { + "id_car_serie": 7908, + "name": "3.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57579, + "fields": { + "id_car_serie": 7909, + "name": "4.2 D MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57580, + "fields": { + "id_car_serie": 7909, + "name": "4.2 TD MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57586, + "fields": { + "id_car_serie": 7910, + "name": "3.4 D MT J61V STD Roof (98 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57587, + "fields": { + "id_car_serie": 7910, + "name": "4.0 AT J62G High Roof (155 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57592, + "fields": { + "id_car_serie": 7910, + "name": "4.0 TD MT J61V High Roof (135 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57594, + "fields": { + "id_car_serie": 7910, + "name": "4.2 MT J61V STD Roof (140 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57606, + "fields": { + "id_car_serie": 7928, + "name": "1.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57607, + "fields": { + "id_car_serie": 7928, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57608, + "fields": { + "id_car_serie": 7928, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57609, + "fields": { + "id_car_serie": 7928, + "name": "1.3d MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57706, + "fields": { + "id_car_serie": 7939, + "name": "2.0 MT (115 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57707, + "fields": { + "id_car_serie": 7939, + "name": "2.5d MT (115 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57708, + "fields": { + "id_car_serie": 7939, + "name": "2.8d MT (113 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57709, + "fields": { + "id_car_serie": 7940, + "name": "2.2 MT (136 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57710, + "fields": { + "id_car_serie": 7940, + "name": "2.3d MT (100 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57711, + "fields": { + "id_car_serie": 7940, + "name": "2.4 MT (125 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57712, + "fields": { + "id_car_serie": 7940, + "name": "2.5d MT (115 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57716, + "fields": { + "id_car_serie": 7946, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57717, + "fields": { + "id_car_serie": 7946, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57718, + "fields": { + "id_car_serie": 7946, + "name": "1.7d MT (82 hp) diesel", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57719, + "fields": { + "id_car_serie": 7946, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57723, + "fields": { + "id_car_serie": 7946, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57724, + "fields": { + "id_car_serie": 7946, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57725, + "fields": { + "id_car_serie": 7946, + "name": "2.0d MT (82 hp) diesel", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57726, + "fields": { + "id_car_serie": 7946, + "name": "2.0d MT (101 hp) diesel", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57730, + "fields": { + "id_car_serie": 7946, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57732, + "fields": { + "id_car_serie": 7946, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57733, + "fields": { + "id_car_serie": 7946, + "name": "2.5 MT (194 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57737, + "fields": { + "id_car_serie": 7947, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57745, + "fields": { + "id_car_serie": 7947, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57752, + "fields": { + "id_car_serie": 7947, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57755, + "fields": { + "id_car_serie": 7948, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57760, + "fields": { + "id_car_serie": 7948, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57767, + "fields": { + "id_car_serie": 7948, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57774, + "fields": { + "id_car_serie": 7953, + "name": "1.1 MT (48 hp)", + "arabic_name": "-", + "start_production_year": 1966, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57775, + "fields": { + "id_car_serie": 7953, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57776, + "fields": { + "id_car_serie": 7954, + "name": "1.1 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1966 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57778, + "fields": { + "id_car_serie": 7963, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57803, + "fields": { + "id_car_serie": 7966, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57804, + "fields": { + "id_car_serie": 7966, + "name": "1.9 TDI AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57805, + "fields": { + "id_car_serie": 7966, + "name": "1.9 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57806, + "fields": { + "id_car_serie": 7966, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57807, + "fields": { + "id_car_serie": 7966, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57809, + "fields": { + "id_car_serie": 7968, + "name": "0.9 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57810, + "fields": { + "id_car_serie": 7968, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57811, + "fields": { + "id_car_serie": 7968, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57819, + "fields": { + "id_car_serie": 7972, + "name": "2.0 TSI MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57824, + "fields": { + "id_car_serie": 7973, + "name": "1.4 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57825, + "fields": { + "id_car_serie": 7973, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57826, + "fields": { + "id_car_serie": 7973, + "name": "1.4 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57827, + "fields": { + "id_car_serie": 7973, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57828, + "fields": { + "id_car_serie": 7973, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57833, + "fields": { + "id_car_serie": 7973, + "name": "1.4 TSI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57834, + "fields": { + "id_car_serie": 7973, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57835, + "fields": { + "id_car_serie": 7974, + "name": "1.2 TSI BlueMotion DSG (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57836, + "fields": { + "id_car_serie": 7974, + "name": "1.2 TSI BlueMotion MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57837, + "fields": { + "id_car_serie": 7974, + "name": "1.4 TSI BlueMotion DSG (122 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57839, + "fields": { + "id_car_serie": 7974, + "name": "1.4 TSI BlueMotion MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57849, + "fields": { + "id_car_serie": 7974, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57850, + "fields": { + "id_car_serie": 7974, + "name": "1.4 TSI BlueMotion DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57852, + "fields": { + "id_car_serie": 7974, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57857, + "fields": { + "id_car_serie": 7975, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57858, + "fields": { + "id_car_serie": 7975, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57859, + "fields": { + "id_car_serie": 7975, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57861, + "fields": { + "id_car_serie": 7975, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57864, + "fields": { + "id_car_serie": 7975, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57865, + "fields": { + "id_car_serie": 7975, + "name": "1.6 DSG (102 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57866, + "fields": { + "id_car_serie": 7975, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57869, + "fields": { + "id_car_serie": 7975, + "name": "1.6 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57870, + "fields": { + "id_car_serie": 7975, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57876, + "fields": { + "id_car_serie": 7975, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57878, + "fields": { + "id_car_serie": 7975, + "name": "2.0 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57879, + "fields": { + "id_car_serie": 7975, + "name": "2.0 TDI MT 4motion (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57880, + "fields": { + "id_car_serie": 7975, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57883, + "fields": { + "id_car_serie": 7976, + "name": "1.4i MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57901, + "fields": { + "id_car_serie": 7977, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57904, + "fields": { + "id_car_serie": 7977, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57908, + "fields": { + "id_car_serie": 7977, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57910, + "fields": { + "id_car_serie": 7977, + "name": "1.6 DSG (102 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57912, + "fields": { + "id_car_serie": 7977, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57914, + "fields": { + "id_car_serie": 7977, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57916, + "fields": { + "id_car_serie": 7977, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57925, + "fields": { + "id_car_serie": 7977, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57966, + "fields": { + "id_car_serie": 7980, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57967, + "fields": { + "id_car_serie": 7980, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57968, + "fields": { + "id_car_serie": 7980, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57969, + "fields": { + "id_car_serie": 7980, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57970, + "fields": { + "id_car_serie": 7980, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57971, + "fields": { + "id_car_serie": 7980, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57972, + "fields": { + "id_car_serie": 7980, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57973, + "fields": { + "id_car_serie": 7980, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57974, + "fields": { + "id_car_serie": 7981, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57976, + "fields": { + "id_car_serie": 7981, + "name": "1.6 Tiptronic (102 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 57978, + "fields": { + "id_car_serie": 7981, + "name": "1.9 TDI 5MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58000, + "fields": { + "id_car_serie": 7981, + "name": "1.4 FSI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58001, + "fields": { + "id_car_serie": 7981, + "name": "1.9 TDI 6MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58002, + "fields": { + "id_car_serie": 7981, + "name": "1.6 FSI Tiptronic (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58011, + "fields": { + "id_car_serie": 7982, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58012, + "fields": { + "id_car_serie": 7982, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58013, + "fields": { + "id_car_serie": 7982, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58014, + "fields": { + "id_car_serie": 7982, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58015, + "fields": { + "id_car_serie": 7982, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58016, + "fields": { + "id_car_serie": 7982, + "name": "1.6 FSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58017, + "fields": { + "id_car_serie": 7982, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58018, + "fields": { + "id_car_serie": 7982, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58019, + "fields": { + "id_car_serie": 7982, + "name": "1.8 4Motion MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58020, + "fields": { + "id_car_serie": 7982, + "name": "1.8 GTI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58021, + "fields": { + "id_car_serie": 7982, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58023, + "fields": { + "id_car_serie": 7982, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58024, + "fields": { + "id_car_serie": 7982, + "name": "1.9 TDI Tiptronic (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58025, + "fields": { + "id_car_serie": 7982, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58026, + "fields": { + "id_car_serie": 7982, + "name": "1.9 TDI 4Motion MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58027, + "fields": { + "id_car_serie": 7982, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58028, + "fields": { + "id_car_serie": 7982, + "name": "1.9 TDI 4Motion MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58029, + "fields": { + "id_car_serie": 7982, + "name": "1.9 TDI MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58030, + "fields": { + "id_car_serie": 7982, + "name": "1.9 TDI 4Motion MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58031, + "fields": { + "id_car_serie": 7982, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58032, + "fields": { + "id_car_serie": 7982, + "name": "1.9 TDI 4Motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58033, + "fields": { + "id_car_serie": 7982, + "name": "1.9 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58034, + "fields": { + "id_car_serie": 7982, + "name": "1.9 SDI MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58035, + "fields": { + "id_car_serie": 7982, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58036, + "fields": { + "id_car_serie": 7982, + "name": "1.9 TDI 4Motion MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58037, + "fields": { + "id_car_serie": 7982, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58038, + "fields": { + "id_car_serie": 7982, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58039, + "fields": { + "id_car_serie": 7982, + "name": "2.0 4Motion MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58040, + "fields": { + "id_car_serie": 7982, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58041, + "fields": { + "id_car_serie": 7982, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58042, + "fields": { + "id_car_serie": 7982, + "name": "2.3 4Motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58043, + "fields": { + "id_car_serie": 7982, + "name": "2.3 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58044, + "fields": { + "id_car_serie": 7982, + "name": "2.3 4Motion MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58046, + "fields": { + "id_car_serie": 7983, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58047, + "fields": { + "id_car_serie": 7983, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58048, + "fields": { + "id_car_serie": 7983, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58049, + "fields": { + "id_car_serie": 7983, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58050, + "fields": { + "id_car_serie": 7983, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58052, + "fields": { + "id_car_serie": 7983, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58073, + "fields": { + "id_car_serie": 7985, + "name": "1.8T AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58074, + "fields": { + "id_car_serie": 7985, + "name": "1.8T Tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58075, + "fields": { + "id_car_serie": 7985, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58076, + "fields": { + "id_car_serie": 7985, + "name": "1.8T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58078, + "fields": { + "id_car_serie": 7985, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58082, + "fields": { + "id_car_serie": 7985, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58083, + "fields": { + "id_car_serie": 7985, + "name": "1.6 FSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58087, + "fields": { + "id_car_serie": 7985, + "name": "1.9 TDI 4Motion MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58088, + "fields": { + "id_car_serie": 7985, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58089, + "fields": { + "id_car_serie": 7985, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58090, + "fields": { + "id_car_serie": 7985, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58091, + "fields": { + "id_car_serie": 7985, + "name": "2.0 4Motion MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58092, + "fields": { + "id_car_serie": 7985, + "name": "1.8 GTI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58096, + "fields": { + "id_car_serie": 7986, + "name": "1.4 4MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58097, + "fields": { + "id_car_serie": 7986, + "name": "1.4 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58098, + "fields": { + "id_car_serie": 7986, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58099, + "fields": { + "id_car_serie": 7986, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58100, + "fields": { + "id_car_serie": 7986, + "name": "1.8 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58101, + "fields": { + "id_car_serie": 7986, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58103, + "fields": { + "id_car_serie": 7986, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58104, + "fields": { + "id_car_serie": 7986, + "name": "1.8 Syncro MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58106, + "fields": { + "id_car_serie": 7986, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58107, + "fields": { + "id_car_serie": 7986, + "name": "1.9 SDI MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58108, + "fields": { + "id_car_serie": 7986, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58109, + "fields": { + "id_car_serie": 7986, + "name": "1.9 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58110, + "fields": { + "id_car_serie": 7986, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58111, + "fields": { + "id_car_serie": 7986, + "name": "1.9 TDI Syncro MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58112, + "fields": { + "id_car_serie": 7986, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58113, + "fields": { + "id_car_serie": 7986, + "name": "2.0 GTI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58116, + "fields": { + "id_car_serie": 7986, + "name": "2.8 VR6 MT (174 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58117, + "fields": { + "id_car_serie": 7986, + "name": "2.9 VR6 Syncro MT (190 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58133, + "fields": { + "id_car_serie": 7987, + "name": "1.8 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58137, + "fields": { + "id_car_serie": 7987, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58143, + "fields": { + "id_car_serie": 7987, + "name": "1.4 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58155, + "fields": { + "id_car_serie": 7987, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58169, + "fields": { + "id_car_serie": 7987, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58170, + "fields": { + "id_car_serie": 7987, + "name": "1.8 Syncro MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58183, + "fields": { + "id_car_serie": 7988, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58187, + "fields": { + "id_car_serie": 7988, + "name": "1.6 AT (70 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58188, + "fields": { + "id_car_serie": 7988, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58190, + "fields": { + "id_car_serie": 7988, + "name": "1.6 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58191, + "fields": { + "id_car_serie": 7988, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58192, + "fields": { + "id_car_serie": 7988, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58193, + "fields": { + "id_car_serie": 7988, + "name": "1.6 D 4MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58195, + "fields": { + "id_car_serie": 7988, + "name": "1.6 AT (72 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58197, + "fields": { + "id_car_serie": 7988, + "name": "1.6 D 5MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58198, + "fields": { + "id_car_serie": 7988, + "name": "1.6 TD MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58199, + "fields": { + "id_car_serie": 7988, + "name": "1.6 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58200, + "fields": { + "id_car_serie": 7988, + "name": "1.6 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58224, + "fields": { + "id_car_serie": 7988, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58226, + "fields": { + "id_car_serie": 7988, + "name": "1.8 Syncro MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58228, + "fields": { + "id_car_serie": 7988, + "name": "1.8 Syncro MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58232, + "fields": { + "id_car_serie": 7989, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58236, + "fields": { + "id_car_serie": 7989, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58237, + "fields": { + "id_car_serie": 7989, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58240, + "fields": { + "id_car_serie": 7989, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58244, + "fields": { + "id_car_serie": 7989, + "name": "1.8 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58245, + "fields": { + "id_car_serie": 7989, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58246, + "fields": { + "id_car_serie": 7989, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58248, + "fields": { + "id_car_serie": 7989, + "name": "1.8 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58249, + "fields": { + "id_car_serie": 7990, + "name": "1.8i AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58266, + "fields": { + "id_car_serie": 7990, + "name": "1.6 AT (70 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58269, + "fields": { + "id_car_serie": 7990, + "name": "1.6 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58271, + "fields": { + "id_car_serie": 7990, + "name": "1.6 D 4MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58273, + "fields": { + "id_car_serie": 7990, + "name": "1.6 D 5MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58274, + "fields": { + "id_car_serie": 7990, + "name": "1.6 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58280, + "fields": { + "id_car_serie": 7991, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58286, + "fields": { + "id_car_serie": 7991, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58287, + "fields": { + "id_car_serie": 7991, + "name": "1.5 AT (70 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58289, + "fields": { + "id_car_serie": 7991, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58297, + "fields": { + "id_car_serie": 7991, + "name": "1.6 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58301, + "fields": { + "id_car_serie": 7991, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58325, + "fields": { + "id_car_serie": 7995, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58327, + "fields": { + "id_car_serie": 7995, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58332, + "fields": { + "id_car_serie": 7996, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58333, + "fields": { + "id_car_serie": 7996, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58334, + "fields": { + "id_car_serie": 7996, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58335, + "fields": { + "id_car_serie": 7996, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58337, + "fields": { + "id_car_serie": 7996, + "name": "1.6 16V MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58338, + "fields": { + "id_car_serie": 7996, + "name": "1.6 16V FSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58339, + "fields": { + "id_car_serie": 7996, + "name": "1.8 5V Turbo AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58340, + "fields": { + "id_car_serie": 7996, + "name": "1.8 5V 4Motion MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58341, + "fields": { + "id_car_serie": 7996, + "name": "1.8 5V Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58342, + "fields": { + "id_car_serie": 7996, + "name": "1.8 5V Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58343, + "fields": { + "id_car_serie": 7996, + "name": "1.9 TDI AT (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58344, + "fields": { + "id_car_serie": 7996, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58345, + "fields": { + "id_car_serie": 7996, + "name": "1.9 TDI AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58346, + "fields": { + "id_car_serie": 7996, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58347, + "fields": { + "id_car_serie": 7996, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58348, + "fields": { + "id_car_serie": 7996, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58349, + "fields": { + "id_car_serie": 7996, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58350, + "fields": { + "id_car_serie": 7996, + "name": "1.9 TDI 4Motion MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58351, + "fields": { + "id_car_serie": 7996, + "name": "1.9 TDI 4Motion MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58352, + "fields": { + "id_car_serie": 7996, + "name": "1.9 TDI 4Motion MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58353, + "fields": { + "id_car_serie": 7996, + "name": "1.9 TDI 4Motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58354, + "fields": { + "id_car_serie": 7996, + "name": "1.9 SDI MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58355, + "fields": { + "id_car_serie": 7996, + "name": "1.9 TDI 4Motion MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58356, + "fields": { + "id_car_serie": 7996, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58357, + "fields": { + "id_car_serie": 7996, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58358, + "fields": { + "id_car_serie": 7996, + "name": "2.3 V5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58359, + "fields": { + "id_car_serie": 7996, + "name": "2.3 V5 4Motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58360, + "fields": { + "id_car_serie": 7996, + "name": "2.3 V5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58361, + "fields": { + "id_car_serie": 7996, + "name": "2.3 V5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58362, + "fields": { + "id_car_serie": 7996, + "name": "2.3 V5 4Motion MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58363, + "fields": { + "id_car_serie": 7996, + "name": "2.8 V6 4Motion MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58364, + "fields": { + "id_car_serie": 7997, + "name": "1.8 5V Turbo AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58365, + "fields": { + "id_car_serie": 7997, + "name": "1.8 5V Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58366, + "fields": { + "id_car_serie": 7997, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58367, + "fields": { + "id_car_serie": 7997, + "name": "1.9 TDI 4Motion MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58368, + "fields": { + "id_car_serie": 7997, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58369, + "fields": { + "id_car_serie": 7997, + "name": "2.0 4Motion MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58370, + "fields": { + "id_car_serie": 7997, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58371, + "fields": { + "id_car_serie": 7997, + "name": "2.3 V5 4Motion MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58372, + "fields": { + "id_car_serie": 7997, + "name": "2.3 V5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58375, + "fields": { + "id_car_serie": 7998, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58376, + "fields": { + "id_car_serie": 7998, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58377, + "fields": { + "id_car_serie": 7998, + "name": "1.8 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58378, + "fields": { + "id_car_serie": 7998, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58379, + "fields": { + "id_car_serie": 7998, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58380, + "fields": { + "id_car_serie": 7998, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58381, + "fields": { + "id_car_serie": 7998, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58383, + "fields": { + "id_car_serie": 7998, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58384, + "fields": { + "id_car_serie": 7998, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58385, + "fields": { + "id_car_serie": 7998, + "name": "1.9 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58386, + "fields": { + "id_car_serie": 7998, + "name": "1.9 SDI MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58387, + "fields": { + "id_car_serie": 7998, + "name": "1.9 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58388, + "fields": { + "id_car_serie": 7998, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58389, + "fields": { + "id_car_serie": 7998, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58390, + "fields": { + "id_car_serie": 7998, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58391, + "fields": { + "id_car_serie": 7998, + "name": "2.8 VR6 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58392, + "fields": { + "id_car_serie": 7998, + "name": "2.8 VR6 MT (174 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58400, + "fields": { + "id_car_serie": 7999, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58401, + "fields": { + "id_car_serie": 7999, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58403, + "fields": { + "id_car_serie": 7999, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58407, + "fields": { + "id_car_serie": 7999, + "name": "1.6 FSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58426, + "fields": { + "id_car_serie": 7999, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58428, + "fields": { + "id_car_serie": 8000, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58434, + "fields": { + "id_car_serie": 8000, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58436, + "fields": { + "id_car_serie": 8000, + "name": "1.6 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58437, + "fields": { + "id_car_serie": 8000, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58438, + "fields": { + "id_car_serie": 8000, + "name": "1.6 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58439, + "fields": { + "id_car_serie": 8000, + "name": "1.6 AT (54 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58440, + "fields": { + "id_car_serie": 8000, + "name": "1.6 AT (69 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58441, + "fields": { + "id_car_serie": 8000, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58442, + "fields": { + "id_car_serie": 8000, + "name": "1.6 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58443, + "fields": { + "id_car_serie": 8000, + "name": "1.8 AT (89 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58444, + "fields": { + "id_car_serie": 8000, + "name": "1.8 Syncro MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58447, + "fields": { + "id_car_serie": 8006, + "name": "1.8 TSI MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58448, + "fields": { + "id_car_serie": 8006, + "name": "1.8 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58449, + "fields": { + "id_car_serie": 8006, + "name": "1.8 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58450, + "fields": { + "id_car_serie": 8006, + "name": "1.8 TSI Euro5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58451, + "fields": { + "id_car_serie": 8006, + "name": "2.0 TSI Tiptronic (200 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58453, + "fields": { + "id_car_serie": 8006, + "name": "2.0 TDI BlueMotion MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58454, + "fields": { + "id_car_serie": 8006, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58456, + "fields": { + "id_car_serie": 8006, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58457, + "fields": { + "id_car_serie": 8006, + "name": "2.0 BlueTDI DSG (143 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58458, + "fields": { + "id_car_serie": 8006, + "name": "2.0 TDI DSG 4Motion (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58459, + "fields": { + "id_car_serie": 8006, + "name": "2.0 TDI BlueMotion DSG (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58460, + "fields": { + "id_car_serie": 8006, + "name": "2.0 BlueTDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58461, + "fields": { + "id_car_serie": 8006, + "name": "2.0 BlueTDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58462, + "fields": { + "id_car_serie": 8006, + "name": "2.0 TDI 4Motion MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58463, + "fields": { + "id_car_serie": 8006, + "name": "2.0 TDI BlueMotion 4Motion MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58464, + "fields": { + "id_car_serie": 8006, + "name": "2.0 TDI BlueMotion MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58465, + "fields": { + "id_car_serie": 8006, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58466, + "fields": { + "id_car_serie": 8006, + "name": "3.6 4Motion Euro5 DSG (300 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58467, + "fields": { + "id_car_serie": 8011, + "name": "1.3 MT (59 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58468, + "fields": { + "id_car_serie": 8011, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58471, + "fields": { + "id_car_serie": 8011, + "name": "1.6 MT (74 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58473, + "fields": { + "id_car_serie": 8011, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58474, + "fields": { + "id_car_serie": 8011, + "name": "1.8 16V MT (129 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58475, + "fields": { + "id_car_serie": 8011, + "name": "1.8 GTi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58476, + "fields": { + "id_car_serie": 8011, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58477, + "fields": { + "id_car_serie": 8011, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58478, + "fields": { + "id_car_serie": 8012, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58479, + "fields": { + "id_car_serie": 8012, + "name": "1.3 MT (59 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58480, + "fields": { + "id_car_serie": 8012, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58484, + "fields": { + "id_car_serie": 8012, + "name": "1.6 GTi MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58488, + "fields": { + "id_car_serie": 8015, + "name": "2.5 TDI Tiptronic (174 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58489, + "fields": { + "id_car_serie": 8015, + "name": "2.5 TDI MT (174 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58492, + "fields": { + "id_car_serie": 8015, + "name": "3.2 Tiptronic (220 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58493, + "fields": { + "id_car_serie": 8015, + "name": "3.2 Tiptronic (241 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58494, + "fields": { + "id_car_serie": 8015, + "name": "3.2 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58495, + "fields": { + "id_car_serie": 8015, + "name": "3.2 MT (241 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58496, + "fields": { + "id_car_serie": 8015, + "name": "3.6 FSI Tiptronic (280 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58497, + "fields": { + "id_car_serie": 8015, + "name": "4.2 Tiptronic (310 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58501, + "fields": { + "id_car_serie": 8015, + "name": "6.0 Tiptronic (450 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58502, + "fields": { + "id_car_serie": 8017, + "name": "1.7 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58503, + "fields": { + "id_car_serie": 8017, + "name": "1.7 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58504, + "fields": { + "id_car_serie": 8017, + "name": "1.7 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58505, + "fields": { + "id_car_serie": 8017, + "name": "1.7 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58508, + "fields": { + "id_car_serie": 8030, + "name": "2.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58511, + "fields": { + "id_car_serie": 8030, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58513, + "fields": { + "id_car_serie": 8030, + "name": "2.5 MT (230 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58514, + "fields": { + "id_car_serie": 8031, + "name": "2.0 T AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58515, + "fields": { + "id_car_serie": 8031, + "name": "2.0 T AT (225 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58516, + "fields": { + "id_car_serie": 8031, + "name": "2.0 T MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58518, + "fields": { + "id_car_serie": 8031, + "name": "2.0 T MT (225 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58519, + "fields": { + "id_car_serie": 8031, + "name": "2.3 T5 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58520, + "fields": { + "id_car_serie": 8031, + "name": "2.3 T5 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58522, + "fields": { + "id_car_serie": 8031, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58523, + "fields": { + "id_car_serie": 8031, + "name": "2.4 T AT (193 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58524, + "fields": { + "id_car_serie": 8031, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58525, + "fields": { + "id_car_serie": 8031, + "name": "2.4 T MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58526, + "fields": { + "id_car_serie": 8031, + "name": "2.4 T MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58527, + "fields": { + "id_car_serie": 8032, + "name": "2.0 T AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58528, + "fields": { + "id_car_serie": 8032, + "name": "2.0 T MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58530, + "fields": { + "id_car_serie": 8032, + "name": "2.0 T MT (225 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58531, + "fields": { + "id_car_serie": 8032, + "name": "2.3 T5 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58532, + "fields": { + "id_car_serie": 8032, + "name": "2.3 T5 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58534, + "fields": { + "id_car_serie": 8032, + "name": "2.4 AT (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58535, + "fields": { + "id_car_serie": 8032, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58536, + "fields": { + "id_car_serie": 8032, + "name": "2.4 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58537, + "fields": { + "id_car_serie": 8034, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58538, + "fields": { + "id_car_serie": 8034, + "name": "1.6 TD MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58539, + "fields": { + "id_car_serie": 8034, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58540, + "fields": { + "id_car_serie": 8034, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58541, + "fields": { + "id_car_serie": 8034, + "name": "2.0 TD MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58542, + "fields": { + "id_car_serie": 8034, + "name": "2.4 Geartronic (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58544, + "fields": { + "id_car_serie": 8034, + "name": "2.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58546, + "fields": { + "id_car_serie": 8034, + "name": "2.4 D5 Turbo Geartronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58547, + "fields": { + "id_car_serie": 8034, + "name": "2.5 T5 Turbo Geartronic AWD (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58548, + "fields": { + "id_car_serie": 8034, + "name": "2.5 T5 Turbo Geartronic (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58549, + "fields": { + "id_car_serie": 8034, + "name": "2.5 T5 Turbo MT AWD (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58550, + "fields": { + "id_car_serie": 8034, + "name": "2.5 T5 Turbo MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58551, + "fields": { + "id_car_serie": 8035, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58552, + "fields": { + "id_car_serie": 8035, + "name": "1.8i MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58560, + "fields": { + "id_car_serie": 8035, + "name": "1.9 TD MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58565, + "fields": { + "id_car_serie": 8035, + "name": "1.9 T4 Turbo AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58567, + "fields": { + "id_car_serie": 8035, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58570, + "fields": { + "id_car_serie": 8035, + "name": "1.9 T4 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58571, + "fields": { + "id_car_serie": 8043, + "name": "2.0 T AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58572, + "fields": { + "id_car_serie": 8043, + "name": "2.0 T MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58573, + "fields": { + "id_car_serie": 8043, + "name": "2.3 T5 Geartronic (250 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58574, + "fields": { + "id_car_serie": 8043, + "name": "2.3 T5 MT (250 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58575, + "fields": { + "id_car_serie": 8043, + "name": "2.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58576, + "fields": { + "id_car_serie": 8043, + "name": "2.4 Bi-fuel LPG AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58577, + "fields": { + "id_car_serie": 8043, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58578, + "fields": { + "id_car_serie": 8043, + "name": "2.4 T AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58579, + "fields": { + "id_car_serie": 8043, + "name": "2.4 T AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58581, + "fields": { + "id_car_serie": 8043, + "name": "2.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58582, + "fields": { + "id_car_serie": 8043, + "name": "2.4 Bi-fuel CNG MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58583, + "fields": { + "id_car_serie": 8043, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58584, + "fields": { + "id_car_serie": 8043, + "name": "2.4 T MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58585, + "fields": { + "id_car_serie": 8043, + "name": "2.4 T MT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58587, + "fields": { + "id_car_serie": 8043, + "name": "2.4 TD AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58588, + "fields": { + "id_car_serie": 8043, + "name": "2.4 Bi-fuel CNG AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58589, + "fields": { + "id_car_serie": 8043, + "name": "2.4 D5 Geartronic AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58591, + "fields": { + "id_car_serie": 8043, + "name": "2.4 TD MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58592, + "fields": { + "id_car_serie": 8043, + "name": "2.4 D5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58593, + "fields": { + "id_car_serie": 8043, + "name": "2.4 D5 MT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58596, + "fields": { + "id_car_serie": 8043, + "name": "2.5 T Geartronic (210 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58597, + "fields": { + "id_car_serie": 8043, + "name": "2.5 T Geartronic AWD (210 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58599, + "fields": { + "id_car_serie": 8043, + "name": "2.5 T MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58600, + "fields": { + "id_car_serie": 8043, + "name": "2.5 T MT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58602, + "fields": { + "id_car_serie": 8043, + "name": "2.5 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58623, + "fields": { + "id_car_serie": 49460, + "name": "2.4 T AT AWD (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58631, + "fields": { + "id_car_serie": 8044, + "name": "2.4 T MT AWD (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58635, + "fields": { + "id_car_serie": 8046, + "name": "2.0 T AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58636, + "fields": { + "id_car_serie": 8046, + "name": "2.0 T5 Powershift (240 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58637, + "fields": { + "id_car_serie": 8046, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58638, + "fields": { + "id_car_serie": 8046, + "name": "2.0 D3 Geartronic (136 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58639, + "fields": { + "id_car_serie": 8046, + "name": "2.4 D Geartronic AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58640, + "fields": { + "id_car_serie": 8046, + "name": "2.0 D AT (181 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58641, + "fields": { + "id_car_serie": 8046, + "name": "2.0 D3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58642, + "fields": { + "id_car_serie": 8046, + "name": "2.0 D3 DRIVe MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58643, + "fields": { + "id_car_serie": 8046, + "name": "2.0 D4 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58644, + "fields": { + "id_car_serie": 8046, + "name": "2.4 D4 Geartronic AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58645, + "fields": { + "id_car_serie": 8046, + "name": "2.4 D AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58646, + "fields": { + "id_car_serie": 8046, + "name": "2.4 D AT AWD (181 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58647, + "fields": { + "id_car_serie": 8046, + "name": "2.4 D5 Geartronic AWD (185 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58648, + "fields": { + "id_car_serie": 8046, + "name": "2.4 D5 AT AWD (205 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58649, + "fields": { + "id_car_serie": 8046, + "name": "2.4 D5 Geartronic AWD (215 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58650, + "fields": { + "id_car_serie": 8046, + "name": "2.4 D MT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58651, + "fields": { + "id_car_serie": 8046, + "name": "2.4 D DRIVe MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58652, + "fields": { + "id_car_serie": 8046, + "name": "2.4 D MT AWD (181 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58653, + "fields": { + "id_car_serie": 8046, + "name": "2.4 D5 MT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58654, + "fields": { + "id_car_serie": 8046, + "name": "2.4 D5 MT AWD (205 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58655, + "fields": { + "id_car_serie": 8046, + "name": "2.4 D5 MT AWD (215 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58657, + "fields": { + "id_car_serie": 8046, + "name": "3.0 T6 Geartronic AWD (304 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58658, + "fields": { + "id_car_serie": 8046, + "name": "3.2 AT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58659, + "fields": { + "id_car_serie": 8046, + "name": "3.2 Geartronic AWD (243 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58660, + "fields": { + "id_car_serie": 8048, + "name": "2.4 D5 Turbo Geartronic AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58662, + "fields": { + "id_car_serie": 8048, + "name": "2.4 D5 Turbo MT AWD (7 places) (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58665, + "fields": { + "id_car_serie": 8048, + "name": "2.9 T6 Turbo Geartronic AWD (272 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58666, + "fields": { + "id_car_serie": 8048, + "name": "4.4 Geartronic AWD (315 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58667, + "fields": { + "id_car_serie": 8050, + "name": "1.6 MT (119 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58670, + "fields": { + "id_car_serie": 8065, + "name": "2.4 AT AWD (126 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 58671, + "fields": { + "id_car_serie": 8065, + "name": "2.4 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 58672, + "fields": { + "id_car_serie": 8065, + "name": "2.4 MT AWD (126 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 58673, + "fields": { + "id_car_serie": 8074, + "name": "2103 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58674, + "fields": { + "id_car_serie": 8084, + "name": "1.5 MT (77 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58675, + "fields": { + "id_car_serie": 8084, + "name": "1.6 MT 8 valves (Euro-3) (81 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58676, + "fields": { + "id_car_serie": 8084, + "name": "1.6 MT 16 valves (89 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58677, + "fields": { + "id_car_serie": 8084, + "name": "1.6 MT 16 valves (98 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58678, + "fields": { + "id_car_serie": 8086, + "name": "1.7 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58679, + "fields": { + "id_car_serie": 8086, + "name": "1.8 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58680, + "fields": { + "id_car_serie": 8088, + "name": "1.7 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58682, + "fields": { + "id_car_serie": 8090, + "name": "1.7 MT 8 valves. (Euro-4) (83 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 58685, + "fields": { + "id_car_serie": 8094, + "name": "Ellada (82 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58688, + "fields": { + "id_car_serie": 8095, + "name": "1.4 MT 16 valves (Euro-3) (89 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58689, + "fields": { + "id_car_serie": 8095, + "name": "1.6 MT 8 valves (Euro-4) (81 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58690, + "fields": { + "id_car_serie": 8095, + "name": "1.6 MT 8 valves (2181) (82 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58691, + "fields": { + "id_car_serie": 8095, + "name": "1.6 MT 16 valves (Euro-4) (98 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58694, + "fields": { + "id_car_serie": 8096, + "name": "1.6 MT 16 valves (98 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58695, + "fields": { + "id_car_serie": 8105, + "name": "2402 2.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58700, + "fields": { + "id_car_serie": 8298, + "name": "1.5 DCI MT FWD (106 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58702, + "fields": { + "id_car_serie": 8298, + "name": "1.6 DCI MT FWD (130 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58703, + "fields": { + "id_car_serie": 8298, + "name": "1.6 DCI MT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58704, + "fields": { + "id_car_serie": 8298, + "name": "2.0 CVT FWD (141 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58705, + "fields": { + "id_car_serie": 8298, + "name": "2.0 MT FWD (141 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58706, + "fields": { + "id_car_serie": 8298, + "name": "2.0 MT AWD (141 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58707, + "fields": { + "id_car_serie": 8298, + "name": "2.0 DCI AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58708, + "fields": { + "id_car_serie": 8299, + "name": "1.5 DCI MT FWD (106 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58710, + "fields": { + "id_car_serie": 8299, + "name": "1.6 MT FWD (115 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58711, + "fields": { + "id_car_serie": 8299, + "name": "2.0 CVT FWD (141 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58712, + "fields": { + "id_car_serie": 8299, + "name": "2.0 CVT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58713, + "fields": { + "id_car_serie": 8299, + "name": "2.0 MT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58714, + "fields": { + "id_car_serie": 8299, + "name": "2.0 MT FWD (141 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58717, + "fields": { + "id_car_serie": 8299, + "name": "2.0 DCI MT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58718, + "fields": { + "id_car_serie": 8299, + "name": "2.0 DCI MT FWD (148 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58719, + "fields": { + "id_car_serie": 8303, + "name": "1.4 AT (60 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58723, + "fields": { + "id_car_serie": 8304, + "name": "1.7 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58724, + "fields": { + "id_car_serie": 8307, + "name": "1.0 Easytronic (58 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58727, + "fields": { + "id_car_serie": 8863, + "name": "1.8 DI-D MT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58728, + "fields": { + "id_car_serie": 8863, + "name": "1.8 DI-D MT 2WD (147 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58733, + "fields": { + "id_car_serie": 2420, + "name": "60 (306 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58734, + "fields": { + "id_car_serie": 2420, + "name": "75 (320 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 58740, + "fields": { + "id_car_serie": 2901, + "name": "1.4 TFSI S-tronic (125 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 58742, + "fields": { + "id_car_serie": 2901, + "name": "1.4 TFSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 58744, + "fields": { + "id_car_serie": 2901, + "name": "1.2 TFSI S-tronic (110 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 58746, + "fields": { + "id_car_serie": 2901, + "name": "1.6 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 58751, + "fields": { + "id_car_serie": 2902, + "name": "1.6 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 58752, + "fields": { + "id_car_serie": 2902, + "name": "1.8 TFSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 58753, + "fields": { + "id_car_serie": 2902, + "name": "2.0 TDI S tronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 58754, + "fields": { + "id_car_serie": 2902, + "name": "2.0 TDI MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 58755, + "fields": { + "id_car_serie": 2902, + "name": "2.0 TDI MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 58758, + "fields": { + "id_car_serie": 2903, + "name": "1.4 TFSI S tronic (125 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 58760, + "fields": { + "id_car_serie": 2903, + "name": "1.4 TFSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 58774, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TFSI flexible fuel MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58775, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TFSI flexible fuel MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58776, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TDI multitronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58777, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TDI S tronic quattro (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58778, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58779, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58788, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 58799, + "fields": { + "id_car_serie": 2910, + "name": "1.8 TFSI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58800, + "fields": { + "id_car_serie": 2910, + "name": "2.0 TDI multitronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 58801, + "fields": { + "id_car_serie": 2910, + "name": "2.0 TDI MT quattro (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 58802, + "fields": { + "id_car_serie": 2910, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 58803, + "fields": { + "id_car_serie": 2912, + "name": "2.0 TDI S tronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58804, + "fields": { + "id_car_serie": 2912, + "name": "2.0 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58805, + "fields": { + "id_car_serie": 2913, + "name": "2.0 TDI S tronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58806, + "fields": { + "id_car_serie": 2913, + "name": "2.0 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58807, + "fields": { + "id_car_serie": 3097, + "name": "2.4 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58808, + "fields": { + "id_car_serie": 3097, + "name": "2.4 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 58839, + "fields": { + "id_car_serie": 49434, + "name": "1.9 MT TD (84 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59097, + "fields": { + "id_car_serie": 4628, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59100, + "fields": { + "id_car_serie": 4628, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59101, + "fields": { + "id_car_serie": 4628, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59102, + "fields": { + "id_car_serie": 4628, + "name": "1.9 TDI MT quattro (110 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59105, + "fields": { + "id_car_serie": 4628, + "name": "1.9 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59106, + "fields": { + "id_car_serie": 4628, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59114, + "fields": { + "id_car_serie": 4628, + "name": "2.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59115, + "fields": { + "id_car_serie": 4628, + "name": "2.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59116, + "fields": { + "id_car_serie": 4628, + "name": "2.6 MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59118, + "fields": { + "id_car_serie": 4628, + "name": "2.8 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59119, + "fields": { + "id_car_serie": 4628, + "name": "2.8 AT quattro (174 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59120, + "fields": { + "id_car_serie": 4628, + "name": "2.8 AT (193 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59121, + "fields": { + "id_car_serie": 4628, + "name": "2.8 AT quattro (193 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59124, + "fields": { + "id_car_serie": 4628, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59125, + "fields": { + "id_car_serie": 4628, + "name": "2.8 MT quattro (193 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59130, + "fields": { + "id_car_serie": 4630, + "name": "3.5 MT (354 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59131, + "fields": { + "id_car_serie": 4630, + "name": "4.6 MT (326 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59138, + "fields": { + "id_car_serie": 4635, + "name": "2.0 AT (157 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59139, + "fields": { + "id_car_serie": 4635, + "name": "2.0 MT (157 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59148, + "fields": { + "id_car_serie": 4651, + "name": "3.5 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59150, + "fields": { + "id_car_serie": 4656, + "name": "3.7 AT (304 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59153, + "fields": { + "id_car_serie": 4659, + "name": "1.7 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59155, + "fields": { + "id_car_serie": 4659, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59161, + "fields": { + "id_car_serie": 4659, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59162, + "fields": { + "id_car_serie": 4659, + "name": "2.0 MT Q4 (187 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59165, + "fields": { + "id_car_serie": 4659, + "name": "2.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59166, + "fields": { + "id_car_serie": 4659, + "name": "2.5 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59175, + "fields": { + "id_car_serie": 4660, + "name": "2.5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59177, + "fields": { + "id_car_serie": 4660, + "name": "2.5 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59178, + "fields": { + "id_car_serie": 4660, + "name": "3.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59181, + "fields": { + "id_car_serie": 4660, + "name": "3.0 AT (207 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59182, + "fields": { + "id_car_serie": 4660, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59183, + "fields": { + "id_car_serie": 4660, + "name": "3.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59187, + "fields": { + "id_car_serie": 4660, + "name": "3.0 MT (197 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59189, + "fields": { + "id_car_serie": 4660, + "name": "3.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59190, + "fields": { + "id_car_serie": 4660, + "name": "3.0 MT (207 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59191, + "fields": { + "id_car_serie": 4660, + "name": "3.0 MT (209 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59192, + "fields": { + "id_car_serie": 4660, + "name": "3.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59193, + "fields": { + "id_car_serie": 4660, + "name": "3.0 MT (213 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59194, + "fields": { + "id_car_serie": 4660, + "name": "3.0 MT (228 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59195, + "fields": { + "id_car_serie": 4660, + "name": "3.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59200, + "fields": { + "id_car_serie": 4661, + "name": "2.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59201, + "fields": { + "id_car_serie": 4661, + "name": "2.4 JTD MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59202, + "fields": { + "id_car_serie": 4661, + "name": "2.4 JTD MT (185 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59203, + "fields": { + "id_car_serie": 4661, + "name": "2.4 JTD MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59205, + "fields": { + "id_car_serie": 4661, + "name": "2.5 MT (188 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59206, + "fields": { + "id_car_serie": 4661, + "name": "2.5 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59209, + "fields": { + "id_car_serie": 4661, + "name": "3.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59210, + "fields": { + "id_car_serie": 4661, + "name": "3.0 MT (226 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59211, + "fields": { + "id_car_serie": 4664, + "name": "1.7 TCT (241 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 59212, + "fields": { + "id_car_serie": 4667, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59213, + "fields": { + "id_car_serie": 4667, + "name": "1.8 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59214, + "fields": { + "id_car_serie": 4667, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59215, + "fields": { + "id_car_serie": 4667, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59216, + "fields": { + "id_car_serie": 4667, + "name": "2.4 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59217, + "fields": { + "id_car_serie": 4667, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59218, + "fields": { + "id_car_serie": 4667, + "name": "2.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59277, + "fields": { + "id_car_serie": 4850, + "name": "2.0d MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59278, + "fields": { + "id_car_serie": 4850, + "name": "2.0i MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59311, + "fields": { + "id_car_serie": 4880, + "name": "2.4 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59313, + "fields": { + "id_car_serie": 4888, + "name": "6.4 MT (470 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 59316, + "fields": { + "id_car_serie": 4897, + "name": "3.0 AT (176 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59320, + "fields": { + "id_car_serie": 4907, + "name": "3.1 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59321, + "fields": { + "id_car_serie": 4907, + "name": "3.8 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59324, + "fields": { + "id_car_serie": 4919, + "name": "1.8 CVT (121 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 59325, + "fields": { + "id_car_serie": 4919, + "name": "1.8 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 59327, + "fields": { + "id_car_serie": 5358, + "name": "2.0 TDCi MT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59328, + "fields": { + "id_car_serie": 5358, + "name": "2.0 TDCi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59329, + "fields": { + "id_car_serie": 5361, + "name": "2.4 MT 4x4 (116 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59332, + "fields": { + "id_car_serie": 5366, + "name": "2.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59337, + "fields": { + "id_car_serie": 5371, + "name": "2.5 TD MT 4x4 (109 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59350, + "fields": { + "id_car_serie": 5375, + "name": "2.0 TDCi DPF AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59351, + "fields": { + "id_car_serie": 5375, + "name": "2.3 AT (161 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59352, + "fields": { + "id_car_serie": 5375, + "name": "2.5 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59360, + "fields": { + "id_car_serie": 5377, + "name": "2.5 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59361, + "fields": { + "id_car_serie": 5377, + "name": "2.9 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59362, + "fields": { + "id_car_serie": 5377, + "name": "2.9 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59365, + "fields": { + "id_car_serie": 5378, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59378, + "fields": { + "id_car_serie": 5379, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59390, + "fields": { + "id_car_serie": 5381, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59392, + "fields": { + "id_car_serie": 5381, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59395, + "fields": { + "id_car_serie": 5385, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59396, + "fields": { + "id_car_serie": 5386, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59398, + "fields": { + "id_car_serie": 5387, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59400, + "fields": { + "id_car_serie": 5389, + "name": "3.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59402, + "fields": { + "id_car_serie": 5391, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59403, + "fields": { + "id_car_serie": 5391, + "name": "3.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59404, + "fields": { + "id_car_serie": 5391, + "name": "3.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59407, + "fields": { + "id_car_serie": 5395, + "name": "4.6 5AT (208 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59411, + "fields": { + "id_car_serie": 5408, + "name": "3.5 AT (310 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 59416, + "fields": { + "id_car_serie": 5413, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59417, + "fields": { + "id_car_serie": 5413, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59430, + "fields": { + "id_car_serie": 5421, + "name": "1.2 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59431, + "fields": { + "id_car_serie": 5421, + "name": "1.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59433, + "fields": { + "id_car_serie": 5423, + "name": "1.8 D MT (52 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59435, + "fields": { + "id_car_serie": 5424, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59437, + "fields": { + "id_car_serie": 5427, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59438, + "fields": { + "id_car_serie": 5427, + "name": "3.0 MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59439, + "fields": { + "id_car_serie": 5427, + "name": "3.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59441, + "fields": { + "id_car_serie": 5428, + "name": "1.4 TsT MultiAir (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 59446, + "fields": { + "id_car_serie": 5432, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59447, + "fields": { + "id_car_serie": 5435, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59448, + "fields": { + "id_car_serie": 5435, + "name": "1.6 MT (127 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59449, + "fields": { + "id_car_serie": 5435, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59450, + "fields": { + "id_car_serie": 5436, + "name": "3.0 MT (250 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59452, + "fields": { + "id_car_serie": 5437, + "name": "2.5 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59453, + "fields": { + "id_car_serie": 5441, + "name": "2.4 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59454, + "fields": { + "id_car_serie": 5441, + "name": "2.5 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59455, + "fields": { + "id_car_serie": 5441, + "name": "2.5 TD MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59456, + "fields": { + "id_car_serie": 5441, + "name": "2.5 TD MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59457, + "fields": { + "id_car_serie": 5441, + "name": "3.0 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59461, + "fields": { + "id_car_serie": 5445, + "name": "1.3 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59462, + "fields": { + "id_car_serie": 5450, + "name": "5.3 MT (208 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59464, + "fields": { + "id_car_serie": 5454, + "name": "4.3 AMT (385 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59467, + "fields": { + "id_car_serie": 5457, + "name": "5.3 AT (375 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59468, + "fields": { + "id_car_serie": 5457, + "name": "5.3 MT (340 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59472, + "fields": { + "id_car_serie": 5459, + "name": "6.3 MT (507 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59474, + "fields": { + "id_car_serie": 5464, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59478, + "fields": { + "id_car_serie": 5465, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59482, + "fields": { + "id_car_serie": 5465, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59484, + "fields": { + "id_car_serie": 5465, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59485, + "fields": { + "id_car_serie": 5465, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59509, + "fields": { + "id_car_serie": 5468, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59510, + "fields": { + "id_car_serie": 5468, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59516, + "fields": { + "id_car_serie": 5469, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59522, + "fields": { + "id_car_serie": 5470, + "name": "1.8T AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59523, + "fields": { + "id_car_serie": 5470, + "name": "1.8T MT Quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59524, + "fields": { + "id_car_serie": 5470, + "name": "1.8T MT Quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59570, + "fields": { + "id_car_serie": 5479, + "name": "2.0 TFSI multitronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59571, + "fields": { + "id_car_serie": 5479, + "name": "2.0 TFSI MT (211 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59572, + "fields": { + "id_car_serie": 5479, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59576, + "fields": { + "id_car_serie": 5481, + "name": "2.7 T quattro MT (250 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59578, + "fields": { + "id_car_serie": 5482, + "name": "2.0 TFSI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59580, + "fields": { + "id_car_serie": 5482, + "name": "2.4 CVT multitronic (177 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59581, + "fields": { + "id_car_serie": 5482, + "name": "2.7 TDI multitronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59582, + "fields": { + "id_car_serie": 5482, + "name": "2.7 TDI tiptronic quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59583, + "fields": { + "id_car_serie": 5482, + "name": "2.7 TDI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59586, + "fields": { + "id_car_serie": 5482, + "name": "3.0 MT quattro (218 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59587, + "fields": { + "id_car_serie": 5482, + "name": "4.2 FSI MT quattro (350 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59588, + "fields": { + "id_car_serie": 5482, + "name": "4.2 tiptronic quattro (335 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59604, + "fields": { + "id_car_serie": 5484, + "name": "3.0 tiptronic quattro (218 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59605, + "fields": { + "id_car_serie": 5484, + "name": "3.0 multitronic (218 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59613, + "fields": { + "id_car_serie": 5486, + "name": "2.7 T tiptronic (230 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59614, + "fields": { + "id_car_serie": 5486, + "name": "2.7 T MT quattro (230 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59615, + "fields": { + "id_car_serie": 5486, + "name": "2.8 tiptronic quattro (193 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59617, + "fields": { + "id_car_serie": 5487, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59618, + "fields": { + "id_car_serie": 5487, + "name": "2.5 TDI tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59620, + "fields": { + "id_car_serie": 5487, + "name": "2.8 tiptronic quattro (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59621, + "fields": { + "id_car_serie": 5487, + "name": "2.8 tiptronic (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59651, + "fields": { + "id_car_serie": 5493, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59653, + "fields": { + "id_car_serie": 5493, + "name": "2.1 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59654, + "fields": { + "id_car_serie": 5493, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59656, + "fields": { + "id_car_serie": 5494, + "name": "1.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59658, + "fields": { + "id_car_serie": 5496, + "name": "3.2 FSI S tronic quattro (270 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59679, + "fields": { + "id_car_serie": 5530, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59680, + "fields": { + "id_car_serie": 5530, + "name": "1.3 AT (54 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59681, + "fields": { + "id_car_serie": 5530, + "name": "1.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59682, + "fields": { + "id_car_serie": 5532, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59683, + "fields": { + "id_car_serie": 5532, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59685, + "fields": { + "id_car_serie": 5533, + "name": "1.8 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59686, + "fields": { + "id_car_serie": 5536, + "name": "1.7 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59687, + "fields": { + "id_car_serie": 5536, + "name": "2.2 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59958, + "fields": { + "id_car_serie": 5601, + "name": "6.2 AT (800 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59968, + "fields": { + "id_car_serie": 5613, + "name": "3.1 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59979, + "fields": { + "id_car_serie": 5635, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 59996, + "fields": { + "id_car_serie": 5657, + "name": "4.5 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59998, + "fields": { + "id_car_serie": 5658, + "name": "6.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 59999, + "fields": { + "id_car_serie": 5660, + "name": "3.6 AT (264 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60000, + "fields": { + "id_car_serie": 5660, + "name": "3.6 AT AWD (264 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60002, + "fields": { + "id_car_serie": 5665, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60003, + "fields": { + "id_car_serie": 5665, + "name": "1.8 MT (124 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60004, + "fields": { + "id_car_serie": 5668, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 60008, + "fields": { + "id_car_serie": 5680, + "name": "1.3 AMT (83 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 60012, + "fields": { + "id_car_serie": 5685, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60013, + "fields": { + "id_car_serie": 5685, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 60014, + "fields": { + "id_car_serie": 5685, + "name": "2.4 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60015, + "fields": { + "id_car_serie": 5687, + "name": "2.4 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60016, + "fields": { + "id_car_serie": 5691, + "name": "1.2 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60017, + "fields": { + "id_car_serie": 5691, + "name": "1.4 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60019, + "fields": { + "id_car_serie": 5692, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60030, + "fields": { + "id_car_serie": 5700, + "name": "6.2 V8 AT (405 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60032, + "fields": { + "id_car_serie": 5701, + "name": "3.6 V6 MT (312 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60043, + "fields": { + "id_car_serie": 5704, + "name": "2.8 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60046, + "fields": { + "id_car_serie": 5705, + "name": "5.7 AT (295 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60048, + "fields": { + "id_car_serie": 5706, + "name": "5.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60052, + "fields": { + "id_car_serie": 5711, + "name": "2.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60053, + "fields": { + "id_car_serie": 5713, + "name": "1.6 5MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60054, + "fields": { + "id_car_serie": 5713, + "name": "1.8 D MT (51 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60057, + "fields": { + "id_car_serie": 5717, + "name": "2.4 AT (171 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60064, + "fields": { + "id_car_serie": 5722, + "name": "1.8 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60066, + "fields": { + "id_car_serie": 5727, + "name": "2.2 Ecotec AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60067, + "fields": { + "id_car_serie": 5727, + "name": "2.4 Ecotec MT (172 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60069, + "fields": { + "id_car_serie": 5733, + "name": "3.0 TDi MT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60070, + "fields": { + "id_car_serie": 5742, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60073, + "fields": { + "id_car_serie": 5747, + "name": "2.0 VCDi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60078, + "fields": { + "id_car_serie": 5766, + "name": "2.7 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60079, + "fields": { + "id_car_serie": 5767, + "name": "4.7 AT 4WD (234 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60080, + "fields": { + "id_car_serie": 5767, + "name": "5.7 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60083, + "fields": { + "id_car_serie": 5782, + "name": "2.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60084, + "fields": { + "id_car_serie": 5782, + "name": "2.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60087, + "fields": { + "id_car_serie": 6473, + "name": "2.0 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60088, + "fields": { + "id_car_serie": 6473, + "name": "2.0 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60094, + "fields": { + "id_car_serie": 7289, + "name": "1.9 CDTI AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60097, + "fields": { + "id_car_serie": 7844, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60098, + "fields": { + "id_car_serie": 7844, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60099, + "fields": { + "id_car_serie": 8932, + "name": "2.8 D AT (93 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60100, + "fields": { + "id_car_serie": 8932, + "name": "2.8 D MT (93 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60108, + "fields": { + "id_car_serie": 9364, + "name": "1.5 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60109, + "fields": { + "id_car_serie": 9364, + "name": "1.6 MT 8 valves (Euro-3) (80 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60111, + "fields": { + "id_car_serie": 9369, + "name": "21110 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60112, + "fields": { + "id_car_serie": 9369, + "name": "21113 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60113, + "fields": { + "id_car_serie": 9369, + "name": "21112 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60115, + "fields": { + "id_car_serie": 9466, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60117, + "fields": { + "id_car_serie": 9467, + "name": "1.8 MT (127 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60118, + "fields": { + "id_car_serie": 9467, + "name": "2.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60120, + "fields": { + "id_car_serie": 9472, + "name": "2.0 CVT FWD (137 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60121, + "fields": { + "id_car_serie": 9472, + "name": "2.0 CVT AWD (137 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60122, + "fields": { + "id_car_serie": 9473, + "name": "2.0 CVT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60123, + "fields": { + "id_car_serie": 9473, + "name": "2.0 CVT FWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60128, + "fields": { + "id_car_serie": 9474, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60131, + "fields": { + "id_car_serie": 9474, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60134, + "fields": { + "id_car_serie": 9474, + "name": "2.0 AT (67 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60135, + "fields": { + "id_car_serie": 9474, + "name": "2.0 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60136, + "fields": { + "id_car_serie": 9474, + "name": "2.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60139, + "fields": { + "id_car_serie": 9474, + "name": "2.4 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60142, + "fields": { + "id_car_serie": 9476, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60143, + "fields": { + "id_car_serie": 9476, + "name": "1.8 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60144, + "fields": { + "id_car_serie": 9476, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60145, + "fields": { + "id_car_serie": 9476, + "name": "1.8 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60146, + "fields": { + "id_car_serie": 9476, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60147, + "fields": { + "id_car_serie": 9476, + "name": "2.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60148, + "fields": { + "id_car_serie": 9476, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60149, + "fields": { + "id_car_serie": 9476, + "name": "2.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60151, + "fields": { + "id_car_serie": 9477, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60152, + "fields": { + "id_car_serie": 9478, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60153, + "fields": { + "id_car_serie": 9478, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60155, + "fields": { + "id_car_serie": 9479, + "name": "3.7 AT (330 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 60156, + "fields": { + "id_car_serie": 9480, + "name": "3.5 GT AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60157, + "fields": { + "id_car_serie": 9480, + "name": "3.5 GT AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60158, + "fields": { + "id_car_serie": 9480, + "name": "3.5 GT MT (272 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60159, + "fields": { + "id_car_serie": 9480, + "name": "3.5 GT MT (280 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60160, + "fields": { + "id_car_serie": 9481, + "name": "2.5 GT AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60161, + "fields": { + "id_car_serie": 9481, + "name": "2.5 GT AT (215 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60162, + "fields": { + "id_car_serie": 9481, + "name": "3.0 GT AT (260 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60163, + "fields": { + "id_car_serie": 9481, + "name": "3.5 GT AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60164, + "fields": { + "id_car_serie": 9481, + "name": "3.5 GT CVT (272 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60165, + "fields": { + "id_car_serie": 9481, + "name": "3.5 GT MT (272 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60168, + "fields": { + "id_car_serie": 9483, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60169, + "fields": { + "id_car_serie": 9483, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60170, + "fields": { + "id_car_serie": 9483, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60171, + "fields": { + "id_car_serie": 9483, + "name": "2.5 Turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60172, + "fields": { + "id_car_serie": 9483, + "name": "2.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60173, + "fields": { + "id_car_serie": 9483, + "name": "2.5 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60174, + "fields": { + "id_car_serie": 9483, + "name": "2.5 Turbo MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60175, + "fields": { + "id_car_serie": 9484, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60176, + "fields": { + "id_car_serie": 9484, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60177, + "fields": { + "id_car_serie": 9484, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60178, + "fields": { + "id_car_serie": 9484, + "name": "2.5 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60179, + "fields": { + "id_car_serie": 9484, + "name": "2.5 Turbo AT (245 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60182, + "fields": { + "id_car_serie": 9484, + "name": "2.5 Turbo MT (250 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60193, + "fields": { + "id_car_serie": 9485, + "name": "2.6 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60202, + "fields": { + "id_car_serie": 9486, + "name": "2.6 Twin Turbo MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60203, + "fields": { + "id_car_serie": 9487, + "name": "1.8 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60204, + "fields": { + "id_car_serie": 9487, + "name": "1.8 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60205, + "fields": { + "id_car_serie": 9487, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60206, + "fields": { + "id_car_serie": 9487, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60209, + "fields": { + "id_car_serie": 9487, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60210, + "fields": { + "id_car_serie": 9487, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60211, + "fields": { + "id_car_serie": 9487, + "name": "2.0 Turbo MT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60213, + "fields": { + "id_car_serie": 9487, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60230, + "fields": { + "id_car_serie": 9489, + "name": "2.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60254, + "fields": { + "id_car_serie": 9491, + "name": "2.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60259, + "fields": { + "id_car_serie": 9492, + "name": "2.5 AT (231 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60261, + "fields": { + "id_car_serie": 9492, + "name": "2.5 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60264, + "fields": { + "id_car_serie": 9492, + "name": "2.5 MT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60277, + "fields": { + "id_car_serie": 9495, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60278, + "fields": { + "id_car_serie": 9495, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60279, + "fields": { + "id_car_serie": 9495, + "name": "1.5 AT AWD (105 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60280, + "fields": { + "id_car_serie": 9495, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60281, + "fields": { + "id_car_serie": 9495, + "name": "1.5 MT AWD (105 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60282, + "fields": { + "id_car_serie": 9495, + "name": "1.6 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60283, + "fields": { + "id_car_serie": 9495, + "name": "1.8 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60284, + "fields": { + "id_car_serie": 9495, + "name": "2.2 D AT (79 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60285, + "fields": { + "id_car_serie": 9495, + "name": "2.2 D MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60287, + "fields": { + "id_car_serie": 9468, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60288, + "fields": { + "id_car_serie": 9496, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60289, + "fields": { + "id_car_serie": 9496, + "name": "1.5 MT AWD (105 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60291, + "fields": { + "id_car_serie": 9497, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60292, + "fields": { + "id_car_serie": 9497, + "name": "1.6 i MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60293, + "fields": { + "id_car_serie": 9497, + "name": "2.0 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60294, + "fields": { + "id_car_serie": 9498, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60295, + "fields": { + "id_car_serie": 9498, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60296, + "fields": { + "id_car_serie": 9498, + "name": "1.7 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60298, + "fields": { + "id_car_serie": 9499, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60300, + "fields": { + "id_car_serie": 9499, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60302, + "fields": { + "id_car_serie": 9499, + "name": "1.6 MT AWD (102 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60303, + "fields": { + "id_car_serie": 9499, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60304, + "fields": { + "id_car_serie": 9499, + "name": "1.6 MT AWD (90 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60307, + "fields": { + "id_car_serie": 9499, + "name": "2.0 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60317, + "fields": { + "id_car_serie": 9501, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60318, + "fields": { + "id_car_serie": 9501, + "name": "1.4 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60322, + "fields": { + "id_car_serie": 9501, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60324, + "fields": { + "id_car_serie": 9501, + "name": "2.0 GTI-R MT AWD (220 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60325, + "fields": { + "id_car_serie": 9501, + "name": "2.0 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60341, + "fields": { + "id_car_serie": 9502, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60345, + "fields": { + "id_car_serie": 9503, + "name": "1.3 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60346, + "fields": { + "id_car_serie": 9503, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60352, + "fields": { + "id_car_serie": 9503, + "name": "1.6 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60353, + "fields": { + "id_car_serie": 9503, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60355, + "fields": { + "id_car_serie": 9503, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60356, + "fields": { + "id_car_serie": 9503, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60357, + "fields": { + "id_car_serie": 9503, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60372, + "fields": { + "id_car_serie": 9504, + "name": "1.7 D AT (55 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60373, + "fields": { + "id_car_serie": 9504, + "name": "1.7 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60387, + "fields": { + "id_car_serie": 9506, + "name": "1.3 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60398, + "fields": { + "id_car_serie": 9509, + "name": "2.5 Xtronic AWD (167 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60399, + "fields": { + "id_car_serie": 9509, + "name": "2.5 Xtronic (182 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60402, + "fields": { + "id_car_serie": 9510, + "name": "2.3 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60403, + "fields": { + "id_car_serie": 9510, + "name": "3.5 CVT (231 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60407, + "fields": { + "id_car_serie": 9512, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60408, + "fields": { + "id_car_serie": 9512, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60409, + "fields": { + "id_car_serie": 9512, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60425, + "fields": { + "id_car_serie": 9516, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60426, + "fields": { + "id_car_serie": 9516, + "name": "1.4 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60427, + "fields": { + "id_car_serie": 9516, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60428, + "fields": { + "id_car_serie": 9516, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60429, + "fields": { + "id_car_serie": 9516, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60430, + "fields": { + "id_car_serie": 9516, + "name": "2.0 D AT (60 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60431, + "fields": { + "id_car_serie": 9516, + "name": "2.0 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60437, + "fields": { + "id_car_serie": 9517, + "name": "2.7 TD MT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60447, + "fields": { + "id_car_serie": 9518, + "name": "2.7 TD MT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60472, + "fields": { + "id_car_serie": 9522, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60473, + "fields": { + "id_car_serie": 9523, + "name": "1.8 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60475, + "fields": { + "id_car_serie": 9524, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60480, + "fields": { + "id_car_serie": 9524, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60481, + "fields": { + "id_car_serie": 9524, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60482, + "fields": { + "id_car_serie": 9525, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60483, + "fields": { + "id_car_serie": 9525, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60486, + "fields": { + "id_car_serie": 9525, + "name": "1.8 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60487, + "fields": { + "id_car_serie": 9525, + "name": "1.8 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60488, + "fields": { + "id_car_serie": 9525, + "name": "1.8 MT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60490, + "fields": { + "id_car_serie": 9525, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60495, + "fields": { + "id_car_serie": 9526, + "name": "3.3 Turbo AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60497, + "fields": { + "id_car_serie": 9526, + "name": "3.3 MT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60498, + "fields": { + "id_car_serie": 9526, + "name": "3.3 Turbo MT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60505, + "fields": { + "id_car_serie": 9528, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60506, + "fields": { + "id_car_serie": 9528, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60507, + "fields": { + "id_car_serie": 9528, + "name": "2.0 AT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60508, + "fields": { + "id_car_serie": 9528, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60510, + "fields": { + "id_car_serie": 9528, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60511, + "fields": { + "id_car_serie": 9528, + "name": "2.5 AWD AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60512, + "fields": { + "id_car_serie": 9528, + "name": "2.5 T AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60513, + "fields": { + "id_car_serie": 9528, + "name": "2.4 TD AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60514, + "fields": { + "id_car_serie": 9528, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60517, + "fields": { + "id_car_serie": 9529, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60518, + "fields": { + "id_car_serie": 9529, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60519, + "fields": { + "id_car_serie": 9529, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60520, + "fields": { + "id_car_serie": 9529, + "name": "2.5 AWD AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60521, + "fields": { + "id_car_serie": 9529, + "name": "2.5 Twin-turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60522, + "fields": { + "id_car_serie": 9529, + "name": "2.5 Twin-turbo MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60523, + "fields": { + "id_car_serie": 9529, + "name": "2.4 TD AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60525, + "fields": { + "id_car_serie": 9529, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60526, + "fields": { + "id_car_serie": 9530, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60527, + "fields": { + "id_car_serie": 9530, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60529, + "fields": { + "id_car_serie": 9530, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60530, + "fields": { + "id_car_serie": 9530, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60531, + "fields": { + "id_car_serie": 9530, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60532, + "fields": { + "id_car_serie": 9530, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60533, + "fields": { + "id_car_serie": 9530, + "name": "2.0 Twin-turbo AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60534, + "fields": { + "id_car_serie": 9530, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60535, + "fields": { + "id_car_serie": 9530, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60537, + "fields": { + "id_car_serie": 9530, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60538, + "fields": { + "id_car_serie": 9530, + "name": "2.5 Twin-turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60539, + "fields": { + "id_car_serie": 9530, + "name": "2.4 D AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60542, + "fields": { + "id_car_serie": 9530, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60544, + "fields": { + "id_car_serie": 9531, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60546, + "fields": { + "id_car_serie": 9532, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60547, + "fields": { + "id_car_serie": 9532, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60548, + "fields": { + "id_car_serie": 9532, + "name": "2.4 D MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60551, + "fields": { + "id_car_serie": 9534, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60554, + "fields": { + "id_car_serie": 9535, + "name": "2.0 MT AWD (141 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60556, + "fields": { + "id_car_serie": 9535, + "name": "2.0 DCI AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60558, + "fields": { + "id_car_serie": 9535, + "name": "2.0 DCI MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60559, + "fields": { + "id_car_serie": 9535, + "name": "2.5 CVT AWD (169 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60560, + "fields": { + "id_car_serie": 9535, + "name": "2.0 CVT AWD (141 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60562, + "fields": { + "id_car_serie": 9536, + "name": "2.0 AT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60564, + "fields": { + "id_car_serie": 9536, + "name": "2.0 MT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60565, + "fields": { + "id_car_serie": 9536, + "name": "2.0 GT MT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60566, + "fields": { + "id_car_serie": 9536, + "name": "2.2 DCI MT AWD (114 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60567, + "fields": { + "id_car_serie": 9536, + "name": "2.2 DCI MT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60568, + "fields": { + "id_car_serie": 9536, + "name": "2.5 AT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60569, + "fields": { + "id_car_serie": 9536, + "name": "2.5 MT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60572, + "fields": { + "id_car_serie": 9537, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60581, + "fields": { + "id_car_serie": 9539, + "name": "4.1 TD AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60583, + "fields": { + "id_car_serie": 9540, + "name": "2.5 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60584, + "fields": { + "id_car_serie": 9540, + "name": "2.5 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60594, + "fields": { + "id_car_serie": 9542, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60596, + "fields": { + "id_car_serie": 9542, + "name": "2.0 AT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60597, + "fields": { + "id_car_serie": 9542, + "name": "2.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60599, + "fields": { + "id_car_serie": 9543, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60600, + "fields": { + "id_car_serie": 9543, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60601, + "fields": { + "id_car_serie": 9543, + "name": "2.0 CVT (152 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60603, + "fields": { + "id_car_serie": 9544, + "name": "1.5 AT Overdrive (94 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60604, + "fields": { + "id_car_serie": 9544, + "name": "1.5 MT Overdrive (94 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60605, + "fields": { + "id_car_serie": 9544, + "name": "1.5 MT Overdrive (102 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60606, + "fields": { + "id_car_serie": 9545, + "name": "2.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60607, + "fields": { + "id_car_serie": 9545, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60608, + "fields": { + "id_car_serie": 9545, + "name": "2.0 turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60609, + "fields": { + "id_car_serie": 9545, + "name": "2.0 turbo MT (224 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60610, + "fields": { + "id_car_serie": 9545, + "name": "2.2 AT (137 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60611, + "fields": { + "id_car_serie": 9545, + "name": "2.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60613, + "fields": { + "id_car_serie": 9546, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60614, + "fields": { + "id_car_serie": 9546, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60616, + "fields": { + "id_car_serie": 9547, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60617, + "fields": { + "id_car_serie": 9547, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60618, + "fields": { + "id_car_serie": 9548, + "name": "3.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60619, + "fields": { + "id_car_serie": 9549, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 60620, + "fields": { + "id_car_serie": 9549, + "name": "1.5 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 60622, + "fields": { + "id_car_serie": 9550, + "name": "1.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60623, + "fields": { + "id_car_serie": 9550, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60624, + "fields": { + "id_car_serie": 9550, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60625, + "fields": { + "id_car_serie": 9550, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60626, + "fields": { + "id_car_serie": 9550, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60627, + "fields": { + "id_car_serie": 9551, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60629, + "fields": { + "id_car_serie": 9552, + "name": "2.5 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60630, + "fields": { + "id_car_serie": 9552, + "name": "2.5 sVT (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60631, + "fields": { + "id_car_serie": 9553, + "name": "1.0 AT (71 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60633, + "fields": { + "id_car_serie": 9553, + "name": "1.3 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60634, + "fields": { + "id_car_serie": 9553, + "name": "1.3 AT (92 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60640, + "fields": { + "id_car_serie": 9555, + "name": "2.0 D4-D MT 8seat (114 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60641, + "fields": { + "id_car_serie": 9555, + "name": "2.4 AT 8seat (154 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60642, + "fields": { + "id_car_serie": 9555, + "name": "2.4 AT 7seat (154 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60643, + "fields": { + "id_car_serie": 9555, + "name": "2.4 MT 8seat (154 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60645, + "fields": { + "id_car_serie": 9555, + "name": "3.0 AT 8seat (220 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60647, + "fields": { + "id_car_serie": 9556, + "name": "2.4 supercharged AT 4x4 (161 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60648, + "fields": { + "id_car_serie": 9556, + "name": "2.4 supercharged AT (161 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60649, + "fields": { + "id_car_serie": 9556, + "name": "2.4 MT 4X4 (138 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60650, + "fields": { + "id_car_serie": 9556, + "name": "2.4 MT (138 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60651, + "fields": { + "id_car_serie": 9557, + "name": "1.5 CVT (77 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60655, + "fields": { + "id_car_serie": 9561, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60656, + "fields": { + "id_car_serie": 9561, + "name": "1.8 AT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60657, + "fields": { + "id_car_serie": 9561, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60663, + "fields": { + "id_car_serie": 9563, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60664, + "fields": { + "id_car_serie": 9563, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60666, + "fields": { + "id_car_serie": 9564, + "name": "1.5 AT AWD (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60669, + "fields": { + "id_car_serie": 9565, + "name": "1.5 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60670, + "fields": { + "id_car_serie": 9565, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60671, + "fields": { + "id_car_serie": 9566, + "name": "2.7 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60672, + "fields": { + "id_car_serie": 49296, + "name": "2.7 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60673, + "fields": { + "id_car_serie": 9566, + "name": "2.7 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60674, + "fields": { + "id_car_serie": 49296, + "name": "3.0 D AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60675, + "fields": { + "id_car_serie": 9566, + "name": "3.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60684, + "fields": { + "id_car_serie": 9568, + "name": "1.3 AT Van (87 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 60686, + "fields": { + "id_car_serie": 9568, + "name": "1.4 D-4D MT Van (72 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 60687, + "fields": { + "id_car_serie": 9568, + "name": "1.5 AT 4WD Van (105 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 60688, + "fields": { + "id_car_serie": 9568, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 60689, + "fields": { + "id_car_serie": 9568, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 60690, + "fields": { + "id_car_serie": 9568, + "name": "1.5 MT 4WD Van (105 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 60693, + "fields": { + "id_car_serie": 9570, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 60694, + "fields": { + "id_car_serie": 9570, + "name": "1.5 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 60696, + "fields": { + "id_car_serie": 9572, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60697, + "fields": { + "id_car_serie": 9572, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60703, + "fields": { + "id_car_serie": 9573, + "name": "2.0 MT (148 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60704, + "fields": { + "id_car_serie": 9573, + "name": "2.0 MT (148 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60740, + "fields": { + "id_car_serie": 9576, + "name": "2.0 MT AWD (128 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60749, + "fields": { + "id_car_serie": 9579, + "name": "4.7 AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60750, + "fields": { + "id_car_serie": 9579, + "name": "4.7 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60753, + "fields": { + "id_car_serie": 9580, + "name": "3.3 AT AWD (230 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60757, + "fields": { + "id_car_serie": 9581, + "name": "3.0 AT (213 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60760, + "fields": { + "id_car_serie": 9582, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 60761, + "fields": { + "id_car_serie": 9583, + "name": "1.3 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60762, + "fields": { + "id_car_serie": 9583, + "name": "1.3 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60763, + "fields": { + "id_car_serie": 9583, + "name": "1.3 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60764, + "fields": { + "id_car_serie": 9583, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60772, + "fields": { + "id_car_serie": 9586, + "name": "2.5 MT GT (280 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60776, + "fields": { + "id_car_serie": 9587, + "name": "2.0 AT (242 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60777, + "fields": { + "id_car_serie": 9587, + "name": "2.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60778, + "fields": { + "id_car_serie": 9587, + "name": "2.0 MT (242 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60779, + "fields": { + "id_car_serie": 9587, + "name": "3.0 AT (235 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60780, + "fields": { + "id_car_serie": 9587, + "name": "3.0 MT (235 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60781, + "fields": { + "id_car_serie": 9588, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60782, + "fields": { + "id_car_serie": 9588, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60784, + "fields": { + "id_car_serie": 9589, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60786, + "fields": { + "id_car_serie": 9590, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60787, + "fields": { + "id_car_serie": 9590, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60788, + "fields": { + "id_car_serie": 9590, + "name": "1.6 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60789, + "fields": { + "id_car_serie": 9590, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60790, + "fields": { + "id_car_serie": 9590, + "name": "1.6 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60794, + "fields": { + "id_car_serie": 9591, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60796, + "fields": { + "id_car_serie": 9591, + "name": "1.3 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60797, + "fields": { + "id_car_serie": 9591, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60798, + "fields": { + "id_car_serie": 9591, + "name": "1.3 MT Turbo (135 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60799, + "fields": { + "id_car_serie": 9591, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60801, + "fields": { + "id_car_serie": 9591, + "name": "1.5 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60803, + "fields": { + "id_car_serie": 9592, + "name": "1.3 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60804, + "fields": { + "id_car_serie": 9592, + "name": "1.3 AT Turbo (135 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60805, + "fields": { + "id_car_serie": 9592, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60807, + "fields": { + "id_car_serie": 9592, + "name": "1.3 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60808, + "fields": { + "id_car_serie": 9592, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60809, + "fields": { + "id_car_serie": 9592, + "name": "1.3 MT Turbo (135 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60810, + "fields": { + "id_car_serie": 9592, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60812, + "fields": { + "id_car_serie": 9592, + "name": "1.5 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60813, + "fields": { + "id_car_serie": 9593, + "name": "1.0 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60814, + "fields": { + "id_car_serie": 9593, + "name": "1.3 AT (69 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60816, + "fields": { + "id_car_serie": 9593, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60817, + "fields": { + "id_car_serie": 9593, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60818, + "fields": { + "id_car_serie": 9594, + "name": "1.0 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60819, + "fields": { + "id_car_serie": 9594, + "name": "1.3 AT (69 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60820, + "fields": { + "id_car_serie": 9594, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60821, + "fields": { + "id_car_serie": 9594, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60823, + "fields": { + "id_car_serie": 9595, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60826, + "fields": { + "id_car_serie": 9597, + "name": "1.5 AT Wagon (109 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 60827, + "fields": { + "id_car_serie": 9597, + "name": "1.5 MT 4WD Van (105 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 60828, + "fields": { + "id_car_serie": 9597, + "name": "1.5 MT Van (109 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 60829, + "fields": { + "id_car_serie": 9598, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60830, + "fields": { + "id_car_serie": 9598, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60831, + "fields": { + "id_car_serie": 9598, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60832, + "fields": { + "id_car_serie": 9598, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60834, + "fields": { + "id_car_serie": 9599, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60836, + "fields": { + "id_car_serie": 9599, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60837, + "fields": { + "id_car_serie": 9600, + "name": "1.5 AT (83 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60838, + "fields": { + "id_car_serie": 9600, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60839, + "fields": { + "id_car_serie": 9600, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60844, + "fields": { + "id_car_serie": 9601, + "name": "1.3 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60860, + "fields": { + "id_car_serie": 9602, + "name": "2.0 Twin-Turbo AT Overdrive (213 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60864, + "fields": { + "id_car_serie": 9602, + "name": "2.0 MT Overdrive (152 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60866, + "fields": { + "id_car_serie": 9602, + "name": "2.0 Twin-Turbo MT Overdrive (213 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60867, + "fields": { + "id_car_serie": 9602, + "name": "2.5 Twin-Turbo AT Overdrive (280 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60868, + "fields": { + "id_car_serie": 9602, + "name": "2.5 Twin-Turbo MT Overdrive (280 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60869, + "fields": { + "id_car_serie": 9602, + "name": "3.0 AT Overdrive (204 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60870, + "fields": { + "id_car_serie": 9602, + "name": "3.0 Turbo AT Overdrive (235 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60872, + "fields": { + "id_car_serie": 9602, + "name": "3.0 MT Overdrive (204 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60873, + "fields": { + "id_car_serie": 9602, + "name": "3.0 Turbo MT Overdrive (235 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60879, + "fields": { + "id_car_serie": 9603, + "name": "2.7 AT Overdrive (164 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 60881, + "fields": { + "id_car_serie": 9603, + "name": "2.7 MT 4x4 (164 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61216, + "fields": { + "id_car_serie": 10717, + "name": "5.0 GDi AT (430 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61217, + "fields": { + "id_car_serie": 10718, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61222, + "fields": { + "id_car_serie": 10718, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61237, + "fields": { + "id_car_serie": 10719, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61238, + "fields": { + "id_car_serie": 10719, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61239, + "fields": { + "id_car_serie": 10719, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61240, + "fields": { + "id_car_serie": 10719, + "name": "1.4 TD AT (80 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61243, + "fields": { + "id_car_serie": 10719, + "name": "1.4 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61245, + "fields": { + "id_car_serie": 10719, + "name": "1.4 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61246, + "fields": { + "id_car_serie": 10719, + "name": "1.4 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61248, + "fields": { + "id_car_serie": 10719, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61249, + "fields": { + "id_car_serie": 10719, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61250, + "fields": { + "id_car_serie": 10719, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61254, + "fields": { + "id_car_serie": 10719, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61255, + "fields": { + "id_car_serie": 10719, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61258, + "fields": { + "id_car_serie": 10720, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61275, + "fields": { + "id_car_serie": 10721, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61278, + "fields": { + "id_car_serie": 10721, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61283, + "fields": { + "id_car_serie": 10721, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61285, + "fields": { + "id_car_serie": 10721, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61286, + "fields": { + "id_car_serie": 10721, + "name": "1.3 D MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61288, + "fields": { + "id_car_serie": 10722, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61289, + "fields": { + "id_car_serie": 10722, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61290, + "fields": { + "id_car_serie": 10722, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61291, + "fields": { + "id_car_serie": 10722, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61292, + "fields": { + "id_car_serie": 10722, + "name": "1.6 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61293, + "fields": { + "id_car_serie": 10722, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61294, + "fields": { + "id_car_serie": 10722, + "name": "1.9 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61295, + "fields": { + "id_car_serie": 10722, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61296, + "fields": { + "id_car_serie": 10723, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61297, + "fields": { + "id_car_serie": 10723, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61298, + "fields": { + "id_car_serie": 10723, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61300, + "fields": { + "id_car_serie": 10723, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61305, + "fields": { + "id_car_serie": 10723, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61306, + "fields": { + "id_car_serie": 10723, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61307, + "fields": { + "id_car_serie": 10723, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61309, + "fields": { + "id_car_serie": 10723, + "name": "2.8 VR6 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61310, + "fields": { + "id_car_serie": 10723, + "name": "2.8 VR6 AT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61312, + "fields": { + "id_car_serie": 10723, + "name": "2.8 VR6 MT (174 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61339, + "fields": { + "id_car_serie": 10724, + "name": "1.4 TSI BlueMotion MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61340, + "fields": { + "id_car_serie": 10724, + "name": "1.4 TSI BlueMotion MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61341, + "fields": { + "id_car_serie": 10724, + "name": "1.4 TSI 4Motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61342, + "fields": { + "id_car_serie": 10724, + "name": "2.0 TSI 4Motion Euro4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61343, + "fields": { + "id_car_serie": 10724, + "name": "2.0 TSI 4Motion AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61344, + "fields": { + "id_car_serie": 10724, + "name": "2.0 TSI 4Motion DSG (200 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61345, + "fields": { + "id_car_serie": 10724, + "name": "2.0 TSI 4Motion AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61346, + "fields": { + "id_car_serie": 10724, + "name": "2.0 TDI 4Motion MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61347, + "fields": { + "id_car_serie": 10724, + "name": "2.0 TSI 4Motion MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61348, + "fields": { + "id_car_serie": 10724, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61349, + "fields": { + "id_car_serie": 10724, + "name": "2.0 TDI AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61350, + "fields": { + "id_car_serie": 10724, + "name": "2.0 TDI 4Motion AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61351, + "fields": { + "id_car_serie": 10724, + "name": "2.0 TDI 4Motion Euro5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61352, + "fields": { + "id_car_serie": 10724, + "name": "2.0 TDI BlueMotion MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61354, + "fields": { + "id_car_serie": 10725, + "name": "1.4 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61360, + "fields": { + "id_car_serie": 10725, + "name": "2.0 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61361, + "fields": { + "id_car_serie": 10725, + "name": "2.0 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61362, + "fields": { + "id_car_serie": 10725, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61365, + "fields": { + "id_car_serie": 10726, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61366, + "fields": { + "id_car_serie": 10726, + "name": "1.6 FSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61368, + "fields": { + "id_car_serie": 10726, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61369, + "fields": { + "id_car_serie": 10726, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61370, + "fields": { + "id_car_serie": 10726, + "name": "2.0 FSI Tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61371, + "fields": { + "id_car_serie": 10726, + "name": "2.0 FSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61374, + "fields": { + "id_car_serie": 10726, + "name": "2.0 TDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61376, + "fields": { + "id_car_serie": 10728, + "name": "2.9 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61377, + "fields": { + "id_car_serie": 10728, + "name": "2.9 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61378, + "fields": { + "id_car_serie": 10729, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61380, + "fields": { + "id_car_serie": 10729, + "name": "1.7 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61382, + "fields": { + "id_car_serie": 10729, + "name": "1.7 Turbo MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61383, + "fields": { + "id_car_serie": 10729, + "name": "1.7 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61384, + "fields": { + "id_car_serie": 10729, + "name": "1.7 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61385, + "fields": { + "id_car_serie": 10729, + "name": "1.7 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61387, + "fields": { + "id_car_serie": 10729, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61388, + "fields": { + "id_car_serie": 10729, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61390, + "fields": { + "id_car_serie": 10729, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61391, + "fields": { + "id_car_serie": 10729, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61394, + "fields": { + "id_car_serie": 10730, + "name": "1.7 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61395, + "fields": { + "id_car_serie": 10730, + "name": "1.7 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61396, + "fields": { + "id_car_serie": 10730, + "name": "1.7 T MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61399, + "fields": { + "id_car_serie": 10730, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61400, + "fields": { + "id_car_serie": 10730, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61401, + "fields": { + "id_car_serie": 10731, + "name": "2.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61402, + "fields": { + "id_car_serie": 10731, + "name": "2.3 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61403, + "fields": { + "id_car_serie": 10731, + "name": "2.9 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61404, + "fields": { + "id_car_serie": 10731, + "name": "2.9 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61405, + "fields": { + "id_car_serie": 10731, + "name": "2.9 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61406, + "fields": { + "id_car_serie": 10731, + "name": "2.9 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61407, + "fields": { + "id_car_serie": 10732, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61408, + "fields": { + "id_car_serie": 10732, + "name": "1.6 D MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61409, + "fields": { + "id_car_serie": 10732, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61411, + "fields": { + "id_car_serie": 10732, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61412, + "fields": { + "id_car_serie": 10732, + "name": "2.0 D Geartronic (136 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61413, + "fields": { + "id_car_serie": 10732, + "name": "2.0 D MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61414, + "fields": { + "id_car_serie": 10732, + "name": "2.4 Geartronic (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61415, + "fields": { + "id_car_serie": 10732, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61417, + "fields": { + "id_car_serie": 10732, + "name": "2.4 D5 Geartronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61418, + "fields": { + "id_car_serie": 10732, + "name": "2.4 D5 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61419, + "fields": { + "id_car_serie": 10732, + "name": "2.5 T5 Geartronic (220 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61420, + "fields": { + "id_car_serie": 10732, + "name": "2.5 T5 Geartronic (230 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61421, + "fields": { + "id_car_serie": 10732, + "name": "2.5 T5 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61422, + "fields": { + "id_car_serie": 10732, + "name": "2.5 T5 MT (230 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61427, + "fields": { + "id_car_serie": 10734, + "name": "2.0 T AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61428, + "fields": { + "id_car_serie": 10734, + "name": "2.0 T MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61431, + "fields": { + "id_car_serie": 10734, + "name": "2.4 Bi-fuel LPG AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61432, + "fields": { + "id_car_serie": 10734, + "name": "2.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61433, + "fields": { + "id_car_serie": 10734, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61434, + "fields": { + "id_car_serie": 10734, + "name": "2.4 T Geartronic AWD (200 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61435, + "fields": { + "id_car_serie": 10734, + "name": "2.4 T Geartronic (200 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61437, + "fields": { + "id_car_serie": 10734, + "name": "2.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61438, + "fields": { + "id_car_serie": 10734, + "name": "2.4 Bi-fuel LPG MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61439, + "fields": { + "id_car_serie": 10734, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61440, + "fields": { + "id_car_serie": 10734, + "name": "2.4 T MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61441, + "fields": { + "id_car_serie": 10734, + "name": "2.4 T5 Turbo MT (250 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61443, + "fields": { + "id_car_serie": 10734, + "name": "2.4 Bi-fuel CNG AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61444, + "fields": { + "id_car_serie": 10734, + "name": "2.4 D5 Turbo Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61447, + "fields": { + "id_car_serie": 10734, + "name": "2.4 TD MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61449, + "fields": { + "id_car_serie": 10734, + "name": "2.4 T MT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61458, + "fields": { + "id_car_serie": 10735, + "name": "2.0 TD MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61459, + "fields": { + "id_car_serie": 10735, + "name": "2.4 TD Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61461, + "fields": { + "id_car_serie": 10735, + "name": "2.4 D5 Turbo Geartronic (185 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61462, + "fields": { + "id_car_serie": 10735, + "name": "2.4 D5 Turbo Geartronic AWD (185 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61463, + "fields": { + "id_car_serie": 10735, + "name": "2.4 TD MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61464, + "fields": { + "id_car_serie": 10735, + "name": "2.4 D5 Turbo MT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61465, + "fields": { + "id_car_serie": 10735, + "name": "2.4 D5 Turbo MT (185 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61466, + "fields": { + "id_car_serie": 10735, + "name": "2.4 D5 Turbo MT (205 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61467, + "fields": { + "id_car_serie": 10735, + "name": "2.5 Turbo Geartronic (200 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61468, + "fields": { + "id_car_serie": 10735, + "name": "2.5 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61470, + "fields": { + "id_car_serie": 10735, + "name": "3.2 Geartronic AWD (238 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61471, + "fields": { + "id_car_serie": 10735, + "name": "3.2 Geartronic (238 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61472, + "fields": { + "id_car_serie": 10735, + "name": "4.4 V8 Geartronic AWD (315 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61479, + "fields": { + "id_car_serie": 10736, + "name": "2.4 Bi-fuel LPG AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61480, + "fields": { + "id_car_serie": 10736, + "name": "2.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61481, + "fields": { + "id_car_serie": 10736, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61482, + "fields": { + "id_car_serie": 10736, + "name": "2.4 Bi-fuel CNG AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61483, + "fields": { + "id_car_serie": 10736, + "name": "2.4 Bi-fuel CNG MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61484, + "fields": { + "id_car_serie": 10736, + "name": "2.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61485, + "fields": { + "id_car_serie": 10736, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61486, + "fields": { + "id_car_serie": 10736, + "name": "2.4 D5 Turbo MT (163 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61487, + "fields": { + "id_car_serie": 10736, + "name": "2.4 D5 Turbo AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61488, + "fields": { + "id_car_serie": 10736, + "name": "2.4 Bi-fuel LPG MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61489, + "fields": { + "id_car_serie": 10736, + "name": "2.4 TD MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61494, + "fields": { + "id_car_serie": 10736, + "name": "2.5 Turbo AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61495, + "fields": { + "id_car_serie": 10736, + "name": "2.5 Turbo MT (210 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61496, + "fields": { + "id_car_serie": 10736, + "name": "2.8 Turbo Geartronic (272 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61497, + "fields": { + "id_car_serie": 10736, + "name": "2.9 AT (196 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61498, + "fields": { + "id_car_serie": 10736, + "name": "2.9 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61501, + "fields": { + "id_car_serie": 10736, + "name": "2.9 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61503, + "fields": { + "id_car_serie": 10737, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61511, + "fields": { + "id_car_serie": 10737, + "name": "1.9 D MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61515, + "fields": { + "id_car_serie": 10737, + "name": "1.9 D MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61519, + "fields": { + "id_car_serie": 10738, + "name": "1.6 T3 Powershift (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61520, + "fields": { + "id_car_serie": 10738, + "name": "1.6 T4 Powershift (180 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61521, + "fields": { + "id_car_serie": 10738, + "name": "1.6 T3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61522, + "fields": { + "id_car_serie": 10738, + "name": "1.6 T4 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61523, + "fields": { + "id_car_serie": 10738, + "name": "1.6 D2 Powershift (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61524, + "fields": { + "id_car_serie": 10738, + "name": "1.6 D2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61529, + "fields": { + "id_car_serie": 10738, + "name": "2.0 D3 Geartronic (136 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61530, + "fields": { + "id_car_serie": 10738, + "name": "2.0 D4 Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61533, + "fields": { + "id_car_serie": 10738, + "name": "2.0 D3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61534, + "fields": { + "id_car_serie": 10738, + "name": "2.0 D4 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61538, + "fields": { + "id_car_serie": 10738, + "name": "2.4 D5 Geartronic AWD (215 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61539, + "fields": { + "id_car_serie": 10738, + "name": "2.4 D5 Geartronic (215 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61541, + "fields": { + "id_car_serie": 10738, + "name": "2.4 D5 MT (215 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61543, + "fields": { + "id_car_serie": 10738, + "name": "3.0 T6 Geartronic AWD (304 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61548, + "fields": { + "id_car_serie": 10740, + "name": "2.4 D5 MT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61549, + "fields": { + "id_car_serie": 10740, + "name": "2.4 D5 Geartronic AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61551, + "fields": { + "id_car_serie": 10740, + "name": "2.4 D4 MT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61553, + "fields": { + "id_car_serie": 10740, + "name": "2.5 T Geartronic AWD (210 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61554, + "fields": { + "id_car_serie": 10740, + "name": "2.5 T MT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61555, + "fields": { + "id_car_serie": 10741, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61557, + "fields": { + "id_car_serie": 10742, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61558, + "fields": { + "id_car_serie": 10743, + "name": "4.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61559, + "fields": { + "id_car_serie": 10744, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61560, + "fields": { + "id_car_serie": 10744, + "name": "3.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61561, + "fields": { + "id_car_serie": 10744, + "name": "3.2 MT (321 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61564, + "fields": { + "id_car_serie": 10745, + "name": "2.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61565, + "fields": { + "id_car_serie": 10745, + "name": "2.8 D MT (157 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61566, + "fields": { + "id_car_serie": 10746, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61568, + "fields": { + "id_car_serie": 10747, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61572, + "fields": { + "id_car_serie": 10747, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61582, + "fields": { + "id_car_serie": 10751, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61583, + "fields": { + "id_car_serie": 10751, + "name": "1.7 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61586, + "fields": { + "id_car_serie": 10754, + "name": "2102 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61587, + "fields": { + "id_car_serie": 10754, + "name": "21021 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61588, + "fields": { + "id_car_serie": 10754, + "name": "21023 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61589, + "fields": { + "id_car_serie": 10755, + "name": "2104 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61592, + "fields": { + "id_car_serie": 10755, + "name": "21043 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61593, + "fields": { + "id_car_serie": 10755, + "name": "21045D MT (53 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61594, + "fields": { + "id_car_serie": 10755, + "name": "21041i MT (74 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61595, + "fields": { + "id_car_serie": 10755, + "name": "21044 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61596, + "fields": { + "id_car_serie": 10756, + "name": "21063 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61597, + "fields": { + "id_car_serie": 10756, + "name": "21061 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61600, + "fields": { + "id_car_serie": 10756, + "name": "2106 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61606, + "fields": { + "id_car_serie": 10758, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61607, + "fields": { + "id_car_serie": 10758, + "name": "1.5 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61608, + "fields": { + "id_car_serie": 10758, + "name": "1.6 MT 8 valves (Euro-4) (82 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61609, + "fields": { + "id_car_serie": 10758, + "name": "1.6 MT 8 valves (Euro-3) (81 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61612, + "fields": { + "id_car_serie": 10760, + "name": "4.3 AT (285 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61614, + "fields": { + "id_car_serie": 10760, + "name": "5.3 AT (355 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61616, + "fields": { + "id_car_serie": 10761, + "name": "4.3 AT (285 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61618, + "fields": { + "id_car_serie": 10761, + "name": "5.3 AT (355 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61620, + "fields": { + "id_car_serie": 10761, + "name": "6.2 AT (420 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61627, + "fields": { + "id_car_serie": 10763, + "name": "Ecotec V6 4.3 (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61630, + "fields": { + "id_car_serie": 10763, + "name": "4.8 AT (295 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61633, + "fields": { + "id_car_serie": 10764, + "name": "Ecotec V6 4.3 (258 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61649, + "fields": { + "id_car_serie": 10766, + "name": "4.3 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61651, + "fields": { + "id_car_serie": 10766, + "name": "4.3 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61653, + "fields": { + "id_car_serie": 10766, + "name": "4.8 AT (278 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61655, + "fields": { + "id_car_serie": 10766, + "name": "4.8 MT (278 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61657, + "fields": { + "id_car_serie": 10766, + "name": "5.3 AT (288 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61660, + "fields": { + "id_car_serie": 10766, + "name": "5.3 MT (288 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61681, + "fields": { + "id_car_serie": 10769, + "name": "1.6 HDI MT L2H1 (90 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61683, + "fields": { + "id_car_serie": 10769, + "name": "2.0 HDI MT L2H1 (120 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61690, + "fields": { + "id_car_serie": 10771, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61691, + "fields": { + "id_car_serie": 10771, + "name": "2.0 MultiJet MT LWB H1 29 (120 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61694, + "fields": { + "id_car_serie": 10772, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61695, + "fields": { + "id_car_serie": 10772, + "name": "1.9 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61696, + "fields": { + "id_car_serie": 10772, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61697, + "fields": { + "id_car_serie": 10772, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61698, + "fields": { + "id_car_serie": 10772, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61786, + "fields": { + "id_car_serie": 10778, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61791, + "fields": { + "id_car_serie": 10780, + "name": "1.0 AMT (69 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61793, + "fields": { + "id_car_serie": 10780, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61794, + "fields": { + "id_car_serie": 10781, + "name": "1.0 AMT (69 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61796, + "fields": { + "id_car_serie": 10781, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61797, + "fields": { + "id_car_serie": 10782, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61798, + "fields": { + "id_car_serie": 10782, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61799, + "fields": { + "id_car_serie": 10782, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61800, + "fields": { + "id_car_serie": 10782, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61806, + "fields": { + "id_car_serie": 10784, + "name": "1.9 dCi L2H1 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61807, + "fields": { + "id_car_serie": 10784, + "name": "1.9 dCi L1H1 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61808, + "fields": { + "id_car_serie": 10784, + "name": "2.0 L2H1 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61809, + "fields": { + "id_car_serie": 10784, + "name": "2.5 dCi L2H1 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61810, + "fields": { + "id_car_serie": 10785, + "name": "2.0 Turbo Lineartronic AWD (268 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61811, + "fields": { + "id_car_serie": 10785, + "name": "2.0 Turbo MT AWD (268 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61812, + "fields": { + "id_car_serie": 10786, + "name": "1.0 AMT (68 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61813, + "fields": { + "id_car_serie": 10786, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61814, + "fields": { + "id_car_serie": 10787, + "name": "2.0 BiTDI MT 4Motion (plug-in) (180 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61815, + "fields": { + "id_car_serie": 10787, + "name": "2.0 TDI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61816, + "fields": { + "id_car_serie": 10787, + "name": "2.0 TDI MT 4Motion (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61817, + "fields": { + "id_car_serie": 10787, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61818, + "fields": { + "id_car_serie": 10787, + "name": "2.0 BiTDI MT 4Motion (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61819, + "fields": { + "id_car_serie": 10787, + "name": "2.0 BiTDI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61821, + "fields": { + "id_car_serie": 10788, + "name": "2.0 BiTDI Tiptronic 4Motion (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61822, + "fields": { + "id_car_serie": 10788, + "name": "2.0 BiTDI Tiptronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61823, + "fields": { + "id_car_serie": 10788, + "name": "2.0 TDI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61824, + "fields": { + "id_car_serie": 10788, + "name": "2.0 TDI MT 4Motion (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61825, + "fields": { + "id_car_serie": 10788, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61826, + "fields": { + "id_car_serie": 10788, + "name": "2.0 TDI MT 4Motion (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61827, + "fields": { + "id_car_serie": 10788, + "name": "2.0 TDI MT 4Motion (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61828, + "fields": { + "id_car_serie": 10788, + "name": "2.0 TDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61829, + "fields": { + "id_car_serie": 10788, + "name": "2.0 biTDI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61830, + "fields": { + "id_car_serie": 10788, + "name": "2.0 biTDI MT 4Motion (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61842, + "fields": { + "id_car_serie": 10791, + "name": "1.9d MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61843, + "fields": { + "id_car_serie": 10791, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61844, + "fields": { + "id_car_serie": 10791, + "name": "2.5d AT (131 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61848, + "fields": { + "id_car_serie": 10791, + "name": "2.5d MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61849, + "fields": { + "id_car_serie": 10791, + "name": "4MOTION 2.5d MT (131 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61850, + "fields": { + "id_car_serie": 10791, + "name": "2.5d MT (174 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61851, + "fields": { + "id_car_serie": 10791, + "name": "4MOTION 2.5d MT (174 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61852, + "fields": { + "id_car_serie": 10791, + "name": "4MOTION 3.2 AT (235 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61853, + "fields": { + "id_car_serie": 10791, + "name": "4MOTION 3.2 MT (235 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61936, + "fields": { + "id_car_serie": 10796, + "name": "3.5 CVT (300 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61938, + "fields": { + "id_car_serie": 10797, + "name": "2.0 TFSI MT quattro (310 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61959, + "fields": { + "id_car_serie": 10802, + "name": "1.6 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61960, + "fields": { + "id_car_serie": 10802, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61963, + "fields": { + "id_car_serie": 10802, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61966, + "fields": { + "id_car_serie": 10802, + "name": "2.1 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61989, + "fields": { + "id_car_serie": 5486, + "name": "2.4 tiptronic (136 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61990, + "fields": { + "id_car_serie": 5486, + "name": "2.4 MT quattro (165 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61991, + "fields": { + "id_car_serie": 5922, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61996, + "fields": { + "id_car_serie": 8401, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61997, + "fields": { + "id_car_serie": 10782, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 61998, + "fields": { + "id_car_serie": 10803, + "name": "1.5 MT (108 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 61999, + "fields": { + "id_car_serie": 10803, + "name": "1.5 Turbo MT (153 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62002, + "fields": { + "id_car_serie": 10805, + "name": "2.2 Duratorq TDCi MT 300 LWB (125 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62003, + "fields": { + "id_car_serie": 10805, + "name": "2.2 Duratorq TDCi MT 300 SWB (125 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62005, + "fields": { + "id_car_serie": 10806, + "name": "2.4 MT AWD (109 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62008, + "fields": { + "id_car_serie": 10807, + "name": "3.8 (650 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62009, + "fields": { + "id_car_serie": 10808, + "name": "3.8 Automatic transmission (650 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62012, + "fields": { + "id_car_serie": 10809, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62016, + "fields": { + "id_car_serie": 10810, + "name": "2.0 AT Long (120 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62017, + "fields": { + "id_car_serie": 10810, + "name": "2.0 MT Long (120 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62018, + "fields": { + "id_car_serie": 10810, + "name": "3.0 AT D Super Long (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62019, + "fields": { + "id_car_serie": 10810, + "name": "3.0 AT D Long 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62020, + "fields": { + "id_car_serie": 10810, + "name": "3.0 MT D Super Long (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62021, + "fields": { + "id_car_serie": 10810, + "name": "3.0 MT D Long 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62022, + "fields": { + "id_car_serie": 10811, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62024, + "fields": { + "id_car_serie": 10812, + "name": "2.0 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62025, + "fields": { + "id_car_serie": 10812, + "name": "2.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62032, + "fields": { + "id_car_serie": 10814, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62033, + "fields": { + "id_car_serie": 10814, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62034, + "fields": { + "id_car_serie": 10814, + "name": "3.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62035, + "fields": { + "id_car_serie": 10814, + "name": "3.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62036, + "fields": { + "id_car_serie": 10814, + "name": "3.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62037, + "fields": { + "id_car_serie": 10814, + "name": "3.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62038, + "fields": { + "id_car_serie": 10815, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62039, + "fields": { + "id_car_serie": 10815, + "name": "2.7 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62040, + "fields": { + "id_car_serie": 10816, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62041, + "fields": { + "id_car_serie": 10816, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62047, + "fields": { + "id_car_serie": 6473, + "name": "2.4 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62052, + "fields": { + "id_car_serie": 7661, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62056, + "fields": { + "id_car_serie": 8968, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62059, + "fields": { + "id_car_serie": 10817, + "name": "1.0 AMT (69 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62060, + "fields": { + "id_car_serie": 10817, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62061, + "fields": { + "id_car_serie": 10817, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62062, + "fields": { + "id_car_serie": 10818, + "name": "1.0 AMT (69 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62063, + "fields": { + "id_car_serie": 10818, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62064, + "fields": { + "id_car_serie": 10818, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62067, + "fields": { + "id_car_serie": 10819, + "name": "1.4 HDi MT (54 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62069, + "fields": { + "id_car_serie": 10820, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62086, + "fields": { + "id_car_serie": 10822, + "name": "2.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62087, + "fields": { + "id_car_serie": 10823, + "name": "2.0 CVT (139 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62090, + "fields": { + "id_car_serie": 10823, + "name": "2.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62093, + "fields": { + "id_car_serie": 10824, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62094, + "fields": { + "id_car_serie": 10825, + "name": "1.6 CVT (126 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62095, + "fields": { + "id_car_serie": 10825, + "name": "1.6 MT (119 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62096, + "fields": { + "id_car_serie": 10825, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62098, + "fields": { + "id_car_serie": 10826, + "name": "1.6 CVT (126 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62099, + "fields": { + "id_car_serie": 10826, + "name": "1.6 MT (119 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62100, + "fields": { + "id_car_serie": 10826, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62106, + "fields": { + "id_car_serie": 10827, + "name": "3.7 MT (333 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62112, + "fields": { + "id_car_serie": 10828, + "name": "2.8 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62152, + "fields": { + "id_car_serie": 3057, + "name": "6.6 AT (260 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62156, + "fields": { + "id_car_serie": 3454, + "name": "6.2 AT (393 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62157, + "fields": { + "id_car_serie": 3571, + "name": "3.5 AT 4WD (276 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62158, + "fields": { + "id_car_serie": 3606, + "name": "5.0 V8 Supercharged AT AWD (550 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62166, + "fields": { + "id_car_serie": 3718, + "name": "350 CDI BlueTEC Long 3.0d AT (249 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62168, + "fields": { + "id_car_serie": 4054, + "name": "2.0 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62170, + "fields": { + "id_car_serie": 4427, + "name": "1.6 MT (7 places) (132 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62171, + "fields": { + "id_car_serie": 4535, + "name": "2.0T Turbo MT (203 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62172, + "fields": { + "id_car_serie": 4538, + "name": "1.6 TD DRIVe AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62173, + "fields": { + "id_car_serie": 4538, + "name": "1.6 D2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62174, + "fields": { + "id_car_serie": 4538, + "name": "2.0 T5 Powershift (240 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62175, + "fields": { + "id_car_serie": 4538, + "name": "2.0 T5 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62176, + "fields": { + "id_car_serie": 4538, + "name": "2.4 D Geartronic (175 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62177, + "fields": { + "id_car_serie": 4538, + "name": "2.4 D5 Geartronic (185 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62178, + "fields": { + "id_car_serie": 4538, + "name": "2.4 D MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62179, + "fields": { + "id_car_serie": 4538, + "name": "2.5 FT AT (231 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62180, + "fields": { + "id_car_serie": 4538, + "name": "2.5 T MT (231 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62181, + "fields": { + "id_car_serie": 4538, + "name": "3.2 Geartronic AWD (243 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62182, + "fields": { + "id_car_serie": 4538, + "name": "3.2 Geartronic (243 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62184, + "fields": { + "id_car_serie": 4559, + "name": "21122 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62188, + "fields": { + "id_car_serie": 5614, + "name": "2.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62191, + "fields": { + "id_car_serie": 6836, + "name": "2.0 4AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62194, + "fields": { + "id_car_serie": 6918, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62196, + "fields": { + "id_car_serie": 6934, + "name": "1.5 AMT (109 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62197, + "fields": { + "id_car_serie": 6934, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62202, + "fields": { + "id_car_serie": 8105, + "name": "2.1 MT (62 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62205, + "fields": { + "id_car_serie": 9102, + "name": "1.4 TSI MT Green tec (125 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62209, + "fields": { + "id_car_serie": 14595, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62210, + "fields": { + "id_car_serie": 14596, + "name": "1.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62216, + "fields": { + "id_car_serie": 14600, + "name": "2.2 AT (146 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62217, + "fields": { + "id_car_serie": 14600, + "name": "2.2 AT (99 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62218, + "fields": { + "id_car_serie": 14600, + "name": "2.2 MT (146 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62219, + "fields": { + "id_car_serie": 14600, + "name": "2.2 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62220, + "fields": { + "id_car_serie": 14600, + "name": "2.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62221, + "fields": { + "id_car_serie": 14600, + "name": "2.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62222, + "fields": { + "id_car_serie": 14601, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62223, + "fields": { + "id_car_serie": 14601, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62224, + "fields": { + "id_car_serie": 14601, + "name": "2.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62225, + "fields": { + "id_car_serie": 14602, + "name": "1.8 MT (127 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62231, + "fields": { + "id_car_serie": 14605, + "name": "6.3 MT (535 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62232, + "fields": { + "id_car_serie": 14605, + "name": "6.3 MT (640 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62233, + "fields": { + "id_car_serie": 14605, + "name": "6.3 MT (720 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62234, + "fields": { + "id_car_serie": 14626, + "name": "AT (5 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62235, + "fields": { + "id_car_serie": 14627, + "name": "2.4 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62238, + "fields": { + "id_car_serie": 14628, + "name": "2.4 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62239, + "fields": { + "id_car_serie": 14628, + "name": "3.6 AT (283 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62240, + "fields": { + "id_car_serie": 14629, + "name": "2.4 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62241, + "fields": { + "id_car_serie": 14629, + "name": "3.6 AT (283 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62242, + "fields": { + "id_car_serie": 14630, + "name": "2.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62243, + "fields": { + "id_car_serie": 14631, + "name": "3.7 AT (333 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2016 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62246, + "fields": { + "id_car_serie": 14632, + "name": "3.7 AT (333 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2016 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62273, + "fields": { + "id_car_serie": 14636, + "name": "320 3.0d AT (224 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62276, + "fields": { + "id_car_serie": 14636, + "name": "3.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62277, + "fields": { + "id_car_serie": 14636, + "name": "3.5 AT (292 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62279, + "fields": { + "id_car_serie": 14636, + "name": "5.0 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62281, + "fields": { + "id_car_serie": 14636, + "name": "500 5.5 AT (388 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62286, + "fields": { + "id_car_serie": 14637, + "name": "Cooper 1.5 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62287, + "fields": { + "id_car_serie": 14637, + "name": "Cooper 1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62288, + "fields": { + "id_car_serie": 14637, + "name": "Cooper D 1.5d AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62289, + "fields": { + "id_car_serie": 14637, + "name": "Cooper D 1.5d MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62290, + "fields": { + "id_car_serie": 14637, + "name": "Cooper S 2.0 AT (192 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62291, + "fields": { + "id_car_serie": 14637, + "name": "Cooper S 2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62292, + "fields": { + "id_car_serie": 14637, + "name": "Cooper SD 2.0d AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62293, + "fields": { + "id_car_serie": 14637, + "name": "Cooper SD 2.0d MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62316, + "fields": { + "id_car_serie": 14641, + "name": "1.0 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62317, + "fields": { + "id_car_serie": 14642, + "name": "1.1 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62318, + "fields": { + "id_car_serie": 14642, + "name": "1.1 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62319, + "fields": { + "id_car_serie": 14642, + "name": "1.1 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62320, + "fields": { + "id_car_serie": 14642, + "name": "1.3 AMT (94 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62321, + "fields": { + "id_car_serie": 14642, + "name": "1.3 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62322, + "fields": { + "id_car_serie": 14642, + "name": "1.5 AMT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62323, + "fields": { + "id_car_serie": 14642, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62324, + "fields": { + "id_car_serie": 14642, + "name": "1.5 AMT (68 hp) diesel", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62325, + "fields": { + "id_car_serie": 14642, + "name": "1.5 D AMT (95 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62326, + "fields": { + "id_car_serie": 14642, + "name": "1.5 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62327, + "fields": { + "id_car_serie": 14642, + "name": "1.5 D MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62336, + "fields": { + "id_car_serie": 14646, + "name": "2.0 TD Lineartronic AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62337, + "fields": { + "id_car_serie": 14646, + "name": "2.0 TD MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62338, + "fields": { + "id_car_serie": 14646, + "name": "2.5 Lineartronic AWD (175 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62339, + "fields": { + "id_car_serie": 14646, + "name": "3.6 Lineartronic AWD (260 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62342, + "fields": { + "id_car_serie": 14647, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62343, + "fields": { + "id_car_serie": 14647, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62353, + "fields": { + "id_car_serie": 14649, + "name": "21099i MT (78 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62354, + "fields": { + "id_car_serie": 14650, + "name": "21091 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62355, + "fields": { + "id_car_serie": 14650, + "name": "2109 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62357, + "fields": { + "id_car_serie": 14650, + "name": "21093i MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62358, + "fields": { + "id_car_serie": 14650, + "name": "21093 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62359, + "fields": { + "id_car_serie": 14651, + "name": "1.6 AMT (106 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62360, + "fields": { + "id_car_serie": 14651, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62361, + "fields": { + "id_car_serie": 14651, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62362, + "fields": { + "id_car_serie": 14651, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62363, + "fields": { + "id_car_serie": 14652, + "name": "1.6 AMT (106 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62364, + "fields": { + "id_car_serie": 14652, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62366, + "fields": { + "id_car_serie": 14652, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62367, + "fields": { + "id_car_serie": 14653, + "name": "1.6 MT 16 valves (106 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62368, + "fields": { + "id_car_serie": 14653, + "name": "1.6 MT 16 valves (Euro-3) (98 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62369, + "fields": { + "id_car_serie": 14654, + "name": "1.6 AMT (106 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62371, + "fields": { + "id_car_serie": 14654, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62372, + "fields": { + "id_car_serie": 14655, + "name": "1.6 MT 8 valves (Euro-3) (81 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62373, + "fields": { + "id_car_serie": 14656, + "name": "1.6 MT 16 valves (Euro-4) (98 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62376, + "fields": { + "id_car_serie": 14657, + "name": "1.6 MT 16 valves (Euro-3) (98 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62377, + "fields": { + "id_car_serie": 14658, + "name": "1.6 MT 8 valves (Euro-3) (81 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62378, + "fields": { + "id_car_serie": 14658, + "name": "1.6 MT 8 valves (Euro-4) (87 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62379, + "fields": { + "id_car_serie": 14658, + "name": "1.6 MT 16 valves (Euro-3) (98 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62380, + "fields": { + "id_car_serie": 846, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62381, + "fields": { + "id_car_serie": 846, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62382, + "fields": { + "id_car_serie": 846, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62384, + "fields": { + "id_car_serie": 1931, + "name": "1.4 Turbo MT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62389, + "fields": { + "id_car_serie": 3018, + "name": "6.2 V8 AT 4WD (409 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62390, + "fields": { + "id_car_serie": 3036, + "name": "6.2 V8 AT (588 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62391, + "fields": { + "id_car_serie": 3036, + "name": "6.2 V8 MT (588 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62399, + "fields": { + "id_car_serie": 3860, + "name": "3.5 CVT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62400, + "fields": { + "id_car_serie": 3900, + "name": "1.4 Turbo ecoFLEX MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62410, + "fields": { + "id_car_serie": 3970, + "name": "1.6 THP AT (135 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62416, + "fields": { + "id_car_serie": 4036, + "name": "S 4.8 Tiptronic AWD (400 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62423, + "fields": { + "id_car_serie": 4141, + "name": "2.0 TSI CVT (200 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62424, + "fields": { + "id_car_serie": 4141, + "name": "2.0 TSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62426, + "fields": { + "id_car_serie": 4141, + "name": "2.0 TDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62429, + "fields": { + "id_car_serie": 4142, + "name": "2.0 TSI CVT (200 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62433, + "fields": { + "id_car_serie": 4166, + "name": "1.8 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62434, + "fields": { + "id_car_serie": 4166, + "name": "1.8 TSI MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62435, + "fields": { + "id_car_serie": 4167, + "name": "1.8 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62436, + "fields": { + "id_car_serie": 4167, + "name": "1.8 TSI MT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62437, + "fields": { + "id_car_serie": 4168, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62438, + "fields": { + "id_car_serie": 4168, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62439, + "fields": { + "id_car_serie": 4494, + "name": "1.6 CVT (117 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62440, + "fields": { + "id_car_serie": 4494, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62443, + "fields": { + "id_car_serie": 4605, + "name": "31519 2.9 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62447, + "fields": { + "id_car_serie": 5487, + "name": "2.5 TDI tiptronic quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62452, + "fields": { + "id_car_serie": 5701, + "name": "6.2 V8 MT (405 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62454, + "fields": { + "id_car_serie": 7285, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62457, + "fields": { + "id_car_serie": 7620, + "name": "1.8 TSI 4x4 DSG (152 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62460, + "fields": { + "id_car_serie": 8307, + "name": "1.2 Easytronic (75 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62461, + "fields": { + "id_car_serie": 8308, + "name": "1.2 Easytronic (75 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62463, + "fields": { + "id_car_serie": 9304, + "name": "2.8 VR6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62464, + "fields": { + "id_car_serie": 9304, + "name": "2.8 VR6 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62474, + "fields": { + "id_car_serie": 14660, + "name": "1.8 TFSI MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62475, + "fields": { + "id_car_serie": 14660, + "name": "2.0 TFSI S tronic (252 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62476, + "fields": { + "id_car_serie": 14660, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62477, + "fields": { + "id_car_serie": 14660, + "name": "1.8 TFSI S tronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62478, + "fields": { + "id_car_serie": 14660, + "name": "2.0 TDI S tronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62480, + "fields": { + "id_car_serie": 14660, + "name": "3.0 TFSI S tronic quattro (333 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62481, + "fields": { + "id_car_serie": 14660, + "name": "3.0 TDI S tronic (218 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62482, + "fields": { + "id_car_serie": 14660, + "name": "3.0 TDI S tronic quattro (218 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62483, + "fields": { + "id_car_serie": 14660, + "name": "3.0 TDI S tronic quattro (272 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62484, + "fields": { + "id_car_serie": 14660, + "name": "3.0 TDI Tiptronic quattro (320 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62486, + "fields": { + "id_car_serie": 14661, + "name": "1.8 TFSI MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62487, + "fields": { + "id_car_serie": 14661, + "name": "2.0 TFSI S tronic (252 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62488, + "fields": { + "id_car_serie": 14661, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62489, + "fields": { + "id_car_serie": 14661, + "name": "1.8 TFSI S tronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62490, + "fields": { + "id_car_serie": 14661, + "name": "2.0 TDI S tronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62492, + "fields": { + "id_car_serie": 14661, + "name": "3.0 TFSI S tronic quattro (333 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62493, + "fields": { + "id_car_serie": 14661, + "name": "3.0 TDI S tronic quattro (218 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62494, + "fields": { + "id_car_serie": 14661, + "name": "3.0 TDI S tronic (218 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62495, + "fields": { + "id_car_serie": 14661, + "name": "3.0 TDI S tronic quattro (272 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62496, + "fields": { + "id_car_serie": 14661, + "name": "3.0 TDI Tiptronic quattro (320 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62497, + "fields": { + "id_car_serie": 14662, + "name": "3.0 TFSI S tronic quattro (333 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62498, + "fields": { + "id_car_serie": 14662, + "name": "3.0 TDI S tronic (218 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62499, + "fields": { + "id_car_serie": 14662, + "name": "3.0 TDI S tronic quattro (218 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62500, + "fields": { + "id_car_serie": 14662, + "name": "3.0 TDI S tronic quattro (272 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62501, + "fields": { + "id_car_serie": 14662, + "name": "3.0 TDI tiptronic quattro (320 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62502, + "fields": { + "id_car_serie": 14662, + "name": "3.0 TDI tiptronic quattro (326 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62503, + "fields": { + "id_car_serie": 14663, + "name": "2.8 FSI S tronic quattro (204 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62504, + "fields": { + "id_car_serie": 14663, + "name": "2.8 FSI multitronic quattro (204 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62506, + "fields": { + "id_car_serie": 14663, + "name": "3.0 TFSI S tronic quattro (310 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62508, + "fields": { + "id_car_serie": 14663, + "name": "3.0 TDI S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62511, + "fields": { + "id_car_serie": 14664, + "name": "4.0 TFSI Tiptronic quattro (560 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62512, + "fields": { + "id_car_serie": 14665, + "name": "4.0 TFSI tiptronic quattro (560 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62513, + "fields": { + "id_car_serie": 14666, + "name": "4.0 TFSI quattro Tiptronic (560 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62514, + "fields": { + "id_car_serie": 14667, + "name": "4.0 TFSI S tronic quattro (450 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62515, + "fields": { + "id_car_serie": 14668, + "name": "4.0 TFSI S tronic quattro (450 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62516, + "fields": { + "id_car_serie": 14669, + "name": "4.0 TFSI S tronic quattro (450 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62517, + "fields": { + "id_car_serie": 14670, + "name": "4.0 TFSI S tronic quattro (420 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62518, + "fields": { + "id_car_serie": 14671, + "name": "6.5 AT (195 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62523, + "fields": { + "id_car_serie": 14674, + "name": "2.0 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62527, + "fields": { + "id_car_serie": 14676, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62536, + "fields": { + "id_car_serie": 14678, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62552, + "fields": { + "id_car_serie": 14680, + "name": "3.3 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62553, + "fields": { + "id_car_serie": 14680, + "name": "3.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62554, + "fields": { + "id_car_serie": 14681, + "name": "4.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62555, + "fields": { + "id_car_serie": 14681, + "name": "5.8 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62556, + "fields": { + "id_car_serie": 14682, + "name": "4.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62557, + "fields": { + "id_car_serie": 14682, + "name": "5.8 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62561, + "fields": { + "id_car_serie": 14685, + "name": "3.7 AT (331 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62562, + "fields": { + "id_car_serie": 14685, + "name": "3.7 MT (331 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62563, + "fields": { + "id_car_serie": 14686, + "name": "3.7 AT (331 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62572, + "fields": { + "id_car_serie": 14688, + "name": "1.1 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62573, + "fields": { + "id_car_serie": 14689, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62574, + "fields": { + "id_car_serie": 14689, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62575, + "fields": { + "id_car_serie": 14689, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62576, + "fields": { + "id_car_serie": 14689, + "name": "1.6 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62577, + "fields": { + "id_car_serie": 14689, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62578, + "fields": { + "id_car_serie": 14689, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62579, + "fields": { + "id_car_serie": 14689, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62580, + "fields": { + "id_car_serie": 14689, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62581, + "fields": { + "id_car_serie": 14690, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62582, + "fields": { + "id_car_serie": 14690, + "name": "1.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62583, + "fields": { + "id_car_serie": 14690, + "name": "1.6 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62584, + "fields": { + "id_car_serie": 14690, + "name": "1.6 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62585, + "fields": { + "id_car_serie": 14690, + "name": "1.6 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62587, + "fields": { + "id_car_serie": 14690, + "name": "1.6d MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62588, + "fields": { + "id_car_serie": 14690, + "name": "2.0d AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62590, + "fields": { + "id_car_serie": 14690, + "name": "2.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62591, + "fields": { + "id_car_serie": 14690, + "name": "2.0d MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62592, + "fields": { + "id_car_serie": 14690, + "name": "2.0d MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62593, + "fields": { + "id_car_serie": 14690, + "name": "GT 2.2d AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62607, + "fields": { + "id_car_serie": 14692, + "name": "1.6 VTi ETG (120 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62608, + "fields": { + "id_car_serie": 14692, + "name": "1.6 VTi ETG (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62612, + "fields": { + "id_car_serie": 14692, + "name": "2.0 HDi AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62614, + "fields": { + "id_car_serie": 14692, + "name": "2.0 BlueHDI AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62615, + "fields": { + "id_car_serie": 14692, + "name": "2.0 HDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62617, + "fields": { + "id_car_serie": 14692, + "name": "2.2 HDi AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62618, + "fields": { + "id_car_serie": 14693, + "name": "1.6 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62619, + "fields": { + "id_car_serie": 14693, + "name": "1.6 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62620, + "fields": { + "id_car_serie": 14693, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62621, + "fields": { + "id_car_serie": 14693, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62622, + "fields": { + "id_car_serie": 14693, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62623, + "fields": { + "id_car_serie": 14693, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62624, + "fields": { + "id_car_serie": 14693, + "name": "2.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62625, + "fields": { + "id_car_serie": 14693, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62627, + "fields": { + "id_car_serie": 14693, + "name": "2.2 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62629, + "fields": { + "id_car_serie": 14694, + "name": "Diesel 3.0 Tiptronic S AWD (245 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62632, + "fields": { + "id_car_serie": 14694, + "name": "S 3.6 Tiptronic S AWD (420 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62634, + "fields": { + "id_car_serie": 14694, + "name": "Turbo 4.8 Tiptronic S AWD (520 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62636, + "fields": { + "id_car_serie": 14695, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62637, + "fields": { + "id_car_serie": 14695, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62640, + "fields": { + "id_car_serie": 14696, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62642, + "fields": { + "id_car_serie": 14696, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62643, + "fields": { + "id_car_serie": 14697, + "name": "2.2 AT (139 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62644, + "fields": { + "id_car_serie": 14697, + "name": "2.2 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62645, + "fields": { + "id_car_serie": 14697, + "name": "3.0 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62646, + "fields": { + "id_car_serie": 14698, + "name": "1.9 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62647, + "fields": { + "id_car_serie": 14698, + "name": "1.9 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62648, + "fields": { + "id_car_serie": 14698, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62649, + "fields": { + "id_car_serie": 14698, + "name": "1.9 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62650, + "fields": { + "id_car_serie": 14699, + "name": "1.9 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62651, + "fields": { + "id_car_serie": 14699, + "name": "1.9 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62652, + "fields": { + "id_car_serie": 14699, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62653, + "fields": { + "id_car_serie": 14699, + "name": "1.9 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62654, + "fields": { + "id_car_serie": 14700, + "name": "1.6 MT (81 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62655, + "fields": { + "id_car_serie": 14700, + "name": "1.6 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62656, + "fields": { + "id_car_serie": 14700, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62657, + "fields": { + "id_car_serie": 14700, + "name": "1.6 MT (96 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62658, + "fields": { + "id_car_serie": 14700, + "name": "1.6 MT SLX (96 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62669, + "fields": { + "id_car_serie": 14702, + "name": "1.8 AT (78 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62670, + "fields": { + "id_car_serie": 14702, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62671, + "fields": { + "id_car_serie": 14702, + "name": "1.8 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62672, + "fields": { + "id_car_serie": 14702, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62673, + "fields": { + "id_car_serie": 14702, + "name": "2.3 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62674, + "fields": { + "id_car_serie": 14702, + "name": "2.3 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62675, + "fields": { + "id_car_serie": 14702, + "name": "2.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62676, + "fields": { + "id_car_serie": 14702, + "name": "2.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62677, + "fields": { + "id_car_serie": 14703, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62678, + "fields": { + "id_car_serie": 14703, + "name": "1.4 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62679, + "fields": { + "id_car_serie": 14703, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62680, + "fields": { + "id_car_serie": 14703, + "name": "1.4 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62684, + "fields": { + "id_car_serie": 14703, + "name": "2.0 TSI DSG (210 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62692, + "fields": { + "id_car_serie": 14704, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62693, + "fields": { + "id_car_serie": 14704, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62707, + "fields": { + "id_car_serie": 14707, + "name": "3.5 AT P-AWS (290 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62708, + "fields": { + "id_car_serie": 14707, + "name": "3.5 AT SH-AWD (290 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62709, + "fields": { + "id_car_serie": 14708, + "name": "4.7 MT (450 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62710, + "fields": { + "id_car_serie": 14709, + "name": "1.6 CVT (126 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62711, + "fields": { + "id_car_serie": 14709, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62712, + "fields": { + "id_car_serie": 14710, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62713, + "fields": { + "id_car_serie": 14710, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62718, + "fields": { + "id_car_serie": 14711, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62722, + "fields": { + "id_car_serie": 14712, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62723, + "fields": { + "id_car_serie": 14713, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62729, + "fields": { + "id_car_serie": 2420, + "name": "75 AWD (333 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62730, + "fields": { + "id_car_serie": 2420, + "name": "90 AWD (422 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62731, + "fields": { + "id_car_serie": 2420, + "name": "70 AWD (333 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62732, + "fields": { + "id_car_serie": 2598, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62734, + "fields": { + "id_car_serie": 3039, + "name": "3.0 AT AWD (7 places) (258 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62735, + "fields": { + "id_car_serie": 3079, + "name": "6.2 AT 4WD (409 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62736, + "fields": { + "id_car_serie": 3326, + "name": "3.5 SelectShift 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62739, + "fields": { + "id_car_serie": 3487, + "name": "2.0 CRDi AT AWD (184 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62740, + "fields": { + "id_car_serie": 3535, + "name": "5.0 AT (385 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62741, + "fields": { + "id_car_serie": 3543, + "name": "3.0 AT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62746, + "fields": { + "id_car_serie": 3880, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62747, + "fields": { + "id_car_serie": 3881, + "name": "2.2 CDTi AT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62749, + "fields": { + "id_car_serie": 3885, + "name": "1.6d MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62750, + "fields": { + "id_car_serie": 3886, + "name": "1.4 ecoFLEX MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62751, + "fields": { + "id_car_serie": 3886, + "name": "1.4 Turbo MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62752, + "fields": { + "id_car_serie": 3886, + "name": "1.4 Turbo MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62753, + "fields": { + "id_car_serie": 3886, + "name": "1.6 ecoFLEX MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62754, + "fields": { + "id_car_serie": 3886, + "name": "2.0 CDTI AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62755, + "fields": { + "id_car_serie": 3886, + "name": "2.0 CDTI ecoFLEX MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62760, + "fields": { + "id_car_serie": 3888, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62769, + "fields": { + "id_car_serie": 3933, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62770, + "fields": { + "id_car_serie": 3934, + "name": "1.6 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62773, + "fields": { + "id_car_serie": 3952, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62774, + "fields": { + "id_car_serie": 3953, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62775, + "fields": { + "id_car_serie": 3953, + "name": "1.4d MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62776, + "fields": { + "id_car_serie": 3954, + "name": "1.6 HDI AMT (120 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62798, + "fields": { + "id_car_serie": 4541, + "name": "2.4 D5 MT AWD (5 places) (185 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62799, + "fields": { + "id_car_serie": 4559, + "name": "21120 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62800, + "fields": { + "id_car_serie": 4609, + "name": "2.2 TD MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62801, + "fields": { + "id_car_serie": 4620, + "name": "2.0 TFSI S tronic quattro (211 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62802, + "fields": { + "id_car_serie": 4622, + "name": "3.0 TDI tiptronic quattro (233 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62808, + "fields": { + "id_car_serie": 6588, + "name": "4.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62809, + "fields": { + "id_car_serie": 6625, + "name": "2.0 TD AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62810, + "fields": { + "id_car_serie": 6799, + "name": "2.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62811, + "fields": { + "id_car_serie": 6799, + "name": "2.3 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62816, + "fields": { + "id_car_serie": 7347, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62817, + "fields": { + "id_car_serie": 7347, + "name": "1.4 MT HDi (70 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62818, + "fields": { + "id_car_serie": 7347, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62819, + "fields": { + "id_car_serie": 7484, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62826, + "fields": { + "id_car_serie": 8830, + "name": "450 Long 4.7 AT (340 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62833, + "fields": { + "id_car_serie": 9289, + "name": "1.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62834, + "fields": { + "id_car_serie": 9289, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62835, + "fields": { + "id_car_serie": 9304, + "name": "2.0 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62837, + "fields": { + "id_car_serie": 9309, + "name": "1.6 FSI AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62839, + "fields": { + "id_car_serie": 10802, + "name": "1.6 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62840, + "fields": { + "id_car_serie": 10802, + "name": "1.6 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62841, + "fields": { + "id_car_serie": 10802, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62842, + "fields": { + "id_car_serie": 10802, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62861, + "fields": { + "id_car_serie": 14715, + "name": "1.8 T MT quattro (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62862, + "fields": { + "id_car_serie": 14715, + "name": "1.8 T MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62863, + "fields": { + "id_car_serie": 14715, + "name": "2.4 multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62864, + "fields": { + "id_car_serie": 14715, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62865, + "fields": { + "id_car_serie": 14715, + "name": "2.5 TDI multitronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62866, + "fields": { + "id_car_serie": 14715, + "name": "2.5 TDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62867, + "fields": { + "id_car_serie": 14715, + "name": "3.0 multitronic (220 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62868, + "fields": { + "id_car_serie": 14715, + "name": "3.0 tiptronic quattro (220 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62869, + "fields": { + "id_car_serie": 14715, + "name": "3.0 MT quattro (220 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62870, + "fields": { + "id_car_serie": 14715, + "name": "3.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62896, + "fields": { + "id_car_serie": 14719, + "name": "1.8 MT SWB (117 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62897, + "fields": { + "id_car_serie": 14719, + "name": "1.8 TDCi MT SWB (90 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62899, + "fields": { + "id_car_serie": 14720, + "name": "2.0 MT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62900, + "fields": { + "id_car_serie": 14720, + "name": "2.4 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62901, + "fields": { + "id_car_serie": 14720, + "name": "2.4 MT 2WD (130 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62902, + "fields": { + "id_car_serie": 14720, + "name": "2.8 TD MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62906, + "fields": { + "id_car_serie": 14722, + "name": "2.0 T AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62907, + "fields": { + "id_car_serie": 14723, + "name": "1.0 Ecotec Turbo MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62908, + "fields": { + "id_car_serie": 14723, + "name": "1.0 Ecotec Turbo MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62909, + "fields": { + "id_car_serie": 14723, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62912, + "fields": { + "id_car_serie": 14723, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62913, + "fields": { + "id_car_serie": 14723, + "name": "1.4 ecoFLEX Easytronic (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62914, + "fields": { + "id_car_serie": 14723, + "name": "1.4 ecoFLEX Turbo MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62915, + "fields": { + "id_car_serie": 14723, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62916, + "fields": { + "id_car_serie": 14724, + "name": "1.0 Ecotec Turbo MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62917, + "fields": { + "id_car_serie": 14724, + "name": "1.0 Ecotec Turbo MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62918, + "fields": { + "id_car_serie": 14724, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62921, + "fields": { + "id_car_serie": 14724, + "name": "1.4 ecoFLEX AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62922, + "fields": { + "id_car_serie": 14724, + "name": "1.4 ecoFLEX Easytronic (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62923, + "fields": { + "id_car_serie": 14724, + "name": "1.4 ecoFLEX Turbo MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62924, + "fields": { + "id_car_serie": 14724, + "name": "1.4 ecoFLEX MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62929, + "fields": { + "id_car_serie": 14726, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62931, + "fields": { + "id_car_serie": 14726, + "name": "1.5 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62937, + "fields": { + "id_car_serie": 14727, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62939, + "fields": { + "id_car_serie": 14727, + "name": "1.5 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62941, + "fields": { + "id_car_serie": 14727, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62942, + "fields": { + "id_car_serie": 14727, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62948, + "fields": { + "id_car_serie": 14728, + "name": "2.0 TDI BlueMotion DSG 4Motion (240 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62949, + "fields": { + "id_car_serie": 14728, + "name": "2.0 TDI BlueMotion MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62953, + "fields": { + "id_car_serie": 14729, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62957, + "fields": { + "id_car_serie": 14730, + "name": "3.0 TDI Tiptronic 4Motion (204 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62958, + "fields": { + "id_car_serie": 14730, + "name": "3.0 TDI Tiptronic 4Motion (245 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62959, + "fields": { + "id_car_serie": 14730, + "name": "3.0 TDI BlueMotion Tiptronic 4Motion (262 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62961, + "fields": { + "id_car_serie": 14730, + "name": "3.6 FSI Tiptronic 4Motion (249 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62963, + "fields": { + "id_car_serie": 14730, + "name": "4.2 FSI Tiptronic 4Motion (360 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62964, + "fields": { + "id_car_serie": 14731, + "name": "2.7 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62965, + "fields": { + "id_car_serie": 14731, + "name": "2.7 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62974, + "fields": { + "id_car_serie": 14733, + "name": "2.0 TD AT skylight roof (85 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62975, + "fields": { + "id_car_serie": 14733, + "name": "2.0 MT AWD high roof (88 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62976, + "fields": { + "id_car_serie": 14733, + "name": "2.0 TD AT AWD standard roof (85 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62977, + "fields": { + "id_car_serie": 14733, + "name": "2.0 TD MT standard roof (85 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62983, + "fields": { + "id_car_serie": 14734, + "name": "1.3 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62984, + "fields": { + "id_car_serie": 14734, + "name": "1.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62987, + "fields": { + "id_car_serie": 14734, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62990, + "fields": { + "id_car_serie": 14735, + "name": "1.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62993, + "fields": { + "id_car_serie": 14735, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 62998, + "fields": { + "id_car_serie": 14737, + "name": "1.6 CVT (106 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 62999, + "fields": { + "id_car_serie": 14737, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63000, + "fields": { + "id_car_serie": 14737, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63001, + "fields": { + "id_car_serie": 14738, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63004, + "fields": { + "id_car_serie": 14738, + "name": "109 CDI L1 1.6d MT (88 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63010, + "fields": { + "id_car_serie": 14738, + "name": "116 CDI L1 2.1d AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63016, + "fields": { + "id_car_serie": 14738, + "name": "114 CDI L1 2.1d MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63019, + "fields": { + "id_car_serie": 14738, + "name": "116 CDI L1 2.1d MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63024, + "fields": { + "id_car_serie": 47435, + "name": "1.1 Toyoglide (64 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63030, + "fields": { + "id_car_serie": 14741, + "name": "1.6 CDTI MT LWB (116 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63031, + "fields": { + "id_car_serie": 14741, + "name": "1.6 CDTI MT LWB (120 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63032, + "fields": { + "id_car_serie": 14741, + "name": "1.6 CDTI MT LWB (95 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63033, + "fields": { + "id_car_serie": 14741, + "name": "1.6 CDTI MT LWB (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63041, + "fields": { + "id_car_serie": 14744, + "name": "1.9 TDI LWB L2H2 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63044, + "fields": { + "id_car_serie": 14744, + "name": "Long 1.9d MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63046, + "fields": { + "id_car_serie": 14744, + "name": "Long 1.9d MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63047, + "fields": { + "id_car_serie": 14744, + "name": "2.0 SWB L1H2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63049, + "fields": { + "id_car_serie": 14744, + "name": "2.5d AT (131 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63050, + "fields": { + "id_car_serie": 14744, + "name": "4MOTION 2.5d AT (131 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63053, + "fields": { + "id_car_serie": 14744, + "name": "2.5d MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63057, + "fields": { + "id_car_serie": 14744, + "name": "2.5 TDI Kasten 4motion L MT (174 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63058, + "fields": { + "id_car_serie": 14744, + "name": "4MOTION 2.5d MT (174 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63061, + "fields": { + "id_car_serie": 14744, + "name": "3.2 MT (235 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63062, + "fields": { + "id_car_serie": 14744, + "name": "4MOTION 3.2 MT (235 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63063, + "fields": { + "id_car_serie": 14744, + "name": "3.2 V6 SWB L1H1 AT (235 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63065, + "fields": { + "id_car_serie": 14745, + "name": "1.9d MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63066, + "fields": { + "id_car_serie": 14745, + "name": "1.9 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63068, + "fields": { + "id_car_serie": 14745, + "name": "2.0 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63070, + "fields": { + "id_car_serie": 14745, + "name": "2.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63072, + "fields": { + "id_car_serie": 14745, + "name": "2.4 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63076, + "fields": { + "id_car_serie": 14745, + "name": "2.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63079, + "fields": { + "id_car_serie": 14745, + "name": "2.5 MT (115 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63082, + "fields": { + "id_car_serie": 14745, + "name": "2.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63084, + "fields": { + "id_car_serie": 14745, + "name": "2.5d MT (102 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63087, + "fields": { + "id_car_serie": 14745, + "name": "2.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63089, + "fields": { + "id_car_serie": 14745, + "name": "2.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63091, + "fields": { + "id_car_serie": 14747, + "name": "2.0 (272 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63092, + "fields": { + "id_car_serie": 14747, + "name": "2.0 (272 hp) MT", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63095, + "fields": { + "id_car_serie": 53519, + "name": "4.0 AMG Speedshift DCT 7G (462 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63096, + "fields": { + "id_car_serie": 53519, + "name": "S 4.0 AMG Speedshift DCT 7G (510 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63097, + "fields": { + "id_car_serie": 14750, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63098, + "fields": { + "id_car_serie": 14750, + "name": "2.0 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63099, + "fields": { + "id_car_serie": 14751, + "name": "2.0 MT AWD (116 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63100, + "fields": { + "id_car_serie": 14751, + "name": "2.0 Turbo MT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63101, + "fields": { + "id_car_serie": 14752, + "name": "2.0 TD MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63102, + "fields": { + "id_car_serie": 14752, + "name": "2.0 TD MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63103, + "fields": { + "id_car_serie": 14752, + "name": "2.4 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63107, + "fields": { + "id_car_serie": 14754, + "name": "1.5 Turbo MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63108, + "fields": { + "id_car_serie": 14754, + "name": "1.5 Turbo MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63109, + "fields": { + "id_car_serie": 14754, + "name": "2.0 TD AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63110, + "fields": { + "id_car_serie": 14754, + "name": "2.0 TD AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63111, + "fields": { + "id_car_serie": 14754, + "name": "2.0 TD MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63112, + "fields": { + "id_car_serie": 14754, + "name": "2.0 TD MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63117, + "fields": { + "id_car_serie": 14755, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63118, + "fields": { + "id_car_serie": 14755, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63119, + "fields": { + "id_car_serie": 14755, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63121, + "fields": { + "id_car_serie": 14769, + "name": "2.0 TFSI S tronic (230 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63122, + "fields": { + "id_car_serie": 14769, + "name": "2.0 TFSI MT (230 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63123, + "fields": { + "id_car_serie": 14769, + "name": "1.8 TFSI S tronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63124, + "fields": { + "id_car_serie": 926, + "name": "2.4 AT (148 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63125, + "fields": { + "id_car_serie": 14768, + "name": "2.5 TFSI quattro S tronic (310 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63128, + "fields": { + "id_car_serie": 9554, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63129, + "fields": { + "id_car_serie": 9305, + "name": "1.4 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63133, + "fields": { + "id_car_serie": 2882, + "name": "5.9 AT (576 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63134, + "fields": { + "id_car_serie": 2883, + "name": "5.9 AT (576 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63139, + "fields": { + "id_car_serie": 3344, + "name": "1.6 (150 hp), gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63140, + "fields": { + "id_car_serie": 3344, + "name": "2.0 (140 hp), diesel, robot, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63146, + "fields": { + "id_car_serie": 3948, + "name": "1.6 THP MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63148, + "fields": { + "id_car_serie": 3546, + "name": "2.8 CRD MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63149, + "fields": { + "id_car_serie": 3840, + "name": "1.6 CVT (117 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63150, + "fields": { + "id_car_serie": 3840, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63151, + "fields": { + "id_car_serie": 3954, + "name": "1.6 THP MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63156, + "fields": { + "id_car_serie": 3970, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63168, + "fields": { + "id_car_serie": 4181, + "name": "2.3 D AT AWD (101 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63169, + "fields": { + "id_car_serie": 4489, + "name": "1.2 DIG-T CVT (115 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63170, + "fields": { + "id_car_serie": 4521, + "name": "2.0 AT (128 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63171, + "fields": { + "id_car_serie": 4521, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63172, + "fields": { + "id_car_serie": 4521, + "name": "2.2 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63173, + "fields": { + "id_car_serie": 4534, + "name": "1.6 TD MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63174, + "fields": { + "id_car_serie": 4534, + "name": "1.6 D2 Turbo MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63175, + "fields": { + "id_car_serie": 4534, + "name": "2.0 D3 Geartronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63176, + "fields": { + "id_car_serie": 4534, + "name": "2.0 D4 Geartronic (177 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63177, + "fields": { + "id_car_serie": 4534, + "name": "2.0 TD MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63178, + "fields": { + "id_car_serie": 4534, + "name": "2.0 D3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63179, + "fields": { + "id_car_serie": 4534, + "name": "2.0 D4 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63180, + "fields": { + "id_car_serie": 6300, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63190, + "fields": { + "id_car_serie": 7318, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63194, + "fields": { + "id_car_serie": 7514, + "name": "1.5 dCi MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63198, + "fields": { + "id_car_serie": 7650, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63200, + "fields": { + "id_car_serie": 14764, + "name": "5.9 V12 AT (517 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63204, + "fields": { + "id_car_serie": 8696, + "name": "2.5 AT (172 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63206, + "fields": { + "id_car_serie": 8696, + "name": "2.7 AT (181 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63208, + "fields": { + "id_car_serie": 8665, + "name": "3.0 D AT (275 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63209, + "fields": { + "id_car_serie": 8652, + "name": "FX45 AT AWD (319 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63218, + "fields": { + "id_car_serie": 14761, + "name": "3.2 AT (258 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63219, + "fields": { + "id_car_serie": 14761, + "name": "3.5 AT (286 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63220, + "fields": { + "id_car_serie": 14761, + "name": "3.2 MT (258 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63221, + "fields": { + "id_car_serie": 14761, + "name": "3.5 MT (286 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63222, + "fields": { + "id_car_serie": 14762, + "name": "3.2 AT (260 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63223, + "fields": { + "id_car_serie": 14771, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63224, + "fields": { + "id_car_serie": 14771, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63225, + "fields": { + "id_car_serie": 14771, + "name": "1.6 HDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63226, + "fields": { + "id_car_serie": 14771, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63227, + "fields": { + "id_car_serie": 14771, + "name": "1.9 D MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63228, + "fields": { + "id_car_serie": 14771, + "name": "2.0 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63231, + "fields": { + "id_car_serie": 14654, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63232, + "fields": { + "id_car_serie": 14694, + "name": "GTS 3.6 Tiptronic S AWD (440 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63233, + "fields": { + "id_car_serie": 62792, + "name": "3.7 AT (304 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63234, + "fields": { + "id_car_serie": 4648, + "name": "3.5 AT (208 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63235, + "fields": { + "id_car_serie": 4648, + "name": "3.5 AT (228 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63237, + "fields": { + "id_car_serie": 14757, + "name": "2.3 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63238, + "fields": { + "id_car_serie": 10819, + "name": "1.0 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63239, + "fields": { + "id_car_serie": 10819, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63241, + "fields": { + "id_car_serie": 10820, + "name": "1.0 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63243, + "fields": { + "id_car_serie": 10820, + "name": "1.4 HDi MT (54 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63246, + "fields": { + "id_car_serie": 14763, + "name": "5.9 V12 AT (517 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63247, + "fields": { + "id_car_serie": 14763, + "name": "5.9 GT AT (547 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63248, + "fields": { + "id_car_serie": 14770, + "name": "1.6 MT L1 (110 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63249, + "fields": { + "id_car_serie": 14770, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63250, + "fields": { + "id_car_serie": 14770, + "name": "1.6 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63252, + "fields": { + "id_car_serie": 14770, + "name": "1.6 HDi MT L1 (75 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63253, + "fields": { + "id_car_serie": 14770, + "name": "1.6 HDi MT L2 (90 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63258, + "fields": { + "id_car_serie": 14789, + "name": "FX35 AT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63259, + "fields": { + "id_car_serie": 14789, + "name": "FX35 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63272, + "fields": { + "id_car_serie": 14821, + "name": "1.4 Twinport MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63273, + "fields": { + "id_car_serie": 14821, + "name": "1.4 LPG MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63274, + "fields": { + "id_car_serie": 14821, + "name": "1.6 Twinport Easytronic (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63275, + "fields": { + "id_car_serie": 14821, + "name": "1.6 Twinport MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63277, + "fields": { + "id_car_serie": 14821, + "name": "1.7 CDTi MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63278, + "fields": { + "id_car_serie": 14821, + "name": "1.7 CDTi MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63279, + "fields": { + "id_car_serie": 14821, + "name": "1.8 Easytronic (125 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63280, + "fields": { + "id_car_serie": 14821, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63282, + "fields": { + "id_car_serie": 14825, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63284, + "fields": { + "id_car_serie": 14825, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63285, + "fields": { + "id_car_serie": 14825, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63286, + "fields": { + "id_car_serie": 14825, + "name": "1.4 TDI MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63287, + "fields": { + "id_car_serie": 14825, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63288, + "fields": { + "id_car_serie": 14825, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63293, + "fields": { + "id_car_serie": 14824, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63295, + "fields": { + "id_car_serie": 14824, + "name": "1.9 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63297, + "fields": { + "id_car_serie": 14824, + "name": "1.9 TD MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63300, + "fields": { + "id_car_serie": 14824, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63303, + "fields": { + "id_car_serie": 14824, + "name": "2.8 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63305, + "fields": { + "id_car_serie": 14842, + "name": "2.0 T6 Drive-E AT AWD (7 places) (320 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63316, + "fields": { + "id_car_serie": 14819, + "name": "1.3 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63317, + "fields": { + "id_car_serie": 14819, + "name": "1.3 AT e-4WD (91 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63318, + "fields": { + "id_car_serie": 14819, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63319, + "fields": { + "id_car_serie": 14819, + "name": "1.5 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63320, + "fields": { + "id_car_serie": 14819, + "name": "1.5 AT e-4WD (113 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63321, + "fields": { + "id_car_serie": 14819, + "name": "1.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63330, + "fields": { + "id_car_serie": 14820, + "name": "1.5 AMT (109 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63331, + "fields": { + "id_car_serie": 14820, + "name": "1.5 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63333, + "fields": { + "id_car_serie": 14820, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63334, + "fields": { + "id_car_serie": 14820, + "name": "1.6 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63335, + "fields": { + "id_car_serie": 14820, + "name": "1.6 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63337, + "fields": { + "id_car_serie": 14820, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63338, + "fields": { + "id_car_serie": 14820, + "name": "2.0 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63342, + "fields": { + "id_car_serie": 14820, + "name": "2.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63347, + "fields": { + "id_car_serie": 14820, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63348, + "fields": { + "id_car_serie": 14822, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63349, + "fields": { + "id_car_serie": 14822, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63352, + "fields": { + "id_car_serie": 14836, + "name": "2.5 TD MT AWD (144 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63357, + "fields": { + "id_car_serie": 14836, + "name": "3.0 TD AT AWD (171 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63362, + "fields": { + "id_car_serie": 14841, + "name": "1.4 TSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63363, + "fields": { + "id_car_serie": 14841, + "name": "2.0 TSI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63374, + "fields": { + "id_car_serie": 14847, + "name": "4.7 AT AWD (273 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63375, + "fields": { + "id_car_serie": 14847, + "name": "4.7 AT (273 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63376, + "fields": { + "id_car_serie": 14847, + "name": "4.7 AT (282 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63377, + "fields": { + "id_car_serie": 14847, + "name": "4.7 AT AWD (282 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63381, + "fields": { + "id_car_serie": 14849, + "name": "2.0 Si4 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63382, + "fields": { + "id_car_serie": 14849, + "name": "2.2 TD4 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63383, + "fields": { + "id_car_serie": 14849, + "name": "2.2 SD4 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63386, + "fields": { + "id_car_serie": 14772, + "name": "1.0 AMT (68 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63387, + "fields": { + "id_car_serie": 14772, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63389, + "fields": { + "id_car_serie": 14773, + "name": "1.0 AMT (68 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63390, + "fields": { + "id_car_serie": 14773, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63392, + "fields": { + "id_car_serie": 14774, + "name": "1.0 AMT (68 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63393, + "fields": { + "id_car_serie": 14774, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63394, + "fields": { + "id_car_serie": 14774, + "name": "1.4 HDi MT (54 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63395, + "fields": { + "id_car_serie": 14775, + "name": "1.0 AMT (68 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63396, + "fields": { + "id_car_serie": 14775, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63397, + "fields": { + "id_car_serie": 14775, + "name": "1.4 HDi MT (54 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63437, + "fields": { + "id_car_serie": 14779, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63438, + "fields": { + "id_car_serie": 14779, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63439, + "fields": { + "id_car_serie": 14779, + "name": "1.6 HDi AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63441, + "fields": { + "id_car_serie": 14779, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63442, + "fields": { + "id_car_serie": 14779, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63443, + "fields": { + "id_car_serie": 14779, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63444, + "fields": { + "id_car_serie": 14779, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63448, + "fields": { + "id_car_serie": 14779, + "name": "1.6 HDi AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63450, + "fields": { + "id_car_serie": 14779, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63452, + "fields": { + "id_car_serie": 14779, + "name": "2.0 HDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63453, + "fields": { + "id_car_serie": 14779, + "name": "2.0 HDi MT (138 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63454, + "fields": { + "id_car_serie": 14779, + "name": "2.0 HDi AMT (138 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63455, + "fields": { + "id_car_serie": 14780, + "name": "1.6 HDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63457, + "fields": { + "id_car_serie": 14780, + "name": "2.0 HDI AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63458, + "fields": { + "id_car_serie": 14780, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63459, + "fields": { + "id_car_serie": 14780, + "name": "2.2 HDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63460, + "fields": { + "id_car_serie": 14780, + "name": "2.9 AT (207 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63461, + "fields": { + "id_car_serie": 14781, + "name": "1.6 HDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63463, + "fields": { + "id_car_serie": 14781, + "name": "2.2 HDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63464, + "fields": { + "id_car_serie": 14781, + "name": "2.9 AT (207 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63465, + "fields": { + "id_car_serie": 14782, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63466, + "fields": { + "id_car_serie": 14782, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63467, + "fields": { + "id_car_serie": 14782, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63468, + "fields": { + "id_car_serie": 14782, + "name": "1.9 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63469, + "fields": { + "id_car_serie": 14782, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63470, + "fields": { + "id_car_serie": 14782, + "name": "2.0 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63471, + "fields": { + "id_car_serie": 14782, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63472, + "fields": { + "id_car_serie": 14782, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63473, + "fields": { + "id_car_serie": 14782, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63476, + "fields": { + "id_car_serie": 14783, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63477, + "fields": { + "id_car_serie": 14783, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63478, + "fields": { + "id_car_serie": 14783, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63479, + "fields": { + "id_car_serie": 14783, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63480, + "fields": { + "id_car_serie": 14783, + "name": "1.9 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63481, + "fields": { + "id_car_serie": 14783, + "name": "1.9 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63482, + "fields": { + "id_car_serie": 14783, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63483, + "fields": { + "id_car_serie": 14783, + "name": "2.0 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63484, + "fields": { + "id_car_serie": 14783, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63485, + "fields": { + "id_car_serie": 14783, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63486, + "fields": { + "id_car_serie": 14783, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63487, + "fields": { + "id_car_serie": 14783, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63488, + "fields": { + "id_car_serie": 14783, + "name": "2.1 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63491, + "fields": { + "id_car_serie": 14785, + "name": "2.3 AT 4WD (153 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63492, + "fields": { + "id_car_serie": 14785, + "name": "2.3 AT (153 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63493, + "fields": { + "id_car_serie": 14785, + "name": "2.3 MT (153 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63494, + "fields": { + "id_car_serie": 14785, + "name": "2.3 MT 4WD (153 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63497, + "fields": { + "id_car_serie": 14785, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63498, + "fields": { + "id_car_serie": 14785, + "name": "3.0 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63499, + "fields": { + "id_car_serie": 14786, + "name": "1.0 EcoBoost MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63500, + "fields": { + "id_car_serie": 14786, + "name": "1.6 Ti-VCT MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63501, + "fields": { + "id_car_serie": 14786, + "name": "1.5 EcoBoost AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63502, + "fields": { + "id_car_serie": 14786, + "name": "1.5 EcoBoost AT (182 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63503, + "fields": { + "id_car_serie": 14786, + "name": "1.5 EcoBoost MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63504, + "fields": { + "id_car_serie": 14786, + "name": "1.5 EcoBoost MT (182 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63505, + "fields": { + "id_car_serie": 14786, + "name": "1.5 TDCi PowerShift (120 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63507, + "fields": { + "id_car_serie": 14786, + "name": "1.5 TDCi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63508, + "fields": { + "id_car_serie": 14786, + "name": "1.5 TDCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63509, + "fields": { + "id_car_serie": 14786, + "name": "1.6 Ti-VCT MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63510, + "fields": { + "id_car_serie": 14786, + "name": "1.6 Ti-VCT MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63511, + "fields": { + "id_car_serie": 14786, + "name": "1.6 TDCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63512, + "fields": { + "id_car_serie": 14786, + "name": "1.6 TDCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63513, + "fields": { + "id_car_serie": 14786, + "name": "2.0 TDCi PowerShift (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63514, + "fields": { + "id_car_serie": 14786, + "name": "2.0 TDCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63515, + "fields": { + "id_car_serie": 14787, + "name": "1.0 EcoBoost MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63516, + "fields": { + "id_car_serie": 14787, + "name": "1.6 Ti-VCT MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63517, + "fields": { + "id_car_serie": 14787, + "name": "1.5 EcoBoost AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63518, + "fields": { + "id_car_serie": 14787, + "name": "1.5 EcoBoost AT (182 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63519, + "fields": { + "id_car_serie": 14787, + "name": "1.5 EcoBoost MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63520, + "fields": { + "id_car_serie": 14787, + "name": "1.5 EcoBoost MT (182 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63521, + "fields": { + "id_car_serie": 14787, + "name": "1.5 TDCi PowerShift (120 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63522, + "fields": { + "id_car_serie": 14787, + "name": "1.5 TDCi MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63523, + "fields": { + "id_car_serie": 14787, + "name": "1.5 TDCi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63524, + "fields": { + "id_car_serie": 14787, + "name": "1.5 TDCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63525, + "fields": { + "id_car_serie": 14787, + "name": "1.6 Ti-VCT MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63526, + "fields": { + "id_car_serie": 14787, + "name": "1.6 Ti-VCT MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63527, + "fields": { + "id_car_serie": 14787, + "name": "1.6 TDCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63528, + "fields": { + "id_car_serie": 14787, + "name": "1.6 TDCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63529, + "fields": { + "id_car_serie": 14787, + "name": "2.0 TDCi PowerShift (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63530, + "fields": { + "id_car_serie": 14787, + "name": "2.0 TDCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63531, + "fields": { + "id_car_serie": 14788, + "name": "1.0 EcoBoost MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63532, + "fields": { + "id_car_serie": 14788, + "name": "1.6 Ti-VCT MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63533, + "fields": { + "id_car_serie": 14788, + "name": "1.5 EcoBoost AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63534, + "fields": { + "id_car_serie": 14788, + "name": "1.5 EcoBoost AT (182 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63535, + "fields": { + "id_car_serie": 14788, + "name": "1.5 EcoBoost MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63536, + "fields": { + "id_car_serie": 14788, + "name": "1.5 EcoBoost MT (182 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63537, + "fields": { + "id_car_serie": 14788, + "name": "1.5 TDCi PowerShift (120 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63538, + "fields": { + "id_car_serie": 14788, + "name": "1.5 TDCi MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63539, + "fields": { + "id_car_serie": 14788, + "name": "1.5 TDCi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63540, + "fields": { + "id_car_serie": 14788, + "name": "1.5 TDCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63541, + "fields": { + "id_car_serie": 14788, + "name": "1.6 Ti-VCT MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63542, + "fields": { + "id_car_serie": 14788, + "name": "1.6 Ti-VCT MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63543, + "fields": { + "id_car_serie": 14788, + "name": "1.6 TDCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63544, + "fields": { + "id_car_serie": 14788, + "name": "1.6 TDCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63545, + "fields": { + "id_car_serie": 14788, + "name": "2.0 TDCi PowerShift (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63546, + "fields": { + "id_car_serie": 14788, + "name": "2.0 TDCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63554, + "fields": { + "id_car_serie": 14792, + "name": "QX56 5.6 AT (325 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63577, + "fields": { + "id_car_serie": 14796, + "name": "2.4 AT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63578, + "fields": { + "id_car_serie": 14799, + "name": "1.4 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63579, + "fields": { + "id_car_serie": 14799, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63580, + "fields": { + "id_car_serie": 14799, + "name": "1.5 CRDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63581, + "fields": { + "id_car_serie": 14799, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63582, + "fields": { + "id_car_serie": 14799, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63583, + "fields": { + "id_car_serie": 14800, + "name": "1.4 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63584, + "fields": { + "id_car_serie": 14800, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63585, + "fields": { + "id_car_serie": 14800, + "name": "1.5 CRDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63586, + "fields": { + "id_car_serie": 14800, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63587, + "fields": { + "id_car_serie": 14800, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63589, + "fields": { + "id_car_serie": 14801, + "name": "2.2 D AT AWD (5 places) (200 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63599, + "fields": { + "id_car_serie": 14803, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63605, + "fields": { + "id_car_serie": 14803, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63617, + "fields": { + "id_car_serie": 14806, + "name": "1.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63618, + "fields": { + "id_car_serie": 14806, + "name": "2.0 TD AT (112 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63619, + "fields": { + "id_car_serie": 14806, + "name": "2.0 TD MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63620, + "fields": { + "id_car_serie": 14806, + "name": "2.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63621, + "fields": { + "id_car_serie": 14807, + "name": "1.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63622, + "fields": { + "id_car_serie": 14807, + "name": "2.0 TD AT (112 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63623, + "fields": { + "id_car_serie": 14807, + "name": "2.0 TD MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63624, + "fields": { + "id_car_serie": 14807, + "name": "2.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63625, + "fields": { + "id_car_serie": 14808, + "name": "3.6 TDV6 AT AWD (271 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63626, + "fields": { + "id_car_serie": 14808, + "name": "4.4 TDV8 AT AWD (313 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63628, + "fields": { + "id_car_serie": 14808, + "name": "5.0 V8 Supercharged AT AWD (510 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63629, + "fields": { + "id_car_serie": 14809, + "name": "3.6 TD AT (271 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63630, + "fields": { + "id_car_serie": 14809, + "name": "4.2 AT (396 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63631, + "fields": { + "id_car_serie": 14809, + "name": "4.4 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63649, + "fields": { + "id_car_serie": 14816, + "name": "4.3 AT (288 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63650, + "fields": { + "id_car_serie": 14818, + "name": "5.4 AT AWD (304 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63651, + "fields": { + "id_car_serie": 14823, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63652, + "fields": { + "id_car_serie": 14823, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63654, + "fields": { + "id_car_serie": 14823, + "name": "2.0 HDI MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63655, + "fields": { + "id_car_serie": 14823, + "name": "2.2 MT (158 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63656, + "fields": { + "id_car_serie": 14823, + "name": "2.2 HDi MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63657, + "fields": { + "id_car_serie": 14823, + "name": "2.9 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63659, + "fields": { + "id_car_serie": 14826, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63661, + "fields": { + "id_car_serie": 14826, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63662, + "fields": { + "id_car_serie": 14826, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63663, + "fields": { + "id_car_serie": 14826, + "name": "1.4 TDI MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63666, + "fields": { + "id_car_serie": 14826, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63667, + "fields": { + "id_car_serie": 14826, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63671, + "fields": { + "id_car_serie": 14827, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63672, + "fields": { + "id_car_serie": 14827, + "name": "1.4 TSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63673, + "fields": { + "id_car_serie": 14827, + "name": "1.4 MPI MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63674, + "fields": { + "id_car_serie": 14827, + "name": "1.6 MPI MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63676, + "fields": { + "id_car_serie": 14827, + "name": "1.8 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63681, + "fields": { + "id_car_serie": 14828, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63682, + "fields": { + "id_car_serie": 14828, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63683, + "fields": { + "id_car_serie": 14828, + "name": "1.2 TSI DSG (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63684, + "fields": { + "id_car_serie": 14828, + "name": "1.2 TSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63685, + "fields": { + "id_car_serie": 14828, + "name": "1.2 TSI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63686, + "fields": { + "id_car_serie": 14828, + "name": "1.4 TDI DSG (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63687, + "fields": { + "id_car_serie": 14828, + "name": "1.4 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63688, + "fields": { + "id_car_serie": 14828, + "name": "1.4 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63696, + "fields": { + "id_car_serie": 14830, + "name": "1.2 HTP MT (54 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63697, + "fields": { + "id_car_serie": 14830, + "name": "1.2 HTP MT (64 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63698, + "fields": { + "id_car_serie": 14830, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63699, + "fields": { + "id_car_serie": 14830, + "name": "1.4 TDI MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63700, + "fields": { + "id_car_serie": 14830, + "name": "1.4 TDI MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63701, + "fields": { + "id_car_serie": 14830, + "name": "1.4 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63702, + "fields": { + "id_car_serie": 14830, + "name": "1.9 TDI MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63703, + "fields": { + "id_car_serie": 14830, + "name": "1.9 SDI MT (64 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63704, + "fields": { + "id_car_serie": 14830, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63720, + "fields": { + "id_car_serie": 14834, + "name": "1.4 D-4D MMT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63721, + "fields": { + "id_car_serie": 14834, + "name": "1.4 D-4D MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63722, + "fields": { + "id_car_serie": 14834, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63725, + "fields": { + "id_car_serie": 14834, + "name": "1.6 MMT (132 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63726, + "fields": { + "id_car_serie": 14834, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63727, + "fields": { + "id_car_serie": 14834, + "name": "1.8 CVT (144 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63729, + "fields": { + "id_car_serie": 14834, + "name": "1.8 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63730, + "fields": { + "id_car_serie": 14834, + "name": "1.8 CVT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63731, + "fields": { + "id_car_serie": 14834, + "name": "2.0 D-4D MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63732, + "fields": { + "id_car_serie": 14834, + "name": "2.2 D-4D MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63733, + "fields": { + "id_car_serie": 14835, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63735, + "fields": { + "id_car_serie": 14835, + "name": "2.5 AT (181 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63736, + "fields": { + "id_car_serie": 14837, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63739, + "fields": { + "id_car_serie": 14837, + "name": "2.0 MT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63740, + "fields": { + "id_car_serie": 14837, + "name": "2.7 AT AWD (145 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63743, + "fields": { + "id_car_serie": 14837, + "name": "3.0 D MT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63745, + "fields": { + "id_car_serie": 14838, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63748, + "fields": { + "id_car_serie": 14838, + "name": "2.7 AT AWD (145 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63751, + "fields": { + "id_car_serie": 14838, + "name": "3.0 D MT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63753, + "fields": { + "id_car_serie": 14839, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63756, + "fields": { + "id_car_serie": 14839, + "name": "2.7 AT AWD (145 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63759, + "fields": { + "id_car_serie": 14839, + "name": "3.0 D MT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63763, + "fields": { + "id_car_serie": 14844, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63764, + "fields": { + "id_car_serie": 14844, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63765, + "fields": { + "id_car_serie": 14844, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63767, + "fields": { + "id_car_serie": 14845, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63778, + "fields": { + "id_car_serie": 14851, + "name": "3.0 AT (270 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63779, + "fields": { + "id_car_serie": 14851, + "name": "3.3 AT (294 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63780, + "fields": { + "id_car_serie": 14852, + "name": "1.9 TDI MT (104 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63781, + "fields": { + "id_car_serie": 14852, + "name": "1.9 TDI MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63782, + "fields": { + "id_car_serie": 14852, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63783, + "fields": { + "id_car_serie": 14852, + "name": "2.5 TDI AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63784, + "fields": { + "id_car_serie": 14852, + "name": "2.5 TDI AT 4Motion (130 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63785, + "fields": { + "id_car_serie": 14852, + "name": "2.5 TDI AT (174 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63786, + "fields": { + "id_car_serie": 14852, + "name": "2.5 TDI AT 4Motion (174 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63787, + "fields": { + "id_car_serie": 14852, + "name": "2.5 TDI MT 4Motion (130 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63788, + "fields": { + "id_car_serie": 14852, + "name": "2.5 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63789, + "fields": { + "id_car_serie": 14852, + "name": "2.5 TDI MT 4Motion (174 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63790, + "fields": { + "id_car_serie": 14852, + "name": "2.5 TDI MT (174 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63791, + "fields": { + "id_car_serie": 14852, + "name": "3.2 AT 4Motion (235 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63792, + "fields": { + "id_car_serie": 14852, + "name": "3.2 MT 4Motion (235 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63793, + "fields": { + "id_car_serie": 14853, + "name": "1.9 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63794, + "fields": { + "id_car_serie": 14853, + "name": "1.9 kat D MT long (68 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63795, + "fields": { + "id_car_serie": 14853, + "name": "1.9 kat D MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63797, + "fields": { + "id_car_serie": 14853, + "name": "2.0 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63798, + "fields": { + "id_car_serie": 14853, + "name": "2.0 D MT long (84 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63799, + "fields": { + "id_car_serie": 14853, + "name": "2.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63800, + "fields": { + "id_car_serie": 14853, + "name": "2.5 AT long (115 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63801, + "fields": { + "id_car_serie": 14853, + "name": "2.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63802, + "fields": { + "id_car_serie": 14853, + "name": "2.5 MT 4Motion (110 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63803, + "fields": { + "id_car_serie": 14853, + "name": "2.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63804, + "fields": { + "id_car_serie": 14853, + "name": "2.5 MT long (115 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63805, + "fields": { + "id_car_serie": 14853, + "name": "2.5 MT 4Motion long (115 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63806, + "fields": { + "id_car_serie": 14853, + "name": "2.5 MT 4Motion (115 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63807, + "fields": { + "id_car_serie": 14853, + "name": "2.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63808, + "fields": { + "id_car_serie": 14853, + "name": "2.5 TDi MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63809, + "fields": { + "id_car_serie": 14853, + "name": "2.5 TDi MT 4Motion (102 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63810, + "fields": { + "id_car_serie": 14853, + "name": "2.5 TDi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63814, + "fields": { + "id_car_serie": 14853, + "name": "2.5 TDi MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63815, + "fields": { + "id_car_serie": 14853, + "name": "2.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63816, + "fields": { + "id_car_serie": 14853, + "name": "2.8 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63817, + "fields": { + "id_car_serie": 14853, + "name": "2.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63818, + "fields": { + "id_car_serie": 14853, + "name": "2.8 MT long (140 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63819, + "fields": { + "id_car_serie": 14854, + "name": "1.7 D AT (57 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63820, + "fields": { + "id_car_serie": 14854, + "name": "1.7 D 5MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63822, + "fields": { + "id_car_serie": 14855, + "name": "1.5 Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63825, + "fields": { + "id_car_serie": 14856, + "name": "2.3 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63826, + "fields": { + "id_car_serie": 14856, + "name": "3.0 MT (226 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63830, + "fields": { + "id_car_serie": 14858, + "name": "6.0 AT (552 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63831, + "fields": { + "id_car_serie": 14859, + "name": "6.0 AT (630 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63832, + "fields": { + "id_car_serie": 14860, + "name": "6.0 AT (630 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63833, + "fields": { + "id_car_serie": 14760, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63836, + "fields": { + "id_car_serie": 14662, + "name": "2.8 TFSI S tronic quattro (220 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63837, + "fields": { + "id_car_serie": 14662, + "name": "3.0 TDI S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63838, + "fields": { + "id_car_serie": 14766, + "name": "1.4 TFSI S tronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63839, + "fields": { + "id_car_serie": 14766, + "name": "1.4 TFSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63840, + "fields": { + "id_car_serie": 14766, + "name": "2.0 TFSI quattro S tronic (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63841, + "fields": { + "id_car_serie": 14766, + "name": "2.0 TFSI quattro S tronic (211 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63842, + "fields": { + "id_car_serie": 14766, + "name": "2.0 TFSI quattro MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63847, + "fields": { + "id_car_serie": 14766, + "name": "2.0 TDI quattro S tronic (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63851, + "fields": { + "id_car_serie": 2953, + "name": "6.0 AT (575 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63862, + "fields": { + "id_car_serie": 3530, + "name": "S 3.0 V6 AT AWD (380 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63863, + "fields": { + "id_car_serie": 3530, + "name": "S 5.0 V8 AT AWD (575 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63865, + "fields": { + "id_car_serie": 3531, + "name": "S 5.0 V8 AT AWD (550 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63901, + "fields": { + "id_car_serie": 3791, + "name": "3.2 DI-D MT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63903, + "fields": { + "id_car_serie": 4071, + "name": "2.0 Turbo MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63904, + "fields": { + "id_car_serie": 4071, + "name": "2.0 dCi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63905, + "fields": { + "id_car_serie": 4071, + "name": "2.0 dCi FAP MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63906, + "fields": { + "id_car_serie": 4071, + "name": "3.0 dCi AT (235 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63907, + "fields": { + "id_car_serie": 4071, + "name": "3.5 AT (238 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63923, + "fields": { + "id_car_serie": 4209, + "name": "2.0 MT (140 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63927, + "fields": { + "id_car_serie": 4489, + "name": "1.6 DIG-T MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 63954, + "fields": { + "id_car_serie": 6377, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63955, + "fields": { + "id_car_serie": 6377, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63956, + "fields": { + "id_car_serie": 6378, + "name": "1.8 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63957, + "fields": { + "id_car_serie": 6378, + "name": "1.8 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63958, + "fields": { + "id_car_serie": 6414, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63959, + "fields": { + "id_car_serie": 6414, + "name": "2.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63962, + "fields": { + "id_car_serie": 6611, + "name": "1.1 AT (65 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63965, + "fields": { + "id_car_serie": 6611, + "name": "1.1 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63967, + "fields": { + "id_car_serie": 6867, + "name": "0.7 Turbo AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63968, + "fields": { + "id_car_serie": 6867, + "name": "0.7 Turbo MT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63969, + "fields": { + "id_car_serie": 6920, + "name": "2.3 AT (193 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63970, + "fields": { + "id_car_serie": 6920, + "name": "2.3 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63973, + "fields": { + "id_car_serie": 7055, + "name": "1.6 AT (117 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63974, + "fields": { + "id_car_serie": 7055, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63977, + "fields": { + "id_car_serie": 7055, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63978, + "fields": { + "id_car_serie": 7055, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63979, + "fields": { + "id_car_serie": 7055, + "name": "2.0 MT (142 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63981, + "fields": { + "id_car_serie": 7055, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63982, + "fields": { + "id_car_serie": 7112, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63986, + "fields": { + "id_car_serie": 7706, + "name": "1.2 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63987, + "fields": { + "id_car_serie": 7706, + "name": "1.2 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63988, + "fields": { + "id_car_serie": 7706, + "name": "1.2 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63990, + "fields": { + "id_car_serie": 7706, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63991, + "fields": { + "id_car_serie": 7707, + "name": "1.2 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63992, + "fields": { + "id_car_serie": 7707, + "name": "1.2 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63996, + "fields": { + "id_car_serie": 7709, + "name": "1.3 AT (92 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63997, + "fields": { + "id_car_serie": 7709, + "name": "1.3 DDiS MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 63998, + "fields": { + "id_car_serie": 7709, + "name": "1.3 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64000, + "fields": { + "id_car_serie": 7709, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64001, + "fields": { + "id_car_serie": 7709, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64003, + "fields": { + "id_car_serie": 7710, + "name": "1.3 AT (92 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64005, + "fields": { + "id_car_serie": 7710, + "name": "1.3 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64006, + "fields": { + "id_car_serie": 7710, + "name": "1.3 DDiS MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64007, + "fields": { + "id_car_serie": 7710, + "name": "1.2 D MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64008, + "fields": { + "id_car_serie": 7710, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64009, + "fields": { + "id_car_serie": 7710, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64012, + "fields": { + "id_car_serie": 8681, + "name": "2.0 AT (134 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64017, + "fields": { + "id_car_serie": 8631, + "name": "2.5 Shiftronic (180 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64018, + "fields": { + "id_car_serie": 14870, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64019, + "fields": { + "id_car_serie": 14870, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64020, + "fields": { + "id_car_serie": 14870, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64023, + "fields": { + "id_car_serie": 14870, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64028, + "fields": { + "id_car_serie": 14870, + "name": "1.9 TDI Tiptronic (100 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64029, + "fields": { + "id_car_serie": 14870, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64030, + "fields": { + "id_car_serie": 14870, + "name": "1.9 TDI Tiptronic (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64031, + "fields": { + "id_car_serie": 14870, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64032, + "fields": { + "id_car_serie": 14870, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64033, + "fields": { + "id_car_serie": 14870, + "name": "1.9 TDI MT Quattro (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64034, + "fields": { + "id_car_serie": 14870, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64069, + "fields": { + "id_car_serie": 14924, + "name": "3.8 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64071, + "fields": { + "id_car_serie": 14924, + "name": "3.8 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64072, + "fields": { + "id_car_serie": 14924, + "name": "5.7 AT (310 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64073, + "fields": { + "id_car_serie": 14924, + "name": "5.7 AT (305 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64074, + "fields": { + "id_car_serie": 14924, + "name": "5.7 MT (310 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64075, + "fields": { + "id_car_serie": 14924, + "name": "5.7 MT (305 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64076, + "fields": { + "id_car_serie": 14993, + "name": "1.6 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64077, + "fields": { + "id_car_serie": 14993, + "name": "1.6 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64078, + "fields": { + "id_car_serie": 14993, + "name": "1.6 CRDi AT (128 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64080, + "fields": { + "id_car_serie": 14993, + "name": "2.0 AT (164 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64081, + "fields": { + "id_car_serie": 14993, + "name": "2.0 MT (164 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64082, + "fields": { + "id_car_serie": 10785, + "name": "2.0 Turbo Lineartronic AWD (300 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64084, + "fields": { + "id_car_serie": 14781, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64085, + "fields": { + "id_car_serie": 14781, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64098, + "fields": { + "id_car_serie": 15162, + "name": "1.6 dCi Xtronic (130 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64099, + "fields": { + "id_car_serie": 15162, + "name": "1.6 dCi MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64100, + "fields": { + "id_car_serie": 15162, + "name": "1.6 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64101, + "fields": { + "id_car_serie": 15162, + "name": "2.0 CVT AWD (144 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64102, + "fields": { + "id_car_serie": 15162, + "name": "2.0 CVT (144 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64107, + "fields": { + "id_car_serie": 15140, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64108, + "fields": { + "id_car_serie": 15140, + "name": "1.8 T AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64109, + "fields": { + "id_car_serie": 15140, + "name": "1.8 T AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64110, + "fields": { + "id_car_serie": 15140, + "name": "1.8 T 4Motion AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64112, + "fields": { + "id_car_serie": 15140, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64113, + "fields": { + "id_car_serie": 15140, + "name": "1.8 T MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64114, + "fields": { + "id_car_serie": 15140, + "name": "1.8 T 4Motion MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64115, + "fields": { + "id_car_serie": 15140, + "name": "1.9 TDI AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64116, + "fields": { + "id_car_serie": 15140, + "name": "1.9 TDI AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64117, + "fields": { + "id_car_serie": 15140, + "name": "1.9 TDI MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64118, + "fields": { + "id_car_serie": 15140, + "name": "1.9 TDI 6MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64119, + "fields": { + "id_car_serie": 15140, + "name": "1.9 TDI 4Motion 6MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64120, + "fields": { + "id_car_serie": 15140, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64121, + "fields": { + "id_car_serie": 15140, + "name": "2.0 4Motion MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64122, + "fields": { + "id_car_serie": 15140, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64124, + "fields": { + "id_car_serie": 15140, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64125, + "fields": { + "id_car_serie": 15140, + "name": "2.0 TDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64126, + "fields": { + "id_car_serie": 15140, + "name": "2.3 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64127, + "fields": { + "id_car_serie": 15140, + "name": "2.3 4Motion MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64128, + "fields": { + "id_car_serie": 15140, + "name": "2.3 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64129, + "fields": { + "id_car_serie": 15140, + "name": "2.5 TDI 4Motion AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64130, + "fields": { + "id_car_serie": 15140, + "name": "2.5 TDI AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64131, + "fields": { + "id_car_serie": 15140, + "name": "2.5 TDI AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64132, + "fields": { + "id_car_serie": 15140, + "name": "2.5 TDI 4Motion AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64133, + "fields": { + "id_car_serie": 15140, + "name": "2.5 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64134, + "fields": { + "id_car_serie": 15140, + "name": "2.5 TDI 4motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64135, + "fields": { + "id_car_serie": 15140, + "name": "2.5 TDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64136, + "fields": { + "id_car_serie": 15140, + "name": "2.5 TDI 4motion MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64137, + "fields": { + "id_car_serie": 15140, + "name": "2.8 4Motion AT (193 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64138, + "fields": { + "id_car_serie": 15140, + "name": "2.8 4Motion MT (193 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64139, + "fields": { + "id_car_serie": 15140, + "name": "4.0 4Motion AT (275 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64140, + "fields": { + "id_car_serie": 15140, + "name": "4.0 4Motion MT (275 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64145, + "fields": { + "id_car_serie": 14863, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64146, + "fields": { + "id_car_serie": 14863, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64147, + "fields": { + "id_car_serie": 14863, + "name": "2.0 TD MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64148, + "fields": { + "id_car_serie": 14863, + "name": "2.2 T AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64152, + "fields": { + "id_car_serie": 14863, + "name": "2.2 T quattro MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64153, + "fields": { + "id_car_serie": 14863, + "name": "2.2 T MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64157, + "fields": { + "id_car_serie": 14863, + "name": "2.3 quattro MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64162, + "fields": { + "id_car_serie": 14863, + "name": "2.4 D MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64163, + "fields": { + "id_car_serie": 14863, + "name": "2.5 TDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64181, + "fields": { + "id_car_serie": 14933, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64182, + "fields": { + "id_car_serie": 14933, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64183, + "fields": { + "id_car_serie": 14933, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64184, + "fields": { + "id_car_serie": 14933, + "name": "2.7 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64185, + "fields": { + "id_car_serie": 14939, + "name": "2.4 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64186, + "fields": { + "id_car_serie": 14939, + "name": "2.4 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64187, + "fields": { + "id_car_serie": 14939, + "name": "3.5 AT (281 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64188, + "fields": { + "id_car_serie": 14960, + "name": "3.5 AT (249 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64189, + "fields": { + "id_car_serie": 14960, + "name": "3.5 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64194, + "fields": { + "id_car_serie": 14968, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64196, + "fields": { + "id_car_serie": 14968, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64197, + "fields": { + "id_car_serie": 14968, + "name": "1.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64199, + "fields": { + "id_car_serie": 14968, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64200, + "fields": { + "id_car_serie": 14968, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64202, + "fields": { + "id_car_serie": 14978, + "name": "3.8 AT (290 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64205, + "fields": { + "id_car_serie": 14988, + "name": "2.0 AT (134 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64206, + "fields": { + "id_car_serie": 14988, + "name": "2.0 MT (134 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64207, + "fields": { + "id_car_serie": 14988, + "name": "2.5 AT (166 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64208, + "fields": { + "id_car_serie": 14988, + "name": "2.5 MT (166 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64210, + "fields": { + "id_car_serie": 14989, + "name": "1.0 MT (62 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64211, + "fields": { + "id_car_serie": 14989, + "name": "1.1 AT (65 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64212, + "fields": { + "id_car_serie": 14989, + "name": "1.1 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64214, + "fields": { + "id_car_serie": 14989, + "name": "1.1 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64216, + "fields": { + "id_car_serie": 14998, + "name": "4.2 AT (400 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64219, + "fields": { + "id_car_serie": 15005, + "name": "1.3 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64222, + "fields": { + "id_car_serie": 15005, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64223, + "fields": { + "id_car_serie": 15005, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64224, + "fields": { + "id_car_serie": 15005, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64225, + "fields": { + "id_car_serie": 15005, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64226, + "fields": { + "id_car_serie": 15005, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64227, + "fields": { + "id_car_serie": 15005, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64228, + "fields": { + "id_car_serie": 15005, + "name": "2.0 DiTD MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64231, + "fields": { + "id_car_serie": 15007, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64232, + "fields": { + "id_car_serie": 15007, + "name": "2.0 AT (146 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64233, + "fields": { + "id_car_serie": 15007, + "name": "2.0 MT (146 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64234, + "fields": { + "id_car_serie": 15007, + "name": "2.0 MZR-CD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64235, + "fields": { + "id_car_serie": 15007, + "name": "2.0 MZR-CD MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64236, + "fields": { + "id_car_serie": 15007, + "name": "2.3 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64237, + "fields": { + "id_car_serie": 15007, + "name": "2.3 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64249, + "fields": { + "id_car_serie": 15056, + "name": "1.0 Twinport MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64250, + "fields": { + "id_car_serie": 15056, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64251, + "fields": { + "id_car_serie": 15056, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64279, + "fields": { + "id_car_serie": 15085, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64280, + "fields": { + "id_car_serie": 15085, + "name": "2.0 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64281, + "fields": { + "id_car_serie": 15085, + "name": "2.0 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64282, + "fields": { + "id_car_serie": 15085, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64283, + "fields": { + "id_car_serie": 15085, + "name": "2.0 MT (173 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64284, + "fields": { + "id_car_serie": 15085, + "name": "3.0 AT (235 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64286, + "fields": { + "id_car_serie": 14861, + "name": "1.2 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64287, + "fields": { + "id_car_serie": 14861, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64288, + "fields": { + "id_car_serie": 14861, + "name": "1.4 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64289, + "fields": { + "id_car_serie": 14861, + "name": "1.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64290, + "fields": { + "id_car_serie": 14861, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64295, + "fields": { + "id_car_serie": 14861, + "name": "1.7 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64296, + "fields": { + "id_car_serie": 14861, + "name": "1.7 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64297, + "fields": { + "id_car_serie": 14861, + "name": "1.7 MT (118 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64298, + "fields": { + "id_car_serie": 14861, + "name": "1.7 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64299, + "fields": { + "id_car_serie": 14861, + "name": "1.8 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64300, + "fields": { + "id_car_serie": 14886, + "name": "5.2 FSI quattro AT (450 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64301, + "fields": { + "id_car_serie": 14876, + "name": "2.8 FSI multitronic (210 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64302, + "fields": { + "id_car_serie": 14876, + "name": "3.0 L TDI tiptronic quattro (233 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64306, + "fields": { + "id_car_serie": 14876, + "name": "4.2 FSI tiptronic quattro (350 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64307, + "fields": { + "id_car_serie": 14876, + "name": "6.0 W12 tiptronic quattro (450 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64311, + "fields": { + "id_car_serie": 15014, + "name": "2.3 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64312, + "fields": { + "id_car_serie": 15014, + "name": "2.3 AT 4WD (159 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64314, + "fields": { + "id_car_serie": 15014, + "name": "3.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64315, + "fields": { + "id_car_serie": 15105, + "name": "1.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64318, + "fields": { + "id_car_serie": 15105, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64319, + "fields": { + "id_car_serie": 15105, + "name": "1.5 dCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64320, + "fields": { + "id_car_serie": 15105, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64321, + "fields": { + "id_car_serie": 15105, + "name": "1.6 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64322, + "fields": { + "id_car_serie": 15105, + "name": "2.0 CVT (138 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64323, + "fields": { + "id_car_serie": 15105, + "name": "2.0 dCi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64325, + "fields": { + "id_car_serie": 15166, + "name": "1.5 dCi MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64326, + "fields": { + "id_car_serie": 15166, + "name": "1.6 SCe MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 64333, + "fields": { + "id_car_serie": 14862, + "name": "1.7 MT (118 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64334, + "fields": { + "id_car_serie": 14862, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64339, + "fields": { + "id_car_serie": 14864, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64340, + "fields": { + "id_car_serie": 14864, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64341, + "fields": { + "id_car_serie": 14864, + "name": "2.0 TD MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64342, + "fields": { + "id_car_serie": 14864, + "name": "2.2 T AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64345, + "fields": { + "id_car_serie": 14864, + "name": "2.2 T MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64346, + "fields": { + "id_car_serie": 14864, + "name": "2.2 T quattro MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64349, + "fields": { + "id_car_serie": 14864, + "name": "2.3 quattro MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64353, + "fields": { + "id_car_serie": 14864, + "name": "2.4 D MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64354, + "fields": { + "id_car_serie": 14864, + "name": "2.5 TDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64355, + "fields": { + "id_car_serie": 14865, + "name": "1.2 TFSI S-tronic (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64356, + "fields": { + "id_car_serie": 14865, + "name": "1.2 TFSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64357, + "fields": { + "id_car_serie": 14865, + "name": "1.4 TFSI S-tronic (125 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64358, + "fields": { + "id_car_serie": 14865, + "name": "1.4 TFSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64359, + "fields": { + "id_car_serie": 14865, + "name": "1.6 S-tronic (102 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64361, + "fields": { + "id_car_serie": 14865, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64362, + "fields": { + "id_car_serie": 14865, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64363, + "fields": { + "id_car_serie": 14865, + "name": "1.6 TDI 102g MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64364, + "fields": { + "id_car_serie": 14865, + "name": "1.8 TFSI S-tronic (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64365, + "fields": { + "id_car_serie": 14865, + "name": "1.8 TFSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64368, + "fields": { + "id_car_serie": 14865, + "name": "1.9 TDI S-tronic (105 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64369, + "fields": { + "id_car_serie": 14865, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64371, + "fields": { + "id_car_serie": 14865, + "name": "2.0 TFSI S-tronic (200 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64372, + "fields": { + "id_car_serie": 14865, + "name": "2.0 TFSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64373, + "fields": { + "id_car_serie": 14865, + "name": "2.0 TFSI S-tronic Quattro (200 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64383, + "fields": { + "id_car_serie": 14866, + "name": "1.4 TFSI S-tronic (125 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64384, + "fields": { + "id_car_serie": 14866, + "name": "1.4 TFSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64385, + "fields": { + "id_car_serie": 14866, + "name": "1.6 S-tronic (102 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64387, + "fields": { + "id_car_serie": 14866, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64388, + "fields": { + "id_car_serie": 14866, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64390, + "fields": { + "id_car_serie": 14866, + "name": "1.8 TFSI S-tronic (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64391, + "fields": { + "id_car_serie": 14866, + "name": "1.8 TFSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64392, + "fields": { + "id_car_serie": 14866, + "name": "1.2 TFSI S-tronic (105 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64393, + "fields": { + "id_car_serie": 14866, + "name": "1.2 TFSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64395, + "fields": { + "id_car_serie": 14866, + "name": "2.0 TFSI S-tronic (200 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64396, + "fields": { + "id_car_serie": 14866, + "name": "2.0 TFSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64397, + "fields": { + "id_car_serie": 14866, + "name": "2.0 TFSI S-tronic Quattro (200 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64398, + "fields": { + "id_car_serie": 14866, + "name": "2.0 TDI S-tronic (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64400, + "fields": { + "id_car_serie": 14866, + "name": "2.0 TDI S-tronic (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64401, + "fields": { + "id_car_serie": 14866, + "name": "2.0 TDI MT Quattro (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64402, + "fields": { + "id_car_serie": 14866, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64403, + "fields": { + "id_car_serie": 14866, + "name": "2.0 TDI MT Quattro (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64404, + "fields": { + "id_car_serie": 14866, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64406, + "fields": { + "id_car_serie": 14866, + "name": "3.2 S-tronic Quattro (250 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64409, + "fields": { + "id_car_serie": 14867, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64410, + "fields": { + "id_car_serie": 14867, + "name": "1.8 TFSI S-tronic (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64411, + "fields": { + "id_car_serie": 14867, + "name": "1.8 TFSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64412, + "fields": { + "id_car_serie": 14867, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64413, + "fields": { + "id_car_serie": 14867, + "name": "2.0 TFSI S-tronic (200 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64414, + "fields": { + "id_car_serie": 14867, + "name": "2.0 TFSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64415, + "fields": { + "id_car_serie": 14867, + "name": "2.0 TDI S-tronic (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64416, + "fields": { + "id_car_serie": 14867, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64417, + "fields": { + "id_car_serie": 14868, + "name": "1.4 TFSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64419, + "fields": { + "id_car_serie": 14868, + "name": "1.6 Tiptronic (102 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64420, + "fields": { + "id_car_serie": 14868, + "name": "1.6 FSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64421, + "fields": { + "id_car_serie": 14868, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64423, + "fields": { + "id_car_serie": 14868, + "name": "2.0 FSI Tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64424, + "fields": { + "id_car_serie": 14868, + "name": "1.8 TFSI S-tronic (160 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64425, + "fields": { + "id_car_serie": 14868, + "name": "1.8 TFSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64426, + "fields": { + "id_car_serie": 14868, + "name": "1.9 TDI Dpf MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64427, + "fields": { + "id_car_serie": 14868, + "name": "2.0 FSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64428, + "fields": { + "id_car_serie": 14868, + "name": "2.0 TFSI S-tronic (200 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64430, + "fields": { + "id_car_serie": 14868, + "name": "2.0 TFSI MT Quattro (200 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64433, + "fields": { + "id_car_serie": 14868, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64435, + "fields": { + "id_car_serie": 14868, + "name": "2.0 TDI Dpf MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64436, + "fields": { + "id_car_serie": 14868, + "name": "2.0 TFSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64440, + "fields": { + "id_car_serie": 14868, + "name": "3.2 MT Quattro (250 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64443, + "fields": { + "id_car_serie": 14869, + "name": "1.4 TFSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64444, + "fields": { + "id_car_serie": 14869, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64445, + "fields": { + "id_car_serie": 14869, + "name": "1.6 FSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64448, + "fields": { + "id_car_serie": 14869, + "name": "1.8 TFSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64451, + "fields": { + "id_car_serie": 14869, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64452, + "fields": { + "id_car_serie": 14869, + "name": "1.9 TDIe MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64453, + "fields": { + "id_car_serie": 14869, + "name": "2.0 FSI S-tronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64454, + "fields": { + "id_car_serie": 14869, + "name": "2.0 TFSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64456, + "fields": { + "id_car_serie": 14869, + "name": "2.0 FSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64457, + "fields": { + "id_car_serie": 14869, + "name": "2.0 TFSI MT Quattro (200 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64459, + "fields": { + "id_car_serie": 14869, + "name": "2.0 TDI MT Quattro (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64460, + "fields": { + "id_car_serie": 14869, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64461, + "fields": { + "id_car_serie": 14869, + "name": "2.0 TDI Dpf MT Quattro (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64462, + "fields": { + "id_car_serie": 14869, + "name": "2.0 TDI Dpf MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64467, + "fields": { + "id_car_serie": 14869, + "name": "3.2 MT Quattro (250 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64469, + "fields": { + "id_car_serie": 14871, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64470, + "fields": { + "id_car_serie": 14871, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64471, + "fields": { + "id_car_serie": 14871, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64474, + "fields": { + "id_car_serie": 14871, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64479, + "fields": { + "id_car_serie": 14871, + "name": "1.9 TDI Tiptronic (100 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64480, + "fields": { + "id_car_serie": 14871, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64481, + "fields": { + "id_car_serie": 14871, + "name": "1.9 TDI Tiptronic (130 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64482, + "fields": { + "id_car_serie": 14871, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64483, + "fields": { + "id_car_serie": 14871, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64484, + "fields": { + "id_car_serie": 14871, + "name": "1.9 TDI MT Quattro (130 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64485, + "fields": { + "id_car_serie": 14871, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64488, + "fields": { + "id_car_serie": 14872, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64489, + "fields": { + "id_car_serie": 14872, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64490, + "fields": { + "id_car_serie": 14872, + "name": "1.8 AT quattro (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64491, + "fields": { + "id_car_serie": 14872, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64492, + "fields": { + "id_car_serie": 14872, + "name": "1.8 T tiptronic quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64493, + "fields": { + "id_car_serie": 14872, + "name": "1.8 T tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64494, + "fields": { + "id_car_serie": 14872, + "name": "1.8 T AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64495, + "fields": { + "id_car_serie": 14872, + "name": "1.8 T AT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64496, + "fields": { + "id_car_serie": 14872, + "name": "1.8 MT quattro (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64497, + "fields": { + "id_car_serie": 14872, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64498, + "fields": { + "id_car_serie": 14872, + "name": "1.8 T MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64499, + "fields": { + "id_car_serie": 14872, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64500, + "fields": { + "id_car_serie": 14872, + "name": "1.8 T MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64501, + "fields": { + "id_car_serie": 14872, + "name": "1.8 T MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64502, + "fields": { + "id_car_serie": 14872, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64505, + "fields": { + "id_car_serie": 14872, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64506, + "fields": { + "id_car_serie": 14872, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64507, + "fields": { + "id_car_serie": 14872, + "name": "1.9 TDI MT quattro (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64508, + "fields": { + "id_car_serie": 14872, + "name": "1.9 TDI MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64509, + "fields": { + "id_car_serie": 14872, + "name": "1.9 TDI MT quattro (116 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64511, + "fields": { + "id_car_serie": 14872, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64512, + "fields": { + "id_car_serie": 14872, + "name": "2.4 tiptronic (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64513, + "fields": { + "id_car_serie": 14872, + "name": "2.4 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64514, + "fields": { + "id_car_serie": 14872, + "name": "2.4 MT quattro (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64515, + "fields": { + "id_car_serie": 14872, + "name": "2.5 TDI tiptronic quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64516, + "fields": { + "id_car_serie": 14872, + "name": "2.5 TDI tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64517, + "fields": { + "id_car_serie": 14872, + "name": "2.5 TDI MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64518, + "fields": { + "id_car_serie": 14872, + "name": "2.5 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64523, + "fields": { + "id_car_serie": 14872, + "name": "2.8 AT quattro (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64524, + "fields": { + "id_car_serie": 14872, + "name": "2.8 AT (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64525, + "fields": { + "id_car_serie": 14872, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64526, + "fields": { + "id_car_serie": 14872, + "name": "2.8 MT quattro (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64527, + "fields": { + "id_car_serie": 14873, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64528, + "fields": { + "id_car_serie": 14873, + "name": "1.8 AT quattro (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64529, + "fields": { + "id_car_serie": 14873, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64530, + "fields": { + "id_car_serie": 14873, + "name": "1.8 T tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64531, + "fields": { + "id_car_serie": 14873, + "name": "1.8 T tiptronic quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64532, + "fields": { + "id_car_serie": 14873, + "name": "1.8 T AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64533, + "fields": { + "id_car_serie": 14873, + "name": "1.8 T AT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64534, + "fields": { + "id_car_serie": 14873, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64535, + "fields": { + "id_car_serie": 14873, + "name": "1.8 MT quattro (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64536, + "fields": { + "id_car_serie": 14873, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64537, + "fields": { + "id_car_serie": 14873, + "name": "1.8 T MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64538, + "fields": { + "id_car_serie": 14873, + "name": "1.8 T MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64539, + "fields": { + "id_car_serie": 14873, + "name": "1.8 T MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64540, + "fields": { + "id_car_serie": 14873, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64543, + "fields": { + "id_car_serie": 14873, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64544, + "fields": { + "id_car_serie": 14873, + "name": "1.9 TDI MT quattro (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64545, + "fields": { + "id_car_serie": 14873, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64546, + "fields": { + "id_car_serie": 14873, + "name": "1.9 TDI MT quattro (116 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64547, + "fields": { + "id_car_serie": 14873, + "name": "1.9 TDI MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64549, + "fields": { + "id_car_serie": 14873, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64550, + "fields": { + "id_car_serie": 14873, + "name": "2.4 tiptronic (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64551, + "fields": { + "id_car_serie": 14873, + "name": "2.4 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64552, + "fields": { + "id_car_serie": 14873, + "name": "2.4 MT quattro (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64553, + "fields": { + "id_car_serie": 14873, + "name": "2.5 TDI tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64554, + "fields": { + "id_car_serie": 14873, + "name": "2.5 TDI tiptronic quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64555, + "fields": { + "id_car_serie": 14873, + "name": "2.5 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64556, + "fields": { + "id_car_serie": 14873, + "name": "2.5 TDI MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64560, + "fields": { + "id_car_serie": 14873, + "name": "2.8 tiptronic quattro (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64561, + "fields": { + "id_car_serie": 14873, + "name": "2.8 tiptronic (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64562, + "fields": { + "id_car_serie": 14873, + "name": "2.8 MT quattro (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64563, + "fields": { + "id_car_serie": 14873, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64564, + "fields": { + "id_car_serie": 14874, + "name": "2.0 TDI multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64565, + "fields": { + "id_car_serie": 14874, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64566, + "fields": { + "id_car_serie": 14874, + "name": "2.0 TDI multitronic (136 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64567, + "fields": { + "id_car_serie": 14874, + "name": "2.0 TFSI multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64568, + "fields": { + "id_car_serie": 14874, + "name": "2.0 TDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64569, + "fields": { + "id_car_serie": 14874, + "name": "2.0 TFSI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64570, + "fields": { + "id_car_serie": 14874, + "name": "2.7 TDI multitronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64572, + "fields": { + "id_car_serie": 14874, + "name": "2.7 TDI tiptronic quattro (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64573, + "fields": { + "id_car_serie": 14874, + "name": "2.7 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64574, + "fields": { + "id_car_serie": 14874, + "name": "2.8 FSI tiptronic quattro (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64575, + "fields": { + "id_car_serie": 14874, + "name": "2.8 FSI multitronic (220 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64576, + "fields": { + "id_car_serie": 14874, + "name": "2.8 FSI multitronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64577, + "fields": { + "id_car_serie": 14874, + "name": "2.8 FSI tiptronic quattro (220 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64578, + "fields": { + "id_car_serie": 14874, + "name": "2.8 FSI MT quattro (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64579, + "fields": { + "id_car_serie": 14874, + "name": "2.8 FSI MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64580, + "fields": { + "id_car_serie": 14874, + "name": "3.0 TFSI tiptronic quattro (290 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64581, + "fields": { + "id_car_serie": 14874, + "name": "3.0 TDI tiptronic quattro (239 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64582, + "fields": { + "id_car_serie": 14874, + "name": "3.0 TDI MT quattro (239 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64584, + "fields": { + "id_car_serie": 14874, + "name": "4.2 FSI tiptronic quattro (350 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64585, + "fields": { + "id_car_serie": 14875, + "name": "2.0 TDI multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64586, + "fields": { + "id_car_serie": 14875, + "name": "2.0 TFSI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64587, + "fields": { + "id_car_serie": 14875, + "name": "2.0 TDI multitronic (136 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64588, + "fields": { + "id_car_serie": 14875, + "name": "2.0 TFSI multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64589, + "fields": { + "id_car_serie": 14875, + "name": "2.0 TDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64590, + "fields": { + "id_car_serie": 14875, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64591, + "fields": { + "id_car_serie": 14875, + "name": "2.7 TDI tiptronic quattro (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64592, + "fields": { + "id_car_serie": 14875, + "name": "2.7 TDI multitronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64593, + "fields": { + "id_car_serie": 14875, + "name": "2.7 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64594, + "fields": { + "id_car_serie": 14875, + "name": "2.8 FSI multitronic (220 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64595, + "fields": { + "id_car_serie": 14875, + "name": "2.8 FSI multitronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64596, + "fields": { + "id_car_serie": 14875, + "name": "2.8 FSI tiptronic quattro (220 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64597, + "fields": { + "id_car_serie": 14875, + "name": "2.8 FSI MT quattro (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64598, + "fields": { + "id_car_serie": 14875, + "name": "2.8 FSI MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64599, + "fields": { + "id_car_serie": 14875, + "name": "3.0 TFSI tiptronic quattro (290 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64601, + "fields": { + "id_car_serie": 14875, + "name": "4.2 FSI MT quattro (350 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64602, + "fields": { + "id_car_serie": 14875, + "name": "4.2 FSI tiptronic quattro (350 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64603, + "fields": { + "id_car_serie": 14877, + "name": "3.0 TDI tiptronic quattro (233 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64606, + "fields": { + "id_car_serie": 14877, + "name": "3.7 FSI tiptronic quattro (280 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64609, + "fields": { + "id_car_serie": 14877, + "name": "6.0 W12 tiptronic quattro (450 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64629, + "fields": { + "id_car_serie": 14879, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64630, + "fields": { + "id_car_serie": 14879, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64631, + "fields": { + "id_car_serie": 14879, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64632, + "fields": { + "id_car_serie": 14879, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64633, + "fields": { + "id_car_serie": 14879, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64637, + "fields": { + "id_car_serie": 14879, + "name": "2.3 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64645, + "fields": { + "id_car_serie": 14879, + "name": "2.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64648, + "fields": { + "id_car_serie": 14879, + "name": "2.8 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64655, + "fields": { + "id_car_serie": 14880, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64658, + "fields": { + "id_car_serie": 14880, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64660, + "fields": { + "id_car_serie": 14880, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64664, + "fields": { + "id_car_serie": 14880, + "name": "2.2 GT MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64665, + "fields": { + "id_car_serie": 14880, + "name": "2.2 quattro MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64667, + "fields": { + "id_car_serie": 14880, + "name": "2.2 GT MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64678, + "fields": { + "id_car_serie": 14884, + "name": "5.2 FSI V10 quattro AT (435 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64679, + "fields": { + "id_car_serie": 14885, + "name": "5.2 FSI quattro AT (435 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64680, + "fields": { + "id_car_serie": 14887, + "name": "4.2 V8 quattro AT (360 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64681, + "fields": { + "id_car_serie": 14887, + "name": "4.2 V8 quattro MT (360 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 64693, + "fields": { + "id_car_serie": 14889, + "name": "2.0 TFSI quattro MT (272 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65216, + "fields": { + "id_car_serie": 14925, + "name": "3.8 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65218, + "fields": { + "id_car_serie": 14925, + "name": "3.8 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65219, + "fields": { + "id_car_serie": 14925, + "name": "5.7 AT (310 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65220, + "fields": { + "id_car_serie": 14925, + "name": "5.7 AT (320 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65221, + "fields": { + "id_car_serie": 14925, + "name": "5.7 MT (310 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65222, + "fields": { + "id_car_serie": 14925, + "name": "5.7 MT (305 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65225, + "fields": { + "id_car_serie": 14926, + "name": "3.1 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65226, + "fields": { + "id_car_serie": 14926, + "name": "3.1 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65227, + "fields": { + "id_car_serie": 14926, + "name": "5.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65228, + "fields": { + "id_car_serie": 14926, + "name": "5.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65229, + "fields": { + "id_car_serie": 14926, + "name": "5.7 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65234, + "fields": { + "id_car_serie": 14928, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65235, + "fields": { + "id_car_serie": 14928, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65236, + "fields": { + "id_car_serie": 14928, + "name": "2.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65249, + "fields": { + "id_car_serie": 14934, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65250, + "fields": { + "id_car_serie": 14934, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65251, + "fields": { + "id_car_serie": 14934, + "name": "2.7 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65252, + "fields": { + "id_car_serie": 14935, + "name": "2.4 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65253, + "fields": { + "id_car_serie": 14935, + "name": "2.4 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65254, + "fields": { + "id_car_serie": 14935, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65255, + "fields": { + "id_car_serie": 14935, + "name": "3.0 MT (203 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65261, + "fields": { + "id_car_serie": 14938, + "name": "2.4 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65262, + "fields": { + "id_car_serie": 14938, + "name": "2.4 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65263, + "fields": { + "id_car_serie": 14938, + "name": "Grand 2.5d AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65264, + "fields": { + "id_car_serie": 14938, + "name": "2.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65265, + "fields": { + "id_car_serie": 14938, + "name": "3.3 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65267, + "fields": { + "id_car_serie": 14938, + "name": "3.8 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65271, + "fields": { + "id_car_serie": 14940, + "name": "2.2 i-DTEC AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65272, + "fields": { + "id_car_serie": 14940, + "name": "2.2 i-DTEC MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65274, + "fields": { + "id_car_serie": 14940, + "name": "Type S 2.4 AT (201 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65277, + "fields": { + "id_car_serie": 14940, + "name": "Type S 2.4 MT (201 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65293, + "fields": { + "id_car_serie": 14942, + "name": "2.4 AT (166 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65295, + "fields": { + "id_car_serie": 14942, + "name": "2.4 MT (166 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65303, + "fields": { + "id_car_serie": 14944, + "name": "2.4 AT (166 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65305, + "fields": { + "id_car_serie": 14945, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65307, + "fields": { + "id_car_serie": 14945, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65312, + "fields": { + "id_car_serie": 14945, + "name": "2.4 AT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65314, + "fields": { + "id_car_serie": 14946, + "name": "2.0 4AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65315, + "fields": { + "id_car_serie": 14946, + "name": "2.0 4AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65316, + "fields": { + "id_car_serie": 14946, + "name": "2.0 5MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65317, + "fields": { + "id_car_serie": 14946, + "name": "2.0 5MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65321, + "fields": { + "id_car_serie": 14946, + "name": "2.4 5AT 4WD (162 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65324, + "fields": { + "id_car_serie": 14947, + "name": "2.0 AT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65325, + "fields": { + "id_car_serie": 14947, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65326, + "fields": { + "id_car_serie": 14947, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65327, + "fields": { + "id_car_serie": 14947, + "name": "2.0 MT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65330, + "fields": { + "id_car_serie": 14949, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65331, + "fields": { + "id_car_serie": 14950, + "name": "3.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65332, + "fields": { + "id_car_serie": 14951, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65333, + "fields": { + "id_car_serie": 14951, + "name": "3.2 AT (260 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65334, + "fields": { + "id_car_serie": 14952, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65335, + "fields": { + "id_car_serie": 14952, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65336, + "fields": { + "id_car_serie": 14952, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65337, + "fields": { + "id_car_serie": 14952, + "name": "2.5 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65342, + "fields": { + "id_car_serie": 14953, + "name": "2.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65345, + "fields": { + "id_car_serie": 14956, + "name": "1.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65349, + "fields": { + "id_car_serie": 14957, + "name": "1.2 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65352, + "fields": { + "id_car_serie": 14957, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65353, + "fields": { + "id_car_serie": 14957, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65354, + "fields": { + "id_car_serie": 14958, + "name": "3.7 AT (295 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65355, + "fields": { + "id_car_serie": 14959, + "name": "0.7 AT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 65356, + "fields": { + "id_car_serie": 14959, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 65359, + "fields": { + "id_car_serie": 14961, + "name": "3.5 AT (244 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65360, + "fields": { + "id_car_serie": 14961, + "name": "3.5 AT 4WD (244 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65361, + "fields": { + "id_car_serie": 14962, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65362, + "fields": { + "id_car_serie": 14962, + "name": "2.0 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65363, + "fields": { + "id_car_serie": 14962, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65364, + "fields": { + "id_car_serie": 14962, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65365, + "fields": { + "id_car_serie": 14962, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65366, + "fields": { + "id_car_serie": 14962, + "name": "2.0 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65367, + "fields": { + "id_car_serie": 14962, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65368, + "fields": { + "id_car_serie": 14962, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65369, + "fields": { + "id_car_serie": 14963, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65370, + "fields": { + "id_car_serie": 14963, + "name": "3.2 AT (225 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65376, + "fields": { + "id_car_serie": 14966, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 65379, + "fields": { + "id_car_serie": 14966, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 65383, + "fields": { + "id_car_serie": 14967, + "name": "1.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65385, + "fields": { + "id_car_serie": 14967, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65386, + "fields": { + "id_car_serie": 14967, + "name": "2.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65389, + "fields": { + "id_car_serie": 14969, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65390, + "fields": { + "id_car_serie": 14969, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65393, + "fields": { + "id_car_serie": 14969, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65394, + "fields": { + "id_car_serie": 14969, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65395, + "fields": { + "id_car_serie": 14969, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65397, + "fields": { + "id_car_serie": 14970, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65398, + "fields": { + "id_car_serie": 14970, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65399, + "fields": { + "id_car_serie": 14970, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65400, + "fields": { + "id_car_serie": 14970, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65401, + "fields": { + "id_car_serie": 14970, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65402, + "fields": { + "id_car_serie": 14970, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65403, + "fields": { + "id_car_serie": 14970, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65404, + "fields": { + "id_car_serie": 14970, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65405, + "fields": { + "id_car_serie": 14971, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65406, + "fields": { + "id_car_serie": 14971, + "name": "1.5 MT (104 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65407, + "fields": { + "id_car_serie": 14971, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65408, + "fields": { + "id_car_serie": 14972, + "name": "1.5 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65409, + "fields": { + "id_car_serie": 14972, + "name": "1.5 CRDi MT (104 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65410, + "fields": { + "id_car_serie": 14972, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65411, + "fields": { + "id_car_serie": 14972, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65414, + "fields": { + "id_car_serie": 14972, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65423, + "fields": { + "id_car_serie": 14975, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65424, + "fields": { + "id_car_serie": 14975, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65425, + "fields": { + "id_car_serie": 14975, + "name": "2.7 AT (167 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65427, + "fields": { + "id_car_serie": 14975, + "name": "2.7 MT (167 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65429, + "fields": { + "id_car_serie": 14976, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65433, + "fields": { + "id_car_serie": 14976, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65439, + "fields": { + "id_car_serie": 14976, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65442, + "fields": { + "id_car_serie": 14976, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65445, + "fields": { + "id_car_serie": 14976, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65446, + "fields": { + "id_car_serie": 14976, + "name": "2.0 CRDi MT (111 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65447, + "fields": { + "id_car_serie": 14977, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65449, + "fields": { + "id_car_serie": 14977, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65452, + "fields": { + "id_car_serie": 14977, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65453, + "fields": { + "id_car_serie": 14977, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65454, + "fields": { + "id_car_serie": 14977, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65455, + "fields": { + "id_car_serie": 14977, + "name": "2.0 CRDi MT (111 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65464, + "fields": { + "id_car_serie": 14981, + "name": "1.2 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 65465, + "fields": { + "id_car_serie": 14981, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 65466, + "fields": { + "id_car_serie": 14981, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 65467, + "fields": { + "id_car_serie": 14981, + "name": "1.4 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 65469, + "fields": { + "id_car_serie": 14982, + "name": "1.2 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65471, + "fields": { + "id_car_serie": 14982, + "name": "1.4 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65472, + "fields": { + "id_car_serie": 14982, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65473, + "fields": { + "id_car_serie": 14982, + "name": "1.4 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65474, + "fields": { + "id_car_serie": 14982, + "name": "1.6 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65475, + "fields": { + "id_car_serie": 14982, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65476, + "fields": { + "id_car_serie": 14982, + "name": "1.6 CRDi MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65478, + "fields": { + "id_car_serie": 14983, + "name": "1.2 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65480, + "fields": { + "id_car_serie": 14983, + "name": "1.4 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65481, + "fields": { + "id_car_serie": 14983, + "name": "1.4 CRDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65482, + "fields": { + "id_car_serie": 14983, + "name": "1.6 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65483, + "fields": { + "id_car_serie": 14983, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65484, + "fields": { + "id_car_serie": 14984, + "name": "1.4 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65486, + "fields": { + "id_car_serie": 14984, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65487, + "fields": { + "id_car_serie": 14984, + "name": "1.6 CRDi MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65488, + "fields": { + "id_car_serie": 14984, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65489, + "fields": { + "id_car_serie": 14984, + "name": "1.6 CRDi AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65490, + "fields": { + "id_car_serie": 14984, + "name": "1.6 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65491, + "fields": { + "id_car_serie": 14984, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65492, + "fields": { + "id_car_serie": 14984, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65493, + "fields": { + "id_car_serie": 14984, + "name": "2.0 CRDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65495, + "fields": { + "id_car_serie": 14985, + "name": "1.6 CRDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65502, + "fields": { + "id_car_serie": 14986, + "name": "2.2 CRDi AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65503, + "fields": { + "id_car_serie": 14986, + "name": "2.2 CRDi AT AWD (197 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65504, + "fields": { + "id_car_serie": 14986, + "name": "2.2 CRDi MT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65506, + "fields": { + "id_car_serie": 14986, + "name": "2.2 CRDi MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65507, + "fields": { + "id_car_serie": 14986, + "name": "2.2 CRDi MT AWD (197 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65508, + "fields": { + "id_car_serie": 14986, + "name": "2.4 AT AWD (174 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65509, + "fields": { + "id_car_serie": 14986, + "name": "2.4 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65511, + "fields": { + "id_car_serie": 14986, + "name": "2.4 MT (174 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65512, + "fields": { + "id_car_serie": 14986, + "name": "2.7 LPI AT (162 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65516, + "fields": { + "id_car_serie": 14986, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65517, + "fields": { + "id_car_serie": 14987, + "name": "2.4 AT LWB (135 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65521, + "fields": { + "id_car_serie": 14987, + "name": "2.4 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65526, + "fields": { + "id_car_serie": 14987, + "name": "2.5 CRDi AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65529, + "fields": { + "id_car_serie": 14987, + "name": "2.5 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65530, + "fields": { + "id_car_serie": 14987, + "name": "2.5 CRDi AT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65531, + "fields": { + "id_car_serie": 14987, + "name": "2.5 CRDi MT LWB (101 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65533, + "fields": { + "id_car_serie": 14987, + "name": "2.5 CRDi MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65535, + "fields": { + "id_car_serie": 14987, + "name": "2.5 CRDi MT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65536, + "fields": { + "id_car_serie": 14990, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65537, + "fields": { + "id_car_serie": 14990, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65538, + "fields": { + "id_car_serie": 14990, + "name": "1.8 AT (111 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65539, + "fields": { + "id_car_serie": 14990, + "name": "1.8 MT (111 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65540, + "fields": { + "id_car_serie": 14991, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65541, + "fields": { + "id_car_serie": 14991, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65542, + "fields": { + "id_car_serie": 14991, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65543, + "fields": { + "id_car_serie": 14991, + "name": "1.6 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65544, + "fields": { + "id_car_serie": 14991, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65545, + "fields": { + "id_car_serie": 14991, + "name": "1.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65546, + "fields": { + "id_car_serie": 14991, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65547, + "fields": { + "id_car_serie": 14992, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65548, + "fields": { + "id_car_serie": 14992, + "name": "1.6 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65549, + "fields": { + "id_car_serie": 14992, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65550, + "fields": { + "id_car_serie": 14992, + "name": "1.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65551, + "fields": { + "id_car_serie": 14992, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65552, + "fields": { + "id_car_serie": 14994, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65553, + "fields": { + "id_car_serie": 14994, + "name": "2.0 AT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65554, + "fields": { + "id_car_serie": 14994, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65555, + "fields": { + "id_car_serie": 14994, + "name": "2.0 MT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65556, + "fields": { + "id_car_serie": 14994, + "name": "2.0 CRDi AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65557, + "fields": { + "id_car_serie": 14994, + "name": "2.0 CRDi AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65558, + "fields": { + "id_car_serie": 14994, + "name": "2.0 CRDi MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65559, + "fields": { + "id_car_serie": 14994, + "name": "2.0 CRDi MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65560, + "fields": { + "id_car_serie": 14994, + "name": "2.7 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65561, + "fields": { + "id_car_serie": 14996, + "name": "3.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65562, + "fields": { + "id_car_serie": 14996, + "name": "3.8 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65563, + "fields": { + "id_car_serie": 14996, + "name": "3.8 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65567, + "fields": { + "id_car_serie": 14999, + "name": "1.5 SkyActiv-G AT (111 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 65568, + "fields": { + "id_car_serie": 14999, + "name": "1.5 SkyActiv-G MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 65569, + "fields": { + "id_car_serie": 14999, + "name": "1.5 SkyActiv-G MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 65570, + "fields": { + "id_car_serie": 14999, + "name": "1.5 SkyActiv-G MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 65571, + "fields": { + "id_car_serie": 14999, + "name": "1.5 SkyActiv-D MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 65573, + "fields": { + "id_car_serie": 15000, + "name": "1.4 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65574, + "fields": { + "id_car_serie": 15000, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65575, + "fields": { + "id_car_serie": 15000, + "name": "1.4 MZ-CD AT (68 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65576, + "fields": { + "id_car_serie": 15000, + "name": "1.4 MZ-CD MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65577, + "fields": { + "id_car_serie": 15000, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65578, + "fields": { + "id_car_serie": 15001, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65579, + "fields": { + "id_car_serie": 15001, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65581, + "fields": { + "id_car_serie": 15001, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65582, + "fields": { + "id_car_serie": 15001, + "name": "2.0 MT Overdrive (157 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65583, + "fields": { + "id_car_serie": 15001, + "name": "2.2 CiTD MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65585, + "fields": { + "id_car_serie": 15001, + "name": "2.5 AT (169 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65586, + "fields": { + "id_car_serie": 15001, + "name": "2.5 MT Overdrive (169 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65587, + "fields": { + "id_car_serie": 15002, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65588, + "fields": { + "id_car_serie": 15002, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65589, + "fields": { + "id_car_serie": 15002, + "name": "1.6 CiTD MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65590, + "fields": { + "id_car_serie": 15002, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65591, + "fields": { + "id_car_serie": 15002, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65592, + "fields": { + "id_car_serie": 15002, + "name": "2.2 CiTD MT (185 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65593, + "fields": { + "id_car_serie": 15002, + "name": "2.5 AT (169 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65594, + "fields": { + "id_car_serie": 15002, + "name": "2.5 MT Overdrive (169 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65595, + "fields": { + "id_car_serie": 15003, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65596, + "fields": { + "id_car_serie": 15003, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65598, + "fields": { + "id_car_serie": 15003, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65599, + "fields": { + "id_car_serie": 15003, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65605, + "fields": { + "id_car_serie": 15006, + "name": "1.3 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65608, + "fields": { + "id_car_serie": 15006, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65609, + "fields": { + "id_car_serie": 15006, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65610, + "fields": { + "id_car_serie": 15006, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65611, + "fields": { + "id_car_serie": 15006, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65612, + "fields": { + "id_car_serie": 15006, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65613, + "fields": { + "id_car_serie": 15006, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65614, + "fields": { + "id_car_serie": 15006, + "name": "2.0 DiTD MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65617, + "fields": { + "id_car_serie": 15008, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65618, + "fields": { + "id_car_serie": 15008, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65619, + "fields": { + "id_car_serie": 15008, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65620, + "fields": { + "id_car_serie": 15008, + "name": "2.2 MZR-CD MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65621, + "fields": { + "id_car_serie": 15008, + "name": "2.2 MZR-CD MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65622, + "fields": { + "id_car_serie": 15008, + "name": "2.2 MZR-CD MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65623, + "fields": { + "id_car_serie": 15008, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65624, + "fields": { + "id_car_serie": 15008, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65627, + "fields": { + "id_car_serie": 15009, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65628, + "fields": { + "id_car_serie": 15009, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65629, + "fields": { + "id_car_serie": 15009, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65630, + "fields": { + "id_car_serie": 15009, + "name": "2.2 MZR-CD MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65631, + "fields": { + "id_car_serie": 15009, + "name": "2.2 MZR-CD MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65632, + "fields": { + "id_car_serie": 15009, + "name": "2.2 MZR-CD MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65633, + "fields": { + "id_car_serie": 15009, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65634, + "fields": { + "id_car_serie": 15009, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65635, + "fields": { + "id_car_serie": 15010, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65636, + "fields": { + "id_car_serie": 15010, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65637, + "fields": { + "id_car_serie": 15010, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65639, + "fields": { + "id_car_serie": 15010, + "name": "2.2 MZR-CD MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65640, + "fields": { + "id_car_serie": 15010, + "name": "2.2 MZR-CD MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65641, + "fields": { + "id_car_serie": 15010, + "name": "2.2 MZR-CD MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65643, + "fields": { + "id_car_serie": 15010, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65644, + "fields": { + "id_car_serie": 15011, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65645, + "fields": { + "id_car_serie": 15011, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65646, + "fields": { + "id_car_serie": 15011, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65647, + "fields": { + "id_car_serie": 15011, + "name": "2.0 MZR-CD MT (121 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65649, + "fields": { + "id_car_serie": 15011, + "name": "2.0 MZR-CD MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65650, + "fields": { + "id_car_serie": 15011, + "name": "2.3 AT (166 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65651, + "fields": { + "id_car_serie": 15011, + "name": "2.3 AT (158 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65653, + "fields": { + "id_car_serie": 15011, + "name": "2.3 MT (166 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65654, + "fields": { + "id_car_serie": 15011, + "name": "2.3 MT (158 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65664, + "fields": { + "id_car_serie": 15012, + "name": "2.3 T MT (260 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65665, + "fields": { + "id_car_serie": 15013, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65666, + "fields": { + "id_car_serie": 15013, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65667, + "fields": { + "id_car_serie": 15013, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65668, + "fields": { + "id_car_serie": 15013, + "name": "2.0 MZR-CD MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65669, + "fields": { + "id_car_serie": 15013, + "name": "2.3 AT 4WD (162 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65673, + "fields": { + "id_car_serie": 15013, + "name": "2.3 MT (166 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65676, + "fields": { + "id_car_serie": 15013, + "name": "3.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65677, + "fields": { + "id_car_serie": 15013, + "name": "3.0 MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65678, + "fields": { + "id_car_serie": 15015, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65680, + "fields": { + "id_car_serie": 15015, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65681, + "fields": { + "id_car_serie": 15015, + "name": "1.8 6MT (146 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65682, + "fields": { + "id_car_serie": 15016, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65683, + "fields": { + "id_car_serie": 15016, + "name": "2.0 AT 4WD (139 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65684, + "fields": { + "id_car_serie": 15016, + "name": "2.0 AT (151 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65685, + "fields": { + "id_car_serie": 15016, + "name": "2.3 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65722, + "fields": { + "id_car_serie": 15019, + "name": "1.4 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65723, + "fields": { + "id_car_serie": 15019, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65724, + "fields": { + "id_car_serie": 15019, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65725, + "fields": { + "id_car_serie": 15019, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65726, + "fields": { + "id_car_serie": 15019, + "name": "1.7 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65727, + "fields": { + "id_car_serie": 15019, + "name": "1.7 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65728, + "fields": { + "id_car_serie": 15019, + "name": "1.9 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65729, + "fields": { + "id_car_serie": 15019, + "name": "1.9 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65730, + "fields": { + "id_car_serie": 15019, + "name": "2.1 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65754, + "fields": { + "id_car_serie": 15021, + "name": "1.8 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65755, + "fields": { + "id_car_serie": 15021, + "name": "1.8 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65756, + "fields": { + "id_car_serie": 15021, + "name": "1.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65759, + "fields": { + "id_car_serie": 15021, + "name": "1.8 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65760, + "fields": { + "id_car_serie": 15021, + "name": "1.8 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65761, + "fields": { + "id_car_serie": 15021, + "name": "1.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65762, + "fields": { + "id_car_serie": 15021, + "name": "1.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65765, + "fields": { + "id_car_serie": 15021, + "name": "220 2.2d AT (150 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65768, + "fields": { + "id_car_serie": 15021, + "name": "2.5 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65769, + "fields": { + "id_car_serie": 15021, + "name": "2.5 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65772, + "fields": { + "id_car_serie": 15021, + "name": "2.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65773, + "fields": { + "id_car_serie": 15021, + "name": "2.7 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65774, + "fields": { + "id_car_serie": 15021, + "name": "2.7 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65775, + "fields": { + "id_car_serie": 15021, + "name": "3.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65776, + "fields": { + "id_car_serie": 15021, + "name": "3.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65777, + "fields": { + "id_car_serie": 15021, + "name": "3.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65779, + "fields": { + "id_car_serie": 15021, + "name": "3.0 MT (224 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65784, + "fields": { + "id_car_serie": 15021, + "name": "3.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65785, + "fields": { + "id_car_serie": 15021, + "name": "3.5 MT (272 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65817, + "fields": { + "id_car_serie": 15023, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65818, + "fields": { + "id_car_serie": 15023, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65819, + "fields": { + "id_car_serie": 15023, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65820, + "fields": { + "id_car_serie": 15023, + "name": "2.0 AT (192 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65821, + "fields": { + "id_car_serie": 15023, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65822, + "fields": { + "id_car_serie": 15023, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65823, + "fields": { + "id_car_serie": 15023, + "name": "2.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65825, + "fields": { + "id_car_serie": 15023, + "name": "2.2 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65826, + "fields": { + "id_car_serie": 15023, + "name": "2.2 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65827, + "fields": { + "id_car_serie": 15023, + "name": "2.2 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65828, + "fields": { + "id_car_serie": 15023, + "name": "2.2 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65829, + "fields": { + "id_car_serie": 15023, + "name": "2.2 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65830, + "fields": { + "id_car_serie": 15023, + "name": "2.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65831, + "fields": { + "id_car_serie": 15023, + "name": "2.2 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65832, + "fields": { + "id_car_serie": 15023, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65833, + "fields": { + "id_car_serie": 15023, + "name": "2.3 AT (197 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65834, + "fields": { + "id_car_serie": 15023, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65835, + "fields": { + "id_car_serie": 15023, + "name": "2.3 MT (197 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65836, + "fields": { + "id_car_serie": 15023, + "name": "2.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65837, + "fields": { + "id_car_serie": 15023, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65838, + "fields": { + "id_car_serie": 15023, + "name": "2.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65839, + "fields": { + "id_car_serie": 15023, + "name": "2.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65840, + "fields": { + "id_car_serie": 15023, + "name": "2.8 AT (197 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65841, + "fields": { + "id_car_serie": 15023, + "name": "2.8 MT (197 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65843, + "fields": { + "id_car_serie": 15024, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65844, + "fields": { + "id_car_serie": 15024, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65845, + "fields": { + "id_car_serie": 15024, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65846, + "fields": { + "id_car_serie": 15024, + "name": "2.0 AT (192 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65847, + "fields": { + "id_car_serie": 15024, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65848, + "fields": { + "id_car_serie": 15024, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65849, + "fields": { + "id_car_serie": 15024, + "name": "2.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65852, + "fields": { + "id_car_serie": 15024, + "name": "2.2 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65853, + "fields": { + "id_car_serie": 15024, + "name": "2.2 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65854, + "fields": { + "id_car_serie": 15024, + "name": "2.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65855, + "fields": { + "id_car_serie": 15024, + "name": "2.2 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65856, + "fields": { + "id_car_serie": 15024, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65857, + "fields": { + "id_car_serie": 15024, + "name": "2.3 AT (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65858, + "fields": { + "id_car_serie": 15024, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65859, + "fields": { + "id_car_serie": 15024, + "name": "2.3 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65860, + "fields": { + "id_car_serie": 15024, + "name": "2.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65861, + "fields": { + "id_car_serie": 15024, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65862, + "fields": { + "id_car_serie": 15024, + "name": "2.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65863, + "fields": { + "id_car_serie": 15024, + "name": "2.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65864, + "fields": { + "id_car_serie": 15024, + "name": "2.8 AT (197 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65865, + "fields": { + "id_car_serie": 15024, + "name": "2.8 MT (197 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65867, + "fields": { + "id_car_serie": 15025, + "name": "5.0 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65869, + "fields": { + "id_car_serie": 15025, + "name": "5.5 AT (500 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65934, + "fields": { + "id_car_serie": 15031, + "name": "1.8 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65948, + "fields": { + "id_car_serie": 15031, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65957, + "fields": { + "id_car_serie": 15031, + "name": "3.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65963, + "fields": { + "id_car_serie": 15031, + "name": "4.0 AT (260 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65964, + "fields": { + "id_car_serie": 15031, + "name": "4.0 AT (314 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65971, + "fields": { + "id_car_serie": 15032, + "name": "1.8 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65977, + "fields": { + "id_car_serie": 15032, + "name": "2.5 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65978, + "fields": { + "id_car_serie": 15032, + "name": "2.5 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 65991, + "fields": { + "id_car_serie": 15032, + "name": "3.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66000, + "fields": { + "id_car_serie": 15033, + "name": "1.8 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66001, + "fields": { + "id_car_serie": 15033, + "name": "1.8 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66002, + "fields": { + "id_car_serie": 15033, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66003, + "fields": { + "id_car_serie": 15033, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66006, + "fields": { + "id_car_serie": 15033, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66007, + "fields": { + "id_car_serie": 15033, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66008, + "fields": { + "id_car_serie": 15033, + "name": "2.6 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66009, + "fields": { + "id_car_serie": 15033, + "name": "2.6 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66010, + "fields": { + "id_car_serie": 15033, + "name": "2.7 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66011, + "fields": { + "id_car_serie": 15033, + "name": "2.7 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66014, + "fields": { + "id_car_serie": 15033, + "name": "2.8 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66018, + "fields": { + "id_car_serie": 15033, + "name": "3.2 AT (197 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66021, + "fields": { + "id_car_serie": 15034, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66022, + "fields": { + "id_car_serie": 15034, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66023, + "fields": { + "id_car_serie": 15034, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66024, + "fields": { + "id_car_serie": 15034, + "name": "2.0 AT (186 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66025, + "fields": { + "id_car_serie": 15034, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66026, + "fields": { + "id_car_serie": 15034, + "name": "2.0 MT (186 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66027, + "fields": { + "id_car_serie": 15034, + "name": "2.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66032, + "fields": { + "id_car_serie": 15034, + "name": "2.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66033, + "fields": { + "id_car_serie": 15034, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66034, + "fields": { + "id_car_serie": 15034, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66035, + "fields": { + "id_car_serie": 15034, + "name": "2.6 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66036, + "fields": { + "id_car_serie": 15034, + "name": "2.6 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66037, + "fields": { + "id_car_serie": 15034, + "name": "2.7 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66038, + "fields": { + "id_car_serie": 15034, + "name": "2.7 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66043, + "fields": { + "id_car_serie": 15034, + "name": "3.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66046, + "fields": { + "id_car_serie": 15034, + "name": "3.2 AT (197 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66086, + "fields": { + "id_car_serie": 15039, + "name": "2.8 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66117, + "fields": { + "id_car_serie": 15042, + "name": "3.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66136, + "fields": { + "id_car_serie": 15048, + "name": "0.7 AT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66137, + "fields": { + "id_car_serie": 15048, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66138, + "fields": { + "id_car_serie": 15048, + "name": "0.7 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66139, + "fields": { + "id_car_serie": 15048, + "name": "0.7 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66160, + "fields": { + "id_car_serie": 15051, + "name": "1.8 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66163, + "fields": { + "id_car_serie": 15051, + "name": "2.0 CVT (157 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66165, + "fields": { + "id_car_serie": 15052, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66166, + "fields": { + "id_car_serie": 15052, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66167, + "fields": { + "id_car_serie": 15052, + "name": "1.6 AT (117 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66168, + "fields": { + "id_car_serie": 15052, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66169, + "fields": { + "id_car_serie": 15052, + "name": "1.8 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66170, + "fields": { + "id_car_serie": 15052, + "name": "1.8 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66173, + "fields": { + "id_car_serie": 15052, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66175, + "fields": { + "id_car_serie": 15052, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66177, + "fields": { + "id_car_serie": 15052, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66179, + "fields": { + "id_car_serie": 15052, + "name": "2.4 MT (168 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66180, + "fields": { + "id_car_serie": 15053, + "name": "1.3 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66185, + "fields": { + "id_car_serie": 15053, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66188, + "fields": { + "id_car_serie": 15053, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66189, + "fields": { + "id_car_serie": 15053, + "name": "2.0 CVT (135 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66191, + "fields": { + "id_car_serie": 15053, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66192, + "fields": { + "id_car_serie": 15053, + "name": "2.4 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66194, + "fields": { + "id_car_serie": 15054, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66195, + "fields": { + "id_car_serie": 15054, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66196, + "fields": { + "id_car_serie": 15054, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66197, + "fields": { + "id_car_serie": 15054, + "name": "2.0 CVT (135 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66198, + "fields": { + "id_car_serie": 15054, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66206, + "fields": { + "id_car_serie": 15057, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66208, + "fields": { + "id_car_serie": 15057, + "name": "1.7 CDTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66211, + "fields": { + "id_car_serie": 15058, + "name": "1.0 Easytronic (60 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66212, + "fields": { + "id_car_serie": 15058, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66213, + "fields": { + "id_car_serie": 15058, + "name": "1.2 Easytronic (75 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66214, + "fields": { + "id_car_serie": 15058, + "name": "1.2 Easytronic (80 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66215, + "fields": { + "id_car_serie": 15058, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66216, + "fields": { + "id_car_serie": 15058, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66219, + "fields": { + "id_car_serie": 15058, + "name": "1.4 Easytronic (90 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66220, + "fields": { + "id_car_serie": 15058, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66221, + "fields": { + "id_car_serie": 15058, + "name": "1.7 CDTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66222, + "fields": { + "id_car_serie": 15058, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66223, + "fields": { + "id_car_serie": 15059, + "name": "1.0 Easytronic (60 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66224, + "fields": { + "id_car_serie": 15059, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66225, + "fields": { + "id_car_serie": 15059, + "name": "1.2 Easytronic (75 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66226, + "fields": { + "id_car_serie": 15059, + "name": "1.2 Easytronic (80 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66227, + "fields": { + "id_car_serie": 15059, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66228, + "fields": { + "id_car_serie": 15059, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66231, + "fields": { + "id_car_serie": 15059, + "name": "1.4 Easytronic (90 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66232, + "fields": { + "id_car_serie": 15059, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66233, + "fields": { + "id_car_serie": 15059, + "name": "1.7 CDTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66234, + "fields": { + "id_car_serie": 15059, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66254, + "fields": { + "id_car_serie": 15062, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66255, + "fields": { + "id_car_serie": 15062, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66257, + "fields": { + "id_car_serie": 15062, + "name": "1.7d MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66258, + "fields": { + "id_car_serie": 15062, + "name": "1.7d MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66260, + "fields": { + "id_car_serie": 15063, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66262, + "fields": { + "id_car_serie": 15063, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66264, + "fields": { + "id_car_serie": 15063, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66267, + "fields": { + "id_car_serie": 15063, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66274, + "fields": { + "id_car_serie": 15064, + "name": "1.4 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66275, + "fields": { + "id_car_serie": 15064, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66276, + "fields": { + "id_car_serie": 15064, + "name": "1.5 Turbo D MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66277, + "fields": { + "id_car_serie": 15064, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66278, + "fields": { + "id_car_serie": 15064, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66279, + "fields": { + "id_car_serie": 15064, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66280, + "fields": { + "id_car_serie": 15064, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66281, + "fields": { + "id_car_serie": 15064, + "name": "1.7 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66283, + "fields": { + "id_car_serie": 15064, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66286, + "fields": { + "id_car_serie": 15064, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66287, + "fields": { + "id_car_serie": 15064, + "name": "2.0 GT MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66288, + "fields": { + "id_car_serie": 15065, + "name": "1.4 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66289, + "fields": { + "id_car_serie": 15065, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66290, + "fields": { + "id_car_serie": 15065, + "name": "1.5 Turbo D 5MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66292, + "fields": { + "id_car_serie": 15065, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66295, + "fields": { + "id_car_serie": 15065, + "name": "1.6 5MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66296, + "fields": { + "id_car_serie": 15065, + "name": "1.7 D 5MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66298, + "fields": { + "id_car_serie": 15065, + "name": "1.8 5MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66304, + "fields": { + "id_car_serie": 15066, + "name": "1.3 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66305, + "fields": { + "id_car_serie": 15066, + "name": "1.4 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66306, + "fields": { + "id_car_serie": 15066, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66308, + "fields": { + "id_car_serie": 15066, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66310, + "fields": { + "id_car_serie": 15066, + "name": "1.6 5MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66311, + "fields": { + "id_car_serie": 15066, + "name": "1.7 D 5MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66315, + "fields": { + "id_car_serie": 15066, + "name": "1.8 5MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66334, + "fields": { + "id_car_serie": 15068, + "name": "2.0 DTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66335, + "fields": { + "id_car_serie": 15068, + "name": "2.2 AT (144 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66336, + "fields": { + "id_car_serie": 15068, + "name": "2.2 MT (144 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66337, + "fields": { + "id_car_serie": 15068, + "name": "2.2 DTI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66338, + "fields": { + "id_car_serie": 15068, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66339, + "fields": { + "id_car_serie": 15068, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66340, + "fields": { + "id_car_serie": 15068, + "name": "2.5 TD AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66341, + "fields": { + "id_car_serie": 15068, + "name": "2.5 DTI AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66342, + "fields": { + "id_car_serie": 15068, + "name": "2.5 TD MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66343, + "fields": { + "id_car_serie": 15068, + "name": "2.5 dTi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66344, + "fields": { + "id_car_serie": 15068, + "name": "2.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66345, + "fields": { + "id_car_serie": 15068, + "name": "2.6 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66346, + "fields": { + "id_car_serie": 15068, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66347, + "fields": { + "id_car_serie": 15068, + "name": "3.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66348, + "fields": { + "id_car_serie": 15068, + "name": "3.2 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66350, + "fields": { + "id_car_serie": 15069, + "name": "2.0 DTi MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66351, + "fields": { + "id_car_serie": 15069, + "name": "2.2 AT (144 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66352, + "fields": { + "id_car_serie": 15069, + "name": "2.2 MT (144 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66353, + "fields": { + "id_car_serie": 15069, + "name": "2.2 DTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66354, + "fields": { + "id_car_serie": 15069, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66355, + "fields": { + "id_car_serie": 15069, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66356, + "fields": { + "id_car_serie": 15069, + "name": "2.5 TD AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66357, + "fields": { + "id_car_serie": 15069, + "name": "2.5 DTi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66358, + "fields": { + "id_car_serie": 15069, + "name": "2.5 TD MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66359, + "fields": { + "id_car_serie": 15069, + "name": "2.5 DTi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66360, + "fields": { + "id_car_serie": 15069, + "name": "2.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66361, + "fields": { + "id_car_serie": 15069, + "name": "2.6 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66362, + "fields": { + "id_car_serie": 15069, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66363, + "fields": { + "id_car_serie": 15069, + "name": "3.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66364, + "fields": { + "id_car_serie": 15069, + "name": "3.2 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66366, + "fields": { + "id_car_serie": 15070, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66367, + "fields": { + "id_car_serie": 15070, + "name": "1.8 Easytronic (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66368, + "fields": { + "id_car_serie": 15070, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66369, + "fields": { + "id_car_serie": 15070, + "name": "1.9 CDTi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66370, + "fields": { + "id_car_serie": 15070, + "name": "1.9 CDTI MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66371, + "fields": { + "id_car_serie": 15070, + "name": "1.9 CDTi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66372, + "fields": { + "id_car_serie": 15070, + "name": "2.0 Turbo MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66374, + "fields": { + "id_car_serie": 15070, + "name": "2.2 Direct AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66375, + "fields": { + "id_car_serie": 15070, + "name": "2.2 Direct 6MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66377, + "fields": { + "id_car_serie": 15070, + "name": "2.2 Direct 5MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66378, + "fields": { + "id_car_serie": 15070, + "name": "2.8 Turbo AT (230 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66379, + "fields": { + "id_car_serie": 15070, + "name": "2.8 Turbo AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66380, + "fields": { + "id_car_serie": 15070, + "name": "2.8 Turbo MT (230 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66381, + "fields": { + "id_car_serie": 15070, + "name": "2.8 Turbo MT (250 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66382, + "fields": { + "id_car_serie": 15070, + "name": "3.0 CDTi AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66383, + "fields": { + "id_car_serie": 15070, + "name": "3.0 CDTi MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66396, + "fields": { + "id_car_serie": 15071, + "name": "2.8 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66397, + "fields": { + "id_car_serie": 15071, + "name": "2.8 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66398, + "fields": { + "id_car_serie": 15071, + "name": "2.8 MT (255 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66401, + "fields": { + "id_car_serie": 15072, + "name": "1.8 Easytronic (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66402, + "fields": { + "id_car_serie": 15072, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66403, + "fields": { + "id_car_serie": 15072, + "name": "1.9 CDTi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66404, + "fields": { + "id_car_serie": 15072, + "name": "1.9 CDTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66405, + "fields": { + "id_car_serie": 15072, + "name": "1.9 CDTi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66406, + "fields": { + "id_car_serie": 15072, + "name": "2.0 Turbo MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66408, + "fields": { + "id_car_serie": 15072, + "name": "2.2 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66409, + "fields": { + "id_car_serie": 15072, + "name": "2.2 6MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66412, + "fields": { + "id_car_serie": 15072, + "name": "2.8 Turbo MT (230 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66413, + "fields": { + "id_car_serie": 15072, + "name": "2.8 Turbo MT (250 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66414, + "fields": { + "id_car_serie": 15072, + "name": "3.0 CDTi MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66415, + "fields": { + "id_car_serie": 15073, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66416, + "fields": { + "id_car_serie": 15073, + "name": "1.6 CNG MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66418, + "fields": { + "id_car_serie": 15073, + "name": "1.7 CDTI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66419, + "fields": { + "id_car_serie": 15073, + "name": "1.7 CDTI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66420, + "fields": { + "id_car_serie": 15073, + "name": "1.8 Easytronic (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66421, + "fields": { + "id_car_serie": 15073, + "name": "1.8 LPG MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66422, + "fields": { + "id_car_serie": 15073, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66423, + "fields": { + "id_car_serie": 15073, + "name": "1.9 CDTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66424, + "fields": { + "id_car_serie": 15073, + "name": "1.9 CDTi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66426, + "fields": { + "id_car_serie": 15073, + "name": "1.9 CDTI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66428, + "fields": { + "id_car_serie": 15073, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66429, + "fields": { + "id_car_serie": 15073, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66430, + "fields": { + "id_car_serie": 15074, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66432, + "fields": { + "id_car_serie": 15074, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66433, + "fields": { + "id_car_serie": 15074, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66434, + "fields": { + "id_car_serie": 15074, + "name": "2.0 DTi AT (100 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66435, + "fields": { + "id_car_serie": 15074, + "name": "2.0 DTi MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66436, + "fields": { + "id_car_serie": 15074, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66437, + "fields": { + "id_car_serie": 15074, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66438, + "fields": { + "id_car_serie": 15074, + "name": "2.2 DTI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66448, + "fields": { + "id_car_serie": 15076, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66449, + "fields": { + "id_car_serie": 15076, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66463, + "fields": { + "id_car_serie": 15080, + "name": "1.4 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66464, + "fields": { + "id_car_serie": 15080, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66465, + "fields": { + "id_car_serie": 15080, + "name": "1.5 dCi MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66467, + "fields": { + "id_car_serie": 15080, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66468, + "fields": { + "id_car_serie": 15080, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66475, + "fields": { + "id_car_serie": 15083, + "name": "1.9 dCi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66479, + "fields": { + "id_car_serie": 15083, + "name": "2.0 dCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66481, + "fields": { + "id_car_serie": 15083, + "name": "2.2 dCi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66483, + "fields": { + "id_car_serie": 15083, + "name": "3.0 dCi AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66487, + "fields": { + "id_car_serie": 15084, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66488, + "fields": { + "id_car_serie": 15084, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66489, + "fields": { + "id_car_serie": 15084, + "name": "1.5 dCi MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66491, + "fields": { + "id_car_serie": 15084, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66494, + "fields": { + "id_car_serie": 15084, + "name": "1.9 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66495, + "fields": { + "id_car_serie": 15084, + "name": "1.9 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66497, + "fields": { + "id_car_serie": 15086, + "name": "1.5 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66498, + "fields": { + "id_car_serie": 15086, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66499, + "fields": { + "id_car_serie": 15086, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66500, + "fields": { + "id_car_serie": 15086, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66501, + "fields": { + "id_car_serie": 15086, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66502, + "fields": { + "id_car_serie": 15086, + "name": "2.0 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66503, + "fields": { + "id_car_serie": 15086, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66504, + "fields": { + "id_car_serie": 15086, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66505, + "fields": { + "id_car_serie": 15086, + "name": "2.0 MT (173 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66506, + "fields": { + "id_car_serie": 15087, + "name": "1.5 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66507, + "fields": { + "id_car_serie": 15087, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66508, + "fields": { + "id_car_serie": 15087, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66509, + "fields": { + "id_car_serie": 15087, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66510, + "fields": { + "id_car_serie": 15087, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66511, + "fields": { + "id_car_serie": 15087, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66512, + "fields": { + "id_car_serie": 15087, + "name": "2.0 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66513, + "fields": { + "id_car_serie": 15087, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66514, + "fields": { + "id_car_serie": 15087, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66515, + "fields": { + "id_car_serie": 15087, + "name": "2.0 MT (173 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66518, + "fields": { + "id_car_serie": 15088, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66519, + "fields": { + "id_car_serie": 15088, + "name": "1.9 DCi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66520, + "fields": { + "id_car_serie": 15088, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66521, + "fields": { + "id_car_serie": 15088, + "name": "2.0 T AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66522, + "fields": { + "id_car_serie": 15088, + "name": "2.0 T MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66523, + "fields": { + "id_car_serie": 15088, + "name": "2.0 DCi MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66524, + "fields": { + "id_car_serie": 15088, + "name": "2.0 T MT (205 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66525, + "fields": { + "id_car_serie": 15088, + "name": "2.2 DCi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66526, + "fields": { + "id_car_serie": 15088, + "name": "2.2 DCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66528, + "fields": { + "id_car_serie": 15089, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66529, + "fields": { + "id_car_serie": 15089, + "name": "1.9 DCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66530, + "fields": { + "id_car_serie": 15089, + "name": "1.9 DCi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66531, + "fields": { + "id_car_serie": 15089, + "name": "1.9 DCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66532, + "fields": { + "id_car_serie": 15089, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66533, + "fields": { + "id_car_serie": 15089, + "name": "2.0 T AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66534, + "fields": { + "id_car_serie": 15089, + "name": "2.0 T MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66535, + "fields": { + "id_car_serie": 15089, + "name": "2.0 DCi MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66536, + "fields": { + "id_car_serie": 15089, + "name": "2.0 T MT (205 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66537, + "fields": { + "id_car_serie": 15089, + "name": "2.2 DCi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66538, + "fields": { + "id_car_serie": 15089, + "name": "2.2 DCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66540, + "fields": { + "id_car_serie": 15090, + "name": "1.2 TCe MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66541, + "fields": { + "id_car_serie": 15090, + "name": "1.5 dCi EDC (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66542, + "fields": { + "id_car_serie": 15090, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66543, + "fields": { + "id_car_serie": 15090, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66544, + "fields": { + "id_car_serie": 15090, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66579, + "fields": { + "id_car_serie": 15095, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66581, + "fields": { + "id_car_serie": 15095, + "name": "1.5 dCi MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66583, + "fields": { + "id_car_serie": 15095, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66584, + "fields": { + "id_car_serie": 15095, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66586, + "fields": { + "id_car_serie": 15095, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66587, + "fields": { + "id_car_serie": 15095, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66597, + "fields": { + "id_car_serie": 15096, + "name": "2.0 dCi MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66604, + "fields": { + "id_car_serie": 15096, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66605, + "fields": { + "id_car_serie": 15096, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66606, + "fields": { + "id_car_serie": 15096, + "name": "1.9 dCi AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66608, + "fields": { + "id_car_serie": 15096, + "name": "1.9 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66609, + "fields": { + "id_car_serie": 15096, + "name": "2.0 AT (134 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66610, + "fields": { + "id_car_serie": 15096, + "name": "2.0 MT (134 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66612, + "fields": { + "id_car_serie": 15096, + "name": "2.0 dCi GT MT6 (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66615, + "fields": { + "id_car_serie": 15098, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66617, + "fields": { + "id_car_serie": 15098, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66618, + "fields": { + "id_car_serie": 15098, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66619, + "fields": { + "id_car_serie": 15098, + "name": "1.9 dCi AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66621, + "fields": { + "id_car_serie": 15098, + "name": "1.9 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66622, + "fields": { + "id_car_serie": 15098, + "name": "2.0 AT (134 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66623, + "fields": { + "id_car_serie": 15098, + "name": "2.0 MT (134 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66626, + "fields": { + "id_car_serie": 15099, + "name": "1.5 dCi MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66627, + "fields": { + "id_car_serie": 15099, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66628, + "fields": { + "id_car_serie": 15099, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66630, + "fields": { + "id_car_serie": 15099, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66631, + "fields": { + "id_car_serie": 15099, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66632, + "fields": { + "id_car_serie": 15099, + "name": "2.0 T MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66634, + "fields": { + "id_car_serie": 15100, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66636, + "fields": { + "id_car_serie": 15100, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66637, + "fields": { + "id_car_serie": 15100, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66638, + "fields": { + "id_car_serie": 15100, + "name": "1.9 dCi MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66641, + "fields": { + "id_car_serie": 15100, + "name": "1.9 dTi MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66646, + "fields": { + "id_car_serie": 15101, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66647, + "fields": { + "id_car_serie": 15101, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66648, + "fields": { + "id_car_serie": 15101, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66649, + "fields": { + "id_car_serie": 15101, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66650, + "fields": { + "id_car_serie": 15101, + "name": "1.9 dCi MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66654, + "fields": { + "id_car_serie": 15101, + "name": "1.9 dTi MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66656, + "fields": { + "id_car_serie": 15101, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66672, + "fields": { + "id_car_serie": 15104, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66673, + "fields": { + "id_car_serie": 15104, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66674, + "fields": { + "id_car_serie": 15104, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66675, + "fields": { + "id_car_serie": 15104, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66676, + "fields": { + "id_car_serie": 15106, + "name": "1.2 TCe MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66677, + "fields": { + "id_car_serie": 15106, + "name": "1.2 TCe MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66678, + "fields": { + "id_car_serie": 15106, + "name": "1.4 TCe MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66680, + "fields": { + "id_car_serie": 15106, + "name": "1.5 dCi EDC (110 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66681, + "fields": { + "id_car_serie": 15106, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66682, + "fields": { + "id_car_serie": 15106, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66683, + "fields": { + "id_car_serie": 15106, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66686, + "fields": { + "id_car_serie": 15107, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66688, + "fields": { + "id_car_serie": 15107, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66692, + "fields": { + "id_car_serie": 15107, + "name": "Grand 2.0d AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66693, + "fields": { + "id_car_serie": 15107, + "name": "Grand 2.0d MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66700, + "fields": { + "id_car_serie": 15108, + "name": "1.9 dCi MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66705, + "fields": { + "id_car_serie": 15108, + "name": "2.0 16v MT 4WD (139 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66712, + "fields": { + "id_car_serie": 15110, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66713, + "fields": { + "id_car_serie": 15110, + "name": "1.4 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66714, + "fields": { + "id_car_serie": 15110, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66715, + "fields": { + "id_car_serie": 15110, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66716, + "fields": { + "id_car_serie": 15110, + "name": "1.5 dCi MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66717, + "fields": { + "id_car_serie": 15110, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66734, + "fields": { + "id_car_serie": 15114, + "name": "2.0 MT (250 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66742, + "fields": { + "id_car_serie": 15115, + "name": "2.5 CVT AWD (167 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66767, + "fields": { + "id_car_serie": 15119, + "name": "2.0 TD CVT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66768, + "fields": { + "id_car_serie": 15119, + "name": "2.0 TD MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66769, + "fields": { + "id_car_serie": 15119, + "name": "2.5 CVT AWD (167 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66770, + "fields": { + "id_car_serie": 15119, + "name": "2.5 MT AWD (167 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66771, + "fields": { + "id_car_serie": 15119, + "name": "3.6 E-5AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66772, + "fields": { + "id_car_serie": 15120, + "name": "2.0 TD MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66773, + "fields": { + "id_car_serie": 15120, + "name": "2.5 AT AWD (173 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66774, + "fields": { + "id_car_serie": 15120, + "name": "2.5 AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66775, + "fields": { + "id_car_serie": 15120, + "name": "2.5 MT AWD (173 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66776, + "fields": { + "id_car_serie": 15120, + "name": "2.5 MT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66777, + "fields": { + "id_car_serie": 15120, + "name": "3.0 AT AWD (245 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66806, + "fields": { + "id_car_serie": 15124, + "name": "1.6 MT AWD (106 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66807, + "fields": { + "id_car_serie": 15124, + "name": "1.9 DDiS MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66808, + "fields": { + "id_car_serie": 15124, + "name": "2.4 AT AWD (166 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66809, + "fields": { + "id_car_serie": 15124, + "name": "2.4 MT AWD (166 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66811, + "fields": { + "id_car_serie": 15125, + "name": "2.0 AT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66812, + "fields": { + "id_car_serie": 15125, + "name": "2.0 MT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66813, + "fields": { + "id_car_serie": 15125, + "name": "2.4 AT AWD (169 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66814, + "fields": { + "id_car_serie": 15125, + "name": "2.4 MT AWD (169 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66846, + "fields": { + "id_car_serie": 15128, + "name": "1.6 MT (94 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66847, + "fields": { + "id_car_serie": 15128, + "name": "2.0 AT (128 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66848, + "fields": { + "id_car_serie": 15128, + "name": "2.0 MT (128 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66849, + "fields": { + "id_car_serie": 15129, + "name": "1.2 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66850, + "fields": { + "id_car_serie": 15129, + "name": "1.2 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66851, + "fields": { + "id_car_serie": 15129, + "name": "1.2 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66853, + "fields": { + "id_car_serie": 15129, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66854, + "fields": { + "id_car_serie": 15130, + "name": "1.2 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66861, + "fields": { + "id_car_serie": 15131, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66863, + "fields": { + "id_car_serie": 15131, + "name": "1.6 AT (92 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66864, + "fields": { + "id_car_serie": 15131, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66865, + "fields": { + "id_car_serie": 15132, + "name": "1.0 AT (53 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66867, + "fields": { + "id_car_serie": 15132, + "name": "1.0 MT (53 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66868, + "fields": { + "id_car_serie": 15132, + "name": "1.3 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66870, + "fields": { + "id_car_serie": 15132, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66872, + "fields": { + "id_car_serie": 15132, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66874, + "fields": { + "id_car_serie": 15132, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66875, + "fields": { + "id_car_serie": 15133, + "name": "1.0 AT (53 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66877, + "fields": { + "id_car_serie": 15133, + "name": "1.0 MT (53 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66878, + "fields": { + "id_car_serie": 15133, + "name": "1.3 AT (68 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66879, + "fields": { + "id_car_serie": 15133, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66883, + "fields": { + "id_car_serie": 15133, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66885, + "fields": { + "id_car_serie": 15133, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66886, + "fields": { + "id_car_serie": 15134, + "name": "1.6 AT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66887, + "fields": { + "id_car_serie": 15134, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66888, + "fields": { + "id_car_serie": 15134, + "name": "1.6 MT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66889, + "fields": { + "id_car_serie": 15134, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66892, + "fields": { + "id_car_serie": 15134, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66893, + "fields": { + "id_car_serie": 15134, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66894, + "fields": { + "id_car_serie": 15134, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66895, + "fields": { + "id_car_serie": 15134, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66896, + "fields": { + "id_car_serie": 15134, + "name": "2.0 DDiS MT (135 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66897, + "fields": { + "id_car_serie": 15135, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66898, + "fields": { + "id_car_serie": 15135, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66899, + "fields": { + "id_car_serie": 15135, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66900, + "fields": { + "id_car_serie": 15135, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66902, + "fields": { + "id_car_serie": 15137, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66909, + "fields": { + "id_car_serie": 15138, + "name": "1.4 TSI DSG (125 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66910, + "fields": { + "id_car_serie": 15138, + "name": "1.4 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66911, + "fields": { + "id_car_serie": 15138, + "name": "1.4 TSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66913, + "fields": { + "id_car_serie": 15138, + "name": "1.6 MPI AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66914, + "fields": { + "id_car_serie": 15138, + "name": "1.6 MPI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66918, + "fields": { + "id_car_serie": 15138, + "name": "2.0 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66919, + "fields": { + "id_car_serie": 15138, + "name": "2.0 TDI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66920, + "fields": { + "id_car_serie": 15138, + "name": "1.4 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 66921, + "fields": { + "id_car_serie": 15139, + "name": "2.0 TSI DSG 4Motion (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66922, + "fields": { + "id_car_serie": 15139, + "name": "2.0 TSI DSG (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66924, + "fields": { + "id_car_serie": 15139, + "name": "2.0 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66925, + "fields": { + "id_car_serie": 15139, + "name": "2.0 TSI MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66926, + "fields": { + "id_car_serie": 15139, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66927, + "fields": { + "id_car_serie": 15139, + "name": "2.0 BiTDI DSG 4Motion (180 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66928, + "fields": { + "id_car_serie": 15139, + "name": "2.0 BiTDI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66929, + "fields": { + "id_car_serie": 15139, + "name": "2.0 TDI MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66930, + "fields": { + "id_car_serie": 15139, + "name": "2.0 FSi MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66931, + "fields": { + "id_car_serie": 15139, + "name": "2.0 TDI MT 4Motion (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66932, + "fields": { + "id_car_serie": 15139, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66933, + "fields": { + "id_car_serie": 15139, + "name": "2.0 BiTDI MT 4Motion (180 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66934, + "fields": { + "id_car_serie": 15139, + "name": "2.0 BiTDI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66935, + "fields": { + "id_car_serie": 15139, + "name": "2.0 TDI MT (84 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66936, + "fields": { + "id_car_serie": 15141, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66937, + "fields": { + "id_car_serie": 15141, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66938, + "fields": { + "id_car_serie": 15141, + "name": "1.8 T AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66939, + "fields": { + "id_car_serie": 15141, + "name": "1.8 T AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66940, + "fields": { + "id_car_serie": 15141, + "name": "1.8 T 4Motion AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66941, + "fields": { + "id_car_serie": 15141, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66942, + "fields": { + "id_car_serie": 15141, + "name": "1.8 T MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66943, + "fields": { + "id_car_serie": 15141, + "name": "1.8 T 4Motion MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66944, + "fields": { + "id_car_serie": 15141, + "name": "1.9 TDI AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66945, + "fields": { + "id_car_serie": 15141, + "name": "1.9 TDI AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66946, + "fields": { + "id_car_serie": 15141, + "name": "1.9 TDI MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66947, + "fields": { + "id_car_serie": 15141, + "name": "1.9 TDI 6MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66948, + "fields": { + "id_car_serie": 15141, + "name": "1.9 TDI 4Motion 6MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66949, + "fields": { + "id_car_serie": 15141, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66950, + "fields": { + "id_car_serie": 15141, + "name": "2.0 4Motion MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66951, + "fields": { + "id_car_serie": 15141, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66952, + "fields": { + "id_car_serie": 15141, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66953, + "fields": { + "id_car_serie": 15141, + "name": "2.0 TDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66954, + "fields": { + "id_car_serie": 15141, + "name": "2.3 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66955, + "fields": { + "id_car_serie": 15141, + "name": "2.3 4Motion MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66956, + "fields": { + "id_car_serie": 15141, + "name": "2.3 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66957, + "fields": { + "id_car_serie": 15141, + "name": "2.5 TDI AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66958, + "fields": { + "id_car_serie": 15141, + "name": "2.5 TDI 4Motion AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66959, + "fields": { + "id_car_serie": 15141, + "name": "2.5 TDI AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66960, + "fields": { + "id_car_serie": 15141, + "name": "2.5 TDI 4Motion AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66961, + "fields": { + "id_car_serie": 15141, + "name": "2.5 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66962, + "fields": { + "id_car_serie": 15141, + "name": "2.5 TDI 4motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66963, + "fields": { + "id_car_serie": 15141, + "name": "2.5 TDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66964, + "fields": { + "id_car_serie": 15141, + "name": "2.5 TDI 4Motion MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66965, + "fields": { + "id_car_serie": 15141, + "name": "2.8 4Motion AT (193 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66966, + "fields": { + "id_car_serie": 15141, + "name": "2.8 4Motion MT (193 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66967, + "fields": { + "id_car_serie": 15141, + "name": "4.0 4Motion AT (275 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66968, + "fields": { + "id_car_serie": 15141, + "name": "4.0 4Motion MT (275 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66969, + "fields": { + "id_car_serie": 15142, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66970, + "fields": { + "id_car_serie": 15142, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66972, + "fields": { + "id_car_serie": 15142, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66973, + "fields": { + "id_car_serie": 15142, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66974, + "fields": { + "id_car_serie": 15142, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66975, + "fields": { + "id_car_serie": 15142, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66976, + "fields": { + "id_car_serie": 15142, + "name": "1.9 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66977, + "fields": { + "id_car_serie": 15142, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66979, + "fields": { + "id_car_serie": 15142, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66981, + "fields": { + "id_car_serie": 15142, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66982, + "fields": { + "id_car_serie": 15142, + "name": "2.0 Syncro MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66983, + "fields": { + "id_car_serie": 15142, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66984, + "fields": { + "id_car_serie": 15142, + "name": "2.8 VR6 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66985, + "fields": { + "id_car_serie": 15142, + "name": "2.8 VR6 MT (174 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66987, + "fields": { + "id_car_serie": 15142, + "name": "2.9 VR6 Syncro MT (184 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66989, + "fields": { + "id_car_serie": 15143, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66990, + "fields": { + "id_car_serie": 15143, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66992, + "fields": { + "id_car_serie": 15143, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66993, + "fields": { + "id_car_serie": 15143, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66994, + "fields": { + "id_car_serie": 15143, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66995, + "fields": { + "id_car_serie": 15143, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66996, + "fields": { + "id_car_serie": 15143, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66997, + "fields": { + "id_car_serie": 15143, + "name": "1.9 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 66998, + "fields": { + "id_car_serie": 15143, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67000, + "fields": { + "id_car_serie": 15143, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67004, + "fields": { + "id_car_serie": 15143, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67005, + "fields": { + "id_car_serie": 15143, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67006, + "fields": { + "id_car_serie": 15143, + "name": "2.8 VR6 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67007, + "fields": { + "id_car_serie": 15143, + "name": "2.8 VR6 MT (174 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67008, + "fields": { + "id_car_serie": 15144, + "name": "1.6 5MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67009, + "fields": { + "id_car_serie": 15144, + "name": "1.6 4MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67010, + "fields": { + "id_car_serie": 15144, + "name": "1.6 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67011, + "fields": { + "id_car_serie": 15144, + "name": "1.8 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67012, + "fields": { + "id_car_serie": 15144, + "name": "1.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67015, + "fields": { + "id_car_serie": 15144, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67016, + "fields": { + "id_car_serie": 15144, + "name": "1.8 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67017, + "fields": { + "id_car_serie": 15144, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67020, + "fields": { + "id_car_serie": 15144, + "name": "1.8 G60 Syncro MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67021, + "fields": { + "id_car_serie": 15144, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67022, + "fields": { + "id_car_serie": 15144, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67023, + "fields": { + "id_car_serie": 15144, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67024, + "fields": { + "id_car_serie": 15144, + "name": "1.9 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67026, + "fields": { + "id_car_serie": 15144, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67027, + "fields": { + "id_car_serie": 15144, + "name": "2.0 GT AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67028, + "fields": { + "id_car_serie": 15144, + "name": "2.0 Syncro MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67029, + "fields": { + "id_car_serie": 15144, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67030, + "fields": { + "id_car_serie": 15144, + "name": "2.0 GT MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67031, + "fields": { + "id_car_serie": 15144, + "name": "2.8 VR6 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67032, + "fields": { + "id_car_serie": 15144, + "name": "2.8 VR6 MT (174 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67033, + "fields": { + "id_car_serie": 15145, + "name": "1.6 5MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67034, + "fields": { + "id_car_serie": 15145, + "name": "1.6 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67035, + "fields": { + "id_car_serie": 15145, + "name": "1.6 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67036, + "fields": { + "id_car_serie": 15145, + "name": "1.8 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67037, + "fields": { + "id_car_serie": 15145, + "name": "1.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67038, + "fields": { + "id_car_serie": 15145, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67040, + "fields": { + "id_car_serie": 15145, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67041, + "fields": { + "id_car_serie": 15145, + "name": "1.8 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67042, + "fields": { + "id_car_serie": 15145, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67043, + "fields": { + "id_car_serie": 15145, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67045, + "fields": { + "id_car_serie": 15145, + "name": "1.8 G60 Syncro MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67046, + "fields": { + "id_car_serie": 15145, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67047, + "fields": { + "id_car_serie": 15145, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67048, + "fields": { + "id_car_serie": 15145, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67049, + "fields": { + "id_car_serie": 15145, + "name": "1.9 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67052, + "fields": { + "id_car_serie": 15145, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67053, + "fields": { + "id_car_serie": 15145, + "name": "2.0 GT AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67054, + "fields": { + "id_car_serie": 15145, + "name": "2.0 Syncro MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67055, + "fields": { + "id_car_serie": 15145, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67056, + "fields": { + "id_car_serie": 15145, + "name": "2.0 GT MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67059, + "fields": { + "id_car_serie": 15145, + "name": "2.8 VR6 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67060, + "fields": { + "id_car_serie": 15145, + "name": "2.8 VR6 MT (174 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67063, + "fields": { + "id_car_serie": 15146, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67064, + "fields": { + "id_car_serie": 15146, + "name": "1.4 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67071, + "fields": { + "id_car_serie": 15146, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67073, + "fields": { + "id_car_serie": 15148, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67074, + "fields": { + "id_car_serie": 15148, + "name": "1.4 16V AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67075, + "fields": { + "id_car_serie": 15148, + "name": "1.4 16V MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67078, + "fields": { + "id_car_serie": 15148, + "name": "1.4 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67079, + "fields": { + "id_car_serie": 15148, + "name": "1.4 16V MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67082, + "fields": { + "id_car_serie": 15148, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67083, + "fields": { + "id_car_serie": 15149, + "name": "1.1 L MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67095, + "fields": { + "id_car_serie": 15150, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67096, + "fields": { + "id_car_serie": 15150, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67097, + "fields": { + "id_car_serie": 15150, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67098, + "fields": { + "id_car_serie": 15150, + "name": "1.4 D MT (48 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67099, + "fields": { + "id_car_serie": 15151, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67100, + "fields": { + "id_car_serie": 15151, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67102, + "fields": { + "id_car_serie": 15151, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67103, + "fields": { + "id_car_serie": 15151, + "name": "1.9 TDI 4Motion MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67104, + "fields": { + "id_car_serie": 15151, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67106, + "fields": { + "id_car_serie": 15151, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67107, + "fields": { + "id_car_serie": 15151, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67108, + "fields": { + "id_car_serie": 15151, + "name": "2.0 MT (104 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67109, + "fields": { + "id_car_serie": 15151, + "name": "2.8 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67110, + "fields": { + "id_car_serie": 15151, + "name": "2.8 4Motion MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67111, + "fields": { + "id_car_serie": 15151, + "name": "2.8 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67112, + "fields": { + "id_car_serie": 15152, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67113, + "fields": { + "id_car_serie": 15152, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67115, + "fields": { + "id_car_serie": 15152, + "name": "1.9 TDI AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67117, + "fields": { + "id_car_serie": 15152, + "name": "1.9 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67118, + "fields": { + "id_car_serie": 15152, + "name": "1.9 TDI 4Motion MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67119, + "fields": { + "id_car_serie": 15152, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67121, + "fields": { + "id_car_serie": 15152, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67122, + "fields": { + "id_car_serie": 15152, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67123, + "fields": { + "id_car_serie": 15152, + "name": "2.8 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67124, + "fields": { + "id_car_serie": 15152, + "name": "2.8 4Motion MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67125, + "fields": { + "id_car_serie": 15152, + "name": "2.8 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67127, + "fields": { + "id_car_serie": 15153, + "name": "2.5 TDI AT (174 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67128, + "fields": { + "id_car_serie": 15153, + "name": "2.5 TDI MT (174 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67129, + "fields": { + "id_car_serie": 15153, + "name": "3.0 TDI BlueMotion AT (225 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67130, + "fields": { + "id_car_serie": 15153, + "name": "3.0 TDI AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67133, + "fields": { + "id_car_serie": 15153, + "name": "3.6 FSI AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67134, + "fields": { + "id_car_serie": 15153, + "name": "4.2 FSI AT (350 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67137, + "fields": { + "id_car_serie": 15153, + "name": "6.0 FSI AT (450 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67138, + "fields": { + "id_car_serie": 15154, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67139, + "fields": { + "id_car_serie": 15154, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67140, + "fields": { + "id_car_serie": 15154, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67141, + "fields": { + "id_car_serie": 15154, + "name": "1.8 Bi-fuel MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67142, + "fields": { + "id_car_serie": 15154, + "name": "1.9 TD MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67143, + "fields": { + "id_car_serie": 15154, + "name": "1.9 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67147, + "fields": { + "id_car_serie": 15154, + "name": "1.9 T4 Turbo AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67151, + "fields": { + "id_car_serie": 15154, + "name": "1.9 T4 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67152, + "fields": { + "id_car_serie": 15155, + "name": "1.6 T3 Powershift (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67153, + "fields": { + "id_car_serie": 15155, + "name": "1.6 T4 Geartronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67154, + "fields": { + "id_car_serie": 15155, + "name": "1.6 T3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67155, + "fields": { + "id_car_serie": 15155, + "name": "1.6 T4F Flexifuel MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67156, + "fields": { + "id_car_serie": 15155, + "name": "1.6 D2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67157, + "fields": { + "id_car_serie": 15155, + "name": "1.6 T4 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67158, + "fields": { + "id_car_serie": 15155, + "name": "2.0 T4 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67159, + "fields": { + "id_car_serie": 15155, + "name": "2.0 T5 Drive-E Geartronic (245 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67160, + "fields": { + "id_car_serie": 15155, + "name": "2.0 T6 Drive-E Geartronic (306 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67161, + "fields": { + "id_car_serie": 15155, + "name": "2.0 D3 Geartronic (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67163, + "fields": { + "id_car_serie": 15155, + "name": "2.0 D4 Geartronic (181 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67164, + "fields": { + "id_car_serie": 15155, + "name": "2.0 D3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67165, + "fields": { + "id_car_serie": 15155, + "name": "2.0 D4 Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67166, + "fields": { + "id_car_serie": 15155, + "name": "2.0 D4 MT (181 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67167, + "fields": { + "id_car_serie": 15155, + "name": "2.4 D5 Geartronic (215 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67168, + "fields": { + "id_car_serie": 15155, + "name": "2.4 D5 Geartronic AWD (215 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67169, + "fields": { + "id_car_serie": 15155, + "name": "2.4 D5 MT (215 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67171, + "fields": { + "id_car_serie": 15155, + "name": "2.5 T5 Geartronic AWD Cross Country (249 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67172, + "fields": { + "id_car_serie": 15155, + "name": "3.0 T6 Powershift AWD (304 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67175, + "fields": { + "id_car_serie": 15156, + "name": "2.4 Bi-fuel CNG AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67176, + "fields": { + "id_car_serie": 15156, + "name": "2.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67177, + "fields": { + "id_car_serie": 15156, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67179, + "fields": { + "id_car_serie": 15156, + "name": "2.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67180, + "fields": { + "id_car_serie": 15156, + "name": "2.4 Bi-fuel LPG MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67181, + "fields": { + "id_car_serie": 15156, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67182, + "fields": { + "id_car_serie": 15156, + "name": "2.4 TD MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67184, + "fields": { + "id_car_serie": 15156, + "name": "2.4 TD Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67185, + "fields": { + "id_car_serie": 15156, + "name": "2.4 TD MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67186, + "fields": { + "id_car_serie": 15156, + "name": "2.4 Bi-fuel CNG MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67187, + "fields": { + "id_car_serie": 15156, + "name": "2.4 D5 Turbo MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67188, + "fields": { + "id_car_serie": 15156, + "name": "2.4 D5 Turbo MT (185 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67191, + "fields": { + "id_car_serie": 15156, + "name": "2.5 Turbo Geartronic (300 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67194, + "fields": { + "id_car_serie": 15156, + "name": "2.5 Turbo MT (300 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67199, + "fields": { + "id_car_serie": 15157, + "name": "2.0 T5 Drive-E Geartronic (245 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67203, + "fields": { + "id_car_serie": 15157, + "name": "2.0 D4 Geartronic (181 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67206, + "fields": { + "id_car_serie": 15157, + "name": "2.0 D4 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67207, + "fields": { + "id_car_serie": 15157, + "name": "2.4 D5 Geartronic AWD (215 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67210, + "fields": { + "id_car_serie": 15157, + "name": "2.5 T5 Geartronic (249 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67211, + "fields": { + "id_car_serie": 15157, + "name": "3.0 T6 Geartronic AWD (304 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67214, + "fields": { + "id_car_serie": 15158, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67215, + "fields": { + "id_car_serie": 15158, + "name": "2.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67216, + "fields": { + "id_car_serie": 15158, + "name": "2.0 AT (226 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67217, + "fields": { + "id_car_serie": 15158, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67218, + "fields": { + "id_car_serie": 15158, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67219, + "fields": { + "id_car_serie": 15158, + "name": "2.0 MT (226 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67222, + "fields": { + "id_car_serie": 15158, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67225, + "fields": { + "id_car_serie": 15158, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67226, + "fields": { + "id_car_serie": 15158, + "name": "2.4 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67227, + "fields": { + "id_car_serie": 15158, + "name": "2.4 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67228, + "fields": { + "id_car_serie": 15158, + "name": "2.4 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67233, + "fields": { + "id_car_serie": 15158, + "name": "2.5 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67234, + "fields": { + "id_car_serie": 15158, + "name": "2.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67235, + "fields": { + "id_car_serie": 15158, + "name": "2.9 AT (196 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67236, + "fields": { + "id_car_serie": 15158, + "name": "2.9 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67237, + "fields": { + "id_car_serie": 15158, + "name": "2.9 AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67238, + "fields": { + "id_car_serie": 15158, + "name": "2.9 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67239, + "fields": { + "id_car_serie": 15159, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67240, + "fields": { + "id_car_serie": 15159, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67241, + "fields": { + "id_car_serie": 15159, + "name": "1.8 Bi-Fuel MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67242, + "fields": { + "id_car_serie": 15159, + "name": "1.9 D MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67243, + "fields": { + "id_car_serie": 15159, + "name": "1.9 D MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67249, + "fields": { + "id_car_serie": 15160, + "name": "2.0 T AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67250, + "fields": { + "id_car_serie": 15160, + "name": "2.0 T MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67251, + "fields": { + "id_car_serie": 15160, + "name": "2.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67252, + "fields": { + "id_car_serie": 15160, + "name": "2.4 Bi-Fuel AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67253, + "fields": { + "id_car_serie": 15160, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67255, + "fields": { + "id_car_serie": 15160, + "name": "2.4 D5 MT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67256, + "fields": { + "id_car_serie": 15160, + "name": "2.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67257, + "fields": { + "id_car_serie": 15160, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67258, + "fields": { + "id_car_serie": 15160, + "name": "2.4 Bi-Fuel MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67259, + "fields": { + "id_car_serie": 15160, + "name": "2.4 D AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67260, + "fields": { + "id_car_serie": 15160, + "name": "2.4 D5 AT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67261, + "fields": { + "id_car_serie": 15160, + "name": "2.4 D5 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67262, + "fields": { + "id_car_serie": 15160, + "name": "2.4 D5 Geartronic (185 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67263, + "fields": { + "id_car_serie": 15160, + "name": "2.4 D MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67264, + "fields": { + "id_car_serie": 15160, + "name": "2.4 D MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67265, + "fields": { + "id_car_serie": 15160, + "name": "2.4 D5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67266, + "fields": { + "id_car_serie": 15160, + "name": "2.4 D5 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67267, + "fields": { + "id_car_serie": 15160, + "name": "2.4 D5 MT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67268, + "fields": { + "id_car_serie": 15160, + "name": "2.5 T Geartronic (210 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67269, + "fields": { + "id_car_serie": 15160, + "name": "2.5 T AT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67271, + "fields": { + "id_car_serie": 15160, + "name": "2.5 T MT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67272, + "fields": { + "id_car_serie": 15160, + "name": "2.5 T MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67274, + "fields": { + "id_car_serie": 15161, + "name": "2.0 T5 Geartronic (245 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67275, + "fields": { + "id_car_serie": 15161, + "name": "2.4 D4 Geartronic AWD (181 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67305, + "fields": { + "id_car_serie": 15167, + "name": "2.0 BiTDI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67306, + "fields": { + "id_car_serie": 15167, + "name": "Long 2.0 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67308, + "fields": { + "id_car_serie": 15167, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67310, + "fields": { + "id_car_serie": 15167, + "name": "2.0 BiTDI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67312, + "fields": { + "id_car_serie": 15167, + "name": "2.0d MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67314, + "fields": { + "id_car_serie": 15167, + "name": "2.0d MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67315, + "fields": { + "id_car_serie": 15167, + "name": "2.0 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67320, + "fields": { + "id_car_serie": 15167, + "name": "Long 2.0d MT (180 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67322, + "fields": { + "id_car_serie": 15167, + "name": "2.0d MT (84 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67324, + "fields": { + "id_car_serie": 15168, + "name": "2.0 MT L2 (115 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67326, + "fields": { + "id_car_serie": 15168, + "name": "2.0 TDI MT 4Motion L1 (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67328, + "fields": { + "id_car_serie": 15168, + "name": "2.0 TDI MT 4Motion L2 (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67331, + "fields": { + "id_car_serie": 15168, + "name": "2.0 BiTDI MT L2 (180 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67332, + "fields": { + "id_car_serie": 15168, + "name": "2.0 BiTDI MT L1 (180 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67334, + "fields": { + "id_car_serie": 15168, + "name": "2.0 MT L1 (115 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67335, + "fields": { + "id_car_serie": 15168, + "name": "2.0 TDI MT L1 (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67338, + "fields": { + "id_car_serie": 15168, + "name": "2.0 TDI MT L2 (102 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67341, + "fields": { + "id_car_serie": 15168, + "name": "2.0 TDI MT L2 (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67342, + "fields": { + "id_car_serie": 15168, + "name": "2.0 TSI MT L2 (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67343, + "fields": { + "id_car_serie": 15168, + "name": "2.0 TDI MT L1 (84 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67344, + "fields": { + "id_car_serie": 15168, + "name": "2.0 TDI MT L2 (84 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67351, + "fields": { + "id_car_serie": 15172, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67352, + "fields": { + "id_car_serie": 15172, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67353, + "fields": { + "id_car_serie": 15173, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67354, + "fields": { + "id_car_serie": 15173, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67355, + "fields": { + "id_car_serie": 15174, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67356, + "fields": { + "id_car_serie": 15174, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67357, + "fields": { + "id_car_serie": 15175, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67358, + "fields": { + "id_car_serie": 15175, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67359, + "fields": { + "id_car_serie": 15176, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67360, + "fields": { + "id_car_serie": 15176, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67361, + "fields": { + "id_car_serie": 15176, + "name": "2.3 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67362, + "fields": { + "id_car_serie": 15176, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67363, + "fields": { + "id_car_serie": 15177, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67364, + "fields": { + "id_car_serie": 15177, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67365, + "fields": { + "id_car_serie": 15177, + "name": "2.3 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67366, + "fields": { + "id_car_serie": 15177, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67367, + "fields": { + "id_car_serie": 15178, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67368, + "fields": { + "id_car_serie": 15178, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67369, + "fields": { + "id_car_serie": 15178, + "name": "2.3 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67370, + "fields": { + "id_car_serie": 15178, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67371, + "fields": { + "id_car_serie": 15179, + "name": "2.0 AT (111 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67372, + "fields": { + "id_car_serie": 15179, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67373, + "fields": { + "id_car_serie": 15179, + "name": "2.0 MT (111 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67374, + "fields": { + "id_car_serie": 15179, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67375, + "fields": { + "id_car_serie": 15179, + "name": "2.3 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67376, + "fields": { + "id_car_serie": 15179, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67377, + "fields": { + "id_car_serie": 15180, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67378, + "fields": { + "id_car_serie": 15180, + "name": "SVT 2.0 AT (172 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67379, + "fields": { + "id_car_serie": 15180, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67380, + "fields": { + "id_car_serie": 15180, + "name": "SVT 2.0 MT (172 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67381, + "fields": { + "id_car_serie": 15180, + "name": "2.3 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67382, + "fields": { + "id_car_serie": 15180, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67383, + "fields": { + "id_car_serie": 15181, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67384, + "fields": { + "id_car_serie": 15181, + "name": "SVT 2.0 AT (172 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67385, + "fields": { + "id_car_serie": 15181, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67386, + "fields": { + "id_car_serie": 15181, + "name": "SVT 2.0 MT (172 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67387, + "fields": { + "id_car_serie": 15181, + "name": "2.3 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67388, + "fields": { + "id_car_serie": 15181, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67389, + "fields": { + "id_car_serie": 15182, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67390, + "fields": { + "id_car_serie": 15182, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67391, + "fields": { + "id_car_serie": 15182, + "name": "2.3 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67392, + "fields": { + "id_car_serie": 15182, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67393, + "fields": { + "id_car_serie": 15183, + "name": "3.0 BITURBO SWITCH-TRONIC AWD (350 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67394, + "fields": { + "id_car_serie": 15184, + "name": "3.0 SWITCH-TRONIC (350 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67395, + "fields": { + "id_car_serie": 15185, + "name": "3.0 SWITCH-TRONIC (350 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67396, + "fields": { + "id_car_serie": 15186, + "name": "2.0 AT RWD (214 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67397, + "fields": { + "id_car_serie": 15186, + "name": "2.0 MT RWD (214 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67398, + "fields": { + "id_car_serie": 15187, + "name": "2.0 AT (214 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67399, + "fields": { + "id_car_serie": 15187, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67400, + "fields": { + "id_car_serie": 15187, + "name": "2.0 MT (214 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67402, + "fields": { + "id_car_serie": 15188, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67403, + "fields": { + "id_car_serie": 15188, + "name": "2.0 MT (214 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67404, + "fields": { + "id_car_serie": 15189, + "name": "2.9 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67405, + "fields": { + "id_car_serie": 15189, + "name": "2.9 D MT (245 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67406, + "fields": { + "id_car_serie": 15190, + "name": "2.9 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67407, + "fields": { + "id_car_serie": 15190, + "name": "2.9 D MT (245 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67408, + "fields": { + "id_car_serie": 15191, + "name": "2.7 MT (203 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67409, + "fields": { + "id_car_serie": 15191, + "name": "2.7 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67410, + "fields": { + "id_car_serie": 15192, + "name": "2.6 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67413, + "fields": { + "id_car_serie": 15193, + "name": "2.6 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67414, + "fields": { + "id_car_serie": 15193, + "name": "2.7 MT (203 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67415, + "fields": { + "id_car_serie": 15193, + "name": "2.7 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67416, + "fields": { + "id_car_serie": 15194, + "name": "2.5 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67417, + "fields": { + "id_car_serie": 15195, + "name": "2.3 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67418, + "fields": { + "id_car_serie": 15195, + "name": "2.5 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67419, + "fields": { + "id_car_serie": 15196, + "name": "2.3 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67420, + "fields": { + "id_car_serie": 15197, + "name": "3.4 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67421, + "fields": { + "id_car_serie": 15198, + "name": "4.6 MT (333 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67422, + "fields": { + "id_car_serie": 15199, + "name": "4.6 MT (333 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67423, + "fields": { + "id_car_serie": 15200, + "name": "4.6 MT (333 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67424, + "fields": { + "id_car_serie": 15201, + "name": "4.6 MT (333 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67425, + "fields": { + "id_car_serie": 15202, + "name": "3.2 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67426, + "fields": { + "id_car_serie": 15203, + "name": "4.4 AT (507 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67432, + "fields": { + "id_car_serie": 15204, + "name": "4.4 AT (500 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67433, + "fields": { + "id_car_serie": 15204, + "name": "4.4 L AT (500 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67434, + "fields": { + "id_car_serie": 15205, + "name": "3.4 AT (320 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67435, + "fields": { + "id_car_serie": 15206, + "name": "3.0 MT (300 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67436, + "fields": { + "id_car_serie": 15206, + "name": "3.4 MT (320 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67437, + "fields": { + "id_car_serie": 15206, + "name": "3.5 MT (245 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67438, + "fields": { + "id_car_serie": 15206, + "name": "3.5 MT (330 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67439, + "fields": { + "id_car_serie": 15207, + "name": "3.0 MT (300 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67440, + "fields": { + "id_car_serie": 15207, + "name": "3.5 MT (330 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67458, + "fields": { + "id_car_serie": 15216, + "name": "2.8 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67459, + "fields": { + "id_car_serie": 15216, + "name": "2.8 MT (218 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67466, + "fields": { + "id_car_serie": 15221, + "name": "3.0 BITURBO SWITCH-TRONIC (410 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67468, + "fields": { + "id_car_serie": 15222, + "name": "3.0 SWITCH-TRONIC (410 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67469, + "fields": { + "id_car_serie": 15222, + "name": "3.0 SWITCH-TRONIC AWD (410 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67470, + "fields": { + "id_car_serie": 15223, + "name": "3.0 SWITCH-TRONIC AWD (410 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67471, + "fields": { + "id_car_serie": 15223, + "name": "3.0 SWITCH-TRONIC (410 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67480, + "fields": { + "id_car_serie": 15227, + "name": "3.0 AT (360 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67481, + "fields": { + "id_car_serie": 15227, + "name": "3.0 AT (400 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67483, + "fields": { + "id_car_serie": 15228, + "name": "3.3 AT Switchtronic Allrad (280 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67484, + "fields": { + "id_car_serie": 15228, + "name": "3.3 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67486, + "fields": { + "id_car_serie": 15228, + "name": "3.3 MT (305 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67488, + "fields": { + "id_car_serie": 15229, + "name": "3.3 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67490, + "fields": { + "id_car_serie": 15229, + "name": "3.3 MT (305 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67492, + "fields": { + "id_car_serie": 15230, + "name": "3.3 AT Switchtronic Allrad (280 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67493, + "fields": { + "id_car_serie": 15230, + "name": "3.3 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67495, + "fields": { + "id_car_serie": 15230, + "name": "3.3 MT (305 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67496, + "fields": { + "id_car_serie": 15231, + "name": "3.3 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67497, + "fields": { + "id_car_serie": 15231, + "name": "3.3 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67501, + "fields": { + "id_car_serie": 15232, + "name": "3.0 MT (250 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67507, + "fields": { + "id_car_serie": 15233, + "name": "3.0 MT (250 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67509, + "fields": { + "id_car_serie": 15233, + "name": "3.2 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67510, + "fields": { + "id_car_serie": 15234, + "name": "3.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67511, + "fields": { + "id_car_serie": 15234, + "name": "3.0 MT (250 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67512, + "fields": { + "id_car_serie": 15234, + "name": "3.2 AT (265 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67513, + "fields": { + "id_car_serie": 15234, + "name": "3.2 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67514, + "fields": { + "id_car_serie": 15235, + "name": "3.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67515, + "fields": { + "id_car_serie": 15235, + "name": "3.0 MT (250 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67516, + "fields": { + "id_car_serie": 15235, + "name": "3.2 AT (265 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67517, + "fields": { + "id_car_serie": 15235, + "name": "3.2 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67520, + "fields": { + "id_car_serie": 15238, + "name": "2.7 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67521, + "fields": { + "id_car_serie": 15239, + "name": "2.7 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67523, + "fields": { + "id_car_serie": 15240, + "name": "6.0 AT (430 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67524, + "fields": { + "id_car_serie": 15241, + "name": "5.0 AT (350 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67525, + "fields": { + "id_car_serie": 15241, + "name": "5.6 AMT (416 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67526, + "fields": { + "id_car_serie": 15242, + "name": "5.0 AT (350 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67527, + "fields": { + "id_car_serie": 15243, + "name": "3.4 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67528, + "fields": { + "id_car_serie": 15243, + "name": "3.4 MT (250 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67529, + "fields": { + "id_car_serie": 15243, + "name": "3.4 MT (254 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67530, + "fields": { + "id_car_serie": 15243, + "name": "4.0 AT (315 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67535, + "fields": { + "id_car_serie": 15244, + "name": "3.3 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67536, + "fields": { + "id_car_serie": 15244, + "name": "4.6 AT Switchtronic (347 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67538, + "fields": { + "id_car_serie": 15244, + "name": "4.8 AT (375 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67544, + "fields": { + "id_car_serie": 15245, + "name": "3.3 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67546, + "fields": { + "id_car_serie": 15245, + "name": "4.6 AT Switchtronic (347 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67547, + "fields": { + "id_car_serie": 15245, + "name": "4.8 AT (375 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67548, + "fields": { + "id_car_serie": 15246, + "name": "3.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67549, + "fields": { + "id_car_serie": 15246, + "name": "4.0 MT (315 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67550, + "fields": { + "id_car_serie": 15246, + "name": "4.6 AT (340 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67551, + "fields": { + "id_car_serie": 15246, + "name": "4.6 MT (340 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67552, + "fields": { + "id_car_serie": 15247, + "name": "3.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67553, + "fields": { + "id_car_serie": 15247, + "name": "3.4 MT (254 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67554, + "fields": { + "id_car_serie": 15247, + "name": "3.4 MT (360 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67555, + "fields": { + "id_car_serie": 15247, + "name": "4.0 MT (315 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67556, + "fields": { + "id_car_serie": 15247, + "name": "4.6 MT (340 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67557, + "fields": { + "id_car_serie": 15248, + "name": "3.4 MT (261 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67558, + "fields": { + "id_car_serie": 15249, + "name": "1.4 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67559, + "fields": { + "id_car_serie": 15249, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67560, + "fields": { + "id_car_serie": 15249, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67561, + "fields": { + "id_car_serie": 15249, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67562, + "fields": { + "id_car_serie": 15250, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67564, + "fields": { + "id_car_serie": 15251, + "name": "3.3 MT (300 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67567, + "fields": { + "id_car_serie": 14661, + "name": "2.8 FSI S tronic (220 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67568, + "fields": { + "id_car_serie": 14661, + "name": "3.0 TDI S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67569, + "fields": { + "id_car_serie": 14660, + "name": "2.8 FSI S tronic quattro (220 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67570, + "fields": { + "id_car_serie": 14660, + "name": "3.0 TDI S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67598, + "fields": { + "id_car_serie": 9459, + "name": "2.1d AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67612, + "fields": { + "id_car_serie": 3719, + "name": "3.0 AT (333 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67613, + "fields": { + "id_car_serie": 3719, + "name": "3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67614, + "fields": { + "id_car_serie": 3719, + "name": "4.7 AT (435 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67622, + "fields": { + "id_car_serie": 4076, + "name": "2.0 dCi MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67623, + "fields": { + "id_car_serie": 4140, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67624, + "fields": { + "id_car_serie": 4140, + "name": "1.9 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67625, + "fields": { + "id_car_serie": 4537, + "name": "1.6 D2 Powershift (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67626, + "fields": { + "id_car_serie": 4537, + "name": "2.0 T5 Geartronic (245 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67627, + "fields": { + "id_car_serie": 4537, + "name": "2.0 D4 Geartronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67628, + "fields": { + "id_car_serie": 4537, + "name": "2.0 D4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67648, + "fields": { + "id_car_serie": 6134, + "name": "1.4TDCi MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67650, + "fields": { + "id_car_serie": 6134, + "name": "1.6TDCi ECOnetic MT (89 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67651, + "fields": { + "id_car_serie": 6134, + "name": "1.6TDCi MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67652, + "fields": { + "id_car_serie": 6134, + "name": "1.6 TDCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67655, + "fields": { + "id_car_serie": 6134, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67656, + "fields": { + "id_car_serie": 6134, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67658, + "fields": { + "id_car_serie": 6135, + "name": "1.4 TDCi MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67661, + "fields": { + "id_car_serie": 6135, + "name": "1.6 TDCi MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67662, + "fields": { + "id_car_serie": 6135, + "name": "1.6 TDCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67684, + "fields": { + "id_car_serie": 6148, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67685, + "fields": { + "id_car_serie": 6148, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67686, + "fields": { + "id_car_serie": 6148, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67687, + "fields": { + "id_car_serie": 6148, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67688, + "fields": { + "id_car_serie": 6148, + "name": "1.6 TDCi MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67689, + "fields": { + "id_car_serie": 6148, + "name": "1.6 TDCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67690, + "fields": { + "id_car_serie": 6148, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67691, + "fields": { + "id_car_serie": 6148, + "name": "1.8 FlexiFuel MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67692, + "fields": { + "id_car_serie": 6148, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67693, + "fields": { + "id_car_serie": 6148, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67694, + "fields": { + "id_car_serie": 6148, + "name": "2.0 TDCi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67696, + "fields": { + "id_car_serie": 6158, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67697, + "fields": { + "id_car_serie": 6158, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67698, + "fields": { + "id_car_serie": 6158, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67699, + "fields": { + "id_car_serie": 6158, + "name": "1.6 TDCi MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67700, + "fields": { + "id_car_serie": 6158, + "name": "1.6 TDCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67702, + "fields": { + "id_car_serie": 6158, + "name": "1.8 TDCi MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67706, + "fields": { + "id_car_serie": 6158, + "name": "2.0 TDCi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67720, + "fields": { + "id_car_serie": 6339, + "name": "1.5 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67721, + "fields": { + "id_car_serie": 6339, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67723, + "fields": { + "id_car_serie": 6736, + "name": "1.8 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67726, + "fields": { + "id_car_serie": 7652, + "name": "1.6i MT AWD (115 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67727, + "fields": { + "id_car_serie": 7652, + "name": "1.6i Lineartronic (115 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67728, + "fields": { + "id_car_serie": 7652, + "name": "1.6i Lineartronic AWD (115 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67729, + "fields": { + "id_car_serie": 7652, + "name": "2.0i Lineartronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67730, + "fields": { + "id_car_serie": 7652, + "name": "2.0i Lineartronic AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67737, + "fields": { + "id_car_serie": 7655, + "name": "1.5 AT R AWD (110 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67738, + "fields": { + "id_car_serie": 7655, + "name": "1.5 AT I (100 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67739, + "fields": { + "id_car_serie": 7655, + "name": "1.5 MT I AWD (100 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67740, + "fields": { + "id_car_serie": 7655, + "name": "1.5 MT I (100 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67758, + "fields": { + "id_car_serie": 7656, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67759, + "fields": { + "id_car_serie": 7656, + "name": "2.0 AT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67760, + "fields": { + "id_car_serie": 7656, + "name": "2.0 MT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67761, + "fields": { + "id_car_serie": 7656, + "name": "2.0 MT AWD (218 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67762, + "fields": { + "id_car_serie": 53579, + "name": "2.5 MT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67765, + "fields": { + "id_car_serie": 7978, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67766, + "fields": { + "id_car_serie": 7978, + "name": "1.4 TSI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67767, + "fields": { + "id_car_serie": 7978, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67768, + "fields": { + "id_car_serie": 7978, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67770, + "fields": { + "id_car_serie": 7978, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67771, + "fields": { + "id_car_serie": 7978, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67772, + "fields": { + "id_car_serie": 7978, + "name": "1.4 FSI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67773, + "fields": { + "id_car_serie": 7978, + "name": "1.6 Tiptronic (102 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67774, + "fields": { + "id_car_serie": 7978, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67775, + "fields": { + "id_car_serie": 7978, + "name": "1.6 FSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67776, + "fields": { + "id_car_serie": 7978, + "name": "1.9 TDI 6MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67777, + "fields": { + "id_car_serie": 7978, + "name": "1.9 TDI 4Motion MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67778, + "fields": { + "id_car_serie": 7978, + "name": "1.9 TDI BlueMotion MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67779, + "fields": { + "id_car_serie": 7978, + "name": "1.9 TDI 5MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67780, + "fields": { + "id_car_serie": 7978, + "name": "2.0 FSI AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67781, + "fields": { + "id_car_serie": 7978, + "name": "2.0 FSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67783, + "fields": { + "id_car_serie": 7978, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67785, + "fields": { + "id_car_serie": 7978, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67786, + "fields": { + "id_car_serie": 7978, + "name": "2.0 TDI 4Motion MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67788, + "fields": { + "id_car_serie": 7978, + "name": "2.0 SDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67791, + "fields": { + "id_car_serie": 9027, + "name": "S 3.4 MT (325 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67792, + "fields": { + "id_car_serie": 8981, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67793, + "fields": { + "id_car_serie": 8981, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67796, + "fields": { + "id_car_serie": 8981, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67797, + "fields": { + "id_car_serie": 8981, + "name": "1.9 D MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67798, + "fields": { + "id_car_serie": 8981, + "name": "2.0 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67799, + "fields": { + "id_car_serie": 14694, + "name": "3.6 Tiptronic S AWD (300 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67800, + "fields": { + "id_car_serie": 14694, + "name": "Turbo S 4.8 Tiptronic S AWD (570 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67802, + "fields": { + "id_car_serie": 14826, + "name": "1.8 T MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67803, + "fields": { + "id_car_serie": 14832, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67804, + "fields": { + "id_car_serie": 14832, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67805, + "fields": { + "id_car_serie": 14832, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67806, + "fields": { + "id_car_serie": 14832, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67807, + "fields": { + "id_car_serie": 14832, + "name": "1.4 TDI MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67808, + "fields": { + "id_car_serie": 14832, + "name": "1.4 TDI MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67809, + "fields": { + "id_car_serie": 14832, + "name": "1.9 TDI MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67810, + "fields": { + "id_car_serie": 14832, + "name": "1.9 SDI MT (64 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67811, + "fields": { + "id_car_serie": 14832, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67812, + "fields": { + "id_car_serie": 15111, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67813, + "fields": { + "id_car_serie": 15111, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67814, + "fields": { + "id_car_serie": 15111, + "name": "1.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67815, + "fields": { + "id_car_serie": 15111, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67816, + "fields": { + "id_car_serie": 15111, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67824, + "fields": { + "id_car_serie": 15004, + "name": "2.3 T MT (260 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67825, + "fields": { + "id_car_serie": 15004, + "name": "2.3 T MT (265 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67829, + "fields": { + "id_car_serie": 15081, + "name": "1.4 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67830, + "fields": { + "id_car_serie": 15081, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67831, + "fields": { + "id_car_serie": 15081, + "name": "1.5 dCi MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67832, + "fields": { + "id_car_serie": 15081, + "name": "1.5 dCi MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67833, + "fields": { + "id_car_serie": 15081, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67834, + "fields": { + "id_car_serie": 15401, + "name": "3.0 AT Overdrive (228 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67835, + "fields": { + "id_car_serie": 15401, + "name": "3.0 Twin-Turbo AT Overdrive (280 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67836, + "fields": { + "id_car_serie": 15401, + "name": "3.0 AT Overdrive (223 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67837, + "fields": { + "id_car_serie": 15401, + "name": "3.0 MT Overdrive (228 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67838, + "fields": { + "id_car_serie": 15401, + "name": "3.0 Twin-Turbo MT Overdrive (280 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67843, + "fields": { + "id_car_serie": 15396, + "name": "2.0 CVT (158 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67844, + "fields": { + "id_car_serie": 15396, + "name": "2.0 CVT (158 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67848, + "fields": { + "id_car_serie": 15396, + "name": "2.0 MT (158 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67849, + "fields": { + "id_car_serie": 15396, + "name": "2.0 MT (158 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67860, + "fields": { + "id_car_serie": 15395, + "name": "2.5 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67861, + "fields": { + "id_car_serie": 15395, + "name": "2.5 AT 4WD (203 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67862, + "fields": { + "id_car_serie": 15395, + "name": "3.5 AT (318 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67868, + "fields": { + "id_car_serie": 15381, + "name": "3.0 MT AWD (145 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67876, + "fields": { + "id_car_serie": 15258, + "name": "1.4 TFSI S-tronic (125 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67877, + "fields": { + "id_car_serie": 15258, + "name": "1.4 TFSI S-tronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67878, + "fields": { + "id_car_serie": 15258, + "name": "1.4 TFSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67879, + "fields": { + "id_car_serie": 15258, + "name": "1.4 TFSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67880, + "fields": { + "id_car_serie": 15258, + "name": "1.4 TDI S-tronic (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67881, + "fields": { + "id_car_serie": 15258, + "name": "1.4 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67882, + "fields": { + "id_car_serie": 15258, + "name": "1.6 TDI S-tronic (116 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67883, + "fields": { + "id_car_serie": 15258, + "name": "1.6 TDI MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67884, + "fields": { + "id_car_serie": 15258, + "name": "1.8 TFSI S-tronic (192 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67885, + "fields": { + "id_car_serie": 15263, + "name": "1.3 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67892, + "fields": { + "id_car_serie": 15263, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67894, + "fields": { + "id_car_serie": 15266, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67895, + "fields": { + "id_car_serie": 15266, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67897, + "fields": { + "id_car_serie": 15266, + "name": "1.6 TD AMT (90 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67899, + "fields": { + "id_car_serie": 15266, + "name": "1.6 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67900, + "fields": { + "id_car_serie": 15266, + "name": "2.0 TD MT Maxi (135 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67911, + "fields": { + "id_car_serie": 15277, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67912, + "fields": { + "id_car_serie": 15277, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67913, + "fields": { + "id_car_serie": 15286, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67914, + "fields": { + "id_car_serie": 15286, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67915, + "fields": { + "id_car_serie": 15286, + "name": "2.7 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67916, + "fields": { + "id_car_serie": 15286, + "name": "2.7 6MT (174 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67917, + "fields": { + "id_car_serie": 15288, + "name": "5.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67922, + "fields": { + "id_car_serie": 15296, + "name": "1.1 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67923, + "fields": { + "id_car_serie": 15296, + "name": "1.3 Allshift (95 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67924, + "fields": { + "id_car_serie": 15296, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67925, + "fields": { + "id_car_serie": 15296, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67926, + "fields": { + "id_car_serie": 15302, + "name": "3.2 DI-D AT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67927, + "fields": { + "id_car_serie": 15302, + "name": "3.2 DI-D AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67928, + "fields": { + "id_car_serie": 15302, + "name": "3.2 DI-D MT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67931, + "fields": { + "id_car_serie": 15302, + "name": "3.8 AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67940, + "fields": { + "id_car_serie": 15307, + "name": "3.8 MT (408 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67945, + "fields": { + "id_car_serie": 15317, + "name": "1.5 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67946, + "fields": { + "id_car_serie": 15317, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67947, + "fields": { + "id_car_serie": 15318, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67948, + "fields": { + "id_car_serie": 15318, + "name": "2.5 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67949, + "fields": { + "id_car_serie": 15262, + "name": "3.8 AT (208 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67950, + "fields": { + "id_car_serie": 15262, + "name": "3.8 AT (243 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67952, + "fields": { + "id_car_serie": 15294, + "name": "3.5 S MT (350 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67971, + "fields": { + "id_car_serie": 15414, + "name": "3.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67972, + "fields": { + "id_car_serie": 15259, + "name": "1.4 TFSI S-Tronic (125 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67973, + "fields": { + "id_car_serie": 15259, + "name": "1.4 TFSI S-Tronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67974, + "fields": { + "id_car_serie": 15259, + "name": "1.4 TFSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67975, + "fields": { + "id_car_serie": 15259, + "name": "1.4 TFSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67976, + "fields": { + "id_car_serie": 15259, + "name": "1.4 TDI S-Tronic (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67977, + "fields": { + "id_car_serie": 15259, + "name": "1.4 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67978, + "fields": { + "id_car_serie": 15259, + "name": "1.6 TDI S-Tronic (116 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67979, + "fields": { + "id_car_serie": 15259, + "name": "1.6 TDI MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67980, + "fields": { + "id_car_serie": 15259, + "name": "1.8 TFSI S-Tronic (192 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 67990, + "fields": { + "id_car_serie": 15260, + "name": "2.0 TFSI quattro MT (256 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67991, + "fields": { + "id_car_serie": 15261, + "name": "1.2 TFSI MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67992, + "fields": { + "id_car_serie": 15261, + "name": "1.4 TFSI S-tronic (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67994, + "fields": { + "id_car_serie": 15261, + "name": "1.4 TFSI S-tronic (185 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67995, + "fields": { + "id_car_serie": 15261, + "name": "1.4 TFSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67996, + "fields": { + "id_car_serie": 15261, + "name": "1.4 TFSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67997, + "fields": { + "id_car_serie": 15261, + "name": "1.6 TDI S-tronic (90 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67998, + "fields": { + "id_car_serie": 15261, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 67999, + "fields": { + "id_car_serie": 15261, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68000, + "fields": { + "id_car_serie": 15261, + "name": "2.0 TDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68004, + "fields": { + "id_car_serie": 15264, + "name": "1.5 AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68005, + "fields": { + "id_car_serie": 15264, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68006, + "fields": { + "id_car_serie": 15264, + "name": "1.5 MT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68009, + "fields": { + "id_car_serie": 15265, + "name": "1.3 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68010, + "fields": { + "id_car_serie": 15265, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68011, + "fields": { + "id_car_serie": 15265, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68012, + "fields": { + "id_car_serie": 15265, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68013, + "fields": { + "id_car_serie": 15265, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68014, + "fields": { + "id_car_serie": 15265, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68016, + "fields": { + "id_car_serie": 15265, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68056, + "fields": { + "id_car_serie": 15273, + "name": "1.0 EcoBoost MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68058, + "fields": { + "id_car_serie": 15273, + "name": "1.5 EcoBoost MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68059, + "fields": { + "id_car_serie": 15273, + "name": "1.6 TDCi Duratorq MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68061, + "fields": { + "id_car_serie": 15273, + "name": "2.0 EcoBoost AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68062, + "fields": { + "id_car_serie": 15273, + "name": "2.0 EcoBoost AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68063, + "fields": { + "id_car_serie": 15273, + "name": "2.0 TDCi Duratorq AMT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68064, + "fields": { + "id_car_serie": 15273, + "name": "2.0 Hybrid Duratec AT (187 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68065, + "fields": { + "id_car_serie": 15273, + "name": "2.0 TDCi Duratorq MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68066, + "fields": { + "id_car_serie": 15273, + "name": "2.0 TDCi Duratorq MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68067, + "fields": { + "id_car_serie": 15273, + "name": "2.0 EcoBoost MT (203 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68068, + "fields": { + "id_car_serie": 15273, + "name": "2.0 TDCi Duratorq MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68069, + "fields": { + "id_car_serie": 15274, + "name": "1.0 EcoBoost MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68070, + "fields": { + "id_car_serie": 15274, + "name": "1.5 EcoBoost MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68072, + "fields": { + "id_car_serie": 15274, + "name": "1.6 TDCi Duratorq MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68075, + "fields": { + "id_car_serie": 15274, + "name": "2.0 EcoBoost AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68076, + "fields": { + "id_car_serie": 15274, + "name": "2.0 Hybrid Duratec AT (187 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68077, + "fields": { + "id_car_serie": 15274, + "name": "2.0 EcoBoost AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68078, + "fields": { + "id_car_serie": 15274, + "name": "2.0 TDCi Duratorq MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68079, + "fields": { + "id_car_serie": 15274, + "name": "2.0 TDCi Duratorq AMT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68080, + "fields": { + "id_car_serie": 15274, + "name": "2.0 TDCi Duratorq MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68081, + "fields": { + "id_car_serie": 15274, + "name": "2.0 TDCi Duratorq AMT (180 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68082, + "fields": { + "id_car_serie": 15275, + "name": "3.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68083, + "fields": { + "id_car_serie": 15275, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68084, + "fields": { + "id_car_serie": 15276, + "name": "3.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68085, + "fields": { + "id_car_serie": 15276, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68086, + "fields": { + "id_car_serie": 15278, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68087, + "fields": { + "id_car_serie": 15278, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68094, + "fields": { + "id_car_serie": 15278, + "name": "2.2 CTDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68097, + "fields": { + "id_car_serie": 15280, + "name": "1.8 I-SHIFT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68099, + "fields": { + "id_car_serie": 15280, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68100, + "fields": { + "id_car_serie": 15280, + "name": "2.2 CTDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68101, + "fields": { + "id_car_serie": 15281, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68102, + "fields": { + "id_car_serie": 15281, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68103, + "fields": { + "id_car_serie": 15281, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68104, + "fields": { + "id_car_serie": 15281, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68107, + "fields": { + "id_car_serie": 15282, + "name": "1.7 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68108, + "fields": { + "id_car_serie": 15282, + "name": "1.7 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68109, + "fields": { + "id_car_serie": 15282, + "name": "1.7 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68110, + "fields": { + "id_car_serie": 15282, + "name": "1.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68111, + "fields": { + "id_car_serie": 15283, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68112, + "fields": { + "id_car_serie": 15283, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68113, + "fields": { + "id_car_serie": 15283, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68114, + "fields": { + "id_car_serie": 15283, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68115, + "fields": { + "id_car_serie": 15283, + "name": "1.7 CTDi MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68133, + "fields": { + "id_car_serie": 15287, + "name": "2.0 AT (142 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68134, + "fields": { + "id_car_serie": 15287, + "name": "2.0 MT (142 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68135, + "fields": { + "id_car_serie": 15289, + "name": "5.0 AT (385 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68136, + "fields": { + "id_car_serie": 15290, + "name": "5.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68137, + "fields": { + "id_car_serie": 15291, + "name": "5.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68138, + "fields": { + "id_car_serie": 15292, + "name": "4.2 MT (395 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68139, + "fields": { + "id_car_serie": 15293, + "name": "4.2 AT (298 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68140, + "fields": { + "id_car_serie": 15297, + "name": "1.1 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68141, + "fields": { + "id_car_serie": 15297, + "name": "1.3 Allshift (95 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68142, + "fields": { + "id_car_serie": 15297, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68143, + "fields": { + "id_car_serie": 15297, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68152, + "fields": { + "id_car_serie": 15300, + "name": "2.4 AT (172 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68155, + "fields": { + "id_car_serie": 15301, + "name": "2.0 CVT 2WD (147 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68156, + "fields": { + "id_car_serie": 15301, + "name": "2.0 CVT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68158, + "fields": { + "id_car_serie": 15301, + "name": "2.0 MT 2WD (147 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68159, + "fields": { + "id_car_serie": 15301, + "name": "2.4 CVT 2WD (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68163, + "fields": { + "id_car_serie": 15301, + "name": "3.0 AT 4WD (223 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68170, + "fields": { + "id_car_serie": 15303, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68187, + "fields": { + "id_car_serie": 15305, + "name": "3.0 MT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68190, + "fields": { + "id_car_serie": 15305, + "name": "3.0 AT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68193, + "fields": { + "id_car_serie": 15305, + "name": "3.2 DI-D AT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68194, + "fields": { + "id_car_serie": 15305, + "name": "3.2 DI-D AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68195, + "fields": { + "id_car_serie": 15305, + "name": "3.2 DI-D MT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68196, + "fields": { + "id_car_serie": 15305, + "name": "3.2 DI-D MT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68197, + "fields": { + "id_car_serie": 15305, + "name": "3.5 AT AWD (189 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68199, + "fields": { + "id_car_serie": 15305, + "name": "3.8 AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68216, + "fields": { + "id_car_serie": 15310, + "name": "3.6 MT GT3 (420 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68225, + "fields": { + "id_car_serie": 15311, + "name": "3.6 MT Turbo (420 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68231, + "fields": { + "id_car_serie": 15312, + "name": "3.6 MT Carrera 4 (320 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68232, + "fields": { + "id_car_serie": 15312, + "name": "3.6 MT Carrera (320 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68233, + "fields": { + "id_car_serie": 15313, + "name": "2.9 PDK (255 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68234, + "fields": { + "id_car_serie": 15313, + "name": "2.9 MT (255 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68235, + "fields": { + "id_car_serie": 15313, + "name": "S 3.4 PDK (310 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68236, + "fields": { + "id_car_serie": 15313, + "name": "S 3.4 MT (310 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68240, + "fields": { + "id_car_serie": 15314, + "name": "3.4 PDK (295 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68241, + "fields": { + "id_car_serie": 15314, + "name": "3.4 MT (310 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68243, + "fields": { + "id_car_serie": 15315, + "name": "2.7 MT (224 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68246, + "fields": { + "id_car_serie": 15319, + "name": "2.4 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68247, + "fields": { + "id_car_serie": 15319, + "name": "2.4 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68248, + "fields": { + "id_car_serie": 15320, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68249, + "fields": { + "id_car_serie": 15320, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68255, + "fields": { + "id_car_serie": 15320, + "name": "1.8 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68274, + "fields": { + "id_car_serie": 15321, + "name": "2.0 FSI AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68275, + "fields": { + "id_car_serie": 15321, + "name": "2.0 TDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68276, + "fields": { + "id_car_serie": 15321, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68284, + "fields": { + "id_car_serie": 15323, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68286, + "fields": { + "id_car_serie": 15323, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68287, + "fields": { + "id_car_serie": 15323, + "name": "1.7 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68288, + "fields": { + "id_car_serie": 15324, + "name": "1.2 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68289, + "fields": { + "id_car_serie": 15324, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68290, + "fields": { + "id_car_serie": 15324, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68291, + "fields": { + "id_car_serie": 15324, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68292, + "fields": { + "id_car_serie": 15324, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68293, + "fields": { + "id_car_serie": 15324, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68296, + "fields": { + "id_car_serie": 15324, + "name": "1.9 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68297, + "fields": { + "id_car_serie": 15324, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68299, + "fields": { + "id_car_serie": 15325, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68300, + "fields": { + "id_car_serie": 15325, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68301, + "fields": { + "id_car_serie": 15325, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68303, + "fields": { + "id_car_serie": 15325, + "name": "1.8 T AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68304, + "fields": { + "id_car_serie": 15325, + "name": "1.8 T MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68305, + "fields": { + "id_car_serie": 15325, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68306, + "fields": { + "id_car_serie": 15325, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68307, + "fields": { + "id_car_serie": 15325, + "name": "1.9 TDI Euro IV MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68308, + "fields": { + "id_car_serie": 15325, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68309, + "fields": { + "id_car_serie": 15325, + "name": "1.9 SDI MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68310, + "fields": { + "id_car_serie": 15325, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68311, + "fields": { + "id_car_serie": 15325, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68312, + "fields": { + "id_car_serie": 15325, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68313, + "fields": { + "id_car_serie": 15326, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68314, + "fields": { + "id_car_serie": 15326, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68315, + "fields": { + "id_car_serie": 15326, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68317, + "fields": { + "id_car_serie": 15326, + "name": "1.8 T AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68318, + "fields": { + "id_car_serie": 15326, + "name": "1.8 T Euro IV MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68319, + "fields": { + "id_car_serie": 15326, + "name": "1.8 T MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68320, + "fields": { + "id_car_serie": 15326, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68322, + "fields": { + "id_car_serie": 15326, + "name": "1.9 TDI MT 4x4 (101 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68323, + "fields": { + "id_car_serie": 15326, + "name": "1.9 TDI Euro IV MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68324, + "fields": { + "id_car_serie": 15326, + "name": "1.9 TDI MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68325, + "fields": { + "id_car_serie": 15326, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68326, + "fields": { + "id_car_serie": 15326, + "name": "1.9 SDI MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68327, + "fields": { + "id_car_serie": 15326, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68328, + "fields": { + "id_car_serie": 15326, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68329, + "fields": { + "id_car_serie": 15326, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68330, + "fields": { + "id_car_serie": 15326, + "name": "2.0 MT 4x4 (116 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68331, + "fields": { + "id_car_serie": 15326, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68336, + "fields": { + "id_car_serie": 15327, + "name": "1.9 TDI MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68339, + "fields": { + "id_car_serie": 15327, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68340, + "fields": { + "id_car_serie": 15327, + "name": "2.5 TDI Tiptronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68341, + "fields": { + "id_car_serie": 15327, + "name": "2.5 TDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68342, + "fields": { + "id_car_serie": 15327, + "name": "2.8 Tiptronic (193 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68343, + "fields": { + "id_car_serie": 15327, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68344, + "fields": { + "id_car_serie": 15328, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68345, + "fields": { + "id_car_serie": 15328, + "name": "1.8 CVT AWD (131 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68346, + "fields": { + "id_car_serie": 15328, + "name": "1.8 CVT FWD (143 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68347, + "fields": { + "id_car_serie": 15328, + "name": "2.0 CVT (152 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68348, + "fields": { + "id_car_serie": 15329, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68349, + "fields": { + "id_car_serie": 15329, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68350, + "fields": { + "id_car_serie": 15329, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68352, + "fields": { + "id_car_serie": 15330, + "name": "3.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68353, + "fields": { + "id_car_serie": 15331, + "name": "3.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68354, + "fields": { + "id_car_serie": 15332, + "name": "3.0 AT (213 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68355, + "fields": { + "id_car_serie": 15333, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68356, + "fields": { + "id_car_serie": 15334, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68357, + "fields": { + "id_car_serie": 15334, + "name": "1.8 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68358, + "fields": { + "id_car_serie": 15334, + "name": "1.8 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68359, + "fields": { + "id_car_serie": 15334, + "name": "2.0 CVT (152 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68360, + "fields": { + "id_car_serie": 15334, + "name": "2.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68365, + "fields": { + "id_car_serie": 15335, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68366, + "fields": { + "id_car_serie": 15335, + "name": "1.8 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68367, + "fields": { + "id_car_serie": 15335, + "name": "1.8 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68368, + "fields": { + "id_car_serie": 15335, + "name": "2.0 CVT (152 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68369, + "fields": { + "id_car_serie": 15335, + "name": "2.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68374, + "fields": { + "id_car_serie": 15336, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68375, + "fields": { + "id_car_serie": 15336, + "name": "1.8 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68376, + "fields": { + "id_car_serie": 15336, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68377, + "fields": { + "id_car_serie": 15336, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68378, + "fields": { + "id_car_serie": 15336, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68379, + "fields": { + "id_car_serie": 15336, + "name": "2.0 D MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68380, + "fields": { + "id_car_serie": 15336, + "name": "2.2 D MT (148 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68381, + "fields": { + "id_car_serie": 15336, + "name": "2.2 D MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68382, + "fields": { + "id_car_serie": 15336, + "name": "2.4 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68383, + "fields": { + "id_car_serie": 15337, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68385, + "fields": { + "id_car_serie": 15337, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68387, + "fields": { + "id_car_serie": 15337, + "name": "2.0 D MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68388, + "fields": { + "id_car_serie": 15338, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68390, + "fields": { + "id_car_serie": 15338, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68391, + "fields": { + "id_car_serie": 15338, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68394, + "fields": { + "id_car_serie": 15338, + "name": "2.2 D MT (148 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68395, + "fields": { + "id_car_serie": 15338, + "name": "2.2 D MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68396, + "fields": { + "id_car_serie": 15338, + "name": "2.4 D MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68397, + "fields": { + "id_car_serie": 15339, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68398, + "fields": { + "id_car_serie": 15339, + "name": "1.8 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68399, + "fields": { + "id_car_serie": 15339, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68401, + "fields": { + "id_car_serie": 15339, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68403, + "fields": { + "id_car_serie": 15339, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68404, + "fields": { + "id_car_serie": 15339, + "name": "2.0 D4-D MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68406, + "fields": { + "id_car_serie": 15340, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68407, + "fields": { + "id_car_serie": 15340, + "name": "1.8 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68408, + "fields": { + "id_car_serie": 15340, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68410, + "fields": { + "id_car_serie": 15340, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68412, + "fields": { + "id_car_serie": 15340, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68413, + "fields": { + "id_car_serie": 15340, + "name": "2.0 D4-D MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68415, + "fields": { + "id_car_serie": 15341, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68418, + "fields": { + "id_car_serie": 15341, + "name": "2.0 D4-D MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68421, + "fields": { + "id_car_serie": 15342, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68423, + "fields": { + "id_car_serie": 15343, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68424, + "fields": { + "id_car_serie": 15343, + "name": "1.4 HDi MT (55 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68427, + "fields": { + "id_car_serie": 15344, + "name": "1.4 HDi MT (55 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68428, + "fields": { + "id_car_serie": 15345, + "name": "1.3 AT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68429, + "fields": { + "id_car_serie": 15345, + "name": "1.3 AT 2WD (92 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68430, + "fields": { + "id_car_serie": 15345, + "name": "1.5 AT 2WD (109 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68433, + "fields": { + "id_car_serie": 15346, + "name": "1.5 AT 2WD (109 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68434, + "fields": { + "id_car_serie": 15347, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68436, + "fields": { + "id_car_serie": 15347, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68437, + "fields": { + "id_car_serie": 15347, + "name": "2.0 AT GT-FOUR (260 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68438, + "fields": { + "id_car_serie": 15348, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68439, + "fields": { + "id_car_serie": 15348, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68441, + "fields": { + "id_car_serie": 15348, + "name": "2.0 AT G (140 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68442, + "fields": { + "id_car_serie": 15348, + "name": "2.0 AT 4WD GT (190 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68443, + "fields": { + "id_car_serie": 15348, + "name": "2.0 AT GT (190 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68444, + "fields": { + "id_car_serie": 15348, + "name": "2.0 AT 4WD GT-T (260 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68446, + "fields": { + "id_car_serie": 15348, + "name": "2.0 MT 4WD GT-T (260 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68469, + "fields": { + "id_car_serie": 15351, + "name": "1.8 VT-i AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68470, + "fields": { + "id_car_serie": 15351, + "name": "1.8 GT-R AT (183 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68471, + "fields": { + "id_car_serie": 15351, + "name": "1.8 VVTL - i Sport AT (192 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68472, + "fields": { + "id_car_serie": 15351, + "name": "1.8 VT-i MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68473, + "fields": { + "id_car_serie": 15351, + "name": "1.8 GT-R MT (183 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68474, + "fields": { + "id_car_serie": 15351, + "name": "1.8 VVTL - i Sport MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68486, + "fields": { + "id_car_serie": 15354, + "name": "4.3 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68487, + "fields": { + "id_car_serie": 15355, + "name": "4.0 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68489, + "fields": { + "id_car_serie": 15357, + "name": "4.0 AT (193 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68490, + "fields": { + "id_car_serie": 15358, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68492, + "fields": { + "id_car_serie": 15358, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68493, + "fields": { + "id_car_serie": 15358, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68494, + "fields": { + "id_car_serie": 15358, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68495, + "fields": { + "id_car_serie": 15358, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68496, + "fields": { + "id_car_serie": 15358, + "name": "2.5 Turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68498, + "fields": { + "id_car_serie": 15358, + "name": "2.5 Turbo MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68499, + "fields": { + "id_car_serie": 15358, + "name": "2.4 TD AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68500, + "fields": { + "id_car_serie": 15358, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68501, + "fields": { + "id_car_serie": 15359, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68502, + "fields": { + "id_car_serie": 15359, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68503, + "fields": { + "id_car_serie": 15359, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68504, + "fields": { + "id_car_serie": 15359, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68505, + "fields": { + "id_car_serie": 15359, + "name": "2.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68506, + "fields": { + "id_car_serie": 15359, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68507, + "fields": { + "id_car_serie": 15359, + "name": "2.5 Twin-Turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68508, + "fields": { + "id_car_serie": 15359, + "name": "2.5 Twin-Turbo MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68509, + "fields": { + "id_car_serie": 15359, + "name": "2.4 TD AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68510, + "fields": { + "id_car_serie": 15359, + "name": "2.4 TD MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68511, + "fields": { + "id_car_serie": 15359, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68516, + "fields": { + "id_car_serie": 15360, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68519, + "fields": { + "id_car_serie": 15360, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68522, + "fields": { + "id_car_serie": 15360, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68544, + "fields": { + "id_car_serie": 15363, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68546, + "fields": { + "id_car_serie": 15363, + "name": "1.4 D-4D MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68547, + "fields": { + "id_car_serie": 15363, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68548, + "fields": { + "id_car_serie": 15363, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68549, + "fields": { + "id_car_serie": 15363, + "name": "1.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68559, + "fields": { + "id_car_serie": 15365, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68561, + "fields": { + "id_car_serie": 15365, + "name": "1.4 D-4D MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68563, + "fields": { + "id_car_serie": 15365, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68564, + "fields": { + "id_car_serie": 15365, + "name": "2.0 D-4D MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68571, + "fields": { + "id_car_serie": 15366, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68582, + "fields": { + "id_car_serie": 15367, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68592, + "fields": { + "id_car_serie": 15368, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68601, + "fields": { + "id_car_serie": 15369, + "name": "1.8 3AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68602, + "fields": { + "id_car_serie": 15369, + "name": "1.8 MT Overdrive (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68606, + "fields": { + "id_car_serie": 15370, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68607, + "fields": { + "id_car_serie": 15370, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68608, + "fields": { + "id_car_serie": 15370, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68609, + "fields": { + "id_car_serie": 15370, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68610, + "fields": { + "id_car_serie": 15370, + "name": "1.5 AT (67 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68611, + "fields": { + "id_car_serie": 15370, + "name": "1.5 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68612, + "fields": { + "id_car_serie": 15371, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68613, + "fields": { + "id_car_serie": 15371, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68614, + "fields": { + "id_car_serie": 15371, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68615, + "fields": { + "id_car_serie": 15371, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68616, + "fields": { + "id_car_serie": 15371, + "name": "1.5 AT (67 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68617, + "fields": { + "id_car_serie": 15371, + "name": "1.5 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68618, + "fields": { + "id_car_serie": 15372, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68619, + "fields": { + "id_car_serie": 15372, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68620, + "fields": { + "id_car_serie": 15372, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68621, + "fields": { + "id_car_serie": 15372, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68622, + "fields": { + "id_car_serie": 15372, + "name": "1.5 AT (67 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68623, + "fields": { + "id_car_serie": 15372, + "name": "1.5 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68625, + "fields": { + "id_car_serie": 15373, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68626, + "fields": { + "id_car_serie": 15373, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68627, + "fields": { + "id_car_serie": 15373, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68628, + "fields": { + "id_car_serie": 15373, + "name": "2.5 Twin-Turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68629, + "fields": { + "id_car_serie": 15373, + "name": "2.4 TD AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68630, + "fields": { + "id_car_serie": 15373, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68631, + "fields": { + "id_car_serie": 15374, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68632, + "fields": { + "id_car_serie": 15374, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68633, + "fields": { + "id_car_serie": 15374, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68634, + "fields": { + "id_car_serie": 15374, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68635, + "fields": { + "id_car_serie": 15374, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68636, + "fields": { + "id_car_serie": 15374, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68637, + "fields": { + "id_car_serie": 15374, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68638, + "fields": { + "id_car_serie": 15374, + "name": "2.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68642, + "fields": { + "id_car_serie": 15374, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68657, + "fields": { + "id_car_serie": 15377, + "name": "2.7 MT (151 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68661, + "fields": { + "id_car_serie": 15377, + "name": "3.0 D MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68670, + "fields": { + "id_car_serie": 15378, + "name": "3.0 TD AT 8seat (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68671, + "fields": { + "id_car_serie": 15378, + "name": "3.0 AT 4WD 7seat (140 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68672, + "fields": { + "id_car_serie": 15378, + "name": "3.0 TD AT 7seat (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68674, + "fields": { + "id_car_serie": 15378, + "name": "3.0 AT 4WD 8seat (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68675, + "fields": { + "id_car_serie": 15378, + "name": "3.4 AT 4WD 7seat (180 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68676, + "fields": { + "id_car_serie": 15378, + "name": "3.4 AT 7seat (180 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68679, + "fields": { + "id_car_serie": 15379, + "name": "2.7 AT (187 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68681, + "fields": { + "id_car_serie": 15379, + "name": "3.5 AT 4WD (273 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68682, + "fields": { + "id_car_serie": 15379, + "name": "3.5 AT (270 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68689, + "fields": { + "id_car_serie": 15380, + "name": "3.3 AT (208 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68690, + "fields": { + "id_car_serie": 15380, + "name": "3.3 AT 4WD (208 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68691, + "fields": { + "id_car_serie": 15382, + "name": "3.0 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68692, + "fields": { + "id_car_serie": 15382, + "name": "3.0 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68693, + "fields": { + "id_car_serie": 15382, + "name": "3.0 TD AT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68694, + "fields": { + "id_car_serie": 15382, + "name": "3.0 TD MT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68699, + "fields": { + "id_car_serie": 15384, + "name": "2.4 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68700, + "fields": { + "id_car_serie": 15384, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68701, + "fields": { + "id_car_serie": 15385, + "name": "2.7 AT (187 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68704, + "fields": { + "id_car_serie": 15386, + "name": "2.4 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68705, + "fields": { + "id_car_serie": 15386, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68706, + "fields": { + "id_car_serie": 15386, + "name": "3.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68707, + "fields": { + "id_car_serie": 15386, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68710, + "fields": { + "id_car_serie": 15387, + "name": "4.5 Twin-Turbo D AT 4WD (7 places) (235 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68714, + "fields": { + "id_car_serie": 15387, + "name": "4.6 AT 4WD (7 places) (309 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68718, + "fields": { + "id_car_serie": 15388, + "name": "4.2 TD AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68719, + "fields": { + "id_car_serie": 15388, + "name": "4.2 D MT (131 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68720, + "fields": { + "id_car_serie": 15388, + "name": "4.2 TD MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68723, + "fields": { + "id_car_serie": 15388, + "name": "4.7 AT (238 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68743, + "fields": { + "id_car_serie": 15391, + "name": "2.7 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68744, + "fields": { + "id_car_serie": 15391, + "name": "3.0 D AT 4WD (7 places) (173 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68745, + "fields": { + "id_car_serie": 15391, + "name": "3.0 D AT 4WD (5 places) (173 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68746, + "fields": { + "id_car_serie": 15391, + "name": "3.0 D MT 4WD (5 places) (173 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68748, + "fields": { + "id_car_serie": 15392, + "name": "2.7 AT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68749, + "fields": { + "id_car_serie": 15392, + "name": "2.7 MT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68754, + "fields": { + "id_car_serie": 15392, + "name": "4.0 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68756, + "fields": { + "id_car_serie": 15393, + "name": "2.7 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68771, + "fields": { + "id_car_serie": 15397, + "name": "1.8 AT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68772, + "fields": { + "id_car_serie": 15397, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68773, + "fields": { + "id_car_serie": 15397, + "name": "1.8 MT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68774, + "fields": { + "id_car_serie": 15397, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68775, + "fields": { + "id_car_serie": 15397, + "name": "2.0 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68776, + "fields": { + "id_car_serie": 15397, + "name": "2.0 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68777, + "fields": { + "id_car_serie": 15397, + "name": "2.0 D AT AWD (116 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68778, + "fields": { + "id_car_serie": 15397, + "name": "2.0 D MT AWD (116 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68779, + "fields": { + "id_car_serie": 15398, + "name": "1.8 AT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68780, + "fields": { + "id_car_serie": 15398, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68781, + "fields": { + "id_car_serie": 15398, + "name": "1.8 MT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68782, + "fields": { + "id_car_serie": 15398, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68783, + "fields": { + "id_car_serie": 15398, + "name": "2.0 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68784, + "fields": { + "id_car_serie": 15398, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68785, + "fields": { + "id_car_serie": 15398, + "name": "2.0 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68786, + "fields": { + "id_car_serie": 15398, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68787, + "fields": { + "id_car_serie": 15398, + "name": "2.0 D AT AWD (116 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68788, + "fields": { + "id_car_serie": 15398, + "name": "2.0 D MT AWD (116 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68789, + "fields": { + "id_car_serie": 15398, + "name": "2.4 AT (167 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68791, + "fields": { + "id_car_serie": 15398, + "name": "2.4 CVT AWD (167 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68792, + "fields": { + "id_car_serie": 15398, + "name": "2.4 MT AWD (167 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68793, + "fields": { + "id_car_serie": 15399, + "name": "3.3 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68794, + "fields": { + "id_car_serie": 15399, + "name": "3.3 AT AWD (215 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68795, + "fields": { + "id_car_serie": 15399, + "name": "3.5 AT (266 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68796, + "fields": { + "id_car_serie": 15399, + "name": "3.5 AT AWD (266 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68797, + "fields": { + "id_car_serie": 15400, + "name": "2.5 AT GT (280 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68798, + "fields": { + "id_car_serie": 15400, + "name": "2.5 MT GT (280 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68799, + "fields": { + "id_car_serie": 15400, + "name": "3.0 AT GT (230 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68800, + "fields": { + "id_car_serie": 15400, + "name": "4.0 AT GT (265 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68801, + "fields": { + "id_car_serie": 15402, + "name": "2.7 AT (159 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68802, + "fields": { + "id_car_serie": 15402, + "name": "2.7 MT 4x4 (159 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68803, + "fields": { + "id_car_serie": 15402, + "name": "4.0 AT (236 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68804, + "fields": { + "id_car_serie": 15402, + "name": "4.0 MT 4x4 (236 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68805, + "fields": { + "id_car_serie": 15403, + "name": "2.7 AT (159 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68806, + "fields": { + "id_car_serie": 15403, + "name": "2.7 MT 4x4 (159 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68811, + "fields": { + "id_car_serie": 15404, + "name": "4.0 AT 4x4 L2 (236 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68812, + "fields": { + "id_car_serie": 15404, + "name": "4.0 MT 4x4 L1 (236 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68821, + "fields": { + "id_car_serie": 15405, + "name": "3.4 AT Overdrive (190 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68826, + "fields": { + "id_car_serie": 15406, + "name": "2.4 AT Overdrive (142 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68828, + "fields": { + "id_car_serie": 15406, + "name": "2.4 MT Overdrive (142 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68829, + "fields": { + "id_car_serie": 15406, + "name": "2.7 AT Overdrive (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68830, + "fields": { + "id_car_serie": 15406, + "name": "2.7 AT Overdrive 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68832, + "fields": { + "id_car_serie": 15406, + "name": "2.7 MT Overdrive 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68845, + "fields": { + "id_car_serie": 15407, + "name": "3.4 AT Overdrive (190 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68846, + "fields": { + "id_car_serie": 15407, + "name": "3.4 AT Overdrive 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68849, + "fields": { + "id_car_serie": 15408, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68850, + "fields": { + "id_car_serie": 15408, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68858, + "fields": { + "id_car_serie": 15410, + "name": "4.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68859, + "fields": { + "id_car_serie": 15410, + "name": "4.0 MT (245 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68861, + "fields": { + "id_car_serie": 15410, + "name": "4.7 AT 4WD (282 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68862, + "fields": { + "id_car_serie": 15410, + "name": "4.7 AT (282 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68864, + "fields": { + "id_car_serie": 15410, + "name": "4.7 MT 4WD (282 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68865, + "fields": { + "id_car_serie": 15410, + "name": "4.7 MT (282 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68871, + "fields": { + "id_car_serie": 15411, + "name": "4.7 AT 4WD (282 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68872, + "fields": { + "id_car_serie": 15411, + "name": "4.7 AT (282 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68890, + "fields": { + "id_car_serie": 15415, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68892, + "fields": { + "id_car_serie": 15415, + "name": "3.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68893, + "fields": { + "id_car_serie": 15416, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68894, + "fields": { + "id_car_serie": 15416, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68896, + "fields": { + "id_car_serie": 15417, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68899, + "fields": { + "id_car_serie": 15417, + "name": "1.3 6MMT (100 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68901, + "fields": { + "id_car_serie": 15417, + "name": "1.4 D-4D MT (89 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68902, + "fields": { + "id_car_serie": 15417, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68905, + "fields": { + "id_car_serie": 15418, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68908, + "fields": { + "id_car_serie": 15418, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68910, + "fields": { + "id_car_serie": 15418, + "name": "1.4 D-4D MT (89 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68911, + "fields": { + "id_car_serie": 15418, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68913, + "fields": { + "id_car_serie": 15419, + "name": "1.0 AT (65 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68914, + "fields": { + "id_car_serie": 15419, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68915, + "fields": { + "id_car_serie": 15419, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68916, + "fields": { + "id_car_serie": 15419, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68917, + "fields": { + "id_car_serie": 15419, + "name": "1.4 D-4D AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68918, + "fields": { + "id_car_serie": 15419, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68919, + "fields": { + "id_car_serie": 15419, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68920, + "fields": { + "id_car_serie": 15420, + "name": "1.0 AT (65 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68921, + "fields": { + "id_car_serie": 15420, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68922, + "fields": { + "id_car_serie": 15420, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68923, + "fields": { + "id_car_serie": 15420, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68924, + "fields": { + "id_car_serie": 15420, + "name": "1.4 D-4D AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68925, + "fields": { + "id_car_serie": 15420, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68926, + "fields": { + "id_car_serie": 15420, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68974, + "fields": { + "id_car_serie": 15434, + "name": "4.4 xDrive Steptronic (575 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 68975, + "fields": { + "id_car_serie": 15435, + "name": "4.4 AT (555 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68978, + "fields": { + "id_car_serie": 15436, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68980, + "fields": { + "id_car_serie": 15436, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68981, + "fields": { + "id_car_serie": 15436, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 68986, + "fields": { + "id_car_serie": 15438, + "name": "AT (67 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69052, + "fields": { + "id_car_serie": 15449, + "name": "5.5 AT (421 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69053, + "fields": { + "id_car_serie": 15450, + "name": "5.4 AT (360 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69054, + "fields": { + "id_car_serie": 15451, + "name": "5.4 AT (360 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69055, + "fields": { + "id_car_serie": 15452, + "name": "3.2 AT (354 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69057, + "fields": { + "id_car_serie": 15454, + "name": "5.5 AT (544 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69058, + "fields": { + "id_car_serie": 15454, + "name": "6.0 AT (630 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69059, + "fields": { + "id_car_serie": 15455, + "name": "6.0 AT (612 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69060, + "fields": { + "id_car_serie": 15455, + "name": "6.2 AT (514 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69061, + "fields": { + "id_car_serie": 15456, + "name": "5.4 AT (500 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69062, + "fields": { + "id_car_serie": 15456, + "name": "6.0 AT (612 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69063, + "fields": { + "id_car_serie": 15457, + "name": "5.4 AT (360 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69064, + "fields": { + "id_car_serie": 15457, + "name": "6.3 AT (444 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69066, + "fields": { + "id_car_serie": 15459, + "name": "2.3 MT (260 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69067, + "fields": { + "id_car_serie": 15460, + "name": "2.3 MT (263 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69070, + "fields": { + "id_car_serie": 15463, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69071, + "fields": { + "id_car_serie": 15463, + "name": "1.8 AMT (129 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69072, + "fields": { + "id_car_serie": 15463, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69073, + "fields": { + "id_car_serie": 15463, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69074, + "fields": { + "id_car_serie": 15463, + "name": "2.2 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69075, + "fields": { + "id_car_serie": 15463, + "name": "2.2 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69076, + "fields": { + "id_car_serie": 15464, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69077, + "fields": { + "id_car_serie": 15464, + "name": "1.8 AMT (129 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69078, + "fields": { + "id_car_serie": 15464, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69079, + "fields": { + "id_car_serie": 15464, + "name": "2.0 TD MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69080, + "fields": { + "id_car_serie": 15464, + "name": "2.2 TD MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69081, + "fields": { + "id_car_serie": 15464, + "name": "2.2 TD MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69087, + "fields": { + "id_car_serie": 15466, + "name": "4.0 AT (476 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69088, + "fields": { + "id_car_serie": 15466, + "name": "4.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69089, + "fields": { + "id_car_serie": 15467, + "name": "4.0 AT (476 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69090, + "fields": { + "id_car_serie": 15467, + "name": "4.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69091, + "fields": { + "id_car_serie": 15468, + "name": "6.2 AT (457 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69092, + "fields": { + "id_car_serie": 15468, + "name": "6.2 AT (487 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69093, + "fields": { + "id_car_serie": 15468, + "name": "6.2 AT (507 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69094, + "fields": { + "id_car_serie": 15469, + "name": "6.2 AT (457 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69095, + "fields": { + "id_car_serie": 15469, + "name": "6.2 AT (507 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69096, + "fields": { + "id_car_serie": 15470, + "name": "6.2 AT (457 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69097, + "fields": { + "id_car_serie": 15470, + "name": "6.2 AT (507 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69099, + "fields": { + "id_car_serie": 15472, + "name": "6.2 AT (457 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69100, + "fields": { + "id_car_serie": 15473, + "name": "5.4 AT (367 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69101, + "fields": { + "id_car_serie": 15474, + "name": "5.4 AT (367 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69102, + "fields": { + "id_car_serie": 15475, + "name": "3.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69103, + "fields": { + "id_car_serie": 15475, + "name": "3.2 AT (354 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69106, + "fields": { + "id_car_serie": 15477, + "name": "3.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69107, + "fields": { + "id_car_serie": 15477, + "name": "3.2 AT (354 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69108, + "fields": { + "id_car_serie": 15478, + "name": "4.3 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69109, + "fields": { + "id_car_serie": 15479, + "name": "4.3 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69110, + "fields": { + "id_car_serie": 15480, + "name": "3.6 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69111, + "fields": { + "id_car_serie": 15481, + "name": "5.0 AT (550 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69113, + "fields": { + "id_car_serie": 15483, + "name": "5.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69115, + "fields": { + "id_car_serie": 15485, + "name": "5.4 AT (367 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69116, + "fields": { + "id_car_serie": 15485, + "name": "6.2 AT (481 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69117, + "fields": { + "id_car_serie": 15486, + "name": "5.4 AT (367 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69118, + "fields": { + "id_car_serie": 15486, + "name": "6.2 AT (481 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69119, + "fields": { + "id_car_serie": 15487, + "name": "5.4 AT (367 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69120, + "fields": { + "id_car_serie": 15488, + "name": "5.4 AT (367 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69121, + "fields": { + "id_car_serie": 15489, + "name": "5.4 AT (347 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69122, + "fields": { + "id_car_serie": 15490, + "name": "5.4 AT (347 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69123, + "fields": { + "id_car_serie": 15491, + "name": "5.4 AT (347 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69129, + "fields": { + "id_car_serie": 15494, + "name": "6.2 AT (525 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69130, + "fields": { + "id_car_serie": 15495, + "name": "6.2 AT (525 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69134, + "fields": { + "id_car_serie": 15498, + "name": "5.4 AT (476 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69140, + "fields": { + "id_car_serie": 15502, + "name": "3.6 AT (279 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69141, + "fields": { + "id_car_serie": 15502, + "name": "5.0 AT (347 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69144, + "fields": { + "id_car_serie": 15503, + "name": "3.6 AT (272 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69145, + "fields": { + "id_car_serie": 15504, + "name": "3.6 AT (272 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69146, + "fields": { + "id_car_serie": 15505, + "name": "3.6 AT (272 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69148, + "fields": { + "id_car_serie": 15506, + "name": "6.0 AT (381 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69149, + "fields": { + "id_car_serie": 15507, + "name": "5.0 AT (423 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69150, + "fields": { + "id_car_serie": 15508, + "name": "5.0 AT (477 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69151, + "fields": { + "id_car_serie": 15509, + "name": "63 AMG 5.5 AT (557 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69166, + "fields": { + "id_car_serie": 15513, + "name": "6.2 AT (514 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69167, + "fields": { + "id_car_serie": 15514, + "name": "5.4 AT (476 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69168, + "fields": { + "id_car_serie": 15514, + "name": "6.2 AT (514 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69175, + "fields": { + "id_car_serie": 15522, + "name": "4.2 AT (416 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69177, + "fields": { + "id_car_serie": 15524, + "name": "4.2 AT (395 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69178, + "fields": { + "id_car_serie": 15524, + "name": "4.2 MT (395 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69179, + "fields": { + "id_car_serie": 15525, + "name": "4.2 AT (416 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69185, + "fields": { + "id_car_serie": 15527, + "name": "4.2 AT (395 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69187, + "fields": { + "id_car_serie": 15529, + "name": "5.5 AT (537 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69188, + "fields": { + "id_car_serie": 15529, + "name": "5.5 AT (585 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69191, + "fields": { + "id_car_serie": 15531, + "name": "5.4 AT (517 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69193, + "fields": { + "id_car_serie": 15532, + "name": "5.4 AT (476 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69194, + "fields": { + "id_car_serie": 15532, + "name": "5.4 AT (500 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69195, + "fields": { + "id_car_serie": 15532, + "name": "6.0 AT (612 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69196, + "fields": { + "id_car_serie": 15533, + "name": "5.4 AT (354 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69197, + "fields": { + "id_car_serie": 15533, + "name": "7.3 AT (525 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69198, + "fields": { + "id_car_serie": 15534, + "name": "6.0 AT (381 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69199, + "fields": { + "id_car_serie": 15535, + "name": "3.0 MT (226 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69200, + "fields": { + "id_car_serie": 15536, + "name": "3.0 MT (226 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69201, + "fields": { + "id_car_serie": 15537, + "name": "3.0 MT (226 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69202, + "fields": { + "id_car_serie": 15538, + "name": "2.5 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69203, + "fields": { + "id_car_serie": 15539, + "name": "2.5 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69204, + "fields": { + "id_car_serie": 15540, + "name": "2.5 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69205, + "fields": { + "id_car_serie": 15541, + "name": "1.6 HDi MT L2H1 (90 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69206, + "fields": { + "id_car_serie": 15541, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69207, + "fields": { + "id_car_serie": 15541, + "name": "2.0 HDi MT L2H1 (120 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69209, + "fields": { + "id_car_serie": 15541, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69211, + "fields": { + "id_car_serie": 15542, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69212, + "fields": { + "id_car_serie": 15542, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69213, + "fields": { + "id_car_serie": 15542, + "name": "1.9 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69214, + "fields": { + "id_car_serie": 15542, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69215, + "fields": { + "id_car_serie": 15542, + "name": "1.9 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69217, + "fields": { + "id_car_serie": 15544, + "name": "2.5 MT (305 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69218, + "fields": { + "id_car_serie": 15545, + "name": "2.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69219, + "fields": { + "id_car_serie": 15545, + "name": "2.0 MT (215 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69221, + "fields": { + "id_car_serie": 15547, + "name": "2.0 AMT (280 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69222, + "fields": { + "id_car_serie": 15547, + "name": "2.0 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69223, + "fields": { + "id_car_serie": 15548, + "name": "2.0 AMT (265 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69224, + "fields": { + "id_car_serie": 15548, + "name": "2.0 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69225, + "fields": { + "id_car_serie": 15549, + "name": "1.8 AMT (192 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69226, + "fields": { + "id_car_serie": 15549, + "name": "1.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69227, + "fields": { + "id_car_serie": 15550, + "name": "1.8 AMT (192 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69228, + "fields": { + "id_car_serie": 15550, + "name": "1.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69229, + "fields": { + "id_car_serie": 15551, + "name": "1.4 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69230, + "fields": { + "id_car_serie": 15552, + "name": "1.4 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69231, + "fields": { + "id_car_serie": 15553, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69232, + "fields": { + "id_car_serie": 15553, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69233, + "fields": { + "id_car_serie": 15554, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69234, + "fields": { + "id_car_serie": 15554, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69235, + "fields": { + "id_car_serie": 15555, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69236, + "fields": { + "id_car_serie": 15556, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69239, + "fields": { + "id_car_serie": 15559, + "name": "2.5 MT (225 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69240, + "fields": { + "id_car_serie": 15560, + "name": "2.5 MT (225 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69241, + "fields": { + "id_car_serie": 15561, + "name": "2.5 MT (225 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69242, + "fields": { + "id_car_serie": 15562, + "name": "2.5 MT (225 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69245, + "fields": { + "id_car_serie": 15564, + "name": "2.0 AT (172 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69246, + "fields": { + "id_car_serie": 15564, + "name": "2.0 MT (172 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69251, + "fields": { + "id_car_serie": 15567, + "name": "2.4 AT (159 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69252, + "fields": { + "id_car_serie": 15567, + "name": "2.4 MT (159 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69254, + "fields": { + "id_car_serie": 15567, + "name": "3.3 MMT (228 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69258, + "fields": { + "id_car_serie": 15568, + "name": "3.3 MMT Overdrive (213 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69259, + "fields": { + "id_car_serie": 15569, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69260, + "fields": { + "id_car_serie": 15569, + "name": "3.0 MT (203 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69263, + "fields": { + "id_car_serie": 15570, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69264, + "fields": { + "id_car_serie": 15570, + "name": "3.0 MT (203 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69276, + "fields": { + "id_car_serie": 15573, + "name": "2.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69277, + "fields": { + "id_car_serie": 15574, + "name": "3.0 MT (340 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69278, + "fields": { + "id_car_serie": 15575, + "name": "3.0 DCT (431 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69279, + "fields": { + "id_car_serie": 15575, + "name": "3.0 MT (431 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69280, + "fields": { + "id_car_serie": 15576, + "name": "4.0 DCT (420 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69281, + "fields": { + "id_car_serie": 15576, + "name": "4.0 MT (420 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69282, + "fields": { + "id_car_serie": 15577, + "name": "4.0 DCT (420 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69283, + "fields": { + "id_car_serie": 15577, + "name": "4.0 MT (420 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69284, + "fields": { + "id_car_serie": 15578, + "name": "4.0 DCT (420 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69285, + "fields": { + "id_car_serie": 15578, + "name": "4.0 MT (420 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69286, + "fields": { + "id_car_serie": 15579, + "name": "3.2 MT (337 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69287, + "fields": { + "id_car_serie": 15579, + "name": "3.2 MT (343 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69293, + "fields": { + "id_car_serie": 15580, + "name": "3.2 MT (360 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69294, + "fields": { + "id_car_serie": 15581, + "name": "3.0 MT (286 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69295, + "fields": { + "id_car_serie": 15581, + "name": "3.2 MT (321 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69296, + "fields": { + "id_car_serie": 15582, + "name": "3.0 MT (286 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69297, + "fields": { + "id_car_serie": 15582, + "name": "3.2 MT (321 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69300, + "fields": { + "id_car_serie": 15583, + "name": "3.2 MT (337 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69306, + "fields": { + "id_car_serie": 15585, + "name": "2.3 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69307, + "fields": { + "id_car_serie": 15585, + "name": "2.3 MT (215 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69309, + "fields": { + "id_car_serie": 15586, + "name": "1.6 MT (208 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69310, + "fields": { + "id_car_serie": 15587, + "name": "2.0 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69311, + "fields": { + "id_car_serie": 15588, + "name": "2.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69312, + "fields": { + "id_car_serie": 15589, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69313, + "fields": { + "id_car_serie": 15589, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69314, + "fields": { + "id_car_serie": 15590, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69315, + "fields": { + "id_car_serie": 15590, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69316, + "fields": { + "id_car_serie": 15591, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69317, + "fields": { + "id_car_serie": 15592, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69333, + "fields": { + "id_car_serie": 15601, + "name": "1.6 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69334, + "fields": { + "id_car_serie": 15602, + "name": "1.6 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69335, + "fields": { + "id_car_serie": 15603, + "name": "2.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69336, + "fields": { + "id_car_serie": 15604, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69337, + "fields": { + "id_car_serie": 15605, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69338, + "fields": { + "id_car_serie": 15606, + "name": "2.8 AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69339, + "fields": { + "id_car_serie": 15606, + "name": "2.8 MT (255 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69340, + "fields": { + "id_car_serie": 15606, + "name": "2.8 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69342, + "fields": { + "id_car_serie": 15607, + "name": "2.8 MT (255 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69344, + "fields": { + "id_car_serie": 15608, + "name": "3.8 AMT (475 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69345, + "fields": { + "id_car_serie": 15609, + "name": "3.8 MT (435 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69346, + "fields": { + "id_car_serie": 15610, + "name": "3.6 MT (415 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69347, + "fields": { + "id_car_serie": 15611, + "name": "3.6 MT (381 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69348, + "fields": { + "id_car_serie": 15612, + "name": "3.6 MT (360 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69349, + "fields": { + "id_car_serie": 15613, + "name": "3.6 MT (530 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69350, + "fields": { + "id_car_serie": 15614, + "name": "3.6 MT (530 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69351, + "fields": { + "id_car_serie": 15615, + "name": "3.6 (530 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69352, + "fields": { + "id_car_serie": 15615, + "name": "3.6 (530 hp) MT", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69356, + "fields": { + "id_car_serie": 15618, + "name": "1.6 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69357, + "fields": { + "id_car_serie": 15619, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69358, + "fields": { + "id_car_serie": 15620, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69362, + "fields": { + "id_car_serie": 15623, + "name": "2.0 MT (169 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69364, + "fields": { + "id_car_serie": 15624, + "name": "4.4 M-DKG (560 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69365, + "fields": { + "id_car_serie": 15625, + "name": "5.0 SMG (507 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69366, + "fields": { + "id_car_serie": 15626, + "name": "5.0 SMG (507 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69367, + "fields": { + "id_car_serie": 15626, + "name": "5.0 MT (507 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69368, + "fields": { + "id_car_serie": 15627, + "name": "4.9 MT (400 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69369, + "fields": { + "id_car_serie": 15628, + "name": "3.8 MT (340 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69370, + "fields": { + "id_car_serie": 15629, + "name": "3.5 MT (315 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69371, + "fields": { + "id_car_serie": 15629, + "name": "3.8 MT (340 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69372, + "fields": { + "id_car_serie": 15630, + "name": "3.5 MT (286 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69373, + "fields": { + "id_car_serie": 15631, + "name": "4.4 M-DCT (560 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69374, + "fields": { + "id_car_serie": 15632, + "name": "4.4 M-DCT (560 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69375, + "fields": { + "id_car_serie": 15633, + "name": "4.4 M-DCT (560 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69378, + "fields": { + "id_car_serie": 15635, + "name": "5.0 SMG (507 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69382, + "fields": { + "id_car_serie": 15637, + "name": "4.4 xDrive Steptronic (575 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69383, + "fields": { + "id_car_serie": 15638, + "name": "4.4 AT (555 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69386, + "fields": { + "id_car_serie": 15639, + "name": "3.2 MT (325 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69387, + "fields": { + "id_car_serie": 15640, + "name": "3.2 MT (321 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69390, + "fields": { + "id_car_serie": 15641, + "name": "3.2 MT (343 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69391, + "fields": { + "id_car_serie": 15642, + "name": "3.2 MT (343 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69405, + "fields": { + "id_car_serie": 15651, + "name": "6.0 AT (530 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69406, + "fields": { + "id_car_serie": 15652, + "name": "2.0 MT (201 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69407, + "fields": { + "id_car_serie": 15652, + "name": "2.0 MT (225 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69408, + "fields": { + "id_car_serie": 15653, + "name": "2.0 MT (201 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69409, + "fields": { + "id_car_serie": 15653, + "name": "2.0 MT (225 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69410, + "fields": { + "id_car_serie": 15654, + "name": "2.0 MT (201 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69411, + "fields": { + "id_car_serie": 15654, + "name": "2.0 MT (225 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69412, + "fields": { + "id_car_serie": 15655, + "name": "2.0 MT (201 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69413, + "fields": { + "id_car_serie": 15655, + "name": "2.0 MT (225 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69414, + "fields": { + "id_car_serie": 15656, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69415, + "fields": { + "id_car_serie": 15657, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69416, + "fields": { + "id_car_serie": 15658, + "name": "1.6 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69417, + "fields": { + "id_car_serie": 15659, + "name": "63 AMG 6.2 AT (510 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69421, + "fields": { + "id_car_serie": 15660, + "name": "6.0 AT (630 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69422, + "fields": { + "id_car_serie": 15661, + "name": "5.5 AT (585 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69423, + "fields": { + "id_car_serie": 15662, + "name": "5.5 AT (544 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69424, + "fields": { + "id_car_serie": 15662, + "name": "65 AMG Long 6.0 AT (630 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69425, + "fields": { + "id_car_serie": 15662, + "name": "6.2 AT (525 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69426, + "fields": { + "id_car_serie": 15663, + "name": "6.0 AT (612 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69427, + "fields": { + "id_car_serie": 15663, + "name": "6.2 AT (525 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69428, + "fields": { + "id_car_serie": 15664, + "name": "5.4 AT (500 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69429, + "fields": { + "id_car_serie": 15665, + "name": "5.4 AT (360 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69430, + "fields": { + "id_car_serie": 15666, + "name": "2.0 AMT (265 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69431, + "fields": { + "id_car_serie": 15666, + "name": "2.0 AMT (280 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69432, + "fields": { + "id_car_serie": 15666, + "name": "2.0 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69433, + "fields": { + "id_car_serie": 15666, + "name": "2.0 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69434, + "fields": { + "id_car_serie": 15667, + "name": "2.0 AMT (265 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69435, + "fields": { + "id_car_serie": 15667, + "name": "2.0 AMT (280 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69436, + "fields": { + "id_car_serie": 15667, + "name": "2.0 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69437, + "fields": { + "id_car_serie": 15667, + "name": "2.0 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69438, + "fields": { + "id_car_serie": 15668, + "name": "2.0 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69439, + "fields": { + "id_car_serie": 15669, + "name": "2.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69444, + "fields": { + "id_car_serie": 15672, + "name": "1.4 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69445, + "fields": { + "id_car_serie": 15673, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69446, + "fields": { + "id_car_serie": 15673, + "name": "1.9 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69447, + "fields": { + "id_car_serie": 15674, + "name": "1.8 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69448, + "fields": { + "id_car_serie": 15674, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69449, + "fields": { + "id_car_serie": 15675, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69450, + "fields": { + "id_car_serie": 15676, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69451, + "fields": { + "id_car_serie": 15676, + "name": "2.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69453, + "fields": { + "id_car_serie": 15676, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69454, + "fields": { + "id_car_serie": 15677, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69455, + "fields": { + "id_car_serie": 15677, + "name": "2.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69457, + "fields": { + "id_car_serie": 15677, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69458, + "fields": { + "id_car_serie": 15678, + "name": "2.0 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69459, + "fields": { + "id_car_serie": 15678, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69460, + "fields": { + "id_car_serie": 15678, + "name": "2.0 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69461, + "fields": { + "id_car_serie": 15678, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69462, + "fields": { + "id_car_serie": 15679, + "name": "2.0 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69463, + "fields": { + "id_car_serie": 15679, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69464, + "fields": { + "id_car_serie": 15680, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69465, + "fields": { + "id_car_serie": 15680, + "name": "2.0 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69466, + "fields": { + "id_car_serie": 15680, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69467, + "fields": { + "id_car_serie": 15681, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69468, + "fields": { + "id_car_serie": 15681, + "name": "2.0 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69469, + "fields": { + "id_car_serie": 15681, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69470, + "fields": { + "id_car_serie": 15682, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69471, + "fields": { + "id_car_serie": 15683, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69472, + "fields": { + "id_car_serie": 15684, + "name": "1.4 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69473, + "fields": { + "id_car_serie": 15685, + "name": "1.9 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69474, + "fields": { + "id_car_serie": 15686, + "name": "1.9 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69475, + "fields": { + "id_car_serie": 15687, + "name": "1.0 AMT (60 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69476, + "fields": { + "id_car_serie": 15687, + "name": "1.0 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69477, + "fields": { + "id_car_serie": 15687, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69478, + "fields": { + "id_car_serie": 15687, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69479, + "fields": { + "id_car_serie": 15687, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69480, + "fields": { + "id_car_serie": 15688, + "name": "1.0 AMT (60 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69481, + "fields": { + "id_car_serie": 15688, + "name": "1.0 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69482, + "fields": { + "id_car_serie": 15688, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69483, + "fields": { + "id_car_serie": 15688, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69484, + "fields": { + "id_car_serie": 15688, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69485, + "fields": { + "id_car_serie": 15689, + "name": "3.0 DCT (431 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69486, + "fields": { + "id_car_serie": 15689, + "name": "3.0 MT (431 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69487, + "fields": { + "id_car_serie": 15690, + "name": "3.0 DCT (431 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69488, + "fields": { + "id_car_serie": 15690, + "name": "3.0 MT (431 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69489, + "fields": { + "id_car_serie": 15691, + "name": "1.6 MT (182 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69490, + "fields": { + "id_car_serie": 15692, + "name": "1.6 MT (182 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69491, + "fields": { + "id_car_serie": 15693, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69492, + "fields": { + "id_car_serie": 15694, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69506, + "fields": { + "id_car_serie": 15702, + "name": "2.0 MT (224 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69507, + "fields": { + "id_car_serie": 15703, + "name": "2.0 MT (224 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69508, + "fields": { + "id_car_serie": 15704, + "name": "2.0 MT (224 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69509, + "fields": { + "id_car_serie": 15705, + "name": "2.0 MT (224 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69510, + "fields": { + "id_car_serie": 15706, + "name": "AT (67 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69511, + "fields": { + "id_car_serie": 15707, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69512, + "fields": { + "id_car_serie": 15707, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69513, + "fields": { + "id_car_serie": 15707, + "name": "1.8 CVT (117 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69514, + "fields": { + "id_car_serie": 15707, + "name": "1.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69515, + "fields": { + "id_car_serie": 15707, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69516, + "fields": { + "id_car_serie": 15708, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69517, + "fields": { + "id_car_serie": 15708, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69518, + "fields": { + "id_car_serie": 15708, + "name": "1.8 CVT (117 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69519, + "fields": { + "id_car_serie": 15708, + "name": "1.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69520, + "fields": { + "id_car_serie": 15708, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69526, + "fields": { + "id_car_serie": 15712, + "name": "2.0 AMT (265 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69539, + "fields": { + "id_car_serie": 15717, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69540, + "fields": { + "id_car_serie": 15717, + "name": "2.0 AMT (230 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69541, + "fields": { + "id_car_serie": 15717, + "name": "2.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69542, + "fields": { + "id_car_serie": 15717, + "name": "2.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69543, + "fields": { + "id_car_serie": 15718, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69544, + "fields": { + "id_car_serie": 15718, + "name": "2.0 AMT (230 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69545, + "fields": { + "id_car_serie": 15718, + "name": "2.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69546, + "fields": { + "id_car_serie": 15718, + "name": "2.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69550, + "fields": { + "id_car_serie": 15720, + "name": "2.0 AMT (210 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69551, + "fields": { + "id_car_serie": 15720, + "name": "2.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69552, + "fields": { + "id_car_serie": 15721, + "name": "2.0 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69554, + "fields": { + "id_car_serie": 15721, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69556, + "fields": { + "id_car_serie": 15722, + "name": "2.0 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69557, + "fields": { + "id_car_serie": 15722, + "name": "2.0 AMT (230 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69558, + "fields": { + "id_car_serie": 15722, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69559, + "fields": { + "id_car_serie": 15722, + "name": "2.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69564, + "fields": { + "id_car_serie": 15724, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69565, + "fields": { + "id_car_serie": 15725, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69566, + "fields": { + "id_car_serie": 15726, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69567, + "fields": { + "id_car_serie": 15727, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69568, + "fields": { + "id_car_serie": 15728, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69571, + "fields": { + "id_car_serie": 15728, + "name": "1.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69572, + "fields": { + "id_car_serie": 15728, + "name": "1.8 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69573, + "fields": { + "id_car_serie": 15728, + "name": "1.8 AT (139 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69576, + "fields": { + "id_car_serie": 15728, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69579, + "fields": { + "id_car_serie": 15728, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69580, + "fields": { + "id_car_serie": 15728, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69581, + "fields": { + "id_car_serie": 15728, + "name": "1.8 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69584, + "fields": { + "id_car_serie": 15729, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69587, + "fields": { + "id_car_serie": 15729, + "name": "1.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69588, + "fields": { + "id_car_serie": 15729, + "name": "1.8 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69589, + "fields": { + "id_car_serie": 15729, + "name": "1.8 AT (139 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69592, + "fields": { + "id_car_serie": 15729, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69595, + "fields": { + "id_car_serie": 15729, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69596, + "fields": { + "id_car_serie": 15729, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69597, + "fields": { + "id_car_serie": 15729, + "name": "1.8 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69600, + "fields": { + "id_car_serie": 15730, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69601, + "fields": { + "id_car_serie": 15730, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69602, + "fields": { + "id_car_serie": 15730, + "name": "1.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69603, + "fields": { + "id_car_serie": 15730, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69604, + "fields": { + "id_car_serie": 15731, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69605, + "fields": { + "id_car_serie": 15731, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69606, + "fields": { + "id_car_serie": 15731, + "name": "1.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69607, + "fields": { + "id_car_serie": 15731, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69621, + "fields": { + "id_car_serie": 15733, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69623, + "fields": { + "id_car_serie": 15733, + "name": "2.3 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69624, + "fields": { + "id_car_serie": 15733, + "name": "2.3 AT 4WS (220 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69627, + "fields": { + "id_car_serie": 15733, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69628, + "fields": { + "id_car_serie": 15733, + "name": "2.5 AT 4WS (200 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69632, + "fields": { + "id_car_serie": 15732, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69636, + "fields": { + "id_car_serie": 15732, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69637, + "fields": { + "id_car_serie": 15732, + "name": "2.5 AT 4WS (200 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69639, + "fields": { + "id_car_serie": 15735, + "name": "1.5 AMT (109 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69641, + "fields": { + "id_car_serie": 15735, + "name": "1.6 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69642, + "fields": { + "id_car_serie": 15735, + "name": "1.6 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69644, + "fields": { + "id_car_serie": 15735, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69654, + "fields": { + "id_car_serie": 15735, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69655, + "fields": { + "id_car_serie": 15737, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69656, + "fields": { + "id_car_serie": 15737, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69657, + "fields": { + "id_car_serie": 15737, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69658, + "fields": { + "id_car_serie": 15737, + "name": "1.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69659, + "fields": { + "id_car_serie": 15737, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69660, + "fields": { + "id_car_serie": 15737, + "name": "1.9 DI-D MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69661, + "fields": { + "id_car_serie": 15737, + "name": "1.9 DI-D MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69662, + "fields": { + "id_car_serie": 15738, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69663, + "fields": { + "id_car_serie": 15738, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69664, + "fields": { + "id_car_serie": 15738, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69665, + "fields": { + "id_car_serie": 15738, + "name": "1.8 GDI AT (122 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69666, + "fields": { + "id_car_serie": 15738, + "name": "1.8 GDI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69668, + "fields": { + "id_car_serie": 15741, + "name": "2.0 MT (250 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69669, + "fields": { + "id_car_serie": 15741, + "name": "2.0 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69672, + "fields": { + "id_car_serie": 15743, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69673, + "fields": { + "id_car_serie": 15743, + "name": "1.2 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69674, + "fields": { + "id_car_serie": 15743, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69675, + "fields": { + "id_car_serie": 15743, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69676, + "fields": { + "id_car_serie": 15743, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69677, + "fields": { + "id_car_serie": 15743, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69678, + "fields": { + "id_car_serie": 15743, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69679, + "fields": { + "id_car_serie": 15743, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69680, + "fields": { + "id_car_serie": 15743, + "name": "1.7 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69681, + "fields": { + "id_car_serie": 15743, + "name": "1.9 MT (63 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69682, + "fields": { + "id_car_serie": 15743, + "name": "1.9 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69683, + "fields": { + "id_car_serie": 15744, + "name": "1.0 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69684, + "fields": { + "id_car_serie": 15744, + "name": "1.0 MT (61 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69685, + "fields": { + "id_car_serie": 15744, + "name": "1.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69686, + "fields": { + "id_car_serie": 15744, + "name": "1.2 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69687, + "fields": { + "id_car_serie": 15744, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69688, + "fields": { + "id_car_serie": 15744, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69689, + "fields": { + "id_car_serie": 15744, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69690, + "fields": { + "id_car_serie": 15744, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69691, + "fields": { + "id_car_serie": 15744, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69692, + "fields": { + "id_car_serie": 15744, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69693, + "fields": { + "id_car_serie": 15744, + "name": "1.7 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69694, + "fields": { + "id_car_serie": 15744, + "name": "1.7 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69695, + "fields": { + "id_car_serie": 15745, + "name": "1.0 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69696, + "fields": { + "id_car_serie": 15745, + "name": "1.0 MT (61 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69697, + "fields": { + "id_car_serie": 15745, + "name": "1.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69698, + "fields": { + "id_car_serie": 15745, + "name": "1.2 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69699, + "fields": { + "id_car_serie": 15745, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69700, + "fields": { + "id_car_serie": 15745, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69701, + "fields": { + "id_car_serie": 15745, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69702, + "fields": { + "id_car_serie": 15745, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69703, + "fields": { + "id_car_serie": 15745, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69704, + "fields": { + "id_car_serie": 15745, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69705, + "fields": { + "id_car_serie": 15745, + "name": "1.7 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69706, + "fields": { + "id_car_serie": 15745, + "name": "1.7 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69727, + "fields": { + "id_car_serie": 3293, + "name": "1.7 TD MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69747, + "fields": { + "id_car_serie": 15162, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69753, + "fields": { + "id_car_serie": 15758, + "name": "3.5 AT (313 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69754, + "fields": { + "id_car_serie": 15758, + "name": "3.5 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69757, + "fields": { + "id_car_serie": 15751, + "name": "3.6i AT VVT (258 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69775, + "fields": { + "id_car_serie": 15757, + "name": "3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69776, + "fields": { + "id_car_serie": 15757, + "name": "3.5 MT (287 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69779, + "fields": { + "id_car_serie": 15754, + "name": "0.7 MT (48 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69780, + "fields": { + "id_car_serie": 15754, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69785, + "fields": { + "id_car_serie": 15754, + "name": "1.3 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69789, + "fields": { + "id_car_serie": 15763, + "name": "2.5 TFSI S tronic Quattro (400 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69790, + "fields": { + "id_car_serie": 15764, + "name": "2.5 TFSI quattro S tronic (340 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69791, + "fields": { + "id_car_serie": 14695, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69795, + "fields": { + "id_car_serie": 9511, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69796, + "fields": { + "id_car_serie": 9511, + "name": "1.8 CVT (128 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69797, + "fields": { + "id_car_serie": 9511, + "name": "1.8 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69798, + "fields": { + "id_car_serie": 9482, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69799, + "fields": { + "id_car_serie": 9482, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69800, + "fields": { + "id_car_serie": 9482, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69801, + "fields": { + "id_car_serie": 9482, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69802, + "fields": { + "id_car_serie": 9482, + "name": "2.5 Turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69803, + "fields": { + "id_car_serie": 9482, + "name": "2.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69804, + "fields": { + "id_car_serie": 9482, + "name": "2.5 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69805, + "fields": { + "id_car_serie": 9482, + "name": "2.5 Turbo MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69807, + "fields": { + "id_car_serie": 9452, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69814, + "fields": { + "id_car_serie": 9453, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69819, + "fields": { + "id_car_serie": 9453, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69825, + "fields": { + "id_car_serie": 9451, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69829, + "fields": { + "id_car_serie": 9451, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69834, + "fields": { + "id_car_serie": 9431, + "name": "2.7 MT 4WD gas (128 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69851, + "fields": { + "id_car_serie": 2839, + "name": "7.2 MT (640 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69852, + "fields": { + "id_car_serie": 2839, + "name": "6.2 MT (647 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69853, + "fields": { + "id_car_serie": 2839, + "name": "6.2 MT (780 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69864, + "fields": { + "id_car_serie": 2884, + "name": "5.9 AMT (573 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69865, + "fields": { + "id_car_serie": 2885, + "name": "5.9 MT (573 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69866, + "fields": { + "id_car_serie": 2885, + "name": "5.9 AMT (573 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69867, + "fields": { + "id_car_serie": 2886, + "name": "4.7 AMT (436 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69876, + "fields": { + "id_car_serie": 2947, + "name": "6.8 Twin-Turbo AT (500 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69877, + "fields": { + "id_car_serie": 47548, + "name": "T 6.8 AT (426 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69906, + "fields": { + "id_car_serie": 3721, + "name": "5.4 AT (650 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69907, + "fields": { + "id_car_serie": 3018, + "name": "6.2 V8 AT 4WD ESV (409 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69912, + "fields": { + "id_car_serie": 3760, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69913, + "fields": { + "id_car_serie": 3760, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69914, + "fields": { + "id_car_serie": 3760, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69915, + "fields": { + "id_car_serie": 3760, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69916, + "fields": { + "id_car_serie": 3760, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69917, + "fields": { + "id_car_serie": 3760, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69930, + "fields": { + "id_car_serie": 3149, + "name": "0.9 TCe LPG MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69933, + "fields": { + "id_car_serie": 3217, + "name": "2.4 MT (215 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69934, + "fields": { + "id_car_serie": 3217, + "name": "2.4 MT (234 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69937, + "fields": { + "id_car_serie": 3855, + "name": "1.2 DIG-S CVT (98 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69938, + "fields": { + "id_car_serie": 3855, + "name": "1.2 (98 hp), gasoline, variator (CVT), front drive", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69947, + "fields": { + "id_car_serie": 3281, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69948, + "fields": { + "id_car_serie": 3281, + "name": "1.4 AMT (100 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69960, + "fields": { + "id_car_serie": 3892, + "name": "L2 1.6d MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 69977, + "fields": { + "id_car_serie": 3325, + "name": "5.4 Flex Fuel AT AWD (310 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69978, + "fields": { + "id_car_serie": 3325, + "name": "5.4 Flex Fuel AT (310 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69980, + "fields": { + "id_car_serie": 3328, + "name": "SVT Raptor 6.1 AT (411 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69992, + "fields": { + "id_car_serie": 3329, + "name": "6.1 AT (411 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69994, + "fields": { + "id_car_serie": 3363, + "name": "3.5 AT AWD (288 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69997, + "fields": { + "id_car_serie": 3385, + "name": "5.3 AT (294 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69998, + "fields": { + "id_car_serie": 3385, + "name": "5.3 AT Denali XL 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 69999, + "fields": { + "id_car_serie": 3385, + "name": "4.2 AT (279 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70000, + "fields": { + "id_car_serie": 3385, + "name": "4.2 AT XL 4WD (295 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70007, + "fields": { + "id_car_serie": 3418, + "name": "2.0 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70008, + "fields": { + "id_car_serie": 3455, + "name": "6.2 AT (398 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70009, + "fields": { + "id_car_serie": 3455, + "name": "6.2 AT (409 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70020, + "fields": { + "id_car_serie": 4038, + "name": "4S Executive 3.0 PDK AWD (420 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70021, + "fields": { + "id_car_serie": 4038, + "name": "Turbo Executive 4.8 PDK AWD (520 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70022, + "fields": { + "id_car_serie": 4038, + "name": "Turbo S Executive 4.8 PDK AWD (570 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70023, + "fields": { + "id_car_serie": 4040, + "name": "1.6 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70024, + "fields": { + "id_car_serie": 4040, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70026, + "fields": { + "id_car_serie": 3528, + "name": "4.2 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70028, + "fields": { + "id_car_serie": 3528, + "name": "5.3 MT (276 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70051, + "fields": { + "id_car_serie": 3581, + "name": "6.2 MT (580 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70052, + "fields": { + "id_car_serie": 3598, + "name": "2.2 TD MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70057, + "fields": { + "id_car_serie": 3605, + "name": "3.0 TDV6 AT AWD LWB (249 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70058, + "fields": { + "id_car_serie": 3605, + "name": "4.4 SDV8 AT AWD LWB (339 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70059, + "fields": { + "id_car_serie": 3605, + "name": "5.0 V8 Supercharged AT AWD LWB (525 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70063, + "fields": { + "id_car_serie": 3623, + "name": "L 5.4 AT (304 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70070, + "fields": { + "id_car_serie": 3641, + "name": "4.2 AMT (400 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70071, + "fields": { + "id_car_serie": 3641, + "name": "4.2 MT (400 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70074, + "fields": { + "id_car_serie": 3651, + "name": "6.0 AT (630 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70080, + "fields": { + "id_car_serie": 3686, + "name": "2.0 MZR 5MT (167 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70085, + "fields": { + "id_car_serie": 3693, + "name": "1.3 AT (265 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70088, + "fields": { + "id_car_serie": 3693, + "name": "1.3 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70115, + "fields": { + "id_car_serie": 3761, + "name": "Cooper S 1.6 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70116, + "fields": { + "id_car_serie": 3761, + "name": "Cooper S 1.6 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70117, + "fields": { + "id_car_serie": 3761, + "name": "1.6 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70118, + "fields": { + "id_car_serie": 3761, + "name": "1.6 MT (211 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70119, + "fields": { + "id_car_serie": 3761, + "name": "1.6 MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70156, + "fields": { + "id_car_serie": 3930, + "name": "4.6 MT (420 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70159, + "fields": { + "id_car_serie": 3946, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70164, + "fields": { + "id_car_serie": 3947, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70198, + "fields": { + "id_car_serie": 4163, + "name": "2.0 TDI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70202, + "fields": { + "id_car_serie": 4190, + "name": "2.5 GT E-5AT AWD (265 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70221, + "fields": { + "id_car_serie": 4232, + "name": "3.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70229, + "fields": { + "id_car_serie": 4241, + "name": "1.5 CVT (108 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70230, + "fields": { + "id_car_serie": 4241, + "name": "1.5 CVT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70231, + "fields": { + "id_car_serie": 4241, + "name": "1.8 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70232, + "fields": { + "id_car_serie": 4241, + "name": "1.8 MT (144 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70236, + "fields": { + "id_car_serie": 4298, + "name": "2.8 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70238, + "fields": { + "id_car_serie": 4309, + "name": "3.6 MT (377 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70242, + "fields": { + "id_car_serie": 4344, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70275, + "fields": { + "id_car_serie": 4374, + "name": "1.0 AMT (60 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70276, + "fields": { + "id_car_serie": 4374, + "name": "1.0 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70277, + "fields": { + "id_car_serie": 4374, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70278, + "fields": { + "id_car_serie": 4374, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70279, + "fields": { + "id_car_serie": 4374, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70290, + "fields": { + "id_car_serie": 4380, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70293, + "fields": { + "id_car_serie": 4380, + "name": "2.1 Turbo MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70294, + "fields": { + "id_car_serie": 4380, + "name": "2.1 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70295, + "fields": { + "id_car_serie": 4380, + "name": "2.1 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70296, + "fields": { + "id_car_serie": 4380, + "name": "2.1 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70299, + "fields": { + "id_car_serie": 4380, + "name": "2.3 AT (138 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70300, + "fields": { + "id_car_serie": 4380, + "name": "2.3 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70301, + "fields": { + "id_car_serie": 4380, + "name": "2.3 AT (142 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70303, + "fields": { + "id_car_serie": 4380, + "name": "2.3 MT (138 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70304, + "fields": { + "id_car_serie": 4380, + "name": "2.3 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70305, + "fields": { + "id_car_serie": 4380, + "name": "2.3 MT (142 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70307, + "fields": { + "id_car_serie": 4380, + "name": "2.4 d MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70309, + "fields": { + "id_car_serie": 4380, + "name": "2.7 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70334, + "fields": { + "id_car_serie": 4562, + "name": "1.6 AT 8 valves (87 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70338, + "fields": { + "id_car_serie": 4571, + "name": "5.5 AT (195 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70341, + "fields": { + "id_car_serie": 4608, + "name": "469B 2.5 MT (75 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70371, + "fields": { + "id_car_serie": 9127, + "name": "2.0 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70378, + "fields": { + "id_car_serie": 8829, + "name": "320 Long 3.0d AT (224 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70379, + "fields": { + "id_car_serie": 8829, + "name": "350 Long 3.5 AT (272 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70380, + "fields": { + "id_car_serie": 8829, + "name": "500 Long 5.0 AT (306 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70417, + "fields": { + "id_car_serie": 5387, + "name": "3.4 AT (235 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70437, + "fields": { + "id_car_serie": 5793, + "name": "3.8 AT (180 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70453, + "fields": { + "id_car_serie": 5811, + "name": "Grand 1.6d AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70456, + "fields": { + "id_car_serie": 5811, + "name": "2.0 HDi AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70458, + "fields": { + "id_car_serie": 5811, + "name": "Grand 2.0d AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70459, + "fields": { + "id_car_serie": 5811, + "name": "Grand 2.0d MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70485, + "fields": { + "id_car_serie": 6036, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70486, + "fields": { + "id_car_serie": 6036, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70487, + "fields": { + "id_car_serie": 6036, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70488, + "fields": { + "id_car_serie": 6036, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70490, + "fields": { + "id_car_serie": 6036, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70492, + "fields": { + "id_car_serie": 6036, + "name": "2.5 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70497, + "fields": { + "id_car_serie": 6107, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70498, + "fields": { + "id_car_serie": 6107, + "name": "1.4i MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70505, + "fields": { + "id_car_serie": 6107, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70507, + "fields": { + "id_car_serie": 6107, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70511, + "fields": { + "id_car_serie": 6202, + "name": "Shelby GT500 5.4 MT (558 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70520, + "fields": { + "id_car_serie": 6294, + "name": "3.6 MT (238 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70521, + "fields": { + "id_car_serie": 6294, + "name": "5.7 MT (340 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70529, + "fields": { + "id_car_serie": 9082, + "name": "FR 2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70530, + "fields": { + "id_car_serie": 9082, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70543, + "fields": { + "id_car_serie": 6531, + "name": "2.0 AT (86 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70544, + "fields": { + "id_car_serie": 6531, + "name": "2.0 MT (86 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70545, + "fields": { + "id_car_serie": 6531, + "name": "2.2d AT (87 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70546, + "fields": { + "id_car_serie": 6531, + "name": "2.2d MT (87 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70547, + "fields": { + "id_car_serie": 6531, + "name": "2.3 AT (110 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70548, + "fields": { + "id_car_serie": 6531, + "name": "2.3 MT (110 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70549, + "fields": { + "id_car_serie": 6531, + "name": "2.6 AT (120 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70550, + "fields": { + "id_car_serie": 6531, + "name": "2.6 MT (120 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70551, + "fields": { + "id_car_serie": 6531, + "name": "2.8 AT (135 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70552, + "fields": { + "id_car_serie": 6531, + "name": "2.8 MT (135 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70553, + "fields": { + "id_car_serie": 6531, + "name": "2.8d AT (110 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70554, + "fields": { + "id_car_serie": 6531, + "name": "2.8d MT (110 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70555, + "fields": { + "id_car_serie": 6544, + "name": "1.8 MT (142 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70558, + "fields": { + "id_car_serie": 6545, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70559, + "fields": { + "id_car_serie": 6545, + "name": "1.8 MT (61 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70560, + "fields": { + "id_car_serie": 6545, + "name": "1.8 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70561, + "fields": { + "id_car_serie": 8859, + "name": "Cooper S 1.6 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70562, + "fields": { + "id_car_serie": 8859, + "name": "Cooper S 1.6 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70567, + "fields": { + "id_car_serie": 8859, + "name": "1.4 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70568, + "fields": { + "id_car_serie": 8859, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70570, + "fields": { + "id_car_serie": 8859, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70571, + "fields": { + "id_car_serie": 8859, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70572, + "fields": { + "id_car_serie": 8859, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70578, + "fields": { + "id_car_serie": 6663, + "name": "2.9 MT (215 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70588, + "fields": { + "id_car_serie": 6802, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70589, + "fields": { + "id_car_serie": 6802, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70603, + "fields": { + "id_car_serie": 6872, + "name": "2.0 MZR AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70604, + "fields": { + "id_car_serie": 6872, + "name": "2.0 MZR 5MT (166 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70605, + "fields": { + "id_car_serie": 9021, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70608, + "fields": { + "id_car_serie": 7004, + "name": "1.6 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70609, + "fields": { + "id_car_serie": 7004, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70612, + "fields": { + "id_car_serie": 7055, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70613, + "fields": { + "id_car_serie": 7055, + "name": "1.8 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70641, + "fields": { + "id_car_serie": 7417, + "name": "1.8 MT GT (180 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70642, + "fields": { + "id_car_serie": 7418, + "name": "1.8 MT GT (173 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70647, + "fields": { + "id_car_serie": 7486, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70649, + "fields": { + "id_car_serie": 7486, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70650, + "fields": { + "id_car_serie": 7486, + "name": "Grand 1.5d MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70651, + "fields": { + "id_car_serie": 7486, + "name": "Grand 1.5d MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70691, + "fields": { + "id_car_serie": 7648, + "name": "2.5 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70735, + "fields": { + "id_car_serie": 8860, + "name": "Cooper S 1.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70736, + "fields": { + "id_car_serie": 8860, + "name": "Cooper S 1.6 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70737, + "fields": { + "id_car_serie": 8860, + "name": "Cooper S 1.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70738, + "fields": { + "id_car_serie": 8860, + "name": "Cooper S JCW 1.6 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70745, + "fields": { + "id_car_serie": 7966, + "name": "2.0 SDI MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70746, + "fields": { + "id_car_serie": 7966, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70748, + "fields": { + "id_car_serie": 7982, + "name": "2.8 4Motion MT (204 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70752, + "fields": { + "id_car_serie": 8321, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70753, + "fields": { + "id_car_serie": 8321, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70756, + "fields": { + "id_car_serie": 8321, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70770, + "fields": { + "id_car_serie": 8661, + "name": "4.2 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70771, + "fields": { + "id_car_serie": 8661, + "name": "4.2 MT (173 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70772, + "fields": { + "id_car_serie": 9048, + "name": "1.6 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70774, + "fields": { + "id_car_serie": 8298, + "name": "1.6 CVT FWD (117 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70778, + "fields": { + "id_car_serie": 8298, + "name": "2.0 CVT AWD (141 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70780, + "fields": { + "id_car_serie": 8298, + "name": "2.0 DCI MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70781, + "fields": { + "id_car_serie": 8298, + "name": "2.0 DCI MT FWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70794, + "fields": { + "id_car_serie": 8660, + "name": "2.0 AT (86 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70795, + "fields": { + "id_car_serie": 8660, + "name": "2.0 MT (86 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70796, + "fields": { + "id_car_serie": 8660, + "name": "2.2d AT (87 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70797, + "fields": { + "id_car_serie": 8660, + "name": "2.2d MT (87 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70798, + "fields": { + "id_car_serie": 8660, + "name": "2.3 AT (110 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70799, + "fields": { + "id_car_serie": 8660, + "name": "2.3 MT (110 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70800, + "fields": { + "id_car_serie": 8660, + "name": "2.6 AT (120 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70801, + "fields": { + "id_car_serie": 8660, + "name": "2.6 MT (120 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70802, + "fields": { + "id_car_serie": 8660, + "name": "2.8 AT (135 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70803, + "fields": { + "id_car_serie": 8660, + "name": "2.8 MT (135 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70804, + "fields": { + "id_car_serie": 8660, + "name": "2.8d AT (110 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70805, + "fields": { + "id_car_serie": 8660, + "name": "2.8d MT (110 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70809, + "fields": { + "id_car_serie": 8306, + "name": "1.6 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70827, + "fields": { + "id_car_serie": 14642, + "name": "1.5 D AMT (68 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70832, + "fields": { + "id_car_serie": 14658, + "name": "1.6 MT 16 valves (Euro-4) (98 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70836, + "fields": { + "id_car_serie": 14689, + "name": "1.6 MT (205 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70837, + "fields": { + "id_car_serie": 14689, + "name": "2.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70849, + "fields": { + "id_car_serie": 10771, + "name": "Long 2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70851, + "fields": { + "id_car_serie": 10771, + "name": "Long 2.0d MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70886, + "fields": { + "id_car_serie": 15162, + "name": "2.5 CVT AWD (171 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 70901, + "fields": { + "id_car_serie": 15111, + "name": "1.2 TSI MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70905, + "fields": { + "id_car_serie": 15111, + "name": "1.6 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70948, + "fields": { + "id_car_serie": 14938, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70950, + "fields": { + "id_car_serie": 14938, + "name": "2.4 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70951, + "fields": { + "id_car_serie": 14938, + "name": "2.5 MT (143 hp) diesel", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70952, + "fields": { + "id_car_serie": 14938, + "name": "2.8d AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70954, + "fields": { + "id_car_serie": 14938, + "name": "3.3 AT (174 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70956, + "fields": { + "id_car_serie": 14938, + "name": "3.8 AT (218 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70960, + "fields": { + "id_car_serie": 14944, + "name": "2.4 MT (166 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70961, + "fields": { + "id_car_serie": 14954, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70962, + "fields": { + "id_car_serie": 14954, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70965, + "fields": { + "id_car_serie": 14954, + "name": "1.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70969, + "fields": { + "id_car_serie": 14954, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70970, + "fields": { + "id_car_serie": 14955, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70971, + "fields": { + "id_car_serie": 14955, + "name": "1.6 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70972, + "fields": { + "id_car_serie": 14955, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70973, + "fields": { + "id_car_serie": 14955, + "name": "1.6 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70974, + "fields": { + "id_car_serie": 14955, + "name": "1.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70977, + "fields": { + "id_car_serie": 14955, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70978, + "fields": { + "id_car_serie": 14994, + "name": "2.0 CRDi AT (112 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70979, + "fields": { + "id_car_serie": 14994, + "name": "2.0 CRDi MT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70984, + "fields": { + "id_car_serie": 15019, + "name": "1.7 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70986, + "fields": { + "id_car_serie": 15019, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70990, + "fields": { + "id_car_serie": 15019, + "name": "2.1 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70992, + "fields": { + "id_car_serie": 15038, + "name": "300 3.0d AT (190 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70996, + "fields": { + "id_car_serie": 15039, + "name": "350 Long 3.7 AT (245 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 70998, + "fields": { + "id_car_serie": 15039, + "name": "430 Long 4.3 AT (279 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71000, + "fields": { + "id_car_serie": 15039, + "name": "500 Long 5.0 AT (306 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71002, + "fields": { + "id_car_serie": 15039, + "name": "5.5 AT (500 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71010, + "fields": { + "id_car_serie": 15078, + "name": "1.5 dCi MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71011, + "fields": { + "id_car_serie": 15078, + "name": "1.5 dCi MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71017, + "fields": { + "id_car_serie": 15079, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71018, + "fields": { + "id_car_serie": 15079, + "name": "1.5 dCi MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71019, + "fields": { + "id_car_serie": 15079, + "name": "1.5 dCi MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71021, + "fields": { + "id_car_serie": 15079, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71028, + "fields": { + "id_car_serie": 15083, + "name": "2.0 T AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71029, + "fields": { + "id_car_serie": 15083, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71030, + "fields": { + "id_car_serie": 15083, + "name": "2.0 T MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71033, + "fields": { + "id_car_serie": 15083, + "name": "2.0 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71039, + "fields": { + "id_car_serie": 15083, + "name": "3.5 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71052, + "fields": { + "id_car_serie": 15107, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71053, + "fields": { + "id_car_serie": 15107, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71055, + "fields": { + "id_car_serie": 15107, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71056, + "fields": { + "id_car_serie": 15107, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71057, + "fields": { + "id_car_serie": 15107, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71059, + "fields": { + "id_car_serie": 15107, + "name": "1.9 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71060, + "fields": { + "id_car_serie": 15107, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71076, + "fields": { + "id_car_serie": 15115, + "name": "2.5 GT E-5AT AWD (265 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 71098, + "fields": { + "id_car_serie": 15179, + "name": "ST 2.3 AT (153 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71099, + "fields": { + "id_car_serie": 15179, + "name": "ST 2.3 MT (153 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71101, + "fields": { + "id_car_serie": 15226, + "name": "3.0 AT (408 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71104, + "fields": { + "id_car_serie": 15295, + "name": "1.6 MT (211 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71110, + "fields": { + "id_car_serie": 15255, + "name": "0.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71112, + "fields": { + "id_car_serie": 15255, + "name": "0.8 MT (42 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71114, + "fields": { + "id_car_serie": 15255, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71117, + "fields": { + "id_car_serie": 15313, + "name": "S 3.4 PDK Black Edition (320 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71118, + "fields": { + "id_car_serie": 15313, + "name": "S 3.4 MT Black Edtion (320 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71147, + "fields": { + "id_car_serie": 15321, + "name": "2.0 FSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71174, + "fields": { + "id_car_serie": 15388, + "name": "4.7 AT (275 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71180, + "fields": { + "id_car_serie": 15529, + "name": "6.0 AT (630 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71185, + "fields": { + "id_car_serie": 15541, + "name": "2.0d MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 71187, + "fields": { + "id_car_serie": 15541, + "name": "2.0d MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 71205, + "fields": { + "id_car_serie": 15664, + "name": "6.0 AT (612 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71208, + "fields": { + "id_car_serie": 15668, + "name": "310 2.0 MT (310 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71209, + "fields": { + "id_car_serie": 15668, + "name": "2.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71210, + "fields": { + "id_car_serie": 15669, + "name": "2.0 MT (310 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71211, + "fields": { + "id_car_serie": 15670, + "name": "R 1.8 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71212, + "fields": { + "id_car_serie": 15670, + "name": "R 1.8 MT (225 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71217, + "fields": { + "id_car_serie": 15757, + "name": "3.5 AT (313 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71218, + "fields": { + "id_car_serie": 15757, + "name": "3.5 MT (313 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71231, + "fields": { + "id_car_serie": 16266, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 71233, + "fields": { + "id_car_serie": 16266, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71236, + "fields": { + "id_car_serie": 16267, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71237, + "fields": { + "id_car_serie": 16267, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71239, + "fields": { + "id_car_serie": 16267, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71240, + "fields": { + "id_car_serie": 16267, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71243, + "fields": { + "id_car_serie": 16529, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71244, + "fields": { + "id_car_serie": 16529, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71245, + "fields": { + "id_car_serie": 16530, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71246, + "fields": { + "id_car_serie": 16530, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71247, + "fields": { + "id_car_serie": 16531, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71248, + "fields": { + "id_car_serie": 16531, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71249, + "fields": { + "id_car_serie": 16531, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71250, + "fields": { + "id_car_serie": 16532, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71251, + "fields": { + "id_car_serie": 16532, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71252, + "fields": { + "id_car_serie": 16532, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71253, + "fields": { + "id_car_serie": 16695, + "name": "3.5 AT (275 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 71260, + "fields": { + "id_car_serie": 16944, + "name": "2.0 AT (172 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 71261, + "fields": { + "id_car_serie": 16944, + "name": "2.0 MT (172 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 82836, + "fields": { + "id_car_serie": 3979, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 82837, + "fields": { + "id_car_serie": 3979, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 82845, + "fields": { + "id_car_serie": 23393, + "name": "1.9 TDI MT H1 (86 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 82847, + "fields": { + "id_car_serie": 23393, + "name": "2.5 TDI MT H1 (131 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 82848, + "fields": { + "id_car_serie": 23393, + "name": "2.5 TDI 4Motion MT H1 (131 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 82849, + "fields": { + "id_car_serie": 23393, + "name": "2.5 TDI MT H2 (131 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 82850, + "fields": { + "id_car_serie": 23393, + "name": "2.5 TDI MT H1 (174 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 82856, + "fields": { + "id_car_serie": 23394, + "name": "2.4 SD MT H2 (75 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 82857, + "fields": { + "id_car_serie": 23394, + "name": "2.5 TDI syncro MT H3 (102 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 82858, + "fields": { + "id_car_serie": 23394, + "name": "2.8 VR6 MT H3 (140 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 82862, + "fields": { + "id_car_serie": 7854, + "name": "1.8 AMT (129 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 82864, + "fields": { + "id_car_serie": 7854, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 82865, + "fields": { + "id_car_serie": 7854, + "name": "2.0 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107899, + "fields": { + "id_car_serie": 3750, + "name": "1.8 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 107900, + "fields": { + "id_car_serie": 3750, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 107901, + "fields": { + "id_car_serie": 3751, + "name": "1.8 AT (133 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 107902, + "fields": { + "id_car_serie": 3751, + "name": "1.8 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 107903, + "fields": { + "id_car_serie": 3751, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 107904, + "fields": { + "id_car_serie": 4393, + "name": "2.3 T MT (250 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107905, + "fields": { + "id_car_serie": 4394, + "name": "2.3 T AT (240 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107906, + "fields": { + "id_car_serie": 4394, + "name": "2.3 T5 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107907, + "fields": { + "id_car_serie": 5756, + "name": "5.3 AT (325 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107911, + "fields": { + "id_car_serie": 6137, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107914, + "fields": { + "id_car_serie": 6137, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107916, + "fields": { + "id_car_serie": 6137, + "name": "1.4 TDCi MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107917, + "fields": { + "id_car_serie": 6137, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107919, + "fields": { + "id_car_serie": 6137, + "name": "1.6 TDCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107921, + "fields": { + "id_car_serie": 8490, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107922, + "fields": { + "id_car_serie": 14801, + "name": "2.4 AT AWD (188 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 107925, + "fields": { + "id_car_serie": 24651, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107926, + "fields": { + "id_car_serie": 24651, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107927, + "fields": { + "id_car_serie": 24651, + "name": "2.3 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107928, + "fields": { + "id_car_serie": 24651, + "name": "2.3 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107929, + "fields": { + "id_car_serie": 24651, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107930, + "fields": { + "id_car_serie": 24650, + "name": "3.2 AT (225 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107931, + "fields": { + "id_car_serie": 24650, + "name": "3.2 AT (260 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107932, + "fields": { + "id_car_serie": 24650, + "name": "3.2 MT (225 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107933, + "fields": { + "id_car_serie": 24650, + "name": "3.2 MT (260 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107952, + "fields": { + "id_car_serie": 44106, + "name": "1.2 CVT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107953, + "fields": { + "id_car_serie": 44106, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107954, + "fields": { + "id_car_serie": 44106, + "name": "1.3 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107955, + "fields": { + "id_car_serie": 44106, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107957, + "fields": { + "id_car_serie": 44106, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107959, + "fields": { + "id_car_serie": 44107, + "name": "1.2 CVT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107960, + "fields": { + "id_car_serie": 44107, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107961, + "fields": { + "id_car_serie": 44107, + "name": "1.3 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107962, + "fields": { + "id_car_serie": 44107, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107963, + "fields": { + "id_car_serie": 44107, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107964, + "fields": { + "id_car_serie": 44107, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107965, + "fields": { + "id_car_serie": 44107, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107966, + "fields": { + "id_car_serie": 44107, + "name": "1.8 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107969, + "fields": { + "id_car_serie": 44515, + "name": "3.8 T GR6 AWD (540 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107970, + "fields": { + "id_car_serie": 44515, + "name": "3.8 T GR6 AWD (550 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107972, + "fields": { + "id_car_serie": 44553, + "name": "1.0 2-tronic (68 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107973, + "fields": { + "id_car_serie": 44553, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107974, + "fields": { + "id_car_serie": 44554, + "name": "1.0 2-tronic (68 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107975, + "fields": { + "id_car_serie": 44554, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107976, + "fields": { + "id_car_serie": 44555, + "name": "1.0 2-tronic (68 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107977, + "fields": { + "id_car_serie": 44555, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107979, + "fields": { + "id_car_serie": 44556, + "name": "1.0 2-tronic (68 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107980, + "fields": { + "id_car_serie": 44556, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107982, + "fields": { + "id_car_serie": 44557, + "name": "1.0 AMT (68 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107983, + "fields": { + "id_car_serie": 44557, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107984, + "fields": { + "id_car_serie": 44557, + "name": "1.4 MT HDI (54 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107985, + "fields": { + "id_car_serie": 44558, + "name": "1.0 AMT (68 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107986, + "fields": { + "id_car_serie": 44558, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107987, + "fields": { + "id_car_serie": 44558, + "name": "1.4 MT HDI (54 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 107988, + "fields": { + "id_car_serie": 44726, + "name": "1.1 MT (41 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108002, + "fields": { + "id_car_serie": 44996, + "name": "2.3 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108003, + "fields": { + "id_car_serie": 44996, + "name": "2.3 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108004, + "fields": { + "id_car_serie": 44996, + "name": "2.8 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108005, + "fields": { + "id_car_serie": 44996, + "name": "2.8 MT (174 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108006, + "fields": { + "id_car_serie": 480, + "name": "1.8 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108010, + "fields": { + "id_car_serie": 480, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108011, + "fields": { + "id_car_serie": 480, + "name": "2.0 HDI AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108012, + "fields": { + "id_car_serie": 480, + "name": "2.0 HDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108030, + "fields": { + "id_car_serie": 1035, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108031, + "fields": { + "id_car_serie": 1035, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108032, + "fields": { + "id_car_serie": 1035, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108033, + "fields": { + "id_car_serie": 1056, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108034, + "fields": { + "id_car_serie": 1056, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108040, + "fields": { + "id_car_serie": 1071, + "name": "3.2 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108044, + "fields": { + "id_car_serie": 1107, + "name": "1.0 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108051, + "fields": { + "id_car_serie": 1180, + "name": "1.0 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108054, + "fields": { + "id_car_serie": 1426, + "name": "3.5 S IPS (350 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 108055, + "fields": { + "id_car_serie": 1455, + "name": "5.0 MT (326 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108056, + "fields": { + "id_car_serie": 1675, + "name": "0.5 CVT (21 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 108059, + "fields": { + "id_car_serie": 1770, + "name": "1.1 AT 4WD Wide (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108060, + "fields": { + "id_car_serie": 1770, + "name": "1.1 AT Wide (75 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108070, + "fields": { + "id_car_serie": 2058, + "name": "2.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108071, + "fields": { + "id_car_serie": 2058, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108072, + "fields": { + "id_car_serie": 2068, + "name": "6.0 AT (361 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108073, + "fields": { + "id_car_serie": 2068, + "name": "6.0 MT (361 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108074, + "fields": { + "id_car_serie": 2068, + "name": "6.2 AT (415 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108075, + "fields": { + "id_car_serie": 2068, + "name": "6.2 MT (415 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108078, + "fields": { + "id_car_serie": 2155, + "name": "1.4 T MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108090, + "fields": { + "id_car_serie": 2310, + "name": "0.7 AMT (101 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108092, + "fields": { + "id_car_serie": 2310, + "name": "1.4 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108113, + "fields": { + "id_car_serie": 9388, + "name": "1.6 MT Oda (73 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108114, + "fields": { + "id_car_serie": 9388, + "name": "1.7 MT Oda (85 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108115, + "fields": { + "id_car_serie": 9388, + "name": "1.8 MT Orbit (85 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108120, + "fields": { + "id_car_serie": 9381, + "name": "3.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1940, + "end_production_year": 1948 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108121, + "fields": { + "id_car_serie": 9374, + "name": "1.6 MT (106 hp) 5MT", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108124, + "fields": { + "id_car_serie": 9369, + "name": "21114 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 108136, + "fields": { + "id_car_serie": 2520, + "name": "4.2 MT (350 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108146, + "fields": { + "id_car_serie": 2712, + "name": "21103 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108148, + "fields": { + "id_car_serie": 2712, + "name": "21104 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 108149, + "fields": { + "id_car_serie": 2712, + "name": "21108 MT Premier (91 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108152, + "fields": { + "id_car_serie": 2738, + "name": "2.4 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1956, + "end_production_year": 1958 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108162, + "fields": { + "id_car_serie": 8858, + "name": "1.6 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 108163, + "fields": { + "id_car_serie": 8858, + "name": "1.6 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 108176, + "fields": { + "id_car_serie": 6523, + "name": "5.3 AT AWD (294 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108177, + "fields": { + "id_car_serie": 6523, + "name": "5.3 AT (294 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108178, + "fields": { + "id_car_serie": 6523, + "name": "5.3 AT (304 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108179, + "fields": { + "id_car_serie": 6523, + "name": "5.3 AT AWD (304 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108181, + "fields": { + "id_car_serie": 6791, + "name": "6.0 AT (630 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108198, + "fields": { + "id_car_serie": 7007, + "name": "1.6 AT ALL4 (218 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 108201, + "fields": { + "id_car_serie": 7007, + "name": "1.6 MT ALL4 (218 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 108217, + "fields": { + "id_car_serie": 7010, + "name": "1.6 AT ALL4 (218 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 108221, + "fields": { + "id_car_serie": 7010, + "name": "1.6 MT ALL4 (218 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 108231, + "fields": { + "id_car_serie": 8074, + "name": "21033 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108232, + "fields": { + "id_car_serie": 8074, + "name": "21035 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108235, + "fields": { + "id_car_serie": 8715, + "name": "2.0 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108241, + "fields": { + "id_car_serie": 14711, + "name": "2.4 AT 4x4 (184 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 108249, + "fields": { + "id_car_serie": 45000, + "name": "1.4 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 108250, + "fields": { + "id_car_serie": 45000, + "name": "1.4 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 108251, + "fields": { + "id_car_serie": 45000, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 108252, + "fields": { + "id_car_serie": 45000, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 108253, + "fields": { + "id_car_serie": 45011, + "name": "4.0 AT (326 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108254, + "fields": { + "id_car_serie": 45009, + "name": "4.2 AT (395 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108255, + "fields": { + "id_car_serie": 45008, + "name": "4.2 AT (395 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108256, + "fields": { + "id_car_serie": 45005, + "name": "1.6 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 108257, + "fields": { + "id_car_serie": 45005, + "name": "2.0 CVT (300 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 108258, + "fields": { + "id_car_serie": 44998, + "name": "1.4 MT (62 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108260, + "fields": { + "id_car_serie": 44998, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108261, + "fields": { + "id_car_serie": 45010, + "name": "4.0 AT (363 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108263, + "fields": { + "id_car_serie": 45004, + "name": "1.5 CVT (106 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 108264, + "fields": { + "id_car_serie": 45004, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 108272, + "fields": { + "id_car_serie": 44999, + "name": "33 1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108273, + "fields": { + "id_car_serie": 44999, + "name": "033-16 2.3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108274, + "fields": { + "id_car_serie": 44999, + "name": "036i 3.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 108275, + "fields": { + "id_car_serie": 44999, + "name": "3.0 MT (235 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109564, + "fields": { + "id_car_serie": 3210, + "name": "3.5 AT (233 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109566, + "fields": { + "id_car_serie": 3210, + "name": "3.8 AT AWD (218 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109577, + "fields": { + "id_car_serie": 3332, + "name": "1.4 LPG MT (91 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 109578, + "fields": { + "id_car_serie": 3332, + "name": "1.4 MT (96 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 109579, + "fields": { + "id_car_serie": 3332, + "name": "1.6 TDCi ECOnetic MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 109580, + "fields": { + "id_car_serie": 3333, + "name": "1.0 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 109583, + "fields": { + "id_car_serie": 3333, + "name": "1.4 LPG MT (91 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 109584, + "fields": { + "id_car_serie": 3333, + "name": "1.4 MT (96 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 109585, + "fields": { + "id_car_serie": 3333, + "name": "1.6 Ti-VCT MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 109590, + "fields": { + "id_car_serie": 3656, + "name": "1.5 SKYACTIV-G MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 109592, + "fields": { + "id_car_serie": 3763, + "name": "3.0 Twin Turbo MT AWD (324 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109608, + "fields": { + "id_car_serie": 5939, + "name": "3.3 AT (158 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109616, + "fields": { + "id_car_serie": 6137, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109618, + "fields": { + "id_car_serie": 45146, + "name": "2.5 6MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109619, + "fields": { + "id_car_serie": 6193, + "name": "2.5 5MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109620, + "fields": { + "id_car_serie": 6339, + "name": "1.3 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109621, + "fields": { + "id_car_serie": 6339, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109629, + "fields": { + "id_car_serie": 8830, + "name": "350 Long 3.0d AT (258 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109647, + "fields": { + "id_car_serie": 8819, + "name": "280 3.0 AT (231 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109650, + "fields": { + "id_car_serie": 8815, + "name": "1.8 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109660, + "fields": { + "id_car_serie": 14809, + "name": "2.9 TD AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109661, + "fields": { + "id_car_serie": 14877, + "name": "4.2 FSI tiptronic quattro (350 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109675, + "fields": { + "id_car_serie": 15168, + "name": "2.0 TSI MT L1 (204 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109679, + "fields": { + "id_car_serie": 15168, + "name": "2.0 TSI MT L2 (204 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109680, + "fields": { + "id_car_serie": 15168, + "name": "2.0 TSI MT L1 (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109681, + "fields": { + "id_car_serie": 15168, + "name": "2.0 TDI MT L1 (102 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109682, + "fields": { + "id_car_serie": 15175, + "name": "2.3 AT (153 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109683, + "fields": { + "id_car_serie": 15175, + "name": "2.3 MT (153 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109684, + "fields": { + "id_car_serie": 15321, + "name": "2.0 TFSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109686, + "fields": { + "id_car_serie": 15622, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109689, + "fields": { + "id_car_serie": 15700, + "name": "2.0 MT (275 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 109692, + "fields": { + "id_car_serie": 15701, + "name": "2.0 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109697, + "fields": { + "id_car_serie": 45250, + "name": "1.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 109698, + "fields": { + "id_car_serie": 45250, + "name": "1.6 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 109699, + "fields": { + "id_car_serie": 45250, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 109700, + "fields": { + "id_car_serie": 45250, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 109701, + "fields": { + "id_car_serie": 45250, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 109702, + "fields": { + "id_car_serie": 45190, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109704, + "fields": { + "id_car_serie": 45190, + "name": "3.5 CVT (245 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109705, + "fields": { + "id_car_serie": 45161, + "name": "1.8 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109706, + "fields": { + "id_car_serie": 45161, + "name": "1.8 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109707, + "fields": { + "id_car_serie": 45161, + "name": "1.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109708, + "fields": { + "id_car_serie": 45161, + "name": "1.8 AT (192 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109709, + "fields": { + "id_car_serie": 45161, + "name": "1.8 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109710, + "fields": { + "id_car_serie": 45161, + "name": "1.8 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109711, + "fields": { + "id_car_serie": 45161, + "name": "1.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109712, + "fields": { + "id_car_serie": 45161, + "name": "1.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109713, + "fields": { + "id_car_serie": 45161, + "name": "2.0 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109714, + "fields": { + "id_car_serie": 45161, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109715, + "fields": { + "id_car_serie": 45161, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109716, + "fields": { + "id_car_serie": 45161, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109719, + "fields": { + "id_car_serie": 45161, + "name": "2.3 AT (197 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109720, + "fields": { + "id_car_serie": 45161, + "name": "2.3 MT (197 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109721, + "fields": { + "id_car_serie": 45161, + "name": "3.2 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109722, + "fields": { + "id_car_serie": 45161, + "name": "3.2 MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109778, + "fields": { + "id_car_serie": 45011, + "name": "4.0 MT (326 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109779, + "fields": { + "id_car_serie": 45174, + "name": "3.0 Di AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109780, + "fields": { + "id_car_serie": 45174, + "name": "3.0 Di MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109783, + "fields": { + "id_car_serie": 45174, + "name": "4.2 D MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109799, + "fields": { + "id_car_serie": 45147, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109800, + "fields": { + "id_car_serie": 45147, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109802, + "fields": { + "id_car_serie": 45147, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109803, + "fields": { + "id_car_serie": 45147, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109805, + "fields": { + "id_car_serie": 45147, + "name": "2.0 TDCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109806, + "fields": { + "id_car_serie": 45147, + "name": "2.0 TDCi 5MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109808, + "fields": { + "id_car_serie": 45147, + "name": "2.0 TDDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109809, + "fields": { + "id_car_serie": 45147, + "name": "2.2 TDCi MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109811, + "fields": { + "id_car_serie": 45147, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109812, + "fields": { + "id_car_serie": 45147, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109813, + "fields": { + "id_car_serie": 45147, + "name": "3.0 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109832, + "fields": { + "id_car_serie": 45163, + "name": "1.6 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109833, + "fields": { + "id_car_serie": 45163, + "name": "1.6 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109834, + "fields": { + "id_car_serie": 45163, + "name": "2.0 D AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109835, + "fields": { + "id_car_serie": 45163, + "name": "2.0 D MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109836, + "fields": { + "id_car_serie": 45154, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109837, + "fields": { + "id_car_serie": 45154, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109838, + "fields": { + "id_car_serie": 45154, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109839, + "fields": { + "id_car_serie": 45154, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109840, + "fields": { + "id_car_serie": 45154, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109841, + "fields": { + "id_car_serie": 45154, + "name": "1.8 AT (140 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109842, + "fields": { + "id_car_serie": 45154, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109843, + "fields": { + "id_car_serie": 45154, + "name": "1.8 MT (140 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109876, + "fields": { + "id_car_serie": 45173, + "name": "5.6 DIG AT 4WD (405 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 109878, + "fields": { + "id_car_serie": 45204, + "name": "6.2 AT (649 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 109879, + "fields": { + "id_car_serie": 45205, + "name": "6.2 AT (564 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109880, + "fields": { + "id_car_serie": 45205, + "name": "6.2 MT (564 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109881, + "fields": { + "id_car_serie": 45206, + "name": "6.2 AT (564 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109882, + "fields": { + "id_car_serie": 45206, + "name": "6.2 MT (564 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109883, + "fields": { + "id_car_serie": 45207, + "name": "6.2 AT (564 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109884, + "fields": { + "id_car_serie": 45207, + "name": "6.2 MT (564 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109885, + "fields": { + "id_car_serie": 15696, + "name": "5.7 AT (405 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109886, + "fields": { + "id_car_serie": 15696, + "name": "5.7 MT (405 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109887, + "fields": { + "id_car_serie": 15696, + "name": "6.0 AT (405 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109888, + "fields": { + "id_car_serie": 15696, + "name": "6.0 MT (405 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109893, + "fields": { + "id_car_serie": 45212, + "name": "3.8 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109897, + "fields": { + "id_car_serie": 45212, + "name": "3.8 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 109931, + "fields": { + "id_car_serie": 45222, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 109934, + "fields": { + "id_car_serie": 45222, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110087, + "fields": { + "id_car_serie": 45138, + "name": "4.4 AT (476 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110089, + "fields": { + "id_car_serie": 45140, + "name": "3.3 AT (173 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110090, + "fields": { + "id_car_serie": 45140, + "name": "3.6 AT (283 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110091, + "fields": { + "id_car_serie": 45140, + "name": "3.8 AT (197 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110092, + "fields": { + "id_car_serie": 45140, + "name": "4.0 AT (251 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110093, + "fields": { + "id_car_serie": 45141, + "name": "1.5 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110094, + "fields": { + "id_car_serie": 45141, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110095, + "fields": { + "id_car_serie": 45141, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110096, + "fields": { + "id_car_serie": 45141, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110097, + "fields": { + "id_car_serie": 45142, + "name": "1.6 Ti-VCT MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110098, + "fields": { + "id_car_serie": 45142, + "name": "1.6 EcoBoost MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110100, + "fields": { + "id_car_serie": 45142, + "name": "2.0 EcoBoost PowerShift (240 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110101, + "fields": { + "id_car_serie": 45142, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110102, + "fields": { + "id_car_serie": 45142, + "name": "2.0 TDCi AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110103, + "fields": { + "id_car_serie": 45142, + "name": "2.0 TDCi PowerShift (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110104, + "fields": { + "id_car_serie": 45142, + "name": "2.0 TDCi PowerShift (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110105, + "fields": { + "id_car_serie": 45142, + "name": "2.0 TDCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110106, + "fields": { + "id_car_serie": 45142, + "name": "2.0 TDCi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110107, + "fields": { + "id_car_serie": 45142, + "name": "2.0 TDCi MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110108, + "fields": { + "id_car_serie": 45142, + "name": "2.2 TDCi MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110109, + "fields": { + "id_car_serie": 45142, + "name": "2.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110110, + "fields": { + "id_car_serie": 45143, + "name": "2.0 EcoBoost PowerShift (200 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110111, + "fields": { + "id_car_serie": 45143, + "name": "2.0 EcoBoost PowerShift (240 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110112, + "fields": { + "id_car_serie": 45143, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110114, + "fields": { + "id_car_serie": 45143, + "name": "2.0 TDCi PowerShift (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110115, + "fields": { + "id_car_serie": 45143, + "name": "2.0 TDCi MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110116, + "fields": { + "id_car_serie": 45143, + "name": "2.0 TDCi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110117, + "fields": { + "id_car_serie": 45143, + "name": "2.0 EcoBoost MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110118, + "fields": { + "id_car_serie": 45143, + "name": "2.0 EcoBoost MT (240 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110119, + "fields": { + "id_car_serie": 45143, + "name": "2.2 TDCi AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110121, + "fields": { + "id_car_serie": 45143, + "name": "2.2 TDCi MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110122, + "fields": { + "id_car_serie": 45143, + "name": "2.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110123, + "fields": { + "id_car_serie": 45144, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110124, + "fields": { + "id_car_serie": 45144, + "name": "2.0 EcoBoost PowerShift (200 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110125, + "fields": { + "id_car_serie": 45144, + "name": "2.0 EcoBoost PowerShift (240 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110126, + "fields": { + "id_car_serie": 45144, + "name": "2.0 Flexifuel MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110127, + "fields": { + "id_car_serie": 45144, + "name": "2.0 TDCi PowerShift (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110129, + "fields": { + "id_car_serie": 45144, + "name": "2.0 TDCi MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110130, + "fields": { + "id_car_serie": 45144, + "name": "2.0 EcoBoost MT (240 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110131, + "fields": { + "id_car_serie": 45144, + "name": "2.0 TDCi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110132, + "fields": { + "id_car_serie": 45144, + "name": "2.0 EcoBoost MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110134, + "fields": { + "id_car_serie": 45144, + "name": "2.2 TDCi MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110135, + "fields": { + "id_car_serie": 45144, + "name": "2.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110148, + "fields": { + "id_car_serie": 45146, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110149, + "fields": { + "id_car_serie": 45146, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110151, + "fields": { + "id_car_serie": 45146, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110152, + "fields": { + "id_car_serie": 45146, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110155, + "fields": { + "id_car_serie": 45146, + "name": "2.0 TDCi 5MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110156, + "fields": { + "id_car_serie": 45146, + "name": "2.0 TDCi 6MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110157, + "fields": { + "id_car_serie": 45146, + "name": "2.0 TDDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110158, + "fields": { + "id_car_serie": 45146, + "name": "2.2 TDCi MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110159, + "fields": { + "id_car_serie": 45146, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110160, + "fields": { + "id_car_serie": 45146, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110162, + "fields": { + "id_car_serie": 45146, + "name": "3.0 MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110176, + "fields": { + "id_car_serie": 45166, + "name": "2.0 CVT (146 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110177, + "fields": { + "id_car_serie": 45166, + "name": "2.0 CVT 4WD (146 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110178, + "fields": { + "id_car_serie": 45166, + "name": "2.4 CVT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110179, + "fields": { + "id_car_serie": 45166, + "name": "3.0 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110181, + "fields": { + "id_car_serie": 46832, + "name": "1.4 TB MultiAir MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110182, + "fields": { + "id_car_serie": 46832, + "name": "1.4 TB MultiAir TCT (170 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110185, + "fields": { + "id_car_serie": 45132, + "name": "1.4 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110225, + "fields": { + "id_car_serie": 45198, + "name": "3.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110226, + "fields": { + "id_car_serie": 45198, + "name": "3.2 AT (354 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110227, + "fields": { + "id_car_serie": 45197, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110258, + "fields": { + "id_car_serie": 45188, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110259, + "fields": { + "id_car_serie": 45188, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110260, + "fields": { + "id_car_serie": 45188, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110264, + "fields": { + "id_car_serie": 45188, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110266, + "fields": { + "id_car_serie": 45188, + "name": "2.0 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110267, + "fields": { + "id_car_serie": 45187, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110268, + "fields": { + "id_car_serie": 45187, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110269, + "fields": { + "id_car_serie": 45187, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110271, + "fields": { + "id_car_serie": 45187, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110273, + "fields": { + "id_car_serie": 45187, + "name": "2.0 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110276, + "fields": { + "id_car_serie": 45186, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110277, + "fields": { + "id_car_serie": 45186, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110278, + "fields": { + "id_car_serie": 45186, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110282, + "fields": { + "id_car_serie": 45186, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110285, + "fields": { + "id_car_serie": 45186, + "name": "2.0 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110288, + "fields": { + "id_car_serie": 45185, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110289, + "fields": { + "id_car_serie": 45185, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110290, + "fields": { + "id_car_serie": 45185, + "name": "1.4 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110292, + "fields": { + "id_car_serie": 45184, + "name": "1.0 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110294, + "fields": { + "id_car_serie": 45183, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110295, + "fields": { + "id_car_serie": 45183, + "name": "1.6 I-Motion AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110307, + "fields": { + "id_car_serie": 45180, + "name": "0.7 AMT (50 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110308, + "fields": { + "id_car_serie": 45180, + "name": "0.7 AMT (61 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110309, + "fields": { + "id_car_serie": 45180, + "name": "0.7 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110310, + "fields": { + "id_car_serie": 45180, + "name": "0.8 CDi AMT (41 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110322, + "fields": { + "id_car_serie": 45175, + "name": "3.0 Di AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110323, + "fields": { + "id_car_serie": 45175, + "name": "3.0 Di MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110326, + "fields": { + "id_car_serie": 45175, + "name": "4.2 D MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110331, + "fields": { + "id_car_serie": 45171, + "name": "3.5 Xtronic AWD (249 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110353, + "fields": { + "id_car_serie": 45160, + "name": "1.3 6AT (210 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110354, + "fields": { + "id_car_serie": 45160, + "name": "1.3 4AT (210 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110355, + "fields": { + "id_car_serie": 45160, + "name": "1.3 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110356, + "fields": { + "id_car_serie": 45160, + "name": "1.3 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110357, + "fields": { + "id_car_serie": 45160, + "name": "1.3 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110358, + "fields": { + "id_car_serie": 45160, + "name": "1.3 MT (231 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110359, + "fields": { + "id_car_serie": 45160, + "name": "1.3 MT (250 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110362, + "fields": { + "id_car_serie": 45159, + "name": "1.3 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110364, + "fields": { + "id_car_serie": 45159, + "name": "1.3 MT (215 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110365, + "fields": { + "id_car_serie": 45159, + "name": "1.3 MT (231 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110366, + "fields": { + "id_car_serie": 45159, + "name": "1.3 MT (235 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110376, + "fields": { + "id_car_serie": 45155, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110377, + "fields": { + "id_car_serie": 45155, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110378, + "fields": { + "id_car_serie": 45155, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110379, + "fields": { + "id_car_serie": 45155, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110380, + "fields": { + "id_car_serie": 45155, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110381, + "fields": { + "id_car_serie": 45155, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110382, + "fields": { + "id_car_serie": 45155, + "name": "2.3 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110383, + "fields": { + "id_car_serie": 45155, + "name": "2.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110392, + "fields": { + "id_car_serie": 45148, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110393, + "fields": { + "id_car_serie": 45148, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110395, + "fields": { + "id_car_serie": 45148, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110396, + "fields": { + "id_car_serie": 45148, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110397, + "fields": { + "id_car_serie": 45148, + "name": "2.0 TDCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110398, + "fields": { + "id_car_serie": 45148, + "name": "2.0 TDCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110401, + "fields": { + "id_car_serie": 45148, + "name": "2.0 TDDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110402, + "fields": { + "id_car_serie": 45148, + "name": "2.2 TDCi MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110403, + "fields": { + "id_car_serie": 45148, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110405, + "fields": { + "id_car_serie": 45148, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110406, + "fields": { + "id_car_serie": 45148, + "name": "3.0 ST220 MT (226 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110593, + "fields": { + "id_car_serie": 14769, + "name": "1.8 TFSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110594, + "fields": { + "id_car_serie": 14769, + "name": "2.0 TFSI S tronic quattro (230 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110599, + "fields": { + "id_car_serie": 3347, + "name": "2.3 AT (317 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110600, + "fields": { + "id_car_serie": 3347, + "name": "2.3 MT (317 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110601, + "fields": { + "id_car_serie": 3347, + "name": "5.0 AT (421 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110602, + "fields": { + "id_car_serie": 3347, + "name": "5.0 MT (421 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110607, + "fields": { + "id_car_serie": 3605, + "name": "3.0 V6 Supercharged AT AWD (340 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110608, + "fields": { + "id_car_serie": 3606, + "name": "3.0 TDV6 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110612, + "fields": { + "id_car_serie": 4070, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110613, + "fields": { + "id_car_serie": 4539, + "name": "2.0 D3 Drive-E Geartronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110614, + "fields": { + "id_car_serie": 4539, + "name": "2.4 D4 Geartronic AWD (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110615, + "fields": { + "id_car_serie": 4539, + "name": "2.4 D5 Geartronic AWD (220 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110621, + "fields": { + "id_car_serie": 4440, + "name": "1.5 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110622, + "fields": { + "id_car_serie": 4440, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110625, + "fields": { + "id_car_serie": 6200, + "name": "2.3 AT (317 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110626, + "fields": { + "id_car_serie": 6200, + "name": "2.3 MT (317 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110627, + "fields": { + "id_car_serie": 6200, + "name": "5.0 AT (421 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110628, + "fields": { + "id_car_serie": 6200, + "name": "5.0 MT (421 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110634, + "fields": { + "id_car_serie": 7079, + "name": "3.5 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110660, + "fields": { + "id_car_serie": 15138, + "name": "1.6 MPI AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2016 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110661, + "fields": { + "id_car_serie": 15138, + "name": "1.6 MPI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2016 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110662, + "fields": { + "id_car_serie": 15155, + "name": "1.5 T3 Powershift (152 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110663, + "fields": { + "id_car_serie": 15155, + "name": "2.0 T4 Drive-E Geartronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110665, + "fields": { + "id_car_serie": 15249, + "name": "2.4 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110666, + "fields": { + "id_car_serie": 15272, + "name": "1.5 EcoBoost MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110667, + "fields": { + "id_car_serie": 15272, + "name": "1.6 TDCi Duratorq MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110668, + "fields": { + "id_car_serie": 15272, + "name": "2.0 EcoBoost AT (199 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110669, + "fields": { + "id_car_serie": 15272, + "name": "2.0 EcoBoost AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110670, + "fields": { + "id_car_serie": 15272, + "name": "2.0 TDCi Duratorq AMT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110671, + "fields": { + "id_car_serie": 15272, + "name": "2.0 Hybrid Duratec AT (187 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110672, + "fields": { + "id_car_serie": 15272, + "name": "2.0 TDCi Duratorq MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110673, + "fields": { + "id_car_serie": 15272, + "name": "2.0 EcoBoost MT (203 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110674, + "fields": { + "id_car_serie": 15272, + "name": "2.5 AT (149 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110683, + "fields": { + "id_car_serie": 45389, + "name": "3.6 AT (299 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110684, + "fields": { + "id_car_serie": 45389, + "name": "3.6 AT AWD (299 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110685, + "fields": { + "id_car_serie": 45389, + "name": "5.7 AT (364 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110686, + "fields": { + "id_car_serie": 45389, + "name": "5.7 AT AWD (364 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110690, + "fields": { + "id_car_serie": 45391, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110695, + "fields": { + "id_car_serie": 45394, + "name": "3.5 AT AWD (288 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110705, + "fields": { + "id_car_serie": 1538, + "name": "2.0 SKYACTIV AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110706, + "fields": { + "id_car_serie": 1538, + "name": "2.0 SKYACTIV AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110709, + "fields": { + "id_car_serie": 1538, + "name": "2.0 SKYACTIV MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110714, + "fields": { + "id_car_serie": 1538, + "name": "2.2 SKYACTIV-D AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110718, + "fields": { + "id_car_serie": 1538, + "name": "2.5 SKYACTIV AT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110724, + "fields": { + "id_car_serie": 45406, + "name": "1.1 CRDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110725, + "fields": { + "id_car_serie": 45406, + "name": "1.2 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110726, + "fields": { + "id_car_serie": 45406, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110727, + "fields": { + "id_car_serie": 45406, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110728, + "fields": { + "id_car_serie": 45406, + "name": "1.4 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110729, + "fields": { + "id_car_serie": 45408, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110730, + "fields": { + "id_car_serie": 45408, + "name": "1.4 T-GDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110732, + "fields": { + "id_car_serie": 45408, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110736, + "fields": { + "id_car_serie": 45408, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110739, + "fields": { + "id_car_serie": 45408, + "name": "1.6 CRDi DCT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110740, + "fields": { + "id_car_serie": 45408, + "name": "1.6 CRDi DCT (136 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110741, + "fields": { + "id_car_serie": 45408, + "name": "1.6 CRDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110742, + "fields": { + "id_car_serie": 45408, + "name": "1.6 CRDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110750, + "fields": { + "id_car_serie": 45418, + "name": "1.0 MT (66 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110751, + "fields": { + "id_car_serie": 45418, + "name": "1.2 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110752, + "fields": { + "id_car_serie": 45422, + "name": "2.7 MT (189 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110753, + "fields": { + "id_car_serie": 45422, + "name": "2.9 CRDi AT (185 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110754, + "fields": { + "id_car_serie": 45422, + "name": "2.9 CRDi MT (185 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110755, + "fields": { + "id_car_serie": 45422, + "name": "3.8 AT (254 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110760, + "fields": { + "id_car_serie": 45423, + "name": "2.5 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110761, + "fields": { + "id_car_serie": 45423, + "name": "2.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110762, + "fields": { + "id_car_serie": 45423, + "name": "2.9 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110763, + "fields": { + "id_car_serie": 45423, + "name": "2.9 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110765, + "fields": { + "id_car_serie": 45425, + "name": "2.0 Si4 9AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110766, + "fields": { + "id_car_serie": 45425, + "name": "2.0 Si4 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110767, + "fields": { + "id_car_serie": 45425, + "name": "2.2 TD4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110769, + "fields": { + "id_car_serie": 45425, + "name": "2.2 SD4 9AT (190 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110770, + "fields": { + "id_car_serie": 45425, + "name": "2.2 SD4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110771, + "fields": { + "id_car_serie": 45425, + "name": "2.2 TD4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110780, + "fields": { + "id_car_serie": 45428, + "name": "2.0 MZR MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110787, + "fields": { + "id_car_serie": 45436, + "name": "1.5 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110788, + "fields": { + "id_car_serie": 45436, + "name": "1.5 DCi MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110789, + "fields": { + "id_car_serie": 45436, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110790, + "fields": { + "id_car_serie": 45436, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110791, + "fields": { + "id_car_serie": 45436, + "name": "2.2 DCi MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110792, + "fields": { + "id_car_serie": 45436, + "name": "2.2 dCi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110793, + "fields": { + "id_car_serie": 45398, + "name": "1.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110795, + "fields": { + "id_car_serie": 45398, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110804, + "fields": { + "id_car_serie": 45438, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110826, + "fields": { + "id_car_serie": 45441, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110829, + "fields": { + "id_car_serie": 45441, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110839, + "fields": { + "id_car_serie": 45443, + "name": "1.4 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110840, + "fields": { + "id_car_serie": 45443, + "name": "1.4 TSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110841, + "fields": { + "id_car_serie": 45443, + "name": "1.4 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110842, + "fields": { + "id_car_serie": 45443, + "name": "1.4 TSI MT ACT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110843, + "fields": { + "id_car_serie": 45443, + "name": "1.6 TDI DSG (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110844, + "fields": { + "id_car_serie": 45443, + "name": "1.6 TDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110845, + "fields": { + "id_car_serie": 45443, + "name": "1.8 TSI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110846, + "fields": { + "id_car_serie": 45443, + "name": "1.8 TSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110847, + "fields": { + "id_car_serie": 45443, + "name": "2.0 TSI DSG (220 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110848, + "fields": { + "id_car_serie": 45443, + "name": "2.0 TSI DSG 4x4 (280 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110849, + "fields": { + "id_car_serie": 45443, + "name": "1.4 TSI DSG ACT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110850, + "fields": { + "id_car_serie": 45443, + "name": "2.0 TDI DSG (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110851, + "fields": { + "id_car_serie": 45443, + "name": "2.0 TDI DSG 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110852, + "fields": { + "id_car_serie": 45443, + "name": "1.4 TSI MT ACT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110853, + "fields": { + "id_car_serie": 45443, + "name": "2.0 TDI MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110854, + "fields": { + "id_car_serie": 45443, + "name": "2.0 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110855, + "fields": { + "id_car_serie": 45445, + "name": "1.6 d MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110856, + "fields": { + "id_car_serie": 45445, + "name": "1.8 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110857, + "fields": { + "id_car_serie": 45445, + "name": "1.8 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110858, + "fields": { + "id_car_serie": 45445, + "name": "2.0 d MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110859, + "fields": { + "id_car_serie": 45446, + "name": "1.6 d MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110860, + "fields": { + "id_car_serie": 45446, + "name": "1.8 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110861, + "fields": { + "id_car_serie": 45446, + "name": "1.8 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110862, + "fields": { + "id_car_serie": 45446, + "name": "2.0 d MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110863, + "fields": { + "id_car_serie": 45450, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110864, + "fields": { + "id_car_serie": 45450, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110865, + "fields": { + "id_car_serie": 45450, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110866, + "fields": { + "id_car_serie": 45450, + "name": "2.0 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110867, + "fields": { + "id_car_serie": 45450, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110870, + "fields": { + "id_car_serie": 45450, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110871, + "fields": { + "id_car_serie": 45452, + "name": "1.5 CVT (101 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110872, + "fields": { + "id_car_serie": 45453, + "name": "1.4 CVT (84 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110873, + "fields": { + "id_car_serie": 45454, + "name": "2.5 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110874, + "fields": { + "id_car_serie": 45454, + "name": "2.5 sVT (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110875, + "fields": { + "id_car_serie": 45456, + "name": "1.4 CVT (84 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110876, + "fields": { + "id_car_serie": 45457, + "name": "1.4 CVT (84 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110877, + "fields": { + "id_car_serie": 45460, + "name": "2.0 AMT (265 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110878, + "fields": { + "id_car_serie": 45460, + "name": "2.0 AMT (280 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110879, + "fields": { + "id_car_serie": 45460, + "name": "2.0 MT (265 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110880, + "fields": { + "id_car_serie": 45460, + "name": "2.0 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110882, + "fields": { + "id_car_serie": 45461, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110883, + "fields": { + "id_car_serie": 45461, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110885, + "fields": { + "id_car_serie": 45461, + "name": "1.6 BlueHDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110887, + "fields": { + "id_car_serie": 45461, + "name": "1.6 THP GT MT (208 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110889, + "fields": { + "id_car_serie": 45461, + "name": "1.6 BlueHDI MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110890, + "fields": { + "id_car_serie": 45467, + "name": "1.6 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110891, + "fields": { + "id_car_serie": 45467, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110892, + "fields": { + "id_car_serie": 45466, + "name": "1.6 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110893, + "fields": { + "id_car_serie": 45466, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110894, + "fields": { + "id_car_serie": 45468, + "name": "6.8 AMT (1104 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110895, + "fields": { + "id_car_serie": 45469, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110896, + "fields": { + "id_car_serie": 45469, + "name": "1.5 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110897, + "fields": { + "id_car_serie": 45471, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110899, + "fields": { + "id_car_serie": 45471, + "name": "2.5 AT (249 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110900, + "fields": { + "id_car_serie": 45473, + "name": "3.8 MT (385 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110902, + "fields": { + "id_car_serie": 45474, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110910, + "fields": { + "id_car_serie": 45478, + "name": "1.6 MT (217 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110911, + "fields": { + "id_car_serie": 45477, + "name": "3.8 AMT (570 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110914, + "fields": { + "id_car_serie": 45479, + "name": "1.6 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110915, + "fields": { + "id_car_serie": 45479, + "name": "1.6 MT (217 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110916, + "fields": { + "id_car_serie": 45482, + "name": "2.0 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110919, + "fields": { + "id_car_serie": 45482, + "name": "2.0 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110920, + "fields": { + "id_car_serie": 45482, + "name": "2.0 AT (76 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110923, + "fields": { + "id_car_serie": 45482, + "name": "2.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110928, + "fields": { + "id_car_serie": 45484, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110929, + "fields": { + "id_car_serie": 45484, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110931, + "fields": { + "id_car_serie": 45484, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110933, + "fields": { + "id_car_serie": 45484, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110934, + "fields": { + "id_car_serie": 63004, + "name": "4.0 AT (213 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110935, + "fields": { + "id_car_serie": 63004, + "name": "4.0 MT (213 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110938, + "fields": { + "id_car_serie": 45489, + "name": "3.6 AT (470 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110939, + "fields": { + "id_car_serie": 45489, + "name": "3.6 MT (470 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110940, + "fields": { + "id_car_serie": 45490, + "name": "3.6 AT (470 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110941, + "fields": { + "id_car_serie": 45490, + "name": "3.6 MT (470 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110942, + "fields": { + "id_car_serie": 45491, + "name": "2.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110943, + "fields": { + "id_car_serie": 45491, + "name": "2.0 MT (250 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110944, + "fields": { + "id_car_serie": 45491, + "name": "2.4 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110945, + "fields": { + "id_car_serie": 45492, + "name": "5.0 AT (142 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110946, + "fields": { + "id_car_serie": 45429, + "name": "2.5 DI-D AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110947, + "fields": { + "id_car_serie": 45429, + "name": "2.5 DI-D MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110956, + "fields": { + "id_car_serie": 45417, + "name": "1.0 MT (66 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110960, + "fields": { + "id_car_serie": 45376, + "name": "6.0 W12 AWD AT (590 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110963, + "fields": { + "id_car_serie": 45462, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110964, + "fields": { + "id_car_serie": 45462, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110965, + "fields": { + "id_car_serie": 45383, + "name": "3.1 AT (158 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110966, + "fields": { + "id_car_serie": 45383, + "name": "3.1 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110967, + "fields": { + "id_car_serie": 45399, + "name": "1.6 i-DTEC AT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110968, + "fields": { + "id_car_serie": 45399, + "name": "1.6 i-DTEC MT 4x2 (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110969, + "fields": { + "id_car_serie": 45399, + "name": "1.6 i-DTEC MT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110973, + "fields": { + "id_car_serie": 45399, + "name": "2.4 CVT 4x4 (188 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 110976, + "fields": { + "id_car_serie": 45485, + "name": "1.8 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110977, + "fields": { + "id_car_serie": 45485, + "name": "1.8 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110980, + "fields": { + "id_car_serie": 45485, + "name": "2.0 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110981, + "fields": { + "id_car_serie": 45485, + "name": "2.0 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110986, + "fields": { + "id_car_serie": 45388, + "name": "3.6 V6 AT (309 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110988, + "fields": { + "id_car_serie": 45388, + "name": "5.7 V6 AT (380 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110989, + "fields": { + "id_car_serie": 45388, + "name": "5.7 V6 MT (380 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 110991, + "fields": { + "id_car_serie": 45375, + "name": "4.0 V8 AWD AT (528 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111008, + "fields": { + "id_car_serie": 45409, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111009, + "fields": { + "id_car_serie": 45409, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111010, + "fields": { + "id_car_serie": 45409, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111011, + "fields": { + "id_car_serie": 45455, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111015, + "fields": { + "id_car_serie": 45424, + "name": "2.0 Si4 9AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111016, + "fields": { + "id_car_serie": 45424, + "name": "2.0 Si4 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111017, + "fields": { + "id_car_serie": 45424, + "name": "2.2 TD4 9AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111018, + "fields": { + "id_car_serie": 45424, + "name": "2.2 TD4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111019, + "fields": { + "id_car_serie": 45424, + "name": "2.2 SD4 9AT (190 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111020, + "fields": { + "id_car_serie": 45424, + "name": "2.2 SD4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111021, + "fields": { + "id_car_serie": 45424, + "name": "2.2 TD4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111023, + "fields": { + "id_car_serie": 45424, + "name": "2.2 SD4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111025, + "fields": { + "id_car_serie": 45458, + "name": "2.0 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111030, + "fields": { + "id_car_serie": 45475, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111031, + "fields": { + "id_car_serie": 45475, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111032, + "fields": { + "id_car_serie": 45475, + "name": "1.6 dCi MT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111033, + "fields": { + "id_car_serie": 45475, + "name": "1.6 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111034, + "fields": { + "id_car_serie": 45475, + "name": "2.0 CVT AWD (141 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111035, + "fields": { + "id_car_serie": 45475, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111036, + "fields": { + "id_car_serie": 45475, + "name": "2.0 MT AWD (141 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111037, + "fields": { + "id_car_serie": 45475, + "name": "2.0 dCi AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111041, + "fields": { + "id_car_serie": 45390, + "name": "3.7 AT (214 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111046, + "fields": { + "id_car_serie": 45465, + "name": "1.6 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111047, + "fields": { + "id_car_serie": 45465, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111048, + "fields": { + "id_car_serie": 45435, + "name": "1.5 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111049, + "fields": { + "id_car_serie": 45435, + "name": "1.5 DCi MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111050, + "fields": { + "id_car_serie": 45435, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111051, + "fields": { + "id_car_serie": 45435, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111052, + "fields": { + "id_car_serie": 45435, + "name": "2.2 DCi MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111053, + "fields": { + "id_car_serie": 45435, + "name": "2.2 D MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111063, + "fields": { + "id_car_serie": 45470, + "name": "2.0 Turbo AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111064, + "fields": { + "id_car_serie": 45470, + "name": "2.0 Turbo AT AWD (218 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111065, + "fields": { + "id_car_serie": 45439, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111066, + "fields": { + "id_car_serie": 45439, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111067, + "fields": { + "id_car_serie": 45439, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111068, + "fields": { + "id_car_serie": 45439, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111069, + "fields": { + "id_car_serie": 45439, + "name": "2.0 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111070, + "fields": { + "id_car_serie": 45439, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111073, + "fields": { + "id_car_serie": 45439, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111074, + "fields": { + "id_car_serie": 45447, + "name": "2.7 AT L3H3 (151 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111075, + "fields": { + "id_car_serie": 45447, + "name": "3.0 D-4D MT 4WD L1H1 (144 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111083, + "fields": { + "id_car_serie": 45407, + "name": "1.1 CRDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111085, + "fields": { + "id_car_serie": 45407, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111086, + "fields": { + "id_car_serie": 45407, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111100, + "fields": { + "id_car_serie": 45395, + "name": "3.5 AT FWD (265 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111101, + "fields": { + "id_car_serie": 45395, + "name": "3.5 AT AWD (265 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111102, + "fields": { + "id_car_serie": 45222, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111107, + "fields": { + "id_car_serie": 45483, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111108, + "fields": { + "id_car_serie": 45483, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111110, + "fields": { + "id_car_serie": 45483, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111111, + "fields": { + "id_car_serie": 45480, + "name": "3.8 AMT (540 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111113, + "fields": { + "id_car_serie": 45419, + "name": "1.4 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111114, + "fields": { + "id_car_serie": 45419, + "name": "1.4 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111115, + "fields": { + "id_car_serie": 45419, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111116, + "fields": { + "id_car_serie": 45419, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111118, + "fields": { + "id_car_serie": 45427, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111119, + "fields": { + "id_car_serie": 45427, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111120, + "fields": { + "id_car_serie": 45427, + "name": "2.0 SKYACTIV-G AT AWD (157 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111121, + "fields": { + "id_car_serie": 45427, + "name": "2.0 SKYACTIV-G AT (157 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111122, + "fields": { + "id_car_serie": 45427, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111123, + "fields": { + "id_car_serie": 45427, + "name": "2.0 SKYACTIV-G MT (157 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111125, + "fields": { + "id_car_serie": 45427, + "name": "2.2 SKYACTIV-D AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111126, + "fields": { + "id_car_serie": 45427, + "name": "2.2 SKYACTIV-D AT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111127, + "fields": { + "id_car_serie": 45427, + "name": "2.2 SKYACTIV-D MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111128, + "fields": { + "id_car_serie": 45427, + "name": "2.2 SKYACTIV-D MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111129, + "fields": { + "id_car_serie": 45427, + "name": "2.2 SKYACTIV-D AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111130, + "fields": { + "id_car_serie": 45427, + "name": "2.5 SKYACTIV-G AT AWD (187 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111131, + "fields": { + "id_car_serie": 45427, + "name": "2.5 AT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111140, + "fields": { + "id_car_serie": 45392, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111141, + "fields": { + "id_car_serie": 45392, + "name": "1.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111142, + "fields": { + "id_car_serie": 45392, + "name": "1.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111143, + "fields": { + "id_car_serie": 45392, + "name": "1.5 AT (182 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111144, + "fields": { + "id_car_serie": 45392, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111145, + "fields": { + "id_car_serie": 45392, + "name": "1.5 MT (182 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111148, + "fields": { + "id_car_serie": 45392, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111153, + "fields": { + "id_car_serie": 45392, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111154, + "fields": { + "id_car_serie": 45392, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111155, + "fields": { + "id_car_serie": 45392, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111156, + "fields": { + "id_car_serie": 45392, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111157, + "fields": { + "id_car_serie": 45392, + "name": "2.0 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111158, + "fields": { + "id_car_serie": 45392, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111176, + "fields": { + "id_car_serie": 45481, + "name": "1.8 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111177, + "fields": { + "id_car_serie": 45481, + "name": "2.4 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111178, + "fields": { + "id_car_serie": 45481, + "name": "3.5 AT (275 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111179, + "fields": { + "id_car_serie": 45384, + "name": "2.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111180, + "fields": { + "id_car_serie": 45384, + "name": "2.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111181, + "fields": { + "id_car_serie": 45382, + "name": "2.3 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111182, + "fields": { + "id_car_serie": 45382, + "name": "3.1 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111183, + "fields": { + "id_car_serie": 45382, + "name": "3.1 AT (158 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111184, + "fields": { + "id_car_serie": 45382, + "name": "3.1 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111195, + "fields": { + "id_car_serie": 45410, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111196, + "fields": { + "id_car_serie": 45410, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111203, + "fields": { + "id_car_serie": 45400, + "name": "2.4 AT (166 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111204, + "fields": { + "id_car_serie": 45400, + "name": "2.4 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111205, + "fields": { + "id_car_serie": 45400, + "name": "2.4 MT (166 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111206, + "fields": { + "id_car_serie": 45400, + "name": "2.4 MT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111209, + "fields": { + "id_car_serie": 45401, + "name": "1.8 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111210, + "fields": { + "id_car_serie": 45402, + "name": "1.6 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111211, + "fields": { + "id_car_serie": 45402, + "name": "1.6 CVT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111212, + "fields": { + "id_car_serie": 45402, + "name": "1.6 CVT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111213, + "fields": { + "id_car_serie": 45402, + "name": "1.6 CVT (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111214, + "fields": { + "id_car_serie": 45402, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111215, + "fields": { + "id_car_serie": 45402, + "name": "1.6 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111216, + "fields": { + "id_car_serie": 45402, + "name": "1.6 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111217, + "fields": { + "id_car_serie": 45402, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111218, + "fields": { + "id_car_serie": 45403, + "name": "1.6 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111219, + "fields": { + "id_car_serie": 45403, + "name": "1.6 CVT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111220, + "fields": { + "id_car_serie": 45403, + "name": "1.6 CVT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111221, + "fields": { + "id_car_serie": 45403, + "name": "1.6 CVT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111222, + "fields": { + "id_car_serie": 45403, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111223, + "fields": { + "id_car_serie": 45403, + "name": "1.6 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111224, + "fields": { + "id_car_serie": 45403, + "name": "1.6 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111225, + "fields": { + "id_car_serie": 45403, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111236, + "fields": { + "id_car_serie": 45374, + "name": "3.0 TFSI Tiptronic quattro (333 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111240, + "fields": { + "id_car_serie": 45386, + "name": "2.4 Ecotec AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111241, + "fields": { + "id_car_serie": 45386, + "name": "2.5 Ecotec AT (197 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111242, + "fields": { + "id_car_serie": 45386, + "name": "3.6 AT (309 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111243, + "fields": { + "id_car_serie": 45415, + "name": "25t AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111246, + "fields": { + "id_car_serie": 45415, + "name": "20d AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111247, + "fields": { + "id_car_serie": 45415, + "name": "20d AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111248, + "fields": { + "id_car_serie": 45415, + "name": "35t AT AWD (340 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111249, + "fields": { + "id_car_serie": 45415, + "name": "3.0 S AT AWD (380 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111254, + "fields": { + "id_car_serie": 45160, + "name": "1.3 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111255, + "fields": { + "id_car_serie": 45160, + "name": "1.3 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111257, + "fields": { + "id_car_serie": 45463, + "name": "1.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111258, + "fields": { + "id_car_serie": 45463, + "name": "1.6 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111259, + "fields": { + "id_car_serie": 45463, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111260, + "fields": { + "id_car_serie": 45463, + "name": "1.6 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111261, + "fields": { + "id_car_serie": 45463, + "name": "1.6d AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111263, + "fields": { + "id_car_serie": 45463, + "name": "2.0d AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111264, + "fields": { + "id_car_serie": 45463, + "name": "2.0d AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111265, + "fields": { + "id_car_serie": 45463, + "name": "2.0d MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111268, + "fields": { + "id_car_serie": 45404, + "name": "1.6 AT (114 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111269, + "fields": { + "id_car_serie": 45404, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111354, + "fields": { + "id_car_serie": 1426, + "name": "3.5 S MT (350 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111364, + "fields": { + "id_car_serie": 3643, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111365, + "fields": { + "id_car_serie": 3643, + "name": "2.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111366, + "fields": { + "id_car_serie": 3331, + "name": "1.6 Ti-VCT PowerShift (105 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111367, + "fields": { + "id_car_serie": 3331, + "name": "1.6 Ti-VCT MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111368, + "fields": { + "id_car_serie": 3331, + "name": "1.6 Ti-VCT MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111369, + "fields": { + "id_car_serie": 3332, + "name": "1.6 Ti-VCT PowerShift (105 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111370, + "fields": { + "id_car_serie": 3332, + "name": "1.6 Ti-VCT MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111372, + "fields": { + "id_car_serie": 8751, + "name": "1.8 S MT (220 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111394, + "fields": { + "id_car_serie": 4534, + "name": "2.4 D5 Turbo Geartronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111395, + "fields": { + "id_car_serie": 4534, + "name": "2.5 T5 Turbo Geartronic AWD (230 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111396, + "fields": { + "id_car_serie": 4534, + "name": "2.5 T5 Turbo Geartronic (230 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111397, + "fields": { + "id_car_serie": 4534, + "name": "2.5 T5 Turbo MT (230 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111398, + "fields": { + "id_car_serie": 6154, + "name": "1.8 TDCi AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111399, + "fields": { + "id_car_serie": 10801, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111401, + "fields": { + "id_car_serie": 10801, + "name": "2.0 MT (104 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111402, + "fields": { + "id_car_serie": 10801, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111403, + "fields": { + "id_car_serie": 10801, + "name": "2.4 AT (117 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111404, + "fields": { + "id_car_serie": 10801, + "name": "2.4 AT (113 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111409, + "fields": { + "id_car_serie": 7702, + "name": "2.0 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111410, + "fields": { + "id_car_serie": 7702, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111412, + "fields": { + "id_car_serie": 14727, + "name": "2.3 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111413, + "fields": { + "id_car_serie": 14727, + "name": "2.3 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111427, + "fields": { + "id_car_serie": 15266, + "name": "1.4 MT CNG (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111430, + "fields": { + "id_car_serie": 15266, + "name": "1.6 TD MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111489, + "fields": { + "id_car_serie": 45573, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111490, + "fields": { + "id_car_serie": 45573, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111491, + "fields": { + "id_car_serie": 45573, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111492, + "fields": { + "id_car_serie": 45573, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111493, + "fields": { + "id_car_serie": 45573, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111494, + "fields": { + "id_car_serie": 45573, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111495, + "fields": { + "id_car_serie": 45573, + "name": "2.2 DTI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111496, + "fields": { + "id_car_serie": 45573, + "name": "2.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111497, + "fields": { + "id_car_serie": 45574, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111498, + "fields": { + "id_car_serie": 45574, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111499, + "fields": { + "id_car_serie": 45574, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111500, + "fields": { + "id_car_serie": 45574, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111501, + "fields": { + "id_car_serie": 45574, + "name": "2.0 DI MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111502, + "fields": { + "id_car_serie": 45574, + "name": "2.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111503, + "fields": { + "id_car_serie": 45574, + "name": "2.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111518, + "fields": { + "id_car_serie": 45578, + "name": "2.4 D MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111520, + "fields": { + "id_car_serie": 45578, + "name": "2.8 D AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111541, + "fields": { + "id_car_serie": 45582, + "name": "1.6 MPI AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111542, + "fields": { + "id_car_serie": 45582, + "name": "1.6 MPI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111543, + "fields": { + "id_car_serie": 45582, + "name": "1.6 MPI MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111583, + "fields": { + "id_car_serie": 45591, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111584, + "fields": { + "id_car_serie": 45592, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111585, + "fields": { + "id_car_serie": 45592, + "name": "1.5 dCi AMT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111586, + "fields": { + "id_car_serie": 45592, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111593, + "fields": { + "id_car_serie": 45589, + "name": "2.0 MT (310 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111600, + "fields": { + "id_car_serie": 45580, + "name": "1.6 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111602, + "fields": { + "id_car_serie": 45580, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111603, + "fields": { + "id_car_serie": 45580, + "name": "2.0 TDI DSG 4Motion (140 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111605, + "fields": { + "id_car_serie": 45580, + "name": "2.0 TDI MT 4Motion (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111611, + "fields": { + "id_car_serie": 45580, + "name": "1.4 TSI BMT DSG (125 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111612, + "fields": { + "id_car_serie": 45580, + "name": "1.4 TSI BMT MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111613, + "fields": { + "id_car_serie": 45580, + "name": "1.6 TDI DSG (102 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111614, + "fields": { + "id_car_serie": 45580, + "name": "1.6 TDI MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111621, + "fields": { + "id_car_serie": 45580, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111623, + "fields": { + "id_car_serie": 45562, + "name": "1.6 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111624, + "fields": { + "id_car_serie": 45562, + "name": "1.6 CVT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111625, + "fields": { + "id_car_serie": 45562, + "name": "1.6 CVT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111626, + "fields": { + "id_car_serie": 45562, + "name": "1.6 CVT (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111627, + "fields": { + "id_car_serie": 45562, + "name": "1.6 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111628, + "fields": { + "id_car_serie": 45562, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111629, + "fields": { + "id_car_serie": 45562, + "name": "1.6 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111630, + "fields": { + "id_car_serie": 45562, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111641, + "fields": { + "id_car_serie": 45583, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111644, + "fields": { + "id_car_serie": 45583, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111645, + "fields": { + "id_car_serie": 45583, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111647, + "fields": { + "id_car_serie": 45583, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111648, + "fields": { + "id_car_serie": 45583, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111649, + "fields": { + "id_car_serie": 45583, + "name": "2.4 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111661, + "fields": { + "id_car_serie": 45571, + "name": "1.5 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111662, + "fields": { + "id_car_serie": 45561, + "name": "1.6 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111663, + "fields": { + "id_car_serie": 45561, + "name": "1.6 CVT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111664, + "fields": { + "id_car_serie": 45561, + "name": "1.6 CVT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111665, + "fields": { + "id_car_serie": 45561, + "name": "1.6 CVT (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111666, + "fields": { + "id_car_serie": 45561, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111667, + "fields": { + "id_car_serie": 45561, + "name": "1.6 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111668, + "fields": { + "id_car_serie": 45561, + "name": "1.6 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111669, + "fields": { + "id_car_serie": 45561, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111671, + "fields": { + "id_car_serie": 45569, + "name": "CVH 1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111672, + "fields": { + "id_car_serie": 45569, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111673, + "fields": { + "id_car_serie": 45569, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111674, + "fields": { + "id_car_serie": 45569, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111675, + "fields": { + "id_car_serie": 45569, + "name": "CVH 1.6 MT (96 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111677, + "fields": { + "id_car_serie": 45569, + "name": "1.8 MT (111 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111678, + "fields": { + "id_car_serie": 45569, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111679, + "fields": { + "id_car_serie": 45593, + "name": "1.2 CVT (80 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111680, + "fields": { + "id_car_serie": 45593, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111681, + "fields": { + "id_car_serie": 45594, + "name": "2.0 MT (315 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111682, + "fields": { + "id_car_serie": 45594, + "name": "2.4 MT (500 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111683, + "fields": { + "id_car_serie": 45595, + "name": "2.3 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111684, + "fields": { + "id_car_serie": 45595, + "name": "2.3 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111710, + "fields": { + "id_car_serie": 45590, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111711, + "fields": { + "id_car_serie": 45590, + "name": "1.5 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111779, + "fields": { + "id_car_serie": 1539, + "name": "2.3 T AT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111782, + "fields": { + "id_car_serie": 3530, + "name": "R 5.0 V8 AT AWD (550 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111783, + "fields": { + "id_car_serie": 4074, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111784, + "fields": { + "id_car_serie": 4074, + "name": "1.6 AMT (82 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111790, + "fields": { + "id_car_serie": 14641, + "name": "0.9 T AMT twinamic (90 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111797, + "fields": { + "id_car_serie": 14695, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111800, + "fields": { + "id_car_serie": 14695, + "name": "1.6 AMT (82 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111801, + "fields": { + "id_car_serie": 14738, + "name": "114 CDI L1 2.1d AT (136 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111802, + "fields": { + "id_car_serie": 14738, + "name": "116 CDI L1 2.1d AT (163 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111803, + "fields": { + "id_car_serie": 14738, + "name": "119 BlueTEC L1 2.1d AT (190 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111818, + "fields": { + "id_car_serie": 45606, + "name": "1.6 MT 4x4 (114 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111820, + "fields": { + "id_car_serie": 45606, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111821, + "fields": { + "id_car_serie": 45606, + "name": "2.0 AT 4x4 (143 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111822, + "fields": { + "id_car_serie": 45606, + "name": "2.0 MT 4x4 (143 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111826, + "fields": { + "id_car_serie": 45604, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111827, + "fields": { + "id_car_serie": 45604, + "name": "1.6 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111828, + "fields": { + "id_car_serie": 45604, + "name": "1.6 AMT (165 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111829, + "fields": { + "id_car_serie": 45604, + "name": "1.6 d MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111830, + "fields": { + "id_car_serie": 45604, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111831, + "fields": { + "id_car_serie": 45604, + "name": "1.6 d AMT (114 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111832, + "fields": { + "id_car_serie": 45604, + "name": "1.6 d AMT (120 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111833, + "fields": { + "id_car_serie": 45604, + "name": "1.6 d MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111834, + "fields": { + "id_car_serie": 45604, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111835, + "fields": { + "id_car_serie": 45604, + "name": "2.0 d AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111839, + "fields": { + "id_car_serie": 45610, + "name": "1.8 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111840, + "fields": { + "id_car_serie": 45610, + "name": "2.0 CVT (152 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111842, + "fields": { + "id_car_serie": 45611, + "name": "1.8 CVT (144 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111843, + "fields": { + "id_car_serie": 45611, + "name": "2.0 CVT 7seat (158 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 111844, + "fields": { + "id_car_serie": 45614, + "name": "1.5 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111865, + "fields": { + "id_car_serie": 45399, + "name": "2.0 AT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111866, + "fields": { + "id_car_serie": 45399, + "name": "2.0 MT 4x2 (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111877, + "fields": { + "id_car_serie": 45613, + "name": "120 kWh (1914 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111882, + "fields": { + "id_car_serie": 45597, + "name": "2.0 MT (259 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111883, + "fields": { + "id_car_serie": 45597, + "name": "2.4 AT (182 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111889, + "fields": { + "id_car_serie": 45602, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111890, + "fields": { + "id_car_serie": 45601, + "name": "1.6 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111892, + "fields": { + "id_car_serie": 45601, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 111893, + "fields": { + "id_car_serie": 45601, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169729, + "fields": { + "id_car_serie": 45583, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169731, + "fields": { + "id_car_serie": 3606, + "name": "3.0 SDV6 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169736, + "fields": { + "id_car_serie": 4165, + "name": "1.6 TDI MT GreenLine (90 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169740, + "fields": { + "id_car_serie": 4349, + "name": "1.4 TSI BlueMotion DSG (125 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169742, + "fields": { + "id_car_serie": 4349, + "name": "1.4 TSI BlueMotion MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169743, + "fields": { + "id_car_serie": 9101, + "name": "1.8 TSI MT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169744, + "fields": { + "id_car_serie": 7974, + "name": "1.2 TSI BlueMotion MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169745, + "fields": { + "id_car_serie": 7975, + "name": "1.2 TSI MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169746, + "fields": { + "id_car_serie": 45600, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169748, + "fields": { + "id_car_serie": 45600, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169749, + "fields": { + "id_car_serie": 45685, + "name": "1.4 TFSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169750, + "fields": { + "id_car_serie": 45685, + "name": "2.0 TFSI S tronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169751, + "fields": { + "id_car_serie": 45685, + "name": "2.0 TFSI S tronic (252 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169752, + "fields": { + "id_car_serie": 45685, + "name": "2.0 TDI S tronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169753, + "fields": { + "id_car_serie": 45685, + "name": "2.0 TDI S tronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169755, + "fields": { + "id_car_serie": 45685, + "name": "3.0 TDI tiptronic quattro (272 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169756, + "fields": { + "id_car_serie": 45686, + "name": "1.4 TFSI S tronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169757, + "fields": { + "id_car_serie": 45686, + "name": "2.0 TFSI S tronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169758, + "fields": { + "id_car_serie": 45686, + "name": "2.0 TFSI S tronic quattro (252 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169759, + "fields": { + "id_car_serie": 45686, + "name": "2.0 TDI S tronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169760, + "fields": { + "id_car_serie": 45686, + "name": "2.0 TDI S tronic quattro (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169762, + "fields": { + "id_car_serie": 45686, + "name": "3.0 TDI tiptronic quattro (272 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169771, + "fields": { + "id_car_serie": 45689, + "name": "1.6 HDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169772, + "fields": { + "id_car_serie": 45689, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169778, + "fields": { + "id_car_serie": 5814, + "name": "2.0 HDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169783, + "fields": { + "id_car_serie": 45691, + "name": "0.9 AMT (85 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169784, + "fields": { + "id_car_serie": 45691, + "name": "0.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169787, + "fields": { + "id_car_serie": 45691, + "name": "1.2 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169788, + "fields": { + "id_car_serie": 45692, + "name": "1.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169789, + "fields": { + "id_car_serie": 45692, + "name": "2.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169790, + "fields": { + "id_car_serie": 45692, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169793, + "fields": { + "id_car_serie": 45692, + "name": "2.0 AMT (210 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169794, + "fields": { + "id_car_serie": 45692, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169797, + "fields": { + "id_car_serie": 45692, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169803, + "fields": { + "id_car_serie": 945, + "name": "3.6 AT (271 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169816, + "fields": { + "id_car_serie": 45697, + "name": "1.6 DCT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169817, + "fields": { + "id_car_serie": 45697, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169820, + "fields": { + "id_car_serie": 45697, + "name": "2.0 CRDi AT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169850, + "fields": { + "id_car_serie": 45701, + "name": "1.5 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169851, + "fields": { + "id_car_serie": 45701, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169852, + "fields": { + "id_car_serie": 45701, + "name": "2.0 D AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169853, + "fields": { + "id_car_serie": 45701, + "name": "2.0 D MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169856, + "fields": { + "id_car_serie": 45702, + "name": "1.4 AT (82 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169857, + "fields": { + "id_car_serie": 45702, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169858, + "fields": { + "id_car_serie": 45702, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169860, + "fields": { + "id_car_serie": 45702, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169861, + "fields": { + "id_car_serie": 45702, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169863, + "fields": { + "id_car_serie": 45702, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169864, + "fields": { + "id_car_serie": 45703, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169865, + "fields": { + "id_car_serie": 45703, + "name": "1.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169866, + "fields": { + "id_car_serie": 45703, + "name": "1.2 AMT (82 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169867, + "fields": { + "id_car_serie": 45703, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169868, + "fields": { + "id_car_serie": 45703, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169869, + "fields": { + "id_car_serie": 45703, + "name": "1.6 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169870, + "fields": { + "id_car_serie": 45703, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169871, + "fields": { + "id_car_serie": 45703, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169872, + "fields": { + "id_car_serie": 45703, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169873, + "fields": { + "id_car_serie": 45704, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169874, + "fields": { + "id_car_serie": 45704, + "name": "1.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169875, + "fields": { + "id_car_serie": 45704, + "name": "1.2 AMT (82 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169876, + "fields": { + "id_car_serie": 45704, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169877, + "fields": { + "id_car_serie": 45704, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169878, + "fields": { + "id_car_serie": 45704, + "name": "1.6 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169879, + "fields": { + "id_car_serie": 45704, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169880, + "fields": { + "id_car_serie": 45704, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169881, + "fields": { + "id_car_serie": 45704, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169882, + "fields": { + "id_car_serie": 45705, + "name": "1.0 VTi MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169883, + "fields": { + "id_car_serie": 45705, + "name": "1.2 VTi ETG (82 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169884, + "fields": { + "id_car_serie": 45705, + "name": "1.2 VTi MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169887, + "fields": { + "id_car_serie": 45705, + "name": "1.4 HDi MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169888, + "fields": { + "id_car_serie": 45705, + "name": "1.6 VTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169889, + "fields": { + "id_car_serie": 45705, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169891, + "fields": { + "id_car_serie": 45705, + "name": "1.6 e-HDi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169892, + "fields": { + "id_car_serie": 45705, + "name": "1.6 e-HDi MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169893, + "fields": { + "id_car_serie": 45706, + "name": "1.0 VTi MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169894, + "fields": { + "id_car_serie": 45706, + "name": "1.2 VTi ETG (82 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169895, + "fields": { + "id_car_serie": 45706, + "name": "1.2 VTi MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169898, + "fields": { + "id_car_serie": 45706, + "name": "1.4 HDi MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169899, + "fields": { + "id_car_serie": 45706, + "name": "1.6 VTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169900, + "fields": { + "id_car_serie": 45706, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169903, + "fields": { + "id_car_serie": 45706, + "name": "1.6 e-HDi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169904, + "fields": { + "id_car_serie": 45706, + "name": "1.6 e-HDi MT (92 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 169905, + "fields": { + "id_car_serie": 45707, + "name": "1.4 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169906, + "fields": { + "id_car_serie": 45707, + "name": "1.4 TSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169907, + "fields": { + "id_car_serie": 45707, + "name": "1.4 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169908, + "fields": { + "id_car_serie": 45707, + "name": "1.4 TSI ACT MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169909, + "fields": { + "id_car_serie": 45707, + "name": "1.6 TDI DSG (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169910, + "fields": { + "id_car_serie": 45707, + "name": "1.6 TDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169911, + "fields": { + "id_car_serie": 45707, + "name": "1.8 TSI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169912, + "fields": { + "id_car_serie": 45707, + "name": "1.8 TSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169913, + "fields": { + "id_car_serie": 45707, + "name": "2.0 TSI DSG (220 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169914, + "fields": { + "id_car_serie": 45707, + "name": "2.0 TSI DSG 4x4 (280 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169915, + "fields": { + "id_car_serie": 45707, + "name": "2.0 TDI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169916, + "fields": { + "id_car_serie": 45707, + "name": "2.0 TDI DSG (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169917, + "fields": { + "id_car_serie": 45707, + "name": "2.0 TDI DSG 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169918, + "fields": { + "id_car_serie": 45707, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169919, + "fields": { + "id_car_serie": 45707, + "name": "2.0 TDI MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169920, + "fields": { + "id_car_serie": 45707, + "name": "2.0 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169925, + "fields": { + "id_car_serie": 45711, + "name": "1.6 MT (250 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169926, + "fields": { + "id_car_serie": 45711, + "name": "1.6 MT (270 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169940, + "fields": { + "id_car_serie": 45714, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169943, + "fields": { + "id_car_serie": 45714, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169944, + "fields": { + "id_car_serie": 45714, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169945, + "fields": { + "id_car_serie": 45714, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169946, + "fields": { + "id_car_serie": 45714, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169947, + "fields": { + "id_car_serie": 45715, + "name": "1.8 CVT (137 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169948, + "fields": { + "id_car_serie": 45715, + "name": "1.8 MT (137 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169949, + "fields": { + "id_car_serie": 45716, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169950, + "fields": { + "id_car_serie": 45716, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169951, + "fields": { + "id_car_serie": 45716, + "name": "1.6 AT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169952, + "fields": { + "id_car_serie": 45716, + "name": "1.6 D MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169953, + "fields": { + "id_car_serie": 45717, + "name": "1.6 AMT (106 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169954, + "fields": { + "id_car_serie": 45717, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 169960, + "fields": { + "id_car_serie": 45719, + "name": "2.0 AT AWD (218 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170083, + "fields": { + "id_car_serie": 9496, + "name": "2.0 D AT (76 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170086, + "fields": { + "id_car_serie": 9496, + "name": "2.0 D MT AWD (76 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170087, + "fields": { + "id_car_serie": 9496, + "name": "2.0 D MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170091, + "fields": { + "id_car_serie": 3120, + "name": "2.0 Hdi AT (181 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170092, + "fields": { + "id_car_serie": 3120, + "name": "2.0 Hdi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170095, + "fields": { + "id_car_serie": 3121, + "name": "2.0 HDi T AT (181 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170096, + "fields": { + "id_car_serie": 3121, + "name": "2.0 HDi T MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170099, + "fields": { + "id_car_serie": 4399, + "name": "2.0 D Geartronic (136 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170100, + "fields": { + "id_car_serie": 4162, + "name": "2.0 TDI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170101, + "fields": { + "id_car_serie": 4163, + "name": "1.4 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170102, + "fields": { + "id_car_serie": 4163, + "name": "1.4 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170106, + "fields": { + "id_car_serie": 6372, + "name": "1.5 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170107, + "fields": { + "id_car_serie": 7996, + "name": "1.8 5V Turbo AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170110, + "fields": { + "id_car_serie": 14786, + "name": "1.6 Ti-VCT PowerShift (105 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170111, + "fields": { + "id_car_serie": 14787, + "name": "1.6 Ti-VCT PowerShift (105 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170112, + "fields": { + "id_car_serie": 14788, + "name": "1.6 Ti-VCT PowerShift (105 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170118, + "fields": { + "id_car_serie": 45222, + "name": "1.5 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170129, + "fields": { + "id_car_serie": 45754, + "name": "1.8 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170131, + "fields": { + "id_car_serie": 45755, + "name": "1.8 MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170133, + "fields": { + "id_car_serie": 45756, + "name": "2.0 SKYACTIV-G AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170134, + "fields": { + "id_car_serie": 45756, + "name": "2.0 SKYACTIV-G MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170135, + "fields": { + "id_car_serie": 45756, + "name": "2.5 SKYACTIV-G AT (192 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170136, + "fields": { + "id_car_serie": 45757, + "name": "2.0 SKYACTIV-G AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170137, + "fields": { + "id_car_serie": 45757, + "name": "2.0 SKYACTIV-G MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170138, + "fields": { + "id_car_serie": 45757, + "name": "2.0 SKYACTIV-G MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170139, + "fields": { + "id_car_serie": 45757, + "name": "2.2 SKYACTIV-D AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170140, + "fields": { + "id_car_serie": 45757, + "name": "2.2 SKYACTIV-D AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170141, + "fields": { + "id_car_serie": 45757, + "name": "2.2 SKYACTIV-D AT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170142, + "fields": { + "id_car_serie": 45757, + "name": "2.2 SKYACTIV-D AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170143, + "fields": { + "id_car_serie": 45757, + "name": "2.2 SKYACTIV-D MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170144, + "fields": { + "id_car_serie": 45757, + "name": "2.2 SKYACTIV-D MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170145, + "fields": { + "id_car_serie": 45757, + "name": "2.2 SKYACTIV-D MT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170146, + "fields": { + "id_car_serie": 45757, + "name": "2.2 SKYACTIV-D MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170147, + "fields": { + "id_car_serie": 45757, + "name": "2.5 SKYACTIV-G AT (192 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170181, + "fields": { + "id_car_serie": 2938, + "name": "4.0 TFSI tiptronic plus quattro (605 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170182, + "fields": { + "id_car_serie": 3481, + "name": "2.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170183, + "fields": { + "id_car_serie": 3481, + "name": "2.0 AT (265 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170186, + "fields": { + "id_car_serie": 3700, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170190, + "fields": { + "id_car_serie": 3720, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170191, + "fields": { + "id_car_serie": 3720, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170192, + "fields": { + "id_car_serie": 3720, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170194, + "fields": { + "id_car_serie": 4042, + "name": "1.5 AT (87 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170195, + "fields": { + "id_car_serie": 4042, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170198, + "fields": { + "id_car_serie": 8408, + "name": "4.6 AT (273 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170199, + "fields": { + "id_car_serie": 8408, + "name": "4.6 AT (299 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170200, + "fields": { + "id_car_serie": 8408, + "name": "4.6 AT (304 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170201, + "fields": { + "id_car_serie": 8408, + "name": "4.9 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170202, + "fields": { + "id_car_serie": 5642, + "name": "3.6 V6 VVT DI AWD (322 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170203, + "fields": { + "id_car_serie": 5642, + "name": "3.6 V6 VVT DI RWD (322 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170205, + "fields": { + "id_car_serie": 5482, + "name": "3.0 TDI tiptronic quattro (233 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170206, + "fields": { + "id_car_serie": 5482, + "name": "3.0 TDI MT quattro (233 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170207, + "fields": { + "id_car_serie": 5793, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170209, + "fields": { + "id_car_serie": 6025, + "name": "0.5 MT (17 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170210, + "fields": { + "id_car_serie": 6025, + "name": "0.5 MT (22 hp)", + "arabic_name": "-", + "start_production_year": 1957, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170212, + "fields": { + "id_car_serie": 10802, + "name": "1.6 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170214, + "fields": { + "id_car_serie": 10802, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170221, + "fields": { + "id_car_serie": 6934, + "name": "1.6 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170222, + "fields": { + "id_car_serie": 6934, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170223, + "fields": { + "id_car_serie": 8409, + "name": "4.1 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170224, + "fields": { + "id_car_serie": 8409, + "name": "4.5 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170225, + "fields": { + "id_car_serie": 8409, + "name": "4.9 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170226, + "fields": { + "id_car_serie": 14820, + "name": "1.6 AMT (102 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170227, + "fields": { + "id_car_serie": 14820, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170228, + "fields": { + "id_car_serie": 14820, + "name": "2.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170229, + "fields": { + "id_car_serie": 14801, + "name": "3.3 AT AWD (7 places) (250 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170231, + "fields": { + "id_car_serie": 15120, + "name": "2.5 AT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170232, + "fields": { + "id_car_serie": 15120, + "name": "2.5 MT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170233, + "fields": { + "id_car_serie": 15392, + "name": "2.8 D AT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170234, + "fields": { + "id_car_serie": 15455, + "name": "6.2 AT (525 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170242, + "fields": { + "id_car_serie": 15735, + "name": "2.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170243, + "fields": { + "id_car_serie": 15735, + "name": "2.0 MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170245, + "fields": { + "id_car_serie": 16266, + "name": "1.6 AT (124 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170246, + "fields": { + "id_car_serie": 45438, + "name": "1.6 VTi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170247, + "fields": { + "id_car_serie": 45438, + "name": "1.6 e-HDi AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170248, + "fields": { + "id_car_serie": 45438, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170250, + "fields": { + "id_car_serie": 45401, + "name": "1.5 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170251, + "fields": { + "id_car_serie": 45401, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170252, + "fields": { + "id_car_serie": 45401, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170253, + "fields": { + "id_car_serie": 45175, + "name": "4.8 Tiptronic (245 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170254, + "fields": { + "id_car_serie": 45374, + "name": "3.0 TDI Tiptronic quattro (249 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170255, + "fields": { + "id_car_serie": 45685, + "name": "2.0 TFSI S tronic quattro (252 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170256, + "fields": { + "id_car_serie": 45685, + "name": "2.0 TDI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170257, + "fields": { + "id_car_serie": 45686, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170265, + "fields": { + "id_car_serie": 45786, + "name": "3.2 MT (293 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170287, + "fields": { + "id_car_serie": 45788, + "name": "3.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170288, + "fields": { + "id_car_serie": 45788, + "name": "5.7 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170290, + "fields": { + "id_car_serie": 45790, + "name": "7.5 AT (370 hp)", + "arabic_name": "-", + "start_production_year": 1966, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170291, + "fields": { + "id_car_serie": 45791, + "name": "5.7 AT (264 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170292, + "fields": { + "id_car_serie": 45792, + "name": "5.7 AT (264 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170309, + "fields": { + "id_car_serie": 45804, + "name": "4.1 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170310, + "fields": { + "id_car_serie": 45804, + "name": "5.7 AT (188 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170311, + "fields": { + "id_car_serie": 45804, + "name": "5.7 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170319, + "fields": { + "id_car_serie": 45808, + "name": "7.0 AT (340 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1966 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170320, + "fields": { + "id_car_serie": 45809, + "name": "6.4 AT (325 hp)", + "arabic_name": "-", + "start_production_year": 1960, + "end_production_year": 1964 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170321, + "fields": { + "id_car_serie": 45809, + "name": "7.0 AT (340 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1964 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170322, + "fields": { + "id_car_serie": 45810, + "name": "6.4 AT (345 hp)", + "arabic_name": "-", + "start_production_year": 1957, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170323, + "fields": { + "id_car_serie": 45811, + "name": "6.4 AT (345 hp)", + "arabic_name": "-", + "start_production_year": 1957, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170325, + "fields": { + "id_car_serie": 45813, + "name": "5.4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1953, + "end_production_year": 1953 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170326, + "fields": { + "id_car_serie": 45814, + "name": "6.0 AT (300 hp)", + "arabic_name": "-", + "start_production_year": 1956, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170328, + "fields": { + "id_car_serie": 45816, + "name": "3.8 3MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1969 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170332, + "fields": { + "id_car_serie": 45815, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170334, + "fields": { + "id_car_serie": 45785, + "name": "7.0 MT (416 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1967 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170336, + "fields": { + "id_car_serie": 45817, + "name": "3.8 4MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1969 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170342, + "fields": { + "id_car_serie": 45818, + "name": "5.7 MT (230 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170346, + "fields": { + "id_car_serie": 45819, + "name": "5.4 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170350, + "fields": { + "id_car_serie": 45819, + "name": "7.0 4MT (400 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170351, + "fields": { + "id_car_serie": 45819, + "name": "7.0 Special MT (400 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170373, + "fields": { + "id_car_serie": 45824, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170374, + "fields": { + "id_car_serie": 45824, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170375, + "fields": { + "id_car_serie": 45825, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170376, + "fields": { + "id_car_serie": 45825, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170377, + "fields": { + "id_car_serie": 45826, + "name": "1.5 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1967 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170378, + "fields": { + "id_car_serie": 45826, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1967 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170384, + "fields": { + "id_car_serie": 45829, + "name": "2.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170387, + "fields": { + "id_car_serie": 45830, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170393, + "fields": { + "id_car_serie": 3382, + "name": "2.8 MT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170394, + "fields": { + "id_car_serie": 3384, + "name": "2.8 CVT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170400, + "fields": { + "id_car_serie": 45833, + "name": "2.8 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170401, + "fields": { + "id_car_serie": 45833, + "name": "2.8 MT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170402, + "fields": { + "id_car_serie": 45834, + "name": "2.4 CVT (185 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170403, + "fields": { + "id_car_serie": 45834, + "name": "2.4 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170404, + "fields": { + "id_car_serie": 45834, + "name": "3.5 AT (278 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170405, + "fields": { + "id_car_serie": 45834, + "name": "3.5 MT (278 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170406, + "fields": { + "id_car_serie": 45835, + "name": "1.3 CVT (102 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170407, + "fields": { + "id_car_serie": 45835, + "name": "1.3 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170414, + "fields": { + "id_car_serie": 45839, + "name": "7.5 AT (365 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170419, + "fields": { + "id_car_serie": 45841, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170424, + "fields": { + "id_car_serie": 45842, + "name": "3.2 TD AT 4x4 (200 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170426, + "fields": { + "id_car_serie": 45842, + "name": "3.2 TD MT 4x4 (200 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170428, + "fields": { + "id_car_serie": 45842, + "name": "3.2 TD AT 4x4 XT (200 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170429, + "fields": { + "id_car_serie": 45842, + "name": "3.2 TD AT XTR (200 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170430, + "fields": { + "id_car_serie": 45842, + "name": "3.2 TD MT XTR (200 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170431, + "fields": { + "id_car_serie": 45842, + "name": "3.2 TD MT XT (200 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170434, + "fields": { + "id_car_serie": 45844, + "name": "2.5 MZR-CD MT 4x4 (143 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170436, + "fields": { + "id_car_serie": 45845, + "name": "1.6 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170437, + "fields": { + "id_car_serie": 45845, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170438, + "fields": { + "id_car_serie": 45845, + "name": "2.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170439, + "fields": { + "id_car_serie": 45845, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170440, + "fields": { + "id_car_serie": 45845, + "name": "2.1 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170441, + "fields": { + "id_car_serie": 45845, + "name": "2.1 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170442, + "fields": { + "id_car_serie": 45846, + "name": "2.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1969 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170443, + "fields": { + "id_car_serie": 45846, + "name": "2.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1967 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170444, + "fields": { + "id_car_serie": 45846, + "name": "2.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1969 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170445, + "fields": { + "id_car_serie": 45846, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1967 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170446, + "fields": { + "id_car_serie": 45846, + "name": "2.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170447, + "fields": { + "id_car_serie": 45846, + "name": "2.8 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170448, + "fields": { + "id_car_serie": 45846, + "name": "2.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170449, + "fields": { + "id_car_serie": 45846, + "name": "2.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170450, + "fields": { + "id_car_serie": 45846, + "name": "3.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1967 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170451, + "fields": { + "id_car_serie": 45846, + "name": "3.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1967 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170452, + "fields": { + "id_car_serie": 45846, + "name": "3.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170453, + "fields": { + "id_car_serie": 45846, + "name": "4.5 AT (198 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170454, + "fields": { + "id_car_serie": 45847, + "name": "2.4 DI-D AT AWD (181 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170455, + "fields": { + "id_car_serie": 45847, + "name": "2.4 DI-D MT AWD (181 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170456, + "fields": { + "id_car_serie": 45848, + "name": "2.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170457, + "fields": { + "id_car_serie": 45848, + "name": "2.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170458, + "fields": { + "id_car_serie": 45848, + "name": "4.6 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170459, + "fields": { + "id_car_serie": 45848, + "name": "5.4 AT (230 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170461, + "fields": { + "id_car_serie": 45850, + "name": "2.0 GT MT (264 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170462, + "fields": { + "id_car_serie": 45851, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170463, + "fields": { + "id_car_serie": 45851, + "name": "1.9 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170475, + "fields": { + "id_car_serie": 45853, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170501, + "fields": { + "id_car_serie": 45858, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170504, + "fields": { + "id_car_serie": 45859, + "name": "1.0 MT (48 hp)", + "arabic_name": "-", + "start_production_year": 1962, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170507, + "fields": { + "id_car_serie": 45861, + "name": "5.7 MT (344 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170512, + "fields": { + "id_car_serie": 45863, + "name": "3.1 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170513, + "fields": { + "id_car_serie": 45863, + "name": "3.1 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170514, + "fields": { + "id_car_serie": 45864, + "name": "4.1 MT (218 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170515, + "fields": { + "id_car_serie": 45864, + "name": "5.8 MT (269 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170516, + "fields": { + "id_car_serie": 45865, + "name": "4.1 MT (218 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170517, + "fields": { + "id_car_serie": 45865, + "name": "5.8 MT (269 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170524, + "fields": { + "id_car_serie": 45869, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170525, + "fields": { + "id_car_serie": 45869, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170529, + "fields": { + "id_car_serie": 45869, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170533, + "fields": { + "id_car_serie": 45871, + "name": "6.8 Turbo AT (329 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170534, + "fields": { + "id_car_serie": 45872, + "name": "6.8 AT (260 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170535, + "fields": { + "id_car_serie": 45873, + "name": "6.8 AT (260 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170536, + "fields": { + "id_car_serie": 45874, + "name": "6.8 AT (460 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170538, + "fields": { + "id_car_serie": 45875, + "name": "6.7 AT (460 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170541, + "fields": { + "id_car_serie": 45877, + "name": "7.7 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1929, + "end_production_year": 1936 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170559, + "fields": { + "id_car_serie": 45880, + "name": "2.5 AT (222 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170563, + "fields": { + "id_car_serie": 45880, + "name": "3.7 AT AWD (333 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170564, + "fields": { + "id_car_serie": 45880, + "name": "5.6 AT AWD (408 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170567, + "fields": { + "id_car_serie": 45881, + "name": "2.5 AT (222 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170570, + "fields": { + "id_car_serie": 45881, + "name": "3.7 AT AWD (333 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170572, + "fields": { + "id_car_serie": 45881, + "name": "5.6 AT AWD (408 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170574, + "fields": { + "id_car_serie": 45882, + "name": "3.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1957, + "end_production_year": 1962 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170577, + "fields": { + "id_car_serie": 45884, + "name": "1.8 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1950, + "end_production_year": 1953 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170578, + "fields": { + "id_car_serie": 45885, + "name": "2.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170579, + "fields": { + "id_car_serie": 45885, + "name": "2.0 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170580, + "fields": { + "id_car_serie": 45885, + "name": "2.3 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170581, + "fields": { + "id_car_serie": 45886, + "name": "1.9 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1961, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170582, + "fields": { + "id_car_serie": 45886, + "name": "2.0 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1961, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170583, + "fields": { + "id_car_serie": 45887, + "name": "6.3 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170585, + "fields": { + "id_car_serie": 45888, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170586, + "fields": { + "id_car_serie": 45889, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1963 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170587, + "fields": { + "id_car_serie": 45890, + "name": "5.0 AT (1100 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170590, + "fields": { + "id_car_serie": 45892, + "name": "5.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170591, + "fields": { + "id_car_serie": 45892, + "name": "5.8 MT (250 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170592, + "fields": { + "id_car_serie": 45893, + "name": "1.5 CVT (163 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170593, + "fields": { + "id_car_serie": 45893, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170594, + "fields": { + "id_car_serie": 45894, + "name": "3.3 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1927, + "end_production_year": 1931 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170595, + "fields": { + "id_car_serie": 45895, + "name": "2.9 MT (20 hp)", + "arabic_name": "-", + "start_production_year": 1908, + "end_production_year": 1927 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170600, + "fields": { + "id_car_serie": 45897, + "name": "3.9 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170601, + "fields": { + "id_car_serie": 45897, + "name": "7.0 AT (345 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170606, + "fields": { + "id_car_serie": 45899, + "name": "1.3 MT (32 hp)", + "arabic_name": "-", + "start_production_year": 1934, + "end_production_year": 1957 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170607, + "fields": { + "id_car_serie": 45899, + "name": "1.5 MT (35 hp)", + "arabic_name": "-", + "start_production_year": 1934, + "end_production_year": 1957 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170608, + "fields": { + "id_car_serie": 45899, + "name": "1.6 MT (36 hp)", + "arabic_name": "-", + "start_production_year": 1934, + "end_production_year": 1957 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170609, + "fields": { + "id_car_serie": 45899, + "name": "1.9 MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1934, + "end_production_year": 1939 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170610, + "fields": { + "id_car_serie": 45899, + "name": "1.9 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1939, + "end_production_year": 1956 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170611, + "fields": { + "id_car_serie": 45899, + "name": "2.9 MT (77 hp)", + "arabic_name": "-", + "start_production_year": 1938, + "end_production_year": 1956 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170612, + "fields": { + "id_car_serie": 45900, + "name": "1.6 MT (36 hp)", + "arabic_name": "-", + "start_production_year": 1934, + "end_production_year": 1957 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170613, + "fields": { + "id_car_serie": 45900, + "name": "1.9 MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1934, + "end_production_year": 1939 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170614, + "fields": { + "id_car_serie": 45900, + "name": "1.9 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1939, + "end_production_year": 1956 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170615, + "fields": { + "id_car_serie": 45900, + "name": "2.9 MT (77 hp)", + "arabic_name": "-", + "start_production_year": 1938, + "end_production_year": 1956 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170616, + "fields": { + "id_car_serie": 45901, + "name": "1.3 MT (32 hp)", + "arabic_name": "-", + "start_production_year": 1934, + "end_production_year": 1957 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170617, + "fields": { + "id_car_serie": 45901, + "name": "1.5 MT (35 hp)", + "arabic_name": "-", + "start_production_year": 1934, + "end_production_year": 1957 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170618, + "fields": { + "id_car_serie": 45901, + "name": "1.6 MT (36 hp)", + "arabic_name": "-", + "start_production_year": 1934, + "end_production_year": 1957 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170619, + "fields": { + "id_car_serie": 45901, + "name": "1.9 MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1934, + "end_production_year": 1939 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170620, + "fields": { + "id_car_serie": 45901, + "name": "1.9 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1939, + "end_production_year": 1956 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170621, + "fields": { + "id_car_serie": 45901, + "name": "2.9 MT (77 hp)", + "arabic_name": "-", + "start_production_year": 1938, + "end_production_year": 1956 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170622, + "fields": { + "id_car_serie": 45902, + "name": "3.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1941, + "end_production_year": 1948 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170623, + "fields": { + "id_car_serie": 45903, + "name": "3.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170624, + "fields": { + "id_car_serie": 45903, + "name": "3.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170625, + "fields": { + "id_car_serie": 45903, + "name": "5.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170626, + "fields": { + "id_car_serie": 45903, + "name": "5.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170627, + "fields": { + "id_car_serie": 45903, + "name": "5.7 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170628, + "fields": { + "id_car_serie": 45903, + "name": "5.7 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170629, + "fields": { + "id_car_serie": 45903, + "name": "5.7 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170632, + "fields": { + "id_car_serie": 45904, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170633, + "fields": { + "id_car_serie": 45904, + "name": "5.7 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170635, + "fields": { + "id_car_serie": 45904, + "name": "7.4 MT (235 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170637, + "fields": { + "id_car_serie": 45905, + "name": "5.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170641, + "fields": { + "id_car_serie": 45905, + "name": "7.4 MT (245 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170653, + "fields": { + "id_car_serie": 45909, + "name": "5.7 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1940, + "end_production_year": 1941 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170654, + "fields": { + "id_car_serie": 45909, + "name": "5.7 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1940, + "end_production_year": 1941 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170655, + "fields": { + "id_car_serie": 45910, + "name": "4.1 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 1949, + "end_production_year": 1958 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170656, + "fields": { + "id_car_serie": 45911, + "name": "4.1 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1936, + "end_production_year": 1949 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170657, + "fields": { + "id_car_serie": 45912, + "name": "4.1 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1942, + "end_production_year": 1953 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170658, + "fields": { + "id_car_serie": 45913, + "name": "3.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170659, + "fields": { + "id_car_serie": 45914, + "name": "2.0 MT (51 hp)", + "arabic_name": "-", + "start_production_year": 1936, + "end_production_year": 1946 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170660, + "fields": { + "id_car_serie": 45915, + "name": "2.0 MT (51 hp)", + "arabic_name": "-", + "start_production_year": 1949, + "end_production_year": 1953 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170661, + "fields": { + "id_car_serie": 45916, + "name": "2.0 MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1937, + "end_production_year": 1950 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170662, + "fields": { + "id_car_serie": 45917, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170663, + "fields": { + "id_car_serie": 45917, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170664, + "fields": { + "id_car_serie": 45918, + "name": "1.5 MT (34 hp)", + "arabic_name": "-", + "start_production_year": 1934, + "end_production_year": 1937 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170665, + "fields": { + "id_car_serie": 45919, + "name": "1.5 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1934, + "end_production_year": 1936 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170668, + "fields": { + "id_car_serie": 45921, + "name": "3.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1938, + "end_production_year": 1940 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170670, + "fields": { + "id_car_serie": 45924, + "name": "2.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1961, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170671, + "fields": { + "id_car_serie": 45925, + "name": "2.6 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1961, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170672, + "fields": { + "id_car_serie": 45926, + "name": "2.6 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1961, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170673, + "fields": { + "id_car_serie": 45927, + "name": "2.8 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170674, + "fields": { + "id_car_serie": 45927, + "name": "3.7 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170675, + "fields": { + "id_car_serie": 45927, + "name": "4.5 MT (183 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170676, + "fields": { + "id_car_serie": 45927, + "name": "6.3 MT (284 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170677, + "fields": { + "id_car_serie": 45928, + "name": "5.2 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170678, + "fields": { + "id_car_serie": 45929, + "name": "6.3 MT (340 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170679, + "fields": { + "id_car_serie": 45929, + "name": "7.0 MT (431 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170680, + "fields": { + "id_car_serie": 45929, + "name": "7.2 MT (396 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170681, + "fields": { + "id_car_serie": 45930, + "name": "2.8 AT (117 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170682, + "fields": { + "id_car_serie": 45930, + "name": "2.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170683, + "fields": { + "id_car_serie": 45930, + "name": "3.7 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170684, + "fields": { + "id_car_serie": 45930, + "name": "3.7 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170685, + "fields": { + "id_car_serie": 45930, + "name": "4.5 AT (193 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170686, + "fields": { + "id_car_serie": 45930, + "name": "4.5 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170687, + "fields": { + "id_car_serie": 45930, + "name": "5.2 AT (233 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170688, + "fields": { + "id_car_serie": 45930, + "name": "5.2 MT (233 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170689, + "fields": { + "id_car_serie": 45931, + "name": "2.8 AT (117 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170690, + "fields": { + "id_car_serie": 45931, + "name": "2.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170691, + "fields": { + "id_car_serie": 45931, + "name": "3.7 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170692, + "fields": { + "id_car_serie": 45931, + "name": "3.7 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170693, + "fields": { + "id_car_serie": 45931, + "name": "4.5 AT (193 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170694, + "fields": { + "id_car_serie": 45931, + "name": "4.5 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170695, + "fields": { + "id_car_serie": 45931, + "name": "5.2 AT (233 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170696, + "fields": { + "id_car_serie": 45931, + "name": "5.2 MT (233 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170697, + "fields": { + "id_car_serie": 45932, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170698, + "fields": { + "id_car_serie": 45932, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170699, + "fields": { + "id_car_serie": 45933, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170700, + "fields": { + "id_car_serie": 45933, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170701, + "fields": { + "id_car_serie": 45934, + "name": "1.6 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1959, + "end_production_year": 1963 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170702, + "fields": { + "id_car_serie": 45934, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1959, + "end_production_year": 1963 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170703, + "fields": { + "id_car_serie": 45934, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1959, + "end_production_year": 1963 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170704, + "fields": { + "id_car_serie": 45934, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1959, + "end_production_year": 1963 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170705, + "fields": { + "id_car_serie": 45935, + "name": "1.6 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1959, + "end_production_year": 1963 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170706, + "fields": { + "id_car_serie": 45935, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1959, + "end_production_year": 1963 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170707, + "fields": { + "id_car_serie": 45935, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1959, + "end_production_year": 1963 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170708, + "fields": { + "id_car_serie": 45935, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1959, + "end_production_year": 1963 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170709, + "fields": { + "id_car_serie": 45936, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170710, + "fields": { + "id_car_serie": 45936, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170711, + "fields": { + "id_car_serie": 45936, + "name": "1.6 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170712, + "fields": { + "id_car_serie": 45936, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170713, + "fields": { + "id_car_serie": 45937, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170714, + "fields": { + "id_car_serie": 45937, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170715, + "fields": { + "id_car_serie": 45937, + "name": "1.6 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170716, + "fields": { + "id_car_serie": 45937, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170717, + "fields": { + "id_car_serie": 45938, + "name": "1.1 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1948, + "end_production_year": 1955 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170718, + "fields": { + "id_car_serie": 45938, + "name": "1.3 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1948, + "end_production_year": 1955 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170719, + "fields": { + "id_car_serie": 45938, + "name": "1.5 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1948, + "end_production_year": 1955 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170720, + "fields": { + "id_car_serie": 45938, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1948, + "end_production_year": 1955 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170721, + "fields": { + "id_car_serie": 45939, + "name": "1.1 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1948, + "end_production_year": 1955 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170722, + "fields": { + "id_car_serie": 45939, + "name": "1.3 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1948, + "end_production_year": 1955 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170723, + "fields": { + "id_car_serie": 45939, + "name": "1.5 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1948, + "end_production_year": 1955 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170724, + "fields": { + "id_car_serie": 45939, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1948, + "end_production_year": 1955 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170725, + "fields": { + "id_car_serie": 45940, + "name": "6.2 AT (223 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1966 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170726, + "fields": { + "id_car_serie": 45941, + "name": "6.2 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1959, + "end_production_year": 1962 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170727, + "fields": { + "id_car_serie": 45942, + "name": "4.9 AT (157 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1958 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170728, + "fields": { + "id_car_serie": 45943, + "name": "6.2 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170729, + "fields": { + "id_car_serie": 45943, + "name": "6.8 AT (192 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170733, + "fields": { + "id_car_serie": 45945, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170734, + "fields": { + "id_car_serie": 45945, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170735, + "fields": { + "id_car_serie": 45946, + "name": "1.2 MT (18 hp)", + "arabic_name": "-", + "start_production_year": 1932, + "end_production_year": 1949 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170736, + "fields": { + "id_car_serie": 45947, + "name": "1.5 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1961, + "end_production_year": 1969 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170737, + "fields": { + "id_car_serie": 45947, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1961, + "end_production_year": 1969 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170738, + "fields": { + "id_car_serie": 45948, + "name": "1.2 MT (30 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170739, + "fields": { + "id_car_serie": 45948, + "name": "1.3 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170740, + "fields": { + "id_car_serie": 45948, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170741, + "fields": { + "id_car_serie": 45948, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170742, + "fields": { + "id_car_serie": 45949, + "name": "1.2 MT (30 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170743, + "fields": { + "id_car_serie": 45949, + "name": "1.3 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170744, + "fields": { + "id_car_serie": 45949, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170745, + "fields": { + "id_car_serie": 45949, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170746, + "fields": { + "id_car_serie": 45950, + "name": "1.6 MT (47 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170747, + "fields": { + "id_car_serie": 45950, + "name": "1.7 MT (66 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170748, + "fields": { + "id_car_serie": 45950, + "name": "1.8 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170749, + "fields": { + "id_car_serie": 45950, + "name": "2.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170750, + "fields": { + "id_car_serie": 45951, + "name": "1.1 MT (25 hp)", + "arabic_name": "-", + "start_production_year": 1950, + "end_production_year": 1967 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170751, + "fields": { + "id_car_serie": 45951, + "name": "1.2 MT (30 hp)", + "arabic_name": "-", + "start_production_year": 1950, + "end_production_year": 1967 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170752, + "fields": { + "id_car_serie": 45951, + "name": "1.5 MT (42 hp)", + "arabic_name": "-", + "start_production_year": 1950, + "end_production_year": 1967 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170762, + "fields": { + "id_car_serie": 45955, + "name": "1.5 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170763, + "fields": { + "id_car_serie": 45955, + "name": "2.0 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170766, + "fields": { + "id_car_serie": 45956, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170770, + "fields": { + "id_car_serie": 45960, + "name": "4.5 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1952, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170771, + "fields": { + "id_car_serie": 45960, + "name": "4.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1952, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170772, + "fields": { + "id_car_serie": 45961, + "name": "4.5 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1952, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170773, + "fields": { + "id_car_serie": 45961, + "name": "4.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1952, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170774, + "fields": { + "id_car_serie": 45962, + "name": "5.3 AT (243 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1960 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170775, + "fields": { + "id_car_serie": 45962, + "name": "5.4 AT (234 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1960 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170776, + "fields": { + "id_car_serie": 45962, + "name": "5.6 AT (273 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1960 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170777, + "fields": { + "id_car_serie": 45962, + "name": "5.6 AT (299 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1960 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170778, + "fields": { + "id_car_serie": 45963, + "name": "5.3 AT (243 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1960 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170779, + "fields": { + "id_car_serie": 45963, + "name": "5.4 AT (234 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1960 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170780, + "fields": { + "id_car_serie": 45963, + "name": "5.6 AT (273 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1960 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170781, + "fields": { + "id_car_serie": 45963, + "name": "5.6 AT (299 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1960 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170782, + "fields": { + "id_car_serie": 45964, + "name": "5.3 AT (243 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1960 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170783, + "fields": { + "id_car_serie": 45964, + "name": "5.4 AT (234 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1960 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170784, + "fields": { + "id_car_serie": 45964, + "name": "5.6 AT (273 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1960 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170785, + "fields": { + "id_car_serie": 45964, + "name": "5.6 AT (299 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1960 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170786, + "fields": { + "id_car_serie": 45965, + "name": "4.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1941, + "end_production_year": 1947 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170787, + "fields": { + "id_car_serie": 45966, + "name": "4.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1935, + "end_production_year": 1941 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170788, + "fields": { + "id_car_serie": 45967, + "name": "7.8 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1932, + "end_production_year": 1939 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170827, + "fields": { + "id_car_serie": 506, + "name": "1.6 MPI LPG 5MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170828, + "fields": { + "id_car_serie": 681, + "name": "3.7 AT AWD (205 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170830, + "fields": { + "id_car_serie": 1052, + "name": "3.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170831, + "fields": { + "id_car_serie": 1052, + "name": "3.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170838, + "fields": { + "id_car_serie": 1132, + "name": "2.0 CRDi AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170839, + "fields": { + "id_car_serie": 1243, + "name": "4.7 AT AWD (231 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170840, + "fields": { + "id_car_serie": 1243, + "name": "4.7 AT AWD (303 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170842, + "fields": { + "id_car_serie": 1243, + "name": "5.7 AT AWD (330 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170843, + "fields": { + "id_car_serie": 1243, + "name": "5.7 AT (357 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170844, + "fields": { + "id_car_serie": 1243, + "name": "5.7 AT AWD (357 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170851, + "fields": { + "id_car_serie": 9635, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170852, + "fields": { + "id_car_serie": 9629, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170853, + "fields": { + "id_car_serie": 9629, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170856, + "fields": { + "id_car_serie": 9629, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170859, + "fields": { + "id_car_serie": 9629, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170860, + "fields": { + "id_car_serie": 9629, + "name": "2.0 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170861, + "fields": { + "id_car_serie": 9629, + "name": "2.0 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170862, + "fields": { + "id_car_serie": 9613, + "name": "1.3 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170863, + "fields": { + "id_car_serie": 9613, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170864, + "fields": { + "id_car_serie": 9613, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170865, + "fields": { + "id_car_serie": 9613, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170866, + "fields": { + "id_car_serie": 9613, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170867, + "fields": { + "id_car_serie": 9613, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170868, + "fields": { + "id_car_serie": 9613, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170869, + "fields": { + "id_car_serie": 9613, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170870, + "fields": { + "id_car_serie": 9613, + "name": "1.5 AT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170871, + "fields": { + "id_car_serie": 9613, + "name": "1.5 d MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170880, + "fields": { + "id_car_serie": 9535, + "name": "2.0 DCI MT AWD (173 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170881, + "fields": { + "id_car_serie": 9515, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170882, + "fields": { + "id_car_serie": 9515, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170889, + "fields": { + "id_car_serie": 9515, + "name": "2.0 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170892, + "fields": { + "id_car_serie": 9457, + "name": "1.8 GTI AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170894, + "fields": { + "id_car_serie": 2420, + "name": "90 AWD (512 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170895, + "fields": { + "id_car_serie": 2420, + "name": "100 AWD (762 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170896, + "fields": { + "id_car_serie": 14628, + "name": "2.4 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170897, + "fields": { + "id_car_serie": 2475, + "name": "1.0 AT (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170898, + "fields": { + "id_car_serie": 2475, + "name": "1.0 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170900, + "fields": { + "id_car_serie": 2475, + "name": "1.0 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170901, + "fields": { + "id_car_serie": 2475, + "name": "1.0 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170904, + "fields": { + "id_car_serie": 2480, + "name": "2.7 AT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170905, + "fields": { + "id_car_serie": 2480, + "name": "3.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170909, + "fields": { + "id_car_serie": 9304, + "name": "1.9 TD MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170910, + "fields": { + "id_car_serie": 9304, + "name": "2.4 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170911, + "fields": { + "id_car_serie": 9304, + "name": "2.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170912, + "fields": { + "id_car_serie": 9304, + "name": "2.5 TD AT syncro (102 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170913, + "fields": { + "id_car_serie": 9304, + "name": "2.5 TD AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170914, + "fields": { + "id_car_serie": 9304, + "name": "2.5 TD MT syncro (102 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170915, + "fields": { + "id_car_serie": 9304, + "name": "2.5 TD MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170916, + "fields": { + "id_car_serie": 9304, + "name": "2.5 TD MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170917, + "fields": { + "id_car_serie": 9304, + "name": "2.8 VR6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170918, + "fields": { + "id_car_serie": 2598, + "name": "3.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170919, + "fields": { + "id_car_serie": 9258, + "name": "3.0 TD AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170921, + "fields": { + "id_car_serie": 9258, + "name": "3.0 TD MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170923, + "fields": { + "id_car_serie": 9257, + "name": "2.7 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170924, + "fields": { + "id_car_serie": 9207, + "name": "1.3 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170925, + "fields": { + "id_car_serie": 2841, + "name": "1.8 MT (197 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170926, + "fields": { + "id_car_serie": 2842, + "name": "1.8 MT (197 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170927, + "fields": { + "id_car_serie": 2852, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170928, + "fields": { + "id_car_serie": 2898, + "name": "2.3 E MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170929, + "fields": { + "id_car_serie": 2898, + "name": "2.3 E quattro MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170935, + "fields": { + "id_car_serie": 2907, + "name": "2.0 TDI MT quattro (143 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 170937, + "fields": { + "id_car_serie": 2908, + "name": "1.8 TFSI multitronic (177 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170945, + "fields": { + "id_car_serie": 2910, + "name": "1.8 TFSI multitronic (177 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170946, + "fields": { + "id_car_serie": 2910, + "name": "1.8 TFSI MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 170998, + "fields": { + "id_car_serie": 3084, + "name": "3.6 AT (286 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171012, + "fields": { + "id_car_serie": 3146, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171020, + "fields": { + "id_car_serie": 3155, + "name": "2.3 D AT AWD (77 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171021, + "fields": { + "id_car_serie": 3155, + "name": "2.3 D AT (77 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171022, + "fields": { + "id_car_serie": 3155, + "name": "2.3 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171023, + "fields": { + "id_car_serie": 3155, + "name": "2.9 TD AT AWD (120 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171024, + "fields": { + "id_car_serie": 3155, + "name": "2.9 TD AT (129 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171025, + "fields": { + "id_car_serie": 3155, + "name": "2.9 D AT (98 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171026, + "fields": { + "id_car_serie": 3155, + "name": "2.9 D AT AWD (98 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171027, + "fields": { + "id_car_serie": 3155, + "name": "2.9 TD MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171028, + "fields": { + "id_car_serie": 3155, + "name": "2.9 D MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171047, + "fields": { + "id_car_serie": 3191, + "name": "1.0 AT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171048, + "fields": { + "id_car_serie": 3191, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171049, + "fields": { + "id_car_serie": 3191, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171064, + "fields": { + "id_car_serie": 3354, + "name": "2.0 TDCi DPF MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171071, + "fields": { + "id_car_serie": 3428, + "name": "1.6 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171073, + "fields": { + "id_car_serie": 3428, + "name": "1.6 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171074, + "fields": { + "id_car_serie": 3446, + "name": "2.2 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171075, + "fields": { + "id_car_serie": 3446, + "name": "2.2 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171076, + "fields": { + "id_car_serie": 3446, + "name": "2.2 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171077, + "fields": { + "id_car_serie": 3446, + "name": "2.2 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171078, + "fields": { + "id_car_serie": 3446, + "name": "2.2 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171080, + "fields": { + "id_car_serie": 3481, + "name": "2.4 AT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171081, + "fields": { + "id_car_serie": 3481, + "name": "2.4 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171082, + "fields": { + "id_car_serie": 3481, + "name": "2.4 MT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171085, + "fields": { + "id_car_serie": 4148, + "name": "1.4 TSI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171091, + "fields": { + "id_car_serie": 3773, + "name": "2.5 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171093, + "fields": { + "id_car_serie": 3773, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171096, + "fields": { + "id_car_serie": 3792, + "name": "3.2 DI-D AT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171097, + "fields": { + "id_car_serie": 3827, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171098, + "fields": { + "id_car_serie": 3907, + "name": "1.5 Turbo D 5MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171099, + "fields": { + "id_car_serie": 3907, + "name": "1.8 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171100, + "fields": { + "id_car_serie": 3907, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171101, + "fields": { + "id_car_serie": 3907, + "name": "1.8 5MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171102, + "fields": { + "id_car_serie": 4163, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171103, + "fields": { + "id_car_serie": 4179, + "name": "2.9 TD MT AWD (120 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171104, + "fields": { + "id_car_serie": 4179, + "name": "2.9 D MT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171105, + "fields": { + "id_car_serie": 4179, + "name": "3.2 AT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171107, + "fields": { + "id_car_serie": 4181, + "name": "2.3 D MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171109, + "fields": { + "id_car_serie": 4181, + "name": "3.2 AT (220 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171110, + "fields": { + "id_car_serie": 4181, + "name": "3.2 MT (220 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171111, + "fields": { + "id_car_serie": 4264, + "name": "1.5 AT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171112, + "fields": { + "id_car_serie": 4264, + "name": "1.5 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171113, + "fields": { + "id_car_serie": 4270, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171114, + "fields": { + "id_car_serie": 4270, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171115, + "fields": { + "id_car_serie": 4271, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171116, + "fields": { + "id_car_serie": 4271, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171134, + "fields": { + "id_car_serie": 4347, + "name": "1.2 TSI BlueMotion DSG (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171135, + "fields": { + "id_car_serie": 4347, + "name": "1.2 TSI BlueMotion MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171136, + "fields": { + "id_car_serie": 4347, + "name": "1.4 TSI BlueMotion DSG (125 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171137, + "fields": { + "id_car_serie": 4347, + "name": "1.4 TSI BlueMotion DSG (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171138, + "fields": { + "id_car_serie": 4347, + "name": "1.4 TSI BlueMotion MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171139, + "fields": { + "id_car_serie": 4347, + "name": "1.4 TSI BlueMotion MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171166, + "fields": { + "id_car_serie": 4415, + "name": "4.0 MT (245 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171172, + "fields": { + "id_car_serie": 4535, + "name": "2.0 T5 Turbo Powershift (240 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171173, + "fields": { + "id_car_serie": 4535, + "name": "2.0 T5 Turbo MT (240 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171174, + "fields": { + "id_car_serie": 4540, + "name": "2.0 D4 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171176, + "fields": { + "id_car_serie": 4540, + "name": "3.2 Geartronic AWD (243 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171181, + "fields": { + "id_car_serie": 4625, + "name": "1.8 T MT quattro (163 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171182, + "fields": { + "id_car_serie": 4625, + "name": "1.9 TDI 5MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171185, + "fields": { + "id_car_serie": 4653, + "name": "2.5 AT (176 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171186, + "fields": { + "id_car_serie": 4653, + "name": "3.2 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171190, + "fields": { + "id_car_serie": 5749, + "name": "1.6 MT (104 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171192, + "fields": { + "id_car_serie": 5727, + "name": "2.2 Ecotec AT (149 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171193, + "fields": { + "id_car_serie": 5727, + "name": "2.2 Ecotec MT (149 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171196, + "fields": { + "id_car_serie": 5724, + "name": "3.6 6AT AWD Sport (264 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171197, + "fields": { + "id_car_serie": 5724, + "name": "3.6 6AT Sport (264 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171200, + "fields": { + "id_car_serie": 5703, + "name": "3.8 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171201, + "fields": { + "id_car_serie": 5703, + "name": "3.8 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171202, + "fields": { + "id_car_serie": 5703, + "name": "5.7 MT (285 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171207, + "fields": { + "id_car_serie": 5702, + "name": "5.7 MT (275 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171208, + "fields": { + "id_car_serie": 8427, + "name": "2.2 TD MT (5 places) (184 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171209, + "fields": { + "id_car_serie": 8427, + "name": "3.0 AT (5 places) (258 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171212, + "fields": { + "id_car_serie": 9127, + "name": "2.0 AT 4WD (137 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171213, + "fields": { + "id_car_serie": 9127, + "name": "2.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171214, + "fields": { + "id_car_serie": 9127, + "name": "2.0 MT 4WD (137 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171215, + "fields": { + "id_car_serie": 9127, + "name": "2.0 MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171216, + "fields": { + "id_car_serie": 9127, + "name": "2.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171231, + "fields": { + "id_car_serie": 5487, + "name": "1.8 T multitronic (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171233, + "fields": { + "id_car_serie": 5487, + "name": "1.9 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171235, + "fields": { + "id_car_serie": 5487, + "name": "2.5 TDI tiptronic (180 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171236, + "fields": { + "id_car_serie": 5487, + "name": "2.5 TDI tiptronic quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171237, + "fields": { + "id_car_serie": 5487, + "name": "2.5 TDI MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171239, + "fields": { + "id_car_serie": 5486, + "name": "1.9 TDI tiptronic (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171240, + "fields": { + "id_car_serie": 5486, + "name": "1.9 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171241, + "fields": { + "id_car_serie": 5486, + "name": "2.5 TDI MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171243, + "fields": { + "id_car_serie": 5486, + "name": "2.5 TDI MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171245, + "fields": { + "id_car_serie": 5486, + "name": "2.7 T tiptronic (250 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171247, + "fields": { + "id_car_serie": 5486, + "name": "4.2 tiptronic quattro (300 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171253, + "fields": { + "id_car_serie": 5483, + "name": "3.0 TDI tiptronic quattro (233 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171254, + "fields": { + "id_car_serie": 5483, + "name": "3.0 TDI MT quattro (233 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171258, + "fields": { + "id_car_serie": 8327, + "name": "2.0 D AT (70 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171259, + "fields": { + "id_car_serie": 8327, + "name": "2.0 TD AT (87 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171261, + "fields": { + "id_car_serie": 9128, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171263, + "fields": { + "id_car_serie": 9128, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171265, + "fields": { + "id_car_serie": 9128, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171266, + "fields": { + "id_car_serie": 9128, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171268, + "fields": { + "id_car_serie": 9128, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171269, + "fields": { + "id_car_serie": 9128, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171276, + "fields": { + "id_car_serie": 5416, + "name": "1.5 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171289, + "fields": { + "id_car_serie": 5366, + "name": "3.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171294, + "fields": { + "id_car_serie": 5377, + "name": "2.4 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171295, + "fields": { + "id_car_serie": 5377, + "name": "2.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171309, + "fields": { + "id_car_serie": 5810, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171310, + "fields": { + "id_car_serie": 5810, + "name": "2.0 HDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171311, + "fields": { + "id_car_serie": 5814, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171312, + "fields": { + "id_car_serie": 5814, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171313, + "fields": { + "id_car_serie": 5814, + "name": "2.2 HDi MT (173 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171321, + "fields": { + "id_car_serie": 5859, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171322, + "fields": { + "id_car_serie": 5859, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171323, + "fields": { + "id_car_serie": 5859, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171324, + "fields": { + "id_car_serie": 5890, + "name": "0.7 AT AWD (58 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171326, + "fields": { + "id_car_serie": 5890, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171327, + "fields": { + "id_car_serie": 5890, + "name": "0.7 CVT (58 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171328, + "fields": { + "id_car_serie": 5890, + "name": "0.7 CVT AWD (58 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171331, + "fields": { + "id_car_serie": 5890, + "name": "0.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171332, + "fields": { + "id_car_serie": 5890, + "name": "0.7 MT AWD (58 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171337, + "fields": { + "id_car_serie": 5891, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171342, + "fields": { + "id_car_serie": 5891, + "name": "0.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171346, + "fields": { + "id_car_serie": 5892, + "name": "0.7 AT (45 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171347, + "fields": { + "id_car_serie": 5892, + "name": "0.7 AT AWD (48 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171348, + "fields": { + "id_car_serie": 5892, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171349, + "fields": { + "id_car_serie": 5892, + "name": "0.7 AT (48 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171350, + "fields": { + "id_car_serie": 5892, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171351, + "fields": { + "id_car_serie": 5892, + "name": "0.7 AT AWD (45 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171352, + "fields": { + "id_car_serie": 5892, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171353, + "fields": { + "id_car_serie": 5892, + "name": "0.7 CVT (58 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171354, + "fields": { + "id_car_serie": 5892, + "name": "0.7 MT (48 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171355, + "fields": { + "id_car_serie": 5892, + "name": "0.7 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171356, + "fields": { + "id_car_serie": 5892, + "name": "0.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171357, + "fields": { + "id_car_serie": 5892, + "name": "0.7 MT AWD (45 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171358, + "fields": { + "id_car_serie": 5892, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171359, + "fields": { + "id_car_serie": 5892, + "name": "0.7 MT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171361, + "fields": { + "id_car_serie": 5938, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171364, + "fields": { + "id_car_serie": 5945, + "name": "4.7 MT AWD (230 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171367, + "fields": { + "id_car_serie": 5947, + "name": "3.9 MT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171372, + "fields": { + "id_car_serie": 9102, + "name": "1.8 TSI AT (152 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171373, + "fields": { + "id_car_serie": 9102, + "name": "1.8 TSI MT 4x4 (152 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171374, + "fields": { + "id_car_serie": 9102, + "name": "1.8 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171375, + "fields": { + "id_car_serie": 9102, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171376, + "fields": { + "id_car_serie": 6086, + "name": "2.3 eCVT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171377, + "fields": { + "id_car_serie": 6086, + "name": "2.3 eCVT (133 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171395, + "fields": { + "id_car_serie": 6306, + "name": "2.2 sTDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171412, + "fields": { + "id_car_serie": 6325, + "name": "1.6 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171441, + "fields": { + "id_car_serie": 6348, + "name": "1.6 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171446, + "fields": { + "id_car_serie": 6348, + "name": "1.6 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171448, + "fields": { + "id_car_serie": 6348, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171450, + "fields": { + "id_car_serie": 6348, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171460, + "fields": { + "id_car_serie": 6402, + "name": "2.2 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171461, + "fields": { + "id_car_serie": 6402, + "name": "2.2 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171462, + "fields": { + "id_car_serie": 6402, + "name": "2.2 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171463, + "fields": { + "id_car_serie": 6402, + "name": "2.2 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171464, + "fields": { + "id_car_serie": 6429, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171465, + "fields": { + "id_car_serie": 6429, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171466, + "fields": { + "id_car_serie": 6457, + "name": "1.6 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171469, + "fields": { + "id_car_serie": 6527, + "name": "3.5 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171470, + "fields": { + "id_car_serie": 6527, + "name": "3.5 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171471, + "fields": { + "id_car_serie": 6540, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171472, + "fields": { + "id_car_serie": 6540, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171474, + "fields": { + "id_car_serie": 9065, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171475, + "fields": { + "id_car_serie": 9065, + "name": "2.0 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171477, + "fields": { + "id_car_serie": 8472, + "name": "2.0 HDI AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171478, + "fields": { + "id_car_serie": 8472, + "name": "2.0 HDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171479, + "fields": { + "id_car_serie": 9113, + "name": "2.7 TD MT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171480, + "fields": { + "id_car_serie": 9113, + "name": "3.2 AT AWD (220 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171482, + "fields": { + "id_car_serie": 7061, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171484, + "fields": { + "id_car_serie": 7153, + "name": "2.5 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171485, + "fields": { + "id_car_serie": 7153, + "name": "3.5 sVT (270 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171486, + "fields": { + "id_car_serie": 7154, + "name": "3.5 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171494, + "fields": { + "id_car_serie": 7241, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171496, + "fields": { + "id_car_serie": 8817, + "name": "1.8 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171497, + "fields": { + "id_car_serie": 8817, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171498, + "fields": { + "id_car_serie": 8817, + "name": "3.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171517, + "fields": { + "id_car_serie": 7592, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171520, + "fields": { + "id_car_serie": 7594, + "name": "1.9 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171523, + "fields": { + "id_car_serie": 7594, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171527, + "fields": { + "id_car_serie": 7659, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171528, + "fields": { + "id_car_serie": 7659, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171529, + "fields": { + "id_car_serie": 7659, + "name": "1.6 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171530, + "fields": { + "id_car_serie": 7659, + "name": "1.6 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171533, + "fields": { + "id_car_serie": 7660, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171545, + "fields": { + "id_car_serie": 7660, + "name": "2.0 AT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171547, + "fields": { + "id_car_serie": 7660, + "name": "2.0 MT AWD (155 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171548, + "fields": { + "id_car_serie": 7661, + "name": "1.5 AT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171549, + "fields": { + "id_car_serie": 7661, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171552, + "fields": { + "id_car_serie": 7661, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171553, + "fields": { + "id_car_serie": 7661, + "name": "1.5 MT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171556, + "fields": { + "id_car_serie": 7661, + "name": "1.6 AT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171564, + "fields": { + "id_car_serie": 7661, + "name": "2.0 AT AWD (155 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171566, + "fields": { + "id_car_serie": 7661, + "name": "2.0 MT AWD (155 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171568, + "fields": { + "id_car_serie": 8884, + "name": "2.5 TD MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171571, + "fields": { + "id_car_serie": 7762, + "name": "2.4 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171587, + "fields": { + "id_car_serie": 7820, + "name": "1.8 Supercharged MT (225 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171588, + "fields": { + "id_car_serie": 7823, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171590, + "fields": { + "id_car_serie": 7823, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171608, + "fields": { + "id_car_serie": 7832, + "name": "1.3 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171609, + "fields": { + "id_car_serie": 7832, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171615, + "fields": { + "id_car_serie": 7877, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171616, + "fields": { + "id_car_serie": 7877, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171619, + "fields": { + "id_car_serie": 8032, + "name": "2.0 T AT (225 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171621, + "fields": { + "id_car_serie": 8032, + "name": "2.4 T MT (193 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171622, + "fields": { + "id_car_serie": 9063, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171623, + "fields": { + "id_car_serie": 9063, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171624, + "fields": { + "id_car_serie": 9063, + "name": "2.0 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171625, + "fields": { + "id_car_serie": 9063, + "name": "2.2 TD MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171626, + "fields": { + "id_car_serie": 9063, + "name": "2.2 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171627, + "fields": { + "id_car_serie": 8298, + "name": "1.6 MT FWD (114 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171640, + "fields": { + "id_car_serie": 8633, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171653, + "fields": { + "id_car_serie": 14762, + "name": "3.2 AT (225 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171655, + "fields": { + "id_car_serie": 14629, + "name": "2.4 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171658, + "fields": { + "id_car_serie": 14687, + "name": "1.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171663, + "fields": { + "id_car_serie": 10735, + "name": "2.4 D5 Turbo Geartronic (205 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171666, + "fields": { + "id_car_serie": 14713, + "name": "1.8 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171669, + "fields": { + "id_car_serie": 14728, + "name": "2.0 TSI DSG 4Motion (220 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171675, + "fields": { + "id_car_serie": 14736, + "name": "1.5 CVT (100 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171676, + "fields": { + "id_car_serie": 14754, + "name": "2.0 TD MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171677, + "fields": { + "id_car_serie": 14754, + "name": "2.0 TD MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171682, + "fields": { + "id_car_serie": 14825, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171683, + "fields": { + "id_car_serie": 14825, + "name": "1.4 TDI MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171684, + "fields": { + "id_car_serie": 14825, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171685, + "fields": { + "id_car_serie": 14825, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171688, + "fields": { + "id_car_serie": 14780, + "name": "2.0 HDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171689, + "fields": { + "id_car_serie": 14780, + "name": "2.2 HDI AT (133 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171690, + "fields": { + "id_car_serie": 14780, + "name": "2.2 HDI AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171691, + "fields": { + "id_car_serie": 14782, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171694, + "fields": { + "id_car_serie": 14826, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171695, + "fields": { + "id_car_serie": 14826, + "name": "1.4 TDI MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171696, + "fields": { + "id_car_serie": 14826, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171697, + "fields": { + "id_car_serie": 14867, + "name": "1.2 TFSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171698, + "fields": { + "id_car_serie": 14867, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171699, + "fields": { + "id_car_serie": 14873, + "name": "1.9 TDI AT quattro (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171700, + "fields": { + "id_car_serie": 14873, + "name": "2.4 tiptronic quattro (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171722, + "fields": { + "id_car_serie": 14941, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171723, + "fields": { + "id_car_serie": 14941, + "name": "2.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171726, + "fields": { + "id_car_serie": 14967, + "name": "1.7 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171727, + "fields": { + "id_car_serie": 14967, + "name": "1.7 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171728, + "fields": { + "id_car_serie": 14967, + "name": "2.0 AT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171729, + "fields": { + "id_car_serie": 14967, + "name": "2.0 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171731, + "fields": { + "id_car_serie": 14980, + "name": "2.0 Shiftronic (137 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171732, + "fields": { + "id_car_serie": 14980, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171733, + "fields": { + "id_car_serie": 14980, + "name": "2.5 Shiftronic (172 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171734, + "fields": { + "id_car_serie": 14980, + "name": "3.0 Shiftronic (182 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171741, + "fields": { + "id_car_serie": 15083, + "name": "2.0 dCi MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171742, + "fields": { + "id_car_serie": 15083, + "name": "2.2 dCi AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171744, + "fields": { + "id_car_serie": 15107, + "name": "1.9 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171745, + "fields": { + "id_car_serie": 15107, + "name": "1.9 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171748, + "fields": { + "id_car_serie": 15138, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171749, + "fields": { + "id_car_serie": 15138, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171750, + "fields": { + "id_car_serie": 15138, + "name": "1.6 MPI MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": 2016 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171751, + "fields": { + "id_car_serie": 15146, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171752, + "fields": { + "id_car_serie": 15146, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171754, + "fields": { + "id_car_serie": 15146, + "name": "1.4 TD AT (80 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171756, + "fields": { + "id_car_serie": 15146, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171757, + "fields": { + "id_car_serie": 15161, + "name": "2.5 T5 Geartronic (249 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171771, + "fields": { + "id_car_serie": 15272, + "name": "1.0 EcoBoost MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171775, + "fields": { + "id_car_serie": 15272, + "name": "2.0 TDCi Duratorq MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171776, + "fields": { + "id_car_serie": 15272, + "name": "2.0 TDCi Duratorq MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171777, + "fields": { + "id_car_serie": 15276, + "name": "3.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171778, + "fields": { + "id_car_serie": 15276, + "name": "3.0 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171786, + "fields": { + "id_car_serie": 15281, + "name": "1.7 CTDi MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171803, + "fields": { + "id_car_serie": 15347, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171813, + "fields": { + "id_car_serie": 15363, + "name": "1.8 Supercharged MT (225 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171814, + "fields": { + "id_car_serie": 15363, + "name": "2.0 D-4D MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171815, + "fields": { + "id_car_serie": 15364, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171817, + "fields": { + "id_car_serie": 15364, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171818, + "fields": { + "id_car_serie": 15364, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171820, + "fields": { + "id_car_serie": 15364, + "name": "1.8 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171821, + "fields": { + "id_car_serie": 15364, + "name": "1.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171824, + "fields": { + "id_car_serie": 15370, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171825, + "fields": { + "id_car_serie": 15370, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171829, + "fields": { + "id_car_serie": 15393, + "name": "3.0 D AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171830, + "fields": { + "id_car_serie": 15393, + "name": "3.0 D MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171831, + "fields": { + "id_car_serie": 15393, + "name": "3.4 AT (185 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171832, + "fields": { + "id_car_serie": 15393, + "name": "3.4 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171842, + "fields": { + "id_car_serie": 15494, + "name": "5.5 AT (525 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171843, + "fields": { + "id_car_serie": 15656, + "name": "2.0 MT (215 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171844, + "fields": { + "id_car_serie": 15657, + "name": "2.0 MT (215 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171845, + "fields": { + "id_car_serie": 15662, + "name": "65 AMG Long 6.0 AT (612 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171850, + "fields": { + "id_car_serie": 14660, + "name": "3.0 TDI Tiptronic quattro (326 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171867, + "fields": { + "id_car_serie": 45594, + "name": "2.4 MT (300 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171870, + "fields": { + "id_car_serie": 45132, + "name": "1.6 l, 120 hp, gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171871, + "fields": { + "id_car_serie": 45132, + "name": "1.6 l, 120 hp, gasoline, robot, front drive", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171883, + "fields": { + "id_car_serie": 45416, + "name": "2.0 T-GDI AT (247 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171885, + "fields": { + "id_car_serie": 45685, + "name": "1.4 TFSI S tronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171886, + "fields": { + "id_car_serie": 45685, + "name": "2.0 TFSI MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171887, + "fields": { + "id_car_serie": 45685, + "name": "2.0 TDI S tronic quattro (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171898, + "fields": { + "id_car_serie": 45701, + "name": "1.2 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171899, + "fields": { + "id_car_serie": 45701, + "name": "1.2 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171900, + "fields": { + "id_car_serie": 45701, + "name": "1.5 D AT (116 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171901, + "fields": { + "id_car_serie": 45701, + "name": "1.5 D MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171906, + "fields": { + "id_car_serie": 45786, + "name": "3.2 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171912, + "fields": { + "id_car_serie": 46065, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171913, + "fields": { + "id_car_serie": 46059, + "name": "5.4 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171914, + "fields": { + "id_car_serie": 46049, + "name": "2.0 MT (52 hp)", + "arabic_name": "-", + "start_production_year": 1939, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171916, + "fields": { + "id_car_serie": 46051, + "name": "3.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1948, + "end_production_year": 1960 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171920, + "fields": { + "id_car_serie": 46053, + "name": "1.9 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1959, + "end_production_year": 1961 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171921, + "fields": { + "id_car_serie": 46054, + "name": "2.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171922, + "fields": { + "id_car_serie": 46054, + "name": "2.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171923, + "fields": { + "id_car_serie": 46055, + "name": "2.0 AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171924, + "fields": { + "id_car_serie": 46055, + "name": "2.0 T D AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171925, + "fields": { + "id_car_serie": 46055, + "name": "2.0 TD AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171927, + "fields": { + "id_car_serie": 46055, + "name": "3.0 AT AWD (340 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171928, + "fields": { + "id_car_serie": 46055, + "name": "3.0 AT AWD (380 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171929, + "fields": { + "id_car_serie": 46055, + "name": "3.0 TD AT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171944, + "fields": { + "id_car_serie": 46057, + "name": "1.5 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171945, + "fields": { + "id_car_serie": 46057, + "name": "1.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171949, + "fields": { + "id_car_serie": 46024, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171950, + "fields": { + "id_car_serie": 46024, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171960, + "fields": { + "id_car_serie": 46064, + "name": "1.5 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171961, + "fields": { + "id_car_serie": 46064, + "name": "1.6 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171962, + "fields": { + "id_car_serie": 46064, + "name": "1.6 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171963, + "fields": { + "id_car_serie": 46064, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171964, + "fields": { + "id_car_serie": 46064, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171965, + "fields": { + "id_car_serie": 46064, + "name": "1.6 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171966, + "fields": { + "id_car_serie": 46064, + "name": "1.6 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171968, + "fields": { + "id_car_serie": 46061, + "name": "6.0 AT AWD (608 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171973, + "fields": { + "id_car_serie": 46045, + "name": "2.0 TSI DSG 4Motion L1 (204 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171974, + "fields": { + "id_car_serie": 46045, + "name": "2.0 TSI DSG L1 (204 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171975, + "fields": { + "id_car_serie": 46045, + "name": "2.0 TSI MT L1 (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171978, + "fields": { + "id_car_serie": 46045, + "name": "2.0 TSI DSG L2 (204 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171979, + "fields": { + "id_car_serie": 46045, + "name": "2.0 TSI DSG 4Motion L2 (204 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171980, + "fields": { + "id_car_serie": 46045, + "name": "2.0 TDI MT L1 (102 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171981, + "fields": { + "id_car_serie": 46045, + "name": "2.0 TSI MT L2 (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171985, + "fields": { + "id_car_serie": 46044, + "name": "4.0 AT (476 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171986, + "fields": { + "id_car_serie": 46044, + "name": "4.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 171987, + "fields": { + "id_car_serie": 46034, + "name": "2.4 D5 Geartronic AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171988, + "fields": { + "id_car_serie": 46034, + "name": "2.4 T AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171989, + "fields": { + "id_car_serie": 46034, + "name": "2.4 D5 MT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171990, + "fields": { + "id_car_serie": 46034, + "name": "2.4 T MT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171991, + "fields": { + "id_car_serie": 46034, + "name": "2.5 T Geartronic AWD (210 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 171992, + "fields": { + "id_car_serie": 46034, + "name": "2.5 T MT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172002, + "fields": { + "id_car_serie": 46027, + "name": "1.0 AMT (71 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172014, + "fields": { + "id_car_serie": 46003, + "name": "4.2 tiptronic quattro (344 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172015, + "fields": { + "id_car_serie": 46003, + "name": "4.2 MT quattro (344 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172016, + "fields": { + "id_car_serie": 46012, + "name": "LP 610-4 (610 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172019, + "fields": { + "id_car_serie": 46006, + "name": "2.2 CRDI AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172023, + "fields": { + "id_car_serie": 46006, + "name": "2.4 AT AWD (171 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172026, + "fields": { + "id_car_serie": 46006, + "name": "2.4 MT AWD (171 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172034, + "fields": { + "id_car_serie": 46023, + "name": "4.1 MT (157 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172035, + "fields": { + "id_car_serie": 46023, + "name": "5.7 AT (253 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172036, + "fields": { + "id_car_serie": 46023, + "name": "5.7 AT (314 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172037, + "fields": { + "id_car_serie": 46023, + "name": "5.7 MT (253 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172038, + "fields": { + "id_car_serie": 46023, + "name": "5.7 MT (314 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172039, + "fields": { + "id_car_serie": 46023, + "name": "6.6 AT (304 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172040, + "fields": { + "id_car_serie": 46023, + "name": "7.5 AT (380 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172047, + "fields": { + "id_car_serie": 46007, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172049, + "fields": { + "id_car_serie": 46007, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172050, + "fields": { + "id_car_serie": 46007, + "name": "1.6 DCT (135 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172051, + "fields": { + "id_car_serie": 46007, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172056, + "fields": { + "id_car_serie": 46005, + "name": "1.3 AT (61 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172057, + "fields": { + "id_car_serie": 46005, + "name": "1.3 AT (69 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172058, + "fields": { + "id_car_serie": 46005, + "name": "1.3 MT (61 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172059, + "fields": { + "id_car_serie": 46005, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172060, + "fields": { + "id_car_serie": 46005, + "name": "1.5 AT (76 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172061, + "fields": { + "id_car_serie": 46005, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172063, + "fields": { + "id_car_serie": 46017, + "name": "4.7 AT (455 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172072, + "fields": { + "id_car_serie": 46028, + "name": "1.0 AT (111 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172073, + "fields": { + "id_car_serie": 46028, + "name": "1.0 MT (111 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172074, + "fields": { + "id_car_serie": 46028, + "name": "1.2 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172075, + "fields": { + "id_car_serie": 46028, + "name": "1.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172077, + "fields": { + "id_car_serie": 46008, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172079, + "fields": { + "id_car_serie": 46008, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172080, + "fields": { + "id_car_serie": 46008, + "name": "1.6 DCT (135 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172081, + "fields": { + "id_car_serie": 46008, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172086, + "fields": { + "id_car_serie": 46009, + "name": "3.8 AT (334 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172095, + "fields": { + "id_car_serie": 46033, + "name": "2.0 TDI 4Motion DSG (190 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172096, + "fields": { + "id_car_serie": 46033, + "name": "2.0 TDI BlueMotion MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172097, + "fields": { + "id_car_serie": 46035, + "name": "1.3 AT (79 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172098, + "fields": { + "id_car_serie": 46035, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172099, + "fields": { + "id_car_serie": 46035, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172100, + "fields": { + "id_car_serie": 46035, + "name": "1.5 AT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172101, + "fields": { + "id_car_serie": 46035, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172102, + "fields": { + "id_car_serie": 46035, + "name": "1.5 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172103, + "fields": { + "id_car_serie": 46035, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172104, + "fields": { + "id_car_serie": 46035, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172105, + "fields": { + "id_car_serie": 46035, + "name": "1.7 D AT (55 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172106, + "fields": { + "id_car_serie": 46035, + "name": "1.7 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172107, + "fields": { + "id_car_serie": 46035, + "name": "1.8 GTI AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172108, + "fields": { + "id_car_serie": 46035, + "name": "1.8 GTI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172115, + "fields": { + "id_car_serie": 46011, + "name": "1.6 T-GDI DCT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172116, + "fields": { + "id_car_serie": 46011, + "name": "1.6 GDI MT (132 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172117, + "fields": { + "id_car_serie": 46011, + "name": "1.6 T-GDI MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172119, + "fields": { + "id_car_serie": 46011, + "name": "1.7 CRDi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172120, + "fields": { + "id_car_serie": 46011, + "name": "2.0 CRDi AT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172121, + "fields": { + "id_car_serie": 46011, + "name": "2.0 CRDi AT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172122, + "fields": { + "id_car_serie": 46011, + "name": "2.0 CRDi MT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172123, + "fields": { + "id_car_serie": 46011, + "name": "2.0 CRDi MT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172124, + "fields": { + "id_car_serie": 46014, + "name": "0.9 AMT (85 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172125, + "fields": { + "id_car_serie": 46014, + "name": "0.9 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172128, + "fields": { + "id_car_serie": 46018, + "name": "2.4 D AT (154 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172129, + "fields": { + "id_car_serie": 46018, + "name": "2.4 D AT (181 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172130, + "fields": { + "id_car_serie": 46018, + "name": "2.4 D MT (154 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172131, + "fields": { + "id_car_serie": 46019, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172132, + "fields": { + "id_car_serie": 46019, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172133, + "fields": { + "id_car_serie": 46019, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172134, + "fields": { + "id_car_serie": 46019, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172138, + "fields": { + "id_car_serie": 46019, + "name": "1.8 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172145, + "fields": { + "id_car_serie": 46043, + "name": "2.7 AT (159 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172153, + "fields": { + "id_car_serie": 46040, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172155, + "fields": { + "id_car_serie": 46040, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172167, + "fields": { + "id_car_serie": 46036, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172176, + "fields": { + "id_car_serie": 46036, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172177, + "fields": { + "id_car_serie": 46036, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172187, + "fields": { + "id_car_serie": 7317, + "name": "1.4 LPG ecoFlex MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172188, + "fields": { + "id_car_serie": 7317, + "name": "1.7 CDTi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172193, + "fields": { + "id_car_serie": 46066, + "name": "1.6 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172196, + "fields": { + "id_car_serie": 46066, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172200, + "fields": { + "id_car_serie": 46066, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172201, + "fields": { + "id_car_serie": 46066, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172210, + "fields": { + "id_car_serie": 46067, + "name": "1.6 AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172211, + "fields": { + "id_car_serie": 46067, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172212, + "fields": { + "id_car_serie": 46067, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172213, + "fields": { + "id_car_serie": 46067, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172275, + "fields": { + "id_car_serie": 1131, + "name": "1.4 CRDi MT blue (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172276, + "fields": { + "id_car_serie": 1131, + "name": "1.6 CRDi MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172287, + "fields": { + "id_car_serie": 9598, + "name": "1.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172288, + "fields": { + "id_car_serie": 9598, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172289, + "fields": { + "id_car_serie": 9598, + "name": "1.6 supercharger MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172290, + "fields": { + "id_car_serie": 9587, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172291, + "fields": { + "id_car_serie": 9587, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172292, + "fields": { + "id_car_serie": 9587, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172293, + "fields": { + "id_car_serie": 9587, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172294, + "fields": { + "id_car_serie": 9587, + "name": "3.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172295, + "fields": { + "id_car_serie": 9587, + "name": "3.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172298, + "fields": { + "id_car_serie": 9545, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172300, + "fields": { + "id_car_serie": 9545, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172301, + "fields": { + "id_car_serie": 9545, + "name": "2.0 turbo MT (245 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172304, + "fields": { + "id_car_serie": 9420, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172312, + "fields": { + "id_car_serie": 9385, + "name": "0.9 MT (30 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172313, + "fields": { + "id_car_serie": 9385, + "name": "1.2 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172316, + "fields": { + "id_car_serie": 9156, + "name": "1.3 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172324, + "fields": { + "id_car_serie": 3729, + "name": "3.0 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172326, + "fields": { + "id_car_serie": 3058, + "name": "3.9 AT (242 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172328, + "fields": { + "id_car_serie": 3099, + "name": "2.0 TD MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172329, + "fields": { + "id_car_serie": 3121, + "name": "2.0 HDi T AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172330, + "fields": { + "id_car_serie": 3157, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172335, + "fields": { + "id_car_serie": 3209, + "name": "2.0 D MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172336, + "fields": { + "id_car_serie": 3209, + "name": "2.7 AT (186 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172351, + "fields": { + "id_car_serie": 3966, + "name": "2.0 HDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172361, + "fields": { + "id_car_serie": 3543, + "name": "5.7 Hemi AT AWD (352 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172365, + "fields": { + "id_car_serie": 3595, + "name": "2.0 MT (148 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172368, + "fields": { + "id_car_serie": 3655, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172370, + "fields": { + "id_car_serie": 3662, + "name": "2.0 SKYACTIV-G MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172372, + "fields": { + "id_car_serie": 3663, + "name": "2.0 SKYACTIV-G MT (145 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172373, + "fields": { + "id_car_serie": 3663, + "name": "2.2 SKYACTIV-D AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172374, + "fields": { + "id_car_serie": 3663, + "name": "2.2 SKYACTIV-D MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172377, + "fields": { + "id_car_serie": 4168, + "name": "1.4 TSI DSG (125 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172379, + "fields": { + "id_car_serie": 4168, + "name": "1.4 TSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172381, + "fields": { + "id_car_serie": 4168, + "name": "2.0 TDI DSG 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172382, + "fields": { + "id_car_serie": 4168, + "name": "2.0 TDI MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172383, + "fields": { + "id_car_serie": 4168, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172384, + "fields": { + "id_car_serie": 3683, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172386, + "fields": { + "id_car_serie": 3683, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172388, + "fields": { + "id_car_serie": 3683, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172389, + "fields": { + "id_car_serie": 3683, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172390, + "fields": { + "id_car_serie": 3683, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172393, + "fields": { + "id_car_serie": 3684, + "name": "1.3 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172394, + "fields": { + "id_car_serie": 3684, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172397, + "fields": { + "id_car_serie": 3684, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172399, + "fields": { + "id_car_serie": 3684, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172402, + "fields": { + "id_car_serie": 3731, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172405, + "fields": { + "id_car_serie": 3731, + "name": "2.0 AT (55 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172406, + "fields": { + "id_car_serie": 3731, + "name": "2.0 AT (60 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172407, + "fields": { + "id_car_serie": 3731, + "name": "2.2 AT (60 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172408, + "fields": { + "id_car_serie": 3731, + "name": "2.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172409, + "fields": { + "id_car_serie": 3731, + "name": "2.4 AT (72 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172410, + "fields": { + "id_car_serie": 3731, + "name": "2.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172412, + "fields": { + "id_car_serie": 3734, + "name": "3.0 AT (234 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172413, + "fields": { + "id_car_serie": 3734, + "name": "3.0 MT (234 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172415, + "fields": { + "id_car_serie": 3792, + "name": "3.2 DI-D MT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172416, + "fields": { + "id_car_serie": 3885, + "name": "1.3d MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172417, + "fields": { + "id_car_serie": 3885, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172418, + "fields": { + "id_car_serie": 3885, + "name": "1.6 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172419, + "fields": { + "id_car_serie": 3886, + "name": "1.6 Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172424, + "fields": { + "id_car_serie": 3896, + "name": "1.2 ecoFLEX Start/Stop MT (70 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172427, + "fields": { + "id_car_serie": 3898, + "name": "2.2 DTI MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172429, + "fields": { + "id_car_serie": 3969, + "name": "2.0 HDi AT (136 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172430, + "fields": { + "id_car_serie": 3990, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172431, + "fields": { + "id_car_serie": 3990, + "name": "1.6 e-HDi ETG (90 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172450, + "fields": { + "id_car_serie": 4162, + "name": "2.0 TDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172453, + "fields": { + "id_car_serie": 4163, + "name": "1.2 TSI 5MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172454, + "fields": { + "id_car_serie": 4163, + "name": "1.2 TSI MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172458, + "fields": { + "id_car_serie": 4163, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172461, + "fields": { + "id_car_serie": 4163, + "name": "2.0 TDI MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172471, + "fields": { + "id_car_serie": 4165, + "name": "1.2 TSI MT Green tec (86 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172496, + "fields": { + "id_car_serie": 4573, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172497, + "fields": { + "id_car_serie": 4626, + "name": "1.9 TDI multitronic (115 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172498, + "fields": { + "id_car_serie": 4626, + "name": "1.9 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172499, + "fields": { + "id_car_serie": 5758, + "name": "6.5 TD AT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172500, + "fields": { + "id_car_serie": 5758, + "name": "6.5 TD MT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172510, + "fields": { + "id_car_serie": 5496, + "name": "2.0 TFSI MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172520, + "fields": { + "id_car_serie": 9130, + "name": "1.8 MT 4WD (108 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172529, + "fields": { + "id_car_serie": 5428, + "name": "1.4 MT MultiAir (135 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172533, + "fields": { + "id_car_serie": 8473, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172537, + "fields": { + "id_car_serie": 6053, + "name": "1.9 TD MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172538, + "fields": { + "id_car_serie": 6056, + "name": "1.4 T MT (133 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172541, + "fields": { + "id_car_serie": 6140, + "name": "1.1 4MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172542, + "fields": { + "id_car_serie": 6141, + "name": "1.8 TD RS MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172549, + "fields": { + "id_car_serie": 6347, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172550, + "fields": { + "id_car_serie": 6347, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172551, + "fields": { + "id_car_serie": 6347, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172552, + "fields": { + "id_car_serie": 6347, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172554, + "fields": { + "id_car_serie": 6347, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172555, + "fields": { + "id_car_serie": 6347, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172556, + "fields": { + "id_car_serie": 6347, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172557, + "fields": { + "id_car_serie": 6347, + "name": "1.6 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172558, + "fields": { + "id_car_serie": 6347, + "name": "1.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172559, + "fields": { + "id_car_serie": 6349, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172561, + "fields": { + "id_car_serie": 6349, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172563, + "fields": { + "id_car_serie": 6349, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172566, + "fields": { + "id_car_serie": 6349, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172570, + "fields": { + "id_car_serie": 6349, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172571, + "fields": { + "id_car_serie": 6349, + "name": "1.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172581, + "fields": { + "id_car_serie": 6361, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172586, + "fields": { + "id_car_serie": 6411, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172590, + "fields": { + "id_car_serie": 6493, + "name": "3.5 AT (302 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172591, + "fields": { + "id_car_serie": 6493, + "name": "3.5 MT (302 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172593, + "fields": { + "id_car_serie": 6581, + "name": "4.0 AT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172599, + "fields": { + "id_car_serie": 8694, + "name": "2.4 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172600, + "fields": { + "id_car_serie": 8694, + "name": "2.4 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172601, + "fields": { + "id_car_serie": 8694, + "name": "2.7 AT (197 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172611, + "fields": { + "id_car_serie": 9146, + "name": "0.6 MT (34 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172613, + "fields": { + "id_car_serie": 9146, + "name": "0.6 MT (40 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172615, + "fields": { + "id_car_serie": 9146, + "name": "0.6 MT (42 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172618, + "fields": { + "id_car_serie": 9146, + "name": "0.6 MT (58 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172620, + "fields": { + "id_car_serie": 9146, + "name": "0.6 MT (64 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172621, + "fields": { + "id_car_serie": 9146, + "name": "0.7 AT (36 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172622, + "fields": { + "id_car_serie": 9146, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172625, + "fields": { + "id_car_serie": 9146, + "name": "0.7 AT (61 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172634, + "fields": { + "id_car_serie": 6621, + "name": "3.8 4WD AT (266 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172635, + "fields": { + "id_car_serie": 6625, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172636, + "fields": { + "id_car_serie": 6652, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172637, + "fields": { + "id_car_serie": 6652, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172638, + "fields": { + "id_car_serie": 6652, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172639, + "fields": { + "id_car_serie": 6652, + "name": "2.0 MT Turbo (186 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172660, + "fields": { + "id_car_serie": 8820, + "name": "4.2 AT (279 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172664, + "fields": { + "id_car_serie": 7283, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172672, + "fields": { + "id_car_serie": 7301, + "name": "1.6 AT (71 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172675, + "fields": { + "id_car_serie": 7301, + "name": "1.6 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172676, + "fields": { + "id_car_serie": 7301, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172680, + "fields": { + "id_car_serie": 8816, + "name": "2.1 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172681, + "fields": { + "id_car_serie": 8816, + "name": "3.0 AT (265 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172682, + "fields": { + "id_car_serie": 8816, + "name": "3.5 AT (249 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172683, + "fields": { + "id_car_serie": 8816, + "name": "3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172684, + "fields": { + "id_car_serie": 8816, + "name": "4.7 AT (408 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172687, + "fields": { + "id_car_serie": 8815, + "name": "3.5 AT (249 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172688, + "fields": { + "id_car_serie": 7357, + "name": "1.6 HDi MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172690, + "fields": { + "id_car_serie": 7614, + "name": "1.8 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172697, + "fields": { + "id_car_serie": 7732, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172700, + "fields": { + "id_car_serie": 7773, + "name": "2.0 AT 4WD G (135 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172701, + "fields": { + "id_car_serie": 7773, + "name": "2.0 MT 4WD G (135 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172723, + "fields": { + "id_car_serie": 7832, + "name": "1.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172724, + "fields": { + "id_car_serie": 7832, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172725, + "fields": { + "id_car_serie": 7832, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172726, + "fields": { + "id_car_serie": 7832, + "name": "2.0 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172734, + "fields": { + "id_car_serie": 7833, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172736, + "fields": { + "id_car_serie": 7833, + "name": "2.0 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172738, + "fields": { + "id_car_serie": 7978, + "name": "1.9 TDI 7DSG (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172740, + "fields": { + "id_car_serie": 8015, + "name": "3.0 TDI MT (225 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172741, + "fields": { + "id_car_serie": 8031, + "name": "2.4 T AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172745, + "fields": { + "id_car_serie": 8797, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172752, + "fields": { + "id_car_serie": 8793, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172753, + "fields": { + "id_car_serie": 8793, + "name": "1.5 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172754, + "fields": { + "id_car_serie": 8793, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172755, + "fields": { + "id_car_serie": 8793, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172756, + "fields": { + "id_car_serie": 8615, + "name": "2.4 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172757, + "fields": { + "id_car_serie": 8615, + "name": "2.4 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172765, + "fields": { + "id_car_serie": 8456, + "name": "5.7 K2500 4AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172766, + "fields": { + "id_car_serie": 8456, + "name": "5.7 C2500 4AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172767, + "fields": { + "id_car_serie": 8456, + "name": "5.7 C2500 4AT (255 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172768, + "fields": { + "id_car_serie": 8456, + "name": "5.7 C1500 4AT (255 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172769, + "fields": { + "id_car_serie": 10803, + "name": "1.5 Turbo DCT (153 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172784, + "fields": { + "id_car_serie": 10766, + "name": "4.8 AT (270 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172789, + "fields": { + "id_car_serie": 14724, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172792, + "fields": { + "id_car_serie": 14752, + "name": "2.4 MT 4WD (126 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172793, + "fields": { + "id_car_serie": 14798, + "name": "1.8 AT (134 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172794, + "fields": { + "id_car_serie": 14798, + "name": "1.8 MT (134 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172795, + "fields": { + "id_car_serie": 14798, + "name": "2.0 AT (149 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172796, + "fields": { + "id_car_serie": 14798, + "name": "2.0 MT (149 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172797, + "fields": { + "id_car_serie": 14798, + "name": "2.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172798, + "fields": { + "id_car_serie": 14798, + "name": "2.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172799, + "fields": { + "id_car_serie": 14798, + "name": "2.5 AT (176 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172800, + "fields": { + "id_car_serie": 14798, + "name": "2.7 AT (172 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172804, + "fields": { + "id_car_serie": 14822, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172805, + "fields": { + "id_car_serie": 14822, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172806, + "fields": { + "id_car_serie": 14822, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172807, + "fields": { + "id_car_serie": 14822, + "name": "2.2 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172808, + "fields": { + "id_car_serie": 14822, + "name": "2.2 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172813, + "fields": { + "id_car_serie": 14781, + "name": "2.0 HDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172814, + "fields": { + "id_car_serie": 14781, + "name": "2.2 HDI AT (133 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172815, + "fields": { + "id_car_serie": 14781, + "name": "2.2 HDI AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172817, + "fields": { + "id_car_serie": 14783, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172823, + "fields": { + "id_car_serie": 14933, + "name": "2.4 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172824, + "fields": { + "id_car_serie": 14939, + "name": "2.0 CVT (145 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172825, + "fields": { + "id_car_serie": 14939, + "name": "2.4 CVT (188 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172826, + "fields": { + "id_car_serie": 14939, + "name": "3.0 AT (249 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172833, + "fields": { + "id_car_serie": 14972, + "name": "1.5 CRDi AT (104 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172834, + "fields": { + "id_car_serie": 14972, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172835, + "fields": { + "id_car_serie": 14974, + "name": "1.5 AT (104 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172836, + "fields": { + "id_car_serie": 14974, + "name": "1.5 MT (104 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172837, + "fields": { + "id_car_serie": 15013, + "name": "2.0 MZR-CD MT (121 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172842, + "fields": { + "id_car_serie": 15024, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172843, + "fields": { + "id_car_serie": 15024, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172845, + "fields": { + "id_car_serie": 15033, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172847, + "fields": { + "id_car_serie": 15034, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172848, + "fields": { + "id_car_serie": 15034, + "name": "2.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172850, + "fields": { + "id_car_serie": 15057, + "name": "1.6 CNG MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172851, + "fields": { + "id_car_serie": 15138, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172863, + "fields": { + "id_car_serie": 15308, + "name": "3.8 PDK (408 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172865, + "fields": { + "id_car_serie": 15337, + "name": "2.0 D MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172873, + "fields": { + "id_car_serie": 15353, + "name": "2.0 GTS MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172879, + "fields": { + "id_car_serie": 15408, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172881, + "fields": { + "id_car_serie": 15408, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172882, + "fields": { + "id_car_serie": 15408, + "name": "1.5 AT (67 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172883, + "fields": { + "id_car_serie": 15616, + "name": "3.6 (430 hp) MT", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172884, + "fields": { + "id_car_serie": 15616, + "name": "3.6 (450 hp) MT", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172885, + "fields": { + "id_car_serie": 15676, + "name": "2.0 AMT (230 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172886, + "fields": { + "id_car_serie": 15676, + "name": "2.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172888, + "fields": { + "id_car_serie": 15677, + "name": "2.0 AMT (230 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172889, + "fields": { + "id_car_serie": 15677, + "name": "2.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172892, + "fields": { + "id_car_serie": 15717, + "name": "2.0 AMT (265 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172893, + "fields": { + "id_car_serie": 15718, + "name": "2.0 AMT (265 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172896, + "fields": { + "id_car_serie": 14661, + "name": "3.0 TDI Tiptronic quattro (326 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172897, + "fields": { + "id_car_serie": 14660, + "name": "2.0 TFSI S tronic quattro (252 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172903, + "fields": { + "id_car_serie": 45427, + "name": "2.0 SKYACTIV-G AT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172904, + "fields": { + "id_car_serie": 45427, + "name": "2.0 SKYACTIV-G MT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172905, + "fields": { + "id_car_serie": 45427, + "name": "2.0 SKYACTIV-G MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172906, + "fields": { + "id_car_serie": 45427, + "name": "2.2 SKYACTIV-D AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172912, + "fields": { + "id_car_serie": 45686, + "name": "1.4 TFSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172913, + "fields": { + "id_car_serie": 45686, + "name": "2.0 TFSI S tronic (252 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172914, + "fields": { + "id_car_serie": 45686, + "name": "2.0 TFSI MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172919, + "fields": { + "id_car_serie": 45845, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172920, + "fields": { + "id_car_serie": 45845, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172921, + "fields": { + "id_car_serie": 45845, + "name": "2.1 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172922, + "fields": { + "id_car_serie": 46158, + "name": "1.3 MT (104 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172923, + "fields": { + "id_car_serie": 46158, + "name": "2.0 MT (148 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172924, + "fields": { + "id_car_serie": 46159, + "name": "3.0 DCT (370 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172925, + "fields": { + "id_car_serie": 46159, + "name": "3.0 MT (370 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172926, + "fields": { + "id_car_serie": 46160, + "name": "2.0 Turbo AT (276 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172927, + "fields": { + "id_car_serie": 46160, + "name": "3.0 Twin-Turbo AT AWD (417 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172928, + "fields": { + "id_car_serie": 46160, + "name": "3.6 AT AWD (335 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172933, + "fields": { + "id_car_serie": 46163, + "name": "AT (154 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172934, + "fields": { + "id_car_serie": 46164, + "name": "2.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172935, + "fields": { + "id_car_serie": 46164, + "name": "2.5 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172936, + "fields": { + "id_car_serie": 46164, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172937, + "fields": { + "id_car_serie": 46165, + "name": "1.2 MT (34 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172938, + "fields": { + "id_car_serie": 46165, + "name": "1.3 MT (39 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172939, + "fields": { + "id_car_serie": 46165, + "name": "1.3 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172940, + "fields": { + "id_car_serie": 46165, + "name": "1.3 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1981 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172941, + "fields": { + "id_car_serie": 46165, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1966, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172942, + "fields": { + "id_car_serie": 46165, + "name": "1.6 MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172943, + "fields": { + "id_car_serie": 46165, + "name": "1.6 MT (48 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172944, + "fields": { + "id_car_serie": 46165, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172945, + "fields": { + "id_car_serie": 46155, + "name": "0.8 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172946, + "fields": { + "id_car_serie": 46156, + "name": "1.8 MT (59 hp)", + "arabic_name": "-", + "start_production_year": 1953, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172947, + "fields": { + "id_car_serie": 46156, + "name": "1.8 MT (39 hp)", + "arabic_name": "-", + "start_production_year": 1953, + "end_production_year": 1961 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172948, + "fields": { + "id_car_serie": 46156, + "name": "1.9 MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1959, + "end_production_year": 1962 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172949, + "fields": { + "id_car_serie": 46166, + "name": "1.1 MT (24 hp)", + "arabic_name": "-", + "start_production_year": 1949, + "end_production_year": 1953 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172950, + "fields": { + "id_car_serie": 46166, + "name": "1.2 MT (34 hp)", + "arabic_name": "-", + "start_production_year": 1960, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172951, + "fields": { + "id_car_serie": 46166, + "name": "1.2 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1954, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172952, + "fields": { + "id_car_serie": 46166, + "name": "1.3 MT (34 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172953, + "fields": { + "id_car_serie": 46166, + "name": "1.3 MT (37 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172954, + "fields": { + "id_car_serie": 46166, + "name": "1.3 MT (39 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172955, + "fields": { + "id_car_serie": 46166, + "name": "1.3 MT (40 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172956, + "fields": { + "id_car_serie": 46166, + "name": "1.3 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172957, + "fields": { + "id_car_serie": 46166, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1966, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172959, + "fields": { + "id_car_serie": 46166, + "name": "1.6 MT (48 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172963, + "fields": { + "id_car_serie": 46168, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172964, + "fields": { + "id_car_serie": 46169, + "name": "0.8 MT (51 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172965, + "fields": { + "id_car_serie": 46170, + "name": "6.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1945, + "end_production_year": 1958 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172966, + "fields": { + "id_car_serie": 46157, + "name": "1.2 PureTech MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172967, + "fields": { + "id_car_serie": 46157, + "name": "1.6 THP AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172969, + "fields": { + "id_car_serie": 46157, + "name": "1.6 HDi AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172970, + "fields": { + "id_car_serie": 46157, + "name": "1.6 HDi MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172976, + "fields": { + "id_car_serie": 46127, + "name": "1.5 AT (107 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172977, + "fields": { + "id_car_serie": 46127, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172978, + "fields": { + "id_car_serie": 46127, + "name": "1.8 AT (138 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 172979, + "fields": { + "id_car_serie": 46125, + "name": "3.6 AT (286 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172992, + "fields": { + "id_car_serie": 46133, + "name": "2.0 Si4 AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172993, + "fields": { + "id_car_serie": 46133, + "name": "2.0 Si4 AT AWD (290 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172994, + "fields": { + "id_car_serie": 46133, + "name": "2.0 TD4 AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172995, + "fields": { + "id_car_serie": 46133, + "name": "2.0 TD4 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172996, + "fields": { + "id_car_serie": 46133, + "name": "2.0 TD4 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172997, + "fields": { + "id_car_serie": 46133, + "name": "2.0 TD4 MT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172998, + "fields": { + "id_car_serie": 46133, + "name": "2.2 TD AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 172999, + "fields": { + "id_car_serie": 46133, + "name": "2.2 TD AT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173005, + "fields": { + "id_car_serie": 46024, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173006, + "fields": { + "id_car_serie": 46024, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173009, + "fields": { + "id_car_serie": 46024, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173010, + "fields": { + "id_car_serie": 46024, + "name": "1.6 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173013, + "fields": { + "id_car_serie": 46129, + "name": "6.5 AMT (640 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173014, + "fields": { + "id_car_serie": 46129, + "name": "6.5 MT (640 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173016, + "fields": { + "id_car_serie": 46130, + "name": "6.5 AMT (661 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173021, + "fields": { + "id_car_serie": 46032, + "name": "4.5 TD AT (249 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173022, + "fields": { + "id_car_serie": 46032, + "name": "4.6 AT (309 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173027, + "fields": { + "id_car_serie": 46146, + "name": "1.4 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173028, + "fields": { + "id_car_serie": 46146, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173029, + "fields": { + "id_car_serie": 46146, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173030, + "fields": { + "id_car_serie": 46146, + "name": "1.8 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173031, + "fields": { + "id_car_serie": 46146, + "name": "1.9 MT (158 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173064, + "fields": { + "id_car_serie": 46136, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173066, + "fields": { + "id_car_serie": 46136, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173067, + "fields": { + "id_car_serie": 46136, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173069, + "fields": { + "id_car_serie": 46135, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173071, + "fields": { + "id_car_serie": 46135, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173077, + "fields": { + "id_car_serie": 46143, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173078, + "fields": { + "id_car_serie": 46143, + "name": "1.9 CDTI AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173079, + "fields": { + "id_car_serie": 46143, + "name": "1.9 CDTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173080, + "fields": { + "id_car_serie": 46143, + "name": "1.9 CDTI MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173081, + "fields": { + "id_car_serie": 46143, + "name": "1.9 CDTI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173082, + "fields": { + "id_car_serie": 46143, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173083, + "fields": { + "id_car_serie": 46143, + "name": "2.2 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173084, + "fields": { + "id_car_serie": 46143, + "name": "2.2 6MT (155 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173085, + "fields": { + "id_car_serie": 46143, + "name": "2.8 Turbo AT (230 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173086, + "fields": { + "id_car_serie": 46143, + "name": "2.8 Turbo AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173087, + "fields": { + "id_car_serie": 46143, + "name": "2.8 Turbo MT (230 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173088, + "fields": { + "id_car_serie": 46143, + "name": "2.8 Turbo MT (250 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173089, + "fields": { + "id_car_serie": 46143, + "name": "3.0 CDTI AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173090, + "fields": { + "id_car_serie": 46143, + "name": "3.0 CDTI MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173093, + "fields": { + "id_car_serie": 46145, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173094, + "fields": { + "id_car_serie": 46145, + "name": "1.4 MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173095, + "fields": { + "id_car_serie": 46145, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173096, + "fields": { + "id_car_serie": 46145, + "name": "1.6 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173097, + "fields": { + "id_car_serie": 46145, + "name": "1.6 AT (92 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173098, + "fields": { + "id_car_serie": 46145, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173099, + "fields": { + "id_car_serie": 46145, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173100, + "fields": { + "id_car_serie": 46145, + "name": "1.8 MT D (78 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173101, + "fields": { + "id_car_serie": 46145, + "name": "1.9 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173102, + "fields": { + "id_car_serie": 46145, + "name": "1.9 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173103, + "fields": { + "id_car_serie": 46145, + "name": "1.9 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173104, + "fields": { + "id_car_serie": 46145, + "name": "1.9 MT GTI (158 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173105, + "fields": { + "id_car_serie": 46145, + "name": "1.9 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173106, + "fields": { + "id_car_serie": 46145, + "name": "1.9 MT GTI (147 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173131, + "fields": { + "id_car_serie": 46149, + "name": "2.2 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173132, + "fields": { + "id_car_serie": 46149, + "name": "2.2 TDi AT (133 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173134, + "fields": { + "id_car_serie": 46149, + "name": "2.2 TDi MT (133 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173135, + "fields": { + "id_car_serie": 46149, + "name": "2.2 HDi MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173136, + "fields": { + "id_car_serie": 46149, + "name": "2.7 HDi AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173141, + "fields": { + "id_car_serie": 46041, + "name": "2.0 CVT (146 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173142, + "fields": { + "id_car_serie": 46041, + "name": "2.0 CVT 4WD (146 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173143, + "fields": { + "id_car_serie": 46041, + "name": "2.0 MT 4WD (146 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173144, + "fields": { + "id_car_serie": 46041, + "name": "2.0 MT (146 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173145, + "fields": { + "id_car_serie": 46041, + "name": "2.2 D AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173146, + "fields": { + "id_car_serie": 46041, + "name": "2.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173147, + "fields": { + "id_car_serie": 46154, + "name": "1.8 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173149, + "fields": { + "id_car_serie": 46137, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173155, + "fields": { + "id_car_serie": 46139, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173156, + "fields": { + "id_car_serie": 46139, + "name": "2.3 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173157, + "fields": { + "id_car_serie": 46134, + "name": "2.0 Si4 AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173158, + "fields": { + "id_car_serie": 46134, + "name": "2.0 TD4 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173159, + "fields": { + "id_car_serie": 46134, + "name": "2.0 TD4 AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173160, + "fields": { + "id_car_serie": 46134, + "name": "2.0 TD4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173161, + "fields": { + "id_car_serie": 46134, + "name": "2.0 TD4 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173162, + "fields": { + "id_car_serie": 46134, + "name": "2.0 TD4 MT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173163, + "fields": { + "id_car_serie": 46134, + "name": "2.2 TD AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173164, + "fields": { + "id_car_serie": 46134, + "name": "2.2 TD AT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173188, + "fields": { + "id_car_serie": 1133, + "name": "3.0 CRDi Shiftronic (250 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173189, + "fields": { + "id_car_serie": 1137, + "name": "2.0 MT (146 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173190, + "fields": { + "id_car_serie": 1137, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173193, + "fields": { + "id_car_serie": 3664, + "name": "2.0 DiTD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173196, + "fields": { + "id_car_serie": 3760, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173197, + "fields": { + "id_car_serie": 3760, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173198, + "fields": { + "id_car_serie": 3760, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173199, + "fields": { + "id_car_serie": 3487, + "name": "2.0 CRDi AT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173200, + "fields": { + "id_car_serie": 3487, + "name": "2.4 AT AWD (182 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173201, + "fields": { + "id_car_serie": 3487, + "name": "2.4 AT AWD (176 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173202, + "fields": { + "id_car_serie": 3536, + "name": "5.0 AT (385 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173203, + "fields": { + "id_car_serie": 3597, + "name": "0.9 AMT (85 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173204, + "fields": { + "id_car_serie": 3665, + "name": "2.0 DiTD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173205, + "fields": { + "id_car_serie": 3666, + "name": "2.0 DiTD MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173220, + "fields": { + "id_car_serie": 6837, + "name": "2.3 T MT (264 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173221, + "fields": { + "id_car_serie": 7017, + "name": "2.0 TD MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173222, + "fields": { + "id_car_serie": 7017, + "name": "2.0 TD AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173223, + "fields": { + "id_car_serie": 7017, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173224, + "fields": { + "id_car_serie": 7017, + "name": "2.0 TD MT AWD (88 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173225, + "fields": { + "id_car_serie": 7017, + "name": "2.0 TD AT AWD (94 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173226, + "fields": { + "id_car_serie": 7017, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173227, + "fields": { + "id_car_serie": 7017, + "name": "2.0 TD AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173228, + "fields": { + "id_car_serie": 7017, + "name": "2.0 TD MT AWD (94 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173229, + "fields": { + "id_car_serie": 7017, + "name": "2.0 AT AWD Resot runner (220 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173230, + "fields": { + "id_car_serie": 7017, + "name": "2.0 MT AWD Resot runner (230 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173232, + "fields": { + "id_car_serie": 14979, + "name": "2.4 AT (179 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173233, + "fields": { + "id_car_serie": 14979, + "name": "2.7 AT (195 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173234, + "fields": { + "id_car_serie": 14979, + "name": "3.3 AT (259 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173245, + "fields": { + "id_car_serie": 7058, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173248, + "fields": { + "id_car_serie": 7058, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173249, + "fields": { + "id_car_serie": 7058, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173250, + "fields": { + "id_car_serie": 7058, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173251, + "fields": { + "id_car_serie": 7058, + "name": "1.8 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173280, + "fields": { + "id_car_serie": 8875, + "name": "1.6 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173281, + "fields": { + "id_car_serie": 8875, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173282, + "fields": { + "id_car_serie": 8875, + "name": "1.8 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173283, + "fields": { + "id_car_serie": 8875, + "name": "1.8 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173284, + "fields": { + "id_car_serie": 8875, + "name": "1.8 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173285, + "fields": { + "id_car_serie": 8875, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173286, + "fields": { + "id_car_serie": 8875, + "name": "1.8 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173287, + "fields": { + "id_car_serie": 8875, + "name": "1.8 MT (86 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173288, + "fields": { + "id_car_serie": 8875, + "name": "1.8 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173290, + "fields": { + "id_car_serie": 8875, + "name": "2.0 AT VR-4 (210 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173291, + "fields": { + "id_car_serie": 8875, + "name": "2.0 MT VR-4 4WD/4WS (240 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173292, + "fields": { + "id_car_serie": 8875, + "name": "2.0 MT VR-4 4WD/4WS (195 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173293, + "fields": { + "id_car_serie": 8875, + "name": "2.0 MT VR-4 (220 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173295, + "fields": { + "id_car_serie": 15286, + "name": "2.7 MT (174 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173296, + "fields": { + "id_car_serie": 15618, + "name": "1.6 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173298, + "fields": { + "id_car_serie": 46193, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173304, + "fields": { + "id_car_serie": 46183, + "name": "5.3 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1949, + "end_production_year": 1958 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173306, + "fields": { + "id_car_serie": 46186, + "name": "1.4 MPI AT (108 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173307, + "fields": { + "id_car_serie": 46186, + "name": "1.4 MPI MT (108 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173308, + "fields": { + "id_car_serie": 46186, + "name": "1.6 GDI AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173309, + "fields": { + "id_car_serie": 46186, + "name": "1.6 GDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173327, + "fields": { + "id_car_serie": 46187, + "name": "1.4 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173328, + "fields": { + "id_car_serie": 46187, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173329, + "fields": { + "id_car_serie": 46187, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173330, + "fields": { + "id_car_serie": 46187, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173331, + "fields": { + "id_car_serie": 46174, + "name": "7.2 AT (375 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173335, + "fields": { + "id_car_serie": 46181, + "name": "5.7 AT (162 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173336, + "fields": { + "id_car_serie": 46182, + "name": "6.4 AT (225 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1967 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173337, + "fields": { + "id_car_serie": 46182, + "name": "6.6 AT (265 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173338, + "fields": { + "id_car_serie": 46172, + "name": "7.0 3MT (425 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1969 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173344, + "fields": { + "id_car_serie": 46185, + "name": "1.4 MPI AT (108 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173345, + "fields": { + "id_car_serie": 46185, + "name": "1.4 MPI MT (108 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173346, + "fields": { + "id_car_serie": 46185, + "name": "1.6 GDI AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173347, + "fields": { + "id_car_serie": 46185, + "name": "1.6 GDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173348, + "fields": { + "id_car_serie": 46188, + "name": "1.4 AT (95 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173349, + "fields": { + "id_car_serie": 46188, + "name": "1.5 VGT MT (112 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173350, + "fields": { + "id_car_serie": 46188, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173351, + "fields": { + "id_car_serie": 46190, + "name": "1.1 MT (61 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173352, + "fields": { + "id_car_serie": 46190, + "name": "1.3 AT (64 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173353, + "fields": { + "id_car_serie": 46190, + "name": "1.3 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173354, + "fields": { + "id_car_serie": 46190, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173355, + "fields": { + "id_car_serie": 46180, + "name": "5.7 AT (325 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173356, + "fields": { + "id_car_serie": 46180, + "name": "7.5 AT (390 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1969 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173357, + "fields": { + "id_car_serie": 3564, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173684, + "fields": { + "id_car_serie": 3332, + "name": "1.0 EcoBoost MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173685, + "fields": { + "id_car_serie": 3333, + "name": "1.0 EcoBoost S MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173689, + "fields": { + "id_car_serie": 62992, + "name": "1.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173696, + "fields": { + "id_car_serie": 2105, + "name": "GTS 3.0 PDK AWD (360 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173701, + "fields": { + "id_car_serie": 9496, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173702, + "fields": { + "id_car_serie": 9496, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173703, + "fields": { + "id_car_serie": 9496, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173704, + "fields": { + "id_car_serie": 9496, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173705, + "fields": { + "id_car_serie": 9496, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173706, + "fields": { + "id_car_serie": 9496, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173707, + "fields": { + "id_car_serie": 9496, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173708, + "fields": { + "id_car_serie": 9496, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173709, + "fields": { + "id_car_serie": 9475, + "name": "2.0 AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173711, + "fields": { + "id_car_serie": 9475, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173715, + "fields": { + "id_car_serie": 9472, + "name": "2.0 CVT AWD (129 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173717, + "fields": { + "id_car_serie": 9451, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173718, + "fields": { + "id_car_serie": 9451, + "name": "1.8 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173719, + "fields": { + "id_car_serie": 9451, + "name": "1.8 MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173720, + "fields": { + "id_car_serie": 9451, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173725, + "fields": { + "id_car_serie": 2877, + "name": "5.3 V8 MT (320 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173730, + "fields": { + "id_car_serie": 2916, + "name": "2.0 TFSI Tiptronic quattro (230 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173731, + "fields": { + "id_car_serie": 2916, + "name": "2.0 TFSI MT quattro (230 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173734, + "fields": { + "id_car_serie": 3030, + "name": "5.3 FlexFuel 6AT (310 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173735, + "fields": { + "id_car_serie": 3030, + "name": "5.3 FlexFuel 6AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173747, + "fields": { + "id_car_serie": 3115, + "name": "1.6 HDi AMT (92 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173752, + "fields": { + "id_car_serie": 3545, + "name": "2.8 CRD AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173754, + "fields": { + "id_car_serie": 3734, + "name": "2.8 AT (193 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173755, + "fields": { + "id_car_serie": 3734, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173757, + "fields": { + "id_car_serie": 3905, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173759, + "fields": { + "id_car_serie": 3905, + "name": "1.8 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173760, + "fields": { + "id_car_serie": 3905, + "name": "1.8 GT MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173761, + "fields": { + "id_car_serie": 3905, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173762, + "fields": { + "id_car_serie": 3905, + "name": "1.8 5MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173763, + "fields": { + "id_car_serie": 3906, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173766, + "fields": { + "id_car_serie": 3906, + "name": "1.8 AT (84 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173768, + "fields": { + "id_car_serie": 3906, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173769, + "fields": { + "id_car_serie": 3906, + "name": "1.8 5MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173784, + "fields": { + "id_car_serie": 4486, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173785, + "fields": { + "id_car_serie": 4486, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173786, + "fields": { + "id_car_serie": 4486, + "name": "2.0 D MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173789, + "fields": { + "id_car_serie": 4496, + "name": "2.0 MT (250 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173790, + "fields": { + "id_car_serie": 4510, + "name": "4.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173812, + "fields": { + "id_car_serie": 6468, + "name": "2.2 CRDi AT (153 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173813, + "fields": { + "id_car_serie": 6468, + "name": "2.2 CRDi MT AWD (153 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173817, + "fields": { + "id_car_serie": 8453, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173818, + "fields": { + "id_car_serie": 9042, + "name": "1.5 dCi MT 4x4 (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173826, + "fields": { + "id_car_serie": 8819, + "name": "3.2 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173843, + "fields": { + "id_car_serie": 8814, + "name": "3.5 AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173844, + "fields": { + "id_car_serie": 8814, + "name": "3.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173846, + "fields": { + "id_car_serie": 7500, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173857, + "fields": { + "id_car_serie": 7516, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173860, + "fields": { + "id_car_serie": 8873, + "name": "1.8 AT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173861, + "fields": { + "id_car_serie": 8873, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173862, + "fields": { + "id_car_serie": 8873, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173863, + "fields": { + "id_car_serie": 8873, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173864, + "fields": { + "id_car_serie": 8873, + "name": "1.8 MT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173865, + "fields": { + "id_car_serie": 8873, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173866, + "fields": { + "id_car_serie": 8873, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173867, + "fields": { + "id_car_serie": 8873, + "name": "2.0 AT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173868, + "fields": { + "id_car_serie": 8873, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173870, + "fields": { + "id_car_serie": 8873, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173871, + "fields": { + "id_car_serie": 8873, + "name": "2.0 AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173872, + "fields": { + "id_car_serie": 8873, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173873, + "fields": { + "id_car_serie": 8873, + "name": "2.0 MT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173874, + "fields": { + "id_car_serie": 8873, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173875, + "fields": { + "id_car_serie": 8873, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173876, + "fields": { + "id_car_serie": 8873, + "name": "2.0 D AT AWD (94 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173877, + "fields": { + "id_car_serie": 8873, + "name": "2.0 D AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173878, + "fields": { + "id_car_serie": 8873, + "name": "2.0 D MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173884, + "fields": { + "id_car_serie": 8309, + "name": "1.5 TD MT (67 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173886, + "fields": { + "id_car_serie": 8875, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173887, + "fields": { + "id_car_serie": 8875, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173888, + "fields": { + "id_car_serie": 14723, + "name": "1.4 ecoFLEX MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173890, + "fields": { + "id_car_serie": 10811, + "name": "2.0 AT (91 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173891, + "fields": { + "id_car_serie": 10811, + "name": "2.0 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173892, + "fields": { + "id_car_serie": 10811, + "name": "2.0 AT (79 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173893, + "fields": { + "id_car_serie": 10811, + "name": "2.0 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173896, + "fields": { + "id_car_serie": 10811, + "name": "2.7 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173898, + "fields": { + "id_car_serie": 10811, + "name": "3.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173900, + "fields": { + "id_car_serie": 14842, + "name": "2.0 T6 Drive-E AT AWD (5 places) (310 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173901, + "fields": { + "id_car_serie": 14842, + "name": "2.0 D4 Drive-E AT AWD (7 places) (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173902, + "fields": { + "id_car_serie": 14929, + "name": "3.5 Hydra-Matic (217 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173903, + "fields": { + "id_car_serie": 15075, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173904, + "fields": { + "id_car_serie": 15075, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173912, + "fields": { + "id_car_serie": 15095, + "name": "1.5 dCi MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173913, + "fields": { + "id_car_serie": 15095, + "name": "1.9 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173914, + "fields": { + "id_car_serie": 15095, + "name": "2.0 dCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173918, + "fields": { + "id_car_serie": 15096, + "name": "2.0 T MT (225 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173919, + "fields": { + "id_car_serie": 15098, + "name": "1.5 dCi MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173920, + "fields": { + "id_car_serie": 15098, + "name": "1.5 dCi MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173921, + "fields": { + "id_car_serie": 15098, + "name": "1.9 dCi MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173922, + "fields": { + "id_car_serie": 15099, + "name": "1.9 dCi AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173923, + "fields": { + "id_car_serie": 15099, + "name": "1.9 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173924, + "fields": { + "id_car_serie": 15099, + "name": "2.0 dCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173932, + "fields": { + "id_car_serie": 15542, + "name": "1.9 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173936, + "fields": { + "id_car_serie": 14690, + "name": "2.0hyb AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173937, + "fields": { + "id_car_serie": 14665, + "name": "4.0 TFSI Tiptronic performance quattro (605 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173938, + "fields": { + "id_car_serie": 14660, + "name": "2.0 TFSI S tronic quattro (249 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173939, + "fields": { + "id_car_serie": 45396, + "name": "3.5 SelectShift 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173940, + "fields": { + "id_car_serie": 45396, + "name": "3.5 Ecoboost SelectShift 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173943, + "fields": { + "id_car_serie": 45415, + "name": "3.0 S AT (380 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173944, + "fields": { + "id_car_serie": 45839, + "name": "7.5 AT (202 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173945, + "fields": { + "id_car_serie": 46178, + "name": "7.6 AT (345 hp)", + "arabic_name": "-", + "start_production_year": 1961, + "end_production_year": 1969 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173948, + "fields": { + "id_car_serie": 46328, + "name": "2.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173949, + "fields": { + "id_car_serie": 46334, + "name": "4.0 MT (282 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173950, + "fields": { + "id_car_serie": 46343, + "name": "1.6 LWB MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173951, + "fields": { + "id_car_serie": 46343, + "name": "1.6 SWB MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173952, + "fields": { + "id_car_serie": 46342, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173955, + "fields": { + "id_car_serie": 46335, + "name": "6.0 AT (279 hp)", + "arabic_name": "-", + "start_production_year": 1958, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173956, + "fields": { + "id_car_serie": 46327, + "name": "2.0 MT (203 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173957, + "fields": { + "id_car_serie": 46327, + "name": "2.0 MT (254 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173958, + "fields": { + "id_car_serie": 46330, + "name": "3.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173963, + "fields": { + "id_car_serie": 46322, + "name": "2.3 MT (314 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173973, + "fields": { + "id_car_serie": 46329, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173974, + "fields": { + "id_car_serie": 46338, + "name": "1.4 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173975, + "fields": { + "id_car_serie": 46338, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173976, + "fields": { + "id_car_serie": 46338, + "name": "1.7 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173978, + "fields": { + "id_car_serie": 46338, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173979, + "fields": { + "id_car_serie": 46338, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173980, + "fields": { + "id_car_serie": 46338, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173981, + "fields": { + "id_car_serie": 46338, + "name": "1.9 dT MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173985, + "fields": { + "id_car_serie": 46325, + "name": "2.0 Si4 AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173988, + "fields": { + "id_car_serie": 46337, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173989, + "fields": { + "id_car_serie": 46344, + "name": "2.0 dCi MT L2H1 (9 places) (114 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173990, + "fields": { + "id_car_serie": 46344, + "name": "2.0 MT L1H1 (8 places) (116 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173994, + "fields": { + "id_car_serie": 46336, + "name": "3.6 AT (314 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173995, + "fields": { + "id_car_serie": 46336, + "name": "3.6 AT AWD (314 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 173996, + "fields": { + "id_car_serie": 46323, + "name": "2.3 AT (314 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173997, + "fields": { + "id_car_serie": 46323, + "name": "2.3 MT (314 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 173999, + "fields": { + "id_car_serie": 46339, + "name": "7.7 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1959, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174000, + "fields": { + "id_car_serie": 14664, + "name": "4.0 TFSI Tiptronic performance quattro (605 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174001, + "fields": { + "id_car_serie": 14689, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174002, + "fields": { + "id_car_serie": 14689, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174101, + "fields": { + "id_car_serie": 1219, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174102, + "fields": { + "id_car_serie": 1323, + "name": "LP 580-2 (580 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174103, + "fields": { + "id_car_serie": 1788, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174104, + "fields": { + "id_car_serie": 1847, + "name": "2.0 AT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174106, + "fields": { + "id_car_serie": 9510, + "name": "2.5 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174107, + "fields": { + "id_car_serie": 9510, + "name": "3.5 CVT (245 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174108, + "fields": { + "id_car_serie": 9510, + "name": "3.5 MT (231 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174109, + "fields": { + "id_car_serie": 9466, + "name": "2.5 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174110, + "fields": { + "id_car_serie": 9466, + "name": "2.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174117, + "fields": { + "id_car_serie": 9427, + "name": "2.9 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174118, + "fields": { + "id_car_serie": 9319, + "name": "3.0 TD 4Motion AT (233 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174119, + "fields": { + "id_car_serie": 9319, + "name": "3.0 TDI L 4Motion AT (233 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174121, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TFSI multitronic (230 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174122, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TFSI S tronic quattro (230 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174123, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TFSI MT (230 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174124, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TFSI MT quattro (230 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174125, + "fields": { + "id_car_serie": 2910, + "name": "2.0 TFSI S tronic quattro (230 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174126, + "fields": { + "id_car_serie": 2910, + "name": "2.0 TFSI multitronic (230 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174127, + "fields": { + "id_car_serie": 2910, + "name": "2.0 TFSI MT (230 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174128, + "fields": { + "id_car_serie": 2910, + "name": "2.0 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174134, + "fields": { + "id_car_serie": 3284, + "name": "1.6 TD MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174137, + "fields": { + "id_car_serie": 3290, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174140, + "fields": { + "id_car_serie": 3440, + "name": "1.3 CVT (91 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174153, + "fields": { + "id_car_serie": 4356, + "name": "1.8 TSI MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174155, + "fields": { + "id_car_serie": 4536, + "name": "1.6 D2 Turbo Geartronic (115 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174156, + "fields": { + "id_car_serie": 4536, + "name": "3.2 Geartronic (243 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174157, + "fields": { + "id_car_serie": 4536, + "name": "3.2 Geartronic AWD (243 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174158, + "fields": { + "id_car_serie": 4622, + "name": "2.7 TDI multitronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174161, + "fields": { + "id_car_serie": 8417, + "name": "1.8 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174186, + "fields": { + "id_car_serie": 6054, + "name": "1.9 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174187, + "fields": { + "id_car_serie": 6179, + "name": "1.9 TDi MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174188, + "fields": { + "id_car_serie": 6179, + "name": "1.9 TDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174189, + "fields": { + "id_car_serie": 6179, + "name": "2.3 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174190, + "fields": { + "id_car_serie": 6179, + "name": "2.3 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174205, + "fields": { + "id_car_serie": 6378, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174206, + "fields": { + "id_car_serie": 6378, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174207, + "fields": { + "id_car_serie": 6456, + "name": "1.6 AT (126 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174208, + "fields": { + "id_car_serie": 6456, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174209, + "fields": { + "id_car_serie": 6456, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174210, + "fields": { + "id_car_serie": 6456, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174211, + "fields": { + "id_car_serie": 6456, + "name": "2.0 CRDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174212, + "fields": { + "id_car_serie": 6477, + "name": "1.8 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174213, + "fields": { + "id_car_serie": 8861, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174218, + "fields": { + "id_car_serie": 7061, + "name": "1.3 AT (79 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174220, + "fields": { + "id_car_serie": 7061, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174223, + "fields": { + "id_car_serie": 7061, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174229, + "fields": { + "id_car_serie": 7061, + "name": "1.5 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174230, + "fields": { + "id_car_serie": 7061, + "name": "1.6 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174238, + "fields": { + "id_car_serie": 7224, + "name": "1.2 CVT (80 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174240, + "fields": { + "id_car_serie": 7493, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174244, + "fields": { + "id_car_serie": 7497, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174245, + "fields": { + "id_car_serie": 7497, + "name": "2.0 dCi AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174247, + "fields": { + "id_car_serie": 7501, + "name": "1.5 dCi MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174248, + "fields": { + "id_car_serie": 7501, + "name": "1.5 dCi MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174249, + "fields": { + "id_car_serie": 7501, + "name": "2.0 T MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174252, + "fields": { + "id_car_serie": 7983, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174253, + "fields": { + "id_car_serie": 7986, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174256, + "fields": { + "id_car_serie": 8048, + "name": "2.4 D5 Turbo Geartronic AWD (185 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174257, + "fields": { + "id_car_serie": 8048, + "name": "2.4 D5 Turbo MT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174260, + "fields": { + "id_car_serie": 8492, + "name": "0.8 AT (51 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174261, + "fields": { + "id_car_serie": 8617, + "name": "2.2 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174262, + "fields": { + "id_car_serie": 8617, + "name": "2.2 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174264, + "fields": { + "id_car_serie": 8871, + "name": "1.8 GDI AT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174267, + "fields": { + "id_car_serie": 8871, + "name": "2.4 GDI AT (144 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174268, + "fields": { + "id_car_serie": 8871, + "name": "2.4 GDI AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174271, + "fields": { + "id_car_serie": 8932, + "name": "2.0 T AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174272, + "fields": { + "id_car_serie": 8932, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174273, + "fields": { + "id_car_serie": 8932, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174277, + "fields": { + "id_car_serie": 14736, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174282, + "fields": { + "id_car_serie": 14854, + "name": "2.1 MT Syncro (112 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174283, + "fields": { + "id_car_serie": 14855, + "name": "1.5 Turbo MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174284, + "fields": { + "id_car_serie": 14855, + "name": "2.0 TD MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174290, + "fields": { + "id_car_serie": 15054, + "name": "1.5 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174291, + "fields": { + "id_car_serie": 15054, + "name": "1.8 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174299, + "fields": { + "id_car_serie": 15346, + "name": "1.3 AT 2WD (87 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174300, + "fields": { + "id_car_serie": 15346, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174301, + "fields": { + "id_car_serie": 15544, + "name": "2.5 MT (350 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174302, + "fields": { + "id_car_serie": 15708, + "name": "1.4 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174303, + "fields": { + "id_car_serie": 15708, + "name": "1.8 AT (117 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174304, + "fields": { + "id_car_serie": 14686, + "name": "3.7 MT (331 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174305, + "fields": { + "id_car_serie": 14661, + "name": "2.0 TFSI S tronic quattro (249 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174311, + "fields": { + "id_car_serie": 45582, + "name": "1.6 MPI AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174312, + "fields": { + "id_car_serie": 45582, + "name": "1.6 MPI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174313, + "fields": { + "id_car_serie": 45582, + "name": "1.6 MPI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174314, + "fields": { + "id_car_serie": 45563, + "name": "3.0 V6 AT (249 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174315, + "fields": { + "id_car_serie": 45445, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174316, + "fields": { + "id_car_serie": 45445, + "name": "2.0 CVT (152 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174317, + "fields": { + "id_car_serie": 45446, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174318, + "fields": { + "id_car_serie": 45446, + "name": "2.0 CVT (152 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174322, + "fields": { + "id_car_serie": 45471, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174323, + "fields": { + "id_car_serie": 45472, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174324, + "fields": { + "id_car_serie": 45472, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174326, + "fields": { + "id_car_serie": 44515, + "name": "3.8 T GR6 AWD (530 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174328, + "fields": { + "id_car_serie": 45685, + "name": "2.0 TFSI S tronic (249 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174329, + "fields": { + "id_car_serie": 45685, + "name": "2.0 TFSI S tronic quattro (249 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174330, + "fields": { + "id_car_serie": 45685, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174331, + "fields": { + "id_car_serie": 45685, + "name": "2.0 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174332, + "fields": { + "id_car_serie": 45697, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174333, + "fields": { + "id_car_serie": 45697, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174334, + "fields": { + "id_car_serie": 45697, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174335, + "fields": { + "id_car_serie": 45697, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174337, + "fields": { + "id_car_serie": 46416, + "name": "3.6 AT (296 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174338, + "fields": { + "id_car_serie": 46416, + "name": "5.7 Hemi AT (375 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174339, + "fields": { + "id_car_serie": 46416, + "name": "5.7 Hemi AT AWD (375 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174340, + "fields": { + "id_car_serie": 46416, + "name": "6.4 SRT8 AT (477 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174341, + "fields": { + "id_car_serie": 46417, + "name": "2.7 AT (186 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174342, + "fields": { + "id_car_serie": 46417, + "name": "3.5 AT (253 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174343, + "fields": { + "id_car_serie": 46417, + "name": "3.5 AT AWD (253 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174344, + "fields": { + "id_car_serie": 46417, + "name": "5.7 AT (344 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174345, + "fields": { + "id_car_serie": 46417, + "name": "5.7 AT AWD (344 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174346, + "fields": { + "id_car_serie": 46417, + "name": "6.1 AT (425 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174363, + "fields": { + "id_car_serie": 46422, + "name": "2.4 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174364, + "fields": { + "id_car_serie": 46422, + "name": "2.4 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174365, + "fields": { + "id_car_serie": 46422, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174366, + "fields": { + "id_car_serie": 46422, + "name": "3.0 MT (203 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174375, + "fields": { + "id_car_serie": 46435, + "name": "2.5 TD MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174376, + "fields": { + "id_car_serie": 46435, + "name": "2.5 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174378, + "fields": { + "id_car_serie": 46435, + "name": "3.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174379, + "fields": { + "id_car_serie": 46435, + "name": "3.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174380, + "fields": { + "id_car_serie": 46435, + "name": "3.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174381, + "fields": { + "id_car_serie": 46435, + "name": "3.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174382, + "fields": { + "id_car_serie": 46431, + "name": "3.0 AT (367 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174383, + "fields": { + "id_car_serie": 46431, + "name": "4.7 AT (455 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174395, + "fields": { + "id_car_serie": 46426, + "name": "0.9 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174396, + "fields": { + "id_car_serie": 46426, + "name": "1.0 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174397, + "fields": { + "id_car_serie": 46426, + "name": "1.0 MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174398, + "fields": { + "id_car_serie": 46426, + "name": "1.1 MT (51 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174399, + "fields": { + "id_car_serie": 46426, + "name": "1.1 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174400, + "fields": { + "id_car_serie": 46426, + "name": "1.3 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174401, + "fields": { + "id_car_serie": 46426, + "name": "1.3 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174402, + "fields": { + "id_car_serie": 46426, + "name": "1.4 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174403, + "fields": { + "id_car_serie": 46426, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174404, + "fields": { + "id_car_serie": 46426, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174405, + "fields": { + "id_car_serie": 46426, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174406, + "fields": { + "id_car_serie": 46426, + "name": "1.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174407, + "fields": { + "id_car_serie": 46426, + "name": "1.9 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174408, + "fields": { + "id_car_serie": 46424, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174409, + "fields": { + "id_car_serie": 46424, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174410, + "fields": { + "id_car_serie": 46424, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174411, + "fields": { + "id_car_serie": 46424, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174413, + "fields": { + "id_car_serie": 46433, + "name": "1.2 CVT (74 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174414, + "fields": { + "id_car_serie": 46433, + "name": "1.2 CVT (78 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174415, + "fields": { + "id_car_serie": 46433, + "name": "1.2 MT (74 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174416, + "fields": { + "id_car_serie": 46433, + "name": "1.2 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174427, + "fields": { + "id_car_serie": 46421, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174428, + "fields": { + "id_car_serie": 46421, + "name": "2.4 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174429, + "fields": { + "id_car_serie": 46421, + "name": "2.7 AT (203 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174436, + "fields": { + "id_car_serie": 46432, + "name": "1.2 CVT (78 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174437, + "fields": { + "id_car_serie": 46432, + "name": "1.2 MT (78 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174438, + "fields": { + "id_car_serie": 46425, + "name": "0.9 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174439, + "fields": { + "id_car_serie": 46425, + "name": "1.0 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174440, + "fields": { + "id_car_serie": 46425, + "name": "1.0 MT (46 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174441, + "fields": { + "id_car_serie": 46425, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174442, + "fields": { + "id_car_serie": 46425, + "name": "1.1 MT (51 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174443, + "fields": { + "id_car_serie": 46425, + "name": "1.1 MT (57 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174444, + "fields": { + "id_car_serie": 46425, + "name": "1.3 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174445, + "fields": { + "id_car_serie": 46425, + "name": "1.3 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174446, + "fields": { + "id_car_serie": 46425, + "name": "1.4 MT (114 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174447, + "fields": { + "id_car_serie": 46425, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174448, + "fields": { + "id_car_serie": 46425, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174449, + "fields": { + "id_car_serie": 46425, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174450, + "fields": { + "id_car_serie": 46425, + "name": "1.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174451, + "fields": { + "id_car_serie": 46425, + "name": "1.9 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174460, + "fields": { + "id_car_serie": 46415, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174462, + "fields": { + "id_car_serie": 46415, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174463, + "fields": { + "id_car_serie": 46415, + "name": "0.7 MT (52 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174465, + "fields": { + "id_car_serie": 46415, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174476, + "fields": { + "id_car_serie": 46440, + "name": "5.5 AT (585 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174477, + "fields": { + "id_car_serie": 46440, + "name": "6.0 AT (630 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174480, + "fields": { + "id_car_serie": 46427, + "name": "2.0 EcoBoost AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174481, + "fields": { + "id_car_serie": 46427, + "name": "2.0 EcoBoost AT (249 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174482, + "fields": { + "id_car_serie": 46427, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174483, + "fields": { + "id_car_serie": 46447, + "name": "4.0 AMT (900 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174486, + "fields": { + "id_car_serie": 46434, + "name": "2.5 DI-D AT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174487, + "fields": { + "id_car_serie": 46434, + "name": "2.5 DI-D MT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174488, + "fields": { + "id_car_serie": 46434, + "name": "3.0 AT AWD (222 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174495, + "fields": { + "id_car_serie": 46445, + "name": "3.8 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174496, + "fields": { + "id_car_serie": 46444, + "name": "2.0 DCT AWD (211 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174497, + "fields": { + "id_car_serie": 46444, + "name": "2.1 D DCT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174499, + "fields": { + "id_car_serie": 46443, + "name": "5.8 AT (275 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1976 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174500, + "fields": { + "id_car_serie": 46441, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174501, + "fields": { + "id_car_serie": 46441, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174513, + "fields": { + "id_car_serie": 1074, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174514, + "fields": { + "id_car_serie": 1074, + "name": "2.0 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174524, + "fields": { + "id_car_serie": 9586, + "name": "4.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174525, + "fields": { + "id_car_serie": 9582, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174527, + "fields": { + "id_car_serie": 9568, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174528, + "fields": { + "id_car_serie": 9528, + "name": "2.5 T MT (280 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174529, + "fields": { + "id_car_serie": 9524, + "name": "1.8 AT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174531, + "fields": { + "id_car_serie": 9524, + "name": "1.8 MT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174535, + "fields": { + "id_car_serie": 2351, + "name": "0.7 CVT AWD (46 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174536, + "fields": { + "id_car_serie": 2351, + "name": "0.7 CVT (46 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174537, + "fields": { + "id_car_serie": 9374, + "name": "1.6 MT 8 valves (87 hp) 5MT", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174538, + "fields": { + "id_car_serie": 9374, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174539, + "fields": { + "id_car_serie": 9374, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174540, + "fields": { + "id_car_serie": 2472, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174544, + "fields": { + "id_car_serie": 9193, + "name": "3.0 Twin-Turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174547, + "fields": { + "id_car_serie": 9155, + "name": "1.3 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174549, + "fields": { + "id_car_serie": 9154, + "name": "1.3 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174553, + "fields": { + "id_car_serie": 3268, + "name": "1.4 MT (81 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174555, + "fields": { + "id_car_serie": 3892, + "name": "1.3d MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174559, + "fields": { + "id_car_serie": 3900, + "name": "2.0 SIDI Turbo Ecotec AT (250 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174560, + "fields": { + "id_car_serie": 3900, + "name": "2.0 SIDI Turbo Ecotec MT (250 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174566, + "fields": { + "id_car_serie": 3486, + "name": "2.7 MT (172 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174570, + "fields": { + "id_car_serie": 4178, + "name": "2.3 TD MT AWD (101 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174571, + "fields": { + "id_car_serie": 4178, + "name": "2.3 D MT AWD (80 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174572, + "fields": { + "id_car_serie": 4178, + "name": "2.3 D MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174573, + "fields": { + "id_car_serie": 4178, + "name": "2.9 TD MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174574, + "fields": { + "id_car_serie": 4178, + "name": "2.9 TD MT AWD (120 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174575, + "fields": { + "id_car_serie": 4178, + "name": "2.9 D MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174576, + "fields": { + "id_car_serie": 4178, + "name": "3.2 AT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174577, + "fields": { + "id_car_serie": 4178, + "name": "3.2 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174580, + "fields": { + "id_car_serie": 3730, + "name": "2.3 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174581, + "fields": { + "id_car_serie": 3730, + "name": "2.3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1985 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174583, + "fields": { + "id_car_serie": 4214, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174584, + "fields": { + "id_car_serie": 4214, + "name": "1.4 DDiS AT (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174585, + "fields": { + "id_car_serie": 4214, + "name": "1.4 DDiS MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174586, + "fields": { + "id_car_serie": 4214, + "name": "1.5 AT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174587, + "fields": { + "id_car_serie": 4214, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174588, + "fields": { + "id_car_serie": 4214, + "name": "1.5 MT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174589, + "fields": { + "id_car_serie": 4214, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174590, + "fields": { + "id_car_serie": 3883, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174591, + "fields": { + "id_car_serie": 3883, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174592, + "fields": { + "id_car_serie": 3883, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174593, + "fields": { + "id_car_serie": 3883, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174594, + "fields": { + "id_car_serie": 3883, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174595, + "fields": { + "id_car_serie": 3883, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174625, + "fields": { + "id_car_serie": 3941, + "name": "1.9 MT GTI (102 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174628, + "fields": { + "id_car_serie": 3942, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174629, + "fields": { + "id_car_serie": 3942, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174630, + "fields": { + "id_car_serie": 3942, + "name": "1.6 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174631, + "fields": { + "id_car_serie": 3942, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174633, + "fields": { + "id_car_serie": 3983, + "name": "2.7 MT (144 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174634, + "fields": { + "id_car_serie": 3985, + "name": "2.1 MT (59 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1989 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174635, + "fields": { + "id_car_serie": 3985, + "name": "2.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174640, + "fields": { + "id_car_serie": 4113, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174643, + "fields": { + "id_car_serie": 4539, + "name": "2.0 T6 Geartronic (306 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174644, + "fields": { + "id_car_serie": 4539, + "name": "2.0 D4 Geartronic (181 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174646, + "fields": { + "id_car_serie": 4539, + "name": "2.0 D4 MT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174647, + "fields": { + "id_car_serie": 4539, + "name": "2.0 D4 MT (181 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174648, + "fields": { + "id_car_serie": 4539, + "name": "2.0 D4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174649, + "fields": { + "id_car_serie": 4539, + "name": "2.4 D4 MT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174650, + "fields": { + "id_car_serie": 4539, + "name": "2.4 D5 MT AWD (220 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174651, + "fields": { + "id_car_serie": 4539, + "name": "2.5 T5 Geartronic AWD (254 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174655, + "fields": { + "id_car_serie": 4165, + "name": "1.2 TSI MT Green tec (105 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174656, + "fields": { + "id_car_serie": 4165, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174657, + "fields": { + "id_car_serie": 4177, + "name": "3.2 AT FR (225 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174658, + "fields": { + "id_car_serie": 4177, + "name": "3.6 AT FR (250 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174660, + "fields": { + "id_car_serie": 4180, + "name": "2.0 Xdi E-Tronic 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174671, + "fields": { + "id_car_serie": 4410, + "name": "1.3 Turbo AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174672, + "fields": { + "id_car_serie": 4410, + "name": "1.3 Turbo MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174676, + "fields": { + "id_car_serie": 4416, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174677, + "fields": { + "id_car_serie": 4416, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174678, + "fields": { + "id_car_serie": 4416, + "name": "1.5 AT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174679, + "fields": { + "id_car_serie": 4416, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174680, + "fields": { + "id_car_serie": 4416, + "name": "1.5 MT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174681, + "fields": { + "id_car_serie": 4416, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174682, + "fields": { + "id_car_serie": 4416, + "name": "1.5 TD AT (67 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174693, + "fields": { + "id_car_serie": 4577, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174698, + "fields": { + "id_car_serie": 8845, + "name": "4.6 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174700, + "fields": { + "id_car_serie": 5378, + "name": "2.5 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174705, + "fields": { + "id_car_serie": 9111, + "name": "2.3 AT RX 230 (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174706, + "fields": { + "id_car_serie": 9111, + "name": "2.3 MT RX 230 (140 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174707, + "fields": { + "id_car_serie": 9111, + "name": "2.9 AT AWD RX 290 TD (120 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174708, + "fields": { + "id_car_serie": 9111, + "name": "2.9 MT AWD RX 290 TD (120 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174713, + "fields": { + "id_car_serie": 6038, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174716, + "fields": { + "id_car_serie": 9102, + "name": "1.4 TSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174723, + "fields": { + "id_car_serie": 9080, + "name": "2.2 AT AWD (145 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174724, + "fields": { + "id_car_serie": 6494, + "name": "3.5 MT (280 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174726, + "fields": { + "id_car_serie": 9122, + "name": "1.2 MT AWD (69 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174727, + "fields": { + "id_car_serie": 6737, + "name": "1.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174728, + "fields": { + "id_car_serie": 9041, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174732, + "fields": { + "id_car_serie": 6847, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174737, + "fields": { + "id_car_serie": 7233, + "name": "2.5 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174738, + "fields": { + "id_car_serie": 7233, + "name": "3.5 Xtronic FWD (231 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174740, + "fields": { + "id_car_serie": 7246, + "name": "4.0 AT (269 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174747, + "fields": { + "id_car_serie": 7284, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174756, + "fields": { + "id_car_serie": 7428, + "name": "4.8 MT GTS (405 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174760, + "fields": { + "id_car_serie": 7486, + "name": "1.5 MT (61 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174761, + "fields": { + "id_car_serie": 7486, + "name": "1.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174762, + "fields": { + "id_car_serie": 7486, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174784, + "fields": { + "id_car_serie": 7613, + "name": "1.8 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174787, + "fields": { + "id_car_serie": 7654, + "name": "2.5 AT AWD (173 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174788, + "fields": { + "id_car_serie": 7654, + "name": "2.5 MT AWD (173 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174790, + "fields": { + "id_car_serie": 7748, + "name": "4.7 AT (273 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174791, + "fields": { + "id_car_serie": 7749, + "name": "2.7 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174792, + "fields": { + "id_car_serie": 7749, + "name": "2.7 MT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174793, + "fields": { + "id_car_serie": 7752, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174794, + "fields": { + "id_car_serie": 7752, + "name": "1.8 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174795, + "fields": { + "id_car_serie": 7752, + "name": "1.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174798, + "fields": { + "id_car_serie": 7792, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174800, + "fields": { + "id_car_serie": 7794, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174803, + "fields": { + "id_car_serie": 7794, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174804, + "fields": { + "id_car_serie": 7794, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174806, + "fields": { + "id_car_serie": 7805, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174811, + "fields": { + "id_car_serie": 7907, + "name": "4.2 TD MT J81V (165 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174819, + "fields": { + "id_car_serie": 7978, + "name": "1.6 FSI Tiptronic (115 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174821, + "fields": { + "id_car_serie": 8981, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174823, + "fields": { + "id_car_serie": 8939, + "name": "0.7 Turbo AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174825, + "fields": { + "id_car_serie": 14641, + "name": "0.9 AMT (90 hp) robot", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174831, + "fields": { + "id_car_serie": 14824, + "name": "1.9 TD MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174834, + "fields": { + "id_car_serie": 14842, + "name": "2.0 D4 Drive-E AT AWD (5 places) (190 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174841, + "fields": { + "id_car_serie": 14934, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174842, + "fields": { + "id_car_serie": 14934, + "name": "2.4 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174845, + "fields": { + "id_car_serie": 15011, + "name": "3.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174846, + "fields": { + "id_car_serie": 15011, + "name": "3.0 MT (215 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174852, + "fields": { + "id_car_serie": 15088, + "name": "1.9 DCi AT (130 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174853, + "fields": { + "id_car_serie": 15088, + "name": "1.9 DCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174854, + "fields": { + "id_car_serie": 15096, + "name": "1.5 dCi MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174855, + "fields": { + "id_car_serie": 15096, + "name": "1.5 dCi MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174856, + "fields": { + "id_car_serie": 15096, + "name": "1.9 dCi MT (109 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174862, + "fields": { + "id_car_serie": 15155, + "name": "2.0 T6 Geartronic (306 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174874, + "fields": { + "id_car_serie": 15161, + "name": "2.4 D5 Geartronic AWD (220 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174875, + "fields": { + "id_car_serie": 15161, + "name": "2.4 D4 MT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174876, + "fields": { + "id_car_serie": 15161, + "name": "2.4 D4 MT AWD (181 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174877, + "fields": { + "id_car_serie": 15161, + "name": "2.5 T5 Geartronic AWD (254 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174878, + "fields": { + "id_car_serie": 15327, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174879, + "fields": { + "id_car_serie": 15341, + "name": "1.8 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174880, + "fields": { + "id_car_serie": 15341, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174881, + "fields": { + "id_car_serie": 15341, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174882, + "fields": { + "id_car_serie": 15341, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174883, + "fields": { + "id_car_serie": 15348, + "name": "2.0 AT 4WD G (135 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174884, + "fields": { + "id_car_serie": 15348, + "name": "2.0 MT 4WD G (135 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174896, + "fields": { + "id_car_serie": 15417, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174906, + "fields": { + "id_car_serie": 15679, + "name": "2.0 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174907, + "fields": { + "id_car_serie": 15679, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174908, + "fields": { + "id_car_serie": 15702, + "name": "2.0 MT (173 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174909, + "fields": { + "id_car_serie": 15703, + "name": "2.0 MT (173 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174910, + "fields": { + "id_car_serie": 14662, + "name": "2.0 TFSI S tronic quattro (249 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174911, + "fields": { + "id_car_serie": 45467, + "name": "1.6 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174912, + "fields": { + "id_car_serie": 45467, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174913, + "fields": { + "id_car_serie": 45466, + "name": "1.6 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174914, + "fields": { + "id_car_serie": 45466, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174915, + "fields": { + "id_car_serie": 45465, + "name": "1.6 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174916, + "fields": { + "id_car_serie": 45465, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174917, + "fields": { + "id_car_serie": 45222, + "name": "2.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174918, + "fields": { + "id_car_serie": 45222, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174937, + "fields": { + "id_car_serie": 46026, + "name": "3.8 PDK (540 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174938, + "fields": { + "id_car_serie": 46026, + "name": "S 3.8 PDK (580 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174964, + "fields": { + "id_car_serie": 46479, + "name": "3.6 AT AWD (281 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174965, + "fields": { + "id_car_serie": 46479, + "name": "3.6 AT (281 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174966, + "fields": { + "id_car_serie": 46479, + "name": "3.6 AT AWD (288 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174967, + "fields": { + "id_car_serie": 46479, + "name": "3.6 AT (288 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174972, + "fields": { + "id_car_serie": 46452, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174973, + "fields": { + "id_car_serie": 46452, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174978, + "fields": { + "id_car_serie": 46489, + "name": "1.9 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174979, + "fields": { + "id_car_serie": 46489, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174980, + "fields": { + "id_car_serie": 46489, + "name": "2.2 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174981, + "fields": { + "id_car_serie": 46489, + "name": "2.2 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 174990, + "fields": { + "id_car_serie": 46461, + "name": "2.0 AT LWB (240 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174991, + "fields": { + "id_car_serie": 46461, + "name": "3.0 AT AWD LWB (340 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174993, + "fields": { + "id_car_serie": 46461, + "name": "2.0 AT SWB (240 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174994, + "fields": { + "id_car_serie": 46461, + "name": "3.0 AT AWD SWB (340 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174995, + "fields": { + "id_car_serie": 46461, + "name": "3.0 D AT LWB (300 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 174997, + "fields": { + "id_car_serie": 46464, + "name": "4.1 AT (270 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175018, + "fields": { + "id_car_serie": 46478, + "name": "1.6 T4 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175019, + "fields": { + "id_car_serie": 46478, + "name": "1.6 T4F MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175020, + "fields": { + "id_car_serie": 46478, + "name": "1.6 D2 Geartronic (115 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175021, + "fields": { + "id_car_serie": 46478, + "name": "1.6 D2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175023, + "fields": { + "id_car_serie": 46478, + "name": "2.0 T5 Geartronic (245 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175026, + "fields": { + "id_car_serie": 46478, + "name": "2.0 D3 Geartronic (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175028, + "fields": { + "id_car_serie": 46478, + "name": "2.0 D4 Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175029, + "fields": { + "id_car_serie": 46478, + "name": "2.0 D4 Geartronic (181 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175032, + "fields": { + "id_car_serie": 46478, + "name": "2.0 D3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175034, + "fields": { + "id_car_serie": 46478, + "name": "2.0 D4 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175035, + "fields": { + "id_car_serie": 46478, + "name": "2.0 D4 MT (181 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175036, + "fields": { + "id_car_serie": 46478, + "name": "2.4 D4 Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175037, + "fields": { + "id_car_serie": 46478, + "name": "2.4 D4 Geartronic AWD (181 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175038, + "fields": { + "id_car_serie": 46478, + "name": "2.4 D5 Geartronic AWD (215 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175039, + "fields": { + "id_car_serie": 46478, + "name": "2.4 D5 Geartronic (215 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175040, + "fields": { + "id_car_serie": 46478, + "name": "2.4 D5 MT (215 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175041, + "fields": { + "id_car_serie": 46478, + "name": "3.0 T6 Geartronic AWD (304 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175042, + "fields": { + "id_car_serie": 46475, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175043, + "fields": { + "id_car_serie": 46475, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175044, + "fields": { + "id_car_serie": 46475, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175060, + "fields": { + "id_car_serie": 46471, + "name": "1.2 TSI MT (86 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175061, + "fields": { + "id_car_serie": 46471, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175062, + "fields": { + "id_car_serie": 46471, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175063, + "fields": { + "id_car_serie": 46471, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175073, + "fields": { + "id_car_serie": 46471, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175074, + "fields": { + "id_car_serie": 46469, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175075, + "fields": { + "id_car_serie": 46469, + "name": "1.9 TD AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175076, + "fields": { + "id_car_serie": 46469, + "name": "1.9 TTD AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175077, + "fields": { + "id_car_serie": 46469, + "name": "1.9 TD MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175079, + "fields": { + "id_car_serie": 46469, + "name": "1.9 TTD MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175080, + "fields": { + "id_car_serie": 46469, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175081, + "fields": { + "id_car_serie": 46469, + "name": "2.0 AT BioPower AWD (220 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175082, + "fields": { + "id_car_serie": 46469, + "name": "2.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175083, + "fields": { + "id_car_serie": 46469, + "name": "2.0 AT BioPower (220 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175084, + "fields": { + "id_car_serie": 46469, + "name": "2.0 turbo AT (210 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175085, + "fields": { + "id_car_serie": 46469, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175086, + "fields": { + "id_car_serie": 46469, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175087, + "fields": { + "id_car_serie": 46469, + "name": "2.0 MT BioPower (163 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175088, + "fields": { + "id_car_serie": 46469, + "name": "2.8 turbo AT (255 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175089, + "fields": { + "id_car_serie": 46469, + "name": "2.8 turbo MT (280 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175090, + "fields": { + "id_car_serie": 46470, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175091, + "fields": { + "id_car_serie": 46470, + "name": "2.0 AT BioPower (163 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175092, + "fields": { + "id_car_serie": 46470, + "name": "1.9 TTD AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175093, + "fields": { + "id_car_serie": 46470, + "name": "1.9 TD AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175094, + "fields": { + "id_car_serie": 46470, + "name": "1.9 TD MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175095, + "fields": { + "id_car_serie": 46470, + "name": "2.0 MT BioPower AWD (163 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175096, + "fields": { + "id_car_serie": 46470, + "name": "1.9 TTD MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175098, + "fields": { + "id_car_serie": 46470, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175099, + "fields": { + "id_car_serie": 46470, + "name": "2.0 AT BioPower (220 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175100, + "fields": { + "id_car_serie": 46470, + "name": "2.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175101, + "fields": { + "id_car_serie": 46470, + "name": "2.0 turbo AT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175102, + "fields": { + "id_car_serie": 46470, + "name": "2.0 turbo AT (210 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175103, + "fields": { + "id_car_serie": 46470, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175104, + "fields": { + "id_car_serie": 46470, + "name": "2.0 MT BioPower (163 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175105, + "fields": { + "id_car_serie": 46470, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175106, + "fields": { + "id_car_serie": 46470, + "name": "2.0 MT BioPower (220 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175107, + "fields": { + "id_car_serie": 46470, + "name": "2.0 turbo MT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175108, + "fields": { + "id_car_serie": 46470, + "name": "2.0 turbo MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175109, + "fields": { + "id_car_serie": 46470, + "name": "2.8 turbo AT (255 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175110, + "fields": { + "id_car_serie": 46470, + "name": "2.8 turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175111, + "fields": { + "id_car_serie": 46470, + "name": "2.8 turbo AT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175112, + "fields": { + "id_car_serie": 46470, + "name": "2.8 turbo MT (255 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175113, + "fields": { + "id_car_serie": 46470, + "name": "2.8 turbo MT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175114, + "fields": { + "id_car_serie": 46470, + "name": "2.8 turbo MT (280 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175119, + "fields": { + "id_car_serie": 46484, + "name": "6.3 AMT (860 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175120, + "fields": { + "id_car_serie": 46485, + "name": "3.8 AMT (675 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175121, + "fields": { + "id_car_serie": 46462, + "name": "4.9 AT (129 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175125, + "fields": { + "id_car_serie": 46449, + "name": "2.9 MT (510 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175128, + "fields": { + "id_car_serie": 46483, + "name": "5.0 AT (550 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175129, + "fields": { + "id_car_serie": 46496, + "name": "2.7 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175130, + "fields": { + "id_car_serie": 46496, + "name": "2.7 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175142, + "fields": { + "id_car_serie": 46490, + "name": "1.9 MT (83 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175143, + "fields": { + "id_car_serie": 46490, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175144, + "fields": { + "id_car_serie": 46490, + "name": "2.2 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175145, + "fields": { + "id_car_serie": 46490, + "name": "2.2 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175160, + "fields": { + "id_car_serie": 46486, + "name": "3.8 AMT (675 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175164, + "fields": { + "id_car_serie": 9567, + "name": "2.0 AT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175165, + "fields": { + "id_car_serie": 9567, + "name": "2.0 AT FWD (156 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175166, + "fields": { + "id_car_serie": 9567, + "name": "2.0 CVT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175167, + "fields": { + "id_car_serie": 9567, + "name": "2.0 CVT FWD (156 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175168, + "fields": { + "id_car_serie": 2303, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175171, + "fields": { + "id_car_serie": 46481, + "name": "2.0 CVT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175172, + "fields": { + "id_car_serie": 46481, + "name": "2.0 CVT FWD (143 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175173, + "fields": { + "id_car_serie": 46481, + "name": "2.0 CVT FWD (158 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175174, + "fields": { + "id_car_serie": 46481, + "name": "2.0 CVT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175177, + "fields": { + "id_car_serie": 46468, + "name": "1.9 TTD AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175180, + "fields": { + "id_car_serie": 46468, + "name": "1.9 TTD MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175185, + "fields": { + "id_car_serie": 46468, + "name": "2.0 AT AWD BioPower (220 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175186, + "fields": { + "id_car_serie": 46468, + "name": "2.0 AT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175189, + "fields": { + "id_car_serie": 46468, + "name": "2.0 MT AWD BioPower (163 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175192, + "fields": { + "id_car_serie": 46468, + "name": "2.0 MT AWD BioPower (220 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175193, + "fields": { + "id_car_serie": 46468, + "name": "2.0 MT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175202, + "fields": { + "id_car_serie": 46476, + "name": "2.0 T6 Drive-E Geartronic AWD (320 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175203, + "fields": { + "id_car_serie": 46476, + "name": "2.0 T5 Drive-E Geartronic (249 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175204, + "fields": { + "id_car_serie": 46476, + "name": "2.0 T4 Drive-E Geartronic (190 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175205, + "fields": { + "id_car_serie": 46476, + "name": "2.0 D5 Drive-E Geartronic AWD (235 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175261, + "fields": { + "id_car_serie": 9643, + "name": "1.3 MMT (87 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175262, + "fields": { + "id_car_serie": 2021, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175263, + "fields": { + "id_car_serie": 9642, + "name": "1.3 MMT (87 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175264, + "fields": { + "id_car_serie": 9640, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175268, + "fields": { + "id_car_serie": 9452, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175272, + "fields": { + "id_car_serie": 3009, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175273, + "fields": { + "id_car_serie": 3022, + "name": "3.0 V6 SIDI (271 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175278, + "fields": { + "id_car_serie": 3624, + "name": "4.6 AT (208 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175279, + "fields": { + "id_car_serie": 3624, + "name": "4.6 AT (223 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175282, + "fields": { + "id_car_serie": 4121, + "name": "2.3 Turbo AT (225 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175283, + "fields": { + "id_car_serie": 4254, + "name": "1.6 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175284, + "fields": { + "id_car_serie": 4254, + "name": "1.6 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175287, + "fields": { + "id_car_serie": 4538, + "name": "2.4 D Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175288, + "fields": { + "id_car_serie": 4557, + "name": "2108-91 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175291, + "fields": { + "id_car_serie": 4636, + "name": "1.6 AT (127 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175295, + "fields": { + "id_car_serie": 5479, + "name": "3.0 TDI S tronic quattro (240 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175298, + "fields": { + "id_car_serie": 9131, + "name": "1.8 MT 4WD (108 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1993 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175304, + "fields": { + "id_car_serie": 6274, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175306, + "fields": { + "id_car_serie": 8821, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175310, + "fields": { + "id_car_serie": 6878, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175331, + "fields": { + "id_car_serie": 8788, + "name": "0.7 AT (55 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175332, + "fields": { + "id_car_serie": 8788, + "name": "0.7 CVT (46 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175335, + "fields": { + "id_car_serie": 8695, + "name": "2.4 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175336, + "fields": { + "id_car_serie": 8683, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175361, + "fields": { + "id_car_serie": 14945, + "name": "2.2 i-DTEC AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175362, + "fields": { + "id_car_serie": 14945, + "name": "2.2 i-DTEC MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175367, + "fields": { + "id_car_serie": 15159, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175373, + "fields": { + "id_car_serie": 15494, + "name": "5.5 AT (557 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175374, + "fields": { + "id_car_serie": 15575, + "name": "3.0 Competition Package DCT (450 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175375, + "fields": { + "id_car_serie": 15575, + "name": "3.0 Competition Package MT (450 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175383, + "fields": { + "id_car_serie": 45409, + "name": "1.6 MT (186 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175384, + "fields": { + "id_car_serie": 45409, + "name": "1.6 CRDi DCT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175385, + "fields": { + "id_car_serie": 45409, + "name": "1.6 CRDi DCT (136 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175386, + "fields": { + "id_car_serie": 45409, + "name": "1.6 CRDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175387, + "fields": { + "id_car_serie": 45409, + "name": "1.6 CRDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175391, + "fields": { + "id_car_serie": 45410, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175394, + "fields": { + "id_car_serie": 45410, + "name": "1.6 CRDi DCT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175395, + "fields": { + "id_car_serie": 45410, + "name": "1.6 CRDi DCT (136 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175396, + "fields": { + "id_car_serie": 45410, + "name": "1.6 CRDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175397, + "fields": { + "id_car_serie": 45410, + "name": "1.6 CRDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175400, + "fields": { + "id_car_serie": 46048, + "name": "63 AMG 5.5 AT (585 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175401, + "fields": { + "id_car_serie": 46045, + "name": "2.0 TDI DSG L1 (140 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175402, + "fields": { + "id_car_serie": 46045, + "name": "2.0 BiTDI DSG L2 (180 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175403, + "fields": { + "id_car_serie": 46045, + "name": "2.0 BiTDI DSG L1 (180 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175404, + "fields": { + "id_car_serie": 46045, + "name": "2.0 TDI MT L2 (140 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175405, + "fields": { + "id_car_serie": 46045, + "name": "2.0 TDI MT L1 (140 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175406, + "fields": { + "id_car_serie": 46033, + "name": "2.0 TSI 4Motion MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175407, + "fields": { + "id_car_serie": 46033, + "name": "2.0 TDI BlueMotion DSG (150 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175408, + "fields": { + "id_car_serie": 46033, + "name": "2.0 TDI 4Motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175412, + "fields": { + "id_car_serie": 46554, + "name": "3.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175417, + "fields": { + "id_car_serie": 46605, + "name": "1.6 AT (156 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175418, + "fields": { + "id_car_serie": 46605, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175419, + "fields": { + "id_car_serie": 46605, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175420, + "fields": { + "id_car_serie": 46605, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175421, + "fields": { + "id_car_serie": 46605, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175422, + "fields": { + "id_car_serie": 46605, + "name": "2.1 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175427, + "fields": { + "id_car_serie": 46620, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175428, + "fields": { + "id_car_serie": 46621, + "name": "1.2 MT (35 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175429, + "fields": { + "id_car_serie": 46621, + "name": "1.4 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175430, + "fields": { + "id_car_serie": 46541, + "name": "3.0 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175431, + "fields": { + "id_car_serie": 46541, + "name": "3.0 AT (249 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175433, + "fields": { + "id_car_serie": 46541, + "name": "3.0 AT AWD (271 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175434, + "fields": { + "id_car_serie": 46541, + "name": "3.6 AT AWD (318 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175437, + "fields": { + "id_car_serie": 46553, + "name": "1.8 AT (131 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175438, + "fields": { + "id_car_serie": 46553, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175439, + "fields": { + "id_car_serie": 46553, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175440, + "fields": { + "id_car_serie": 46553, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": 1996 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175443, + "fields": { + "id_car_serie": 46551, + "name": "3.0 V6 AT AWD (405 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175445, + "fields": { + "id_car_serie": 46580, + "name": "4.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1927, + "end_production_year": 1929 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175450, + "fields": { + "id_car_serie": 46560, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1978 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175456, + "fields": { + "id_car_serie": 46548, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175457, + "fields": { + "id_car_serie": 46548, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175459, + "fields": { + "id_car_serie": 46548, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175461, + "fields": { + "id_car_serie": 46552, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175462, + "fields": { + "id_car_serie": 46552, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175463, + "fields": { + "id_car_serie": 46552, + "name": "2.5 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175464, + "fields": { + "id_car_serie": 46552, + "name": "2.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175465, + "fields": { + "id_car_serie": 46552, + "name": "2.5 D AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175466, + "fields": { + "id_car_serie": 46552, + "name": "2.5 D AT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175467, + "fields": { + "id_car_serie": 46552, + "name": "2.5 D MT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175468, + "fields": { + "id_car_serie": 46552, + "name": "2.5 D MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175469, + "fields": { + "id_car_serie": 46557, + "name": "2.0 AT (80 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175470, + "fields": { + "id_car_serie": 46557, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175471, + "fields": { + "id_car_serie": 46557, + "name": "2.0 D AT (60 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175472, + "fields": { + "id_car_serie": 46557, + "name": "2.0 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175475, + "fields": { + "id_car_serie": 46558, + "name": "2.0 4MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175480, + "fields": { + "id_car_serie": 46549, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175482, + "fields": { + "id_car_serie": 46549, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175484, + "fields": { + "id_car_serie": 46549, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175491, + "fields": { + "id_car_serie": 46597, + "name": "3.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1956, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175498, + "fields": { + "id_car_serie": 46562, + "name": "3.0 BITURBO SWITCH-TRONIC (350 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175499, + "fields": { + "id_car_serie": 46563, + "name": "3.0 BITURBO SWITCH-TRONIC AWD (350 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175500, + "fields": { + "id_car_serie": 46563, + "name": "3.0 BITURBO SWITCH-TRONIC (350 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175505, + "fields": { + "id_car_serie": 46546, + "name": "2.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175507, + "fields": { + "id_car_serie": 46559, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175509, + "fields": { + "id_car_serie": 46559, + "name": "2.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175510, + "fields": { + "id_car_serie": 46559, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175517, + "fields": { + "id_car_serie": 46559, + "name": "2.8 D AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175520, + "fields": { + "id_car_serie": 46582, + "name": "4.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1952, + "end_production_year": 1955 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175521, + "fields": { + "id_car_serie": 46582, + "name": "4.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1952, + "end_production_year": 1955 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175522, + "fields": { + "id_car_serie": 46583, + "name": "4.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1952, + "end_production_year": 1955 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175523, + "fields": { + "id_car_serie": 46583, + "name": "4.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1952, + "end_production_year": 1955 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175524, + "fields": { + "id_car_serie": 46584, + "name": "4.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": 1952, + "end_production_year": 1955 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175525, + "fields": { + "id_car_serie": 46584, + "name": "4.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1952, + "end_production_year": 1955 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175526, + "fields": { + "id_car_serie": 46576, + "name": "4.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1946, + "end_production_year": 1952 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175529, + "fields": { + "id_car_serie": 46585, + "name": "6.2 AT (260 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175530, + "fields": { + "id_car_serie": 46585, + "name": "6.8 AT (295 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175531, + "fields": { + "id_car_serie": 46571, + "name": "500 AT (477 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175532, + "fields": { + "id_car_serie": 46574, + "name": "3.0 AT (367 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175533, + "fields": { + "id_car_serie": 46575, + "name": "4.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": 1946, + "end_production_year": 1952 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175534, + "fields": { + "id_car_serie": 46586, + "name": "6.2 AT (260 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175535, + "fields": { + "id_car_serie": 46586, + "name": "6.8 AT (295 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175540, + "fields": { + "id_car_serie": 46572, + "name": "1.9 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1935, + "end_production_year": 1938 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175541, + "fields": { + "id_car_serie": 46572, + "name": "2.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1938, + "end_production_year": 1942 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175542, + "fields": { + "id_car_serie": 46573, + "name": "5.4 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1936, + "end_production_year": 1937 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175546, + "fields": { + "id_car_serie": 46614, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175553, + "fields": { + "id_car_serie": 46610, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1958, + "end_production_year": 1960 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175554, + "fields": { + "id_car_serie": 46609, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1958, + "end_production_year": 1960 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175555, + "fields": { + "id_car_serie": 46612, + "name": "0.7 AT (44 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175556, + "fields": { + "id_car_serie": 46612, + "name": "0.7 MT (44 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175564, + "fields": { + "id_car_serie": 46550, + "name": "1.4 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175565, + "fields": { + "id_car_serie": 46550, + "name": "1.4 CRDi MT (77 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175566, + "fields": { + "id_car_serie": 46550, + "name": "1.4 blue MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175567, + "fields": { + "id_car_serie": 46550, + "name": "1.6 blue AT (125 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175568, + "fields": { + "id_car_serie": 46550, + "name": "1.6 blue MT (125 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175569, + "fields": { + "id_car_serie": 46550, + "name": "1.6 CRDi MT (116 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175570, + "fields": { + "id_car_serie": 46550, + "name": "1.6 CRDi MT (128 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175571, + "fields": { + "id_car_serie": 46608, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1958, + "end_production_year": 1960 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175572, + "fields": { + "id_car_serie": 46607, + "name": "2.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1959, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175573, + "fields": { + "id_car_serie": 46607, + "name": "2.2 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1959, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175574, + "fields": { + "id_car_serie": 46606, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 1961, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175575, + "fields": { + "id_car_serie": 46603, + "name": "AT (200 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175576, + "fields": { + "id_car_serie": 46611, + "name": "3.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1951, + "end_production_year": 1957 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175577, + "fields": { + "id_car_serie": 46594, + "name": "2.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1954, + "end_production_year": 1961 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175578, + "fields": { + "id_car_serie": 46594, + "name": "3.2 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1954, + "end_production_year": 1961 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175579, + "fields": { + "id_car_serie": 46595, + "name": "3.2 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1956, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175580, + "fields": { + "id_car_serie": 46596, + "name": "3.2 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1956, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175581, + "fields": { + "id_car_serie": 46593, + "name": "2.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 1952, + "end_production_year": 1958 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175582, + "fields": { + "id_car_serie": 46593, + "name": "2.0 MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1954, + "end_production_year": 1955 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175583, + "fields": { + "id_car_serie": 46604, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175584, + "fields": { + "id_car_serie": 46604, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175585, + "fields": { + "id_car_serie": 46604, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175586, + "fields": { + "id_car_serie": 46604, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": 1994 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175590, + "fields": { + "id_car_serie": 46592, + "name": "2.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1937, + "end_production_year": 1941 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175591, + "fields": { + "id_car_serie": 46591, + "name": "2.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1937, + "end_production_year": 1941 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175592, + "fields": { + "id_car_serie": 46590, + "name": "3.2 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1962, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175666, + "fields": { + "id_car_serie": 4278, + "name": "2.7 MT (158 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175668, + "fields": { + "id_car_serie": 5692, + "name": "1.4 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175669, + "fields": { + "id_car_serie": 5692, + "name": "1.4 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175674, + "fields": { + "id_car_serie": 8859, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175675, + "fields": { + "id_car_serie": 8830, + "name": "350 Long 3.5 AT (272 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175681, + "fields": { + "id_car_serie": 10787, + "name": "2.0 BiTDI Tiptronic 4Motion (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175682, + "fields": { + "id_car_serie": 10787, + "name": "2.0 BiTDI DSG 4Motion (180 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175687, + "fields": { + "id_car_serie": 14787, + "name": "1.6 Ti-VCT PowerShift (125 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175690, + "fields": { + "id_car_serie": 15138, + "name": "1.6 MPI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175691, + "fields": { + "id_car_serie": 15324, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175699, + "fields": { + "id_car_serie": 45580, + "name": "1.6 MPI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175710, + "fields": { + "id_car_serie": 45399, + "name": "2.0 MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175718, + "fields": { + "id_car_serie": 45416, + "name": "2.0 T AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175721, + "fields": { + "id_car_serie": 45686, + "name": "2.0 TFSI S tronic quattro (249 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175730, + "fields": { + "id_car_serie": 46048, + "name": "6.0 AT (630 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175731, + "fields": { + "id_car_serie": 46011, + "name": "2.0 CRDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175732, + "fields": { + "id_car_serie": 46685, + "name": "4.7 MT (310 hp)", + "arabic_name": "-", + "start_production_year": 1966, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175734, + "fields": { + "id_car_serie": 46668, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175735, + "fields": { + "id_car_serie": 46668, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175736, + "fields": { + "id_car_serie": 46671, + "name": "2.2 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175737, + "fields": { + "id_car_serie": 46671, + "name": "2.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175738, + "fields": { + "id_car_serie": 46671, + "name": "2.8 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175739, + "fields": { + "id_car_serie": 46672, + "name": "5.4 AT (230 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1967 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175743, + "fields": { + "id_car_serie": 46661, + "name": "3.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175745, + "fields": { + "id_car_serie": 46661, + "name": "5.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1980 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175747, + "fields": { + "id_car_serie": 46662, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175759, + "fields": { + "id_car_serie": 46682, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175760, + "fields": { + "id_car_serie": 46682, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175761, + "fields": { + "id_car_serie": 46669, + "name": "1.9 MT (96 hp)", + "arabic_name": "-", + "start_production_year": 1962, + "end_production_year": 1967 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175763, + "fields": { + "id_car_serie": 46665, + "name": "5.6 4WD AT (317 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175764, + "fields": { + "id_car_serie": 46665, + "name": "5.6 AT (317 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175765, + "fields": { + "id_car_serie": 46660, + "name": "3.8 T AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175766, + "fields": { + "id_car_serie": 46660, + "name": "5.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": 1988 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175770, + "fields": { + "id_car_serie": 46673, + "name": "2.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175771, + "fields": { + "id_car_serie": 46673, + "name": "2.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175772, + "fields": { + "id_car_serie": 46673, + "name": "4.6 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175773, + "fields": { + "id_car_serie": 46673, + "name": "5.4 AT (230 hp)", + "arabic_name": "-", + "start_production_year": 1966, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175774, + "fields": { + "id_car_serie": 46666, + "name": "2.0 MT (123 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175775, + "fields": { + "id_car_serie": 46666, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175776, + "fields": { + "id_car_serie": 46666, + "name": "2.8 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 1975, + "end_production_year": 1979 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175777, + "fields": { + "id_car_serie": 46710, + "name": "4.3 MT (119 hp)", + "arabic_name": "-", + "start_production_year": 1953, + "end_production_year": 1954 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175778, + "fields": { + "id_car_serie": 46688, + "name": "2.5 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1938, + "end_production_year": 1950 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175779, + "fields": { + "id_car_serie": 46667, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175780, + "fields": { + "id_car_serie": 46667, + "name": "2.0 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175781, + "fields": { + "id_car_serie": 46667, + "name": "2.6 MT (162 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175782, + "fields": { + "id_car_serie": 46670, + "name": "2.2 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175783, + "fields": { + "id_car_serie": 46670, + "name": "2.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175784, + "fields": { + "id_car_serie": 46670, + "name": "2.8 MT (145 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175785, + "fields": { + "id_car_serie": 46689, + "name": "6.3 AMT (690 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175786, + "fields": { + "id_car_serie": 46664, + "name": "5.6 AT AWD (395 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175787, + "fields": { + "id_car_serie": 46664, + "name": "5.6 AT (395 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175788, + "fields": { + "id_car_serie": 46686, + "name": "1.6 AMT (141 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175790, + "fields": { + "id_car_serie": 46707, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175791, + "fields": { + "id_car_serie": 46707, + "name": "1.8 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1982 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175792, + "fields": { + "id_car_serie": 46708, + "name": "7.2 AT (223 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175793, + "fields": { + "id_car_serie": 46708, + "name": "7.2 AT (309 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175794, + "fields": { + "id_car_serie": 46708, + "name": "7.2 AT (355 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175795, + "fields": { + "id_car_serie": 46708, + "name": "7.2 AT (380 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175796, + "fields": { + "id_car_serie": 46606, + "name": "2.8 AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175797, + "fields": { + "id_car_serie": 46606, + "name": "2.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175804, + "fields": { + "id_car_serie": 46691, + "name": "1.3 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1948, + "end_production_year": 1960 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175809, + "fields": { + "id_car_serie": 46693, + "name": "0.7 MT (30 hp)", + "arabic_name": "-", + "start_production_year": 1959, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175810, + "fields": { + "id_car_serie": 46694, + "name": "0.6 MT (19 hp)", + "arabic_name": "-", + "start_production_year": 1957, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175811, + "fields": { + "id_car_serie": 46695, + "name": "4.1 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175812, + "fields": { + "id_car_serie": 46695, + "name": "5.7 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175814, + "fields": { + "id_car_serie": 46696, + "name": "5.4 MT HD (325 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175816, + "fields": { + "id_car_serie": 46697, + "name": "5.4 MT (325 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175818, + "fields": { + "id_car_serie": 46709, + "name": "3.7 AT (86 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175819, + "fields": { + "id_car_serie": 46709, + "name": "5.2 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1983 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175822, + "fields": { + "id_car_serie": 46700, + "name": "1.2 AT (85 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175823, + "fields": { + "id_car_serie": 46701, + "name": "1.9 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1950, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175824, + "fields": { + "id_car_serie": 46701, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1950, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175825, + "fields": { + "id_car_serie": 46702, + "name": "1.9 MT (91 hp)", + "arabic_name": "-", + "start_production_year": 1950, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175826, + "fields": { + "id_car_serie": 46702, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": 1950, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175827, + "fields": { + "id_car_serie": 46703, + "name": "1.5 MT (45 hp)", + "arabic_name": "-", + "start_production_year": 1927, + "end_production_year": 1929 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175828, + "fields": { + "id_car_serie": 46703, + "name": "1.8 MT (56 hp)", + "arabic_name": "-", + "start_production_year": 1929, + "end_production_year": 1933 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175829, + "fields": { + "id_car_serie": 46704, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175830, + "fields": { + "id_car_serie": 46704, + "name": "2.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175831, + "fields": { + "id_car_serie": 46704, + "name": "3.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175832, + "fields": { + "id_car_serie": 46704, + "name": "3.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175833, + "fields": { + "id_car_serie": 46705, + "name": "2.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175834, + "fields": { + "id_car_serie": 46705, + "name": "3.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175835, + "fields": { + "id_car_serie": 46705, + "name": "3.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175836, + "fields": { + "id_car_serie": 46706, + "name": "3.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1946, + "end_production_year": 1948 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175839, + "fields": { + "id_car_serie": 46657, + "name": "1.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": 1954, + "end_production_year": 1962 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175840, + "fields": { + "id_car_serie": 46683, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175841, + "fields": { + "id_car_serie": 46683, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175842, + "fields": { + "id_car_serie": 46683, + "name": "1.8 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175850, + "fields": { + "id_car_serie": 46681, + "name": "1.2 AMT (82 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175851, + "fields": { + "id_car_serie": 46681, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175853, + "fields": { + "id_car_serie": 46681, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175854, + "fields": { + "id_car_serie": 46681, + "name": "1.6 MT (165 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175856, + "fields": { + "id_car_serie": 46681, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175943, + "fields": { + "id_car_serie": 46675, + "name": "1.6 MT (207 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175948, + "fields": { + "id_car_serie": 45883, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175949, + "fields": { + "id_car_serie": 45883, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175950, + "fields": { + "id_car_serie": 45883, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175951, + "fields": { + "id_car_serie": 46157, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175952, + "fields": { + "id_car_serie": 46157, + "name": "2.0 HDi AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 175956, + "fields": { + "id_car_serie": 46804, + "name": "1.5 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175957, + "fields": { + "id_car_serie": 46804, + "name": "1.7 MT (66 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175958, + "fields": { + "id_car_serie": 46804, + "name": "2.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175964, + "fields": { + "id_car_serie": 46802, + "name": "1.5 MT (54 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175965, + "fields": { + "id_car_serie": 46802, + "name": "1.7 MT (66 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175966, + "fields": { + "id_car_serie": 46802, + "name": "2.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1963, + "end_production_year": 1965 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175967, + "fields": { + "id_car_serie": 46800, + "name": "1.5 MT (59 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1966 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175968, + "fields": { + "id_car_serie": 46800, + "name": "1.7 MT (74 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1966 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175969, + "fields": { + "id_car_serie": 46800, + "name": "1.9 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1966 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175970, + "fields": { + "id_car_serie": 46800, + "name": "2.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1966 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175972, + "fields": { + "id_car_serie": 46796, + "name": "1.7 MT (66 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175976, + "fields": { + "id_car_serie": 46801, + "name": "1.5 MT (59 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1966 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175977, + "fields": { + "id_car_serie": 46801, + "name": "1.7 MT (74 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1966 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175978, + "fields": { + "id_car_serie": 46801, + "name": "1.9 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1966 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175979, + "fields": { + "id_car_serie": 46801, + "name": "2.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": 1965, + "end_production_year": 1966 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175980, + "fields": { + "id_car_serie": 46813, + "name": "2.5 MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1958, + "end_production_year": 1959 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175981, + "fields": { + "id_car_serie": 46810, + "name": "2.8 AT (138 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175982, + "fields": { + "id_car_serie": 46810, + "name": "2.8 MT (138 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175983, + "fields": { + "id_car_serie": 46811, + "name": "2.8 AT (138 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175984, + "fields": { + "id_car_serie": 46811, + "name": "2.8 MT (138 hp)", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1968 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175985, + "fields": { + "id_car_serie": 46797, + "name": "1.5 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175986, + "fields": { + "id_car_serie": 46797, + "name": "1.7 MT (66 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175987, + "fields": { + "id_car_serie": 46797, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175988, + "fields": { + "id_car_serie": 46797, + "name": "1.9 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175989, + "fields": { + "id_car_serie": 46797, + "name": "2.2 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175995, + "fields": { + "id_car_serie": 46799, + "name": "1.5 MT (58 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175996, + "fields": { + "id_car_serie": 46799, + "name": "1.7 MT (66 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175997, + "fields": { + "id_car_serie": 46799, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175998, + "fields": { + "id_car_serie": 46799, + "name": "1.9 MT (106 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 175999, + "fields": { + "id_car_serie": 46799, + "name": "2.2 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 176000, + "fields": { + "id_car_serie": 46807, + "name": "2.0 T5 Drive-E AT AWD (254 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176001, + "fields": { + "id_car_serie": 46807, + "name": "2.0 T6 Drive-E AT AWD (320 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176002, + "fields": { + "id_car_serie": 46807, + "name": "2.0 D4 Drive-E AT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176003, + "fields": { + "id_car_serie": 46807, + "name": "2.0 D5 Drive-E AT AWD (235 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176004, + "fields": { + "id_car_serie": 46807, + "name": "2.0 T5 Drive-E AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176005, + "fields": { + "id_car_serie": 46809, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 176006, + "fields": { + "id_car_serie": 46809, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 176007, + "fields": { + "id_car_serie": 46809, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1967, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 176008, + "fields": { + "id_car_serie": 46819, + "name": "1.2 MT (23 hp)", + "arabic_name": "-", + "start_production_year": 1935, + "end_production_year": 1937 + } +}, +{ + "model": "inventory.cartrim", + "pk": 176009, + "fields": { + "id_car_serie": 46820, + "name": "1.6 HDi MT SWB (95 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176011, + "fields": { + "id_car_serie": 46820, + "name": "1.6 HDi AMT SWB (95 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176012, + "fields": { + "id_car_serie": 46820, + "name": "2.0 HDi AT SWB (150 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176013, + "fields": { + "id_car_serie": 46820, + "name": "2.0 HDi MT SWB (150 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176017, + "fields": { + "id_car_serie": 46814, + "name": "2.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1953, + "end_production_year": 1955 + } +}, +{ + "model": "inventory.cartrim", + "pk": 176018, + "fields": { + "id_car_serie": 46814, + "name": "2.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1958 + } +}, +{ + "model": "inventory.cartrim", + "pk": 176019, + "fields": { + "id_car_serie": 46814, + "name": "2.5 MT (74 hp)", + "arabic_name": "-", + "start_production_year": 1956, + "end_production_year": 1958 + } +}, +{ + "model": "inventory.cartrim", + "pk": 176021, + "fields": { + "id_car_serie": 46812, + "name": "2.6 AT (89 hp)", + "arabic_name": "-", + "start_production_year": 1960, + "end_production_year": 1963 + } +}, +{ + "model": "inventory.cartrim", + "pk": 176022, + "fields": { + "id_car_serie": 46812, + "name": "2.6 MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1959, + "end_production_year": 1963 + } +}, +{ + "model": "inventory.cartrim", + "pk": 176023, + "fields": { + "id_car_serie": 46795, + "name": "1.7 CRDi AMT (141 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176024, + "fields": { + "id_car_serie": 46795, + "name": "1.7 CRDi MT (141 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176025, + "fields": { + "id_car_serie": 46795, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176027, + "fields": { + "id_car_serie": 46795, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176028, + "fields": { + "id_car_serie": 46806, + "name": "1.6 CVT AWD (114 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176029, + "fields": { + "id_car_serie": 46806, + "name": "1.6 MT AWD (114 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176030, + "fields": { + "id_car_serie": 46806, + "name": "2.0 CVT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176031, + "fields": { + "id_car_serie": 46806, + "name": "2.0 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176034, + "fields": { + "id_car_serie": 46808, + "name": "2.9 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 176035, + "fields": { + "id_car_serie": 46808, + "name": "2.9 AT (204 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 176036, + "fields": { + "id_car_serie": 46808, + "name": "2.9 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 176045, + "fields": { + "id_car_serie": 458, + "name": "1.6 HDi MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176060, + "fields": { + "id_car_serie": 494, + "name": "1.6i MT (95 hp) ", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176070, + "fields": { + "id_car_serie": 14769, + "name": "2.0 TDI MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176075, + "fields": { + "id_car_serie": 678, + "name": "6.1 AT (432 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176078, + "fields": { + "id_car_serie": 724, + "name": "1.3 AMT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176080, + "fields": { + "id_car_serie": 725, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176081, + "fields": { + "id_car_serie": 786, + "name": "1.2 MultiJet-II Turbo AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176088, + "fields": { + "id_car_serie": 62992, + "name": "1.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176089, + "fields": { + "id_car_serie": 62992, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176090, + "fields": { + "id_car_serie": 846, + "name": "1.6 PowerShift (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176099, + "fields": { + "id_car_serie": 875, + "name": "1.4 EuroV MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176102, + "fields": { + "id_car_serie": 875, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176112, + "fields": { + "id_car_serie": 1007, + "name": "1.5 CVT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176113, + "fields": { + "id_car_serie": 1046, + "name": "1.5 CVT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176114, + "fields": { + "id_car_serie": 1057, + "name": "1.5 CVT 7 places (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176115, + "fields": { + "id_car_serie": 1057, + "name": "1.5 CVT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176116, + "fields": { + "id_car_serie": 1083, + "name": "2.2 MT (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176117, + "fields": { + "id_car_serie": 1090, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176118, + "fields": { + "id_car_serie": 1090, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176121, + "fields": { + "id_car_serie": 1132, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176122, + "fields": { + "id_car_serie": 1132, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176123, + "fields": { + "id_car_serie": 1132, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176129, + "fields": { + "id_car_serie": 1132, + "name": "2.0 CRDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176139, + "fields": { + "id_car_serie": 1138, + "name": "1.5 CRDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176141, + "fields": { + "id_car_serie": 1151, + "name": "2.7 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176142, + "fields": { + "id_car_serie": 1151, + "name": "2.0 CRDi MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176143, + "fields": { + "id_car_serie": 1151, + "name": "2.0 CRDi AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176173, + "fields": { + "id_car_serie": 1220, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176179, + "fields": { + "id_car_serie": 1283, + "name": "2.0 TD AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176180, + "fields": { + "id_car_serie": 1283, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176190, + "fields": { + "id_car_serie": 1545, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176191, + "fields": { + "id_car_serie": 1764, + "name": "2.8 TD MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176195, + "fields": { + "id_car_serie": 1817, + "name": "5.6 AT (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176196, + "fields": { + "id_car_serie": 1817, + "name": "5.6 AT 4WD (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176202, + "fields": { + "id_car_serie": 1992, + "name": "1.6 HDi MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176205, + "fields": { + "id_car_serie": 2011, + "name": "2.4 MT 4x4 (10.4) (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176207, + "fields": { + "id_car_serie": 9645, + "name": "1.4 D-4D AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176208, + "fields": { + "id_car_serie": 9644, + "name": "1.4 D-4D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176209, + "fields": { + "id_car_serie": 2021, + "name": "1.6 HDI MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176212, + "fields": { + "id_car_serie": 9638, + "name": "3.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176213, + "fields": { + "id_car_serie": 2040, + "name": "AT (14 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176214, + "fields": { + "id_car_serie": 9630, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176215, + "fields": { + "id_car_serie": 9630, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176216, + "fields": { + "id_car_serie": 9628, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176217, + "fields": { + "id_car_serie": 9628, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176218, + "fields": { + "id_car_serie": 9627, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176219, + "fields": { + "id_car_serie": 9627, + "name": "2.2 AT AWD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176222, + "fields": { + "id_car_serie": 9619, + "name": "2.0 MT High roof (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176231, + "fields": { + "id_car_serie": 2068, + "name": "3.6 AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176232, + "fields": { + "id_car_serie": 2068, + "name": "6.0 AT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176233, + "fields": { + "id_car_serie": 2068, + "name": "6.0 MT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176236, + "fields": { + "id_car_serie": 9609, + "name": "4.0 AT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176239, + "fields": { + "id_car_serie": 9605, + "name": "2.7 AT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176249, + "fields": { + "id_car_serie": 9603, + "name": "2.7 MT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176250, + "fields": { + "id_car_serie": 9603, + "name": "2.7 AT Overdrive (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176251, + "fields": { + "id_car_serie": 9603, + "name": "2.7 MT 4x4 (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176254, + "fields": { + "id_car_serie": 2085, + "name": "3.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176257, + "fields": { + "id_car_serie": 2105, + "name": "2.0 PDK AWD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176258, + "fields": { + "id_car_serie": 9578, + "name": "1.8 MT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176259, + "fields": { + "id_car_serie": 9578, + "name": "1.8 AT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176260, + "fields": { + "id_car_serie": 9578, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176261, + "fields": { + "id_car_serie": 9578, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176262, + "fields": { + "id_car_serie": 9578, + "name": "2.0 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176263, + "fields": { + "id_car_serie": 9578, + "name": "2.0 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176264, + "fields": { + "id_car_serie": 9578, + "name": "2.0 D MT AWD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176265, + "fields": { + "id_car_serie": 9578, + "name": "2.0 D AT AWD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176269, + "fields": { + "id_car_serie": 9577, + "name": "2.0 MT FWD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176273, + "fields": { + "id_car_serie": 9577, + "name": "2.0 CVT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176275, + "fields": { + "id_car_serie": 9577, + "name": "2.0 CVT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176276, + "fields": { + "id_car_serie": 9577, + "name": "2.0 MT FWD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176277, + "fields": { + "id_car_serie": 9577, + "name": "2.0 (148 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176281, + "fields": { + "id_car_serie": 9577, + "name": "2.4 CVT FWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176282, + "fields": { + "id_car_serie": 9577, + "name": "2.5 AT FWD (179 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176283, + "fields": { + "id_car_serie": 9577, + "name": "3.5 AT FWD (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176284, + "fields": { + "id_car_serie": 9577, + "name": "3.5 AT AWD (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176287, + "fields": { + "id_car_serie": 9577, + "name": "2.2 (175 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176291, + "fields": { + "id_car_serie": 2137, + "name": "1.6 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176307, + "fields": { + "id_car_serie": 9574, + "name": "2.0 MT AWD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176308, + "fields": { + "id_car_serie": 9574, + "name": "2.0 AT AWD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176311, + "fields": { + "id_car_serie": 9574, + "name": "2.0 MT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176312, + "fields": { + "id_car_serie": 9574, + "name": "2.0 MT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176313, + "fields": { + "id_car_serie": 9574, + "name": "2.0 AT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176314, + "fields": { + "id_car_serie": 9574, + "name": "2.0 AT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176321, + "fields": { + "id_car_serie": 2185, + "name": "3.0 dCi AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176322, + "fields": { + "id_car_serie": 14751, + "name": "2.0 Turbo MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176344, + "fields": { + "id_car_serie": 9535, + "name": "2.5 MT AWD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176358, + "fields": { + "id_car_serie": 9526, + "name": "2.4 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176359, + "fields": { + "id_car_serie": 9526, + "name": "3.3 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176379, + "fields": { + "id_car_serie": 9507, + "name": "1.6 GTI 16V MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176381, + "fields": { + "id_car_serie": 9507, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176382, + "fields": { + "id_car_serie": 9507, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176383, + "fields": { + "id_car_serie": 9507, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176385, + "fields": { + "id_car_serie": 9507, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176386, + "fields": { + "id_car_serie": 9507, + "name": "1.6 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176389, + "fields": { + "id_car_serie": 9506, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176393, + "fields": { + "id_car_serie": 9506, + "name": "1.6 MT AWD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176394, + "fields": { + "id_car_serie": 9506, + "name": "1.6 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176398, + "fields": { + "id_car_serie": 9506, + "name": "1.6 MT AWD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176399, + "fields": { + "id_car_serie": 9506, + "name": "1.6 MT AWD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176403, + "fields": { + "id_car_serie": 9505, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176404, + "fields": { + "id_car_serie": 9505, + "name": "1.5 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176405, + "fields": { + "id_car_serie": 9504, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176406, + "fields": { + "id_car_serie": 9504, + "name": "1.3 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176407, + "fields": { + "id_car_serie": 9504, + "name": "1.5 MT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176408, + "fields": { + "id_car_serie": 9504, + "name": "1.5 Turbo AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176409, + "fields": { + "id_car_serie": 14750, + "name": "2.0 MT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176410, + "fields": { + "id_car_serie": 14750, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176418, + "fields": { + "id_car_serie": 2303, + "name": "1.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176430, + "fields": { + "id_car_serie": 9443, + "name": "1.5 CVT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176432, + "fields": { + "id_car_serie": 9435, + "name": "2.7 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176450, + "fields": { + "id_car_serie": 2410, + "name": "0.6 MT (37 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176451, + "fields": { + "id_car_serie": 2413, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176452, + "fields": { + "id_car_serie": 2413, + "name": "1.9 TD MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176453, + "fields": { + "id_car_serie": 2413, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176458, + "fields": { + "id_car_serie": 9379, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176459, + "fields": { + "id_car_serie": 14637, + "name": "2.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176460, + "fields": { + "id_car_serie": 14637, + "name": "2.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176465, + "fields": { + "id_car_serie": 9329, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176466, + "fields": { + "id_car_serie": 9329, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176467, + "fields": { + "id_car_serie": 9329, + "name": "1.4 16V MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176468, + "fields": { + "id_car_serie": 9329, + "name": "1.4 16V AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176469, + "fields": { + "id_car_serie": 9329, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176470, + "fields": { + "id_car_serie": 9329, + "name": "1.4 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176471, + "fields": { + "id_car_serie": 9328, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176473, + "fields": { + "id_car_serie": 9328, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176474, + "fields": { + "id_car_serie": 9328, + "name": "1.6 Tiptronic (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176483, + "fields": { + "id_car_serie": 9327, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176486, + "fields": { + "id_car_serie": 9327, + "name": "1.4 16V MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176487, + "fields": { + "id_car_serie": 9327, + "name": "1.4 TDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176489, + "fields": { + "id_car_serie": 9327, + "name": "1.7 TDi MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176490, + "fields": { + "id_car_serie": 9327, + "name": "1.9 Di MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176505, + "fields": { + "id_car_serie": 9321, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176506, + "fields": { + "id_car_serie": 9321, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176508, + "fields": { + "id_car_serie": 9321, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176509, + "fields": { + "id_car_serie": 9321, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176510, + "fields": { + "id_car_serie": 9321, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176512, + "fields": { + "id_car_serie": 9321, + "name": "1.7 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176520, + "fields": { + "id_car_serie": 4356, + "name": "2.0 TSI 4Motion DSG (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176534, + "fields": { + "id_car_serie": 9317, + "name": "1.6 D AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176535, + "fields": { + "id_car_serie": 9317, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176536, + "fields": { + "id_car_serie": 9317, + "name": "1.6 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176537, + "fields": { + "id_car_serie": 9317, + "name": "1.8 MT CIS (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176538, + "fields": { + "id_car_serie": 9317, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176540, + "fields": { + "id_car_serie": 9317, + "name": "1.9 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176541, + "fields": { + "id_car_serie": 9317, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176543, + "fields": { + "id_car_serie": 9317, + "name": "2.2 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176544, + "fields": { + "id_car_serie": 9317, + "name": "2.2 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176546, + "fields": { + "id_car_serie": 9317, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176550, + "fields": { + "id_car_serie": 9316, + "name": "1.9 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176554, + "fields": { + "id_car_serie": 9316, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176556, + "fields": { + "id_car_serie": 9314, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176557, + "fields": { + "id_car_serie": 9314, + "name": "1.5 D MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176558, + "fields": { + "id_car_serie": 9312, + "name": "1.4 TSI BlueMotion MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176559, + "fields": { + "id_car_serie": 9312, + "name": "1.4 TSI BlueMotion DSG (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176560, + "fields": { + "id_car_serie": 9312, + "name": "1.4 TSI BlueMotion DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176562, + "fields": { + "id_car_serie": 9312, + "name": "1.4 AMT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176563, + "fields": { + "id_car_serie": 9312, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176565, + "fields": { + "id_car_serie": 9312, + "name": "1.8 TSI BlueMotion DSG (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176570, + "fields": { + "id_car_serie": 9312, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176571, + "fields": { + "id_car_serie": 9312, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176574, + "fields": { + "id_car_serie": 9312, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176576, + "fields": { + "id_car_serie": 9312, + "name": "2.0 TDI BlueMotion MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176577, + "fields": { + "id_car_serie": 9312, + "name": "2.0 TDI BlueMotion DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176578, + "fields": { + "id_car_serie": 9312, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176582, + "fields": { + "id_car_serie": 9312, + "name": "2.0 TDI BlueMotion DSG 4Motion (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176584, + "fields": { + "id_car_serie": 9311, + "name": "1.8 Syncro MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176585, + "fields": { + "id_car_serie": 9311, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176587, + "fields": { + "id_car_serie": 9310, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176591, + "fields": { + "id_car_serie": 9310, + "name": "1.6 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176593, + "fields": { + "id_car_serie": 9310, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176597, + "fields": { + "id_car_serie": 9307, + "name": "1.9 TDI BlueMotion MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176604, + "fields": { + "id_car_serie": 9304, + "name": "2.5 MT syncro (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176605, + "fields": { + "id_car_serie": 2585, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176606, + "fields": { + "id_car_serie": 2585, + "name": "1.6 I-Motion AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176608, + "fields": { + "id_car_serie": 10718, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176609, + "fields": { + "id_car_serie": 10718, + "name": "1.5 D MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176612, + "fields": { + "id_car_serie": 9260, + "name": "2.4 DT MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176613, + "fields": { + "id_car_serie": 9260, + "name": "2.4 DT AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176614, + "fields": { + "id_car_serie": 9259, + "name": "2.4 DT AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176615, + "fields": { + "id_car_serie": 9259, + "name": "2.4 DT MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176617, + "fields": { + "id_car_serie": 9253, + "name": "2.4 Hybrid CVT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176618, + "fields": { + "id_car_serie": 9250, + "name": "2.4 TD MT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176620, + "fields": { + "id_car_serie": 9250, + "name": "2.4 TD AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176621, + "fields": { + "id_car_serie": 9249, + "name": "2.4 TD MT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176622, + "fields": { + "id_car_serie": 9249, + "name": "2.4 TD AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176625, + "fields": { + "id_car_serie": 9241, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176631, + "fields": { + "id_car_serie": 9218, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176632, + "fields": { + "id_car_serie": 9218, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176645, + "fields": { + "id_car_serie": 2707, + "name": "2107i MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176649, + "fields": { + "id_car_serie": 9186, + "name": "AT (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176650, + "fields": { + "id_car_serie": 9186, + "name": "AT (291 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176664, + "fields": { + "id_car_serie": 2852, + "name": "2.0 SS (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176673, + "fields": { + "id_car_serie": 2885, + "name": "5.9 MT (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176674, + "fields": { + "id_car_serie": 2901, + "name": "1.2 TFSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176693, + "fields": { + "id_car_serie": 2901, + "name": "1.6 TDI S tronic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176739, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TFSI MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176740, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TFSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176748, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176749, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TDI MT quattro (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176756, + "fields": { + "id_car_serie": 2906, + "name": "3.0 TDI clean diesel S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176757, + "fields": { + "id_car_serie": 2906, + "name": "2.0 TDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176778, + "fields": { + "id_car_serie": 2908, + "name": "1.8 TFSI MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176779, + "fields": { + "id_car_serie": 2908, + "name": "1.8 TFSI multitronic (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176806, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176808, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176809, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TDI multitronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176810, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176811, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TDI MT quattro (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176812, + "fields": { + "id_car_serie": 2908, + "name": "3.0 TDI S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176813, + "fields": { + "id_car_serie": 2910, + "name": "3.0 TDI clean diesel S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176816, + "fields": { + "id_car_serie": 3681, + "name": "1.3 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176817, + "fields": { + "id_car_serie": 3681, + "name": "1.3 AT e-4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176818, + "fields": { + "id_car_serie": 2916, + "name": "2.0 TDI MT quattro (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176822, + "fields": { + "id_car_serie": 2916, + "name": "2.0 TFSI Tiptronic quattro (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176827, + "fields": { + "id_car_serie": 2917, + "name": "5.2 FSI quattro S tronic V10 plus (610 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176828, + "fields": { + "id_car_serie": 2917, + "name": "5.2 FSI quattro S tronic V10 (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176829, + "fields": { + "id_car_serie": 2918, + "name": "5.2 AMT (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176830, + "fields": { + "id_car_serie": 2927, + "name": "2.0 TFSI S tronic quattro (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176832, + "fields": { + "id_car_serie": 47113, + "name": "2.7 T MT quattro (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176834, + "fields": { + "id_car_serie": 47548, + "name": "6.8 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176835, + "fields": { + "id_car_serie": 47547, + "name": "6.8 AT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176836, + "fields": { + "id_car_serie": 47547, + "name": "6.8 AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176838, + "fields": { + "id_car_serie": 47547, + "name": "6.8 AT (389 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176840, + "fields": { + "id_car_serie": 47547, + "name": "6.8 AT (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176876, + "fields": { + "id_car_serie": 2977, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176877, + "fields": { + "id_car_serie": 2977, + "name": "2.5 MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176878, + "fields": { + "id_car_serie": 2977, + "name": "2.5 AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176879, + "fields": { + "id_car_serie": 3706, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176880, + "fields": { + "id_car_serie": 3010, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176881, + "fields": { + "id_car_serie": 3010, + "name": "1.5 AMT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176882, + "fields": { + "id_car_serie": 3015, + "name": "2.0 AT RWD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176883, + "fields": { + "id_car_serie": 3015, + "name": "2.0 AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176886, + "fields": { + "id_car_serie": 3729, + "name": "2.8 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176887, + "fields": { + "id_car_serie": 3729, + "name": "2.8 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176888, + "fields": { + "id_car_serie": 3729, + "name": "2.8 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176891, + "fields": { + "id_car_serie": 3022, + "name": "3.0 V6 SIDI (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176898, + "fields": { + "id_car_serie": 3039, + "name": "2.2 D AT (5 places) (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176899, + "fields": { + "id_car_serie": 3039, + "name": "2.2 D AT (7 places) (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176900, + "fields": { + "id_car_serie": 3039, + "name": "2.2 D AT AWD (5 places) (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176902, + "fields": { + "id_car_serie": 3039, + "name": "2.4 MT (5 places) (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176904, + "fields": { + "id_car_serie": 3039, + "name": "3.0 AT AWD (5 places) (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176905, + "fields": { + "id_car_serie": 3043, + "name": "1.4 FlexFuel MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176906, + "fields": { + "id_car_serie": 3051, + "name": "6.2 AT (466 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176908, + "fields": { + "id_car_serie": 3053, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176911, + "fields": { + "id_car_serie": 3054, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176938, + "fields": { + "id_car_serie": 3061, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176980, + "fields": { + "id_car_serie": 3079, + "name": "6.2 AT 4WD (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176983, + "fields": { + "id_car_serie": 3081, + "name": "3.6 AT AWD (239 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176990, + "fields": { + "id_car_serie": 3110, + "name": "1.6 HDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176991, + "fields": { + "id_car_serie": 3116, + "name": "1.6 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176993, + "fields": { + "id_car_serie": 3117, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176996, + "fields": { + "id_car_serie": 3117, + "name": "1.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176997, + "fields": { + "id_car_serie": 3117, + "name": "1.6 (115 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 176999, + "fields": { + "id_car_serie": 3117, + "name": "1.6 (150 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177021, + "fields": { + "id_car_serie": 3136, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177031, + "fields": { + "id_car_serie": 3149, + "name": "1.5 dCi Easy-R (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177032, + "fields": { + "id_car_serie": 3151, + "name": "1.5 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177040, + "fields": { + "id_car_serie": 3163, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177041, + "fields": { + "id_car_serie": 3163, + "name": "1.5 i 16V (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177050, + "fields": { + "id_car_serie": 3218, + "name": "3.0 TD AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177051, + "fields": { + "id_car_serie": 3218, + "name": "5.7 AT AWD (396 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177053, + "fields": { + "id_car_serie": 3238, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177057, + "fields": { + "id_car_serie": 3850, + "name": "3.5 Xtronic AWD (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177058, + "fields": { + "id_car_serie": 3850, + "name": "3.5 Xtronic AWD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177064, + "fields": { + "id_car_serie": 3280, + "name": "1.2 AMT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177070, + "fields": { + "id_car_serie": 3284, + "name": "1.2 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177077, + "fields": { + "id_car_serie": 3322, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177078, + "fields": { + "id_car_serie": 3322, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177079, + "fields": { + "id_car_serie": 3322, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177085, + "fields": { + "id_car_serie": 3332, + "name": "1.6 L Duratorq TDCi ECOnetic MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177089, + "fields": { + "id_car_serie": 3333, + "name": "1.6 TDCi ECOnetic MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177093, + "fields": { + "id_car_serie": 3335, + "name": "1.0 EcoBoost MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177095, + "fields": { + "id_car_serie": 3336, + "name": "1.0 EcoBoost MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177099, + "fields": { + "id_car_serie": 3903, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177100, + "fields": { + "id_car_serie": 3903, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177115, + "fields": { + "id_car_serie": 3344, + "name": "1.6 (150 hp), gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177116, + "fields": { + "id_car_serie": 3344, + "name": "1.6 (182 hp), gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177131, + "fields": { + "id_car_serie": 3354, + "name": "2.0 FlexiFuel MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177135, + "fields": { + "id_car_serie": 3356, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177136, + "fields": { + "id_car_serie": 3356, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177140, + "fields": { + "id_car_serie": 3356, + "name": "2.5 TD MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177141, + "fields": { + "id_car_serie": 3356, + "name": "2.9 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177142, + "fields": { + "id_car_serie": 3356, + "name": "2.9 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177144, + "fields": { + "id_car_serie": 3356, + "name": "2.9 MT 4x4 (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177145, + "fields": { + "id_car_serie": 3356, + "name": "2.9 Cosworth AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177148, + "fields": { + "id_car_serie": 3356, + "name": "2.5 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177149, + "fields": { + "id_car_serie": 3920, + "name": "2.0 DTi MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177150, + "fields": { + "id_car_serie": 3357, + "name": "2.0 Cosworth MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177156, + "fields": { + "id_car_serie": 3371, + "name": "1.8 CVT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177160, + "fields": { + "id_car_serie": 3948, + "name": "1.6 THP MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177162, + "fields": { + "id_car_serie": 3966, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177168, + "fields": { + "id_car_serie": 3425, + "name": "2.4 AT (187 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177176, + "fields": { + "id_car_serie": 3433, + "name": "1.3 CVT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177180, + "fields": { + "id_car_serie": 3455, + "name": "6.0 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177182, + "fields": { + "id_car_serie": 3460, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177183, + "fields": { + "id_car_serie": 3460, + "name": "1.6 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177191, + "fields": { + "id_car_serie": 3467, + "name": "1.1 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177200, + "fields": { + "id_car_serie": 3467, + "name": "1.5 CRDi MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177201, + "fields": { + "id_car_serie": 3468, + "name": "1.1 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177202, + "fields": { + "id_car_serie": 3468, + "name": "1.5 CRDi MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177204, + "fields": { + "id_car_serie": 3471, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177205, + "fields": { + "id_car_serie": 3471, + "name": "1.2 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177209, + "fields": { + "id_car_serie": 3474, + "name": "1.6 TD AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177210, + "fields": { + "id_car_serie": 3474, + "name": "1.6 TD MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177217, + "fields": { + "id_car_serie": 3475, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177218, + "fields": { + "id_car_serie": 3481, + "name": "2.4 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177224, + "fields": { + "id_car_serie": 3484, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177225, + "fields": { + "id_car_serie": 3484, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177249, + "fields": { + "id_car_serie": 3491, + "name": "3.7 MT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177250, + "fields": { + "id_car_serie": 3492, + "name": "3.7 MT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177310, + "fields": { + "id_car_serie": 3559, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177325, + "fields": { + "id_car_serie": 3566, + "name": "1.6 6MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177364, + "fields": { + "id_car_serie": 4074, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177372, + "fields": { + "id_car_serie": 4075, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177374, + "fields": { + "id_car_serie": 4075, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177377, + "fields": { + "id_car_serie": 4079, + "name": "1.5 dCi MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177378, + "fields": { + "id_car_serie": 4079, + "name": "1.5 dCi MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177379, + "fields": { + "id_car_serie": 4079, + "name": "1.5 dCi AMT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177380, + "fields": { + "id_car_serie": 4079, + "name": "1.5 dCi AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177381, + "fields": { + "id_car_serie": 4079, + "name": "1.5 dCi MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177382, + "fields": { + "id_car_serie": 3591, + "name": "3.0 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177398, + "fields": { + "id_car_serie": 3605, + "name": "3.0 V6 Supercharged AT AWD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177399, + "fields": { + "id_car_serie": 3605, + "name": "5.0 V8 Supercharged AT AWD (565 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177400, + "fields": { + "id_car_serie": 3606, + "name": "3.0 V6 Supercharged AT AWD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177401, + "fields": { + "id_car_serie": 3606, + "name": "3.0 SDV6 Hybrid AT AWD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177449, + "fields": { + "id_car_serie": 3616, + "name": "430 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177452, + "fields": { + "id_car_serie": 4112, + "name": "2.8 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177459, + "fields": { + "id_car_serie": 4145, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177464, + "fields": { + "id_car_serie": 4148, + "name": "1.6 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177465, + "fields": { + "id_car_serie": 4148, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177466, + "fields": { + "id_car_serie": 3655, + "name": "1.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177468, + "fields": { + "id_car_serie": 3656, + "name": "2.0 SKYACTIV-G AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177470, + "fields": { + "id_car_serie": 3657, + "name": "2.0 SKYACTIV-G AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177473, + "fields": { + "id_car_serie": 3662, + "name": "2.5 SKYACTIV-G AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177474, + "fields": { + "id_car_serie": 3662, + "name": "2.2 SKYACTIV-D MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177475, + "fields": { + "id_car_serie": 3662, + "name": "2.2 SKYACTIV-D AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177476, + "fields": { + "id_car_serie": 3669, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177477, + "fields": { + "id_car_serie": 3669, + "name": "2.3 AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177478, + "fields": { + "id_car_serie": 3671, + "name": "2.0 SKYACTIV-HYBRID CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177479, + "fields": { + "id_car_serie": 4156, + "name": "1.2 MT Green tec (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177480, + "fields": { + "id_car_serie": 4156, + "name": "1.2 TSI MT Green tec (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177485, + "fields": { + "id_car_serie": 4156, + "name": "1.2 TSI MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177528, + "fields": { + "id_car_serie": 4169, + "name": "1.0 AMT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177529, + "fields": { + "id_car_serie": 3695, + "name": "2.3 Hybrid CVT AWD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177530, + "fields": { + "id_car_serie": 3695, + "name": "2.3 Hybrid CVT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177585, + "fields": { + "id_car_serie": 3787, + "name": "1.6 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177596, + "fields": { + "id_car_serie": 3791, + "name": "3.2 DI-D AT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177597, + "fields": { + "id_car_serie": 3791, + "name": "3.2 DI-D AT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177604, + "fields": { + "id_car_serie": 3798, + "name": "2.5 DI-D MT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177614, + "fields": { + "id_car_serie": 3825, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177637, + "fields": { + "id_car_serie": 4276, + "name": "3.5 AT FWD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177639, + "fields": { + "id_car_serie": 4276, + "name": "3.5 Hybrid CVT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177642, + "fields": { + "id_car_serie": 3885, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177644, + "fields": { + "id_car_serie": 3885, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177645, + "fields": { + "id_car_serie": 3885, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177646, + "fields": { + "id_car_serie": 3885, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177647, + "fields": { + "id_car_serie": 3885, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177648, + "fields": { + "id_car_serie": 3886, + "name": "2.0 CDTI Biturbo ecoFLEX MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177649, + "fields": { + "id_car_serie": 3886, + "name": "1.4 Turbo ecoFLEX MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177650, + "fields": { + "id_car_serie": 3886, + "name": "2.0 CDTI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177651, + "fields": { + "id_car_serie": 3886, + "name": "2.0 DTJ AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177652, + "fields": { + "id_car_serie": 3886, + "name": "1.4 Turbo ecoFLEX MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177653, + "fields": { + "id_car_serie": 3887, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177654, + "fields": { + "id_car_serie": 3887, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177655, + "fields": { + "id_car_serie": 3887, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177657, + "fields": { + "id_car_serie": 3887, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177658, + "fields": { + "id_car_serie": 3887, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177659, + "fields": { + "id_car_serie": 3887, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177660, + "fields": { + "id_car_serie": 3887, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177661, + "fields": { + "id_car_serie": 3887, + "name": "1.6 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177662, + "fields": { + "id_car_serie": 3887, + "name": "1.6 CNG AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177663, + "fields": { + "id_car_serie": 3887, + "name": "1.6 CNG MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177664, + "fields": { + "id_car_serie": 3887, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177665, + "fields": { + "id_car_serie": 3887, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177666, + "fields": { + "id_car_serie": 3887, + "name": "1.6 Twinport MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177667, + "fields": { + "id_car_serie": 3887, + "name": "1.6 Twinport AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177669, + "fields": { + "id_car_serie": 3887, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177670, + "fields": { + "id_car_serie": 3887, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177671, + "fields": { + "id_car_serie": 3887, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177672, + "fields": { + "id_car_serie": 3887, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177673, + "fields": { + "id_car_serie": 3887, + "name": "2.0 DTI AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177674, + "fields": { + "id_car_serie": 3887, + "name": "2.0 DTI MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177675, + "fields": { + "id_car_serie": 3887, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177676, + "fields": { + "id_car_serie": 3887, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177677, + "fields": { + "id_car_serie": 3887, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177678, + "fields": { + "id_car_serie": 3887, + "name": "1.7 CDTi MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177679, + "fields": { + "id_car_serie": 3887, + "name": "1.7 DTi AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177680, + "fields": { + "id_car_serie": 3887, + "name": "1.7 CDTI Eco4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177682, + "fields": { + "id_car_serie": 3887, + "name": "1.7 DTi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177683, + "fields": { + "id_car_serie": 3887, + "name": "2.0 DI MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177684, + "fields": { + "id_car_serie": 3887, + "name": "2.0 DI AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177686, + "fields": { + "id_car_serie": 3887, + "name": "2.2 DTi MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177687, + "fields": { + "id_car_serie": 3888, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177688, + "fields": { + "id_car_serie": 3888, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177689, + "fields": { + "id_car_serie": 3888, + "name": "1.2 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177690, + "fields": { + "id_car_serie": 3888, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177691, + "fields": { + "id_car_serie": 3888, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177694, + "fields": { + "id_car_serie": 3888, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177695, + "fields": { + "id_car_serie": 3888, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177696, + "fields": { + "id_car_serie": 3888, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177697, + "fields": { + "id_car_serie": 3888, + "name": "1.6 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177698, + "fields": { + "id_car_serie": 3888, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177699, + "fields": { + "id_car_serie": 3888, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177700, + "fields": { + "id_car_serie": 3888, + "name": "1.6 Twinport AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177701, + "fields": { + "id_car_serie": 3888, + "name": "1.6 Twinport MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177703, + "fields": { + "id_car_serie": 3888, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177704, + "fields": { + "id_car_serie": 3888, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177705, + "fields": { + "id_car_serie": 3888, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177706, + "fields": { + "id_car_serie": 3888, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177707, + "fields": { + "id_car_serie": 3888, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177708, + "fields": { + "id_car_serie": 3888, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177709, + "fields": { + "id_car_serie": 3888, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177710, + "fields": { + "id_car_serie": 3888, + "name": "1.7 DTi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177711, + "fields": { + "id_car_serie": 3888, + "name": "1.7 CDTi MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177712, + "fields": { + "id_car_serie": 3888, + "name": "1.7 DTI Eco4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177713, + "fields": { + "id_car_serie": 3888, + "name": "2.0 Di MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177714, + "fields": { + "id_car_serie": 3888, + "name": "2.0 Di AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177716, + "fields": { + "id_car_serie": 3888, + "name": "2.2 DTi MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177717, + "fields": { + "id_car_serie": 3895, + "name": "1.2 LPG ecoFLEX MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177718, + "fields": { + "id_car_serie": 3895, + "name": "1.2 ecoFLEX Easytronic (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177719, + "fields": { + "id_car_serie": 3896, + "name": "1.2 LPG ecoFLEX MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177720, + "fields": { + "id_car_serie": 3896, + "name": "1.2 ecoFLEX Easytronic (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177728, + "fields": { + "id_car_serie": 3950, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177731, + "fields": { + "id_car_serie": 3951, + "name": "1.6 HDi MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177732, + "fields": { + "id_car_serie": 3954, + "name": "1.6 THP AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177748, + "fields": { + "id_car_serie": 4029, + "name": "3.0 MT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177749, + "fields": { + "id_car_serie": 4029, + "name": "3.0 PDK (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177750, + "fields": { + "id_car_serie": 4029, + "name": "4 3.0 MT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177751, + "fields": { + "id_car_serie": 4029, + "name": "4 3.0 PDK (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177752, + "fields": { + "id_car_serie": 4029, + "name": "S 3.0 MT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177753, + "fields": { + "id_car_serie": 4029, + "name": "S 3.0 PDK (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177754, + "fields": { + "id_car_serie": 4029, + "name": "4S 3.0 MT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177755, + "fields": { + "id_car_serie": 4029, + "name": "4S 3.0 PDK (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177774, + "fields": { + "id_car_serie": 4068, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177776, + "fields": { + "id_car_serie": 4068, + "name": "1.6 X-tronic (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177792, + "fields": { + "id_car_serie": 4078, + "name": "2.0 CVT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177793, + "fields": { + "id_car_serie": 4078, + "name": "2.0 TCe MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177797, + "fields": { + "id_car_serie": 4087, + "name": "6.7 AT (453 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177798, + "fields": { + "id_car_serie": 4089, + "name": "6.7 AT SWB (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177806, + "fields": { + "id_car_serie": 4116, + "name": "2.3 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177807, + "fields": { + "id_car_serie": 4116, + "name": "2.3 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177826, + "fields": { + "id_car_serie": 4129, + "name": "2.4 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177827, + "fields": { + "id_car_serie": 4539, + "name": "2.0 D3 Drive-E MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177837, + "fields": { + "id_car_serie": 4539, + "name": "2.0 D4 Geartronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177855, + "fields": { + "id_car_serie": 4146, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177856, + "fields": { + "id_car_serie": 4146, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177858, + "fields": { + "id_car_serie": 4146, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177859, + "fields": { + "id_car_serie": 4146, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177860, + "fields": { + "id_car_serie": 4146, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177861, + "fields": { + "id_car_serie": 4146, + "name": "1.4 TDI MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177862, + "fields": { + "id_car_serie": 4146, + "name": "1.4 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177863, + "fields": { + "id_car_serie": 4146, + "name": "1.9 SDI MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177864, + "fields": { + "id_car_serie": 4146, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177865, + "fields": { + "id_car_serie": 4146, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177871, + "fields": { + "id_car_serie": 4157, + "name": "1.4 TDI MT GreenLine (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177901, + "fields": { + "id_car_serie": 4165, + "name": "1.6 TDI MT Green tec (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177908, + "fields": { + "id_car_serie": 4166, + "name": "1.8 TSI MT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177913, + "fields": { + "id_car_serie": 4167, + "name": "1.8 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177939, + "fields": { + "id_car_serie": 4180, + "name": "2.0 Xdi T-Tronic (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177944, + "fields": { + "id_car_serie": 46931, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177961, + "fields": { + "id_car_serie": 4190, + "name": "2.5 Sport Lineartronic AWD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 177978, + "fields": { + "id_car_serie": 4202, + "name": "1.9 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178024, + "fields": { + "id_car_serie": 4334, + "name": "1.6 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178025, + "fields": { + "id_car_serie": 4334, + "name": "1.8 AT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178026, + "fields": { + "id_car_serie": 4334, + "name": "1.8 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178027, + "fields": { + "id_car_serie": 4334, + "name": "2.3 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178028, + "fields": { + "id_car_serie": 4334, + "name": "2.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178029, + "fields": { + "id_car_serie": 4340, + "name": "1.6 BlueMotion TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178030, + "fields": { + "id_car_serie": 4340, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178032, + "fields": { + "id_car_serie": 4341, + "name": "1.6 TDI BlueMotion AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178080, + "fields": { + "id_car_serie": 4361, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178081, + "fields": { + "id_car_serie": 4361, + "name": "1.2 TSI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178101, + "fields": { + "id_car_serie": 4374, + "name": "AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178102, + "fields": { + "id_car_serie": 4409, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178103, + "fields": { + "id_car_serie": 4409, + "name": "1.3 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178105, + "fields": { + "id_car_serie": 4419, + "name": "4.6 AT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178106, + "fields": { + "id_car_serie": 4419, + "name": "4.6 AT Long (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178143, + "fields": { + "id_car_serie": 4502, + "name": "3.5 Xtronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178149, + "fields": { + "id_car_serie": 4503, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178155, + "fields": { + "id_car_serie": 4504, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178167, + "fields": { + "id_car_serie": 4511, + "name": "2.5 MT AWD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178186, + "fields": { + "id_car_serie": 4534, + "name": "2.5 T5 Turbo MT AWD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178198, + "fields": { + "id_car_serie": 4535, + "name": "1.6 T4F Flexifuel Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178205, + "fields": { + "id_car_serie": 4535, + "name": "1.6 T4F Flexifuel Turbo Powershift (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178214, + "fields": { + "id_car_serie": 4538, + "name": "2.0 D3 Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178215, + "fields": { + "id_car_serie": 4538, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178217, + "fields": { + "id_car_serie": 4538, + "name": "2.0 D MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178218, + "fields": { + "id_car_serie": 4538, + "name": "2.5 FT MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178219, + "fields": { + "id_car_serie": 4538, + "name": "2.5 T AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178224, + "fields": { + "id_car_serie": 4538, + "name": "2.5 FT MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178226, + "fields": { + "id_car_serie": 4538, + "name": "2.5 FT Geartronic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178240, + "fields": { + "id_car_serie": 4540, + "name": "2.0 D3 Drive-E MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178264, + "fields": { + "id_car_serie": 4561, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178266, + "fields": { + "id_car_serie": 4561, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178268, + "fields": { + "id_car_serie": 4562, + "name": "1.6 MT 8 valves (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178272, + "fields": { + "id_car_serie": 4562, + "name": "1.6 MT 16 valves (2181) (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178274, + "fields": { + "id_car_serie": 4562, + "name": "1.6 AMT 16 valves (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178276, + "fields": { + "id_car_serie": 4564, + "name": "1.6 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178293, + "fields": { + "id_car_serie": 4605, + "name": "31512-10 2.4 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178294, + "fields": { + "id_car_serie": 4605, + "name": "315122 2.4 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178295, + "fields": { + "id_car_serie": 4605, + "name": "31512 2.4 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178296, + "fields": { + "id_car_serie": 4605, + "name": "3151 2.4 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178297, + "fields": { + "id_car_serie": 4605, + "name": "315122-10 2.4 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178298, + "fields": { + "id_car_serie": 4605, + "name": "315128-10 D 2.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178302, + "fields": { + "id_car_serie": 4609, + "name": "2.9 MT 4WD (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178303, + "fields": { + "id_car_serie": 4611, + "name": "2.7 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178313, + "fields": { + "id_car_serie": 4616, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178314, + "fields": { + "id_car_serie": 4616, + "name": "1.6 MT AWD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178317, + "fields": { + "id_car_serie": 4616, + "name": "2.0 MT AWD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178318, + "fields": { + "id_car_serie": 4616, + "name": "2.0 AT AWD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178345, + "fields": { + "id_car_serie": 4653, + "name": "3.2 AT (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178351, + "fields": { + "id_car_serie": 5744, + "name": "1.8 MT Ecotec (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178352, + "fields": { + "id_car_serie": 5737, + "name": "2.2 Hydra-Matic (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178353, + "fields": { + "id_car_serie": 5737, + "name": "3.5 Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178357, + "fields": { + "id_car_serie": 9145, + "name": "0.7 AT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178359, + "fields": { + "id_car_serie": 9145, + "name": "0.7 AT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178360, + "fields": { + "id_car_serie": 9145, + "name": "0.7 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178363, + "fields": { + "id_car_serie": 9145, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178387, + "fields": { + "id_car_serie": 5692, + "name": "1.2 LPG MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178388, + "fields": { + "id_car_serie": 5692, + "name": "1.4 LPG MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178394, + "fields": { + "id_car_serie": 5692, + "name": "1.4 LPG AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178396, + "fields": { + "id_car_serie": 5691, + "name": "1.2 LPG MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178399, + "fields": { + "id_car_serie": 5691, + "name": "1.4 LPG MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178400, + "fields": { + "id_car_serie": 5691, + "name": "1.4 LPG AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178401, + "fields": { + "id_car_serie": 5690, + "name": "1.2 LPG MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178404, + "fields": { + "id_car_serie": 5690, + "name": "1.4 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178405, + "fields": { + "id_car_serie": 5690, + "name": "1.4 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178410, + "fields": { + "id_car_serie": 5690, + "name": "1.4 LPG AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178411, + "fields": { + "id_car_serie": 8423, + "name": "1.1 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178421, + "fields": { + "id_car_serie": 8427, + "name": "2.2 TD AT (5 places) (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178426, + "fields": { + "id_car_serie": 5670, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178427, + "fields": { + "id_car_serie": 8314, + "name": "2.0 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178428, + "fields": { + "id_car_serie": 8314, + "name": "2.0 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178429, + "fields": { + "id_car_serie": 8314, + "name": "2.0 MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178430, + "fields": { + "id_car_serie": 5661, + "name": "4.6 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178431, + "fields": { + "id_car_serie": 5661, + "name": "4.6 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178432, + "fields": { + "id_car_serie": 5661, + "name": "3.6 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178464, + "fields": { + "id_car_serie": 8833, + "name": "2.1 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178465, + "fields": { + "id_car_serie": 8833, + "name": "3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178468, + "fields": { + "id_car_serie": 8833, + "name": "3.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178471, + "fields": { + "id_car_serie": 4912, + "name": "CVT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178473, + "fields": { + "id_car_serie": 4912, + "name": "CVT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178475, + "fields": { + "id_car_serie": 4916, + "name": "0.8 AT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178477, + "fields": { + "id_car_serie": 5470, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178478, + "fields": { + "id_car_serie": 5470, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178483, + "fields": { + "id_car_serie": 5470, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178484, + "fields": { + "id_car_serie": 5470, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178485, + "fields": { + "id_car_serie": 5470, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178486, + "fields": { + "id_car_serie": 5470, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178487, + "fields": { + "id_car_serie": 5622, + "name": "3.9 AT (227 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178488, + "fields": { + "id_car_serie": 5622, + "name": "4.6 AT (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178503, + "fields": { + "id_car_serie": 8825, + "name": "2.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178512, + "fields": { + "id_car_serie": 8825, + "name": "3.5 AT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178517, + "fields": { + "id_car_serie": 8825, + "name": "2.1 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178518, + "fields": { + "id_car_serie": 8825, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178519, + "fields": { + "id_car_serie": 8825, + "name": "2.1 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178521, + "fields": { + "id_car_serie": 8825, + "name": "2.1 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178615, + "fields": { + "id_car_serie": 8840, + "name": "3.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178625, + "fields": { + "id_car_serie": 8840, + "name": "2.1 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178630, + "fields": { + "id_car_serie": 8840, + "name": "4.0 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178652, + "fields": { + "id_car_serie": 5552, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178653, + "fields": { + "id_car_serie": 5547, + "name": "6.0 W12 AWD AT (625 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178654, + "fields": { + "id_car_serie": 5539, + "name": "2.4 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178655, + "fields": { + "id_car_serie": 5539, + "name": "2.4 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178657, + "fields": { + "id_car_serie": 5528, + "name": "1.8 TFSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178662, + "fields": { + "id_car_serie": 5520, + "name": "4.2 V8 quattro AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178663, + "fields": { + "id_car_serie": 5520, + "name": "4.2 quattro MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178674, + "fields": { + "id_car_serie": 8834, + "name": "4.0 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178675, + "fields": { + "id_car_serie": 8839, + "name": "5.0 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178676, + "fields": { + "id_car_serie": 8839, + "name": "6.0 AT (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178679, + "fields": { + "id_car_serie": 5496, + "name": "2.0 TDI S tronic quattro (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178683, + "fields": { + "id_car_serie": 5488, + "name": "1.8 T MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178685, + "fields": { + "id_car_serie": 5488, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178686, + "fields": { + "id_car_serie": 5488, + "name": "2.0 multitronic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178687, + "fields": { + "id_car_serie": 5488, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178688, + "fields": { + "id_car_serie": 5488, + "name": "2.4 tiptronic quattro (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178689, + "fields": { + "id_car_serie": 5488, + "name": "2.4 MT quattro (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178690, + "fields": { + "id_car_serie": 5488, + "name": "2.4 multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178691, + "fields": { + "id_car_serie": 5488, + "name": "2.7 T MT quattro (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178692, + "fields": { + "id_car_serie": 5488, + "name": "2.7 T tiptronic quattro (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178693, + "fields": { + "id_car_serie": 5488, + "name": "3.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178694, + "fields": { + "id_car_serie": 5488, + "name": "3.0 tiptronic quattro (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178695, + "fields": { + "id_car_serie": 5488, + "name": "3.0 MT quattro (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178696, + "fields": { + "id_car_serie": 5488, + "name": "3.0 multitronic (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178697, + "fields": { + "id_car_serie": 5488, + "name": "4.2 tiptronic quattro (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178698, + "fields": { + "id_car_serie": 5488, + "name": "1.9 TDI 5MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178699, + "fields": { + "id_car_serie": 5488, + "name": "1.9 TDI 6MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178700, + "fields": { + "id_car_serie": 5488, + "name": "2.5 TDI MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178701, + "fields": { + "id_car_serie": 5488, + "name": "2.5 TDI multitronic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178702, + "fields": { + "id_car_serie": 5488, + "name": "2.5 TDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178703, + "fields": { + "id_car_serie": 5488, + "name": "2.5 TDI multitronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178704, + "fields": { + "id_car_serie": 5488, + "name": "2.5 TDI tiptronic quattro (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178705, + "fields": { + "id_car_serie": 5488, + "name": "2.5 TDI MT quattro (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178706, + "fields": { + "id_car_serie": 5488, + "name": "2.5 TDI MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178707, + "fields": { + "id_car_serie": 5488, + "name": "2.5 TDI tiptronic quattro (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178708, + "fields": { + "id_car_serie": 5488, + "name": "2.5 TDI tiptronic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178709, + "fields": { + "id_car_serie": 5488, + "name": "2.5 TDI MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178711, + "fields": { + "id_car_serie": 5482, + "name": "3.0 TDI CSF MT quattro (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178712, + "fields": { + "id_car_serie": 8838, + "name": "2.8 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178720, + "fields": { + "id_car_serie": 8838, + "name": "3.2 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178721, + "fields": { + "id_car_serie": 8838, + "name": "4.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178722, + "fields": { + "id_car_serie": 5478, + "name": "1.8 TFSI MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178723, + "fields": { + "id_car_serie": 5478, + "name": "1.8 TFSI multitronic (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178724, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TFSI MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178725, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TFSI quattro S tronic (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178726, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TFSI quattro MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178727, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TFSI multitronic (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178728, + "fields": { + "id_car_serie": 5478, + "name": "3.0 TFSI S tronic quattro (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178750, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TFSI MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178751, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TFSI MT quattro (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178752, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TFSI S tronic quattro (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178753, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TFSI multitronic (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178754, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178755, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TDI S tronic quattro (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178756, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TDI multitronic (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178757, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TDI MT quattro (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178758, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TDI MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178759, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TDI S tronic quattro (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178760, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TDI multitronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178761, + "fields": { + "id_car_serie": 5478, + "name": "2.0 TDI MT quattro (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178762, + "fields": { + "id_car_serie": 5478, + "name": "3.0 TDI MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178763, + "fields": { + "id_car_serie": 5478, + "name": "3.0 TDI multitronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178765, + "fields": { + "id_car_serie": 5478, + "name": "3.0 TDI S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178766, + "fields": { + "id_car_serie": 5478, + "name": "3.0 TDI MT quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178767, + "fields": { + "id_car_serie": 5478, + "name": "3.0 TDI clean diesel S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178768, + "fields": { + "id_car_serie": 5474, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178769, + "fields": { + "id_car_serie": 5474, + "name": "1.6 Tiptronic (102 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178771, + "fields": { + "id_car_serie": 5474, + "name": "1.6 FSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178772, + "fields": { + "id_car_serie": 5474, + "name": "3.2 MT Quattro (250 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178774, + "fields": { + "id_car_serie": 5474, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178776, + "fields": { + "id_car_serie": 5474, + "name": "2.0 TDI S-tronic (140 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178777, + "fields": { + "id_car_serie": 5474, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178780, + "fields": { + "id_car_serie": 5465, + "name": "1.8 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178784, + "fields": { + "id_car_serie": 8325, + "name": "5.9 V12 MT (477 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178785, + "fields": { + "id_car_serie": 8325, + "name": "5.9 V12 AT (477 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178786, + "fields": { + "id_car_serie": 5428, + "name": "1.4 TCT MultiAir (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178789, + "fields": { + "id_car_serie": 5358, + "name": "2.0 TDCi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178790, + "fields": { + "id_car_serie": 5358, + "name": "2.0 TDCi MT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178791, + "fields": { + "id_car_serie": 5358, + "name": "2.5 MT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178792, + "fields": { + "id_car_serie": 10719, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178793, + "fields": { + "id_car_serie": 10719, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178795, + "fields": { + "id_car_serie": 5369, + "name": "3.2 TD MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178796, + "fields": { + "id_car_serie": 5369, + "name": "2.2 TD MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178797, + "fields": { + "id_car_serie": 5369, + "name": "2.2 TD MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178798, + "fields": { + "id_car_serie": 5369, + "name": "3.2 TD AT 4x4 (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178799, + "fields": { + "id_car_serie": 5369, + "name": "2.5 MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178800, + "fields": { + "id_car_serie": 5370, + "name": "2.2 TD MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178801, + "fields": { + "id_car_serie": 5370, + "name": "3.2 TD MT 4x4 (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178805, + "fields": { + "id_car_serie": 5370, + "name": "2.2 TD AT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178806, + "fields": { + "id_car_serie": 5370, + "name": "3.2 TD AT 4x4 (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178807, + "fields": { + "id_car_serie": 5370, + "name": "2.5 MT 4x4 (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178821, + "fields": { + "id_car_serie": 5375, + "name": "2.0 TDCi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178822, + "fields": { + "id_car_serie": 5375, + "name": "2.0 TDCi MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178825, + "fields": { + "id_car_serie": 5375, + "name": "2.0 EuroV MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178832, + "fields": { + "id_car_serie": 5378, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178833, + "fields": { + "id_car_serie": 5378, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178834, + "fields": { + "id_car_serie": 5378, + "name": "2.3 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178835, + "fields": { + "id_car_serie": 5378, + "name": "2.3 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178836, + "fields": { + "id_car_serie": 5378, + "name": "2.9 Cosworth AT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178837, + "fields": { + "id_car_serie": 5378, + "name": "2.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178839, + "fields": { + "id_car_serie": 5763, + "name": "5.3 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178840, + "fields": { + "id_car_serie": 5763, + "name": "5.3 AT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178841, + "fields": { + "id_car_serie": 8473, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178842, + "fields": { + "id_car_serie": 8473, + "name": "1.6 THP MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178843, + "fields": { + "id_car_serie": 8473, + "name": "1.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178844, + "fields": { + "id_car_serie": 8473, + "name": "2.0 Hdi T AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178845, + "fields": { + "id_car_serie": 8473, + "name": "2.9 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178846, + "fields": { + "id_car_serie": 8473, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178847, + "fields": { + "id_car_serie": 8473, + "name": "2.0 Hdi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178848, + "fields": { + "id_car_serie": 8473, + "name": "2.0 Hdi AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178849, + "fields": { + "id_car_serie": 8473, + "name": "2.0 Hdi MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178850, + "fields": { + "id_car_serie": 8473, + "name": "2.0 Hdi AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178851, + "fields": { + "id_car_serie": 8473, + "name": "2.2 Hdi T AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178852, + "fields": { + "id_car_serie": 8473, + "name": "2.7 Hdi MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178853, + "fields": { + "id_car_serie": 8473, + "name": "3.0 Hdi AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178855, + "fields": { + "id_car_serie": 5809, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178856, + "fields": { + "id_car_serie": 5809, + "name": "1.6 eHDi T AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178857, + "fields": { + "id_car_serie": 5809, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178859, + "fields": { + "id_car_serie": 5809, + "name": "1.6 (120 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178861, + "fields": { + "id_car_serie": 5809, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178887, + "fields": { + "id_car_serie": 5835, + "name": "1.5 D MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178906, + "fields": { + "id_car_serie": 5904, + "name": "1.0 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178916, + "fields": { + "id_car_serie": 5922, + "name": "1.6 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178917, + "fields": { + "id_car_serie": 5922, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178921, + "fields": { + "id_car_serie": 5938, + "name": "2.0 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178949, + "fields": { + "id_car_serie": 9102, + "name": "1.8 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178952, + "fields": { + "id_car_serie": 9102, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178958, + "fields": { + "id_car_serie": 6077, + "name": "1.8 Flexi-fuel MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178959, + "fields": { + "id_car_serie": 6077, + "name": "2.0 CNG MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178960, + "fields": { + "id_car_serie": 6077, + "name": "2.0 LPG MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178966, + "fields": { + "id_car_serie": 6086, + "name": "2.5 eCVT 4WD (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178967, + "fields": { + "id_car_serie": 6086, + "name": "2.5 eCVT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178968, + "fields": { + "id_car_serie": 6095, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178969, + "fields": { + "id_car_serie": 6095, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178970, + "fields": { + "id_car_serie": 6096, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178973, + "fields": { + "id_car_serie": 6096, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178974, + "fields": { + "id_car_serie": 6096, + "name": "1.8 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178975, + "fields": { + "id_car_serie": 6096, + "name": "1.8 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178976, + "fields": { + "id_car_serie": 6097, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178977, + "fields": { + "id_car_serie": 6097, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178978, + "fields": { + "id_car_serie": 6097, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178980, + "fields": { + "id_car_serie": 6097, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178981, + "fields": { + "id_car_serie": 6097, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178984, + "fields": { + "id_car_serie": 6097, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178987, + "fields": { + "id_car_serie": 6099, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178988, + "fields": { + "id_car_serie": 6099, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178989, + "fields": { + "id_car_serie": 6101, + "name": "1.1 5MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178990, + "fields": { + "id_car_serie": 6101, + "name": "1.3 5MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178991, + "fields": { + "id_car_serie": 6101, + "name": "1.6 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178992, + "fields": { + "id_car_serie": 6101, + "name": "1.6 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178993, + "fields": { + "id_car_serie": 6101, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178994, + "fields": { + "id_car_serie": 6104, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178995, + "fields": { + "id_car_serie": 6104, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178997, + "fields": { + "id_car_serie": 6107, + "name": "1.3 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178998, + "fields": { + "id_car_serie": 6107, + "name": "1.3 4MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 178999, + "fields": { + "id_car_serie": 6107, + "name": "1.4 4MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179000, + "fields": { + "id_car_serie": 6107, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179001, + "fields": { + "id_car_serie": 6107, + "name": "1.6 MT XR3i (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179002, + "fields": { + "id_car_serie": 6107, + "name": "1.6 MT XR3i (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179003, + "fields": { + "id_car_serie": 6107, + "name": "1.8 MT XR3 alc. (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179005, + "fields": { + "id_car_serie": 6120, + "name": "4.0 AT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179006, + "fields": { + "id_car_serie": 6120, + "name": "4.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179007, + "fields": { + "id_car_serie": 6120, + "name": "4.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179008, + "fields": { + "id_car_serie": 6120, + "name": "4.0 AT 4x4 (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179009, + "fields": { + "id_car_serie": 6120, + "name": "4.0 MT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179018, + "fields": { + "id_car_serie": 6122, + "name": "4.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179019, + "fields": { + "id_car_serie": 6122, + "name": "4.0 AT 4x4 (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179020, + "fields": { + "id_car_serie": 6122, + "name": "4.9 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179021, + "fields": { + "id_car_serie": 6122, + "name": "4.9 AT 4x4 (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179022, + "fields": { + "id_car_serie": 6122, + "name": "4.9 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179023, + "fields": { + "id_car_serie": 6122, + "name": "4.9 AT 4x4 (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179031, + "fields": { + "id_car_serie": 6123, + "name": "4.6 AT (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179034, + "fields": { + "id_car_serie": 6123, + "name": "5.4 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179043, + "fields": { + "id_car_serie": 6128, + "name": "4.2 AT (217 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179044, + "fields": { + "id_car_serie": 6128, + "name": "5.4 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179047, + "fields": { + "id_car_serie": 6129, + "name": "5.4 AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179048, + "fields": { + "id_car_serie": 6129, + "name": "5.4 AT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179051, + "fields": { + "id_car_serie": 6129, + "name": "5.4 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179052, + "fields": { + "id_car_serie": 6134, + "name": "1.4 LPG MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179053, + "fields": { + "id_car_serie": 6134, + "name": "1.4 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179055, + "fields": { + "id_car_serie": 6134, + "name": "1.6 Mountune MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179057, + "fields": { + "id_car_serie": 6134, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179064, + "fields": { + "id_car_serie": 6135, + "name": "1.4 LPG MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179066, + "fields": { + "id_car_serie": 6135, + "name": "1.6 Zetec-S Mountune MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179070, + "fields": { + "id_car_serie": 6136, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179071, + "fields": { + "id_car_serie": 6136, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179075, + "fields": { + "id_car_serie": 6137, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179080, + "fields": { + "id_car_serie": 6146, + "name": "1.6 TDCi MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179083, + "fields": { + "id_car_serie": 6146, + "name": "2.0 TDCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179101, + "fields": { + "id_car_serie": 6147, + "name": "1.6 TDCi MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179102, + "fields": { + "id_car_serie": 6147, + "name": "1.8 FlexiFuel MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179124, + "fields": { + "id_car_serie": 6149, + "name": "1.8 FlexiFuel MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179148, + "fields": { + "id_car_serie": 6157, + "name": "1.8 FlexiFuel MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179165, + "fields": { + "id_car_serie": 6161, + "name": "1.8 FlexiFuel MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179174, + "fields": { + "id_car_serie": 6178, + "name": "2.0 MT FlexiFuel (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179176, + "fields": { + "id_car_serie": 6178, + "name": "2.0 TDCi MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179183, + "fields": { + "id_car_serie": 6190, + "name": "2.0 TDCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179185, + "fields": { + "id_car_serie": 6190, + "name": "2.0 TDCi DPF MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179187, + "fields": { + "id_car_serie": 6190, + "name": "2.0 Flexifuel MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179189, + "fields": { + "id_car_serie": 6190, + "name": "2.0 TDCi MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179192, + "fields": { + "id_car_serie": 6190, + "name": "2.0 TDCi Powershift (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179195, + "fields": { + "id_car_serie": 6201, + "name": "3.7 MT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179196, + "fields": { + "id_car_serie": 6201, + "name": "3.7 AT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179200, + "fields": { + "id_car_serie": 6201, + "name": "GT 5.0 AT (418 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179201, + "fields": { + "id_car_serie": 6201, + "name": "GT 5.0 MT (418 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179203, + "fields": { + "id_car_serie": 6203, + "name": "4.0 MT (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179205, + "fields": { + "id_car_serie": 6203, + "name": "4.6 MT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179208, + "fields": { + "id_car_serie": 6204, + "name": "4.0 MT (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179211, + "fields": { + "id_car_serie": 6204, + "name": "GT 4.6 MT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179229, + "fields": { + "id_car_serie": 6207, + "name": "3.8 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179231, + "fields": { + "id_car_serie": 6207, + "name": "3.8 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179233, + "fields": { + "id_car_serie": 6207, + "name": "4.6 Cobra MT (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179234, + "fields": { + "id_car_serie": 6207, + "name": "GT 4.6 MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179235, + "fields": { + "id_car_serie": 6207, + "name": "4.6 MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179238, + "fields": { + "id_car_serie": 6208, + "name": "3.8 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179240, + "fields": { + "id_car_serie": 6208, + "name": "GT 4.6 AT (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179241, + "fields": { + "id_car_serie": 6208, + "name": "GT 4.6 MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179252, + "fields": { + "id_car_serie": 6257, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179258, + "fields": { + "id_car_serie": 10801, + "name": "2.0 AT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179260, + "fields": { + "id_car_serie": 6297, + "name": "2.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179261, + "fields": { + "id_car_serie": 6298, + "name": "2.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179262, + "fields": { + "id_car_serie": 6298, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179269, + "fields": { + "id_car_serie": 6303, + "name": "Type S 2.4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179270, + "fields": { + "id_car_serie": 6303, + "name": "Type S 2.4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179275, + "fields": { + "id_car_serie": 6305, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179276, + "fields": { + "id_car_serie": 6305, + "name": "2.2 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179277, + "fields": { + "id_car_serie": 6305, + "name": "2.2 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179279, + "fields": { + "id_car_serie": 6306, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179280, + "fields": { + "id_car_serie": 6306, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179285, + "fields": { + "id_car_serie": 6306, + "name": "Type S 2.4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179286, + "fields": { + "id_car_serie": 6306, + "name": "Type S 2.4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179287, + "fields": { + "id_car_serie": 6307, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179288, + "fields": { + "id_car_serie": 6307, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179289, + "fields": { + "id_car_serie": 6307, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179292, + "fields": { + "id_car_serie": 6307, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179293, + "fields": { + "id_car_serie": 6307, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179294, + "fields": { + "id_car_serie": 6307, + "name": "2.0 AT CF9 (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179298, + "fields": { + "id_car_serie": 6307, + "name": "Type R 2.2 MT (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179301, + "fields": { + "id_car_serie": 6308, + "name": "2.0 MT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179302, + "fields": { + "id_car_serie": 6308, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179308, + "fields": { + "id_car_serie": 6310, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179310, + "fields": { + "id_car_serie": 6310, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179311, + "fields": { + "id_car_serie": 6310, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179316, + "fields": { + "id_car_serie": 6310, + "name": "2.3 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179319, + "fields": { + "id_car_serie": 6313, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179320, + "fields": { + "id_car_serie": 6313, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179321, + "fields": { + "id_car_serie": 6313, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179325, + "fields": { + "id_car_serie": 6313, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179327, + "fields": { + "id_car_serie": 6313, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179331, + "fields": { + "id_car_serie": 6315, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179332, + "fields": { + "id_car_serie": 6315, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179333, + "fields": { + "id_car_serie": 6315, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179334, + "fields": { + "id_car_serie": 6315, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179335, + "fields": { + "id_car_serie": 6315, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179336, + "fields": { + "id_car_serie": 6315, + "name": "2.0 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179337, + "fields": { + "id_car_serie": 6315, + "name": "2.0 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179338, + "fields": { + "id_car_serie": 6315, + "name": "2.0 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179339, + "fields": { + "id_car_serie": 6315, + "name": "2.0 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179340, + "fields": { + "id_car_serie": 6315, + "name": "2.0 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179341, + "fields": { + "id_car_serie": 6315, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179342, + "fields": { + "id_car_serie": 6315, + "name": "2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179343, + "fields": { + "id_car_serie": 6315, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179344, + "fields": { + "id_car_serie": 6315, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179345, + "fields": { + "id_car_serie": 6318, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179346, + "fields": { + "id_car_serie": 6318, + "name": "1.6 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179347, + "fields": { + "id_car_serie": 6318, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179348, + "fields": { + "id_car_serie": 6318, + "name": "1.8 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179357, + "fields": { + "id_car_serie": 6331, + "name": "2.4 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179358, + "fields": { + "id_car_serie": 6332, + "name": "1.8 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179361, + "fields": { + "id_car_serie": 6332, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179362, + "fields": { + "id_car_serie": 6332, + "name": "1.8 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179363, + "fields": { + "id_car_serie": 6332, + "name": "1.6 i-DTEC MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179364, + "fields": { + "id_car_serie": 6332, + "name": "2.2 i-DTEC MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179374, + "fields": { + "id_car_serie": 6336, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179375, + "fields": { + "id_car_serie": 6336, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179377, + "fields": { + "id_car_serie": 6337, + "name": "1.8 I-SHIFT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179380, + "fields": { + "id_car_serie": 6337, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179383, + "fields": { + "id_car_serie": 6337, + "name": "2.2 CTDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179384, + "fields": { + "id_car_serie": 6340, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179385, + "fields": { + "id_car_serie": 6340, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179386, + "fields": { + "id_car_serie": 6340, + "name": "1.7 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179387, + "fields": { + "id_car_serie": 6341, + "name": "1.8 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179388, + "fields": { + "id_car_serie": 6341, + "name": "1.8 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179390, + "fields": { + "id_car_serie": 6342, + "name": "1.8 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179392, + "fields": { + "id_car_serie": 6342, + "name": "1.8 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179396, + "fields": { + "id_car_serie": 6339, + "name": "1.5 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179397, + "fields": { + "id_car_serie": 6339, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179398, + "fields": { + "id_car_serie": 6339, + "name": "1.6 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179399, + "fields": { + "id_car_serie": 6339, + "name": "1.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179410, + "fields": { + "id_car_serie": 6344, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179414, + "fields": { + "id_car_serie": 6345, + "name": "1.7 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179415, + "fields": { + "id_car_serie": 6345, + "name": "1.7 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179433, + "fields": { + "id_car_serie": 6348, + "name": "1.5 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179434, + "fields": { + "id_car_serie": 6348, + "name": "1.5 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179435, + "fields": { + "id_car_serie": 6348, + "name": "1.5 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179436, + "fields": { + "id_car_serie": 6348, + "name": "1.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179438, + "fields": { + "id_car_serie": 6348, + "name": "1.6 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179439, + "fields": { + "id_car_serie": 6351, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179440, + "fields": { + "id_car_serie": 6351, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179441, + "fields": { + "id_car_serie": 6351, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179442, + "fields": { + "id_car_serie": 6351, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179443, + "fields": { + "id_car_serie": 6351, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179444, + "fields": { + "id_car_serie": 6351, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179445, + "fields": { + "id_car_serie": 6351, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179446, + "fields": { + "id_car_serie": 6351, + "name": "1.6 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179447, + "fields": { + "id_car_serie": 6351, + "name": "1.6 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179448, + "fields": { + "id_car_serie": 6351, + "name": "1.6 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179449, + "fields": { + "id_car_serie": 6351, + "name": "1.6 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179450, + "fields": { + "id_car_serie": 6351, + "name": "1.6 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179451, + "fields": { + "id_car_serie": 6351, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179455, + "fields": { + "id_car_serie": 6353, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179456, + "fields": { + "id_car_serie": 6353, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179457, + "fields": { + "id_car_serie": 6353, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179458, + "fields": { + "id_car_serie": 6353, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179459, + "fields": { + "id_car_serie": 6353, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179460, + "fields": { + "id_car_serie": 6353, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179461, + "fields": { + "id_car_serie": 6353, + "name": "1.5 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179462, + "fields": { + "id_car_serie": 6353, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179464, + "fields": { + "id_car_serie": 6353, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179465, + "fields": { + "id_car_serie": 6353, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179466, + "fields": { + "id_car_serie": 6353, + "name": "1.6 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179467, + "fields": { + "id_car_serie": 6353, + "name": "1.6 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179479, + "fields": { + "id_car_serie": 6354, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179481, + "fields": { + "id_car_serie": 6354, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179482, + "fields": { + "id_car_serie": 6354, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179483, + "fields": { + "id_car_serie": 6354, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179484, + "fields": { + "id_car_serie": 6356, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179485, + "fields": { + "id_car_serie": 6356, + "name": "1.3 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179486, + "fields": { + "id_car_serie": 6356, + "name": "1.3 AT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179487, + "fields": { + "id_car_serie": 6356, + "name": "1.3 AT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179488, + "fields": { + "id_car_serie": 6356, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179495, + "fields": { + "id_car_serie": 8416, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179496, + "fields": { + "id_car_serie": 6386, + "name": "2.7 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179498, + "fields": { + "id_car_serie": 6388, + "name": "3.2 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179499, + "fields": { + "id_car_serie": 6388, + "name": "3.2 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179500, + "fields": { + "id_car_serie": 6388, + "name": "3.2 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179503, + "fields": { + "id_car_serie": 9082, + "name": "1.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179508, + "fields": { + "id_car_serie": 6436, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179509, + "fields": { + "id_car_serie": 47235, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179510, + "fields": { + "id_car_serie": 47235, + "name": "1.5 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179511, + "fields": { + "id_car_serie": 47235, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179512, + "fields": { + "id_car_serie": 47235, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179513, + "fields": { + "id_car_serie": 47235, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179514, + "fields": { + "id_car_serie": 47235, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179531, + "fields": { + "id_car_serie": 6445, + "name": "1.6 CRDi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179533, + "fields": { + "id_car_serie": 6446, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179534, + "fields": { + "id_car_serie": 6446, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179538, + "fields": { + "id_car_serie": 6452, + "name": "3.8 Shiftronic (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179545, + "fields": { + "id_car_serie": 6468, + "name": "2.2 CRDi AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179546, + "fields": { + "id_car_serie": 6468, + "name": "2.2 CRDi AT AWD (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179554, + "fields": { + "id_car_serie": 6473, + "name": "2.4 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179555, + "fields": { + "id_car_serie": 6474, + "name": "2.0 CRDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179569, + "fields": { + "id_car_serie": 6585, + "name": "3.0 TD AT (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179573, + "fields": { + "id_car_serie": 6617, + "name": "2.2 CRDi MT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179585, + "fields": { + "id_car_serie": 6621, + "name": "2.5 VGT AWD AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179586, + "fields": { + "id_car_serie": 6621, + "name": "2.5 CRDi AWD MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179592, + "fields": { + "id_car_serie": 6621, + "name": "3.3 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179593, + "fields": { + "id_car_serie": 6621, + "name": "3.3 4WD AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179594, + "fields": { + "id_car_serie": 6623, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179599, + "fields": { + "id_car_serie": 6625, + "name": "2.0 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179600, + "fields": { + "id_car_serie": 6625, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179601, + "fields": { + "id_car_serie": 6625, + "name": "2.0 TD AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179603, + "fields": { + "id_car_serie": 6625, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179605, + "fields": { + "id_car_serie": 6626, + "name": "2.0 CRDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179608, + "fields": { + "id_car_serie": 6626, + "name": "2.0 CRDi MT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179610, + "fields": { + "id_car_serie": 6635, + "name": "4.8 MT (1018 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179612, + "fields": { + "id_car_serie": 6659, + "name": "1.9 Multijet MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179615, + "fields": { + "id_car_serie": 6673, + "name": "3.9 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179616, + "fields": { + "id_car_serie": 6673, + "name": "3.9 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179617, + "fields": { + "id_car_serie": 6673, + "name": "3.9 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179618, + "fields": { + "id_car_serie": 6673, + "name": "3.9 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179619, + "fields": { + "id_car_serie": 6674, + "name": "3.9 MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179621, + "fields": { + "id_car_serie": 6674, + "name": "3.9 MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179641, + "fields": { + "id_car_serie": 9043, + "name": "2.9 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179643, + "fields": { + "id_car_serie": 9042, + "name": "1.5 dCi MT 4x4 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179648, + "fields": { + "id_car_serie": 9042, + "name": "1.6 MT 4WD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179671, + "fields": { + "id_car_serie": 6836, + "name": "2.3 MT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179672, + "fields": { + "id_car_serie": 6836, + "name": "2.3 AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179673, + "fields": { + "id_car_serie": 6856, + "name": "1.3 AT e-4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179680, + "fields": { + "id_car_serie": 6906, + "name": "1.6 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179681, + "fields": { + "id_car_serie": 6906, + "name": "1.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179683, + "fields": { + "id_car_serie": 6906, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179685, + "fields": { + "id_car_serie": 6906, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179686, + "fields": { + "id_car_serie": 6906, + "name": "1.6 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179687, + "fields": { + "id_car_serie": 6906, + "name": "2.1 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179701, + "fields": { + "id_car_serie": 6910, + "name": "3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179702, + "fields": { + "id_car_serie": 6910, + "name": "2.1 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179703, + "fields": { + "id_car_serie": 6910, + "name": "2.1 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179706, + "fields": { + "id_car_serie": 6910, + "name": "3.0 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179756, + "fields": { + "id_car_serie": 6913, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179760, + "fields": { + "id_car_serie": 6913, + "name": "1.8 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179774, + "fields": { + "id_car_serie": 6913, + "name": "2.1 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179775, + "fields": { + "id_car_serie": 6913, + "name": "2.1 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179782, + "fields": { + "id_car_serie": 6915, + "name": "1.8 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179783, + "fields": { + "id_car_serie": 6915, + "name": "1.8 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179784, + "fields": { + "id_car_serie": 6915, + "name": "1.8 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179785, + "fields": { + "id_car_serie": 6915, + "name": "1.8 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179787, + "fields": { + "id_car_serie": 6915, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179788, + "fields": { + "id_car_serie": 6915, + "name": "2.0 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179789, + "fields": { + "id_car_serie": 6915, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179790, + "fields": { + "id_car_serie": 6915, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179791, + "fields": { + "id_car_serie": 6915, + "name": "2.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179805, + "fields": { + "id_car_serie": 6915, + "name": "2.7 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179806, + "fields": { + "id_car_serie": 6915, + "name": "2.7 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179809, + "fields": { + "id_car_serie": 6918, + "name": "1.5 AMT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179813, + "fields": { + "id_car_serie": 6918, + "name": "2.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179849, + "fields": { + "id_car_serie": 6934, + "name": "1.6 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179850, + "fields": { + "id_car_serie": 6934, + "name": "1.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179870, + "fields": { + "id_car_serie": 6971, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179872, + "fields": { + "id_car_serie": 9016, + "name": "4 3.6 PDK AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179875, + "fields": { + "id_car_serie": 7005, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179876, + "fields": { + "id_car_serie": 7005, + "name": "2.0 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179877, + "fields": { + "id_car_serie": 7005, + "name": "2.0 MT ALL4 (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179878, + "fields": { + "id_car_serie": 7005, + "name": "2.0 AT ALL4 (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179879, + "fields": { + "id_car_serie": 7005, + "name": "2.0 D MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179880, + "fields": { + "id_car_serie": 7005, + "name": "2.0 D AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179881, + "fields": { + "id_car_serie": 7005, + "name": "2.0 D AT ALL4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179917, + "fields": { + "id_car_serie": 9010, + "name": "50th Anniversary Edition 3.8 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179921, + "fields": { + "id_car_serie": 9010, + "name": "4 3.4 PDK (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179922, + "fields": { + "id_car_serie": 9010, + "name": "3.4 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179923, + "fields": { + "id_car_serie": 9010, + "name": "3.4 PDK (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179924, + "fields": { + "id_car_serie": 9010, + "name": "4 3.4 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179927, + "fields": { + "id_car_serie": 9010, + "name": "S 3.8 PDK (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179928, + "fields": { + "id_car_serie": 9010, + "name": "S 3.8 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179929, + "fields": { + "id_car_serie": 9010, + "name": "4S 3.8 PDK (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179930, + "fields": { + "id_car_serie": 9010, + "name": "4S 3.8 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179933, + "fields": { + "id_car_serie": 7046, + "name": "2.0 T MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179934, + "fields": { + "id_car_serie": 9008, + "name": "4 3.6 PDK AWD (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179935, + "fields": { + "id_car_serie": 9008, + "name": "3.6 MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179936, + "fields": { + "id_car_serie": 9008, + "name": "3.6 PDK (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179937, + "fields": { + "id_car_serie": 9008, + "name": "4 3.6 MT AWD (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179938, + "fields": { + "id_car_serie": 9008, + "name": "GTS 3.8 MT (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179939, + "fields": { + "id_car_serie": 9008, + "name": "4 GTS 3.8 PDK (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179940, + "fields": { + "id_car_serie": 9008, + "name": "4 GTS 3.8 MT (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179941, + "fields": { + "id_car_serie": 9008, + "name": "GTS 3.8 PDK (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179945, + "fields": { + "id_car_serie": 9008, + "name": "S 3.8 MT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179946, + "fields": { + "id_car_serie": 9008, + "name": "4S 3.8 PDK AWD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179947, + "fields": { + "id_car_serie": 9008, + "name": "S 3.8 PDK (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179948, + "fields": { + "id_car_serie": 9008, + "name": "4S 3.8 MT AWD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179953, + "fields": { + "id_car_serie": 9004, + "name": "3.6 T MT (480 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179954, + "fields": { + "id_car_serie": 9004, + "name": "3.6 T PDK (480 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179966, + "fields": { + "id_car_serie": 7143, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 179970, + "fields": { + "id_car_serie": 7143, + "name": "1.8 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180038, + "fields": { + "id_car_serie": 48826, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180043, + "fields": { + "id_car_serie": 7281, + "name": "1.4 Turbo ecoFLEX MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180044, + "fields": { + "id_car_serie": 7281, + "name": "1.6 ecoFLEX MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180046, + "fields": { + "id_car_serie": 7281, + "name": "1.6 Turbo AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180047, + "fields": { + "id_car_serie": 7281, + "name": "1.4 ecoFLEX MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180048, + "fields": { + "id_car_serie": 7281, + "name": "1.4 Turbo MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180049, + "fields": { + "id_car_serie": 7281, + "name": "1.4 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180050, + "fields": { + "id_car_serie": 7281, + "name": "1.6 SIDI Turbo ecoFLEX MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180051, + "fields": { + "id_car_serie": 7281, + "name": "1.6 CDTI ecoFLEX MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180052, + "fields": { + "id_car_serie": 7281, + "name": "1.7 CDTI ecoFLEX MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180053, + "fields": { + "id_car_serie": 7281, + "name": "1.7 CDTI ecoFLEX A+ MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180055, + "fields": { + "id_car_serie": 7281, + "name": "2.0 CDTI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180056, + "fields": { + "id_car_serie": 7281, + "name": "2.0 CDTI AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180057, + "fields": { + "id_car_serie": 7281, + "name": "2.0 CDTI MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180059, + "fields": { + "id_car_serie": 7282, + "name": "1.6 Turbo AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180063, + "fields": { + "id_car_serie": 7282, + "name": "1.4 Turbo MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180064, + "fields": { + "id_car_serie": 7282, + "name": "1.6 SIDI Turbo MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180065, + "fields": { + "id_car_serie": 7282, + "name": "1.6 SIDI Turbo AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180066, + "fields": { + "id_car_serie": 7282, + "name": "1.6 Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180068, + "fields": { + "id_car_serie": 7282, + "name": "1.6 CDTI ecoFlex AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180069, + "fields": { + "id_car_serie": 7282, + "name": "1.7 CDTI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180070, + "fields": { + "id_car_serie": 7282, + "name": "1.7 CDTI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180072, + "fields": { + "id_car_serie": 7283, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180083, + "fields": { + "id_car_serie": 7286, + "name": "1.4 ecoFLEX MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180085, + "fields": { + "id_car_serie": 7286, + "name": "2.0 CDTI MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180086, + "fields": { + "id_car_serie": 7286, + "name": "2.0 CDTI AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180088, + "fields": { + "id_car_serie": 7289, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180089, + "fields": { + "id_car_serie": 7289, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180090, + "fields": { + "id_car_serie": 7289, + "name": "1.6 Easytronic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180092, + "fields": { + "id_car_serie": 7289, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180094, + "fields": { + "id_car_serie": 7289, + "name": "1.6 Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180095, + "fields": { + "id_car_serie": 7289, + "name": "1.6 Turbo AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180096, + "fields": { + "id_car_serie": 7289, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180098, + "fields": { + "id_car_serie": 7289, + "name": "1.7 CDTI ecoFLEX MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180099, + "fields": { + "id_car_serie": 7289, + "name": "1.7 CDTI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180101, + "fields": { + "id_car_serie": 7293, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180102, + "fields": { + "id_car_serie": 7293, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180103, + "fields": { + "id_car_serie": 7293, + "name": "1.6 Easytronic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180107, + "fields": { + "id_car_serie": 7293, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180109, + "fields": { + "id_car_serie": 7293, + "name": "1.7 CDTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180112, + "fields": { + "id_car_serie": 7294, + "name": "1.7 CDTI 6MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180113, + "fields": { + "id_car_serie": 7294, + "name": "1.9 CDTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180114, + "fields": { + "id_car_serie": 7294, + "name": "1.9 CDTI MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180115, + "fields": { + "id_car_serie": 7294, + "name": "1.9 CDTI AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180116, + "fields": { + "id_car_serie": 7294, + "name": "1.9 CDTI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180118, + "fields": { + "id_car_serie": 7294, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180119, + "fields": { + "id_car_serie": 7294, + "name": "1.6 Easytronic (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180120, + "fields": { + "id_car_serie": 7294, + "name": "2.0 Turbo MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180121, + "fields": { + "id_car_serie": 7294, + "name": "2.0 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180139, + "fields": { + "id_car_serie": 7297, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180142, + "fields": { + "id_car_serie": 7297, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180151, + "fields": { + "id_car_serie": 7297, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180152, + "fields": { + "id_car_serie": 7297, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180153, + "fields": { + "id_car_serie": 7297, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180154, + "fields": { + "id_car_serie": 7297, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180158, + "fields": { + "id_car_serie": 7297, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180165, + "fields": { + "id_car_serie": 7297, + "name": "1.7 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180166, + "fields": { + "id_car_serie": 7297, + "name": "1.7 TDS MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180167, + "fields": { + "id_car_serie": 7297, + "name": "1.7 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180171, + "fields": { + "id_car_serie": 7299, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180172, + "fields": { + "id_car_serie": 7299, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180173, + "fields": { + "id_car_serie": 7299, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180174, + "fields": { + "id_car_serie": 7299, + "name": "1.6 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180175, + "fields": { + "id_car_serie": 7299, + "name": "1.6 Twinport MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180178, + "fields": { + "id_car_serie": 7299, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180179, + "fields": { + "id_car_serie": 7299, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180180, + "fields": { + "id_car_serie": 7299, + "name": "1.7 DTI Eco4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180181, + "fields": { + "id_car_serie": 7299, + "name": "1.7 CDTi MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180182, + "fields": { + "id_car_serie": 7299, + "name": "2.0 Di MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180183, + "fields": { + "id_car_serie": 7299, + "name": "2.0 DTI AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180184, + "fields": { + "id_car_serie": 7299, + "name": "2.0 DTI MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180185, + "fields": { + "id_car_serie": 7299, + "name": "2.2 DTi MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180186, + "fields": { + "id_car_serie": 7300, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180188, + "fields": { + "id_car_serie": 7300, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180189, + "fields": { + "id_car_serie": 7300, + "name": "1.6 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180190, + "fields": { + "id_car_serie": 7300, + "name": "1.6 Twinport MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180191, + "fields": { + "id_car_serie": 7300, + "name": "1.6 Twinport AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180195, + "fields": { + "id_car_serie": 7300, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180196, + "fields": { + "id_car_serie": 7300, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180197, + "fields": { + "id_car_serie": 7300, + "name": "1.7 CDTi MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180198, + "fields": { + "id_car_serie": 7300, + "name": "1.7 CDTI Eco4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180199, + "fields": { + "id_car_serie": 7300, + "name": "2.2 DTI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180200, + "fields": { + "id_car_serie": 7301, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180201, + "fields": { + "id_car_serie": 7301, + "name": "1.4 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180202, + "fields": { + "id_car_serie": 7301, + "name": "1.4 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180205, + "fields": { + "id_car_serie": 7301, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180206, + "fields": { + "id_car_serie": 7301, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180209, + "fields": { + "id_car_serie": 7301, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180211, + "fields": { + "id_car_serie": 7301, + "name": "1.7 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180212, + "fields": { + "id_car_serie": 7301, + "name": "1.7 TDS MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180215, + "fields": { + "id_car_serie": 8816, + "name": "2.1 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180216, + "fields": { + "id_car_serie": 7313, + "name": "1.6 SIDI Turbo Ecotec AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180217, + "fields": { + "id_car_serie": 7313, + "name": "1.6 SIDI Turbo Ecotec MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180218, + "fields": { + "id_car_serie": 7313, + "name": "2.0 SIDI Turbo Ecotec MT 4x4 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180220, + "fields": { + "id_car_serie": 7313, + "name": "1.4 Turbo ecoFLEX MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180224, + "fields": { + "id_car_serie": 7313, + "name": "2.0 CDTI ecoFLEX MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180225, + "fields": { + "id_car_serie": 7313, + "name": "2.0 CDTI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180226, + "fields": { + "id_car_serie": 7313, + "name": "2.0 CDTi Ecotec MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180227, + "fields": { + "id_car_serie": 7313, + "name": "2.0 CDTi Ecotec AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180228, + "fields": { + "id_car_serie": 7313, + "name": "2.0 CDTi Ecotec AT 4x4 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180234, + "fields": { + "id_car_serie": 7313, + "name": "2.0 CDTI Bi-Turbo AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180235, + "fields": { + "id_car_serie": 7313, + "name": "2.0 CDTI Bi-Turbo AT 4x4 (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180236, + "fields": { + "id_car_serie": 7313, + "name": "2.0 CDTI Bi-Turbo MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180237, + "fields": { + "id_car_serie": 7314, + "name": "1.6 Turbo AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180240, + "fields": { + "id_car_serie": 7314, + "name": "2.0 SIDI Turbo Ecotec MT 4x4 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180248, + "fields": { + "id_car_serie": 7314, + "name": "2.0 CDTI AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180249, + "fields": { + "id_car_serie": 7314, + "name": "2.0 CDTI AT 4x4 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180250, + "fields": { + "id_car_serie": 7314, + "name": "2.0 CDTI MT 4x4 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180256, + "fields": { + "id_car_serie": 7314, + "name": "2.0 BiTurbo CDTI AT 4x4 (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180270, + "fields": { + "id_car_serie": 7317, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180274, + "fields": { + "id_car_serie": 8980, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180275, + "fields": { + "id_car_serie": 8980, + "name": "1.6 HDi MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180276, + "fields": { + "id_car_serie": 8980, + "name": "1.6 HDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180279, + "fields": { + "id_car_serie": 8980, + "name": "1.6 HDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180280, + "fields": { + "id_car_serie": 8980, + "name": "1.6 HDi MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180281, + "fields": { + "id_car_serie": 8814, + "name": "3.0 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180282, + "fields": { + "id_car_serie": 7357, + "name": "1.6 THP AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180285, + "fields": { + "id_car_serie": 7357, + "name": "2.0 HDi MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180286, + "fields": { + "id_car_serie": 7361, + "name": "1.6 HDi MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180287, + "fields": { + "id_car_serie": 7361, + "name": "1.6 THP MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180288, + "fields": { + "id_car_serie": 7361, + "name": "1.6 HDi AMT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180289, + "fields": { + "id_car_serie": 7361, + "name": "1.6 HDi MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180290, + "fields": { + "id_car_serie": 7361, + "name": "1.6 HDi MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180292, + "fields": { + "id_car_serie": 7361, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180304, + "fields": { + "id_car_serie": 7479, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180331, + "fields": { + "id_car_serie": 7490, + "name": "2.0 dCi AT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180336, + "fields": { + "id_car_serie": 7490, + "name": "2.5 MT 4x2 (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180340, + "fields": { + "id_car_serie": 7498, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180346, + "fields": { + "id_car_serie": 7503, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180347, + "fields": { + "id_car_serie": 7503, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180348, + "fields": { + "id_car_serie": 7503, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180351, + "fields": { + "id_car_serie": 7503, + "name": "2.0 CVT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180352, + "fields": { + "id_car_serie": 7503, + "name": "1.5 dCi MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180353, + "fields": { + "id_car_serie": 7503, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180355, + "fields": { + "id_car_serie": 7503, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180356, + "fields": { + "id_car_serie": 7503, + "name": "1.5 dCi EDC (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180357, + "fields": { + "id_car_serie": 7503, + "name": "1.9 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180358, + "fields": { + "id_car_serie": 7508, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180359, + "fields": { + "id_car_serie": 7508, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180360, + "fields": { + "id_car_serie": 7508, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180361, + "fields": { + "id_car_serie": 7508, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180362, + "fields": { + "id_car_serie": 7508, + "name": "2.0 T MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180363, + "fields": { + "id_car_serie": 7508, + "name": "1.5 dCi MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180365, + "fields": { + "id_car_serie": 7508, + "name": "1.5 dCi MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180366, + "fields": { + "id_car_serie": 7508, + "name": "1.5 dCi AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180367, + "fields": { + "id_car_serie": 7508, + "name": "1.5 dCi MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180368, + "fields": { + "id_car_serie": 7508, + "name": "1.9 dCi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180371, + "fields": { + "id_car_serie": 7514, + "name": "2.0 CVT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180372, + "fields": { + "id_car_serie": 7514, + "name": "2.0 dCi FAP MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180373, + "fields": { + "id_car_serie": 7554, + "name": "1.6 T MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180375, + "fields": { + "id_car_serie": 7554, + "name": "2.0 T AT AWD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180380, + "fields": { + "id_car_serie": 7554, + "name": "2.8 T AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180381, + "fields": { + "id_car_serie": 7554, + "name": "2.0 TDI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180382, + "fields": { + "id_car_serie": 7554, + "name": "2.0 TDi AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180383, + "fields": { + "id_car_serie": 7554, + "name": "2.0 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180384, + "fields": { + "id_car_serie": 7554, + "name": "2.0 TDI MT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180396, + "fields": { + "id_car_serie": 7589, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180397, + "fields": { + "id_car_serie": 7589, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180398, + "fields": { + "id_car_serie": 7589, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180402, + "fields": { + "id_car_serie": 7589, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180405, + "fields": { + "id_car_serie": 7590, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180406, + "fields": { + "id_car_serie": 7590, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180407, + "fields": { + "id_car_serie": 7590, + "name": "1.4 MPI MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180408, + "fields": { + "id_car_serie": 7590, + "name": "1.6 MPI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180409, + "fields": { + "id_car_serie": 7590, + "name": "1.6 MPI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180414, + "fields": { + "id_car_serie": 7590, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180417, + "fields": { + "id_car_serie": 7591, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180418, + "fields": { + "id_car_serie": 7591, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180419, + "fields": { + "id_car_serie": 7591, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180423, + "fields": { + "id_car_serie": 7591, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180424, + "fields": { + "id_car_serie": 7591, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180426, + "fields": { + "id_car_serie": 7591, + "name": "1.9 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180430, + "fields": { + "id_car_serie": 7592, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180431, + "fields": { + "id_car_serie": 7592, + "name": "1.4 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180432, + "fields": { + "id_car_serie": 7592, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180433, + "fields": { + "id_car_serie": 7592, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180434, + "fields": { + "id_car_serie": 7592, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180435, + "fields": { + "id_car_serie": 7592, + "name": "1.9 SDI MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180436, + "fields": { + "id_car_serie": 7592, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180438, + "fields": { + "id_car_serie": 7593, + "name": "0.9 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180439, + "fields": { + "id_car_serie": 7593, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180441, + "fields": { + "id_car_serie": 7593, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180443, + "fields": { + "id_car_serie": 7593, + "name": "1.7 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180444, + "fields": { + "id_car_serie": 7593, + "name": "1.7 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180446, + "fields": { + "id_car_serie": 7594, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180447, + "fields": { + "id_car_serie": 7594, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180452, + "fields": { + "id_car_serie": 7596, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180457, + "fields": { + "id_car_serie": 7596, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180459, + "fields": { + "id_car_serie": 7596, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180460, + "fields": { + "id_car_serie": 7596, + "name": "1.9 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180463, + "fields": { + "id_car_serie": 8924, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180464, + "fields": { + "id_car_serie": 8924, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180471, + "fields": { + "id_car_serie": 7611, + "name": "1.8 TSI DSG 4x4 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180518, + "fields": { + "id_car_serie": 7613, + "name": "1.9 TDI DPF MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180519, + "fields": { + "id_car_serie": 7614, + "name": "1.4 TSI Greentech MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180520, + "fields": { + "id_car_serie": 7614, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180521, + "fields": { + "id_car_serie": 7614, + "name": "1.6 MPI MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180522, + "fields": { + "id_car_serie": 7614, + "name": "1.6 Euro V MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180523, + "fields": { + "id_car_serie": 7614, + "name": "1.8 TSI AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180524, + "fields": { + "id_car_serie": 7614, + "name": "1.4 Euro V MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180525, + "fields": { + "id_car_serie": 7614, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180527, + "fields": { + "id_car_serie": 7614, + "name": "1.6 MultiFuel MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180528, + "fields": { + "id_car_serie": 7614, + "name": "1.8 TSI DSG (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180532, + "fields": { + "id_car_serie": 7614, + "name": "1.8 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180533, + "fields": { + "id_car_serie": 7614, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180534, + "fields": { + "id_car_serie": 7614, + "name": "1.6 Tiptronic (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180535, + "fields": { + "id_car_serie": 7614, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180536, + "fields": { + "id_car_serie": 7614, + "name": "1.9 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180537, + "fields": { + "id_car_serie": 7614, + "name": "2.0 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180554, + "fields": { + "id_car_serie": 7616, + "name": "2.0 TDI MT 4x4 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180594, + "fields": { + "id_car_serie": 7653, + "name": "1.5 AT AWD (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180595, + "fields": { + "id_car_serie": 7653, + "name": "1.5 MT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180596, + "fields": { + "id_car_serie": 7653, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180597, + "fields": { + "id_car_serie": 7653, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180598, + "fields": { + "id_car_serie": 7653, + "name": "1.5 AT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180599, + "fields": { + "id_car_serie": 7653, + "name": "1.5 MT AWD (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180600, + "fields": { + "id_car_serie": 7653, + "name": "2.0 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180601, + "fields": { + "id_car_serie": 7653, + "name": "2.0 AT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180604, + "fields": { + "id_car_serie": 7655, + "name": "1.5 MT R (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180605, + "fields": { + "id_car_serie": 7655, + "name": "1.5 AT R AWD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180606, + "fields": { + "id_car_serie": 7655, + "name": "1.5 MT R AWD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180607, + "fields": { + "id_car_serie": 7655, + "name": "1.5 AT R (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180608, + "fields": { + "id_car_serie": 7655, + "name": "2.0 MT R AWD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180609, + "fields": { + "id_car_serie": 7655, + "name": "2.0 AT R AWD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180610, + "fields": { + "id_car_serie": 7655, + "name": "2.5 MT AWD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180611, + "fields": { + "id_car_serie": 7655, + "name": "2.5 AT AWD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180612, + "fields": { + "id_car_serie": 7657, + "name": "2.5 MT AWD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180613, + "fields": { + "id_car_serie": 7660, + "name": "1.5 AT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180614, + "fields": { + "id_car_serie": 7660, + "name": "1.5 MT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180615, + "fields": { + "id_car_serie": 7660, + "name": "1.6 AT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180616, + "fields": { + "id_car_serie": 7660, + "name": "2.5 MT AWD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180617, + "fields": { + "id_car_serie": 9101, + "name": "1.8 TSI DSG (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180623, + "fields": { + "id_car_serie": 9101, + "name": "2.0 TDI DSG 4x4 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180625, + "fields": { + "id_car_serie": 9097, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180632, + "fields": { + "id_car_serie": 7732, + "name": "1.9 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180634, + "fields": { + "id_car_serie": 7750, + "name": "2.4 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180635, + "fields": { + "id_car_serie": 7751, + "name": "2.4 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180639, + "fields": { + "id_car_serie": 7782, + "name": "2.4 MT (Japan) (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180640, + "fields": { + "id_car_serie": 7782, + "name": "2.4 VVT-i AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180641, + "fields": { + "id_car_serie": 7782, + "name": "2.4 VVT-i MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180642, + "fields": { + "id_car_serie": 7782, + "name": "2.4 AT 4WD (Japan) (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180643, + "fields": { + "id_car_serie": 7782, + "name": "2.4 AT (Japan) (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180644, + "fields": { + "id_car_serie": 7782, + "name": "3.0 AT (Japan) (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180678, + "fields": { + "id_car_serie": 7786, + "name": "2.2 AT Overdrive (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180679, + "fields": { + "id_car_serie": 7786, + "name": "2.2 MT Overdrive (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180682, + "fields": { + "id_car_serie": 7786, + "name": "3.0 AT Overdrive (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180685, + "fields": { + "id_car_serie": 7786, + "name": "2.2 AT Overdrive (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180687, + "fields": { + "id_car_serie": 7788, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180688, + "fields": { + "id_car_serie": 7788, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180689, + "fields": { + "id_car_serie": 7788, + "name": "2.0 MT Overdrive 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180690, + "fields": { + "id_car_serie": 7788, + "name": "2.0 AT Overdrive (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180691, + "fields": { + "id_car_serie": 7788, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180692, + "fields": { + "id_car_serie": 7788, + "name": "2.0 AT Overdrive 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180693, + "fields": { + "id_car_serie": 7788, + "name": "2.5 AT Overdrive (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180694, + "fields": { + "id_car_serie": 7788, + "name": "2.5 MT Overdrive (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180695, + "fields": { + "id_car_serie": 7788, + "name": "2.0 TD MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180696, + "fields": { + "id_car_serie": 7788, + "name": "2.0 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180697, + "fields": { + "id_car_serie": 7788, + "name": "2.0 TD AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180698, + "fields": { + "id_car_serie": 7794, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180699, + "fields": { + "id_car_serie": 7794, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180724, + "fields": { + "id_car_serie": 7799, + "name": "1.6 AT Overdrive (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180725, + "fields": { + "id_car_serie": 7799, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180726, + "fields": { + "id_car_serie": 7799, + "name": "2.0 D MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180735, + "fields": { + "id_car_serie": 7817, + "name": "1.6 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180736, + "fields": { + "id_car_serie": 7820, + "name": "2.0 D-4D MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180737, + "fields": { + "id_car_serie": 7820, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180738, + "fields": { + "id_car_serie": 7820, + "name": "1.8 Supercharged MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180742, + "fields": { + "id_car_serie": 7823, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180757, + "fields": { + "id_car_serie": 7825, + "name": "1.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180758, + "fields": { + "id_car_serie": 7825, + "name": "2.0 D-4D MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180759, + "fields": { + "id_car_serie": 7825, + "name": "2.0 D-4D MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180775, + "fields": { + "id_car_serie": 7828, + "name": "2.0 D-4D MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180780, + "fields": { + "id_car_serie": 7830, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180781, + "fields": { + "id_car_serie": 7830, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180782, + "fields": { + "id_car_serie": 7830, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180789, + "fields": { + "id_car_serie": 7831, + "name": "1.6 MT Overdrive (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180790, + "fields": { + "id_car_serie": 7831, + "name": "1.6 AT Overdrive (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180791, + "fields": { + "id_car_serie": 7831, + "name": "1.6 MT Overdrive (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180792, + "fields": { + "id_car_serie": 7831, + "name": "1.6 AT Overdrive (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180798, + "fields": { + "id_car_serie": 7834, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180799, + "fields": { + "id_car_serie": 7834, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180801, + "fields": { + "id_car_serie": 7834, + "name": "1.6 MT Overdrive (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180802, + "fields": { + "id_car_serie": 7834, + "name": "1.6 AT Overdrive 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180803, + "fields": { + "id_car_serie": 7834, + "name": "1.6 MT Overdrive (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180804, + "fields": { + "id_car_serie": 7834, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180805, + "fields": { + "id_car_serie": 7834, + "name": "1.8 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180806, + "fields": { + "id_car_serie": 7834, + "name": "1.8 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180807, + "fields": { + "id_car_serie": 7835, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180808, + "fields": { + "id_car_serie": 7835, + "name": "1.6 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180809, + "fields": { + "id_car_serie": 7835, + "name": "1.6 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180811, + "fields": { + "id_car_serie": 7835, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180812, + "fields": { + "id_car_serie": 7835, + "name": "1.8 D MT Overdrive (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180817, + "fields": { + "id_car_serie": 7836, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180818, + "fields": { + "id_car_serie": 7836, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180826, + "fields": { + "id_car_serie": 7836, + "name": "2.0 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180828, + "fields": { + "id_car_serie": 7838, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180830, + "fields": { + "id_car_serie": 7838, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180839, + "fields": { + "id_car_serie": 7865, + "name": "2.5 AT RWD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180840, + "fields": { + "id_car_serie": 7865, + "name": "2.5 AT AWD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180843, + "fields": { + "id_car_serie": 7868, + "name": "2.5 AT RWD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180844, + "fields": { + "id_car_serie": 7868, + "name": "2.5 AT AWD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180845, + "fields": { + "id_car_serie": 7868, + "name": "3.0 AT RWD (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180846, + "fields": { + "id_car_serie": 7868, + "name": "3.0 AT AWD (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180848, + "fields": { + "id_car_serie": 7872, + "name": "2.5 AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180851, + "fields": { + "id_car_serie": 7872, + "name": "3.0 AT RWD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180852, + "fields": { + "id_car_serie": 7872, + "name": "3.0 AT AWD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180855, + "fields": { + "id_car_serie": 7874, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180856, + "fields": { + "id_car_serie": 7874, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180859, + "fields": { + "id_car_serie": 7874, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180860, + "fields": { + "id_car_serie": 7874, + "name": "2.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180863, + "fields": { + "id_car_serie": 7874, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180869, + "fields": { + "id_car_serie": 7874, + "name": "2.4 TD AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180872, + "fields": { + "id_car_serie": 7895, + "name": "2.0 MT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180873, + "fields": { + "id_car_serie": 7895, + "name": "2.4 D AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180875, + "fields": { + "id_car_serie": 8873, + "name": "2.0 D MT AWD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180894, + "fields": { + "id_car_serie": 7952, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180895, + "fields": { + "id_car_serie": 7973, + "name": "1.4 TSI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180896, + "fields": { + "id_car_serie": 7973, + "name": "1.4 TSI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180897, + "fields": { + "id_car_serie": 7973, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180900, + "fields": { + "id_car_serie": 7973, + "name": "1.9 TDI BlueMotion MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180901, + "fields": { + "id_car_serie": 7973, + "name": "1.9 TDI DPF MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180902, + "fields": { + "id_car_serie": 7973, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180904, + "fields": { + "id_car_serie": 7973, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180905, + "fields": { + "id_car_serie": 7973, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180906, + "fields": { + "id_car_serie": 7974, + "name": "1.4 TSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180907, + "fields": { + "id_car_serie": 7974, + "name": "1.4 TSI DSG (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180912, + "fields": { + "id_car_serie": 7974, + "name": "1.4 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180939, + "fields": { + "id_car_serie": 7976, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180940, + "fields": { + "id_car_serie": 7976, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180941, + "fields": { + "id_car_serie": 7976, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180944, + "fields": { + "id_car_serie": 7976, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180945, + "fields": { + "id_car_serie": 7976, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180946, + "fields": { + "id_car_serie": 7976, + "name": "1.8 Syncro MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180947, + "fields": { + "id_car_serie": 7976, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180949, + "fields": { + "id_car_serie": 7976, + "name": "2.0 Syncro MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180950, + "fields": { + "id_car_serie": 7976, + "name": "2.9 VR6 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180951, + "fields": { + "id_car_serie": 7976, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180952, + "fields": { + "id_car_serie": 7976, + "name": "1.9 SDI MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180953, + "fields": { + "id_car_serie": 7976, + "name": "1.9 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180954, + "fields": { + "id_car_serie": 7976, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180955, + "fields": { + "id_car_serie": 7976, + "name": "1.9 TDI Syncro MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180956, + "fields": { + "id_car_serie": 7976, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180957, + "fields": { + "id_car_serie": 7976, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180958, + "fields": { + "id_car_serie": 7976, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180959, + "fields": { + "id_car_serie": 7977, + "name": "1.2 TSI MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180980, + "fields": { + "id_car_serie": 7977, + "name": "2.0 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180987, + "fields": { + "id_car_serie": 7980, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180988, + "fields": { + "id_car_serie": 7981, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180989, + "fields": { + "id_car_serie": 7981, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180990, + "fields": { + "id_car_serie": 7981, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180991, + "fields": { + "id_car_serie": 7981, + "name": "1.4 TSI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180992, + "fields": { + "id_car_serie": 7981, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180995, + "fields": { + "id_car_serie": 7981, + "name": "2.0 FSI AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180996, + "fields": { + "id_car_serie": 7981, + "name": "2.0 FSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180997, + "fields": { + "id_car_serie": 7981, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 180998, + "fields": { + "id_car_serie": 7981, + "name": "1.6 FSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181001, + "fields": { + "id_car_serie": 7981, + "name": "1.9 TDI BlueMotion MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181002, + "fields": { + "id_car_serie": 7981, + "name": "2.0 TDI 4Motion MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181003, + "fields": { + "id_car_serie": 7981, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181004, + "fields": { + "id_car_serie": 7981, + "name": "1.9 TDI 4Motion MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181005, + "fields": { + "id_car_serie": 7981, + "name": "1.9 TDI 6DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181006, + "fields": { + "id_car_serie": 7981, + "name": "2.0 SDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181008, + "fields": { + "id_car_serie": 7981, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181011, + "fields": { + "id_car_serie": 7985, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181012, + "fields": { + "id_car_serie": 7985, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181013, + "fields": { + "id_car_serie": 7985, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181014, + "fields": { + "id_car_serie": 7985, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181015, + "fields": { + "id_car_serie": 7985, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181016, + "fields": { + "id_car_serie": 7985, + "name": "1.8 4Motion MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181017, + "fields": { + "id_car_serie": 7985, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181020, + "fields": { + "id_car_serie": 7985, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181021, + "fields": { + "id_car_serie": 7985, + "name": "2.3 4Motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181022, + "fields": { + "id_car_serie": 7985, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181023, + "fields": { + "id_car_serie": 7985, + "name": "2.3 Tiptronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181024, + "fields": { + "id_car_serie": 7985, + "name": "2.3 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181025, + "fields": { + "id_car_serie": 7985, + "name": "2.8 4Motion MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181026, + "fields": { + "id_car_serie": 7985, + "name": "1.9 SDI MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181028, + "fields": { + "id_car_serie": 7985, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181029, + "fields": { + "id_car_serie": 7985, + "name": "1.9 TDI 4Motion MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181030, + "fields": { + "id_car_serie": 7985, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181031, + "fields": { + "id_car_serie": 7985, + "name": "1.9 TDI MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181032, + "fields": { + "id_car_serie": 7985, + "name": "1.9 TDI 4Motion MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181033, + "fields": { + "id_car_serie": 7985, + "name": "1.9 TDI Tiptronic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181034, + "fields": { + "id_car_serie": 7985, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181035, + "fields": { + "id_car_serie": 7985, + "name": "1.9 TDI 4Motion MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181036, + "fields": { + "id_car_serie": 7985, + "name": "1.9 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181037, + "fields": { + "id_car_serie": 7985, + "name": "1.9 TDI 4Motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181038, + "fields": { + "id_car_serie": 7987, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181039, + "fields": { + "id_car_serie": 7987, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181040, + "fields": { + "id_car_serie": 7987, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181041, + "fields": { + "id_car_serie": 7987, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181042, + "fields": { + "id_car_serie": 7987, + "name": "2.0 GTI 16v MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181043, + "fields": { + "id_car_serie": 7987, + "name": "2.8 VR6 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181045, + "fields": { + "id_car_serie": 7987, + "name": "2.9 VR6 Syncro MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181046, + "fields": { + "id_car_serie": 7987, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181047, + "fields": { + "id_car_serie": 7987, + "name": "1.9 SDI MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181048, + "fields": { + "id_car_serie": 7987, + "name": "1.9 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181049, + "fields": { + "id_car_serie": 7987, + "name": "1.9 TDI Syncro MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181050, + "fields": { + "id_car_serie": 7987, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181051, + "fields": { + "id_car_serie": 7987, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181057, + "fields": { + "id_car_serie": 7990, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181064, + "fields": { + "id_car_serie": 7990, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181065, + "fields": { + "id_car_serie": 7990, + "name": "1.6 AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181069, + "fields": { + "id_car_serie": 7990, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181070, + "fields": { + "id_car_serie": 7990, + "name": "1.8 Syncro MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181077, + "fields": { + "id_car_serie": 7990, + "name": "1.8 Syncro MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181079, + "fields": { + "id_car_serie": 7990, + "name": "1.6 TD MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181080, + "fields": { + "id_car_serie": 7990, + "name": "1.6 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181083, + "fields": { + "id_car_serie": 8006, + "name": "2.0 TSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181104, + "fields": { + "id_car_serie": 8046, + "name": "2.0 D3 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181116, + "fields": { + "id_car_serie": 8050, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181117, + "fields": { + "id_car_serie": 8084, + "name": "1.6 MT 8 valves (Euro-4) (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181118, + "fields": { + "id_car_serie": 8094, + "name": "1.6 MT 8 valves (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181122, + "fields": { + "id_car_serie": 8094, + "name": "1.6 MT 16 valves (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181124, + "fields": { + "id_car_serie": 8094, + "name": "1.6 AT 16 valves (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181125, + "fields": { + "id_car_serie": 8094, + "name": "1.6 AMT 16 valves (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181129, + "fields": { + "id_car_serie": 8094, + "name": "1.6 AT 8 valves (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181130, + "fields": { + "id_car_serie": 8096, + "name": "1.6 MT 8 valves (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181134, + "fields": { + "id_car_serie": 8096, + "name": "1.6 MT 16 valves (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181136, + "fields": { + "id_car_serie": 8096, + "name": "1.6 AT 16 valves (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181137, + "fields": { + "id_car_serie": 8096, + "name": "1.6 AMT 16 valves (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181141, + "fields": { + "id_car_serie": 8096, + "name": "1.6 AT 8 valves (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181142, + "fields": { + "id_car_serie": 8534, + "name": "2.4 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181153, + "fields": { + "id_car_serie": 8470, + "name": "1.6 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181163, + "fields": { + "id_car_serie": 9090, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181165, + "fields": { + "id_car_serie": 9090, + "name": "1.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181166, + "fields": { + "id_car_serie": 9090, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181167, + "fields": { + "id_car_serie": 9090, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181169, + "fields": { + "id_car_serie": 9090, + "name": "1.4 TDI MT GreenLine (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181173, + "fields": { + "id_car_serie": 9090, + "name": "1.4 TDI DPF MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181179, + "fields": { + "id_car_serie": 9090, + "name": "1.4 TDI MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181180, + "fields": { + "id_car_serie": 9090, + "name": "1.4 TDI MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181181, + "fields": { + "id_car_serie": 9090, + "name": "1.9 TDI DPF MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181188, + "fields": { + "id_car_serie": 8777, + "name": "2.0 MZR-CD MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181192, + "fields": { + "id_car_serie": 9057, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181197, + "fields": { + "id_car_serie": 9057, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181200, + "fields": { + "id_car_serie": 8717, + "name": "4.4 AT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181201, + "fields": { + "id_car_serie": 9048, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181293, + "fields": { + "id_car_serie": 8613, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181294, + "fields": { + "id_car_serie": 8613, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181295, + "fields": { + "id_car_serie": 8865, + "name": "2.4 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181299, + "fields": { + "id_car_serie": 8722, + "name": "3.2 MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181305, + "fields": { + "id_car_serie": 8886, + "name": "2.0 CVT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181307, + "fields": { + "id_car_serie": 8719, + "name": "3.0 TDV6 AT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181309, + "fields": { + "id_car_serie": 8719, + "name": "3.0 SDV6 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181311, + "fields": { + "id_car_serie": 8719, + "name": "3.0 SDV6 4WD AT (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181313, + "fields": { + "id_car_serie": 8719, + "name": "3.0 SCV6 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181326, + "fields": { + "id_car_serie": 8690, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181327, + "fields": { + "id_car_serie": 8690, + "name": "1.6 VGT MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181330, + "fields": { + "id_car_serie": 8687, + "name": "1.6 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181334, + "fields": { + "id_car_serie": 8687, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181360, + "fields": { + "id_car_serie": 8686, + "name": "1.6 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181361, + "fields": { + "id_car_serie": 8686, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181363, + "fields": { + "id_car_serie": 8686, + "name": "1.6 CRDi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181371, + "fields": { + "id_car_serie": 8685, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181372, + "fields": { + "id_car_serie": 8685, + "name": "1.6 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181395, + "fields": { + "id_car_serie": 8684, + "name": "1.6 CRDi MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181396, + "fields": { + "id_car_serie": 8684, + "name": "1.6 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181397, + "fields": { + "id_car_serie": 8684, + "name": "1.6 CRDi AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181399, + "fields": { + "id_car_serie": 8682, + "name": "1.6 CRDi AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181400, + "fields": { + "id_car_serie": 8682, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181401, + "fields": { + "id_car_serie": 8682, + "name": "1.6 CRDi AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181438, + "fields": { + "id_car_serie": 8887, + "name": "2.4 MT 2WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181494, + "fields": { + "id_car_serie": 8306, + "name": "1.2 LPG ecoFLEX MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181496, + "fields": { + "id_car_serie": 8306, + "name": "1.2 CDTi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181498, + "fields": { + "id_car_serie": 8306, + "name": "1.4 LPG ecoFLEX MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181499, + "fields": { + "id_car_serie": 8306, + "name": "1.4 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181501, + "fields": { + "id_car_serie": 8306, + "name": "1.7 CDTi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181503, + "fields": { + "id_car_serie": 8305, + "name": "1.2 LPG ecoFLEX MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181507, + "fields": { + "id_car_serie": 8305, + "name": "1.4 MT (87 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181508, + "fields": { + "id_car_serie": 8305, + "name": "1.4 LPG ecoFLEX MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181511, + "fields": { + "id_car_serie": 8305, + "name": "1.7 CDTI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181512, + "fields": { + "id_car_serie": 8456, + "name": "7.4 C2500 4AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181513, + "fields": { + "id_car_serie": 8447, + "name": "5.7 MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181514, + "fields": { + "id_car_serie": 8447, + "name": "5.7 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181515, + "fields": { + "id_car_serie": 8447, + "name": "5.7 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181516, + "fields": { + "id_car_serie": 8447, + "name": "5.7 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181517, + "fields": { + "id_car_serie": 8445, + "name": "5.7 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181519, + "fields": { + "id_car_serie": 8428, + "name": "2.4 LPG MT 5 places (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181521, + "fields": { + "id_car_serie": 8428, + "name": "3.2 AT 7 places (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181522, + "fields": { + "id_car_serie": 8428, + "name": "3.2 LPG AT 7 places (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181524, + "fields": { + "id_car_serie": 8428, + "name": "2.4 MT 7 places (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181530, + "fields": { + "id_car_serie": 8340, + "name": "4.2 FSI S tronic quattro (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181531, + "fields": { + "id_car_serie": 8340, + "name": "4.2 FSI MT quattro (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181532, + "fields": { + "id_car_serie": 8340, + "name": "5.2 FSI S tronic quattro (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181533, + "fields": { + "id_car_serie": 8340, + "name": "5.2 FSI MT quattro (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181537, + "fields": { + "id_car_serie": 14641, + "name": "1.0 AMT twinamic (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181568, + "fields": { + "id_car_serie": 14730, + "name": "3.0 TDI Tiptronic 4XMotion (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181622, + "fields": { + "id_car_serie": 10788, + "name": "2.0 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181623, + "fields": { + "id_car_serie": 10781, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181624, + "fields": { + "id_car_serie": 10780, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181635, + "fields": { + "id_car_serie": 10766, + "name": "4.3 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181637, + "fields": { + "id_car_serie": 10766, + "name": "5.3 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181639, + "fields": { + "id_car_serie": 10760, + "name": "6.2 AT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181643, + "fields": { + "id_car_serie": 10753, + "name": "11113-01 MT (35 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181646, + "fields": { + "id_car_serie": 10742, + "name": "1.8 AMT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181653, + "fields": { + "id_car_serie": 10738, + "name": "2.0 T5 Powershift (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181664, + "fields": { + "id_car_serie": 10738, + "name": "2.4 D4 Geartronic AWD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181666, + "fields": { + "id_car_serie": 10736, + "name": "2.4 TD AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181667, + "fields": { + "id_car_serie": 10735, + "name": "2.0 Turbo MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181686, + "fields": { + "id_car_serie": 10732, + "name": "1.6 D DRIVe MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181687, + "fields": { + "id_car_serie": 10732, + "name": "1.6 D DRIVe Start/Stop MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181697, + "fields": { + "id_car_serie": 10724, + "name": "2.0 TDI 4Motion MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181698, + "fields": { + "id_car_serie": 10724, + "name": "2.0 TDI 4Motion DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181700, + "fields": { + "id_car_serie": 10720, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181701, + "fields": { + "id_car_serie": 10720, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181702, + "fields": { + "id_car_serie": 10720, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181703, + "fields": { + "id_car_serie": 10720, + "name": "1.3 D MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181704, + "fields": { + "id_car_serie": 10810, + "name": "2.4 AT Super Long (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181718, + "fields": { + "id_car_serie": 14710, + "name": "1.6 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181745, + "fields": { + "id_car_serie": 14732, + "name": "2.0 TD MT 4WD high roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181746, + "fields": { + "id_car_serie": 14732, + "name": "2.0 MT 4WD skylight roof (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181747, + "fields": { + "id_car_serie": 14732, + "name": "2.0 AT skylight roof (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181748, + "fields": { + "id_car_serie": 14732, + "name": "2.0 AT twin moon roof (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181749, + "fields": { + "id_car_serie": 14732, + "name": "2.0 MT high roof (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181750, + "fields": { + "id_car_serie": 14732, + "name": "2.0 AT 4WD twin moon roof (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181751, + "fields": { + "id_car_serie": 14732, + "name": "2.0 AT 4WD high roof (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181752, + "fields": { + "id_car_serie": 14734, + "name": "1.5 CVT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181755, + "fields": { + "id_car_serie": 14752, + "name": "2.0 TD AT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181760, + "fields": { + "id_car_serie": 14754, + "name": "2.0 MT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181761, + "fields": { + "id_car_serie": 14754, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181765, + "fields": { + "id_car_serie": 14770, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181767, + "fields": { + "id_car_serie": 14789, + "name": "FX45 AT AWD (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181769, + "fields": { + "id_car_serie": 14842, + "name": "2.0 D5 Drive-E AT AWD (5 places) (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181770, + "fields": { + "id_car_serie": 14842, + "name": "2.0 AT AWD D5 (5 places) (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181771, + "fields": { + "id_car_serie": 14842, + "name": "2.0 D5 Drive-E AT AWD (7 places) (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181772, + "fields": { + "id_car_serie": 14842, + "name": "2.0 T5 Drive-E AT AWD (5 places) (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181773, + "fields": { + "id_car_serie": 14842, + "name": "2.0 T8 Twin Engine AT AWD (7 places) (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181774, + "fields": { + "id_car_serie": 14842, + "name": "2.0 AT AWD D5 (7 places) (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181775, + "fields": { + "id_car_serie": 14842, + "name": "2.0 T5 Drive-E AT AWD (5 places) (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181776, + "fields": { + "id_car_serie": 14842, + "name": "2.0 T5 Drive-E AT AWD (7 places) (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181777, + "fields": { + "id_car_serie": 14842, + "name": "2.0 T5 Drive-E AT AWD (7 places) (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181778, + "fields": { + "id_car_serie": 14842, + "name": "2.0 T6 Drive-E AT AWD (5 places) (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181779, + "fields": { + "id_car_serie": 14842, + "name": "2.0 T6 Drive-E AT AWD (7 places) (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181781, + "fields": { + "id_car_serie": 14842, + "name": "2.0 T8 Twin Engine AT AWD (7 places) (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181783, + "fields": { + "id_car_serie": 14842, + "name": "2.0 T8 Twin Engine AT AWD (4 places) (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181810, + "fields": { + "id_car_serie": 14849, + "name": "2.0 TD4 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181812, + "fields": { + "id_car_serie": 14849, + "name": "2.0 TD4 AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181813, + "fields": { + "id_car_serie": 14849, + "name": "2.0 SD4 AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181814, + "fields": { + "id_car_serie": 14849, + "name": "2.0 Si4 AT AWD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181820, + "fields": { + "id_car_serie": 14786, + "name": "1.6 Ti-VCT PowerShift (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181823, + "fields": { + "id_car_serie": 14786, + "name": "1.0 EcoBoost MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181825, + "fields": { + "id_car_serie": 14787, + "name": "1.0 EcoBoost MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181827, + "fields": { + "id_car_serie": 14788, + "name": "1.6 Ti-VCT PowerShift (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181830, + "fields": { + "id_car_serie": 14788, + "name": "1.0 EcoBoost MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181844, + "fields": { + "id_car_serie": 14801, + "name": "2.2 D AT AWD (7 places) (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181851, + "fields": { + "id_car_serie": 14808, + "name": "5.0 AT AWD (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181882, + "fields": { + "id_car_serie": 14835, + "name": "3.5 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181892, + "fields": { + "id_car_serie": 14853, + "name": "2.4 D MT long (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181893, + "fields": { + "id_car_serie": 14853, + "name": "2.4 D MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181895, + "fields": { + "id_car_serie": 14855, + "name": "1.5 Turbo AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181897, + "fields": { + "id_car_serie": 14855, + "name": "2.0 TD MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181898, + "fields": { + "id_car_serie": 15162, + "name": "2.0 CVT Hybrid FWD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181899, + "fields": { + "id_car_serie": 15162, + "name": "2.0 CVT AWD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181900, + "fields": { + "id_car_serie": 15162, + "name": "2.0 CVT Hybrid AWD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181924, + "fields": { + "id_car_serie": 14995, + "name": "4.6 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181931, + "fields": { + "id_car_serie": 14862, + "name": "1.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181935, + "fields": { + "id_car_serie": 14865, + "name": "1.4 (125 hp) robot, front", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 181946, + "fields": { + "id_car_serie": 14866, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181947, + "fields": { + "id_car_serie": 14866, + "name": "1.9 TDI S-tronic (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181979, + "fields": { + "id_car_serie": 47144, + "name": "2.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 181987, + "fields": { + "id_car_serie": 14927, + "name": "2.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182001, + "fields": { + "id_car_serie": 14940, + "name": "2.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182002, + "fields": { + "id_car_serie": 14940, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182003, + "fields": { + "id_car_serie": 14943, + "name": "Type S 2.4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182004, + "fields": { + "id_car_serie": 14943, + "name": "Type S 2.4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182007, + "fields": { + "id_car_serie": 46874, + "name": "2.4 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182008, + "fields": { + "id_car_serie": 46874, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182011, + "fields": { + "id_car_serie": 14945, + "name": "2.4 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182012, + "fields": { + "id_car_serie": 14948, + "name": "1.3 CVT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182013, + "fields": { + "id_car_serie": 14948, + "name": "1.5 CVT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182017, + "fields": { + "id_car_serie": 14963, + "name": "3.2 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182018, + "fields": { + "id_car_serie": 47236, + "name": "1.6 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182019, + "fields": { + "id_car_serie": 47236, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182022, + "fields": { + "id_car_serie": 47236, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182032, + "fields": { + "id_car_serie": 14982, + "name": "1.4 CRDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182039, + "fields": { + "id_car_serie": 14986, + "name": "2.2 CRDi AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182047, + "fields": { + "id_car_serie": 14994, + "name": "2.0 CRDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182054, + "fields": { + "id_car_serie": 14994, + "name": "2.0 CRDi AT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182070, + "fields": { + "id_car_serie": 15003, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182071, + "fields": { + "id_car_serie": 15003, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182082, + "fields": { + "id_car_serie": 15008, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182083, + "fields": { + "id_car_serie": 15008, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182087, + "fields": { + "id_car_serie": 15009, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182138, + "fields": { + "id_car_serie": 15023, + "name": "2.3 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182167, + "fields": { + "id_car_serie": 15031, + "name": "3.2 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182189, + "fields": { + "id_car_serie": 15041, + "name": "2.8 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182190, + "fields": { + "id_car_serie": 15041, + "name": "3.2 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182191, + "fields": { + "id_car_serie": 15041, + "name": "4.3 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182192, + "fields": { + "id_car_serie": 15041, + "name": "5.0 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182193, + "fields": { + "id_car_serie": 15041, + "name": "3.2 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182194, + "fields": { + "id_car_serie": 15041, + "name": "4.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182202, + "fields": { + "id_car_serie": 15070, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182209, + "fields": { + "id_car_serie": 15072, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182211, + "fields": { + "id_car_serie": 15072, + "name": "2.2 5MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182213, + "fields": { + "id_car_serie": 15072, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182214, + "fields": { + "id_car_serie": 15072, + "name": "1.9 CDTi MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182215, + "fields": { + "id_car_serie": 15072, + "name": "3.0 CDTi AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182230, + "fields": { + "id_car_serie": 15100, + "name": "1.9 dCi AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182231, + "fields": { + "id_car_serie": 15101, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182233, + "fields": { + "id_car_serie": 15101, + "name": "1.9 dCi AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182259, + "fields": { + "id_car_serie": 15115, + "name": "2.5 Sport AWD Lineartronic (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182292, + "fields": { + "id_car_serie": 15125, + "name": "1.9 DDiS MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182336, + "fields": { + "id_car_serie": 15139, + "name": "2.0 MPi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182337, + "fields": { + "id_car_serie": 15146, + "name": "1.4 FSI MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182338, + "fields": { + "id_car_serie": 15146, + "name": "1.4 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182339, + "fields": { + "id_car_serie": 15148, + "name": "1.4 FSI MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182340, + "fields": { + "id_car_serie": 15148, + "name": "1.9 SDI MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182341, + "fields": { + "id_car_serie": 15148, + "name": "1.9 TDI MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182342, + "fields": { + "id_car_serie": 15148, + "name": "1.9 TDI MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182343, + "fields": { + "id_car_serie": 15149, + "name": "0.9 L MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182345, + "fields": { + "id_car_serie": 15149, + "name": "1.3 L MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182352, + "fields": { + "id_car_serie": 15155, + "name": "2.0 T6 Drive-E Geartronic AWD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182354, + "fields": { + "id_car_serie": 15156, + "name": "2.4 Bi-fuel LPG AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182360, + "fields": { + "id_car_serie": 15157, + "name": "2.0 D4 MT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182363, + "fields": { + "id_car_serie": 15161, + "name": "2.0 D4 Drive-E Geartronic (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182364, + "fields": { + "id_car_serie": 15161, + "name": "2.5 T5 Geartronic AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182368, + "fields": { + "id_car_serie": 15210, + "name": "4.4 BITURBO SWITCH-TRONIC AWD (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182369, + "fields": { + "id_car_serie": 15211, + "name": "4.4 BITURBO SWITCH-TRONIC (540 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182371, + "fields": { + "id_car_serie": 15213, + "name": "4.4 AT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182372, + "fields": { + "id_car_serie": 15213, + "name": "4.4 AT (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182373, + "fields": { + "id_car_serie": 15214, + "name": "2.8 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182375, + "fields": { + "id_car_serie": 15215, + "name": "2.8 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182376, + "fields": { + "id_car_serie": 15215, + "name": "2.8 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182379, + "fields": { + "id_car_serie": 15219, + "name": "4.4 BITURBO SWITCH-TRONIC AT (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182380, + "fields": { + "id_car_serie": 15220, + "name": "4.4 BITURBO SWITCH-TRONIC AT (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182382, + "fields": { + "id_car_serie": 15249, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182383, + "fields": { + "id_car_serie": 15249, + "name": "1.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182384, + "fields": { + "id_car_serie": 15249, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182385, + "fields": { + "id_car_serie": 15401, + "name": "3.0 MT Overdrive (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182386, + "fields": { + "id_car_serie": 15375, + "name": "2.4 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182458, + "fields": { + "id_car_serie": 15364, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182459, + "fields": { + "id_car_serie": 15364, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182460, + "fields": { + "id_car_serie": 15364, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182468, + "fields": { + "id_car_serie": 15387, + "name": "4.5 Twin-Turbo D AT 4WD (5 places) (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182471, + "fields": { + "id_car_serie": 15387, + "name": "4.6 AT 4WD (5 places) (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182480, + "fields": { + "id_car_serie": 15392, + "name": "2.8 D MT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182484, + "fields": { + "id_car_serie": 15398, + "name": "2.4 AT AWD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182485, + "fields": { + "id_car_serie": 46963, + "name": "1.8 AT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182486, + "fields": { + "id_car_serie": 46963, + "name": "1.8 MT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182487, + "fields": { + "id_car_serie": 46963, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182488, + "fields": { + "id_car_serie": 46963, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182489, + "fields": { + "id_car_serie": 46963, + "name": "2.0 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182490, + "fields": { + "id_car_serie": 46963, + "name": "2.0 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182491, + "fields": { + "id_car_serie": 46963, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182492, + "fields": { + "id_car_serie": 46963, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182493, + "fields": { + "id_car_serie": 46963, + "name": "2.0 D AT AWD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182494, + "fields": { + "id_car_serie": 46963, + "name": "2.0 D MT AWD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182496, + "fields": { + "id_car_serie": 15404, + "name": "2.7 AT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182499, + "fields": { + "id_car_serie": 15407, + "name": "2.7 AT Overdrive (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182504, + "fields": { + "id_car_serie": 15419, + "name": "1.4 D-4D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182505, + "fields": { + "id_car_serie": 15420, + "name": "1.4 D-4D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182507, + "fields": { + "id_car_serie": 15451, + "name": "5.4 AT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182510, + "fields": { + "id_car_serie": 15482, + "name": "5.0 AT (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182511, + "fields": { + "id_car_serie": 15488, + "name": "5.4 AT (582 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182520, + "fields": { + "id_car_serie": 15607, + "name": "2.8 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182521, + "fields": { + "id_car_serie": 15607, + "name": "2.8 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182524, + "fields": { + "id_car_serie": 15666, + "name": "2.0 MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182525, + "fields": { + "id_car_serie": 15666, + "name": "2.0 AMT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182526, + "fields": { + "id_car_serie": 15667, + "name": "2.0 MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182527, + "fields": { + "id_car_serie": 15667, + "name": "2.0 AMT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182530, + "fields": { + "id_car_serie": 15719, + "name": "2.0 AMT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182534, + "fields": { + "id_car_serie": 15735, + "name": "2.0 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182535, + "fields": { + "id_car_serie": 15757, + "name": "3.5 MT 35th Anniversary Edition (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182536, + "fields": { + "id_car_serie": 15757, + "name": "3.5 MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182537, + "fields": { + "id_car_serie": 15757, + "name": "3.5 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182540, + "fields": { + "id_car_serie": 14692, + "name": "1.6 THP MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182541, + "fields": { + "id_car_serie": 14692, + "name": "1.6 THP AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182543, + "fields": { + "id_car_serie": 14692, + "name": "2.0 BlueHDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182561, + "fields": { + "id_car_serie": 14661, + "name": "2.0 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182562, + "fields": { + "id_car_serie": 14661, + "name": "2.0 TDI S tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182582, + "fields": { + "id_car_serie": 14660, + "name": "2.0 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182583, + "fields": { + "id_car_serie": 14660, + "name": "2.0 TDI S tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182607, + "fields": { + "id_car_serie": 16695, + "name": "3.5 AT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182611, + "fields": { + "id_car_serie": 23338, + "name": "1.8 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182612, + "fields": { + "id_car_serie": 23338, + "name": "Plug-in Hybrid 1.8 CVT (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182639, + "fields": { + "id_car_serie": 45574, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182640, + "fields": { + "id_car_serie": 45574, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182641, + "fields": { + "id_car_serie": 45574, + "name": "2.2 DTI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182670, + "fields": { + "id_car_serie": 45606, + "name": "1.5 dCi MT 4x4 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182673, + "fields": { + "id_car_serie": 45592, + "name": "1.2 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182705, + "fields": { + "id_car_serie": 45425, + "name": "2.2 SD4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182706, + "fields": { + "id_car_serie": 45428, + "name": "2.0 MZR 5MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182708, + "fields": { + "id_car_serie": 45611, + "name": "1.8 CVT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182722, + "fields": { + "id_car_serie": 45443, + "name": "2.0 TDI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182723, + "fields": { + "id_car_serie": 45443, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182740, + "fields": { + "id_car_serie": 45450, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182741, + "fields": { + "id_car_serie": 45614, + "name": "1.5 CVT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182742, + "fields": { + "id_car_serie": 45460, + "name": "2.0 MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182743, + "fields": { + "id_car_serie": 45460, + "name": "2.0 AMT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182744, + "fields": { + "id_car_serie": 45461, + "name": "1.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182745, + "fields": { + "id_car_serie": 45461, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182746, + "fields": { + "id_car_serie": 45469, + "name": "1.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182755, + "fields": { + "id_car_serie": 45429, + "name": "2.5 DI-D AT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182759, + "fields": { + "id_car_serie": 45417, + "name": "1.2 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182774, + "fields": { + "id_car_serie": 45462, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182775, + "fields": { + "id_car_serie": 45462, + "name": "1.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182776, + "fields": { + "id_car_serie": 45462, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182777, + "fields": { + "id_car_serie": 45462, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182778, + "fields": { + "id_car_serie": 45462, + "name": "1.6 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182788, + "fields": { + "id_car_serie": 45455, + "name": "1.6 CVT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182801, + "fields": { + "id_car_serie": 47338, + "name": "1.6 VTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182803, + "fields": { + "id_car_serie": 47338, + "name": "1.2 VTi MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182804, + "fields": { + "id_car_serie": 47338, + "name": "1.2 VTi ETG (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182808, + "fields": { + "id_car_serie": 47338, + "name": "1.6 VTi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182809, + "fields": { + "id_car_serie": 47338, + "name": "1.4 HDi FAP MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182810, + "fields": { + "id_car_serie": 47338, + "name": "1.6 e-HDi FAP MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182813, + "fields": { + "id_car_serie": 47338, + "name": "1.6 e-HDi FAP MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182818, + "fields": { + "id_car_serie": 45475, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182820, + "fields": { + "id_car_serie": 45475, + "name": "2.0 dCi MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182823, + "fields": { + "id_car_serie": 45475, + "name": "2.0 dCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182830, + "fields": { + "id_car_serie": 45173, + "name": "5.6 AT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182851, + "fields": { + "id_car_serie": 45142, + "name": "1.6 TDCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182852, + "fields": { + "id_car_serie": 45142, + "name": "2.0 EcoBoost PowerShift (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182853, + "fields": { + "id_car_serie": 45142, + "name": "2.0 EcoBoost MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182858, + "fields": { + "id_car_serie": 45142, + "name": "2.0 Flexifuel MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182861, + "fields": { + "id_car_serie": 45142, + "name": "2.0 EcoBoost MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182865, + "fields": { + "id_car_serie": 45143, + "name": "2.0 Flexifuel MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182868, + "fields": { + "id_car_serie": 45144, + "name": "1.6 Ti-VCT MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182895, + "fields": { + "id_car_serie": 45132, + "name": "2.0 l, 170 hp, gasoline, robot, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182898, + "fields": { + "id_car_serie": 45427, + "name": "2.5 SKYACTIV-G AT (187 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182899, + "fields": { + "id_car_serie": 45427, + "name": "2.2 D AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182900, + "fields": { + "id_car_serie": 45427, + "name": "2.2 SKYACTIV-D MT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182919, + "fields": { + "id_car_serie": 45189, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182936, + "fields": { + "id_car_serie": 45374, + "name": "2.0 TFSI Tiptronic quattro (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182946, + "fields": { + "id_car_serie": 45415, + "name": "20t AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182947, + "fields": { + "id_car_serie": 45415, + "name": "25d AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182950, + "fields": { + "id_car_serie": 45415, + "name": "25t AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182951, + "fields": { + "id_car_serie": 45415, + "name": "30t AT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182955, + "fields": { + "id_car_serie": 45602, + "name": "1.7 CRDI DCT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182956, + "fields": { + "id_car_serie": 45602, + "name": "1.7 CRDI MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182961, + "fields": { + "id_car_serie": 45601, + "name": "1.7 CRDI DCT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182962, + "fields": { + "id_car_serie": 45601, + "name": "1.7 CRDI MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182971, + "fields": { + "id_car_serie": 45685, + "name": "2.0 TDI MT quattro (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182975, + "fields": { + "id_car_serie": 45686, + "name": "2.0 TDI S tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182976, + "fields": { + "id_car_serie": 45686, + "name": "2.0 TFSI S tronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182977, + "fields": { + "id_car_serie": 45686, + "name": "2.0 TDI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182978, + "fields": { + "id_car_serie": 45686, + "name": "2.0 TDI MT quattro (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 182979, + "fields": { + "id_car_serie": 45691, + "name": "1.2 AMT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183002, + "fields": { + "id_car_serie": 45702, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183004, + "fields": { + "id_car_serie": 45702, + "name": "1.6 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183005, + "fields": { + "id_car_serie": 45717, + "name": "1.6 CNG MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183020, + "fields": { + "id_car_serie": 45754, + "name": "1.8 CVT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183033, + "fields": { + "id_car_serie": 45818, + "name": "5.7 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183034, + "fields": { + "id_car_serie": 45818, + "name": "5.7 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183035, + "fields": { + "id_car_serie": 45818, + "name": "5.7 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183037, + "fields": { + "id_car_serie": 45820, + "name": "5.7 4MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183038, + "fields": { + "id_car_serie": 45820, + "name": "5.7 4MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183039, + "fields": { + "id_car_serie": 45820, + "name": "5.7 4MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183042, + "fields": { + "id_car_serie": 45822, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183043, + "fields": { + "id_car_serie": 45822, + "name": "5.4 3Syncro-Mesh (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183049, + "fields": { + "id_car_serie": 45828, + "name": "6.4 AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183050, + "fields": { + "id_car_serie": 45828, + "name": "6.4 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183085, + "fields": { + "id_car_serie": 45955, + "name": "1.5 MT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183087, + "fields": { + "id_car_serie": 45956, + "name": "1.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183088, + "fields": { + "id_car_serie": 46193, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183096, + "fields": { + "id_car_serie": 46168, + "name": "1.5 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183116, + "fields": { + "id_car_serie": 46133, + "name": "2.0 SD4 AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183117, + "fields": { + "id_car_serie": 46055, + "name": "2.0 TD AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183118, + "fields": { + "id_car_serie": 46055, + "name": "3.0 D AT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183121, + "fields": { + "id_car_serie": 46024, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183123, + "fields": { + "id_car_serie": 46024, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183124, + "fields": { + "id_car_serie": 46045, + "name": "2.0 TDI MT L2 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183125, + "fields": { + "id_car_serie": 46045, + "name": "2.0 TDI MT 4Motion L1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183126, + "fields": { + "id_car_serie": 46045, + "name": "2.0 TDI DSG L2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183127, + "fields": { + "id_car_serie": 46045, + "name": "2.0 TDI MT 4Motion L2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183128, + "fields": { + "id_car_serie": 46045, + "name": "2.0 BiTDI DSG 4Motion L1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183129, + "fields": { + "id_car_serie": 46045, + "name": "2.0 BiTDI DSG 4Motion L2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183170, + "fields": { + "id_car_serie": 46028, + "name": "1.2 SHVS MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183175, + "fields": { + "id_car_serie": 46009, + "name": "5.0 AT (424 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183183, + "fields": { + "id_car_serie": 46011, + "name": "2.0 MPI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183184, + "fields": { + "id_car_serie": 46011, + "name": "2.0 MPI MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183185, + "fields": { + "id_car_serie": 46011, + "name": "2.0 MPI AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183186, + "fields": { + "id_car_serie": 46011, + "name": "2.0 MPI AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183187, + "fields": { + "id_car_serie": 46011, + "name": "2.0 CRDi AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183192, + "fields": { + "id_car_serie": 46011, + "name": "2.0 T-GDI AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183193, + "fields": { + "id_car_serie": 46011, + "name": "2.0 T-GDI AT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183221, + "fields": { + "id_car_serie": 46134, + "name": "2.0 SD4 AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183222, + "fields": { + "id_car_serie": 46134, + "name": "2.0 Si4 AT AWD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183227, + "fields": { + "id_car_serie": 46600, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183228, + "fields": { + "id_car_serie": 46600, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183229, + "fields": { + "id_car_serie": 46600, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183230, + "fields": { + "id_car_serie": 46600, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183232, + "fields": { + "id_car_serie": 46428, + "name": "2.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183233, + "fields": { + "id_car_serie": 46428, + "name": "3.2 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183234, + "fields": { + "id_car_serie": 46428, + "name": "4.9 MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183236, + "fields": { + "id_car_serie": 46674, + "name": "1.3 DDiS MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183237, + "fields": { + "id_car_serie": 46674, + "name": "1.3 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183238, + "fields": { + "id_car_serie": 46674, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183239, + "fields": { + "id_car_serie": 46674, + "name": "1.5 MT 4WD (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183240, + "fields": { + "id_car_serie": 46674, + "name": "1.5 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183241, + "fields": { + "id_car_serie": 46682, + "name": "1.2 AMT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183242, + "fields": { + "id_car_serie": 46324, + "name": "2.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183254, + "fields": { + "id_car_serie": 46344, + "name": "2.0 dCi MT L1H1 (9 places) (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183256, + "fields": { + "id_car_serie": 46429, + "name": "2.3 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183257, + "fields": { + "id_car_serie": 46429, + "name": "2.3 AT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183258, + "fields": { + "id_car_serie": 46429, + "name": "2.8 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183259, + "fields": { + "id_car_serie": 46429, + "name": "2.8 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183260, + "fields": { + "id_car_serie": 46429, + "name": "4.9 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183261, + "fields": { + "id_car_serie": 46429, + "name": "4.9 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183264, + "fields": { + "id_car_serie": 46336, + "name": "2.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183265, + "fields": { + "id_car_serie": 46336, + "name": "2.0 AT AWD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183270, + "fields": { + "id_car_serie": 46795, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183271, + "fields": { + "id_car_serie": 46795, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183272, + "fields": { + "id_car_serie": 46795, + "name": "2.0 GDI Hybrid AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183273, + "fields": { + "id_car_serie": 46795, + "name": "2.4 GDI AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183277, + "fields": { + "id_car_serie": 46795, + "name": "1.6 AMT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183290, + "fields": { + "id_car_serie": 46461, + "name": "3.0 D AT SWB (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183293, + "fields": { + "id_car_serie": 46461, + "name": "5.0 AT LWB (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183294, + "fields": { + "id_car_serie": 46598, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183295, + "fields": { + "id_car_serie": 46598, + "name": "2.0 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183296, + "fields": { + "id_car_serie": 46598, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183297, + "fields": { + "id_car_serie": 46598, + "name": "2.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183298, + "fields": { + "id_car_serie": 46598, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183299, + "fields": { + "id_car_serie": 46598, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183303, + "fields": { + "id_car_serie": 46555, + "name": "0.7 AT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183304, + "fields": { + "id_car_serie": 46555, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183307, + "fields": { + "id_car_serie": 46475, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183308, + "fields": { + "id_car_serie": 46475, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183312, + "fields": { + "id_car_serie": 46475, + "name": "1.7 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183313, + "fields": { + "id_car_serie": 46475, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183315, + "fields": { + "id_car_serie": 46475, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183316, + "fields": { + "id_car_serie": 46475, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183321, + "fields": { + "id_car_serie": 46470, + "name": "2.0 AT BioPower AWD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183322, + "fields": { + "id_car_serie": 46470, + "name": "1.9 TD MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183323, + "fields": { + "id_car_serie": 46470, + "name": "1.9 TD AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183333, + "fields": { + "id_car_serie": 46601, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183334, + "fields": { + "id_car_serie": 46599, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183335, + "fields": { + "id_car_serie": 46599, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183336, + "fields": { + "id_car_serie": 46599, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183340, + "fields": { + "id_car_serie": 46683, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183346, + "fields": { + "id_car_serie": 46681, + "name": "1.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183348, + "fields": { + "id_car_serie": 47482, + "name": "1.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183349, + "fields": { + "id_car_serie": 47482, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183350, + "fields": { + "id_car_serie": 47482, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183351, + "fields": { + "id_car_serie": 47481, + "name": "3.4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183352, + "fields": { + "id_car_serie": 47481, + "name": "3.4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183353, + "fields": { + "id_car_serie": 47481, + "name": "4.7 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183355, + "fields": { + "id_car_serie": 47478, + "name": "1.6 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183356, + "fields": { + "id_car_serie": 47478, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183363, + "fields": { + "id_car_serie": 47474, + "name": "3.0 4WD MT wide urban (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183364, + "fields": { + "id_car_serie": 47474, + "name": "3.0 4WD AT wide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183365, + "fields": { + "id_car_serie": 47474, + "name": "2.7 TD 4WD MT wide urban (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183366, + "fields": { + "id_car_serie": 47474, + "name": "2.7 TD 4WD AT urban (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183367, + "fields": { + "id_car_serie": 47474, + "name": "2.7 TD 4WD MT wide (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183370, + "fields": { + "id_car_serie": 47472, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183372, + "fields": { + "id_car_serie": 47472, + "name": "2.0 GL MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183373, + "fields": { + "id_car_serie": 47472, + "name": "2.0 GL AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183374, + "fields": { + "id_car_serie": 47472, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183376, + "fields": { + "id_car_serie": 47472, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183378, + "fields": { + "id_car_serie": 47472, + "name": "2.0 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183384, + "fields": { + "id_car_serie": 47472, + "name": "2.0 GTS 24V Turbo AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183385, + "fields": { + "id_car_serie": 47472, + "name": "2.0 Turbo MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183387, + "fields": { + "id_car_serie": 47472, + "name": "2.8 D MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183401, + "fields": { + "id_car_serie": 47471, + "name": "2.0 GTS Turbo MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183403, + "fields": { + "id_car_serie": 46940, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183404, + "fields": { + "id_car_serie": 46940, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183406, + "fields": { + "id_car_serie": 46940, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183407, + "fields": { + "id_car_serie": 46940, + "name": "1.4 16V MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183408, + "fields": { + "id_car_serie": 46940, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183409, + "fields": { + "id_car_serie": 46940, + "name": "1.4 16V MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183410, + "fields": { + "id_car_serie": 46940, + "name": "1.4 TDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183412, + "fields": { + "id_car_serie": 46940, + "name": "1.7 TDi MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183413, + "fields": { + "id_car_serie": 46940, + "name": "1.9 Di MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183416, + "fields": { + "id_car_serie": 46939, + "name": "1.4 16V MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183418, + "fields": { + "id_car_serie": 46939, + "name": "1.4 16V MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183419, + "fields": { + "id_car_serie": 46939, + "name": "1.4 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183420, + "fields": { + "id_car_serie": 46939, + "name": "1.9 TD MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183421, + "fields": { + "id_car_serie": 46941, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183422, + "fields": { + "id_car_serie": 46941, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183424, + "fields": { + "id_car_serie": 46941, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183425, + "fields": { + "id_car_serie": 46941, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183426, + "fields": { + "id_car_serie": 46941, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183429, + "fields": { + "id_car_serie": 46941, + "name": "1.7 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183430, + "fields": { + "id_car_serie": 46941, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183444, + "fields": { + "id_car_serie": 47444, + "name": "1.1 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183445, + "fields": { + "id_car_serie": 47444, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183446, + "fields": { + "id_car_serie": 47444, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183447, + "fields": { + "id_car_serie": 47444, + "name": "2.0 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183448, + "fields": { + "id_car_serie": 47440, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183449, + "fields": { + "id_car_serie": 47440, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183450, + "fields": { + "id_car_serie": 47440, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183451, + "fields": { + "id_car_serie": 47440, + "name": "2.0 5MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183452, + "fields": { + "id_car_serie": 47440, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183453, + "fields": { + "id_car_serie": 47440, + "name": "2.0 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183454, + "fields": { + "id_car_serie": 47440, + "name": "2.0 4MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183455, + "fields": { + "id_car_serie": 47440, + "name": "2.0 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183456, + "fields": { + "id_car_serie": 47440, + "name": "2.0 Supercharged AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183457, + "fields": { + "id_car_serie": 47440, + "name": "2.0 Supercharged AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183458, + "fields": { + "id_car_serie": 47440, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183459, + "fields": { + "id_car_serie": 47440, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183460, + "fields": { + "id_car_serie": 47440, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183462, + "fields": { + "id_car_serie": 47440, + "name": "4.0 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183463, + "fields": { + "id_car_serie": 47440, + "name": "2.4 D 4MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183464, + "fields": { + "id_car_serie": 47440, + "name": "2.4 D 5MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183465, + "fields": { + "id_car_serie": 47440, + "name": "2.4 TD AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183466, + "fields": { + "id_car_serie": 47440, + "name": "2.4 TD MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183468, + "fields": { + "id_car_serie": 47440, + "name": "2.4 TD AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183495, + "fields": { + "id_car_serie": 46827, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183501, + "fields": { + "id_car_serie": 46827, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183502, + "fields": { + "id_car_serie": 46827, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183503, + "fields": { + "id_car_serie": 46827, + "name": "2.5 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183506, + "fields": { + "id_car_serie": 46827, + "name": "1.9 JTD MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183507, + "fields": { + "id_car_serie": 46827, + "name": "1.9 JTD MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183509, + "fields": { + "id_car_serie": 46827, + "name": "2.4 JTD MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183510, + "fields": { + "id_car_serie": 46827, + "name": "2.4 JTD MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183514, + "fields": { + "id_car_serie": 46837, + "name": "5.9 MT (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183515, + "fields": { + "id_car_serie": 46838, + "name": "5.9 MT (470 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183516, + "fields": { + "id_car_serie": 46838, + "name": "5.9 AT (469 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183517, + "fields": { + "id_car_serie": 47097, + "name": "1.8 TFSI multitronic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183518, + "fields": { + "id_car_serie": 47097, + "name": "1.8 TFSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183519, + "fields": { + "id_car_serie": 47097, + "name": "2.0 TFSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183520, + "fields": { + "id_car_serie": 47097, + "name": "2.0 TFSI multitronic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183521, + "fields": { + "id_car_serie": 47097, + "name": "2.0 TFSI S tronic quattro (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183522, + "fields": { + "id_car_serie": 47097, + "name": "2.0 TFSI MT quattro (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183523, + "fields": { + "id_car_serie": 47097, + "name": "2.0 TFSI multitronic (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183524, + "fields": { + "id_car_serie": 47097, + "name": "2.0 TFSI MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183525, + "fields": { + "id_car_serie": 47097, + "name": "3.2 FSI tiptronic quattro (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183526, + "fields": { + "id_car_serie": 47097, + "name": "3.2 FSI multitronic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183527, + "fields": { + "id_car_serie": 47097, + "name": "3.2 FSI MT quattro (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183528, + "fields": { + "id_car_serie": 47097, + "name": "1.8 TFSI multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183529, + "fields": { + "id_car_serie": 47097, + "name": "1.8 TFSI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183531, + "fields": { + "id_car_serie": 47097, + "name": "2.0 TDI MT quattro (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183534, + "fields": { + "id_car_serie": 47097, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183535, + "fields": { + "id_car_serie": 47097, + "name": "2.7 TDI multitronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183536, + "fields": { + "id_car_serie": 47097, + "name": "2.7 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183537, + "fields": { + "id_car_serie": 47097, + "name": "3.0 TDI MT quattro (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183539, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TFSI flexible fuel MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183540, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TFSI MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183551, + "fields": { + "id_car_serie": 47107, + "name": "4.2 FSI S tronic quattro (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183552, + "fields": { + "id_car_serie": 47107, + "name": "4.2 FSI MT quattro (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183553, + "fields": { + "id_car_serie": 47107, + "name": "5.2 FSI S tronic quattro (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183554, + "fields": { + "id_car_serie": 47107, + "name": "5.2 FSI MT quattro (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183557, + "fields": { + "id_car_serie": 47115, + "name": "2.2 Turbo quattro MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183558, + "fields": { + "id_car_serie": 47115, + "name": "2.2 Turbo quattro AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183559, + "fields": { + "id_car_serie": 47115, + "name": "4.2 V8 quattro MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183560, + "fields": { + "id_car_serie": 47115, + "name": "4.2 V8 quattro AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183571, + "fields": { + "id_car_serie": 47130, + "name": "2.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183572, + "fields": { + "id_car_serie": 47130, + "name": "2.8 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183573, + "fields": { + "id_car_serie": 47132, + "name": "6.0 AT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183581, + "fields": { + "id_car_serie": 47138, + "name": "2.0 AT RWD (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183582, + "fields": { + "id_car_serie": 47138, + "name": "2.0 AT AWD (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183585, + "fields": { + "id_car_serie": 47138, + "name": "2.0 MT RWD (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183586, + "fields": { + "id_car_serie": 47138, + "name": "2.5 AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183587, + "fields": { + "id_car_serie": 47138, + "name": "3.6 AT (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183589, + "fields": { + "id_car_serie": 46850, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183590, + "fields": { + "id_car_serie": 46850, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183599, + "fields": { + "id_car_serie": 46850, + "name": "1.6 e-HDi ETG (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183604, + "fields": { + "id_car_serie": 46850, + "name": "2.0 BlueHDI AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183605, + "fields": { + "id_car_serie": 47156, + "name": "1.6 VTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183608, + "fields": { + "id_car_serie": 47156, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183609, + "fields": { + "id_car_serie": 47156, + "name": "1.6 THP MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183610, + "fields": { + "id_car_serie": 47156, + "name": "1.2 VTi MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183611, + "fields": { + "id_car_serie": 47156, + "name": "1.4 VTi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183618, + "fields": { + "id_car_serie": 47157, + "name": "1.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183619, + "fields": { + "id_car_serie": 47157, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183625, + "fields": { + "id_car_serie": 47162, + "name": "0.8 MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183633, + "fields": { + "id_car_serie": 47162, + "name": "0.8 AT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183656, + "fields": { + "id_car_serie": 47167, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183657, + "fields": { + "id_car_serie": 47167, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183658, + "fields": { + "id_car_serie": 47167, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183661, + "fields": { + "id_car_serie": 47170, + "name": "3.6 AT (287 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183662, + "fields": { + "id_car_serie": 47177, + "name": "6.1 AT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183663, + "fields": { + "id_car_serie": 47177, + "name": "6.1 MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183664, + "fields": { + "id_car_serie": 47177, + "name": "6.4 MT (470 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183665, + "fields": { + "id_car_serie": 47177, + "name": "6.4 AT (470 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183666, + "fields": { + "id_car_serie": 46854, + "name": "4.5 AMT (605 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183667, + "fields": { + "id_car_serie": 46855, + "name": "4.5 AMT (605 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183668, + "fields": { + "id_car_serie": 47184, + "name": "4.3 AMT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183670, + "fields": { + "id_car_serie": 47184, + "name": "4.3 AMT (490 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183672, + "fields": { + "id_car_serie": 47188, + "name": "4.3 MT (490 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183694, + "fields": { + "id_car_serie": 46862, + "name": "4.6 AT (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183697, + "fields": { + "id_car_serie": 46862, + "name": "5.4 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183706, + "fields": { + "id_car_serie": 47211, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183707, + "fields": { + "id_car_serie": 47211, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183711, + "fields": { + "id_car_serie": 47211, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183712, + "fields": { + "id_car_serie": 47211, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183713, + "fields": { + "id_car_serie": 47211, + "name": "2.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183714, + "fields": { + "id_car_serie": 47211, + "name": "2.4 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183721, + "fields": { + "id_car_serie": 47211, + "name": "2.5 TD MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183725, + "fields": { + "id_car_serie": 47211, + "name": "2.9 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183726, + "fields": { + "id_car_serie": 47211, + "name": "2.9 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183727, + "fields": { + "id_car_serie": 47211, + "name": "2.9 MT 4x4 (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183733, + "fields": { + "id_car_serie": 47211, + "name": "2.9 Cosworth AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183736, + "fields": { + "id_car_serie": 47211, + "name": "2.5 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183737, + "fields": { + "id_car_serie": 47350, + "name": "2.0 Hdi AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183754, + "fields": { + "id_car_serie": 47257, + "name": "3.3 AT (293 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183755, + "fields": { + "id_car_serie": 47257, + "name": "3.5 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183756, + "fields": { + "id_car_serie": 47382, + "name": "1.9 dCi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183758, + "fields": { + "id_car_serie": 47382, + "name": "2.2 dCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183759, + "fields": { + "id_car_serie": 47382, + "name": "3.0 dCi MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183760, + "fields": { + "id_car_serie": 47382, + "name": "2.0 T MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183762, + "fields": { + "id_car_serie": 47382, + "name": "3.5 T AT (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183763, + "fields": { + "id_car_serie": 47384, + "name": "1.5 dCi MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183764, + "fields": { + "id_car_serie": 47384, + "name": "1.5 dCi MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183768, + "fields": { + "id_car_serie": 47391, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183769, + "fields": { + "id_car_serie": 47391, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183770, + "fields": { + "id_car_serie": 47391, + "name": "1.5 dCi MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183771, + "fields": { + "id_car_serie": 47391, + "name": "1.5 dCi MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183772, + "fields": { + "id_car_serie": 47391, + "name": "1.5 dCi AMT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183773, + "fields": { + "id_car_serie": 47391, + "name": "1.5 dCi AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183774, + "fields": { + "id_car_serie": 47391, + "name": "1.5 dCi MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183779, + "fields": { + "id_car_serie": 47268, + "name": "1.9 Multijet MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183780, + "fields": { + "id_car_serie": 47268, + "name": "1.4 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183781, + "fields": { + "id_car_serie": 47268, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183782, + "fields": { + "id_car_serie": 47268, + "name": "1.4 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183804, + "fields": { + "id_car_serie": 47278, + "name": "5.5 AT (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183805, + "fields": { + "id_car_serie": 47278, + "name": "6.0 AT (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183806, + "fields": { + "id_car_serie": 46902, + "name": "5.0 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183807, + "fields": { + "id_car_serie": 46902, + "name": "5.8 AT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183808, + "fields": { + "id_car_serie": 46822, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183809, + "fields": { + "id_car_serie": 46822, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183810, + "fields": { + "id_car_serie": 46822, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183811, + "fields": { + "id_car_serie": 46822, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183822, + "fields": { + "id_car_serie": 47323, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183826, + "fields": { + "id_car_serie": 47329, + "name": "3.4 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183827, + "fields": { + "id_car_serie": 47329, + "name": "3.4 AT AWD (187 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183828, + "fields": { + "id_car_serie": 47337, + "name": "5.8 MT (445 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183829, + "fields": { + "id_car_serie": 47336, + "name": "4.6 MT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183830, + "fields": { + "id_car_serie": 47339, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183831, + "fields": { + "id_car_serie": 47339, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183832, + "fields": { + "id_car_serie": 47339, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183833, + "fields": { + "id_car_serie": 47339, + "name": "1.6 VTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183834, + "fields": { + "id_car_serie": 47339, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183835, + "fields": { + "id_car_serie": 47339, + "name": "1.6 THP MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183836, + "fields": { + "id_car_serie": 47339, + "name": "1.4 VTi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183837, + "fields": { + "id_car_serie": 47339, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183838, + "fields": { + "id_car_serie": 47339, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183839, + "fields": { + "id_car_serie": 47344, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183840, + "fields": { + "id_car_serie": 47344, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183841, + "fields": { + "id_car_serie": 47344, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183842, + "fields": { + "id_car_serie": 47344, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183843, + "fields": { + "id_car_serie": 47344, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183844, + "fields": { + "id_car_serie": 47344, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183845, + "fields": { + "id_car_serie": 47344, + "name": "2.0 HDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183846, + "fields": { + "id_car_serie": 47344, + "name": "2.0 HDi MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183847, + "fields": { + "id_car_serie": 47343, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183849, + "fields": { + "id_car_serie": 47343, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183850, + "fields": { + "id_car_serie": 47343, + "name": "1.6 HDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183851, + "fields": { + "id_car_serie": 47343, + "name": "2.0 HDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183852, + "fields": { + "id_car_serie": 47352, + "name": "1.6 HDi MT L2 (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183853, + "fields": { + "id_car_serie": 47352, + "name": "1.6 MT L1 (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183854, + "fields": { + "id_car_serie": 47352, + "name": "1.6 MT L2 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183855, + "fields": { + "id_car_serie": 47358, + "name": "3.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183858, + "fields": { + "id_car_serie": 47369, + "name": "3.9 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183861, + "fields": { + "id_car_serie": 47379, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183862, + "fields": { + "id_car_serie": 47379, + "name": "1.6 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183863, + "fields": { + "id_car_serie": 47390, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183864, + "fields": { + "id_car_serie": 47390, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183866, + "fields": { + "id_car_serie": 47390, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183867, + "fields": { + "id_car_serie": 47390, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183868, + "fields": { + "id_car_serie": 47390, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183869, + "fields": { + "id_car_serie": 47390, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183870, + "fields": { + "id_car_serie": 47390, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183872, + "fields": { + "id_car_serie": 47390, + "name": "1.9 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183875, + "fields": { + "id_car_serie": 47390, + "name": "1.9 dTi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183876, + "fields": { + "id_car_serie": 47390, + "name": "1.9 dTi MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183877, + "fields": { + "id_car_serie": 47386, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183878, + "fields": { + "id_car_serie": 46928, + "name": "2.0 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183879, + "fields": { + "id_car_serie": 46928, + "name": "2.0 T AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183882, + "fields": { + "id_car_serie": 46928, + "name": "2.3 T AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183883, + "fields": { + "id_car_serie": 46928, + "name": "2.3 T MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183884, + "fields": { + "id_car_serie": 46928, + "name": "2.3 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183885, + "fields": { + "id_car_serie": 46928, + "name": "2.3 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183886, + "fields": { + "id_car_serie": 46928, + "name": "2.3 T MT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183887, + "fields": { + "id_car_serie": 46928, + "name": "2.3 T AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183892, + "fields": { + "id_car_serie": 47400, + "name": "1.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183902, + "fields": { + "id_car_serie": 47411, + "name": "1.2 TSI MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183904, + "fields": { + "id_car_serie": 47411, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183905, + "fields": { + "id_car_serie": 47411, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183908, + "fields": { + "id_car_serie": 47411, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183909, + "fields": { + "id_car_serie": 47411, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183910, + "fields": { + "id_car_serie": 47411, + "name": "1.4 TSI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183924, + "fields": { + "id_car_serie": 47411, + "name": "1.6 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183925, + "fields": { + "id_car_serie": 47411, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183927, + "fields": { + "id_car_serie": 47411, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183928, + "fields": { + "id_car_serie": 47411, + "name": "2.0 TDI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183936, + "fields": { + "id_car_serie": 47442, + "name": "2.8 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183937, + "fields": { + "id_car_serie": 47442, + "name": "2.8 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183938, + "fields": { + "id_car_serie": 47447, + "name": "1.2 TSI MT Economy L1 (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183939, + "fields": { + "id_car_serie": 47447, + "name": "1.2 TSI MT L1 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183947, + "fields": { + "id_car_serie": 47447, + "name": "1.6 TDI MT Economy L1 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183948, + "fields": { + "id_car_serie": 47447, + "name": "2.0 TDI MT 4Motion L1 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183950, + "fields": { + "id_car_serie": 47447, + "name": "2.0 TDI DSG 4Motion L1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183952, + "fields": { + "id_car_serie": 47447, + "name": "2.0 TDI MT L1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183959, + "fields": { + "id_car_serie": 47447, + "name": "2.0 MT EcoFuel L1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 183989, + "fields": { + "id_car_serie": 47447, + "name": "1.6 TDI DSG L1 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184002, + "fields": { + "id_car_serie": 47455, + "name": "3.0 TD 4Motion AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184007, + "fields": { + "id_car_serie": 47455, + "name": "4.2 L 4Motion AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184008, + "fields": { + "id_car_serie": 47455, + "name": "3.6 4Motion AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184009, + "fields": { + "id_car_serie": 47455, + "name": "4.2 4Motion AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184011, + "fields": { + "id_car_serie": 47455, + "name": "6.0 4Motion AT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184012, + "fields": { + "id_car_serie": 47455, + "name": "6.0 L 4Motion AT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184013, + "fields": { + "id_car_serie": 47457, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184014, + "fields": { + "id_car_serie": 47457, + "name": "1.4 TSI EcoFuel MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184017, + "fields": { + "id_car_serie": 47457, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184019, + "fields": { + "id_car_serie": 47457, + "name": "2.0 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184023, + "fields": { + "id_car_serie": 46943, + "name": "2.3 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184024, + "fields": { + "id_car_serie": 47461, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184025, + "fields": { + "id_car_serie": 47461, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184026, + "fields": { + "id_car_serie": 47461, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184027, + "fields": { + "id_car_serie": 47461, + "name": "2.9 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184028, + "fields": { + "id_car_serie": 47461, + "name": "2.4 TD AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184029, + "fields": { + "id_car_serie": 47461, + "name": "2.4 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184030, + "fields": { + "id_car_serie": 47470, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184031, + "fields": { + "id_car_serie": 47470, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184032, + "fields": { + "id_car_serie": 47470, + "name": "2.5 CVT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184033, + "fields": { + "id_car_serie": 47470, + "name": "2.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184036, + "fields": { + "id_car_serie": 47475, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184037, + "fields": { + "id_car_serie": 47475, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184038, + "fields": { + "id_car_serie": 47475, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184041, + "fields": { + "id_car_serie": 47476, + "name": "5.6 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184042, + "fields": { + "id_car_serie": 47476, + "name": "5.6 AT 4WD (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184043, + "fields": { + "id_car_serie": 46950, + "name": "1.6 MT 8 valves (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184044, + "fields": { + "id_car_serie": 46950, + "name": "1.6 MT 16 valves (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184052, + "fields": { + "id_car_serie": 47469, + "name": "31514-10 2.4 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184053, + "fields": { + "id_car_serie": 47469, + "name": "315142-10 2.4 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184054, + "fields": { + "id_car_serie": 47469, + "name": "315142 2.4 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184055, + "fields": { + "id_car_serie": 47469, + "name": "31514 2.4 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184056, + "fields": { + "id_car_serie": 47469, + "name": "3151 2.4 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184058, + "fields": { + "id_car_serie": 47089, + "name": "3.0 MT (274 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184060, + "fields": { + "id_car_serie": 47143, + "name": "2.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184100, + "fields": { + "id_car_serie": 47139, + "name": "5.3 AT RWD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184105, + "fields": { + "id_car_serie": 47094, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184106, + "fields": { + "id_car_serie": 47094, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184107, + "fields": { + "id_car_serie": 47094, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184108, + "fields": { + "id_car_serie": 47094, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184116, + "fields": { + "id_car_serie": 47094, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184117, + "fields": { + "id_car_serie": 47094, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184119, + "fields": { + "id_car_serie": 47094, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184160, + "fields": { + "id_car_serie": 46899, + "name": "5.5 AT (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184161, + "fields": { + "id_car_serie": 46899, + "name": "3.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184167, + "fields": { + "id_car_serie": 46899, + "name": "4.0 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184171, + "fields": { + "id_car_serie": 47116, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184172, + "fields": { + "id_car_serie": 47116, + "name": "1.8 T quattro MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184173, + "fields": { + "id_car_serie": 47116, + "name": "1.8 T AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184174, + "fields": { + "id_car_serie": 47116, + "name": "1.8 T MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184176, + "fields": { + "id_car_serie": 47116, + "name": "1.8 T quattro MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184178, + "fields": { + "id_car_serie": 47114, + "name": "2.2 Turbo quattro MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184179, + "fields": { + "id_car_serie": 47114, + "name": "2.2 Turbo quattro AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184180, + "fields": { + "id_car_serie": 47114, + "name": "4.2 V8 quattro MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184181, + "fields": { + "id_car_serie": 47114, + "name": "4.2 V8 quattro AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184194, + "fields": { + "id_car_serie": 46906, + "name": "4.2 AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184195, + "fields": { + "id_car_serie": 46906, + "name": "5.0 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184196, + "fields": { + "id_car_serie": 46906, + "name": "5.0 AT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184197, + "fields": { + "id_car_serie": 46906, + "name": "6.0 AT (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184198, + "fields": { + "id_car_serie": 46906, + "name": "6.0 AT (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184200, + "fields": { + "id_car_serie": 47098, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184201, + "fields": { + "id_car_serie": 47098, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184202, + "fields": { + "id_car_serie": 47098, + "name": "1.8 MT quattro (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184203, + "fields": { + "id_car_serie": 47098, + "name": "2.0 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184204, + "fields": { + "id_car_serie": 47098, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184205, + "fields": { + "id_car_serie": 47098, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184206, + "fields": { + "id_car_serie": 47098, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184207, + "fields": { + "id_car_serie": 47098, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184208, + "fields": { + "id_car_serie": 47098, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184209, + "fields": { + "id_car_serie": 47098, + "name": "2.0 AT quattro (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184210, + "fields": { + "id_car_serie": 47098, + "name": "2.0 MT quattro (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184211, + "fields": { + "id_car_serie": 47098, + "name": "2.3 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184212, + "fields": { + "id_car_serie": 47098, + "name": "2.3 AT quattro (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184213, + "fields": { + "id_car_serie": 47098, + "name": "2.3 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184214, + "fields": { + "id_car_serie": 47098, + "name": "2.3 MT quattro (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184215, + "fields": { + "id_car_serie": 47098, + "name": "2.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184216, + "fields": { + "id_car_serie": 47098, + "name": "2.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184217, + "fields": { + "id_car_serie": 47098, + "name": "2.6 MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184218, + "fields": { + "id_car_serie": 47098, + "name": "2.6 AT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184219, + "fields": { + "id_car_serie": 47098, + "name": "2.8 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184220, + "fields": { + "id_car_serie": 47098, + "name": "2.8 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184221, + "fields": { + "id_car_serie": 47098, + "name": "2.8 MT quattro (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184222, + "fields": { + "id_car_serie": 47098, + "name": "2.8 AT quattro (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184223, + "fields": { + "id_car_serie": 47098, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184224, + "fields": { + "id_car_serie": 47098, + "name": "2.8 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184225, + "fields": { + "id_car_serie": 47098, + "name": "2.8 MT quattro (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184226, + "fields": { + "id_car_serie": 47098, + "name": "2.8 AT quattro (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184227, + "fields": { + "id_car_serie": 47098, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184228, + "fields": { + "id_car_serie": 47098, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184229, + "fields": { + "id_car_serie": 47098, + "name": "2.5 TDI 6MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184230, + "fields": { + "id_car_serie": 47098, + "name": "2.5 TDI AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184231, + "fields": { + "id_car_serie": 47098, + "name": "2.5 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184232, + "fields": { + "id_car_serie": 47098, + "name": "2.5 TDI 5MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184233, + "fields": { + "id_car_serie": 47098, + "name": "2.5 TDI AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184234, + "fields": { + "id_car_serie": 47096, + "name": "1.8 TFSI multitronic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184235, + "fields": { + "id_car_serie": 47096, + "name": "1.8 TFSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184236, + "fields": { + "id_car_serie": 47096, + "name": "2.0 TFSI multitronic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184237, + "fields": { + "id_car_serie": 47096, + "name": "2.0 TFSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184238, + "fields": { + "id_car_serie": 47096, + "name": "2.0 TFSI MT quattro (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184239, + "fields": { + "id_car_serie": 47096, + "name": "2.0 TFSI MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184240, + "fields": { + "id_car_serie": 47096, + "name": "2.0 TDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184241, + "fields": { + "id_car_serie": 47096, + "name": "2.0 TFSI S tronic quattro (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184242, + "fields": { + "id_car_serie": 47096, + "name": "3.2 FSI S tronic quattro (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184244, + "fields": { + "id_car_serie": 47096, + "name": "3.0 TDI S tronic quattro (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184246, + "fields": { + "id_car_serie": 47096, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184248, + "fields": { + "id_car_serie": 47096, + "name": "2.0 TDI MT quattro (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184249, + "fields": { + "id_car_serie": 47096, + "name": "2.7 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184250, + "fields": { + "id_car_serie": 47096, + "name": "3.0 TDI MT quattro (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184251, + "fields": { + "id_car_serie": 46901, + "name": "2.8 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184252, + "fields": { + "id_car_serie": 46901, + "name": "3.2 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184253, + "fields": { + "id_car_serie": 46901, + "name": "4.3 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184254, + "fields": { + "id_car_serie": 46901, + "name": "5.0 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184255, + "fields": { + "id_car_serie": 46901, + "name": "5.8 AT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184261, + "fields": { + "id_car_serie": 46840, + "name": "5.9 Sportshift (528 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184262, + "fields": { + "id_car_serie": 46832, + "name": "1.4 TB MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184263, + "fields": { + "id_car_serie": 46832, + "name": "1.4 TB MultiAir MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184267, + "fields": { + "id_car_serie": 46832, + "name": "1.6 JTDm MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184269, + "fields": { + "id_car_serie": 46832, + "name": "2.0 JTDm MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184271, + "fields": { + "id_car_serie": 46830, + "name": "1.8 AMT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184289, + "fields": { + "id_car_serie": 50115, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184290, + "fields": { + "id_car_serie": 50115, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184291, + "fields": { + "id_car_serie": 50115, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184292, + "fields": { + "id_car_serie": 50115, + "name": "3.3 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184293, + "fields": { + "id_car_serie": 50115, + "name": "2.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184294, + "fields": { + "id_car_serie": 47152, + "name": "2.5 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184299, + "fields": { + "id_car_serie": 47153, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184305, + "fields": { + "id_car_serie": 47155, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184306, + "fields": { + "id_car_serie": 47155, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184307, + "fields": { + "id_car_serie": 47155, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184311, + "fields": { + "id_car_serie": 47155, + "name": "2.0 HDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184312, + "fields": { + "id_car_serie": 47155, + "name": "2.0 HDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184313, + "fields": { + "id_car_serie": 47155, + "name": "2.0 HDI MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184314, + "fields": { + "id_car_serie": 47155, + "name": "2.0 HDI AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184315, + "fields": { + "id_car_serie": 47155, + "name": "2.0 HDI AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184316, + "fields": { + "id_car_serie": 47155, + "name": "2.0 HDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184317, + "fields": { + "id_car_serie": 47155, + "name": "2.2 HDi AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184318, + "fields": { + "id_car_serie": 47155, + "name": "2.2 HDi MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184319, + "fields": { + "id_car_serie": 46851, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184320, + "fields": { + "id_car_serie": 46851, + "name": "1.6 THP AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184321, + "fields": { + "id_car_serie": 46851, + "name": "1.6 THP MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184322, + "fields": { + "id_car_serie": 46851, + "name": "1.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184323, + "fields": { + "id_car_serie": 46851, + "name": "2.0 HDi AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184324, + "fields": { + "id_car_serie": 46851, + "name": "2.0 AMT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184325, + "fields": { + "id_car_serie": 46851, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184326, + "fields": { + "id_car_serie": 46851, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184327, + "fields": { + "id_car_serie": 46851, + "name": "1.6 THP AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184328, + "fields": { + "id_car_serie": 46851, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184329, + "fields": { + "id_car_serie": 46851, + "name": "1.6 HDi MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184330, + "fields": { + "id_car_serie": 46851, + "name": "1.6 THP AMT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184331, + "fields": { + "id_car_serie": 46851, + "name": "2.0 HDi AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184332, + "fields": { + "id_car_serie": 46851, + "name": "2.0 HDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184333, + "fields": { + "id_car_serie": 47163, + "name": "1.5 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184372, + "fields": { + "id_car_serie": 47199, + "name": "0.9 MT (39 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184373, + "fields": { + "id_car_serie": 47199, + "name": "1.1 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184374, + "fields": { + "id_car_serie": 47201, + "name": "1.1 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184375, + "fields": { + "id_car_serie": 47201, + "name": "1.1 MT (59 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184376, + "fields": { + "id_car_serie": 47201, + "name": "1.1 5MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184377, + "fields": { + "id_car_serie": 47201, + "name": "1.3 5MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184378, + "fields": { + "id_car_serie": 47201, + "name": "1.6 5MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184380, + "fields": { + "id_car_serie": 47201, + "name": "1.6 MT XR3i (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184382, + "fields": { + "id_car_serie": 47201, + "name": "1.6 4MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184383, + "fields": { + "id_car_serie": 47201, + "name": "1.6 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184384, + "fields": { + "id_car_serie": 47201, + "name": "1.6 5MT XR3 (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184386, + "fields": { + "id_car_serie": 47201, + "name": "1.6 5MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184387, + "fields": { + "id_car_serie": 47202, + "name": "4.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184388, + "fields": { + "id_car_serie": 47202, + "name": "4.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184389, + "fields": { + "id_car_serie": 47202, + "name": "4.0 AT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184390, + "fields": { + "id_car_serie": 47202, + "name": "4.0 MT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184395, + "fields": { + "id_car_serie": 47203, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184396, + "fields": { + "id_car_serie": 47203, + "name": "1.4 Durashift EST (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184397, + "fields": { + "id_car_serie": 47203, + "name": "1.6 TDCI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184398, + "fields": { + "id_car_serie": 47203, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184399, + "fields": { + "id_car_serie": 47203, + "name": "1.4 TDCI MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184400, + "fields": { + "id_car_serie": 47203, + "name": "1.4 TDCI Durashift EST (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184401, + "fields": { + "id_car_serie": 46864, + "name": "2.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184417, + "fields": { + "id_car_serie": 46873, + "name": "2.4 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184418, + "fields": { + "id_car_serie": 46873, + "name": "2.4 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184419, + "fields": { + "id_car_serie": 46873, + "name": "2.4 AT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184420, + "fields": { + "id_car_serie": 46873, + "name": "2.4 MT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184421, + "fields": { + "id_car_serie": 46875, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184427, + "fields": { + "id_car_serie": 46876, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184428, + "fields": { + "id_car_serie": 46876, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184429, + "fields": { + "id_car_serie": 46876, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184432, + "fields": { + "id_car_serie": 47221, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184433, + "fields": { + "id_car_serie": 47221, + "name": "1.6 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184435, + "fields": { + "id_car_serie": 47221, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184436, + "fields": { + "id_car_serie": 47221, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184439, + "fields": { + "id_car_serie": 47223, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184440, + "fields": { + "id_car_serie": 47223, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184443, + "fields": { + "id_car_serie": 47223, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184444, + "fields": { + "id_car_serie": 47223, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184447, + "fields": { + "id_car_serie": 47223, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184448, + "fields": { + "id_car_serie": 47223, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184449, + "fields": { + "id_car_serie": 47223, + "name": "1.6 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184450, + "fields": { + "id_car_serie": 47223, + "name": "1.6 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184452, + "fields": { + "id_car_serie": 47224, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184453, + "fields": { + "id_car_serie": 47224, + "name": "1.3 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184455, + "fields": { + "id_car_serie": 47224, + "name": "1.3 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184457, + "fields": { + "id_car_serie": 47224, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184458, + "fields": { + "id_car_serie": 47224, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184459, + "fields": { + "id_car_serie": 47224, + "name": "1.5 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184460, + "fields": { + "id_car_serie": 47224, + "name": "1.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184461, + "fields": { + "id_car_serie": 47224, + "name": "1.5 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184462, + "fields": { + "id_car_serie": 47224, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184463, + "fields": { + "id_car_serie": 47222, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184464, + "fields": { + "id_car_serie": 47222, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184465, + "fields": { + "id_car_serie": 47222, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184466, + "fields": { + "id_car_serie": 47222, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184470, + "fields": { + "id_car_serie": 47222, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184471, + "fields": { + "id_car_serie": 47225, + "name": "1.3 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184472, + "fields": { + "id_car_serie": 47225, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184473, + "fields": { + "id_car_serie": 47225, + "name": "1.3 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184474, + "fields": { + "id_car_serie": 47225, + "name": "1.3 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184480, + "fields": { + "id_car_serie": 47228, + "name": "2.5 MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184482, + "fields": { + "id_car_serie": 47228, + "name": "2.7 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184496, + "fields": { + "id_car_serie": 47237, + "name": "3.8 GDi AT (334 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184499, + "fields": { + "id_car_serie": 47237, + "name": "5.0 GDi AT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184500, + "fields": { + "id_car_serie": 47238, + "name": "2.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184501, + "fields": { + "id_car_serie": 47238, + "name": "2.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184502, + "fields": { + "id_car_serie": 47238, + "name": "2.0 MT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184503, + "fields": { + "id_car_serie": 47238, + "name": "2.0 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184504, + "fields": { + "id_car_serie": 47238, + "name": "3.8 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184505, + "fields": { + "id_car_serie": 47238, + "name": "3.8 MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184506, + "fields": { + "id_car_serie": 47241, + "name": "2.0 CRDi AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184507, + "fields": { + "id_car_serie": 47241, + "name": "2.0 CRDi MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184513, + "fields": { + "id_car_serie": 47241, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184514, + "fields": { + "id_car_serie": 47241, + "name": "2.0 AT 2WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184515, + "fields": { + "id_car_serie": 47241, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184517, + "fields": { + "id_car_serie": 47241, + "name": "2.0 MT 2WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184523, + "fields": { + "id_car_serie": 1149, + "name": "2.5 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184524, + "fields": { + "id_car_serie": 1149, + "name": "2.9 CRDi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184525, + "fields": { + "id_car_serie": 1149, + "name": "2.9 CRDi AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184528, + "fields": { + "id_car_serie": 1149, + "name": "3.5 MT 4WD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184529, + "fields": { + "id_car_serie": 1149, + "name": "3.5 AT 4WD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184530, + "fields": { + "id_car_serie": 1149, + "name": "3.5 AT 4WD (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184535, + "fields": { + "id_car_serie": 47246, + "name": "3.5 CVT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184552, + "fields": { + "id_car_serie": 47265, + "name": "2.0 AT AWD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184553, + "fields": { + "id_car_serie": 47265, + "name": "2.0 MT AWD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184554, + "fields": { + "id_car_serie": 47265, + "name": "2.0 MT AWD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184555, + "fields": { + "id_car_serie": 47265, + "name": "2.0 AT AWD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184556, + "fields": { + "id_car_serie": 46893, + "name": "2.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184557, + "fields": { + "id_car_serie": 46893, + "name": "2.0 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184558, + "fields": { + "id_car_serie": 46893, + "name": "2.5 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184559, + "fields": { + "id_car_serie": 46893, + "name": "2.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184560, + "fields": { + "id_car_serie": 46893, + "name": "2.5 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184561, + "fields": { + "id_car_serie": 46893, + "name": "2.5 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184562, + "fields": { + "id_car_serie": 46893, + "name": "3.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184563, + "fields": { + "id_car_serie": 46893, + "name": "3.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184566, + "fields": { + "id_car_serie": 46893, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184567, + "fields": { + "id_car_serie": 46893, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184568, + "fields": { + "id_car_serie": 46893, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184569, + "fields": { + "id_car_serie": 46893, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184572, + "fields": { + "id_car_serie": 46893, + "name": "2.8 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184581, + "fields": { + "id_car_serie": 46893, + "name": "4.2 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184582, + "fields": { + "id_car_serie": 46893, + "name": "5.0 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184583, + "fields": { + "id_car_serie": 47383, + "name": "2.0 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184584, + "fields": { + "id_car_serie": 47383, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184585, + "fields": { + "id_car_serie": 47383, + "name": "2.9 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184586, + "fields": { + "id_car_serie": 47383, + "name": "3.0 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184588, + "fields": { + "id_car_serie": 47383, + "name": "2.2 dCi MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184589, + "fields": { + "id_car_serie": 47383, + "name": "2.2 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184601, + "fields": { + "id_car_serie": 46892, + "name": "1.6 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184603, + "fields": { + "id_car_serie": 46892, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184604, + "fields": { + "id_car_serie": 46892, + "name": "1.6 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184605, + "fields": { + "id_car_serie": 46892, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184607, + "fields": { + "id_car_serie": 46892, + "name": "2.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184609, + "fields": { + "id_car_serie": 46892, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184610, + "fields": { + "id_car_serie": 46892, + "name": "1.5 AMT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184611, + "fields": { + "id_car_serie": 46892, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184642, + "fields": { + "id_car_serie": 47318, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184643, + "fields": { + "id_car_serie": 47318, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184644, + "fields": { + "id_car_serie": 47318, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184645, + "fields": { + "id_car_serie": 47318, + "name": "1.8 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184646, + "fields": { + "id_car_serie": 47318, + "name": "1.8 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184647, + "fields": { + "id_car_serie": 47318, + "name": "1.8 MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184648, + "fields": { + "id_car_serie": 47318, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184649, + "fields": { + "id_car_serie": 47318, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184650, + "fields": { + "id_car_serie": 47318, + "name": "1.8 AT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184651, + "fields": { + "id_car_serie": 47318, + "name": "1.8 MT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184652, + "fields": { + "id_car_serie": 47318, + "name": "2.0 TD AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184653, + "fields": { + "id_car_serie": 47318, + "name": "2.0 TD MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184654, + "fields": { + "id_car_serie": 47318, + "name": "2.0 TD MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184655, + "fields": { + "id_car_serie": 47318, + "name": "2.0 TD AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184656, + "fields": { + "id_car_serie": 47322, + "name": "2.5 TD MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184677, + "fields": { + "id_car_serie": 46894, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184678, + "fields": { + "id_car_serie": 46894, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184679, + "fields": { + "id_car_serie": 46894, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184680, + "fields": { + "id_car_serie": 46894, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184681, + "fields": { + "id_car_serie": 46894, + "name": "3.2 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184682, + "fields": { + "id_car_serie": 46894, + "name": "3.2 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184683, + "fields": { + "id_car_serie": 47374, + "name": "3.6 MT Carrera 2 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184684, + "fields": { + "id_car_serie": 47374, + "name": "3.6 MT Carrera 4 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184685, + "fields": { + "id_car_serie": 47325, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184686, + "fields": { + "id_car_serie": 47325, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184687, + "fields": { + "id_car_serie": 47335, + "name": "1.6 Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184688, + "fields": { + "id_car_serie": 47335, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184689, + "fields": { + "id_car_serie": 47335, + "name": "2.0 Turbo AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184690, + "fields": { + "id_car_serie": 47335, + "name": "2.0 Turbo AT 4x4 (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184692, + "fields": { + "id_car_serie": 47335, + "name": "2.0 BiTurbo CDTI AT 4x4 (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184694, + "fields": { + "id_car_serie": 47335, + "name": "2.0 Turbo MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184696, + "fields": { + "id_car_serie": 47335, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184697, + "fields": { + "id_car_serie": 47335, + "name": "2.0 Turbo MT 4x4 (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184700, + "fields": { + "id_car_serie": 47335, + "name": "2.0 CDTI MT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184701, + "fields": { + "id_car_serie": 47335, + "name": "2.8 Turbo MT 4x4 (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184702, + "fields": { + "id_car_serie": 47335, + "name": "2.8 Turbo AT 4x4 (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184703, + "fields": { + "id_car_serie": 47335, + "name": "2.0 DTH AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184704, + "fields": { + "id_car_serie": 47335, + "name": "2.0 DTH MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184705, + "fields": { + "id_car_serie": 47335, + "name": "2.0 DTH AT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184706, + "fields": { + "id_car_serie": 47335, + "name": "2.0 CDTI ecoFLEX MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184707, + "fields": { + "id_car_serie": 47335, + "name": "2.0 CDTI ecoFLEX MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184708, + "fields": { + "id_car_serie": 47335, + "name": "2.0 CDTI ecoFLEX AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184709, + "fields": { + "id_car_serie": 47335, + "name": "2.0 BiTurbo CDTI MT 4x4 (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184710, + "fields": { + "id_car_serie": 47335, + "name": "2.0 BiTurbo CDTI AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184714, + "fields": { + "id_car_serie": 47330, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184716, + "fields": { + "id_car_serie": 47330, + "name": "1.4 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184717, + "fields": { + "id_car_serie": 47330, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184724, + "fields": { + "id_car_serie": 47328, + "name": "3.0 4WD AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184725, + "fields": { + "id_car_serie": 47328, + "name": "3.0 4WD MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184730, + "fields": { + "id_car_serie": 47328, + "name": "2.7 TD 4WD AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184731, + "fields": { + "id_car_serie": 47328, + "name": "2.7 TD 4WD MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184736, + "fields": { + "id_car_serie": 47331, + "name": "1.4 Turbo AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184737, + "fields": { + "id_car_serie": 47331, + "name": "1.4 ecoFLEX MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184738, + "fields": { + "id_car_serie": 47331, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184739, + "fields": { + "id_car_serie": 47331, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184740, + "fields": { + "id_car_serie": 47331, + "name": "1.6 Turbo AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184742, + "fields": { + "id_car_serie": 47331, + "name": "1.4 Turbo MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184747, + "fields": { + "id_car_serie": 47331, + "name": "1.4 Turbo MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184748, + "fields": { + "id_car_serie": 47331, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184749, + "fields": { + "id_car_serie": 47331, + "name": "1.6 Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184751, + "fields": { + "id_car_serie": 47331, + "name": "1.7 CDTI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184752, + "fields": { + "id_car_serie": 47331, + "name": "1.7 CDTI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184753, + "fields": { + "id_car_serie": 47331, + "name": "2.0 CDTI AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184754, + "fields": { + "id_car_serie": 47331, + "name": "2.0 CDTI MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184759, + "fields": { + "id_car_serie": 47332, + "name": "1.6 CDTI MT L1H1 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184760, + "fields": { + "id_car_serie": 47332, + "name": "1.6 CDTI MT L2H1 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184761, + "fields": { + "id_car_serie": 47332, + "name": "1.6 CDTI MT L1H2 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184762, + "fields": { + "id_car_serie": 47332, + "name": "2.0 CDTI MT L2H2 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184763, + "fields": { + "id_car_serie": 47332, + "name": "1.4 CNG Turbo MT L2H1 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184764, + "fields": { + "id_car_serie": 47332, + "name": "1.4 MT L2H1 (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184765, + "fields": { + "id_car_serie": 47332, + "name": "1.4 MT L1H2 (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184766, + "fields": { + "id_car_serie": 47332, + "name": "1.4 CNG Turbo MT L1H1 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184767, + "fields": { + "id_car_serie": 47333, + "name": "1.6 Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184768, + "fields": { + "id_car_serie": 47333, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184769, + "fields": { + "id_car_serie": 47333, + "name": "2.0 BiTurbo CDTI AT 4x4 (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184770, + "fields": { + "id_car_serie": 47333, + "name": "2.0 Turbo AT 4x4 (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184772, + "fields": { + "id_car_serie": 47333, + "name": "2.0 Turbo AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184774, + "fields": { + "id_car_serie": 47333, + "name": "2.0 Turbo AT 4x4 (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184775, + "fields": { + "id_car_serie": 47333, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184776, + "fields": { + "id_car_serie": 47333, + "name": "2.0 CDTI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184777, + "fields": { + "id_car_serie": 47333, + "name": "2.0 BiTurbo CDTI MT 4x4 (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184778, + "fields": { + "id_car_serie": 47333, + "name": "2.0 Turbo AT 4x4 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184779, + "fields": { + "id_car_serie": 47333, + "name": "2.0 Turbo MT 4x4 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184780, + "fields": { + "id_car_serie": 47333, + "name": "2.8 V6 Turbo MT 4x4 (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184781, + "fields": { + "id_car_serie": 47333, + "name": "2.8 V6 Turbo AT 4x4 (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184782, + "fields": { + "id_car_serie": 47333, + "name": "2.0 DTH AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184783, + "fields": { + "id_car_serie": 47333, + "name": "2.0 DTH AT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184784, + "fields": { + "id_car_serie": 47333, + "name": "2.0 DTH MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184785, + "fields": { + "id_car_serie": 47333, + "name": "2.0 CDTI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184786, + "fields": { + "id_car_serie": 47333, + "name": "2.0 CDTI MT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184787, + "fields": { + "id_car_serie": 47333, + "name": "2.0 CDTI AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184791, + "fields": { + "id_car_serie": 47347, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184792, + "fields": { + "id_car_serie": 47347, + "name": "1.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184793, + "fields": { + "id_car_serie": 47347, + "name": "1.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184794, + "fields": { + "id_car_serie": 47347, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184795, + "fields": { + "id_car_serie": 46915, + "name": "4.9 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184796, + "fields": { + "id_car_serie": 46915, + "name": "5.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184799, + "fields": { + "id_car_serie": 47385, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184801, + "fields": { + "id_car_serie": 47385, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184802, + "fields": { + "id_car_serie": 47385, + "name": "1.6 MT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184804, + "fields": { + "id_car_serie": 47385, + "name": "1.5 dCi MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184806, + "fields": { + "id_car_serie": 47385, + "name": "1.9 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184807, + "fields": { + "id_car_serie": 47385, + "name": "1.9 dTi MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184808, + "fields": { + "id_car_serie": 47385, + "name": "1.9 dCi MT AWD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184810, + "fields": { + "id_car_serie": 47388, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184812, + "fields": { + "id_car_serie": 47388, + "name": "1.6 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184813, + "fields": { + "id_car_serie": 47388, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184818, + "fields": { + "id_car_serie": 47396, + "name": "1.4 TCe MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184819, + "fields": { + "id_car_serie": 47396, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184820, + "fields": { + "id_car_serie": 47396, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184824, + "fields": { + "id_car_serie": 47396, + "name": "1.5 dCi MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184825, + "fields": { + "id_car_serie": 47396, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184826, + "fields": { + "id_car_serie": 47396, + "name": "1.5 dCi EDC (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184828, + "fields": { + "id_car_serie": 47396, + "name": "1.9 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184829, + "fields": { + "id_car_serie": 47396, + "name": "2.0 dCi FAP AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184830, + "fields": { + "id_car_serie": 47396, + "name": "2.0 dCi FAP MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184831, + "fields": { + "id_car_serie": 46921, + "name": "6.6 AT (570 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184833, + "fields": { + "id_car_serie": 46929, + "name": "2.0 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184834, + "fields": { + "id_car_serie": 46929, + "name": "2.0 T AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184835, + "fields": { + "id_car_serie": 46929, + "name": "2.0 T MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184836, + "fields": { + "id_car_serie": 46929, + "name": "2.0 T AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184837, + "fields": { + "id_car_serie": 46929, + "name": "2.3 T MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184838, + "fields": { + "id_car_serie": 46929, + "name": "2.3 T AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184839, + "fields": { + "id_car_serie": 46929, + "name": "2.3 T MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184840, + "fields": { + "id_car_serie": 46929, + "name": "2.3 T AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184841, + "fields": { + "id_car_serie": 46929, + "name": "3.0 T AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184842, + "fields": { + "id_car_serie": 47408, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184843, + "fields": { + "id_car_serie": 47408, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184844, + "fields": { + "id_car_serie": 47408, + "name": "1.4 MPI MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184845, + "fields": { + "id_car_serie": 47408, + "name": "1.6 MPI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184846, + "fields": { + "id_car_serie": 47408, + "name": "1.6 MPI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184852, + "fields": { + "id_car_serie": 47408, + "name": "1.2 MPI MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184858, + "fields": { + "id_car_serie": 47410, + "name": "0.9 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184859, + "fields": { + "id_car_serie": 47410, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184861, + "fields": { + "id_car_serie": 47410, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184863, + "fields": { + "id_car_serie": 47410, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184865, + "fields": { + "id_car_serie": 47410, + "name": "1.7 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184867, + "fields": { + "id_car_serie": 47413, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184868, + "fields": { + "id_car_serie": 47414, + "name": "1.8 TSI MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184869, + "fields": { + "id_car_serie": 47414, + "name": "1.8 TSI MT 4x4 (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184870, + "fields": { + "id_car_serie": 47414, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184871, + "fields": { + "id_car_serie": 47414, + "name": "2.0 TDI Euro V MT 4x4 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184878, + "fields": { + "id_car_serie": 47424, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184879, + "fields": { + "id_car_serie": 47424, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184886, + "fields": { + "id_car_serie": 47424, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184887, + "fields": { + "id_car_serie": 47424, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184888, + "fields": { + "id_car_serie": 47424, + "name": "1.6 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184889, + "fields": { + "id_car_serie": 47424, + "name": "1.6 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184892, + "fields": { + "id_car_serie": 47424, + "name": "1.6 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184893, + "fields": { + "id_car_serie": 47424, + "name": "1.6 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184894, + "fields": { + "id_car_serie": 47424, + "name": "1.8 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184895, + "fields": { + "id_car_serie": 47424, + "name": "1.8 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184896, + "fields": { + "id_car_serie": 47424, + "name": "1.8 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184897, + "fields": { + "id_car_serie": 47424, + "name": "1.8 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184898, + "fields": { + "id_car_serie": 47424, + "name": "2.0 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184899, + "fields": { + "id_car_serie": 47424, + "name": "2.0 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184908, + "fields": { + "id_car_serie": 47319, + "name": "0.7 AT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184909, + "fields": { + "id_car_serie": 47319, + "name": "0.7 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184910, + "fields": { + "id_car_serie": 47319, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184911, + "fields": { + "id_car_serie": 47319, + "name": "0.7 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184912, + "fields": { + "id_car_serie": 47319, + "name": "0.7 MT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184913, + "fields": { + "id_car_serie": 47319, + "name": "0.7 AT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184914, + "fields": { + "id_car_serie": 47319, + "name": "0.7 Turbo MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184915, + "fields": { + "id_car_serie": 47319, + "name": "0.7 Turbo AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184917, + "fields": { + "id_car_serie": 47430, + "name": "1.8 TD AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184920, + "fields": { + "id_car_serie": 47430, + "name": "2.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184921, + "fields": { + "id_car_serie": 47430, + "name": "2.0 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184928, + "fields": { + "id_car_serie": 47433, + "name": "1.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184955, + "fields": { + "id_car_serie": 47436, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184957, + "fields": { + "id_car_serie": 47436, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184958, + "fields": { + "id_car_serie": 47436, + "name": "2.0 D MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184959, + "fields": { + "id_car_serie": 47437, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184960, + "fields": { + "id_car_serie": 47437, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184961, + "fields": { + "id_car_serie": 47437, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184962, + "fields": { + "id_car_serie": 47437, + "name": "1.8 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184963, + "fields": { + "id_car_serie": 47437, + "name": "1.8 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184966, + "fields": { + "id_car_serie": 47439, + "name": "2.5 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184967, + "fields": { + "id_car_serie": 47439, + "name": "2.5 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184968, + "fields": { + "id_car_serie": 47439, + "name": "3.0 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184973, + "fields": { + "id_car_serie": 47438, + "name": "2.5 AT RWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184974, + "fields": { + "id_car_serie": 47438, + "name": "2.5 AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184976, + "fields": { + "id_car_serie": 47438, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184977, + "fields": { + "id_car_serie": 47445, + "name": "1.6 MPI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184983, + "fields": { + "id_car_serie": 47445, + "name": "1.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184984, + "fields": { + "id_car_serie": 47445, + "name": "1.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184985, + "fields": { + "id_car_serie": 47445, + "name": "1.4 AMT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184988, + "fields": { + "id_car_serie": 47445, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 184989, + "fields": { + "id_car_serie": 47445, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185007, + "fields": { + "id_car_serie": 47445, + "name": "1.6 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185008, + "fields": { + "id_car_serie": 47445, + "name": "1.6 TDI MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185009, + "fields": { + "id_car_serie": 47445, + "name": "1.6 TDI DSG (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185010, + "fields": { + "id_car_serie": 47445, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185011, + "fields": { + "id_car_serie": 47445, + "name": "2.0 AMT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185013, + "fields": { + "id_car_serie": 47445, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185016, + "fields": { + "id_car_serie": 47445, + "name": "1.4 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185017, + "fields": { + "id_car_serie": 47449, + "name": "1.2 TSI MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185018, + "fields": { + "id_car_serie": 47449, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185019, + "fields": { + "id_car_serie": 47449, + "name": "1.2 TSI BlueMotion MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185020, + "fields": { + "id_car_serie": 47449, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185021, + "fields": { + "id_car_serie": 47449, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185022, + "fields": { + "id_car_serie": 47449, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185023, + "fields": { + "id_car_serie": 47449, + "name": "1.4 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185024, + "fields": { + "id_car_serie": 47449, + "name": "1.4 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185025, + "fields": { + "id_car_serie": 47449, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185026, + "fields": { + "id_car_serie": 47449, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185027, + "fields": { + "id_car_serie": 47449, + "name": "1.6 TDI MT 4Motion (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185028, + "fields": { + "id_car_serie": 47449, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185029, + "fields": { + "id_car_serie": 47449, + "name": "1.6 TDI BlueMotion MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185030, + "fields": { + "id_car_serie": 47449, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185031, + "fields": { + "id_car_serie": 47449, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185065, + "fields": { + "id_car_serie": 47451, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185071, + "fields": { + "id_car_serie": 47451, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185075, + "fields": { + "id_car_serie": 47451, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185077, + "fields": { + "id_car_serie": 47451, + "name": "1.5 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185085, + "fields": { + "id_car_serie": 47451, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185128, + "fields": { + "id_car_serie": 46952, + "name": "1.6 MT 8 valves (Euro-4) (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185129, + "fields": { + "id_car_serie": 46952, + "name": "1.4 MT 16 valves (Euro-3) (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185130, + "fields": { + "id_car_serie": 46952, + "name": "1.6 MT 16 valves (Euro-4) (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185131, + "fields": { + "id_car_serie": 46954, + "name": "1.4 MT 16 valves (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185132, + "fields": { + "id_car_serie": 46954, + "name": "1.6 MT 8 valves (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185133, + "fields": { + "id_car_serie": 46951, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185134, + "fields": { + "id_car_serie": 46951, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185136, + "fields": { + "id_car_serie": 47403, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185143, + "fields": { + "id_car_serie": 47403, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185147, + "fields": { + "id_car_serie": 47403, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185148, + "fields": { + "id_car_serie": 47403, + "name": "1.9 MT TD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185149, + "fields": { + "id_car_serie": 47403, + "name": "1.9 MT TD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185150, + "fields": { + "id_car_serie": 47403, + "name": "1.9 MT TD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185151, + "fields": { + "id_car_serie": 47412, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185152, + "fields": { + "id_car_serie": 47412, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185153, + "fields": { + "id_car_serie": 47412, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185154, + "fields": { + "id_car_serie": 47412, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185155, + "fields": { + "id_car_serie": 47412, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185156, + "fields": { + "id_car_serie": 47412, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185157, + "fields": { + "id_car_serie": 47412, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185158, + "fields": { + "id_car_serie": 47412, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185159, + "fields": { + "id_car_serie": 47412, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185160, + "fields": { + "id_car_serie": 47412, + "name": "1.4 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185161, + "fields": { + "id_car_serie": 47412, + "name": "1.9 SDI MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185162, + "fields": { + "id_car_serie": 47412, + "name": "1.9 TDI MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185173, + "fields": { + "id_car_serie": 46885, + "name": "2.0 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185174, + "fields": { + "id_car_serie": 46885, + "name": "3.5 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185175, + "fields": { + "id_car_serie": 46885, + "name": "3.5 MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185176, + "fields": { + "id_car_serie": 46885, + "name": "3.9 MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185177, + "fields": { + "id_car_serie": 46885, + "name": "3.9 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185179, + "fields": { + "id_car_serie": 46885, + "name": "2.5 TDi MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185186, + "fields": { + "id_car_serie": 47256, + "name": "3.2 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185187, + "fields": { + "id_car_serie": 47256, + "name": "4.0 AT (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185188, + "fields": { + "id_car_serie": 47255, + "name": "3.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185189, + "fields": { + "id_car_serie": 47255, + "name": "4.2 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185190, + "fields": { + "id_car_serie": 47255, + "name": "4.2 AT Long (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185192, + "fields": { + "id_car_serie": 47255, + "name": "4.2 AT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185193, + "fields": { + "id_car_serie": 47255, + "name": "2.7 D AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185194, + "fields": { + "id_car_serie": 46881, + "name": "4.2 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185195, + "fields": { + "id_car_serie": 46881, + "name": "4.2 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185201, + "fields": { + "id_car_serie": 46847, + "name": "6.4 AT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185203, + "fields": { + "id_car_serie": 47112, + "name": "2.7 T MT quattro (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185206, + "fields": { + "id_car_serie": 46900, + "name": "6.2 AT (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185207, + "fields": { + "id_car_serie": 47499, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185208, + "fields": { + "id_car_serie": 47499, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185209, + "fields": { + "id_car_serie": 47499, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185210, + "fields": { + "id_car_serie": 47499, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185211, + "fields": { + "id_car_serie": 47499, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185222, + "fields": { + "id_car_serie": 47496, + "name": "3.0 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185223, + "fields": { + "id_car_serie": 47496, + "name": "3.2 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185224, + "fields": { + "id_car_serie": 47496, + "name": "3.2 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185225, + "fields": { + "id_car_serie": 47496, + "name": "3.5 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185226, + "fields": { + "id_car_serie": 47496, + "name": "3.7 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185227, + "fields": { + "id_car_serie": 47463, + "name": "1.5 T2 Drive-E Geartronic (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185228, + "fields": { + "id_car_serie": 47463, + "name": "2.0 T2 Drive-E MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185229, + "fields": { + "id_car_serie": 47463, + "name": "2.0 T3 Drive-E MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185231, + "fields": { + "id_car_serie": 47463, + "name": "2.0 T4 Drive-E MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185232, + "fields": { + "id_car_serie": 47463, + "name": "2.0 D4 Drive-E Geartronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185233, + "fields": { + "id_car_serie": 47463, + "name": "2.0 T5 Drive-E Geartronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185234, + "fields": { + "id_car_serie": 47463, + "name": "2.0 D2 Drive-E MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185235, + "fields": { + "id_car_serie": 47463, + "name": "2.0 D2 Drive-E Geartronic (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185236, + "fields": { + "id_car_serie": 47463, + "name": "2.0 D3 Drive-E MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185237, + "fields": { + "id_car_serie": 47463, + "name": "2.0 D3 Drive-E Geartronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185238, + "fields": { + "id_car_serie": 47463, + "name": "2.0 D4 Drive-E MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185239, + "fields": { + "id_car_serie": 47463, + "name": "2.0 T4 Drive-E Geartronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185240, + "fields": { + "id_car_serie": 47459, + "name": "1.4 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185241, + "fields": { + "id_car_serie": 47459, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185242, + "fields": { + "id_car_serie": 47459, + "name": "1.4 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185244, + "fields": { + "id_car_serie": 47459, + "name": "2.0 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185248, + "fields": { + "id_car_serie": 47459, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185250, + "fields": { + "id_car_serie": 47459, + "name": "2.0 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185252, + "fields": { + "id_car_serie": 46975, + "name": "2.5 MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185253, + "fields": { + "id_car_serie": 46975, + "name": "2.5 (340 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185254, + "fields": { + "id_car_serie": 46975, + "name": "2.5 (360 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185255, + "fields": { + "id_car_serie": 46975, + "name": "2.5 (360 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185278, + "fields": { + "id_car_serie": 47154, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185279, + "fields": { + "id_car_serie": 47154, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185280, + "fields": { + "id_car_serie": 47154, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185282, + "fields": { + "id_car_serie": 47154, + "name": "2.0 HDi AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185284, + "fields": { + "id_car_serie": 47154, + "name": "2.0 HDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185285, + "fields": { + "id_car_serie": 47154, + "name": "1.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185286, + "fields": { + "id_car_serie": 47154, + "name": "1.6 HDi AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185287, + "fields": { + "id_car_serie": 47154, + "name": "1.6 HDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185288, + "fields": { + "id_car_serie": 47154, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185307, + "fields": { + "id_car_serie": 47102, + "name": "3.1 CVT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185313, + "fields": { + "id_car_serie": 47394, + "name": "1.6 dCi MT (7 places) (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185314, + "fields": { + "id_car_serie": 47394, + "name": "1.6 dCi MT (5 places) (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185315, + "fields": { + "id_car_serie": 47394, + "name": "1.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185316, + "fields": { + "id_car_serie": 47394, + "name": "1.2 MT (5 places) (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185319, + "fields": { + "id_car_serie": 47394, + "name": "1.5 dCi MT (7 places) (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185323, + "fields": { + "id_car_serie": 47394, + "name": "2.0 dCi MT (7 places) (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185358, + "fields": { + "id_car_serie": 14932, + "name": "4.2 AT 4WD (291 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185359, + "fields": { + "id_car_serie": 14932, + "name": "4.2 AT (291 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185361, + "fields": { + "id_car_serie": 14932, + "name": "5.3 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185364, + "fields": { + "id_car_serie": 47149, + "name": "2.4 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185365, + "fields": { + "id_car_serie": 47149, + "name": "2.4 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185366, + "fields": { + "id_car_serie": 47149, + "name": "3.3 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185368, + "fields": { + "id_car_serie": 47149, + "name": "3.8 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185371, + "fields": { + "id_car_serie": 47149, + "name": "2.8 AT (150 hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185420, + "fields": { + "id_car_serie": 46903, + "name": "6.0 AT (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185424, + "fields": { + "id_car_serie": 47380, + "name": "2.0 TDi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185425, + "fields": { + "id_car_serie": 47380, + "name": "2.0 TDi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185427, + "fields": { + "id_car_serie": 47380, + "name": "2.0 TDi AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185428, + "fields": { + "id_car_serie": 47380, + "name": "2.0 TSi MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185429, + "fields": { + "id_car_serie": 47381, + "name": "1.9 dCi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185431, + "fields": { + "id_car_serie": 47381, + "name": "2.0 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185432, + "fields": { + "id_car_serie": 47381, + "name": "2.0 dCi MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185433, + "fields": { + "id_car_serie": 47381, + "name": "2.2 dCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185434, + "fields": { + "id_car_serie": 47381, + "name": "2.2 dCi AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185435, + "fields": { + "id_car_serie": 47381, + "name": "3.0 dCi AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185436, + "fields": { + "id_car_serie": 47381, + "name": "2.0 T AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185437, + "fields": { + "id_car_serie": 47381, + "name": "2.0 dCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185438, + "fields": { + "id_car_serie": 47381, + "name": "3.5 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185447, + "fields": { + "id_car_serie": 47389, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185448, + "fields": { + "id_car_serie": 47389, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185449, + "fields": { + "id_car_serie": 47389, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185450, + "fields": { + "id_car_serie": 47389, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185451, + "fields": { + "id_car_serie": 47389, + "name": "1.9 dTi MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185452, + "fields": { + "id_car_serie": 47395, + "name": "1.2 TCe MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185453, + "fields": { + "id_car_serie": 47395, + "name": "1.2 TCe MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185454, + "fields": { + "id_car_serie": 47395, + "name": "1.4 TCe MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185455, + "fields": { + "id_car_serie": 47395, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185456, + "fields": { + "id_car_serie": 47395, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185457, + "fields": { + "id_car_serie": 47395, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185458, + "fields": { + "id_car_serie": 47395, + "name": "1.5 dCi EDC (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185459, + "fields": { + "id_car_serie": 47395, + "name": "1.6 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185462, + "fields": { + "id_car_serie": 47397, + "name": "1.5 dCi MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185464, + "fields": { + "id_car_serie": 47397, + "name": "1.9 dCi AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185465, + "fields": { + "id_car_serie": 47397, + "name": "1.9 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185466, + "fields": { + "id_car_serie": 47397, + "name": "2.0 dCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185468, + "fields": { + "id_car_serie": 47397, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185469, + "fields": { + "id_car_serie": 47397, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185470, + "fields": { + "id_car_serie": 47397, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185471, + "fields": { + "id_car_serie": 47397, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185472, + "fields": { + "id_car_serie": 47399, + "name": "1.4 16v MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185473, + "fields": { + "id_car_serie": 47399, + "name": "1.6 16v MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185474, + "fields": { + "id_car_serie": 47399, + "name": "1.6 16v AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185475, + "fields": { + "id_car_serie": 47399, + "name": "1.8 16v MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185476, + "fields": { + "id_car_serie": 47399, + "name": "2.0 16v MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185477, + "fields": { + "id_car_serie": 47399, + "name": "2.0 16v AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185478, + "fields": { + "id_car_serie": 47399, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185479, + "fields": { + "id_car_serie": 47399, + "name": "1.9 dTi MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185480, + "fields": { + "id_car_serie": 47399, + "name": "1.9 dTi MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185481, + "fields": { + "id_car_serie": 47399, + "name": "1.9 dTi AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185482, + "fields": { + "id_car_serie": 47399, + "name": "1.9 dCi MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185483, + "fields": { + "id_car_serie": 47399, + "name": "1.9 dCi AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185484, + "fields": { + "id_car_serie": 46920, + "name": "2.0 T MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185485, + "fields": { + "id_car_serie": 46920, + "name": "2.0 T AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185486, + "fields": { + "id_car_serie": 46920, + "name": "3.5 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185487, + "fields": { + "id_car_serie": 46920, + "name": "2.2 TD MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185488, + "fields": { + "id_car_serie": 46920, + "name": "2.2 TD MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185489, + "fields": { + "id_car_serie": 46920, + "name": "2.2 TD AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185490, + "fields": { + "id_car_serie": 46920, + "name": "3.0 TD AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185494, + "fields": { + "id_car_serie": 46942, + "name": "1.3 L MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185497, + "fields": { + "id_car_serie": 47484, + "name": "4.3 4AT LWB 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185498, + "fields": { + "id_car_serie": 47484, + "name": "4.3 4AT 1500 Sportside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185499, + "fields": { + "id_car_serie": 47484, + "name": "4.3 5MT 1500 Sportside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185500, + "fields": { + "id_car_serie": 47484, + "name": "4.3 5MT 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185501, + "fields": { + "id_car_serie": 47484, + "name": "4.8 4AT 4WD LWB 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185502, + "fields": { + "id_car_serie": 47484, + "name": "4.8 5MT 1500 Sportside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185503, + "fields": { + "id_car_serie": 47484, + "name": "4.8 4AT 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185504, + "fields": { + "id_car_serie": 47484, + "name": "4.8 5MT LWB 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185505, + "fields": { + "id_car_serie": 47484, + "name": "4.8 4AT 4WD 1500 Sportside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185506, + "fields": { + "id_car_serie": 47484, + "name": "4.8 4AT LWB 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185508, + "fields": { + "id_car_serie": 47484, + "name": "5.3 4AT 4WD 1500 Sportside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185509, + "fields": { + "id_car_serie": 47484, + "name": "5.3 4AT 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185511, + "fields": { + "id_car_serie": 47484, + "name": "5.3 4AT 4WD LWB 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185512, + "fields": { + "id_car_serie": 47484, + "name": "5.3 4AT 4WD 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185531, + "fields": { + "id_car_serie": 46978, + "name": "2.0 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185537, + "fields": { + "id_car_serie": 46978, + "name": "2.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185538, + "fields": { + "id_car_serie": 46978, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185539, + "fields": { + "id_car_serie": 46978, + "name": "2.0 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185542, + "fields": { + "id_car_serie": 46978, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185543, + "fields": { + "id_car_serie": 46978, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185544, + "fields": { + "id_car_serie": 47509, + "name": "3.0 BITURBO AT SWITCH-TRONIC (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185549, + "fields": { + "id_car_serie": 47513, + "name": "4.4 AT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185552, + "fields": { + "id_car_serie": 47515, + "name": "2.8 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185555, + "fields": { + "id_car_serie": 47515, + "name": "3.4 MT (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185556, + "fields": { + "id_car_serie": 47517, + "name": "4.4 AT (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185557, + "fields": { + "id_car_serie": 47194, + "name": "1.6 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185558, + "fields": { + "id_car_serie": 47194, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185559, + "fields": { + "id_car_serie": 47194, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185560, + "fields": { + "id_car_serie": 47243, + "name": "2.0 CRDi MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185561, + "fields": { + "id_car_serie": 47243, + "name": "2.0 CRDi AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185562, + "fields": { + "id_car_serie": 47243, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185563, + "fields": { + "id_car_serie": 47243, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185564, + "fields": { + "id_car_serie": 47243, + "name": "2.7 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185565, + "fields": { + "id_car_serie": 47287, + "name": "1.6 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185566, + "fields": { + "id_car_serie": 47287, + "name": "1.6 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185571, + "fields": { + "id_car_serie": 47416, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185572, + "fields": { + "id_car_serie": 47416, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185573, + "fields": { + "id_car_serie": 47416, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185574, + "fields": { + "id_car_serie": 47416, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185575, + "fields": { + "id_car_serie": 47416, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185576, + "fields": { + "id_car_serie": 47416, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185577, + "fields": { + "id_car_serie": 47416, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185578, + "fields": { + "id_car_serie": 47416, + "name": "1.8 T AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185579, + "fields": { + "id_car_serie": 47416, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185580, + "fields": { + "id_car_serie": 47416, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185581, + "fields": { + "id_car_serie": 47416, + "name": "1.9 SDI MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185582, + "fields": { + "id_car_serie": 47416, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185584, + "fields": { + "id_car_serie": 47416, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185586, + "fields": { + "id_car_serie": 47479, + "name": "2.4 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185587, + "fields": { + "id_car_serie": 47479, + "name": "2.4 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185590, + "fields": { + "id_car_serie": 47479, + "name": "2.7 MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185591, + "fields": { + "id_car_serie": 47479, + "name": "2.7 AT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185596, + "fields": { + "id_car_serie": 47479, + "name": "3.4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185597, + "fields": { + "id_car_serie": 47479, + "name": "3.4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185598, + "fields": { + "id_car_serie": 47479, + "name": "3.4 MT 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185599, + "fields": { + "id_car_serie": 47479, + "name": "3.4 AT 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185600, + "fields": { + "id_car_serie": 47485, + "name": "4.3 4AT LWB 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185601, + "fields": { + "id_car_serie": 47485, + "name": "4.3 4AT 4WD LWB 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185602, + "fields": { + "id_car_serie": 47485, + "name": "4.3 5MT LWB 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185603, + "fields": { + "id_car_serie": 47485, + "name": "4.3 5MT 4WD 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185604, + "fields": { + "id_car_serie": 47485, + "name": "4.8 4AT 1500 Sportside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185605, + "fields": { + "id_car_serie": 47485, + "name": "4.8 5MT 4WD 1500 Sportside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185606, + "fields": { + "id_car_serie": 47485, + "name": "4.8 5MT 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185607, + "fields": { + "id_car_serie": 47485, + "name": "4.8 4AT 4WD 1500 Sportside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185608, + "fields": { + "id_car_serie": 47485, + "name": "4.8 4AT LWB 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185609, + "fields": { + "id_car_serie": 47485, + "name": "4.8 4AT 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185611, + "fields": { + "id_car_serie": 47485, + "name": "5.3 4AT LWB 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185613, + "fields": { + "id_car_serie": 47485, + "name": "5.3 4AT 4WD LWB 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185614, + "fields": { + "id_car_serie": 47485, + "name": "5.3 4AT 1500 Sportside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185615, + "fields": { + "id_car_serie": 47485, + "name": "5.3 4AT 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185621, + "fields": { + "id_car_serie": 46980, + "name": "1.6 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185622, + "fields": { + "id_car_serie": 46980, + "name": "1.6 MT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185631, + "fields": { + "id_car_serie": 47498, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185634, + "fields": { + "id_car_serie": 47498, + "name": "2.0 HDi AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185636, + "fields": { + "id_car_serie": 47498, + "name": "2.0 HDi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185638, + "fields": { + "id_car_serie": 46981, + "name": "4.0 AMT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185639, + "fields": { + "id_car_serie": 46982, + "name": "3.8 MT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185640, + "fields": { + "id_car_serie": 46982, + "name": "4.0 MT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185643, + "fields": { + "id_car_serie": 47508, + "name": "3.0 BITURBO SWITCH-TRONIC AWD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185644, + "fields": { + "id_car_serie": 46983, + "name": "6.0 AT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185646, + "fields": { + "id_car_serie": 46985, + "name": "5.5 AT (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185647, + "fields": { + "id_car_serie": 46985, + "name": "6.0 AT (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185652, + "fields": { + "id_car_serie": 46987, + "name": "6.2 AT (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185653, + "fields": { + "id_car_serie": 46989, + "name": "5.4 AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185654, + "fields": { + "id_car_serie": 46989, + "name": "6.3 AT (444 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185657, + "fields": { + "id_car_serie": 46993, + "name": "1.4 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185659, + "fields": { + "id_car_serie": 46891, + "name": "1.6 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185663, + "fields": { + "id_car_serie": 46891, + "name": "1.6 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185664, + "fields": { + "id_car_serie": 46891, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185666, + "fields": { + "id_car_serie": 46891, + "name": "2.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185667, + "fields": { + "id_car_serie": 46891, + "name": "2.0 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185670, + "fields": { + "id_car_serie": 46891, + "name": "1.5 AMT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185671, + "fields": { + "id_car_serie": 46891, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185672, + "fields": { + "id_car_serie": 46891, + "name": "1.8 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185673, + "fields": { + "id_car_serie": 46891, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185680, + "fields": { + "id_car_serie": 47196, + "name": "0.9 MT (39 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185682, + "fields": { + "id_car_serie": 47349, + "name": "1.6 VTi AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185684, + "fields": { + "id_car_serie": 47349, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185686, + "fields": { + "id_car_serie": 47349, + "name": "1.6 THP MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185687, + "fields": { + "id_car_serie": 47349, + "name": "2.0 HDi AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185689, + "fields": { + "id_car_serie": 47349, + "name": "2.2 HDi AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185690, + "fields": { + "id_car_serie": 47349, + "name": "1.6 HDi MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185693, + "fields": { + "id_car_serie": 47349, + "name": "2.0 HDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185697, + "fields": { + "id_car_serie": 47340, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185698, + "fields": { + "id_car_serie": 47340, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185699, + "fields": { + "id_car_serie": 47340, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185700, + "fields": { + "id_car_serie": 47340, + "name": "1.6 VTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185701, + "fields": { + "id_car_serie": 47340, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185702, + "fields": { + "id_car_serie": 47340, + "name": "1.6 MT RC (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185704, + "fields": { + "id_car_serie": 47340, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185705, + "fields": { + "id_car_serie": 47340, + "name": "1.6 THP MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185706, + "fields": { + "id_car_serie": 47340, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185707, + "fields": { + "id_car_serie": 47340, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185708, + "fields": { + "id_car_serie": 47340, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185712, + "fields": { + "id_car_serie": 47264, + "name": "3.8 AT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185733, + "fields": { + "id_car_serie": 47263, + "name": "2.0 TD AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185734, + "fields": { + "id_car_serie": 47263, + "name": "2.0 TD MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185735, + "fields": { + "id_car_serie": 47263, + "name": "2.0 TD MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185737, + "fields": { + "id_car_serie": 47263, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185739, + "fields": { + "id_car_serie": 47263, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185740, + "fields": { + "id_car_serie": 47176, + "name": "6.1 V8 AT SRT-8 (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185741, + "fields": { + "id_car_serie": 47176, + "name": "6.1 V8 MT SRT-8 (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185742, + "fields": { + "id_car_serie": 47176, + "name": "6.4 V8 MT SRT-8 (477 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185743, + "fields": { + "id_car_serie": 47176, + "name": "6.4 V8 AT SRT-8 (477 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185744, + "fields": { + "id_car_serie": 46841, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185745, + "fields": { + "id_car_serie": 46841, + "name": "1.8 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185746, + "fields": { + "id_car_serie": 46841, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185747, + "fields": { + "id_car_serie": 46841, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185754, + "fields": { + "id_car_serie": 47205, + "name": "2.3 AT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185755, + "fields": { + "id_car_serie": 47205, + "name": "2.3 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185756, + "fields": { + "id_car_serie": 47205, + "name": "2.8 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185757, + "fields": { + "id_car_serie": 47205, + "name": "2.8 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185758, + "fields": { + "id_car_serie": 47205, + "name": "4.9 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185759, + "fields": { + "id_car_serie": 47205, + "name": "4.9 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185760, + "fields": { + "id_car_serie": 47172, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185761, + "fields": { + "id_car_serie": 47172, + "name": "3.3 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185762, + "fields": { + "id_car_serie": 47172, + "name": "3.8 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185786, + "fields": { + "id_car_serie": 47537, + "name": "5.0 AT (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185787, + "fields": { + "id_car_serie": 47441, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185788, + "fields": { + "id_car_serie": 47441, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185789, + "fields": { + "id_car_serie": 47441, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185790, + "fields": { + "id_car_serie": 47441, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185791, + "fields": { + "id_car_serie": 47441, + "name": "2.0 Supercharged AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185792, + "fields": { + "id_car_serie": 47441, + "name": "2.0 Supercharged AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185795, + "fields": { + "id_car_serie": 47441, + "name": "2.4 TD AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185797, + "fields": { + "id_car_serie": 47441, + "name": "2.4 TD AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185824, + "fields": { + "id_car_serie": 47371, + "name": "6.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185826, + "fields": { + "id_car_serie": 47446, + "name": "1.6 MPI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185834, + "fields": { + "id_car_serie": 47446, + "name": "1.4 TSI BMT MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185836, + "fields": { + "id_car_serie": 47446, + "name": "2.0 TDI MT 4Motion (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185838, + "fields": { + "id_car_serie": 47446, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185839, + "fields": { + "id_car_serie": 47446, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185840, + "fields": { + "id_car_serie": 47446, + "name": "2.0 TDI DSG 4Motion (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185858, + "fields": { + "id_car_serie": 47446, + "name": "1.6 TDI MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185859, + "fields": { + "id_car_serie": 47446, + "name": "1.6 TDI DSG (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185868, + "fields": { + "id_car_serie": 47446, + "name": "1.4 TSI BMT DSG (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185870, + "fields": { + "id_car_serie": 46997, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185871, + "fields": { + "id_car_serie": 46997, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185872, + "fields": { + "id_car_serie": 46997, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185873, + "fields": { + "id_car_serie": 46997, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185876, + "fields": { + "id_car_serie": 47235, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185877, + "fields": { + "id_car_serie": 47235, + "name": "1.5 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185878, + "fields": { + "id_car_serie": 47235, + "name": "1.8 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185880, + "fields": { + "id_car_serie": 46886, + "name": "4.4 SDV8 AT AWD (339 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185881, + "fields": { + "id_car_serie": 46886, + "name": "4.4 SDV8 AT AWD LWB (339 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185882, + "fields": { + "id_car_serie": 46886, + "name": "3.0 SDV6 Hybrid AT AWD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185883, + "fields": { + "id_car_serie": 46886, + "name": "3.0 V6 Supercharged AT AWD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185884, + "fields": { + "id_car_serie": 46886, + "name": "5.0 V8 Supercharged AT AWD (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185885, + "fields": { + "id_car_serie": 46886, + "name": "5.0 V8 Supercharged AT AWD LWB (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185888, + "fields": { + "id_car_serie": 47373, + "name": "4 3.4 PDK (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185889, + "fields": { + "id_car_serie": 47373, + "name": "4 3.4 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185890, + "fields": { + "id_car_serie": 47373, + "name": "4S 3.8 PDK (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185891, + "fields": { + "id_car_serie": 47373, + "name": "4S 3.8 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185909, + "fields": { + "id_car_serie": 46977, + "name": "2.0 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185927, + "fields": { + "id_car_serie": 46972, + "name": "4.0 AT (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185928, + "fields": { + "id_car_serie": 46972, + "name": "4.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185929, + "fields": { + "id_car_serie": 46879, + "name": "2.2 CRDI AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185930, + "fields": { + "id_car_serie": 46879, + "name": "2.2 CRDI AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185934, + "fields": { + "id_car_serie": 46879, + "name": "3.3 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185935, + "fields": { + "id_car_serie": 46879, + "name": "3.3 AT (271 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185936, + "fields": { + "id_car_serie": 46879, + "name": "3.3 AT 4WD (271 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185937, + "fields": { + "id_car_serie": 47422, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185938, + "fields": { + "id_car_serie": 47422, + "name": "1.5 AT AWD (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185939, + "fields": { + "id_car_serie": 47422, + "name": "1.5 MT AWD (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185940, + "fields": { + "id_car_serie": 47422, + "name": "1.5 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185941, + "fields": { + "id_car_serie": 47422, + "name": "2.0 AT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185942, + "fields": { + "id_car_serie": 47422, + "name": "2.0 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185943, + "fields": { + "id_car_serie": 47422, + "name": "2.0 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185946, + "fields": { + "id_car_serie": 47422, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185947, + "fields": { + "id_car_serie": 47422, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185948, + "fields": { + "id_car_serie": 47422, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185949, + "fields": { + "id_car_serie": 47422, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185950, + "fields": { + "id_car_serie": 47422, + "name": "1.5 MT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185951, + "fields": { + "id_car_serie": 47422, + "name": "1.5 AT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185952, + "fields": { + "id_car_serie": 47422, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185955, + "fields": { + "id_car_serie": 47260, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185956, + "fields": { + "id_car_serie": 47260, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185959, + "fields": { + "id_car_serie": 47260, + "name": "1.6 DCT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185963, + "fields": { + "id_car_serie": 47260, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185971, + "fields": { + "id_car_serie": 47473, + "name": "2.4 4WD MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185973, + "fields": { + "id_car_serie": 47473, + "name": "2.7 TD 4WD MT wide (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185974, + "fields": { + "id_car_serie": 47473, + "name": "2.7 TD 4WD MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185975, + "fields": { + "id_car_serie": 47473, + "name": "2.7 TD 4WD AT wide (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185976, + "fields": { + "id_car_serie": 47334, + "name": "1.6 Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185977, + "fields": { + "id_car_serie": 47334, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185978, + "fields": { + "id_car_serie": 47334, + "name": "2.0 Turbo AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185979, + "fields": { + "id_car_serie": 47334, + "name": "2.0 Turbo AT 4x4 (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185981, + "fields": { + "id_car_serie": 47334, + "name": "2.0 CDTI AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185983, + "fields": { + "id_car_serie": 47334, + "name": "2.0 CDTI Bi-Turbo AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185985, + "fields": { + "id_car_serie": 47334, + "name": "1.4 Turbo LPG ecoFLEX MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185986, + "fields": { + "id_car_serie": 47334, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185987, + "fields": { + "id_car_serie": 47334, + "name": "2.0 Turbo MT 4x4 (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185988, + "fields": { + "id_car_serie": 47334, + "name": "2.0 Turbo MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185990, + "fields": { + "id_car_serie": 47334, + "name": "2.0 Turbo MT 4x4 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185991, + "fields": { + "id_car_serie": 47334, + "name": "2.8 Turbo MT 4x4 (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185992, + "fields": { + "id_car_serie": 47334, + "name": "2.8 Turbo AT 4x4 (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185993, + "fields": { + "id_car_serie": 47334, + "name": "2.0 DTH AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185994, + "fields": { + "id_car_serie": 47334, + "name": "2.0 DTH MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185995, + "fields": { + "id_car_serie": 47334, + "name": "2.0 DTH AT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185996, + "fields": { + "id_car_serie": 47334, + "name": "2.0 CDTI ecoFLEX MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185997, + "fields": { + "id_car_serie": 47334, + "name": "2.0 CDTI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185998, + "fields": { + "id_car_serie": 47334, + "name": "2.0 CDTI AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 185999, + "fields": { + "id_car_serie": 47334, + "name": "2.0 CDTI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186000, + "fields": { + "id_car_serie": 47334, + "name": "2.0 CDTI Bi-Turbo AT 4x4 (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186003, + "fields": { + "id_car_serie": 47204, + "name": "2.3 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186004, + "fields": { + "id_car_serie": 47204, + "name": "4.9 MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186032, + "fields": { + "id_car_serie": 47321, + "name": "1.2 CVT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186033, + "fields": { + "id_car_serie": 47321, + "name": "1.2 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186036, + "fields": { + "id_car_serie": 47483, + "name": "4.3 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186038, + "fields": { + "id_car_serie": 47483, + "name": "5.3 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186042, + "fields": { + "id_car_serie": 47483, + "name": "6.2 AT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186044, + "fields": { + "id_car_serie": 47419, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186045, + "fields": { + "id_car_serie": 47419, + "name": "1.2 TSI MT Green tec (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186046, + "fields": { + "id_car_serie": 47419, + "name": "1.2 TDI MT GreenLine (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186047, + "fields": { + "id_car_serie": 47419, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186052, + "fields": { + "id_car_serie": 46998, + "name": "1.4 CRDi MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186053, + "fields": { + "id_car_serie": 46998, + "name": "1.6 MT AWD (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186054, + "fields": { + "id_car_serie": 46998, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186055, + "fields": { + "id_car_serie": 46998, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186056, + "fields": { + "id_car_serie": 46999, + "name": "4.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186067, + "fields": { + "id_car_serie": 47010, + "name": "4.0 TDI tiptronic quattro (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186068, + "fields": { + "id_car_serie": 46823, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186069, + "fields": { + "id_car_serie": 46823, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186070, + "fields": { + "id_car_serie": 46823, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186071, + "fields": { + "id_car_serie": 46823, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186072, + "fields": { + "id_car_serie": 46823, + "name": "1.7 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186074, + "fields": { + "id_car_serie": 46823, + "name": "1.7 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186075, + "fields": { + "id_car_serie": 46823, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186076, + "fields": { + "id_car_serie": 46823, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186077, + "fields": { + "id_car_serie": 46823, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186078, + "fields": { + "id_car_serie": 46825, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186079, + "fields": { + "id_car_serie": 46825, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186080, + "fields": { + "id_car_serie": 46825, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186083, + "fields": { + "id_car_serie": 46825, + "name": "1.9 JTD MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186084, + "fields": { + "id_car_serie": 46825, + "name": "1.9 JTD MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186085, + "fields": { + "id_car_serie": 46825, + "name": "1.9 JTD MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186086, + "fields": { + "id_car_serie": 46825, + "name": "1.9 JTD MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186088, + "fields": { + "id_car_serie": 46826, + "name": "1.7 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186089, + "fields": { + "id_car_serie": 46826, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186093, + "fields": { + "id_car_serie": 46826, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186094, + "fields": { + "id_car_serie": 46826, + "name": "2.0 MT Q4 (187 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186097, + "fields": { + "id_car_serie": 46826, + "name": "2.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186098, + "fields": { + "id_car_serie": 46826, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186099, + "fields": { + "id_car_serie": 46826, + "name": "2.5 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186100, + "fields": { + "id_car_serie": 46828, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186105, + "fields": { + "id_car_serie": 46828, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186108, + "fields": { + "id_car_serie": 46828, + "name": "2.0 JTS MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186109, + "fields": { + "id_car_serie": 46828, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186110, + "fields": { + "id_car_serie": 46828, + "name": "2.5 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186111, + "fields": { + "id_car_serie": 46828, + "name": "2.5 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186113, + "fields": { + "id_car_serie": 46828, + "name": "1.9 JTD MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186114, + "fields": { + "id_car_serie": 46828, + "name": "1.9 JTD MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186116, + "fields": { + "id_car_serie": 46828, + "name": "2.4 JTD MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186117, + "fields": { + "id_car_serie": 46828, + "name": "2.4 JTD MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186118, + "fields": { + "id_car_serie": 46829, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186119, + "fields": { + "id_car_serie": 46829, + "name": "2.0 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186120, + "fields": { + "id_car_serie": 46829, + "name": "2.0 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186121, + "fields": { + "id_car_serie": 46829, + "name": "2.0 MT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186122, + "fields": { + "id_car_serie": 46829, + "name": "2.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186123, + "fields": { + "id_car_serie": 46829, + "name": "3.0 V6 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186124, + "fields": { + "id_car_serie": 46829, + "name": "3.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186125, + "fields": { + "id_car_serie": 46829, + "name": "3.0 MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186126, + "fields": { + "id_car_serie": 46829, + "name": "3.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186127, + "fields": { + "id_car_serie": 46829, + "name": "3.0 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186128, + "fields": { + "id_car_serie": 46829, + "name": "3.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186129, + "fields": { + "id_car_serie": 46829, + "name": "2.5 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186130, + "fields": { + "id_car_serie": 46831, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186131, + "fields": { + "id_car_serie": 46831, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186132, + "fields": { + "id_car_serie": 46831, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186133, + "fields": { + "id_car_serie": 46831, + "name": "1.8 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186134, + "fields": { + "id_car_serie": 46831, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186135, + "fields": { + "id_car_serie": 46831, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186136, + "fields": { + "id_car_serie": 46831, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186138, + "fields": { + "id_car_serie": 46831, + "name": "2.5 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186140, + "fields": { + "id_car_serie": 46831, + "name": "3.0 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186141, + "fields": { + "id_car_serie": 46831, + "name": "3.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186142, + "fields": { + "id_car_serie": 46831, + "name": "2.0 TD MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186143, + "fields": { + "id_car_serie": 46833, + "name": "1.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186148, + "fields": { + "id_car_serie": 46835, + "name": "1.6 JTD MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186149, + "fields": { + "id_car_serie": 46835, + "name": "1.4 MT Junior (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186151, + "fields": { + "id_car_serie": 46835, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186152, + "fields": { + "id_car_serie": 46835, + "name": "1.4 MT MultiAir (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186153, + "fields": { + "id_car_serie": 46835, + "name": "1.4 TBi MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186154, + "fields": { + "id_car_serie": 46835, + "name": "1.4 TCT MultiAir (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186155, + "fields": { + "id_car_serie": 46835, + "name": "1.4 MT MultiAir (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186156, + "fields": { + "id_car_serie": 46835, + "name": "1.4 MT MultiAir (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186159, + "fields": { + "id_car_serie": 46839, + "name": "5.9 MT (470 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186160, + "fields": { + "id_car_serie": 46839, + "name": "5.9 AT (470 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186161, + "fields": { + "id_car_serie": 46842, + "name": "1.6 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186162, + "fields": { + "id_car_serie": 46842, + "name": "1.6 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186163, + "fields": { + "id_car_serie": 46842, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186164, + "fields": { + "id_car_serie": 46842, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186165, + "fields": { + "id_car_serie": 46842, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186166, + "fields": { + "id_car_serie": 46842, + "name": "2.0 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186167, + "fields": { + "id_car_serie": 46842, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186168, + "fields": { + "id_car_serie": 46842, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186169, + "fields": { + "id_car_serie": 46842, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186171, + "fields": { + "id_car_serie": 46848, + "name": "6.4 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186172, + "fields": { + "id_car_serie": 46849, + "name": "5.3 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186173, + "fields": { + "id_car_serie": 46849, + "name": "5.4 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186211, + "fields": { + "id_car_serie": 46866, + "name": "1.8 TD MT LWB (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186212, + "fields": { + "id_car_serie": 46866, + "name": "1.8 TD MT LWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186213, + "fields": { + "id_car_serie": 46866, + "name": "1.8 TD MT SWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186214, + "fields": { + "id_car_serie": 46867, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186215, + "fields": { + "id_car_serie": 46867, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186216, + "fields": { + "id_car_serie": 46867, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186226, + "fields": { + "id_car_serie": 46870, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186227, + "fields": { + "id_car_serie": 46870, + "name": "2.4 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186229, + "fields": { + "id_car_serie": 46877, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186235, + "fields": { + "id_car_serie": 46880, + "name": "2.5 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186236, + "fields": { + "id_car_serie": 46880, + "name": "2.5 CRDi AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186238, + "fields": { + "id_car_serie": 46880, + "name": "2.5 CRDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186240, + "fields": { + "id_car_serie": 46882, + "name": "2.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186241, + "fields": { + "id_car_serie": 46882, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186242, + "fields": { + "id_car_serie": 46882, + "name": "3.0 MT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186243, + "fields": { + "id_car_serie": 46882, + "name": "3.0 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186244, + "fields": { + "id_car_serie": 46882, + "name": "4.0 AT (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186245, + "fields": { + "id_car_serie": 46882, + "name": "4.2 AT (298 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186247, + "fields": { + "id_car_serie": 46883, + "name": "2.4 TD MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186251, + "fields": { + "id_car_serie": 46883, + "name": "2.2 TD MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186277, + "fields": { + "id_car_serie": 46887, + "name": "4.7 MT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186279, + "fields": { + "id_car_serie": 46888, + "name": "2.3 T AT AWD (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186280, + "fields": { + "id_car_serie": 46888, + "name": "2.3 T AT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186281, + "fields": { + "id_car_serie": 46888, + "name": "2.3 T AT AWD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186282, + "fields": { + "id_car_serie": 46888, + "name": "2.3 T AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186284, + "fields": { + "id_car_serie": 46904, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186285, + "fields": { + "id_car_serie": 46904, + "name": "2.8 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186286, + "fields": { + "id_car_serie": 46904, + "name": "3.2 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186287, + "fields": { + "id_car_serie": 46904, + "name": "4.2 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186288, + "fields": { + "id_car_serie": 46904, + "name": "5.0 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186289, + "fields": { + "id_car_serie": 46904, + "name": "6.0 AT (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186290, + "fields": { + "id_car_serie": 46904, + "name": "3.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186292, + "fields": { + "id_car_serie": 46905, + "name": "3.2 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186293, + "fields": { + "id_car_serie": 46905, + "name": "4.2 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186294, + "fields": { + "id_car_serie": 46905, + "name": "5.0 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186295, + "fields": { + "id_car_serie": 46905, + "name": "6.0 AT (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186301, + "fields": { + "id_car_serie": 46907, + "name": "4.2 AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186302, + "fields": { + "id_car_serie": 46907, + "name": "5.0 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186303, + "fields": { + "id_car_serie": 46907, + "name": "5.0 AT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186304, + "fields": { + "id_car_serie": 46907, + "name": "6.0 AT (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186305, + "fields": { + "id_car_serie": 46907, + "name": "6.0 AT (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186306, + "fields": { + "id_car_serie": 46908, + "name": "2.8 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186307, + "fields": { + "id_car_serie": 46908, + "name": "2.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186308, + "fields": { + "id_car_serie": 46908, + "name": "2.8 SEL MT (185 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186310, + "fields": { + "id_car_serie": 46908, + "name": "3.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186311, + "fields": { + "id_car_serie": 46908, + "name": "3.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186312, + "fields": { + "id_car_serie": 46908, + "name": "3.0 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186313, + "fields": { + "id_car_serie": 46908, + "name": "3.0 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186318, + "fields": { + "id_car_serie": 46908, + "name": "4.2 MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186319, + "fields": { + "id_car_serie": 46908, + "name": "4.2 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186322, + "fields": { + "id_car_serie": 46908, + "name": "5.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186323, + "fields": { + "id_car_serie": 46908, + "name": "5.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186330, + "fields": { + "id_car_serie": 46908, + "name": "5.0 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186331, + "fields": { + "id_car_serie": 46908, + "name": "5.0 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186338, + "fields": { + "id_car_serie": 46908, + "name": "5.5 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186344, + "fields": { + "id_car_serie": 46909, + "name": "2.7 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186345, + "fields": { + "id_car_serie": 46909, + "name": "2.7 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186346, + "fields": { + "id_car_serie": 46909, + "name": "3.8 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186347, + "fields": { + "id_car_serie": 46909, + "name": "3.8 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186348, + "fields": { + "id_car_serie": 46909, + "name": "5.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186349, + "fields": { + "id_car_serie": 46909, + "name": "5.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186352, + "fields": { + "id_car_serie": 46910, + "name": "3.8 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186353, + "fields": { + "id_car_serie": 46910, + "name": "3.8 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186354, + "fields": { + "id_car_serie": 46910, + "name": "5.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186355, + "fields": { + "id_car_serie": 46910, + "name": "5.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186356, + "fields": { + "id_car_serie": 46912, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186358, + "fields": { + "id_car_serie": 46912, + "name": "2.4 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186359, + "fields": { + "id_car_serie": 46912, + "name": "2.4 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186360, + "fields": { + "id_car_serie": 46912, + "name": "3.0 AT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186361, + "fields": { + "id_car_serie": 46912, + "name": "2.5 TD MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186362, + "fields": { + "id_car_serie": 46912, + "name": "2.5 TD MT 4WD (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186363, + "fields": { + "id_car_serie": 46912, + "name": "2.8 TD MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186365, + "fields": { + "id_car_serie": 46913, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186367, + "fields": { + "id_car_serie": 46913, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186368, + "fields": { + "id_car_serie": 46913, + "name": "2.0 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186369, + "fields": { + "id_car_serie": 46913, + "name": "2.2 TD MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186370, + "fields": { + "id_car_serie": 46916, + "name": "6.6 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186371, + "fields": { + "id_car_serie": 46916, + "name": "7.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186372, + "fields": { + "id_car_serie": 46917, + "name": "6.6 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186373, + "fields": { + "id_car_serie": 46917, + "name": "7.0 AT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186374, + "fields": { + "id_car_serie": 46918, + "name": "6.4 AT (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186375, + "fields": { + "id_car_serie": 46918, + "name": "6.9 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186376, + "fields": { + "id_car_serie": 46922, + "name": "6.7 AT SWB (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186377, + "fields": { + "id_car_serie": 46924, + "name": "6.2 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186378, + "fields": { + "id_car_serie": 46925, + "name": "5.7 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186379, + "fields": { + "id_car_serie": 46925, + "name": "5.7 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186380, + "fields": { + "id_car_serie": 46926, + "name": "7.3 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186381, + "fields": { + "id_car_serie": 46930, + "name": "2.0 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186382, + "fields": { + "id_car_serie": 46930, + "name": "2.0 T AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186386, + "fields": { + "id_car_serie": 46930, + "name": "2.3 T MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186387, + "fields": { + "id_car_serie": 46930, + "name": "2.3 T AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186388, + "fields": { + "id_car_serie": 46930, + "name": "2.3 T MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186389, + "fields": { + "id_car_serie": 46930, + "name": "2.3 T AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186390, + "fields": { + "id_car_serie": 46930, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186403, + "fields": { + "id_car_serie": 46936, + "name": "60 (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186404, + "fields": { + "id_car_serie": 46936, + "name": "85 (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186405, + "fields": { + "id_car_serie": 46936, + "name": "85 Performance (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186406, + "fields": { + "id_car_serie": 46936, + "name": "P 85D (700 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186407, + "fields": { + "id_car_serie": 46936, + "name": "85D (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186410, + "fields": { + "id_car_serie": 46937, + "name": "2.0 TD MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186411, + "fields": { + "id_car_serie": 46937, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186412, + "fields": { + "id_car_serie": 46937, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186413, + "fields": { + "id_car_serie": 46944, + "name": "1.6 T3 MT Turbo (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186414, + "fields": { + "id_car_serie": 46944, + "name": "2.0 T MT Turbo (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186415, + "fields": { + "id_car_serie": 46944, + "name": "2.0 T Powershift (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186416, + "fields": { + "id_car_serie": 46944, + "name": "1.6 T3 Powershift Turbo (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186419, + "fields": { + "id_car_serie": 46944, + "name": "3.0 T6 Geartronic AWD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186422, + "fields": { + "id_car_serie": 46944, + "name": "1.6 T4 Powershift Turbo (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186423, + "fields": { + "id_car_serie": 46944, + "name": "1.6 T4 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186425, + "fields": { + "id_car_serie": 46944, + "name": "2.0 T Powershift (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186428, + "fields": { + "id_car_serie": 46944, + "name": "2.0 T MT Turbo (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186433, + "fields": { + "id_car_serie": 46944, + "name": "2.0 D3 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186434, + "fields": { + "id_car_serie": 46944, + "name": "2.0 D3 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186435, + "fields": { + "id_car_serie": 46944, + "name": "2.4 D5 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186436, + "fields": { + "id_car_serie": 46944, + "name": "2.4 D5 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186437, + "fields": { + "id_car_serie": 46944, + "name": "2.4 D5 Geartronic Turbo AWD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186438, + "fields": { + "id_car_serie": 46944, + "name": "2.4 D6 Plug-in-Hybrid Geartronic Turbo AWD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186439, + "fields": { + "id_car_serie": 46944, + "name": "2.4 D5 Geartronic Turbo AWD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186455, + "fields": { + "id_car_serie": 46949, + "name": "1.7 MT 8 valves. (Euro-4) (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186458, + "fields": { + "id_car_serie": 46949, + "name": "1.7 MT 8 valves. (Euro-3) (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186462, + "fields": { + "id_car_serie": 46953, + "name": "1.6 MT 16 valves (Euro-4) (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186463, + "fields": { + "id_car_serie": 46953, + "name": "1.4 MT 16 valves (Euro-3) (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186464, + "fields": { + "id_car_serie": 46953, + "name": "1.6 MT 16 valves (Euro-3) (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186465, + "fields": { + "id_car_serie": 46955, + "name": "1.6 MT 8 valves (7 places) (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186466, + "fields": { + "id_car_serie": 46955, + "name": "1.6 MT 16 valves (5 places) (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186467, + "fields": { + "id_car_serie": 46955, + "name": "1.6 MT 16 valves (7 places) (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186468, + "fields": { + "id_car_serie": 46955, + "name": "1.6 MT 8 valves (5 places) (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186469, + "fields": { + "id_car_serie": 46955, + "name": "1.6 MT 16 valves (5 places) (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186470, + "fields": { + "id_car_serie": 46955, + "name": "1.6 MT 8 valves (5 places) (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186471, + "fields": { + "id_car_serie": 46955, + "name": "1.6 MT 8 valves (7 places) (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186475, + "fields": { + "id_car_serie": 9431, + "name": "2.7 MT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186478, + "fields": { + "id_car_serie": 46959, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186480, + "fields": { + "id_car_serie": 46959, + "name": "2.3 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186482, + "fields": { + "id_car_serie": 46959, + "name": "2.5 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186483, + "fields": { + "id_car_serie": 46959, + "name": "2.5 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186484, + "fields": { + "id_car_serie": 46960, + "name": "4.0 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186485, + "fields": { + "id_car_serie": 46960, + "name": "4.0 MT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186486, + "fields": { + "id_car_serie": 46960, + "name": "4.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186487, + "fields": { + "id_car_serie": 46961, + "name": "2.4 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186488, + "fields": { + "id_car_serie": 46961, + "name": "3.3 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186489, + "fields": { + "id_car_serie": 46961, + "name": "3.3 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186493, + "fields": { + "id_car_serie": 46962, + "name": "1.5 AT skylight roof (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186494, + "fields": { + "id_car_serie": 46962, + "name": "1.5 MT skylight roof (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186495, + "fields": { + "id_car_serie": 46962, + "name": "1.5 AT high roof (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186496, + "fields": { + "id_car_serie": 46962, + "name": "1.5 MT standard roof (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186498, + "fields": { + "id_car_serie": 46968, + "name": "4.4 AT (555 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186501, + "fields": { + "id_car_serie": 46988, + "name": "5.4 AT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186506, + "fields": { + "id_car_serie": 46995, + "name": "1.5 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186516, + "fields": { + "id_car_serie": 46995, + "name": "1.6 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186517, + "fields": { + "id_car_serie": 46995, + "name": "1.6 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186518, + "fields": { + "id_car_serie": 46995, + "name": "2.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186521, + "fields": { + "id_car_serie": 46995, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186524, + "fields": { + "id_car_serie": 46995, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186525, + "fields": { + "id_car_serie": 46995, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186526, + "fields": { + "id_car_serie": 46995, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186527, + "fields": { + "id_car_serie": 46995, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186530, + "fields": { + "id_car_serie": 46995, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186534, + "fields": { + "id_car_serie": 46995, + "name": "2.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186535, + "fields": { + "id_car_serie": 46995, + "name": "2.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186536, + "fields": { + "id_car_serie": 46996, + "name": "1.3 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186537, + "fields": { + "id_car_serie": 46996, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186538, + "fields": { + "id_car_serie": 47004, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186539, + "fields": { + "id_car_serie": 47004, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186541, + "fields": { + "id_car_serie": 47008, + "name": "2.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186543, + "fields": { + "id_car_serie": 47011, + "name": "2.2 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186544, + "fields": { + "id_car_serie": 47011, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186547, + "fields": { + "id_car_serie": 47012, + "name": "2.2 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186548, + "fields": { + "id_car_serie": 47012, + "name": "2.2 AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186550, + "fields": { + "id_car_serie": 47013, + "name": "3.8 AT (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186551, + "fields": { + "id_car_serie": 47014, + "name": "1.0 TFSI MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186552, + "fields": { + "id_car_serie": 47014, + "name": "1.0 TFSI S tronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186553, + "fields": { + "id_car_serie": 47014, + "name": "1.4 TFSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186554, + "fields": { + "id_car_serie": 47014, + "name": "1.4 TFSI S tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186556, + "fields": { + "id_car_serie": 47014, + "name": "2.0 TFSI Quattro S tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186557, + "fields": { + "id_car_serie": 47014, + "name": "1.6 TDI MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186558, + "fields": { + "id_car_serie": 47014, + "name": "1.6 TDI S tronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186559, + "fields": { + "id_car_serie": 47014, + "name": "2.0 TDI Quattro S tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186562, + "fields": { + "id_car_serie": 47014, + "name": "2.0 TDI Quattro S tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186563, + "fields": { + "id_car_serie": 47015, + "name": "5.2 V12 AT (608 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186565, + "fields": { + "id_car_serie": 47017, + "name": "8.0 AMT AWD (1500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186569, + "fields": { + "id_car_serie": 47020, + "name": "5.7 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186570, + "fields": { + "id_car_serie": 47020, + "name": "5.7 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186571, + "fields": { + "id_car_serie": 47021, + "name": "4.3 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186572, + "fields": { + "id_car_serie": 47021, + "name": "4.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186573, + "fields": { + "id_car_serie": 47021, + "name": "5.7 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186574, + "fields": { + "id_car_serie": 47021, + "name": "5.7 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186576, + "fields": { + "id_car_serie": 47022, + "name": "4.3 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186577, + "fields": { + "id_car_serie": 47022, + "name": "4.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186578, + "fields": { + "id_car_serie": 47022, + "name": "5.7 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186579, + "fields": { + "id_car_serie": 47022, + "name": "5.7 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186580, + "fields": { + "id_car_serie": 47023, + "name": "1.8 AT turbo (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186581, + "fields": { + "id_car_serie": 47023, + "name": "2.0 MT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186582, + "fields": { + "id_car_serie": 47024, + "name": "2.8 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186583, + "fields": { + "id_car_serie": 47025, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186584, + "fields": { + "id_car_serie": 47026, + "name": "1.3 MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186585, + "fields": { + "id_car_serie": 47026, + "name": "1.5 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186586, + "fields": { + "id_car_serie": 47027, + "name": "1.3 MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186587, + "fields": { + "id_car_serie": 47027, + "name": "1.5 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186588, + "fields": { + "id_car_serie": 47028, + "name": "1.3 MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186589, + "fields": { + "id_car_serie": 47028, + "name": "1.5 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186590, + "fields": { + "id_car_serie": 47029, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186595, + "fields": { + "id_car_serie": 47031, + "name": "3.9 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186596, + "fields": { + "id_car_serie": 47032, + "name": "1.1 MT (23 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186597, + "fields": { + "id_car_serie": 47032, + "name": "1.5 MT (35 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186598, + "fields": { + "id_car_serie": 47033, + "name": "1.1 MT (23 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186599, + "fields": { + "id_car_serie": 47033, + "name": "1.5 MT (35 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186600, + "fields": { + "id_car_serie": 47034, + "name": "1.1 MT (23 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186601, + "fields": { + "id_car_serie": 47034, + "name": "1.5 MT (35 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186602, + "fields": { + "id_car_serie": 47035, + "name": "3.9 AMT (670 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186603, + "fields": { + "id_car_serie": 47036, + "name": "3.9 AMT (670 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186604, + "fields": { + "id_car_serie": 47037, + "name": "4.2 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186605, + "fields": { + "id_car_serie": 47038, + "name": "4.2 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186606, + "fields": { + "id_car_serie": 47039, + "name": "4.2 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186609, + "fields": { + "id_car_serie": 47041, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186610, + "fields": { + "id_car_serie": 47041, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186611, + "fields": { + "id_car_serie": 47042, + "name": "1.0 TSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186612, + "fields": { + "id_car_serie": 47042, + "name": "1.4 EcoTSI MT 4Drive (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186613, + "fields": { + "id_car_serie": 47042, + "name": "1.4 EcoTSI DSG 4Drive (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186614, + "fields": { + "id_car_serie": 47042, + "name": "1.4 EcoTSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186615, + "fields": { + "id_car_serie": 47042, + "name": "1.4 EcoTSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186616, + "fields": { + "id_car_serie": 47042, + "name": "1.6 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186617, + "fields": { + "id_car_serie": 47042, + "name": "2.0 TDI MT 4Drive (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186618, + "fields": { + "id_car_serie": 47042, + "name": "2.0 TDI DSG 4Drive (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186620, + "fields": { + "id_car_serie": 47042, + "name": "2.0 TSI DSG 4Drive (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186622, + "fields": { + "id_car_serie": 47044, + "name": "2.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186623, + "fields": { + "id_car_serie": 47044, + "name": "2.1 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186624, + "fields": { + "id_car_serie": 47044, + "name": "2.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186625, + "fields": { + "id_car_serie": 47044, + "name": "2.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186626, + "fields": { + "id_car_serie": 47044, + "name": "2.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186627, + "fields": { + "id_car_serie": 47044, + "name": "2.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186628, + "fields": { + "id_car_serie": 47044, + "name": "2.6 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186629, + "fields": { + "id_car_serie": 47044, + "name": "2.6 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186630, + "fields": { + "id_car_serie": 47044, + "name": "2.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186631, + "fields": { + "id_car_serie": 47045, + "name": "7.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186632, + "fields": { + "id_car_serie": 47045, + "name": "7.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186633, + "fields": { + "id_car_serie": 47046, + "name": "6.8 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186634, + "fields": { + "id_car_serie": 47047, + "name": "3.2 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186635, + "fields": { + "id_car_serie": 47048, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186636, + "fields": { + "id_car_serie": 47048, + "name": "2.0 MT AWD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186637, + "fields": { + "id_car_serie": 47049, + "name": "2.1 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186639, + "fields": { + "id_car_serie": 47050, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186643, + "fields": { + "id_car_serie": 47052, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186645, + "fields": { + "id_car_serie": 47053, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186646, + "fields": { + "id_car_serie": 47054, + "name": "1.1 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186648, + "fields": { + "id_car_serie": 47055, + "name": "0.8 MT (18 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186649, + "fields": { + "id_car_serie": 47056, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186650, + "fields": { + "id_car_serie": 47056, + "name": "1.3 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186651, + "fields": { + "id_car_serie": 47057, + "name": "6.6 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186652, + "fields": { + "id_car_serie": 47058, + "name": "5.8 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186653, + "fields": { + "id_car_serie": 47058, + "name": "6.6 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186654, + "fields": { + "id_car_serie": 47058, + "name": "7.5 AT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186655, + "fields": { + "id_car_serie": 47059, + "name": "5.8 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186656, + "fields": { + "id_car_serie": 47059, + "name": "6.6 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186657, + "fields": { + "id_car_serie": 47059, + "name": "7.5 AT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186658, + "fields": { + "id_car_serie": 47060, + "name": "5.8 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186659, + "fields": { + "id_car_serie": 47060, + "name": "6.6 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186660, + "fields": { + "id_car_serie": 47060, + "name": "7.5 AT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186661, + "fields": { + "id_car_serie": 47061, + "name": "6.4 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186662, + "fields": { + "id_car_serie": 47061, + "name": "6.9 MT (338 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186663, + "fields": { + "id_car_serie": 47062, + "name": "6.4 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186664, + "fields": { + "id_car_serie": 47062, + "name": "6.9 MT (338 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186665, + "fields": { + "id_car_serie": 47063, + "name": "6.4 MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186666, + "fields": { + "id_car_serie": 47063, + "name": "6.4 AT (267 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186667, + "fields": { + "id_car_serie": 47064, + "name": "6.4 MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186668, + "fields": { + "id_car_serie": 47064, + "name": "6.4 AT (267 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186669, + "fields": { + "id_car_serie": 47065, + "name": "6.4 MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186670, + "fields": { + "id_car_serie": 47065, + "name": "6.4 AT (267 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186671, + "fields": { + "id_car_serie": 47066, + "name": "6.4 MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186672, + "fields": { + "id_car_serie": 47066, + "name": "6.4 AT (267 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186673, + "fields": { + "id_car_serie": 47067, + "name": "6.4 MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186674, + "fields": { + "id_car_serie": 47067, + "name": "6.4 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186675, + "fields": { + "id_car_serie": 47068, + "name": "6.4 MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186676, + "fields": { + "id_car_serie": 47068, + "name": "6.4 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186677, + "fields": { + "id_car_serie": 47069, + "name": "1.5 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186678, + "fields": { + "id_car_serie": 47069, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186679, + "fields": { + "id_car_serie": 47069, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186680, + "fields": { + "id_car_serie": 47069, + "name": "1.6 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186682, + "fields": { + "id_car_serie": 47070, + "name": "1.5 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186683, + "fields": { + "id_car_serie": 47070, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186684, + "fields": { + "id_car_serie": 47070, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186685, + "fields": { + "id_car_serie": 47070, + "name": "1.6 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186687, + "fields": { + "id_car_serie": 47071, + "name": "1.5 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186688, + "fields": { + "id_car_serie": 47071, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186689, + "fields": { + "id_car_serie": 47071, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186690, + "fields": { + "id_car_serie": 47071, + "name": "1.6 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186692, + "fields": { + "id_car_serie": 47072, + "name": "1.5 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186693, + "fields": { + "id_car_serie": 47072, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186694, + "fields": { + "id_car_serie": 47072, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186695, + "fields": { + "id_car_serie": 47072, + "name": "1.6 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186696, + "fields": { + "id_car_serie": 47072, + "name": "1.6 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186698, + "fields": { + "id_car_serie": 47073, + "name": "1.1 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186701, + "fields": { + "id_car_serie": 47075, + "name": "4.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186702, + "fields": { + "id_car_serie": 47076, + "name": "1.5 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186716, + "fields": { + "id_car_serie": 47079, + "name": "3.8 AMT (570 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186717, + "fields": { + "id_car_serie": 47080, + "name": "3.0 V6 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186718, + "fields": { + "id_car_serie": 47080, + "name": "S 3.0 V6 AT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186719, + "fields": { + "id_car_serie": 47080, + "name": "Diesel 3.0 V6 AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186720, + "fields": { + "id_car_serie": 47081, + "name": "5.0 AT (477 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186721, + "fields": { + "id_car_serie": 47082, + "name": "3.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186722, + "fields": { + "id_car_serie": 47082, + "name": "3.9 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186723, + "fields": { + "id_car_serie": 47082, + "name": "3.9 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186724, + "fields": { + "id_car_serie": 47082, + "name": "4.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186725, + "fields": { + "id_car_serie": 47082, + "name": "4.6 AT (283 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186726, + "fields": { + "id_car_serie": 47083, + "name": "3.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186727, + "fields": { + "id_car_serie": 47083, + "name": "3.9 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186728, + "fields": { + "id_car_serie": 47083, + "name": "3.9 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186729, + "fields": { + "id_car_serie": 47083, + "name": "4.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186730, + "fields": { + "id_car_serie": 47083, + "name": "4.6 AT (283 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186731, + "fields": { + "id_car_serie": 47084, + "name": "3.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186732, + "fields": { + "id_car_serie": 47084, + "name": "3.9 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186733, + "fields": { + "id_car_serie": 47084, + "name": "3.9 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186734, + "fields": { + "id_car_serie": 47084, + "name": "4.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186735, + "fields": { + "id_car_serie": 47084, + "name": "4.6 AT (283 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186736, + "fields": { + "id_car_serie": 47085, + "name": "3.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186737, + "fields": { + "id_car_serie": 47085, + "name": "3.9 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186738, + "fields": { + "id_car_serie": 47085, + "name": "3.9 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186739, + "fields": { + "id_car_serie": 47085, + "name": "4.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186740, + "fields": { + "id_car_serie": 47085, + "name": "4.6 AT (283 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186741, + "fields": { + "id_car_serie": 47086, + "name": "3.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186742, + "fields": { + "id_car_serie": 47086, + "name": "3.9 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186743, + "fields": { + "id_car_serie": 47086, + "name": "3.9 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186744, + "fields": { + "id_car_serie": 47087, + "name": "3.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186745, + "fields": { + "id_car_serie": 47087, + "name": "3.9 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186746, + "fields": { + "id_car_serie": 47087, + "name": "3.9 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186781, + "fields": { + "id_car_serie": 47099, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186782, + "fields": { + "id_car_serie": 47099, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186783, + "fields": { + "id_car_serie": 47099, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186784, + "fields": { + "id_car_serie": 47099, + "name": "1.8 MT quattro (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186786, + "fields": { + "id_car_serie": 47099, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186787, + "fields": { + "id_car_serie": 47099, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186788, + "fields": { + "id_car_serie": 47099, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186789, + "fields": { + "id_car_serie": 47099, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186790, + "fields": { + "id_car_serie": 47099, + "name": "2.0 AT quattro (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186791, + "fields": { + "id_car_serie": 47099, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186792, + "fields": { + "id_car_serie": 47099, + "name": "2.3 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186793, + "fields": { + "id_car_serie": 47099, + "name": "2.3 MT quattro (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186794, + "fields": { + "id_car_serie": 47099, + "name": "2.3 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186795, + "fields": { + "id_car_serie": 47099, + "name": "2.3 AT quattro (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186796, + "fields": { + "id_car_serie": 47099, + "name": "2.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186797, + "fields": { + "id_car_serie": 47099, + "name": "2.6 AT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186798, + "fields": { + "id_car_serie": 47099, + "name": "2.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186799, + "fields": { + "id_car_serie": 47099, + "name": "2.6 MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186800, + "fields": { + "id_car_serie": 47099, + "name": "2.8 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186801, + "fields": { + "id_car_serie": 47099, + "name": "2.8 AT quattro (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186802, + "fields": { + "id_car_serie": 47099, + "name": "2.8 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186803, + "fields": { + "id_car_serie": 47099, + "name": "2.8 MT quattro (193 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186804, + "fields": { + "id_car_serie": 47099, + "name": "2.8 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186805, + "fields": { + "id_car_serie": 47099, + "name": "2.8 AT quattro (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186806, + "fields": { + "id_car_serie": 47099, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186810, + "fields": { + "id_car_serie": 47099, + "name": "2.5 TDI AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186811, + "fields": { + "id_car_serie": 47099, + "name": "2.5 TDI 5MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186812, + "fields": { + "id_car_serie": 47099, + "name": "2.5 TDI MT quattro (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186813, + "fields": { + "id_car_serie": 47099, + "name": "2.5 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186814, + "fields": { + "id_car_serie": 47099, + "name": "2.5 TDI AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186815, + "fields": { + "id_car_serie": 47118, + "name": "6.8 Twin-Turbo AT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186817, + "fields": { + "id_car_serie": 47489, + "name": "2.0 MultiJet MT SWB H1 27 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186818, + "fields": { + "id_car_serie": 47489, + "name": "2.0 MultiJet MT LWB H1 29 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186824, + "fields": { + "id_car_serie": 47136, + "name": "3.8 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186825, + "fields": { + "id_car_serie": 47136, + "name": "4.6 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186826, + "fields": { + "id_car_serie": 47466, + "name": "2.3 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186827, + "fields": { + "id_car_serie": 47466, + "name": "2.4 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186829, + "fields": { + "id_car_serie": 47219, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186830, + "fields": { + "id_car_serie": 47219, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186831, + "fields": { + "id_car_serie": 47219, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186832, + "fields": { + "id_car_serie": 47219, + "name": "2.3 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186833, + "fields": { + "id_car_serie": 47522, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186834, + "fields": { + "id_car_serie": 47522, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186835, + "fields": { + "id_car_serie": 47522, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186846, + "fields": { + "id_car_serie": 47281, + "name": "3.0 CDi TouchShift compact (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186847, + "fields": { + "id_car_serie": 47281, + "name": "3.5 TouchShift extended (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186850, + "fields": { + "id_car_serie": 47425, + "name": "1.3 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186851, + "fields": { + "id_car_serie": 47425, + "name": "1.3 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186858, + "fields": { + "id_car_serie": 47542, + "name": "0.9 MT (23 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186870, + "fields": { + "id_car_serie": 47088, + "name": "1.5 CVT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186871, + "fields": { + "id_car_serie": 47088, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186872, + "fields": { + "id_car_serie": 47088, + "name": "2.4 MT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186874, + "fields": { + "id_car_serie": 47090, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186875, + "fields": { + "id_car_serie": 47090, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186876, + "fields": { + "id_car_serie": 47090, + "name": "2.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186878, + "fields": { + "id_car_serie": 47101, + "name": "3.0 TDI tiptronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186879, + "fields": { + "id_car_serie": 47101, + "name": "3.0 TDI L quattro tiptronic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186881, + "fields": { + "id_car_serie": 47101, + "name": "3.0 TFSI quattro tiptronic (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186882, + "fields": { + "id_car_serie": 47101, + "name": "4.0 TFSI quattro tiptronic (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186883, + "fields": { + "id_car_serie": 47101, + "name": "4.2 FSI quattro tiptronic (372 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186884, + "fields": { + "id_car_serie": 47106, + "name": "2.1 20V Turbo MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186886, + "fields": { + "id_car_serie": 47106, + "name": "2.1 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186891, + "fields": { + "id_car_serie": 47109, + "name": "5.2 FSI quattro R tronic (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186893, + "fields": { + "id_car_serie": 47117, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186895, + "fields": { + "id_car_serie": 47117, + "name": "1.8 T quattro MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186896, + "fields": { + "id_car_serie": 47117, + "name": "1.8 T AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186897, + "fields": { + "id_car_serie": 47117, + "name": "1.8 T MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186899, + "fields": { + "id_car_serie": 47117, + "name": "1.8 T quattro MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186901, + "fields": { + "id_car_serie": 47119, + "name": "6.75 V8 AT (512 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186904, + "fields": { + "id_car_serie": 47131, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186906, + "fields": { + "id_car_serie": 47131, + "name": "1.9 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186907, + "fields": { + "id_car_serie": 47131, + "name": "1.9 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186909, + "fields": { + "id_car_serie": 47131, + "name": "2.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186910, + "fields": { + "id_car_serie": 47131, + "name": "2.8 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186911, + "fields": { + "id_car_serie": 47133, + "name": "6.0 AT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186912, + "fields": { + "id_car_serie": 47134, + "name": "6.0 AT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186913, + "fields": { + "id_car_serie": 47135, + "name": "3.6 AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186914, + "fields": { + "id_car_serie": 47135, + "name": "3.6 AT 4WD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186915, + "fields": { + "id_car_serie": 47135, + "name": "3.6 AT (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186916, + "fields": { + "id_car_serie": 47135, + "name": "3.6 AT 4WD (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186917, + "fields": { + "id_car_serie": 47137, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186918, + "fields": { + "id_car_serie": 47137, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186919, + "fields": { + "id_car_serie": 47137, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186920, + "fields": { + "id_car_serie": 47137, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186921, + "fields": { + "id_car_serie": 47140, + "name": "6.0 AT AWD (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186924, + "fields": { + "id_car_serie": 47142, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186935, + "fields": { + "id_car_serie": 47158, + "name": "1.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186936, + "fields": { + "id_car_serie": 47158, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186937, + "fields": { + "id_car_serie": 47158, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186938, + "fields": { + "id_car_serie": 47158, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186939, + "fields": { + "id_car_serie": 47158, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186954, + "fields": { + "id_car_serie": 47169, + "name": "1.0 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186955, + "fields": { + "id_car_serie": 47169, + "name": "1.0 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186956, + "fields": { + "id_car_serie": 47169, + "name": "1.3 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186957, + "fields": { + "id_car_serie": 47169, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186958, + "fields": { + "id_car_serie": 47169, + "name": "1.3 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186959, + "fields": { + "id_car_serie": 47169, + "name": "1.3 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186960, + "fields": { + "id_car_serie": 47169, + "name": "1.3 Turbo AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186961, + "fields": { + "id_car_serie": 47169, + "name": "1.3 Turbo AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186970, + "fields": { + "id_car_serie": 5938, + "name": "2.4 MT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186971, + "fields": { + "id_car_serie": 47173, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186975, + "fields": { + "id_car_serie": 47173, + "name": "3.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186978, + "fields": { + "id_car_serie": 47173, + "name": "3.8 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186980, + "fields": { + "id_car_serie": 47174, + "name": "2.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186986, + "fields": { + "id_car_serie": 47174, + "name": "3.3 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186988, + "fields": { + "id_car_serie": 47179, + "name": "2.7 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186989, + "fields": { + "id_car_serie": 47179, + "name": "3.5 AT (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186990, + "fields": { + "id_car_serie": 47179, + "name": "3.5 AT 4WD (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186991, + "fields": { + "id_car_serie": 47179, + "name": "5.7 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186992, + "fields": { + "id_car_serie": 47179, + "name": "5.7 AT 4WD (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 186993, + "fields": { + "id_car_serie": 47179, + "name": "6.1 AT SRT-8 (432 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187020, + "fields": { + "id_car_serie": 47185, + "name": "3.5 MT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187021, + "fields": { + "id_car_serie": 47185, + "name": "3.5 AT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187022, + "fields": { + "id_car_serie": 47186, + "name": "3.5 AT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187023, + "fields": { + "id_car_serie": 47186, + "name": "3.5 MT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187024, + "fields": { + "id_car_serie": 47187, + "name": "3.5 AT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187025, + "fields": { + "id_car_serie": 47187, + "name": "3.5 MT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187026, + "fields": { + "id_car_serie": 47189, + "name": "4.3 MT (490 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187027, + "fields": { + "id_car_serie": 47189, + "name": "4.3 AMT (490 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187032, + "fields": { + "id_car_serie": 47192, + "name": "0.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187033, + "fields": { + "id_car_serie": 47192, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187034, + "fields": { + "id_car_serie": 47192, + "name": "1.4 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187035, + "fields": { + "id_car_serie": 47192, + "name": "1.4 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187038, + "fields": { + "id_car_serie": 47192, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187040, + "fields": { + "id_car_serie": 47193, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187041, + "fields": { + "id_car_serie": 47193, + "name": "1.4 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187042, + "fields": { + "id_car_serie": 47193, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187043, + "fields": { + "id_car_serie": 47195, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187044, + "fields": { + "id_car_serie": 47195, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187045, + "fields": { + "id_car_serie": 47195, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187051, + "fields": { + "id_car_serie": 6044, + "name": "1.2 AMT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187054, + "fields": { + "id_car_serie": 47200, + "name": "2.3 MT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187055, + "fields": { + "id_car_serie": 47200, + "name": "2.3 AT 4WD (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187057, + "fields": { + "id_car_serie": 47200, + "name": "2.3 AT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187094, + "fields": { + "id_car_serie": 47217, + "name": "5.3 AT SLE (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187095, + "fields": { + "id_car_serie": 47217, + "name": "5.3 AT XL (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187096, + "fields": { + "id_car_serie": 47217, + "name": "6.0 AT XL 2500 (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187097, + "fields": { + "id_car_serie": 47217, + "name": "6.0 AT 4WD XL Denali 2500 (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187098, + "fields": { + "id_car_serie": 47217, + "name": "6.0 AT 4WD XL (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187099, + "fields": { + "id_car_serie": 47217, + "name": "6.0 AT XL 1500 (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187100, + "fields": { + "id_car_serie": 47217, + "name": "6.0 AT 4WD XL Denali 1500 (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187101, + "fields": { + "id_car_serie": 47220, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187102, + "fields": { + "id_car_serie": 47220, + "name": "2.3 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187103, + "fields": { + "id_car_serie": 47220, + "name": "3.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187104, + "fields": { + "id_car_serie": 47220, + "name": "3.0 AT AWD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187105, + "fields": { + "id_car_serie": 47227, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187106, + "fields": { + "id_car_serie": 47227, + "name": "2.4 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187109, + "fields": { + "id_car_serie": 47227, + "name": "3.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187110, + "fields": { + "id_car_serie": 47227, + "name": "3.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187112, + "fields": { + "id_car_serie": 47229, + "name": "0.7 T AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187115, + "fields": { + "id_car_serie": 47231, + "name": "1.5 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187116, + "fields": { + "id_car_serie": 47231, + "name": "1.5 CVT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187120, + "fields": { + "id_car_serie": 47233, + "name": "3.5 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187121, + "fields": { + "id_car_serie": 47234, + "name": "2.0 MT (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187122, + "fields": { + "id_car_serie": 47234, + "name": "2.0 MT (247 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187124, + "fields": { + "id_car_serie": 47239, + "name": "1.1 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187125, + "fields": { + "id_car_serie": 47239, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187126, + "fields": { + "id_car_serie": 47239, + "name": "1.3 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187129, + "fields": { + "id_car_serie": 47239, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187130, + "fields": { + "id_car_serie": 47239, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187131, + "fields": { + "id_car_serie": 47239, + "name": "1.5 CRDi MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187132, + "fields": { + "id_car_serie": 47240, + "name": "1.1 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187133, + "fields": { + "id_car_serie": 47240, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187134, + "fields": { + "id_car_serie": 47240, + "name": "1.3 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187137, + "fields": { + "id_car_serie": 47240, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187138, + "fields": { + "id_car_serie": 47240, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187139, + "fields": { + "id_car_serie": 47240, + "name": "1.5 CRDi MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187140, + "fields": { + "id_car_serie": 47244, + "name": "1.6 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187143, + "fields": { + "id_car_serie": 47244, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187144, + "fields": { + "id_car_serie": 47244, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187145, + "fields": { + "id_car_serie": 47244, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187146, + "fields": { + "id_car_serie": 47244, + "name": "1.6 Blue MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187147, + "fields": { + "id_car_serie": 47244, + "name": "1.6 T DCT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187150, + "fields": { + "id_car_serie": 47245, + "name": "2.4 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187151, + "fields": { + "id_car_serie": 47245, + "name": "2.5 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187152, + "fields": { + "id_car_serie": 47245, + "name": "2.5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187153, + "fields": { + "id_car_serie": 47245, + "name": "3.0 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187157, + "fields": { + "id_car_serie": 47254, + "name": "2.0 AT SWB (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187158, + "fields": { + "id_car_serie": 47254, + "name": "3.0 AT AWD SWB (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187159, + "fields": { + "id_car_serie": 47254, + "name": "2.0 AT LWB (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187160, + "fields": { + "id_car_serie": 47254, + "name": "3.0 AT AWD LWB (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187161, + "fields": { + "id_car_serie": 47254, + "name": "3.0 AT SWB (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187162, + "fields": { + "id_car_serie": 47254, + "name": "5.0 AT SWB (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187163, + "fields": { + "id_car_serie": 47254, + "name": "3.0 AT SWB (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187164, + "fields": { + "id_car_serie": 47254, + "name": "3.0 AT LWB (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187165, + "fields": { + "id_car_serie": 47254, + "name": "5.0 AT LWB (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187166, + "fields": { + "id_car_serie": 47254, + "name": "3.0 D AT SWB (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187167, + "fields": { + "id_car_serie": 47254, + "name": "3.0 D AT LWB (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187171, + "fields": { + "id_car_serie": 47258, + "name": "3.5 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187172, + "fields": { + "id_car_serie": 47259, + "name": "2.7 AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187176, + "fields": { + "id_car_serie": 47259, + "name": "2.7 MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187182, + "fields": { + "id_car_serie": 47259, + "name": "2.9 CRDi AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187183, + "fields": { + "id_car_serie": 47259, + "name": "2.9 CRDi MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187196, + "fields": { + "id_car_serie": 47266, + "name": "6.5 AMT (720 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187208, + "fields": { + "id_car_serie": 47274, + "name": "5.4 AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187209, + "fields": { + "id_car_serie": 47274, + "name": "5.4 AT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187213, + "fields": { + "id_car_serie": 47279, + "name": "5.5 AT (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187220, + "fields": { + "id_car_serie": 47286, + "name": "2.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187221, + "fields": { + "id_car_serie": 47286, + "name": "2.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187222, + "fields": { + "id_car_serie": 47288, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187223, + "fields": { + "id_car_serie": 47288, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187226, + "fields": { + "id_car_serie": 47289, + "name": "1.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187227, + "fields": { + "id_car_serie": 47289, + "name": "1.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187228, + "fields": { + "id_car_serie": 47289, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187229, + "fields": { + "id_car_serie": 47289, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187230, + "fields": { + "id_car_serie": 47290, + "name": "1.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187231, + "fields": { + "id_car_serie": 47290, + "name": "1.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187234, + "fields": { + "id_car_serie": 47293, + "name": "1.6 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187236, + "fields": { + "id_car_serie": 47294, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187237, + "fields": { + "id_car_serie": 47294, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187241, + "fields": { + "id_car_serie": 47294, + "name": "1.6 D MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187242, + "fields": { + "id_car_serie": 47295, + "name": "1.6 MT ALL4 (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187243, + "fields": { + "id_car_serie": 47295, + "name": "1.6 AT ALL4 (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187246, + "fields": { + "id_car_serie": 47295, + "name": "1.6 MT ALL4 (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187247, + "fields": { + "id_car_serie": 47295, + "name": "1.6 AT ALL4 (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187250, + "fields": { + "id_car_serie": 47295, + "name": "2.0 MT D ALL4 (143 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187251, + "fields": { + "id_car_serie": 47295, + "name": "2.0 AT D ALL4 (143 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187254, + "fields": { + "id_car_serie": 47296, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187255, + "fields": { + "id_car_serie": 47296, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187256, + "fields": { + "id_car_serie": 47297, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187257, + "fields": { + "id_car_serie": 47297, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187260, + "fields": { + "id_car_serie": 47298, + "name": "1.6 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187262, + "fields": { + "id_car_serie": 47299, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187263, + "fields": { + "id_car_serie": 47299, + "name": "2.0 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187264, + "fields": { + "id_car_serie": 47299, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187265, + "fields": { + "id_car_serie": 47299, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187296, + "fields": { + "id_car_serie": 47307, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187297, + "fields": { + "id_car_serie": 47307, + "name": "1.6 AT ALL4 (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187298, + "fields": { + "id_car_serie": 47307, + "name": "1.6 MT ALL4 (190 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187299, + "fields": { + "id_car_serie": 47307, + "name": "1.6 AT ALL4 (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187300, + "fields": { + "id_car_serie": 47307, + "name": "1.6 MT ALL4 (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187304, + "fields": { + "id_car_serie": 47308, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187305, + "fields": { + "id_car_serie": 47308, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187314, + "fields": { + "id_car_serie": 47309, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187315, + "fields": { + "id_car_serie": 47309, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187316, + "fields": { + "id_car_serie": 47310, + "name": "1.6 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187318, + "fields": { + "id_car_serie": 47311, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187319, + "fields": { + "id_car_serie": 47311, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187320, + "fields": { + "id_car_serie": 47311, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187321, + "fields": { + "id_car_serie": 47311, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187322, + "fields": { + "id_car_serie": 47311, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187323, + "fields": { + "id_car_serie": 47311, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187324, + "fields": { + "id_car_serie": 47311, + "name": "1.8 MT GDI (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187325, + "fields": { + "id_car_serie": 47311, + "name": "1.8 AT GDI (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187326, + "fields": { + "id_car_serie": 47311, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187327, + "fields": { + "id_car_serie": 47311, + "name": "1.9 MT TD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187328, + "fields": { + "id_car_serie": 47312, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187329, + "fields": { + "id_car_serie": 47312, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187330, + "fields": { + "id_car_serie": 47312, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187331, + "fields": { + "id_car_serie": 47312, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187332, + "fields": { + "id_car_serie": 47312, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187333, + "fields": { + "id_car_serie": 47312, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187334, + "fields": { + "id_car_serie": 47312, + "name": "1.8 MT GDI (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187335, + "fields": { + "id_car_serie": 47312, + "name": "1.8 AT GDI (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187336, + "fields": { + "id_car_serie": 47312, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187337, + "fields": { + "id_car_serie": 47312, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187342, + "fields": { + "id_car_serie": 47315, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187343, + "fields": { + "id_car_serie": 47315, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187344, + "fields": { + "id_car_serie": 47315, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187345, + "fields": { + "id_car_serie": 47315, + "name": "3.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187346, + "fields": { + "id_car_serie": 47315, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187347, + "fields": { + "id_car_serie": 47315, + "name": "3.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187353, + "fields": { + "id_car_serie": 47326, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187354, + "fields": { + "id_car_serie": 47326, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187359, + "fields": { + "id_car_serie": 47326, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187361, + "fields": { + "id_car_serie": 47326, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187367, + "fields": { + "id_car_serie": 47341, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187368, + "fields": { + "id_car_serie": 47341, + "name": "1.4 VTi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187369, + "fields": { + "id_car_serie": 47341, + "name": "1.6 VTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187370, + "fields": { + "id_car_serie": 47341, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187371, + "fields": { + "id_car_serie": 47341, + "name": "1.6 MT RC (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187372, + "fields": { + "id_car_serie": 47341, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187373, + "fields": { + "id_car_serie": 47341, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187380, + "fields": { + "id_car_serie": 47345, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187381, + "fields": { + "id_car_serie": 47345, + "name": "2.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187382, + "fields": { + "id_car_serie": 47345, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187384, + "fields": { + "id_car_serie": 47345, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187385, + "fields": { + "id_car_serie": 47345, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187386, + "fields": { + "id_car_serie": 47346, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187387, + "fields": { + "id_car_serie": 47346, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187388, + "fields": { + "id_car_serie": 47346, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187389, + "fields": { + "id_car_serie": 47346, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187390, + "fields": { + "id_car_serie": 47346, + "name": "2.0 HDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187391, + "fields": { + "id_car_serie": 47346, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187392, + "fields": { + "id_car_serie": 47346, + "name": "2.0 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187393, + "fields": { + "id_car_serie": 47346, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187395, + "fields": { + "id_car_serie": 47348, + "name": "1.6 HDi 6MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187396, + "fields": { + "id_car_serie": 47348, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187398, + "fields": { + "id_car_serie": 47348, + "name": "2.0 HDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187399, + "fields": { + "id_car_serie": 47348, + "name": "2.0 HDi 2-Tronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187400, + "fields": { + "id_car_serie": 47348, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187401, + "fields": { + "id_car_serie": 47348, + "name": "1.6 VTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187403, + "fields": { + "id_car_serie": 47348, + "name": "1.6 THP MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187408, + "fields": { + "id_car_serie": 47348, + "name": "1.4 VTi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187409, + "fields": { + "id_car_serie": 47348, + "name": "1.6 THP AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187410, + "fields": { + "id_car_serie": 47348, + "name": "1.6 THP MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187413, + "fields": { + "id_car_serie": 47351, + "name": "1.8 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187414, + "fields": { + "id_car_serie": 47351, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187415, + "fields": { + "id_car_serie": 47351, + "name": "2.0 MT Turbo (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187416, + "fields": { + "id_car_serie": 47351, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187417, + "fields": { + "id_car_serie": 47351, + "name": "1.9 TD MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187418, + "fields": { + "id_car_serie": 47351, + "name": "2.1 TD MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187420, + "fields": { + "id_car_serie": 47353, + "name": "3.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187421, + "fields": { + "id_car_serie": 47353, + "name": "3.3 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187425, + "fields": { + "id_car_serie": 47355, + "name": "2.2 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187426, + "fields": { + "id_car_serie": 47355, + "name": "2.2 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187427, + "fields": { + "id_car_serie": 47355, + "name": "2.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187428, + "fields": { + "id_car_serie": 47355, + "name": "2.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187429, + "fields": { + "id_car_serie": 47355, + "name": "2.5 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187430, + "fields": { + "id_car_serie": 47355, + "name": "2.5 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187431, + "fields": { + "id_car_serie": 47355, + "name": "3.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187432, + "fields": { + "id_car_serie": 47355, + "name": "3.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187433, + "fields": { + "id_car_serie": 47355, + "name": "3.3 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187434, + "fields": { + "id_car_serie": 47355, + "name": "3.3 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187437, + "fields": { + "id_car_serie": 47359, + "name": "3.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187438, + "fields": { + "id_car_serie": 47360, + "name": "5.7 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187439, + "fields": { + "id_car_serie": 47360, + "name": "6.6 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187440, + "fields": { + "id_car_serie": 47361, + "name": "5.7 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187441, + "fields": { + "id_car_serie": 47361, + "name": "6.6 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187442, + "fields": { + "id_car_serie": 47362, + "name": "5.7 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187443, + "fields": { + "id_car_serie": 47362, + "name": "6.6 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187444, + "fields": { + "id_car_serie": 47363, + "name": "5.7 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187445, + "fields": { + "id_car_serie": 47363, + "name": "6.6 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187446, + "fields": { + "id_car_serie": 47364, + "name": "5.7 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187447, + "fields": { + "id_car_serie": 47364, + "name": "6.6 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187448, + "fields": { + "id_car_serie": 47365, + "name": "5.7 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187449, + "fields": { + "id_car_serie": 47365, + "name": "6.6 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187450, + "fields": { + "id_car_serie": 47366, + "name": "3.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187451, + "fields": { + "id_car_serie": 47366, + "name": "5.3 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187452, + "fields": { + "id_car_serie": 47367, + "name": "3.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187453, + "fields": { + "id_car_serie": 47367, + "name": "5.3 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187454, + "fields": { + "id_car_serie": 47368, + "name": "3.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187455, + "fields": { + "id_car_serie": 47368, + "name": "5.3 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187458, + "fields": { + "id_car_serie": 47372, + "name": "6.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187464, + "fields": { + "id_car_serie": 47393, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187466, + "fields": { + "id_car_serie": 47393, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187467, + "fields": { + "id_car_serie": 47393, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187472, + "fields": { + "id_car_serie": 47393, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187474, + "fields": { + "id_car_serie": 47398, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187475, + "fields": { + "id_car_serie": 47398, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187476, + "fields": { + "id_car_serie": 47398, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187477, + "fields": { + "id_car_serie": 47398, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187478, + "fields": { + "id_car_serie": 47398, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187479, + "fields": { + "id_car_serie": 47398, + "name": "2.0 T MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187480, + "fields": { + "id_car_serie": 47398, + "name": "1.5 dCi MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187481, + "fields": { + "id_car_serie": 47398, + "name": "1.5 dCi MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187482, + "fields": { + "id_car_serie": 47398, + "name": "1.5 dCi MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187483, + "fields": { + "id_car_serie": 47398, + "name": "1.5 dCi MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187484, + "fields": { + "id_car_serie": 47398, + "name": "1.9 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187486, + "fields": { + "id_car_serie": 47398, + "name": "1.9 dCi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187488, + "fields": { + "id_car_serie": 47401, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187491, + "fields": { + "id_car_serie": 47401, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187493, + "fields": { + "id_car_serie": 47401, + "name": "2.0 TDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187496, + "fields": { + "id_car_serie": 47402, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187499, + "fields": { + "id_car_serie": 47402, + "name": "2.0 TFSI MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187505, + "fields": { + "id_car_serie": 47402, + "name": "2.0 TDI MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187506, + "fields": { + "id_car_serie": 47402, + "name": "2.0 TDI MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187509, + "fields": { + "id_car_serie": 9092, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187511, + "fields": { + "id_car_serie": 9092, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187512, + "fields": { + "id_car_serie": 9092, + "name": "1.9 MT TD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187518, + "fields": { + "id_car_serie": 9093, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187544, + "fields": { + "id_car_serie": 47415, + "name": "2.0 TFSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187545, + "fields": { + "id_car_serie": 47415, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187560, + "fields": { + "id_car_serie": 47420, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187561, + "fields": { + "id_car_serie": 47420, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187577, + "fields": { + "id_car_serie": 47427, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187578, + "fields": { + "id_car_serie": 47427, + "name": "1.2 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187579, + "fields": { + "id_car_serie": 47427, + "name": "1.2 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187580, + "fields": { + "id_car_serie": 47427, + "name": "1.2 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187581, + "fields": { + "id_car_serie": 47427, + "name": "1.2 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187592, + "fields": { + "id_car_serie": 47454, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187593, + "fields": { + "id_car_serie": 47454, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187594, + "fields": { + "id_car_serie": 47454, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187595, + "fields": { + "id_car_serie": 47454, + "name": "2.0 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187597, + "fields": { + "id_car_serie": 47454, + "name": "2.0 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187608, + "fields": { + "id_car_serie": 47454, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187610, + "fields": { + "id_car_serie": 47454, + "name": "2.0 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187613, + "fields": { + "id_car_serie": 47454, + "name": "2.0 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187617, + "fields": { + "id_car_serie": 47458, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187618, + "fields": { + "id_car_serie": 47458, + "name": "1.4 TSI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187619, + "fields": { + "id_car_serie": 47458, + "name": "1.4 TSI Ecofuel MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187621, + "fields": { + "id_car_serie": 47458, + "name": "1.4 TSI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187622, + "fields": { + "id_car_serie": 47458, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187624, + "fields": { + "id_car_serie": 47458, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187626, + "fields": { + "id_car_serie": 47458, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187627, + "fields": { + "id_car_serie": 47458, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187628, + "fields": { + "id_car_serie": 47458, + "name": "2.0 TDI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187630, + "fields": { + "id_car_serie": 47462, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187631, + "fields": { + "id_car_serie": 47462, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187632, + "fields": { + "id_car_serie": 47462, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187633, + "fields": { + "id_car_serie": 47462, + "name": "2.9 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187634, + "fields": { + "id_car_serie": 47462, + "name": "2.4 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187635, + "fields": { + "id_car_serie": 47462, + "name": "2.4 TD AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187646, + "fields": { + "id_car_serie": 8044, + "name": "2.3 T AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187647, + "fields": { + "id_car_serie": 8044, + "name": "2.3 T AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187649, + "fields": { + "id_car_serie": 8044, + "name": "2.3 T MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187650, + "fields": { + "id_car_serie": 8044, + "name": "2.3 T MT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187667, + "fields": { + "id_car_serie": 8044, + "name": "2.4 T AT AWD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187670, + "fields": { + "id_car_serie": 47477, + "name": "5.6 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187671, + "fields": { + "id_car_serie": 47477, + "name": "5.6 AT SWB 4WD (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187672, + "fields": { + "id_car_serie": 47480, + "name": "2.4 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187674, + "fields": { + "id_car_serie": 47480, + "name": "2.4 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187676, + "fields": { + "id_car_serie": 47480, + "name": "2.7 MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187677, + "fields": { + "id_car_serie": 47480, + "name": "2.7 AT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187683, + "fields": { + "id_car_serie": 47480, + "name": "3.4 MT 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187698, + "fields": { + "id_car_serie": 47488, + "name": "1.6 HDI MT L1H1 (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187699, + "fields": { + "id_car_serie": 47488, + "name": "2.0 HDI MT L1H1 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187712, + "fields": { + "id_car_serie": 47494, + "name": "2.1 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187715, + "fields": { + "id_car_serie": 47494, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187718, + "fields": { + "id_car_serie": 47494, + "name": "2.1 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187720, + "fields": { + "id_car_serie": 47494, + "name": "3.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187721, + "fields": { + "id_car_serie": 47494, + "name": "3.5 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187765, + "fields": { + "id_car_serie": 47510, + "name": "3.0 BITURBO AT SWITCH-TRONIC (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187766, + "fields": { + "id_car_serie": 47516, + "name": "2.8 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187767, + "fields": { + "id_car_serie": 47516, + "name": "3.4 MT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187768, + "fields": { + "id_car_serie": 47516, + "name": "3.4 MT (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187769, + "fields": { + "id_car_serie": 47518, + "name": "4.4 AT (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187770, + "fields": { + "id_car_serie": 47519, + "name": "4.4 AT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187771, + "fields": { + "id_car_serie": 47520, + "name": "4.4 AT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187775, + "fields": { + "id_car_serie": 47525, + "name": "1.3 MT (24 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187776, + "fields": { + "id_car_serie": 47525, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187777, + "fields": { + "id_car_serie": 47526, + "name": "6.3 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187791, + "fields": { + "id_car_serie": 47544, + "name": "1.5 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187792, + "fields": { + "id_car_serie": 47544, + "name": "1.7 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187793, + "fields": { + "id_car_serie": 47545, + "name": "0.9 MT (18 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187796, + "fields": { + "id_car_serie": 47545, + "name": "1.0 MT (27 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187797, + "fields": { + "id_car_serie": 47545, + "name": "1.1 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187798, + "fields": { + "id_car_serie": 47545, + "name": "1.1 MT (32 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187799, + "fields": { + "id_car_serie": 47546, + "name": "0.4 MT (16 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187800, + "fields": { + "id_car_serie": 14726, + "name": "2.3 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187801, + "fields": { + "id_car_serie": 14726, + "name": "2.3 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187802, + "fields": { + "id_car_serie": 14726, + "name": "2.3 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187803, + "fields": { + "id_car_serie": 14726, + "name": "2.3 MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187804, + "fields": { + "id_car_serie": 471, + "name": "3.0 Hdi AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187805, + "fields": { + "id_car_serie": 515, + "name": "2.0 MT RWD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187806, + "fields": { + "id_car_serie": 515, + "name": "2.3 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187807, + "fields": { + "id_car_serie": 515, + "name": "2.8 D MT RWD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187808, + "fields": { + "id_car_serie": 515, + "name": "2.8 D MT AWD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187809, + "fields": { + "id_car_serie": 535, + "name": "1.8 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187810, + "fields": { + "id_car_serie": 535, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187811, + "fields": { + "id_car_serie": 535, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187812, + "fields": { + "id_car_serie": 535, + "name": "2.2 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187813, + "fields": { + "id_car_serie": 536, + "name": "2.5 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187814, + "fields": { + "id_car_serie": 542, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187815, + "fields": { + "id_car_serie": 542, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187816, + "fields": { + "id_car_serie": 542, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187817, + "fields": { + "id_car_serie": 547, + "name": "0.8 5MT (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187818, + "fields": { + "id_car_serie": 588, + "name": "1.5 AT AWD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187819, + "fields": { + "id_car_serie": 602, + "name": "0.66 Turbo CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187820, + "fields": { + "id_car_serie": 603, + "name": "1.3 AT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187821, + "fields": { + "id_car_serie": 603, + "name": "1.3 AT AWD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187822, + "fields": { + "id_car_serie": 603, + "name": "1.3 MT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187823, + "fields": { + "id_car_serie": 603, + "name": "1.3 MT AWD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187824, + "fields": { + "id_car_serie": 619, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187825, + "fields": { + "id_car_serie": 619, + "name": "1.8 D MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187826, + "fields": { + "id_car_serie": 660, + "name": "3.3 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187827, + "fields": { + "id_car_serie": 681, + "name": "4.0 MT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187828, + "fields": { + "id_car_serie": 681, + "name": "4.0 MT AWD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187829, + "fields": { + "id_car_serie": 686, + "name": "3.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187830, + "fields": { + "id_car_serie": 686, + "name": "3.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187831, + "fields": { + "id_car_serie": 718, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187832, + "fields": { + "id_car_serie": 718, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187833, + "fields": { + "id_car_serie": 752, + "name": "3.8 Twin Turbo DCT (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187834, + "fields": { + "id_car_serie": 786, + "name": "1.2 MultiJet-II Turbo MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187835, + "fields": { + "id_car_serie": 803, + "name": "1.3 Multijet MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187836, + "fields": { + "id_car_serie": 833, + "name": "3.0i MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187837, + "fields": { + "id_car_serie": 834, + "name": "1.3i MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187838, + "fields": { + "id_car_serie": 842, + "name": "2.0i MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187839, + "fields": { + "id_car_serie": 842, + "name": "2.5i MT GL (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187840, + "fields": { + "id_car_serie": 843, + "name": "2.0i MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187841, + "fields": { + "id_car_serie": 843, + "name": "2.5i MT ST200 (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187842, + "fields": { + "id_car_serie": 843, + "name": "2.5i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187843, + "fields": { + "id_car_serie": 846, + "name": "2.0 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187844, + "fields": { + "id_car_serie": 846, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187845, + "fields": { + "id_car_serie": 846, + "name": "2.0 PowerShift (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187846, + "fields": { + "id_car_serie": 856, + "name": "6.0 TD AT (329 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187847, + "fields": { + "id_car_serie": 856, + "name": "6.0 TD AT 4WD (329 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187848, + "fields": { + "id_car_serie": 856, + "name": "6.8 AT 4WD (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187849, + "fields": { + "id_car_serie": 856, + "name": "6.8 AT (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187850, + "fields": { + "id_car_serie": 867, + "name": "3.0i MT AWD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187851, + "fields": { + "id_car_serie": 867, + "name": "3.0i MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187852, + "fields": { + "id_car_serie": 873, + "name": "3.0i CVT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187853, + "fields": { + "id_car_serie": 873, + "name": "3.0i CVT AWD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187854, + "fields": { + "id_car_serie": 875, + "name": "1.25 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187855, + "fields": { + "id_car_serie": 974, + "name": "5.7 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187856, + "fields": { + "id_car_serie": 974, + "name": "5.7 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187857, + "fields": { + "id_car_serie": 974, + "name": "5.7 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187858, + "fields": { + "id_car_serie": 1023, + "name": "3.1 TD MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187860, + "fields": { + "id_car_serie": 1050, + "name": "2.4 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187861, + "fields": { + "id_car_serie": 1083, + "name": "2.0 MT GT UK (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187862, + "fields": { + "id_car_serie": 1083, + "name": "2.0 MT Ultimate Edition (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187863, + "fields": { + "id_car_serie": 1083, + "name": "2.0 MT (239 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187864, + "fields": { + "id_car_serie": 1088, + "name": "0.7 AT AWD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187865, + "fields": { + "id_car_serie": 1088, + "name": "0.7 AT Turbo AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187866, + "fields": { + "id_car_serie": 1090, + "name": "2.0 AT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187867, + "fields": { + "id_car_serie": 1095, + "name": "2.4 MT AWD (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187868, + "fields": { + "id_car_serie": 1095, + "name": "2.4 MT RWD (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187869, + "fields": { + "id_car_serie": 1095, + "name": "2.8 MT RWD (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187870, + "fields": { + "id_car_serie": 1109, + "name": "3.8 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187871, + "fields": { + "id_car_serie": 1109, + "name": "4.6 AT (366 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187872, + "fields": { + "id_car_serie": 1109, + "name": "5.0 AT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187873, + "fields": { + "id_car_serie": 1111, + "name": "2.5 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187874, + "fields": { + "id_car_serie": 1111, + "name": "3.0 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187875, + "fields": { + "id_car_serie": 1131, + "name": "1.6 CRDi MT blue (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187876, + "fields": { + "id_car_serie": 1132, + "name": "1.6 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187877, + "fields": { + "id_car_serie": 1132, + "name": "1.7 CRDi MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187878, + "fields": { + "id_car_serie": 1132, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187879, + "fields": { + "id_car_serie": 1132, + "name": "2.0 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187880, + "fields": { + "id_car_serie": 1132, + "name": "2.0 CRDi MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187881, + "fields": { + "id_car_serie": 1133, + "name": "3.0 CRDi Shiftronic 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187882, + "fields": { + "id_car_serie": 1133, + "name": "3.8 Shiftronic 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187883, + "fields": { + "id_car_serie": 1142, + "name": "2.0 AT 4X4 (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187884, + "fields": { + "id_car_serie": 1142, + "name": "2.0 MT 4X4 (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187885, + "fields": { + "id_car_serie": 1149, + "name": "2.9 CRDi AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187886, + "fields": { + "id_car_serie": 1149, + "name": "2.9 CRDi MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187887, + "fields": { + "id_car_serie": 1159, + "name": "EX25 AT AWD (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187888, + "fields": { + "id_car_serie": 1159, + "name": "EX35 AT (301 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187889, + "fields": { + "id_car_serie": 1159, + "name": "EX35 AT 4WD (301 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187890, + "fields": { + "id_car_serie": 1159, + "name": "EX35 AT AWD (302 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187891, + "fields": { + "id_car_serie": 1159, + "name": "EX37 AT AWD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187892, + "fields": { + "id_car_serie": 1165, + "name": "J30 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187893, + "fields": { + "id_car_serie": 1165, + "name": "J30 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187894, + "fields": { + "id_car_serie": 1166, + "name": "JX35 CVT (262 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187895, + "fields": { + "id_car_serie": 1166, + "name": "JX35 CVT AWD (262 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187896, + "fields": { + "id_car_serie": 1169, + "name": "2.2 TD AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187897, + "fields": { + "id_car_serie": 1169, + "name": "2.2 TD MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187898, + "fields": { + "id_car_serie": 1169, + "name": "3.7 AT (328 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187899, + "fields": { + "id_car_serie": 1169, + "name": "3.7 AT AWD (328 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187900, + "fields": { + "id_car_serie": 1183, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187901, + "fields": { + "id_car_serie": 1183, + "name": "1.8 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187902, + "fields": { + "id_car_serie": 1224, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187903, + "fields": { + "id_car_serie": 1224, + "name": "2.0 Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187904, + "fields": { + "id_car_serie": 1257, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187905, + "fields": { + "id_car_serie": 1268, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187906, + "fields": { + "id_car_serie": 1268, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187907, + "fields": { + "id_car_serie": 1268, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187908, + "fields": { + "id_car_serie": 1269, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187909, + "fields": { + "id_car_serie": 1270, + "name": "3.0 AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187910, + "fields": { + "id_car_serie": 1273, + "name": "3.8 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187911, + "fields": { + "id_car_serie": 1273, + "name": "4.6 AT (342 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187912, + "fields": { + "id_car_serie": 1283, + "name": "2.0 TD MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187913, + "fields": { + "id_car_serie": 1295, + "name": "2.0 AT (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187914, + "fields": { + "id_car_serie": 1298, + "name": "0.8 Turbo AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187915, + "fields": { + "id_car_serie": 1298, + "name": "0.8 LPG AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187916, + "fields": { + "id_car_serie": 1298, + "name": "0.8 LPG MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187917, + "fields": { + "id_car_serie": 1355, + "name": "2.4JTD AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187918, + "fields": { + "id_car_serie": 1355, + "name": "2.4JTD MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187919, + "fields": { + "id_car_serie": 1355, + "name": "2.4JTD MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187920, + "fields": { + "id_car_serie": 1357, + "name": "1.1i MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187921, + "fields": { + "id_car_serie": 1357, + "name": "1.1i MT 4X4 (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187922, + "fields": { + "id_car_serie": 1357, + "name": "1.3i MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187923, + "fields": { + "id_car_serie": 1359, + "name": "2.0JTD MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187924, + "fields": { + "id_car_serie": 1359, + "name": "2.1TD MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187925, + "fields": { + "id_car_serie": 1385, + "name": "300h CVT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187926, + "fields": { + "id_car_serie": 1385, + "name": "350 AT (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187927, + "fields": { + "id_car_serie": 1420, + "name": "1.6i MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187928, + "fields": { + "id_car_serie": 1420, + "name": "1.6i MT S2 (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187929, + "fields": { + "id_car_serie": 1420, + "name": "1.6i MT Turbo (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187930, + "fields": { + "id_car_serie": 1526, + "name": "0.7 CVT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187931, + "fields": { + "id_car_serie": 1526, + "name": "0.7 CVT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187932, + "fields": { + "id_car_serie": 1637, + "name": "3.0 AT AWD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187933, + "fields": { + "id_car_serie": 1637, + "name": "3.0 MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187934, + "fields": { + "id_car_serie": 1647, + "name": "2.4 TD AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187935, + "fields": { + "id_car_serie": 1647, + "name": "2.4 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187936, + "fields": { + "id_car_serie": 1802, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187937, + "fields": { + "id_car_serie": 1805, + "name": "2.0 T AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187938, + "fields": { + "id_car_serie": 1805, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187939, + "fields": { + "id_car_serie": 1805, + "name": "2.0 T MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187940, + "fields": { + "id_car_serie": 1805, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187943, + "fields": { + "id_car_serie": 1828, + "name": "2.0 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187944, + "fields": { + "id_car_serie": 1828, + "name": "2.0 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187945, + "fields": { + "id_car_serie": 1830, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187946, + "fields": { + "id_car_serie": 1830, + "name": "2.4 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187947, + "fields": { + "id_car_serie": 1830, + "name": "2.4 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187948, + "fields": { + "id_car_serie": 1830, + "name": "2.4 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187949, + "fields": { + "id_car_serie": 1830, + "name": "3.2 D AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187950, + "fields": { + "id_car_serie": 1830, + "name": "3.2 D MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187951, + "fields": { + "id_car_serie": 1831, + "name": "1.5 TDI 2WD ECO MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187952, + "fields": { + "id_car_serie": 1831, + "name": "1.5 TDI 2WD MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187953, + "fields": { + "id_car_serie": 1831, + "name": "1.6 TDI 4WD MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187954, + "fields": { + "id_car_serie": 1831, + "name": "1.6 TDI 2WD MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187955, + "fields": { + "id_car_serie": 1831, + "name": "1.6 2WD MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187956, + "fields": { + "id_car_serie": 1831, + "name": "2.0 dCi AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187957, + "fields": { + "id_car_serie": 1831, + "name": "2.0 4WD MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187958, + "fields": { + "id_car_serie": 1831, + "name": "2.0 2WD MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187959, + "fields": { + "id_car_serie": 1847, + "name": "2.0 GT4 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187960, + "fields": { + "id_car_serie": 1871, + "name": "3.0 AT GTO-3R (352 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187961, + "fields": { + "id_car_serie": 1992, + "name": "1.2 VTi ETG (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187962, + "fields": { + "id_car_serie": 9645, + "name": "1.3 AT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187963, + "fields": { + "id_car_serie": 9645, + "name": "1.3 MT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187964, + "fields": { + "id_car_serie": 9644, + "name": "1.3 AT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187965, + "fields": { + "id_car_serie": 9644, + "name": "1.3 MT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187966, + "fields": { + "id_car_serie": 2021, + "name": "2.0 Tiptronic (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187967, + "fields": { + "id_car_serie": 2021, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187968, + "fields": { + "id_car_serie": 9640, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187969, + "fields": { + "id_car_serie": 9640, + "name": "2.0 sVT 6seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187970, + "fields": { + "id_car_serie": 9640, + "name": "2.0 sVT 7seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187971, + "fields": { + "id_car_serie": 9637, + "name": "1.8 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187972, + "fields": { + "id_car_serie": 2033, + "name": "2.5 TD MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187973, + "fields": { + "id_car_serie": 2033, + "name": "3.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187974, + "fields": { + "id_car_serie": 2034, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187975, + "fields": { + "id_car_serie": 2034, + "name": "3.0 MT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187976, + "fields": { + "id_car_serie": 2035, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187977, + "fields": { + "id_car_serie": 9634, + "name": "1.3 CVT 2WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187978, + "fields": { + "id_car_serie": 9634, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187979, + "fields": { + "id_car_serie": 2041, + "name": "2.5i AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187980, + "fields": { + "id_car_serie": 2041, + "name": "2.5i MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187981, + "fields": { + "id_car_serie": 2041, + "name": "3.0i AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187982, + "fields": { + "id_car_serie": 9632, + "name": "2.0 CVT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187983, + "fields": { + "id_car_serie": 9632, + "name": "2.0 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187984, + "fields": { + "id_car_serie": 9632, + "name": "2.0 CVT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187985, + "fields": { + "id_car_serie": 9632, + "name": "2.0 CVT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187986, + "fields": { + "id_car_serie": 2045, + "name": "1.8i MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187987, + "fields": { + "id_car_serie": 2045, + "name": "2.0i MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187988, + "fields": { + "id_car_serie": 2045, + "name": "2.0i MT Turbo (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187989, + "fields": { + "id_car_serie": 9630, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187990, + "fields": { + "id_car_serie": 9622, + "name": "2.2 D-4D MT (179 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187991, + "fields": { + "id_car_serie": 9620, + "name": "2.4 CVT 5seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187992, + "fields": { + "id_car_serie": 9620, + "name": "2.4 CVT 7seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187993, + "fields": { + "id_car_serie": 9620, + "name": "3.5 AT 4WD 5seat (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187994, + "fields": { + "id_car_serie": 9619, + "name": "1.8 AT Middle roof (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187995, + "fields": { + "id_car_serie": 9619, + "name": "1.8 AT High roof (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187996, + "fields": { + "id_car_serie": 9619, + "name": "1.8 AT Twin moon roof (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187997, + "fields": { + "id_car_serie": 9619, + "name": "1.8 MT Middle roof (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187998, + "fields": { + "id_car_serie": 9619, + "name": "1.8 MT Standard roof (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 187999, + "fields": { + "id_car_serie": 9619, + "name": "1.8 MT Skylight roof (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188000, + "fields": { + "id_car_serie": 9619, + "name": "1.8 MT High roof (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188001, + "fields": { + "id_car_serie": 9619, + "name": "2.0 TD AT Twin moon roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188002, + "fields": { + "id_car_serie": 9619, + "name": "2.0 AT Skylight roof (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188003, + "fields": { + "id_car_serie": 9619, + "name": "2.0 AT High roof (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188004, + "fields": { + "id_car_serie": 9619, + "name": "2.0 AT Twin moon roof (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188005, + "fields": { + "id_car_serie": 9619, + "name": "2.0 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188006, + "fields": { + "id_car_serie": 9619, + "name": "2.0 TD MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188007, + "fields": { + "id_car_serie": 9619, + "name": "2.0 TD MT Skylight roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188008, + "fields": { + "id_car_serie": 9619, + "name": "2.0 TD MT Standard roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188009, + "fields": { + "id_car_serie": 9619, + "name": "2.0 TD MT High roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188010, + "fields": { + "id_car_serie": 9619, + "name": "2.0 TD MT Middle roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188011, + "fields": { + "id_car_serie": 9610, + "name": "3.4 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188012, + "fields": { + "id_car_serie": 9610, + "name": "3.4 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188013, + "fields": { + "id_car_serie": 9607, + "name": "4.0 AT 4WD (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188014, + "fields": { + "id_car_serie": 9607, + "name": "4.0 AT 4WD Long (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188015, + "fields": { + "id_car_serie": 9607, + "name": "4.7 AT Long (271 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188016, + "fields": { + "id_car_serie": 9607, + "name": "4.7 AT 4WD (271 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188017, + "fields": { + "id_car_serie": 9607, + "name": "4.7 AT (271 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188018, + "fields": { + "id_car_serie": 9607, + "name": "4.7 AT 4WD Long (271 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188019, + "fields": { + "id_car_serie": 9607, + "name": "5.7 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188020, + "fields": { + "id_car_serie": 9607, + "name": "5.7 AT 4WD Long (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188021, + "fields": { + "id_car_serie": 9606, + "name": "4.0 AT Long (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188022, + "fields": { + "id_car_serie": 9606, + "name": "4.0 AT (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188023, + "fields": { + "id_car_serie": 9606, + "name": "4.7 AT (271 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188024, + "fields": { + "id_car_serie": 9606, + "name": "4.7 AT 4WD Long (271 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188025, + "fields": { + "id_car_serie": 9606, + "name": "4.7 AT Long (271 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188026, + "fields": { + "id_car_serie": 9606, + "name": "4.7 AT 4WD (271 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188027, + "fields": { + "id_car_serie": 9606, + "name": "5.7 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188028, + "fields": { + "id_car_serie": 9606, + "name": "5.7 AT 4WD Long (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188029, + "fields": { + "id_car_serie": 9603, + "name": "2.7 MT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188030, + "fields": { + "id_car_serie": 9597, + "name": "1.4 D-4D MT Van (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188031, + "fields": { + "id_car_serie": 9597, + "name": "1.5 AT Van (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188032, + "fields": { + "id_car_serie": 9597, + "name": "1.5 AT 4WD Van (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188033, + "fields": { + "id_car_serie": 9592, + "name": "1.5 D AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188034, + "fields": { + "id_car_serie": 9591, + "name": "1.5 D AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188035, + "fields": { + "id_car_serie": 9590, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188036, + "fields": { + "id_car_serie": 9590, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188037, + "fields": { + "id_car_serie": 9590, + "name": "1.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188038, + "fields": { + "id_car_serie": 9590, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188039, + "fields": { + "id_car_serie": 9590, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188040, + "fields": { + "id_car_serie": 9590, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188041, + "fields": { + "id_car_serie": 9585, + "name": "1.6 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188042, + "fields": { + "id_car_serie": 9585, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188043, + "fields": { + "id_car_serie": 9585, + "name": "1.6 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188044, + "fields": { + "id_car_serie": 9585, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188045, + "fields": { + "id_car_serie": 9585, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188046, + "fields": { + "id_car_serie": 9585, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188047, + "fields": { + "id_car_serie": 2136, + "name": "1.2 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188048, + "fields": { + "id_car_serie": 2139, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188049, + "fields": { + "id_car_serie": 9576, + "name": "2.0 AT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188050, + "fields": { + "id_car_serie": 9576, + "name": "2.0 AT FWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188051, + "fields": { + "id_car_serie": 9576, + "name": "2.0 MT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188052, + "fields": { + "id_car_serie": 9576, + "name": "2.0 MT FWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188053, + "fields": { + "id_car_serie": 2143, + "name": "2.0 TD MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188056, + "fields": { + "id_car_serie": 9573, + "name": "2.2 TD MT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188057, + "fields": { + "id_car_serie": 9573, + "name": "2.2 TD MT AWD (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188058, + "fields": { + "id_car_serie": 2147, + "name": "2.0i MT (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188059, + "fields": { + "id_car_serie": 2147, + "name": "2.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188060, + "fields": { + "id_car_serie": 2147, + "name": "2.9 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188061, + "fields": { + "id_car_serie": 9568, + "name": "1.3 MT Van (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188062, + "fields": { + "id_car_serie": 9568, + "name": "1.5 AT Van (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188063, + "fields": { + "id_car_serie": 9568, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188064, + "fields": { + "id_car_serie": 9568, + "name": "1.5 MT Van (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188065, + "fields": { + "id_car_serie": 2154, + "name": "0.8 MT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188066, + "fields": { + "id_car_serie": 2154, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188067, + "fields": { + "id_car_serie": 2156, + "name": "3.0 AT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188068, + "fields": { + "id_car_serie": 2156, + "name": "3.0 MT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188069, + "fields": { + "id_car_serie": 2164, + "name": "2.2 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188070, + "fields": { + "id_car_serie": 9559, + "name": "1.5 CVT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188071, + "fields": { + "id_car_serie": 9559, + "name": "1.5 CVT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188073, + "fields": { + "id_car_serie": 9556, + "name": "2.4 AT 4X4 (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188074, + "fields": { + "id_car_serie": 9556, + "name": "2.4 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188075, + "fields": { + "id_car_serie": 9555, + "name": "2.0 D4-D MT 7seat (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188076, + "fields": { + "id_car_serie": 9551, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188077, + "fields": { + "id_car_serie": 9547, + "name": "1.5 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188078, + "fields": { + "id_car_serie": 9547, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188079, + "fields": { + "id_car_serie": 9547, + "name": "1.6 turbo AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188080, + "fields": { + "id_car_serie": 9547, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188081, + "fields": { + "id_car_serie": 9547, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188082, + "fields": { + "id_car_serie": 9547, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188083, + "fields": { + "id_car_serie": 9547, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188084, + "fields": { + "id_car_serie": 9547, + "name": "1.6 turbo MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188085, + "fields": { + "id_car_serie": 9547, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188086, + "fields": { + "id_car_serie": 9545, + "name": "2.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188087, + "fields": { + "id_car_serie": 2185, + "name": "2.2 dCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188090, + "fields": { + "id_car_serie": 9536, + "name": "2.2 DCI AT AWD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188091, + "fields": { + "id_car_serie": 9533, + "name": "1.8 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188092, + "fields": { + "id_car_serie": 9533, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188093, + "fields": { + "id_car_serie": 9533, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188094, + "fields": { + "id_car_serie": 9533, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188095, + "fields": { + "id_car_serie": 9533, + "name": "2.2 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188096, + "fields": { + "id_car_serie": 9533, + "name": "2.8 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188097, + "fields": { + "id_car_serie": 9532, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188098, + "fields": { + "id_car_serie": 9532, + "name": "2.0 Twin-turbo MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188099, + "fields": { + "id_car_serie": 9532, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188100, + "fields": { + "id_car_serie": 9531, + "name": "1.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188101, + "fields": { + "id_car_serie": 9531, + "name": "2.4 D MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188102, + "fields": { + "id_car_serie": 2212, + "name": "618 MT i/Si (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188103, + "fields": { + "id_car_serie": 2212, + "name": "620 MT SDi (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188104, + "fields": { + "id_car_serie": 2212, + "name": "620 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188105, + "fields": { + "id_car_serie": 2212, + "name": "620 MT Si (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188106, + "fields": { + "id_car_serie": 2212, + "name": "620 MT Ti (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188107, + "fields": { + "id_car_serie": 2212, + "name": "623 MT Si (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188108, + "fields": { + "id_car_serie": 9526, + "name": "3.3 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188109, + "fields": { + "id_car_serie": 9524, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188110, + "fields": { + "id_car_serie": 9524, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188111, + "fields": { + "id_car_serie": 9523, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188112, + "fields": { + "id_car_serie": 9523, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188113, + "fields": { + "id_car_serie": 9523, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188114, + "fields": { + "id_car_serie": 9523, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188115, + "fields": { + "id_car_serie": 9522, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188116, + "fields": { + "id_car_serie": 9522, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188117, + "fields": { + "id_car_serie": 9522, + "name": "1.8 sVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188118, + "fields": { + "id_car_serie": 2225, + "name": "2.0T MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188119, + "fields": { + "id_car_serie": 9513, + "name": "1.8 4AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188120, + "fields": { + "id_car_serie": 9513, + "name": "2.2 TD MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188121, + "fields": { + "id_car_serie": 9513, + "name": "2.2 dCi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188125, + "fields": { + "id_car_serie": 9507, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188126, + "fields": { + "id_car_serie": 9507, + "name": "1.7 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188127, + "fields": { + "id_car_serie": 9505, + "name": "1.6 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188128, + "fields": { + "id_car_serie": 9505, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188133, + "fields": { + "id_car_serie": 9502, + "name": "1.6 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188134, + "fields": { + "id_car_serie": 9501, + "name": "2.0 GTI MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188137, + "fields": { + "id_car_serie": 9500, + "name": "1.5 T AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188139, + "fields": { + "id_car_serie": 9500, + "name": "1.5 T MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188145, + "fields": { + "id_car_serie": 9491, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188146, + "fields": { + "id_car_serie": 9490, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188147, + "fields": { + "id_car_serie": 9490, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188148, + "fields": { + "id_car_serie": 9490, + "name": "2.0 Turbo MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188149, + "fields": { + "id_car_serie": 9490, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188150, + "fields": { + "id_car_serie": 9488, + "name": "2.0 Turbo AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188151, + "fields": { + "id_car_serie": 9488, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188152, + "fields": { + "id_car_serie": 9488, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188153, + "fields": { + "id_car_serie": 9488, + "name": "2.0 Turbo MT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188154, + "fields": { + "id_car_serie": 9488, + "name": "2.5 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188155, + "fields": { + "id_car_serie": 9485, + "name": "2.6 V-spec MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188156, + "fields": { + "id_car_serie": 9478, + "name": "2.0 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188157, + "fields": { + "id_car_serie": 9478, + "name": "2.0 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188158, + "fields": { + "id_car_serie": 9478, + "name": "2.4 MT RS (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188159, + "fields": { + "id_car_serie": 9477, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188160, + "fields": { + "id_car_serie": 9477, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188161, + "fields": { + "id_car_serie": 9476, + "name": "2.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188162, + "fields": { + "id_car_serie": 9476, + "name": "2.4 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188163, + "fields": { + "id_car_serie": 9476, + "name": "2.4 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188164, + "fields": { + "id_car_serie": 9476, + "name": "2.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188165, + "fields": { + "id_car_serie": 9475, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188166, + "fields": { + "id_car_serie": 9475, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188167, + "fields": { + "id_car_serie": 9469, + "name": "1.8 5AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188168, + "fields": { + "id_car_serie": 9469, + "name": "1.8 4AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188169, + "fields": { + "id_car_serie": 2303, + "name": "1.9 TDI DPF MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188170, + "fields": { + "id_car_serie": 9467, + "name": "2.0 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188171, + "fields": { + "id_car_serie": 9467, + "name": "2.0 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188172, + "fields": { + "id_car_serie": 9467, + "name": "2.5 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188173, + "fields": { + "id_car_serie": 9467, + "name": "2.5 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188174, + "fields": { + "id_car_serie": 9467, + "name": "2.5 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188175, + "fields": { + "id_car_serie": 9457, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188176, + "fields": { + "id_car_serie": 9457, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188177, + "fields": { + "id_car_serie": 9457, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188178, + "fields": { + "id_car_serie": 9452, + "name": "1.8 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188179, + "fields": { + "id_car_serie": 9444, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188180, + "fields": { + "id_car_serie": 9444, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188181, + "fields": { + "id_car_serie": 9438, + "name": "2.0 Flexpower AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188182, + "fields": { + "id_car_serie": 9438, + "name": "2.0 Flexpower AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188183, + "fields": { + "id_car_serie": 9434, + "name": "2.0 Flexpower AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188184, + "fields": { + "id_car_serie": 9434, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188185, + "fields": { + "id_car_serie": 9434, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188186, + "fields": { + "id_car_serie": 9432, + "name": "3.5 Hydra-Matic AWD LWB (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188187, + "fields": { + "id_car_serie": 9432, + "name": "3.5 Hydra-Matic AWD LWB (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188188, + "fields": { + "id_car_serie": 9432, + "name": "3.5 Hydra-Matic LWB (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188189, + "fields": { + "id_car_serie": 9432, + "name": "3.5 Hydra-Matic LWB (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188190, + "fields": { + "id_car_serie": 9432, + "name": "3.9 Flex-Fuel Hydra-Matic SWB (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188191, + "fields": { + "id_car_serie": 9432, + "name": "3.9 Flex-Fuel Hydra-Matic LWB (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188192, + "fields": { + "id_car_serie": 9432, + "name": "3.9 Hydra-Matic SWB (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188193, + "fields": { + "id_car_serie": 9432, + "name": "3.9 Hydra-Matic LWB (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188194, + "fields": { + "id_car_serie": 9431, + "name": "2.3 TD MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188195, + "fields": { + "id_car_serie": 9429, + "name": "31604 2.1 D 5MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188196, + "fields": { + "id_car_serie": 9429, + "name": "31604 2.1 D 4MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188197, + "fields": { + "id_car_serie": 9429, + "name": "3160 2.4 4MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188198, + "fields": { + "id_car_serie": 9429, + "name": "3160 2.4 5MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188199, + "fields": { + "id_car_serie": 9429, + "name": "31605 2.5 D 4MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188200, + "fields": { + "id_car_serie": 9429, + "name": "31602 2.7 5MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188201, + "fields": { + "id_car_serie": 9429, + "name": "31601 2.9 5MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188202, + "fields": { + "id_car_serie": 9429, + "name": "31601 2.9 4MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188203, + "fields": { + "id_car_serie": 10753, + "name": "11113 MT (SeAZ) (33 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188204, + "fields": { + "id_car_serie": 10753, + "name": "11116 MT (SeAZ) (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188205, + "fields": { + "id_car_serie": 10753, + "name": "11301 MT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188206, + "fields": { + "id_car_serie": 9413, + "name": "1.7 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188207, + "fields": { + "id_car_serie": 9413, + "name": "2.0 MT AWD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188208, + "fields": { + "id_car_serie": 2396, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188209, + "fields": { + "id_car_serie": 2396, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188210, + "fields": { + "id_car_serie": 2397, + "name": "3.6i AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188211, + "fields": { + "id_car_serie": 10753, + "name": "11113 MT (KamAZ) (33 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188212, + "fields": { + "id_car_serie": 10753, + "name": "1111 MT (KamAZ) (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188213, + "fields": { + "id_car_serie": 2424, + "name": "1.6 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188214, + "fields": { + "id_car_serie": 2424, + "name": "1.6 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188215, + "fields": { + "id_car_serie": 2424, + "name": "1.6 S MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188216, + "fields": { + "id_car_serie": 2424, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188217, + "fields": { + "id_car_serie": 9388, + "name": "1.8 MT Oda (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188218, + "fields": { + "id_car_serie": 9384, + "name": "1.3i MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188220, + "fields": { + "id_car_serie": 9364, + "name": "1.6 MT 16 valves (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188221, + "fields": { + "id_car_serie": 9364, + "name": "1.6 MT 16 valves (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188222, + "fields": { + "id_car_serie": 2475, + "name": "1.3 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188223, + "fields": { + "id_car_serie": 2475, + "name": "1.3 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188224, + "fields": { + "id_car_serie": 2475, + "name": "1.3 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188225, + "fields": { + "id_car_serie": 2475, + "name": "1.3 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188226, + "fields": { + "id_car_serie": 2480, + "name": "2.5G MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188227, + "fields": { + "id_car_serie": 2480, + "name": "2.7 MT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188228, + "fields": { + "id_car_serie": 2480, + "name": "2.7 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188229, + "fields": { + "id_car_serie": 2483, + "name": "2.7 AT 7seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188230, + "fields": { + "id_car_serie": 2490, + "name": "2.0 AT 7seat (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188231, + "fields": { + "id_car_serie": 2490, + "name": "2.0 MT 7seat (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188232, + "fields": { + "id_car_serie": 2490, + "name": "2.0 MT 8seat (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188233, + "fields": { + "id_car_serie": 2490, + "name": "2.0 MT 8seat (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188234, + "fields": { + "id_car_serie": 2490, + "name": "2.5 D-4D MT 8seat (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188235, + "fields": { + "id_car_serie": 2490, + "name": "2.7 AT 8seat (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188236, + "fields": { + "id_car_serie": 2492, + "name": "1.33 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188237, + "fields": { + "id_car_serie": 2492, + "name": "1.33 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188238, + "fields": { + "id_car_serie": 9329, + "name": "1.4 FSI MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188239, + "fields": { + "id_car_serie": 9329, + "name": "1.9 TDI MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188240, + "fields": { + "id_car_serie": 9329, + "name": "1.9 SDI MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188241, + "fields": { + "id_car_serie": 9329, + "name": "1.9 TDI MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188242, + "fields": { + "id_car_serie": 9327, + "name": "1.6 16V GTI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188243, + "fields": { + "id_car_serie": 9324, + "name": "0.9 L MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188244, + "fields": { + "id_car_serie": 9324, + "name": "1.1 L MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188245, + "fields": { + "id_car_serie": 9324, + "name": "1.3 L MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188246, + "fields": { + "id_car_serie": 9321, + "name": "1.0 AT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188247, + "fields": { + "id_car_serie": 9321, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188248, + "fields": { + "id_car_serie": 9321, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188249, + "fields": { + "id_car_serie": 9321, + "name": "1.4 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188250, + "fields": { + "id_car_serie": 9321, + "name": "1.4 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188251, + "fields": { + "id_car_serie": 9321, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188252, + "fields": { + "id_car_serie": 9321, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188253, + "fields": { + "id_car_serie": 9321, + "name": "1.9 D AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188254, + "fields": { + "id_car_serie": 9319, + "name": "3.0 TDI L 4Motion MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188255, + "fields": { + "id_car_serie": 9319, + "name": "3.0 TD 4Motion MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188256, + "fields": { + "id_car_serie": 9319, + "name": "3.0 TD 4Motion MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188257, + "fields": { + "id_car_serie": 9319, + "name": "3.6 4Motion AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188258, + "fields": { + "id_car_serie": 9317, + "name": "1.8 AT CIS (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188259, + "fields": { + "id_car_serie": 9317, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188260, + "fields": { + "id_car_serie": 9317, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188261, + "fields": { + "id_car_serie": 9311, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188262, + "fields": { + "id_car_serie": 9311, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188263, + "fields": { + "id_car_serie": 9311, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188264, + "fields": { + "id_car_serie": 9311, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188265, + "fields": { + "id_car_serie": 9311, + "name": "1.9 TDI AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188266, + "fields": { + "id_car_serie": 9311, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188267, + "fields": { + "id_car_serie": 9311, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188268, + "fields": { + "id_car_serie": 9311, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188269, + "fields": { + "id_car_serie": 9311, + "name": "1.9 TDI 4Motion MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188270, + "fields": { + "id_car_serie": 9311, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188271, + "fields": { + "id_car_serie": 9311, + "name": "1.9 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188272, + "fields": { + "id_car_serie": 9311, + "name": "1.9 TDI Syncro MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188273, + "fields": { + "id_car_serie": 9311, + "name": "2.0 4motion MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188274, + "fields": { + "id_car_serie": 9311, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188275, + "fields": { + "id_car_serie": 9311, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188276, + "fields": { + "id_car_serie": 9311, + "name": "2.3 Syncro MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188277, + "fields": { + "id_car_serie": 9311, + "name": "2.5 TDI 4Motion AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188278, + "fields": { + "id_car_serie": 9311, + "name": "2.5 TDI AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188279, + "fields": { + "id_car_serie": 9311, + "name": "2.5 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188280, + "fields": { + "id_car_serie": 9311, + "name": "2.5 TDI 4Motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188281, + "fields": { + "id_car_serie": 9311, + "name": "2.8 Syncro AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188282, + "fields": { + "id_car_serie": 9311, + "name": "2.8 Syncro MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188283, + "fields": { + "id_car_serie": 9310, + "name": "1.6 D AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188284, + "fields": { + "id_car_serie": 9310, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188285, + "fields": { + "id_car_serie": 9310, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188286, + "fields": { + "id_car_serie": 9310, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188287, + "fields": { + "id_car_serie": 9310, + "name": "1.8 MT AWD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188288, + "fields": { + "id_car_serie": 9310, + "name": "1.9 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188289, + "fields": { + "id_car_serie": 9310, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188290, + "fields": { + "id_car_serie": 9310, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188291, + "fields": { + "id_car_serie": 9310, + "name": "2.0 MT AWD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188292, + "fields": { + "id_car_serie": 9310, + "name": "2.2 MT AWD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188293, + "fields": { + "id_car_serie": 9310, + "name": "2.2 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188294, + "fields": { + "id_car_serie": 9310, + "name": "2.2 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188295, + "fields": { + "id_car_serie": 9309, + "name": "1.4 TSI BlueMotion MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188296, + "fields": { + "id_car_serie": 9309, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188297, + "fields": { + "id_car_serie": 9309, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188298, + "fields": { + "id_car_serie": 9309, + "name": "1.4 TSI BlueMotion DSG (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188299, + "fields": { + "id_car_serie": 9309, + "name": "1.6 TDI BlueMotion MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188300, + "fields": { + "id_car_serie": 9309, + "name": "1.6 FSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188301, + "fields": { + "id_car_serie": 9309, + "name": "1.8 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188302, + "fields": { + "id_car_serie": 9309, + "name": "1.8 TSI DSG (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188303, + "fields": { + "id_car_serie": 9309, + "name": "2.0 TSI AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188304, + "fields": { + "id_car_serie": 9309, + "name": "2.0 BlueTDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188305, + "fields": { + "id_car_serie": 9309, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188306, + "fields": { + "id_car_serie": 9309, + "name": "2.0 FSI 4Motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188307, + "fields": { + "id_car_serie": 9309, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188308, + "fields": { + "id_car_serie": 9309, + "name": "2.0 FSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188309, + "fields": { + "id_car_serie": 9309, + "name": "2.0 TSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188310, + "fields": { + "id_car_serie": 9309, + "name": "2.0 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188311, + "fields": { + "id_car_serie": 9309, + "name": "2.0 TDI 4Motion MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188312, + "fields": { + "id_car_serie": 9309, + "name": "2.0 TDI 4Motion DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188313, + "fields": { + "id_car_serie": 9309, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188314, + "fields": { + "id_car_serie": 9309, + "name": "2.0 TSI DSG (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188315, + "fields": { + "id_car_serie": 9309, + "name": "2.0 BlueTDI DSG (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188316, + "fields": { + "id_car_serie": 9309, + "name": "2.0 TDI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188317, + "fields": { + "id_car_serie": 9309, + "name": "3.2 FSI 4Motion DSG (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188318, + "fields": { + "id_car_serie": 9308, + "name": "1.9 TDI Syncro MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188319, + "fields": { + "id_car_serie": 9307, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188320, + "fields": { + "id_car_serie": 9307, + "name": "2.0 TSI DSG (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188321, + "fields": { + "id_car_serie": 9302, + "name": "2.0i AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188322, + "fields": { + "id_car_serie": 9302, + "name": "2.0i MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188323, + "fields": { + "id_car_serie": 9299, + "name": "1.4 TSI BlueMotion MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188324, + "fields": { + "id_car_serie": 9299, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188325, + "fields": { + "id_car_serie": 9299, + "name": "1.4 TSI Euro5 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188326, + "fields": { + "id_car_serie": 9299, + "name": "2.0 TFSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188327, + "fields": { + "id_car_serie": 9299, + "name": "2.0 TSI DSG (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188328, + "fields": { + "id_car_serie": 9299, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188329, + "fields": { + "id_car_serie": 9299, + "name": "2.0 TFSI DSG (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188330, + "fields": { + "id_car_serie": 9299, + "name": "2.0 TSI DSG (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188331, + "fields": { + "id_car_serie": 9299, + "name": "2.0 TDI Euro5 DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188332, + "fields": { + "id_car_serie": 2591, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188333, + "fields": { + "id_car_serie": 2591, + "name": "1.6 i-Motion (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188334, + "fields": { + "id_car_serie": 2591, + "name": "1.6 i-Motion (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188335, + "fields": { + "id_car_serie": 2596, + "name": "1.4 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188336, + "fields": { + "id_car_serie": 9251, + "name": "2.7 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188337, + "fields": { + "id_car_serie": 9251, + "name": "2.7 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188338, + "fields": { + "id_car_serie": 9251, + "name": "2.7 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188339, + "fields": { + "id_car_serie": 9251, + "name": "3.0 TD AT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188340, + "fields": { + "id_car_serie": 9251, + "name": "3.0 TD AT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188341, + "fields": { + "id_car_serie": 9251, + "name": "3.0 TD AT AWD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188342, + "fields": { + "id_car_serie": 9251, + "name": "3.0 TD MT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188343, + "fields": { + "id_car_serie": 9251, + "name": "3.0 TD MT AWD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188344, + "fields": { + "id_car_serie": 9251, + "name": "3.4 AT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188345, + "fields": { + "id_car_serie": 9248, + "name": "3.4 AT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188346, + "fields": { + "id_car_serie": 9246, + "name": "3.3 AT 4WD 7seat (209 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188347, + "fields": { + "id_car_serie": 9246, + "name": "3.3 AT 4WD 5seat (209 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188348, + "fields": { + "id_car_serie": 2637, + "name": "1.7T MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188349, + "fields": { + "id_car_serie": 9239, + "name": "4.3 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188350, + "fields": { + "id_car_serie": 9239, + "name": "4.3 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188351, + "fields": { + "id_car_serie": 9234, + "name": "2.8 AT Overdrive (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188352, + "fields": { + "id_car_serie": 9234, + "name": "2.8 AT Overdrive (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188353, + "fields": { + "id_car_serie": 9233, + "name": "2.6 AT Overdrive (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188354, + "fields": { + "id_car_serie": 9232, + "name": "1.8 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188355, + "fields": { + "id_car_serie": 9232, + "name": "2.0 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188356, + "fields": { + "id_car_serie": 9231, + "name": "1.8 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188357, + "fields": { + "id_car_serie": 2657, + "name": "2.3 T AT T-5 (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188358, + "fields": { + "id_car_serie": 2657, + "name": "2.3 T AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188359, + "fields": { + "id_car_serie": 2657, + "name": "2.3 T AT T-5 (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188360, + "fields": { + "id_car_serie": 2657, + "name": "2.5 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188362, + "fields": { + "id_car_serie": 2657, + "name": "2.5 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188364, + "fields": { + "id_car_serie": 2661, + "name": "2.0 Powershift DSG (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188365, + "fields": { + "id_car_serie": 9225, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188366, + "fields": { + "id_car_serie": 9225, + "name": "1.5 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188367, + "fields": { + "id_car_serie": 9225, + "name": "1.5 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188368, + "fields": { + "id_car_serie": 9225, + "name": "1.9 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188369, + "fields": { + "id_car_serie": 9225, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188370, + "fields": { + "id_car_serie": 9220, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188371, + "fields": { + "id_car_serie": 9220, + "name": "1.0 MT (27 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188372, + "fields": { + "id_car_serie": 2684, + "name": "1.3i MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188373, + "fields": { + "id_car_serie": 2684, + "name": "1.4i MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188374, + "fields": { + "id_car_serie": 2684, + "name": "1.6i MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188375, + "fields": { + "id_car_serie": 2701, + "name": "21013 (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188376, + "fields": { + "id_car_serie": 2701, + "name": "2101 (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188377, + "fields": { + "id_car_serie": 2701, + "name": "21016 (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188378, + "fields": { + "id_car_serie": 2701, + "name": "21011 (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188379, + "fields": { + "id_car_serie": 9206, + "name": "3.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188380, + "fields": { + "id_car_serie": 2712, + "name": "2110 RPD MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188381, + "fields": { + "id_car_serie": 9205, + "name": "3.0 AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188382, + "fields": { + "id_car_serie": 9201, + "name": "1.5 AT 2WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188383, + "fields": { + "id_car_serie": 9200, + "name": "1.0 MMT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188384, + "fields": { + "id_car_serie": 9199, + "name": "1.0 MMT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188385, + "fields": { + "id_car_serie": 9197, + "name": "3.5 AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188386, + "fields": { + "id_car_serie": 9193, + "name": "4.0 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188387, + "fields": { + "id_car_serie": 9183, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188388, + "fields": { + "id_car_serie": 9176, + "name": "0.7 3AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188389, + "fields": { + "id_car_serie": 9176, + "name": "0.7 turbo AT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188390, + "fields": { + "id_car_serie": 9176, + "name": "1.0 turbo AT AWD Wide (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188391, + "fields": { + "id_car_serie": 9176, + "name": "1.0 AT Wide (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188392, + "fields": { + "id_car_serie": 9176, + "name": "1.0 turbo AT Wide (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188393, + "fields": { + "id_car_serie": 9176, + "name": "1.0 AT AWD Wide (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188394, + "fields": { + "id_car_serie": 9176, + "name": "1.0 MT Wide (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188395, + "fields": { + "id_car_serie": 9176, + "name": "1.0 turbo MT AWD Wide (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188396, + "fields": { + "id_car_serie": 9176, + "name": "1.0 MT AWD Wide (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188397, + "fields": { + "id_car_serie": 9176, + "name": "1.0 turbo MT Wide (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188398, + "fields": { + "id_car_serie": 9168, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188399, + "fields": { + "id_car_serie": 53475, + "name": "3.2 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188401, + "fields": { + "id_car_serie": 3647, + "name": "4.7 AMT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188402, + "fields": { + "id_car_serie": 2855, + "name": "1.75 TBi MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188403, + "fields": { + "id_car_serie": 2855, + "name": "1.9 JTDM MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188404, + "fields": { + "id_car_serie": 2856, + "name": "1.75 TBi MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188405, + "fields": { + "id_car_serie": 2870, + "name": "1.4 MT 4WD (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188406, + "fields": { + "id_car_serie": 2870, + "name": "1.6 MT 4WD (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188407, + "fields": { + "id_car_serie": 2870, + "name": "1.6 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188408, + "fields": { + "id_car_serie": 2870, + "name": "1.9 D 4WD MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188409, + "fields": { + "id_car_serie": 3664, + "name": "1.9 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188410, + "fields": { + "id_car_serie": 3668, + "name": "2.5 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188411, + "fields": { + "id_car_serie": 3668, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188412, + "fields": { + "id_car_serie": 2877, + "name": "4.0 MT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188413, + "fields": { + "id_car_serie": 2877, + "name": "4.0 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188414, + "fields": { + "id_car_serie": 2878, + "name": "6.0 V12 AT (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188415, + "fields": { + "id_car_serie": 2878, + "name": "6.0 V12 MT (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188417, + "fields": { + "id_car_serie": 2897, + "name": "1.9 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188419, + "fields": { + "id_car_serie": 2908, + "name": "2.0 TDI multitronic (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188420, + "fields": { + "id_car_serie": 2912, + "name": "3.0 TDI Euro 6 S-tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188421, + "fields": { + "id_car_serie": 2912, + "name": "3.0 TDI S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188422, + "fields": { + "id_car_serie": 2913, + "name": "3.0 TDI S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188423, + "fields": { + "id_car_serie": 2914, + "name": "3.0 TFSI L tiptronic quattro (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188424, + "fields": { + "id_car_serie": 2914, + "name": "3.0 TDI L tiptronic quattro (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188425, + "fields": { + "id_car_serie": 2914, + "name": "3.0 TDI tiptronic quattro (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188426, + "fields": { + "id_car_serie": 2914, + "name": "4.0 TFSI L tiptronic quattro (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188427, + "fields": { + "id_car_serie": 2914, + "name": "4.2 TDI L tiptronic quattro (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188428, + "fields": { + "id_car_serie": 2914, + "name": "4.2 TDI tiptronic quattro (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188429, + "fields": { + "id_car_serie": 2914, + "name": "6.3 FSI L tiptronic quattro (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188431, + "fields": { + "id_car_serie": 3680, + "name": "3.7 AT AWD (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188432, + "fields": { + "id_car_serie": 2915, + "name": "2.6 V6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188433, + "fields": { + "id_car_serie": 2915, + "name": "2.6 V6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188434, + "fields": { + "id_car_serie": 2915, + "name": "2.6 V6 quattro MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188435, + "fields": { + "id_car_serie": 2915, + "name": "2.8 E AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188436, + "fields": { + "id_car_serie": 2915, + "name": "2.8 E MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188437, + "fields": { + "id_car_serie": 2915, + "name": "2.8 E quattro MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188438, + "fields": { + "id_car_serie": 2926, + "name": "2.2i Turbo 4WD MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188439, + "fields": { + "id_car_serie": 2926, + "name": "2.2i Turbo 4WD MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188440, + "fields": { + "id_car_serie": 2931, + "name": "3.0 TFSI MT quattro (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188441, + "fields": { + "id_car_serie": 2931, + "name": "3.0 TFSI S tronic quattro (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188442, + "fields": { + "id_car_serie": 2939, + "name": "2.0 TFSI S tronic (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188443, + "fields": { + "id_car_serie": 2939, + "name": "2.0 TFSI S tronic quattro (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188444, + "fields": { + "id_car_serie": 2944, + "name": "1.6 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188445, + "fields": { + "id_car_serie": 2947, + "name": "6.75 Twin-Turbo AT (457 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188446, + "fields": { + "id_car_serie": 2948, + "name": "6.75 Twin-Turbo AT (456 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188447, + "fields": { + "id_car_serie": 2949, + "name": "6.75 AT (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188448, + "fields": { + "id_car_serie": 2949, + "name": "6.75i AT Biturbo (537 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188449, + "fields": { + "id_car_serie": 47548, + "name": "6.8i AT (389 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188450, + "fields": { + "id_car_serie": 47548, + "name": "6.75 AT Mulliner (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188451, + "fields": { + "id_car_serie": 47547, + "name": "6.75 AT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188452, + "fields": { + "id_car_serie": 2954, + "name": "6.75 AT (512 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188453, + "fields": { + "id_car_serie": 2972, + "name": "sDrive18i AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188454, + "fields": { + "id_car_serie": 2972, + "name": "xDrive20i AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188455, + "fields": { + "id_car_serie": 2972, + "name": "xDrive20d AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188456, + "fields": { + "id_car_serie": 2972, + "name": "xDrive25d AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188457, + "fields": { + "id_car_serie": 2972, + "name": "sDrive20i AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188458, + "fields": { + "id_car_serie": 2972, + "name": "xDrive28i AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188459, + "fields": { + "id_car_serie": 2972, + "name": "sDrive20d AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188460, + "fields": { + "id_car_serie": 2972, + "name": "xDrive18d AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188461, + "fields": { + "id_car_serie": 2972, + "name": "xDrive28i AT US (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188462, + "fields": { + "id_car_serie": 2972, + "name": "sDrive18d AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188463, + "fields": { + "id_car_serie": 2972, + "name": "sDrive28i AT US (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188464, + "fields": { + "id_car_serie": 2972, + "name": "sDrive16d AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188465, + "fields": { + "id_car_serie": 2972, + "name": "xDrive20d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188466, + "fields": { + "id_car_serie": 2972, + "name": "xDrive25d MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188467, + "fields": { + "id_car_serie": 2972, + "name": "sDrive18i MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188468, + "fields": { + "id_car_serie": 2972, + "name": "xDrive18d MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188469, + "fields": { + "id_car_serie": 2972, + "name": "xDrive28i MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188470, + "fields": { + "id_car_serie": 2972, + "name": "sDrive20d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188471, + "fields": { + "id_car_serie": 2972, + "name": "sDrive20d EfficientDynamics Edition MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188472, + "fields": { + "id_car_serie": 2972, + "name": "sDrive18d MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188473, + "fields": { + "id_car_serie": 2972, + "name": "sDrive16d MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188474, + "fields": { + "id_car_serie": 2972, + "name": "sDrive20i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188475, + "fields": { + "id_car_serie": 2972, + "name": "xDrive20i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188476, + "fields": { + "id_car_serie": 2972, + "name": "xDrive35i AT US (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188477, + "fields": { + "id_car_serie": 2973, + "name": "xDrive20i AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188478, + "fields": { + "id_car_serie": 2973, + "name": "xDrive20d AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188479, + "fields": { + "id_car_serie": 2973, + "name": "xDrive28i AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188480, + "fields": { + "id_car_serie": 2973, + "name": "sDrive18d AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188481, + "fields": { + "id_car_serie": 2973, + "name": "sDrive20i AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188482, + "fields": { + "id_car_serie": 2973, + "name": "xDrive20i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188483, + "fields": { + "id_car_serie": 2973, + "name": "xDrive20d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188484, + "fields": { + "id_car_serie": 2973, + "name": "sDrive18d MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188485, + "fields": { + "id_car_serie": 2973, + "name": "xDrive30d AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188486, + "fields": { + "id_car_serie": 2973, + "name": "xDrive35i AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188487, + "fields": { + "id_car_serie": 2973, + "name": "xDrive35d AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188488, + "fields": { + "id_car_serie": 2974, + "name": "sDrive25d Steptronic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188489, + "fields": { + "id_car_serie": 2974, + "name": "xDrive25d Steptronic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188490, + "fields": { + "id_car_serie": 2974, + "name": "xDrive35i Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188491, + "fields": { + "id_car_serie": 2974, + "name": "xDrive30d Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188492, + "fields": { + "id_car_serie": 2974, + "name": "xDrive40d Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188493, + "fields": { + "id_car_serie": 2974, + "name": "xDriveM50d Steptronic (381 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188496, + "fields": { + "id_car_serie": 2974, + "name": "xDrive30d Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188497, + "fields": { + "id_car_serie": 2974, + "name": "xDrive50i Steptronic (450 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188499, + "fields": { + "id_car_serie": 2975, + "name": "40d xDrive AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188500, + "fields": { + "id_car_serie": 2975, + "name": "M50d xDrive AT (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188501, + "fields": { + "id_car_serie": 2975, + "name": "30d xDrive AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188502, + "fields": { + "id_car_serie": 2975, + "name": "35i xDrive AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188503, + "fields": { + "id_car_serie": 2975, + "name": "50i xDrive AT (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188504, + "fields": { + "id_car_serie": 2976, + "name": "2.8 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188505, + "fields": { + "id_car_serie": 2976, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188506, + "fields": { + "id_car_serie": 2977, + "name": "2.2i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188507, + "fields": { + "id_car_serie": 2977, + "name": "2.3 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188508, + "fields": { + "id_car_serie": 2977, + "name": "2.3 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188509, + "fields": { + "id_car_serie": 2977, + "name": "2.8 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188510, + "fields": { + "id_car_serie": 2977, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188511, + "fields": { + "id_car_serie": 2977, + "name": "3.0i AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188512, + "fields": { + "id_car_serie": 2977, + "name": "3.0i MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188513, + "fields": { + "id_car_serie": 2978, + "name": "sDrive28i AT (245 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188515, + "fields": { + "id_car_serie": 2978, + "name": "sDrive18i AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188517, + "fields": { + "id_car_serie": 2978, + "name": "sDrive20i MT (184 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188518, + "fields": { + "id_car_serie": 2978, + "name": "sDrive28i MT (245 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188521, + "fields": { + "id_car_serie": 2978, + "name": "sDrive18i MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188522, + "fields": { + "id_car_serie": 2978, + "name": "sDrive23i AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188523, + "fields": { + "id_car_serie": 2978, + "name": "sDrive23i MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188524, + "fields": { + "id_car_serie": 2978, + "name": "sDrive30i AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188525, + "fields": { + "id_car_serie": 2978, + "name": "sDrive35i MT (306 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188526, + "fields": { + "id_car_serie": 2978, + "name": "sDrive30i MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188527, + "fields": { + "id_car_serie": 2978, + "name": "sDrive35i DKG (306 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188528, + "fields": { + "id_car_serie": 2978, + "name": "sDrive35is DKG (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188529, + "fields": { + "id_car_serie": 2988, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188530, + "fields": { + "id_car_serie": 2995, + "name": "1.8 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188531, + "fields": { + "id_car_serie": 3003, + "name": "2.5 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188532, + "fields": { + "id_car_serie": 3003, + "name": "3.0 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188533, + "fields": { + "id_car_serie": 3007, + "name": "2.3 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188534, + "fields": { + "id_car_serie": 3007, + "name": "3.1 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188535, + "fields": { + "id_car_serie": 3007, + "name": "3.1 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188536, + "fields": { + "id_car_serie": 3007, + "name": "3.1 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188537, + "fields": { + "id_car_serie": 3008, + "name": "3.1 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188538, + "fields": { + "id_car_serie": 3008, + "name": "3.1 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188539, + "fields": { + "id_car_serie": 3016, + "name": "4.6i AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188540, + "fields": { + "id_car_serie": 3016, + "name": "4.6i AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188541, + "fields": { + "id_car_serie": 3020, + "name": "4.6i AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188542, + "fields": { + "id_car_serie": 3028, + "name": "2.0 Flexpower AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188543, + "fields": { + "id_car_serie": 3028, + "name": "2.0 Flexpower AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188544, + "fields": { + "id_car_serie": 3028, + "name": "2.0 Flexpower AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188545, + "fields": { + "id_car_serie": 3028, + "name": "2.0 Flexpower AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188546, + "fields": { + "id_car_serie": 3028, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188547, + "fields": { + "id_car_serie": 3028, + "name": "2.0 Flexpower MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188548, + "fields": { + "id_car_serie": 3028, + "name": "2.0 Flexpower MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188549, + "fields": { + "id_car_serie": 3029, + "name": "2.0 Flexpower AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188550, + "fields": { + "id_car_serie": 3029, + "name": "2.0 Flexpower AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188551, + "fields": { + "id_car_serie": 3029, + "name": "2.0 Flexpower AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188552, + "fields": { + "id_car_serie": 3029, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188553, + "fields": { + "id_car_serie": 3029, + "name": "2.0 Flexpower AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188554, + "fields": { + "id_car_serie": 3029, + "name": "2.0 Flexpower MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188555, + "fields": { + "id_car_serie": 3029, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188556, + "fields": { + "id_car_serie": 3029, + "name": "2.4 GSi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188557, + "fields": { + "id_car_serie": 3030, + "name": "5.3 FlexFuel 4AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188558, + "fields": { + "id_car_serie": 3030, + "name": "5.3 FlexFuel 6AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188559, + "fields": { + "id_car_serie": 3030, + "name": "6.0 4AT 4WD (366 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188560, + "fields": { + "id_car_serie": 3030, + "name": "6.0 4AT (366 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188561, + "fields": { + "id_car_serie": 3037, + "name": "3.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188562, + "fields": { + "id_car_serie": 3037, + "name": "3.4 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188563, + "fields": { + "id_car_serie": 3037, + "name": "3.8 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188564, + "fields": { + "id_car_serie": 3037, + "name": "3.8 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188565, + "fields": { + "id_car_serie": 3037, + "name": "5.7 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188566, + "fields": { + "id_car_serie": 3037, + "name": "5.7 AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188567, + "fields": { + "id_car_serie": 3037, + "name": "5.7 MT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188568, + "fields": { + "id_car_serie": 3037, + "name": "5.7 MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188569, + "fields": { + "id_car_serie": 3039, + "name": "2.2 D AT AWD (7 places) (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188570, + "fields": { + "id_car_serie": 3039, + "name": "2.2 D AT AWD (5 places) (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188571, + "fields": { + "id_car_serie": 3039, + "name": "2.2 D MT AWD (7 places) (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188572, + "fields": { + "id_car_serie": 3039, + "name": "2.2 D MT AWD (5 places) (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188573, + "fields": { + "id_car_serie": 3039, + "name": "2.2 D MT AWD (7 places) (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188574, + "fields": { + "id_car_serie": 3039, + "name": "2.2 D MT AWD (5 places) (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188575, + "fields": { + "id_car_serie": 3039, + "name": "2.2 D MT (7 places) (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188576, + "fields": { + "id_car_serie": 3040, + "name": "2.2 4AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188577, + "fields": { + "id_car_serie": 3040, + "name": "2.2 3AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188578, + "fields": { + "id_car_serie": 3040, + "name": "2.2 4AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188579, + "fields": { + "id_car_serie": 3040, + "name": "2.2 3AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188580, + "fields": { + "id_car_serie": 3040, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188581, + "fields": { + "id_car_serie": 3041, + "name": "2.2 3AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188582, + "fields": { + "id_car_serie": 3041, + "name": "2.2 3AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188583, + "fields": { + "id_car_serie": 3041, + "name": "2.2 4AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188584, + "fields": { + "id_car_serie": 3041, + "name": "2.2 4AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188586, + "fields": { + "id_car_serie": 3041, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188587, + "fields": { + "id_car_serie": 3041, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188589, + "fields": { + "id_car_serie": 3042, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188590, + "fields": { + "id_car_serie": 3044, + "name": "2.9 AT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188591, + "fields": { + "id_car_serie": 3044, + "name": "2.9 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188592, + "fields": { + "id_car_serie": 3044, + "name": "2.9 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188593, + "fields": { + "id_car_serie": 3044, + "name": "2.9 MT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188594, + "fields": { + "id_car_serie": 3045, + "name": "2.9 AT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188595, + "fields": { + "id_car_serie": 3045, + "name": "2.9 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188596, + "fields": { + "id_car_serie": 3045, + "name": "2.9 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188597, + "fields": { + "id_car_serie": 3046, + "name": "2.9 AT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188598, + "fields": { + "id_car_serie": 3046, + "name": "2.9 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188599, + "fields": { + "id_car_serie": 3046, + "name": "2.9 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188600, + "fields": { + "id_car_serie": 3046, + "name": "2.9 MT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188601, + "fields": { + "id_car_serie": 3047, + "name": "1.0 Flexpower MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188602, + "fields": { + "id_car_serie": 3047, + "name": "1.4 Flexpower MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188603, + "fields": { + "id_car_serie": 3047, + "name": "1.4 Flexpower MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188604, + "fields": { + "id_car_serie": 3047, + "name": "1.7 TD MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188605, + "fields": { + "id_car_serie": 3047, + "name": "1.8 Flexpower MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188606, + "fields": { + "id_car_serie": 3047, + "name": "1.8 Flexpower MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188607, + "fields": { + "id_car_serie": 3047, + "name": "1.8 Flexpower MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188608, + "fields": { + "id_car_serie": 3047, + "name": "1.8 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188609, + "fields": { + "id_car_serie": 3047, + "name": "1.8 Flexpower MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188610, + "fields": { + "id_car_serie": 3048, + "name": "1.8 Flexfuel MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188611, + "fields": { + "id_car_serie": 3048, + "name": "1.8 Flexfuel MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188612, + "fields": { + "id_car_serie": 3050, + "name": "1.0 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188613, + "fields": { + "id_car_serie": 3050, + "name": "1.0 Flexpower MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188614, + "fields": { + "id_car_serie": 3050, + "name": "1.4 Flexpower MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188615, + "fields": { + "id_car_serie": 3050, + "name": "1.4 Flexpower MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188616, + "fields": { + "id_car_serie": 3050, + "name": "1.7 TD MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188617, + "fields": { + "id_car_serie": 3050, + "name": "1.8 Flexpower MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188618, + "fields": { + "id_car_serie": 3050, + "name": "1.8 Flexpower MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188619, + "fields": { + "id_car_serie": 3050, + "name": "1.8 Flexpower MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188620, + "fields": { + "id_car_serie": 3050, + "name": "1.8 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188621, + "fields": { + "id_car_serie": 3050, + "name": "1.8 Flexpower MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188622, + "fields": { + "id_car_serie": 3058, + "name": "3.5 AT Flexfuel (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188623, + "fields": { + "id_car_serie": 3059, + "name": "1.2 LPG MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188624, + "fields": { + "id_car_serie": 3059, + "name": "1.4 LPG AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188625, + "fields": { + "id_car_serie": 3059, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188626, + "fields": { + "id_car_serie": 3059, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188627, + "fields": { + "id_car_serie": 3059, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188628, + "fields": { + "id_car_serie": 3060, + "name": "1.2 LPG MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188629, + "fields": { + "id_car_serie": 3060, + "name": "1.4 LPG AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188630, + "fields": { + "id_car_serie": 3060, + "name": "1.4 LPG MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188631, + "fields": { + "id_car_serie": 3060, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188632, + "fields": { + "id_car_serie": 3060, + "name": "1.5 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188633, + "fields": { + "id_car_serie": 3060, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188634, + "fields": { + "id_car_serie": 3064, + "name": "3.1 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188636, + "fields": { + "id_car_serie": 3069, + "name": "1.8 LPG AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188637, + "fields": { + "id_car_serie": 3069, + "name": "1.8 LPG AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188638, + "fields": { + "id_car_serie": 3069, + "name": "1.8 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188639, + "fields": { + "id_car_serie": 3069, + "name": "1.8 LPG MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188640, + "fields": { + "id_car_serie": 3069, + "name": "1.8 LPG MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188641, + "fields": { + "id_car_serie": 3069, + "name": "1.8 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188642, + "fields": { + "id_car_serie": 3070, + "name": "1.6 LPG MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188643, + "fields": { + "id_car_serie": 3070, + "name": "1.6 EcoLogic MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188644, + "fields": { + "id_car_serie": 3070, + "name": "1.8 LPG AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188645, + "fields": { + "id_car_serie": 3070, + "name": "1.8 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188646, + "fields": { + "id_car_serie": 3070, + "name": "1.8 LPG AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188647, + "fields": { + "id_car_serie": 3070, + "name": "1.8 LPG MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188648, + "fields": { + "id_car_serie": 3070, + "name": "1.8 LPG MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188649, + "fields": { + "id_car_serie": 3070, + "name": "1.8 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188650, + "fields": { + "id_car_serie": 3070, + "name": "2.0 TD AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188651, + "fields": { + "id_car_serie": 3070, + "name": "2.0 TD MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188652, + "fields": { + "id_car_serie": 3071, + "name": "3.8 AT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188653, + "fields": { + "id_car_serie": 3071, + "name": "3.8 MT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188654, + "fields": { + "id_car_serie": 3072, + "name": "2.2 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188655, + "fields": { + "id_car_serie": 3072, + "name": "2.2 FlexFuel AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188656, + "fields": { + "id_car_serie": 3072, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188657, + "fields": { + "id_car_serie": 3072, + "name": "2.2 FlexFuel MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188659, + "fields": { + "id_car_serie": 3072, + "name": "4.3 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188660, + "fields": { + "id_car_serie": 3072, + "name": "4.3 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188662, + "fields": { + "id_car_serie": 3072, + "name": "4.3 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188664, + "fields": { + "id_car_serie": 3072, + "name": "4.3 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188666, + "fields": { + "id_car_serie": 3073, + "name": "2.2 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188667, + "fields": { + "id_car_serie": 3073, + "name": "2.2 FlexFuel AT (120 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188668, + "fields": { + "id_car_serie": 3073, + "name": "2.2 AT LWB (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188669, + "fields": { + "id_car_serie": 3073, + "name": "2.2 FlexFuel AT LWB (120 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188670, + "fields": { + "id_car_serie": 3073, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188671, + "fields": { + "id_car_serie": 3073, + "name": "2.2 FlexFuel MT LWB (120 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188672, + "fields": { + "id_car_serie": 3073, + "name": "2.2 FlexFuel MT (120 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188673, + "fields": { + "id_car_serie": 3073, + "name": "2.2 MT LWB (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188675, + "fields": { + "id_car_serie": 3073, + "name": "4.3 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188676, + "fields": { + "id_car_serie": 3073, + "name": "4.3 AT LWB (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188677, + "fields": { + "id_car_serie": 3073, + "name": "4.3 AT LWB (180 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188681, + "fields": { + "id_car_serie": 3073, + "name": "4.3 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188682, + "fields": { + "id_car_serie": 3073, + "name": "4.3 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188683, + "fields": { + "id_car_serie": 3073, + "name": "4.3 AT 4WD LWB (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188684, + "fields": { + "id_car_serie": 3073, + "name": "4.3 MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188685, + "fields": { + "id_car_serie": 3073, + "name": "4.3 MT LWB (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188686, + "fields": { + "id_car_serie": 3073, + "name": "4.3 MT LWB (180 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188689, + "fields": { + "id_car_serie": 3073, + "name": "4.3 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188690, + "fields": { + "id_car_serie": 3073, + "name": "4.3 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188692, + "fields": { + "id_car_serie": 3073, + "name": "4.3 MT 4WD LWB (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188693, + "fields": { + "id_car_serie": 3076, + "name": "1.3 VCDi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188694, + "fields": { + "id_car_serie": 3076, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188695, + "fields": { + "id_car_serie": 3077, + "name": "1.2 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188696, + "fields": { + "id_car_serie": 3078, + "name": "5.7 R10 4AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188697, + "fields": { + "id_car_serie": 3078, + "name": "5.7 R20 3AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188698, + "fields": { + "id_car_serie": 3078, + "name": "5.7 V10 4AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188699, + "fields": { + "id_car_serie": 3078, + "name": "5.7 V20 3AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188700, + "fields": { + "id_car_serie": 3078, + "name": "5.7 V20 4MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188701, + "fields": { + "id_car_serie": 3078, + "name": "5.7 R20 4MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188702, + "fields": { + "id_car_serie": 3078, + "name": "6.2D V20 3AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188703, + "fields": { + "id_car_serie": 3078, + "name": "6.2D R20 3AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188704, + "fields": { + "id_car_serie": 3078, + "name": "6.2D V20 3AT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188705, + "fields": { + "id_car_serie": 3078, + "name": "6.2D R20 3AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188706, + "fields": { + "id_car_serie": 3078, + "name": "7.4 R20 3AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188707, + "fields": { + "id_car_serie": 3080, + "name": "2.0 AT AWD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188708, + "fields": { + "id_car_serie": 3080, + "name": "2.0 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188709, + "fields": { + "id_car_serie": 3080, + "name": "2.0 TD MT AWD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188710, + "fields": { + "id_car_serie": 3080, + "name": "2.0 TD MT AWD (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188711, + "fields": { + "id_car_serie": 3080, + "name": "2.0 MT AWD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188712, + "fields": { + "id_car_serie": 3080, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188713, + "fields": { + "id_car_serie": 3080, + "name": "2.5 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188714, + "fields": { + "id_car_serie": 3080, + "name": "2.5 AT AWD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188715, + "fields": { + "id_car_serie": 3080, + "name": "2.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188716, + "fields": { + "id_car_serie": 3080, + "name": "2.5 AT AWD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188717, + "fields": { + "id_car_serie": 3080, + "name": "2.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188718, + "fields": { + "id_car_serie": 3080, + "name": "2.5 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188719, + "fields": { + "id_car_serie": 3080, + "name": "2.5 MT AWD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188720, + "fields": { + "id_car_serie": 3080, + "name": "2.5 MT AWD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188721, + "fields": { + "id_car_serie": 46125, + "name": "6.1 AT SRT8 (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188722, + "fields": { + "id_car_serie": 3097, + "name": "2.2 CRD MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188723, + "fields": { + "id_car_serie": 3124, + "name": "2.0 RE MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188724, + "fields": { + "id_car_serie": 3124, + "name": "2.2 TRS MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188725, + "fields": { + "id_car_serie": 3784, + "name": "0.5 MT (31 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188726, + "fields": { + "id_car_serie": 3784, + "name": "0.5 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188727, + "fields": { + "id_car_serie": 3131, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188728, + "fields": { + "id_car_serie": 3131, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188729, + "fields": { + "id_car_serie": 3131, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188730, + "fields": { + "id_car_serie": 3131, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188731, + "fields": { + "id_car_serie": 3131, + "name": "1.9 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188732, + "fields": { + "id_car_serie": 3131, + "name": "2.0 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188733, + "fields": { + "id_car_serie": 3131, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188734, + "fields": { + "id_car_serie": 3131, + "name": "2.0 HDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188735, + "fields": { + "id_car_serie": 3131, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188736, + "fields": { + "id_car_serie": 3131, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188737, + "fields": { + "id_car_serie": 3131, + "name": "2.1 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188738, + "fields": { + "id_car_serie": 3131, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188739, + "fields": { + "id_car_serie": 3131, + "name": "3.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188740, + "fields": { + "id_car_serie": 3132, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188741, + "fields": { + "id_car_serie": 3132, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188742, + "fields": { + "id_car_serie": 3132, + "name": "1.9 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188743, + "fields": { + "id_car_serie": 3132, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188744, + "fields": { + "id_car_serie": 3132, + "name": "2.0 HDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188745, + "fields": { + "id_car_serie": 3132, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188746, + "fields": { + "id_car_serie": 3132, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188747, + "fields": { + "id_car_serie": 3132, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188748, + "fields": { + "id_car_serie": 3132, + "name": "3.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188749, + "fields": { + "id_car_serie": 3133, + "name": "2.5 TD MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188750, + "fields": { + "id_car_serie": 3134, + "name": "2.5 TD MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188751, + "fields": { + "id_car_serie": 3140, + "name": "1.9 D MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188752, + "fields": { + "id_car_serie": 3140, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188753, + "fields": { + "id_car_serie": 3140, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188754, + "fields": { + "id_car_serie": 3140, + "name": "2.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188755, + "fields": { + "id_car_serie": 3148, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188756, + "fields": { + "id_car_serie": 3148, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188757, + "fields": { + "id_car_serie": 3148, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188758, + "fields": { + "id_car_serie": 3785, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188759, + "fields": { + "id_car_serie": 3785, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188760, + "fields": { + "id_car_serie": 3785, + "name": "1.5 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188761, + "fields": { + "id_car_serie": 3785, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188762, + "fields": { + "id_car_serie": 3788, + "name": "3.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188763, + "fields": { + "id_car_serie": 3788, + "name": "3.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188764, + "fields": { + "id_car_serie": 3788, + "name": "3.2 DI-D AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188765, + "fields": { + "id_car_serie": 3788, + "name": "3.2 DI-D MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188766, + "fields": { + "id_car_serie": 3152, + "name": "1.6 AT 16V (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188767, + "fields": { + "id_car_serie": 3153, + "name": "1.6 16V AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188768, + "fields": { + "id_car_serie": 3796, + "name": "1.8 GDI T AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188769, + "fields": { + "id_car_serie": 3154, + "name": "2.3 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188770, + "fields": { + "id_car_serie": 3154, + "name": "2.3 AT AWD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188771, + "fields": { + "id_car_serie": 3154, + "name": "2.3 AT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188772, + "fields": { + "id_car_serie": 3154, + "name": "2.9 D AT AWD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188773, + "fields": { + "id_car_serie": 3154, + "name": "2.9 TD AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188774, + "fields": { + "id_car_serie": 3154, + "name": "2.9 D MT AWD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188775, + "fields": { + "id_car_serie": 3154, + "name": "2.9 TD MT AWD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188776, + "fields": { + "id_car_serie": 3155, + "name": "2.3 TD MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188777, + "fields": { + "id_car_serie": 3155, + "name": "2.3 D MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188778, + "fields": { + "id_car_serie": 3155, + "name": "2.3 TD MT AWD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188779, + "fields": { + "id_car_serie": 3155, + "name": "2.3 TD MT AWD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188780, + "fields": { + "id_car_serie": 3155, + "name": "2.3 MT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188781, + "fields": { + "id_car_serie": 3155, + "name": "2.3 D MT AWD (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188782, + "fields": { + "id_car_serie": 3155, + "name": "2.9 TD AT AWD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188783, + "fields": { + "id_car_serie": 3155, + "name": "2.9 TD AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188784, + "fields": { + "id_car_serie": 3155, + "name": "2.9 TD AT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188785, + "fields": { + "id_car_serie": 3155, + "name": "2.9 TD AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188786, + "fields": { + "id_car_serie": 3155, + "name": "2.9 TD MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188787, + "fields": { + "id_car_serie": 3155, + "name": "2.9 TD MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188788, + "fields": { + "id_car_serie": 3155, + "name": "2.9 D MT AWD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188789, + "fields": { + "id_car_serie": 3155, + "name": "3.2 AT AWD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188790, + "fields": { + "id_car_serie": 3155, + "name": "3.2 MT AWD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188791, + "fields": { + "id_car_serie": 3155, + "name": "3.2 MT AWD (209 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188792, + "fields": { + "id_car_serie": 3156, + "name": "2.0 VCDi AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188793, + "fields": { + "id_car_serie": 3156, + "name": "2.0 VCDi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188794, + "fields": { + "id_car_serie": 3157, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188795, + "fields": { + "id_car_serie": 3157, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188796, + "fields": { + "id_car_serie": 3157, + "name": "2.0 D AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188797, + "fields": { + "id_car_serie": 3157, + "name": "2.0 D MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188798, + "fields": { + "id_car_serie": 3158, + "name": "1.3 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188799, + "fields": { + "id_car_serie": 3158, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188800, + "fields": { + "id_car_serie": 3158, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188801, + "fields": { + "id_car_serie": 3158, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188802, + "fields": { + "id_car_serie": 3158, + "name": "1.5 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188803, + "fields": { + "id_car_serie": 3159, + "name": "1.3 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188804, + "fields": { + "id_car_serie": 3159, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188805, + "fields": { + "id_car_serie": 3159, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188806, + "fields": { + "id_car_serie": 3159, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188807, + "fields": { + "id_car_serie": 3159, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188808, + "fields": { + "id_car_serie": 3160, + "name": "1.5 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188809, + "fields": { + "id_car_serie": 3162, + "name": "1.0 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188810, + "fields": { + "id_car_serie": 3164, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188811, + "fields": { + "id_car_serie": 3164, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188812, + "fields": { + "id_car_serie": 3211, + "name": "3.5 V6 5AT SE (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188813, + "fields": { + "id_car_serie": 3211, + "name": "3.6 V6 5AT SE (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188814, + "fields": { + "id_car_serie": 3211, + "name": "5.7 V8 MT R/T (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188815, + "fields": { + "id_car_serie": 3211, + "name": "6.1 V8 AT SRT-8 (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188816, + "fields": { + "id_car_serie": 3211, + "name": "6.1 V8 MT SRT-8 (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188817, + "fields": { + "id_car_serie": 3211, + "name": "6.4 V8 AT SRT-8 392 (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188818, + "fields": { + "id_car_serie": 3211, + "name": "6.4 V8 MT SRT-8 392 (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188819, + "fields": { + "id_car_serie": 3217, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188820, + "fields": { + "id_car_serie": 3218, + "name": "3.7 MT AWD (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188821, + "fields": { + "id_car_serie": 3218, + "name": "4.7 MT AWD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188822, + "fields": { + "id_car_serie": 3218, + "name": "6.7 TD AT AWD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188823, + "fields": { + "id_car_serie": 3849, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188824, + "fields": { + "id_car_serie": 3850, + "name": "2.5 DCI AT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188825, + "fields": { + "id_car_serie": 3256, + "name": "6.0 MT (620 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188826, + "fields": { + "id_car_serie": 3258, + "name": "3.5 MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188827, + "fields": { + "id_car_serie": 3259, + "name": "3.5 MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188828, + "fields": { + "id_car_serie": 3260, + "name": "3.5 MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188829, + "fields": { + "id_car_serie": 3261, + "name": "4.3 DSG (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188830, + "fields": { + "id_car_serie": 3281, + "name": "1.2 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188831, + "fields": { + "id_car_serie": 3281, + "name": "1.2 AMT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188832, + "fields": { + "id_car_serie": 3282, + "name": "1.4T MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188833, + "fields": { + "id_car_serie": 3282, + "name": "1.4S MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188834, + "fields": { + "id_car_serie": 3282, + "name": "1.4T MTA (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188835, + "fields": { + "id_car_serie": 3288, + "name": "1.8 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188836, + "fields": { + "id_car_serie": 3288, + "name": "1.8 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188837, + "fields": { + "id_car_serie": 3289, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188838, + "fields": { + "id_car_serie": 3300, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188839, + "fields": { + "id_car_serie": 3300, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188840, + "fields": { + "id_car_serie": 3300, + "name": "1.9 TD MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188841, + "fields": { + "id_car_serie": 3300, + "name": "1.9 TD MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188842, + "fields": { + "id_car_serie": 3300, + "name": "1.9 TD MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188843, + "fields": { + "id_car_serie": 3301, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188844, + "fields": { + "id_car_serie": 3301, + "name": "1.9 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188845, + "fields": { + "id_car_serie": 3301, + "name": "1.9 TD MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188846, + "fields": { + "id_car_serie": 3301, + "name": "1.9 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188847, + "fields": { + "id_car_serie": 3302, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188848, + "fields": { + "id_car_serie": 3302, + "name": "1.9 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188849, + "fields": { + "id_car_serie": 3302, + "name": "1.9 TD MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188850, + "fields": { + "id_car_serie": 3302, + "name": "1.9 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188851, + "fields": { + "id_car_serie": 3305, + "name": "1.7 D MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188852, + "fields": { + "id_car_serie": 3307, + "name": "3.0 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188869, + "fields": { + "id_car_serie": 3310, + "name": "5.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188870, + "fields": { + "id_car_serie": 3310, + "name": "5.0 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188871, + "fields": { + "id_car_serie": 3310, + "name": "5.0 AT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188872, + "fields": { + "id_car_serie": 3310, + "name": "5.0 MT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188873, + "fields": { + "id_car_serie": 3310, + "name": "5.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188874, + "fields": { + "id_car_serie": 3310, + "name": "5.0 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188875, + "fields": { + "id_car_serie": 3311, + "name": "1.6 TDCi DPF MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188876, + "fields": { + "id_car_serie": 3311, + "name": "1.6 TDCi DPF MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188877, + "fields": { + "id_car_serie": 3311, + "name": "1.6 EcoBoost MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188878, + "fields": { + "id_car_serie": 3316, + "name": "4.6i AT LX Sport (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188879, + "fields": { + "id_car_serie": 3316, + "name": "4.6i AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188880, + "fields": { + "id_car_serie": 3316, + "name": "4.6i AT LX Spor (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188881, + "fields": { + "id_car_serie": 3316, + "name": "4.6i AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188882, + "fields": { + "id_car_serie": 3319, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188883, + "fields": { + "id_car_serie": 3320, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188884, + "fields": { + "id_car_serie": 3321, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188885, + "fields": { + "id_car_serie": 3323, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188886, + "fields": { + "id_car_serie": 3325, + "name": "5.4 AT AWD EL (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188887, + "fields": { + "id_car_serie": 3325, + "name": "5.4 AT EL (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188888, + "fields": { + "id_car_serie": 3325, + "name": "5.4 AT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188889, + "fields": { + "id_car_serie": 3325, + "name": "5.4 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188890, + "fields": { + "id_car_serie": 3332, + "name": "1.25 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188891, + "fields": { + "id_car_serie": 3332, + "name": "1.25 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188892, + "fields": { + "id_car_serie": 3333, + "name": "1.25 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188893, + "fields": { + "id_car_serie": 3333, + "name": "1.25 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188894, + "fields": { + "id_car_serie": 3333, + "name": "1.6 Ti-VCT MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188895, + "fields": { + "id_car_serie": 3333, + "name": "1.6 TDCi S MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188896, + "fields": { + "id_car_serie": 3333, + "name": "1.6 Ti-VCT PowerShift (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188898, + "fields": { + "id_car_serie": 3336, + "name": "1.6 TDCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188900, + "fields": { + "id_car_serie": 3336, + "name": "1.6 PowerShift (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188902, + "fields": { + "id_car_serie": 3337, + "name": "1.6 TDCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188903, + "fields": { + "id_car_serie": 3337, + "name": "1.6 TDCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188904, + "fields": { + "id_car_serie": 3337, + "name": "1.6 PowerShift (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188905, + "fields": { + "id_car_serie": 3339, + "name": "2.0 EcoBoost PowerShift (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188906, + "fields": { + "id_car_serie": 3352, + "name": "3.0 TD AT 4x4 (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188907, + "fields": { + "id_car_serie": 3352, + "name": "3.0 TD MT 4x4 (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188908, + "fields": { + "id_car_serie": 3352, + "name": "3.0 TD MT 4x4 Chassis (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188909, + "fields": { + "id_car_serie": 3352, + "name": "3.0 TD MT Chassis (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188910, + "fields": { + "id_car_serie": 3352, + "name": "3.0 TD MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188911, + "fields": { + "id_car_serie": 3353, + "name": "2.5 TD AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188912, + "fields": { + "id_car_serie": 3353, + "name": "2.5 TD MT Chassis (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188913, + "fields": { + "id_car_serie": 3353, + "name": "2.5 TD MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188914, + "fields": { + "id_car_serie": 3353, + "name": "3.0 TD MT 4x4 Chassis (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188915, + "fields": { + "id_car_serie": 3353, + "name": "3.0 TD MT Chassis Hi-Rider (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188916, + "fields": { + "id_car_serie": 3354, + "name": "2.0 EcoBoost Powershift (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188917, + "fields": { + "id_car_serie": 3354, + "name": "2.0 EcoBoost Powershift (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188918, + "fields": { + "id_car_serie": 3355, + "name": "2.5 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188919, + "fields": { + "id_car_serie": 3920, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188920, + "fields": { + "id_car_serie": 3357, + "name": "2.3D MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188921, + "fields": { + "id_car_serie": 3358, + "name": "2.3D MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188922, + "fields": { + "id_car_serie": 3359, + "name": "2.3D MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188923, + "fields": { + "id_car_serie": 3360, + "name": "2.3D MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188924, + "fields": { + "id_car_serie": 3361, + "name": "4.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188925, + "fields": { + "id_car_serie": 3361, + "name": "4.6 AT 4x4 (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188926, + "fields": { + "id_car_serie": 3361, + "name": "4.6 AT (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188927, + "fields": { + "id_car_serie": 3363, + "name": "2.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188928, + "fields": { + "id_car_serie": 3363, + "name": "3.5 AT (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188929, + "fields": { + "id_car_serie": 3363, + "name": "3.5 AT AWD (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188930, + "fields": { + "id_car_serie": 3363, + "name": "3.5 AT AWD (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188931, + "fields": { + "id_car_serie": 3370, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188932, + "fields": { + "id_car_serie": 3370, + "name": "2.4 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188933, + "fields": { + "id_car_serie": 3378, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188934, + "fields": { + "id_car_serie": 3385, + "name": "4.2 AT 4WD (273 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188935, + "fields": { + "id_car_serie": 3385, + "name": "4.2 AT 4WD (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188936, + "fields": { + "id_car_serie": 3385, + "name": "4.2 AT XL (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188937, + "fields": { + "id_car_serie": 3385, + "name": "4.2 AT 2WD (273 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188938, + "fields": { + "id_car_serie": 3385, + "name": "4.2 AT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188939, + "fields": { + "id_car_serie": 3385, + "name": "4.2 AT 4WD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188940, + "fields": { + "id_car_serie": 3385, + "name": "4.2 AT XL 4WD (291 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188941, + "fields": { + "id_car_serie": 3385, + "name": "4.2 AT XUV 4WD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188942, + "fields": { + "id_car_serie": 3385, + "name": "4.2 AT XL (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188943, + "fields": { + "id_car_serie": 3385, + "name": "4.2 MT 4WD (273 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188944, + "fields": { + "id_car_serie": 3385, + "name": "4.2 MT 2WD (273 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188945, + "fields": { + "id_car_serie": 3385, + "name": "5.3 AT 2WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188946, + "fields": { + "id_car_serie": 3385, + "name": "5.3 AT Denali XL 2WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188947, + "fields": { + "id_car_serie": 3386, + "name": "4.3 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188948, + "fields": { + "id_car_serie": 3386, + "name": "4.3 MT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188949, + "fields": { + "id_car_serie": 3396, + "name": "4.8 AT 4WD (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188950, + "fields": { + "id_car_serie": 3396, + "name": "4.8 AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188951, + "fields": { + "id_car_serie": 3396, + "name": "5.0 AT XL (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188952, + "fields": { + "id_car_serie": 3396, + "name": "5.0 AT XL 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188953, + "fields": { + "id_car_serie": 3396, + "name": "5.3 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188954, + "fields": { + "id_car_serie": 3396, + "name": "5.3 AT XL 4WD (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188955, + "fields": { + "id_car_serie": 3396, + "name": "5.3 AT XL (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188956, + "fields": { + "id_car_serie": 3396, + "name": "5.3 AT XL (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188957, + "fields": { + "id_car_serie": 3396, + "name": "6.0 AT XL (366 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188958, + "fields": { + "id_car_serie": 3396, + "name": "6.0 AT XL (352 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188959, + "fields": { + "id_car_serie": 3396, + "name": "6.0 AT XL 4WD (352 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188960, + "fields": { + "id_car_serie": 3396, + "name": "6.0 AT XL (359 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188961, + "fields": { + "id_car_serie": 3396, + "name": "6.0 AT XL 4WD (366 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188962, + "fields": { + "id_car_serie": 3396, + "name": "6.2 AT XL 4WD (358 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188963, + "fields": { + "id_car_serie": 3396, + "name": "6.2 Denali AT (403 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188964, + "fields": { + "id_car_serie": 3396, + "name": "6.2 Denali AT XL (403 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188965, + "fields": { + "id_car_serie": 3948, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188966, + "fields": { + "id_car_serie": 3948, + "name": "1.6 HDi MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188967, + "fields": { + "id_car_serie": 3412, + "name": "3.8 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188968, + "fields": { + "id_car_serie": 3413, + "name": "3.8 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188969, + "fields": { + "id_car_serie": 3413, + "name": "3.8 MT Acclaim (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188970, + "fields": { + "id_car_serie": 3413, + "name": "3.8 MT SS (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188971, + "fields": { + "id_car_serie": 3413, + "name": "5.0 MT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188972, + "fields": { + "id_car_serie": 3413, + "name": "5.0 MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188973, + "fields": { + "id_car_serie": 3413, + "name": "5.0 MT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188974, + "fields": { + "id_car_serie": 3414, + "name": "3.8 AT VS (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188975, + "fields": { + "id_car_serie": 3414, + "name": "3.8 AT VS (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188976, + "fields": { + "id_car_serie": 3966, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188977, + "fields": { + "id_car_serie": 3966, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188978, + "fields": { + "id_car_serie": 3420, + "name": "1.3 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188979, + "fields": { + "id_car_serie": 3420, + "name": "1.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188980, + "fields": { + "id_car_serie": 3973, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188981, + "fields": { + "id_car_serie": 3973, + "name": "2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188982, + "fields": { + "id_car_serie": 3975, + "name": "3.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188983, + "fields": { + "id_car_serie": 3975, + "name": "3.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188984, + "fields": { + "id_car_serie": 3978, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188985, + "fields": { + "id_car_serie": 3978, + "name": "3.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188986, + "fields": { + "id_car_serie": 3425, + "name": "1.6 i-DTEC MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188987, + "fields": { + "id_car_serie": 3986, + "name": "2.0 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188988, + "fields": { + "id_car_serie": 3986, + "name": "2.2i MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188989, + "fields": { + "id_car_serie": 3436, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188990, + "fields": { + "id_car_serie": 3436, + "name": "1.4 I-SHIFT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188991, + "fields": { + "id_car_serie": 3436, + "name": "1.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188992, + "fields": { + "id_car_serie": 3436, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188993, + "fields": { + "id_car_serie": 3439, + "name": "1.3 CVT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188994, + "fields": { + "id_car_serie": 3439, + "name": "1.3 CVT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188995, + "fields": { + "id_car_serie": 3440, + "name": "1.3i MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188996, + "fields": { + "id_car_serie": 3440, + "name": "1.3i CVT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188997, + "fields": { + "id_car_serie": 3440, + "name": "1.3 CVT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188998, + "fields": { + "id_car_serie": 3443, + "name": "1.5 AT 4WD 5 places (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 188999, + "fields": { + "id_car_serie": 3443, + "name": "1.5 AT 5 places (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189000, + "fields": { + "id_car_serie": 3446, + "name": "2.2 AT 4WS (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189001, + "fields": { + "id_car_serie": 3446, + "name": "2.2 AT 4WS (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189002, + "fields": { + "id_car_serie": 3446, + "name": "2.2 MT 4WS (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189003, + "fields": { + "id_car_serie": 3457, + "name": "1.4 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189004, + "fields": { + "id_car_serie": 3457, + "name": "1.4 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189005, + "fields": { + "id_car_serie": 3457, + "name": "1.6 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189006, + "fields": { + "id_car_serie": 3457, + "name": "1.6 CRDi MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189007, + "fields": { + "id_car_serie": 3460, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189008, + "fields": { + "id_car_serie": 3460, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189009, + "fields": { + "id_car_serie": 4014, + "name": "3.8 AT GTP Comp G (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189010, + "fields": { + "id_car_serie": 3470, + "name": "1.1 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189011, + "fields": { + "id_car_serie": 3470, + "name": "1.1 CRDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189012, + "fields": { + "id_car_serie": 3470, + "name": "1.1 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189013, + "fields": { + "id_car_serie": 3476, + "name": "1.6 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189014, + "fields": { + "id_car_serie": 3476, + "name": "1.7 CRDi AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189015, + "fields": { + "id_car_serie": 3476, + "name": "1.7 CRDi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189016, + "fields": { + "id_car_serie": 3476, + "name": "1.7 CRDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189018, + "fields": { + "id_car_serie": 3476, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189019, + "fields": { + "id_car_serie": 3476, + "name": "2.0 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189021, + "fields": { + "id_car_serie": 3476, + "name": "2.0 AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189022, + "fields": { + "id_car_serie": 3476, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189023, + "fields": { + "id_car_serie": 3476, + "name": "2.0 MT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189024, + "fields": { + "id_car_serie": 3476, + "name": "2.0 MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189025, + "fields": { + "id_car_serie": 3477, + "name": "1.6 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189026, + "fields": { + "id_car_serie": 3477, + "name": "1.7 CRDi AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189027, + "fields": { + "id_car_serie": 3477, + "name": "1.7 CRDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189028, + "fields": { + "id_car_serie": 3477, + "name": "1.7 CRDi MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189030, + "fields": { + "id_car_serie": 3477, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189031, + "fields": { + "id_car_serie": 3477, + "name": "2.0 AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189032, + "fields": { + "id_car_serie": 3477, + "name": "2.0 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189033, + "fields": { + "id_car_serie": 3477, + "name": "2.0 MT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189034, + "fields": { + "id_car_serie": 3477, + "name": "2.0 MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189035, + "fields": { + "id_car_serie": 3478, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189036, + "fields": { + "id_car_serie": 3478, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189037, + "fields": { + "id_car_serie": 3478, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189038, + "fields": { + "id_car_serie": 3479, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189039, + "fields": { + "id_car_serie": 3479, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189040, + "fields": { + "id_car_serie": 3479, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189041, + "fields": { + "id_car_serie": 3480, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189042, + "fields": { + "id_car_serie": 3487, + "name": "2.4 MT 2WD (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189043, + "fields": { + "id_car_serie": 3489, + "name": "1.4 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189044, + "fields": { + "id_car_serie": 3489, + "name": "1.6 CRDi AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189045, + "fields": { + "id_car_serie": 3489, + "name": "1.6 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189046, + "fields": { + "id_car_serie": 3489, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189047, + "fields": { + "id_car_serie": 3490, + "name": "FX30 D AT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189048, + "fields": { + "id_car_serie": 3490, + "name": "FX37 AT AWD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189049, + "fields": { + "id_car_serie": 3490, + "name": "FX50 AT AWD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189050, + "fields": { + "id_car_serie": 3494, + "name": "G25 AT (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189051, + "fields": { + "id_car_serie": 3494, + "name": "G37 AT AWD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189052, + "fields": { + "id_car_serie": 3495, + "name": "M37 AT AWD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189053, + "fields": { + "id_car_serie": 3495, + "name": "M56 AT AWD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189054, + "fields": { + "id_car_serie": 3498, + "name": "1.6 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189055, + "fields": { + "id_car_serie": 3498, + "name": "1.7 D MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189056, + "fields": { + "id_car_serie": 4037, + "name": "2.9 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189057, + "fields": { + "id_car_serie": 4037, + "name": "2.9 PDK (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189058, + "fields": { + "id_car_serie": 4037, + "name": "S 3.4 MT Black Edition (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189059, + "fields": { + "id_car_serie": 4037, + "name": "S 3.4 PDK (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189060, + "fields": { + "id_car_serie": 4037, + "name": "S 3.4 PDK Black Edition (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189061, + "fields": { + "id_car_serie": 4037, + "name": "R 3.4 PDK (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189062, + "fields": { + "id_car_serie": 4038, + "name": "S 3.0 E-Hybrid Tiptronic S (416 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189063, + "fields": { + "id_car_serie": 3521, + "name": "3.1 TDI MT 4WD (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189064, + "fields": { + "id_car_serie": 3522, + "name": "3.0 TDI MT 4WD (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189065, + "fields": { + "id_car_serie": 3534, + "name": "5.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189066, + "fields": { + "id_car_serie": 3539, + "name": "5.0 AT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189067, + "fields": { + "id_car_serie": 3540, + "name": "5.0 AT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189068, + "fields": { + "id_car_serie": 3544, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189069, + "fields": { + "id_car_serie": 3544, + "name": "2.4 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189070, + "fields": { + "id_car_serie": 3548, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189071, + "fields": { + "id_car_serie": 3548, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189072, + "fields": { + "id_car_serie": 3550, + "name": "1.6 GDI MT (5 places) (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189073, + "fields": { + "id_car_serie": 3565, + "name": "1.3 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189075, + "fields": { + "id_car_serie": 4065, + "name": "1.6 Turbo EDC (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189077, + "fields": { + "id_car_serie": 4069, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189078, + "fields": { + "id_car_serie": 3586, + "name": "1.6 MT LE (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189079, + "fields": { + "id_car_serie": 3586, + "name": "1.8 MT GT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189080, + "fields": { + "id_car_serie": 3586, + "name": "1.8 MT LE (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189081, + "fields": { + "id_car_serie": 3586, + "name": "1.8 MT E (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189082, + "fields": { + "id_car_serie": 3586, + "name": "2.0 MT E (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189083, + "fields": { + "id_car_serie": 3586, + "name": "2.0 MT Turbo E (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189084, + "fields": { + "id_car_serie": 3587, + "name": "1.8 MT LE (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189085, + "fields": { + "id_car_serie": 3587, + "name": "1.8 MT E (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189086, + "fields": { + "id_car_serie": 4075, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189087, + "fields": { + "id_car_serie": 4075, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189088, + "fields": { + "id_car_serie": 4075, + "name": "1.9 dCi AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189089, + "fields": { + "id_car_serie": 4075, + "name": "1.9 dTi MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189090, + "fields": { + "id_car_serie": 4075, + "name": "1.9 dCi MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189091, + "fields": { + "id_car_serie": 3588, + "name": "1.8 Di Turbo-Jet AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189092, + "fields": { + "id_car_serie": 4079, + "name": "1.2 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189093, + "fields": { + "id_car_serie": 4079, + "name": "1.2 TCe MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189094, + "fields": { + "id_car_serie": 4079, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189095, + "fields": { + "id_car_serie": 4079, + "name": "1.2 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189096, + "fields": { + "id_car_serie": 3594, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189097, + "fields": { + "id_car_serie": 3594, + "name": "1.9 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189098, + "fields": { + "id_car_serie": 3594, + "name": "2.0 AT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189099, + "fields": { + "id_car_serie": 3594, + "name": "2.0 MT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189100, + "fields": { + "id_car_serie": 3594, + "name": "2.4 TD MT (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189101, + "fields": { + "id_car_serie": 3595, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189102, + "fields": { + "id_car_serie": 3595, + "name": "1.9 TD MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189103, + "fields": { + "id_car_serie": 3595, + "name": "2.0 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189104, + "fields": { + "id_car_serie": 3595, + "name": "2.4 TD MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189105, + "fields": { + "id_car_serie": 3599, + "name": "2.2 TD MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189106, + "fields": { + "id_car_serie": 3599, + "name": "2.4 TD MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189107, + "fields": { + "id_car_serie": 3600, + "name": "2.2 TD MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189108, + "fields": { + "id_car_serie": 3607, + "name": "200h CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189109, + "fields": { + "id_car_serie": 3608, + "name": "250 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189110, + "fields": { + "id_car_serie": 3608, + "name": "300h CVT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189111, + "fields": { + "id_car_serie": 3608, + "name": "350 AT (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189112, + "fields": { + "id_car_serie": 3608, + "name": "350 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189113, + "fields": { + "id_car_serie": 3609, + "name": "250 AT (209 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189114, + "fields": { + "id_car_serie": 3609, + "name": "350 AT AWD (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189115, + "fields": { + "id_car_serie": 3609, + "name": "450h CVT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189116, + "fields": { + "id_car_serie": 3610, + "name": "460 AT AWD (5 places) (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189117, + "fields": { + "id_car_serie": 3610, + "name": "460 AT AWD (7 places) (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189118, + "fields": { + "id_car_serie": 3612, + "name": "200 T AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189119, + "fields": { + "id_car_serie": 3612, + "name": "250 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189120, + "fields": { + "id_car_serie": 3612, + "name": "300h CVT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189123, + "fields": { + "id_car_serie": 3614, + "name": "570 AT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189126, + "fields": { + "id_car_serie": 4091, + "name": "111 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189127, + "fields": { + "id_car_serie": 4091, + "name": "114 MT GTI (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189128, + "fields": { + "id_car_serie": 4091, + "name": "114 MT GTA (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189129, + "fields": { + "id_car_serie": 4094, + "name": "214 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189130, + "fields": { + "id_car_serie": 4094, + "name": "214 MT Si (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189131, + "fields": { + "id_car_serie": 4094, + "name": "216 MT Si (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189132, + "fields": { + "id_car_serie": 4094, + "name": "218 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189133, + "fields": { + "id_car_serie": 4094, + "name": "220 MT SDi (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189134, + "fields": { + "id_car_serie": 4098, + "name": "414 MT Si (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189135, + "fields": { + "id_car_serie": 4098, + "name": "416 AT Si (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189136, + "fields": { + "id_car_serie": 4098, + "name": "416 MT Si (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189137, + "fields": { + "id_car_serie": 4098, + "name": "420 MT D (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189138, + "fields": { + "id_car_serie": 4098, + "name": "420 MT D (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189139, + "fields": { + "id_car_serie": 4098, + "name": "420 MT Si Lux (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189140, + "fields": { + "id_car_serie": 4098, + "name": "425 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189141, + "fields": { + "id_car_serie": 4102, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189142, + "fields": { + "id_car_serie": 3625, + "name": "1.6 CR MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189143, + "fields": { + "id_car_serie": 3625, + "name": "1.6 CR SPS (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189144, + "fields": { + "id_car_serie": 3625, + "name": "1.6 SPS (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189145, + "fields": { + "id_car_serie": 3626, + "name": "2.0i MT Turbo GT3 (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189146, + "fields": { + "id_car_serie": 3626, + "name": "2.2i MT Turbo SE (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189147, + "fields": { + "id_car_serie": 3626, + "name": "2.2i MT Turbo Sport 300 (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189148, + "fields": { + "id_car_serie": 3626, + "name": "2.2i MT Turbo S (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189149, + "fields": { + "id_car_serie": 3626, + "name": "2.2i MT Turbo (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189150, + "fields": { + "id_car_serie": 3626, + "name": "3.5i MT Turbo (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189151, + "fields": { + "id_car_serie": 3631, + "name": "2.1 MT (550 DP) (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189152, + "fields": { + "id_car_serie": 3631, + "name": "2.1 MT (550 PE) (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189153, + "fields": { + "id_car_serie": 3631, + "name": "2.1 MT (540 DP) (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189154, + "fields": { + "id_car_serie": 3631, + "name": "2.5 MT (540 XDB) (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189155, + "fields": { + "id_car_serie": 3646, + "name": "Diesel 3.0 V6 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189156, + "fields": { + "id_car_serie": 4138, + "name": "1.4 TSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189157, + "fields": { + "id_car_serie": 4138, + "name": "2.0 TSI DSG (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189158, + "fields": { + "id_car_serie": 4138, + "name": "2.0 TSI DSG 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189159, + "fields": { + "id_car_serie": 4145, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189160, + "fields": { + "id_car_serie": 4145, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189161, + "fields": { + "id_car_serie": 4145, + "name": "1.6 DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189162, + "fields": { + "id_car_serie": 3655, + "name": "1.5 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189163, + "fields": { + "id_car_serie": 3665, + "name": "1.9 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189164, + "fields": { + "id_car_serie": 3666, + "name": "1.9 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189165, + "fields": { + "id_car_serie": 3670, + "name": "2.0 SKYACTIV-G AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189166, + "fields": { + "id_car_serie": 3670, + "name": "2.2 SKYACTIV-D AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189167, + "fields": { + "id_car_serie": 3670, + "name": "2.2 SKYACTIV-D MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189168, + "fields": { + "id_car_serie": 3670, + "name": "2.5 SKYACTIV-G AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189169, + "fields": { + "id_car_serie": 3671, + "name": "1.5 SKYACTIV-G MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189170, + "fields": { + "id_car_serie": 3672, + "name": "1.5 SKYACTIV-G MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189171, + "fields": { + "id_car_serie": 4156, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189172, + "fields": { + "id_car_serie": 4156, + "name": "1.2 TDI MT GreenLine (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189173, + "fields": { + "id_car_serie": 3677, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189174, + "fields": { + "id_car_serie": 3679, + "name": "0.7 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189175, + "fields": { + "id_car_serie": 3683, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189176, + "fields": { + "id_car_serie": 3687, + "name": "2.0 SKYACTIV-G ​​SKYACTIV-Drive (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189177, + "fields": { + "id_car_serie": 3691, + "name": "1.8 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189178, + "fields": { + "id_car_serie": 3691, + "name": "1.8 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189179, + "fields": { + "id_car_serie": 4169, + "name": "0.8 CDi AMT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189180, + "fields": { + "id_car_serie": 4169, + "name": "1.0 AMT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189181, + "fields": { + "id_car_serie": 4169, + "name": "1.0 AMT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189182, + "fields": { + "id_car_serie": 3695, + "name": "2.5 Hybrid CVT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189183, + "fields": { + "id_car_serie": 3695, + "name": "2.5 Hybrid CVT AWD (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189184, + "fields": { + "id_car_serie": 3695, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189185, + "fields": { + "id_car_serie": 3695, + "name": "3.0 AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189186, + "fields": { + "id_car_serie": 4178, + "name": "2.0 MT AWD (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189187, + "fields": { + "id_car_serie": 4178, + "name": "2.0 MT 4WD (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189188, + "fields": { + "id_car_serie": 4178, + "name": "2.3 MT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189189, + "fields": { + "id_car_serie": 4183, + "name": "2.7 Xdi T-Tronic 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189190, + "fields": { + "id_car_serie": 3726, + "name": "2.0 CDI MT compact (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189191, + "fields": { + "id_car_serie": 3726, + "name": "2.2 CDI MT extended (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189192, + "fields": { + "id_car_serie": 3726, + "name": "2.2 CDI MT compact (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189193, + "fields": { + "id_car_serie": 3726, + "name": "2.0 CDi MT extended (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189194, + "fields": { + "id_car_serie": 3726, + "name": "3.0 CDI AT compact (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189195, + "fields": { + "id_car_serie": 3726, + "name": "3.5 AT compact (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189196, + "fields": { + "id_car_serie": 3745, + "name": "2.3 AT AWD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189197, + "fields": { + "id_car_serie": 3745, + "name": "2.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189198, + "fields": { + "id_car_serie": 3745, + "name": "2.3 MT AWD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189199, + "fields": { + "id_car_serie": 3745, + "name": "2.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189200, + "fields": { + "id_car_serie": 3745, + "name": "3.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189201, + "fields": { + "id_car_serie": 3746, + "name": "2.0 D AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189202, + "fields": { + "id_car_serie": 3746, + "name": "2.0 D AT AWD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189203, + "fields": { + "id_car_serie": 3746, + "name": "2.0 D 5MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189204, + "fields": { + "id_car_serie": 3746, + "name": "2.0 D 5MT AWD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189205, + "fields": { + "id_car_serie": 3746, + "name": "2.0 D 4MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189206, + "fields": { + "id_car_serie": 3746, + "name": "2.3 AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189207, + "fields": { + "id_car_serie": 3746, + "name": "2.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189208, + "fields": { + "id_car_serie": 3746, + "name": "2.3 5MT AWD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189209, + "fields": { + "id_car_serie": 3746, + "name": "2.3 4MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189210, + "fields": { + "id_car_serie": 3746, + "name": "2.3 5MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189211, + "fields": { + "id_car_serie": 3746, + "name": "2.3 4MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189212, + "fields": { + "id_car_serie": 3746, + "name": "3.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189213, + "fields": { + "id_car_serie": 4198, + "name": "0.66 AT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189214, + "fields": { + "id_car_serie": 4198, + "name": "0.66 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189215, + "fields": { + "id_car_serie": 4198, + "name": "0.66 MT 4WD (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189218, + "fields": { + "id_car_serie": 4218, + "name": "1.0 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189219, + "fields": { + "id_car_serie": 4218, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189220, + "fields": { + "id_car_serie": 4218, + "name": "1.3 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189221, + "fields": { + "id_car_serie": 4218, + "name": "1.3 GTI MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189222, + "fields": { + "id_car_serie": 4218, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189223, + "fields": { + "id_car_serie": 3779, + "name": "2.5 DI-D AT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189224, + "fields": { + "id_car_serie": 3782, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189225, + "fields": { + "id_car_serie": 3782, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189226, + "fields": { + "id_car_serie": 3782, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189227, + "fields": { + "id_car_serie": 3782, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189228, + "fields": { + "id_car_serie": 3782, + "name": "1.5 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189229, + "fields": { + "id_car_serie": 3782, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189230, + "fields": { + "id_car_serie": 3782, + "name": "1.6 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189231, + "fields": { + "id_car_serie": 3782, + "name": "1.6 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189232, + "fields": { + "id_car_serie": 3782, + "name": "1.8 T AT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189233, + "fields": { + "id_car_serie": 3782, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189234, + "fields": { + "id_car_serie": 3782, + "name": "1.8 T MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189235, + "fields": { + "id_car_serie": 3782, + "name": "2.0 TD AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189236, + "fields": { + "id_car_serie": 3782, + "name": "2.0 TD AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189237, + "fields": { + "id_car_serie": 3782, + "name": "2.0 TD MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189238, + "fields": { + "id_car_serie": 3782, + "name": "2.0 TD MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189239, + "fields": { + "id_car_serie": 3789, + "name": "3.2 DI-D AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189240, + "fields": { + "id_car_serie": 3789, + "name": "3.2 DI-D MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189246, + "fields": { + "id_car_serie": 3798, + "name": "3.0 MT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189247, + "fields": { + "id_car_serie": 3804, + "name": "3.0 GDi MT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189248, + "fields": { + "id_car_serie": 4238, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189249, + "fields": { + "id_car_serie": 4238, + "name": "2.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189250, + "fields": { + "id_car_serie": 4238, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189251, + "fields": { + "id_car_serie": 4238, + "name": "3.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189252, + "fields": { + "id_car_serie": 4238, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189253, + "fields": { + "id_car_serie": 3827, + "name": "2.0 Turbo AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189254, + "fields": { + "id_car_serie": 3827, + "name": "2.0 GT4 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189255, + "fields": { + "id_car_serie": 4249, + "name": "2.4 D MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189256, + "fields": { + "id_car_serie": 3830, + "name": "3.0 T CVT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189257, + "fields": { + "id_car_serie": 3831, + "name": "2.5 MT (179 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189258, + "fields": { + "id_car_serie": 3831, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189259, + "fields": { + "id_car_serie": 3831, + "name": "3.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189260, + "fields": { + "id_car_serie": 3831, + "name": "3.5 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189261, + "fields": { + "id_car_serie": 3841, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189262, + "fields": { + "id_car_serie": 3841, + "name": "1.8 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189263, + "fields": { + "id_car_serie": 3841, + "name": "1.8 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189264, + "fields": { + "id_car_serie": 3860, + "name": "2.5 HEV Xtronic AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189265, + "fields": { + "id_car_serie": 3880, + "name": "1.0 ecoFlex MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189266, + "fields": { + "id_car_serie": 3880, + "name": "1.0 ecoFlex MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189267, + "fields": { + "id_car_serie": 3880, + "name": "1.3 CDTI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189268, + "fields": { + "id_car_serie": 3886, + "name": "1.3 CDTI ecoFLEX MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189269, + "fields": { + "id_car_serie": 3886, + "name": "1.3 CDTI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189270, + "fields": { + "id_car_serie": 3886, + "name": "1.4 LPG Turbo ecoFLEX MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189271, + "fields": { + "id_car_serie": 3886, + "name": "1.6 Turbo AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189272, + "fields": { + "id_car_serie": 3886, + "name": "1.7 CDTI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189273, + "fields": { + "id_car_serie": 3886, + "name": "1.7 CDTI ecoFLEX MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189274, + "fields": { + "id_car_serie": 3886, + "name": "1.7 CDTI ecoFLEX A+ MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189275, + "fields": { + "id_car_serie": 3886, + "name": "1.7 CDTI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189276, + "fields": { + "id_car_serie": 3887, + "name": "1.7 TD MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189277, + "fields": { + "id_car_serie": 3888, + "name": "1.7 CDTI Eco4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189278, + "fields": { + "id_car_serie": 3888, + "name": "1.7 TD MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189280, + "fields": { + "id_car_serie": 3888, + "name": "2.0 DTI MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189281, + "fields": { + "id_car_serie": 4284, + "name": "2.7 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189283, + "fields": { + "id_car_serie": 4284, + "name": "4.0 AT 4WD (282 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189284, + "fields": { + "id_car_serie": 3895, + "name": "1.0 ecoFLEX MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189285, + "fields": { + "id_car_serie": 3895, + "name": "1.3 CDTI ecoFLEX Start/Stop MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189286, + "fields": { + "id_car_serie": 3895, + "name": "1.3 CDTI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189287, + "fields": { + "id_car_serie": 3895, + "name": "1.3 CDTI ecoFLEX MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189288, + "fields": { + "id_car_serie": 3895, + "name": "1.3 CDTI ecoFLEX Start/Stop MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189289, + "fields": { + "id_car_serie": 3895, + "name": "1.4 ecoFLEX Start/Stop MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189290, + "fields": { + "id_car_serie": 3895, + "name": "1.4 ecoFLEX Start/Stop MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189291, + "fields": { + "id_car_serie": 3896, + "name": "1.0 ecoFLEX MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189292, + "fields": { + "id_car_serie": 3896, + "name": "1.3 CDTI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189293, + "fields": { + "id_car_serie": 3896, + "name": "1.3 CDTI ecoFLEX Start/Stop MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189294, + "fields": { + "id_car_serie": 3896, + "name": "1.3 CDTI ecoFLEX MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189295, + "fields": { + "id_car_serie": 3896, + "name": "1.3 CDTI ecoFLEX Start/Stop MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189296, + "fields": { + "id_car_serie": 3896, + "name": "1.4 ecoFLEX Start/Stop MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189297, + "fields": { + "id_car_serie": 3896, + "name": "1.4 ecoFLEX Start/Stop MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189298, + "fields": { + "id_car_serie": 3898, + "name": "2.5 TD MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189299, + "fields": { + "id_car_serie": 3898, + "name": "3.2 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189300, + "fields": { + "id_car_serie": 3901, + "name": "2.8 V6 Turbo AT 4x4 (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189301, + "fields": { + "id_car_serie": 3901, + "name": "2.8 V6 Turbo MT 4x4 (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189304, + "fields": { + "id_car_serie": 3919, + "name": "1.3 CDTI MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189305, + "fields": { + "id_car_serie": 3928, + "name": "4.6 MT (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189306, + "fields": { + "id_car_serie": 3941, + "name": "1.9 MT GTI (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189307, + "fields": { + "id_car_serie": 3942, + "name": "1.8 TD MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189308, + "fields": { + "id_car_serie": 3942, + "name": "1.9 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189309, + "fields": { + "id_car_serie": 3950, + "name": "1.6 HDi MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189310, + "fields": { + "id_car_serie": 3950, + "name": "1.6 THP MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189311, + "fields": { + "id_car_serie": 3950, + "name": "1.6 THP MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189312, + "fields": { + "id_car_serie": 3951, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189313, + "fields": { + "id_car_serie": 3951, + "name": "1.6 THP MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189314, + "fields": { + "id_car_serie": 3951, + "name": "1.6 THP MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189315, + "fields": { + "id_car_serie": 53258, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189316, + "fields": { + "id_car_serie": 53258, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189317, + "fields": { + "id_car_serie": 3968, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189318, + "fields": { + "id_car_serie": 3976, + "name": "3.0 AT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189319, + "fields": { + "id_car_serie": 3976, + "name": "3.0 MT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189320, + "fields": { + "id_car_serie": 3977, + "name": "3.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189321, + "fields": { + "id_car_serie": 3977, + "name": "3.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189322, + "fields": { + "id_car_serie": 3979, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189323, + "fields": { + "id_car_serie": 3980, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189324, + "fields": { + "id_car_serie": 3980, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189325, + "fields": { + "id_car_serie": 3987, + "name": "2.2i AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189326, + "fields": { + "id_car_serie": 3987, + "name": "2.2i MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189327, + "fields": { + "id_car_serie": 3987, + "name": "2.2i T MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189328, + "fields": { + "id_car_serie": 3987, + "name": "2.5 TD AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189329, + "fields": { + "id_car_serie": 3987, + "name": "2.5 D AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189330, + "fields": { + "id_car_serie": 3987, + "name": "2.8 AT V6 (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189331, + "fields": { + "id_car_serie": 3987, + "name": "2.8 MT V6 (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189332, + "fields": { + "id_car_serie": 3995, + "name": "2.0i AT Sport (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189333, + "fields": { + "id_car_serie": 3995, + "name": "2.0i MT Sport (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189334, + "fields": { + "id_car_serie": 3997, + "name": "2.2i Mt (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189335, + "fields": { + "id_car_serie": 3997, + "name": "2.5i MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189336, + "fields": { + "id_car_serie": 3997, + "name": "2.5i MT Turbo (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189337, + "fields": { + "id_car_serie": 3997, + "name": "3.0i MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189338, + "fields": { + "id_car_serie": 3998, + "name": "3.3i AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189339, + "fields": { + "id_car_serie": 3998, + "name": "3.3i AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189340, + "fields": { + "id_car_serie": 4013, + "name": "3.4 MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189341, + "fields": { + "id_car_serie": 4036, + "name": "S Hybrid 3.0 Tiptronic AWD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189342, + "fields": { + "id_car_serie": 4036, + "name": "S Diesel 4.2 Tiptronic AWD (382 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189343, + "fields": { + "id_car_serie": 4050, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189344, + "fields": { + "id_car_serie": 4050, + "name": "1.4 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189345, + "fields": { + "id_car_serie": 4050, + "name": "1.4 T MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189346, + "fields": { + "id_car_serie": 4050, + "name": "1.6 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189347, + "fields": { + "id_car_serie": 4050, + "name": "1.7 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189348, + "fields": { + "id_car_serie": 4051, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189349, + "fields": { + "id_car_serie": 4359, + "name": "1.0i MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189350, + "fields": { + "id_car_serie": 4359, + "name": "1.8i MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189351, + "fields": { + "id_car_serie": 4053, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189352, + "fields": { + "id_car_serie": 4058, + "name": "1.7 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189353, + "fields": { + "id_car_serie": 4058, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189354, + "fields": { + "id_car_serie": 4063, + "name": "1.2 5MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189355, + "fields": { + "id_car_serie": 4063, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189356, + "fields": { + "id_car_serie": 49036, + "name": "1.1 5MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189357, + "fields": { + "id_car_serie": 49036, + "name": "1.1 5MT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189358, + "fields": { + "id_car_serie": 49036, + "name": "1.1 MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189359, + "fields": { + "id_car_serie": 49036, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189360, + "fields": { + "id_car_serie": 49036, + "name": "1.2 5MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189361, + "fields": { + "id_car_serie": 4370, + "name": "3.0 TSI Hybrid Tiptronic (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189362, + "fields": { + "id_car_serie": 4370, + "name": "4.2 TDI Tiptronic 4Motion (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189363, + "fields": { + "id_car_serie": 4370, + "name": "4.2 FSI Tiptronic 4Motion (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189364, + "fields": { + "id_car_serie": 4076, + "name": "2.0 TCe MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189365, + "fields": { + "id_car_serie": 4084, + "name": "1.2 T MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189366, + "fields": { + "id_car_serie": 4084, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189367, + "fields": { + "id_car_serie": 4084, + "name": "1.2 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189368, + "fields": { + "id_car_serie": 4089, + "name": "6.7 AT EWB (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189369, + "fields": { + "id_car_serie": 4093, + "name": "114 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189370, + "fields": { + "id_car_serie": 4099, + "name": "414 MT Si (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189371, + "fields": { + "id_car_serie": 4099, + "name": "416 MT Si (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189372, + "fields": { + "id_car_serie": 4099, + "name": "420 MT D (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189373, + "fields": { + "id_car_serie": 4099, + "name": "420 MT D (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189374, + "fields": { + "id_car_serie": 4099, + "name": "420 MT Si Lux (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189375, + "fields": { + "id_car_serie": 4103, + "name": "4.6 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189376, + "fields": { + "id_car_serie": 4104, + "name": "820 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189377, + "fields": { + "id_car_serie": 4104, + "name": "820 MT Turbo (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189378, + "fields": { + "id_car_serie": 4104, + "name": "820 MT Ti (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189379, + "fields": { + "id_car_serie": 4104, + "name": "825 AT Si (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189380, + "fields": { + "id_car_serie": 4104, + "name": "825 MT SD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189381, + "fields": { + "id_car_serie": 4104, + "name": "827 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189382, + "fields": { + "id_car_serie": 4105, + "name": "820 MT I/SI (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189383, + "fields": { + "id_car_serie": 4105, + "name": "820 MT Ti (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189384, + "fields": { + "id_car_serie": 4105, + "name": "825 MT Si (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189385, + "fields": { + "id_car_serie": 4106, + "name": "820 AT (XS) (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189386, + "fields": { + "id_car_serie": 4106, + "name": "820 AT (RS) (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189387, + "fields": { + "id_car_serie": 4106, + "name": "820 MT Turbo (RS) (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189388, + "fields": { + "id_car_serie": 4106, + "name": "820 MT (RS) (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189389, + "fields": { + "id_car_serie": 4106, + "name": "820 MT (XS) (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189390, + "fields": { + "id_car_serie": 4106, + "name": "825 AT (RS) (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189391, + "fields": { + "id_car_serie": 4106, + "name": "825 MT D (XS) (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189392, + "fields": { + "id_car_serie": 4106, + "name": "827 AT (XS) (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189393, + "fields": { + "id_car_serie": 4106, + "name": "827 AT (XS) (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189394, + "fields": { + "id_car_serie": 4106, + "name": "827 MT (XS) (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189395, + "fields": { + "id_car_serie": 4114, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189396, + "fields": { + "id_car_serie": 4114, + "name": "1.9 TD AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189397, + "fields": { + "id_car_serie": 4399, + "name": "1.6 D2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189398, + "fields": { + "id_car_serie": 4399, + "name": "1.6 D DRIVe MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189399, + "fields": { + "id_car_serie": 4399, + "name": "1.6 D DRIVe Start/Stop MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189400, + "fields": { + "id_car_serie": 4399, + "name": "2.0 D4 Geartronic (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189401, + "fields": { + "id_car_serie": 4399, + "name": "2.0 D3 Geartronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189402, + "fields": { + "id_car_serie": 4399, + "name": "2.0 D4 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189403, + "fields": { + "id_car_serie": 4399, + "name": "2.0 D3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189404, + "fields": { + "id_car_serie": 4399, + "name": "2.0 D MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189405, + "fields": { + "id_car_serie": 4539, + "name": "2.0 D4 Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189406, + "fields": { + "id_car_serie": 4539, + "name": "3.0 T6 Geartronic AWD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189407, + "fields": { + "id_car_serie": 4541, + "name": "2.4 D5 Geartronic AWD (5 places) (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189408, + "fields": { + "id_car_serie": 4541, + "name": "2.4 D5 Geartronic AWD (7 places) (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189409, + "fields": { + "id_car_serie": 4541, + "name": "2.4 D5 Geartronic AWD (5 places) (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189410, + "fields": { + "id_car_serie": 4541, + "name": "2.4 D5 Geartronic AWD (7 places) (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189411, + "fields": { + "id_car_serie": 4541, + "name": "2.4 D3 Geartronic AWD (5 places) (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189412, + "fields": { + "id_car_serie": 4541, + "name": "2.4 D3 Geartronic AWD (7 places) (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189413, + "fields": { + "id_car_serie": 4541, + "name": "2.4 D4 Geartronic AWD (5 places) (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189414, + "fields": { + "id_car_serie": 4541, + "name": "2.4 D4 Geartronic AWD (7 places) (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189415, + "fields": { + "id_car_serie": 4541, + "name": "2.4 D5 Geartronic5 AWD (5 places) (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189416, + "fields": { + "id_car_serie": 4541, + "name": "2.4 D5 Geartronic5 AWD (7 places) (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189417, + "fields": { + "id_car_serie": 4541, + "name": "2.4 D5 MT AWD (7 places) (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189418, + "fields": { + "id_car_serie": 4541, + "name": "2.5 T5 Geartronic AWD (5 places) (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189419, + "fields": { + "id_car_serie": 4541, + "name": "2.5 T5 Geartronic AWD (7 places) (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189420, + "fields": { + "id_car_serie": 4541, + "name": "2.5 T5 MT AWD (7 places) (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189421, + "fields": { + "id_car_serie": 4541, + "name": "3.2 Geartronic (5 places) (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189422, + "fields": { + "id_car_serie": 4541, + "name": "3.2 Geartronic AWD (5 places) (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189423, + "fields": { + "id_car_serie": 4541, + "name": "3.2 Geartronic (7 places) (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189424, + "fields": { + "id_car_serie": 4541, + "name": "3.2 Geartronic (7 places) (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189425, + "fields": { + "id_car_serie": 4541, + "name": "3.2 Geartronic AWD (7 places) (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189426, + "fields": { + "id_car_serie": 4541, + "name": "3.2 Geartronic (5 places) (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189427, + "fields": { + "id_car_serie": 4541, + "name": "3.2 Geartronic AWD (5 places) (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189428, + "fields": { + "id_car_serie": 4541, + "name": "3.2 Geartronic AWD (7 places) (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189429, + "fields": { + "id_car_serie": 4541, + "name": "4.4 Geartronic AWD (5 places) (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189430, + "fields": { + "id_car_serie": 4541, + "name": "4.4 Geartronic AWD (7 places) (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189431, + "fields": { + "id_car_serie": 4137, + "name": "2.0 TDi DSG (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189432, + "fields": { + "id_car_serie": 4140, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189433, + "fields": { + "id_car_serie": 4140, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189434, + "fields": { + "id_car_serie": 4146, + "name": "1.4 TDI MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189435, + "fields": { + "id_car_serie": 4146, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189436, + "fields": { + "id_car_serie": 4146, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189437, + "fields": { + "id_car_serie": 4145, + "name": "1.4 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189440, + "fields": { + "id_car_serie": 4148, + "name": "1.8 TSI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189442, + "fields": { + "id_car_serie": 4549, + "name": "1.3i MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189443, + "fields": { + "id_car_serie": 4154, + "name": "1.0 CNG MT Green tec (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189444, + "fields": { + "id_car_serie": 4154, + "name": "1.0 MT Green tec (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189445, + "fields": { + "id_car_serie": 4154, + "name": "1.0 MT Green tec (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189446, + "fields": { + "id_car_serie": 4155, + "name": "1.0 MT Green tec (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189447, + "fields": { + "id_car_serie": 4155, + "name": "1.0 CNG MT Green tec (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189448, + "fields": { + "id_car_serie": 4155, + "name": "1.0 MT Green tec (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189449, + "fields": { + "id_car_serie": 4157, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189450, + "fields": { + "id_car_serie": 4157, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189451, + "fields": { + "id_car_serie": 4158, + "name": "1.3 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189452, + "fields": { + "id_car_serie": 4158, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189453, + "fields": { + "id_car_serie": 4159, + "name": "1.3 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189454, + "fields": { + "id_car_serie": 4159, + "name": "1.3 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189455, + "fields": { + "id_car_serie": 4162, + "name": "1.2 TSI MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189456, + "fields": { + "id_car_serie": 4162, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189457, + "fields": { + "id_car_serie": 4162, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189458, + "fields": { + "id_car_serie": 4162, + "name": "1.4 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189459, + "fields": { + "id_car_serie": 4162, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189460, + "fields": { + "id_car_serie": 4162, + "name": "1.4 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189461, + "fields": { + "id_car_serie": 4162, + "name": "1.4 TSI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189462, + "fields": { + "id_car_serie": 4162, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189463, + "fields": { + "id_car_serie": 4162, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189464, + "fields": { + "id_car_serie": 4162, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189465, + "fields": { + "id_car_serie": 4162, + "name": "1.6 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189466, + "fields": { + "id_car_serie": 4162, + "name": "1.8 TSI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189467, + "fields": { + "id_car_serie": 4162, + "name": "2.0 TDI DSG (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189468, + "fields": { + "id_car_serie": 4164, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189469, + "fields": { + "id_car_serie": 4164, + "name": "1.2 TSI MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189470, + "fields": { + "id_car_serie": 4164, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189471, + "fields": { + "id_car_serie": 4164, + "name": "1.2 TSI MT Green tec (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189472, + "fields": { + "id_car_serie": 4164, + "name": "1.2 TSI MT Green tec (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189473, + "fields": { + "id_car_serie": 4164, + "name": "1.4 TSI DSG (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189474, + "fields": { + "id_car_serie": 4164, + "name": "1.4 TSI DSG Green tec (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189475, + "fields": { + "id_car_serie": 4164, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189476, + "fields": { + "id_car_serie": 4164, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189477, + "fields": { + "id_car_serie": 4164, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189478, + "fields": { + "id_car_serie": 4164, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189479, + "fields": { + "id_car_serie": 4164, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189480, + "fields": { + "id_car_serie": 4164, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189481, + "fields": { + "id_car_serie": 4164, + "name": "1.6 TDI MT GreenLine (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189482, + "fields": { + "id_car_serie": 4164, + "name": "1.6 TDI MT Green tec (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189483, + "fields": { + "id_car_serie": 4164, + "name": "1.6 TDI MT Green tec (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189484, + "fields": { + "id_car_serie": 4164, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189485, + "fields": { + "id_car_serie": 4164, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189486, + "fields": { + "id_car_serie": 4164, + "name": "1.6 TDI DSG (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189487, + "fields": { + "id_car_serie": 4166, + "name": "1.6 TDI MT GreenLine (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189488, + "fields": { + "id_car_serie": 4166, + "name": "1.6 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189489, + "fields": { + "id_car_serie": 4167, + "name": "1.6 TDI MT GreenLine (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189490, + "fields": { + "id_car_serie": 4167, + "name": "1.6 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189494, + "fields": { + "id_car_serie": 4179, + "name": "2.0 MT AWD (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189495, + "fields": { + "id_car_serie": 4181, + "name": "E23 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189496, + "fields": { + "id_car_serie": 4181, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189497, + "fields": { + "id_car_serie": 4181, + "name": "E23 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189498, + "fields": { + "id_car_serie": 4181, + "name": "602 D AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189499, + "fields": { + "id_car_serie": 4181, + "name": "602 D MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189500, + "fields": { + "id_car_serie": 4181, + "name": "E32 AT AWD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189501, + "fields": { + "id_car_serie": 4181, + "name": "E32 MT AWD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189502, + "fields": { + "id_car_serie": 4182, + "name": "2.9 TDI AT AWD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189503, + "fields": { + "id_car_serie": 4182, + "name": "2.9 TDI MT AWD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189504, + "fields": { + "id_car_serie": 4187, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189505, + "fields": { + "id_car_serie": 4187, + "name": "1.6 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189506, + "fields": { + "id_car_serie": 4187, + "name": "2.0 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189508, + "fields": { + "id_car_serie": 4199, + "name": "0.66 AT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189509, + "fields": { + "id_car_serie": 4199, + "name": "0.66 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189510, + "fields": { + "id_car_serie": 4199, + "name": "0.66 MT 4WD (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189511, + "fields": { + "id_car_serie": 4200, + "name": "0.8 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189512, + "fields": { + "id_car_serie": 4241, + "name": "1.33 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189513, + "fields": { + "id_car_serie": 4241, + "name": "1.4 D-4D MMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189514, + "fields": { + "id_car_serie": 4254, + "name": "2.0TD MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189516, + "fields": { + "id_car_serie": 4259, + "name": "5.0 4AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189517, + "fields": { + "id_car_serie": 4261, + "name": "1.33 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189518, + "fields": { + "id_car_serie": 4265, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189519, + "fields": { + "id_car_serie": 4265, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189520, + "fields": { + "id_car_serie": 4265, + "name": "1.5 D AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189521, + "fields": { + "id_car_serie": 4265, + "name": "1.5 AT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189522, + "fields": { + "id_car_serie": 4265, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189523, + "fields": { + "id_car_serie": 4265, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189524, + "fields": { + "id_car_serie": 4265, + "name": "1.5 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189525, + "fields": { + "id_car_serie": 4265, + "name": "1.5 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189526, + "fields": { + "id_car_serie": 4266, + "name": "2.4 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189527, + "fields": { + "id_car_serie": 4268, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189528, + "fields": { + "id_car_serie": 4268, + "name": "4.0 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189529, + "fields": { + "id_car_serie": 4268, + "name": "4.0 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189530, + "fields": { + "id_car_serie": 4280, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189531, + "fields": { + "id_car_serie": 4280, + "name": "2.0 CVT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189532, + "fields": { + "id_car_serie": 4280, + "name": "2.0 CVT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189533, + "fields": { + "id_car_serie": 4282, + "name": "3.5 AT AWD (273 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189534, + "fields": { + "id_car_serie": 4285, + "name": "3.4 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189536, + "fields": { + "id_car_serie": 4340, + "name": "1.6 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189537, + "fields": { + "id_car_serie": 4340, + "name": "1.6 BlueMotion TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189538, + "fields": { + "id_car_serie": 4341, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189539, + "fields": { + "id_car_serie": 4342, + "name": "1.9 TDI AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189540, + "fields": { + "id_car_serie": 4342, + "name": "1.9 TDI AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189541, + "fields": { + "id_car_serie": 4342, + "name": "2.3 V5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189542, + "fields": { + "id_car_serie": 4343, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189543, + "fields": { + "id_car_serie": 4345, + "name": "1.1 Formel E MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189544, + "fields": { + "id_car_serie": 4346, + "name": "1.4 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189545, + "fields": { + "id_car_serie": 4346, + "name": "2.0 TDI BlueMotion DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189546, + "fields": { + "id_car_serie": 4348, + "name": "1.2 TSI BlueMotion MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189547, + "fields": { + "id_car_serie": 4348, + "name": "1.2 TSI BlueMotion MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189548, + "fields": { + "id_car_serie": 4348, + "name": "1.2 TSI BlueMotion DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189549, + "fields": { + "id_car_serie": 4348, + "name": "1.4 TSI BlueMotion MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189550, + "fields": { + "id_car_serie": 4348, + "name": "1.4 TSI BlueMotion MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189551, + "fields": { + "id_car_serie": 4348, + "name": "1.4 TSI BlueMotion DSG (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189552, + "fields": { + "id_car_serie": 4348, + "name": "1.4 TSI BlueMotion DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189553, + "fields": { + "id_car_serie": 4348, + "name": "1.6 TDI BlueMotion MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189554, + "fields": { + "id_car_serie": 4348, + "name": "1.6 TDI BlueMotion MT 4Motion (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189555, + "fields": { + "id_car_serie": 4348, + "name": "1.6 BlueTD MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189556, + "fields": { + "id_car_serie": 4348, + "name": "1.6 TDI BlueMotion DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189557, + "fields": { + "id_car_serie": 4348, + "name": "1.6 BlueTDI DSG (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189558, + "fields": { + "id_car_serie": 4348, + "name": "2.0 TDI BlueMotion MT 4Motion (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189559, + "fields": { + "id_car_serie": 4348, + "name": "2.0 TDI BlueMotion DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189560, + "fields": { + "id_car_serie": 49434, + "name": "1.9 TD MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189561, + "fields": { + "id_car_serie": 49434, + "name": "1.9 MT TD (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189562, + "fields": { + "id_car_serie": 49434, + "name": "2.4 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189563, + "fields": { + "id_car_serie": 49434, + "name": "2.8 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189565, + "fields": { + "id_car_serie": 4356, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189566, + "fields": { + "id_car_serie": 4356, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189567, + "fields": { + "id_car_serie": 4356, + "name": "1.4 TSI DSG EcoFuel (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189568, + "fields": { + "id_car_serie": 4356, + "name": "1.8 TSI DSG (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189569, + "fields": { + "id_car_serie": 4358, + "name": "3.0 TDI Tiptronic 4Motion (5 local) (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189570, + "fields": { + "id_car_serie": 4358, + "name": "3.0 TDI Tiptronic 4Motion L (5 local) (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189571, + "fields": { + "id_car_serie": 4358, + "name": "3.0 TDI Tiptronic 4Motion L (4 local) (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189572, + "fields": { + "id_car_serie": 4358, + "name": "3.6 Tiptronic 4Motion L (5 local) (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189573, + "fields": { + "id_car_serie": 4358, + "name": "3.6 Tiptronic 4Motion (5 local) (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189574, + "fields": { + "id_car_serie": 4358, + "name": "4.2 Tiptronic 4Motion L (4 local) (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189575, + "fields": { + "id_car_serie": 4358, + "name": "4.2 Tiptronic 4Motion (5 local) (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189576, + "fields": { + "id_car_serie": 4358, + "name": "4.2 Tiptronic 4Motion L (5 local) (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189577, + "fields": { + "id_car_serie": 4365, + "name": "1.4 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189578, + "fields": { + "id_car_serie": 4369, + "name": "2.0 TSI 4Motion DSG (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189579, + "fields": { + "id_car_serie": 4371, + "name": "1.4 TSI Ecofuel MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189580, + "fields": { + "id_car_serie": 4371, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189581, + "fields": { + "id_car_serie": 4371, + "name": "1.9 TDI 6DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189582, + "fields": { + "id_car_serie": 4371, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189583, + "fields": { + "id_car_serie": 4371, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189585, + "fields": { + "id_car_serie": 4371, + "name": "2.0 Ecofuel MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189586, + "fields": { + "id_car_serie": 4371, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189587, + "fields": { + "id_car_serie": 4371, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189588, + "fields": { + "id_car_serie": 4371, + "name": "2.0 TDI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189589, + "fields": { + "id_car_serie": 4393, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189590, + "fields": { + "id_car_serie": 4393, + "name": "2.5 T AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189591, + "fields": { + "id_car_serie": 4393, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189592, + "fields": { + "id_car_serie": 4393, + "name": "2.5 T MT AWD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189593, + "fields": { + "id_car_serie": 4393, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189594, + "fields": { + "id_car_serie": 4393, + "name": "2.5 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189595, + "fields": { + "id_car_serie": 4393, + "name": "2.5 TDI AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189596, + "fields": { + "id_car_serie": 4393, + "name": "2.5 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189597, + "fields": { + "id_car_serie": 4394, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189598, + "fields": { + "id_car_serie": 4394, + "name": "2.5 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189599, + "fields": { + "id_car_serie": 4394, + "name": "2.5 T AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189600, + "fields": { + "id_car_serie": 4394, + "name": "2.5 T MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189601, + "fields": { + "id_car_serie": 4394, + "name": "2.5 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189602, + "fields": { + "id_car_serie": 4394, + "name": "2.5 TDI AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189603, + "fields": { + "id_car_serie": 4394, + "name": "2.5 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189604, + "fields": { + "id_car_serie": 4395, + "name": "2.3 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189605, + "fields": { + "id_car_serie": 4395, + "name": "2.3 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189607, + "fields": { + "id_car_serie": 4395, + "name": "2.3 T MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189608, + "fields": { + "id_car_serie": 4395, + "name": "2.3 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189610, + "fields": { + "id_car_serie": 4395, + "name": "2.4 TD AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189611, + "fields": { + "id_car_serie": 4395, + "name": "2.4 TD MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189612, + "fields": { + "id_car_serie": 4395, + "name": "2.4 TD MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189613, + "fields": { + "id_car_serie": 4396, + "name": "2.3 T AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189614, + "fields": { + "id_car_serie": 4396, + "name": "2.3 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189616, + "fields": { + "id_car_serie": 4396, + "name": "2.3 T MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189618, + "fields": { + "id_car_serie": 4396, + "name": "2.3 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189619, + "fields": { + "id_car_serie": 4396, + "name": "2.4 TD AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189620, + "fields": { + "id_car_serie": 4396, + "name": "2.4 TD MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189621, + "fields": { + "id_car_serie": 4407, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189622, + "fields": { + "id_car_serie": 4407, + "name": "1.6 5MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189623, + "fields": { + "id_car_serie": 4407, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189624, + "fields": { + "id_car_serie": 4413, + "name": "4.0 AT Overdrive 4x4 L1 (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189625, + "fields": { + "id_car_serie": 4413, + "name": "4.0 AT Overdrive L1 (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189626, + "fields": { + "id_car_serie": 4413, + "name": "4.0 AT Overdrive 4x4 L1 (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189627, + "fields": { + "id_car_serie": 4413, + "name": "4.0 AT Overdrive L2 (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189628, + "fields": { + "id_car_serie": 4413, + "name": "4.0 AT Overdrive 4x4 L2 (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189629, + "fields": { + "id_car_serie": 4413, + "name": "4.0 AT Overdrive 4x4 L2 (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189630, + "fields": { + "id_car_serie": 4413, + "name": "4.0 AT Overdrive L2 (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189631, + "fields": { + "id_car_serie": 4413, + "name": "4.0 MT 4x4 L1 (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189632, + "fields": { + "id_car_serie": 4414, + "name": "2.7 AT Overdrive (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189633, + "fields": { + "id_car_serie": 4414, + "name": "2.7 AT Overdrive (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189634, + "fields": { + "id_car_serie": 4414, + "name": "2.7 MT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189635, + "fields": { + "id_car_serie": 4414, + "name": "2.7 MT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189636, + "fields": { + "id_car_serie": 4414, + "name": "2.7 MT 4x4 (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189637, + "fields": { + "id_car_serie": 4414, + "name": "2.7 MT 4x4 (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189638, + "fields": { + "id_car_serie": 4414, + "name": "4.0 AT Overdrive 4x4 (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189639, + "fields": { + "id_car_serie": 4414, + "name": "4.0 AT Overdrive (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189640, + "fields": { + "id_car_serie": 4414, + "name": "4.0 AT Overdrive 4x4 (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189641, + "fields": { + "id_car_serie": 4414, + "name": "4.0 AT Overdrive (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189642, + "fields": { + "id_car_serie": 4414, + "name": "4.0 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189643, + "fields": { + "id_car_serie": 4414, + "name": "4.0 MT 4x4 (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189644, + "fields": { + "id_car_serie": 4414, + "name": "4.0 MT (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189645, + "fields": { + "id_car_serie": 4414, + "name": "4.0 MT 4x4 (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189646, + "fields": { + "id_car_serie": 4418, + "name": "1.5 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189647, + "fields": { + "id_car_serie": 4418, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189648, + "fields": { + "id_car_serie": 4418, + "name": "1.8 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189649, + "fields": { + "id_car_serie": 4418, + "name": "1.8 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189650, + "fields": { + "id_car_serie": 4418, + "name": "1.8 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189651, + "fields": { + "id_car_serie": 4418, + "name": "1.8 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189652, + "fields": { + "id_car_serie": 4419, + "name": "4.0 AT (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189653, + "fields": { + "id_car_serie": 4419, + "name": "5.7 AT Long (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189654, + "fields": { + "id_car_serie": 4420, + "name": "5.7 AT TRD Rock Warrior (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189655, + "fields": { + "id_car_serie": 4421, + "name": "4.0 AT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189656, + "fields": { + "id_car_serie": 4421, + "name": "4.0 AT (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189657, + "fields": { + "id_car_serie": 4421, + "name": "5.7 AT TRD Rock Warrior (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189658, + "fields": { + "id_car_serie": 4421, + "name": "5.7 AT Long (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189659, + "fields": { + "id_car_serie": 4421, + "name": "5.7 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189660, + "fields": { + "id_car_serie": 4427, + "name": "2.0 D-4D MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189661, + "fields": { + "id_car_serie": 4430, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189662, + "fields": { + "id_car_serie": 4440, + "name": "1.3 MultiDrive S (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189663, + "fields": { + "id_car_serie": 4440, + "name": "1.4 D-4D MMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189664, + "fields": { + "id_car_serie": 4441, + "name": "1.3 MultiDrive S (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189665, + "fields": { + "id_car_serie": 4441, + "name": "1.4 D-4D MMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189666, + "fields": { + "id_car_serie": 4441, + "name": "1.5 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189667, + "fields": { + "id_car_serie": 4441, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189668, + "fields": { + "id_car_serie": 4487, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189669, + "fields": { + "id_car_serie": 4487, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189670, + "fields": { + "id_car_serie": 4487, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189671, + "fields": { + "id_car_serie": 4487, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189672, + "fields": { + "id_car_serie": 4487, + "name": "1.8 GTI AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189673, + "fields": { + "id_car_serie": 4487, + "name": "1.8 GTI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189674, + "fields": { + "id_car_serie": 4492, + "name": "3.0 D T 4WD AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189675, + "fields": { + "id_car_serie": 4492, + "name": "3.0 D T 4WD MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189676, + "fields": { + "id_car_serie": 4492, + "name": "3.0 D T 4WD MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189677, + "fields": { + "id_car_serie": 4493, + "name": "3.0 D T 4WD AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189678, + "fields": { + "id_car_serie": 4493, + "name": "3.0 D T 4WD MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189679, + "fields": { + "id_car_serie": 4493, + "name": "4.2 D T 4WD AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189680, + "fields": { + "id_car_serie": 4493, + "name": "4.2 D T 4WD MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189681, + "fields": { + "id_car_serie": 4493, + "name": "4.5 4WD AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189682, + "fields": { + "id_car_serie": 4493, + "name": "4.8 4WD AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189683, + "fields": { + "id_car_serie": 4495, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189684, + "fields": { + "id_car_serie": 4495, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189685, + "fields": { + "id_car_serie": 4495, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189686, + "fields": { + "id_car_serie": 4495, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189687, + "fields": { + "id_car_serie": 4495, + "name": "2.3 D AT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189688, + "fields": { + "id_car_serie": 4495, + "name": "2.3 D AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189689, + "fields": { + "id_car_serie": 4497, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189690, + "fields": { + "id_car_serie": 4497, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189691, + "fields": { + "id_car_serie": 4497, + "name": "2.5 Turbo AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189692, + "fields": { + "id_car_serie": 4497, + "name": "2.5 Turbo MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189693, + "fields": { + "id_car_serie": 4498, + "name": "1.8 TI AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189694, + "fields": { + "id_car_serie": 4498, + "name": "1.8 TI MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189695, + "fields": { + "id_car_serie": 4498, + "name": "1.8 L MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189696, + "fields": { + "id_car_serie": 4498, + "name": "1.8 TI MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189697, + "fields": { + "id_car_serie": 4498, + "name": "1.8 TI-EX MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189698, + "fields": { + "id_car_serie": 4498, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189699, + "fields": { + "id_car_serie": 4498, + "name": "2.0 Turbo MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189700, + "fields": { + "id_car_serie": 4498, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189701, + "fields": { + "id_car_serie": 4498, + "name": "2.0 Turbo RS MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189702, + "fields": { + "id_car_serie": 4498, + "name": "2.8 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189703, + "fields": { + "id_car_serie": 4498, + "name": "2.8D AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189704, + "fields": { + "id_car_serie": 4498, + "name": "2.8D MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189705, + "fields": { + "id_car_serie": 4498, + "name": "2.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189706, + "fields": { + "id_car_serie": 4499, + "name": "2.5 T AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189707, + "fields": { + "id_car_serie": 4499, + "name": "2.5 T MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189708, + "fields": { + "id_car_serie": 4500, + "name": "2.4 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189709, + "fields": { + "id_car_serie": 4501, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189710, + "fields": { + "id_car_serie": 4507, + "name": "2.0 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189711, + "fields": { + "id_car_serie": 4507, + "name": "2.4 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189712, + "fields": { + "id_car_serie": 4509, + "name": "1.5 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189715, + "fields": { + "id_car_serie": 4518, + "name": "1.5 AT Overdrive (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189716, + "fields": { + "id_car_serie": 4518, + "name": "1.5 AT Overdrive (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189717, + "fields": { + "id_car_serie": 4518, + "name": "1.5 MT Overdrive (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189718, + "fields": { + "id_car_serie": 4519, + "name": "1.5 AT Overdrive (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189719, + "fields": { + "id_car_serie": 4519, + "name": "1.5 MT Overdrive (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189720, + "fields": { + "id_car_serie": 4522, + "name": "1.3 CVT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189721, + "fields": { + "id_car_serie": 4522, + "name": "1.5 CVT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189722, + "fields": { + "id_car_serie": 4524, + "name": "2.4 CVT 8seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189723, + "fields": { + "id_car_serie": 4524, + "name": "2.4 CVT 7seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189724, + "fields": { + "id_car_serie": 4525, + "name": "1.8 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189725, + "fields": { + "id_car_serie": 4532, + "name": "4.7 AT 4WD (27 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189726, + "fields": { + "id_car_serie": 4534, + "name": "1.8F MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189727, + "fields": { + "id_car_serie": 4534, + "name": "2.0F MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189728, + "fields": { + "id_car_serie": 4534, + "name": "2.0 TD Powershift (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189729, + "fields": { + "id_car_serie": 4534, + "name": "2.4i Geartronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189730, + "fields": { + "id_car_serie": 4534, + "name": "2.4i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189731, + "fields": { + "id_car_serie": 4535, + "name": "1.6 T4 Turbo Powershift (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189732, + "fields": { + "id_car_serie": 4535, + "name": "2.0 D3 Turbo Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189733, + "fields": { + "id_car_serie": 4535, + "name": "2.0T Turbo Powershift (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189734, + "fields": { + "id_car_serie": 4536, + "name": "1.6 T4 Turbo Geartronic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189735, + "fields": { + "id_car_serie": 4536, + "name": "1.6 T4F Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189736, + "fields": { + "id_car_serie": 4536, + "name": "1.6 TD DRIVe MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189737, + "fields": { + "id_car_serie": 4536, + "name": "2.0 D3 Turbo Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189738, + "fields": { + "id_car_serie": 4536, + "name": "2.0F Turbo MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189739, + "fields": { + "id_car_serie": 4536, + "name": "2.0 Turbo MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189740, + "fields": { + "id_car_serie": 4536, + "name": "2.4 D5 Turbo Geartronic (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189741, + "fields": { + "id_car_serie": 4536, + "name": "2.4 D5 Turbo Geartronic AWD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189742, + "fields": { + "id_car_serie": 4536, + "name": "2.4 D5 Turbo MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189743, + "fields": { + "id_car_serie": 4536, + "name": "2.5F Turbo Geartronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189744, + "fields": { + "id_car_serie": 4536, + "name": "2.5 T5 Turbo Geartronic (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189745, + "fields": { + "id_car_serie": 4536, + "name": "2.5 T5 Turbo MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189746, + "fields": { + "id_car_serie": 4536, + "name": "2.5F Turbo MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189747, + "fields": { + "id_car_serie": 4536, + "name": "3.0 T6 Turbo Geartronic AWD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189748, + "fields": { + "id_car_serie": 4536, + "name": "4.4 Geartronic AWD (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189749, + "fields": { + "id_car_serie": 4538, + "name": "1.6 TD DRIVe MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189750, + "fields": { + "id_car_serie": 4538, + "name": "1.6 T4 Powershift (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189751, + "fields": { + "id_car_serie": 4538, + "name": "1.6 D2 Powershift (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189752, + "fields": { + "id_car_serie": 4538, + "name": "2.0 T MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189753, + "fields": { + "id_car_serie": 4538, + "name": "2.4 D5 Geartronic AWD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189754, + "fields": { + "id_car_serie": 4538, + "name": "2.4 D5 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189755, + "fields": { + "id_car_serie": 4538, + "name": "2.4 D5 MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189756, + "fields": { + "id_car_serie": 4538, + "name": "3.0 T6 Geartronic AWD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189757, + "fields": { + "id_car_serie": 4540, + "name": "3.0 T6 Geartronic AWD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189758, + "fields": { + "id_car_serie": 4540, + "name": "3.0 T6 Geartronic AWD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189759, + "fields": { + "id_car_serie": 4543, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189760, + "fields": { + "id_car_serie": 4543, + "name": "1.8 AMT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189761, + "fields": { + "id_car_serie": 4546, + "name": "1.0 MT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189762, + "fields": { + "id_car_serie": 4550, + "name": "1.1i MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189763, + "fields": { + "id_car_serie": 4550, + "name": "1.3i MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189765, + "fields": { + "id_car_serie": 4558, + "name": "21128 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189772, + "fields": { + "id_car_serie": 4611, + "name": "2.3 TD MT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189773, + "fields": { + "id_car_serie": 4612, + "name": "2.3 D MT 4WD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189774, + "fields": { + "id_car_serie": 4613, + "name": "2.2 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189775, + "fields": { + "id_car_serie": 4620, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189776, + "fields": { + "id_car_serie": 4620, + "name": "2.0 TDI MT quattro (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189777, + "fields": { + "id_car_serie": 4620, + "name": "2.0 TDI multitronic (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189778, + "fields": { + "id_car_serie": 4620, + "name": "3.0 TDI clean diesel tiptronic quattro (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189779, + "fields": { + "id_car_serie": 4620, + "name": "3.0 TDI S tronic quattro (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189780, + "fields": { + "id_car_serie": 4621, + "name": "2.0 TDI multitronic (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189781, + "fields": { + "id_car_serie": 4621, + "name": "3.0 TDI clean diesel tiptronic quattro (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189782, + "fields": { + "id_car_serie": 4621, + "name": "3.0 TDI S tronic quattro (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189783, + "fields": { + "id_car_serie": 4622, + "name": "2.0 TDI multitronic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189784, + "fields": { + "id_car_serie": 4622, + "name": "3.1 FSI tiptronic quattro (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189785, + "fields": { + "id_car_serie": 4622, + "name": "3.1 FSI MT quattro (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189786, + "fields": { + "id_car_serie": 4622, + "name": "3.1 FSI multitronic (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189787, + "fields": { + "id_car_serie": 4623, + "name": "3.1 FSI tiptronic quattro (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189788, + "fields": { + "id_car_serie": 4623, + "name": "3.1 FSI MT quattro (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189789, + "fields": { + "id_car_serie": 4623, + "name": "3.1 FSI multitronic (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189790, + "fields": { + "id_car_serie": 4625, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189791, + "fields": { + "id_car_serie": 4625, + "name": "2.5 TDI multitronic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189792, + "fields": { + "id_car_serie": 4640, + "name": "1.8 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189793, + "fields": { + "id_car_serie": 4640, + "name": "1.8 MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189794, + "fields": { + "id_car_serie": 4640, + "name": "1.8 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189795, + "fields": { + "id_car_serie": 4640, + "name": "1.8 MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189796, + "fields": { + "id_car_serie": 4640, + "name": "1.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189797, + "fields": { + "id_car_serie": 4644, + "name": "3.5 AT 4WD (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189798, + "fields": { + "id_car_serie": 4652, + "name": "3.5 AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189799, + "fields": { + "id_car_serie": 4652, + "name": "3.5 MT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189800, + "fields": { + "id_car_serie": 4655, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189801, + "fields": { + "id_car_serie": 4655, + "name": "3.5 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189802, + "fields": { + "id_car_serie": 4661, + "name": "2.4 JTD MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189803, + "fields": { + "id_car_serie": 4661, + "name": "2.4 JTD MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189804, + "fields": { + "id_car_serie": 4661, + "name": "2.4 JTD MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189805, + "fields": { + "id_car_serie": 4661, + "name": "3.2 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189806, + "fields": { + "id_car_serie": 5758, + "name": "5.7 AT AWD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189807, + "fields": { + "id_car_serie": 8450, + "name": "2.0 TCDi MT 9 seat (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189808, + "fields": { + "id_car_serie": 8450, + "name": "2.0 TCDi MT 10 seat (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189809, + "fields": { + "id_car_serie": 8450, + "name": "2.0 TCDi MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189810, + "fields": { + "id_car_serie": 8450, + "name": "2.5 TD MT 9 seat (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189811, + "fields": { + "id_car_serie": 8450, + "name": "2.5 TD MT 10 seat (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189812, + "fields": { + "id_car_serie": 8450, + "name": "2.5 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189813, + "fields": { + "id_car_serie": 5756, + "name": "4.8 AT AWD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189814, + "fields": { + "id_car_serie": 5756, + "name": "5.3 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189815, + "fields": { + "id_car_serie": 5756, + "name": "5.3 FlexFuel AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189816, + "fields": { + "id_car_serie": 8451, + "name": "6.1 AT SRT8 (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189817, + "fields": { + "id_car_serie": 5749, + "name": "2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189818, + "fields": { + "id_car_serie": 5749, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189819, + "fields": { + "id_car_serie": 5748, + "name": "1.8 4AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189820, + "fields": { + "id_car_serie": 5748, + "name": "1.8 3AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189821, + "fields": { + "id_car_serie": 5747, + "name": "2.0 LPG AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189822, + "fields": { + "id_car_serie": 5747, + "name": "2.4 AT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189823, + "fields": { + "id_car_serie": 5747, + "name": "2.4 MT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189824, + "fields": { + "id_car_serie": 8452, + "name": "6.1 AT SRT-8 (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189825, + "fields": { + "id_car_serie": 5743, + "name": "1.3 AT AWD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189826, + "fields": { + "id_car_serie": 8440, + "name": "4.1 AT (168 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189827, + "fields": { + "id_car_serie": 5739, + "name": "2.4 6Hydra-Matic (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189828, + "fields": { + "id_car_serie": 5739, + "name": "2.4 Hybrid Hydra-Matic (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189829, + "fields": { + "id_car_serie": 5739, + "name": "2.4 4Hydra-Matic (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189830, + "fields": { + "id_car_serie": 5739, + "name": "3.5 Hydra-Matic (217 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189831, + "fields": { + "id_car_serie": 5739, + "name": "3.6 Hydra-Matic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189832, + "fields": { + "id_car_serie": 5738, + "name": "2.4 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189833, + "fields": { + "id_car_serie": 5737, + "name": "2.2 Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189834, + "fields": { + "id_car_serie": 5736, + "name": "3.5 Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189835, + "fields": { + "id_car_serie": 5735, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189836, + "fields": { + "id_car_serie": 5735, + "name": "3.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189837, + "fields": { + "id_car_serie": 5735, + "name": "3.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189838, + "fields": { + "id_car_serie": 5735, + "name": "4.4 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189839, + "fields": { + "id_car_serie": 5735, + "name": "5.0 AT California (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189840, + "fields": { + "id_car_serie": 5735, + "name": "5.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189841, + "fields": { + "id_car_serie": 5735, + "name": "5.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189842, + "fields": { + "id_car_serie": 5734, + "name": "3.1 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189843, + "fields": { + "id_car_serie": 5734, + "name": "3.1 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189844, + "fields": { + "id_car_serie": 5733, + "name": "3.0 TDi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189845, + "fields": { + "id_car_serie": 5732, + "name": "3.1i AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189846, + "fields": { + "id_car_serie": 5732, + "name": "3.8i AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189847, + "fields": { + "id_car_serie": 5727, + "name": "2.2 Ecotec AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189848, + "fields": { + "id_car_serie": 5727, + "name": "2.2 Ecotec MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189849, + "fields": { + "id_car_serie": 5727, + "name": "2.4 Ecotec AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189850, + "fields": { + "id_car_serie": 5727, + "name": "2.4 Ecotec MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189853, + "fields": { + "id_car_serie": 8436, + "name": "1.5i MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189854, + "fields": { + "id_car_serie": 8437, + "name": "3.6 5AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189855, + "fields": { + "id_car_serie": 8437, + "name": "3.6 4AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189856, + "fields": { + "id_car_serie": 8437, + "name": "6.0 AT (349 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189857, + "fields": { + "id_car_serie": 8437, + "name": "6.0 MT (349 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189858, + "fields": { + "id_car_serie": 5718, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189859, + "fields": { + "id_car_serie": 5718, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189860, + "fields": { + "id_car_serie": 5718, + "name": "2.2 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189861, + "fields": { + "id_car_serie": 5718, + "name": "2.2 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189862, + "fields": { + "id_car_serie": 5718, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189863, + "fields": { + "id_car_serie": 5718, + "name": "2.2 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189864, + "fields": { + "id_car_serie": 5718, + "name": "2.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189865, + "fields": { + "id_car_serie": 5718, + "name": "2.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189866, + "fields": { + "id_car_serie": 5718, + "name": "3.1 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189867, + "fields": { + "id_car_serie": 5718, + "name": "3.1 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189868, + "fields": { + "id_car_serie": 5718, + "name": "3.1 LTZ AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189869, + "fields": { + "id_car_serie": 5718, + "name": "3.1 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189870, + "fields": { + "id_car_serie": 5718, + "name": "3.1 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189871, + "fields": { + "id_car_serie": 5718, + "name": "3.1 LTZ MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189872, + "fields": { + "id_car_serie": 5718, + "name": "3.1 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189873, + "fields": { + "id_car_serie": 8432, + "name": "2.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189874, + "fields": { + "id_car_serie": 8432, + "name": "2.5 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189876, + "fields": { + "id_car_serie": 8432, + "name": "2.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189878, + "fields": { + "id_car_serie": 8432, + "name": "2.5 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189879, + "fields": { + "id_car_serie": 8432, + "name": "2.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189880, + "fields": { + "id_car_serie": 8432, + "name": "2.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189881, + "fields": { + "id_car_serie": 8432, + "name": "2.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189882, + "fields": { + "id_car_serie": 8432, + "name": "2.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189883, + "fields": { + "id_car_serie": 5713, + "name": "1.6 4MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189884, + "fields": { + "id_car_serie": 5712, + "name": "1.0 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189885, + "fields": { + "id_car_serie": 5711, + "name": "2.5 Turbo Hydra-Matic (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189886, + "fields": { + "id_car_serie": 5711, + "name": "2.8 Turbo Hydra-Matic Overdrave (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189887, + "fields": { + "id_car_serie": 5711, + "name": "2.8 Turbo Hydra-Matic (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189888, + "fields": { + "id_car_serie": 5708, + "name": "4.1 Turbo Hydra-Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189889, + "fields": { + "id_car_serie": 5708, + "name": "5.0 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189890, + "fields": { + "id_car_serie": 5708, + "name": "5.7 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189891, + "fields": { + "id_car_serie": 5707, + "name": "5.7 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189892, + "fields": { + "id_car_serie": 5705, + "name": "5.7 AT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189893, + "fields": { + "id_car_serie": 5704, + "name": "5.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189894, + "fields": { + "id_car_serie": 5704, + "name": "5.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189895, + "fields": { + "id_car_serie": 5703, + "name": "5.7 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189896, + "fields": { + "id_car_serie": 5702, + "name": "5.7 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189897, + "fields": { + "id_car_serie": 5701, + "name": "3.6 V6 AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189898, + "fields": { + "id_car_serie": 5701, + "name": "3.6 V6 MT (328 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189899, + "fields": { + "id_car_serie": 5701, + "name": "6.2 V8 AT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189900, + "fields": { + "id_car_serie": 5700, + "name": "6.2 V8 AT (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189901, + "fields": { + "id_car_serie": 5700, + "name": "6.2 V8 MT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189902, + "fields": { + "id_car_serie": 5695, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189903, + "fields": { + "id_car_serie": 5695, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189904, + "fields": { + "id_car_serie": 5695, + "name": "2.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189905, + "fields": { + "id_car_serie": 5695, + "name": "2.2 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189906, + "fields": { + "id_car_serie": 5695, + "name": "2.3 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189907, + "fields": { + "id_car_serie": 5695, + "name": "3.1 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189908, + "fields": { + "id_car_serie": 5695, + "name": "3.1 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189909, + "fields": { + "id_car_serie": 5694, + "name": "1.2 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189910, + "fields": { + "id_car_serie": 5694, + "name": "1.4 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189911, + "fields": { + "id_car_serie": 5694, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189912, + "fields": { + "id_car_serie": 5694, + "name": "1.4 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189913, + "fields": { + "id_car_serie": 5694, + "name": "1.5 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189914, + "fields": { + "id_car_serie": 5694, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189915, + "fields": { + "id_car_serie": 5693, + "name": "1.2i MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189916, + "fields": { + "id_car_serie": 5693, + "name": "1.4i AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189917, + "fields": { + "id_car_serie": 5693, + "name": "1.4i MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189918, + "fields": { + "id_car_serie": 5693, + "name": "1.4i MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189919, + "fields": { + "id_car_serie": 5693, + "name": "1.5i MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189920, + "fields": { + "id_car_serie": 5693, + "name": "1.6i MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189921, + "fields": { + "id_car_serie": 5692, + "name": "1.5 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189922, + "fields": { + "id_car_serie": 5692, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189923, + "fields": { + "id_car_serie": 5692, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189924, + "fields": { + "id_car_serie": 5692, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189925, + "fields": { + "id_car_serie": 5691, + "name": "1.5 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189926, + "fields": { + "id_car_serie": 5691, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189927, + "fields": { + "id_car_serie": 5690, + "name": "1.5 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189928, + "fields": { + "id_car_serie": 5690, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189929, + "fields": { + "id_car_serie": 8426, + "name": "5.3 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189930, + "fields": { + "id_car_serie": 8426, + "name": "5.3 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189931, + "fields": { + "id_car_serie": 8426, + "name": "8.1 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189932, + "fields": { + "id_car_serie": 8426, + "name": "8.1 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189933, + "fields": { + "id_car_serie": 8411, + "name": "4.4i AT XLR-V (443 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189934, + "fields": { + "id_car_serie": 8411, + "name": "4.6i AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189935, + "fields": { + "id_car_serie": 5656, + "name": "4.6i AT (273 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189936, + "fields": { + "id_car_serie": 5656, + "name": "4.6i AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189937, + "fields": { + "id_car_serie": 5656, + "name": "4.9i AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189938, + "fields": { + "id_car_serie": 4848, + "name": "xDrive20i AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189939, + "fields": { + "id_car_serie": 4848, + "name": "sDrive20i AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189940, + "fields": { + "id_car_serie": 4848, + "name": "xDrive18d AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189941, + "fields": { + "id_car_serie": 4848, + "name": "sDrive20d AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189942, + "fields": { + "id_car_serie": 4848, + "name": "sDrive18d AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189943, + "fields": { + "id_car_serie": 4848, + "name": "xDrive23d AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189944, + "fields": { + "id_car_serie": 4848, + "name": "xDrive20d AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189945, + "fields": { + "id_car_serie": 4848, + "name": "sDrive18i AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189946, + "fields": { + "id_car_serie": 4848, + "name": "xDrive28i AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189947, + "fields": { + "id_car_serie": 4848, + "name": "sDrive20d MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189948, + "fields": { + "id_car_serie": 4848, + "name": "sDrive18i MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189949, + "fields": { + "id_car_serie": 4848, + "name": "sDrive18d MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189950, + "fields": { + "id_car_serie": 4848, + "name": "xDrive28i MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189951, + "fields": { + "id_car_serie": 4848, + "name": "xDrive20i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189952, + "fields": { + "id_car_serie": 4848, + "name": "sDrive20d EfficientDynamics Edition MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189953, + "fields": { + "id_car_serie": 4848, + "name": "xDrive18d MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189954, + "fields": { + "id_car_serie": 4848, + "name": "xDrive20d MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189955, + "fields": { + "id_car_serie": 4848, + "name": "sDrive20i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189956, + "fields": { + "id_car_serie": 4848, + "name": "xDrive23d MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189957, + "fields": { + "id_car_serie": 4848, + "name": "xDrive25i AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189958, + "fields": { + "id_car_serie": 4848, + "name": "xDrive28i 6AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189959, + "fields": { + "id_car_serie": 4849, + "name": "sDrive18d AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189960, + "fields": { + "id_car_serie": 4849, + "name": "xDrive20i AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189961, + "fields": { + "id_car_serie": 4849, + "name": "xDrive28i AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189962, + "fields": { + "id_car_serie": 4849, + "name": "xDrive20d AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189963, + "fields": { + "id_car_serie": 4849, + "name": "xDrive20d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189964, + "fields": { + "id_car_serie": 4849, + "name": "xDrive20i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189965, + "fields": { + "id_car_serie": 4849, + "name": "sDrive18d MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189966, + "fields": { + "id_car_serie": 4849, + "name": "xDrive35d AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189967, + "fields": { + "id_car_serie": 4849, + "name": "xDrive35i AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189968, + "fields": { + "id_car_serie": 4849, + "name": "xDrive28i AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189969, + "fields": { + "id_car_serie": 4849, + "name": "xDrive30d AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189970, + "fields": { + "id_car_serie": 4850, + "name": "2.5i AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189971, + "fields": { + "id_car_serie": 4850, + "name": "2.5i AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189972, + "fields": { + "id_car_serie": 4850, + "name": "2.5i MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189973, + "fields": { + "id_car_serie": 4850, + "name": "2.5i MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189974, + "fields": { + "id_car_serie": 4850, + "name": "3.0d AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189975, + "fields": { + "id_car_serie": 4850, + "name": "3.0i AT (227 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189976, + "fields": { + "id_car_serie": 4850, + "name": "3.0d AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189977, + "fields": { + "id_car_serie": 4850, + "name": "3.0i AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189978, + "fields": { + "id_car_serie": 4850, + "name": "3.0i MT (227 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189979, + "fields": { + "id_car_serie": 4850, + "name": "3.0i MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189980, + "fields": { + "id_car_serie": 4850, + "name": "3.0d MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189981, + "fields": { + "id_car_serie": 4850, + "name": "3.0d MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189982, + "fields": { + "id_car_serie": 4851, + "name": "xDrive28i Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189983, + "fields": { + "id_car_serie": 4851, + "name": "xDrive20i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189984, + "fields": { + "id_car_serie": 4851, + "name": "xDrive20d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189985, + "fields": { + "id_car_serie": 4851, + "name": "xDrive20d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189986, + "fields": { + "id_car_serie": 4851, + "name": "xDrive30d Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189987, + "fields": { + "id_car_serie": 4851, + "name": "xDrive35i Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189988, + "fields": { + "id_car_serie": 4851, + "name": "xDrive35d Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189989, + "fields": { + "id_car_serie": 4855, + "name": "2.5i AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189990, + "fields": { + "id_car_serie": 4855, + "name": "2.5i MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189991, + "fields": { + "id_car_serie": 4855, + "name": "3.0i AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189992, + "fields": { + "id_car_serie": 4855, + "name": "3.0i MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189993, + "fields": { + "id_car_serie": 8844, + "name": "4.6 AT (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189994, + "fields": { + "id_car_serie": 5649, + "name": "Vortec 6.0L V8 SFI Hybrid (337 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189995, + "fields": { + "id_car_serie": 5649, + "name": "Vortec 6.2L V8 SFI (409 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189996, + "fields": { + "id_car_serie": 4897, + "name": "3.6 AT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189997, + "fields": { + "id_car_serie": 4897, + "name": "3.8 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189998, + "fields": { + "id_car_serie": 4897, + "name": "5.3 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 189999, + "fields": { + "id_car_serie": 5647, + "name": "4.6i AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190000, + "fields": { + "id_car_serie": 5647, + "name": "4.6i AT Perfomance (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190001, + "fields": { + "id_car_serie": 5645, + "name": "2.6Li AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190002, + "fields": { + "id_car_serie": 5645, + "name": "2.6Li MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190003, + "fields": { + "id_car_serie": 5645, + "name": "2.8i AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190004, + "fields": { + "id_car_serie": 5645, + "name": "2.8i MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190005, + "fields": { + "id_car_serie": 5645, + "name": "3.2i AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190006, + "fields": { + "id_car_serie": 5645, + "name": "3.2i MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190007, + "fields": { + "id_car_serie": 5645, + "name": "3.6i AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190008, + "fields": { + "id_car_serie": 5645, + "name": "3.6i MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190009, + "fields": { + "id_car_serie": 5645, + "name": "5.7i MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190010, + "fields": { + "id_car_serie": 5645, + "name": "6.0i MT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190011, + "fields": { + "id_car_serie": 4916, + "name": "1.1 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190012, + "fields": { + "id_car_serie": 4916, + "name": "1.1 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190013, + "fields": { + "id_car_serie": 5470, + "name": "1.8T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190014, + "fields": { + "id_car_serie": 5470, + "name": "1.8T MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190015, + "fields": { + "id_car_serie": 8405, + "name": "4.6i AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190016, + "fields": { + "id_car_serie": 8405, + "name": "4.6i AT (273 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190017, + "fields": { + "id_car_serie": 8405, + "name": "4.9i AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190018, + "fields": { + "id_car_serie": 5644, + "name": "2.8 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190019, + "fields": { + "id_car_serie": 5644, + "name": "3.6 V6 VVT DI RWD (322 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190020, + "fields": { + "id_car_serie": 5644, + "name": "3.6 V6 VVT DI AWD (322 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190021, + "fields": { + "id_car_serie": 5644, + "name": "3.6 V6 VVT DI AWD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190022, + "fields": { + "id_car_serie": 5644, + "name": "3.6 V6 VVT DI RWD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190023, + "fields": { + "id_car_serie": 5643, + "name": "6.2 AT (564 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190024, + "fields": { + "id_car_serie": 5643, + "name": "6.2 MT (564 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190025, + "fields": { + "id_car_serie": 5640, + "name": "5.0i AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190026, + "fields": { + "id_car_serie": 5640, + "name": "5.7i AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190027, + "fields": { + "id_car_serie": 8403, + "name": "4.5i AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190028, + "fields": { + "id_car_serie": 8403, + "name": "4.6i AT (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190029, + "fields": { + "id_car_serie": 5620, + "name": "3.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190030, + "fields": { + "id_car_serie": 5620, + "name": "3.8 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190031, + "fields": { + "id_car_serie": 9124, + "name": "2.0D MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190032, + "fields": { + "id_car_serie": 8368, + "name": "xDrive35i Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190033, + "fields": { + "id_car_serie": 8368, + "name": "xDrive30d Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190034, + "fields": { + "id_car_serie": 8368, + "name": "xDrive40d Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190035, + "fields": { + "id_car_serie": 8368, + "name": "xDrive30d Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190036, + "fields": { + "id_car_serie": 8368, + "name": "M50d Servotronic (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190037, + "fields": { + "id_car_serie": 8368, + "name": "xDrive50i Steptronic (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190038, + "fields": { + "id_car_serie": 5593, + "name": "xDrive35d AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190039, + "fields": { + "id_car_serie": 5593, + "name": "xDrive30d AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190040, + "fields": { + "id_car_serie": 5593, + "name": "xDrive40d AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190041, + "fields": { + "id_car_serie": 5593, + "name": "xDrive35i 8AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190042, + "fields": { + "id_car_serie": 5593, + "name": "xDrive30d AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190043, + "fields": { + "id_car_serie": 5593, + "name": "xDrive35i 6AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190044, + "fields": { + "id_car_serie": 5593, + "name": "xDrive50i 6AT (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190045, + "fields": { + "id_car_serie": 5593, + "name": "xDrive50i 8AT (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190046, + "fields": { + "id_car_serie": 5593, + "name": "ActiveHybrid (485 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190047, + "fields": { + "id_car_serie": 5592, + "name": "3.0d AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190048, + "fields": { + "id_car_serie": 5592, + "name": "3.0d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190049, + "fields": { + "id_car_serie": 5592, + "name": "3.0i AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190050, + "fields": { + "id_car_serie": 5592, + "name": "3.0i MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190051, + "fields": { + "id_car_serie": 5592, + "name": "4.4i AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190052, + "fields": { + "id_car_serie": 5592, + "name": "4.6si AT (347 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190053, + "fields": { + "id_car_serie": 5591, + "name": "xDrive35d AT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190054, + "fields": { + "id_car_serie": 5591, + "name": "xDrive30i AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190055, + "fields": { + "id_car_serie": 5591, + "name": "xDrive35d AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190056, + "fields": { + "id_car_serie": 5591, + "name": "xDrive30d AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190057, + "fields": { + "id_car_serie": 5591, + "name": "xDrive30i AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190058, + "fields": { + "id_car_serie": 5591, + "name": "xDrive48i AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190059, + "fields": { + "id_car_serie": 5590, + "name": "xDrive30d Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190061, + "fields": { + "id_car_serie": 5590, + "name": "xDrive35i Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190062, + "fields": { + "id_car_serie": 5590, + "name": "xDrive40d Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190064, + "fields": { + "id_car_serie": 5590, + "name": "xDrive35d Steptronic (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190065, + "fields": { + "id_car_serie": 5590, + "name": "xDriveM50d Steptronic (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190067, + "fields": { + "id_car_serie": 5590, + "name": "xDrive50i Steptronic (407 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190069, + "fields": { + "id_car_serie": 5587, + "name": "i3 (Range Extender) (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190070, + "fields": { + "id_car_serie": 5587, + "name": "i3", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190071, + "fields": { + "id_car_serie": 5548, + "name": "6.75i AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190072, + "fields": { + "id_car_serie": 5543, + "name": "6.75 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190073, + "fields": { + "id_car_serie": 5543, + "name": "6.75 AT Turbo (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190074, + "fields": { + "id_car_serie": 5542, + "name": "6.75 Twin-Turbo AT (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190075, + "fields": { + "id_car_serie": 5528, + "name": "1.8 TFSI S tronic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190076, + "fields": { + "id_car_serie": 5528, + "name": "2.0 TFSI MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190077, + "fields": { + "id_car_serie": 5528, + "name": "2.0 TFSI quattro S tronic (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190078, + "fields": { + "id_car_serie": 5528, + "name": "2.0 TFSI S tronic (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190079, + "fields": { + "id_car_serie": 5525, + "name": "4.2 quattro MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190080, + "fields": { + "id_car_serie": 5521, + "name": "4.2 V8 quattro AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190081, + "fields": { + "id_car_serie": 5521, + "name": "4.2 V8 quattro MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190082, + "fields": { + "id_car_serie": 5511, + "name": "2.0 TFSI quattro MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190083, + "fields": { + "id_car_serie": 5510, + "name": "2.0 TFSI quattro MT (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190084, + "fields": { + "id_car_serie": 5510, + "name": "2.0 TFSI quattro S tronic (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190085, + "fields": { + "id_car_serie": 5509, + "name": "2.0 TFSI quattro MT (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190086, + "fields": { + "id_car_serie": 5509, + "name": "2.0 TFSI quattro S tronic (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190087, + "fields": { + "id_car_serie": 5496, + "name": "2.0 TFSI Hybrid tiptronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190088, + "fields": { + "id_car_serie": 5496, + "name": "3.0 TDI S tronic quattro (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190089, + "fields": { + "id_car_serie": 5489, + "name": "1.8 T MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190090, + "fields": { + "id_car_serie": 5489, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190091, + "fields": { + "id_car_serie": 5489, + "name": "1.8 T multitronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190092, + "fields": { + "id_car_serie": 5489, + "name": "1.9 TDI 6MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190093, + "fields": { + "id_car_serie": 5489, + "name": "1.9 TDI 5MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190094, + "fields": { + "id_car_serie": 5489, + "name": "1.9 TDI multitronic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190095, + "fields": { + "id_car_serie": 5489, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190097, + "fields": { + "id_car_serie": 5489, + "name": "2.0 multitronic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190098, + "fields": { + "id_car_serie": 5489, + "name": "2.4 tiptronic quattro (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190099, + "fields": { + "id_car_serie": 5489, + "name": "2.4 MT quattro (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190100, + "fields": { + "id_car_serie": 5489, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190101, + "fields": { + "id_car_serie": 5489, + "name": "2.4 multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190102, + "fields": { + "id_car_serie": 5489, + "name": "2.5 TDI tiptronic quattro (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190104, + "fields": { + "id_car_serie": 5489, + "name": "2.5 TDI tiptronic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190105, + "fields": { + "id_car_serie": 5489, + "name": "2.5 TDI MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190106, + "fields": { + "id_car_serie": 5489, + "name": "2.5 TDI MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190108, + "fields": { + "id_car_serie": 5489, + "name": "2.5 TDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190109, + "fields": { + "id_car_serie": 5489, + "name": "2.5 TDI multitronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190110, + "fields": { + "id_car_serie": 5489, + "name": "2.5 TDI multitronic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190111, + "fields": { + "id_car_serie": 5489, + "name": "2.7 T tiptronic quattro (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190112, + "fields": { + "id_car_serie": 5489, + "name": "2.7 T MT quattro (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190113, + "fields": { + "id_car_serie": 5489, + "name": "3.0 tiptronic quattro (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190114, + "fields": { + "id_car_serie": 5489, + "name": "3.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190115, + "fields": { + "id_car_serie": 5489, + "name": "3.0 MT quattro (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190116, + "fields": { + "id_car_serie": 5489, + "name": "3.0 multitronic (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190117, + "fields": { + "id_car_serie": 5489, + "name": "4.2 tiptronic quattro (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190118, + "fields": { + "id_car_serie": 5488, + "name": "1.9 TDI multitronic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190119, + "fields": { + "id_car_serie": 5487, + "name": "2.8 multitronic (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190120, + "fields": { + "id_car_serie": 5487, + "name": "3.7 tiptronic quattro (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190121, + "fields": { + "id_car_serie": 5487, + "name": "3.7 tiptronic (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190122, + "fields": { + "id_car_serie": 5487, + "name": "4.2 tiptronic quattro (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190123, + "fields": { + "id_car_serie": 5486, + "name": "2.4 tiptronic (165 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190125, + "fields": { + "id_car_serie": 5486, + "name": "2.4 multitronic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190126, + "fields": { + "id_car_serie": 5486, + "name": "2.5 TDI tiptronic quattro (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190127, + "fields": { + "id_car_serie": 5486, + "name": "2.5 TDI tiptronic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190131, + "fields": { + "id_car_serie": 5486, + "name": "2.8 MT quattro (193 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190133, + "fields": { + "id_car_serie": 5486, + "name": "2.8 multitronic (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190134, + "fields": { + "id_car_serie": 5486, + "name": "3.7 tiptronic (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190135, + "fields": { + "id_car_serie": 5486, + "name": "3.7 tiptronic quattro (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190137, + "fields": { + "id_car_serie": 5484, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190138, + "fields": { + "id_car_serie": 5484, + "name": "2.0 TFSI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190139, + "fields": { + "id_car_serie": 5484, + "name": "2.0 TDI multitronic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190140, + "fields": { + "id_car_serie": 5484, + "name": "2.0 TFSI multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190141, + "fields": { + "id_car_serie": 5484, + "name": "2.4 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190143, + "fields": { + "id_car_serie": 5484, + "name": "2.4 multitronic (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190145, + "fields": { + "id_car_serie": 5484, + "name": "2.7 TDI MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190146, + "fields": { + "id_car_serie": 5484, + "name": "2.7 TDI multitronic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190147, + "fields": { + "id_car_serie": 5484, + "name": "2.8 FSI tiptronic quattro (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190148, + "fields": { + "id_car_serie": 5484, + "name": "2.8 FSI MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190149, + "fields": { + "id_car_serie": 5484, + "name": "2.8 FSI multitronic (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190150, + "fields": { + "id_car_serie": 5484, + "name": "3.0 TDI tiptronic quattro (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190151, + "fields": { + "id_car_serie": 5484, + "name": "3.0 TDI tiptronic quattro (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190152, + "fields": { + "id_car_serie": 5484, + "name": "3.0 TDI MT quattro (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190153, + "fields": { + "id_car_serie": 5484, + "name": "3.0 TDI MT quattro (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190154, + "fields": { + "id_car_serie": 5484, + "name": "3.2 FSI tiptronic quattro (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190155, + "fields": { + "id_car_serie": 5484, + "name": "3.2 FSI MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190156, + "fields": { + "id_car_serie": 5484, + "name": "3.2 FSI MT quattro (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190157, + "fields": { + "id_car_serie": 5484, + "name": "3.2 FSI multitronic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190158, + "fields": { + "id_car_serie": 5484, + "name": "4.2 tiptronic quattro (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190159, + "fields": { + "id_car_serie": 5484, + "name": "4.2 FSI tiptronic quattro (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190164, + "fields": { + "id_car_serie": 5483, + "name": "3.2 FSI tiptronic quattro (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190165, + "fields": { + "id_car_serie": 5483, + "name": "3.2 FSI MT quattro (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190166, + "fields": { + "id_car_serie": 5482, + "name": "3.0 TDI tiptronic quattro (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190167, + "fields": { + "id_car_serie": 5482, + "name": "3.2 FSI tiptronic quattro (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190168, + "fields": { + "id_car_serie": 5482, + "name": "3.2 FSI MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190169, + "fields": { + "id_car_serie": 5482, + "name": "3.2 FSI MT quattro (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190170, + "fields": { + "id_car_serie": 5482, + "name": "3.2 FSI multitronic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190171, + "fields": { + "id_car_serie": 5482, + "name": "4.2 FSI tiptronic quattro (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190172, + "fields": { + "id_car_serie": 5479, + "name": "1.8 TFSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190173, + "fields": { + "id_car_serie": 5479, + "name": "1.8 TFSI multitronic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190175, + "fields": { + "id_car_serie": 5474, + "name": "3.2 S-tronic Quattro (250 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190177, + "fields": { + "id_car_serie": 8335, + "name": "3.0 TDI tiptronic quattro (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190178, + "fields": { + "id_car_serie": 8335, + "name": "3.0 multitronic LWB (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190179, + "fields": { + "id_car_serie": 8335, + "name": "3.0 multitronic (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190180, + "fields": { + "id_car_serie": 8335, + "name": "3.7 tiptronic quattro (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190181, + "fields": { + "id_car_serie": 8335, + "name": "4.0 TDI tiptronic quattro LWB (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190182, + "fields": { + "id_car_serie": 8335, + "name": "4.0 TDI tiptronic quattro (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190183, + "fields": { + "id_car_serie": 8335, + "name": "4.2 tiptronic quattro LWB (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190184, + "fields": { + "id_car_serie": 8335, + "name": "4.2 tiptronic quattro (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190185, + "fields": { + "id_car_serie": 8335, + "name": "4.2 tiptronic quattro LWB (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190186, + "fields": { + "id_car_serie": 8335, + "name": "6.0 tiptronic quattro (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190187, + "fields": { + "id_car_serie": 8335, + "name": "6.0 tiptronic quattro LWB (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190188, + "fields": { + "id_car_serie": 8336, + "name": "2.5 TDI tiptronic quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190189, + "fields": { + "id_car_serie": 8336, + "name": "2.5 TDI tiptronic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190190, + "fields": { + "id_car_serie": 8336, + "name": "2.5 TDI tiptronic quattro (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190191, + "fields": { + "id_car_serie": 8336, + "name": "2.5 TDI tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190192, + "fields": { + "id_car_serie": 8336, + "name": "2.5 TDI MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190193, + "fields": { + "id_car_serie": 8336, + "name": "2.5 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190194, + "fields": { + "id_car_serie": 8336, + "name": "2.8 tiptronic quattro (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190195, + "fields": { + "id_car_serie": 8336, + "name": "2.8 tiptronic (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190196, + "fields": { + "id_car_serie": 8336, + "name": "2.8 MT quattro (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190197, + "fields": { + "id_car_serie": 8336, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190198, + "fields": { + "id_car_serie": 8336, + "name": "3.3 TDI tiptronic quattro (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190199, + "fields": { + "id_car_serie": 8336, + "name": "3.7 tiptronic quattro (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190200, + "fields": { + "id_car_serie": 8336, + "name": "3.7 tiptronic (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190201, + "fields": { + "id_car_serie": 8336, + "name": "4.2 tiptronic quattro (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190202, + "fields": { + "id_car_serie": 8336, + "name": "4.2 tiptronic quattro LWB (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190203, + "fields": { + "id_car_serie": 8336, + "name": "6.0 tiptronic quattro LWB (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190204, + "fields": { + "id_car_serie": 8336, + "name": "6.0 tiptronic quattro (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190205, + "fields": { + "id_car_serie": 5461, + "name": "6.0 V12 AT (497 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190206, + "fields": { + "id_car_serie": 5458, + "name": "6.0 V12 AT (497 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190207, + "fields": { + "id_car_serie": 5451, + "name": "5.9 Sportshift (456 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190208, + "fields": { + "id_car_serie": 8327, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190209, + "fields": { + "id_car_serie": 8327, + "name": "2.2 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190210, + "fields": { + "id_car_serie": 8327, + "name": "2.2 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190211, + "fields": { + "id_car_serie": 8327, + "name": "2.3 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190212, + "fields": { + "id_car_serie": 8327, + "name": "2.3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190213, + "fields": { + "id_car_serie": 8327, + "name": "2.3 quattro MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190214, + "fields": { + "id_car_serie": 5449, + "name": "6.0 V12 AT (477 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190215, + "fields": { + "id_car_serie": 8328, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190216, + "fields": { + "id_car_serie": 8328, + "name": "2.0 D AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190217, + "fields": { + "id_car_serie": 8328, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190218, + "fields": { + "id_car_serie": 8328, + "name": "2.2 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190219, + "fields": { + "id_car_serie": 8328, + "name": "2.2 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190220, + "fields": { + "id_car_serie": 8328, + "name": "2.3 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190221, + "fields": { + "id_car_serie": 8328, + "name": "2.3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190222, + "fields": { + "id_car_serie": 8328, + "name": "2.3 quattro MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190223, + "fields": { + "id_car_serie": 5441, + "name": "3.1 D MT 4WD (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190224, + "fields": { + "id_car_serie": 5428, + "name": "1.3 MT JTD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190225, + "fields": { + "id_car_serie": 5427, + "name": "1.8 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190226, + "fields": { + "id_car_serie": 8320, + "name": "1.8 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190227, + "fields": { + "id_car_serie": 8318, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190228, + "fields": { + "id_car_serie": 5358, + "name": "2.0 TDCi PowerShift AWD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190230, + "fields": { + "id_car_serie": 10719, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190231, + "fields": { + "id_car_serie": 10719, + "name": "1.4 FSI MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190232, + "fields": { + "id_car_serie": 5369, + "name": "2.2 TD 5MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190233, + "fields": { + "id_car_serie": 5369, + "name": "2.2 TD 5MT 4x4 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190234, + "fields": { + "id_car_serie": 5369, + "name": "3.2 TD AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190235, + "fields": { + "id_car_serie": 5369, + "name": "3.2 TD MT 4x4 (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190236, + "fields": { + "id_car_serie": 5378, + "name": "2.5 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190237, + "fields": { + "id_car_serie": 5379, + "name": "1.6 4MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190238, + "fields": { + "id_car_serie": 5379, + "name": "1.8 4MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190239, + "fields": { + "id_car_serie": 5379, + "name": "2.3D MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190240, + "fields": { + "id_car_serie": 5379, + "name": "4.9 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190241, + "fields": { + "id_car_serie": 5381, + "name": "1.6 4MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190242, + "fields": { + "id_car_serie": 5381, + "name": "1.8 4MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190243, + "fields": { + "id_car_serie": 5381, + "name": "2.3 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190244, + "fields": { + "id_car_serie": 5381, + "name": "2.3D MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190245, + "fields": { + "id_car_serie": 5385, + "name": "3.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190246, + "fields": { + "id_car_serie": 5386, + "name": "3.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190249, + "fields": { + "id_car_serie": 5389, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190250, + "fields": { + "id_car_serie": 5389, + "name": "3.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190252, + "fields": { + "id_car_serie": 5391, + "name": "2.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190254, + "fields": { + "id_car_serie": 5392, + "name": "2.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190255, + "fields": { + "id_car_serie": 5392, + "name": "2.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190256, + "fields": { + "id_car_serie": 5392, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190257, + "fields": { + "id_car_serie": 5395, + "name": "3.8 AT Superchargen (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190258, + "fields": { + "id_car_serie": 5395, + "name": "3.8 4AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190259, + "fields": { + "id_car_serie": 5395, + "name": "4.6 4AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190260, + "fields": { + "id_car_serie": 5395, + "name": "4.9 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190261, + "fields": { + "id_car_serie": 5396, + "name": "2.3 Turbo Coupe MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190262, + "fields": { + "id_car_serie": 5396, + "name": "3.8 4AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190263, + "fields": { + "id_car_serie": 5396, + "name": "3.8 3AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190264, + "fields": { + "id_car_serie": 5396, + "name": "3.8 4AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190265, + "fields": { + "id_car_serie": 5396, + "name": "5.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190266, + "fields": { + "id_car_serie": 5396, + "name": "5.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190267, + "fields": { + "id_car_serie": 5396, + "name": "5.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190268, + "fields": { + "id_car_serie": 5404, + "name": "4.6 MT (307 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190269, + "fields": { + "id_car_serie": 5406, + "name": "1.8 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190270, + "fields": { + "id_car_serie": 5406, + "name": "1.8 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190271, + "fields": { + "id_car_serie": 5406, + "name": "1.8 MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190272, + "fields": { + "id_car_serie": 5763, + "name": "5.3 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190273, + "fields": { + "id_car_serie": 9121, + "name": "1.0 MT AWD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190274, + "fields": { + "id_car_serie": 9121, + "name": "1.0 MT AWD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190275, + "fields": { + "id_car_serie": 9121, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190276, + "fields": { + "id_car_serie": 9121, + "name": "1.2 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190277, + "fields": { + "id_car_serie": 5778, + "name": "3.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190278, + "fields": { + "id_car_serie": 9119, + "name": "1.0 MT AWD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190279, + "fields": { + "id_car_serie": 9119, + "name": "1.0 CVT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190280, + "fields": { + "id_car_serie": 9119, + "name": "1.0 CVT AWD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190281, + "fields": { + "id_car_serie": 9119, + "name": "1.2 MT AWD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190282, + "fields": { + "id_car_serie": 9119, + "name": "1.2 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190283, + "fields": { + "id_car_serie": 9119, + "name": "1.2 CVT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190284, + "fields": { + "id_car_serie": 9119, + "name": "1.2 CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190285, + "fields": { + "id_car_serie": 9119, + "name": "1.2 CVT AWD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190286, + "fields": { + "id_car_serie": 9119, + "name": "1.2 CVT AWD (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190287, + "fields": { + "id_car_serie": 5790, + "name": "3.3 AT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190288, + "fields": { + "id_car_serie": 5790, + "name": "3.5 AT (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190289, + "fields": { + "id_car_serie": 8468, + "name": "0.6 MT (25 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190290, + "fields": { + "id_car_serie": 8468, + "name": "0.6 MT (27 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190291, + "fields": { + "id_car_serie": 5802, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190292, + "fields": { + "id_car_serie": 5804, + "name": "1.4 HDi MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190293, + "fields": { + "id_car_serie": 5804, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190294, + "fields": { + "id_car_serie": 5804, + "name": "1.6 HDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190295, + "fields": { + "id_car_serie": 5804, + "name": "1.6 HDI VTR MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190296, + "fields": { + "id_car_serie": 8479, + "name": "1.9D MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190297, + "fields": { + "id_car_serie": 5814, + "name": "2.0 HDi MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190298, + "fields": { + "id_car_serie": 5814, + "name": "2.2 HDi AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190299, + "fields": { + "id_car_serie": 5814, + "name": "3.0 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190300, + "fields": { + "id_car_serie": 5814, + "name": "3.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190301, + "fields": { + "id_car_serie": 5834, + "name": "1.5 D MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190302, + "fields": { + "id_car_serie": 5847, + "name": "2.0 AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190303, + "fields": { + "id_car_serie": 5847, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190304, + "fields": { + "id_car_serie": 5847, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190305, + "fields": { + "id_car_serie": 5856, + "name": "1.5 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190306, + "fields": { + "id_car_serie": 5856, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190307, + "fields": { + "id_car_serie": 5857, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190308, + "fields": { + "id_car_serie": 5858, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190309, + "fields": { + "id_car_serie": 5859, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190310, + "fields": { + "id_car_serie": 5859, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190311, + "fields": { + "id_car_serie": 5860, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190312, + "fields": { + "id_car_serie": 5860, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190313, + "fields": { + "id_car_serie": 5861, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190314, + "fields": { + "id_car_serie": 9111, + "name": "2.8 AT RX 280 (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190315, + "fields": { + "id_car_serie": 5902, + "name": "0.7 CVT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190316, + "fields": { + "id_car_serie": 5902, + "name": "0.7 turbo CVT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190317, + "fields": { + "id_car_serie": 5902, + "name": "0.7 turbo CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190318, + "fields": { + "id_car_serie": 5903, + "name": "0.7 AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190319, + "fields": { + "id_car_serie": 5903, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190320, + "fields": { + "id_car_serie": 5903, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190321, + "fields": { + "id_car_serie": 5903, + "name": "0.7 MT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190322, + "fields": { + "id_car_serie": 9108, + "name": "2.3 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190323, + "fields": { + "id_car_serie": 5943, + "name": "3.7 TorqueFlite (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190324, + "fields": { + "id_car_serie": 5943, + "name": "3.7 3MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190325, + "fields": { + "id_car_serie": 5943, + "name": "5.2 V8 TorqueFlite (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190326, + "fields": { + "id_car_serie": 5943, + "name": "5.2 4MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190327, + "fields": { + "id_car_serie": 5943, + "name": "5.2 3MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190328, + "fields": { + "id_car_serie": 5943, + "name": "5.6 V8 TorqueFlite (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190329, + "fields": { + "id_car_serie": 5943, + "name": "5.6 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190330, + "fields": { + "id_car_serie": 5943, + "name": "5.6 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190331, + "fields": { + "id_car_serie": 5943, + "name": "6.3 V8 TorqueFlite (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190332, + "fields": { + "id_car_serie": 5948, + "name": "4.7 MT AWD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190333, + "fields": { + "id_car_serie": 5948, + "name": "5.9 MT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190334, + "fields": { + "id_car_serie": 5967, + "name": "4.7 MT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190335, + "fields": { + "id_car_serie": 5967, + "name": "5.7 MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190336, + "fields": { + "id_car_serie": 8337, + "name": "4.2 tiptronic quattro (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190337, + "fields": { + "id_car_serie": 5978, + "name": "8.3 MT (506 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190338, + "fields": { + "id_car_serie": 5980, + "name": "8.0 MT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190341, + "fields": { + "id_car_serie": 8541, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190342, + "fields": { + "id_car_serie": 8541, + "name": "2.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190343, + "fields": { + "id_car_serie": 8541, + "name": "2.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190344, + "fields": { + "id_car_serie": 6001, + "name": "1.6 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190345, + "fields": { + "id_car_serie": 6001, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190346, + "fields": { + "id_car_serie": 6001, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190347, + "fields": { + "id_car_serie": 6033, + "name": "1.8 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190348, + "fields": { + "id_car_serie": 6035, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190349, + "fields": { + "id_car_serie": 6038, + "name": "1.3 TD MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190350, + "fields": { + "id_car_serie": 6038, + "name": "1.8 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190351, + "fields": { + "id_car_serie": 6043, + "name": "1.9 D AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190352, + "fields": { + "id_car_serie": 6043, + "name": "1.9 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190353, + "fields": { + "id_car_serie": 6043, + "name": "1.9 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190354, + "fields": { + "id_car_serie": 6044, + "name": "1.2 MT 4x4 (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190355, + "fields": { + "id_car_serie": 6049, + "name": "1.4T MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190356, + "fields": { + "id_car_serie": 6053, + "name": "1.7 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190357, + "fields": { + "id_car_serie": 9102, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190358, + "fields": { + "id_car_serie": 9102, + "name": "1.6 TDI MT GreenLine (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190359, + "fields": { + "id_car_serie": 9102, + "name": "1.8 TSI MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190360, + "fields": { + "id_car_serie": 9102, + "name": "1.8 TSI DSG (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190361, + "fields": { + "id_car_serie": 9102, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190362, + "fields": { + "id_car_serie": 6077, + "name": "1.6 TDCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190363, + "fields": { + "id_car_serie": 6077, + "name": "2.0 TDCi DPF Powershift (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190364, + "fields": { + "id_car_serie": 6078, + "name": "1.6 TDCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190365, + "fields": { + "id_car_serie": 6078, + "name": "1.6 TDCi DPF CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190366, + "fields": { + "id_car_serie": 6078, + "name": "1.8 Flexi-fuel MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190367, + "fields": { + "id_car_serie": 6078, + "name": "1.8 CVT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190368, + "fields": { + "id_car_serie": 6078, + "name": "2.0 CNG MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190369, + "fields": { + "id_car_serie": 6095, + "name": "1.8 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190370, + "fields": { + "id_car_serie": 6096, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190371, + "fields": { + "id_car_serie": 6096, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190372, + "fields": { + "id_car_serie": 6098, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190373, + "fields": { + "id_car_serie": 6099, + "name": "1.3 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190374, + "fields": { + "id_car_serie": 6099, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190375, + "fields": { + "id_car_serie": 6101, + "name": "1.3 4MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190376, + "fields": { + "id_car_serie": 6102, + "name": "1.6 MT XR3i (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190377, + "fields": { + "id_car_serie": 6102, + "name": "1.6 MT XR3 alc. (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190378, + "fields": { + "id_car_serie": 6102, + "name": "1.6 MT XR3i (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190379, + "fields": { + "id_car_serie": 6102, + "name": "1.6 MT XR3i (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190380, + "fields": { + "id_car_serie": 6102, + "name": "1.8 MT XR3 alc. (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190381, + "fields": { + "id_car_serie": 6102, + "name": "1.8 MT XR3 (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190382, + "fields": { + "id_car_serie": 6103, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190383, + "fields": { + "id_car_serie": 6103, + "name": "1.3 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190384, + "fields": { + "id_car_serie": 6103, + "name": "1.3 4MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190385, + "fields": { + "id_car_serie": 6103, + "name": "1.4i MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190386, + "fields": { + "id_car_serie": 6103, + "name": "1.4 4MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190387, + "fields": { + "id_car_serie": 6103, + "name": "1.4 CTX (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190388, + "fields": { + "id_car_serie": 6103, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190389, + "fields": { + "id_car_serie": 6103, + "name": "1.6i MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190390, + "fields": { + "id_car_serie": 6103, + "name": "1.6 MT alc. (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190391, + "fields": { + "id_car_serie": 6103, + "name": "1.6 MT alc. (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190393, + "fields": { + "id_car_serie": 6103, + "name": "1.6 CTX (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190394, + "fields": { + "id_car_serie": 6103, + "name": "1.8 MT alc. (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190395, + "fields": { + "id_car_serie": 6103, + "name": "1.8 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190396, + "fields": { + "id_car_serie": 6103, + "name": "1.8 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190397, + "fields": { + "id_car_serie": 6103, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190398, + "fields": { + "id_car_serie": 6104, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190399, + "fields": { + "id_car_serie": 6104, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190400, + "fields": { + "id_car_serie": 6104, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190401, + "fields": { + "id_car_serie": 6104, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190402, + "fields": { + "id_car_serie": 6104, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190404, + "fields": { + "id_car_serie": 6106, + "name": "1.1 5MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190406, + "fields": { + "id_car_serie": 6106, + "name": "1.4 Alc. MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190407, + "fields": { + "id_car_serie": 6106, + "name": "1.4 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190409, + "fields": { + "id_car_serie": 6106, + "name": "1.3 5MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190411, + "fields": { + "id_car_serie": 6106, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190412, + "fields": { + "id_car_serie": 6106, + "name": "1.6 4MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190413, + "fields": { + "id_car_serie": 6106, + "name": "1.6 5MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190414, + "fields": { + "id_car_serie": 6106, + "name": "1.6 Alc. 4MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190415, + "fields": { + "id_car_serie": 6107, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190416, + "fields": { + "id_car_serie": 6107, + "name": "1.3 5MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190417, + "fields": { + "id_car_serie": 6107, + "name": "1.3 4MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190418, + "fields": { + "id_car_serie": 6107, + "name": "1.4 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190419, + "fields": { + "id_car_serie": 6107, + "name": "1.4 CTX (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190420, + "fields": { + "id_car_serie": 6107, + "name": "1.6 MT alc. (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190421, + "fields": { + "id_car_serie": 6107, + "name": "1.6 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190422, + "fields": { + "id_car_serie": 6107, + "name": "1.6 MT alc. (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190423, + "fields": { + "id_car_serie": 6107, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190424, + "fields": { + "id_car_serie": 6107, + "name": "1.6 MT XR3 alc. (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190425, + "fields": { + "id_car_serie": 6107, + "name": "1.6 CTX (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190426, + "fields": { + "id_car_serie": 6107, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190427, + "fields": { + "id_car_serie": 6107, + "name": "1.8 MT alc. (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190428, + "fields": { + "id_car_serie": 6107, + "name": "1.8 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190429, + "fields": { + "id_car_serie": 6107, + "name": "1.8 MT XR3 (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190430, + "fields": { + "id_car_serie": 6108, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190431, + "fields": { + "id_car_serie": 6109, + "name": "1.1 MT (55 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190433, + "fields": { + "id_car_serie": 6109, + "name": "1.1 4MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190434, + "fields": { + "id_car_serie": 6109, + "name": "1.1 5MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190437, + "fields": { + "id_car_serie": 6109, + "name": "1.6 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190438, + "fields": { + "id_car_serie": 6109, + "name": "1.6 5MT (79 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190439, + "fields": { + "id_car_serie": 6109, + "name": "1.6 4MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190441, + "fields": { + "id_car_serie": 6109, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190442, + "fields": { + "id_car_serie": 6110, + "name": "1.1 MT (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190443, + "fields": { + "id_car_serie": 6110, + "name": "1.1 S MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190444, + "fields": { + "id_car_serie": 6110, + "name": "1.3 AT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190445, + "fields": { + "id_car_serie": 6110, + "name": "1.6 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190446, + "fields": { + "id_car_serie": 6110, + "name": "1.6 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190447, + "fields": { + "id_car_serie": 6110, + "name": "1.6 Sport MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190448, + "fields": { + "id_car_serie": 6110, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190449, + "fields": { + "id_car_serie": 6111, + "name": "1.1 MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190450, + "fields": { + "id_car_serie": 6111, + "name": "1.1 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190451, + "fields": { + "id_car_serie": 6111, + "name": "1.1 MT (43 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190452, + "fields": { + "id_car_serie": 6111, + "name": "1.3 AT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190453, + "fields": { + "id_car_serie": 6111, + "name": "1.3 AT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190454, + "fields": { + "id_car_serie": 6111, + "name": "1.3 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190455, + "fields": { + "id_car_serie": 6111, + "name": "1.3 GT MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190456, + "fields": { + "id_car_serie": 6111, + "name": "1.3 MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190457, + "fields": { + "id_car_serie": 6111, + "name": "1.3 MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190458, + "fields": { + "id_car_serie": 6112, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190459, + "fields": { + "id_car_serie": 6112, + "name": "1.6 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190460, + "fields": { + "id_car_serie": 8566, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190461, + "fields": { + "id_car_serie": 8566, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190462, + "fields": { + "id_car_serie": 6118, + "name": "4.0 AT 4x4 (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190463, + "fields": { + "id_car_serie": 6118, + "name": "4.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190464, + "fields": { + "id_car_serie": 6118, + "name": "4.0 MT 4x4 (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190465, + "fields": { + "id_car_serie": 6118, + "name": "4.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190466, + "fields": { + "id_car_serie": 6118, + "name": "4.6 AT (239 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190467, + "fields": { + "id_car_serie": 6119, + "name": "4.0 4AT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190468, + "fields": { + "id_car_serie": 6119, + "name": "4.0 4AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190469, + "fields": { + "id_car_serie": 6120, + "name": "4.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190470, + "fields": { + "id_car_serie": 6120, + "name": "5.0 AT 4x4 (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190471, + "fields": { + "id_car_serie": 6120, + "name": "5.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190472, + "fields": { + "id_car_serie": 6122, + "name": "4.0 5AT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190473, + "fields": { + "id_car_serie": 6122, + "name": "4.0 5AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190475, + "fields": { + "id_car_serie": 6134, + "name": "1.25 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190476, + "fields": { + "id_car_serie": 6134, + "name": "1.25 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190477, + "fields": { + "id_car_serie": 6135, + "name": "1.25 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190478, + "fields": { + "id_car_serie": 6135, + "name": "1.25 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190483, + "fields": { + "id_car_serie": 6135, + "name": "1.6 Mountune MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190494, + "fields": { + "id_car_serie": 6137, + "name": "1.4 Durashift (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190495, + "fields": { + "id_car_serie": 6138, + "name": "1.0 MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190496, + "fields": { + "id_car_serie": 6138, + "name": "1.25 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190497, + "fields": { + "id_car_serie": 6138, + "name": "1.25 CTX (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190498, + "fields": { + "id_car_serie": 6138, + "name": "1.3 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190499, + "fields": { + "id_car_serie": 6138, + "name": "1.4 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190500, + "fields": { + "id_car_serie": 6139, + "name": "1.0 MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190501, + "fields": { + "id_car_serie": 6139, + "name": "1.25 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190502, + "fields": { + "id_car_serie": 6139, + "name": "1.25 CTX (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190503, + "fields": { + "id_car_serie": 6139, + "name": "1.3 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190504, + "fields": { + "id_car_serie": 6139, + "name": "1.4 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190505, + "fields": { + "id_car_serie": 6140, + "name": "1.0 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190506, + "fields": { + "id_car_serie": 6140, + "name": "1.1i MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190507, + "fields": { + "id_car_serie": 6140, + "name": "1.1 5MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190508, + "fields": { + "id_car_serie": 6140, + "name": "1.1 CTX (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190509, + "fields": { + "id_car_serie": 6140, + "name": "1.3i MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190510, + "fields": { + "id_car_serie": 6140, + "name": "1.3i CTX (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190511, + "fields": { + "id_car_serie": 6140, + "name": "1.4i MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190512, + "fields": { + "id_car_serie": 6140, + "name": "1.4i S MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190513, + "fields": { + "id_car_serie": 6140, + "name": "1.4i MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190514, + "fields": { + "id_car_serie": 6140, + "name": "1.4 CTX (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190515, + "fields": { + "id_car_serie": 6140, + "name": "1.6i S MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190516, + "fields": { + "id_car_serie": 6140, + "name": "1.6i MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190517, + "fields": { + "id_car_serie": 6140, + "name": "1.8i S MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190518, + "fields": { + "id_car_serie": 6141, + "name": "1.0 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190519, + "fields": { + "id_car_serie": 6141, + "name": "1.1i MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190520, + "fields": { + "id_car_serie": 6141, + "name": "1.1 CTX (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190521, + "fields": { + "id_car_serie": 6141, + "name": "1.3i MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190522, + "fields": { + "id_car_serie": 6141, + "name": "1.3i CTX (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190523, + "fields": { + "id_car_serie": 6141, + "name": "1.4i S MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190524, + "fields": { + "id_car_serie": 6141, + "name": "1.4i MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190525, + "fields": { + "id_car_serie": 6141, + "name": "1.4i MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190526, + "fields": { + "id_car_serie": 6141, + "name": "1.4i Futura MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190527, + "fields": { + "id_car_serie": 6141, + "name": "1.4i S MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190528, + "fields": { + "id_car_serie": 6141, + "name": "1.6i S MT (89 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190530, + "fields": { + "id_car_serie": 6141, + "name": "1.6i Futura MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190531, + "fields": { + "id_car_serie": 6141, + "name": "1.6i XR2i MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190532, + "fields": { + "id_car_serie": 6141, + "name": "1.6i XR2i MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190533, + "fields": { + "id_car_serie": 6141, + "name": "1.8i XR2i MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190534, + "fields": { + "id_car_serie": 6141, + "name": "1.8i S MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190535, + "fields": { + "id_car_serie": 6141, + "name": "1.8i XR2i MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190536, + "fields": { + "id_car_serie": 6142, + "name": "1.0 4MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190537, + "fields": { + "id_car_serie": 6142, + "name": "1.1 Super MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190538, + "fields": { + "id_car_serie": 6142, + "name": "1.1 5MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190539, + "fields": { + "id_car_serie": 6142, + "name": "1.1 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190540, + "fields": { + "id_car_serie": 6142, + "name": "1.1 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190541, + "fields": { + "id_car_serie": 6142, + "name": "1.1 S MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190542, + "fields": { + "id_car_serie": 6142, + "name": "1.1 CTX (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190543, + "fields": { + "id_car_serie": 6142, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190544, + "fields": { + "id_car_serie": 6142, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190545, + "fields": { + "id_car_serie": 6142, + "name": "1.4 S MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190546, + "fields": { + "id_car_serie": 6143, + "name": "1.1 S MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190547, + "fields": { + "id_car_serie": 6143, + "name": "1.1 X MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190548, + "fields": { + "id_car_serie": 6143, + "name": "1.1 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190549, + "fields": { + "id_car_serie": 6143, + "name": "1.1 Super S MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190550, + "fields": { + "id_car_serie": 6143, + "name": "1.3 RS MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190551, + "fields": { + "id_car_serie": 6143, + "name": "1.3 S MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190552, + "fields": { + "id_car_serie": 6143, + "name": "1.6 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190553, + "fields": { + "id_car_serie": 6143, + "name": "1.6 S MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190554, + "fields": { + "id_car_serie": 6143, + "name": "1.6 Series X RS MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190555, + "fields": { + "id_car_serie": 6143, + "name": "1.6 Turbo-may MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190556, + "fields": { + "id_car_serie": 6146, + "name": "2.0 TDCi PowerShift (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190557, + "fields": { + "id_car_serie": 6147, + "name": "2.0 TDCi PowerShift (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190558, + "fields": { + "id_car_serie": 6148, + "name": "1.8 TDCi MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190559, + "fields": { + "id_car_serie": 6148, + "name": "2.0 TDCi PowerShift (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190560, + "fields": { + "id_car_serie": 6149, + "name": "2.0 TDCi PowerShift (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190561, + "fields": { + "id_car_serie": 6148, + "name": "2.5 T MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190562, + "fields": { + "id_car_serie": 6156, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190563, + "fields": { + "id_car_serie": 6156, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190564, + "fields": { + "id_car_serie": 6156, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190565, + "fields": { + "id_car_serie": 6156, + "name": "1.8 TDCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190566, + "fields": { + "id_car_serie": 6156, + "name": "1.8 TDDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190567, + "fields": { + "id_car_serie": 6156, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190568, + "fields": { + "id_car_serie": 6156, + "name": "1.8 TDDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190569, + "fields": { + "id_car_serie": 6156, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190570, + "fields": { + "id_car_serie": 6156, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190571, + "fields": { + "id_car_serie": 6157, + "name": "2.5 T MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190572, + "fields": { + "id_car_serie": 6158, + "name": "2.5 T MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190573, + "fields": { + "id_car_serie": 6147, + "name": "1.6 TDCi CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190574, + "fields": { + "id_car_serie": 6148, + "name": "1.6 TDCi CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190575, + "fields": { + "id_car_serie": 6149, + "name": "1.6 TDCi CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190576, + "fields": { + "id_car_serie": 6162, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190577, + "fields": { + "id_car_serie": 6170, + "name": "2.0 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190578, + "fields": { + "id_car_serie": 6171, + "name": "1.6 TDCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190579, + "fields": { + "id_car_serie": 6171, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190580, + "fields": { + "id_car_serie": 6171, + "name": "1.6 TDCi MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190581, + "fields": { + "id_car_serie": 6146, + "name": "1.6 TDCi CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190582, + "fields": { + "id_car_serie": 6171, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190583, + "fields": { + "id_car_serie": 6172, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190584, + "fields": { + "id_car_serie": 6173, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190585, + "fields": { + "id_car_serie": 6173, + "name": "2.0 AT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190586, + "fields": { + "id_car_serie": 6173, + "name": "2.0 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190587, + "fields": { + "id_car_serie": 6178, + "name": "1.8 TDCi 6MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190588, + "fields": { + "id_car_serie": 6178, + "name": "2.0 TDCi DuraShift (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190589, + "fields": { + "id_car_serie": 6178, + "name": "2.0 TDCi DPF MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190590, + "fields": { + "id_car_serie": 6178, + "name": "2.3 DuraShift (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190592, + "fields": { + "id_car_serie": 9095, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190593, + "fields": { + "id_car_serie": 9095, + "name": "1.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190594, + "fields": { + "id_car_serie": 9095, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190595, + "fields": { + "id_car_serie": 9095, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190596, + "fields": { + "id_car_serie": 9095, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190597, + "fields": { + "id_car_serie": 9095, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190598, + "fields": { + "id_car_serie": 9095, + "name": "1.8 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190599, + "fields": { + "id_car_serie": 9095, + "name": "1.9 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190600, + "fields": { + "id_car_serie": 6188, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190601, + "fields": { + "id_car_serie": 6188, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190602, + "fields": { + "id_car_serie": 6188, + "name": "1.8 TDCi 5MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190604, + "fields": { + "id_car_serie": 6188, + "name": "1.8 TDCi MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190605, + "fields": { + "id_car_serie": 6188, + "name": "1.8 TDCi 6MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190606, + "fields": { + "id_car_serie": 6188, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190607, + "fields": { + "id_car_serie": 6188, + "name": "2.0 TDCi DPF MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190608, + "fields": { + "id_car_serie": 6188, + "name": "2.0 TDCi DPF MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190609, + "fields": { + "id_car_serie": 6188, + "name": "2.0 TDCi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190610, + "fields": { + "id_car_serie": 6188, + "name": "2.0 TDCi DPF MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190611, + "fields": { + "id_car_serie": 6188, + "name": "2.0 TDCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190612, + "fields": { + "id_car_serie": 6188, + "name": "2.0 Flexifuel MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190613, + "fields": { + "id_car_serie": 6188, + "name": "2.0 TDCi MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190614, + "fields": { + "id_car_serie": 6188, + "name": "2.0 TDCi DPF AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190616, + "fields": { + "id_car_serie": 6188, + "name": "2.0 TDCi DPF AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190617, + "fields": { + "id_car_serie": 6188, + "name": "2.0 SCTi EcoBoost Powershift (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190618, + "fields": { + "id_car_serie": 6188, + "name": "2.0 TDCi Powershift (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190619, + "fields": { + "id_car_serie": 6188, + "name": "2.0 TDCi Powershift (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190620, + "fields": { + "id_car_serie": 6188, + "name": "2.2 TDCi DPF MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190621, + "fields": { + "id_car_serie": 6188, + "name": "2.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190622, + "fields": { + "id_car_serie": 6189, + "name": "1.8 TDCi MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190623, + "fields": { + "id_car_serie": 6189, + "name": "2.0 TDCi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190624, + "fields": { + "id_car_serie": 6189, + "name": "2.0 TDCi DPF MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190625, + "fields": { + "id_car_serie": 6189, + "name": "2.0 TDCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190626, + "fields": { + "id_car_serie": 6189, + "name": "2.0 Flexifuel MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190627, + "fields": { + "id_car_serie": 6189, + "name": "2.0 TDCi MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190628, + "fields": { + "id_car_serie": 6189, + "name": "2.0 TDCi Powershift (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190629, + "fields": { + "id_car_serie": 6189, + "name": "2.0 TDCi Powershift (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190630, + "fields": { + "id_car_serie": 6189, + "name": "2.0 SCTi EcoBoost Powershift (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190631, + "fields": { + "id_car_serie": 6190, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190632, + "fields": { + "id_car_serie": 6190, + "name": "1.8 TDCi MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190633, + "fields": { + "id_car_serie": 6190, + "name": "2.0 TDCi DPF MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190634, + "fields": { + "id_car_serie": 6190, + "name": "2.0 TDCi Powershift (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190635, + "fields": { + "id_car_serie": 6190, + "name": "2.0 SCTi EcoBoost Powershift (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190636, + "fields": { + "id_car_serie": 45146, + "name": "1.8 SCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190637, + "fields": { + "id_car_serie": 6191, + "name": "2.0 TDCi 6MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190639, + "fields": { + "id_car_serie": 6191, + "name": "2.0 TDCi 5MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190645, + "fields": { + "id_car_serie": 6191, + "name": "3.0 ST220 5MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190647, + "fields": { + "id_car_serie": 45147, + "name": "1.8 SCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190648, + "fields": { + "id_car_serie": 6192, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190649, + "fields": { + "id_car_serie": 6192, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190650, + "fields": { + "id_car_serie": 6192, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190651, + "fields": { + "id_car_serie": 6192, + "name": "2.0 TDCi AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190652, + "fields": { + "id_car_serie": 6192, + "name": "2.0 TDCi AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190653, + "fields": { + "id_car_serie": 6192, + "name": "2.0 Di MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190654, + "fields": { + "id_car_serie": 6192, + "name": "2.0 Di MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190655, + "fields": { + "id_car_serie": 6192, + "name": "2.0 TDCi 5MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190658, + "fields": { + "id_car_serie": 6192, + "name": "2.0 TDCi 5MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190659, + "fields": { + "id_car_serie": 6192, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190663, + "fields": { + "id_car_serie": 6192, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190664, + "fields": { + "id_car_serie": 6192, + "name": "2.5 5MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190668, + "fields": { + "id_car_serie": 6192, + "name": "3.0 ST220 5MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190670, + "fields": { + "id_car_serie": 45148, + "name": "1.8 SCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190671, + "fields": { + "id_car_serie": 6193, + "name": "2.0 4AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190674, + "fields": { + "id_car_serie": 6193, + "name": "2.0 TDCi 5MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190680, + "fields": { + "id_car_serie": 6193, + "name": "3.0 ST220 5MT (226 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190682, + "fields": { + "id_car_serie": 6195, + "name": "2.5 ST200 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190683, + "fields": { + "id_car_serie": 6196, + "name": "2.5 ST200 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190685, + "fields": { + "id_car_serie": 6198, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190686, + "fields": { + "id_car_serie": 6198, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190687, + "fields": { + "id_car_serie": 6198, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190689, + "fields": { + "id_car_serie": 6198, + "name": "1.8 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190690, + "fields": { + "id_car_serie": 6198, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190691, + "fields": { + "id_car_serie": 6198, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190692, + "fields": { + "id_car_serie": 6198, + "name": "2.0 4x4 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190693, + "fields": { + "id_car_serie": 6198, + "name": "2.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190694, + "fields": { + "id_car_serie": 6198, + "name": "2.5 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190695, + "fields": { + "id_car_serie": 6199, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190696, + "fields": { + "id_car_serie": 6204, + "name": "4.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190697, + "fields": { + "id_car_serie": 6207, + "name": "3.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190698, + "fields": { + "id_car_serie": 6207, + "name": "4.6 Cobra MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190699, + "fields": { + "id_car_serie": 6207, + "name": "GT 4.6 MT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190700, + "fields": { + "id_car_serie": 6207, + "name": "GT 5.0 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190701, + "fields": { + "id_car_serie": 6208, + "name": "GT 3.8 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190702, + "fields": { + "id_car_serie": 6208, + "name": "3.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190703, + "fields": { + "id_car_serie": 6208, + "name": "GT 4.6 MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190704, + "fields": { + "id_car_serie": 6208, + "name": "4.6 Cobra MT (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190705, + "fields": { + "id_car_serie": 6208, + "name": "GT 5.0 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190706, + "fields": { + "id_car_serie": 6210, + "name": "4.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190709, + "fields": { + "id_car_serie": 6210, + "name": "4.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190712, + "fields": { + "id_car_serie": 9094, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190713, + "fields": { + "id_car_serie": 9094, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190714, + "fields": { + "id_car_serie": 9094, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190715, + "fields": { + "id_car_serie": 9094, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190716, + "fields": { + "id_car_serie": 9094, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190717, + "fields": { + "id_car_serie": 9094, + "name": "1.9 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190718, + "fields": { + "id_car_serie": 6218, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190719, + "fields": { + "id_car_serie": 6218, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190720, + "fields": { + "id_car_serie": 10801, + "name": "1.8 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190721, + "fields": { + "id_car_serie": 10801, + "name": "1.8 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190722, + "fields": { + "id_car_serie": 10801, + "name": "1.8 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190723, + "fields": { + "id_car_serie": 10801, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190724, + "fields": { + "id_car_serie": 10801, + "name": "2.4 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190725, + "fields": { + "id_car_serie": 10801, + "name": "2.4 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190726, + "fields": { + "id_car_serie": 10801, + "name": "3.0 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190727, + "fields": { + "id_car_serie": 6270, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190728, + "fields": { + "id_car_serie": 6271, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190729, + "fields": { + "id_car_serie": 6293, + "name": "5.7 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190730, + "fields": { + "id_car_serie": 6293, + "name": "5.7 AT 4WD (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190731, + "fields": { + "id_car_serie": 6293, + "name": "5.7 AT 2500 SL (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190732, + "fields": { + "id_car_serie": 6293, + "name": "5.7 AT 2500 SL 4WD (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190733, + "fields": { + "id_car_serie": 6293, + "name": "6.5 AT 1500 SLT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190734, + "fields": { + "id_car_serie": 6293, + "name": "6.5 AT 1500 SLT 4WD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190735, + "fields": { + "id_car_serie": 6293, + "name": "6.5 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190736, + "fields": { + "id_car_serie": 6293, + "name": "6.5 AT 4WD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190737, + "fields": { + "id_car_serie": 6293, + "name": "7.4 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190738, + "fields": { + "id_car_serie": 6293, + "name": "7.4 AT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190739, + "fields": { + "id_car_serie": 6302, + "name": "3.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190740, + "fields": { + "id_car_serie": 6302, + "name": "3.0 Hybrid AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190741, + "fields": { + "id_car_serie": 6302, + "name": "3.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190742, + "fields": { + "id_car_serie": 6303, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190743, + "fields": { + "id_car_serie": 6303, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190744, + "fields": { + "id_car_serie": 6303, + "name": "2.2 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190745, + "fields": { + "id_car_serie": 6304, + "name": "2.3 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190746, + "fields": { + "id_car_serie": 6304, + "name": "2.3 AT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190747, + "fields": { + "id_car_serie": 6305, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190748, + "fields": { + "id_car_serie": 6305, + "name": "2.2 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190749, + "fields": { + "id_car_serie": 6308, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190750, + "fields": { + "id_car_serie": 6308, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190751, + "fields": { + "id_car_serie": 6308, + "name": "2.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190752, + "fields": { + "id_car_serie": 6308, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190753, + "fields": { + "id_car_serie": 6308, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190754, + "fields": { + "id_car_serie": 6311, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190755, + "fields": { + "id_car_serie": 6312, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190756, + "fields": { + "id_car_serie": 6312, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190757, + "fields": { + "id_car_serie": 6312, + "name": "2.2 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190758, + "fields": { + "id_car_serie": 6312, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190759, + "fields": { + "id_car_serie": 6312, + "name": "2.2 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190760, + "fields": { + "id_car_serie": 6312, + "name": "2.2 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190761, + "fields": { + "id_car_serie": 6312, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190762, + "fields": { + "id_car_serie": 6312, + "name": "2.2 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190763, + "fields": { + "id_car_serie": 6314, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190764, + "fields": { + "id_car_serie": 6314, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190765, + "fields": { + "id_car_serie": 8601, + "name": "1.5 CNG AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190766, + "fields": { + "id_car_serie": 8601, + "name": "1.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190767, + "fields": { + "id_car_serie": 8601, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190768, + "fields": { + "id_car_serie": 6327, + "name": "1.5 CVT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190769, + "fields": { + "id_car_serie": 6330, + "name": "1.8 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190770, + "fields": { + "id_car_serie": 6330, + "name": "1.8 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190771, + "fields": { + "id_car_serie": 6333, + "name": "2.0 MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190772, + "fields": { + "id_car_serie": 6334, + "name": "1.5 CVT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190773, + "fields": { + "id_car_serie": 6335, + "name": "2.4 MT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190774, + "fields": { + "id_car_serie": 6337, + "name": "1.4 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190775, + "fields": { + "id_car_serie": 6337, + "name": "1.4 I-SHIFT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190776, + "fields": { + "id_car_serie": 6340, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190777, + "fields": { + "id_car_serie": 6340, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190778, + "fields": { + "id_car_serie": 6340, + "name": "1.5 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190779, + "fields": { + "id_car_serie": 6340, + "name": "1.5 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190780, + "fields": { + "id_car_serie": 6340, + "name": "1.7 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190781, + "fields": { + "id_car_serie": 6340, + "name": "1.7 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190782, + "fields": { + "id_car_serie": 6340, + "name": "2.0 MT Type-S (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190783, + "fields": { + "id_car_serie": 6342, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190784, + "fields": { + "id_car_serie": 6344, + "name": "1.4 I-SHIFT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190785, + "fields": { + "id_car_serie": 6344, + "name": "1.8 I-SHIFT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190786, + "fields": { + "id_car_serie": 6345, + "name": "1.7 AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190787, + "fields": { + "id_car_serie": 6345, + "name": "1.7 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190788, + "fields": { + "id_car_serie": 6345, + "name": "1.7 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190789, + "fields": { + "id_car_serie": 6345, + "name": "1.7 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190790, + "fields": { + "id_car_serie": 6345, + "name": "1.7 CVT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190791, + "fields": { + "id_car_serie": 6346, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190792, + "fields": { + "id_car_serie": 6346, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190793, + "fields": { + "id_car_serie": 6346, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190794, + "fields": { + "id_car_serie": 6347, + "name": "1.5VEi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190795, + "fields": { + "id_car_serie": 6348, + "name": "1.3 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190796, + "fields": { + "id_car_serie": 6348, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190797, + "fields": { + "id_car_serie": 6348, + "name": "1.5 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190798, + "fields": { + "id_car_serie": 6348, + "name": "1.6 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190799, + "fields": { + "id_car_serie": 6349, + "name": "1.4 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190800, + "fields": { + "id_car_serie": 6349, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190801, + "fields": { + "id_car_serie": 6351, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190802, + "fields": { + "id_car_serie": 6351, + "name": "1.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190803, + "fields": { + "id_car_serie": 6353, + "name": "1.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190804, + "fields": { + "id_car_serie": 6353, + "name": "1.5 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190805, + "fields": { + "id_car_serie": 6354, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190806, + "fields": { + "id_car_serie": 6354, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190807, + "fields": { + "id_car_serie": 6358, + "name": "2.4 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190808, + "fields": { + "id_car_serie": 6358, + "name": "2.4 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190809, + "fields": { + "id_car_serie": 6358, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190810, + "fields": { + "id_car_serie": 6359, + "name": "2.0 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190811, + "fields": { + "id_car_serie": 9086, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190812, + "fields": { + "id_car_serie": 9086, + "name": "1.9 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190813, + "fields": { + "id_car_serie": 6366, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190814, + "fields": { + "id_car_serie": 6366, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190815, + "fields": { + "id_car_serie": 6366, + "name": "1.8 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190816, + "fields": { + "id_car_serie": 6366, + "name": "1.8 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190817, + "fields": { + "id_car_serie": 9085, + "name": "1.9 TD DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190818, + "fields": { + "id_car_serie": 9085, + "name": "2.0 TD MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190819, + "fields": { + "id_car_serie": 6372, + "name": "1.3 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190820, + "fields": { + "id_car_serie": 6381, + "name": "1.6 AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190821, + "fields": { + "id_car_serie": 6381, + "name": "1.6 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190822, + "fields": { + "id_car_serie": 6383, + "name": "1.4 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190823, + "fields": { + "id_car_serie": 6383, + "name": "1.4 CVT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190824, + "fields": { + "id_car_serie": 6387, + "name": "3.2 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190825, + "fields": { + "id_car_serie": 6387, + "name": "3.2 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190826, + "fields": { + "id_car_serie": 6387, + "name": "3.2 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190827, + "fields": { + "id_car_serie": 6387, + "name": "3.2 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190828, + "fields": { + "id_car_serie": 6390, + "name": "0.7 T AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190829, + "fields": { + "id_car_serie": 6390, + "name": "0.7 AT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190830, + "fields": { + "id_car_serie": 6390, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190831, + "fields": { + "id_car_serie": 9083, + "name": "1.8 T MT Cupra R (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190832, + "fields": { + "id_car_serie": 9083, + "name": "1.8 T MT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190833, + "fields": { + "id_car_serie": 9083, + "name": "1.8 T MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190834, + "fields": { + "id_car_serie": 9083, + "name": "2.8 VR6 MT Cupra 4 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190835, + "fields": { + "id_car_serie": 6399, + "name": "1.3 AT 5 places (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190836, + "fields": { + "id_car_serie": 6399, + "name": "1.3 MT 5 places (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190837, + "fields": { + "id_car_serie": 6399, + "name": "1.5 AT 5 places (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190838, + "fields": { + "id_car_serie": 6399, + "name": "1.5 MT 5 places (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190839, + "fields": { + "id_car_serie": 6399, + "name": "1.6 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190840, + "fields": { + "id_car_serie": 6399, + "name": "1.6 MT 4WD 5 places (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190841, + "fields": { + "id_car_serie": 6400, + "name": "2.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190842, + "fields": { + "id_car_serie": 6400, + "name": "3.2 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190843, + "fields": { + "id_car_serie": 6400, + "name": "3.2 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190844, + "fields": { + "id_car_serie": 6400, + "name": "3.2 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190845, + "fields": { + "id_car_serie": 6400, + "name": "3.2 MT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190846, + "fields": { + "id_car_serie": 6402, + "name": "2.2 AT 4WS (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190847, + "fields": { + "id_car_serie": 6402, + "name": "2.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190848, + "fields": { + "id_car_serie": 6402, + "name": "2.2 MT 4WS (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190849, + "fields": { + "id_car_serie": 6402, + "name": "2.2 MT 4WS (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190850, + "fields": { + "id_car_serie": 6402, + "name": "2.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190851, + "fields": { + "id_car_serie": 9081, + "name": "2.8 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190854, + "fields": { + "id_car_serie": 6431, + "name": "1.5 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190855, + "fields": { + "id_car_serie": 6431, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190856, + "fields": { + "id_car_serie": 6431, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190857, + "fields": { + "id_car_serie": 6431, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190858, + "fields": { + "id_car_serie": 6432, + "name": "1.5 TDI MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190859, + "fields": { + "id_car_serie": 6432, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190860, + "fields": { + "id_car_serie": 6433, + "name": "1.5 TDI MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190861, + "fields": { + "id_car_serie": 6433, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190862, + "fields": { + "id_car_serie": 6434, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190863, + "fields": { + "id_car_serie": 6434, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190864, + "fields": { + "id_car_serie": 6434, + "name": "1.5 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190865, + "fields": { + "id_car_serie": 6434, + "name": "1.5 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190866, + "fields": { + "id_car_serie": 6435, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190867, + "fields": { + "id_car_serie": 6435, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190868, + "fields": { + "id_car_serie": 6436, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190869, + "fields": { + "id_car_serie": 6436, + "name": "1.5 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190870, + "fields": { + "id_car_serie": 6436, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190871, + "fields": { + "id_car_serie": 6446, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190872, + "fields": { + "id_car_serie": 6446, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190873, + "fields": { + "id_car_serie": 6446, + "name": "2.0 CRDi MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190874, + "fields": { + "id_car_serie": 6450, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190875, + "fields": { + "id_car_serie": 6452, + "name": "3.8 Shiftronic (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190876, + "fields": { + "id_car_serie": 6452, + "name": "4.6 Shiftronic (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190877, + "fields": { + "id_car_serie": 6452, + "name": "4.6 Shiftronic (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190878, + "fields": { + "id_car_serie": 6456, + "name": "1.4 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190879, + "fields": { + "id_car_serie": 6456, + "name": "1.6 CRDi MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190880, + "fields": { + "id_car_serie": 6474, + "name": "3.3 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190881, + "fields": { + "id_car_serie": 6475, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190882, + "fields": { + "id_car_serie": 6478, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190883, + "fields": { + "id_car_serie": 6479, + "name": "2.4 AT 4WD LWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190886, + "fields": { + "id_car_serie": 6479, + "name": "2.4 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190888, + "fields": { + "id_car_serie": 6488, + "name": "1.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190889, + "fields": { + "id_car_serie": 6488, + "name": "1.5 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190890, + "fields": { + "id_car_serie": 6488, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190891, + "fields": { + "id_car_serie": 6488, + "name": "1.5 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190892, + "fields": { + "id_car_serie": 6497, + "name": "G35 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190893, + "fields": { + "id_car_serie": 6497, + "name": "G35 X AT AWD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190894, + "fields": { + "id_car_serie": 6497, + "name": "G35 X MT AWD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190895, + "fields": { + "id_car_serie": 6497, + "name": "G35 MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190896, + "fields": { + "id_car_serie": 6497, + "name": "G37 X AT AWD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190897, + "fields": { + "id_car_serie": 6497, + "name": "G37 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190898, + "fields": { + "id_car_serie": 6497, + "name": "G37 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190899, + "fields": { + "id_car_serie": 6497, + "name": "G37 X MT AWD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190900, + "fields": { + "id_car_serie": 6500, + "name": "M25 AT (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190901, + "fields": { + "id_car_serie": 6500, + "name": "M37 AT AWD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190902, + "fields": { + "id_car_serie": 6500, + "name": "M56 AT AWD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190903, + "fields": { + "id_car_serie": 6501, + "name": "M45 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190904, + "fields": { + "id_car_serie": 6501, + "name": "M45 AT (344 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190905, + "fields": { + "id_car_serie": 9069, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190906, + "fields": { + "id_car_serie": 6522, + "name": "2.6 AT RWD XS (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190907, + "fields": { + "id_car_serie": 6522, + "name": "2.6 MT RWD S (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190908, + "fields": { + "id_car_serie": 6522, + "name": "2.6 MT RWD XS (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190909, + "fields": { + "id_car_serie": 6529, + "name": "3.0 D MT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190910, + "fields": { + "id_car_serie": 6529, + "name": "3.1 D MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190911, + "fields": { + "id_car_serie": 6529, + "name": "3.2 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190912, + "fields": { + "id_car_serie": 6529, + "name": "3.5 MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190913, + "fields": { + "id_car_serie": 6542, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190914, + "fields": { + "id_car_serie": 6544, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190915, + "fields": { + "id_car_serie": 6544, + "name": "1.7 TD MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190916, + "fields": { + "id_car_serie": 6550, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190917, + "fields": { + "id_car_serie": 6550, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190918, + "fields": { + "id_car_serie": 6550, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190919, + "fields": { + "id_car_serie": 6550, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190920, + "fields": { + "id_car_serie": 6550, + "name": "2.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190921, + "fields": { + "id_car_serie": 6550, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190922, + "fields": { + "id_car_serie": 6551, + "name": "2.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190923, + "fields": { + "id_car_serie": 9065, + "name": "2.2 TD AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190924, + "fields": { + "id_car_serie": 9065, + "name": "2.3 MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190926, + "fields": { + "id_car_serie": 6577, + "name": "5.0 AT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190927, + "fields": { + "id_car_serie": 6585, + "name": "6.4 AT SRT-8 (468 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190928, + "fields": { + "id_car_serie": 6586, + "name": "3.0 CRD AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190929, + "fields": { + "id_car_serie": 6586, + "name": "6.1 AT 4WD SRT-8 (432 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190930, + "fields": { + "id_car_serie": 6588, + "name": "4.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190931, + "fields": { + "id_car_serie": 6588, + "name": "5.2 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190932, + "fields": { + "id_car_serie": 6588, + "name": "5.2 AT AWD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190933, + "fields": { + "id_car_serie": 6588, + "name": "5.9 AT (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190934, + "fields": { + "id_car_serie": 9060, + "name": "416 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190935, + "fields": { + "id_car_serie": 9060, + "name": "420 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190936, + "fields": { + "id_car_serie": 6598, + "name": "2.9 HPDi AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190937, + "fields": { + "id_car_serie": 6598, + "name": "2.9 HPDi MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190938, + "fields": { + "id_car_serie": 6621, + "name": "3.8 AWD AT (266 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190939, + "fields": { + "id_car_serie": 6621, + "name": "3.8 AT (266 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190956, + "fields": { + "id_car_serie": 9122, + "name": "1.0 MT AWD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190957, + "fields": { + "id_car_serie": 9122, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190958, + "fields": { + "id_car_serie": 9122, + "name": "1.0 MT AWD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190959, + "fields": { + "id_car_serie": 9122, + "name": "1.2 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190960, + "fields": { + "id_car_serie": 6652, + "name": "1.8 MT GT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190961, + "fields": { + "id_car_serie": 6652, + "name": "1.8 MT E (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190962, + "fields": { + "id_car_serie": 6652, + "name": "2.0 MT Turbo (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190963, + "fields": { + "id_car_serie": 6654, + "name": "1.3 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190964, + "fields": { + "id_car_serie": 6654, + "name": "1.3 4MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190965, + "fields": { + "id_car_serie": 6654, + "name": "1.5 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190966, + "fields": { + "id_car_serie": 9051, + "name": "2.0 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190967, + "fields": { + "id_car_serie": 9051, + "name": "2.0 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190968, + "fields": { + "id_car_serie": 6659, + "name": "1.3 Multijet MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190969, + "fields": { + "id_car_serie": 6659, + "name": "1.3 Multijet MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190970, + "fields": { + "id_car_serie": 6659, + "name": "1.3 Multijet MT Start & Stop (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190971, + "fields": { + "id_car_serie": 6659, + "name": "1.3 Multijet AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190972, + "fields": { + "id_car_serie": 6659, + "name": "1.3 Multijet AMT Start & Stop (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190973, + "fields": { + "id_car_serie": 6659, + "name": "1.4 MT Start & Stop (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190974, + "fields": { + "id_car_serie": 6659, + "name": "1.4 AMT Start & Stop (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190975, + "fields": { + "id_car_serie": 6659, + "name": "1.6 Multijet MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190976, + "fields": { + "id_car_serie": 6660, + "name": "2.0JTD MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190977, + "fields": { + "id_car_serie": 6660, + "name": "2.2JTD MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190978, + "fields": { + "id_car_serie": 6660, + "name": "3.0i AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190979, + "fields": { + "id_car_serie": 6663, + "name": "2.0i MT E (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190980, + "fields": { + "id_car_serie": 6663, + "name": "2.85i AT E (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190981, + "fields": { + "id_car_serie": 6663, + "name": "2.85i MT E (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190982, + "fields": { + "id_car_serie": 6663, + "name": "2.85i MT E (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190983, + "fields": { + "id_car_serie": 6667, + "name": "1.2i MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190984, + "fields": { + "id_car_serie": 6667, + "name": "1.2i MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190985, + "fields": { + "id_car_serie": 6667, + "name": "1.3CDRi MT Multijet (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190986, + "fields": { + "id_car_serie": 6673, + "name": "4.6 MT (226 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190987, + "fields": { + "id_car_serie": 8466, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190988, + "fields": { + "id_car_serie": 8466, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190989, + "fields": { + "id_car_serie": 8466, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190990, + "fields": { + "id_car_serie": 8466, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190991, + "fields": { + "id_car_serie": 6686, + "name": "300 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190992, + "fields": { + "id_car_serie": 6686, + "name": "450h CVT (344 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190993, + "fields": { + "id_car_serie": 6686, + "name": "460 AT (347 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190994, + "fields": { + "id_car_serie": 6687, + "name": "300 AT (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190996, + "fields": { + "id_car_serie": 6687, + "name": "350 AT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190997, + "fields": { + "id_car_serie": 6687, + "name": "350 ECVT (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 190998, + "fields": { + "id_car_serie": 6687, + "name": "400 AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191000, + "fields": { + "id_car_serie": 6688, + "name": "300 AT (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191001, + "fields": { + "id_car_serie": 6688, + "name": "300 AT (219 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191002, + "fields": { + "id_car_serie": 6689, + "name": "460 AT (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191003, + "fields": { + "id_car_serie": 6690, + "name": "470 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191004, + "fields": { + "id_car_serie": 6690, + "name": "470 AT (273 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191005, + "fields": { + "id_car_serie": 6693, + "name": "250 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191006, + "fields": { + "id_car_serie": 6694, + "name": "200 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191007, + "fields": { + "id_car_serie": 6694, + "name": "200 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191008, + "fields": { + "id_car_serie": 6694, + "name": "200 MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191009, + "fields": { + "id_car_serie": 6694, + "name": "300 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191010, + "fields": { + "id_car_serie": 6694, + "name": "300 MT (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191011, + "fields": { + "id_car_serie": 6694, + "name": "300 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191012, + "fields": { + "id_car_serie": 6695, + "name": "200 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191013, + "fields": { + "id_car_serie": 6695, + "name": "200 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191014, + "fields": { + "id_car_serie": 6695, + "name": "300 AT (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191015, + "fields": { + "id_car_serie": 6695, + "name": "300 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191016, + "fields": { + "id_car_serie": 8728, + "name": "430 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191017, + "fields": { + "id_car_serie": 8453, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191018, + "fields": { + "id_car_serie": 9120, + "name": "1.0 MT AWD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191019, + "fields": { + "id_car_serie": 9120, + "name": "1.0 MT AWD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191020, + "fields": { + "id_car_serie": 9120, + "name": "1.0 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191021, + "fields": { + "id_car_serie": 9120, + "name": "1.0 CVT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191022, + "fields": { + "id_car_serie": 9120, + "name": "1.0 CVT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191023, + "fields": { + "id_car_serie": 9120, + "name": "1.0 CVT AWD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191024, + "fields": { + "id_car_serie": 9120, + "name": "1.2 MT AWD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191025, + "fields": { + "id_car_serie": 9120, + "name": "1.2 MT AWD (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191026, + "fields": { + "id_car_serie": 9120, + "name": "1.2 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191027, + "fields": { + "id_car_serie": 9120, + "name": "1.2 CVT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191028, + "fields": { + "id_car_serie": 9120, + "name": "1.2 CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191029, + "fields": { + "id_car_serie": 9120, + "name": "1.2 CVT AWD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191030, + "fields": { + "id_car_serie": 9045, + "name": "2.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191031, + "fields": { + "id_car_serie": 9043, + "name": "2.2 dti MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191032, + "fields": { + "id_car_serie": 9043, + "name": "3.0 AT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191034, + "fields": { + "id_car_serie": 6739, + "name": "1.8i AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191035, + "fields": { + "id_car_serie": 6739, + "name": "2.0i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191036, + "fields": { + "id_car_serie": 8472, + "name": "1.7 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191037, + "fields": { + "id_car_serie": 8472, + "name": "1.7 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191038, + "fields": { + "id_car_serie": 8472, + "name": "2.9 AT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191039, + "fields": { + "id_car_serie": 8472, + "name": "2.9 MT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191040, + "fields": { + "id_car_serie": 6764, + "name": "0.8 i MT (35 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191041, + "fields": { + "id_car_serie": 6765, + "name": "1.5 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191042, + "fields": { + "id_car_serie": 6771, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191043, + "fields": { + "id_car_serie": 6771, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191044, + "fields": { + "id_car_serie": 6771, + "name": "1.0 MT LX (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191045, + "fields": { + "id_car_serie": 9039, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191046, + "fields": { + "id_car_serie": 9039, + "name": "2.0 Sport MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191047, + "fields": { + "id_car_serie": 9037, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191048, + "fields": { + "id_car_serie": 9037, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191049, + "fields": { + "id_car_serie": 6797, + "name": "2.2 CiTD MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191050, + "fields": { + "id_car_serie": 6801, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191051, + "fields": { + "id_car_serie": 6802, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191052, + "fields": { + "id_car_serie": 6802, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191053, + "fields": { + "id_car_serie": 6803, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191054, + "fields": { + "id_car_serie": 6803, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191055, + "fields": { + "id_car_serie": 6803, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191056, + "fields": { + "id_car_serie": 6803, + "name": "2.0 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191057, + "fields": { + "id_car_serie": 6803, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191058, + "fields": { + "id_car_serie": 6803, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191059, + "fields": { + "id_car_serie": 6804, + "name": "1.3i MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191061, + "fields": { + "id_car_serie": 6805, + "name": "1.3i MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191063, + "fields": { + "id_car_serie": 6807, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191064, + "fields": { + "id_car_serie": 6807, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191065, + "fields": { + "id_car_serie": 6815, + "name": "2.3 AT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191066, + "fields": { + "id_car_serie": 6815, + "name": "2.3 MT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191067, + "fields": { + "id_car_serie": 9035, + "name": "1.2 T MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191068, + "fields": { + "id_car_serie": 9035, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191069, + "fields": { + "id_car_serie": 9035, + "name": "1.2 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191070, + "fields": { + "id_car_serie": 9035, + "name": "1.6 AT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191071, + "fields": { + "id_car_serie": 9035, + "name": "1.6 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191072, + "fields": { + "id_car_serie": 6818, + "name": "1.9 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191073, + "fields": { + "id_car_serie": 6818, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191074, + "fields": { + "id_car_serie": 6818, + "name": "2.5 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191075, + "fields": { + "id_car_serie": 6818, + "name": "2.5 MT 4WS (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191076, + "fields": { + "id_car_serie": 6818, + "name": "2.5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191077, + "fields": { + "id_car_serie": 6819, + "name": "1.9 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191078, + "fields": { + "id_car_serie": 6819, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191079, + "fields": { + "id_car_serie": 6819, + "name": "2.5 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191080, + "fields": { + "id_car_serie": 6819, + "name": "2.5 MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191081, + "fields": { + "id_car_serie": 6820, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191082, + "fields": { + "id_car_serie": 6822, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191083, + "fields": { + "id_car_serie": 6822, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191084, + "fields": { + "id_car_serie": 6822, + "name": "1.8 4MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191085, + "fields": { + "id_car_serie": 6822, + "name": "1.8 4MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191086, + "fields": { + "id_car_serie": 6822, + "name": "1.8 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191087, + "fields": { + "id_car_serie": 6822, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191088, + "fields": { + "id_car_serie": 6822, + "name": "2.0 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191089, + "fields": { + "id_car_serie": 6822, + "name": "2.0 MT 4WS (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191090, + "fields": { + "id_car_serie": 6822, + "name": "2.0 D MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191091, + "fields": { + "id_car_serie": 6822, + "name": "2.2 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191092, + "fields": { + "id_car_serie": 6822, + "name": "2.2 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191093, + "fields": { + "id_car_serie": 6823, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191094, + "fields": { + "id_car_serie": 6823, + "name": "2.5 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191095, + "fields": { + "id_car_serie": 6823, + "name": "2.5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191096, + "fields": { + "id_car_serie": 6824, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191097, + "fields": { + "id_car_serie": 6824, + "name": "2.0 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191098, + "fields": { + "id_car_serie": 6824, + "name": "2.0 MT 4WS (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191099, + "fields": { + "id_car_serie": 6824, + "name": "2.2 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191100, + "fields": { + "id_car_serie": 6824, + "name": "2.2 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191101, + "fields": { + "id_car_serie": 6825, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191102, + "fields": { + "id_car_serie": 6825, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191103, + "fields": { + "id_car_serie": 6825, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191104, + "fields": { + "id_car_serie": 6825, + "name": "2.0 D MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191105, + "fields": { + "id_car_serie": 6825, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191106, + "fields": { + "id_car_serie": 6825, + "name": "2.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191107, + "fields": { + "id_car_serie": 6825, + "name": "2.2 T AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191108, + "fields": { + "id_car_serie": 6825, + "name": "2.2 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191109, + "fields": { + "id_car_serie": 6825, + "name": "2.2 T MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191110, + "fields": { + "id_car_serie": 6825, + "name": "2.2 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191111, + "fields": { + "id_car_serie": 6825, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191112, + "fields": { + "id_car_serie": 6825, + "name": "2.2 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191113, + "fields": { + "id_car_serie": 6834, + "name": "1.5 CVT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191114, + "fields": { + "id_car_serie": 6834, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191115, + "fields": { + "id_car_serie": 6834, + "name": "2.0 AT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191116, + "fields": { + "id_car_serie": 6835, + "name": "1.5 sVT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191117, + "fields": { + "id_car_serie": 6835, + "name": "2.0 AT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191118, + "fields": { + "id_car_serie": 6835, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191119, + "fields": { + "id_car_serie": 6836, + "name": "2.0 AT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191120, + "fields": { + "id_car_serie": 6836, + "name": "2.0 5AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191121, + "fields": { + "id_car_serie": 6847, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191122, + "fields": { + "id_car_serie": 6856, + "name": "1.3 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191123, + "fields": { + "id_car_serie": 9116, + "name": "1.3 MT AWD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191124, + "fields": { + "id_car_serie": 6867, + "name": "0.7 Turbo AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191125, + "fields": { + "id_car_serie": 6867, + "name": "0.7 Turbo MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191126, + "fields": { + "id_car_serie": 6872, + "name": "2.0 MZR 5MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191127, + "fields": { + "id_car_serie": 6872, + "name": "2.0 MZR 6MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191128, + "fields": { + "id_car_serie": 6872, + "name": "2.0 MZR 6MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191129, + "fields": { + "id_car_serie": 6873, + "name": "1.8 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191130, + "fields": { + "id_car_serie": 6873, + "name": "1.8 5MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191131, + "fields": { + "id_car_serie": 6873, + "name": "1.8 6MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191132, + "fields": { + "id_car_serie": 6873, + "name": "1.8 5MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191133, + "fields": { + "id_car_serie": 6879, + "name": "1.8 AT 4WD 7seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191134, + "fields": { + "id_car_serie": 6879, + "name": "1.8 AT 7seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191135, + "fields": { + "id_car_serie": 6883, + "name": "1.8 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191136, + "fields": { + "id_car_serie": 6883, + "name": "2.0 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191137, + "fields": { + "id_car_serie": 6883, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191138, + "fields": { + "id_car_serie": 6884, + "name": "2.0 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191139, + "fields": { + "id_car_serie": 6884, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191140, + "fields": { + "id_car_serie": 9113, + "name": "2.7 TD AT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191141, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI TouchShift L2H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191142, + "fields": { + "id_car_serie": 6949, + "name": "2.2 CDI TouchShift L1H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191143, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI TouchShift L1H1 (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191144, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI 4MATIC TouchShift L3H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191145, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI 4MATIC TouchShift L2H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191146, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI TouchShift L2H1 (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191147, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI TouchShift L3H1 (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191148, + "fields": { + "id_car_serie": 6949, + "name": "2.2 CDI TouchShift L3H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191149, + "fields": { + "id_car_serie": 6949, + "name": "2.2 CDI TouchShift L2H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191150, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI 4MATIC TouchShift L1H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191151, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI TouchShift L1H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191152, + "fields": { + "id_car_serie": 6949, + "name": "2.2 CDI 4MATIC TouchShift L1H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191153, + "fields": { + "id_car_serie": 6949, + "name": "2.2 CDI 4MATIC TouchShift L3H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191154, + "fields": { + "id_car_serie": 6949, + "name": "2.2 CDI 4MATIC TouchShift L2H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191155, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI TouchShift L3H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191156, + "fields": { + "id_car_serie": 6949, + "name": "2.2 CDI MT L1H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191157, + "fields": { + "id_car_serie": 6949, + "name": "2.2 CDI 4MATIC MT L3H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191158, + "fields": { + "id_car_serie": 6949, + "name": "2.2 CDI 4MATIC MT L2H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191159, + "fields": { + "id_car_serie": 6949, + "name": "2.2 CDI 4MATIC MT L1H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191160, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI MT L3H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191161, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI MT L2H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191162, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI 4MATIC MT L3H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191163, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI 4MATIC MT L2H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191164, + "fields": { + "id_car_serie": 6949, + "name": "2.2 CDI MT L3H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191165, + "fields": { + "id_car_serie": 6949, + "name": "2.2 CDI MT L2H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191166, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI MT L3N1 (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191167, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI MT L2H1 (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191168, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI MT L1H1 (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191169, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI 4MATIC MT L1H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191170, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI MT L1H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191171, + "fields": { + "id_car_serie": 6949, + "name": "3.0 CDI TouchShift L1H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191172, + "fields": { + "id_car_serie": 6949, + "name": "3.0 CDI TouchShift L3H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191173, + "fields": { + "id_car_serie": 6949, + "name": "3.0 TouchShift L3H1 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191174, + "fields": { + "id_car_serie": 6949, + "name": "3.0 TouchShift L1H1 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191175, + "fields": { + "id_car_serie": 6949, + "name": "3.0 TouchShift L2H1 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191176, + "fields": { + "id_car_serie": 6949, + "name": "3.5 TouchShift L1H1 (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191177, + "fields": { + "id_car_serie": 6949, + "name": "3.5 TouchShift L2H1 (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191178, + "fields": { + "id_car_serie": 6949, + "name": "3.5 TouchShift L2H1 (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191179, + "fields": { + "id_car_serie": 6949, + "name": "3.5 TouchShift L1H1 (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191180, + "fields": { + "id_car_serie": 6949, + "name": "3.5 TouchShift L3H1 (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191181, + "fields": { + "id_car_serie": 6968, + "name": "4.0 AT (239 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191182, + "fields": { + "id_car_serie": 6976, + "name": "3.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191183, + "fields": { + "id_car_serie": 6976, + "name": "3.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191184, + "fields": { + "id_car_serie": 6977, + "name": "3.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191185, + "fields": { + "id_car_serie": 6977, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191186, + "fields": { + "id_car_serie": 6978, + "name": "2.0 D AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191187, + "fields": { + "id_car_serie": 6978, + "name": "2.0 D AT AWD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191188, + "fields": { + "id_car_serie": 6978, + "name": "2.0 D MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191189, + "fields": { + "id_car_serie": 6978, + "name": "2.0 D MT AWD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191190, + "fields": { + "id_car_serie": 6978, + "name": "2.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191191, + "fields": { + "id_car_serie": 6978, + "name": "2.3 AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191192, + "fields": { + "id_car_serie": 6978, + "name": "2.3 AT AWD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191193, + "fields": { + "id_car_serie": 6978, + "name": "2.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191194, + "fields": { + "id_car_serie": 6978, + "name": "2.3 MT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191195, + "fields": { + "id_car_serie": 6978, + "name": "2.3 MT AWD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191196, + "fields": { + "id_car_serie": 8497, + "name": "2.0 VGT AT 4WD 7seat (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191197, + "fields": { + "id_car_serie": 8497, + "name": "2.0 VGT AT 4WD 5seat (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191198, + "fields": { + "id_car_serie": 8497, + "name": "2.0 VGT MT 5seat (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191199, + "fields": { + "id_car_serie": 8497, + "name": "2.0 VGT MT 4WD 7seat (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191200, + "fields": { + "id_car_serie": 6981, + "name": "3.3 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191201, + "fields": { + "id_car_serie": 9016, + "name": "S Hybrid 3.0 Tiptronic (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191202, + "fields": { + "id_car_serie": 7019, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191203, + "fields": { + "id_car_serie": 7019, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191204, + "fields": { + "id_car_serie": 7019, + "name": "1.8 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191205, + "fields": { + "id_car_serie": 7021, + "name": "1.1 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191206, + "fields": { + "id_car_serie": 7021, + "name": "1.3 Allshift (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191207, + "fields": { + "id_car_serie": 7021, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191208, + "fields": { + "id_car_serie": 7021, + "name": "1.5 DI-D Allshift (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191209, + "fields": { + "id_car_serie": 7021, + "name": "1.5 Allshift (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191210, + "fields": { + "id_car_serie": 9010, + "name": "50th Anniversary Edition 3.8 PDK (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191211, + "fields": { + "id_car_serie": 7045, + "name": "2.0 T MT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191212, + "fields": { + "id_car_serie": 7045, + "name": "2.0 T 5MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191213, + "fields": { + "id_car_serie": 7045, + "name": "2.0 T 6MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191214, + "fields": { + "id_car_serie": 7045, + "name": "2.0 T MT (371 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191215, + "fields": { + "id_car_serie": 7045, + "name": "2.0 T MT (349 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191216, + "fields": { + "id_car_serie": 7045, + "name": "2.0 T MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191217, + "fields": { + "id_car_serie": 7045, + "name": "2.0 T MT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191218, + "fields": { + "id_car_serie": 7045, + "name": "2.0 T MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191219, + "fields": { + "id_car_serie": 7046, + "name": "2.0 T MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191220, + "fields": { + "id_car_serie": 7046, + "name": "2.0 T MT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191221, + "fields": { + "id_car_serie": 7046, + "name": "2.0 T MT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191222, + "fields": { + "id_car_serie": 7046, + "name": "2.0 T MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191223, + "fields": { + "id_car_serie": 7046, + "name": "2.0 T 6MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191224, + "fields": { + "id_car_serie": 7046, + "name": "2.0 T 5MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191225, + "fields": { + "id_car_serie": 7046, + "name": "2.0 T MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191226, + "fields": { + "id_car_serie": 7046, + "name": "2.0 T MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191227, + "fields": { + "id_car_serie": 7047, + "name": "2.0 T MT (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191228, + "fields": { + "id_car_serie": 7049, + "name": "2.0 T MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191229, + "fields": { + "id_car_serie": 7049, + "name": "2.0 T MT (334 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191230, + "fields": { + "id_car_serie": 7049, + "name": "2.0 T MT GSR (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191231, + "fields": { + "id_car_serie": 7049, + "name": "2.0 T MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191232, + "fields": { + "id_car_serie": 7055, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191233, + "fields": { + "id_car_serie": 7055, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191234, + "fields": { + "id_car_serie": 7055, + "name": "2.0 CVT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191235, + "fields": { + "id_car_serie": 7055, + "name": "2.4 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191236, + "fields": { + "id_car_serie": 7055, + "name": "2.4 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191237, + "fields": { + "id_car_serie": 7055, + "name": "2.4 CVT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191238, + "fields": { + "id_car_serie": 7057, + "name": "1.5 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191239, + "fields": { + "id_car_serie": 7057, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191240, + "fields": { + "id_car_serie": 7057, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191241, + "fields": { + "id_car_serie": 7057, + "name": "1.8 T AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191243, + "fields": { + "id_car_serie": 7057, + "name": "1.8 CVT 4WD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191244, + "fields": { + "id_car_serie": 7057, + "name": "1.8 CVT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191245, + "fields": { + "id_car_serie": 7057, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191246, + "fields": { + "id_car_serie": 7057, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191248, + "fields": { + "id_car_serie": 7058, + "name": "1.5 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191249, + "fields": { + "id_car_serie": 7058, + "name": "1.5 CVT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191250, + "fields": { + "id_car_serie": 7058, + "name": "1.8 CVT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191251, + "fields": { + "id_car_serie": 7058, + "name": "2.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191252, + "fields": { + "id_car_serie": 7058, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191253, + "fields": { + "id_car_serie": 7058, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191254, + "fields": { + "id_car_serie": 7058, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191255, + "fields": { + "id_car_serie": 7059, + "name": "1.5 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191256, + "fields": { + "id_car_serie": 7059, + "name": "1.5 CVT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191257, + "fields": { + "id_car_serie": 7059, + "name": "1.5 CVT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191258, + "fields": { + "id_car_serie": 7059, + "name": "1.5 CVT 4WD (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191259, + "fields": { + "id_car_serie": 7059, + "name": "1.5 CVT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191260, + "fields": { + "id_car_serie": 7059, + "name": "1.8 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191261, + "fields": { + "id_car_serie": 7059, + "name": "1.8 CVT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191262, + "fields": { + "id_car_serie": 7061, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191263, + "fields": { + "id_car_serie": 7061, + "name": "2.0 TD AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191264, + "fields": { + "id_car_serie": 7061, + "name": "2.0 TD AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191265, + "fields": { + "id_car_serie": 7061, + "name": "2.0 TD MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191266, + "fields": { + "id_car_serie": 7061, + "name": "2.0 TD MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191267, + "fields": { + "id_car_serie": 7063, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191268, + "fields": { + "id_car_serie": 7063, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191269, + "fields": { + "id_car_serie": 7063, + "name": "2.0 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191270, + "fields": { + "id_car_serie": 7064, + "name": "1.3 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191271, + "fields": { + "id_car_serie": 7064, + "name": "1.3 MT5 (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191272, + "fields": { + "id_car_serie": 7064, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191273, + "fields": { + "id_car_serie": 7064, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191274, + "fields": { + "id_car_serie": 7064, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191275, + "fields": { + "id_car_serie": 7064, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191276, + "fields": { + "id_car_serie": 7064, + "name": "1.6 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191277, + "fields": { + "id_car_serie": 7064, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191278, + "fields": { + "id_car_serie": 7064, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191279, + "fields": { + "id_car_serie": 7064, + "name": "1.6 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191280, + "fields": { + "id_car_serie": 7064, + "name": "1.8 T AT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191281, + "fields": { + "id_car_serie": 7064, + "name": "2.0 TD AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191282, + "fields": { + "id_car_serie": 7064, + "name": "2.0 TD AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191283, + "fields": { + "id_car_serie": 7064, + "name": "2.0 TD MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191284, + "fields": { + "id_car_serie": 7064, + "name": "2.0 TD MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191285, + "fields": { + "id_car_serie": 7064, + "name": "2.0 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191286, + "fields": { + "id_car_serie": 7065, + "name": "1.3 4MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191287, + "fields": { + "id_car_serie": 7065, + "name": "1.3 5MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191288, + "fields": { + "id_car_serie": 7065, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191289, + "fields": { + "id_car_serie": 7065, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191290, + "fields": { + "id_car_serie": 7065, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191291, + "fields": { + "id_car_serie": 7066, + "name": "1.4 5MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191292, + "fields": { + "id_car_serie": 7067, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191293, + "fields": { + "id_car_serie": 7067, + "name": "1.4 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191294, + "fields": { + "id_car_serie": 7068, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191295, + "fields": { + "id_car_serie": 7068, + "name": "1.4 4MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191296, + "fields": { + "id_car_serie": 7068, + "name": "1.4 5MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191297, + "fields": { + "id_car_serie": 7069, + "name": "1.2 MCA 4MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191298, + "fields": { + "id_car_serie": 7069, + "name": "1.2 MCA 5MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191299, + "fields": { + "id_car_serie": 7069, + "name": "1.4 MCA AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191300, + "fields": { + "id_car_serie": 7069, + "name": "1.4 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191301, + "fields": { + "id_car_serie": 7069, + "name": "1.4 MCA 4MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191302, + "fields": { + "id_car_serie": 7069, + "name": "1.4 5MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191303, + "fields": { + "id_car_serie": 7069, + "name": "1.4 MCA 5MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191304, + "fields": { + "id_car_serie": 7069, + "name": "1.4 4MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191305, + "fields": { + "id_car_serie": 7069, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191306, + "fields": { + "id_car_serie": 7069, + "name": "1.6 MCA MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191307, + "fields": { + "id_car_serie": 7078, + "name": "2.8 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191308, + "fields": { + "id_car_serie": 7078, + "name": "2.8 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191309, + "fields": { + "id_car_serie": 7078, + "name": "3.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191310, + "fields": { + "id_car_serie": 7078, + "name": "3.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191311, + "fields": { + "id_car_serie": 7078, + "name": "3.2 DI-D AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191312, + "fields": { + "id_car_serie": 7078, + "name": "3.2 DI-D MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191313, + "fields": { + "id_car_serie": 7078, + "name": "3.5 GDI AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191314, + "fields": { + "id_car_serie": 7078, + "name": "3.5 MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191315, + "fields": { + "id_car_serie": 7079, + "name": "2.8 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191316, + "fields": { + "id_car_serie": 7079, + "name": "2.8 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191317, + "fields": { + "id_car_serie": 7079, + "name": "3.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191318, + "fields": { + "id_car_serie": 7079, + "name": "3.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191319, + "fields": { + "id_car_serie": 7079, + "name": "3.2 DI-D AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191320, + "fields": { + "id_car_serie": 7079, + "name": "3.2 DI-D MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191321, + "fields": { + "id_car_serie": 7079, + "name": "3.5 MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191322, + "fields": { + "id_car_serie": 7080, + "name": "2.5 TD AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191323, + "fields": { + "id_car_serie": 7080, + "name": "2.5 TD MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191324, + "fields": { + "id_car_serie": 7080, + "name": "2.8 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191325, + "fields": { + "id_car_serie": 7080, + "name": "2.8 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191326, + "fields": { + "id_car_serie": 7081, + "name": "2.5 TD AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191327, + "fields": { + "id_car_serie": 7081, + "name": "2.5 TD MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191328, + "fields": { + "id_car_serie": 7081, + "name": "2.8 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191329, + "fields": { + "id_car_serie": 7081, + "name": "2.8 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191330, + "fields": { + "id_car_serie": 7082, + "name": "2.0 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191331, + "fields": { + "id_car_serie": 7082, + "name": "2.0 Turbo AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191332, + "fields": { + "id_car_serie": 7082, + "name": "2.0 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191333, + "fields": { + "id_car_serie": 7082, + "name": "2.0 Turbo MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191334, + "fields": { + "id_car_serie": 7082, + "name": "2.3 TD MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191335, + "fields": { + "id_car_serie": 7082, + "name": "2.3 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191336, + "fields": { + "id_car_serie": 7082, + "name": "2.5 TD AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191337, + "fields": { + "id_car_serie": 7082, + "name": "2.5 TD MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191338, + "fields": { + "id_car_serie": 7083, + "name": "2.0 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191339, + "fields": { + "id_car_serie": 7083, + "name": "2.0 Turbo AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191340, + "fields": { + "id_car_serie": 7083, + "name": "2.0 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191341, + "fields": { + "id_car_serie": 7083, + "name": "2.0 Turbo MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191342, + "fields": { + "id_car_serie": 7083, + "name": "2.3 TD MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191343, + "fields": { + "id_car_serie": 7083, + "name": "2.3 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191344, + "fields": { + "id_car_serie": 7083, + "name": "2.5 TD AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191345, + "fields": { + "id_car_serie": 7083, + "name": "2.5 TD MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191346, + "fields": { + "id_car_serie": 7086, + "name": "2.8 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191347, + "fields": { + "id_car_serie": 7086, + "name": "2.8 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191348, + "fields": { + "id_car_serie": 7086, + "name": "3.5 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191349, + "fields": { + "id_car_serie": 7086, + "name": "3.5 GDI AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191350, + "fields": { + "id_car_serie": 7086, + "name": "3.5 GDI MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191351, + "fields": { + "id_car_serie": 7086, + "name": "3.5 GDI MT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191352, + "fields": { + "id_car_serie": 7087, + "name": "2.8 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191353, + "fields": { + "id_car_serie": 7087, + "name": "2.8 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191354, + "fields": { + "id_car_serie": 7087, + "name": "3.5 GDI AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191355, + "fields": { + "id_car_serie": 7087, + "name": "3.5 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191356, + "fields": { + "id_car_serie": 7087, + "name": "3.5 GDI MT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191357, + "fields": { + "id_car_serie": 7087, + "name": "3.5 MT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191358, + "fields": { + "id_car_serie": 7088, + "name": "3.2 DI-D AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191359, + "fields": { + "id_car_serie": 7088, + "name": "3.2 DI-D MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191361, + "fields": { + "id_car_serie": 7089, + "name": "3.2 DI-D AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191362, + "fields": { + "id_car_serie": 7089, + "name": "3.2 DI-D MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191363, + "fields": { + "id_car_serie": 7091, + "name": "2.4 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191364, + "fields": { + "id_car_serie": 7091, + "name": "2.4 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191365, + "fields": { + "id_car_serie": 7091, + "name": "2.8 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191366, + "fields": { + "id_car_serie": 7091, + "name": "2.8 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191367, + "fields": { + "id_car_serie": 7091, + "name": "3.5 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191368, + "fields": { + "id_car_serie": 7091, + "name": "3.5 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191369, + "fields": { + "id_car_serie": 7091, + "name": "3.5 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191370, + "fields": { + "id_car_serie": 7091, + "name": "3.5 MT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191371, + "fields": { + "id_car_serie": 9006, + "name": "3.8 MT AWD (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191372, + "fields": { + "id_car_serie": 9006, + "name": "S 3.8 PDK AWD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191373, + "fields": { + "id_car_serie": 9006, + "name": "3.8 PDK AWD (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191374, + "fields": { + "id_car_serie": 9001, + "name": "3.6 MT Carrera 4 (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191375, + "fields": { + "id_car_serie": 9001, + "name": "3.6 MT Carrera 4 (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191376, + "fields": { + "id_car_serie": 9001, + "name": "3.8 MT Carrera RS (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191377, + "fields": { + "id_car_serie": 7152, + "name": "2.5 CVT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191378, + "fields": { + "id_car_serie": 7152, + "name": "3.5 CVT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191379, + "fields": { + "id_car_serie": 7155, + "name": "2.5 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191380, + "fields": { + "id_car_serie": 7155, + "name": "2.5 CVT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191381, + "fields": { + "id_car_serie": 7155, + "name": "2.5 CVT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191382, + "fields": { + "id_car_serie": 7155, + "name": "3.5 MT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191383, + "fields": { + "id_car_serie": 7155, + "name": "3.5 sVT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191384, + "fields": { + "id_car_serie": 7158, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191385, + "fields": { + "id_car_serie": 7158, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191386, + "fields": { + "id_car_serie": 8999, + "name": "3.6 MT GT2 (462 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191387, + "fields": { + "id_car_serie": 7163, + "name": "1.6 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191388, + "fields": { + "id_car_serie": 7163, + "name": "1.6 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191389, + "fields": { + "id_car_serie": 7163, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191390, + "fields": { + "id_car_serie": 7163, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191391, + "fields": { + "id_car_serie": 7163, + "name": "1.8 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191392, + "fields": { + "id_car_serie": 7163, + "name": "1.8 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191393, + "fields": { + "id_car_serie": 7163, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191394, + "fields": { + "id_car_serie": 7163, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191395, + "fields": { + "id_car_serie": 7163, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191396, + "fields": { + "id_car_serie": 7163, + "name": "1.8 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191397, + "fields": { + "id_car_serie": 7163, + "name": "1.8 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191398, + "fields": { + "id_car_serie": 7163, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191399, + "fields": { + "id_car_serie": 7163, + "name": "2.0 D AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191400, + "fields": { + "id_car_serie": 7163, + "name": "2.0 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191401, + "fields": { + "id_car_serie": 7163, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191402, + "fields": { + "id_car_serie": 7163, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191403, + "fields": { + "id_car_serie": 7164, + "name": "1.8 SSS AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191404, + "fields": { + "id_car_serie": 7164, + "name": "1.8 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191405, + "fields": { + "id_car_serie": 7164, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191406, + "fields": { + "id_car_serie": 7164, + "name": "1.8 T SSS MT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191407, + "fields": { + "id_car_serie": 7164, + "name": "1.8 SSS MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191408, + "fields": { + "id_car_serie": 7165, + "name": "1.8i 16V MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191409, + "fields": { + "id_car_serie": 7165, + "name": "2.0i MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191410, + "fields": { + "id_car_serie": 7166, + "name": "1.8i 16V MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191411, + "fields": { + "id_car_serie": 7166, + "name": "2.0i MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191412, + "fields": { + "id_car_serie": 7167, + "name": "1.8i AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191413, + "fields": { + "id_car_serie": 7167, + "name": "1.8i T SSS MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191414, + "fields": { + "id_car_serie": 7167, + "name": "1.8i MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191415, + "fields": { + "id_car_serie": 7167, + "name": "2.0i AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191416, + "fields": { + "id_car_serie": 7167, + "name": "2.0i MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191417, + "fields": { + "id_car_serie": 7168, + "name": "1.8i T SSS AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191418, + "fields": { + "id_car_serie": 7168, + "name": "1.8i AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191419, + "fields": { + "id_car_serie": 7168, + "name": "1.8i T SSS MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191420, + "fields": { + "id_car_serie": 7168, + "name": "2.0i T MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191421, + "fields": { + "id_car_serie": 7169, + "name": "1.8 SSS MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191422, + "fields": { + "id_car_serie": 7169, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191423, + "fields": { + "id_car_serie": 7169, + "name": "1.8 T MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191424, + "fields": { + "id_car_serie": 7170, + "name": "1.8 SSS MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191425, + "fields": { + "id_car_serie": 7170, + "name": "1.8 T MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191426, + "fields": { + "id_car_serie": 7171, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191427, + "fields": { + "id_car_serie": 7171, + "name": "1.8 SSS MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191428, + "fields": { + "id_car_serie": 7172, + "name": "1.6 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191429, + "fields": { + "id_car_serie": 7172, + "name": "1.6 3MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191430, + "fields": { + "id_car_serie": 7172, + "name": "1.6 4MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191431, + "fields": { + "id_car_serie": 7172, + "name": "2.0 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191432, + "fields": { + "id_car_serie": 7177, + "name": "2.0 LPG AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191433, + "fields": { + "id_car_serie": 7177, + "name": "2.8 D AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191434, + "fields": { + "id_car_serie": 7177, + "name": "2.8 D AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191435, + "fields": { + "id_car_serie": 7177, + "name": "2.8 D MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191436, + "fields": { + "id_car_serie": 7177, + "name": "3.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191437, + "fields": { + "id_car_serie": 7178, + "name": "3.0 T AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191438, + "fields": { + "id_car_serie": 7178, + "name": "3.0 T MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191439, + "fields": { + "id_car_serie": 7180, + "name": "1.0 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191440, + "fields": { + "id_car_serie": 7184, + "name": "1.2 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191441, + "fields": { + "id_car_serie": 7184, + "name": "1.4 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191442, + "fields": { + "id_car_serie": 7200, + "name": "2.5 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191443, + "fields": { + "id_car_serie": 7200, + "name": "3.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191444, + "fields": { + "id_car_serie": 7200, + "name": "4.5 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191445, + "fields": { + "id_car_serie": 7212, + "name": "1.4 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191447, + "fields": { + "id_car_serie": 7214, + "name": "1.5 D MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191448, + "fields": { + "id_car_serie": 7214, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191449, + "fields": { + "id_car_serie": 7215, + "name": "1.2 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191450, + "fields": { + "id_car_serie": 7215, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191452, + "fields": { + "id_car_serie": 7215, + "name": "1.4 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191454, + "fields": { + "id_car_serie": 7215, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191455, + "fields": { + "id_car_serie": 7215, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191456, + "fields": { + "id_car_serie": 7216, + "name": "1.4 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191457, + "fields": { + "id_car_serie": 7216, + "name": "1.4 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191460, + "fields": { + "id_car_serie": 7222, + "name": "3.5 AT (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191461, + "fields": { + "id_car_serie": 7222, + "name": "3.5 MT (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191462, + "fields": { + "id_car_serie": 7223, + "name": "2.5 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191463, + "fields": { + "id_car_serie": 7223, + "name": "3.0 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191464, + "fields": { + "id_car_serie": 7223, + "name": "3.0 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191465, + "fields": { + "id_car_serie": 48783, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191466, + "fields": { + "id_car_serie": 48783, + "name": "1.4 CVT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191467, + "fields": { + "id_car_serie": 7230, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191468, + "fields": { + "id_car_serie": 8536, + "name": "4.7 AT 4WD (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191469, + "fields": { + "id_car_serie": 8536, + "name": "5.7 AT (349 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191470, + "fields": { + "id_car_serie": 8536, + "name": "5.7 AT 4WD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191471, + "fields": { + "id_car_serie": 8536, + "name": "5.7 Hybrid AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191473, + "fields": { + "id_car_serie": 7247, + "name": "3.5 4WD AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191474, + "fields": { + "id_car_serie": 7260, + "name": "4.3 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191475, + "fields": { + "id_car_serie": 8991, + "name": "3.0i AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191476, + "fields": { + "id_car_serie": 8991, + "name": "3.3i AT LE (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191477, + "fields": { + "id_car_serie": 8991, + "name": "3.8i AT LE (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191478, + "fields": { + "id_car_serie": 7281, + "name": "1.3 CDTI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191479, + "fields": { + "id_car_serie": 7281, + "name": "1.3 CDTI ecoFLEX MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191480, + "fields": { + "id_car_serie": 7281, + "name": "1.4 Turbo ecoFLEX MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191481, + "fields": { + "id_car_serie": 7281, + "name": "1.4 LPG Turbo ecoFLEX MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191482, + "fields": { + "id_car_serie": 7281, + "name": "1.7 CDTI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191483, + "fields": { + "id_car_serie": 7281, + "name": "1.7 CDTI ecoFLEX MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191484, + "fields": { + "id_car_serie": 7281, + "name": "1.7 CDTI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191485, + "fields": { + "id_car_serie": 7281, + "name": "1.7 CDTI ecoFLEX A+ MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191486, + "fields": { + "id_car_serie": 7282, + "name": "1.3 CDTI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191487, + "fields": { + "id_car_serie": 7282, + "name": "1.3 CDTI ecoFLEX MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191488, + "fields": { + "id_car_serie": 7282, + "name": "1.7 CDTI ecoFlex MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191489, + "fields": { + "id_car_serie": 7282, + "name": "1.7 CDTI ecoFlex A+ MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191490, + "fields": { + "id_car_serie": 7282, + "name": "1.7 CDTI ecoFlex MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191491, + "fields": { + "id_car_serie": 7282, + "name": "1.7 CDTI ecoFlex A+ MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191492, + "fields": { + "id_car_serie": 7284, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191493, + "fields": { + "id_car_serie": 7284, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191494, + "fields": { + "id_car_serie": 7284, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191495, + "fields": { + "id_car_serie": 7284, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191496, + "fields": { + "id_car_serie": 7284, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191497, + "fields": { + "id_car_serie": 7284, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191498, + "fields": { + "id_car_serie": 7285, + "name": "1.6 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191499, + "fields": { + "id_car_serie": 7285, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191500, + "fields": { + "id_car_serie": 7286, + "name": "1.3 CDTI ecoFLEX MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191501, + "fields": { + "id_car_serie": 7286, + "name": "1.4 ecoFLEX MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191502, + "fields": { + "id_car_serie": 7286, + "name": "1.4 Turbo MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191503, + "fields": { + "id_car_serie": 7286, + "name": "1.7 CDTI ecoFLEX MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191504, + "fields": { + "id_car_serie": 7286, + "name": "1.7 CDTI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191505, + "fields": { + "id_car_serie": 7286, + "name": "1.7 CDTI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191506, + "fields": { + "id_car_serie": 7286, + "name": "1.7 CDTI ecoFLEX MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191507, + "fields": { + "id_car_serie": 7286, + "name": "2.0 CDTI AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191508, + "fields": { + "id_car_serie": 7286, + "name": "2.0 CDTI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191509, + "fields": { + "id_car_serie": 7286, + "name": "2.0 CDTI ecoFLEX MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191510, + "fields": { + "id_car_serie": 7288, + "name": "1.3 CDTI ecoFLEX MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191511, + "fields": { + "id_car_serie": 7288, + "name": "1.3 CDTI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191512, + "fields": { + "id_car_serie": 7288, + "name": "1.3 CDTI ecoFLEX Easytronic (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191513, + "fields": { + "id_car_serie": 7288, + "name": "1.3 CDTI Easytronic (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191514, + "fields": { + "id_car_serie": 7288, + "name": "1.4 Easytronic (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191515, + "fields": { + "id_car_serie": 7288, + "name": "1.4 ecoFLEX Easytronic (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191516, + "fields": { + "id_car_serie": 7288, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191517, + "fields": { + "id_car_serie": 7288, + "name": "1.6 Easytronic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191518, + "fields": { + "id_car_serie": 7288, + "name": "1.7 CDTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191519, + "fields": { + "id_car_serie": 7288, + "name": "1.7 CDTI 6MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191520, + "fields": { + "id_car_serie": 7288, + "name": "1.7 CDTI ecoFLEX MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191521, + "fields": { + "id_car_serie": 7288, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191523, + "fields": { + "id_car_serie": 7288, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191524, + "fields": { + "id_car_serie": 7288, + "name": "1.9 CDTI AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191525, + "fields": { + "id_car_serie": 7288, + "name": "1.9 CDTI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191526, + "fields": { + "id_car_serie": 7289, + "name": "1.3 CDTI ecoFLEX MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191527, + "fields": { + "id_car_serie": 7289, + "name": "1.3 CDTI ecoFLEX Easytronic (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191528, + "fields": { + "id_car_serie": 7290, + "name": "1.3 CDTI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191529, + "fields": { + "id_car_serie": 7290, + "name": "1.7 CDTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191533, + "fields": { + "id_car_serie": 7294, + "name": "1.3 CDTI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191534, + "fields": { + "id_car_serie": 7294, + "name": "1.3 CDTI Easytronic (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191535, + "fields": { + "id_car_serie": 7294, + "name": "1.7 CDTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191536, + "fields": { + "id_car_serie": 7294, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191537, + "fields": { + "id_car_serie": 7294, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191538, + "fields": { + "id_car_serie": 7296, + "name": "1.3 CDTI ecoFLEX MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191539, + "fields": { + "id_car_serie": 7296, + "name": "1.4 ecoFLEX MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191540, + "fields": { + "id_car_serie": 7296, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191541, + "fields": { + "id_car_serie": 7296, + "name": "1.6 Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191542, + "fields": { + "id_car_serie": 7296, + "name": "1.6 Easytronic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191543, + "fields": { + "id_car_serie": 7296, + "name": "1.7 CDTI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191544, + "fields": { + "id_car_serie": 7296, + "name": "1.7 CDTI ecoFLEX MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191545, + "fields": { + "id_car_serie": 7296, + "name": "1.7 CDTI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191546, + "fields": { + "id_car_serie": 7296, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191547, + "fields": { + "id_car_serie": 7296, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191548, + "fields": { + "id_car_serie": 7296, + "name": "1.9 CDTI AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191549, + "fields": { + "id_car_serie": 7296, + "name": "1.9 CDTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191550, + "fields": { + "id_car_serie": 7296, + "name": "1.9 CDTI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191551, + "fields": { + "id_car_serie": 7296, + "name": "2.0 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191552, + "fields": { + "id_car_serie": 7299, + "name": "1.7 TD MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191553, + "fields": { + "id_car_serie": 7299, + "name": "2.0 Di AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191554, + "fields": { + "id_car_serie": 7300, + "name": "1.7 TD MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191555, + "fields": { + "id_car_serie": 7300, + "name": "1.7 DTI Eco4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191556, + "fields": { + "id_car_serie": 7300, + "name": "2.0 Di AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191557, + "fields": { + "id_car_serie": 7304, + "name": "1.3 CDTI MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191558, + "fields": { + "id_car_serie": 7304, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191561, + "fields": { + "id_car_serie": 7312, + "name": "1.4 Turbo LPG ecoFLEX MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191562, + "fields": { + "id_car_serie": 7312, + "name": "1.4 Turbo ecoFLEX MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191563, + "fields": { + "id_car_serie": 7312, + "name": "1.6 SIDI Turbo Ecotec AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191564, + "fields": { + "id_car_serie": 7312, + "name": "1.6 SIDI Turbo Ecotec MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191565, + "fields": { + "id_car_serie": 7312, + "name": "1.8 Ecotec MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191566, + "fields": { + "id_car_serie": 7312, + "name": "2.0 CDTI Bi-Turbo AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191567, + "fields": { + "id_car_serie": 7312, + "name": "2.0 SIDI Turbo Ecotec AT 4x4 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191568, + "fields": { + "id_car_serie": 7312, + "name": "2.0 CDTI AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191569, + "fields": { + "id_car_serie": 7312, + "name": "2.0 CDTI Bi-Turbo AT 4x4 (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191570, + "fields": { + "id_car_serie": 7312, + "name": "2.0 CDTi Ecotec AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191571, + "fields": { + "id_car_serie": 7312, + "name": "2.0 CDTi Ecotec AT 4x4 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191572, + "fields": { + "id_car_serie": 7312, + "name": "2.0 CDTI ecoFLEX MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191573, + "fields": { + "id_car_serie": 7312, + "name": "2.0 CDTi Ecotec MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191574, + "fields": { + "id_car_serie": 7312, + "name": "2.0 CDTI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191575, + "fields": { + "id_car_serie": 7312, + "name": "2.0 CDTI Bi-Turbo MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191576, + "fields": { + "id_car_serie": 7312, + "name": "2.0 SIDI Turbo Ecotec MT 4x4 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191577, + "fields": { + "id_car_serie": 8987, + "name": "2.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191578, + "fields": { + "id_car_serie": 8987, + "name": "2.5 AT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191579, + "fields": { + "id_car_serie": 8987, + "name": "2.5 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191580, + "fields": { + "id_car_serie": 8987, + "name": "2.5 5MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191581, + "fields": { + "id_car_serie": 8987, + "name": "2.5 4MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191582, + "fields": { + "id_car_serie": 8987, + "name": "2.5 5MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191583, + "fields": { + "id_car_serie": 8987, + "name": "2.5 5MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191584, + "fields": { + "id_car_serie": 8987, + "name": "2.5 4MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191585, + "fields": { + "id_car_serie": 8987, + "name": "2.5 4MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191586, + "fields": { + "id_car_serie": 8987, + "name": "2.8 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191587, + "fields": { + "id_car_serie": 8987, + "name": "2.8 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191588, + "fields": { + "id_car_serie": 8987, + "name": "2.8 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191589, + "fields": { + "id_car_serie": 8987, + "name": "2.8 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191590, + "fields": { + "id_car_serie": 8987, + "name": "2.8 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191591, + "fields": { + "id_car_serie": 8987, + "name": "2.8 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191592, + "fields": { + "id_car_serie": 8987, + "name": "5.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191593, + "fields": { + "id_car_serie": 8987, + "name": "5.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191594, + "fields": { + "id_car_serie": 8987, + "name": "5.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191595, + "fields": { + "id_car_serie": 8987, + "name": "5.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191596, + "fields": { + "id_car_serie": 7317, + "name": "1.3 CDTi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191597, + "fields": { + "id_car_serie": 7318, + "name": "1.3 CDTI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191598, + "fields": { + "id_car_serie": 8986, + "name": "5.7 MT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191599, + "fields": { + "id_car_serie": 7347, + "name": "1.4 2-Tronic HDi (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191600, + "fields": { + "id_car_serie": 7347, + "name": "1.6 2-Tronic HDi (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191601, + "fields": { + "id_car_serie": 7348, + "name": "1.6 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191602, + "fields": { + "id_car_serie": 7348, + "name": "1.6 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191603, + "fields": { + "id_car_serie": 7357, + "name": "1.6 THP MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191604, + "fields": { + "id_car_serie": 8976, + "name": "1.6 e-HDi ETG (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191605, + "fields": { + "id_car_serie": 8971, + "name": "2.0T MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191606, + "fields": { + "id_car_serie": 8970, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191607, + "fields": { + "id_car_serie": 7402, + "name": "3.8 AT GT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191608, + "fields": { + "id_car_serie": 7407, + "name": "3.4 AT LWB (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191609, + "fields": { + "id_car_serie": 7417, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191610, + "fields": { + "id_car_serie": 7418, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191611, + "fields": { + "id_car_serie": 7425, + "name": "2.7 Tiptronic (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191612, + "fields": { + "id_car_serie": 7425, + "name": "2.7 Tiptronic (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191613, + "fields": { + "id_car_serie": 7425, + "name": "2.7 5MT (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191614, + "fields": { + "id_car_serie": 7425, + "name": "2.7 5MT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191615, + "fields": { + "id_car_serie": 7425, + "name": "2.7 6MT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191616, + "fields": { + "id_car_serie": 7425, + "name": "S 3.2 Tiptronic (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191617, + "fields": { + "id_car_serie": 7425, + "name": "S 3.4 Tiptronic (291 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191618, + "fields": { + "id_car_serie": 7425, + "name": "S 3.4 MT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191619, + "fields": { + "id_car_serie": 7426, + "name": "2.7 PDK (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191620, + "fields": { + "id_car_serie": 7426, + "name": "S 3.4 MT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191621, + "fields": { + "id_car_serie": 7426, + "name": "S 3.4 PDK (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191622, + "fields": { + "id_car_serie": 7463, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191623, + "fields": { + "id_car_serie": 7463, + "name": "1.8i MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191624, + "fields": { + "id_car_serie": 7463, + "name": "1.9 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191625, + "fields": { + "id_car_serie": 7464, + "name": "1.4i MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191626, + "fields": { + "id_car_serie": 7464, + "name": "1.6i MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191627, + "fields": { + "id_car_serie": 7464, + "name": "1.8i MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191628, + "fields": { + "id_car_serie": 7465, + "name": "1.7 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191629, + "fields": { + "id_car_serie": 7466, + "name": "1.4 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191630, + "fields": { + "id_car_serie": 7466, + "name": "1.8 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191631, + "fields": { + "id_car_serie": 7466, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191632, + "fields": { + "id_car_serie": 7466, + "name": "1.9 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191633, + "fields": { + "id_car_serie": 4056, + "name": "1.4 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191634, + "fields": { + "id_car_serie": 4056, + "name": "1.8 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191635, + "fields": { + "id_car_serie": 4056, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191636, + "fields": { + "id_car_serie": 4056, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191637, + "fields": { + "id_car_serie": 4056, + "name": "1.9 TD MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191638, + "fields": { + "id_car_serie": 7468, + "name": "1.4 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191639, + "fields": { + "id_car_serie": 7468, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191640, + "fields": { + "id_car_serie": 7468, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191641, + "fields": { + "id_car_serie": 7468, + "name": "1.7 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191642, + "fields": { + "id_car_serie": 7468, + "name": "1.8 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191643, + "fields": { + "id_car_serie": 7468, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191644, + "fields": { + "id_car_serie": 7468, + "name": "1.9 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191645, + "fields": { + "id_car_serie": 7468, + "name": "1.9 TD MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191646, + "fields": { + "id_car_serie": 7474, + "name": "0.8 MT (36 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191647, + "fields": { + "id_car_serie": 7474, + "name": "1.1 5MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191648, + "fields": { + "id_car_serie": 7474, + "name": "1.3 AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191649, + "fields": { + "id_car_serie": 7475, + "name": "0.8 MT (36 hp)", + "arabic_name": "-", + "start_production_year": 1977, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191652, + "fields": { + "id_car_serie": 7475, + "name": "1.0 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191653, + "fields": { + "id_car_serie": 7475, + "name": "1.0 MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191654, + "fields": { + "id_car_serie": 7475, + "name": "1.1 5MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191655, + "fields": { + "id_car_serie": 7475, + "name": "1.3 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191656, + "fields": { + "id_car_serie": 7475, + "name": "1.3 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191657, + "fields": { + "id_car_serie": 7475, + "name": "1.3 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191658, + "fields": { + "id_car_serie": 9106, + "name": "3.2 5AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191660, + "fields": { + "id_car_serie": 7488, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191661, + "fields": { + "id_car_serie": 7490, + "name": "2.0 dCi Euro5 MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191662, + "fields": { + "id_car_serie": 7490, + "name": "2.0 dCi Euro5 MT 4x2 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191663, + "fields": { + "id_car_serie": 7490, + "name": "2.0 dCi MT 4x2 (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191665, + "fields": { + "id_car_serie": 7490, + "name": "2.0 dCi MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191668, + "fields": { + "id_car_serie": 7491, + "name": "2.0 T AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191669, + "fields": { + "id_car_serie": 7491, + "name": "3.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191670, + "fields": { + "id_car_serie": 7492, + "name": "3.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191671, + "fields": { + "id_car_serie": 7493, + "name": "2.7 MT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191672, + "fields": { + "id_car_serie": 7497, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191673, + "fields": { + "id_car_serie": 7497, + "name": "1.6 Hi-Flex MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191674, + "fields": { + "id_car_serie": 7498, + "name": "1.2 TCe MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191675, + "fields": { + "id_car_serie": 7498, + "name": "1.5 dCi EDC (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191676, + "fields": { + "id_car_serie": 7498, + "name": "2.0 X-Tronic (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191677, + "fields": { + "id_car_serie": 7498, + "name": "2.0 X-Tronic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191678, + "fields": { + "id_car_serie": 4078, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191679, + "fields": { + "id_car_serie": 4078, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191680, + "fields": { + "id_car_serie": 4078, + "name": "1.5 dCi EDC (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191681, + "fields": { + "id_car_serie": 4078, + "name": "1.6 Hi-Flex MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191682, + "fields": { + "id_car_serie": 4078, + "name": "2.0 dCi AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191684, + "fields": { + "id_car_serie": 7500, + "name": "1.5 dCi AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191686, + "fields": { + "id_car_serie": 7503, + "name": "2.0 dCi AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191687, + "fields": { + "id_car_serie": 7503, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191688, + "fields": { + "id_car_serie": 7501, + "name": "1.5 dCi AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191689, + "fields": { + "id_car_serie": 7505, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191690, + "fields": { + "id_car_serie": 7505, + "name": "1.5 dCi AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191691, + "fields": { + "id_car_serie": 7505, + "name": "1.5 dCi MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191692, + "fields": { + "id_car_serie": 7505, + "name": "1.5 dCi MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191693, + "fields": { + "id_car_serie": 7505, + "name": "1.5 dCi MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191694, + "fields": { + "id_car_serie": 7505, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191695, + "fields": { + "id_car_serie": 7505, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191696, + "fields": { + "id_car_serie": 7505, + "name": "1.9 dCi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191697, + "fields": { + "id_car_serie": 7505, + "name": "2.0 AT (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191698, + "fields": { + "id_car_serie": 7505, + "name": "2.0 MT (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191699, + "fields": { + "id_car_serie": 7506, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191700, + "fields": { + "id_car_serie": 7506, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191701, + "fields": { + "id_car_serie": 7509, + "name": "1.9 dTi AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191702, + "fields": { + "id_car_serie": 7509, + "name": "1.9 dCi MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191703, + "fields": { + "id_car_serie": 7515, + "name": "1.5 dCi MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191704, + "fields": { + "id_car_serie": 7515, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191705, + "fields": { + "id_car_serie": 7515, + "name": "1.9 dCi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191706, + "fields": { + "id_car_serie": 7515, + "name": "1.9 dCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191707, + "fields": { + "id_car_serie": 7515, + "name": "1.9 dCi FAP MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191708, + "fields": { + "id_car_serie": 7516, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191709, + "fields": { + "id_car_serie": 7518, + "name": "1.5 dCi MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191710, + "fields": { + "id_car_serie": 7518, + "name": "1.5 dCi MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191711, + "fields": { + "id_car_serie": 7539, + "name": "214 MT GSi/Si (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191712, + "fields": { + "id_car_serie": 7539, + "name": "214 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191713, + "fields": { + "id_car_serie": 7539, + "name": "216 MT GSi (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191714, + "fields": { + "id_car_serie": 7539, + "name": "216 MT GTi (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191715, + "fields": { + "id_car_serie": 7539, + "name": "218 TD MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191716, + "fields": { + "id_car_serie": 7539, + "name": "220 MT GTi (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191717, + "fields": { + "id_car_serie": 7539, + "name": "220 MT GTi (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191718, + "fields": { + "id_car_serie": 7539, + "name": "220 MT Turbo (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191719, + "fields": { + "id_car_serie": 4116, + "name": "1.9 TDi AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191720, + "fields": { + "id_car_serie": 4116, + "name": "1.9 TDi AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191721, + "fields": { + "id_car_serie": 4116, + "name": "1.9 TDi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191722, + "fields": { + "id_car_serie": 4116, + "name": "1.9 TDi MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191723, + "fields": { + "id_car_serie": 9103, + "name": "1.8T Tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191724, + "fields": { + "id_car_serie": 9103, + "name": "1.8T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191725, + "fields": { + "id_car_serie": 9103, + "name": "1.9 TDI Tiptronic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191726, + "fields": { + "id_car_serie": 9103, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191727, + "fields": { + "id_car_serie": 9103, + "name": "2.8 Tiptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191728, + "fields": { + "id_car_serie": 8929, + "name": "3.7 AT (332 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191729, + "fields": { + "id_car_serie": 8929, + "name": "3.7 MT (332 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191730, + "fields": { + "id_car_serie": 7580, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191731, + "fields": { + "id_car_serie": 7580, + "name": "1.5 AT AWD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191732, + "fields": { + "id_car_serie": 8928, + "name": "3.0 T AT (283 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191733, + "fields": { + "id_car_serie": 8928, + "name": "3.0 T MT (283 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191734, + "fields": { + "id_car_serie": 8927, + "name": "3.5 AT (287 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191735, + "fields": { + "id_car_serie": 7591, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191736, + "fields": { + "id_car_serie": 7592, + "name": "1.4 TDI MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191737, + "fields": { + "id_car_serie": 7592, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191738, + "fields": { + "id_car_serie": 7594, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191739, + "fields": { + "id_car_serie": 7594, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191744, + "fields": { + "id_car_serie": 7589, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191745, + "fields": { + "id_car_serie": 7589, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191746, + "fields": { + "id_car_serie": 7589, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191747, + "fields": { + "id_car_serie": 7589, + "name": "1.9 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191748, + "fields": { + "id_car_serie": 7589, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191749, + "fields": { + "id_car_serie": 7589, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191750, + "fields": { + "id_car_serie": 7596, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191751, + "fields": { + "id_car_serie": 8924, + "name": "3.0 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191752, + "fields": { + "id_car_serie": 8924, + "name": "3.0 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191753, + "fields": { + "id_car_serie": 7608, + "name": "1.3 SPI MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191754, + "fields": { + "id_car_serie": 7608, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191755, + "fields": { + "id_car_serie": 7608, + "name": "1.3 SPI MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191756, + "fields": { + "id_car_serie": 7608, + "name": "1.9D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191757, + "fields": { + "id_car_serie": 7609, + "name": "1.3 SPI MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191758, + "fields": { + "id_car_serie": 7609, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191759, + "fields": { + "id_car_serie": 7609, + "name": "1.9D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191760, + "fields": { + "id_car_serie": 7610, + "name": "1.3 SPI MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191761, + "fields": { + "id_car_serie": 7610, + "name": "1.3 SPI MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191762, + "fields": { + "id_car_serie": 7610, + "name": "1.9D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191763, + "fields": { + "id_car_serie": 7612, + "name": "2.0 TSI DSG (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191764, + "fields": { + "id_car_serie": 7612, + "name": "2.0 TDI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191765, + "fields": { + "id_car_serie": 7613, + "name": "1.9 TDI DPF DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191766, + "fields": { + "id_car_serie": 7613, + "name": "1.9 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191768, + "fields": { + "id_car_serie": 7613, + "name": "2.0 TDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191769, + "fields": { + "id_car_serie": 7613, + "name": "2.0 TDI DPF DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191770, + "fields": { + "id_car_serie": 7613, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191771, + "fields": { + "id_car_serie": 7613, + "name": "2.0 TDI DSG (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191772, + "fields": { + "id_car_serie": 7614, + "name": "1.4 TSI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191773, + "fields": { + "id_car_serie": 7614, + "name": "1.4 TSI DSG (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191774, + "fields": { + "id_car_serie": 7614, + "name": "1.6 TDI Greentech MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191775, + "fields": { + "id_car_serie": 7614, + "name": "1.6 TDI GreenLine MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191776, + "fields": { + "id_car_serie": 7614, + "name": "1.6 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191777, + "fields": { + "id_car_serie": 7614, + "name": "2.0 Tiptronic (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191778, + "fields": { + "id_car_serie": 7614, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191779, + "fields": { + "id_car_serie": 7614, + "name": "2.0 TDI DSG (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191780, + "fields": { + "id_car_serie": 7614, + "name": "2.0 TDI Euro V DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191781, + "fields": { + "id_car_serie": 7614, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191782, + "fields": { + "id_car_serie": 7615, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191783, + "fields": { + "id_car_serie": 7615, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191786, + "fields": { + "id_car_serie": 7623, + "name": "1.0 AMT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191787, + "fields": { + "id_car_serie": 7623, + "name": "1.0 AMT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191788, + "fields": { + "id_car_serie": 8918, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191789, + "fields": { + "id_car_serie": 7637, + "name": "E20 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191790, + "fields": { + "id_car_serie": 7637, + "name": "E20 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191791, + "fields": { + "id_car_serie": 7637, + "name": "E23 AT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191792, + "fields": { + "id_car_serie": 7637, + "name": "E23 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191793, + "fields": { + "id_car_serie": 7637, + "name": "E23 MT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191794, + "fields": { + "id_car_serie": 7637, + "name": "601 D MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191795, + "fields": { + "id_car_serie": 7637, + "name": "E23 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191796, + "fields": { + "id_car_serie": 7637, + "name": "602 D AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191797, + "fields": { + "id_car_serie": 7637, + "name": "602 D AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191798, + "fields": { + "id_car_serie": 7637, + "name": "602 D MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191799, + "fields": { + "id_car_serie": 7637, + "name": "602 D MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191800, + "fields": { + "id_car_serie": 7637, + "name": "E32 AT AWD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191801, + "fields": { + "id_car_serie": 7637, + "name": "E32 MT AWD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191802, + "fields": { + "id_car_serie": 8811, + "name": "112 L2 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191803, + "fields": { + "id_car_serie": 8811, + "name": "108 CDI L2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191804, + "fields": { + "id_car_serie": 8811, + "name": "109 CDI L2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191805, + "fields": { + "id_car_serie": 8811, + "name": "111 CDI L2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191806, + "fields": { + "id_car_serie": 7647, + "name": "2.0X E-AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191807, + "fields": { + "id_car_serie": 7647, + "name": "2.0XS E-AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191808, + "fields": { + "id_car_serie": 7647, + "name": "2.0XT E-AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191809, + "fields": { + "id_car_serie": 7647, + "name": "2.0X E-AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191810, + "fields": { + "id_car_serie": 7647, + "name": "2.0XS E-AT (148 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191811, + "fields": { + "id_car_serie": 7647, + "name": "2.0XT MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191812, + "fields": { + "id_car_serie": 7647, + "name": "2.0XS MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191813, + "fields": { + "id_car_serie": 7647, + "name": "2.0X MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191814, + "fields": { + "id_car_serie": 7647, + "name": "2.0XS MT (148 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191815, + "fields": { + "id_car_serie": 7647, + "name": "2.0X MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191816, + "fields": { + "id_car_serie": 7647, + "name": "2.0D MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191817, + "fields": { + "id_car_serie": 7647, + "name": "2.5XT E-AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191818, + "fields": { + "id_car_serie": 7647, + "name": "2.5XS E-AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191819, + "fields": { + "id_car_serie": 7647, + "name": "2.5XS MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191820, + "fields": { + "id_car_serie": 7647, + "name": "2.5XT MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191821, + "fields": { + "id_car_serie": 7651, + "name": "2.0i MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191823, + "fields": { + "id_car_serie": 7651, + "name": "2.0i Lineartronic AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191824, + "fields": { + "id_car_serie": 7653, + "name": "2.0 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191825, + "fields": { + "id_car_serie": 7653, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191826, + "fields": { + "id_car_serie": 7654, + "name": "2.5 MT AWD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191827, + "fields": { + "id_car_serie": 7655, + "name": "1.5 AT I AWD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191828, + "fields": { + "id_car_serie": 7655, + "name": "1.5 MT R AWD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191829, + "fields": { + "id_car_serie": 53579, + "name": "2.0 AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191831, + "fields": { + "id_car_serie": 53579, + "name": "2.0 MT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191834, + "fields": { + "id_car_serie": 53579, + "name": "2.5 MT AWD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191835, + "fields": { + "id_car_serie": 7658, + "name": "2.0 AT WRX AWD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191836, + "fields": { + "id_car_serie": 7658, + "name": "2.0 AT WRX AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191837, + "fields": { + "id_car_serie": 7658, + "name": "2.0 MT GX AWD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191838, + "fields": { + "id_car_serie": 7658, + "name": "2.0 MT GX AWD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191839, + "fields": { + "id_car_serie": 7658, + "name": "2.5 AT RS AWD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191840, + "fields": { + "id_car_serie": 9101, + "name": "1.4 TSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191841, + "fields": { + "id_car_serie": 9101, + "name": "1.6 TDI MT GreenLine (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191842, + "fields": { + "id_car_serie": 9101, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191843, + "fields": { + "id_car_serie": 9101, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191844, + "fields": { + "id_car_serie": 9101, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191845, + "fields": { + "id_car_serie": 8911, + "name": "2.0 turbo AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191846, + "fields": { + "id_car_serie": 8911, + "name": "2.0 turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191847, + "fields": { + "id_car_serie": 9097, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191848, + "fields": { + "id_car_serie": 9097, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191849, + "fields": { + "id_car_serie": 9097, + "name": "1.4 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191850, + "fields": { + "id_car_serie": 9097, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191851, + "fields": { + "id_car_serie": 7708, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191852, + "fields": { + "id_car_serie": 7709, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191853, + "fields": { + "id_car_serie": 7712, + "name": "1.0 AT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191854, + "fields": { + "id_car_serie": 7713, + "name": "1.0 AT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191855, + "fields": { + "id_car_serie": 8893, + "name": "2.5 TD MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191856, + "fields": { + "id_car_serie": 8889, + "name": "0.4 MT (36 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191857, + "fields": { + "id_car_serie": 8889, + "name": "0.4 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191858, + "fields": { + "id_car_serie": 8889, + "name": "0.4 MT (32 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191859, + "fields": { + "id_car_serie": 7757, + "name": "1.33 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191860, + "fields": { + "id_car_serie": 7757, + "name": "1.4 D-4D 6MMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191861, + "fields": { + "id_car_serie": 7757, + "name": "1.4 D-4D 5MMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191862, + "fields": { + "id_car_serie": 7757, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191864, + "fields": { + "id_car_serie": 7757, + "name": "2.2 D-4D Euro5 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191865, + "fields": { + "id_car_serie": 7758, + "name": "1.33 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191866, + "fields": { + "id_car_serie": 7758, + "name": "1.4 D-4D 6MMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191867, + "fields": { + "id_car_serie": 7758, + "name": "1.4 D-4D MMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191868, + "fields": { + "id_car_serie": 7758, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191869, + "fields": { + "id_car_serie": 7758, + "name": "1.5 CVT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191870, + "fields": { + "id_car_serie": 7758, + "name": "1.8 CVT 4WD (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191871, + "fields": { + "id_car_serie": 7758, + "name": "1.8 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191872, + "fields": { + "id_car_serie": 7758, + "name": "2.0 D-4D MT (126 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191874, + "fields": { + "id_car_serie": 7758, + "name": "2.2 D-4D Euro5 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191875, + "fields": { + "id_car_serie": 7758, + "name": "2.2 D-4D Euro4 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191876, + "fields": { + "id_car_serie": 8884, + "name": "2.8 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191877, + "fields": { + "id_car_serie": 8884, + "name": "2.8 D MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191878, + "fields": { + "id_car_serie": 8884, + "name": "3.0 MT V6 (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191879, + "fields": { + "id_car_serie": 7760, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191880, + "fields": { + "id_car_serie": 7773, + "name": "2.2DT AT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191881, + "fields": { + "id_car_serie": 7774, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191882, + "fields": { + "id_car_serie": 7774, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191883, + "fields": { + "id_car_serie": 7776, + "name": "2.4 VVT-i AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191884, + "fields": { + "id_car_serie": 7776, + "name": "2.4 VVT-i MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191885, + "fields": { + "id_car_serie": 7782, + "name": "3.0 AT (Japan) (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191886, + "fields": { + "id_car_serie": 7782, + "name": "3.3 AT Overdrive (US) (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191887, + "fields": { + "id_car_serie": 7784, + "name": "2.2 AT Overdrive (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191888, + "fields": { + "id_car_serie": 7784, + "name": "3.0 AT Overdrive (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191889, + "fields": { + "id_car_serie": 7785, + "name": "2.4 AT Overdrive 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191890, + "fields": { + "id_car_serie": 7785, + "name": "2.4 VVT-i AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191891, + "fields": { + "id_car_serie": 7785, + "name": "2.4 VVT-i MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191892, + "fields": { + "id_car_serie": 7785, + "name": "2.4 Hybrid CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191893, + "fields": { + "id_car_serie": 7785, + "name": "3.5 Dual VVT-i AT (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191894, + "fields": { + "id_car_serie": 7786, + "name": "2.2 MT Overdrive (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191895, + "fields": { + "id_car_serie": 14733, + "name": "1.5 AT skylight roof (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191896, + "fields": { + "id_car_serie": 14733, + "name": "1.5 AT high roof (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191897, + "fields": { + "id_car_serie": 14733, + "name": "1.5 MT standard roof (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191898, + "fields": { + "id_car_serie": 14733, + "name": "1.5 MT high roof (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191899, + "fields": { + "id_car_serie": 14733, + "name": "1.5 MT skylight roof (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191900, + "fields": { + "id_car_serie": 14733, + "name": "1.8 AT standard roof (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191901, + "fields": { + "id_car_serie": 14733, + "name": "1.8 AT high roof (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191902, + "fields": { + "id_car_serie": 14733, + "name": "1.8 AT skylight roof (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191903, + "fields": { + "id_car_serie": 14733, + "name": "1.8 MT standard roof (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191904, + "fields": { + "id_car_serie": 14733, + "name": "1.8 MT high roof (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191905, + "fields": { + "id_car_serie": 14733, + "name": "1.8 MT skylight roof (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191906, + "fields": { + "id_car_serie": 14733, + "name": "2.0 TD AT standard roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191907, + "fields": { + "id_car_serie": 14733, + "name": "2.0 AT AWD high roof (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191908, + "fields": { + "id_car_serie": 14733, + "name": "2.0 AT AWD skylight roof (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191909, + "fields": { + "id_car_serie": 14733, + "name": "2.0 AT AWD standard roof (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191910, + "fields": { + "id_car_serie": 14733, + "name": "2.0 TD AT AWD high roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191911, + "fields": { + "id_car_serie": 14733, + "name": "2.0 TD AT AWD skylight roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191912, + "fields": { + "id_car_serie": 14733, + "name": "2.0 TD AT high roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191913, + "fields": { + "id_car_serie": 14733, + "name": "2.0 MT AWD skylight roof (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191914, + "fields": { + "id_car_serie": 14733, + "name": "2.0 MT AWD standard roof (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191915, + "fields": { + "id_car_serie": 14733, + "name": "2.0 TD MT AWD high roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191916, + "fields": { + "id_car_serie": 14733, + "name": "2.0 TD MT AWD skylight roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191917, + "fields": { + "id_car_serie": 14733, + "name": "2.0 TD MT AWD standard roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191918, + "fields": { + "id_car_serie": 14733, + "name": "2.0 TD MT high roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191919, + "fields": { + "id_car_serie": 14733, + "name": "2.0 TD MT skylight roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191920, + "fields": { + "id_car_serie": 7788, + "name": "1.8 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191921, + "fields": { + "id_car_serie": 7788, + "name": "1.8 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191922, + "fields": { + "id_car_serie": 7788, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191923, + "fields": { + "id_car_serie": 7788, + "name": "2.0 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191924, + "fields": { + "id_car_serie": 7788, + "name": "2.0 MT Overdrive (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191925, + "fields": { + "id_car_serie": 7788, + "name": "2.5 AT Overdrive (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191926, + "fields": { + "id_car_serie": 7788, + "name": "2.5 MT Overdrive (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191927, + "fields": { + "id_car_serie": 8880, + "name": "1.7 MT GTO (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191928, + "fields": { + "id_car_serie": 8880, + "name": "2.0 MT GTO (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191929, + "fields": { + "id_car_serie": 8880, + "name": "2.0 MT GTO (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191930, + "fields": { + "id_car_serie": 8880, + "name": "2.0 MT GTO (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191931, + "fields": { + "id_car_serie": 8880, + "name": "2.0 MT Eterna (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191932, + "fields": { + "id_car_serie": 7791, + "name": "1.8 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191933, + "fields": { + "id_car_serie": 7794, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191934, + "fields": { + "id_car_serie": 7794, + "name": "1.6 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191935, + "fields": { + "id_car_serie": 7799, + "name": "1.5 AT Overdrive (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191936, + "fields": { + "id_car_serie": 7799, + "name": "1.5 5MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191937, + "fields": { + "id_car_serie": 7799, + "name": "1.5 4MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191938, + "fields": { + "id_car_serie": 7799, + "name": "1.8 AT Overdrive (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191939, + "fields": { + "id_car_serie": 7799, + "name": "2.0 D AT Overdrive (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191940, + "fields": { + "id_car_serie": 7805, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191941, + "fields": { + "id_car_serie": 7806, + "name": "2.0 Turbo MT 4WD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191942, + "fields": { + "id_car_serie": 7806, + "name": "2.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191943, + "fields": { + "id_car_serie": 7810, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191944, + "fields": { + "id_car_serie": 7811, + "name": "1.8 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191945, + "fields": { + "id_car_serie": 7811, + "name": "1.8 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191946, + "fields": { + "id_car_serie": 7811, + "name": "2.0 GT MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191947, + "fields": { + "id_car_serie": 7815, + "name": "4.0 AT L2 (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191949, + "fields": { + "id_car_serie": 7817, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191953, + "fields": { + "id_car_serie": 7817, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191954, + "fields": { + "id_car_serie": 7817, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191955, + "fields": { + "id_car_serie": 7817, + "name": "1.6 MMT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191956, + "fields": { + "id_car_serie": 7823, + "name": "1.4 D-4D MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191957, + "fields": { + "id_car_serie": 7824, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191958, + "fields": { + "id_car_serie": 7824, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191959, + "fields": { + "id_car_serie": 7824, + "name": "1.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191960, + "fields": { + "id_car_serie": 7824, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191961, + "fields": { + "id_car_serie": 7824, + "name": "2.0 D AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191962, + "fields": { + "id_car_serie": 7824, + "name": "2.0 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191963, + "fields": { + "id_car_serie": 7825, + "name": "2.0 D-4D MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191964, + "fields": { + "id_car_serie": 7826, + "name": "1.8 4AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191965, + "fields": { + "id_car_serie": 7826, + "name": "1.8 3AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191966, + "fields": { + "id_car_serie": 7826, + "name": "1.8 4AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191967, + "fields": { + "id_car_serie": 7826, + "name": "1.8 MT Overdrive (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191968, + "fields": { + "id_car_serie": 7827, + "name": "1.2 Synchromesh (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191969, + "fields": { + "id_car_serie": 7827, + "name": "1.2 Synchromesh (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191970, + "fields": { + "id_car_serie": 7827, + "name": "1.2 Synchromesh (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191971, + "fields": { + "id_car_serie": 7827, + "name": "1.4 Synchromesh (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191972, + "fields": { + "id_car_serie": 7827, + "name": "1.4 Synchromesh (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191973, + "fields": { + "id_car_serie": 7828, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191974, + "fields": { + "id_car_serie": 7832, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191975, + "fields": { + "id_car_serie": 7832, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191976, + "fields": { + "id_car_serie": 7832, + "name": "1.6 MT Overdrive (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191977, + "fields": { + "id_car_serie": 7832, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191978, + "fields": { + "id_car_serie": 7832, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191979, + "fields": { + "id_car_serie": 7832, + "name": "1.8 MT Overdrive (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191980, + "fields": { + "id_car_serie": 7832, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191982, + "fields": { + "id_car_serie": 7834, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191983, + "fields": { + "id_car_serie": 7834, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191984, + "fields": { + "id_car_serie": 7834, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191985, + "fields": { + "id_car_serie": 7834, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191986, + "fields": { + "id_car_serie": 7834, + "name": "1.6 AT Overdrive (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191987, + "fields": { + "id_car_serie": 7834, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191988, + "fields": { + "id_car_serie": 7834, + "name": "1.6 AT Overdrive (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191989, + "fields": { + "id_car_serie": 7834, + "name": "1.6 AT Overdrive 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191990, + "fields": { + "id_car_serie": 7834, + "name": "1.6 MT Overdrive 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191991, + "fields": { + "id_car_serie": 7834, + "name": "1.6 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191992, + "fields": { + "id_car_serie": 7834, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191993, + "fields": { + "id_car_serie": 7834, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191994, + "fields": { + "id_car_serie": 7834, + "name": "1.8 D AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191995, + "fields": { + "id_car_serie": 7834, + "name": "1.8 D AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191996, + "fields": { + "id_car_serie": 7835, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191997, + "fields": { + "id_car_serie": 7835, + "name": "1.6 MT Overdrive (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191998, + "fields": { + "id_car_serie": 7835, + "name": "1.8 D AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 191999, + "fields": { + "id_car_serie": 7836, + "name": "2.0 D AT (73 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192000, + "fields": { + "id_car_serie": 7838, + "name": "1.6 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192001, + "fields": { + "id_car_serie": 7838, + "name": "1.6 MT Overdrive (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192002, + "fields": { + "id_car_serie": 7838, + "name": "1.6 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192003, + "fields": { + "id_car_serie": 7838, + "name": "1.8 D AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192004, + "fields": { + "id_car_serie": 7838, + "name": "1.8 D MT Overdrive (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192006, + "fields": { + "id_car_serie": 7832, + "name": "1.3 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192007, + "fields": { + "id_car_serie": 7832, + "name": "1.3 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192010, + "fields": { + "id_car_serie": 47436, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192022, + "fields": { + "id_car_serie": 7845, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192023, + "fields": { + "id_car_serie": 7846, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192024, + "fields": { + "id_car_serie": 7846, + "name": "1.8 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192025, + "fields": { + "id_car_serie": 7846, + "name": "1.8 Synchromesh (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192026, + "fields": { + "id_car_serie": 7847, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192027, + "fields": { + "id_car_serie": 7847, + "name": "1.8 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192028, + "fields": { + "id_car_serie": 7847, + "name": "1.8 Synchromesh (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192029, + "fields": { + "id_car_serie": 7867, + "name": "2.6 Toyoglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192030, + "fields": { + "id_car_serie": 7867, + "name": "2.6 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192031, + "fields": { + "id_car_serie": 7869, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192032, + "fields": { + "id_car_serie": 7870, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192034, + "fields": { + "id_car_serie": 7871, + "name": "2.5 AT RWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192035, + "fields": { + "id_car_serie": 7871, + "name": "2.5 AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192037, + "fields": { + "id_car_serie": 7871, + "name": "2.5T AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192038, + "fields": { + "id_car_serie": 7871, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192039, + "fields": { + "id_car_serie": 7873, + "name": "2.5 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192040, + "fields": { + "id_car_serie": 7873, + "name": "2.5 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192041, + "fields": { + "id_car_serie": 7873, + "name": "3.0 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192042, + "fields": { + "id_car_serie": 7873, + "name": "3.0 AT 4WD (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192043, + "fields": { + "id_car_serie": 7873, + "name": "3.5 AT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192044, + "fields": { + "id_car_serie": 7875, + "name": "1.9 Toyoglide (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192045, + "fields": { + "id_car_serie": 7875, + "name": "1.9 Toyoglide (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192046, + "fields": { + "id_car_serie": 7875, + "name": "1.9 MT Overdrive (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192047, + "fields": { + "id_car_serie": 7875, + "name": "1.9 Synchromesh (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192048, + "fields": { + "id_car_serie": 7875, + "name": "2.0 Toyoglide (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192049, + "fields": { + "id_car_serie": 7875, + "name": "2.0 Synchromesh (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192050, + "fields": { + "id_car_serie": 7891, + "name": "2.4 TD AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192051, + "fields": { + "id_car_serie": 7891, + "name": "2.4 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192052, + "fields": { + "id_car_serie": 7891, + "name": "3.4 MT AWD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192053, + "fields": { + "id_car_serie": 7892, + "name": "2.4 TD AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192054, + "fields": { + "id_car_serie": 7892, + "name": "2.4 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192055, + "fields": { + "id_car_serie": 7892, + "name": "3.4 MT AWD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192056, + "fields": { + "id_car_serie": 7893, + "name": "2.4 TD AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192057, + "fields": { + "id_car_serie": 7893, + "name": "2.4 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192058, + "fields": { + "id_car_serie": 7893, + "name": "3.4 MT AWD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192059, + "fields": { + "id_car_serie": 7894, + "name": "2.8 D MT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192060, + "fields": { + "id_car_serie": 7894, + "name": "3.0 AT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192061, + "fields": { + "id_car_serie": 7894, + "name": "3.0 MT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192062, + "fields": { + "id_car_serie": 7895, + "name": "3.0 AT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192063, + "fields": { + "id_car_serie": 7895, + "name": "3.0 MT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192064, + "fields": { + "id_car_serie": 7896, + "name": "2.4 D AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192065, + "fields": { + "id_car_serie": 7896, + "name": "3.0 AT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192066, + "fields": { + "id_car_serie": 7896, + "name": "3.0 MT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192067, + "fields": { + "id_car_serie": 8872, + "name": "2.4 GDI MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192068, + "fields": { + "id_car_serie": 7903, + "name": "4.2 D MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192069, + "fields": { + "id_car_serie": 7903, + "name": "4.5 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192070, + "fields": { + "id_car_serie": 7903, + "name": "4.5 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192071, + "fields": { + "id_car_serie": 7903, + "name": "4.5 MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192072, + "fields": { + "id_car_serie": 7903, + "name": "4.5 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192073, + "fields": { + "id_car_serie": 7903, + "name": "4.7 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192074, + "fields": { + "id_car_serie": 7904, + "name": "4.2 TD AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192075, + "fields": { + "id_car_serie": 7904, + "name": "4.2 TD AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192076, + "fields": { + "id_car_serie": 7904, + "name": "4.2 TD MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192077, + "fields": { + "id_car_serie": 7904, + "name": "4.2 TD MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192078, + "fields": { + "id_car_serie": 7904, + "name": "4.2 D MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192079, + "fields": { + "id_car_serie": 7904, + "name": "4.5 AT (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192080, + "fields": { + "id_car_serie": 7904, + "name": "4.5 MT (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192081, + "fields": { + "id_car_serie": 7904, + "name": "4.7 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192082, + "fields": { + "id_car_serie": 7904, + "name": "4.7 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192083, + "fields": { + "id_car_serie": 7904, + "name": "4.7 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192084, + "fields": { + "id_car_serie": 7906, + "name": "3.4 D MT J61V STD Roof (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192085, + "fields": { + "id_car_serie": 7906, + "name": "4.0 AT J62G High Roof (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192086, + "fields": { + "id_car_serie": 7906, + "name": "4.0 TD MT J61V High Roof (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192087, + "fields": { + "id_car_serie": 7906, + "name": "4.0 MT J62V STD Roof (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192088, + "fields": { + "id_car_serie": 7907, + "name": "4.0 MT J80G (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192089, + "fields": { + "id_car_serie": 8868, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192090, + "fields": { + "id_car_serie": 8868, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192091, + "fields": { + "id_car_serie": 8868, + "name": "3.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192092, + "fields": { + "id_car_serie": 8868, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192093, + "fields": { + "id_car_serie": 8868, + "name": "3.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192094, + "fields": { + "id_car_serie": 8868, + "name": "3.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192095, + "fields": { + "id_car_serie": 8801, + "name": "2.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192096, + "fields": { + "id_car_serie": 8801, + "name": "3.0 AT 4WD (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192097, + "fields": { + "id_car_serie": 8801, + "name": "3.0 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192098, + "fields": { + "id_car_serie": 7963, + "name": "1.2 MT L (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192099, + "fields": { + "id_car_serie": 7963, + "name": "1.3 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192100, + "fields": { + "id_car_serie": 7963, + "name": "1.3 AMT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192101, + "fields": { + "id_car_serie": 7963, + "name": "1.6 AMT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192102, + "fields": { + "id_car_serie": 7966, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192103, + "fields": { + "id_car_serie": 7966, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192104, + "fields": { + "id_car_serie": 7966, + "name": "1.9 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192105, + "fields": { + "id_car_serie": 7966, + "name": "1.9 TDI MT 4Motion (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192106, + "fields": { + "id_car_serie": 7966, + "name": "1.9 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192107, + "fields": { + "id_car_serie": 7966, + "name": "2.0 SDI MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192108, + "fields": { + "id_car_serie": 7968, + "name": "1.1 Formel E MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192109, + "fields": { + "id_car_serie": 7972, + "name": "2.0 TSI DSG (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192110, + "fields": { + "id_car_serie": 7973, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192111, + "fields": { + "id_car_serie": 7973, + "name": "1.9 TDI 4Motion MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192112, + "fields": { + "id_car_serie": 7973, + "name": "1.9 TDI 6DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192113, + "fields": { + "id_car_serie": 7973, + "name": "1.9 TDI 7DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192114, + "fields": { + "id_car_serie": 7976, + "name": "2.8 VR6 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192115, + "fields": { + "id_car_serie": 7978, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192116, + "fields": { + "id_car_serie": 7978, + "name": "1.9 TDI DPF MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192117, + "fields": { + "id_car_serie": 7978, + "name": "1.9 TDI 6DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192118, + "fields": { + "id_car_serie": 7979, + "name": "1.4 TSI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192119, + "fields": { + "id_car_serie": 7979, + "name": "1.4 TSI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192120, + "fields": { + "id_car_serie": 7979, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192121, + "fields": { + "id_car_serie": 7979, + "name": "2.0 TDI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192122, + "fields": { + "id_car_serie": 7981, + "name": "1.9 TDI DPF MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192123, + "fields": { + "id_car_serie": 7981, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192124, + "fields": { + "id_car_serie": 7981, + "name": "1.9 TDI 7DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192125, + "fields": { + "id_car_serie": 7982, + "name": "1.8T Tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192126, + "fields": { + "id_car_serie": 7982, + "name": "1.8T AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192127, + "fields": { + "id_car_serie": 7982, + "name": "1.8T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192128, + "fields": { + "id_car_serie": 7982, + "name": "1.9 TDI Tiptronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192129, + "fields": { + "id_car_serie": 7982, + "name": "1.9 TDI Tiptronic (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192130, + "fields": { + "id_car_serie": 7982, + "name": "2.3 Tiptronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192131, + "fields": { + "id_car_serie": 7984, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192132, + "fields": { + "id_car_serie": 7984, + "name": "1.4 EuroIV MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192133, + "fields": { + "id_car_serie": 7984, + "name": "1.6 8v AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192134, + "fields": { + "id_car_serie": 7984, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192135, + "fields": { + "id_car_serie": 7984, + "name": "1.6 16v AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192136, + "fields": { + "id_car_serie": 7984, + "name": "1.6 FSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192137, + "fields": { + "id_car_serie": 7984, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192138, + "fields": { + "id_car_serie": 7984, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192139, + "fields": { + "id_car_serie": 7984, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192140, + "fields": { + "id_car_serie": 7984, + "name": "1.9 TDI Tiptronic (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192141, + "fields": { + "id_car_serie": 7984, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192142, + "fields": { + "id_car_serie": 7984, + "name": "1.9 TDI Tiptronic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192143, + "fields": { + "id_car_serie": 7984, + "name": "1.9 TDI Tiptronic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192144, + "fields": { + "id_car_serie": 7984, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192145, + "fields": { + "id_car_serie": 7984, + "name": "1.9 SDI MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192146, + "fields": { + "id_car_serie": 7984, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192147, + "fields": { + "id_car_serie": 7984, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192148, + "fields": { + "id_car_serie": 7984, + "name": "1.9 TDI 4Motion MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192149, + "fields": { + "id_car_serie": 7984, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192150, + "fields": { + "id_car_serie": 7984, + "name": "1.9 TDI 4Motion MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192151, + "fields": { + "id_car_serie": 7984, + "name": "1.9 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192152, + "fields": { + "id_car_serie": 7984, + "name": "1.9 TDI 4Motion MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192153, + "fields": { + "id_car_serie": 7984, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192154, + "fields": { + "id_car_serie": 7984, + "name": "2.0 Bi-Fuel MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192155, + "fields": { + "id_car_serie": 7984, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192156, + "fields": { + "id_car_serie": 7984, + "name": "2.0 4Motion MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192157, + "fields": { + "id_car_serie": 7985, + "name": "1.9 TDI Tiptronic (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192158, + "fields": { + "id_car_serie": 7985, + "name": "1.9 TDI Tiptronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192159, + "fields": { + "id_car_serie": 7985, + "name": "2.3 4Motion MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192160, + "fields": { + "id_car_serie": 7986, + "name": "2.0 GTI 16v MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192161, + "fields": { + "id_car_serie": 7986, + "name": "2.0 Syncro MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192162, + "fields": { + "id_car_serie": 7987, + "name": "2.0 GTI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192163, + "fields": { + "id_car_serie": 7987, + "name": "2.0 Syncro MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192164, + "fields": { + "id_car_serie": 7988, + "name": "1.8i AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192165, + "fields": { + "id_car_serie": 7990, + "name": "1.6 5MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192166, + "fields": { + "id_car_serie": 7996, + "name": "1.9 TDI AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192167, + "fields": { + "id_car_serie": 7996, + "name": "1.9 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192168, + "fields": { + "id_car_serie": 7996, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192169, + "fields": { + "id_car_serie": 7996, + "name": "1.9 TDI MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192170, + "fields": { + "id_car_serie": 7996, + "name": "1.9 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192171, + "fields": { + "id_car_serie": 7996, + "name": "2.0 4Motion MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192172, + "fields": { + "id_car_serie": 7996, + "name": "2.3 V5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192173, + "fields": { + "id_car_serie": 7997, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192174, + "fields": { + "id_car_serie": 7997, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192175, + "fields": { + "id_car_serie": 7997, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192176, + "fields": { + "id_car_serie": 7997, + "name": "1.6 FSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192177, + "fields": { + "id_car_serie": 7997, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192178, + "fields": { + "id_car_serie": 7997, + "name": "1.8 5V Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192179, + "fields": { + "id_car_serie": 7997, + "name": "1.9 TDI AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192180, + "fields": { + "id_car_serie": 7997, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192181, + "fields": { + "id_car_serie": 7997, + "name": "1.9 TDI AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192182, + "fields": { + "id_car_serie": 7997, + "name": "1.9 TDI AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192183, + "fields": { + "id_car_serie": 7997, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192184, + "fields": { + "id_car_serie": 7997, + "name": "1.9 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192185, + "fields": { + "id_car_serie": 7997, + "name": "1.9 TDI 4Motion MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192186, + "fields": { + "id_car_serie": 7997, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192187, + "fields": { + "id_car_serie": 7997, + "name": "1.9 TDI 4Motion MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192188, + "fields": { + "id_car_serie": 7997, + "name": "1.9 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192189, + "fields": { + "id_car_serie": 7997, + "name": "1.9 TDI 4Motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192190, + "fields": { + "id_car_serie": 7997, + "name": "2.3 V5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192191, + "fields": { + "id_car_serie": 7997, + "name": "2.3 V5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192192, + "fields": { + "id_car_serie": 7997, + "name": "2.3 V5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192193, + "fields": { + "id_car_serie": 7997, + "name": "2.3 V5 4Motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192194, + "fields": { + "id_car_serie": 7997, + "name": "2.8 V6 4Motion MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192195, + "fields": { + "id_car_serie": 7998, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192196, + "fields": { + "id_car_serie": 7999, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192197, + "fields": { + "id_car_serie": 7999, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192198, + "fields": { + "id_car_serie": 7999, + "name": "1.4 TSI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192199, + "fields": { + "id_car_serie": 7999, + "name": "1.4 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192200, + "fields": { + "id_car_serie": 7999, + "name": "1.4 TSI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192201, + "fields": { + "id_car_serie": 7999, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192202, + "fields": { + "id_car_serie": 7999, + "name": "1.4 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192203, + "fields": { + "id_car_serie": 7999, + "name": "1.4 TSI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192204, + "fields": { + "id_car_serie": 7999, + "name": "1.6 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192205, + "fields": { + "id_car_serie": 7999, + "name": "1.6 DSG (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192206, + "fields": { + "id_car_serie": 7999, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192207, + "fields": { + "id_car_serie": 7999, + "name": "1.9 TDI BlueMotion MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192208, + "fields": { + "id_car_serie": 7999, + "name": "1.9 TDI 7DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192209, + "fields": { + "id_car_serie": 7999, + "name": "1.9 TDI 6DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192210, + "fields": { + "id_car_serie": 7999, + "name": "2.0 FSI AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192211, + "fields": { + "id_car_serie": 7999, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192212, + "fields": { + "id_car_serie": 7999, + "name": "2.0 FSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192213, + "fields": { + "id_car_serie": 7999, + "name": "2.0 TSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192214, + "fields": { + "id_car_serie": 7999, + "name": "2.0 TFSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192215, + "fields": { + "id_car_serie": 7999, + "name": "2.0 TDI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192216, + "fields": { + "id_car_serie": 7999, + "name": "2.0 TFSI DSG (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192217, + "fields": { + "id_car_serie": 7999, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192218, + "fields": { + "id_car_serie": 7999, + "name": "2.0 TSI DSG (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192219, + "fields": { + "id_car_serie": 8000, + "name": "1.6 ECODiesel MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192220, + "fields": { + "id_car_serie": 8000, + "name": "1.8 Syncro MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192221, + "fields": { + "id_car_serie": 8000, + "name": "1.8 GT 16V MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192222, + "fields": { + "id_car_serie": 8000, + "name": "1.8 GTX MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192223, + "fields": { + "id_car_serie": 8000, + "name": "1.8 GTX 16V MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192224, + "fields": { + "id_car_serie": 8000, + "name": "1.8 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192225, + "fields": { + "id_car_serie": 8000, + "name": "1.8 GT MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192226, + "fields": { + "id_car_serie": 8006, + "name": "1.8 TSI Euro5 DSG (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192227, + "fields": { + "id_car_serie": 8006, + "name": "2.0 TSI MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192228, + "fields": { + "id_car_serie": 8006, + "name": "2.0 BlueTDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192229, + "fields": { + "id_car_serie": 8006, + "name": "2.0 TDI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192230, + "fields": { + "id_car_serie": 8006, + "name": "2.0 TSI DSG (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192231, + "fields": { + "id_car_serie": 8006, + "name": "2.0 TDI BlueMotion 4Motion DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192232, + "fields": { + "id_car_serie": 8006, + "name": "2.0 TDI BlueMotion DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192233, + "fields": { + "id_car_serie": 8006, + "name": "3.6 4Motion DSG (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192234, + "fields": { + "id_car_serie": 8011, + "name": "1.8 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192235, + "fields": { + "id_car_serie": 8011, + "name": "1.8 16V MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192236, + "fields": { + "id_car_serie": 8015, + "name": "3.0 TDI Tiptronic (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192237, + "fields": { + "id_car_serie": 8015, + "name": "5.0 TDI Euro4 Tiptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192238, + "fields": { + "id_car_serie": 8015, + "name": "5.0 TDI Tiptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192239, + "fields": { + "id_car_serie": 8567, + "name": "1.1 MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192240, + "fields": { + "id_car_serie": 8567, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192241, + "fields": { + "id_car_serie": 8031, + "name": "2.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192242, + "fields": { + "id_car_serie": 8031, + "name": "2.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192243, + "fields": { + "id_car_serie": 8031, + "name": "2.5 T5 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192244, + "fields": { + "id_car_serie": 8031, + "name": "2.5 T5 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192245, + "fields": { + "id_car_serie": 8034, + "name": "1.8F MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192246, + "fields": { + "id_car_serie": 8034, + "name": "2.4i Geartronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192247, + "fields": { + "id_car_serie": 8034, + "name": "2.4i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192248, + "fields": { + "id_car_serie": 8035, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192249, + "fields": { + "id_car_serie": 8035, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192250, + "fields": { + "id_car_serie": 8035, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192251, + "fields": { + "id_car_serie": 8035, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192252, + "fields": { + "id_car_serie": 8035, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192253, + "fields": { + "id_car_serie": 8035, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192254, + "fields": { + "id_car_serie": 8035, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192255, + "fields": { + "id_car_serie": 8035, + "name": "2.0 T AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192256, + "fields": { + "id_car_serie": 8035, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192257, + "fields": { + "id_car_serie": 8035, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192258, + "fields": { + "id_car_serie": 8035, + "name": "2.0 T MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192259, + "fields": { + "id_car_serie": 8560, + "name": "1.4 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192260, + "fields": { + "id_car_serie": 8560, + "name": "1.9 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192261, + "fields": { + "id_car_serie": 8043, + "name": "2.4 D5 Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192262, + "fields": { + "id_car_serie": 8043, + "name": "2.4 Bi-fuel LPG MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192263, + "fields": { + "id_car_serie": 8559, + "name": "1.4 TD MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192264, + "fields": { + "id_car_serie": 8559, + "name": "1.9 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192265, + "fields": { + "id_car_serie": 8046, + "name": "2.0 D4 Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192266, + "fields": { + "id_car_serie": 8046, + "name": "3.0 T6 Geartronic AWD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192267, + "fields": { + "id_car_serie": 8048, + "name": "2.4 D5 Turbo Geartronic AWD (7 places) (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192268, + "fields": { + "id_car_serie": 8048, + "name": "2.4 D5 Turbo Geartronic AWD (7 places) (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192269, + "fields": { + "id_car_serie": 8048, + "name": "2.4 D5 Turbo MT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192270, + "fields": { + "id_car_serie": 8048, + "name": "2.4 D5 Turbo MT AWD (7 places) (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192271, + "fields": { + "id_car_serie": 8048, + "name": "2.5T Turbo Geartronic AWD (7 places) (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192272, + "fields": { + "id_car_serie": 8048, + "name": "2.5T Turbo Geartronic (7 places) (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192273, + "fields": { + "id_car_serie": 8048, + "name": "2.5T Turbo Geartronic AWD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192274, + "fields": { + "id_car_serie": 8048, + "name": "2.5T Turbo Geartronic (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192275, + "fields": { + "id_car_serie": 8048, + "name": "2.5T Turbo MT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192276, + "fields": { + "id_car_serie": 8048, + "name": "2.5T Turbo MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192277, + "fields": { + "id_car_serie": 8048, + "name": "2.5T Turbo MT AWD (7 places) (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192278, + "fields": { + "id_car_serie": 8048, + "name": "2.5T Turbo MT (7 places) (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192279, + "fields": { + "id_car_serie": 8048, + "name": "2.9 T6 Turbo Geartronic AWD (7 places) (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192280, + "fields": { + "id_car_serie": 8048, + "name": "4.4 Geartronic AWD (7 places) (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192281, + "fields": { + "id_car_serie": 8551, + "name": "1.8 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192282, + "fields": { + "id_car_serie": 8797, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192283, + "fields": { + "id_car_serie": 8797, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192284, + "fields": { + "id_car_serie": 8797, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192285, + "fields": { + "id_car_serie": 8797, + "name": "2.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192286, + "fields": { + "id_car_serie": 8797, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192287, + "fields": { + "id_car_serie": 8797, + "name": "2.0 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192288, + "fields": { + "id_car_serie": 8797, + "name": "2.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192289, + "fields": { + "id_car_serie": 8797, + "name": "2.0 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192290, + "fields": { + "id_car_serie": 8090, + "name": "1.7 MT 8 valves. (Euro-3) (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192291, + "fields": { + "id_car_serie": 8095, + "name": "1.4 MT 16 valves (Euro-4) (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192292, + "fields": { + "id_car_serie": 8095, + "name": "1.6 MT 8 valves (Euro-3) (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192293, + "fields": { + "id_car_serie": 8095, + "name": "1.6 MT 16 valves (2181) (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192294, + "fields": { + "id_car_serie": 8095, + "name": "1.6 MT 16 valves (Euro-3) (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192295, + "fields": { + "id_car_serie": 8535, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192296, + "fields": { + "id_car_serie": 8457, + "name": "5.0 C10 3AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192297, + "fields": { + "id_car_serie": 8457, + "name": "5.0 C10 4AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192298, + "fields": { + "id_car_serie": 8457, + "name": "5.0 R10 4AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192299, + "fields": { + "id_car_serie": 8457, + "name": "5.0 C10 4MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192300, + "fields": { + "id_car_serie": 8457, + "name": "5.7 C20 3AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192301, + "fields": { + "id_car_serie": 8457, + "name": "5.7 C10 3AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192302, + "fields": { + "id_car_serie": 8457, + "name": "5.7 K10 3AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192303, + "fields": { + "id_car_serie": 8457, + "name": "5.7 C20 3AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192304, + "fields": { + "id_car_serie": 8457, + "name": "5.7 K20 3AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192305, + "fields": { + "id_car_serie": 8457, + "name": "5.7 C10 4AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192306, + "fields": { + "id_car_serie": 8457, + "name": "5.7 K10 4AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192308, + "fields": { + "id_car_serie": 8457, + "name": "5.7 C20 4AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192310, + "fields": { + "id_car_serie": 8457, + "name": "5.7 K20 4AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192311, + "fields": { + "id_car_serie": 8457, + "name": "5.7 K20 3AT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192312, + "fields": { + "id_car_serie": 8457, + "name": "5.7 R10 4AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192313, + "fields": { + "id_car_serie": 8457, + "name": "5.7 V10 4AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192314, + "fields": { + "id_car_serie": 8457, + "name": "5.7 R20 3AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192315, + "fields": { + "id_car_serie": 8457, + "name": "5.7 V20 3AT 4WD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192316, + "fields": { + "id_car_serie": 8457, + "name": "5.7 C20 4MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192317, + "fields": { + "id_car_serie": 8457, + "name": "5.7 C10 4MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192318, + "fields": { + "id_car_serie": 8457, + "name": "5.7 V20 4MT 4WD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192319, + "fields": { + "id_car_serie": 8457, + "name": "5.7 K20 4MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192320, + "fields": { + "id_car_serie": 8457, + "name": "5.7 V10 4MT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192321, + "fields": { + "id_car_serie": 8457, + "name": "5.7 K20 4MT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192322, + "fields": { + "id_car_serie": 8457, + "name": "5.7 R20 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192324, + "fields": { + "id_car_serie": 8457, + "name": "5.7 C20 4MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192326, + "fields": { + "id_car_serie": 8457, + "name": "5.7 K10 4MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192327, + "fields": { + "id_car_serie": 8457, + "name": "6.2D K20 3AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192328, + "fields": { + "id_car_serie": 8457, + "name": "6.2D s20 4AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192329, + "fields": { + "id_car_serie": 8457, + "name": "6.2D K20 4AT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192330, + "fields": { + "id_car_serie": 8457, + "name": "6.2D K20 3AT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192331, + "fields": { + "id_car_serie": 8457, + "name": "6.2D s20 4AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192332, + "fields": { + "id_car_serie": 8457, + "name": "6.2D s20 3AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192333, + "fields": { + "id_car_serie": 8457, + "name": "6.2D K20 4AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192334, + "fields": { + "id_car_serie": 8457, + "name": "6.2D s10 4AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192335, + "fields": { + "id_car_serie": 8457, + "name": "6.2D K10 4AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192336, + "fields": { + "id_car_serie": 8457, + "name": "6.2D s20 3AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192337, + "fields": { + "id_car_serie": 8457, + "name": "7.4 C20 3AT (210 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192339, + "fields": { + "id_car_serie": 8457, + "name": "7.4 C20 3AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192340, + "fields": { + "id_car_serie": 8457, + "name": "7.4 R20 3AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192341, + "fields": { + "id_car_serie": 8455, + "name": "6.0 C2500 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192342, + "fields": { + "id_car_serie": 8446, + "name": "5.7 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192343, + "fields": { + "id_car_serie": 8444, + "name": "5.6 MT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192344, + "fields": { + "id_car_serie": 8444, + "name": "5.6 MT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192345, + "fields": { + "id_car_serie": 8616, + "name": "3.5 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192346, + "fields": { + "id_car_serie": 9090, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192347, + "fields": { + "id_car_serie": 8600, + "name": "1.5 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192348, + "fields": { + "id_car_serie": 8600, + "name": "1.5 CVT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192349, + "fields": { + "id_car_serie": 8782, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192350, + "fields": { + "id_car_serie": 8781, + "name": "3.0 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192351, + "fields": { + "id_car_serie": 8781, + "name": "3.0 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192352, + "fields": { + "id_car_serie": 8778, + "name": "3.7 AT (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192353, + "fields": { + "id_car_serie": 8776, + "name": "1.25 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192354, + "fields": { + "id_car_serie": 8775, + "name": "1.6 MZ-CD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192355, + "fields": { + "id_car_serie": 8636, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192356, + "fields": { + "id_car_serie": 8643, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192357, + "fields": { + "id_car_serie": 8643, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192358, + "fields": { + "id_car_serie": 8643, + "name": "2.0 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192359, + "fields": { + "id_car_serie": 8644, + "name": "3.0 CRDi AT 2WD Shiftronic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192360, + "fields": { + "id_car_serie": 8644, + "name": "3.0 CRDi AT 4WD Shiftronic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192361, + "fields": { + "id_car_serie": 8644, + "name": "3.0 CRDi AT 4WD Shiftronic (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192362, + "fields": { + "id_car_serie": 8644, + "name": "3.0 CRDi AT 2WD Shiftronic (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192363, + "fields": { + "id_car_serie": 9063, + "name": "2.2 TD AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192364, + "fields": { + "id_car_serie": 9061, + "name": "414 MT GSI/SI KAT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192365, + "fields": { + "id_car_serie": 9061, + "name": "416 MT GSI (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192366, + "fields": { + "id_car_serie": 9061, + "name": "416 MT GTI (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192367, + "fields": { + "id_car_serie": 9061, + "name": "418 TD MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192368, + "fields": { + "id_car_serie": 9061, + "name": "418 MT D (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192369, + "fields": { + "id_car_serie": 9061, + "name": "420 MT GSI/SLI/GTI/Vite (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192370, + "fields": { + "id_car_serie": 9061, + "name": "420 MT Turbo (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192371, + "fields": { + "id_car_serie": 8708, + "name": "5.2 MT (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192372, + "fields": { + "id_car_serie": 8708, + "name": "5.2 AMT AWD (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192373, + "fields": { + "id_car_serie": 9050, + "name": "2.0 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192374, + "fields": { + "id_car_serie": 9050, + "name": "2.0 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192375, + "fields": { + "id_car_serie": 9050, + "name": "2.5 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192376, + "fields": { + "id_car_serie": 9050, + "name": "2.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192377, + "fields": { + "id_car_serie": 9050, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192378, + "fields": { + "id_car_serie": 9050, + "name": "3.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192379, + "fields": { + "id_car_serie": 8717, + "name": "4.0 AT (219 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192380, + "fields": { + "id_car_serie": 9048, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192381, + "fields": { + "id_car_serie": 9048, + "name": "1.2 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192382, + "fields": { + "id_car_serie": 9048, + "name": "1.5 dCi MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192384, + "fields": { + "id_car_serie": 8745, + "name": "3.0 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192385, + "fields": { + "id_car_serie": 8745, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192386, + "fields": { + "id_car_serie": 8745, + "name": "3.0 MT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192387, + "fields": { + "id_car_serie": 8745, + "name": "4.0 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192388, + "fields": { + "id_car_serie": 8745, + "name": "4.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192389, + "fields": { + "id_car_serie": 8745, + "name": "4.0 AT (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192390, + "fields": { + "id_car_serie": 8745, + "name": "4.0 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192391, + "fields": { + "id_car_serie": 8745, + "name": "4.0 MT (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192392, + "fields": { + "id_car_serie": 9038, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192393, + "fields": { + "id_car_serie": 9038, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192394, + "fields": { + "id_car_serie": 9038, + "name": "2.0 Sport MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192395, + "fields": { + "id_car_serie": 8312, + "name": "1.2i MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192396, + "fields": { + "id_car_serie": 8312, + "name": "1.4i MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192397, + "fields": { + "id_car_serie": 9036, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192398, + "fields": { + "id_car_serie": 9036, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192399, + "fields": { + "id_car_serie": 9036, + "name": "1.2 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192400, + "fields": { + "id_car_serie": 8743, + "name": "300 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192401, + "fields": { + "id_car_serie": 8743, + "name": "300 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192402, + "fields": { + "id_car_serie": 8743, + "name": "400 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192403, + "fields": { + "id_car_serie": 8743, + "name": "400 AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192404, + "fields": { + "id_car_serie": 8742, + "name": "300 AT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192405, + "fields": { + "id_car_serie": 8742, + "name": "300 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192406, + "fields": { + "id_car_serie": 8742, + "name": "300 AT AWD (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192407, + "fields": { + "id_car_serie": 8742, + "name": "300 AT AWD (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192408, + "fields": { + "id_car_serie": 8741, + "name": "330 AT 4WD (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192409, + "fields": { + "id_car_serie": 8740, + "name": "270 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192410, + "fields": { + "id_car_serie": 8740, + "name": "350 AT (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192411, + "fields": { + "id_car_serie": 8740, + "name": "450h CVT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192413, + "fields": { + "id_car_serie": 8738, + "name": "470 AT (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192414, + "fields": { + "id_car_serie": 14814, + "name": "470 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192416, + "fields": { + "id_car_serie": 8737, + "name": "570 AT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192417, + "fields": { + "id_car_serie": 9027, + "name": "2.7 PDK (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192418, + "fields": { + "id_car_serie": 9027, + "name": "S 3.4 PDK (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192419, + "fields": { + "id_car_serie": 8736, + "name": "250 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192420, + "fields": { + "id_car_serie": 8736, + "name": "250 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192421, + "fields": { + "id_car_serie": 8735, + "name": "250 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192422, + "fields": { + "id_car_serie": 8735, + "name": "300 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192423, + "fields": { + "id_car_serie": 8735, + "name": "300 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192424, + "fields": { + "id_car_serie": 8735, + "name": "300 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192425, + "fields": { + "id_car_serie": 8735, + "name": "300 MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192426, + "fields": { + "id_car_serie": 8734, + "name": "250 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192427, + "fields": { + "id_car_serie": 8734, + "name": "300 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192428, + "fields": { + "id_car_serie": 8734, + "name": "300 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192429, + "fields": { + "id_car_serie": 8733, + "name": "300 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192430, + "fields": { + "id_car_serie": 8733, + "name": "330 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192431, + "fields": { + "id_car_serie": 8729, + "name": "400 AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192432, + "fields": { + "id_car_serie": 8729, + "name": "400 AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192433, + "fields": { + "id_car_serie": 8729, + "name": "400 AT (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192434, + "fields": { + "id_car_serie": 8731, + "name": "200h CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192437, + "fields": { + "id_car_serie": 8865, + "name": "2.4 Sportronic (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192438, + "fields": { + "id_car_serie": 8865, + "name": "3.8 Sportronic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192439, + "fields": { + "id_car_serie": 8865, + "name": "3.8 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192440, + "fields": { + "id_car_serie": 8871, + "name": "2.4 GDI AT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192441, + "fields": { + "id_car_serie": 8871, + "name": "2.4 GDI MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192442, + "fields": { + "id_car_serie": 8871, + "name": "2.4 GDI MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192443, + "fields": { + "id_car_serie": 8871, + "name": "3.0i V6 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192444, + "fields": { + "id_car_serie": 9009, + "name": "3.4 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192445, + "fields": { + "id_car_serie": 9009, + "name": "4 3.4 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192446, + "fields": { + "id_car_serie": 9009, + "name": "4 3.4 PDK (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192447, + "fields": { + "id_car_serie": 9009, + "name": "3.4 PDK (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192448, + "fields": { + "id_car_serie": 9009, + "name": "S 3.8 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192449, + "fields": { + "id_car_serie": 9009, + "name": "4S 3.8 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192450, + "fields": { + "id_car_serie": 9009, + "name": "S 3.8 PDK (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192451, + "fields": { + "id_car_serie": 9009, + "name": "4S 3.8 PDK (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192452, + "fields": { + "id_car_serie": 8718, + "name": "4.0 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192453, + "fields": { + "id_car_serie": 8718, + "name": "4.0 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192455, + "fields": { + "id_car_serie": 8926, + "name": "3.5 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192456, + "fields": { + "id_car_serie": 8701, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192457, + "fields": { + "id_car_serie": 8701, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192458, + "fields": { + "id_car_serie": 8701, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192459, + "fields": { + "id_car_serie": 8701, + "name": "1.5 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192460, + "fields": { + "id_car_serie": 8701, + "name": "1.5 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192461, + "fields": { + "id_car_serie": 8696, + "name": "1.8 AT (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192462, + "fields": { + "id_car_serie": 8696, + "name": "1.8 MT (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192463, + "fields": { + "id_car_serie": 8989, + "name": "4.1 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192464, + "fields": { + "id_car_serie": 8989, + "name": "4.1 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192465, + "fields": { + "id_car_serie": 8989, + "name": "4.1 3MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192466, + "fields": { + "id_car_serie": 8989, + "name": "4.1 4MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192467, + "fields": { + "id_car_serie": 8989, + "name": "4.1 3MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192468, + "fields": { + "id_car_serie": 8989, + "name": "4.1 4MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192469, + "fields": { + "id_car_serie": 8989, + "name": "5.8 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192470, + "fields": { + "id_car_serie": 8989, + "name": "5.8 AT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192471, + "fields": { + "id_car_serie": 8989, + "name": "5.8 3MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192472, + "fields": { + "id_car_serie": 8989, + "name": "5.8 4MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192473, + "fields": { + "id_car_serie": 8989, + "name": "5.8 3MT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192474, + "fields": { + "id_car_serie": 8989, + "name": "5.8 4MT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192475, + "fields": { + "id_car_serie": 8989, + "name": "6.6 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192476, + "fields": { + "id_car_serie": 8989, + "name": "6.6 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192477, + "fields": { + "id_car_serie": 8989, + "name": "6.6 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192478, + "fields": { + "id_car_serie": 8989, + "name": "6.6 3MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192479, + "fields": { + "id_car_serie": 8989, + "name": "6.6 3MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192480, + "fields": { + "id_car_serie": 8989, + "name": "6.6 4MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192481, + "fields": { + "id_car_serie": 8989, + "name": "6.6 4MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192483, + "fields": { + "id_car_serie": 8981, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192484, + "fields": { + "id_car_serie": 8684, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192485, + "fields": { + "id_car_serie": 8684, + "name": "1.4 EcoDynamics MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192486, + "fields": { + "id_car_serie": 8684, + "name": "1.6 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192487, + "fields": { + "id_car_serie": 8684, + "name": "1.6 CRDi EcoDynamics MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192488, + "fields": { + "id_car_serie": 8684, + "name": "1.6 CRDi MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192489, + "fields": { + "id_car_serie": 8684, + "name": "1.6 CRDi EcoDynamics MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192490, + "fields": { + "id_car_serie": 8684, + "name": "1.6 CRDi EcoDynamics MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192491, + "fields": { + "id_car_serie": 8684, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192492, + "fields": { + "id_car_serie": 8683, + "name": "1.6 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192493, + "fields": { + "id_car_serie": 8683, + "name": "1.6 CRDi AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192494, + "fields": { + "id_car_serie": 8683, + "name": "1.6 CRDi AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192495, + "fields": { + "id_car_serie": 8683, + "name": "1.6 EcoDynamics MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192496, + "fields": { + "id_car_serie": 8683, + "name": "1.6 CRDi MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192497, + "fields": { + "id_car_serie": 8683, + "name": "1.6 CRDi EcoDynamics MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192498, + "fields": { + "id_car_serie": 8683, + "name": "1.6 CRDi EcoDynamics MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192499, + "fields": { + "id_car_serie": 8683, + "name": "1.6 CRDi MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192500, + "fields": { + "id_car_serie": 8682, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192501, + "fields": { + "id_car_serie": 8682, + "name": "1.4 EcoDynamics MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192502, + "fields": { + "id_car_serie": 8682, + "name": "1.6 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192503, + "fields": { + "id_car_serie": 8682, + "name": "1.6 CRDi MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192504, + "fields": { + "id_car_serie": 8682, + "name": "1.6 CRDi MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192505, + "fields": { + "id_car_serie": 8682, + "name": "1.6 EcoDynamics MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192506, + "fields": { + "id_car_serie": 8682, + "name": "1.6 CRDi EcoDynamics MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192507, + "fields": { + "id_car_serie": 8682, + "name": "1.6 CRDi EcoDynamics MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192508, + "fields": { + "id_car_serie": 8966, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192509, + "fields": { + "id_car_serie": 8966, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192510, + "fields": { + "id_car_serie": 8966, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192511, + "fields": { + "id_car_serie": 8966, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192512, + "fields": { + "id_car_serie": 8966, + "name": "2.2 DTI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192513, + "fields": { + "id_car_serie": 8966, + "name": "2.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192514, + "fields": { + "id_car_serie": 8966, + "name": "2.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192515, + "fields": { + "id_car_serie": 8677, + "name": "2.0 CRDi AT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192516, + "fields": { + "id_car_serie": 8669, + "name": "4.0 AT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192517, + "fields": { + "id_car_serie": 8669, + "name": "4.0 MT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192518, + "fields": { + "id_car_serie": 8310, + "name": "1.2i MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192519, + "fields": { + "id_car_serie": 8310, + "name": "1.4Si AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192520, + "fields": { + "id_car_serie": 8310, + "name": "1.4i AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192521, + "fields": { + "id_car_serie": 8310, + "name": "1.4i MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192522, + "fields": { + "id_car_serie": 8310, + "name": "1.4Si MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192523, + "fields": { + "id_car_serie": 8310, + "name": "1.4Si MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192525, + "fields": { + "id_car_serie": 8935, + "name": "1.8 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192526, + "fields": { + "id_car_serie": 8935, + "name": "2.0 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192527, + "fields": { + "id_car_serie": 8934, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192528, + "fields": { + "id_car_serie": 8934, + "name": "2.6 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192529, + "fields": { + "id_car_serie": 8934, + "name": "2.6 MT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192530, + "fields": { + "id_car_serie": 8933, + "name": "2.0 T AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192531, + "fields": { + "id_car_serie": 8933, + "name": "2.0 T MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192532, + "fields": { + "id_car_serie": 8933, + "name": "3.0 AT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192533, + "fields": { + "id_car_serie": 8933, + "name": "3.0 MT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192534, + "fields": { + "id_car_serie": 8667, + "name": "4.0 MT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192535, + "fields": { + "id_car_serie": 8666, + "name": "3.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192536, + "fields": { + "id_car_serie": 8666, + "name": "4.2 AT Long (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192537, + "fields": { + "id_car_serie": 8923, + "name": "2.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192538, + "fields": { + "id_car_serie": 8916, + "name": "4.1 AT 4WD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192539, + "fields": { + "id_car_serie": 8658, + "name": "3.1 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192540, + "fields": { + "id_car_serie": 8658, + "name": "3.2 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192541, + "fields": { + "id_car_serie": 8890, + "name": "0.4 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192542, + "fields": { + "id_car_serie": 8890, + "name": "0.4 MT (26 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192543, + "fields": { + "id_car_serie": 8890, + "name": "0.4 MT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192544, + "fields": { + "id_car_serie": 8651, + "name": "FX35 AT AWD (307 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192545, + "fields": { + "id_car_serie": 8651, + "name": "FX37 AT AWD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192546, + "fields": { + "id_car_serie": 8651, + "name": "FX50 AT AWD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192547, + "fields": { + "id_car_serie": 8881, + "name": "2.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192548, + "fields": { + "id_car_serie": 8309, + "name": "1.2i MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192549, + "fields": { + "id_car_serie": 8309, + "name": "1.4i AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192550, + "fields": { + "id_car_serie": 8309, + "name": "1.4Si AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192551, + "fields": { + "id_car_serie": 8309, + "name": "1.4i MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192552, + "fields": { + "id_car_serie": 8309, + "name": "1.4Si MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192553, + "fields": { + "id_car_serie": 8309, + "name": "1.4Si MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192554, + "fields": { + "id_car_serie": 8309, + "name": "1.5 D MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192557, + "fields": { + "id_car_serie": 8645, + "name": "2.0 MT 2WD (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192558, + "fields": { + "id_car_serie": 8875, + "name": "2.0 GTI-16V MT 4WD/4WS (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192559, + "fields": { + "id_car_serie": 8632, + "name": "3.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192560, + "fields": { + "id_car_serie": 8874, + "name": "1.8 AT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192561, + "fields": { + "id_car_serie": 8874, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192562, + "fields": { + "id_car_serie": 8874, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192563, + "fields": { + "id_car_serie": 8874, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192564, + "fields": { + "id_car_serie": 8874, + "name": "1.8 MT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192565, + "fields": { + "id_car_serie": 8874, + "name": "2.0 D AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192566, + "fields": { + "id_car_serie": 8874, + "name": "2.0 AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192567, + "fields": { + "id_car_serie": 8874, + "name": "2.0 AT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192568, + "fields": { + "id_car_serie": 8874, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192569, + "fields": { + "id_car_serie": 8874, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192570, + "fields": { + "id_car_serie": 8874, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192571, + "fields": { + "id_car_serie": 8874, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192572, + "fields": { + "id_car_serie": 8874, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192573, + "fields": { + "id_car_serie": 8874, + "name": "2.0 D MT AWD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192574, + "fields": { + "id_car_serie": 8874, + "name": "2.0 D MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192575, + "fields": { + "id_car_serie": 8874, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192576, + "fields": { + "id_car_serie": 8874, + "name": "2.0 MT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192577, + "fields": { + "id_car_serie": 8631, + "name": "2.0 Shiftronic (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192578, + "fields": { + "id_car_serie": 8631, + "name": "2.0 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192579, + "fields": { + "id_car_serie": 8631, + "name": "2.5 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192580, + "fields": { + "id_car_serie": 8631, + "name": "3.0 Shiftronic (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192581, + "fields": { + "id_car_serie": 8631, + "name": "3.0 Shiftronic (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192582, + "fields": { + "id_car_serie": 8631, + "name": "3.0 Shiftronic (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192583, + "fields": { + "id_car_serie": 8630, + "name": "2.4 AT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192584, + "fields": { + "id_car_serie": 8630, + "name": "3.8 AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192585, + "fields": { + "id_car_serie": 8629, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192586, + "fields": { + "id_car_serie": 8629, + "name": "1.5 AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192587, + "fields": { + "id_car_serie": 8867, + "name": "2.0 MT T (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192588, + "fields": { + "id_car_serie": 8622, + "name": "1.7 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192589, + "fields": { + "id_car_serie": 8622, + "name": "2.0 AT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192590, + "fields": { + "id_car_serie": 8794, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192591, + "fields": { + "id_car_serie": 8794, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192592, + "fields": { + "id_car_serie": 8794, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192593, + "fields": { + "id_car_serie": 8794, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192594, + "fields": { + "id_car_serie": 8794, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192595, + "fields": { + "id_car_serie": 8794, + "name": "1.5 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192596, + "fields": { + "id_car_serie": 8794, + "name": "1.8 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192597, + "fields": { + "id_car_serie": 8794, + "name": "1.8 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192598, + "fields": { + "id_car_serie": 8794, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192599, + "fields": { + "id_car_serie": 8794, + "name": "2.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192600, + "fields": { + "id_car_serie": 8794, + "name": "2.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192601, + "fields": { + "id_car_serie": 8558, + "name": "2.0 MT Turbo (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192602, + "fields": { + "id_car_serie": 8558, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192603, + "fields": { + "id_car_serie": 8306, + "name": "1.0 ecoFLEX MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192604, + "fields": { + "id_car_serie": 8306, + "name": "1.3 CDTi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192605, + "fields": { + "id_car_serie": 8306, + "name": "1.3 CDTi ecoFLEX MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192606, + "fields": { + "id_car_serie": 8306, + "name": "1.3 CDTi ecoFLEX MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192607, + "fields": { + "id_car_serie": 8306, + "name": "1.3 CDTi ecoFLEX Start/Stop MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192608, + "fields": { + "id_car_serie": 8306, + "name": "1.3 CDTi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192609, + "fields": { + "id_car_serie": 8306, + "name": "1.3 CDTi MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192610, + "fields": { + "id_car_serie": 8306, + "name": "1.2 ecoFLEX Easytronic (85 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192611, + "fields": { + "id_car_serie": 8306, + "name": "1.3 CDTi Easytronic (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192612, + "fields": { + "id_car_serie": 8306, + "name": "1.7 CDTI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192613, + "fields": { + "id_car_serie": 8481, + "name": "2.0 Turbo MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192614, + "fields": { + "id_car_serie": 8481, + "name": "3.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192615, + "fields": { + "id_car_serie": 8465, + "name": "3.8 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192616, + "fields": { + "id_car_serie": 8305, + "name": "1.0 ecoFLEX MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192617, + "fields": { + "id_car_serie": 8305, + "name": "1.3 CDTi ecoFLEX MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192618, + "fields": { + "id_car_serie": 8305, + "name": "1.3 CDTi ecoFLEX MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192619, + "fields": { + "id_car_serie": 8305, + "name": "1.3 CDTi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192620, + "fields": { + "id_car_serie": 8305, + "name": "1.3 CDTi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192621, + "fields": { + "id_car_serie": 8305, + "name": "1.3 CDTi MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192622, + "fields": { + "id_car_serie": 8305, + "name": "1.3 CDTi ecoFLEX Start/Stop MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192623, + "fields": { + "id_car_serie": 8305, + "name": "1.3 CDTi Easytronic (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192624, + "fields": { + "id_car_serie": 8305, + "name": "1.2 ecoFLEX Easytronic (85 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192625, + "fields": { + "id_car_serie": 8305, + "name": "1.7 CDTi MT (130 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192626, + "fields": { + "id_car_serie": 8456, + "name": "5.7 C1500 4AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192627, + "fields": { + "id_car_serie": 8456, + "name": "5.7 K1500 4AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192628, + "fields": { + "id_car_serie": 8456, + "name": "5.7 C2500 4AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192629, + "fields": { + "id_car_serie": 8456, + "name": "5.7 K2500 4AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192630, + "fields": { + "id_car_serie": 8456, + "name": "6.5TD C2500 4AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192631, + "fields": { + "id_car_serie": 8456, + "name": "6.5TD K2500 4AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192632, + "fields": { + "id_car_serie": 8456, + "name": "6.5TD C1500 4AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192633, + "fields": { + "id_car_serie": 8456, + "name": "6.5TD K1500 4AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192634, + "fields": { + "id_car_serie": 8456, + "name": "6.5TD C1500 4AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192635, + "fields": { + "id_car_serie": 8456, + "name": "6.5TD C2500 4AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192636, + "fields": { + "id_car_serie": 8456, + "name": "6.5TD K1500 4AT 4WD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192637, + "fields": { + "id_car_serie": 8456, + "name": "7.4 K2500 4AT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192638, + "fields": { + "id_car_serie": 8456, + "name": "7.4 K2500 4AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192639, + "fields": { + "id_car_serie": 8454, + "name": "5.3 FlexFuel 4AT 4WD 1500 (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192640, + "fields": { + "id_car_serie": 8454, + "name": "5.3 FlexFuel 4AT 1500 (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192641, + "fields": { + "id_car_serie": 8454, + "name": "6.0 2500 6AT 4WD (352 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192642, + "fields": { + "id_car_serie": 8454, + "name": "6.0 1500 4AT (366 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192643, + "fields": { + "id_car_serie": 8454, + "name": "6.0 1500 4AT 4WD (366 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192644, + "fields": { + "id_car_serie": 8454, + "name": "6.0 2500 4AT (352 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192645, + "fields": { + "id_car_serie": 8448, + "name": "1.2 TDCi MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192646, + "fields": { + "id_car_serie": 8448, + "name": "1.2 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192647, + "fields": { + "id_car_serie": 8448, + "name": "1.2 EMT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192648, + "fields": { + "id_car_serie": 8448, + "name": "1.4 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192649, + "fields": { + "id_car_serie": 8448, + "name": "1.4 EMT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192650, + "fields": { + "id_car_serie": 8445, + "name": "5.7 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192651, + "fields": { + "id_car_serie": 8445, + "name": "5.7 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192652, + "fields": { + "id_car_serie": 8439, + "name": "3.1 Hydra-Matic O.D. (160 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192655, + "fields": { + "id_car_serie": 8439, + "name": "3.4 Hydra-Matic O.D. (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192656, + "fields": { + "id_car_serie": 8439, + "name": "3.8 Hydra-Matic O.D. (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192657, + "fields": { + "id_car_serie": 8430, + "name": "2.2 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192658, + "fields": { + "id_car_serie": 8430, + "name": "2.2 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192659, + "fields": { + "id_car_serie": 8429, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192660, + "fields": { + "id_car_serie": 8429, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192661, + "fields": { + "id_car_serie": 8415, + "name": "1.9TiD MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192662, + "fields": { + "id_car_serie": 8304, + "name": "1.2 AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192663, + "fields": { + "id_car_serie": 8304, + "name": "1.2i MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192664, + "fields": { + "id_car_serie": 8304, + "name": "1.4 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192665, + "fields": { + "id_car_serie": 8304, + "name": "1.5 TD MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192666, + "fields": { + "id_car_serie": 8602, + "name": "1.5 CVT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192667, + "fields": { + "id_car_serie": 8602, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192668, + "fields": { + "id_car_serie": 8362, + "name": "6.0i AT Twin Turbo (610 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192669, + "fields": { + "id_car_serie": 8354, + "name": "2.2 T AT quattro (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192670, + "fields": { + "id_car_serie": 8354, + "name": "2.2 T MT quattro (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192671, + "fields": { + "id_car_serie": 8354, + "name": "4.2 MT quattro (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192672, + "fields": { + "id_car_serie": 8303, + "name": "1.2 AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192673, + "fields": { + "id_car_serie": 8303, + "name": "1.2i MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192674, + "fields": { + "id_car_serie": 8303, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192675, + "fields": { + "id_car_serie": 8303, + "name": "1.5 TD MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192676, + "fields": { + "id_car_serie": 8330, + "name": "1.6 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192677, + "fields": { + "id_car_serie": 8330, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192678, + "fields": { + "id_car_serie": 8330, + "name": "2.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192679, + "fields": { + "id_car_serie": 8330, + "name": "2.2 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192680, + "fields": { + "id_car_serie": 8330, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192681, + "fields": { + "id_car_serie": 8330, + "name": "2.2 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192682, + "fields": { + "id_car_serie": 14729, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192683, + "fields": { + "id_car_serie": 14729, + "name": "1.5 D MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192684, + "fields": { + "id_car_serie": 14640, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192685, + "fields": { + "id_car_serie": 14640, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192686, + "fields": { + "id_car_serie": 14640, + "name": "1.2 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192687, + "fields": { + "id_car_serie": 14640, + "name": "1.2 AMT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192688, + "fields": { + "id_car_serie": 14633, + "name": "5.4 AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192689, + "fields": { + "id_car_serie": 14633, + "name": "5.4 AT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192694, + "fields": { + "id_car_serie": 14870, + "name": "1.8T Tiptronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192695, + "fields": { + "id_car_serie": 14870, + "name": "1.8T Tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192696, + "fields": { + "id_car_serie": 14870, + "name": "1.8T AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192699, + "fields": { + "id_car_serie": 14870, + "name": "1.8T MT Quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192700, + "fields": { + "id_car_serie": 14870, + "name": "1.8T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192702, + "fields": { + "id_car_serie": 14870, + "name": "1.8T MT Quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192704, + "fields": { + "id_car_serie": 14870, + "name": "1.8T MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192717, + "fields": { + "id_car_serie": 14924, + "name": "5.7 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192718, + "fields": { + "id_car_serie": 14924, + "name": "5.7 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192719, + "fields": { + "id_car_serie": 14727, + "name": "2.3 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192720, + "fields": { + "id_car_serie": 14727, + "name": "2.3 MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192721, + "fields": { + "id_car_serie": 14643, + "name": "0.6 AMT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192722, + "fields": { + "id_car_serie": 14643, + "name": "0.7 AMT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192723, + "fields": { + "id_car_serie": 14643, + "name": "0.7 AMT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192725, + "fields": { + "id_car_serie": 14643, + "name": "0.7 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192726, + "fields": { + "id_car_serie": 14643, + "name": "0.8 CDi AMT (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192727, + "fields": { + "id_car_serie": 14644, + "name": "0.6 AMT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192728, + "fields": { + "id_car_serie": 14644, + "name": "0.6 AMT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192729, + "fields": { + "id_car_serie": 14644, + "name": "0.6 AMT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192730, + "fields": { + "id_car_serie": 14644, + "name": "0.8 AMT CDi (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192731, + "fields": { + "id_car_serie": 14730, + "name": "3.0 TSI Hybrid Tiptronic 4Motion (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192732, + "fields": { + "id_car_serie": 14730, + "name": "4.2 TDI Tiptronic 4Motion (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192733, + "fields": { + "id_car_serie": 14649, + "name": "210993 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192734, + "fields": { + "id_car_serie": 14649, + "name": "21099 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192735, + "fields": { + "id_car_serie": 14649, + "name": "21099i MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192736, + "fields": { + "id_car_serie": 14649, + "name": "210994-20 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192738, + "fields": { + "id_car_serie": 14655, + "name": "1.6 MT 16 valves (Euro-3) (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192739, + "fields": { + "id_car_serie": 14655, + "name": "1.6 MT 16 valves (Euro-4) (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192740, + "fields": { + "id_car_serie": 14655, + "name": "1.6 MT 8 valves (Euro-4) (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192741, + "fields": { + "id_car_serie": 14656, + "name": "1.6 MT 16 valves (Euro-3) (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192742, + "fields": { + "id_car_serie": 14656, + "name": "1.6 MT 16 valves (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192743, + "fields": { + "id_car_serie": 14694, + "name": "S E-Hybrid 3.0 Tiptronic S AWD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192744, + "fields": { + "id_car_serie": 14694, + "name": "S Diesel 4.2 Tiptronic S AWD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192745, + "fields": { + "id_car_serie": 14695, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192746, + "fields": { + "id_car_serie": 14704, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192747, + "fields": { + "id_car_serie": 10787, + "name": "2.0 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192748, + "fields": { + "id_car_serie": 10787, + "name": "2.0 TDI MT 4Motion (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192762, + "fields": { + "id_car_serie": 10776, + "name": "115 CDI 4MATIC AT L1H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192763, + "fields": { + "id_car_serie": 10776, + "name": "115 CDI 4MATIC AT L2H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192764, + "fields": { + "id_car_serie": 10776, + "name": "115 CDI 4MATIC AT L3H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192765, + "fields": { + "id_car_serie": 10776, + "name": "115 CDI AT L1H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192766, + "fields": { + "id_car_serie": 10776, + "name": "115 CDI AT L2H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192767, + "fields": { + "id_car_serie": 10776, + "name": "115 CDI AT L3H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192768, + "fields": { + "id_car_serie": 10776, + "name": "111 CDI AT L2H1 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192769, + "fields": { + "id_car_serie": 10776, + "name": "111 CDI AT L1H1 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192770, + "fields": { + "id_car_serie": 10776, + "name": "111 CDI AT L3H1 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192771, + "fields": { + "id_car_serie": 10776, + "name": "111 CDI 4MATIC AT L1H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192772, + "fields": { + "id_car_serie": 10776, + "name": "111 CDI 4MATIC AT L2H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192773, + "fields": { + "id_car_serie": 10776, + "name": "111 CDI 4MATIC AT L3H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192774, + "fields": { + "id_car_serie": 10776, + "name": "111 CDI AT L1H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192775, + "fields": { + "id_car_serie": 10776, + "name": "111 CDI AT L2H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192776, + "fields": { + "id_car_serie": 10776, + "name": "111 CDI AT L3H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192777, + "fields": { + "id_car_serie": 10776, + "name": "111 CDI MT L1H1 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192778, + "fields": { + "id_car_serie": 10776, + "name": "111 CDI MT L3H1 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192779, + "fields": { + "id_car_serie": 10776, + "name": "111 CDI MT L2H1 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192780, + "fields": { + "id_car_serie": 10776, + "name": "109 CDI MT L3H1 (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192781, + "fields": { + "id_car_serie": 10776, + "name": "109 CDI MT L2H1 (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192782, + "fields": { + "id_car_serie": 10776, + "name": "109 CDI MT L1H1 (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192783, + "fields": { + "id_car_serie": 10776, + "name": "115 CDI MT L3H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192784, + "fields": { + "id_car_serie": 10776, + "name": "115 CDI MT L2H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192785, + "fields": { + "id_car_serie": 10776, + "name": "115 CDI MT L1H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192786, + "fields": { + "id_car_serie": 10776, + "name": "111 CDI MT L3H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192787, + "fields": { + "id_car_serie": 10776, + "name": "111 CDI MT L2H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192788, + "fields": { + "id_car_serie": 10776, + "name": "111 CDI MT L1H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192789, + "fields": { + "id_car_serie": 10776, + "name": "109 CDI MT L3H1 (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192790, + "fields": { + "id_car_serie": 10776, + "name": "109 CDI MT L2H1 (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192791, + "fields": { + "id_car_serie": 10776, + "name": "109 CDI MT L1H1 (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192792, + "fields": { + "id_car_serie": 10776, + "name": "120 CDI AT L1H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192793, + "fields": { + "id_car_serie": 10776, + "name": "120 CDI AT L2H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192794, + "fields": { + "id_car_serie": 10776, + "name": "120 CDI AT L3H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192795, + "fields": { + "id_car_serie": 10776, + "name": "119 AT L1H1 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192796, + "fields": { + "id_car_serie": 10776, + "name": "119 AT L2H1 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192797, + "fields": { + "id_car_serie": 10776, + "name": "119 AT L3H1 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192798, + "fields": { + "id_car_serie": 10776, + "name": "122 AT L1H1 (217 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192799, + "fields": { + "id_car_serie": 10776, + "name": "122 AT L2H1 (217 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192800, + "fields": { + "id_car_serie": 10776, + "name": "122 AT L3H1 (217 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192801, + "fields": { + "id_car_serie": 10776, + "name": "126 AT L1H1 (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192802, + "fields": { + "id_car_serie": 10776, + "name": "126 AT L2H1 (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192803, + "fields": { + "id_car_serie": 10776, + "name": "126 AT L3H1 (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192804, + "fields": { + "id_car_serie": 10776, + "name": "123 AT L3H1 (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192805, + "fields": { + "id_car_serie": 10776, + "name": "123 AT L2H1 (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192806, + "fields": { + "id_car_serie": 10776, + "name": "123 AT L1H1 (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192807, + "fields": { + "id_car_serie": 10775, + "name": "110 CDI BlueEfficiency MT compact (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192808, + "fields": { + "id_car_serie": 10775, + "name": "113 CDI BlueEfficiency MT over long (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192809, + "fields": { + "id_car_serie": 10775, + "name": "113 CDI BlueEfficiency MT extended (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192810, + "fields": { + "id_car_serie": 10775, + "name": "110 CDI BlueEfficiency MT over long (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192811, + "fields": { + "id_car_serie": 10775, + "name": "110 CDI BlueEfficiency MT extended (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192812, + "fields": { + "id_car_serie": 10775, + "name": "116 CDI BlueEfficiency MT compact (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192813, + "fields": { + "id_car_serie": 10775, + "name": "113 CDI BlueEfficiency MT compact (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192814, + "fields": { + "id_car_serie": 10775, + "name": "116 CDI BlueEfficiency MT over long (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192815, + "fields": { + "id_car_serie": 10775, + "name": "116 CDI BlueEfficiency MT extended (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192816, + "fields": { + "id_car_serie": 10775, + "name": "122 CDI BlueEfficiency AT over long (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192817, + "fields": { + "id_car_serie": 10775, + "name": "122 CDI BlueEfficiency AT extended (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192818, + "fields": { + "id_car_serie": 10775, + "name": "122 CDI BlueEfficiency AT compact (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192819, + "fields": { + "id_car_serie": 10775, + "name": "126 AT extended (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192820, + "fields": { + "id_car_serie": 10775, + "name": "126 AT compact (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192821, + "fields": { + "id_car_serie": 10775, + "name": "126 AT over long (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192823, + "fields": { + "id_car_serie": 10769, + "name": "2.0 HDI AT L2H1 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192824, + "fields": { + "id_car_serie": 10755, + "name": "21041 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192825, + "fields": { + "id_car_serie": 10755, + "name": "21048D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192826, + "fields": { + "id_car_serie": 10753, + "name": "1111 MT (29 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192827, + "fields": { + "id_car_serie": 10740, + "name": "2.4 D5 Geartronic AWD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192828, + "fields": { + "id_car_serie": 10738, + "name": "2.4 D6 Plug-in-Hybrid Geartronic AWD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192829, + "fields": { + "id_car_serie": 10737, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192830, + "fields": { + "id_car_serie": 10737, + "name": "1.8i MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192831, + "fields": { + "id_car_serie": 10737, + "name": "1.8 Bi-Fuel MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192832, + "fields": { + "id_car_serie": 10737, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192833, + "fields": { + "id_car_serie": 10737, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192834, + "fields": { + "id_car_serie": 10737, + "name": "2.0 T AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192835, + "fields": { + "id_car_serie": 10737, + "name": "2.0 T4 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192836, + "fields": { + "id_car_serie": 10737, + "name": "2.0 T4 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192837, + "fields": { + "id_car_serie": 10737, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192838, + "fields": { + "id_car_serie": 10737, + "name": "2.0 T MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192839, + "fields": { + "id_car_serie": 10736, + "name": "2.4 Turbo AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192840, + "fields": { + "id_car_serie": 10736, + "name": "2.4 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192841, + "fields": { + "id_car_serie": 10736, + "name": "2.5 Turbo AT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192842, + "fields": { + "id_car_serie": 10736, + "name": "2.5 TD AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192843, + "fields": { + "id_car_serie": 10736, + "name": "2.5 TD MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192844, + "fields": { + "id_car_serie": 10736, + "name": "2.9 Geartronic (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192845, + "fields": { + "id_car_serie": 10735, + "name": "2.0F Turbo MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192846, + "fields": { + "id_car_serie": 10735, + "name": "2.5F Turbo Geartronic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192847, + "fields": { + "id_car_serie": 10735, + "name": "2.5F Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192848, + "fields": { + "id_car_serie": 10735, + "name": "3.0 T6 Turbo Geartronic AWD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192849, + "fields": { + "id_car_serie": 10734, + "name": "2.4 T5 Turbo Geartronic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192850, + "fields": { + "id_car_serie": 10734, + "name": "2.4 TD Geartronic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192851, + "fields": { + "id_car_serie": 10734, + "name": "2.4 Bi-fuel CNG MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192852, + "fields": { + "id_car_serie": 10734, + "name": "2.4 D5 Turbo MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192853, + "fields": { + "id_car_serie": 10734, + "name": "2.5 R Geartronic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192854, + "fields": { + "id_car_serie": 10734, + "name": "2.5 T Geartronic (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192855, + "fields": { + "id_car_serie": 10734, + "name": "2.5 T Geartronic AWD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192856, + "fields": { + "id_car_serie": 10734, + "name": "2.5 R MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192857, + "fields": { + "id_car_serie": 10734, + "name": "2.5 T MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192858, + "fields": { + "id_car_serie": 10734, + "name": "2.5 T MT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192859, + "fields": { + "id_car_serie": 10732, + "name": "1.8 F MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192860, + "fields": { + "id_car_serie": 10726, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192861, + "fields": { + "id_car_serie": 10726, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192862, + "fields": { + "id_car_serie": 10726, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192863, + "fields": { + "id_car_serie": 10726, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192864, + "fields": { + "id_car_serie": 10726, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192865, + "fields": { + "id_car_serie": 10726, + "name": "2.0 TDI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192866, + "fields": { + "id_car_serie": 10724, + "name": "1.4 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192867, + "fields": { + "id_car_serie": 10724, + "name": "2.0 TDI BlueMotion MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192868, + "fields": { + "id_car_serie": 10724, + "name": "2.0 TSI 4Motion MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192869, + "fields": { + "id_car_serie": 10724, + "name": "2.0 TSI 4Motion DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192870, + "fields": { + "id_car_serie": 10810, + "name": "3.0 AT D Long (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192871, + "fields": { + "id_car_serie": 10810, + "name": "3.0 MT D Long (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192879, + "fields": { + "id_car_serie": 10819, + "name": "1.4 HDi AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192880, + "fields": { + "id_car_serie": 10820, + "name": "1.4 HDi AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192881, + "fields": { + "id_car_serie": 10822, + "name": "2.0 CVT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192882, + "fields": { + "id_car_serie": 10829, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192883, + "fields": { + "id_car_serie": 10829, + "name": "1.6 MT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192884, + "fields": { + "id_car_serie": 10829, + "name": "1.9 D MT AWD (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192885, + "fields": { + "id_car_serie": 10829, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192886, + "fields": { + "id_car_serie": 10829, + "name": "1.9 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192887, + "fields": { + "id_car_serie": 10829, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192888, + "fields": { + "id_car_serie": 10829, + "name": "2.0 TD AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192889, + "fields": { + "id_car_serie": 10829, + "name": "2.0 MT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192890, + "fields": { + "id_car_serie": 10829, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192891, + "fields": { + "id_car_serie": 10830, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192892, + "fields": { + "id_car_serie": 10830, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192893, + "fields": { + "id_car_serie": 10830, + "name": "1.6 MT AWD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192894, + "fields": { + "id_car_serie": 10830, + "name": "1.6 MT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192895, + "fields": { + "id_car_serie": 10830, + "name": "1.9 TDI MT AWD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192896, + "fields": { + "id_car_serie": 10830, + "name": "1.9 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192897, + "fields": { + "id_car_serie": 10830, + "name": "2.0 MT AWD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192898, + "fields": { + "id_car_serie": 10830, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192899, + "fields": { + "id_car_serie": 10831, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192900, + "fields": { + "id_car_serie": 10831, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192901, + "fields": { + "id_car_serie": 10831, + "name": "1.6 MT AWD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192902, + "fields": { + "id_car_serie": 10831, + "name": "1.6 MT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192903, + "fields": { + "id_car_serie": 10831, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192904, + "fields": { + "id_car_serie": 10831, + "name": "2.0 MT AWD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192905, + "fields": { + "id_car_serie": 14712, + "name": "1.3 CVT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192906, + "fields": { + "id_car_serie": 14715, + "name": "1.8 T multitronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192907, + "fields": { + "id_car_serie": 14715, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192908, + "fields": { + "id_car_serie": 14719, + "name": "1.8 TDCi MT SWB (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192909, + "fields": { + "id_car_serie": 14722, + "name": "2.0 T MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192925, + "fields": { + "id_car_serie": 14724, + "name": "1.3 CDTI ecoFLEX MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192926, + "fields": { + "id_car_serie": 14724, + "name": "1.3 CDTI ecoFLEX MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192927, + "fields": { + "id_car_serie": 14728, + "name": "1.4 TSI BlueMotion MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192928, + "fields": { + "id_car_serie": 14728, + "name": "2.0 TDI BlueMotion DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192929, + "fields": { + "id_car_serie": 14731, + "name": "2.3 D MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192930, + "fields": { + "id_car_serie": 14732, + "name": "2.0 AT high roof (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192931, + "fields": { + "id_car_serie": 14732, + "name": "2.0 TD AT 4WD skylight roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192932, + "fields": { + "id_car_serie": 14732, + "name": "2.0 TD AT 4WD twin moon roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192933, + "fields": { + "id_car_serie": 14732, + "name": "2.0 TD AT 4WD high roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192934, + "fields": { + "id_car_serie": 14732, + "name": "2.0 TD AT skylight roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192935, + "fields": { + "id_car_serie": 14732, + "name": "2.0 TD AT twin moon roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192936, + "fields": { + "id_car_serie": 14732, + "name": "2.0 TD AT high roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192937, + "fields": { + "id_car_serie": 14732, + "name": "2.0 AT 4WD skylight roof (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192938, + "fields": { + "id_car_serie": 14732, + "name": "2.0 TD MT skylight roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192939, + "fields": { + "id_car_serie": 14732, + "name": "2.0 MT skylight roof (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192940, + "fields": { + "id_car_serie": 14732, + "name": "2.0 MT 4WD high roof (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192941, + "fields": { + "id_car_serie": 14732, + "name": "2.0 MT twin moon roof (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192942, + "fields": { + "id_car_serie": 14732, + "name": "2.0 TD MT twin moon roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192943, + "fields": { + "id_car_serie": 14732, + "name": "2.0 TD MT 4WD skylight roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192944, + "fields": { + "id_car_serie": 14732, + "name": "2.0 TD MT 4WD twin moon roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192945, + "fields": { + "id_car_serie": 14732, + "name": "2.0 MT 4WD twin moon roof (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192946, + "fields": { + "id_car_serie": 14732, + "name": "2.0 TD MT high roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192947, + "fields": { + "id_car_serie": 14732, + "name": "2.0 MT middle roof (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192948, + "fields": { + "id_car_serie": 14732, + "name": "2.2 TD AT twin moon roof (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192949, + "fields": { + "id_car_serie": 14732, + "name": "2.2 TD AT 4WD twin moon roof (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192950, + "fields": { + "id_car_serie": 14732, + "name": "2.2 TD AT skylight roof (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192951, + "fields": { + "id_car_serie": 14732, + "name": "2.2 TD AT high roof (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192952, + "fields": { + "id_car_serie": 14732, + "name": "2.2 TD AT 4WD skylight roof (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192953, + "fields": { + "id_car_serie": 14732, + "name": "2.2 TD AT 4WD high roof (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192954, + "fields": { + "id_car_serie": 14732, + "name": "2.2 TD MT 4WD twin moon roof (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192955, + "fields": { + "id_car_serie": 14732, + "name": "2.2 TD MT 4WD skylight roof (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192956, + "fields": { + "id_car_serie": 14732, + "name": "2.2 TD MT high roof (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192957, + "fields": { + "id_car_serie": 14732, + "name": "2.2 TD MT 4WD high roof (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192958, + "fields": { + "id_car_serie": 14732, + "name": "2.2 TD MT skylight roof (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 192959, + "fields": { + "id_car_serie": 14732, + "name": "2.2 TD MT twin moon roof (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193012, + "fields": { + "id_car_serie": 14754, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193013, + "fields": { + "id_car_serie": 14813, + "name": "430 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193014, + "fields": { + "id_car_serie": 14821, + "name": "1.3 CDTi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193015, + "fields": { + "id_car_serie": 14824, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193016, + "fields": { + "id_car_serie": 14810, + "name": "350 AT (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193017, + "fields": { + "id_car_serie": 4494, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193018, + "fields": { + "id_car_serie": 4494, + "name": "1.8 Xtronic (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193019, + "fields": { + "id_car_serie": 14847, + "name": "5.7 AT AWD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193020, + "fields": { + "id_car_serie": 14780, + "name": "1.7 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193021, + "fields": { + "id_car_serie": 14780, + "name": "1.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193022, + "fields": { + "id_car_serie": 14781, + "name": "1.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193023, + "fields": { + "id_car_serie": 14781, + "name": "1.7 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193024, + "fields": { + "id_car_serie": 14781, + "name": "2.0 HDI AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193025, + "fields": { + "id_car_serie": 14790, + "name": "M45 AT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193026, + "fields": { + "id_car_serie": 14790, + "name": "M45 AT AWD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193027, + "fields": { + "id_car_serie": 14790, + "name": "M45 AT (339 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193028, + "fields": { + "id_car_serie": 14811, + "name": "300 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193029, + "fields": { + "id_car_serie": 14811, + "name": "350 AT AWD (226 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193030, + "fields": { + "id_car_serie": 14811, + "name": "450h CVT (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193031, + "fields": { + "id_car_serie": 14811, + "name": "460 AT (347 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193032, + "fields": { + "id_car_serie": 14815, + "name": "400h CVT (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193033, + "fields": { + "id_car_serie": 14815, + "name": "400h CVT AWD (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193034, + "fields": { + "id_car_serie": 14815, + "name": "350 AT (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193035, + "fields": { + "id_car_serie": 14815, + "name": "350 AT AWD (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193036, + "fields": { + "id_car_serie": 14815, + "name": "350 AT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193037, + "fields": { + "id_car_serie": 14815, + "name": "350 AT AWD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193038, + "fields": { + "id_car_serie": 14826, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193039, + "fields": { + "id_car_serie": 14826, + "name": "1.9 TDI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193040, + "fields": { + "id_car_serie": 14830, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193041, + "fields": { + "id_car_serie": 14830, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193042, + "fields": { + "id_car_serie": 14832, + "name": "1.4 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193043, + "fields": { + "id_car_serie": 14832, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193044, + "fields": { + "id_car_serie": 14834, + "name": "1.33 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193045, + "fields": { + "id_car_serie": 14834, + "name": "1.5 CVT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193046, + "fields": { + "id_car_serie": 14837, + "name": "2.4 TD AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193047, + "fields": { + "id_car_serie": 14837, + "name": "2.4 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193048, + "fields": { + "id_car_serie": 14837, + "name": "3.4 MT AWD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193049, + "fields": { + "id_car_serie": 14838, + "name": "2.4 TD AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193050, + "fields": { + "id_car_serie": 14838, + "name": "2.4 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193051, + "fields": { + "id_car_serie": 14838, + "name": "3.4 MT AWD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193052, + "fields": { + "id_car_serie": 14839, + "name": "2.4 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193053, + "fields": { + "id_car_serie": 14839, + "name": "3.4 MT AWD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193054, + "fields": { + "id_car_serie": 14852, + "name": "2.0 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193055, + "fields": { + "id_car_serie": 14853, + "name": "2.5 AT 4Motion long (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193056, + "fields": { + "id_car_serie": 14853, + "name": "2.8 AT long (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193057, + "fields": { + "id_car_serie": 14857, + "name": "S 4.0 AT (528 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193058, + "fields": { + "id_car_serie": 14857, + "name": "4.0 AT (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193059, + "fields": { + "id_car_serie": 15163, + "name": "6.0 4AT 4WD 1500 (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193060, + "fields": { + "id_car_serie": 15163, + "name": "6.0 4AT 1500 (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193061, + "fields": { + "id_car_serie": 15146, + "name": "1.8 MT GTI (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193062, + "fields": { + "id_car_serie": 14863, + "name": "2.3 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193063, + "fields": { + "id_car_serie": 14863, + "name": "2.3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193064, + "fields": { + "id_car_serie": 14929, + "name": "2.2 Hydra-Matic (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193065, + "fields": { + "id_car_serie": 14929, + "name": "3.5 Hydra-Matic (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193068, + "fields": { + "id_car_serie": 15056, + "name": "1.3 CDTI MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193069, + "fields": { + "id_car_serie": 15111, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193070, + "fields": { + "id_car_serie": 15111, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193071, + "fields": { + "id_car_serie": 15111, + "name": "1.2 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193072, + "fields": { + "id_car_serie": 15111, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193073, + "fields": { + "id_car_serie": 15111, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193074, + "fields": { + "id_car_serie": 14876, + "name": "3.0 TDI tiptronic quattro (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193075, + "fields": { + "id_car_serie": 14876, + "name": "3.2 FSI tiptronic quattro (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193076, + "fields": { + "id_car_serie": 14876, + "name": "3.2 L FSI multitronic (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193077, + "fields": { + "id_car_serie": 14876, + "name": "3.2 FSI multitronic (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193078, + "fields": { + "id_car_serie": 14876, + "name": "4.2 L TDI tiptronic quattro (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193079, + "fields": { + "id_car_serie": 14876, + "name": "4.2 TDI tiptronic quattro (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193080, + "fields": { + "id_car_serie": 14876, + "name": "4.2 L FSI tiptronic quattro (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193081, + "fields": { + "id_car_serie": 14876, + "name": "6.0 L W12 tiptronic quattro (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193082, + "fields": { + "id_car_serie": 14864, + "name": "2.3 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193083, + "fields": { + "id_car_serie": 14864, + "name": "2.3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193084, + "fields": { + "id_car_serie": 14865, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193085, + "fields": { + "id_car_serie": 14865, + "name": "1.6 TDI S-tronic (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193086, + "fields": { + "id_car_serie": 14866, + "name": "1.6 TDI 99g MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193087, + "fields": { + "id_car_serie": 14866, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193088, + "fields": { + "id_car_serie": 14866, + "name": "1.6 TDI S-tronic (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193089, + "fields": { + "id_car_serie": 14867, + "name": "1.4 TFSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193090, + "fields": { + "id_car_serie": 14868, + "name": "1.4 TFSI S-tronic (125 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193096, + "fields": { + "id_car_serie": 14868, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193097, + "fields": { + "id_car_serie": 14868, + "name": "1.9 TDIe Dpf MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193100, + "fields": { + "id_car_serie": 14868, + "name": "2.0 TDI MT Quattro (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193101, + "fields": { + "id_car_serie": 14868, + "name": "2.0 TDI Dpf MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193102, + "fields": { + "id_car_serie": 14868, + "name": "2.0 TDI Dpf MT Quattro (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193105, + "fields": { + "id_car_serie": 14868, + "name": "2.0 TDI Dpf MT Quattro (170 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193107, + "fields": { + "id_car_serie": 14868, + "name": "2.0 FSI S-tronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193109, + "fields": { + "id_car_serie": 14868, + "name": "2.0 TDI Dpf S-tronic (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193110, + "fields": { + "id_car_serie": 14868, + "name": "2.0 TDI S-tronic (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193111, + "fields": { + "id_car_serie": 14868, + "name": "2.0 TDI Dpf S-tronic (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193120, + "fields": { + "id_car_serie": 14868, + "name": "3.2 S-tronic Quattro (250 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193127, + "fields": { + "id_car_serie": 14869, + "name": "1.6 S-tronic (102 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193131, + "fields": { + "id_car_serie": 14869, + "name": "1.8 TFSI S-tronic (160 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193134, + "fields": { + "id_car_serie": 14869, + "name": "1.9 TDI Dpf MT (105 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193137, + "fields": { + "id_car_serie": 14869, + "name": "1.9 TDI Dpf S-tronic (105 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193144, + "fields": { + "id_car_serie": 14869, + "name": "2.0 TDI Dpf MT (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193145, + "fields": { + "id_car_serie": 14869, + "name": "2.0 TDI Dpf MT Quattro (140 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193153, + "fields": { + "id_car_serie": 14869, + "name": "2.0 TFSI S-tronic (200 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193154, + "fields": { + "id_car_serie": 14869, + "name": "2.0 TDI S-tronic (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193155, + "fields": { + "id_car_serie": 14869, + "name": "2.0 TDI Dpf S-tronic (140 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193162, + "fields": { + "id_car_serie": 14869, + "name": "2.0 TDI Dpf S-tronic (170 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193171, + "fields": { + "id_car_serie": 14869, + "name": "3.2 S-tronic Quattro (250 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193179, + "fields": { + "id_car_serie": 14871, + "name": "1.8T AT (150 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193180, + "fields": { + "id_car_serie": 14871, + "name": "1.8T Tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193181, + "fields": { + "id_car_serie": 14871, + "name": "1.8T Tiptronic (180 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193184, + "fields": { + "id_car_serie": 14871, + "name": "1.8T MT (180 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193185, + "fields": { + "id_car_serie": 14871, + "name": "1.8T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193186, + "fields": { + "id_car_serie": 14871, + "name": "1.8T MT Quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193189, + "fields": { + "id_car_serie": 14871, + "name": "1.8T MT Quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193202, + "fields": { + "id_car_serie": 14872, + "name": "1.9 TDI tiptronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193203, + "fields": { + "id_car_serie": 14873, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193204, + "fields": { + "id_car_serie": 14873, + "name": "1.9 TDI tiptronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193205, + "fields": { + "id_car_serie": 14875, + "name": "3.0 TDI tiptronic quattro (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193206, + "fields": { + "id_car_serie": 14875, + "name": "3.0 TDI MT quattro (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193207, + "fields": { + "id_car_serie": 14877, + "name": "3.0 L TDI tiptronic quattro (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193208, + "fields": { + "id_car_serie": 14877, + "name": "3.1 FSI tiptronic quattro (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193209, + "fields": { + "id_car_serie": 14877, + "name": "3.1 FSI multitronic (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193210, + "fields": { + "id_car_serie": 14877, + "name": "3.1 L FSI multitronic (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193211, + "fields": { + "id_car_serie": 14877, + "name": "4.2 L TDI tiptronic quattro (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193212, + "fields": { + "id_car_serie": 14877, + "name": "4.2 TDI tiptronic quattro (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193213, + "fields": { + "id_car_serie": 14877, + "name": "4.2 L FSI tiptronic quattro (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193214, + "fields": { + "id_car_serie": 14877, + "name": "6.0 L W12 tiptronic quattro (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193215, + "fields": { + "id_car_serie": 14880, + "name": "2.1 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193216, + "fields": { + "id_car_serie": 14880, + "name": "2.1 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193217, + "fields": { + "id_car_serie": 14881, + "name": "1.8 T quattro MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193218, + "fields": { + "id_car_serie": 14882, + "name": "1.8 T quattro MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193219, + "fields": { + "id_car_serie": 14888, + "name": "2.5 TFSI quattro MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193220, + "fields": { + "id_car_serie": 14888, + "name": "2.5 TFSI quattro MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193221, + "fields": { + "id_car_serie": 14888, + "name": "2.5 TFSI quattro S tronic (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193222, + "fields": { + "id_car_serie": 14888, + "name": "2.5 TFSI quattro S tronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193223, + "fields": { + "id_car_serie": 14889, + "name": "2.0 TFSI quattro S tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193224, + "fields": { + "id_car_serie": 14915, + "name": "xDrive20d AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193225, + "fields": { + "id_car_serie": 14915, + "name": "2.0d AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193226, + "fields": { + "id_car_serie": 14915, + "name": "2.0i MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193227, + "fields": { + "id_car_serie": 14915, + "name": "xDrive20d MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193228, + "fields": { + "id_car_serie": 14915, + "name": "xDrive18d MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193229, + "fields": { + "id_car_serie": 14915, + "name": "xDrive20i MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193230, + "fields": { + "id_car_serie": 14915, + "name": "2.0d MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193232, + "fields": { + "id_car_serie": 14915, + "name": "2.0d MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193233, + "fields": { + "id_car_serie": 14915, + "name": "2.5si AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193235, + "fields": { + "id_car_serie": 14915, + "name": "xDrive25i AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193236, + "fields": { + "id_car_serie": 14915, + "name": "xDrive25i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193237, + "fields": { + "id_car_serie": 14915, + "name": "2.5si MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193239, + "fields": { + "id_car_serie": 14915, + "name": "xDrive30i AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193240, + "fields": { + "id_car_serie": 14915, + "name": "3.0si AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193241, + "fields": { + "id_car_serie": 14915, + "name": "3.0si AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193242, + "fields": { + "id_car_serie": 14915, + "name": "3.0sd AT (286 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193243, + "fields": { + "id_car_serie": 14915, + "name": "3.0d AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193246, + "fields": { + "id_car_serie": 14915, + "name": "xDrive35d AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193248, + "fields": { + "id_car_serie": 14915, + "name": "xDrive30i AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193249, + "fields": { + "id_car_serie": 14915, + "name": "xDrive30d AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193250, + "fields": { + "id_car_serie": 14915, + "name": "3.0si MT (272 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193252, + "fields": { + "id_car_serie": 14915, + "name": "3.0d MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193253, + "fields": { + "id_car_serie": 14915, + "name": "3.0si MT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193254, + "fields": { + "id_car_serie": 14915, + "name": "xDrive30i MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193256, + "fields": { + "id_car_serie": 14915, + "name": "xDrive30d MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193257, + "fields": { + "id_car_serie": 14915, + "name": "xDrive30i MT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193258, + "fields": { + "id_car_serie": 14916, + "name": "3.0d AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193259, + "fields": { + "id_car_serie": 14916, + "name": "3.0i AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193260, + "fields": { + "id_car_serie": 14916, + "name": "3.0d MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193261, + "fields": { + "id_car_serie": 14916, + "name": "3.0i MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193262, + "fields": { + "id_car_serie": 14916, + "name": "4.4i AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193263, + "fields": { + "id_car_serie": 14916, + "name": "4.8is AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193264, + "fields": { + "id_car_serie": 14917, + "name": "2.0i MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193265, + "fields": { + "id_car_serie": 14917, + "name": "2.5i AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193266, + "fields": { + "id_car_serie": 14917, + "name": "2.5si AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193267, + "fields": { + "id_car_serie": 14917, + "name": "2.5si MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193268, + "fields": { + "id_car_serie": 14917, + "name": "2.5i MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193269, + "fields": { + "id_car_serie": 14917, + "name": "3.0si AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193270, + "fields": { + "id_car_serie": 14917, + "name": "3.0i AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193271, + "fields": { + "id_car_serie": 14917, + "name": "3.0si AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193272, + "fields": { + "id_car_serie": 14917, + "name": "3.0si MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193273, + "fields": { + "id_car_serie": 14917, + "name": "3.0i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193274, + "fields": { + "id_car_serie": 14917, + "name": "3.0si MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193275, + "fields": { + "id_car_serie": 14918, + "name": "3.0si AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193276, + "fields": { + "id_car_serie": 14918, + "name": "3.0si AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193277, + "fields": { + "id_car_serie": 14918, + "name": "3.0si MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193278, + "fields": { + "id_car_serie": 14918, + "name": "3.0si MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193279, + "fields": { + "id_car_serie": 14925, + "name": "5.7 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193280, + "fields": { + "id_car_serie": 14925, + "name": "5.7 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193281, + "fields": { + "id_car_serie": 14926, + "name": "5.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193282, + "fields": { + "id_car_serie": 14926, + "name": "5.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193283, + "fields": { + "id_car_serie": 14930, + "name": "3.9 Hydra-Matic (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193284, + "fields": { + "id_car_serie": 14932, + "name": "6.0 AT AWD (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193285, + "fields": { + "id_car_serie": 14932, + "name": "6.0 AT (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193286, + "fields": { + "id_car_serie": 14942, + "name": "3.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193287, + "fields": { + "id_car_serie": 14942, + "name": "3.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193288, + "fields": { + "id_car_serie": 14943, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193289, + "fields": { + "id_car_serie": 14943, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193290, + "fields": { + "id_car_serie": 14943, + "name": "2.2 sTDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193291, + "fields": { + "id_car_serie": 14944, + "name": "3.0 AT (244 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193292, + "fields": { + "id_car_serie": 14944, + "name": "3.0 Hybrid AT (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193293, + "fields": { + "id_car_serie": 14944, + "name": "3.0 MT (244 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193294, + "fields": { + "id_car_serie": 46874, + "name": "3.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193295, + "fields": { + "id_car_serie": 46874, + "name": "3.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193296, + "fields": { + "id_car_serie": 14945, + "name": "2.4 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193298, + "fields": { + "id_car_serie": 14946, + "name": "2.2i-CTDi 6MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193300, + "fields": { + "id_car_serie": 14946, + "name": "2.4 5AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193301, + "fields": { + "id_car_serie": 14947, + "name": "2.0 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193302, + "fields": { + "id_car_serie": 14947, + "name": "2.0 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193303, + "fields": { + "id_car_serie": 14947, + "name": "2.0 AT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193304, + "fields": { + "id_car_serie": 14947, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193305, + "fields": { + "id_car_serie": 14947, + "name": "2.0 MT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193306, + "fields": { + "id_car_serie": 14956, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193307, + "fields": { + "id_car_serie": 14956, + "name": "1.4 CVT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193308, + "fields": { + "id_car_serie": 14956, + "name": "1.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193309, + "fields": { + "id_car_serie": 14957, + "name": "1.4 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193310, + "fields": { + "id_car_serie": 14957, + "name": "1.4 CVT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193311, + "fields": { + "id_car_serie": 14958, + "name": "3.7 AT (307 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193312, + "fields": { + "id_car_serie": 14958, + "name": "3.7 AT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193313, + "fields": { + "id_car_serie": 14971, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193314, + "fields": { + "id_car_serie": 14971, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193315, + "fields": { + "id_car_serie": 14971, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193316, + "fields": { + "id_car_serie": 14971, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193317, + "fields": { + "id_car_serie": 14971, + "name": "1.5 AT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193318, + "fields": { + "id_car_serie": 14982, + "name": "1.6 CRDi MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193319, + "fields": { + "id_car_serie": 14983, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193320, + "fields": { + "id_car_serie": 14983, + "name": "1.4 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193321, + "fields": { + "id_car_serie": 14983, + "name": "1.6 CRDi MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193322, + "fields": { + "id_car_serie": 14983, + "name": "1.6 CRDi MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193325, + "fields": { + "id_car_serie": 14992, + "name": "1.5 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193326, + "fields": { + "id_car_serie": 15000, + "name": "1.25 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193327, + "fields": { + "id_car_serie": 15001, + "name": "2.0 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193328, + "fields": { + "id_car_serie": 15001, + "name": "2.0 MT Overdrive (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193329, + "fields": { + "id_car_serie": 15002, + "name": "2.0 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193330, + "fields": { + "id_car_serie": 15002, + "name": "2.0 DISI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193331, + "fields": { + "id_car_serie": 15002, + "name": "2.0 MT Overdrive (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193332, + "fields": { + "id_car_serie": 15002, + "name": "2.2 CiTD MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193333, + "fields": { + "id_car_serie": 15009, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193334, + "fields": { + "id_car_serie": 15012, + "name": "2.3 T MT (274 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193335, + "fields": { + "id_car_serie": 15012, + "name": "2.3 T MT (278 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193336, + "fields": { + "id_car_serie": 15013, + "name": "3.0 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193337, + "fields": { + "id_car_serie": 15013, + "name": "3.0 MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193338, + "fields": { + "id_car_serie": 15015, + "name": "1.8 5MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193339, + "fields": { + "id_car_serie": 15049, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193340, + "fields": { + "id_car_serie": 15049, + "name": "1.4 4MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193341, + "fields": { + "id_car_serie": 15049, + "name": "1.4 5MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193343, + "fields": { + "id_car_serie": 15052, + "name": "1.8 DI-D MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193345, + "fields": { + "id_car_serie": 15052, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193346, + "fields": { + "id_car_serie": 15052, + "name": "2.0 DI-D MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193347, + "fields": { + "id_car_serie": 15052, + "name": "2.0 CVT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193348, + "fields": { + "id_car_serie": 15052, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193350, + "fields": { + "id_car_serie": 15052, + "name": "2.4 CVT (168 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193351, + "fields": { + "id_car_serie": 15057, + "name": "1.3 CDTI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193352, + "fields": { + "id_car_serie": 15057, + "name": "1.3 CDTI Easytronic (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193353, + "fields": { + "id_car_serie": 15058, + "name": "1.3 CDTI MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193354, + "fields": { + "id_car_serie": 15058, + "name": "1.3 CDTI Easytronic (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193355, + "fields": { + "id_car_serie": 15059, + "name": "1.3 CDTI MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193356, + "fields": { + "id_car_serie": 15059, + "name": "1.3 CDTI Easytronic (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193357, + "fields": { + "id_car_serie": 15070, + "name": "1.6 Twinport MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193358, + "fields": { + "id_car_serie": 15070, + "name": "1.9 CDTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193359, + "fields": { + "id_car_serie": 15072, + "name": "2.8 Turbo AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193360, + "fields": { + "id_car_serie": 15072, + "name": "2.8 Turbo AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193361, + "fields": { + "id_car_serie": 15073, + "name": "1.6 CNG Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193362, + "fields": { + "id_car_serie": 15074, + "name": "2.0 DTI MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193363, + "fields": { + "id_car_serie": 15075, + "name": "2.0 MT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193364, + "fields": { + "id_car_serie": 15078, + "name": "1.2 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193365, + "fields": { + "id_car_serie": 15078, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193366, + "fields": { + "id_car_serie": 15078, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193367, + "fields": { + "id_car_serie": 15079, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193368, + "fields": { + "id_car_serie": 15079, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193369, + "fields": { + "id_car_serie": 15079, + "name": "1.5 dCi MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193370, + "fields": { + "id_car_serie": 15079, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193371, + "fields": { + "id_car_serie": 15080, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193372, + "fields": { + "id_car_serie": 15080, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193373, + "fields": { + "id_car_serie": 15081, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193374, + "fields": { + "id_car_serie": 15081, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193375, + "fields": { + "id_car_serie": 15081, + "name": "1.5 dCi MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193376, + "fields": { + "id_car_serie": 15081, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193377, + "fields": { + "id_car_serie": 15081, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193378, + "fields": { + "id_car_serie": 15081, + "name": "1.9 dTi MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193381, + "fields": { + "id_car_serie": 15083, + "name": "2.2 dCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193382, + "fields": { + "id_car_serie": 15083, + "name": "3.0 dCi AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193385, + "fields": { + "id_car_serie": 15088, + "name": "1.9 DCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193386, + "fields": { + "id_car_serie": 15088, + "name": "1.9 DCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193387, + "fields": { + "id_car_serie": 15088, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193388, + "fields": { + "id_car_serie": 15088, + "name": "2.0 DCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193389, + "fields": { + "id_car_serie": 15088, + "name": "3.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193390, + "fields": { + "id_car_serie": 15089, + "name": "1.9 DCi AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193391, + "fields": { + "id_car_serie": 15089, + "name": "1.9 DCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193392, + "fields": { + "id_car_serie": 15089, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193393, + "fields": { + "id_car_serie": 15089, + "name": "2.0 DCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193394, + "fields": { + "id_car_serie": 15089, + "name": "3.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193395, + "fields": { + "id_car_serie": 15090, + "name": "1.4 TCe MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193396, + "fields": { + "id_car_serie": 15090, + "name": "1.6 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193397, + "fields": { + "id_car_serie": 15090, + "name": "1.9 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193398, + "fields": { + "id_car_serie": 4076, + "name": "2.0 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193399, + "fields": { + "id_car_serie": 4076, + "name": "2.0 TCe MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193400, + "fields": { + "id_car_serie": 15095, + "name": "1.5 dCi AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193401, + "fields": { + "id_car_serie": 15095, + "name": "1.6 MT Euro-3 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193402, + "fields": { + "id_car_serie": 15095, + "name": "1.9 dCi AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193403, + "fields": { + "id_car_serie": 15100, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193404, + "fields": { + "id_car_serie": 15101, + "name": "1.9 dTi AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193405, + "fields": { + "id_car_serie": 15102, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193406, + "fields": { + "id_car_serie": 15102, + "name": "1.6 CVT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193407, + "fields": { + "id_car_serie": 15102, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193408, + "fields": { + "id_car_serie": 15102, + "name": "2.0 CVT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193409, + "fields": { + "id_car_serie": 15103, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193410, + "fields": { + "id_car_serie": 15103, + "name": "1.5 dCi MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193411, + "fields": { + "id_car_serie": 15103, + "name": "1.5 dCi MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193412, + "fields": { + "id_car_serie": 15103, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193413, + "fields": { + "id_car_serie": 15103, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193414, + "fields": { + "id_car_serie": 15103, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193415, + "fields": { + "id_car_serie": 15103, + "name": "1.9 dCi AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193416, + "fields": { + "id_car_serie": 15103, + "name": "1.9 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193417, + "fields": { + "id_car_serie": 15103, + "name": "1.9 dCi MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193418, + "fields": { + "id_car_serie": 15103, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193419, + "fields": { + "id_car_serie": 15103, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193420, + "fields": { + "id_car_serie": 15103, + "name": "2.0 dCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193421, + "fields": { + "id_car_serie": 15104, + "name": "2.0 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193423, + "fields": { + "id_car_serie": 15113, + "name": "2.0 E-AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193425, + "fields": { + "id_car_serie": 15113, + "name": "2.0 E-AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193427, + "fields": { + "id_car_serie": 15113, + "name": "2.0XT E-AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193428, + "fields": { + "id_car_serie": 15113, + "name": "2.0 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193429, + "fields": { + "id_car_serie": 15113, + "name": "2.0XT MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193430, + "fields": { + "id_car_serie": 15113, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193433, + "fields": { + "id_car_serie": 15113, + "name": "2.0D MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193434, + "fields": { + "id_car_serie": 15113, + "name": "2.5XT E-AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193435, + "fields": { + "id_car_serie": 15113, + "name": "2.5S-Edition E-AT (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193436, + "fields": { + "id_car_serie": 15113, + "name": "2.5XT E-AT Ts (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193437, + "fields": { + "id_car_serie": 15113, + "name": "2.5XS E-AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193438, + "fields": { + "id_car_serie": 15113, + "name": "2.5XS MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193439, + "fields": { + "id_car_serie": 15113, + "name": "2.5XT MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193440, + "fields": { + "id_car_serie": 15114, + "name": "2.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193441, + "fields": { + "id_car_serie": 15137, + "name": "1.2 MT L (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193442, + "fields": { + "id_car_serie": 15137, + "name": "1.2 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193443, + "fields": { + "id_car_serie": 15137, + "name": "1.3 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193444, + "fields": { + "id_car_serie": 15137, + "name": "1.3 MT L (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193445, + "fields": { + "id_car_serie": 15137, + "name": "1.3 AMT L (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193446, + "fields": { + "id_car_serie": 15137, + "name": "1.3 AMT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193447, + "fields": { + "id_car_serie": 15137, + "name": "1.6 MT L (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193448, + "fields": { + "id_car_serie": 15137, + "name": "1.6 AMT L (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193449, + "fields": { + "id_car_serie": 15137, + "name": "1.6 AMT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193450, + "fields": { + "id_car_serie": 15139, + "name": "2.0 FSi DSG (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193451, + "fields": { + "id_car_serie": 15139, + "name": "2.0 FSi DSG 4Motion (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193452, + "fields": { + "id_car_serie": 15142, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193453, + "fields": { + "id_car_serie": 15146, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193454, + "fields": { + "id_car_serie": 15149, + "name": "1.3 L GT MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193455, + "fields": { + "id_car_serie": 15150, + "name": "1.3 MT G40 (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193456, + "fields": { + "id_car_serie": 15153, + "name": "3.0 TDI MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193457, + "fields": { + "id_car_serie": 15153, + "name": "5.0 TDI AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193458, + "fields": { + "id_car_serie": 15153, + "name": "5.0 TDI AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193459, + "fields": { + "id_car_serie": 15154, + "name": "1.8i MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193460, + "fields": { + "id_car_serie": 15154, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193461, + "fields": { + "id_car_serie": 15154, + "name": "2.0 T AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193462, + "fields": { + "id_car_serie": 15154, + "name": "2.0 T MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193463, + "fields": { + "id_car_serie": 15154, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193464, + "fields": { + "id_car_serie": 15155, + "name": "1.6 D2 Powershift (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193465, + "fields": { + "id_car_serie": 15155, + "name": "1.6 T4F Flexifuel Powershift (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193466, + "fields": { + "id_car_serie": 15155, + "name": "2.0 T5 Powershift (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193467, + "fields": { + "id_car_serie": 15156, + "name": "2.0T Turbo AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193468, + "fields": { + "id_car_serie": 15156, + "name": "2.0T Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193469, + "fields": { + "id_car_serie": 15156, + "name": "2.3 Turbo Geartronic (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193470, + "fields": { + "id_car_serie": 15156, + "name": "2.3 Turbo MT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193471, + "fields": { + "id_car_serie": 15156, + "name": "2.4 TD Geartronic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193472, + "fields": { + "id_car_serie": 15156, + "name": "2.4 D5 Turbo Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193473, + "fields": { + "id_car_serie": 15156, + "name": "2.4 D5 Turbo Geartronic (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193474, + "fields": { + "id_car_serie": 15156, + "name": "2.4 TD MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193475, + "fields": { + "id_car_serie": 15156, + "name": "2.5T Turbo Geartronic (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193476, + "fields": { + "id_car_serie": 15156, + "name": "2.5T Turbo Geartronic AWD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193477, + "fields": { + "id_car_serie": 15156, + "name": "2.5T Turbo MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193478, + "fields": { + "id_car_serie": 15156, + "name": "2.5T Turbo MT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193479, + "fields": { + "id_car_serie": 15157, + "name": "1.6 T4F AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193480, + "fields": { + "id_car_serie": 15157, + "name": "1.6 T4 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193481, + "fields": { + "id_car_serie": 15157, + "name": "1.6 D2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193482, + "fields": { + "id_car_serie": 15157, + "name": "1.6 T4F MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193483, + "fields": { + "id_car_serie": 15157, + "name": "1.6 T4 Powershift (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193484, + "fields": { + "id_car_serie": 15157, + "name": "1.6 D2 Powershift (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193485, + "fields": { + "id_car_serie": 15157, + "name": "2.0 D4 Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193486, + "fields": { + "id_car_serie": 15157, + "name": "2.0 D3 Geartronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193487, + "fields": { + "id_car_serie": 15157, + "name": "2.0 D3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193488, + "fields": { + "id_car_serie": 15157, + "name": "2.0 T5 Powershift (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193489, + "fields": { + "id_car_serie": 15157, + "name": "2.4 D5 Geartronic (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193490, + "fields": { + "id_car_serie": 15157, + "name": "2.4 D5 MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193491, + "fields": { + "id_car_serie": 15159, + "name": "1.8i MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193492, + "fields": { + "id_car_serie": 15159, + "name": "2.0 T4 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193493, + "fields": { + "id_car_serie": 15159, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193494, + "fields": { + "id_car_serie": 15159, + "name": "2.0 T AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193495, + "fields": { + "id_car_serie": 15159, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193496, + "fields": { + "id_car_serie": 15159, + "name": "2.0 T MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193497, + "fields": { + "id_car_serie": 15159, + "name": "2.0 T4 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193498, + "fields": { + "id_car_serie": 15160, + "name": "2.3 T5 Geartronic (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193499, + "fields": { + "id_car_serie": 15160, + "name": "2.3 T5 MT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193500, + "fields": { + "id_car_serie": 15160, + "name": "2.4 D5 Geartronic AWD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193501, + "fields": { + "id_car_serie": 15160, + "name": "2.4 D Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193502, + "fields": { + "id_car_serie": 15160, + "name": "2.4 D MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193504, + "fields": { + "id_car_serie": 15161, + "name": "2.0 T5 Drive-E Geartronic (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193505, + "fields": { + "id_car_serie": 15161, + "name": "2.0 D4 MT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193506, + "fields": { + "id_car_serie": 15161, + "name": "3.0 T6 Geartronic AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193507, + "fields": { + "id_car_serie": 15168, + "name": "2.0 BiTDI MT 4Motion L1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193508, + "fields": { + "id_car_serie": 15168, + "name": "2.0 BiTDI MT 4Motion L2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193509, + "fields": { + "id_car_serie": 15168, + "name": "2.0 TDI DSG L1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193510, + "fields": { + "id_car_serie": 15168, + "name": "2.0 TDI DSG L2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193511, + "fields": { + "id_car_serie": 15168, + "name": "2.0 BiTDI DSG L1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193512, + "fields": { + "id_car_serie": 15168, + "name": "2.0 TSI DSG L1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193513, + "fields": { + "id_car_serie": 15168, + "name": "2.0 BiTDI DSG L2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193514, + "fields": { + "id_car_serie": 15168, + "name": "2.0 TSI DSG L2 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193515, + "fields": { + "id_car_serie": 15168, + "name": "2.0 BiTDI DSG 4Motion L1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193516, + "fields": { + "id_car_serie": 15168, + "name": "2.0 TSI DSG 4Motion L1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193517, + "fields": { + "id_car_serie": 15168, + "name": "2.0 BiTDI DSG 4Motion L2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193518, + "fields": { + "id_car_serie": 15168, + "name": "2.0 TSI DSG 4Motion L2 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193521, + "fields": { + "id_car_serie": 15198, + "name": "4.0 MT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193523, + "fields": { + "id_car_serie": 15221, + "name": "3.0 BITURBO SWITCH-TRONIC AWD (410 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193524, + "fields": { + "id_car_serie": 15240, + "name": "5.7 AT (387 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193525, + "fields": { + "id_car_serie": 15241, + "name": "5.6 MT (416 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193526, + "fields": { + "id_car_serie": 15381, + "name": "2.0 MT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193527, + "fields": { + "id_car_serie": 15381, + "name": "2.4 TD MT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193528, + "fields": { + "id_car_serie": 15381, + "name": "2.4 T MT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193529, + "fields": { + "id_car_serie": 15381, + "name": "2.4 MT AWD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193530, + "fields": { + "id_car_serie": 15375, + "name": "2.4 CVT 2WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193531, + "fields": { + "id_car_serie": 15375, + "name": "3.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193532, + "fields": { + "id_car_serie": 15375, + "name": "3.5 AT 2WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193534, + "fields": { + "id_car_serie": 15267, + "name": "1.5 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193535, + "fields": { + "id_car_serie": 15267, + "name": "1.5 Powershift (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193536, + "fields": { + "id_car_serie": 15267, + "name": "1.6 MT (119 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193538, + "fields": { + "id_car_serie": 15267, + "name": "1.6 PowerShift (119 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193539, + "fields": { + "id_car_serie": 15277, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193540, + "fields": { + "id_car_serie": 15302, + "name": "3.0 AT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193541, + "fields": { + "id_car_serie": 15302, + "name": "3.0 MT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193543, + "fields": { + "id_car_serie": 15268, + "name": "1.0 Rocam Flex MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193544, + "fields": { + "id_car_serie": 15268, + "name": "1.0 Rocam Flex MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193545, + "fields": { + "id_car_serie": 15268, + "name": "1.4 TDCi One MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193546, + "fields": { + "id_car_serie": 15268, + "name": "1.6 Rocam Flex MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193548, + "fields": { + "id_car_serie": 15268, + "name": "1.6 One MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193549, + "fields": { + "id_car_serie": 15278, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193550, + "fields": { + "id_car_serie": 15280, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193551, + "fields": { + "id_car_serie": 15280, + "name": "1.4 I-SHIFT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193552, + "fields": { + "id_car_serie": 15282, + "name": "1.7 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193553, + "fields": { + "id_car_serie": 15282, + "name": "1.7 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193554, + "fields": { + "id_car_serie": 15282, + "name": "1.7 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193555, + "fields": { + "id_car_serie": 15282, + "name": "1.7 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193556, + "fields": { + "id_car_serie": 15282, + "name": "1.7 CVT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193557, + "fields": { + "id_car_serie": 15283, + "name": "1.7 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193558, + "fields": { + "id_car_serie": 15283, + "name": "1.7 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193559, + "fields": { + "id_car_serie": 15287, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193560, + "fields": { + "id_car_serie": 15287, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193561, + "fields": { + "id_car_serie": 15298, + "name": "2.0 AT T 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193562, + "fields": { + "id_car_serie": 15298, + "name": "2.0 AT T (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193563, + "fields": { + "id_car_serie": 15298, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193564, + "fields": { + "id_car_serie": 15298, + "name": "2.0 MT T 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193565, + "fields": { + "id_car_serie": 15298, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193566, + "fields": { + "id_car_serie": 15298, + "name": "2.0 MT T (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193567, + "fields": { + "id_car_serie": 15298, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193568, + "fields": { + "id_car_serie": 15300, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193573, + "fields": { + "id_car_serie": 15301, + "name": "2.3 DI-D DPF MT 2WD ClearTec (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193574, + "fields": { + "id_car_serie": 15301, + "name": "2.3 DI-D DPF MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193578, + "fields": { + "id_car_serie": 15315, + "name": "2.7 Tiptronic (229 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193579, + "fields": { + "id_car_serie": 15320, + "name": "1.4 TSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193580, + "fields": { + "id_car_serie": 15321, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193581, + "fields": { + "id_car_serie": 15321, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193582, + "fields": { + "id_car_serie": 15321, + "name": "2.0 TDI DSG (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193583, + "fields": { + "id_car_serie": 15323, + "name": "1.2 TD AT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193584, + "fields": { + "id_car_serie": 15323, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193585, + "fields": { + "id_car_serie": 15323, + "name": "1.4 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193586, + "fields": { + "id_car_serie": 15325, + "name": "1.8 T Euro IV MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193587, + "fields": { + "id_car_serie": 15325, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193588, + "fields": { + "id_car_serie": 15326, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193589, + "fields": { + "id_car_serie": 15327, + "name": "1.8T Tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193590, + "fields": { + "id_car_serie": 15327, + "name": "1.8T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193591, + "fields": { + "id_car_serie": 15327, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193592, + "fields": { + "id_car_serie": 15327, + "name": "2.8 Tiptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193593, + "fields": { + "id_car_serie": 15329, + "name": "2.0 CVT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193595, + "fields": { + "id_car_serie": 15342, + "name": "1.0 MMT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193596, + "fields": { + "id_car_serie": 15343, + "name": "1.0 MMT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193597, + "fields": { + "id_car_serie": 15344, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193598, + "fields": { + "id_car_serie": 15344, + "name": "1.0 MMT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193599, + "fields": { + "id_car_serie": 15348, + "name": "2.2DT AT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193600, + "fields": { + "id_car_serie": 15361, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193601, + "fields": { + "id_car_serie": 15361, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193602, + "fields": { + "id_car_serie": 15361, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193603, + "fields": { + "id_car_serie": 15361, + "name": "2.0 D-4D MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193604, + "fields": { + "id_car_serie": 15362, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193605, + "fields": { + "id_car_serie": 15362, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193606, + "fields": { + "id_car_serie": 15369, + "name": "1.8 4AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193607, + "fields": { + "id_car_serie": 15378, + "name": "3.4 AT 4WD 8seat (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193608, + "fields": { + "id_car_serie": 15378, + "name": "3.4 AT 8seat (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193609, + "fields": { + "id_car_serie": 15391, + "name": "2.7 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193610, + "fields": { + "id_car_serie": 15391, + "name": "2.8 D AT 4WD (5 places) (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193611, + "fields": { + "id_car_serie": 15391, + "name": "2.8 D AT 4WD (7 places) (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193612, + "fields": { + "id_car_serie": 15391, + "name": "4.0 AT 4WD (5 places) (282 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193613, + "fields": { + "id_car_serie": 15391, + "name": "4.0 AT 4WD (7 places) (282 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193614, + "fields": { + "id_car_serie": 15402, + "name": "2.7 AT 4x4 (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193615, + "fields": { + "id_car_serie": 15402, + "name": "2.7 MT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193616, + "fields": { + "id_car_serie": 15402, + "name": "4.0 AT 4x4 (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193617, + "fields": { + "id_car_serie": 15403, + "name": "2.7 AT 4x4 (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193618, + "fields": { + "id_car_serie": 15403, + "name": "2.7 MT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193619, + "fields": { + "id_car_serie": 15404, + "name": "4.0 AT L2 (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193620, + "fields": { + "id_car_serie": 15404, + "name": "4.0 AT 4x4 L1 (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193621, + "fields": { + "id_car_serie": 15404, + "name": "4.0 AT L1 (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193622, + "fields": { + "id_car_serie": 15410, + "name": "4.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193623, + "fields": { + "id_car_serie": 15410, + "name": "4.0 MT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193624, + "fields": { + "id_car_serie": 15418, + "name": "1.3 MMT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193626, + "fields": { + "id_car_serie": 15546, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193627, + "fields": { + "id_car_serie": 15546, + "name": "1.0 BlueMotion MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193628, + "fields": { + "id_car_serie": 15546, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193629, + "fields": { + "id_car_serie": 15546, + "name": "1.0 BlueMotion MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193630, + "fields": { + "id_car_serie": 15546, + "name": "1.0 EcoFuel MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193631, + "fields": { + "id_car_serie": 15546, + "name": "1.0 ASG (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193632, + "fields": { + "id_car_serie": 15546, + "name": "1.0 ASG (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193633, + "fields": { + "id_car_serie": 15569, + "name": "2.4 AT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193634, + "fields": { + "id_car_serie": 15569, + "name": "2.4 MT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193635, + "fields": { + "id_car_serie": 15570, + "name": "2.4 AT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193636, + "fields": { + "id_car_serie": 15570, + "name": "2.4 MT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193637, + "fields": { + "id_car_serie": 15576, + "name": "4.0 MT (414 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193638, + "fields": { + "id_car_serie": 15576, + "name": "4.0 M-DCT (414 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193639, + "fields": { + "id_car_serie": 15583, + "name": "3.2 MT (343 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193640, + "fields": { + "id_car_serie": 15584, + "name": "3.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193641, + "fields": { + "id_car_serie": 15584, + "name": "3.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193642, + "fields": { + "id_car_serie": 15584, + "name": "3.0 MT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193643, + "fields": { + "id_car_serie": 15584, + "name": "3.2 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193644, + "fields": { + "id_car_serie": 15584, + "name": "3.2 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193645, + "fields": { + "id_car_serie": 15584, + "name": "3.2 MT (321 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193646, + "fields": { + "id_car_serie": 15585, + "name": "2.3 kat MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193648, + "fields": { + "id_car_serie": 15636, + "name": "M635CSi kat MT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193649, + "fields": { + "id_car_serie": 15636, + "name": "M635CSi MT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193650, + "fields": { + "id_car_serie": 15639, + "name": "3.2 MT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193651, + "fields": { + "id_car_serie": 15639, + "name": "3.2 MT (321 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193652, + "fields": { + "id_car_serie": 15640, + "name": "3.2 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193653, + "fields": { + "id_car_serie": 15640, + "name": "3.2 MT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193654, + "fields": { + "id_car_serie": 15641, + "name": "3.2 MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193655, + "fields": { + "id_car_serie": 15642, + "name": "3.2 MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193656, + "fields": { + "id_car_serie": 15758, + "name": "3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193657, + "fields": { + "id_car_serie": 15758, + "name": "3.5 MT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193658, + "fields": { + "id_car_serie": 15758, + "name": "3.5 MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193659, + "fields": { + "id_car_serie": 15751, + "name": "3.6i AT AWD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193660, + "fields": { + "id_car_serie": 15751, + "name": "4.4i AT (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193661, + "fields": { + "id_car_serie": 15751, + "name": "4.6i AT VVT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193662, + "fields": { + "id_car_serie": 15751, + "name": "4.6i AT VVT AWD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193663, + "fields": { + "id_car_serie": 15732, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193664, + "fields": { + "id_car_serie": 15738, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193665, + "fields": { + "id_car_serie": 15738, + "name": "1.9 DI-D MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193666, + "fields": { + "id_car_serie": 15757, + "name": "3.5 AT (287 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193667, + "fields": { + "id_car_serie": 15757, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193668, + "fields": { + "id_car_serie": 15757, + "name": "3.5 MT Gran Turismo 4 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193669, + "fields": { + "id_car_serie": 15742, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193670, + "fields": { + "id_car_serie": 15742, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193671, + "fields": { + "id_car_serie": 15742, + "name": "1.7 TD MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193672, + "fields": { + "id_car_serie": 15742, + "name": "1.9 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193673, + "fields": { + "id_car_serie": 15742, + "name": "1.9 D MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193674, + "fields": { + "id_car_serie": 14707, + "name": "2.4 DCT P-AWS (206 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193675, + "fields": { + "id_car_serie": 14675, + "name": "4.6 AT AWD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193676, + "fields": { + "id_car_serie": 14675, + "name": "4.6 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193677, + "fields": { + "id_car_serie": 14675, + "name": "5.4 AT AWD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193678, + "fields": { + "id_car_serie": 14675, + "name": "5.4 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193679, + "fields": { + "id_car_serie": 14604, + "name": "200t AT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193680, + "fields": { + "id_car_serie": 14604, + "name": "200 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193681, + "fields": { + "id_car_serie": 14604, + "name": "200 CVT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193682, + "fields": { + "id_car_serie": 14604, + "name": "300h CVT AWD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193683, + "fields": { + "id_car_serie": 23393, + "name": "1.9 TDI MT H2 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193684, + "fields": { + "id_car_serie": 23393, + "name": "1.9 TDI MT H1 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193685, + "fields": { + "id_car_serie": 23393, + "name": "1.9 TDI MT H1 (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193686, + "fields": { + "id_car_serie": 23393, + "name": "1.9 TDI MT H1 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193687, + "fields": { + "id_car_serie": 23393, + "name": "2.5 TDI AT H2 (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193688, + "fields": { + "id_car_serie": 23393, + "name": "2.5 TDI AT H1 (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193689, + "fields": { + "id_car_serie": 23393, + "name": "2.5 TDI AT H2 (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193690, + "fields": { + "id_car_serie": 23393, + "name": "2.5 TDI AT H1 (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193691, + "fields": { + "id_car_serie": 23393, + "name": "2.5 TDI 4Motion MT H1 (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193692, + "fields": { + "id_car_serie": 23393, + "name": "2.5 TDI MT H2 (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193693, + "fields": { + "id_car_serie": 23394, + "name": "1.9 TD MT H2 (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193694, + "fields": { + "id_car_serie": 23394, + "name": "1.9 TD MT H3 (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193695, + "fields": { + "id_car_serie": 23394, + "name": "2.0 MT H2 (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193696, + "fields": { + "id_car_serie": 23394, + "name": "2.0 MT H3 (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193697, + "fields": { + "id_car_serie": 23394, + "name": "2.4 SD MT H3 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193698, + "fields": { + "id_car_serie": 23394, + "name": "2.5 AT H2 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193699, + "fields": { + "id_car_serie": 23394, + "name": "2.5 AT H3 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193700, + "fields": { + "id_car_serie": 23394, + "name": "2.5 TDI AT H3 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193701, + "fields": { + "id_car_serie": 23394, + "name": "2.5 TDI AT H2 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193702, + "fields": { + "id_car_serie": 23394, + "name": "2.5 TDI AT H4 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193703, + "fields": { + "id_car_serie": 23394, + "name": "2.5 TDI AT H1 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193704, + "fields": { + "id_car_serie": 23394, + "name": "2.5 TDI syncro MT H2 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193705, + "fields": { + "id_car_serie": 23394, + "name": "2.5 TDI MT H3 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193706, + "fields": { + "id_car_serie": 23394, + "name": "2.5 TDI MT H2 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193707, + "fields": { + "id_car_serie": 23394, + "name": "2.5 TDI MT H4 (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193708, + "fields": { + "id_car_serie": 23394, + "name": "2.5 TDI MT H1 (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193709, + "fields": { + "id_car_serie": 23394, + "name": "2.5 TDI MT H3 (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193710, + "fields": { + "id_car_serie": 23394, + "name": "2.5 TDI MT H2 (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193711, + "fields": { + "id_car_serie": 23394, + "name": "2.5 MT H2 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193712, + "fields": { + "id_car_serie": 23394, + "name": "2.5 TDI MT H4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193713, + "fields": { + "id_car_serie": 23394, + "name": "2.5 TDI MT H3 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193714, + "fields": { + "id_car_serie": 23394, + "name": "2.5 TDI MT H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193715, + "fields": { + "id_car_serie": 23394, + "name": "2.5 TDI syncro MT H4 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193716, + "fields": { + "id_car_serie": 23394, + "name": "2.5 TDI MT H4 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193717, + "fields": { + "id_car_serie": 23394, + "name": "2.5 TDI MT H1 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193718, + "fields": { + "id_car_serie": 23394, + "name": "2.5 MT syncro H3 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193719, + "fields": { + "id_car_serie": 23394, + "name": "2.5 MT syncro H2 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193720, + "fields": { + "id_car_serie": 23394, + "name": "2.5 MT H3 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193721, + "fields": { + "id_car_serie": 23394, + "name": "2.8 V6 AT H4 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193722, + "fields": { + "id_car_serie": 23394, + "name": "2.8 V6 AT H3 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193723, + "fields": { + "id_car_serie": 23394, + "name": "2.8 V6 AT H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193724, + "fields": { + "id_car_serie": 23394, + "name": "2.8 VR6 AT H3 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193725, + "fields": { + "id_car_serie": 23394, + "name": "2.8 VR6 AT H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193726, + "fields": { + "id_car_serie": 23394, + "name": "2.8 VR6 MT H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193727, + "fields": { + "id_car_serie": 45572, + "name": "2.5 MT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193728, + "fields": { + "id_car_serie": 45573, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193729, + "fields": { + "id_car_serie": 45573, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193730, + "fields": { + "id_car_serie": 45573, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193731, + "fields": { + "id_car_serie": 45573, + "name": "2.0 DI MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193732, + "fields": { + "id_car_serie": 45573, + "name": "2.0 DTI MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193733, + "fields": { + "id_car_serie": 45573, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193734, + "fields": { + "id_car_serie": 45573, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193735, + "fields": { + "id_car_serie": 45573, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193736, + "fields": { + "id_car_serie": 45573, + "name": "2.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193737, + "fields": { + "id_car_serie": 45574, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193738, + "fields": { + "id_car_serie": 45574, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193739, + "fields": { + "id_car_serie": 45574, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193740, + "fields": { + "id_car_serie": 45574, + "name": "2.0 DTI MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193741, + "fields": { + "id_car_serie": 45574, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193742, + "fields": { + "id_car_serie": 45574, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193743, + "fields": { + "id_car_serie": 45574, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193744, + "fields": { + "id_car_serie": 45591, + "name": "1.5 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193745, + "fields": { + "id_car_serie": 45598, + "name": "3.3 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193746, + "fields": { + "id_car_serie": 45598, + "name": "3.3 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193747, + "fields": { + "id_car_serie": 45598, + "name": "3.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193748, + "fields": { + "id_car_serie": 45598, + "name": "4.4 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193749, + "fields": { + "id_car_serie": 45598, + "name": "4.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193750, + "fields": { + "id_car_serie": 45598, + "name": "5.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193751, + "fields": { + "id_car_serie": 45598, + "name": "5.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193752, + "fields": { + "id_car_serie": 45598, + "name": "5.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193753, + "fields": { + "id_car_serie": 45598, + "name": "5.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193754, + "fields": { + "id_car_serie": 45406, + "name": "1.25 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193755, + "fields": { + "id_car_serie": 45421, + "name": "3.5 AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193756, + "fields": { + "id_car_serie": 45428, + "name": "1.8 MZR MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193757, + "fields": { + "id_car_serie": 45428, + "name": "2.0 MZR AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193758, + "fields": { + "id_car_serie": 45428, + "name": "2.0 MZR 6MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193759, + "fields": { + "id_car_serie": 45436, + "name": "2.2 D MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193760, + "fields": { + "id_car_serie": 45441, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193761, + "fields": { + "id_car_serie": 45441, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193762, + "fields": { + "id_car_serie": 45441, + "name": "1.6 DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193763, + "fields": { + "id_car_serie": 45611, + "name": "2.0 CVT 6seat (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193769, + "fields": { + "id_car_serie": 44107, + "name": "1.6 Sport MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193770, + "fields": { + "id_car_serie": 45571, + "name": "1.5 DCi MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193771, + "fields": { + "id_car_serie": 45571, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193772, + "fields": { + "id_car_serie": 45571, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193773, + "fields": { + "id_car_serie": 45571, + "name": "2.2 D MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193774, + "fields": { + "id_car_serie": 45571, + "name": "2.2 dCi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193775, + "fields": { + "id_car_serie": 45571, + "name": "2.2 DCi MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193776, + "fields": { + "id_car_serie": 44516, + "name": "3.8 AMT (485 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193777, + "fields": { + "id_car_serie": 45385, + "name": "2.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193778, + "fields": { + "id_car_serie": 45385, + "name": "2.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193779, + "fields": { + "id_car_serie": 45385, + "name": "2.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193780, + "fields": { + "id_car_serie": 45385, + "name": "2.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193781, + "fields": { + "id_car_serie": 45385, + "name": "5.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193782, + "fields": { + "id_car_serie": 45385, + "name": "5.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193783, + "fields": { + "id_car_serie": 45385, + "name": "5.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193784, + "fields": { + "id_car_serie": 45385, + "name": "5.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193785, + "fields": { + "id_car_serie": 45385, + "name": "5.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193786, + "fields": { + "id_car_serie": 45385, + "name": "5.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193787, + "fields": { + "id_car_serie": 45387, + "name": "1.6 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193788, + "fields": { + "id_car_serie": 45387, + "name": "2.6 TorqueFlite (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193789, + "fields": { + "id_car_serie": 45387, + "name": "2.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193790, + "fields": { + "id_car_serie": 45174, + "name": "4.8 Tiptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193791, + "fields": { + "id_car_serie": 45179, + "name": "0.6 AMT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193794, + "fields": { + "id_car_serie": 45147, + "name": "2.0 TDCi AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193795, + "fields": { + "id_car_serie": 45147, + "name": "3.0 ST220 MT (226 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193796, + "fields": { + "id_car_serie": 45430, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193797, + "fields": { + "id_car_serie": 45430, + "name": "2.0 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193798, + "fields": { + "id_car_serie": 45430, + "name": "2.3 D MT 4WD (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193799, + "fields": { + "id_car_serie": 45430, + "name": "2.6 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193800, + "fields": { + "id_car_serie": 45435, + "name": "2.2 dCi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193801, + "fields": { + "id_car_serie": 45447, + "name": "2.0 AT L1H1 (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193802, + "fields": { + "id_car_serie": 45447, + "name": "2.0 MT L1H1 (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193804, + "fields": { + "id_car_serie": 45447, + "name": "2.7 AT 4WD L3H3 (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193806, + "fields": { + "id_car_serie": 45447, + "name": "3.0 D-4D AT 4WD L1H1 (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193809, + "fields": { + "id_car_serie": 45407, + "name": "1.25 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193810, + "fields": { + "id_car_serie": 45407, + "name": "1.4 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193811, + "fields": { + "id_car_serie": 51270, + "name": "250 d 4MATIC 9G-TRONIC (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193812, + "fields": { + "id_car_serie": 51270, + "name": "400 4MATIC 9G-TRONIC (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193813, + "fields": { + "id_car_serie": 51270, + "name": "350 d 4MATIC 9G-TRONIC (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193814, + "fields": { + "id_car_serie": 51270, + "name": "500 e 7G-TRONIC PLUS (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193815, + "fields": { + "id_car_serie": 51270, + "name": "350 d 4MATIC 9G-TRONIC (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193816, + "fields": { + "id_car_serie": 51270, + "name": "300 4MATIC 7G-TRONIC Plus (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193817, + "fields": { + "id_car_serie": 51270, + "name": "500 4MATIC 9G-TRONIC (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193818, + "fields": { + "id_car_serie": 45139, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193819, + "fields": { + "id_car_serie": 45139, + "name": "4.1 MT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193820, + "fields": { + "id_car_serie": 45139, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193821, + "fields": { + "id_car_serie": 45139, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193822, + "fields": { + "id_car_serie": 45139, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193823, + "fields": { + "id_car_serie": 45139, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193824, + "fields": { + "id_car_serie": 45139, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193825, + "fields": { + "id_car_serie": 45139, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193826, + "fields": { + "id_car_serie": 45139, + "name": "5.4 Turbo Hydra-Matic (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193827, + "fields": { + "id_car_serie": 45139, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193828, + "fields": { + "id_car_serie": 45139, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193829, + "fields": { + "id_car_serie": 45139, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193830, + "fields": { + "id_car_serie": 45139, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193831, + "fields": { + "id_car_serie": 45139, + "name": "6.5 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193832, + "fields": { + "id_car_serie": 45139, + "name": "6.5 MT HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193833, + "fields": { + "id_car_serie": 45139, + "name": "7.0 Turbo Hydra-Matic (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193834, + "fields": { + "id_car_serie": 45139, + "name": "7.0 MT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193835, + "fields": { + "id_car_serie": 45139, + "name": "7.0 MT HD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193836, + "fields": { + "id_car_serie": 10738, + "name": "2.0 D3 Drive-E Geartronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193837, + "fields": { + "id_car_serie": 10738, + "name": "2.4 D4 Geartronic AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193838, + "fields": { + "id_car_serie": 10738, + "name": "2.0 T5 AWD Geartronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193842, + "fields": { + "id_car_serie": 45146, + "name": "3.0 ST220 MT (226 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193843, + "fields": { + "id_car_serie": 45420, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193844, + "fields": { + "id_car_serie": 45420, + "name": "2.9 CRDi AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193845, + "fields": { + "id_car_serie": 45420, + "name": "2.9 CRDi MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193846, + "fields": { + "id_car_serie": 45420, + "name": "3.5 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193847, + "fields": { + "id_car_serie": 45599, + "name": "0.8 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193848, + "fields": { + "id_car_serie": 45599, + "name": "0.8 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193849, + "fields": { + "id_car_serie": 45599, + "name": "1.0 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193865, + "fields": { + "id_car_serie": 45183, + "name": "1.6 BlueMotion MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193866, + "fields": { + "id_car_serie": 45180, + "name": "0.6 AMT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193867, + "fields": { + "id_car_serie": 45180, + "name": "0.6 AMT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193871, + "fields": { + "id_car_serie": 45175, + "name": "4.8 Tiptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193872, + "fields": { + "id_car_serie": 45160, + "name": "1.3 MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193873, + "fields": { + "id_car_serie": 45160, + "name": "1.3 MT (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193874, + "fields": { + "id_car_serie": 45404, + "name": "1.9 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193875, + "fields": { + "id_car_serie": 45404, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193876, + "fields": { + "id_car_serie": 45404, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193879, + "fields": { + "id_car_serie": 45148, + "name": "2.0 TDCi AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193880, + "fields": { + "id_car_serie": 45148, + "name": "3.0 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193881, + "fields": { + "id_car_serie": 45687, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193882, + "fields": { + "id_car_serie": 45687, + "name": "3.8 Turbo Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193883, + "fields": { + "id_car_serie": 45687, + "name": "3.8 4MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193884, + "fields": { + "id_car_serie": 45687, + "name": "3.8 3MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193885, + "fields": { + "id_car_serie": 45687, + "name": "3.8 Torque-Drive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193886, + "fields": { + "id_car_serie": 45687, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193887, + "fields": { + "id_car_serie": 45687, + "name": "4.1 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193888, + "fields": { + "id_car_serie": 45687, + "name": "4.1 4MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193889, + "fields": { + "id_car_serie": 45687, + "name": "4.1 3MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193890, + "fields": { + "id_car_serie": 45687, + "name": "4.1 Torque-Drive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193891, + "fields": { + "id_car_serie": 45687, + "name": "5.4 Powerglide (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193892, + "fields": { + "id_car_serie": 45687, + "name": "5.4 Turbo Hydra-Matic (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193893, + "fields": { + "id_car_serie": 45687, + "name": "5.4 3MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193894, + "fields": { + "id_car_serie": 45687, + "name": "5.4 4MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193895, + "fields": { + "id_car_serie": 45687, + "name": "5.7 Powerglide (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193896, + "fields": { + "id_car_serie": 45687, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193897, + "fields": { + "id_car_serie": 45687, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193898, + "fields": { + "id_car_serie": 45687, + "name": "5.7 Turbo Hydra-Matic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193899, + "fields": { + "id_car_serie": 45687, + "name": "5.7 4MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193900, + "fields": { + "id_car_serie": 45687, + "name": "5.7 3MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193901, + "fields": { + "id_car_serie": 45687, + "name": "5.7 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193902, + "fields": { + "id_car_serie": 45687, + "name": "5.7 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193903, + "fields": { + "id_car_serie": 45688, + "name": "1.3 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193904, + "fields": { + "id_car_serie": 45688, + "name": "1.3 AT FWD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193905, + "fields": { + "id_car_serie": 45688, + "name": "1.3 MT FWD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193906, + "fields": { + "id_car_serie": 45688, + "name": "1.3 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193907, + "fields": { + "id_car_serie": 45688, + "name": "1.5 AT FWD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193908, + "fields": { + "id_car_serie": 45688, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193909, + "fields": { + "id_car_serie": 45688, + "name": "1.5 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193910, + "fields": { + "id_car_serie": 45688, + "name": "1.5 MT FWD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193913, + "fields": { + "id_car_serie": 5814, + "name": "2.0 HDI AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193919, + "fields": { + "id_car_serie": 45698, + "name": "200t AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193920, + "fields": { + "id_car_serie": 45698, + "name": "200t AT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193921, + "fields": { + "id_car_serie": 45698, + "name": "350 AT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193922, + "fields": { + "id_car_serie": 45698, + "name": "450h CVT AWD (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193923, + "fields": { + "id_car_serie": 45702, + "name": "1.6 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193924, + "fields": { + "id_car_serie": 45702, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193925, + "fields": { + "id_car_serie": 45702, + "name": "1.7 TDS MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193926, + "fields": { + "id_car_serie": 45702, + "name": "1.7 TD MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193927, + "fields": { + "id_car_serie": 45702, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193928, + "fields": { + "id_car_serie": 45702, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193929, + "fields": { + "id_car_serie": 45702, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193930, + "fields": { + "id_car_serie": 45702, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193932, + "fields": { + "id_car_serie": 45786, + "name": "3.0 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193933, + "fields": { + "id_car_serie": 45786, + "name": "3.0 MT (274 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193934, + "fields": { + "id_car_serie": 45758, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193935, + "fields": { + "id_car_serie": 45758, + "name": "3.5 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193936, + "fields": { + "id_car_serie": 45805, + "name": "4.6 AT (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193937, + "fields": { + "id_car_serie": 45805, + "name": "4.6 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193938, + "fields": { + "id_car_serie": 45805, + "name": "4.6 AT (273 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193939, + "fields": { + "id_car_serie": 45805, + "name": "4.9 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193940, + "fields": { + "id_car_serie": 45816, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193941, + "fields": { + "id_car_serie": 45816, + "name": "3.8 4MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193942, + "fields": { + "id_car_serie": 45816, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193943, + "fields": { + "id_car_serie": 45816, + "name": "4.1 3MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193944, + "fields": { + "id_car_serie": 45816, + "name": "4.1 4MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193945, + "fields": { + "id_car_serie": 45816, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193946, + "fields": { + "id_car_serie": 45816, + "name": "5.4 Powerglide (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193947, + "fields": { + "id_car_serie": 45816, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193948, + "fields": { + "id_car_serie": 45816, + "name": "5.4 4MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193949, + "fields": { + "id_car_serie": 45816, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193950, + "fields": { + "id_car_serie": 45816, + "name": "5.4 3MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193951, + "fields": { + "id_car_serie": 45815, + "name": "4.1 Turbo Hydra-Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193952, + "fields": { + "id_car_serie": 45815, + "name": "4.1 Powerglide (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193953, + "fields": { + "id_car_serie": 45815, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193954, + "fields": { + "id_car_serie": 45815, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193955, + "fields": { + "id_car_serie": 45815, + "name": "4.1 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193956, + "fields": { + "id_car_serie": 45815, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193957, + "fields": { + "id_car_serie": 45815, + "name": "5.0 Turbo Hydra-Matic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193958, + "fields": { + "id_car_serie": 45815, + "name": "5.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193959, + "fields": { + "id_car_serie": 45815, + "name": "5.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193960, + "fields": { + "id_car_serie": 45815, + "name": "5.7 Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193961, + "fields": { + "id_car_serie": 45815, + "name": "5.7 Turbo Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193962, + "fields": { + "id_car_serie": 45815, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193963, + "fields": { + "id_car_serie": 45815, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193964, + "fields": { + "id_car_serie": 45815, + "name": "5.7 4MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193965, + "fields": { + "id_car_serie": 45815, + "name": "5.7 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193966, + "fields": { + "id_car_serie": 45815, + "name": "5.7 3MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193967, + "fields": { + "id_car_serie": 45815, + "name": "5.7 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193968, + "fields": { + "id_car_serie": 45815, + "name": "5.7 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193969, + "fields": { + "id_car_serie": 45815, + "name": "6.6 Turbo Hydra-Matic (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193970, + "fields": { + "id_car_serie": 45815, + "name": "6.6 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193971, + "fields": { + "id_car_serie": 45817, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193972, + "fields": { + "id_car_serie": 45817, + "name": "3.8 3MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193973, + "fields": { + "id_car_serie": 45817, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193974, + "fields": { + "id_car_serie": 45817, + "name": "4.1 4MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193975, + "fields": { + "id_car_serie": 45817, + "name": "4.1 3MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193976, + "fields": { + "id_car_serie": 45817, + "name": "5.4 Powerglide (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193977, + "fields": { + "id_car_serie": 45817, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193978, + "fields": { + "id_car_serie": 45817, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193979, + "fields": { + "id_car_serie": 45817, + "name": "5.4 3MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193980, + "fields": { + "id_car_serie": 45817, + "name": "5.4 4MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193981, + "fields": { + "id_car_serie": 45817, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193982, + "fields": { + "id_car_serie": 45819, + "name": "5.4 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193983, + "fields": { + "id_car_serie": 45819, + "name": "5.4 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193984, + "fields": { + "id_car_serie": 45819, + "name": "5.4 4MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193985, + "fields": { + "id_car_serie": 45819, + "name": "5.4 Special MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193986, + "fields": { + "id_car_serie": 45819, + "name": "7.0 Turbo Hydra-Matic (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193987, + "fields": { + "id_car_serie": 45819, + "name": "7.0 Turbo Hydra-Matic (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193988, + "fields": { + "id_car_serie": 45819, + "name": "7.0 Turbo Hydra-Matic (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193989, + "fields": { + "id_car_serie": 45819, + "name": "7.0 4MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193990, + "fields": { + "id_car_serie": 45819, + "name": "7.0 Special MT (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193991, + "fields": { + "id_car_serie": 45819, + "name": "7.0 Special MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193992, + "fields": { + "id_car_serie": 45819, + "name": "7.0 Heavy-Duty (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193993, + "fields": { + "id_car_serie": 45820, + "name": "5.7 Turbo Hydra-Matic (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193994, + "fields": { + "id_car_serie": 45820, + "name": "5.7 Turbo Hydra-Matic (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193995, + "fields": { + "id_car_serie": 45820, + "name": "5.7 Turbo Hydra-Matic (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193996, + "fields": { + "id_car_serie": 45820, + "name": "5.7 Turbo Hydra-Matic (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193997, + "fields": { + "id_car_serie": 45820, + "name": "5.7 Turbo Hydra-Matic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193998, + "fields": { + "id_car_serie": 45820, + "name": "5.7 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 193999, + "fields": { + "id_car_serie": 45820, + "name": "5.7 4MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194000, + "fields": { + "id_car_serie": 45821, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194001, + "fields": { + "id_car_serie": 45821, + "name": "5.4 3Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194002, + "fields": { + "id_car_serie": 45821, + "name": "5.4 4Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194003, + "fields": { + "id_car_serie": 45822, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194004, + "fields": { + "id_car_serie": 45822, + "name": "5.4 3Syncro-Mesh (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194005, + "fields": { + "id_car_serie": 45822, + "name": "5.4 4Syncro-Mesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194006, + "fields": { + "id_car_serie": 45822, + "name": "5.4 3Syncro-Mesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194007, + "fields": { + "id_car_serie": 45822, + "name": "5.4 4Syncro-Mesh (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194008, + "fields": { + "id_car_serie": 45822, + "name": "5.4 4Syncro-Mesh (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194009, + "fields": { + "id_car_serie": 45822, + "name": "5.4 4Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194010, + "fields": { + "id_car_serie": 45822, + "name": "5.4 3Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194011, + "fields": { + "id_car_serie": 45823, + "name": "4.6 Powerglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194012, + "fields": { + "id_car_serie": 45823, + "name": "4.6 Powerglide (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194013, + "fields": { + "id_car_serie": 45823, + "name": "4.6 3Syncro-Mesh (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194014, + "fields": { + "id_car_serie": 45823, + "name": "4.6 3Syncro-Mesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194015, + "fields": { + "id_car_serie": 45823, + "name": "4.6 3Syncro-Mesh (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194016, + "fields": { + "id_car_serie": 45823, + "name": "4.6 4Syncro-Mesh (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194017, + "fields": { + "id_car_serie": 45823, + "name": "4.6 4Syncro-Mesh (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194018, + "fields": { + "id_car_serie": 45823, + "name": "4.6 4Syncro-Mesh (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194019, + "fields": { + "id_car_serie": 45823, + "name": "4.6 4Syncro-Mesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194020, + "fields": { + "id_car_serie": 45823, + "name": "4.6 4Syncro-Mesh (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194021, + "fields": { + "id_car_serie": 45823, + "name": "4.6 3Syncro-Mesh (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194022, + "fields": { + "id_car_serie": 45823, + "name": "4.6 3Syncro-Mesh (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194023, + "fields": { + "id_car_serie": 45823, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194024, + "fields": { + "id_car_serie": 45823, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194025, + "fields": { + "id_car_serie": 45823, + "name": "5.4 3Syncro-Mesh (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194026, + "fields": { + "id_car_serie": 45823, + "name": "5.4 4Syncro-Mesh (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194027, + "fields": { + "id_car_serie": 45823, + "name": "5.4 4Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194028, + "fields": { + "id_car_serie": 45823, + "name": "5.4 3Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194029, + "fields": { + "id_car_serie": 45823, + "name": "5.4 4Syncro-Mesh (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194030, + "fields": { + "id_car_serie": 45823, + "name": "5.4 3Syncro-Mesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194031, + "fields": { + "id_car_serie": 45823, + "name": "5.4 3Syncro-Mesh (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194032, + "fields": { + "id_car_serie": 45823, + "name": "5.4 4Syncro-Mesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194033, + "fields": { + "id_car_serie": 45827, + "name": "3.8 4AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194034, + "fields": { + "id_car_serie": 45827, + "name": "3.8 4AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194035, + "fields": { + "id_car_serie": 45827, + "name": "5.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194036, + "fields": { + "id_car_serie": 45827, + "name": "5.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194037, + "fields": { + "id_car_serie": 3382, + "name": "3.5 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194038, + "fields": { + "id_car_serie": 3382, + "name": "3.5 MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194039, + "fields": { + "id_car_serie": 3384, + "name": "3.5 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194040, + "fields": { + "id_car_serie": 3384, + "name": "3.5 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194041, + "fields": { + "id_car_serie": 45833, + "name": "3.5 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194042, + "fields": { + "id_car_serie": 45833, + "name": "3.5 MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194043, + "fields": { + "id_car_serie": 45836, + "name": "200 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194044, + "fields": { + "id_car_serie": 45836, + "name": "250 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194045, + "fields": { + "id_car_serie": 45836, + "name": "350 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194046, + "fields": { + "id_car_serie": 45838, + "name": "450d AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194047, + "fields": { + "id_car_serie": 45838, + "name": "570 AT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194048, + "fields": { + "id_car_serie": 45842, + "name": "3.2 TD AT XT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194049, + "fields": { + "id_car_serie": 45842, + "name": "3.2 TD AT 4x4 XTR (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194050, + "fields": { + "id_car_serie": 45842, + "name": "3.2 TD MT 4x4 XTR (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194051, + "fields": { + "id_car_serie": 45842, + "name": "3.2 TD MT 4x4 XT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194056, + "fields": { + "id_car_serie": 45875, + "name": "6.7 AT EWB (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194057, + "fields": { + "id_car_serie": 45903, + "name": "3.3 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194058, + "fields": { + "id_car_serie": 45903, + "name": "5.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194059, + "fields": { + "id_car_serie": 45903, + "name": "5.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194060, + "fields": { + "id_car_serie": 45903, + "name": "5.7 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194061, + "fields": { + "id_car_serie": 45904, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194062, + "fields": { + "id_car_serie": 45904, + "name": "5.7 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194063, + "fields": { + "id_car_serie": 45904, + "name": "6.6 Turbo Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194064, + "fields": { + "id_car_serie": 45904, + "name": "6.6 Turbo Hydra-Matic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194065, + "fields": { + "id_car_serie": 45904, + "name": "7.4 Turbo Hydra-Matic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194066, + "fields": { + "id_car_serie": 45905, + "name": "5.0 Turbo Hydra-Matic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194067, + "fields": { + "id_car_serie": 45905, + "name": "5.7 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194068, + "fields": { + "id_car_serie": 45905, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194069, + "fields": { + "id_car_serie": 45905, + "name": "5.7 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194070, + "fields": { + "id_car_serie": 45905, + "name": "5.7 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194071, + "fields": { + "id_car_serie": 45905, + "name": "7.4 Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194072, + "fields": { + "id_car_serie": 45906, + "name": "4.1 Powerglide (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194073, + "fields": { + "id_car_serie": 45906, + "name": "4.1 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194074, + "fields": { + "id_car_serie": 45906, + "name": "5.0 Powerglide (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194075, + "fields": { + "id_car_serie": 45906, + "name": "5.0 Turbo Hydra-Matic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194076, + "fields": { + "id_car_serie": 45906, + "name": "5.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194077, + "fields": { + "id_car_serie": 45906, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194078, + "fields": { + "id_car_serie": 45906, + "name": "5.7 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194079, + "fields": { + "id_car_serie": 45906, + "name": "5.7 4MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194080, + "fields": { + "id_car_serie": 45906, + "name": "5.7 3MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194081, + "fields": { + "id_car_serie": 45906, + "name": "5.7 3MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194082, + "fields": { + "id_car_serie": 45906, + "name": "5.7 4MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194083, + "fields": { + "id_car_serie": 45906, + "name": "6.6 Turbo Hydra-Matic (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194084, + "fields": { + "id_car_serie": 45906, + "name": "6.6 MT HD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194085, + "fields": { + "id_car_serie": 45906, + "name": "6.6 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194086, + "fields": { + "id_car_serie": 45906, + "name": "7.4 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194087, + "fields": { + "id_car_serie": 45906, + "name": "7.4 MT HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194088, + "fields": { + "id_car_serie": 45907, + "name": "4.1 Powerglide (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194089, + "fields": { + "id_car_serie": 45907, + "name": "4.1 Synchromesh (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194090, + "fields": { + "id_car_serie": 45907, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194091, + "fields": { + "id_car_serie": 45907, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194092, + "fields": { + "id_car_serie": 45907, + "name": "5.0 Synchromesh (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194093, + "fields": { + "id_car_serie": 45907, + "name": "5.7 Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194094, + "fields": { + "id_car_serie": 45907, + "name": "5.7 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194095, + "fields": { + "id_car_serie": 45907, + "name": "5.7 4Synchromesh (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194096, + "fields": { + "id_car_serie": 45907, + "name": "5.7 Synchromesh (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194097, + "fields": { + "id_car_serie": 45907, + "name": "5.7 3Synchromesh (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194098, + "fields": { + "id_car_serie": 45907, + "name": "6.6 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194099, + "fields": { + "id_car_serie": 45907, + "name": "6.6 Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194100, + "fields": { + "id_car_serie": 45907, + "name": "6.6 Synchromesh HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194101, + "fields": { + "id_car_serie": 45907, + "name": "7.4 Turbo Hydra-Matic (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194102, + "fields": { + "id_car_serie": 45907, + "name": "7.4 Turbo Hydra-Matic (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194103, + "fields": { + "id_car_serie": 45907, + "name": "7.4 Synchromesh HD (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194104, + "fields": { + "id_car_serie": 45907, + "name": "7.4 Synchromesh HD (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194105, + "fields": { + "id_car_serie": 45947, + "name": "1.5 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194106, + "fields": { + "id_car_serie": 45947, + "name": "1.6 AMT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194107, + "fields": { + "id_car_serie": 45948, + "name": "1.2 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194108, + "fields": { + "id_car_serie": 45948, + "name": "1.3 Saxomat (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194109, + "fields": { + "id_car_serie": 45948, + "name": "1.5 AMT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194110, + "fields": { + "id_car_serie": 45948, + "name": "1.6 AMT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194111, + "fields": { + "id_car_serie": 45949, + "name": "1.2 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194112, + "fields": { + "id_car_serie": 45949, + "name": "1.3 Saxomat (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194113, + "fields": { + "id_car_serie": 45949, + "name": "1.5 AMT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194114, + "fields": { + "id_car_serie": 45949, + "name": "1.6 AMT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194117, + "fields": { + "id_car_serie": 46125, + "name": "3.0 D AT (239 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194118, + "fields": { + "id_car_serie": 46024, + "name": "1.6 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194119, + "fields": { + "id_car_serie": 46024, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194120, + "fields": { + "id_car_serie": 46024, + "name": "1.7 TD MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194121, + "fields": { + "id_car_serie": 46024, + "name": "1.7 TDS MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194122, + "fields": { + "id_car_serie": 46024, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194123, + "fields": { + "id_car_serie": 46024, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194124, + "fields": { + "id_car_serie": 46024, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194126, + "fields": { + "id_car_serie": 46024, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194127, + "fields": { + "id_car_serie": 46024, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194128, + "fields": { + "id_car_serie": 46024, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194129, + "fields": { + "id_car_serie": 46016, + "name": "250C AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194130, + "fields": { + "id_car_serie": 46027, + "name": "1.0 AMT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194131, + "fields": { + "id_car_serie": 46066, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194132, + "fields": { + "id_car_serie": 46187, + "name": "1.5 VGT AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194133, + "fields": { + "id_car_serie": 46187, + "name": "1.5 VGT MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194134, + "fields": { + "id_car_serie": 46136, + "name": "2.5 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194136, + "fields": { + "id_car_serie": 46135, + "name": "2.5 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194137, + "fields": { + "id_car_serie": 46143, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194138, + "fields": { + "id_car_serie": 46143, + "name": "1.8 Easytronic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194139, + "fields": { + "id_car_serie": 46143, + "name": "2.2 5MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194140, + "fields": { + "id_car_serie": 46145, + "name": "1.9 MT GTI (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194141, + "fields": { + "id_car_serie": 46145, + "name": "1.9 DI-D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194142, + "fields": { + "id_car_serie": 46145, + "name": "1.9 MT GTI (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194143, + "fields": { + "id_car_serie": 46067, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194144, + "fields": { + "id_car_serie": 46015, + "name": "250 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194145, + "fields": { + "id_car_serie": 46142, + "name": "2.5 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194146, + "fields": { + "id_car_serie": 46142, + "name": "2.5 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194147, + "fields": { + "id_car_serie": 46142, + "name": "3.5 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194148, + "fields": { + "id_car_serie": 46142, + "name": "3.5 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194149, + "fields": { + "id_car_serie": 46149, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194150, + "fields": { + "id_car_serie": 46149, + "name": "3.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194151, + "fields": { + "id_car_serie": 46172, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194152, + "fields": { + "id_car_serie": 46172, + "name": "4.1 MT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194153, + "fields": { + "id_car_serie": 46172, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194154, + "fields": { + "id_car_serie": 46172, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194155, + "fields": { + "id_car_serie": 46172, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194156, + "fields": { + "id_car_serie": 46172, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194157, + "fields": { + "id_car_serie": 46172, + "name": "4.6 4MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194158, + "fields": { + "id_car_serie": 46172, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194159, + "fields": { + "id_car_serie": 46172, + "name": "4.6 MT Overdrive (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194160, + "fields": { + "id_car_serie": 46172, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194161, + "fields": { + "id_car_serie": 46172, + "name": "4.6 3MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194162, + "fields": { + "id_car_serie": 46172, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194163, + "fields": { + "id_car_serie": 46172, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194164, + "fields": { + "id_car_serie": 46172, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194165, + "fields": { + "id_car_serie": 46172, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194166, + "fields": { + "id_car_serie": 46172, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194167, + "fields": { + "id_car_serie": 46172, + "name": "6.5 3MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194168, + "fields": { + "id_car_serie": 46172, + "name": "6.5 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194169, + "fields": { + "id_car_serie": 46172, + "name": "7.0 Turbo Hydra-Matic (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194170, + "fields": { + "id_car_serie": 46172, + "name": "7.0 4MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194171, + "fields": { + "id_car_serie": 46172, + "name": "7.0 4MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194172, + "fields": { + "id_car_serie": 46172, + "name": "7.0 3MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194173, + "fields": { + "id_car_serie": 46173, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194174, + "fields": { + "id_car_serie": 46173, + "name": "3.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194175, + "fields": { + "id_car_serie": 46173, + "name": "4.3 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194176, + "fields": { + "id_car_serie": 46173, + "name": "4.4 AT Overdrive (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194177, + "fields": { + "id_car_serie": 46173, + "name": "4.4 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194178, + "fields": { + "id_car_serie": 46173, + "name": "5.0 AT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194179, + "fields": { + "id_car_serie": 46173, + "name": "5.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194180, + "fields": { + "id_car_serie": 46173, + "name": "5.7 D AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194181, + "fields": { + "id_car_serie": 46173, + "name": "5.7 D AT Overdrive (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194182, + "fields": { + "id_car_serie": 46019, + "name": "1.8 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194183, + "fields": { + "id_car_serie": 46019, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194184, + "fields": { + "id_car_serie": 46019, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194185, + "fields": { + "id_car_serie": 46040, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194186, + "fields": { + "id_car_serie": 46040, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194187, + "fields": { + "id_car_serie": 46040, + "name": "1.8 sVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194190, + "fields": { + "id_car_serie": 46037, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194191, + "fields": { + "id_car_serie": 46037, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194192, + "fields": { + "id_car_serie": 46037, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194193, + "fields": { + "id_car_serie": 46037, + "name": "1.8 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194194, + "fields": { + "id_car_serie": 46037, + "name": "1.8 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194195, + "fields": { + "id_car_serie": 46137, + "name": "2.5 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194196, + "fields": { + "id_car_serie": 46137, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194197, + "fields": { + "id_car_serie": 46137, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194198, + "fields": { + "id_car_serie": 46139, + "name": "2.3 AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194199, + "fields": { + "id_car_serie": 46139, + "name": "2.3 MT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194200, + "fields": { + "id_car_serie": 46188, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194201, + "fields": { + "id_car_serie": 46188, + "name": "1.5 VGT AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194202, + "fields": { + "id_car_serie": 46188, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194203, + "fields": { + "id_car_serie": 46190, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194204, + "fields": { + "id_car_serie": 46190, + "name": "1.3 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194205, + "fields": { + "id_car_serie": 46190, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194206, + "fields": { + "id_car_serie": 46343, + "name": "2.5 D LWB MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194207, + "fields": { + "id_car_serie": 46343, + "name": "2.5 D SWB MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194208, + "fields": { + "id_car_serie": 46342, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194209, + "fields": { + "id_car_serie": 46342, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194210, + "fields": { + "id_car_serie": 46668, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194211, + "fields": { + "id_car_serie": 46668, + "name": "2.0 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194212, + "fields": { + "id_car_serie": 46668, + "name": "2.5 AT (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194213, + "fields": { + "id_car_serie": 46668, + "name": "2.5 MT (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194214, + "fields": { + "id_car_serie": 46541, + "name": "3.6 AT AWD (312 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194215, + "fields": { + "id_car_serie": 46542, + "name": "3.5 AT AWD (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194216, + "fields": { + "id_car_serie": 46542, + "name": "3.5 AT (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194217, + "fields": { + "id_car_serie": 46542, + "name": "3.8 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194218, + "fields": { + "id_car_serie": 46542, + "name": "3.8 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194219, + "fields": { + "id_car_serie": 46542, + "name": "4.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194220, + "fields": { + "id_car_serie": 46542, + "name": "4.0 AT AWD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194221, + "fields": { + "id_car_serie": 46560, + "name": "1.4 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194222, + "fields": { + "id_car_serie": 46560, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194223, + "fields": { + "id_car_serie": 46560, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194224, + "fields": { + "id_car_serie": 46560, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194225, + "fields": { + "id_car_serie": 46661, + "name": "3.8 4MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194226, + "fields": { + "id_car_serie": 46661, + "name": "3.8 3MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194227, + "fields": { + "id_car_serie": 46661, + "name": "5.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194228, + "fields": { + "id_car_serie": 46661, + "name": "5.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194229, + "fields": { + "id_car_serie": 46662, + "name": "5.7 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194230, + "fields": { + "id_car_serie": 46662, + "name": "5.7 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194231, + "fields": { + "id_car_serie": 46662, + "name": "7.4 Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194232, + "fields": { + "id_car_serie": 46663, + "name": "5.7 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194233, + "fields": { + "id_car_serie": 46663, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194234, + "fields": { + "id_car_serie": 46663, + "name": "5.7 Powerglide (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194235, + "fields": { + "id_car_serie": 46663, + "name": "5.7 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194236, + "fields": { + "id_car_serie": 46663, + "name": "6.6 Turbo Hydra-Matic (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194237, + "fields": { + "id_car_serie": 46663, + "name": "7.4 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194238, + "fields": { + "id_car_serie": 46669, + "name": "2.5 MT (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194239, + "fields": { + "id_car_serie": 46324, + "name": "3.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194240, + "fields": { + "id_car_serie": 46324, + "name": "4.9 MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194241, + "fields": { + "id_car_serie": 4506, + "name": "5.6 AT SWB 4WD (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194242, + "fields": { + "id_car_serie": 4506, + "name": "5.6 AT SWB (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194243, + "fields": { + "id_car_serie": 4506, + "name": "5.6 AT LWB 4WD (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194244, + "fields": { + "id_car_serie": 4506, + "name": "5.6 AT LWB (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194245, + "fields": { + "id_car_serie": 46338, + "name": "1.8i MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194246, + "fields": { + "id_car_serie": 46320, + "name": "6.0 V12 AT (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194247, + "fields": { + "id_car_serie": 46320, + "name": "6.0 V12 MT (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194248, + "fields": { + "id_car_serie": 46660, + "name": "3.8 AT California (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194249, + "fields": { + "id_car_serie": 46660, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194250, + "fields": { + "id_car_serie": 46660, + "name": "4.4 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194251, + "fields": { + "id_car_serie": 46557, + "name": "2.0 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194252, + "fields": { + "id_car_serie": 46557, + "name": "2.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194253, + "fields": { + "id_car_serie": 46557, + "name": "2.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194254, + "fields": { + "id_car_serie": 46558, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194255, + "fields": { + "id_car_serie": 46558, + "name": "2.0 3MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194256, + "fields": { + "id_car_serie": 46558, + "name": "2.2 D 4MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194257, + "fields": { + "id_car_serie": 46558, + "name": "2.2 D 3MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194258, + "fields": { + "id_car_serie": 46558, + "name": "2.4 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194259, + "fields": { + "id_car_serie": 46558, + "name": "2.4 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194260, + "fields": { + "id_car_serie": 46558, + "name": "2.6 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194261, + "fields": { + "id_car_serie": 46558, + "name": "2.6 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194262, + "fields": { + "id_car_serie": 46337, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194263, + "fields": { + "id_car_serie": 46344, + "name": "2.0 MT L1H1 (9 places) (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194264, + "fields": { + "id_car_serie": 46344, + "name": "2.0 MT L2H1 (9 places) (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194265, + "fields": { + "id_car_serie": 46436, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194266, + "fields": { + "id_car_serie": 46436, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194267, + "fields": { + "id_car_serie": 46436, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194268, + "fields": { + "id_car_serie": 46658, + "name": "3.8 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194269, + "fields": { + "id_car_serie": 46658, + "name": "5.7 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194270, + "fields": { + "id_car_serie": 46658, + "name": "5.7 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194271, + "fields": { + "id_car_serie": 46659, + "name": "4.3 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194272, + "fields": { + "id_car_serie": 46659, + "name": "5.7 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194273, + "fields": { + "id_car_serie": 46806, + "name": "2.0-S CVT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194274, + "fields": { + "id_car_serie": 46544, + "name": "2.0i MT GL (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194275, + "fields": { + "id_car_serie": 46544, + "name": "2.5i MT SVT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194276, + "fields": { + "id_car_serie": 46544, + "name": "2.5i MT LX (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194277, + "fields": { + "id_car_serie": 46465, + "name": "1.9 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194278, + "fields": { + "id_car_serie": 46464, + "name": "3.0 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194279, + "fields": { + "id_car_serie": 46478, + "name": "1.6 T4F Powershift (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194280, + "fields": { + "id_car_serie": 46478, + "name": "1.6 D2 Powershift (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194281, + "fields": { + "id_car_serie": 46478, + "name": "1.6 T4 Powershift (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194282, + "fields": { + "id_car_serie": 46478, + "name": "2.0 T5 Powershift (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194283, + "fields": { + "id_car_serie": 46478, + "name": "2.4 D4 Geartronic AWD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194284, + "fields": { + "id_car_serie": 46556, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194285, + "fields": { + "id_car_serie": 46556, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194286, + "fields": { + "id_car_serie": 46556, + "name": "2.4 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194287, + "fields": { + "id_car_serie": 46469, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194288, + "fields": { + "id_car_serie": 46469, + "name": "2.0 AT BioPower (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194289, + "fields": { + "id_car_serie": 46469, + "name": "2.0 turbo MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194290, + "fields": { + "id_car_serie": 46469, + "name": "2.0 MT BioPower AWD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194291, + "fields": { + "id_car_serie": 46469, + "name": "2.0 MT BioPower (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194292, + "fields": { + "id_car_serie": 46469, + "name": "2.0 MT BioPower AWD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194293, + "fields": { + "id_car_serie": 46469, + "name": "2.8 turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194294, + "fields": { + "id_car_serie": 46469, + "name": "2.8 turbo AT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194295, + "fields": { + "id_car_serie": 46469, + "name": "2.8 turbo MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194296, + "fields": { + "id_car_serie": 46469, + "name": "2.8 turbo MT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194297, + "fields": { + "id_car_serie": 46470, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194298, + "fields": { + "id_car_serie": 46470, + "name": "2.0 MT BioPower AWD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194299, + "fields": { + "id_car_serie": 46666, + "name": "2.0 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194300, + "fields": { + "id_car_serie": 46666, + "name": "2.0 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194301, + "fields": { + "id_car_serie": 46666, + "name": "2.8 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194302, + "fields": { + "id_car_serie": 46667, + "name": "2.0 D AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194303, + "fields": { + "id_car_serie": 46667, + "name": "2.0 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194304, + "fields": { + "id_car_serie": 46667, + "name": "2.6 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194305, + "fields": { + "id_car_serie": 46698, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194306, + "fields": { + "id_car_serie": 46698, + "name": "3.8 Synchromesh Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194307, + "fields": { + "id_car_serie": 46698, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194308, + "fields": { + "id_car_serie": 46698, + "name": "3.8 Synchromesh HD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194309, + "fields": { + "id_car_serie": 46698, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194310, + "fields": { + "id_car_serie": 46698, + "name": "4.1 Synchromesh (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194311, + "fields": { + "id_car_serie": 46698, + "name": "4.1 Synchromesh HD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194312, + "fields": { + "id_car_serie": 46698, + "name": "4.1 Synchromesh Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194313, + "fields": { + "id_car_serie": 46698, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194314, + "fields": { + "id_car_serie": 46698, + "name": "4.6 Synchromesh HD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194315, + "fields": { + "id_car_serie": 46698, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194316, + "fields": { + "id_car_serie": 46698, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194317, + "fields": { + "id_car_serie": 46698, + "name": "4.6 Synchromesh Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194318, + "fields": { + "id_car_serie": 46698, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194319, + "fields": { + "id_car_serie": 46698, + "name": "5.4 3Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194320, + "fields": { + "id_car_serie": 46698, + "name": "5.4 Synchromesh HD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194321, + "fields": { + "id_car_serie": 46698, + "name": "5.4 4Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194322, + "fields": { + "id_car_serie": 46698, + "name": "5.4 Synchromesh HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194323, + "fields": { + "id_car_serie": 46698, + "name": "5.4 Synchromesh (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194324, + "fields": { + "id_car_serie": 46695, + "name": "4.1 Turbo Hydra-Matic (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194325, + "fields": { + "id_car_serie": 46695, + "name": "5.7 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194326, + "fields": { + "id_car_serie": 46695, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194327, + "fields": { + "id_car_serie": 46695, + "name": "5.7 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194328, + "fields": { + "id_car_serie": 46695, + "name": "6.6 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194329, + "fields": { + "id_car_serie": 46695, + "name": "7.4 Turbo Hydra-Matic (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194330, + "fields": { + "id_car_serie": 46696, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194331, + "fields": { + "id_car_serie": 46696, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194332, + "fields": { + "id_car_serie": 46696, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194333, + "fields": { + "id_car_serie": 46696, + "name": "3.8 MT HD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194334, + "fields": { + "id_car_serie": 46696, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194335, + "fields": { + "id_car_serie": 46696, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194336, + "fields": { + "id_car_serie": 46696, + "name": "4.1 MT HD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194337, + "fields": { + "id_car_serie": 46696, + "name": "4.1 MT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194338, + "fields": { + "id_car_serie": 46696, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194339, + "fields": { + "id_car_serie": 46696, + "name": "5.0 MT Overdrive (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194340, + "fields": { + "id_car_serie": 46696, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194341, + "fields": { + "id_car_serie": 46696, + "name": "5.0 MT HD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194342, + "fields": { + "id_car_serie": 46696, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194343, + "fields": { + "id_car_serie": 46696, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194344, + "fields": { + "id_car_serie": 46696, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194345, + "fields": { + "id_car_serie": 46696, + "name": "5.4 MT HD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194346, + "fields": { + "id_car_serie": 46696, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194347, + "fields": { + "id_car_serie": 46696, + "name": "5.4 MT HD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194348, + "fields": { + "id_car_serie": 46696, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194349, + "fields": { + "id_car_serie": 46696, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194350, + "fields": { + "id_car_serie": 46696, + "name": "5.4 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194351, + "fields": { + "id_car_serie": 46696, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194352, + "fields": { + "id_car_serie": 46697, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194353, + "fields": { + "id_car_serie": 46697, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194354, + "fields": { + "id_car_serie": 46697, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194356, + "fields": { + "id_car_serie": 46697, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194357, + "fields": { + "id_car_serie": 46697, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194358, + "fields": { + "id_car_serie": 46697, + "name": "4.1 MT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194360, + "fields": { + "id_car_serie": 46697, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194361, + "fields": { + "id_car_serie": 46697, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194362, + "fields": { + "id_car_serie": 46697, + "name": "5.0 MT Overdrive (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194363, + "fields": { + "id_car_serie": 46697, + "name": "5.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194364, + "fields": { + "id_car_serie": 46697, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194365, + "fields": { + "id_car_serie": 46697, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194366, + "fields": { + "id_car_serie": 46697, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194367, + "fields": { + "id_car_serie": 46697, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194368, + "fields": { + "id_car_serie": 46697, + "name": "5.4 MT (275 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194369, + "fields": { + "id_car_serie": 46697, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194371, + "fields": { + "id_car_serie": 46697, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194372, + "fields": { + "id_car_serie": 46697, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194373, + "fields": { + "id_car_serie": 46697, + "name": "5.4 MT HD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194374, + "fields": { + "id_car_serie": 46697, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194375, + "fields": { + "id_car_serie": 46697, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194376, + "fields": { + "id_car_serie": 46697, + "name": "6.5 Powerglide (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194377, + "fields": { + "id_car_serie": 46697, + "name": "6.5 Turbo Hydra-Matic (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194378, + "fields": { + "id_car_serie": 46697, + "name": "6.5 MT HD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194379, + "fields": { + "id_car_serie": 46697, + "name": "6.5 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194380, + "fields": { + "id_car_serie": 46697, + "name": "6.5 MT HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194381, + "fields": { + "id_car_serie": 46697, + "name": "6.5 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194382, + "fields": { + "id_car_serie": 46699, + "name": "4.1 Turbo Hydra-Matic (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194383, + "fields": { + "id_car_serie": 46699, + "name": "4.1 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194384, + "fields": { + "id_car_serie": 46699, + "name": "5.7 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194385, + "fields": { + "id_car_serie": 46699, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194386, + "fields": { + "id_car_serie": 46699, + "name": "5.7 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194387, + "fields": { + "id_car_serie": 46699, + "name": "5.7 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194388, + "fields": { + "id_car_serie": 46699, + "name": "6.6 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194389, + "fields": { + "id_car_serie": 46699, + "name": "7.4 Turbo Hydra-Matic (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194390, + "fields": { + "id_car_serie": 47478, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194391, + "fields": { + "id_car_serie": 47478, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194392, + "fields": { + "id_car_serie": 47478, + "name": "1.5 4AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194393, + "fields": { + "id_car_serie": 47478, + "name": "1.5 3AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194394, + "fields": { + "id_car_serie": 47478, + "name": "1.5 5MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194395, + "fields": { + "id_car_serie": 47478, + "name": "1.5 4MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194396, + "fields": { + "id_car_serie": 47478, + "name": "1.6 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194397, + "fields": { + "id_car_serie": 47478, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194398, + "fields": { + "id_car_serie": 47478, + "name": "1.8 D AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194399, + "fields": { + "id_car_serie": 47478, + "name": "1.8 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194400, + "fields": { + "id_car_serie": 47474, + "name": "2.7 TD 4WD AT wide urban (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194401, + "fields": { + "id_car_serie": 47474, + "name": "2.7 TD 4WD AT wide (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194402, + "fields": { + "id_car_serie": 47474, + "name": "2.7 TD 4WD AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194403, + "fields": { + "id_car_serie": 47474, + "name": "2.7 TD 4WD AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194404, + "fields": { + "id_car_serie": 47474, + "name": "2.7 TD 4WD AT selection V (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194405, + "fields": { + "id_car_serie": 47474, + "name": "2.7 TD 4WD MT urban (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194406, + "fields": { + "id_car_serie": 47474, + "name": "2.7 TD 4WD MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194407, + "fields": { + "id_car_serie": 47474, + "name": "2.7 TD 4WD MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194408, + "fields": { + "id_car_serie": 47474, + "name": "3.0 4WD AT selection V (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194409, + "fields": { + "id_car_serie": 47474, + "name": "3.0 4WD AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194410, + "fields": { + "id_car_serie": 47474, + "name": "3.0 4WD AT urban (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194411, + "fields": { + "id_car_serie": 47474, + "name": "3.0 4WD AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194412, + "fields": { + "id_car_serie": 47474, + "name": "3.0 4WD AT wide urban (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194413, + "fields": { + "id_car_serie": 47474, + "name": "3.0 4WD MT urban (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194414, + "fields": { + "id_car_serie": 47474, + "name": "3.0 4WD MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194415, + "fields": { + "id_car_serie": 47474, + "name": "3.0 4WD MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194416, + "fields": { + "id_car_serie": 47474, + "name": "3.0 4WD MT wide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194417, + "fields": { + "id_car_serie": 47472, + "name": "3.0 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194418, + "fields": { + "id_car_serie": 47472, + "name": "3.0 MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194419, + "fields": { + "id_car_serie": 47471, + "name": "2.8 GTX AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194420, + "fields": { + "id_car_serie": 47471, + "name": "2.8 GTX MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194421, + "fields": { + "id_car_serie": 46940, + "name": "1.6 16V GTI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194422, + "fields": { + "id_car_serie": 46939, + "name": "1.4 16V AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194423, + "fields": { + "id_car_serie": 46941, + "name": "1.0 AT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194424, + "fields": { + "id_car_serie": 46941, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194425, + "fields": { + "id_car_serie": 46941, + "name": "1.4 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194426, + "fields": { + "id_car_serie": 46941, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194427, + "fields": { + "id_car_serie": 46941, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194428, + "fields": { + "id_car_serie": 46941, + "name": "1.4 TDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194429, + "fields": { + "id_car_serie": 46941, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194430, + "fields": { + "id_car_serie": 46941, + "name": "1.9 D AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194432, + "fields": { + "id_car_serie": 46827, + "name": "3.2 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194433, + "fields": { + "id_car_serie": 47097, + "name": "3.0 TDI S tronic quattro (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194434, + "fields": { + "id_car_serie": 47095, + "name": "1.8 TFSI MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194435, + "fields": { + "id_car_serie": 47095, + "name": "1.8 TFSI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194436, + "fields": { + "id_car_serie": 47095, + "name": "1.8 TFSI MT quattro (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194437, + "fields": { + "id_car_serie": 47095, + "name": "1.8 TFSI multitronic (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194438, + "fields": { + "id_car_serie": 47095, + "name": "1.8 TFSI multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194439, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TFSI MT quattro (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194440, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TDI MT quattro (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194441, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TFSI MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194442, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TFSI flexible fuel MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194443, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194444, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194445, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TDI MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194446, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TDI MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194447, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TDI MT quattro (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194448, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194449, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194450, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TFSI MT quattro (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194451, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194452, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TFSI S tronic quattro (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194453, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TFSI S tronic quattro (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194454, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TDI S tronic quattro (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194455, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TDI multitronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194456, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TFSI multitronic (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194457, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TFSI multitronic (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194458, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TDI multitronic (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194459, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TDI multitronic (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194460, + "fields": { + "id_car_serie": 47095, + "name": "3.0 TDI MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194461, + "fields": { + "id_car_serie": 47095, + "name": "3.0 TDI MT quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194462, + "fields": { + "id_car_serie": 47095, + "name": "3.0 TFSI S tronic quattro (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194463, + "fields": { + "id_car_serie": 47095, + "name": "3.0 TDI S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194464, + "fields": { + "id_car_serie": 47095, + "name": "3.0 TDI clean diesel S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194465, + "fields": { + "id_car_serie": 47095, + "name": "3.0 TDI multitronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194466, + "fields": { + "id_car_serie": 47115, + "name": "4.2i PLUS MT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194467, + "fields": { + "id_car_serie": 47162, + "name": "1.0 AT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194468, + "fields": { + "id_car_serie": 47188, + "name": "4.3 DSG (490 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194469, + "fields": { + "id_car_serie": 47350, + "name": "1.6 THP AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194470, + "fields": { + "id_car_serie": 47350, + "name": "1.6 THP MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194471, + "fields": { + "id_car_serie": 47350, + "name": "1.6 Hdi MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194472, + "fields": { + "id_car_serie": 47350, + "name": "1.6 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194473, + "fields": { + "id_car_serie": 47350, + "name": "1.6 Hdi AMT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194474, + "fields": { + "id_car_serie": 47350, + "name": "2.0 Hdi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194475, + "fields": { + "id_car_serie": 47350, + "name": "2.2 Hdi AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194476, + "fields": { + "id_car_serie": 47382, + "name": "1.9 dCi MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194477, + "fields": { + "id_car_serie": 47382, + "name": "2.0 T MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194478, + "fields": { + "id_car_serie": 47384, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194479, + "fields": { + "id_car_serie": 47391, + "name": "1.2 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194480, + "fields": { + "id_car_serie": 47391, + "name": "1.2 TCe MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194481, + "fields": { + "id_car_serie": 47391, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194482, + "fields": { + "id_car_serie": 47391, + "name": "1.2 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194483, + "fields": { + "id_car_serie": 47268, + "name": "1.3 Multijet MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194484, + "fields": { + "id_car_serie": 47268, + "name": "1.3 Multijet MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194485, + "fields": { + "id_car_serie": 47268, + "name": "1.3 Multijet AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194486, + "fields": { + "id_car_serie": 47329, + "name": "3.4 AT long (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194487, + "fields": { + "id_car_serie": 47344, + "name": "1.4 HDi MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194488, + "fields": { + "id_car_serie": 47344, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194489, + "fields": { + "id_car_serie": 47344, + "name": "2.0 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194490, + "fields": { + "id_car_serie": 47343, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194491, + "fields": { + "id_car_serie": 47343, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194492, + "fields": { + "id_car_serie": 47343, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194493, + "fields": { + "id_car_serie": 47343, + "name": "2.0 HDi AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194498, + "fields": { + "id_car_serie": 47386, + "name": "1.2 TCe MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194499, + "fields": { + "id_car_serie": 47386, + "name": "1.2 TCe MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194500, + "fields": { + "id_car_serie": 47386, + "name": "1.5 dCi EDC (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194501, + "fields": { + "id_car_serie": 47386, + "name": "1.6 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194502, + "fields": { + "id_car_serie": 47386, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194503, + "fields": { + "id_car_serie": 47386, + "name": "2.0 CVT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194504, + "fields": { + "id_car_serie": 46928, + "name": "1.9 TDi AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194505, + "fields": { + "id_car_serie": 46928, + "name": "1.9 TDi AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194506, + "fields": { + "id_car_serie": 46928, + "name": "1.9 TDi MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194507, + "fields": { + "id_car_serie": 46928, + "name": "1.9 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194508, + "fields": { + "id_car_serie": 47442, + "name": "2.0 Turbo AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194509, + "fields": { + "id_car_serie": 47442, + "name": "2.0 Turbo MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194510, + "fields": { + "id_car_serie": 47442, + "name": "2.8 AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194511, + "fields": { + "id_car_serie": 47442, + "name": "2.8 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194513, + "fields": { + "id_car_serie": 47455, + "name": "3.2 L AT (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194514, + "fields": { + "id_car_serie": 47455, + "name": "3.2 AT (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194515, + "fields": { + "id_car_serie": 47455, + "name": "3.2 4Motion AT (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194516, + "fields": { + "id_car_serie": 47455, + "name": "3.2 L 4Motion AT (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194517, + "fields": { + "id_car_serie": 47455, + "name": "3.2 MT (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194518, + "fields": { + "id_car_serie": 47455, + "name": "3.2 L MT (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194519, + "fields": { + "id_car_serie": 47455, + "name": "5.0 TD L 4Motion AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194520, + "fields": { + "id_car_serie": 47455, + "name": "5.0 TD 4Motion AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194521, + "fields": { + "id_car_serie": 47455, + "name": "6.0 4Motion AT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194522, + "fields": { + "id_car_serie": 47457, + "name": "1.4 TSI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194523, + "fields": { + "id_car_serie": 47457, + "name": "1.4 TSI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194524, + "fields": { + "id_car_serie": 47457, + "name": "2.0 TDI DSG (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194525, + "fields": { + "id_car_serie": 47476, + "name": "5.6 AT (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194526, + "fields": { + "id_car_serie": 47476, + "name": "5.6 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194527, + "fields": { + "id_car_serie": 46950, + "name": "1.6 AT 16 valves (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194528, + "fields": { + "id_car_serie": 46950, + "name": "1.6 AMT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194529, + "fields": { + "id_car_serie": 47469, + "name": "315192-10 2.9 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194530, + "fields": { + "id_car_serie": 47469, + "name": "31519 2.9 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194531, + "fields": { + "id_car_serie": 47469, + "name": "31519-10 2.9 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194532, + "fields": { + "id_car_serie": 47469, + "name": "315192 2.9 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194533, + "fields": { + "id_car_serie": 47139, + "name": "5.3i AT RWD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194534, + "fields": { + "id_car_serie": 47139, + "name": "6.0i AT AWD (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194535, + "fields": { + "id_car_serie": 47139, + "name": "6.0i AT (349 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194536, + "fields": { + "id_car_serie": 47094, + "name": "1.8T AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194538, + "fields": { + "id_car_serie": 47094, + "name": "1.8T MT Quattro (150 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194539, + "fields": { + "id_car_serie": 47094, + "name": "1.8T MT (180 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194540, + "fields": { + "id_car_serie": 47094, + "name": "1.8T MT Quattro (180 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194541, + "fields": { + "id_car_serie": 47094, + "name": "1.8T MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194545, + "fields": { + "id_car_serie": 47094, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194547, + "fields": { + "id_car_serie": 47116, + "name": "3.2 quattro MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194548, + "fields": { + "id_car_serie": 47116, + "name": "3.2 quattro S tronic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194549, + "fields": { + "id_car_serie": 47098, + "name": "2.5 TDI MT quattro (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194550, + "fields": { + "id_car_serie": 47096, + "name": "2.0 TDI multitronic (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194551, + "fields": { + "id_car_serie": 47096, + "name": "2.0 TFSI multitronic (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194552, + "fields": { + "id_car_serie": 47096, + "name": "2.7 TDI multitronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194553, + "fields": { + "id_car_serie": 46832, + "name": "1.75 Quadrifoglio Verde TBi MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194554, + "fields": { + "id_car_serie": 47155, + "name": "1.7 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194555, + "fields": { + "id_car_serie": 47155, + "name": "3.0 AT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194556, + "fields": { + "id_car_serie": 47155, + "name": "3.0 AT Carlsson (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194557, + "fields": { + "id_car_serie": 47155, + "name": "3.0 MT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194560, + "fields": { + "id_car_serie": 47201, + "name": "1.1 4MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194561, + "fields": { + "id_car_serie": 47201, + "name": "1.4 Alc. MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194562, + "fields": { + "id_car_serie": 47201, + "name": "1.3 4MT (69 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194565, + "fields": { + "id_car_serie": 47201, + "name": "1.4 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194566, + "fields": { + "id_car_serie": 47201, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194567, + "fields": { + "id_car_serie": 47201, + "name": "1.6 MT XR3 (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194568, + "fields": { + "id_car_serie": 47201, + "name": "1.6 Alc. 4MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194569, + "fields": { + "id_car_serie": 47201, + "name": "1.6 Alc. 5MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194570, + "fields": { + "id_car_serie": 47201, + "name": "1.6 4MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194571, + "fields": { + "id_car_serie": 47201, + "name": "1.6 4MT XR3 (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194573, + "fields": { + "id_car_serie": 47203, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194574, + "fields": { + "id_car_serie": 46875, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194575, + "fields": { + "id_car_serie": 46875, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194576, + "fields": { + "id_car_serie": 46875, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194577, + "fields": { + "id_car_serie": 46875, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194578, + "fields": { + "id_car_serie": 46876, + "name": "2.2 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194579, + "fields": { + "id_car_serie": 46876, + "name": "2.2 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194580, + "fields": { + "id_car_serie": 46876, + "name": "2.2 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194581, + "fields": { + "id_car_serie": 46876, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194582, + "fields": { + "id_car_serie": 46876, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194583, + "fields": { + "id_car_serie": 46876, + "name": "2.2 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194584, + "fields": { + "id_car_serie": 47221, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194585, + "fields": { + "id_car_serie": 47221, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194586, + "fields": { + "id_car_serie": 47221, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194587, + "fields": { + "id_car_serie": 47221, + "name": "1.5 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194588, + "fields": { + "id_car_serie": 47221, + "name": "1.8 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194589, + "fields": { + "id_car_serie": 47221, + "name": "2.0 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194591, + "fields": { + "id_car_serie": 1149, + "name": "2.5 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194593, + "fields": { + "id_car_serie": 1149, + "name": "2.9 CRDi AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194594, + "fields": { + "id_car_serie": 1149, + "name": "2.9 CRDi MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194596, + "fields": { + "id_car_serie": 47383, + "name": "2.2 dCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194597, + "fields": { + "id_car_serie": 47383, + "name": "3.0 AT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194611, + "fields": { + "id_car_serie": 47318, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194612, + "fields": { + "id_car_serie": 47318, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194613, + "fields": { + "id_car_serie": 47318, + "name": "1.5 AT Limited (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194614, + "fields": { + "id_car_serie": 47318, + "name": "1.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194615, + "fields": { + "id_car_serie": 47318, + "name": "1.5 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194616, + "fields": { + "id_car_serie": 47318, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194617, + "fields": { + "id_car_serie": 47318, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194618, + "fields": { + "id_car_serie": 47318, + "name": "1.8 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194619, + "fields": { + "id_car_serie": 47318, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194620, + "fields": { + "id_car_serie": 47322, + "name": "2.4 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194621, + "fields": { + "id_car_serie": 47322, + "name": "2.4 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194622, + "fields": { + "id_car_serie": 47322, + "name": "2.5 TD AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194623, + "fields": { + "id_car_serie": 47322, + "name": "2.8 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194624, + "fields": { + "id_car_serie": 47322, + "name": "2.8 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194625, + "fields": { + "id_car_serie": 47322, + "name": "3.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194626, + "fields": { + "id_car_serie": 47322, + "name": "3.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194627, + "fields": { + "id_car_serie": 47322, + "name": "3.5 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194628, + "fields": { + "id_car_serie": 47322, + "name": "3.5 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194629, + "fields": { + "id_car_serie": 47322, + "name": "3.5 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194630, + "fields": { + "id_car_serie": 47322, + "name": "3.5 MT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194631, + "fields": { + "id_car_serie": 47374, + "name": "3.6 MT Carrera RS (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194632, + "fields": { + "id_car_serie": 47374, + "name": "3.8 MT Carrera RS (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194633, + "fields": { + "id_car_serie": 47325, + "name": "1.3 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194634, + "fields": { + "id_car_serie": 47325, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194635, + "fields": { + "id_car_serie": 47325, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194636, + "fields": { + "id_car_serie": 47325, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194637, + "fields": { + "id_car_serie": 47325, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194638, + "fields": { + "id_car_serie": 47325, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194639, + "fields": { + "id_car_serie": 47325, + "name": "1.7 D AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194640, + "fields": { + "id_car_serie": 47325, + "name": "1.7 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194641, + "fields": { + "id_car_serie": 47325, + "name": "2.0 D AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194642, + "fields": { + "id_car_serie": 47325, + "name": "2.0 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194643, + "fields": { + "id_car_serie": 47335, + "name": "1.4 Turbo ecoFLEX MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194644, + "fields": { + "id_car_serie": 47335, + "name": "1.4 Turbo LPG ecoFLEX MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194645, + "fields": { + "id_car_serie": 47335, + "name": "2.0 BiTurbo CDTI MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194646, + "fields": { + "id_car_serie": 47331, + "name": "1.3 CDTI ecoFLEX MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194647, + "fields": { + "id_car_serie": 47331, + "name": "1.7 CDTI ecoFLEX MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194648, + "fields": { + "id_car_serie": 47331, + "name": "1.7 CDTI ecoFLEX MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194649, + "fields": { + "id_car_serie": 47331, + "name": "2.0 CDTI AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194650, + "fields": { + "id_car_serie": 47331, + "name": "2.0 CDTI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194651, + "fields": { + "id_car_serie": 47331, + "name": "2.0 CDTI ecoFLEX MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194652, + "fields": { + "id_car_serie": 47332, + "name": "1.3 CDTI MT L2H1 (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194653, + "fields": { + "id_car_serie": 47332, + "name": "1.3 CDTI MT L1H1 (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194654, + "fields": { + "id_car_serie": 47332, + "name": "1.4 MT L1H1 (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194655, + "fields": { + "id_car_serie": 47332, + "name": "1.6 CDTI Easytronic L2H1 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194656, + "fields": { + "id_car_serie": 47332, + "name": "1.6 CDTI Easytronic L1H2 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194657, + "fields": { + "id_car_serie": 47332, + "name": "1.6 CDTI Easytronic L1H1 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194658, + "fields": { + "id_car_serie": 47332, + "name": "2.0 CDTI MT L1H1 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194659, + "fields": { + "id_car_serie": 47332, + "name": "2.0 CDTI MT L2H1 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194660, + "fields": { + "id_car_serie": 47332, + "name": "2.0 CDTI MT L1H2 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194661, + "fields": { + "id_car_serie": 47333, + "name": "1.4 Turbo LPG ecoFLEX MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194662, + "fields": { + "id_car_serie": 47333, + "name": "1.4 Turbo ecoFLEX MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194663, + "fields": { + "id_car_serie": 47333, + "name": "2.0 BiTurbo CDTI AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194664, + "fields": { + "id_car_serie": 47333, + "name": "2.0 BiTurbo CDTI MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194665, + "fields": { + "id_car_serie": 47333, + "name": "2.0 Turbo MT 4x4 (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194666, + "fields": { + "id_car_serie": 47333, + "name": "2.0 Turbo MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194667, + "fields": { + "id_car_serie": 47385, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194668, + "fields": { + "id_car_serie": 47385, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194669, + "fields": { + "id_car_serie": 47388, + "name": "1.2 TCe MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194670, + "fields": { + "id_car_serie": 47388, + "name": "1.2 TCe MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194671, + "fields": { + "id_car_serie": 47388, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194672, + "fields": { + "id_car_serie": 47388, + "name": "1.5 dCi MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194673, + "fields": { + "id_car_serie": 47388, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194674, + "fields": { + "id_car_serie": 47388, + "name": "1.5 dCi EDC (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194675, + "fields": { + "id_car_serie": 46921, + "name": "6.6 EWB AT (570 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194678, + "fields": { + "id_car_serie": 46929, + "name": "2.2 TDi AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194679, + "fields": { + "id_car_serie": 46929, + "name": "2.2 TDi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194680, + "fields": { + "id_car_serie": 46929, + "name": "2.3 T AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194681, + "fields": { + "id_car_serie": 46929, + "name": "2.3 T MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194682, + "fields": { + "id_car_serie": 46929, + "name": "2.3 T MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194683, + "fields": { + "id_car_serie": 46929, + "name": "3.0 T MT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194684, + "fields": { + "id_car_serie": 47410, + "name": "1.2i MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194685, + "fields": { + "id_car_serie": 47410, + "name": "1.5i MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194686, + "fields": { + "id_car_serie": 47414, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194687, + "fields": { + "id_car_serie": 47414, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194688, + "fields": { + "id_car_serie": 47414, + "name": "1.4 TSI Greentech MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194689, + "fields": { + "id_car_serie": 47414, + "name": "1.4 Euro V MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194690, + "fields": { + "id_car_serie": 47414, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194691, + "fields": { + "id_car_serie": 47414, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194692, + "fields": { + "id_car_serie": 47414, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194693, + "fields": { + "id_car_serie": 47414, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194694, + "fields": { + "id_car_serie": 47414, + "name": "1.6 TDI Greentech MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194695, + "fields": { + "id_car_serie": 47414, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194696, + "fields": { + "id_car_serie": 47414, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194697, + "fields": { + "id_car_serie": 47414, + "name": "1.6 MultiFuel MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194698, + "fields": { + "id_car_serie": 47414, + "name": "1.6 Euro V MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194699, + "fields": { + "id_car_serie": 47414, + "name": "1.6 TDI GreenLine MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194700, + "fields": { + "id_car_serie": 47414, + "name": "1.6 TDI MT 4x4 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194701, + "fields": { + "id_car_serie": 47414, + "name": "1.6 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194702, + "fields": { + "id_car_serie": 47414, + "name": "1.8 TSI AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194703, + "fields": { + "id_car_serie": 47414, + "name": "1.8 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194704, + "fields": { + "id_car_serie": 47414, + "name": "1.8 TSI MT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194705, + "fields": { + "id_car_serie": 47414, + "name": "1.8 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194706, + "fields": { + "id_car_serie": 47414, + "name": "1.8 TSI DSG (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194707, + "fields": { + "id_car_serie": 47414, + "name": "1.9 TDI MT 4x4 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194708, + "fields": { + "id_car_serie": 47414, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194709, + "fields": { + "id_car_serie": 47414, + "name": "1.9 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194710, + "fields": { + "id_car_serie": 47414, + "name": "2.0 TDI Euro V MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194711, + "fields": { + "id_car_serie": 47414, + "name": "2.0 TDI MT 4x4 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194712, + "fields": { + "id_car_serie": 47414, + "name": "2.0 TDI Euro V MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194713, + "fields": { + "id_car_serie": 47414, + "name": "2.0 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194714, + "fields": { + "id_car_serie": 47414, + "name": "2.0 TDI MT 4x4 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194715, + "fields": { + "id_car_serie": 47414, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194716, + "fields": { + "id_car_serie": 47414, + "name": "2.0 TDI DSG 4x4 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194717, + "fields": { + "id_car_serie": 47430, + "name": "2.0 DT AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194718, + "fields": { + "id_car_serie": 47430, + "name": "2.0 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194719, + "fields": { + "id_car_serie": 47430, + "name": "2.0 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194720, + "fields": { + "id_car_serie": 47433, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194721, + "fields": { + "id_car_serie": 47433, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194722, + "fields": { + "id_car_serie": 47433, + "name": "2.0 D-4D MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194723, + "fields": { + "id_car_serie": 47433, + "name": "2.0 D-4D MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194724, + "fields": { + "id_car_serie": 47433, + "name": "2.0 D-4D MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194725, + "fields": { + "id_car_serie": 47432, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194726, + "fields": { + "id_car_serie": 47434, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194727, + "fields": { + "id_car_serie": 47434, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194728, + "fields": { + "id_car_serie": 47434, + "name": "1.8 MT Overdrive (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194729, + "fields": { + "id_car_serie": 47434, + "name": "1.8 MT Overdrive (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194730, + "fields": { + "id_car_serie": 47435, + "name": "1.1 Toyoglide (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194732, + "fields": { + "id_car_serie": 47435, + "name": "1.1 Synchromesh (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194733, + "fields": { + "id_car_serie": 47435, + "name": "1.1 Synchromesh (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194734, + "fields": { + "id_car_serie": 47435, + "name": "1.1 Synchromesh (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194735, + "fields": { + "id_car_serie": 47439, + "name": "3.0 AT 4WD (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194736, + "fields": { + "id_car_serie": 47439, + "name": "3.5 AT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194737, + "fields": { + "id_car_serie": 47449, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194738, + "fields": { + "id_car_serie": 47449, + "name": "1.6 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194739, + "fields": { + "id_car_serie": 47449, + "name": "1.6 TDI BlueMotion DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194740, + "fields": { + "id_car_serie": 47450, + "name": "3.2 VR6 4motion MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194741, + "fields": { + "id_car_serie": 47450, + "name": "3.2 VR6 4motion DSG (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194742, + "fields": { + "id_car_serie": 46952, + "name": "1.4 MT 16 valves (Euro-4) (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194743, + "fields": { + "id_car_serie": 46952, + "name": "1.6 MT 8 valves (2181) (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194744, + "fields": { + "id_car_serie": 46952, + "name": "1.6 MT 8 valves (Euro-3) (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194745, + "fields": { + "id_car_serie": 46952, + "name": "1.6 MT 16 valves (2181) (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194746, + "fields": { + "id_car_serie": 46952, + "name": "1.6 MT 16 valves (Euro-3) (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194747, + "fields": { + "id_car_serie": 46954, + "name": "1.6 MT 16 valves (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194748, + "fields": { + "id_car_serie": 46951, + "name": "1.6 AMT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194752, + "fields": { + "id_car_serie": 47256, + "name": "4.0 AT Long (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194753, + "fields": { + "id_car_serie": 47256, + "name": "4.0 AT (363 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194754, + "fields": { + "id_car_serie": 47255, + "name": "3.5 AT (262 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194815, + "fields": { + "id_car_serie": 47492, + "name": "109 CDI MT L1 (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194816, + "fields": { + "id_car_serie": 47492, + "name": "109 CDI MT L2 (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194817, + "fields": { + "id_car_serie": 47492, + "name": "111 CDI MT L1 (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194818, + "fields": { + "id_car_serie": 47492, + "name": "109 CDI MT L3 (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194819, + "fields": { + "id_car_serie": 47492, + "name": "111 CDI MT L2 (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194820, + "fields": { + "id_car_serie": 47492, + "name": "111 CDI MT L3 (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194821, + "fields": { + "id_car_serie": 47492, + "name": "119 BlueTEC AT L1 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194822, + "fields": { + "id_car_serie": 47492, + "name": "119 BlueTEC AT L2 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194823, + "fields": { + "id_car_serie": 47492, + "name": "119 BlueTEC AT L3 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194824, + "fields": { + "id_car_serie": 47492, + "name": "114 CDI MT L1 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194825, + "fields": { + "id_car_serie": 47492, + "name": "114 CDI MT L2 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194826, + "fields": { + "id_car_serie": 47492, + "name": "114 CDI MT L3 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194827, + "fields": { + "id_car_serie": 47492, + "name": "116 CDI MT L1 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194828, + "fields": { + "id_car_serie": 47492, + "name": "116 CDI MT L2 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194829, + "fields": { + "id_car_serie": 47492, + "name": "116 CDI MT L3 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194848, + "fields": { + "id_car_serie": 46872, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194849, + "fields": { + "id_car_serie": 46872, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194850, + "fields": { + "id_car_serie": 46872, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194851, + "fields": { + "id_car_serie": 46872, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194852, + "fields": { + "id_car_serie": 46872, + "name": "2.0 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194853, + "fields": { + "id_car_serie": 46872, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194854, + "fields": { + "id_car_serie": 46872, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194855, + "fields": { + "id_car_serie": 47381, + "name": "2.0 T MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194856, + "fields": { + "id_car_serie": 47381, + "name": "2.2 dCi AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194857, + "fields": { + "id_car_serie": 47381, + "name": "3.0 dCi AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194858, + "fields": { + "id_car_serie": 7498, + "name": "2.0 TCe MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194859, + "fields": { + "id_car_serie": 7498, + "name": "2.0 dCi MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194860, + "fields": { + "id_car_serie": 47389, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194861, + "fields": { + "id_car_serie": 47397, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194862, + "fields": { + "id_car_serie": 46920, + "name": "2.0 T AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194863, + "fields": { + "id_car_serie": 46920, + "name": "2.0 T MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194864, + "fields": { + "id_car_serie": 46920, + "name": "2.2 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194865, + "fields": { + "id_car_serie": 46942, + "name": "0.9 L MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194866, + "fields": { + "id_car_serie": 46942, + "name": "1.1 L MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194867, + "fields": { + "id_car_serie": 47484, + "name": "4.3 4AT 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194868, + "fields": { + "id_car_serie": 47484, + "name": "4.3 5MT LWB 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194869, + "fields": { + "id_car_serie": 47484, + "name": "4.8 4AT 1500 Sportside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194870, + "fields": { + "id_car_serie": 47484, + "name": "4.8 4AT 4WD 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194871, + "fields": { + "id_car_serie": 47484, + "name": "4.8 5MT 4WD 1500 Sportside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194872, + "fields": { + "id_car_serie": 47484, + "name": "4.8 5MT 4WD LWB 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194873, + "fields": { + "id_car_serie": 47484, + "name": "4.8 5MT 4WD 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194874, + "fields": { + "id_car_serie": 47484, + "name": "4.8 5MT 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194875, + "fields": { + "id_car_serie": 47484, + "name": "5.3 4AT LWB 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194876, + "fields": { + "id_car_serie": 47484, + "name": "5.3 4AT 1500 Sportside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194877, + "fields": { + "id_car_serie": 47484, + "name": "6.0 5AT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194878, + "fields": { + "id_car_serie": 47484, + "name": "6.0 5AT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194879, + "fields": { + "id_car_serie": 47484, + "name": "6.0 4AT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194880, + "fields": { + "id_car_serie": 47484, + "name": "6.0 4AT 4WD 2500 Fleetside (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194881, + "fields": { + "id_car_serie": 47484, + "name": "6.0 4AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194882, + "fields": { + "id_car_serie": 47484, + "name": "6.0 5AT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194883, + "fields": { + "id_car_serie": 47484, + "name": "6.0 4AT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194884, + "fields": { + "id_car_serie": 47484, + "name": "6.0 5AT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194885, + "fields": { + "id_car_serie": 47484, + "name": "6.0 5AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194886, + "fields": { + "id_car_serie": 47484, + "name": "6.0 4AT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194887, + "fields": { + "id_car_serie": 47484, + "name": "6.0 5AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194888, + "fields": { + "id_car_serie": 47484, + "name": "6.0 4AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194889, + "fields": { + "id_car_serie": 47484, + "name": "6.0 4AT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194890, + "fields": { + "id_car_serie": 47484, + "name": "6.0 5MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194891, + "fields": { + "id_car_serie": 47484, + "name": "6.0 5MT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194892, + "fields": { + "id_car_serie": 47484, + "name": "6.0 6MT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194893, + "fields": { + "id_car_serie": 47484, + "name": "6.0 6MT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194894, + "fields": { + "id_car_serie": 47484, + "name": "6.0 5MT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194895, + "fields": { + "id_car_serie": 47484, + "name": "6.0 6MT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194896, + "fields": { + "id_car_serie": 47484, + "name": "6.0 6MT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194897, + "fields": { + "id_car_serie": 47484, + "name": "6.0 6MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194898, + "fields": { + "id_car_serie": 47484, + "name": "6.0 5MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194899, + "fields": { + "id_car_serie": 47484, + "name": "6.0 6MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194900, + "fields": { + "id_car_serie": 47484, + "name": "6.0 5MT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194901, + "fields": { + "id_car_serie": 47484, + "name": "6.0 5MT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194902, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 5AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194903, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 4AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194904, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 4AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194905, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 5AT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194906, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 4AT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194907, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 4AT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194908, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 4AT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194909, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 5AT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194910, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 4AT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194911, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 5AT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194912, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 5AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194913, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 5AT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194914, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 6MT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194915, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 5MT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194916, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 5MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194917, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 6MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194918, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 5MT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194919, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 6MT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194920, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 5MT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194921, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 6MT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194922, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 5MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194923, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 6MT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194924, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 5MT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194925, + "fields": { + "id_car_serie": 47484, + "name": "6.6 TD 6MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194926, + "fields": { + "id_car_serie": 47484, + "name": "8.1 4AT 4WD LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194927, + "fields": { + "id_car_serie": 47484, + "name": "8.1 5AT 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194928, + "fields": { + "id_car_serie": 47484, + "name": "8.1 4AT 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194929, + "fields": { + "id_car_serie": 47484, + "name": "8.1 5AT 4WD 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194930, + "fields": { + "id_car_serie": 47484, + "name": "8.1 4AT 4WD 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194931, + "fields": { + "id_car_serie": 47484, + "name": "8.1 4AT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194932, + "fields": { + "id_car_serie": 47484, + "name": "8.1 5AT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194933, + "fields": { + "id_car_serie": 47484, + "name": "8.1 5AT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194934, + "fields": { + "id_car_serie": 47484, + "name": "8.1 4AT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194935, + "fields": { + "id_car_serie": 47484, + "name": "8.1 5AT LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194936, + "fields": { + "id_car_serie": 47484, + "name": "8.1 4AT LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194937, + "fields": { + "id_car_serie": 47484, + "name": "8.1 5AT 4WD LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194938, + "fields": { + "id_car_serie": 47484, + "name": "8.1 5MT LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194939, + "fields": { + "id_car_serie": 47484, + "name": "8.1 6MT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194940, + "fields": { + "id_car_serie": 47484, + "name": "8.1 5MT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194941, + "fields": { + "id_car_serie": 47484, + "name": "8.1 6MT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194942, + "fields": { + "id_car_serie": 47484, + "name": "8.1 5MT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194943, + "fields": { + "id_car_serie": 47484, + "name": "8.1 5MT 4WD 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194944, + "fields": { + "id_car_serie": 47484, + "name": "8.1 6MT 4WD 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194945, + "fields": { + "id_car_serie": 47484, + "name": "8.1 6MT 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194946, + "fields": { + "id_car_serie": 47484, + "name": "8.1 5MT 4WD LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194947, + "fields": { + "id_car_serie": 47484, + "name": "8.1 6MT LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194948, + "fields": { + "id_car_serie": 47484, + "name": "8.1 6MT 4WD LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194949, + "fields": { + "id_car_serie": 47484, + "name": "8.1 5MT 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194950, + "fields": { + "id_car_serie": 47485, + "name": "4.3 4AT 1500 Sportside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194951, + "fields": { + "id_car_serie": 47485, + "name": "4.3 4AT 4WD 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194952, + "fields": { + "id_car_serie": 47485, + "name": "4.3 4AT 4WD 1500 Sportside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194953, + "fields": { + "id_car_serie": 47485, + "name": "4.3 4AT 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194954, + "fields": { + "id_car_serie": 47485, + "name": "4.3 5MT 4WD 1500 Sportside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194955, + "fields": { + "id_car_serie": 47485, + "name": "4.3 5MT 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194956, + "fields": { + "id_car_serie": 47485, + "name": "4.3 5MT 1500 Sportside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194957, + "fields": { + "id_car_serie": 47485, + "name": "4.3 5MT 4WD LWB 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194958, + "fields": { + "id_car_serie": 47485, + "name": "4.8 4AT 4WD 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194959, + "fields": { + "id_car_serie": 47485, + "name": "4.8 4AT 4WD LWB 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194960, + "fields": { + "id_car_serie": 47485, + "name": "4.8 5MT 1500 Sportside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194961, + "fields": { + "id_car_serie": 47485, + "name": "4.8 5MT 4WD 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194962, + "fields": { + "id_car_serie": 47485, + "name": "4.8 5MT LWB 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194963, + "fields": { + "id_car_serie": 47485, + "name": "4.8 5MT 4WD LWB 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194964, + "fields": { + "id_car_serie": 47485, + "name": "5.3 4AT 4WD 1500 Sportside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194965, + "fields": { + "id_car_serie": 47485, + "name": "5.3 4AT 4WD 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194966, + "fields": { + "id_car_serie": 47485, + "name": "6.0 5AT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194967, + "fields": { + "id_car_serie": 47485, + "name": "6.0 4AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194968, + "fields": { + "id_car_serie": 47485, + "name": "6.0 5AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194969, + "fields": { + "id_car_serie": 47485, + "name": "6.0 4AT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194970, + "fields": { + "id_car_serie": 47485, + "name": "6.0 4AT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194971, + "fields": { + "id_car_serie": 47485, + "name": "6.0 5AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194972, + "fields": { + "id_car_serie": 47485, + "name": "6.0 4AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194973, + "fields": { + "id_car_serie": 47485, + "name": "6.0 5AT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194974, + "fields": { + "id_car_serie": 47485, + "name": "6.0 4AT LWB 2500 Fleetside (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194975, + "fields": { + "id_car_serie": 47485, + "name": "6.0 5MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194976, + "fields": { + "id_car_serie": 47485, + "name": "6.0 6MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194977, + "fields": { + "id_car_serie": 47485, + "name": "6.0 5MT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194978, + "fields": { + "id_car_serie": 47485, + "name": "6.0 6MT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194979, + "fields": { + "id_car_serie": 47485, + "name": "6.0 5MT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194980, + "fields": { + "id_car_serie": 47485, + "name": "6.0 6MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194981, + "fields": { + "id_car_serie": 47485, + "name": "6.0 6MT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194982, + "fields": { + "id_car_serie": 47485, + "name": "6.0 5MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194983, + "fields": { + "id_car_serie": 47485, + "name": "6.6 TD 5AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194984, + "fields": { + "id_car_serie": 47485, + "name": "6.6 TD 5AT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194985, + "fields": { + "id_car_serie": 47485, + "name": "6.6 TD 4AT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194986, + "fields": { + "id_car_serie": 47485, + "name": "6.6 TD 5AT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194987, + "fields": { + "id_car_serie": 47485, + "name": "6.6 TD 5AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194988, + "fields": { + "id_car_serie": 47485, + "name": "6.6 TD 4AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194989, + "fields": { + "id_car_serie": 47485, + "name": "6.6 TD 4AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194990, + "fields": { + "id_car_serie": 47485, + "name": "6.6 TD 4AT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194991, + "fields": { + "id_car_serie": 47485, + "name": "6.6 TD 6MT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194992, + "fields": { + "id_car_serie": 47485, + "name": "6.6 TD 5MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194993, + "fields": { + "id_car_serie": 47485, + "name": "6.6 TD 6MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194994, + "fields": { + "id_car_serie": 47485, + "name": "6.6 TD 6MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194995, + "fields": { + "id_car_serie": 47485, + "name": "6.6 TD 5MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194996, + "fields": { + "id_car_serie": 47485, + "name": "6.6 TD 5MT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194997, + "fields": { + "id_car_serie": 47485, + "name": "6.6 TD 6MT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194998, + "fields": { + "id_car_serie": 47485, + "name": "6.6 TD 5MT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 194999, + "fields": { + "id_car_serie": 47485, + "name": "8.1 4AT LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195000, + "fields": { + "id_car_serie": 47485, + "name": "8.1 4AT 4WD LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195001, + "fields": { + "id_car_serie": 47485, + "name": "8.1 5AT LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195002, + "fields": { + "id_car_serie": 47485, + "name": "8.1 5AT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195003, + "fields": { + "id_car_serie": 47485, + "name": "8.1 5AT 4WD LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195004, + "fields": { + "id_car_serie": 47485, + "name": "8.1 5AT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195005, + "fields": { + "id_car_serie": 47485, + "name": "8.1 4AT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195006, + "fields": { + "id_car_serie": 47485, + "name": "8.1 4AT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195007, + "fields": { + "id_car_serie": 47485, + "name": "8.1 5MT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195008, + "fields": { + "id_car_serie": 47485, + "name": "8.1 6MT LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195009, + "fields": { + "id_car_serie": 47485, + "name": "8.1 6MT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195010, + "fields": { + "id_car_serie": 47485, + "name": "8.1 5MT LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195011, + "fields": { + "id_car_serie": 47485, + "name": "8.1 6MT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195012, + "fields": { + "id_car_serie": 47485, + "name": "8.1 5MT 4WD LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195013, + "fields": { + "id_car_serie": 47485, + "name": "8.1 6MT 4WD LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195014, + "fields": { + "id_car_serie": 47485, + "name": "8.1 5MT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195015, + "fields": { + "id_car_serie": 47196, + "name": "0.8 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195016, + "fields": { + "id_car_serie": 47196, + "name": "1.0 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195017, + "fields": { + "id_car_serie": 47196, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195018, + "fields": { + "id_car_serie": 47196, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195019, + "fields": { + "id_car_serie": 47196, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195020, + "fields": { + "id_car_serie": 47349, + "name": "1.6 HDi AMT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195021, + "fields": { + "id_car_serie": 46914, + "name": "3.8 Turbo AMT AWD (485 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195023, + "fields": { + "id_car_serie": 47422, + "name": "2.0D MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195024, + "fields": { + "id_car_serie": 47269, + "name": "460 AT (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195025, + "fields": { + "id_car_serie": 47269, + "name": "460 AT AWD (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195026, + "fields": { + "id_car_serie": 47269, + "name": "460L AT AWD (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195027, + "fields": { + "id_car_serie": 47269, + "name": "600h L CVT AWD (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195028, + "fields": { + "id_car_serie": 47473, + "name": "2.7 TD 4WD AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195029, + "fields": { + "id_car_serie": 47473, + "name": "2.7 D 4WD MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195030, + "fields": { + "id_car_serie": 47473, + "name": "3.0 4WD AT wide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195031, + "fields": { + "id_car_serie": 47473, + "name": "3.0 4WD AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195032, + "fields": { + "id_car_serie": 47473, + "name": "3.0 4WD AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195033, + "fields": { + "id_car_serie": 47473, + "name": "3.0 4WD MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195034, + "fields": { + "id_car_serie": 47473, + "name": "3.0 4WD MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195035, + "fields": { + "id_car_serie": 47473, + "name": "3.0 4WD MT wide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195036, + "fields": { + "id_car_serie": 47334, + "name": "1.4 Turbo ecoFLEX MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195037, + "fields": { + "id_car_serie": 47334, + "name": "2.0 CDTI Bi-Turbo MT 4x4 (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195038, + "fields": { + "id_car_serie": 47334, + "name": "2.0 CDTI Bi-Turbo MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195039, + "fields": { + "id_car_serie": 47419, + "name": "1.2 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195040, + "fields": { + "id_car_serie": 47419, + "name": "1.2 TSI MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195041, + "fields": { + "id_car_serie": 47419, + "name": "1.2 TSI MT Green tec (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195042, + "fields": { + "id_car_serie": 47419, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195043, + "fields": { + "id_car_serie": 47419, + "name": "1.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195044, + "fields": { + "id_car_serie": 47419, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195045, + "fields": { + "id_car_serie": 47419, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195046, + "fields": { + "id_car_serie": 47419, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195047, + "fields": { + "id_car_serie": 46828, + "name": "1.8 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195048, + "fields": { + "id_car_serie": 46829, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195049, + "fields": { + "id_car_serie": 46829, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195050, + "fields": { + "id_car_serie": 46829, + "name": "2.5 TD MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195051, + "fields": { + "id_car_serie": 46829, + "name": "3.0i MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195052, + "fields": { + "id_car_serie": 46829, + "name": "3.0 MT (232 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195053, + "fields": { + "id_car_serie": 46829, + "name": "3.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195054, + "fields": { + "id_car_serie": 46829, + "name": "3.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195055, + "fields": { + "id_car_serie": 46831, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195056, + "fields": { + "id_car_serie": 46831, + "name": "1.8 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195057, + "fields": { + "id_car_serie": 46831, + "name": "2.4 TD MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195058, + "fields": { + "id_car_serie": 46831, + "name": "2.5 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195059, + "fields": { + "id_car_serie": 46833, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195060, + "fields": { + "id_car_serie": 46833, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195061, + "fields": { + "id_car_serie": 46833, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195062, + "fields": { + "id_car_serie": 46834, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195063, + "fields": { + "id_car_serie": 46834, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195064, + "fields": { + "id_car_serie": 46834, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195065, + "fields": { + "id_car_serie": 46834, + "name": "2.0 TD MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195066, + "fields": { + "id_car_serie": 46835, + "name": "1.3 Multijet II MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195067, + "fields": { + "id_car_serie": 46835, + "name": "1.3 Multijet MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195068, + "fields": { + "id_car_serie": 46835, + "name": "1.4 T-Jet MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195069, + "fields": { + "id_car_serie": 46835, + "name": "1.4 MT GPl (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195070, + "fields": { + "id_car_serie": 46844, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195071, + "fields": { + "id_car_serie": 46844, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195072, + "fields": { + "id_car_serie": 46866, + "name": "1.8 TD MT SWB (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195073, + "fields": { + "id_car_serie": 46866, + "name": "1.8 TD MT SWB (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195074, + "fields": { + "id_car_serie": 46888, + "name": "2.3 T AT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195075, + "fields": { + "id_car_serie": 46913, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195076, + "fields": { + "id_car_serie": 46913, + "name": "2.2 TD MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195077, + "fields": { + "id_car_serie": 46913, + "name": "2.2 TD MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195078, + "fields": { + "id_car_serie": 46930, + "name": "2.2 TDi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195079, + "fields": { + "id_car_serie": 46930, + "name": "2.3 T MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195080, + "fields": { + "id_car_serie": 46930, + "name": "3.0 TDi MT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195081, + "fields": { + "id_car_serie": 46953, + "name": "1.4 MT 16 valves (Euro-4) (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195082, + "fields": { + "id_car_serie": 46955, + "name": "1.6 MT 16 valves (7 places) (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195083, + "fields": { + "id_car_serie": 46962, + "name": "1.5 MT high roof (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195084, + "fields": { + "id_car_serie": 46962, + "name": "1.8 AT standard roof (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195085, + "fields": { + "id_car_serie": 46962, + "name": "1.8 AT high roof (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195086, + "fields": { + "id_car_serie": 46962, + "name": "1.8 AT skylight roof (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195087, + "fields": { + "id_car_serie": 46962, + "name": "1.8 MT standard roof (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195088, + "fields": { + "id_car_serie": 46962, + "name": "1.8 MT high roof (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195089, + "fields": { + "id_car_serie": 46962, + "name": "1.8 MT skylight roof (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195090, + "fields": { + "id_car_serie": 46962, + "name": "2.0 TD AT high roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195091, + "fields": { + "id_car_serie": 46962, + "name": "2.0 TD AT AWD high roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195092, + "fields": { + "id_car_serie": 46962, + "name": "2.0 TD AT skylight roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195093, + "fields": { + "id_car_serie": 46962, + "name": "2.0 TD AT AWD skylight roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195094, + "fields": { + "id_car_serie": 46962, + "name": "2.0 TD AT standard roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195095, + "fields": { + "id_car_serie": 46962, + "name": "2.0 TD AT AWD standard roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195096, + "fields": { + "id_car_serie": 46962, + "name": "2.0 AT AWD high roof (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195097, + "fields": { + "id_car_serie": 46962, + "name": "2.0 AT AWD skylight roof (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195098, + "fields": { + "id_car_serie": 46962, + "name": "2.0 AT AWD standard roof (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195099, + "fields": { + "id_car_serie": 46962, + "name": "2.0 MT AWD standard roof (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195100, + "fields": { + "id_car_serie": 46962, + "name": "2.0 MT AWD skylight roof (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195101, + "fields": { + "id_car_serie": 46962, + "name": "2.0 MT AWD high roof (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195102, + "fields": { + "id_car_serie": 46962, + "name": "2.0 D MT high roof (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195103, + "fields": { + "id_car_serie": 46962, + "name": "2.0 D MT standard roof (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195104, + "fields": { + "id_car_serie": 46962, + "name": "2.0 TD MT AWD standard roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195105, + "fields": { + "id_car_serie": 46962, + "name": "2.0 TD MT standard roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195106, + "fields": { + "id_car_serie": 46962, + "name": "2.0 TD MT AWD skylight roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195107, + "fields": { + "id_car_serie": 46962, + "name": "2.0 TD MT skylight roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195108, + "fields": { + "id_car_serie": 46962, + "name": "2.0 TD MT AWD high roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195109, + "fields": { + "id_car_serie": 46962, + "name": "2.0 TD MT high roof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195110, + "fields": { + "id_car_serie": 47049, + "name": "2.1 Transfluide (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195111, + "fields": { + "id_car_serie": 47054, + "name": "1.0 AT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195112, + "fields": { + "id_car_serie": 47054, + "name": "1.0 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195113, + "fields": { + "id_car_serie": 47054, + "name": "1.1 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195114, + "fields": { + "id_car_serie": 47054, + "name": "1.1 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195115, + "fields": { + "id_car_serie": 47054, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195116, + "fields": { + "id_car_serie": 47077, + "name": "250 9G-TRONIC 4MATIC (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195117, + "fields": { + "id_car_serie": 47077, + "name": "300 9G-TRONIC 4MATIC (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195118, + "fields": { + "id_car_serie": 47077, + "name": "220d 9G-TRONIC 4MATIC (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195119, + "fields": { + "id_car_serie": 47077, + "name": "250d 9G-TRONIC 4MATIC (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195120, + "fields": { + "id_car_serie": 47099, + "name": "1.8 T tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195121, + "fields": { + "id_car_serie": 47099, + "name": "1.8 T MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195122, + "fields": { + "id_car_serie": 47099, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195123, + "fields": { + "id_car_serie": 47099, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195124, + "fields": { + "id_car_serie": 47099, + "name": "2.4 tiptronic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195125, + "fields": { + "id_car_serie": 47099, + "name": "2.4 tiptronic quattro (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195126, + "fields": { + "id_car_serie": 47099, + "name": "2.4 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195127, + "fields": { + "id_car_serie": 47099, + "name": "2.4 MT quattro (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195128, + "fields": { + "id_car_serie": 47099, + "name": "2.5 TDI 6MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195129, + "fields": { + "id_car_serie": 47099, + "name": "2.8 tiptronic quattro (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195130, + "fields": { + "id_car_serie": 47099, + "name": "2.8 tiptronic (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195132, + "fields": { + "id_car_serie": 47099, + "name": "2.8 MT quattro (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195133, + "fields": { + "id_car_serie": 47118, + "name": "6.75 Twin-Turbo AT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195134, + "fields": { + "id_car_serie": 47281, + "name": "2.2 CDi TouchShift 4MATIC over long (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195135, + "fields": { + "id_car_serie": 47281, + "name": "2.2 CDi TouchShift 4MATIC extended (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195136, + "fields": { + "id_car_serie": 47281, + "name": "2.0 CDi TouchShift 4MATIC compact (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195137, + "fields": { + "id_car_serie": 47281, + "name": "2.0 CDi TouchShift 4MATIC over long (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195138, + "fields": { + "id_car_serie": 47281, + "name": "2.0 CDi TouchShift 4MATIC extended (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195139, + "fields": { + "id_car_serie": 47281, + "name": "2.2 CDi TouchShift 4MATIC compact (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195140, + "fields": { + "id_car_serie": 47281, + "name": "2.2 CDi TouchShift over long (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195141, + "fields": { + "id_car_serie": 47281, + "name": "2.2 CDi TouchShift extended (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195142, + "fields": { + "id_car_serie": 47281, + "name": "2.2 CDi TouchShift compact (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195143, + "fields": { + "id_car_serie": 47281, + "name": "2.0 CDi TouchShift over long (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195144, + "fields": { + "id_car_serie": 47281, + "name": "2.0 CDi TouchShift extended (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195145, + "fields": { + "id_car_serie": 47281, + "name": "2.0 CDi TouchShift compact (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195146, + "fields": { + "id_car_serie": 47281, + "name": "2.0 CDi MT compact (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195147, + "fields": { + "id_car_serie": 47281, + "name": "2.2 CDi MT over long (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195148, + "fields": { + "id_car_serie": 47281, + "name": "2.2 CDi MT extended (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195149, + "fields": { + "id_car_serie": 47281, + "name": "2.0 CDi MT over long (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195150, + "fields": { + "id_car_serie": 47281, + "name": "2.0 CDi MT extended (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195151, + "fields": { + "id_car_serie": 47281, + "name": "2.2 CDi MT compact (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195152, + "fields": { + "id_car_serie": 47281, + "name": "3.0 CDi TouchShift over long (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195153, + "fields": { + "id_car_serie": 47281, + "name": "3.0 CDi TouchShift extended (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195154, + "fields": { + "id_car_serie": 47281, + "name": "3.5 TouchShift over long (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195155, + "fields": { + "id_car_serie": 47281, + "name": "3.5 TouchShift compact (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195156, + "fields": { + "id_car_serie": 47101, + "name": "2.0 TFSI Hybrid tiptronic (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195157, + "fields": { + "id_car_serie": 47101, + "name": "3.0 TFSI quattro tiptronic (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195158, + "fields": { + "id_car_serie": 47101, + "name": "3.0 TFSI L quattro tiptronic (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195159, + "fields": { + "id_car_serie": 47101, + "name": "3.0 TDI quattro tiptronic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195160, + "fields": { + "id_car_serie": 47101, + "name": "3.0 TFSI L quattro tiptronic (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195161, + "fields": { + "id_car_serie": 47101, + "name": "4.0 TFSI L quattro tiptronic (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195162, + "fields": { + "id_car_serie": 47101, + "name": "4.2 TDI L quattro tiptronic (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195163, + "fields": { + "id_car_serie": 47101, + "name": "4.2 TDI quattro tiptronic (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195164, + "fields": { + "id_car_serie": 47101, + "name": "4.2 FSI L quattro tiptronic (372 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195165, + "fields": { + "id_car_serie": 47101, + "name": "6.3 W12 L quattro tiptronic (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195166, + "fields": { + "id_car_serie": 47106, + "name": "2.2 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195167, + "fields": { + "id_car_serie": 47106, + "name": "2.2 20V MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195168, + "fields": { + "id_car_serie": 47108, + "name": "5.2 FSI quattro R tronic (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195169, + "fields": { + "id_car_serie": 47110, + "name": "4.2 FSI quattro MT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195170, + "fields": { + "id_car_serie": 47110, + "name": "4.2 FSI quattro R tronic (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195171, + "fields": { + "id_car_serie": 47110, + "name": "5.2 FSI quattro MT (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195172, + "fields": { + "id_car_serie": 47110, + "name": "5.2 FSI quattro R tronic (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195173, + "fields": { + "id_car_serie": 47117, + "name": "3.2 quattro MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195174, + "fields": { + "id_car_serie": 47117, + "name": "3.2 quattro S tronic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195175, + "fields": { + "id_car_serie": 47131, + "name": "2.8 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195176, + "fields": { + "id_car_serie": 47131, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195177, + "fields": { + "id_car_serie": 47168, + "name": "1.3 AT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195178, + "fields": { + "id_car_serie": 47168, + "name": "1.3 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195179, + "fields": { + "id_car_serie": 47174, + "name": "3.0 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195180, + "fields": { + "id_car_serie": 47200, + "name": "2.5 AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195181, + "fields": { + "id_car_serie": 47200, + "name": "2.5 AT 4WD (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195182, + "fields": { + "id_car_serie": 47200, + "name": "2.5 MT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195183, + "fields": { + "id_car_serie": 47200, + "name": "3.0 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195184, + "fields": { + "id_car_serie": 47200, + "name": "3.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195185, + "fields": { + "id_car_serie": 47200, + "name": "3.0 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195186, + "fields": { + "id_car_serie": 47200, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195187, + "fields": { + "id_car_serie": 47217, + "name": "4.8 AT SLE (278 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195188, + "fields": { + "id_car_serie": 47217, + "name": "4.8 AT 4WD SLE (278 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195189, + "fields": { + "id_car_serie": 47217, + "name": "4.8 MT SLE (278 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195190, + "fields": { + "id_car_serie": 47217, + "name": "4.8 MT 4WD SLE (278 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195191, + "fields": { + "id_car_serie": 47217, + "name": "5.3 AT 4WD XL (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195192, + "fields": { + "id_car_serie": 47217, + "name": "5.3 AT 4WD SLE (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195193, + "fields": { + "id_car_serie": 47217, + "name": "5.3 MT 4WD SLE (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195194, + "fields": { + "id_car_serie": 47217, + "name": "5.3 MT 4WD XL (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195195, + "fields": { + "id_car_serie": 47217, + "name": "5.3 MT SLE (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195196, + "fields": { + "id_car_serie": 47217, + "name": "5.3 MT XL (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195197, + "fields": { + "id_car_serie": 47217, + "name": "6.0 AT XL Denali 1500 (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195198, + "fields": { + "id_car_serie": 47217, + "name": "6.0 MT XL Denali 1500 (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195199, + "fields": { + "id_car_serie": 47217, + "name": "6.0 MT 4WD XL Denali 2500 (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195200, + "fields": { + "id_car_serie": 47217, + "name": "6.0 MT 4WD XL Denali 1500 (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195201, + "fields": { + "id_car_serie": 47217, + "name": "8.1 AT 4WD XL (344 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195202, + "fields": { + "id_car_serie": 47217, + "name": "8.1 AT XL (344 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195203, + "fields": { + "id_car_serie": 47217, + "name": "8.1 MT XL (344 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195204, + "fields": { + "id_car_serie": 47217, + "name": "8.1 MT 4WD XL (344 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195205, + "fields": { + "id_car_serie": 47229, + "name": "0.7 T AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195206, + "fields": { + "id_car_serie": 47229, + "name": "0.7 AT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195207, + "fields": { + "id_car_serie": 47229, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195208, + "fields": { + "id_car_serie": 47245, + "name": "3.0 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195209, + "fields": { + "id_car_serie": 47245, + "name": "3.0 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195210, + "fields": { + "id_car_serie": 47245, + "name": "3.5 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195211, + "fields": { + "id_car_serie": 47254, + "name": "5.0 AT LWB (470 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195212, + "fields": { + "id_car_serie": 47254, + "name": "5.0 AT LWB (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195213, + "fields": { + "id_car_serie": 47254, + "name": "5.0 AT SWB (470 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195214, + "fields": { + "id_car_serie": 47254, + "name": "5.0 AT SWB (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195215, + "fields": { + "id_car_serie": 47311, + "name": "1.9 AT TD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195216, + "fields": { + "id_car_serie": 47312, + "name": "1.9 TD AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195217, + "fields": { + "id_car_serie": 47345, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195218, + "fields": { + "id_car_serie": 47346, + "name": "1.4 HDi MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195219, + "fields": { + "id_car_serie": 47346, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195220, + "fields": { + "id_car_serie": 47346, + "name": "2.0 HDi MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195223, + "fields": { + "id_car_serie": 47353, + "name": "2.4i AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195224, + "fields": { + "id_car_serie": 47353, + "name": "3.0 SE AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195225, + "fields": { + "id_car_serie": 47354, + "name": "3.0i AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195226, + "fields": { + "id_car_serie": 47354, + "name": "3.3i AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195227, + "fields": { + "id_car_serie": 47354, + "name": "3.3i AT 4WD SE (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195228, + "fields": { + "id_car_serie": 47357, + "name": "6.0 AT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195229, + "fields": { + "id_car_serie": 47398, + "name": "2.0 dCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195230, + "fields": { + "id_car_serie": 47401, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195231, + "fields": { + "id_car_serie": 47401, + "name": "2.0 TFSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195232, + "fields": { + "id_car_serie": 47401, + "name": "2.0 TDI DSG (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195233, + "fields": { + "id_car_serie": 47408, + "name": "1.4 TSI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195234, + "fields": { + "id_car_serie": 47420, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195235, + "fields": { + "id_car_serie": 47420, + "name": "1.2 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195236, + "fields": { + "id_car_serie": 47420, + "name": "1.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195237, + "fields": { + "id_car_serie": 47420, + "name": "1.4 TDI MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195238, + "fields": { + "id_car_serie": 47420, + "name": "1.4 TDI MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195239, + "fields": { + "id_car_serie": 47420, + "name": "1.4 TDI DPF MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195240, + "fields": { + "id_car_serie": 47420, + "name": "1.9 TDI DPF MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195241, + "fields": { + "id_car_serie": 47420, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195242, + "fields": { + "id_car_serie": 47422, + "name": "2.0D MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195243, + "fields": { + "id_car_serie": 47458, + "name": "1.4 TSI Ecofuel DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195244, + "fields": { + "id_car_serie": 47458, + "name": "1.9 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195245, + "fields": { + "id_car_serie": 47458, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195246, + "fields": { + "id_car_serie": 47477, + "name": "5.6 AT LWB 4WD (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195247, + "fields": { + "id_car_serie": 47477, + "name": "5.6 AT SWB (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195248, + "fields": { + "id_car_serie": 47477, + "name": "5.6 AT LWB (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195249, + "fields": { + "id_car_serie": 47477, + "name": "5.6 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195251, + "fields": { + "id_car_serie": 47493, + "name": "109 CDI MT L1 (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195252, + "fields": { + "id_car_serie": 47493, + "name": "109 CDI MT L2 (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195253, + "fields": { + "id_car_serie": 47493, + "name": "111 CDI MT L1 (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195254, + "fields": { + "id_car_serie": 47493, + "name": "109 CDI MT L3 (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195255, + "fields": { + "id_car_serie": 47493, + "name": "111 CDI MT L2 (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195256, + "fields": { + "id_car_serie": 47493, + "name": "111 CDI MT L3 (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195257, + "fields": { + "id_car_serie": 47493, + "name": "119 BlueTEC AT L1 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195258, + "fields": { + "id_car_serie": 47493, + "name": "119 BlueTEC AT L2 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195259, + "fields": { + "id_car_serie": 47493, + "name": "119 BlueTEC AT L3 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195260, + "fields": { + "id_car_serie": 47493, + "name": "114 CDI MT L1 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195261, + "fields": { + "id_car_serie": 47493, + "name": "114 CDI MT L2 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195262, + "fields": { + "id_car_serie": 47493, + "name": "114 CDI MT L3 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195263, + "fields": { + "id_car_serie": 47493, + "name": "116 CDI MT L1 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195264, + "fields": { + "id_car_serie": 47493, + "name": "116 CDI MT L2 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195265, + "fields": { + "id_car_serie": 47493, + "name": "116 CDI MT L3 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195281, + "fields": { + "id_car_serie": 47495, + "name": "116 CDI 4Matic AT compact (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195282, + "fields": { + "id_car_serie": 47495, + "name": "113 CDI 4Matic AT compact (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195283, + "fields": { + "id_car_serie": 47495, + "name": "113 CDI AT compact (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195284, + "fields": { + "id_car_serie": 47495, + "name": "116 CDI AT compact (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195285, + "fields": { + "id_car_serie": 47495, + "name": "110 CDI MT compact (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195286, + "fields": { + "id_car_serie": 47495, + "name": "116 CDI MT compact (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195287, + "fields": { + "id_car_serie": 47495, + "name": "113 CDI MT compact (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195288, + "fields": { + "id_car_serie": 47495, + "name": "122 CDI AT compact (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195289, + "fields": { + "id_car_serie": 47495, + "name": "126 AT compact (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195290, + "fields": { + "id_car_serie": 47497, + "name": "111 CDI AT L1H1 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195291, + "fields": { + "id_car_serie": 47497, + "name": "111 CDI AT L2H1 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195292, + "fields": { + "id_car_serie": 47497, + "name": "111 CDI AT L2H2 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195293, + "fields": { + "id_car_serie": 47497, + "name": "111 CDI AT L3H1 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195294, + "fields": { + "id_car_serie": 47497, + "name": "115 CDI 4MATIC AT L2H2 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195295, + "fields": { + "id_car_serie": 47497, + "name": "115 CDI 4MATIC AT L3H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195296, + "fields": { + "id_car_serie": 47497, + "name": "115 CDI AT L1H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195297, + "fields": { + "id_car_serie": 47497, + "name": "115 CDI AT L2H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195298, + "fields": { + "id_car_serie": 47497, + "name": "115 CDI AT L2H2 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195299, + "fields": { + "id_car_serie": 47497, + "name": "115 CDI AT L3H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195300, + "fields": { + "id_car_serie": 47497, + "name": "111 CDI 4MATIC AT L3H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195301, + "fields": { + "id_car_serie": 47497, + "name": "111 CDI 4MATIC AT L2H2 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195302, + "fields": { + "id_car_serie": 47497, + "name": "111 CDI 4MATIC AT L2H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195303, + "fields": { + "id_car_serie": 47497, + "name": "111 CDI 4MATIC AT L1H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195304, + "fields": { + "id_car_serie": 47497, + "name": "115 CDI 4MATIC AT L1H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195305, + "fields": { + "id_car_serie": 47497, + "name": "111 CDI AT L3H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195306, + "fields": { + "id_car_serie": 47497, + "name": "111 CDI AT L2H2 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195307, + "fields": { + "id_car_serie": 47497, + "name": "111 CDI AT L2H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195308, + "fields": { + "id_car_serie": 47497, + "name": "111 CDI AT L1H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195309, + "fields": { + "id_car_serie": 47497, + "name": "115 CDI 4MATIC AT L2H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195310, + "fields": { + "id_car_serie": 47497, + "name": "109 CDI MT L2H1 (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195311, + "fields": { + "id_car_serie": 47497, + "name": "111 CDI MT L3H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195312, + "fields": { + "id_car_serie": 47497, + "name": "111 CDI MT L2H2 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195313, + "fields": { + "id_car_serie": 47497, + "name": "111 CDI MT L2H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195314, + "fields": { + "id_car_serie": 47497, + "name": "111 CDI MT L1H1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195315, + "fields": { + "id_car_serie": 47497, + "name": "109 CDI MT L3H1 (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195316, + "fields": { + "id_car_serie": 47497, + "name": "109 CDI MT L2H2 (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195317, + "fields": { + "id_car_serie": 47497, + "name": "109 CDI MT L2H1 (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195318, + "fields": { + "id_car_serie": 47497, + "name": "109 CDI MT L1H1 (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195319, + "fields": { + "id_car_serie": 47497, + "name": "109 CDI MT L1H1 (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195320, + "fields": { + "id_car_serie": 47497, + "name": "115 CDI MT L3H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195321, + "fields": { + "id_car_serie": 47497, + "name": "115 CDI MT L2H2 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195322, + "fields": { + "id_car_serie": 47497, + "name": "115 CDI MT L2H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195323, + "fields": { + "id_car_serie": 47497, + "name": "115 CDI MT L1H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195324, + "fields": { + "id_car_serie": 47497, + "name": "111 CDI MT L3H1 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195325, + "fields": { + "id_car_serie": 47497, + "name": "111 CDI MT L2H2 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195326, + "fields": { + "id_car_serie": 47497, + "name": "111 CDI MT L2H1 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195327, + "fields": { + "id_car_serie": 47497, + "name": "111 CDI MT L1H1 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195328, + "fields": { + "id_car_serie": 47497, + "name": "109 CDI MT L3H1 (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195329, + "fields": { + "id_car_serie": 47497, + "name": "109 CDI MT L2H2 (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195330, + "fields": { + "id_car_serie": 47497, + "name": "120 CDI MT L2H2 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195331, + "fields": { + "id_car_serie": 47497, + "name": "120 CDI MT L2H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195332, + "fields": { + "id_car_serie": 47497, + "name": "120 CDI MT L1H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195333, + "fields": { + "id_car_serie": 47497, + "name": "120 CDI MT L3H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195334, + "fields": { + "id_car_serie": 47497, + "name": "119 AT L2H1 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195335, + "fields": { + "id_car_serie": 47497, + "name": "119 AT L3H1 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195336, + "fields": { + "id_car_serie": 47497, + "name": "119 AT L1H1 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195337, + "fields": { + "id_car_serie": 47497, + "name": "119 AT L2H2 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195338, + "fields": { + "id_car_serie": 47497, + "name": "122 MT L2H2 (217 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195339, + "fields": { + "id_car_serie": 47497, + "name": "122 MT L3H1 (217 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195340, + "fields": { + "id_car_serie": 47497, + "name": "122 MT L1H1 (217 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195341, + "fields": { + "id_car_serie": 47497, + "name": "122 MT L2H1 (217 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195342, + "fields": { + "id_car_serie": 47497, + "name": "126 AT L2H2 (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195343, + "fields": { + "id_car_serie": 47497, + "name": "126 AT L2H1 (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195344, + "fields": { + "id_car_serie": 47497, + "name": "126 AT L1H1 (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195345, + "fields": { + "id_car_serie": 47497, + "name": "126 AT L3H1 (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195346, + "fields": { + "id_car_serie": 47497, + "name": "123 AT L2H1 (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195347, + "fields": { + "id_car_serie": 47497, + "name": "123 AT L3H1 (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195348, + "fields": { + "id_car_serie": 47497, + "name": "123 AT L1H1 (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195349, + "fields": { + "id_car_serie": 47497, + "name": "123 AT L2H2 (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195350, + "fields": { + "id_car_serie": 47502, + "name": "1.6 TD MT Syncro (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195351, + "fields": { + "id_car_serie": 47502, + "name": "1.6 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195352, + "fields": { + "id_car_serie": 47502, + "name": "1.6 D MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195353, + "fields": { + "id_car_serie": 47502, + "name": "1.7 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195354, + "fields": { + "id_car_serie": 47502, + "name": "1.9 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195355, + "fields": { + "id_car_serie": 47502, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195356, + "fields": { + "id_car_serie": 47502, + "name": "1.9 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195357, + "fields": { + "id_car_serie": 47502, + "name": "1.9 MT Syncro (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195358, + "fields": { + "id_car_serie": 47502, + "name": "1.9 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195359, + "fields": { + "id_car_serie": 47502, + "name": "2.1 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195360, + "fields": { + "id_car_serie": 47502, + "name": "2.1 MT Syncro (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195361, + "fields": { + "id_car_serie": 47502, + "name": "2.1 MT Syncro (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195362, + "fields": { + "id_car_serie": 47502, + "name": "2.1 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195363, + "fields": { + "id_car_serie": 47502, + "name": "2.1 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195364, + "fields": { + "id_car_serie": 47502, + "name": "2.1 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195365, + "fields": { + "id_car_serie": 47550, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195366, + "fields": { + "id_car_serie": 47551, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195367, + "fields": { + "id_car_serie": 47551, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195368, + "fields": { + "id_car_serie": 47551, + "name": "1.9 JTD MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195369, + "fields": { + "id_car_serie": 47551, + "name": "1.9 JTD MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195370, + "fields": { + "id_car_serie": 47551, + "name": "2.0 JTS MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195371, + "fields": { + "id_car_serie": 47551, + "name": "2.4 JTD MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195372, + "fields": { + "id_car_serie": 47551, + "name": "2.4 JTD MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195373, + "fields": { + "id_car_serie": 47551, + "name": "2.5 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195374, + "fields": { + "id_car_serie": 47551, + "name": "2.5 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195375, + "fields": { + "id_car_serie": 47552, + "name": "2.0 T MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195376, + "fields": { + "id_car_serie": 47553, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195377, + "fields": { + "id_car_serie": 47553, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195378, + "fields": { + "id_car_serie": 47553, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195379, + "fields": { + "id_car_serie": 47553, + "name": "2.0 TD MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195380, + "fields": { + "id_car_serie": 47553, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195381, + "fields": { + "id_car_serie": 47554, + "name": "1.3 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195382, + "fields": { + "id_car_serie": 47555, + "name": "1.3 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195383, + "fields": { + "id_car_serie": 47556, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195384, + "fields": { + "id_car_serie": 47557, + "name": "1.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195385, + "fields": { + "id_car_serie": 47557, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195386, + "fields": { + "id_car_serie": 47560, + "name": "1.3 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195387, + "fields": { + "id_car_serie": 47561, + "name": "1.3 MT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195388, + "fields": { + "id_car_serie": 47561, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195389, + "fields": { + "id_car_serie": 47563, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195390, + "fields": { + "id_car_serie": 47563, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195391, + "fields": { + "id_car_serie": 47566, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195392, + "fields": { + "id_car_serie": 47566, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195393, + "fields": { + "id_car_serie": 47566, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195394, + "fields": { + "id_car_serie": 47566, + "name": "2.3 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195395, + "fields": { + "id_car_serie": 47566, + "name": "2.3 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195396, + "fields": { + "id_car_serie": 47566, + "name": "2.4 D MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195397, + "fields": { + "id_car_serie": 47566, + "name": "2.5 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195398, + "fields": { + "id_car_serie": 47566, + "name": "2.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195399, + "fields": { + "id_car_serie": 47566, + "name": "2.6 quattro AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195400, + "fields": { + "id_car_serie": 47566, + "name": "2.6 quattro MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195401, + "fields": { + "id_car_serie": 47566, + "name": "2.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195402, + "fields": { + "id_car_serie": 47566, + "name": "2.8 quattro AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195403, + "fields": { + "id_car_serie": 47566, + "name": "2.8 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195404, + "fields": { + "id_car_serie": 47566, + "name": "2.8 quattro MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195405, + "fields": { + "id_car_serie": 47566, + "name": "2.8 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195406, + "fields": { + "id_car_serie": 47570, + "name": "1.3 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195407, + "fields": { + "id_car_serie": 47570, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195408, + "fields": { + "id_car_serie": 47570, + "name": "1.6 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195409, + "fields": { + "id_car_serie": 47570, + "name": "1.6 TD MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195410, + "fields": { + "id_car_serie": 47570, + "name": "1.6 GLE MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195411, + "fields": { + "id_car_serie": 47570, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195412, + "fields": { + "id_car_serie": 47570, + "name": "1.8 CC MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195413, + "fields": { + "id_car_serie": 47570, + "name": "1.8 GTE quattro MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195414, + "fields": { + "id_car_serie": 47570, + "name": "1.8 GTE MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195415, + "fields": { + "id_car_serie": 47570, + "name": "1.9 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195416, + "fields": { + "id_car_serie": 47570, + "name": "1.9 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195417, + "fields": { + "id_car_serie": 47570, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195418, + "fields": { + "id_car_serie": 47570, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195419, + "fields": { + "id_car_serie": 47570, + "name": "2.0 quattro MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195420, + "fields": { + "id_car_serie": 47570, + "name": "2.2 MT quattro (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195421, + "fields": { + "id_car_serie": 47577, + "name": "1.4 TFSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195422, + "fields": { + "id_car_serie": 47577, + "name": "1.4 TFSI S-tronic (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195423, + "fields": { + "id_car_serie": 47578, + "name": "2.0 TFSI MT quattro (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195424, + "fields": { + "id_car_serie": 47578, + "name": "2.0 TDI MT quattro (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195425, + "fields": { + "id_car_serie": 47578, + "name": "2.0 TDI MT quattro (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195426, + "fields": { + "id_car_serie": 47578, + "name": "2.0 TFSI S tronic quattro (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195427, + "fields": { + "id_car_serie": 47578, + "name": "3.0 TDI MT quattro (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195428, + "fields": { + "id_car_serie": 47578, + "name": "3.0 TDI S tronic quattro (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195429, + "fields": { + "id_car_serie": 47579, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195430, + "fields": { + "id_car_serie": 47579, + "name": "1.8 T MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195431, + "fields": { + "id_car_serie": 47579, + "name": "1.8 T MT quattro (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195432, + "fields": { + "id_car_serie": 47579, + "name": "1.8 T multitronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195433, + "fields": { + "id_car_serie": 47579, + "name": "1.9 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195434, + "fields": { + "id_car_serie": 47579, + "name": "2.0 TFSI tiptronic quattro (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195435, + "fields": { + "id_car_serie": 47579, + "name": "2.0 TFSI MT quattro (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195436, + "fields": { + "id_car_serie": 47579, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195437, + "fields": { + "id_car_serie": 47579, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195438, + "fields": { + "id_car_serie": 47579, + "name": "2.0 TFSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195439, + "fields": { + "id_car_serie": 47579, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195440, + "fields": { + "id_car_serie": 47579, + "name": "2.0 TFSI MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195442, + "fields": { + "id_car_serie": 47579, + "name": "2.0 TFSI MT quattro (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195443, + "fields": { + "id_car_serie": 47579, + "name": "2.0 TDI MT quattro (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195444, + "fields": { + "id_car_serie": 47579, + "name": "2.0 TDI MT quattro (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195445, + "fields": { + "id_car_serie": 47579, + "name": "2.0 TDI multitronic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195446, + "fields": { + "id_car_serie": 47579, + "name": "2.0 TFSI multitronic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195447, + "fields": { + "id_car_serie": 47579, + "name": "2.0 multitronic (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195448, + "fields": { + "id_car_serie": 47579, + "name": "2.5 TDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195449, + "fields": { + "id_car_serie": 47579, + "name": "2.5 TDI multitronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195450, + "fields": { + "id_car_serie": 47579, + "name": "2.7 TDI MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195451, + "fields": { + "id_car_serie": 47579, + "name": "2.7 TDI multitronic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195452, + "fields": { + "id_car_serie": 47579, + "name": "3.0 TDI tiptronic quattro (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195453, + "fields": { + "id_car_serie": 47579, + "name": "3.0 TDI tiptronic quattro (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195454, + "fields": { + "id_car_serie": 47579, + "name": "3.0 TDI MT quattro (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195455, + "fields": { + "id_car_serie": 47579, + "name": "3.0 TDI MT quattro (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195456, + "fields": { + "id_car_serie": 47579, + "name": "3.1 FSI tiptronic quattro (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195457, + "fields": { + "id_car_serie": 47579, + "name": "3.1 FSI MT quattro (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195458, + "fields": { + "id_car_serie": 47579, + "name": "3.1 FSI multitronic (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195459, + "fields": { + "id_car_serie": 47580, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195460, + "fields": { + "id_car_serie": 47580, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195461, + "fields": { + "id_car_serie": 47580, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195462, + "fields": { + "id_car_serie": 47580, + "name": "1.8 T AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195463, + "fields": { + "id_car_serie": 47580, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195464, + "fields": { + "id_car_serie": 47580, + "name": "1.8 MT quattro (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195465, + "fields": { + "id_car_serie": 47580, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195466, + "fields": { + "id_car_serie": 47580, + "name": "1.8 T MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195467, + "fields": { + "id_car_serie": 47580, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195468, + "fields": { + "id_car_serie": 47580, + "name": "1.9 TDI AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195469, + "fields": { + "id_car_serie": 47580, + "name": "1.9 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195470, + "fields": { + "id_car_serie": 47580, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195471, + "fields": { + "id_car_serie": 47580, + "name": "1.9 TDI MT quattro (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195472, + "fields": { + "id_car_serie": 47580, + "name": "2.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195473, + "fields": { + "id_car_serie": 47580, + "name": "2.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195474, + "fields": { + "id_car_serie": 47580, + "name": "2.6 MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195475, + "fields": { + "id_car_serie": 47581, + "name": "3.0 TDI Tiptronic quattro (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195476, + "fields": { + "id_car_serie": 47581, + "name": "3.0 TFSI S tronic quattro (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195477, + "fields": { + "id_car_serie": 47581, + "name": "3.0 TDI S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195478, + "fields": { + "id_car_serie": 47581, + "name": "3.0 TDI S tronic quattro (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195479, + "fields": { + "id_car_serie": 47582, + "name": "3.0 TDI tiptronic quattro (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195480, + "fields": { + "id_car_serie": 47582, + "name": "3.0 TDI S-tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195481, + "fields": { + "id_car_serie": 47582, + "name": "3.0 TFSI quattro S-tronic (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195482, + "fields": { + "id_car_serie": 47582, + "name": "3.0 TDI S-tronic quattro (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195483, + "fields": { + "id_car_serie": 47582, + "name": "3.0 TDI Euro 6 S-tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195484, + "fields": { + "id_car_serie": 47583, + "name": "2.7 TDI tiptronic quattro (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195485, + "fields": { + "id_car_serie": 47583, + "name": "3.0 TFSI tiptronic quattro (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195486, + "fields": { + "id_car_serie": 47583, + "name": "3.0 TDI tiptronic quattro (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195487, + "fields": { + "id_car_serie": 47583, + "name": "3.0 TDI MT quattro (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195488, + "fields": { + "id_car_serie": 47583, + "name": "4.2 FSI tiptronic quattro (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195495, + "fields": { + "id_car_serie": 47585, + "name": "1.4 TFSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195496, + "fields": { + "id_car_serie": 47585, + "name": "1.4 TFSI S tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195497, + "fields": { + "id_car_serie": 47585, + "name": "2.0 TFSI S tronic quattro (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195498, + "fields": { + "id_car_serie": 47585, + "name": "2.0 TFSI S tronic quattro (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195499, + "fields": { + "id_car_serie": 47585, + "name": "2.0 TDI S tronic quattro (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195500, + "fields": { + "id_car_serie": 47586, + "name": "3.0 TDI clean diesel tiptronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195501, + "fields": { + "id_car_serie": 47586, + "name": "3.0 TDI tiptronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195502, + "fields": { + "id_car_serie": 47586, + "name": "3.0 TFSI tiptronic quattro (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195503, + "fields": { + "id_car_serie": 47586, + "name": "3.0 TDI tiptronic quattro (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195504, + "fields": { + "id_car_serie": 47586, + "name": "3.0 TFSI tiptronic quattro (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195505, + "fields": { + "id_car_serie": 47586, + "name": "3.6 FSI tiptronic quattro (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195506, + "fields": { + "id_car_serie": 47586, + "name": "4.2 TDI tiptronic quattro (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195507, + "fields": { + "id_car_serie": 47586, + "name": "4.2 FSI tiptronic quattro (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195508, + "fields": { + "id_car_serie": 47586, + "name": "6.0 TDI tiptronic quattro (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195509, + "fields": { + "id_car_serie": 47587, + "name": "3.0 TDI tiptronic quattro (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195510, + "fields": { + "id_car_serie": 47587, + "name": "3.0 TDI tiptronic quattro (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195511, + "fields": { + "id_car_serie": 47587, + "name": "3.6 FSI tiptronic quattro (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195512, + "fields": { + "id_car_serie": 47587, + "name": "4.2 TDI tiptronic quattro (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195513, + "fields": { + "id_car_serie": 47587, + "name": "4.2 FSI tiptronic quattro (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195514, + "fields": { + "id_car_serie": 47587, + "name": "6.0 TDI tiptronic quattro (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195515, + "fields": { + "id_car_serie": 47588, + "name": "2.5 TFSI S tronic quattro (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195516, + "fields": { + "id_car_serie": 67711, + "name": "4.2 FSI S tronic quattro (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195517, + "fields": { + "id_car_serie": 47591, + "name": "3.0 TFSI MT quattro (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195518, + "fields": { + "id_car_serie": 47591, + "name": "3.0 TFSI S tronic quattro (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195519, + "fields": { + "id_car_serie": 47592, + "name": "2.2 T AT quattro (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195520, + "fields": { + "id_car_serie": 47592, + "name": "2.2 T MT quattro (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195521, + "fields": { + "id_car_serie": 47592, + "name": "4.2 MT quattro (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195522, + "fields": { + "id_car_serie": 47593, + "name": "2.0 TFSI MT quattro (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195523, + "fields": { + "id_car_serie": 47593, + "name": "2.0 TFSI S tronic quattro (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195524, + "fields": { + "id_car_serie": 47594, + "name": "2.5 TFSI quattro MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195525, + "fields": { + "id_car_serie": 47594, + "name": "2.5 TFSI quattro MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195526, + "fields": { + "id_car_serie": 47594, + "name": "2.5 TFSI quattro S tronic (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195527, + "fields": { + "id_car_serie": 47594, + "name": "2.5 TFSI quattro S tronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195528, + "fields": { + "id_car_serie": 47595, + "name": "2.0 TFSI quattro MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195529, + "fields": { + "id_car_serie": 47595, + "name": "2.0 TFSI quattro S tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195530, + "fields": { + "id_car_serie": 47596, + "name": "1.8 TFSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195531, + "fields": { + "id_car_serie": 47596, + "name": "2.0 TDI MT quattro (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195533, + "fields": { + "id_car_serie": 47596, + "name": "2.0 TFSI S tronic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195548, + "fields": { + "id_car_serie": 47601, + "name": "1.8 T AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195549, + "fields": { + "id_car_serie": 47601, + "name": "1.8 T quattro MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195550, + "fields": { + "id_car_serie": 47601, + "name": "1.8 T MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195551, + "fields": { + "id_car_serie": 47601, + "name": "1.8 T quattro MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195552, + "fields": { + "id_car_serie": 47601, + "name": "1.8 T quattro MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195553, + "fields": { + "id_car_serie": 47601, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195554, + "fields": { + "id_car_serie": 47601, + "name": "3.2 quattro MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195555, + "fields": { + "id_car_serie": 47601, + "name": "3.2 quattro S tronic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195556, + "fields": { + "id_car_serie": 47602, + "name": "1.8 T AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195557, + "fields": { + "id_car_serie": 47602, + "name": "1.8 T quattro MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195558, + "fields": { + "id_car_serie": 47602, + "name": "1.8 T quattro MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195559, + "fields": { + "id_car_serie": 47602, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195560, + "fields": { + "id_car_serie": 47602, + "name": "1.8 T MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195561, + "fields": { + "id_car_serie": 47602, + "name": "3.2 quattro MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195562, + "fields": { + "id_car_serie": 47602, + "name": "3.2 quattro S tronic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195563, + "fields": { + "id_car_serie": 47603, + "name": "6.75 Twin-Turbo AT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195564, + "fields": { + "id_car_serie": 47603, + "name": "6.8 Twin-Turbo AT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195565, + "fields": { + "id_car_serie": 47604, + "name": "6.8 Twin-Turbo AT (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195566, + "fields": { + "id_car_serie": 47605, + "name": "6.75 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195567, + "fields": { + "id_car_serie": 47606, + "name": "6.0 AWD AT (625 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195572, + "fields": { + "id_car_serie": 47608, + "name": "6.2 AT (564 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195573, + "fields": { + "id_car_serie": 47608, + "name": "6.2 MT (564 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195574, + "fields": { + "id_car_serie": 47610, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195575, + "fields": { + "id_car_serie": 47611, + "name": "1.6 MT (119 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195576, + "fields": { + "id_car_serie": 47611, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195577, + "fields": { + "id_car_serie": 47612, + "name": "0.8 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195578, + "fields": { + "id_car_serie": 47612, + "name": "0.8 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195579, + "fields": { + "id_car_serie": 47612, + "name": "1.1 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195580, + "fields": { + "id_car_serie": 47612, + "name": "1.1 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195581, + "fields": { + "id_car_serie": 47613, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195582, + "fields": { + "id_car_serie": 47613, + "name": "2.0 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195583, + "fields": { + "id_car_serie": 47614, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195584, + "fields": { + "id_car_serie": 47614, + "name": "1.6 CVT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195585, + "fields": { + "id_car_serie": 47614, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195586, + "fields": { + "id_car_serie": 47614, + "name": "2.0 MT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195587, + "fields": { + "id_car_serie": 47615, + "name": "1.8 Flexfuel MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195588, + "fields": { + "id_car_serie": 47615, + "name": "2.0 Flexpower AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195589, + "fields": { + "id_car_serie": 47615, + "name": "2.0 Flexpower AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195590, + "fields": { + "id_car_serie": 47615, + "name": "2.0 Flexpower AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195591, + "fields": { + "id_car_serie": 47615, + "name": "2.0 Flexpower AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195592, + "fields": { + "id_car_serie": 47615, + "name": "2.0 Flexpower AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195593, + "fields": { + "id_car_serie": 47615, + "name": "2.0 Flexpower MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195594, + "fields": { + "id_car_serie": 47615, + "name": "2.0 Flexpower MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195595, + "fields": { + "id_car_serie": 47615, + "name": "2.0 Flexpower MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195596, + "fields": { + "id_car_serie": 47615, + "name": "2.0 Flexpower MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195597, + "fields": { + "id_car_serie": 47615, + "name": "2.0 Flexpower MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195598, + "fields": { + "id_car_serie": 47616, + "name": "2.0 Flexfuel MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195599, + "fields": { + "id_car_serie": 47616, + "name": "2.0 Flexfuel MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195600, + "fields": { + "id_car_serie": 47618, + "name": "1.8 Flexfuel MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195601, + "fields": { + "id_car_serie": 47618, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195602, + "fields": { + "id_car_serie": 47618, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195603, + "fields": { + "id_car_serie": 47618, + "name": "2.0 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195604, + "fields": { + "id_car_serie": 47618, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195605, + "fields": { + "id_car_serie": 47618, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195606, + "fields": { + "id_car_serie": 47618, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195607, + "fields": { + "id_car_serie": 47619, + "name": "4.3 AT AWD 8 seat (190 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195608, + "fields": { + "id_car_serie": 47619, + "name": "4.3 AT AWD 7 seat (190 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195609, + "fields": { + "id_car_serie": 47619, + "name": "4.3 AT 8 seat (190 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195610, + "fields": { + "id_car_serie": 47619, + "name": "4.3 AT 7 seat (190 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195613, + "fields": { + "id_car_serie": 47619, + "name": "4.3 AT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195616, + "fields": { + "id_car_serie": 47619, + "name": "4.3 AT (190 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195623, + "fields": { + "id_car_serie": 47621, + "name": "4.3 AT AWD Extended 8 seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195624, + "fields": { + "id_car_serie": 47621, + "name": "4.3 AT AWD 7 seat Extended (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195625, + "fields": { + "id_car_serie": 47621, + "name": "4.3 AT AWD Extended (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195626, + "fields": { + "id_car_serie": 47621, + "name": "4.3 AT AWD 8 seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195627, + "fields": { + "id_car_serie": 47621, + "name": "4.3 AT AWD 7 seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195628, + "fields": { + "id_car_serie": 47621, + "name": "4.3 AT Extended 8 seat (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195629, + "fields": { + "id_car_serie": 47621, + "name": "4.3 AT 7 seat Extended (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195630, + "fields": { + "id_car_serie": 47621, + "name": "4.3 AT Extended (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195631, + "fields": { + "id_car_serie": 47621, + "name": "4.3 AT 8 seat (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195632, + "fields": { + "id_car_serie": 47621, + "name": "4.3 AT 7 seat (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195633, + "fields": { + "id_car_serie": 47621, + "name": "4.3 AT 4 seat (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195634, + "fields": { + "id_car_serie": 47621, + "name": "4.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195635, + "fields": { + "id_car_serie": 47621, + "name": "4.3 AT 8 seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195636, + "fields": { + "id_car_serie": 47621, + "name": "4.3 AT 7 seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195637, + "fields": { + "id_car_serie": 47621, + "name": "4.3 AT 4 seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195638, + "fields": { + "id_car_serie": 47621, + "name": "4.3 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195639, + "fields": { + "id_car_serie": 47621, + "name": "4.3 AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195640, + "fields": { + "id_car_serie": 47621, + "name": "4.3 MT 7 seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195641, + "fields": { + "id_car_serie": 47621, + "name": "4.3 MT 4 seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195642, + "fields": { + "id_car_serie": 47621, + "name": "4.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195643, + "fields": { + "id_car_serie": 47621, + "name": "4.3 MT 8 seat (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195644, + "fields": { + "id_car_serie": 47621, + "name": "4.3 MT 7 seat (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195645, + "fields": { + "id_car_serie": 47621, + "name": "4.3 MT 4 seat (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195646, + "fields": { + "id_car_serie": 47621, + "name": "4.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195647, + "fields": { + "id_car_serie": 47621, + "name": "4.3 MT 8 seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195648, + "fields": { + "id_car_serie": 47622, + "name": "1.2 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195649, + "fields": { + "id_car_serie": 47622, + "name": "1.4 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195650, + "fields": { + "id_car_serie": 47622, + "name": "1.4 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195651, + "fields": { + "id_car_serie": 47622, + "name": "1.4 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195652, + "fields": { + "id_car_serie": 47628, + "name": "4.3 AT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195653, + "fields": { + "id_car_serie": 47628, + "name": "4.3 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195654, + "fields": { + "id_car_serie": 47628, + "name": "4.3 MT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195655, + "fields": { + "id_car_serie": 47628, + "name": "4.3 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195656, + "fields": { + "id_car_serie": 47629, + "name": "2.2 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195657, + "fields": { + "id_car_serie": 47629, + "name": "2.2 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195658, + "fields": { + "id_car_serie": 47629, + "name": "4.3 AT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195659, + "fields": { + "id_car_serie": 47629, + "name": "4.3 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195660, + "fields": { + "id_car_serie": 47630, + "name": "4.3 AT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195661, + "fields": { + "id_car_serie": 47630, + "name": "4.3 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195662, + "fields": { + "id_car_serie": 47630, + "name": "4.3 MT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195663, + "fields": { + "id_car_serie": 47630, + "name": "4.3 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195664, + "fields": { + "id_car_serie": 47631, + "name": "2.4 FlexFuel MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195665, + "fields": { + "id_car_serie": 47631, + "name": "2.4 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195666, + "fields": { + "id_car_serie": 47631, + "name": "2.8 TDI MT AWD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195667, + "fields": { + "id_car_serie": 47632, + "name": "2.4 FlexFuel MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195668, + "fields": { + "id_car_serie": 47632, + "name": "2.8 TDI MT AWD (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195669, + "fields": { + "id_car_serie": 47633, + "name": "5.7 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195670, + "fields": { + "id_car_serie": 47633, + "name": "5.7 AT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195671, + "fields": { + "id_car_serie": 47633, + "name": "5.7 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195672, + "fields": { + "id_car_serie": 47633, + "name": "5.7 MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195673, + "fields": { + "id_car_serie": 47633, + "name": "5.7 MT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195674, + "fields": { + "id_car_serie": 47633, + "name": "5.7 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195675, + "fields": { + "id_car_serie": 47634, + "name": "5.7 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195676, + "fields": { + "id_car_serie": 47634, + "name": "5.7 AT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195677, + "fields": { + "id_car_serie": 47634, + "name": "5.7 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195678, + "fields": { + "id_car_serie": 47634, + "name": "5.7 MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195679, + "fields": { + "id_car_serie": 47634, + "name": "5.7 MT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195680, + "fields": { + "id_car_serie": 47634, + "name": "5.7 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195681, + "fields": { + "id_car_serie": 47635, + "name": "5.7 AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195682, + "fields": { + "id_car_serie": 47635, + "name": "5.7 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195683, + "fields": { + "id_car_serie": 47635, + "name": "5.7 MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195684, + "fields": { + "id_car_serie": 47635, + "name": "5.7 MT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195685, + "fields": { + "id_car_serie": 47636, + "name": "5.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195686, + "fields": { + "id_car_serie": 47636, + "name": "5.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195687, + "fields": { + "id_car_serie": 47636, + "name": "5.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195688, + "fields": { + "id_car_serie": 47636, + "name": "5.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195689, + "fields": { + "id_car_serie": 47636, + "name": "5.7 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195690, + "fields": { + "id_car_serie": 47637, + "name": "5.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195691, + "fields": { + "id_car_serie": 47637, + "name": "5.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195692, + "fields": { + "id_car_serie": 47637, + "name": "5.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195693, + "fields": { + "id_car_serie": 47637, + "name": "5.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195694, + "fields": { + "id_car_serie": 47637, + "name": "5.7 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195695, + "fields": { + "id_car_serie": 47638, + "name": "5.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195696, + "fields": { + "id_car_serie": 47638, + "name": "5.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195697, + "fields": { + "id_car_serie": 47638, + "name": "5.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195698, + "fields": { + "id_car_serie": 47638, + "name": "5.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195699, + "fields": { + "id_car_serie": 47638, + "name": "5.7 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195700, + "fields": { + "id_car_serie": 47639, + "name": "5.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195701, + "fields": { + "id_car_serie": 47639, + "name": "5.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195702, + "fields": { + "id_car_serie": 47639, + "name": "5.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195703, + "fields": { + "id_car_serie": 47640, + "name": "5.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195704, + "fields": { + "id_car_serie": 47640, + "name": "5.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195705, + "fields": { + "id_car_serie": 47640, + "name": "5.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195706, + "fields": { + "id_car_serie": 47641, + "name": "5.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195707, + "fields": { + "id_car_serie": 47641, + "name": "5.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195708, + "fields": { + "id_car_serie": 47641, + "name": "5.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195709, + "fields": { + "id_car_serie": 47642, + "name": "5.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195710, + "fields": { + "id_car_serie": 47642, + "name": "5.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195711, + "fields": { + "id_car_serie": 47642, + "name": "5.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195712, + "fields": { + "id_car_serie": 47642, + "name": "5.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195713, + "fields": { + "id_car_serie": 47643, + "name": "5.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195714, + "fields": { + "id_car_serie": 47643, + "name": "5.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195715, + "fields": { + "id_car_serie": 47643, + "name": "5.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195716, + "fields": { + "id_car_serie": 47643, + "name": "5.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195717, + "fields": { + "id_car_serie": 47644, + "name": "5.7 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195718, + "fields": { + "id_car_serie": 47644, + "name": "5.7 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195719, + "fields": { + "id_car_serie": 47645, + "name": "5.7 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195720, + "fields": { + "id_car_serie": 47645, + "name": "5.7 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195721, + "fields": { + "id_car_serie": 47645, + "name": "5.7 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195722, + "fields": { + "id_car_serie": 47645, + "name": "5.7 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195723, + "fields": { + "id_car_serie": 47645, + "name": "5.7 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195724, + "fields": { + "id_car_serie": 47645, + "name": "5.7 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195725, + "fields": { + "id_car_serie": 47646, + "name": "4.1 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195726, + "fields": { + "id_car_serie": 47646, + "name": "4.1 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195727, + "fields": { + "id_car_serie": 47646, + "name": "4.1 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195728, + "fields": { + "id_car_serie": 47646, + "name": "4.1 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195729, + "fields": { + "id_car_serie": 47646, + "name": "4.4 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195730, + "fields": { + "id_car_serie": 47646, + "name": "5.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195731, + "fields": { + "id_car_serie": 47646, + "name": "5.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195732, + "fields": { + "id_car_serie": 47646, + "name": "5.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195733, + "fields": { + "id_car_serie": 47646, + "name": "5.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195734, + "fields": { + "id_car_serie": 47646, + "name": "5.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195735, + "fields": { + "id_car_serie": 47646, + "name": "5.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195736, + "fields": { + "id_car_serie": 47646, + "name": "5.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195737, + "fields": { + "id_car_serie": 47646, + "name": "5.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195738, + "fields": { + "id_car_serie": 47646, + "name": "5.7 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195739, + "fields": { + "id_car_serie": 47646, + "name": "5.7 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195740, + "fields": { + "id_car_serie": 47647, + "name": "5.7 Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195741, + "fields": { + "id_car_serie": 47647, + "name": "5.7 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195742, + "fields": { + "id_car_serie": 47648, + "name": "4.1 Turbo Hydra-Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195743, + "fields": { + "id_car_serie": 47648, + "name": "4.1 Turbo Hydra-Matic (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195744, + "fields": { + "id_car_serie": 47648, + "name": "4.1 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195745, + "fields": { + "id_car_serie": 47648, + "name": "4.1 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195746, + "fields": { + "id_car_serie": 47648, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195747, + "fields": { + "id_car_serie": 47648, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195748, + "fields": { + "id_car_serie": 47648, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195749, + "fields": { + "id_car_serie": 47648, + "name": "5.7 Turbo Hydra-Matic (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195750, + "fields": { + "id_car_serie": 47648, + "name": "5.7 3MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195751, + "fields": { + "id_car_serie": 47648, + "name": "5.7 4MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195752, + "fields": { + "id_car_serie": 47648, + "name": "5.7 3MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195753, + "fields": { + "id_car_serie": 47648, + "name": "5.7 3MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195754, + "fields": { + "id_car_serie": 47648, + "name": "5.7 4MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195755, + "fields": { + "id_car_serie": 47648, + "name": "5.7 3MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195756, + "fields": { + "id_car_serie": 47648, + "name": "5.7 4MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195757, + "fields": { + "id_car_serie": 47648, + "name": "5.7 4MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195758, + "fields": { + "id_car_serie": 47649, + "name": "6.6 MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195759, + "fields": { + "id_car_serie": 47649, + "name": "7.4 Turbo Hydra-Matic (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195760, + "fields": { + "id_car_serie": 47649, + "name": "7.4 MT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195761, + "fields": { + "id_car_serie": 47650, + "name": "5.7 Turbo Hydra-Matic (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195762, + "fields": { + "id_car_serie": 47650, + "name": "5.7 MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195763, + "fields": { + "id_car_serie": 47651, + "name": "5.7 Turbo Hydra-Matic (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195764, + "fields": { + "id_car_serie": 47651, + "name": "5.7 MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195765, + "fields": { + "id_car_serie": 47652, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195766, + "fields": { + "id_car_serie": 47652, + "name": "6.5 Turbo Hydra-Matic (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195767, + "fields": { + "id_car_serie": 47652, + "name": "6.5 Turbo Hydra-Matic (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195768, + "fields": { + "id_car_serie": 47652, + "name": "6.5 3MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195769, + "fields": { + "id_car_serie": 47652, + "name": "6.5 3MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195770, + "fields": { + "id_car_serie": 47652, + "name": "6.5 4MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195771, + "fields": { + "id_car_serie": 47652, + "name": "6.5 4MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195772, + "fields": { + "id_car_serie": 47652, + "name": "6.5 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195773, + "fields": { + "id_car_serie": 47652, + "name": "6.5 3MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195774, + "fields": { + "id_car_serie": 47653, + "name": "4.9 MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195775, + "fields": { + "id_car_serie": 47654, + "name": "4.9 MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195776, + "fields": { + "id_car_serie": 47655, + "name": "6.5 Turbo Hydra-Matic (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195777, + "fields": { + "id_car_serie": 47655, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195778, + "fields": { + "id_car_serie": 47655, + "name": "6.5 Turbo Hydra-Matic (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195779, + "fields": { + "id_car_serie": 47655, + "name": "6.5 Turbo Hydra-Matic (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195780, + "fields": { + "id_car_serie": 47655, + "name": "6.5 4MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195781, + "fields": { + "id_car_serie": 47655, + "name": "6.5 MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195782, + "fields": { + "id_car_serie": 47655, + "name": "6.5 3MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195783, + "fields": { + "id_car_serie": 47655, + "name": "6.5 4MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195784, + "fields": { + "id_car_serie": 47655, + "name": "6.5 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195785, + "fields": { + "id_car_serie": 47655, + "name": "6.5 3MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195786, + "fields": { + "id_car_serie": 47655, + "name": "6.5 3MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195787, + "fields": { + "id_car_serie": 47656, + "name": "3.8 Turbo Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195788, + "fields": { + "id_car_serie": 47656, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195789, + "fields": { + "id_car_serie": 47656, + "name": "3.8 4MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195790, + "fields": { + "id_car_serie": 47656, + "name": "3.8 3MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195791, + "fields": { + "id_car_serie": 47656, + "name": "3.8 Torque-Drive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195792, + "fields": { + "id_car_serie": 47656, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195793, + "fields": { + "id_car_serie": 47656, + "name": "4.1 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195794, + "fields": { + "id_car_serie": 47656, + "name": "4.1 4MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195795, + "fields": { + "id_car_serie": 47656, + "name": "4.1 3MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195796, + "fields": { + "id_car_serie": 47656, + "name": "4.1 Torque-Drive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195797, + "fields": { + "id_car_serie": 47656, + "name": "5.4 Turbo Hydra-Matic (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195798, + "fields": { + "id_car_serie": 47656, + "name": "5.4 Powerglide (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195799, + "fields": { + "id_car_serie": 47656, + "name": "5.4 3MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195800, + "fields": { + "id_car_serie": 47656, + "name": "5.4 4MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195801, + "fields": { + "id_car_serie": 47656, + "name": "5.7 Turbo Hydra-Matic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195802, + "fields": { + "id_car_serie": 47656, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195803, + "fields": { + "id_car_serie": 47656, + "name": "5.7 Powerglide (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195804, + "fields": { + "id_car_serie": 47656, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195805, + "fields": { + "id_car_serie": 47656, + "name": "5.7 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195806, + "fields": { + "id_car_serie": 47656, + "name": "5.7 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195807, + "fields": { + "id_car_serie": 47656, + "name": "5.7 3MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195808, + "fields": { + "id_car_serie": 47656, + "name": "5.7 4MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195809, + "fields": { + "id_car_serie": 47657, + "name": "6.5 Turbo Hydra-Matic (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195810, + "fields": { + "id_car_serie": 47657, + "name": "6.5 3MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195811, + "fields": { + "id_car_serie": 47657, + "name": "6.5 4MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195812, + "fields": { + "id_car_serie": 47657, + "name": "6.5 3MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195813, + "fields": { + "id_car_serie": 47657, + "name": "6.5 4MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195814, + "fields": { + "id_car_serie": 47658, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195815, + "fields": { + "id_car_serie": 47658, + "name": "3.8 4MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195816, + "fields": { + "id_car_serie": 47658, + "name": "3.8 3MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195817, + "fields": { + "id_car_serie": 47658, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195818, + "fields": { + "id_car_serie": 47658, + "name": "4.1 4MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195819, + "fields": { + "id_car_serie": 47658, + "name": "4.1 3MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195820, + "fields": { + "id_car_serie": 47658, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195821, + "fields": { + "id_car_serie": 47658, + "name": "5.4 Powerglide (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195822, + "fields": { + "id_car_serie": 47658, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195823, + "fields": { + "id_car_serie": 47658, + "name": "5.4 4MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195824, + "fields": { + "id_car_serie": 47658, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195825, + "fields": { + "id_car_serie": 47658, + "name": "5.4 3MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195826, + "fields": { + "id_car_serie": 47658, + "name": "5.7 Powerglide (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195827, + "fields": { + "id_car_serie": 47658, + "name": "5.7 3MT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195828, + "fields": { + "id_car_serie": 47658, + "name": "5.7 4MT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195829, + "fields": { + "id_car_serie": 47658, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195830, + "fields": { + "id_car_serie": 47658, + "name": "6.5 3MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195831, + "fields": { + "id_car_serie": 47658, + "name": "6.5 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195832, + "fields": { + "id_car_serie": 47659, + "name": "4.9 MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195833, + "fields": { + "id_car_serie": 47660, + "name": "6.5 Turbo Hydra-Matic (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195834, + "fields": { + "id_car_serie": 47660, + "name": "6.5 3MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195835, + "fields": { + "id_car_serie": 47660, + "name": "6.5 4MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195836, + "fields": { + "id_car_serie": 47660, + "name": "6.5 3MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195837, + "fields": { + "id_car_serie": 47660, + "name": "6.5 4MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195838, + "fields": { + "id_car_serie": 47661, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195839, + "fields": { + "id_car_serie": 47661, + "name": "3.8 4MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195840, + "fields": { + "id_car_serie": 47661, + "name": "3.8 3MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195841, + "fields": { + "id_car_serie": 47661, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195842, + "fields": { + "id_car_serie": 47661, + "name": "4.1 4MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195843, + "fields": { + "id_car_serie": 47661, + "name": "4.1 3MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195844, + "fields": { + "id_car_serie": 47661, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195845, + "fields": { + "id_car_serie": 47661, + "name": "5.4 Powerglide (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195846, + "fields": { + "id_car_serie": 47661, + "name": "5.4 4MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195847, + "fields": { + "id_car_serie": 47661, + "name": "5.4 3MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195848, + "fields": { + "id_car_serie": 47661, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195849, + "fields": { + "id_car_serie": 47661, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195850, + "fields": { + "id_car_serie": 47661, + "name": "5.7 Powerglide (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195851, + "fields": { + "id_car_serie": 47661, + "name": "5.7 3MT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195852, + "fields": { + "id_car_serie": 47661, + "name": "5.7 4MT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195853, + "fields": { + "id_car_serie": 47661, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195854, + "fields": { + "id_car_serie": 47661, + "name": "6.5 3MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195855, + "fields": { + "id_car_serie": 47661, + "name": "6.5 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195856, + "fields": { + "id_car_serie": 47662, + "name": "4.9 MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195857, + "fields": { + "id_car_serie": 47663, + "name": "5.7 Powerglide (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195858, + "fields": { + "id_car_serie": 47663, + "name": "5.7 3MT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195859, + "fields": { + "id_car_serie": 47663, + "name": "5.7 4MT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195860, + "fields": { + "id_car_serie": 47663, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195861, + "fields": { + "id_car_serie": 47663, + "name": "6.5 3MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195862, + "fields": { + "id_car_serie": 47663, + "name": "6.5 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195863, + "fields": { + "id_car_serie": 47664, + "name": "5.7 Powerglide (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195864, + "fields": { + "id_car_serie": 47664, + "name": "5.7 3MT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195865, + "fields": { + "id_car_serie": 47664, + "name": "5.7 4MT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195866, + "fields": { + "id_car_serie": 47664, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195867, + "fields": { + "id_car_serie": 47664, + "name": "6.5 3MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195868, + "fields": { + "id_car_serie": 47664, + "name": "6.5 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195869, + "fields": { + "id_car_serie": 47665, + "name": "4.9 MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195870, + "fields": { + "id_car_serie": 47666, + "name": "4.3 3AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195871, + "fields": { + "id_car_serie": 47666, + "name": "4.3 4AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195872, + "fields": { + "id_car_serie": 47666, + "name": "5.0 4AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195873, + "fields": { + "id_car_serie": 47666, + "name": "5.0 4AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195874, + "fields": { + "id_car_serie": 47667, + "name": "4.3 3AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195875, + "fields": { + "id_car_serie": 47667, + "name": "4.3 4AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195876, + "fields": { + "id_car_serie": 47667, + "name": "5.0 4AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195877, + "fields": { + "id_car_serie": 47667, + "name": "5.0 4AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195878, + "fields": { + "id_car_serie": 47667, + "name": "5.0 EFi 4AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195879, + "fields": { + "id_car_serie": 47668, + "name": "5.0 4AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195880, + "fields": { + "id_car_serie": 47668, + "name": "5.0 4AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195881, + "fields": { + "id_car_serie": 47669, + "name": "4.4 3AT 3-seat (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195882, + "fields": { + "id_car_serie": 47669, + "name": "4.4 4AT 3-seat (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195883, + "fields": { + "id_car_serie": 47669, + "name": "4.4 4AT 2-seat (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195884, + "fields": { + "id_car_serie": 47669, + "name": "4.4 3AT 2-seat (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195885, + "fields": { + "id_car_serie": 47669, + "name": "5.0 4AT 3-seat (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195886, + "fields": { + "id_car_serie": 47669, + "name": "5.0 4AT 3-seat (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195887, + "fields": { + "id_car_serie": 47669, + "name": "5.0 3AT 2-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195888, + "fields": { + "id_car_serie": 47669, + "name": "5.0 4AT 2-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195889, + "fields": { + "id_car_serie": 47669, + "name": "5.0 3AT 3-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195890, + "fields": { + "id_car_serie": 47669, + "name": "5.7D 3AT 3-seat (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195891, + "fields": { + "id_car_serie": 47669, + "name": "5.7D 4AT 2-seat (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195892, + "fields": { + "id_car_serie": 47669, + "name": "5.7D 4AT 3-seat (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195893, + "fields": { + "id_car_serie": 47669, + "name": "5.7 D 3AT 2 seat (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195894, + "fields": { + "id_car_serie": 47670, + "name": "3.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195895, + "fields": { + "id_car_serie": 47670, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195896, + "fields": { + "id_car_serie": 47670, + "name": "4.3 4AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195897, + "fields": { + "id_car_serie": 47670, + "name": "4.3 3AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195898, + "fields": { + "id_car_serie": 47670, + "name": "4.4 4AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195899, + "fields": { + "id_car_serie": 47670, + "name": "4.4 3AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195900, + "fields": { + "id_car_serie": 47670, + "name": "5.0 4AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195901, + "fields": { + "id_car_serie": 47670, + "name": "5.0 3AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195902, + "fields": { + "id_car_serie": 47670, + "name": "5.0 4AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195903, + "fields": { + "id_car_serie": 47670, + "name": "5.7 D 4AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195904, + "fields": { + "id_car_serie": 47670, + "name": "5.7 D 3AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195905, + "fields": { + "id_car_serie": 47671, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195906, + "fields": { + "id_car_serie": 47671, + "name": "3.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195907, + "fields": { + "id_car_serie": 47671, + "name": "4.3 4AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195908, + "fields": { + "id_car_serie": 47671, + "name": "4.3 3AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195909, + "fields": { + "id_car_serie": 47671, + "name": "4.4 4AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195910, + "fields": { + "id_car_serie": 47671, + "name": "4.4 3AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195911, + "fields": { + "id_car_serie": 47671, + "name": "5.0 4AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195912, + "fields": { + "id_car_serie": 47671, + "name": "5.0 3AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195913, + "fields": { + "id_car_serie": 47671, + "name": "5.0 4AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195914, + "fields": { + "id_car_serie": 47671, + "name": "5.7 D 4AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195915, + "fields": { + "id_car_serie": 47671, + "name": "5.7 D 3AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195916, + "fields": { + "id_car_serie": 47672, + "name": "4.1 Turbo Hydra-Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195917, + "fields": { + "id_car_serie": 47672, + "name": "5.0 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195918, + "fields": { + "id_car_serie": 47672, + "name": "5.7 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195919, + "fields": { + "id_car_serie": 47673, + "name": "5.0 Turbo Hydra-Matic 2-seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195920, + "fields": { + "id_car_serie": 47673, + "name": "5.0 Turbo Hydra-Matic 3-seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195921, + "fields": { + "id_car_serie": 47673, + "name": "5.7 Turbo Hydra-Matic 2-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195922, + "fields": { + "id_car_serie": 47673, + "name": "5.7 Turbo Hydra-Matic 3-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195923, + "fields": { + "id_car_serie": 47674, + "name": "6.6 Turbo Hydra-Matic 2-seat (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195924, + "fields": { + "id_car_serie": 47674, + "name": "6.6 Turbo Hydra-Matic 3-seat (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195925, + "fields": { + "id_car_serie": 47674, + "name": "7.44 Turbo Hydra-Matic 2-seat (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195926, + "fields": { + "id_car_serie": 47674, + "name": "7.44 Turbo Hydra-Matic 3-seat (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195927, + "fields": { + "id_car_serie": 47675, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195928, + "fields": { + "id_car_serie": 47675, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195929, + "fields": { + "id_car_serie": 47675, + "name": "6.6 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195930, + "fields": { + "id_car_serie": 47675, + "name": "7.44 Turbo Hydra-Matic (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195931, + "fields": { + "id_car_serie": 47676, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195932, + "fields": { + "id_car_serie": 47676, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195933, + "fields": { + "id_car_serie": 47676, + "name": "6.6 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195934, + "fields": { + "id_car_serie": 47676, + "name": "7.44 Turbo Hydra-Matic (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195935, + "fields": { + "id_car_serie": 47677, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195936, + "fields": { + "id_car_serie": 47677, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195937, + "fields": { + "id_car_serie": 47677, + "name": "6.6 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195938, + "fields": { + "id_car_serie": 47677, + "name": "7.44 Turbo Hydra-Matic (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195939, + "fields": { + "id_car_serie": 47678, + "name": "6.6 Turbo Hydra-Matic 2-seat (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195940, + "fields": { + "id_car_serie": 47678, + "name": "6.6 Turbo Hydra-Matic 3-seat (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195941, + "fields": { + "id_car_serie": 47678, + "name": "7.44 Turbo Hydra-Matic 2-seat (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195942, + "fields": { + "id_car_serie": 47678, + "name": "7.44 Turbo Hydra-Matic 3-seat (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195943, + "fields": { + "id_car_serie": 47679, + "name": "5.7 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195944, + "fields": { + "id_car_serie": 47679, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195945, + "fields": { + "id_car_serie": 47679, + "name": "6.6 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195946, + "fields": { + "id_car_serie": 47679, + "name": "7.44 Turbo Hydra-Matic (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195947, + "fields": { + "id_car_serie": 47680, + "name": "5.7 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195948, + "fields": { + "id_car_serie": 47680, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195949, + "fields": { + "id_car_serie": 47680, + "name": "6.6 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195950, + "fields": { + "id_car_serie": 47680, + "name": "7.44 Turbo Hydra-Matic (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195951, + "fields": { + "id_car_serie": 47681, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195952, + "fields": { + "id_car_serie": 47681, + "name": "5.7 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195953, + "fields": { + "id_car_serie": 47681, + "name": "6.6 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195954, + "fields": { + "id_car_serie": 47681, + "name": "7.44 Turbo Hydra-Matic (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195955, + "fields": { + "id_car_serie": 47682, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195956, + "fields": { + "id_car_serie": 47682, + "name": "5.7 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195957, + "fields": { + "id_car_serie": 47682, + "name": "6.6 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195958, + "fields": { + "id_car_serie": 47682, + "name": "7.44 Turbo Hydra-Matic (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195959, + "fields": { + "id_car_serie": 47683, + "name": "6.6 Turbo Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195960, + "fields": { + "id_car_serie": 47683, + "name": "6.6 Turbo Hydra-Matic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195961, + "fields": { + "id_car_serie": 47683, + "name": "7.44 Turbo Hydra-Matic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195962, + "fields": { + "id_car_serie": 47684, + "name": "6.6 Turbo Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195963, + "fields": { + "id_car_serie": 47684, + "name": "6.6 Turbo Hydra-Matic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195964, + "fields": { + "id_car_serie": 47684, + "name": "7.44 Turbo Hydra-Matic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195965, + "fields": { + "id_car_serie": 47685, + "name": "6.6 Turbo Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195966, + "fields": { + "id_car_serie": 47685, + "name": "6.6 Turbo Hydra-Matic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195967, + "fields": { + "id_car_serie": 47685, + "name": "7.44 Turbo Hydra-Matic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195968, + "fields": { + "id_car_serie": 47686, + "name": "6.6 Turbo Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195969, + "fields": { + "id_car_serie": 47686, + "name": "6.6 Turbo Hydra-Matic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195970, + "fields": { + "id_car_serie": 47686, + "name": "7.44 Turbo Hydra-Matic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195971, + "fields": { + "id_car_serie": 47687, + "name": "6.6 Turbo Hydra-Matic 2-seat (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195972, + "fields": { + "id_car_serie": 47687, + "name": "6.6 Turbo Hydra-Matic 3-seat (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195973, + "fields": { + "id_car_serie": 47687, + "name": "7.44 Turbo Hydra-Matic 2-seat (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195974, + "fields": { + "id_car_serie": 47687, + "name": "7.44 Turbo Hydra-Matic 3-seat (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195975, + "fields": { + "id_car_serie": 47688, + "name": "6.6 Turbo Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195976, + "fields": { + "id_car_serie": 47688, + "name": "7.44 Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195977, + "fields": { + "id_car_serie": 47689, + "name": "6.6 Turbo Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195978, + "fields": { + "id_car_serie": 47689, + "name": "7.44 Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195979, + "fields": { + "id_car_serie": 47690, + "name": "6.6 Turbo Hydra-Matic 2-seat (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195980, + "fields": { + "id_car_serie": 47690, + "name": "6.6 Turbo Hydra-Matic 3-seat (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195981, + "fields": { + "id_car_serie": 47690, + "name": "7.44 Turbo Hydra-Matic 2-seat (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195982, + "fields": { + "id_car_serie": 47690, + "name": "7.44 Turbo Hydra-Matic 3-seat (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195983, + "fields": { + "id_car_serie": 47691, + "name": "6.6 Turbo Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195984, + "fields": { + "id_car_serie": 47691, + "name": "7.44 Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195985, + "fields": { + "id_car_serie": 47692, + "name": "6.6 Turbo Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195986, + "fields": { + "id_car_serie": 47692, + "name": "7.44 Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195987, + "fields": { + "id_car_serie": 47693, + "name": "6.6 Turbo Hydra-Matic 2-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195988, + "fields": { + "id_car_serie": 47693, + "name": "6.6 Turbo Hydra-Matic 3-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195989, + "fields": { + "id_car_serie": 47693, + "name": "6.6 Turbo Hydra-Matic 2-seat (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195990, + "fields": { + "id_car_serie": 47693, + "name": "6.6 Turbo Hydra-Matic 3-seat (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195991, + "fields": { + "id_car_serie": 47693, + "name": "7.44 Turbo Hydra-Matic 2-seat (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195992, + "fields": { + "id_car_serie": 47693, + "name": "7.44 Turbo Hydra-Matic 3-seat (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195993, + "fields": { + "id_car_serie": 47694, + "name": "6.6 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195994, + "fields": { + "id_car_serie": 47694, + "name": "6.6 Turbo Hydra-Matic (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195995, + "fields": { + "id_car_serie": 47694, + "name": "7.44 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195996, + "fields": { + "id_car_serie": 47695, + "name": "6.6 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195997, + "fields": { + "id_car_serie": 47695, + "name": "6.6 Turbo Hydra-Matic (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195998, + "fields": { + "id_car_serie": 47695, + "name": "7.44 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 195999, + "fields": { + "id_car_serie": 47696, + "name": "6.6 Turbo Hydra-Matic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196000, + "fields": { + "id_car_serie": 47696, + "name": "6.6 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196001, + "fields": { + "id_car_serie": 47696, + "name": "6.6 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196002, + "fields": { + "id_car_serie": 47696, + "name": "7.44 Turbo Hydra-Matic (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196003, + "fields": { + "id_car_serie": 47697, + "name": "6.6 Turbo Hydra-Matic 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196004, + "fields": { + "id_car_serie": 47697, + "name": "6.6 Turbo Hydra-Matic 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196005, + "fields": { + "id_car_serie": 47697, + "name": "6.6 Turbo Hydra-Matic 2-seat (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196006, + "fields": { + "id_car_serie": 47697, + "name": "6.6 Turbo Hydra-Matic 3-seat (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196007, + "fields": { + "id_car_serie": 47697, + "name": "6.6 MT 2-seat (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196008, + "fields": { + "id_car_serie": 47697, + "name": "6.6 MT 3-seat (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196009, + "fields": { + "id_car_serie": 47697, + "name": "7.44 Turbo Hydra-Matic 2-seat (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196010, + "fields": { + "id_car_serie": 47697, + "name": "7.44 Turbo Hydra-Matic 3-seat (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196011, + "fields": { + "id_car_serie": 47698, + "name": "6.6 Turbo Hydra-Matic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196012, + "fields": { + "id_car_serie": 47698, + "name": "6.6 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196013, + "fields": { + "id_car_serie": 47698, + "name": "6.6 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196014, + "fields": { + "id_car_serie": 47698, + "name": "7.44 Turbo Hydra-Matic (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196015, + "fields": { + "id_car_serie": 47699, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196016, + "fields": { + "id_car_serie": 47699, + "name": "5.7 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196017, + "fields": { + "id_car_serie": 47699, + "name": "5.7 Turbo Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196018, + "fields": { + "id_car_serie": 47699, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196019, + "fields": { + "id_car_serie": 47699, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196020, + "fields": { + "id_car_serie": 47699, + "name": "6.6 Turbo Hydra-Matic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196021, + "fields": { + "id_car_serie": 47699, + "name": "7.44 Turbo Hydra-Matic (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196022, + "fields": { + "id_car_serie": 47699, + "name": "7.44 Turbo Hydra-Matic (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196023, + "fields": { + "id_car_serie": 47700, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196024, + "fields": { + "id_car_serie": 47700, + "name": "5.7 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196025, + "fields": { + "id_car_serie": 47700, + "name": "5.7 Turbo Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196026, + "fields": { + "id_car_serie": 47700, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196027, + "fields": { + "id_car_serie": 47700, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196028, + "fields": { + "id_car_serie": 47700, + "name": "6.6 Turbo Hydra-Matic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196029, + "fields": { + "id_car_serie": 47700, + "name": "7.44 Turbo Hydra-Matic (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196030, + "fields": { + "id_car_serie": 47700, + "name": "7.44 Turbo Hydra-Matic (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196031, + "fields": { + "id_car_serie": 47701, + "name": "5.4 Powerglide (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196032, + "fields": { + "id_car_serie": 47701, + "name": "5.4 Turbo Hydra-Matic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196033, + "fields": { + "id_car_serie": 47701, + "name": "5.4 3MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196034, + "fields": { + "id_car_serie": 47701, + "name": "5.4 4MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196035, + "fields": { + "id_car_serie": 47701, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196036, + "fields": { + "id_car_serie": 47701, + "name": "5.7 Powerglide (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196037, + "fields": { + "id_car_serie": 47701, + "name": "5.7 Turbo Hydra-Matic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196038, + "fields": { + "id_car_serie": 47701, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196039, + "fields": { + "id_car_serie": 47701, + "name": "5.7 3MT Heavy-Duty (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196040, + "fields": { + "id_car_serie": 47701, + "name": "5.7 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196041, + "fields": { + "id_car_serie": 47701, + "name": "5.7 4MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196042, + "fields": { + "id_car_serie": 47701, + "name": "5.7 3MT Heavy-Duty (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196043, + "fields": { + "id_car_serie": 47701, + "name": "6.5 Turbo Hydra-Matic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196044, + "fields": { + "id_car_serie": 47701, + "name": "6.5 4MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196045, + "fields": { + "id_car_serie": 47701, + "name": "6.5 3MT Heavy Duty (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196046, + "fields": { + "id_car_serie": 47701, + "name": "7.0 Turbo Hydra-Matic (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196047, + "fields": { + "id_car_serie": 47701, + "name": "7.0 Turbo Hydra-Matic (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196048, + "fields": { + "id_car_serie": 47701, + "name": "7.0 4MT High Performance (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196049, + "fields": { + "id_car_serie": 47701, + "name": "7.0 3MT Heavy Duty (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196050, + "fields": { + "id_car_serie": 47701, + "name": "7.0 4MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196051, + "fields": { + "id_car_serie": 47701, + "name": "7.0 4MT High Performance (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196052, + "fields": { + "id_car_serie": 47701, + "name": "7.0 3MT Heavy Duty (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196053, + "fields": { + "id_car_serie": 47701, + "name": "7.0 4MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196054, + "fields": { + "id_car_serie": 47702, + "name": "5.4 Powerglide (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196055, + "fields": { + "id_car_serie": 47702, + "name": "5.4 Turbo Hydra-Matic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196056, + "fields": { + "id_car_serie": 47702, + "name": "5.4 3MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196057, + "fields": { + "id_car_serie": 47702, + "name": "5.4 4MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196058, + "fields": { + "id_car_serie": 47702, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196059, + "fields": { + "id_car_serie": 47702, + "name": "5.7 Powerglide (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196060, + "fields": { + "id_car_serie": 47702, + "name": "5.7 Turbo Hydra-Matic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196061, + "fields": { + "id_car_serie": 47702, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196062, + "fields": { + "id_car_serie": 47702, + "name": "5.7 3MT Heavy-Duty (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196063, + "fields": { + "id_car_serie": 47702, + "name": "5.7 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196064, + "fields": { + "id_car_serie": 47702, + "name": "5.7 4MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196065, + "fields": { + "id_car_serie": 47702, + "name": "5.7 3MT Heavy-Duty (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196066, + "fields": { + "id_car_serie": 47702, + "name": "6.5 Turbo Hydra-Matic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196067, + "fields": { + "id_car_serie": 47702, + "name": "6.5 4MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196068, + "fields": { + "id_car_serie": 47702, + "name": "6.5 3MT Heavy Duty (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196069, + "fields": { + "id_car_serie": 47702, + "name": "7.0 Turbo Hydra-Matic (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196070, + "fields": { + "id_car_serie": 47702, + "name": "7.0 Turbo Hydra-Matic (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196071, + "fields": { + "id_car_serie": 47702, + "name": "7.0 4MT High Performance (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196072, + "fields": { + "id_car_serie": 47702, + "name": "7.0 3MT Heavy Duty (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196073, + "fields": { + "id_car_serie": 47702, + "name": "7.0 4MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196074, + "fields": { + "id_car_serie": 47702, + "name": "7.0 4MT High Performance (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196075, + "fields": { + "id_car_serie": 47702, + "name": "7.0 3MT Heavy Duty (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196076, + "fields": { + "id_car_serie": 47702, + "name": "7.0 4MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196077, + "fields": { + "id_car_serie": 47703, + "name": "5.4 Powerglide 2-seat (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196078, + "fields": { + "id_car_serie": 47703, + "name": "5.4 Powerglide 3-seat (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196079, + "fields": { + "id_car_serie": 47703, + "name": "5.4 Turbo Hydra-Matic 3-seat (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196080, + "fields": { + "id_car_serie": 47703, + "name": "5.4 Turbo Hydra-Matic 2-seat (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196081, + "fields": { + "id_car_serie": 47703, + "name": "5.4 4MT 2-seat (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196082, + "fields": { + "id_car_serie": 47703, + "name": "5.4 4MT 3-seat (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196083, + "fields": { + "id_car_serie": 47703, + "name": "5.4 3MT 3-seat (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196084, + "fields": { + "id_car_serie": 47703, + "name": "5.4 3MT 2-seat (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196085, + "fields": { + "id_car_serie": 47703, + "name": "5.7 Powerglide 2-seat (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196086, + "fields": { + "id_car_serie": 47703, + "name": "5.7 Powerglide 3-seat (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196087, + "fields": { + "id_car_serie": 47703, + "name": "5.7 Turbo Hydra-Matic 2-seat (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196088, + "fields": { + "id_car_serie": 47703, + "name": "5.7 Turbo Hydra-Matic 3-seat (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196089, + "fields": { + "id_car_serie": 47703, + "name": "5.7 Powerglide 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196090, + "fields": { + "id_car_serie": 47703, + "name": "5.7 Powerglide 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196091, + "fields": { + "id_car_serie": 47703, + "name": "5.7 Turbo Hydra-Matic 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196092, + "fields": { + "id_car_serie": 47703, + "name": "5.7 Turbo Hydra-Matic 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196093, + "fields": { + "id_car_serie": 47703, + "name": "5.7 3MT Heavy-Duty 2-seat (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196094, + "fields": { + "id_car_serie": 47703, + "name": "5.7 3MT Heavy-Duty 3-seat (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196095, + "fields": { + "id_car_serie": 47703, + "name": "5.7 4MT 2-seat (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196096, + "fields": { + "id_car_serie": 47703, + "name": "5.7 4MT 3-seat (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196097, + "fields": { + "id_car_serie": 47703, + "name": "5.7 3MT Heavy-Duty 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196098, + "fields": { + "id_car_serie": 47703, + "name": "5.7 3MT Heavy-Duty 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196099, + "fields": { + "id_car_serie": 47703, + "name": "5.7 4MT 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196100, + "fields": { + "id_car_serie": 47703, + "name": "5.7 4MT 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196101, + "fields": { + "id_car_serie": 47703, + "name": "6.5 Turbo Hydra-Matic 3-seat (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196102, + "fields": { + "id_car_serie": 47703, + "name": "6.5 Turbo Hydra-Matic 2-seat (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196103, + "fields": { + "id_car_serie": 47703, + "name": "6.5 3MT Heavy Duty 3-seat (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196104, + "fields": { + "id_car_serie": 47703, + "name": "6.5 3MT Heavy Duty 2-seat (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196105, + "fields": { + "id_car_serie": 47703, + "name": "6.5 4MT 2-seat (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196106, + "fields": { + "id_car_serie": 47703, + "name": "6.5 4MT 3-seat (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196107, + "fields": { + "id_car_serie": 47703, + "name": "6.6 Turbo Hydra-Matic 2-seat (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196108, + "fields": { + "id_car_serie": 47703, + "name": "7.0 Turbo Hydra-Matic 2-seat (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196109, + "fields": { + "id_car_serie": 47703, + "name": "7.0 Turbo Hydra-Matic 3-seat (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196110, + "fields": { + "id_car_serie": 47703, + "name": "7.0 Turbo Hydra-Matic 2-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196111, + "fields": { + "id_car_serie": 47703, + "name": "7.0 Turbo Hydra-Matic 3-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196112, + "fields": { + "id_car_serie": 47703, + "name": "7.0 4MT High Performance 3-seat (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196113, + "fields": { + "id_car_serie": 47703, + "name": "7.0 3MT Heavy Duty 2-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196114, + "fields": { + "id_car_serie": 47703, + "name": "7.0 3MT Heavy Duty 3-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196115, + "fields": { + "id_car_serie": 47703, + "name": "7.0 3MT Heavy Duty 2-seat (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196116, + "fields": { + "id_car_serie": 47703, + "name": "7.0 4MT High Performance 2-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196117, + "fields": { + "id_car_serie": 47703, + "name": "7.0 4MT 3-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196118, + "fields": { + "id_car_serie": 47703, + "name": "7.0 4MT High Performance 3-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196119, + "fields": { + "id_car_serie": 47703, + "name": "7.0 4MT 2-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196120, + "fields": { + "id_car_serie": 47703, + "name": "7.0 3MT Heavy Duty 3-seat (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196121, + "fields": { + "id_car_serie": 47703, + "name": "7.0 4MT 2-seat (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196122, + "fields": { + "id_car_serie": 47703, + "name": "7.0 4MT 3-seat (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196123, + "fields": { + "id_car_serie": 47703, + "name": "7.0 4MT High Performance 2-seat (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196124, + "fields": { + "id_car_serie": 47703, + "name": "7.44 Turbo Hydra-Matic 3-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196125, + "fields": { + "id_car_serie": 47703, + "name": "7.44 Turbo Hydra-Matic 2-seat (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196126, + "fields": { + "id_car_serie": 47703, + "name": "7.44 Turbo Hydra-Matic 3-seat (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196127, + "fields": { + "id_car_serie": 47703, + "name": "7.44 Turbo Hydra-Matic 2-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196128, + "fields": { + "id_car_serie": 47704, + "name": "5.0 Turbo Hydra-Matic 3-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196129, + "fields": { + "id_car_serie": 47704, + "name": "5.0 Powerglide 2-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196130, + "fields": { + "id_car_serie": 47704, + "name": "5.0 Powerglide 3-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196131, + "fields": { + "id_car_serie": 47704, + "name": "5.0 Turbo Hydra-Matic 2-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196132, + "fields": { + "id_car_serie": 47704, + "name": "5.0 3MT 2-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196133, + "fields": { + "id_car_serie": 47704, + "name": "5.0 4MT 2-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196134, + "fields": { + "id_car_serie": 47704, + "name": "5.0 3MT 3-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196135, + "fields": { + "id_car_serie": 47704, + "name": "5.0 4MT 3-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196136, + "fields": { + "id_car_serie": 47704, + "name": "5.4 Turbo Hydra-Matic 2-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196137, + "fields": { + "id_car_serie": 47704, + "name": "5.4 Turbo Hydra-Matic 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196138, + "fields": { + "id_car_serie": 47704, + "name": "5.4 Turbo Hydra-Matic 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196139, + "fields": { + "id_car_serie": 47704, + "name": "5.4 Turbo Hydra-Matic 3-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196140, + "fields": { + "id_car_serie": 47704, + "name": "5.4 Powerglide 2-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196141, + "fields": { + "id_car_serie": 47704, + "name": "5.4 Powerglide 3-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196142, + "fields": { + "id_car_serie": 47704, + "name": "5.4 3MT 2-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196143, + "fields": { + "id_car_serie": 47704, + "name": "5.4 3MT 3-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196144, + "fields": { + "id_car_serie": 47704, + "name": "5.4 4MT 2-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196145, + "fields": { + "id_car_serie": 47704, + "name": "5.4 4MT 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196146, + "fields": { + "id_car_serie": 47704, + "name": "5.4 3MT 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196147, + "fields": { + "id_car_serie": 47704, + "name": "5.4 4MT 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196148, + "fields": { + "id_car_serie": 47704, + "name": "5.4 4MT 3-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196149, + "fields": { + "id_car_serie": 47704, + "name": "5.4 3MT 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196150, + "fields": { + "id_car_serie": 47704, + "name": "6.5 Turbo Hydra-Matic 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196151, + "fields": { + "id_car_serie": 47704, + "name": "6.5 Turbo Hydra-Matic 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196152, + "fields": { + "id_car_serie": 47704, + "name": "6.5 4MT 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196153, + "fields": { + "id_car_serie": 47704, + "name": "6.5 3MT Heavy Duty 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196154, + "fields": { + "id_car_serie": 47704, + "name": "6.5 3MT Heavy Duty 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196155, + "fields": { + "id_car_serie": 47704, + "name": "6.5 4MT 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196156, + "fields": { + "id_car_serie": 47704, + "name": "7.0 Turbo Hydra-Matic 3-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196157, + "fields": { + "id_car_serie": 47704, + "name": "7.0 Turbo Hydra-Matic 2-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196158, + "fields": { + "id_car_serie": 47704, + "name": "7.0 4MT 3-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196159, + "fields": { + "id_car_serie": 47704, + "name": "7.0 4MT High Performance 2-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196160, + "fields": { + "id_car_serie": 47704, + "name": "7.0 4MT High Performance 3-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196161, + "fields": { + "id_car_serie": 47704, + "name": "7.0 3MT Heavy Duty 3-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196162, + "fields": { + "id_car_serie": 47704, + "name": "7.0 3MT Heavy Duty 2-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196163, + "fields": { + "id_car_serie": 47704, + "name": "7.0 4MT 2-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196164, + "fields": { + "id_car_serie": 47705, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196165, + "fields": { + "id_car_serie": 47705, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196166, + "fields": { + "id_car_serie": 47705, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196167, + "fields": { + "id_car_serie": 47705, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196168, + "fields": { + "id_car_serie": 47705, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196169, + "fields": { + "id_car_serie": 47705, + "name": "5.4 Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196170, + "fields": { + "id_car_serie": 47705, + "name": "5.4 Hydra-Matic (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196171, + "fields": { + "id_car_serie": 47705, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196172, + "fields": { + "id_car_serie": 47705, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196173, + "fields": { + "id_car_serie": 47705, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196174, + "fields": { + "id_car_serie": 47705, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196175, + "fields": { + "id_car_serie": 47705, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196176, + "fields": { + "id_car_serie": 47705, + "name": "6.5 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196177, + "fields": { + "id_car_serie": 47705, + "name": "6.5 3MT Heavy Duty (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196178, + "fields": { + "id_car_serie": 47705, + "name": "7.0 Hydra-Matic (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196179, + "fields": { + "id_car_serie": 47705, + "name": "7.0 3MT Heavy Duty (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196180, + "fields": { + "id_car_serie": 47705, + "name": "7.0 4MT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196181, + "fields": { + "id_car_serie": 47705, + "name": "7.0 4MT High Performance (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196182, + "fields": { + "id_car_serie": 47706, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196183, + "fields": { + "id_car_serie": 47706, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196184, + "fields": { + "id_car_serie": 47706, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196185, + "fields": { + "id_car_serie": 47706, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196186, + "fields": { + "id_car_serie": 47706, + "name": "5.4 Turbo Hydra-Matic (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196187, + "fields": { + "id_car_serie": 47706, + "name": "5.4 Turbo Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196188, + "fields": { + "id_car_serie": 47706, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196189, + "fields": { + "id_car_serie": 47706, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196190, + "fields": { + "id_car_serie": 47706, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196191, + "fields": { + "id_car_serie": 47706, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196192, + "fields": { + "id_car_serie": 47706, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196193, + "fields": { + "id_car_serie": 47706, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196194, + "fields": { + "id_car_serie": 47706, + "name": "6.5 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196195, + "fields": { + "id_car_serie": 47706, + "name": "6.5 3MT Heavy Duty (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196196, + "fields": { + "id_car_serie": 47706, + "name": "7.0 Hydra-Matic (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196197, + "fields": { + "id_car_serie": 47706, + "name": "7.0 3MT Heavy Duty (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196198, + "fields": { + "id_car_serie": 47706, + "name": "7.0 4MT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196199, + "fields": { + "id_car_serie": 47706, + "name": "7.0 4MT High Performance (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196200, + "fields": { + "id_car_serie": 47707, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196201, + "fields": { + "id_car_serie": 47707, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196202, + "fields": { + "id_car_serie": 47707, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196203, + "fields": { + "id_car_serie": 47707, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196204, + "fields": { + "id_car_serie": 47707, + "name": "5.4 Hydra-Matic (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196205, + "fields": { + "id_car_serie": 47707, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196206, + "fields": { + "id_car_serie": 47707, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196207, + "fields": { + "id_car_serie": 47707, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196208, + "fields": { + "id_car_serie": 47707, + "name": "6.5 Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196209, + "fields": { + "id_car_serie": 47707, + "name": "6.5 3MT Heavy Duty (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196210, + "fields": { + "id_car_serie": 47707, + "name": "6.5 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196211, + "fields": { + "id_car_serie": 47707, + "name": "7.0 Hydra-Matic (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196212, + "fields": { + "id_car_serie": 47707, + "name": "7.0 3MT Heavy Duty (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196213, + "fields": { + "id_car_serie": 47707, + "name": "7.0 4MT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196214, + "fields": { + "id_car_serie": 47707, + "name": "7.0 4MT High Performance (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196215, + "fields": { + "id_car_serie": 47708, + "name": "4.6 Powerglide 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196216, + "fields": { + "id_car_serie": 47708, + "name": "4.6 Powerglide 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196217, + "fields": { + "id_car_serie": 47708, + "name": "4.6 3MT 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196218, + "fields": { + "id_car_serie": 47708, + "name": "4.6 4MT 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196219, + "fields": { + "id_car_serie": 47708, + "name": "4.6 4MT 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196220, + "fields": { + "id_car_serie": 47708, + "name": "4.6 3MT 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196221, + "fields": { + "id_car_serie": 47708, + "name": "5.4 Powerglide 2-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196222, + "fields": { + "id_car_serie": 47708, + "name": "5.4 Hydra-Matic 3-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196223, + "fields": { + "id_car_serie": 47708, + "name": "5.4 Hydra-Matic 2-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196224, + "fields": { + "id_car_serie": 47708, + "name": "5.4 Powerglide 3-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196225, + "fields": { + "id_car_serie": 47708, + "name": "5.4 4MT 3-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196226, + "fields": { + "id_car_serie": 47708, + "name": "5.4 3MT 2-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196227, + "fields": { + "id_car_serie": 47708, + "name": "5.4 3MT 3-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196228, + "fields": { + "id_car_serie": 47708, + "name": "5.4 4MT 2-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196229, + "fields": { + "id_car_serie": 47708, + "name": "6.5 Powerglide 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196230, + "fields": { + "id_car_serie": 47708, + "name": "6.5 Hydra-Matic 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196231, + "fields": { + "id_car_serie": 47708, + "name": "6.5 Hydra-Matic 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196232, + "fields": { + "id_car_serie": 47708, + "name": "6.5 Powerglide 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196233, + "fields": { + "id_car_serie": 47708, + "name": "6.5 3MT Heavy Duty 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196234, + "fields": { + "id_car_serie": 47708, + "name": "6.5 3MT Heavy Duty 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196235, + "fields": { + "id_car_serie": 47708, + "name": "6.5 4MT 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196236, + "fields": { + "id_car_serie": 47708, + "name": "6.5 4MT 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196237, + "fields": { + "id_car_serie": 47708, + "name": "7.0 Hydra-Matic 2-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196238, + "fields": { + "id_car_serie": 47708, + "name": "7.0 Hydra-Matic 3-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196239, + "fields": { + "id_car_serie": 47708, + "name": "7.0 4MT 2-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196240, + "fields": { + "id_car_serie": 47708, + "name": "7.0 4MT 3-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196241, + "fields": { + "id_car_serie": 47708, + "name": "7.0 3MT Heavy Duty 2-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196242, + "fields": { + "id_car_serie": 47708, + "name": "7.0 4MT High Performance 3-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196243, + "fields": { + "id_car_serie": 47708, + "name": "7.0 4MT High Performance 2-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196244, + "fields": { + "id_car_serie": 47708, + "name": "7.0 3MT Heavy Duty 3-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196245, + "fields": { + "id_car_serie": 47709, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196246, + "fields": { + "id_car_serie": 47709, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196247, + "fields": { + "id_car_serie": 47709, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196248, + "fields": { + "id_car_serie": 47709, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196249, + "fields": { + "id_car_serie": 47709, + "name": "5.4 Hydra-Matic (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196250, + "fields": { + "id_car_serie": 47709, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196251, + "fields": { + "id_car_serie": 47709, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196252, + "fields": { + "id_car_serie": 47709, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196253, + "fields": { + "id_car_serie": 47709, + "name": "6.5 Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196254, + "fields": { + "id_car_serie": 47709, + "name": "6.5 3MT Heavy Duty (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196255, + "fields": { + "id_car_serie": 47709, + "name": "6.5 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196256, + "fields": { + "id_car_serie": 47709, + "name": "7.0 Hydra-Matic (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196257, + "fields": { + "id_car_serie": 47709, + "name": "7.0 3MT Heavy Duty (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196258, + "fields": { + "id_car_serie": 47709, + "name": "7.0 4MT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196259, + "fields": { + "id_car_serie": 47709, + "name": "7.0 4MT High Performance (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196260, + "fields": { + "id_car_serie": 47710, + "name": "4.6 AT Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196261, + "fields": { + "id_car_serie": 47710, + "name": "4.6 AT Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196262, + "fields": { + "id_car_serie": 47710, + "name": "4.6 4MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196263, + "fields": { + "id_car_serie": 47710, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196264, + "fields": { + "id_car_serie": 47710, + "name": "4.6 3MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196265, + "fields": { + "id_car_serie": 47710, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196266, + "fields": { + "id_car_serie": 47710, + "name": "5.4 AT Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196267, + "fields": { + "id_car_serie": 47710, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196268, + "fields": { + "id_car_serie": 47710, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196269, + "fields": { + "id_car_serie": 47710, + "name": "6.5 AT Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196270, + "fields": { + "id_car_serie": 47710, + "name": "6.5 AT Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196271, + "fields": { + "id_car_serie": 47710, + "name": "6.5 3MT Heavy Duty (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196272, + "fields": { + "id_car_serie": 47710, + "name": "6.5 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196273, + "fields": { + "id_car_serie": 47710, + "name": "7.0 AT Hydra-Matic (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196274, + "fields": { + "id_car_serie": 47710, + "name": "7.0 3MT Heavy Duty (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196275, + "fields": { + "id_car_serie": 47710, + "name": "7.0 4MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196276, + "fields": { + "id_car_serie": 47710, + "name": "7.0 3MT Heavy Duty (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196277, + "fields": { + "id_car_serie": 47710, + "name": "7.0 4MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196278, + "fields": { + "id_car_serie": 47710, + "name": "7.0 4MT High Performance (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196279, + "fields": { + "id_car_serie": 47711, + "name": "4.6 AT Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196280, + "fields": { + "id_car_serie": 47711, + "name": "4.6 AT Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196281, + "fields": { + "id_car_serie": 47711, + "name": "4.6 4MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196282, + "fields": { + "id_car_serie": 47711, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196283, + "fields": { + "id_car_serie": 47711, + "name": "4.6 3MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196284, + "fields": { + "id_car_serie": 47711, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196285, + "fields": { + "id_car_serie": 47711, + "name": "5.4 AT Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196286, + "fields": { + "id_car_serie": 47711, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196287, + "fields": { + "id_car_serie": 47711, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196288, + "fields": { + "id_car_serie": 47711, + "name": "6.5 AT Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196289, + "fields": { + "id_car_serie": 47711, + "name": "6.5 AT Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196290, + "fields": { + "id_car_serie": 47711, + "name": "6.5 3MT Heavy Duty (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196291, + "fields": { + "id_car_serie": 47711, + "name": "6.5 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196292, + "fields": { + "id_car_serie": 47711, + "name": "7.0 AT Hydra-Matic (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196293, + "fields": { + "id_car_serie": 47711, + "name": "7.0 3MT Heavy Duty (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196294, + "fields": { + "id_car_serie": 47711, + "name": "7.0 4MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196295, + "fields": { + "id_car_serie": 47711, + "name": "7.0 3MT Heavy Duty (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196296, + "fields": { + "id_car_serie": 47711, + "name": "7.0 4MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196297, + "fields": { + "id_car_serie": 47711, + "name": "7.0 4MT High Performance (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196298, + "fields": { + "id_car_serie": 47712, + "name": "4.6 Powerglide 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196299, + "fields": { + "id_car_serie": 47712, + "name": "4.6 Powerglide 3-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196300, + "fields": { + "id_car_serie": 47712, + "name": "4.6 Powerglide 2-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196301, + "fields": { + "id_car_serie": 47712, + "name": "4.6 Powerglide 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196302, + "fields": { + "id_car_serie": 47712, + "name": "4.6 4MT 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196303, + "fields": { + "id_car_serie": 47712, + "name": "4.6 3MT 2-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196304, + "fields": { + "id_car_serie": 47712, + "name": "4.6 3MT 3-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196305, + "fields": { + "id_car_serie": 47712, + "name": "4.6 4MT 2-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196306, + "fields": { + "id_car_serie": 47712, + "name": "4.6 4MT 3-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196307, + "fields": { + "id_car_serie": 47712, + "name": "4.6 3MT 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196308, + "fields": { + "id_car_serie": 47712, + "name": "4.6 3MT 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196309, + "fields": { + "id_car_serie": 47712, + "name": "4.6 4MT 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196310, + "fields": { + "id_car_serie": 47712, + "name": "5.4 Powerglide 3-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196311, + "fields": { + "id_car_serie": 47712, + "name": "5.4 Powerglide 2-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196312, + "fields": { + "id_car_serie": 47712, + "name": "5.4 4MT 2-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196313, + "fields": { + "id_car_serie": 47712, + "name": "5.4 4MT 3-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196314, + "fields": { + "id_car_serie": 47712, + "name": "5.4 3MT 2-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196315, + "fields": { + "id_car_serie": 47712, + "name": "5.4 3MT 3-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196316, + "fields": { + "id_car_serie": 47712, + "name": "6.5 Hydra-Matic 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196317, + "fields": { + "id_car_serie": 47712, + "name": "6.5 Powerglide 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196318, + "fields": { + "id_car_serie": 47712, + "name": "6.5 Hydra-Matic 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196319, + "fields": { + "id_car_serie": 47712, + "name": "6.5 Powerglide 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196320, + "fields": { + "id_car_serie": 47712, + "name": "6.5 3MT Heavy Duty 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196321, + "fields": { + "id_car_serie": 47712, + "name": "6.5 3MT Heavy Duty 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196322, + "fields": { + "id_car_serie": 47712, + "name": "6.5 4MT 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196323, + "fields": { + "id_car_serie": 47712, + "name": "6.5 4MT 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196324, + "fields": { + "id_car_serie": 47712, + "name": "7.0 Hydra-Matic 2-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196325, + "fields": { + "id_car_serie": 47712, + "name": "7.0 Hydra-Matic 3-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196326, + "fields": { + "id_car_serie": 47712, + "name": "7.0 4MT 2-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196327, + "fields": { + "id_car_serie": 47712, + "name": "7.0 4MT 3-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196328, + "fields": { + "id_car_serie": 47712, + "name": "7.0 3MT Heavy Duty 2-seat (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196329, + "fields": { + "id_car_serie": 47712, + "name": "7.0 3MT Heavy Duty 3-seat (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196330, + "fields": { + "id_car_serie": 47712, + "name": "7.0 4MT 2-seat (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196331, + "fields": { + "id_car_serie": 47712, + "name": "7.0 4MT 3-seat (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196332, + "fields": { + "id_car_serie": 47712, + "name": "7.0 4MT High Performance 2-seat (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196333, + "fields": { + "id_car_serie": 47712, + "name": "7.0 3MT Heavy Duty 2-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196334, + "fields": { + "id_car_serie": 47712, + "name": "7.0 4MT High Performance 3-seat (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196335, + "fields": { + "id_car_serie": 47712, + "name": "7.0 3MT Heavy Duty 3-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196336, + "fields": { + "id_car_serie": 47713, + "name": "3.8 AT Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196337, + "fields": { + "id_car_serie": 47713, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196338, + "fields": { + "id_car_serie": 47713, + "name": "4.6 AT Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196339, + "fields": { + "id_car_serie": 47713, + "name": "4.6 AT Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196340, + "fields": { + "id_car_serie": 47713, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196341, + "fields": { + "id_car_serie": 47713, + "name": "4.6 4MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196342, + "fields": { + "id_car_serie": 47713, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196343, + "fields": { + "id_car_serie": 47713, + "name": "4.6 3MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196344, + "fields": { + "id_car_serie": 47713, + "name": "5.4 AT Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196345, + "fields": { + "id_car_serie": 47713, + "name": "5.4 AT Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196346, + "fields": { + "id_car_serie": 47713, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196347, + "fields": { + "id_car_serie": 47713, + "name": "5.4 3MT Fully Synchronized (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196348, + "fields": { + "id_car_serie": 47713, + "name": "5.4 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196349, + "fields": { + "id_car_serie": 47713, + "name": "5.4 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196350, + "fields": { + "id_car_serie": 47713, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196351, + "fields": { + "id_car_serie": 47713, + "name": "6.5 AT Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196352, + "fields": { + "id_car_serie": 47713, + "name": "6.5 AT Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196353, + "fields": { + "id_car_serie": 47713, + "name": "6.5 4MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196354, + "fields": { + "id_car_serie": 47713, + "name": "6.5 3MT Fully Synchronized (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196355, + "fields": { + "id_car_serie": 47713, + "name": "6.5 3MT Fully Synchronized (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196356, + "fields": { + "id_car_serie": 47713, + "name": "6.5 4MT High Performance (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196357, + "fields": { + "id_car_serie": 47713, + "name": "6.5 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196358, + "fields": { + "id_car_serie": 47714, + "name": "2.2 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196359, + "fields": { + "id_car_serie": 47714, + "name": "2.2 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196360, + "fields": { + "id_car_serie": 47715, + "name": "2.2 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196361, + "fields": { + "id_car_serie": 47715, + "name": "2.2 3AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196362, + "fields": { + "id_car_serie": 47715, + "name": "2.2 4AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196363, + "fields": { + "id_car_serie": 47715, + "name": "2.2 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196364, + "fields": { + "id_car_serie": 47715, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196365, + "fields": { + "id_car_serie": 47715, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196366, + "fields": { + "id_car_serie": 47716, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196367, + "fields": { + "id_car_serie": 47716, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196368, + "fields": { + "id_car_serie": 47717, + "name": "2.2 4AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196369, + "fields": { + "id_car_serie": 47717, + "name": "2.2 3AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196370, + "fields": { + "id_car_serie": 47717, + "name": "2.2 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196371, + "fields": { + "id_car_serie": 47717, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196372, + "fields": { + "id_car_serie": 47717, + "name": "2.2 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196373, + "fields": { + "id_car_serie": 47717, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196374, + "fields": { + "id_car_serie": 47717, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196375, + "fields": { + "id_car_serie": 47718, + "name": "2.2 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196376, + "fields": { + "id_car_serie": 47718, + "name": "2.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196377, + "fields": { + "id_car_serie": 47718, + "name": "2.2 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196378, + "fields": { + "id_car_serie": 47718, + "name": "2.2 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196379, + "fields": { + "id_car_serie": 47718, + "name": "3.1 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196380, + "fields": { + "id_car_serie": 47719, + "name": "2.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196381, + "fields": { + "id_car_serie": 47719, + "name": "2.2 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196382, + "fields": { + "id_car_serie": 47719, + "name": "2.2 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196383, + "fields": { + "id_car_serie": 47719, + "name": "2.2 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196384, + "fields": { + "id_car_serie": 47719, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196385, + "fields": { + "id_car_serie": 47719, + "name": "2.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196386, + "fields": { + "id_car_serie": 47719, + "name": "3.1 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196387, + "fields": { + "id_car_serie": 47719, + "name": "3.1 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196388, + "fields": { + "id_car_serie": 47720, + "name": "2.2 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196389, + "fields": { + "id_car_serie": 47720, + "name": "2.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196390, + "fields": { + "id_car_serie": 47720, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196391, + "fields": { + "id_car_serie": 47720, + "name": "2.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196392, + "fields": { + "id_car_serie": 47720, + "name": "3.1 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196393, + "fields": { + "id_car_serie": 47720, + "name": "3.1 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196394, + "fields": { + "id_car_serie": 47721, + "name": "2.2 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196395, + "fields": { + "id_car_serie": 47721, + "name": "2.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196396, + "fields": { + "id_car_serie": 47721, + "name": "2.2 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196397, + "fields": { + "id_car_serie": 47721, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196398, + "fields": { + "id_car_serie": 47721, + "name": "2.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196399, + "fields": { + "id_car_serie": 47721, + "name": "2.2 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196400, + "fields": { + "id_car_serie": 47722, + "name": "2.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196401, + "fields": { + "id_car_serie": 47722, + "name": "2.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196402, + "fields": { + "id_car_serie": 47722, + "name": "2.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196403, + "fields": { + "id_car_serie": 47722, + "name": "2.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196404, + "fields": { + "id_car_serie": 47723, + "name": "2.0 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196405, + "fields": { + "id_car_serie": 47723, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196406, + "fields": { + "id_car_serie": 47723, + "name": "2.0 5MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196407, + "fields": { + "id_car_serie": 47723, + "name": "2.0 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196408, + "fields": { + "id_car_serie": 47723, + "name": "2.0 4MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196409, + "fields": { + "id_car_serie": 47723, + "name": "2.0 4MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196410, + "fields": { + "id_car_serie": 47723, + "name": "2.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196411, + "fields": { + "id_car_serie": 47723, + "name": "2.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196413, + "fields": { + "id_car_serie": 47723, + "name": "2.8 4MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196414, + "fields": { + "id_car_serie": 47723, + "name": "2.8 4MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196415, + "fields": { + "id_car_serie": 47723, + "name": "2.8 5MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196416, + "fields": { + "id_car_serie": 47723, + "name": "2.8 5MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196417, + "fields": { + "id_car_serie": 47724, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196418, + "fields": { + "id_car_serie": 47724, + "name": "2.0 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196419, + "fields": { + "id_car_serie": 47724, + "name": "2.0 4MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196420, + "fields": { + "id_car_serie": 47724, + "name": "2.0 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196421, + "fields": { + "id_car_serie": 47724, + "name": "2.0 4MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196422, + "fields": { + "id_car_serie": 47724, + "name": "2.0 5MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196423, + "fields": { + "id_car_serie": 47724, + "name": "2.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196424, + "fields": { + "id_car_serie": 47724, + "name": "2.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196426, + "fields": { + "id_car_serie": 47724, + "name": "2.8 5MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196427, + "fields": { + "id_car_serie": 47724, + "name": "2.8 4MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196428, + "fields": { + "id_car_serie": 47724, + "name": "2.8 5MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196429, + "fields": { + "id_car_serie": 47724, + "name": "2.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196430, + "fields": { + "id_car_serie": 47725, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196431, + "fields": { + "id_car_serie": 47725, + "name": "2.0 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196432, + "fields": { + "id_car_serie": 47725, + "name": "2.0 4MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196433, + "fields": { + "id_car_serie": 47725, + "name": "2.0 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196434, + "fields": { + "id_car_serie": 47725, + "name": "2.0 4MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196435, + "fields": { + "id_car_serie": 47725, + "name": "2.0 5MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196436, + "fields": { + "id_car_serie": 47725, + "name": "2.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196438, + "fields": { + "id_car_serie": 47725, + "name": "2.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196439, + "fields": { + "id_car_serie": 47725, + "name": "2.8 4MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196440, + "fields": { + "id_car_serie": 47725, + "name": "2.8 5MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196441, + "fields": { + "id_car_serie": 47725, + "name": "2.8 4MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196442, + "fields": { + "id_car_serie": 47726, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196443, + "fields": { + "id_car_serie": 47726, + "name": "2.0 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196444, + "fields": { + "id_car_serie": 47726, + "name": "2.0 4MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196445, + "fields": { + "id_car_serie": 47726, + "name": "2.0 4MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196446, + "fields": { + "id_car_serie": 47726, + "name": "2.0 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196447, + "fields": { + "id_car_serie": 47726, + "name": "2.0 5MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196448, + "fields": { + "id_car_serie": 47726, + "name": "2.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": 1987, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196449, + "fields": { + "id_car_serie": 47726, + "name": "2.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196451, + "fields": { + "id_car_serie": 47726, + "name": "2.8 4MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196452, + "fields": { + "id_car_serie": 47726, + "name": "2.8 5MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196453, + "fields": { + "id_car_serie": 47726, + "name": "2.8 4MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196454, + "fields": { + "id_car_serie": 47727, + "name": "2.0 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196455, + "fields": { + "id_car_serie": 47727, + "name": "2.0 5MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196456, + "fields": { + "id_car_serie": 47727, + "name": "2.0 4MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196457, + "fields": { + "id_car_serie": 47728, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196458, + "fields": { + "id_car_serie": 47728, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196459, + "fields": { + "id_car_serie": 47728, + "name": "2.0 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196460, + "fields": { + "id_car_serie": 47728, + "name": "2.0 5MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196461, + "fields": { + "id_car_serie": 47728, + "name": "2.0 4MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196462, + "fields": { + "id_car_serie": 47729, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196463, + "fields": { + "id_car_serie": 47729, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196464, + "fields": { + "id_car_serie": 47729, + "name": "2.0 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196465, + "fields": { + "id_car_serie": 47729, + "name": "2.0 5MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196466, + "fields": { + "id_car_serie": 47729, + "name": "2.0 4MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196467, + "fields": { + "id_car_serie": 47730, + "name": "2.5 Turbo Hydra-Matic (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196468, + "fields": { + "id_car_serie": 47730, + "name": "2.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196469, + "fields": { + "id_car_serie": 47730, + "name": "2.8 Turbo Hydra-Matic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196470, + "fields": { + "id_car_serie": 47730, + "name": "2.8 Turbo Hydra-Matic Overdrive (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196471, + "fields": { + "id_car_serie": 47730, + "name": "2.8 Turbo Hydra-Matic Overdrive (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196472, + "fields": { + "id_car_serie": 47730, + "name": "2.8 Turbo Hydra-Matic (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196473, + "fields": { + "id_car_serie": 47730, + "name": "4.3 D Turbo Hydra-Matic Overdrive (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196474, + "fields": { + "id_car_serie": 47730, + "name": "4.3 D Turbo Hydra-Matic (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196475, + "fields": { + "id_car_serie": 47730, + "name": "4.3 D MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196476, + "fields": { + "id_car_serie": 47731, + "name": "2.5 Turbo Hydra-Matic (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196477, + "fields": { + "id_car_serie": 47731, + "name": "2.5 Turbo Hydra-Matic (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196478, + "fields": { + "id_car_serie": 47731, + "name": "2.8 Turbo Hydra-Matic (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196479, + "fields": { + "id_car_serie": 47731, + "name": "4.3 D Turbo Hydra-Matic Overdrive (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196480, + "fields": { + "id_car_serie": 47731, + "name": "4.3 D Turbo Hydra-Matic (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196481, + "fields": { + "id_car_serie": 47732, + "name": "1.0i MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196482, + "fields": { + "id_car_serie": 47732, + "name": "1.4i MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196483, + "fields": { + "id_car_serie": 47733, + "name": "1.0i MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196484, + "fields": { + "id_car_serie": 47733, + "name": "1.4i MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196485, + "fields": { + "id_car_serie": 47734, + "name": "1.0i MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196486, + "fields": { + "id_car_serie": 47734, + "name": "1.0i MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196487, + "fields": { + "id_car_serie": 47734, + "name": "1.4i MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196488, + "fields": { + "id_car_serie": 47735, + "name": "1.0i MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196489, + "fields": { + "id_car_serie": 47735, + "name": "1.4i MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196490, + "fields": { + "id_car_serie": 47736, + "name": "1.6 AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196491, + "fields": { + "id_car_serie": 47736, + "name": "1.6 4MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196492, + "fields": { + "id_car_serie": 47736, + "name": "1.6 5MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196493, + "fields": { + "id_car_serie": 47736, + "name": "1.8 D AT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196494, + "fields": { + "id_car_serie": 47736, + "name": "1.8 D MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196495, + "fields": { + "id_car_serie": 47737, + "name": "1.6 AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196496, + "fields": { + "id_car_serie": 47737, + "name": "1.6 AT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196497, + "fields": { + "id_car_serie": 47737, + "name": "1.6 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196498, + "fields": { + "id_car_serie": 47737, + "name": "1.6 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196499, + "fields": { + "id_car_serie": 47737, + "name": "1.6 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196500, + "fields": { + "id_car_serie": 47737, + "name": "1.6 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196501, + "fields": { + "id_car_serie": 47737, + "name": "1.8 D AT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196502, + "fields": { + "id_car_serie": 47737, + "name": "1.8 D MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196503, + "fields": { + "id_car_serie": 47738, + "name": "1.6 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196504, + "fields": { + "id_car_serie": 47738, + "name": "1.6 AT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196505, + "fields": { + "id_car_serie": 47738, + "name": "1.6 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196506, + "fields": { + "id_car_serie": 47738, + "name": "1.6 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196507, + "fields": { + "id_car_serie": 47739, + "name": "1.6 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196508, + "fields": { + "id_car_serie": 47739, + "name": "1.6 AT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196509, + "fields": { + "id_car_serie": 47739, + "name": "1.6 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196510, + "fields": { + "id_car_serie": 47739, + "name": "1.6 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196511, + "fields": { + "id_car_serie": 47740, + "name": "1.6 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196512, + "fields": { + "id_car_serie": 47740, + "name": "1.6 AT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196513, + "fields": { + "id_car_serie": 47740, + "name": "1.6 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196514, + "fields": { + "id_car_serie": 47740, + "name": "1.6 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196515, + "fields": { + "id_car_serie": 47741, + "name": "1.6 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196516, + "fields": { + "id_car_serie": 47741, + "name": "1.6 AT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196517, + "fields": { + "id_car_serie": 47741, + "name": "1.6 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196518, + "fields": { + "id_car_serie": 47741, + "name": "1.6 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196519, + "fields": { + "id_car_serie": 47742, + "name": "1.4 Turbo Hydra-Matic (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196520, + "fields": { + "id_car_serie": 47742, + "name": "1.4 Turbo Hydra-Matic (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196521, + "fields": { + "id_car_serie": 47742, + "name": "1.4 MT 4-seat (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196522, + "fields": { + "id_car_serie": 47742, + "name": "1.4 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196523, + "fields": { + "id_car_serie": 47742, + "name": "1.4 MT 2-seat (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196524, + "fields": { + "id_car_serie": 47742, + "name": "1.6 Turbo Hydra-Matic (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196525, + "fields": { + "id_car_serie": 47742, + "name": "1.6 Turbo Hydra-Matic (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196526, + "fields": { + "id_car_serie": 47742, + "name": "1.6 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196527, + "fields": { + "id_car_serie": 47742, + "name": "1.6 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196528, + "fields": { + "id_car_serie": 47743, + "name": "2.5 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196529, + "fields": { + "id_car_serie": 47743, + "name": "2.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196530, + "fields": { + "id_car_serie": 47743, + "name": "2.5 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196532, + "fields": { + "id_car_serie": 47743, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196534, + "fields": { + "id_car_serie": 47743, + "name": "2.5 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196535, + "fields": { + "id_car_serie": 47743, + "name": "2.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196536, + "fields": { + "id_car_serie": 47743, + "name": "2.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196537, + "fields": { + "id_car_serie": 47743, + "name": "2.8 X11 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196538, + "fields": { + "id_car_serie": 47743, + "name": "2.8 X11 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196539, + "fields": { + "id_car_serie": 47743, + "name": "2.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196540, + "fields": { + "id_car_serie": 47743, + "name": "2.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196541, + "fields": { + "id_car_serie": 47743, + "name": "2.8 X11 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196542, + "fields": { + "id_car_serie": 47743, + "name": "2.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196543, + "fields": { + "id_car_serie": 47743, + "name": "2.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196544, + "fields": { + "id_car_serie": 47743, + "name": "2.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196545, + "fields": { + "id_car_serie": 47743, + "name": "2.8 X11 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196546, + "fields": { + "id_car_serie": 47743, + "name": "2.8 X11 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196547, + "fields": { + "id_car_serie": 47743, + "name": "2.8 X11 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196548, + "fields": { + "id_car_serie": 47744, + "name": "2.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196549, + "fields": { + "id_car_serie": 47744, + "name": "2.5 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196551, + "fields": { + "id_car_serie": 47744, + "name": "2.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196552, + "fields": { + "id_car_serie": 47744, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196554, + "fields": { + "id_car_serie": 47744, + "name": "2.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196555, + "fields": { + "id_car_serie": 47744, + "name": "2.8 X11 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196556, + "fields": { + "id_car_serie": 47744, + "name": "2.8 X11 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196557, + "fields": { + "id_car_serie": 47744, + "name": "2.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196558, + "fields": { + "id_car_serie": 47744, + "name": "2.8 X11 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196559, + "fields": { + "id_car_serie": 47744, + "name": "2.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196560, + "fields": { + "id_car_serie": 47744, + "name": "2.8 X11 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196561, + "fields": { + "id_car_serie": 47744, + "name": "2.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196562, + "fields": { + "id_car_serie": 47748, + "name": "2.2 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196563, + "fields": { + "id_car_serie": 47748, + "name": "2.2 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196564, + "fields": { + "id_car_serie": 47748, + "name": "2.2 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196565, + "fields": { + "id_car_serie": 47748, + "name": "2.2 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196566, + "fields": { + "id_car_serie": 47748, + "name": "2.4 SS AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196567, + "fields": { + "id_car_serie": 47748, + "name": "2.4 SS MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196568, + "fields": { + "id_car_serie": 47749, + "name": "2.2 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196569, + "fields": { + "id_car_serie": 47749, + "name": "2.2 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196570, + "fields": { + "id_car_serie": 47749, + "name": "2.2 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196571, + "fields": { + "id_car_serie": 47749, + "name": "2.2 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196572, + "fields": { + "id_car_serie": 47750, + "name": "2.0 Supercharged MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196573, + "fields": { + "id_car_serie": 47750, + "name": "2.4 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196574, + "fields": { + "id_car_serie": 47750, + "name": "2.4 MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196575, + "fields": { + "id_car_serie": 47751, + "name": "1.6 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196576, + "fields": { + "id_car_serie": 47751, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196578, + "fields": { + "id_car_serie": 47751, + "name": "1.6 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196579, + "fields": { + "id_car_serie": 47752, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196580, + "fields": { + "id_car_serie": 47752, + "name": "1.0 Flexfuel MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196581, + "fields": { + "id_car_serie": 47752, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196582, + "fields": { + "id_car_serie": 47752, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196583, + "fields": { + "id_car_serie": 47752, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196585, + "fields": { + "id_car_serie": 47753, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196586, + "fields": { + "id_car_serie": 47753, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196587, + "fields": { + "id_car_serie": 47753, + "name": "1.0 Flexfuel MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196588, + "fields": { + "id_car_serie": 47753, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196589, + "fields": { + "id_car_serie": 47753, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196590, + "fields": { + "id_car_serie": 47753, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196591, + "fields": { + "id_car_serie": 47753, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196592, + "fields": { + "id_car_serie": 47753, + "name": "1.7 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196593, + "fields": { + "id_car_serie": 47754, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196594, + "fields": { + "id_car_serie": 47754, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196595, + "fields": { + "id_car_serie": 47754, + "name": "2.2 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196596, + "fields": { + "id_car_serie": 47754, + "name": "2.2 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196597, + "fields": { + "id_car_serie": 47754, + "name": "2.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196598, + "fields": { + "id_car_serie": 47754, + "name": "2.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196599, + "fields": { + "id_car_serie": 47754, + "name": "3.1 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196600, + "fields": { + "id_car_serie": 47754, + "name": "3.1 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196601, + "fields": { + "id_car_serie": 47754, + "name": "3.1 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196602, + "fields": { + "id_car_serie": 47754, + "name": "3.1 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196603, + "fields": { + "id_car_serie": 47755, + "name": "6.2 AT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196604, + "fields": { + "id_car_serie": 47755, + "name": "6.2 AT (436 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196605, + "fields": { + "id_car_serie": 47755, + "name": "6.2 MT (436 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196606, + "fields": { + "id_car_serie": 47755, + "name": "6.2 MT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196607, + "fields": { + "id_car_serie": 47756, + "name": "7.0 MT (505 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196608, + "fields": { + "id_car_serie": 47757, + "name": "6.2 AT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196609, + "fields": { + "id_car_serie": 47757, + "name": "6.2 AT (436 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196610, + "fields": { + "id_car_serie": 47757, + "name": "6.2 MT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196611, + "fields": { + "id_car_serie": 47757, + "name": "6.2 MT (436 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196612, + "fields": { + "id_car_serie": 47758, + "name": "6.2 MT (648 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196613, + "fields": { + "id_car_serie": 47759, + "name": "6.2 AT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196614, + "fields": { + "id_car_serie": 47759, + "name": "6.2 AT (436 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196615, + "fields": { + "id_car_serie": 47759, + "name": "6.2 MT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196616, + "fields": { + "id_car_serie": 47759, + "name": "6.2 MT (436 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196617, + "fields": { + "id_car_serie": 47762, + "name": "5.7 MT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196618, + "fields": { + "id_car_serie": 47763, + "name": "5.7 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196619, + "fields": { + "id_car_serie": 47763, + "name": "5.7 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196620, + "fields": { + "id_car_serie": 47763, + "name": "5.7 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196621, + "fields": { + "id_car_serie": 47763, + "name": "5.7 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196622, + "fields": { + "id_car_serie": 47764, + "name": "5.7 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196623, + "fields": { + "id_car_serie": 47764, + "name": "5.7 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196624, + "fields": { + "id_car_serie": 47764, + "name": "5.7 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196625, + "fields": { + "id_car_serie": 47764, + "name": "5.7 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196626, + "fields": { + "id_car_serie": 47765, + "name": "5.7 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196627, + "fields": { + "id_car_serie": 47765, + "name": "5.7 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196628, + "fields": { + "id_car_serie": 47766, + "name": "5.7 AT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196629, + "fields": { + "id_car_serie": 47766, + "name": "5.7 MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196630, + "fields": { + "id_car_serie": 47767, + "name": "5.0 Turbo Hydra-Matic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196631, + "fields": { + "id_car_serie": 47767, + "name": "5.0 4MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196632, + "fields": { + "id_car_serie": 47767, + "name": "5.7 Turbo Hydra-Matic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196633, + "fields": { + "id_car_serie": 47767, + "name": "5.7 Turbo Hydra-Matic (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196634, + "fields": { + "id_car_serie": 47767, + "name": "5.7 4MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196635, + "fields": { + "id_car_serie": 47767, + "name": "5.7 4MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196636, + "fields": { + "id_car_serie": 47768, + "name": "5.7 Turbo Hydra-Matic (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196637, + "fields": { + "id_car_serie": 47768, + "name": "5.7 4MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196638, + "fields": { + "id_car_serie": 47769, + "name": "5.7 Turbo Hydra-Matic (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196639, + "fields": { + "id_car_serie": 47769, + "name": "5.7 Turbo Hydra-Matic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196640, + "fields": { + "id_car_serie": 47769, + "name": "5.7 Turbo Hydra-Matic (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196641, + "fields": { + "id_car_serie": 47769, + "name": "5.7 Turbo Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196642, + "fields": { + "id_car_serie": 47769, + "name": "5.7 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196643, + "fields": { + "id_car_serie": 47769, + "name": "5.7 4MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196644, + "fields": { + "id_car_serie": 47769, + "name": "5.7 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196645, + "fields": { + "id_car_serie": 47769, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196646, + "fields": { + "id_car_serie": 47769, + "name": "5.7 4MT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196647, + "fields": { + "id_car_serie": 47769, + "name": "5.7 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196648, + "fields": { + "id_car_serie": 47770, + "name": "5.7 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196649, + "fields": { + "id_car_serie": 47770, + "name": "5.7 Turbo Hydra-Matic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196650, + "fields": { + "id_car_serie": 47770, + "name": "5.7 Turbo Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196651, + "fields": { + "id_car_serie": 47770, + "name": "5.7 Turbo Hydra-Matic (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196652, + "fields": { + "id_car_serie": 47770, + "name": "5.7 Turbo Hydra-Matic (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196653, + "fields": { + "id_car_serie": 47770, + "name": "5.7 4MT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196654, + "fields": { + "id_car_serie": 47770, + "name": "5.7 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196655, + "fields": { + "id_car_serie": 47770, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196656, + "fields": { + "id_car_serie": 47770, + "name": "5.7 4MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196657, + "fields": { + "id_car_serie": 47770, + "name": "5.7 4Syncro-Mesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196658, + "fields": { + "id_car_serie": 47771, + "name": "5.7 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196659, + "fields": { + "id_car_serie": 47771, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196660, + "fields": { + "id_car_serie": 47771, + "name": "5.7 4MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196661, + "fields": { + "id_car_serie": 47771, + "name": "5.7 4MT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196662, + "fields": { + "id_car_serie": 47771, + "name": "5.7 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196663, + "fields": { + "id_car_serie": 47771, + "name": "5.7 4MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196664, + "fields": { + "id_car_serie": 47771, + "name": "5.7 4MT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196665, + "fields": { + "id_car_serie": 47771, + "name": "7.4 Turbo Hydra-Matic (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196666, + "fields": { + "id_car_serie": 47771, + "name": "7.4 Turbo Hydra-Matic (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196667, + "fields": { + "id_car_serie": 47771, + "name": "7.4 Turbo Hydra-Matic (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196668, + "fields": { + "id_car_serie": 47771, + "name": "7.4 Turbo Hydra-Matic (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196669, + "fields": { + "id_car_serie": 47771, + "name": "7.4 4MT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196670, + "fields": { + "id_car_serie": 47771, + "name": "7.4 4MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196671, + "fields": { + "id_car_serie": 47771, + "name": "7.4 4MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196672, + "fields": { + "id_car_serie": 47771, + "name": "7.4 4MT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196673, + "fields": { + "id_car_serie": 47772, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196674, + "fields": { + "id_car_serie": 47772, + "name": "5.7 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196675, + "fields": { + "id_car_serie": 47772, + "name": "5.7 4MT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196676, + "fields": { + "id_car_serie": 47772, + "name": "5.7 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196677, + "fields": { + "id_car_serie": 47772, + "name": "5.7 4MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196678, + "fields": { + "id_car_serie": 47772, + "name": "5.7 4MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196679, + "fields": { + "id_car_serie": 47772, + "name": "5.7 4MT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196680, + "fields": { + "id_car_serie": 47772, + "name": "7.4 Turbo Hydra-Matic (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196681, + "fields": { + "id_car_serie": 47772, + "name": "7.4 Turbo Hydra-Matic (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196682, + "fields": { + "id_car_serie": 47772, + "name": "7.4 Turbo Hydra-Matic (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196683, + "fields": { + "id_car_serie": 47772, + "name": "7.4 Turbo Hydra-Matic (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196684, + "fields": { + "id_car_serie": 47772, + "name": "7.4 4MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196685, + "fields": { + "id_car_serie": 47772, + "name": "7.4 4MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196686, + "fields": { + "id_car_serie": 47772, + "name": "7.4 4MT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196687, + "fields": { + "id_car_serie": 47772, + "name": "7.4 4MT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196688, + "fields": { + "id_car_serie": 47773, + "name": "5.4 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196689, + "fields": { + "id_car_serie": 47773, + "name": "5.4 4MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196690, + "fields": { + "id_car_serie": 47773, + "name": "5.4 Special MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196691, + "fields": { + "id_car_serie": 47773, + "name": "5.4 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196692, + "fields": { + "id_car_serie": 47773, + "name": "5.4 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196693, + "fields": { + "id_car_serie": 47773, + "name": "7.0 Turbo Hydra-Matic (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196694, + "fields": { + "id_car_serie": 47773, + "name": "7.0 Turbo Hydra-Matic (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196695, + "fields": { + "id_car_serie": 47773, + "name": "7.0 Turbo Hydra-Matic (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196696, + "fields": { + "id_car_serie": 47773, + "name": "7.0 Heavy-Duty (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196697, + "fields": { + "id_car_serie": 47773, + "name": "7.0 4MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196698, + "fields": { + "id_car_serie": 47773, + "name": "7.0 4MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196699, + "fields": { + "id_car_serie": 47773, + "name": "7.0 Special MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196700, + "fields": { + "id_car_serie": 47773, + "name": "7.0 Special MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196701, + "fields": { + "id_car_serie": 47773, + "name": "7.0 Special MT (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196702, + "fields": { + "id_car_serie": 47774, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196703, + "fields": { + "id_car_serie": 47774, + "name": "5.4 3Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196704, + "fields": { + "id_car_serie": 47774, + "name": "5.4 4Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196705, + "fields": { + "id_car_serie": 47774, + "name": "5.4 4Syncro-Mesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196706, + "fields": { + "id_car_serie": 47774, + "name": "7.0 Powerglide (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196707, + "fields": { + "id_car_serie": 47774, + "name": "7.0 Powerglide (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196708, + "fields": { + "id_car_serie": 47774, + "name": "7.0 4Syncro-Mesh (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196709, + "fields": { + "id_car_serie": 47774, + "name": "7.0 4Syncro-Mesh (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196710, + "fields": { + "id_car_serie": 47774, + "name": "7.0 4Syncro-Mesh (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196711, + "fields": { + "id_car_serie": 47775, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196712, + "fields": { + "id_car_serie": 47775, + "name": "5.4 3Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196713, + "fields": { + "id_car_serie": 47775, + "name": "5.4 4Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196714, + "fields": { + "id_car_serie": 47775, + "name": "5.4 4Syncro-Mesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196715, + "fields": { + "id_car_serie": 47775, + "name": "7.0 Powerglide (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196716, + "fields": { + "id_car_serie": 47775, + "name": "7.0 Powerglide (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196717, + "fields": { + "id_car_serie": 47775, + "name": "7.0 4Syncro-Mesh (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196718, + "fields": { + "id_car_serie": 47775, + "name": "7.0 4Syncro-Mesh (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196719, + "fields": { + "id_car_serie": 47775, + "name": "7.0 4Syncro-Mesh (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196720, + "fields": { + "id_car_serie": 47776, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196721, + "fields": { + "id_car_serie": 47776, + "name": "5.4 3Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196722, + "fields": { + "id_car_serie": 47776, + "name": "5.4 4Syncro-Mesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196723, + "fields": { + "id_car_serie": 47776, + "name": "5.4 4Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196724, + "fields": { + "id_car_serie": 47776, + "name": "7.0 Powerglide (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196725, + "fields": { + "id_car_serie": 47776, + "name": "7.0 Powerglide (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196726, + "fields": { + "id_car_serie": 47776, + "name": "7.0 4Syncro-Mesh (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196727, + "fields": { + "id_car_serie": 47776, + "name": "7.0 4Syncro-Mesh (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196728, + "fields": { + "id_car_serie": 47776, + "name": "7.0 4Syncro-Mesh (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196729, + "fields": { + "id_car_serie": 47777, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196730, + "fields": { + "id_car_serie": 47777, + "name": "5.4 4Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196731, + "fields": { + "id_car_serie": 47777, + "name": "5.4 3Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196732, + "fields": { + "id_car_serie": 47777, + "name": "5.4 4Syncro-Mesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196733, + "fields": { + "id_car_serie": 47777, + "name": "7.0 4Syncro-Mesh (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196734, + "fields": { + "id_car_serie": 47777, + "name": "7.0 4Syncro-Mesh (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196735, + "fields": { + "id_car_serie": 47777, + "name": "7.0 Heavy-Duty (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196736, + "fields": { + "id_car_serie": 47778, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196737, + "fields": { + "id_car_serie": 47778, + "name": "5.4 4Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196738, + "fields": { + "id_car_serie": 47778, + "name": "5.4 4Syncro-Mesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196739, + "fields": { + "id_car_serie": 47778, + "name": "5.4 3Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196740, + "fields": { + "id_car_serie": 47778, + "name": "7.0 4Syncro-Mesh (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196741, + "fields": { + "id_car_serie": 47778, + "name": "7.0 Heavy-Duty (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196742, + "fields": { + "id_car_serie": 47778, + "name": "7.0 4Syncro-Mesh (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196743, + "fields": { + "id_car_serie": 47779, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196744, + "fields": { + "id_car_serie": 47779, + "name": "5.4 4Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196745, + "fields": { + "id_car_serie": 47779, + "name": "5.4 4Syncro-Mesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196746, + "fields": { + "id_car_serie": 47779, + "name": "5.4 3Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196747, + "fields": { + "id_car_serie": 47779, + "name": "7.0 4Syncro-Mesh (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196748, + "fields": { + "id_car_serie": 47779, + "name": "7.0 4Syncro-Mesh (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196749, + "fields": { + "id_car_serie": 47779, + "name": "7.0 Heavy-Duty (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196750, + "fields": { + "id_car_serie": 47780, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196751, + "fields": { + "id_car_serie": 47780, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196752, + "fields": { + "id_car_serie": 47780, + "name": "5.4 4Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196753, + "fields": { + "id_car_serie": 47780, + "name": "5.4 4Syncro-Mesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196754, + "fields": { + "id_car_serie": 47780, + "name": "5.4 3Syncro-Mesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196755, + "fields": { + "id_car_serie": 47780, + "name": "5.4 4Syncro-Mesh (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196756, + "fields": { + "id_car_serie": 47780, + "name": "5.4 4Syncro-Mesh (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196757, + "fields": { + "id_car_serie": 47780, + "name": "5.4 4Syncro-Mesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196758, + "fields": { + "id_car_serie": 47781, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196759, + "fields": { + "id_car_serie": 47781, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196760, + "fields": { + "id_car_serie": 47781, + "name": "5.4 4Syncro-Mesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196761, + "fields": { + "id_car_serie": 47781, + "name": "5.4 4Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196762, + "fields": { + "id_car_serie": 47781, + "name": "5.4 4Syncro-Mesh (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196763, + "fields": { + "id_car_serie": 47781, + "name": "5.4 3Syncro-Mesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196764, + "fields": { + "id_car_serie": 47781, + "name": "5.4 4Syncro-Mesh (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196765, + "fields": { + "id_car_serie": 47781, + "name": "5.4 4Syncro-Mesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196766, + "fields": { + "id_car_serie": 47782, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196767, + "fields": { + "id_car_serie": 47782, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196768, + "fields": { + "id_car_serie": 47782, + "name": "5.4 3Syncro-Mesh (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196769, + "fields": { + "id_car_serie": 47782, + "name": "5.4 3Syncro-Mesh (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196770, + "fields": { + "id_car_serie": 47782, + "name": "5.4 4Syncro-Mesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196771, + "fields": { + "id_car_serie": 47782, + "name": "5.4 3Syncro-Mesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196772, + "fields": { + "id_car_serie": 47782, + "name": "5.4 4Syncro-Mesh (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196773, + "fields": { + "id_car_serie": 47782, + "name": "5.4 4Syncro-Mesh (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196774, + "fields": { + "id_car_serie": 47782, + "name": "5.4 4Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196775, + "fields": { + "id_car_serie": 47782, + "name": "5.4 3Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196776, + "fields": { + "id_car_serie": 47783, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196777, + "fields": { + "id_car_serie": 47783, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196778, + "fields": { + "id_car_serie": 47783, + "name": "5.4 3Syncro-Mesh (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196779, + "fields": { + "id_car_serie": 47783, + "name": "5.4 3Syncro-Mesh (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196780, + "fields": { + "id_car_serie": 47783, + "name": "5.4 4Syncro-Mesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196781, + "fields": { + "id_car_serie": 47783, + "name": "5.4 3Syncro-Mesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196782, + "fields": { + "id_car_serie": 47783, + "name": "5.4 4Syncro-Mesh (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196783, + "fields": { + "id_car_serie": 47783, + "name": "5.4 4Syncro-Mesh (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196784, + "fields": { + "id_car_serie": 47783, + "name": "5.4 4Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196785, + "fields": { + "id_car_serie": 47783, + "name": "5.4 3Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196786, + "fields": { + "id_car_serie": 47784, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196787, + "fields": { + "id_car_serie": 47784, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196788, + "fields": { + "id_car_serie": 47784, + "name": "5.4 3Syncro-Mesh (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196789, + "fields": { + "id_car_serie": 47784, + "name": "5.4 4Syncro-Mesh (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196790, + "fields": { + "id_car_serie": 47784, + "name": "5.4 3Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196791, + "fields": { + "id_car_serie": 47784, + "name": "5.4 4Syncro-Mesh (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196792, + "fields": { + "id_car_serie": 47784, + "name": "5.4 3Syncro-Mesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196793, + "fields": { + "id_car_serie": 47784, + "name": "5.4 4Syncro-Mesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196794, + "fields": { + "id_car_serie": 47784, + "name": "5.4 4Syncro-Mesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196795, + "fields": { + "id_car_serie": 47784, + "name": "5.4 3Syncro-Mesh (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196796, + "fields": { + "id_car_serie": 47785, + "name": "4.6 Powerglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196797, + "fields": { + "id_car_serie": 47785, + "name": "4.6 Powerglide (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196798, + "fields": { + "id_car_serie": 47785, + "name": "4.6 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196799, + "fields": { + "id_car_serie": 47785, + "name": "4.6 Powerglide (283 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196800, + "fields": { + "id_car_serie": 47785, + "name": "4.6 Syncro-Mesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196801, + "fields": { + "id_car_serie": 47785, + "name": "4.6 Syncro-Mesh (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196802, + "fields": { + "id_car_serie": 47785, + "name": "4.6 Syncro-Mesh (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196803, + "fields": { + "id_car_serie": 47785, + "name": "4.6 Syncro-Mesh (283 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196804, + "fields": { + "id_car_serie": 47786, + "name": "4.3 Powerglide (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196805, + "fields": { + "id_car_serie": 47786, + "name": "4.3 Powerglide (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196806, + "fields": { + "id_car_serie": 47786, + "name": "4.3 Syncro-Mesh (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196807, + "fields": { + "id_car_serie": 47786, + "name": "4.3 Syncro-Mesh (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196808, + "fields": { + "id_car_serie": 47786, + "name": "4.6 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196809, + "fields": { + "id_car_serie": 47786, + "name": "4.6 Powerglide (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196810, + "fields": { + "id_car_serie": 47786, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196811, + "fields": { + "id_car_serie": 47786, + "name": "4.6 Syncro-Mesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196812, + "fields": { + "id_car_serie": 47786, + "name": "4.6 Syncro-Mesh (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196813, + "fields": { + "id_car_serie": 47786, + "name": "4.6 Syncro-Mesh (283 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196814, + "fields": { + "id_car_serie": 47786, + "name": "4.6 Syncro-Mesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196815, + "fields": { + "id_car_serie": 47786, + "name": "4.6 Syncro-Mesh (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196816, + "fields": { + "id_car_serie": 47787, + "name": "3.9 Powerglide (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196817, + "fields": { + "id_car_serie": 47787, + "name": "4.3 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196818, + "fields": { + "id_car_serie": 47788, + "name": "4.3 AT 1500 (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196819, + "fields": { + "id_car_serie": 47788, + "name": "4.3 AT 1500 (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196820, + "fields": { + "id_car_serie": 47788, + "name": "4.8 Flexfuel AT 3500 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196821, + "fields": { + "id_car_serie": 47788, + "name": "4.8 AT Extended 2500 (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196822, + "fields": { + "id_car_serie": 47788, + "name": "4.8 AT 2500 (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196823, + "fields": { + "id_car_serie": 47788, + "name": "4.8 AT Flexfuel Extended 2500 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196824, + "fields": { + "id_car_serie": 47788, + "name": "4.8 AT Flexfuel 2500 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196825, + "fields": { + "id_car_serie": 47788, + "name": "4.8 Flexfuel AT Extended 3500 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196826, + "fields": { + "id_car_serie": 47788, + "name": "5.3 AT 1500 (289 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196827, + "fields": { + "id_car_serie": 47788, + "name": "5.3 Flexfuel AT AWD 1500 (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196828, + "fields": { + "id_car_serie": 47788, + "name": "5.3 Flexfuel AT 1500 (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196829, + "fields": { + "id_car_serie": 47788, + "name": "6.0 AT Extended 2500 (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196830, + "fields": { + "id_car_serie": 47788, + "name": "6.0 Flexfuel AT Extended 3500 (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196831, + "fields": { + "id_car_serie": 47788, + "name": "6.0 Flexfuel AT 3500 (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196832, + "fields": { + "id_car_serie": 47788, + "name": "6.0 AT Flexfuel Extended 2500 (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196833, + "fields": { + "id_car_serie": 47788, + "name": "6.0 AT 3500 (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196834, + "fields": { + "id_car_serie": 47788, + "name": "6.0 AT Extended 3500 (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196835, + "fields": { + "id_car_serie": 47788, + "name": "6.0 AT 2500 (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196836, + "fields": { + "id_car_serie": 47788, + "name": "6.0 Flexfuel AT 2500 (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196837, + "fields": { + "id_car_serie": 47788, + "name": "6.6 TD AT 2500 (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196838, + "fields": { + "id_car_serie": 47788, + "name": "6.6 TD AT 2500 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196839, + "fields": { + "id_car_serie": 47788, + "name": "6.6 TD AT Extended 3500 (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196840, + "fields": { + "id_car_serie": 47788, + "name": "6.6 TD AT Extended 2500 (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196841, + "fields": { + "id_car_serie": 47788, + "name": "6.6 TD AT 3500 (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196876, + "fields": { + "id_car_serie": 47793, + "name": "2.0 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196877, + "fields": { + "id_car_serie": 47793, + "name": "2.0 MT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196879, + "fields": { + "id_car_serie": 47794, + "name": "2.2 Ecotec AT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196880, + "fields": { + "id_car_serie": 47794, + "name": "2.2 Ecotec MT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196883, + "fields": { + "id_car_serie": 47794, + "name": "2.4 Ecotec AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196884, + "fields": { + "id_car_serie": 47794, + "name": "2.4 Ecotec MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196886, + "fields": { + "id_car_serie": 47795, + "name": "5.3 AT (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196887, + "fields": { + "id_car_serie": 47796, + "name": "3.8 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196888, + "fields": { + "id_car_serie": 47797, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196889, + "fields": { + "id_car_serie": 47797, + "name": "3.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196890, + "fields": { + "id_car_serie": 47797, + "name": "4.4 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196891, + "fields": { + "id_car_serie": 47797, + "name": "5.0 AT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196892, + "fields": { + "id_car_serie": 47798, + "name": "3.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196893, + "fields": { + "id_car_serie": 47798, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196894, + "fields": { + "id_car_serie": 47798, + "name": "4.4 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196895, + "fields": { + "id_car_serie": 47798, + "name": "5.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196896, + "fields": { + "id_car_serie": 47798, + "name": "5.7 D AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196897, + "fields": { + "id_car_serie": 47799, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196898, + "fields": { + "id_car_serie": 47799, + "name": "3.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196899, + "fields": { + "id_car_serie": 47799, + "name": "4.4 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196900, + "fields": { + "id_car_serie": 47799, + "name": "5.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196901, + "fields": { + "id_car_serie": 47799, + "name": "5.7 D AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196902, + "fields": { + "id_car_serie": 47800, + "name": "4.1 Turbo Hydra-Matic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196903, + "fields": { + "id_car_serie": 47800, + "name": "5.0 Turbo Hydra-Matic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196904, + "fields": { + "id_car_serie": 47800, + "name": "5.7 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196905, + "fields": { + "id_car_serie": 47801, + "name": "4.1 Turbo Hydra-Matic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196906, + "fields": { + "id_car_serie": 47801, + "name": "5.0 Turbo Hydra-Matic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196907, + "fields": { + "id_car_serie": 47801, + "name": "5.7 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196908, + "fields": { + "id_car_serie": 47802, + "name": "4.1 Turbo Hydra-Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196909, + "fields": { + "id_car_serie": 47802, + "name": "5.0 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196910, + "fields": { + "id_car_serie": 47802, + "name": "5.7 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196911, + "fields": { + "id_car_serie": 47803, + "name": "5.0 Turbo Hydra-Matic 2-seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196912, + "fields": { + "id_car_serie": 47803, + "name": "5.0 Turbo Hydra-Matic 3-seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196913, + "fields": { + "id_car_serie": 47803, + "name": "5.7 Turbo Hydra-Matic 2-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196914, + "fields": { + "id_car_serie": 47803, + "name": "5.7 Turbo Hydra-Matic 3-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196915, + "fields": { + "id_car_serie": 47804, + "name": "4.1 Turbo Hydra-Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196916, + "fields": { + "id_car_serie": 47804, + "name": "5.0 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196917, + "fields": { + "id_car_serie": 47804, + "name": "5.7 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196918, + "fields": { + "id_car_serie": 47805, + "name": "5.0 Turbo Hydra-Matic 2-seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196919, + "fields": { + "id_car_serie": 47805, + "name": "5.0 Turbo Hydra-Matic 3-seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196920, + "fields": { + "id_car_serie": 47805, + "name": "5.7 Turbo Hydra-Matic 2-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196921, + "fields": { + "id_car_serie": 47805, + "name": "5.7 Turbo Hydra-Matic 3-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196922, + "fields": { + "id_car_serie": 47806, + "name": "4.1 Turbo Hydra-Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196923, + "fields": { + "id_car_serie": 47806, + "name": "5.0 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196924, + "fields": { + "id_car_serie": 47806, + "name": "5.7 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196925, + "fields": { + "id_car_serie": 47807, + "name": "4.1 Turbo Hydra-Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196926, + "fields": { + "id_car_serie": 47807, + "name": "5.0 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196927, + "fields": { + "id_car_serie": 47807, + "name": "5.7 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196928, + "fields": { + "id_car_serie": 47808, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196929, + "fields": { + "id_car_serie": 47808, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196930, + "fields": { + "id_car_serie": 47808, + "name": "6.6 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196931, + "fields": { + "id_car_serie": 47808, + "name": "7.4 Turbo Hydra-Matic (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196932, + "fields": { + "id_car_serie": 47809, + "name": "6.6 Turbo Hydra-Matic 2-seat (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196933, + "fields": { + "id_car_serie": 47809, + "name": "6.6 Turbo Hydra-Matic 3-seat (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196934, + "fields": { + "id_car_serie": 47809, + "name": "7.4 Turbo Hydra-Matic 2-seat (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196935, + "fields": { + "id_car_serie": 47809, + "name": "7.4 Turbo Hydra-Matic 3-seat (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196936, + "fields": { + "id_car_serie": 47810, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196937, + "fields": { + "id_car_serie": 47810, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196938, + "fields": { + "id_car_serie": 47810, + "name": "6.6 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196939, + "fields": { + "id_car_serie": 47810, + "name": "7.4 Turbo Hydra-Matic (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196940, + "fields": { + "id_car_serie": 47811, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196941, + "fields": { + "id_car_serie": 47811, + "name": "5.7 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196942, + "fields": { + "id_car_serie": 47811, + "name": "6.6 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196943, + "fields": { + "id_car_serie": 47811, + "name": "7.4 Turbo Hydra-Matic (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196944, + "fields": { + "id_car_serie": 47812, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196945, + "fields": { + "id_car_serie": 47812, + "name": "5.7 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196946, + "fields": { + "id_car_serie": 47812, + "name": "6.6 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196947, + "fields": { + "id_car_serie": 47812, + "name": "7.4 Turbo Hydra-Matic (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196948, + "fields": { + "id_car_serie": 47813, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196949, + "fields": { + "id_car_serie": 47813, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196950, + "fields": { + "id_car_serie": 47813, + "name": "6.6 Turbo Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196951, + "fields": { + "id_car_serie": 47813, + "name": "6.6 Turbo Hydra-Matic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196952, + "fields": { + "id_car_serie": 47813, + "name": "7.4 Turbo Hydra-Matic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196953, + "fields": { + "id_car_serie": 47814, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196954, + "fields": { + "id_car_serie": 47814, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196955, + "fields": { + "id_car_serie": 47814, + "name": "6.6 Turbo Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196956, + "fields": { + "id_car_serie": 47814, + "name": "6.6 Turbo Hydra-Matic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196957, + "fields": { + "id_car_serie": 47814, + "name": "7.4 Turbo Hydra-Matic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196958, + "fields": { + "id_car_serie": 47815, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196959, + "fields": { + "id_car_serie": 47815, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196960, + "fields": { + "id_car_serie": 47815, + "name": "6.6 Turbo Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196961, + "fields": { + "id_car_serie": 47815, + "name": "6.6 Turbo Hydra-Matic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196962, + "fields": { + "id_car_serie": 47815, + "name": "7.4 Turbo Hydra-Matic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196963, + "fields": { + "id_car_serie": 47816, + "name": "6.6 Turbo Hydra-Matic 2-seat (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196964, + "fields": { + "id_car_serie": 47816, + "name": "6.6 Turbo Hydra-Matic 3-seat (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196965, + "fields": { + "id_car_serie": 47816, + "name": "7.4 Turbo Hydra-Matic 2-seat (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196966, + "fields": { + "id_car_serie": 47816, + "name": "7.4 Turbo Hydra-Matic 3-seat (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196967, + "fields": { + "id_car_serie": 47817, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196968, + "fields": { + "id_car_serie": 47817, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196969, + "fields": { + "id_car_serie": 47817, + "name": "6.6 Turbo Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196970, + "fields": { + "id_car_serie": 47817, + "name": "6.6 Turbo Hydra-Matic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196971, + "fields": { + "id_car_serie": 47817, + "name": "7.4 Turbo Hydra-Matic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196972, + "fields": { + "id_car_serie": 47818, + "name": "5.7 Turbo Hydra-Matic 2-seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196973, + "fields": { + "id_car_serie": 47818, + "name": "5.7 Turbo Hydra-Matic 3-seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196974, + "fields": { + "id_car_serie": 47818, + "name": "6.6 Turbo Hydra-Matic 2-seat (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196975, + "fields": { + "id_car_serie": 47818, + "name": "6.6 Turbo Hydra-Matic 3-seat (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196976, + "fields": { + "id_car_serie": 47818, + "name": "7.4 Turbo Hydra-Matic 2-seat (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196977, + "fields": { + "id_car_serie": 47818, + "name": "7.4 Turbo Hydra-Matic 3-seat (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196978, + "fields": { + "id_car_serie": 47819, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196979, + "fields": { + "id_car_serie": 47819, + "name": "5.7 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196980, + "fields": { + "id_car_serie": 47819, + "name": "6.6 Turbo Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196981, + "fields": { + "id_car_serie": 47819, + "name": "7.4 Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196982, + "fields": { + "id_car_serie": 47820, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196983, + "fields": { + "id_car_serie": 47820, + "name": "5.7 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196984, + "fields": { + "id_car_serie": 47820, + "name": "7.4 Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196985, + "fields": { + "id_car_serie": 47821, + "name": "5.7 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196986, + "fields": { + "id_car_serie": 47821, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196987, + "fields": { + "id_car_serie": 47821, + "name": "6.6 Turbo Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196988, + "fields": { + "id_car_serie": 47821, + "name": "7.4 Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196989, + "fields": { + "id_car_serie": 47822, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196990, + "fields": { + "id_car_serie": 47822, + "name": "6.6 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196991, + "fields": { + "id_car_serie": 47822, + "name": "6.6 Turbo Hydra-Matic (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196992, + "fields": { + "id_car_serie": 47822, + "name": "7.4 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196993, + "fields": { + "id_car_serie": 47823, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196994, + "fields": { + "id_car_serie": 47823, + "name": "6.6 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196995, + "fields": { + "id_car_serie": 47823, + "name": "6.6 Turbo Hydra-Matic (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196996, + "fields": { + "id_car_serie": 47823, + "name": "7.4 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196997, + "fields": { + "id_car_serie": 47824, + "name": "5.7 Turbo Hydra-Matic 2-seat (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196998, + "fields": { + "id_car_serie": 47824, + "name": "5.7 Turbo Hydra-Matic 3-seat (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 196999, + "fields": { + "id_car_serie": 47824, + "name": "6.6 Turbo Hydra-Matic 2-seat (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197000, + "fields": { + "id_car_serie": 47824, + "name": "6.6 Turbo Hydra-Matic 3-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197001, + "fields": { + "id_car_serie": 47824, + "name": "6.6 Turbo Hydra-Matic 3-seat (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197002, + "fields": { + "id_car_serie": 47824, + "name": "6.6 Turbo Hydra-Matic 2-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197003, + "fields": { + "id_car_serie": 47824, + "name": "7.4 Turbo Hydra-Matic 2-seat (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197004, + "fields": { + "id_car_serie": 47824, + "name": "7.4 Turbo Hydra-Matic 3-seat (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197005, + "fields": { + "id_car_serie": 47825, + "name": "4.1 Powerglide (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197006, + "fields": { + "id_car_serie": 47825, + "name": "4.1 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197007, + "fields": { + "id_car_serie": 47825, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197008, + "fields": { + "id_car_serie": 47825, + "name": "6.6 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197009, + "fields": { + "id_car_serie": 47825, + "name": "6.6 Turbo Hydra-Matic (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197010, + "fields": { + "id_car_serie": 47825, + "name": "7.4 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197011, + "fields": { + "id_car_serie": 47826, + "name": "4.1 Powerglide (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197012, + "fields": { + "id_car_serie": 47826, + "name": "4.1 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197013, + "fields": { + "id_car_serie": 47826, + "name": "5.7 Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197014, + "fields": { + "id_car_serie": 47826, + "name": "5.7 Powerglide (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197015, + "fields": { + "id_car_serie": 47826, + "name": "5.7 Powerglide (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197016, + "fields": { + "id_car_serie": 47826, + "name": "5.7 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197017, + "fields": { + "id_car_serie": 47826, + "name": "5.7 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197018, + "fields": { + "id_car_serie": 47826, + "name": "5.7 MT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197019, + "fields": { + "id_car_serie": 47826, + "name": "6.6 Turbo Hydra-Matic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197020, + "fields": { + "id_car_serie": 47826, + "name": "6.6 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197021, + "fields": { + "id_car_serie": 47826, + "name": "6.6 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197022, + "fields": { + "id_car_serie": 47826, + "name": "7.4 Turbo Hydra-Matic (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197023, + "fields": { + "id_car_serie": 47827, + "name": "4.1 Powerglide (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197024, + "fields": { + "id_car_serie": 47827, + "name": "4.1 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197025, + "fields": { + "id_car_serie": 47827, + "name": "5.7 Powerglide (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197026, + "fields": { + "id_car_serie": 47827, + "name": "5.7 Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197027, + "fields": { + "id_car_serie": 47827, + "name": "5.7 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197028, + "fields": { + "id_car_serie": 47827, + "name": "5.7 Powerglide (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197029, + "fields": { + "id_car_serie": 47827, + "name": "5.7 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197030, + "fields": { + "id_car_serie": 47827, + "name": "5.7 MT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197031, + "fields": { + "id_car_serie": 47827, + "name": "6.6 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197032, + "fields": { + "id_car_serie": 47827, + "name": "6.6 Turbo Hydra-Matic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197033, + "fields": { + "id_car_serie": 47827, + "name": "6.6 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197034, + "fields": { + "id_car_serie": 47827, + "name": "7.4 Turbo Hydra-Matic (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197035, + "fields": { + "id_car_serie": 47828, + "name": "5.7 Powerglide (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197036, + "fields": { + "id_car_serie": 47828, + "name": "5.7 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197037, + "fields": { + "id_car_serie": 47828, + "name": "5.7 Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197038, + "fields": { + "id_car_serie": 47828, + "name": "5.7 Powerglide (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197039, + "fields": { + "id_car_serie": 47828, + "name": "5.7 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197040, + "fields": { + "id_car_serie": 47828, + "name": "5.7 MT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197041, + "fields": { + "id_car_serie": 47828, + "name": "6.6 Turbo Hydra-Matic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197042, + "fields": { + "id_car_serie": 47828, + "name": "6.6 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197043, + "fields": { + "id_car_serie": 47828, + "name": "6.6 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197044, + "fields": { + "id_car_serie": 47828, + "name": "7.4 Turbo Hydra-Matic (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197045, + "fields": { + "id_car_serie": 47829, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197046, + "fields": { + "id_car_serie": 47829, + "name": "4.1 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197047, + "fields": { + "id_car_serie": 47829, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197048, + "fields": { + "id_car_serie": 47829, + "name": "5.4 Powerglide (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197049, + "fields": { + "id_car_serie": 47829, + "name": "5.4 Turbo Hydra-Matic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197050, + "fields": { + "id_car_serie": 47829, + "name": "5.4 3MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197051, + "fields": { + "id_car_serie": 47829, + "name": "5.4 4MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197052, + "fields": { + "id_car_serie": 47829, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197053, + "fields": { + "id_car_serie": 47829, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197054, + "fields": { + "id_car_serie": 47829, + "name": "5.7 Powerglide (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197055, + "fields": { + "id_car_serie": 47829, + "name": "5.7 Turbo Hydra-Matic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197056, + "fields": { + "id_car_serie": 47829, + "name": "5.7 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197057, + "fields": { + "id_car_serie": 47829, + "name": "5.7 MT HD (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197058, + "fields": { + "id_car_serie": 47829, + "name": "5.7 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197059, + "fields": { + "id_car_serie": 47829, + "name": "5.7 MT HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197060, + "fields": { + "id_car_serie": 47829, + "name": "6.5 Turbo Hydra-Matic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197061, + "fields": { + "id_car_serie": 47829, + "name": "6.5 MT HD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197062, + "fields": { + "id_car_serie": 47829, + "name": "6.5 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197063, + "fields": { + "id_car_serie": 47829, + "name": "7.0 Turbo Hydra-Matic (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197064, + "fields": { + "id_car_serie": 47829, + "name": "7.0 Turbo Hydra-Matic (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197065, + "fields": { + "id_car_serie": 47829, + "name": "7.0 MT HD (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197066, + "fields": { + "id_car_serie": 47829, + "name": "7.0 MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197067, + "fields": { + "id_car_serie": 47829, + "name": "7.0 MT HD (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197068, + "fields": { + "id_car_serie": 47829, + "name": "7.0 MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197069, + "fields": { + "id_car_serie": 47830, + "name": "4.1 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197070, + "fields": { + "id_car_serie": 47830, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197071, + "fields": { + "id_car_serie": 47830, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197072, + "fields": { + "id_car_serie": 47830, + "name": "5.4 Powerglide (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197073, + "fields": { + "id_car_serie": 47830, + "name": "5.4 Turbo Hydra-Matic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197074, + "fields": { + "id_car_serie": 47830, + "name": "5.4 3MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197075, + "fields": { + "id_car_serie": 47830, + "name": "5.4 4MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197076, + "fields": { + "id_car_serie": 47830, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197077, + "fields": { + "id_car_serie": 47830, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197078, + "fields": { + "id_car_serie": 47830, + "name": "5.7 Powerglide (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197079, + "fields": { + "id_car_serie": 47830, + "name": "5.7 Turbo Hydra-Matic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197080, + "fields": { + "id_car_serie": 47830, + "name": "5.7 MT HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197081, + "fields": { + "id_car_serie": 47830, + "name": "5.7 MT HD (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197082, + "fields": { + "id_car_serie": 47830, + "name": "5.7 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197083, + "fields": { + "id_car_serie": 47830, + "name": "5.7 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197084, + "fields": { + "id_car_serie": 47830, + "name": "6.5 Turbo Hydra-Matic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197085, + "fields": { + "id_car_serie": 47830, + "name": "6.5 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197086, + "fields": { + "id_car_serie": 47830, + "name": "6.5 MT HD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197087, + "fields": { + "id_car_serie": 47830, + "name": "7.0 Turbo Hydra-Matic (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197088, + "fields": { + "id_car_serie": 47830, + "name": "7.0 Turbo Hydra-Matic (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197089, + "fields": { + "id_car_serie": 47830, + "name": "7.0 MT HD (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197090, + "fields": { + "id_car_serie": 47830, + "name": "7.0 MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197091, + "fields": { + "id_car_serie": 47830, + "name": "7.0 MT HD (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197092, + "fields": { + "id_car_serie": 47830, + "name": "7.0 MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197093, + "fields": { + "id_car_serie": 47831, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197094, + "fields": { + "id_car_serie": 47831, + "name": "4.1 MT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197095, + "fields": { + "id_car_serie": 47831, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197096, + "fields": { + "id_car_serie": 47831, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197097, + "fields": { + "id_car_serie": 47831, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197098, + "fields": { + "id_car_serie": 47831, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197099, + "fields": { + "id_car_serie": 47831, + "name": "5.0 MT Overdrive (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197100, + "fields": { + "id_car_serie": 47831, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197101, + "fields": { + "id_car_serie": 47831, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197102, + "fields": { + "id_car_serie": 47831, + "name": "5.4 Turbo Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197103, + "fields": { + "id_car_serie": 47831, + "name": "5.4 Turbo Hydra-Matic (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197104, + "fields": { + "id_car_serie": 47831, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197105, + "fields": { + "id_car_serie": 47831, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197106, + "fields": { + "id_car_serie": 47831, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197107, + "fields": { + "id_car_serie": 47831, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197108, + "fields": { + "id_car_serie": 47831, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197109, + "fields": { + "id_car_serie": 47831, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197110, + "fields": { + "id_car_serie": 47831, + "name": "6.5 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197111, + "fields": { + "id_car_serie": 47831, + "name": "6.5 MT HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197112, + "fields": { + "id_car_serie": 47831, + "name": "7.0 Turbo Hydra-Matic (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197113, + "fields": { + "id_car_serie": 47831, + "name": "7.0 MT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197114, + "fields": { + "id_car_serie": 47831, + "name": "7.0 MT HD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197115, + "fields": { + "id_car_serie": 47832, + "name": "4.1 Powerglide 3-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197116, + "fields": { + "id_car_serie": 47832, + "name": "4.1 Powerglide 2-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197117, + "fields": { + "id_car_serie": 47832, + "name": "4.1 MT 3-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197118, + "fields": { + "id_car_serie": 47832, + "name": "4.1 MT Overdrive 2-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197119, + "fields": { + "id_car_serie": 47832, + "name": "4.1 MT 2-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197120, + "fields": { + "id_car_serie": 47832, + "name": "4.1 MT Overdrive 3-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197121, + "fields": { + "id_car_serie": 47832, + "name": "5.0 Powerglide 3-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197122, + "fields": { + "id_car_serie": 47832, + "name": "5.0 Powerglide 2-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197123, + "fields": { + "id_car_serie": 47832, + "name": "5.0 MT Overdrive 2-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197124, + "fields": { + "id_car_serie": 47832, + "name": "5.0 3MT 2-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197125, + "fields": { + "id_car_serie": 47832, + "name": "5.0 4MT 2-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197126, + "fields": { + "id_car_serie": 47832, + "name": "5.0 3MT 3-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197127, + "fields": { + "id_car_serie": 47832, + "name": "5.0 4MT 3-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197128, + "fields": { + "id_car_serie": 47832, + "name": "5.0 MT Overdrive 3-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197129, + "fields": { + "id_car_serie": 47832, + "name": "5.4 Turbo Hydra-Matic 2-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197130, + "fields": { + "id_car_serie": 47832, + "name": "5.4 Powerglide 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197131, + "fields": { + "id_car_serie": 47832, + "name": "5.4 Powerglide 3-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197132, + "fields": { + "id_car_serie": 47832, + "name": "5.4 Turbo Hydra-Matic 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197133, + "fields": { + "id_car_serie": 47832, + "name": "5.4 Turbo Hydra-Matic 3-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197134, + "fields": { + "id_car_serie": 47832, + "name": "5.4 Powerglide 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197135, + "fields": { + "id_car_serie": 47832, + "name": "5.4 Powerglide 2-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197136, + "fields": { + "id_car_serie": 47832, + "name": "5.4 Turbo Hydra-Matic 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197137, + "fields": { + "id_car_serie": 47832, + "name": "5.4 4MT 2-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197138, + "fields": { + "id_car_serie": 47832, + "name": "5.4 3MT 3-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197139, + "fields": { + "id_car_serie": 47832, + "name": "5.4 4MT 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197140, + "fields": { + "id_car_serie": 47832, + "name": "5.4 4MT 3-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197141, + "fields": { + "id_car_serie": 47832, + "name": "5.4 4MT 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197142, + "fields": { + "id_car_serie": 47832, + "name": "5.4 3MT 2-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197143, + "fields": { + "id_car_serie": 47832, + "name": "5.4 3MT 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197144, + "fields": { + "id_car_serie": 47832, + "name": "5.4 3MT 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197145, + "fields": { + "id_car_serie": 47832, + "name": "6.5 Powerglide 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197146, + "fields": { + "id_car_serie": 47832, + "name": "6.5 Turbo Hydra-Matic 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197147, + "fields": { + "id_car_serie": 47832, + "name": "6.5 Turbo Hydra-Matic 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197148, + "fields": { + "id_car_serie": 47832, + "name": "6.5 Powerglide 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197149, + "fields": { + "id_car_serie": 47832, + "name": "6.5 MT 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197150, + "fields": { + "id_car_serie": 47832, + "name": "6.5 MT HD 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197151, + "fields": { + "id_car_serie": 47832, + "name": "6.5 MT 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197152, + "fields": { + "id_car_serie": 47832, + "name": "6.5 MT HD 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197153, + "fields": { + "id_car_serie": 47832, + "name": "7.0 Turbo Hydra-Matic 2-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197154, + "fields": { + "id_car_serie": 47832, + "name": "7.0 Turbo Hydra-Matic 3-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197155, + "fields": { + "id_car_serie": 47832, + "name": "7.0 MT HD 3-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197156, + "fields": { + "id_car_serie": 47832, + "name": "7.0 MT 3-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197157, + "fields": { + "id_car_serie": 47832, + "name": "7.0 MT 2-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197158, + "fields": { + "id_car_serie": 47832, + "name": "7.0 MT HD 2-seat (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197159, + "fields": { + "id_car_serie": 47833, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197160, + "fields": { + "id_car_serie": 47833, + "name": "4.1 MT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197161, + "fields": { + "id_car_serie": 47833, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197162, + "fields": { + "id_car_serie": 47833, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197163, + "fields": { + "id_car_serie": 47833, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197164, + "fields": { + "id_car_serie": 47833, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197165, + "fields": { + "id_car_serie": 47833, + "name": "5.0 MT Overdrive (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197166, + "fields": { + "id_car_serie": 47833, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197167, + "fields": { + "id_car_serie": 47833, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197168, + "fields": { + "id_car_serie": 47833, + "name": "5.4 Turbo Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197169, + "fields": { + "id_car_serie": 47833, + "name": "5.4 Turbo Hydra-Matic (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197170, + "fields": { + "id_car_serie": 47833, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197171, + "fields": { + "id_car_serie": 47833, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197172, + "fields": { + "id_car_serie": 47833, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197173, + "fields": { + "id_car_serie": 47833, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197174, + "fields": { + "id_car_serie": 47833, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197175, + "fields": { + "id_car_serie": 47833, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197176, + "fields": { + "id_car_serie": 47833, + "name": "6.5 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197177, + "fields": { + "id_car_serie": 47833, + "name": "6.5 MT HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197178, + "fields": { + "id_car_serie": 47833, + "name": "7.0 Turbo Hydra-Matic (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197179, + "fields": { + "id_car_serie": 47833, + "name": "7.0 MT HD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197180, + "fields": { + "id_car_serie": 47833, + "name": "7.0 MT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197181, + "fields": { + "id_car_serie": 47834, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197182, + "fields": { + "id_car_serie": 47834, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197183, + "fields": { + "id_car_serie": 47834, + "name": "4.1 MT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197184, + "fields": { + "id_car_serie": 47834, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197185, + "fields": { + "id_car_serie": 47834, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197186, + "fields": { + "id_car_serie": 47834, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197187, + "fields": { + "id_car_serie": 47834, + "name": "5.0 MT Overdrive (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197188, + "fields": { + "id_car_serie": 47834, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197189, + "fields": { + "id_car_serie": 47834, + "name": "5.4 Turbo Hydra-Matic (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197190, + "fields": { + "id_car_serie": 47834, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197191, + "fields": { + "id_car_serie": 47834, + "name": "5.4 Turbo Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197192, + "fields": { + "id_car_serie": 47834, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197193, + "fields": { + "id_car_serie": 47834, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197194, + "fields": { + "id_car_serie": 47834, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197195, + "fields": { + "id_car_serie": 47834, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197196, + "fields": { + "id_car_serie": 47834, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197197, + "fields": { + "id_car_serie": 47834, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197198, + "fields": { + "id_car_serie": 47834, + "name": "6.5 MT HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197199, + "fields": { + "id_car_serie": 47834, + "name": "6.5 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197200, + "fields": { + "id_car_serie": 47834, + "name": "7.0 Turbo Hydra-Matic (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197201, + "fields": { + "id_car_serie": 47834, + "name": "7.0 MT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197202, + "fields": { + "id_car_serie": 47834, + "name": "7.0 MT HD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197203, + "fields": { + "id_car_serie": 47835, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197204, + "fields": { + "id_car_serie": 47835, + "name": "4.1 MT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197205, + "fields": { + "id_car_serie": 47835, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197206, + "fields": { + "id_car_serie": 47835, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197207, + "fields": { + "id_car_serie": 47835, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197208, + "fields": { + "id_car_serie": 47835, + "name": "5.0 MT Overdrive (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197209, + "fields": { + "id_car_serie": 47835, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197210, + "fields": { + "id_car_serie": 47835, + "name": "5.4 Turbo Hydra-Matic (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197211, + "fields": { + "id_car_serie": 47835, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197212, + "fields": { + "id_car_serie": 47835, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197213, + "fields": { + "id_car_serie": 47835, + "name": "5.4 Turbo Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197214, + "fields": { + "id_car_serie": 47835, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197215, + "fields": { + "id_car_serie": 47835, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197216, + "fields": { + "id_car_serie": 47835, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197217, + "fields": { + "id_car_serie": 47835, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197218, + "fields": { + "id_car_serie": 47835, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197219, + "fields": { + "id_car_serie": 47835, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197220, + "fields": { + "id_car_serie": 47835, + "name": "6.5 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197221, + "fields": { + "id_car_serie": 47835, + "name": "6.5 MT HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197222, + "fields": { + "id_car_serie": 47835, + "name": "7.0 Turbo Hydra-Matic (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197223, + "fields": { + "id_car_serie": 47835, + "name": "7.0 MT HD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197224, + "fields": { + "id_car_serie": 47835, + "name": "7.0 MT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197225, + "fields": { + "id_car_serie": 47836, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197226, + "fields": { + "id_car_serie": 47836, + "name": "4.1 MT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197227, + "fields": { + "id_car_serie": 47836, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197228, + "fields": { + "id_car_serie": 47836, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197229, + "fields": { + "id_car_serie": 47836, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197230, + "fields": { + "id_car_serie": 47836, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197231, + "fields": { + "id_car_serie": 47836, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197232, + "fields": { + "id_car_serie": 47836, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197233, + "fields": { + "id_car_serie": 47836, + "name": "5.4 Turbo Hydra-Matic (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197234, + "fields": { + "id_car_serie": 47836, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197235, + "fields": { + "id_car_serie": 47836, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197236, + "fields": { + "id_car_serie": 47836, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197237, + "fields": { + "id_car_serie": 47836, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197238, + "fields": { + "id_car_serie": 47836, + "name": "6.5 MT HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197239, + "fields": { + "id_car_serie": 47836, + "name": "6.5 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197240, + "fields": { + "id_car_serie": 47836, + "name": "7.0 Turbo Hydra-Matic (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197241, + "fields": { + "id_car_serie": 47836, + "name": "7.0 MT HD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197242, + "fields": { + "id_car_serie": 47836, + "name": "7.0 MT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197243, + "fields": { + "id_car_serie": 47837, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197244, + "fields": { + "id_car_serie": 47837, + "name": "4.1 MT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197245, + "fields": { + "id_car_serie": 47837, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197246, + "fields": { + "id_car_serie": 47837, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197247, + "fields": { + "id_car_serie": 47837, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197248, + "fields": { + "id_car_serie": 47837, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197249, + "fields": { + "id_car_serie": 47837, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197250, + "fields": { + "id_car_serie": 47837, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197251, + "fields": { + "id_car_serie": 47837, + "name": "5.4 Turbo Hydra-Matic (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197252, + "fields": { + "id_car_serie": 47837, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197253, + "fields": { + "id_car_serie": 47837, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197254, + "fields": { + "id_car_serie": 47837, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197255, + "fields": { + "id_car_serie": 47837, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197256, + "fields": { + "id_car_serie": 47837, + "name": "6.5 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197257, + "fields": { + "id_car_serie": 47837, + "name": "6.5 MT HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197258, + "fields": { + "id_car_serie": 47837, + "name": "7.0 Turbo Hydra-Matic (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197259, + "fields": { + "id_car_serie": 47837, + "name": "7.0 MT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197260, + "fields": { + "id_car_serie": 47837, + "name": "7.0 MT HD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197261, + "fields": { + "id_car_serie": 47838, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197262, + "fields": { + "id_car_serie": 47838, + "name": "4.1 MT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197263, + "fields": { + "id_car_serie": 47838, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197264, + "fields": { + "id_car_serie": 47838, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197265, + "fields": { + "id_car_serie": 47838, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197266, + "fields": { + "id_car_serie": 47838, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197267, + "fields": { + "id_car_serie": 47838, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197268, + "fields": { + "id_car_serie": 47838, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197269, + "fields": { + "id_car_serie": 47838, + "name": "5.4 Turbo Hydra-Matic (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197270, + "fields": { + "id_car_serie": 47838, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197271, + "fields": { + "id_car_serie": 47838, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197272, + "fields": { + "id_car_serie": 47838, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197273, + "fields": { + "id_car_serie": 47838, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197274, + "fields": { + "id_car_serie": 47838, + "name": "6.5 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197275, + "fields": { + "id_car_serie": 47838, + "name": "6.5 MT HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197276, + "fields": { + "id_car_serie": 47838, + "name": "7.0 Turbo Hydra-Matic (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197277, + "fields": { + "id_car_serie": 47838, + "name": "7.0 MT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197278, + "fields": { + "id_car_serie": 47838, + "name": "7.0 MT HD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197279, + "fields": { + "id_car_serie": 47839, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197280, + "fields": { + "id_car_serie": 47839, + "name": "4.1 MT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197281, + "fields": { + "id_car_serie": 47839, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197282, + "fields": { + "id_car_serie": 47839, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197283, + "fields": { + "id_car_serie": 47839, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197284, + "fields": { + "id_car_serie": 47839, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197285, + "fields": { + "id_car_serie": 47839, + "name": "4.6 MT Overdrive (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197286, + "fields": { + "id_car_serie": 47839, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197287, + "fields": { + "id_car_serie": 47839, + "name": "4.6 4MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197288, + "fields": { + "id_car_serie": 47839, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197289, + "fields": { + "id_car_serie": 47839, + "name": "4.6 3MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197290, + "fields": { + "id_car_serie": 47839, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197291, + "fields": { + "id_car_serie": 47839, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197292, + "fields": { + "id_car_serie": 47839, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197293, + "fields": { + "id_car_serie": 47839, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197294, + "fields": { + "id_car_serie": 47839, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197295, + "fields": { + "id_car_serie": 47839, + "name": "6.5 3MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197296, + "fields": { + "id_car_serie": 47839, + "name": "6.5 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197297, + "fields": { + "id_car_serie": 47839, + "name": "7.0 Turbo Hydra-Matic (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197298, + "fields": { + "id_car_serie": 47839, + "name": "7.0 3MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197299, + "fields": { + "id_car_serie": 47839, + "name": "7.0 4MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197300, + "fields": { + "id_car_serie": 47839, + "name": "7.0 4MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197301, + "fields": { + "id_car_serie": 47839, + "name": "7.0 3MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197302, + "fields": { + "id_car_serie": 47840, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197303, + "fields": { + "id_car_serie": 47840, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197304, + "fields": { + "id_car_serie": 47840, + "name": "4.1 MT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197305, + "fields": { + "id_car_serie": 47840, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197306, + "fields": { + "id_car_serie": 47840, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197307, + "fields": { + "id_car_serie": 47840, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197308, + "fields": { + "id_car_serie": 47840, + "name": "4.6 4MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197309, + "fields": { + "id_car_serie": 47840, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197310, + "fields": { + "id_car_serie": 47840, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197311, + "fields": { + "id_car_serie": 47840, + "name": "4.6 MT Overdrive (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197312, + "fields": { + "id_car_serie": 47840, + "name": "4.6 3MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197313, + "fields": { + "id_car_serie": 47840, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197314, + "fields": { + "id_car_serie": 47840, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197315, + "fields": { + "id_car_serie": 47840, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197316, + "fields": { + "id_car_serie": 47840, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197317, + "fields": { + "id_car_serie": 47840, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197318, + "fields": { + "id_car_serie": 47840, + "name": "6.5 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197319, + "fields": { + "id_car_serie": 47840, + "name": "6.5 3MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197320, + "fields": { + "id_car_serie": 47840, + "name": "7.0 Turbo Hydra-Matic (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197321, + "fields": { + "id_car_serie": 47840, + "name": "7.0 4MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197322, + "fields": { + "id_car_serie": 47840, + "name": "7.0 4MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197323, + "fields": { + "id_car_serie": 47840, + "name": "7.0 3MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197324, + "fields": { + "id_car_serie": 47840, + "name": "7.0 3MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197325, + "fields": { + "id_car_serie": 47841, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197326, + "fields": { + "id_car_serie": 47841, + "name": "4.1 MT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197327, + "fields": { + "id_car_serie": 47841, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197328, + "fields": { + "id_car_serie": 47841, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197329, + "fields": { + "id_car_serie": 47841, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197330, + "fields": { + "id_car_serie": 47841, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197331, + "fields": { + "id_car_serie": 47841, + "name": "4.6 4MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197332, + "fields": { + "id_car_serie": 47841, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197333, + "fields": { + "id_car_serie": 47841, + "name": "4.6 MT Overdrive (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197334, + "fields": { + "id_car_serie": 47841, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197335, + "fields": { + "id_car_serie": 47841, + "name": "4.6 3MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197336, + "fields": { + "id_car_serie": 47841, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197337, + "fields": { + "id_car_serie": 47841, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197338, + "fields": { + "id_car_serie": 47841, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197339, + "fields": { + "id_car_serie": 47841, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197340, + "fields": { + "id_car_serie": 47841, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197341, + "fields": { + "id_car_serie": 47841, + "name": "6.5 3MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197342, + "fields": { + "id_car_serie": 47841, + "name": "6.5 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197343, + "fields": { + "id_car_serie": 47841, + "name": "7.0 Turbo Hydra-Matic (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197344, + "fields": { + "id_car_serie": 47841, + "name": "7.0 3MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197345, + "fields": { + "id_car_serie": 47841, + "name": "7.0 4MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197346, + "fields": { + "id_car_serie": 47841, + "name": "7.0 4MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197347, + "fields": { + "id_car_serie": 47841, + "name": "7.0 3MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197348, + "fields": { + "id_car_serie": 47842, + "name": "4.1 Powerglide 2-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197349, + "fields": { + "id_car_serie": 47842, + "name": "4.1 Powerglide 3-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197350, + "fields": { + "id_car_serie": 47842, + "name": "4.1 MT 3-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197351, + "fields": { + "id_car_serie": 47842, + "name": "4.1 MT Overdrive 2-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197352, + "fields": { + "id_car_serie": 47842, + "name": "4.1 MT 2-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197353, + "fields": { + "id_car_serie": 47842, + "name": "4.1 MT Overdrive 3-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197354, + "fields": { + "id_car_serie": 47842, + "name": "4.6 Powerglide 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197355, + "fields": { + "id_car_serie": 47842, + "name": "4.6 Powerglide 3-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197356, + "fields": { + "id_car_serie": 47842, + "name": "4.6 Powerglide 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197357, + "fields": { + "id_car_serie": 47842, + "name": "4.6 Powerglide 2-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197358, + "fields": { + "id_car_serie": 47842, + "name": "4.6 4MT 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197359, + "fields": { + "id_car_serie": 47842, + "name": "4.6 3MT 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197360, + "fields": { + "id_car_serie": 47842, + "name": "4.6 3MT 2-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197361, + "fields": { + "id_car_serie": 47842, + "name": "4.6 4MT 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197362, + "fields": { + "id_car_serie": 47842, + "name": "4.6 4MT 2-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197363, + "fields": { + "id_car_serie": 47842, + "name": "4.6 MT Overdrive 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197364, + "fields": { + "id_car_serie": 47842, + "name": "4.6 MT Overdrive 2-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197365, + "fields": { + "id_car_serie": 47842, + "name": "4.6 3MT 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197366, + "fields": { + "id_car_serie": 47842, + "name": "4.6 3MT 3-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197367, + "fields": { + "id_car_serie": 47842, + "name": "4.6 4MT 3-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197368, + "fields": { + "id_car_serie": 47842, + "name": "4.6 MT Overdrive 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197369, + "fields": { + "id_car_serie": 47842, + "name": "4.6 MT Overdrive 3-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197370, + "fields": { + "id_car_serie": 47842, + "name": "5.4 Powerglide 2-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197371, + "fields": { + "id_car_serie": 47842, + "name": "5.4 Powerglide 3-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197372, + "fields": { + "id_car_serie": 47842, + "name": "5.4 4MT 3-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197373, + "fields": { + "id_car_serie": 47842, + "name": "5.4 4MT 2-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197374, + "fields": { + "id_car_serie": 47842, + "name": "5.4 3MT 2-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197375, + "fields": { + "id_car_serie": 47842, + "name": "5.4 3MT 3-seat (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197376, + "fields": { + "id_car_serie": 47842, + "name": "6.4 Powerglide 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197377, + "fields": { + "id_car_serie": 47842, + "name": "6.4 Powerglide 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197378, + "fields": { + "id_car_serie": 47842, + "name": "6.4 Turbo Hydra-Matic 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197379, + "fields": { + "id_car_serie": 47842, + "name": "6.4 Turbo Hydra-Matic 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197380, + "fields": { + "id_car_serie": 47842, + "name": "6.4 3MT 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197381, + "fields": { + "id_car_serie": 47842, + "name": "6.4 4MT 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197382, + "fields": { + "id_car_serie": 47842, + "name": "6.4 4MT 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197383, + "fields": { + "id_car_serie": 47842, + "name": "6.4 3MT 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197384, + "fields": { + "id_car_serie": 47842, + "name": "7.0 Turbo Hydra-Matic 2-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197385, + "fields": { + "id_car_serie": 47842, + "name": "7.0 Turbo Hydra-Matic 3-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197386, + "fields": { + "id_car_serie": 47842, + "name": "7.0 4MT 3-seat (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197387, + "fields": { + "id_car_serie": 47842, + "name": "7.0 4MT 3-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197388, + "fields": { + "id_car_serie": 47842, + "name": "7.0 3MT 3-seat (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197389, + "fields": { + "id_car_serie": 47842, + "name": "7.0 3MT 3-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197390, + "fields": { + "id_car_serie": 47842, + "name": "7.0 3MT 2-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197391, + "fields": { + "id_car_serie": 47842, + "name": "7.0 3MT 2-seat (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197392, + "fields": { + "id_car_serie": 47842, + "name": "7.0 4MT 2-seat (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197393, + "fields": { + "id_car_serie": 47842, + "name": "7.0 4MT 2-seat (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197394, + "fields": { + "id_car_serie": 47843, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197395, + "fields": { + "id_car_serie": 47843, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197396, + "fields": { + "id_car_serie": 47843, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197397, + "fields": { + "id_car_serie": 47843, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197398, + "fields": { + "id_car_serie": 47843, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197399, + "fields": { + "id_car_serie": 47843, + "name": "4.6 4MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197400, + "fields": { + "id_car_serie": 47843, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197401, + "fields": { + "id_car_serie": 47843, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197402, + "fields": { + "id_car_serie": 47843, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197403, + "fields": { + "id_car_serie": 47843, + "name": "4.6 3MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197404, + "fields": { + "id_car_serie": 47843, + "name": "4.6 MT Overdrive (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197405, + "fields": { + "id_car_serie": 47843, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197406, + "fields": { + "id_car_serie": 47843, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197407, + "fields": { + "id_car_serie": 47843, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197408, + "fields": { + "id_car_serie": 47843, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197409, + "fields": { + "id_car_serie": 47843, + "name": "5.4 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197410, + "fields": { + "id_car_serie": 47843, + "name": "5.4 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197411, + "fields": { + "id_car_serie": 47843, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197412, + "fields": { + "id_car_serie": 47843, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197413, + "fields": { + "id_car_serie": 47843, + "name": "6.5 MT HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197414, + "fields": { + "id_car_serie": 47843, + "name": "6.5 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197415, + "fields": { + "id_car_serie": 47843, + "name": "6.5 MT HD (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197416, + "fields": { + "id_car_serie": 47843, + "name": "6.5 MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197417, + "fields": { + "id_car_serie": 47844, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197418, + "fields": { + "id_car_serie": 47844, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197419, + "fields": { + "id_car_serie": 47844, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197420, + "fields": { + "id_car_serie": 47844, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197421, + "fields": { + "id_car_serie": 47844, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197422, + "fields": { + "id_car_serie": 47844, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197423, + "fields": { + "id_car_serie": 47844, + "name": "4.6 4MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197424, + "fields": { + "id_car_serie": 47844, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197425, + "fields": { + "id_car_serie": 47844, + "name": "4.6 MT Overdrive (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197426, + "fields": { + "id_car_serie": 47844, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197427, + "fields": { + "id_car_serie": 47844, + "name": "4.6 3MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197428, + "fields": { + "id_car_serie": 47844, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197429, + "fields": { + "id_car_serie": 47844, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197430, + "fields": { + "id_car_serie": 47844, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197431, + "fields": { + "id_car_serie": 47844, + "name": "5.4 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197432, + "fields": { + "id_car_serie": 47844, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197433, + "fields": { + "id_car_serie": 47844, + "name": "5.4 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197434, + "fields": { + "id_car_serie": 47844, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197435, + "fields": { + "id_car_serie": 47844, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197436, + "fields": { + "id_car_serie": 47844, + "name": "6.5 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197437, + "fields": { + "id_car_serie": 47844, + "name": "6.5 MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197438, + "fields": { + "id_car_serie": 47844, + "name": "6.5 MT HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197439, + "fields": { + "id_car_serie": 47844, + "name": "6.5 MT HD (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197440, + "fields": { + "id_car_serie": 47845, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197441, + "fields": { + "id_car_serie": 47845, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197442, + "fields": { + "id_car_serie": 47845, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197443, + "fields": { + "id_car_serie": 47845, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197444, + "fields": { + "id_car_serie": 47845, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197445, + "fields": { + "id_car_serie": 47845, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197446, + "fields": { + "id_car_serie": 47845, + "name": "4.6 4MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197447, + "fields": { + "id_car_serie": 47845, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197448, + "fields": { + "id_car_serie": 47845, + "name": "4.6 MT Overdrive (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197449, + "fields": { + "id_car_serie": 47845, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197450, + "fields": { + "id_car_serie": 47845, + "name": "4.6 3MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197451, + "fields": { + "id_car_serie": 47845, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197452, + "fields": { + "id_car_serie": 47845, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197453, + "fields": { + "id_car_serie": 47845, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197454, + "fields": { + "id_car_serie": 47845, + "name": "5.4 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197455, + "fields": { + "id_car_serie": 47845, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197456, + "fields": { + "id_car_serie": 47845, + "name": "5.4 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197457, + "fields": { + "id_car_serie": 47845, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197458, + "fields": { + "id_car_serie": 47845, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197459, + "fields": { + "id_car_serie": 47845, + "name": "6.5 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197460, + "fields": { + "id_car_serie": 47845, + "name": "6.5 MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197461, + "fields": { + "id_car_serie": 47845, + "name": "6.5 MT HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197462, + "fields": { + "id_car_serie": 47845, + "name": "6.5 MT HD (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197463, + "fields": { + "id_car_serie": 47846, + "name": "3.8 Powerglide 2-seat (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197464, + "fields": { + "id_car_serie": 47846, + "name": "3.8 Powerglide 3-seat (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197465, + "fields": { + "id_car_serie": 47846, + "name": "3.8 MT 3-seat (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197466, + "fields": { + "id_car_serie": 47846, + "name": "3.8 MT Overdrive 2-seat (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197467, + "fields": { + "id_car_serie": 47846, + "name": "3.8 MT 2-seat (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197468, + "fields": { + "id_car_serie": 47846, + "name": "3.8 MT Overdrive 3-seat (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197469, + "fields": { + "id_car_serie": 47846, + "name": "4.6 Powerdrive 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197470, + "fields": { + "id_car_serie": 47846, + "name": "4.6 Powerglide 3-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197471, + "fields": { + "id_car_serie": 47846, + "name": "4.6 Powerdrive 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197472, + "fields": { + "id_car_serie": 47846, + "name": "4.6 Powerglide 2-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197473, + "fields": { + "id_car_serie": 47846, + "name": "4.6 4MT 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197474, + "fields": { + "id_car_serie": 47846, + "name": "4.6 3MT 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197475, + "fields": { + "id_car_serie": 47846, + "name": "4.6 3MT 2-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197476, + "fields": { + "id_car_serie": 47846, + "name": "4.6 4MT 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197477, + "fields": { + "id_car_serie": 47846, + "name": "4.6 4MT 2-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197478, + "fields": { + "id_car_serie": 47846, + "name": "4.6 MT Overdrive 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197479, + "fields": { + "id_car_serie": 47846, + "name": "4.6 MT Overdrive 2-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197480, + "fields": { + "id_car_serie": 47846, + "name": "4.6 3MT 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197481, + "fields": { + "id_car_serie": 47846, + "name": "4.6 3MT 3-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197482, + "fields": { + "id_car_serie": 47846, + "name": "4.6 4MT 3-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197483, + "fields": { + "id_car_serie": 47846, + "name": "4.6 MT Overdrive 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197484, + "fields": { + "id_car_serie": 47846, + "name": "4.6 MT Overdrive 3-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197485, + "fields": { + "id_car_serie": 47846, + "name": "5.4 Powerglide 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197486, + "fields": { + "id_car_serie": 47846, + "name": "5.4 Powerglide 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197487, + "fields": { + "id_car_serie": 47846, + "name": "5.4 Powerglide 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197488, + "fields": { + "id_car_serie": 47846, + "name": "5.4 Powerglide 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197489, + "fields": { + "id_car_serie": 47846, + "name": "5.4 4MT 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197490, + "fields": { + "id_car_serie": 47846, + "name": "5.4 4MT 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197491, + "fields": { + "id_car_serie": 47846, + "name": "5.4 3MT 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197492, + "fields": { + "id_car_serie": 47846, + "name": "5.4 3MT 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197493, + "fields": { + "id_car_serie": 47846, + "name": "5.4 3MT 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197494, + "fields": { + "id_car_serie": 47846, + "name": "5.4 3MT 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197495, + "fields": { + "id_car_serie": 47846, + "name": "5.4 4MT 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197496, + "fields": { + "id_car_serie": 47846, + "name": "5.4 4MT 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197497, + "fields": { + "id_car_serie": 47846, + "name": "6.5 Powerglide 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197498, + "fields": { + "id_car_serie": 47846, + "name": "6.5 Powerglide 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197499, + "fields": { + "id_car_serie": 47846, + "name": "6.5 Turbo Hydra-Matic 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197500, + "fields": { + "id_car_serie": 47846, + "name": "6.5 Turbo Hydra-Matic 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197501, + "fields": { + "id_car_serie": 47846, + "name": "6.5 MT HD 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197502, + "fields": { + "id_car_serie": 47846, + "name": "6.5 MT 3-seat (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197503, + "fields": { + "id_car_serie": 47846, + "name": "6.5 MT 3-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197504, + "fields": { + "id_car_serie": 47846, + "name": "6.5 MT 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197505, + "fields": { + "id_car_serie": 47846, + "name": "6.5 MT 2-seat (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197506, + "fields": { + "id_car_serie": 47846, + "name": "6.5 MT HD 2-seat (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197507, + "fields": { + "id_car_serie": 47846, + "name": "6.5 MT HD 2-seat (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197508, + "fields": { + "id_car_serie": 47846, + "name": "6.5 MT HD 3-seat (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197509, + "fields": { + "id_car_serie": 47847, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197510, + "fields": { + "id_car_serie": 47847, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197511, + "fields": { + "id_car_serie": 47847, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197512, + "fields": { + "id_car_serie": 47847, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197513, + "fields": { + "id_car_serie": 47847, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197514, + "fields": { + "id_car_serie": 47847, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197515, + "fields": { + "id_car_serie": 47847, + "name": "4.6 4MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197516, + "fields": { + "id_car_serie": 47847, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197517, + "fields": { + "id_car_serie": 47847, + "name": "4.6 MT Overdrive (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197518, + "fields": { + "id_car_serie": 47847, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197519, + "fields": { + "id_car_serie": 47847, + "name": "4.6 3MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197520, + "fields": { + "id_car_serie": 47847, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197521, + "fields": { + "id_car_serie": 47847, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197522, + "fields": { + "id_car_serie": 47847, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197523, + "fields": { + "id_car_serie": 47847, + "name": "5.4 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197524, + "fields": { + "id_car_serie": 47847, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197525, + "fields": { + "id_car_serie": 47847, + "name": "5.4 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197526, + "fields": { + "id_car_serie": 47847, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197527, + "fields": { + "id_car_serie": 47847, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197528, + "fields": { + "id_car_serie": 47847, + "name": "6.5 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197529, + "fields": { + "id_car_serie": 47847, + "name": "6.5 MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197530, + "fields": { + "id_car_serie": 47847, + "name": "6.5 MT HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197531, + "fields": { + "id_car_serie": 47847, + "name": "6.5 MT HD (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197532, + "fields": { + "id_car_serie": 47848, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197533, + "fields": { + "id_car_serie": 47848, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197534, + "fields": { + "id_car_serie": 47848, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197535, + "fields": { + "id_car_serie": 47848, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197536, + "fields": { + "id_car_serie": 47848, + "name": "4.6 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197537, + "fields": { + "id_car_serie": 47848, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197538, + "fields": { + "id_car_serie": 47848, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197539, + "fields": { + "id_car_serie": 47848, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197540, + "fields": { + "id_car_serie": 47848, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197541, + "fields": { + "id_car_serie": 47848, + "name": "5.4 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197542, + "fields": { + "id_car_serie": 47848, + "name": "5.4 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197543, + "fields": { + "id_car_serie": 47848, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197544, + "fields": { + "id_car_serie": 47848, + "name": "6.7 Powerglide (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197545, + "fields": { + "id_car_serie": 47848, + "name": "6.7 MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197546, + "fields": { + "id_car_serie": 47848, + "name": "6.7 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197547, + "fields": { + "id_car_serie": 47848, + "name": "6.7 MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197548, + "fields": { + "id_car_serie": 47849, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197549, + "fields": { + "id_car_serie": 47849, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197550, + "fields": { + "id_car_serie": 47849, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197551, + "fields": { + "id_car_serie": 47849, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197552, + "fields": { + "id_car_serie": 47849, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197553, + "fields": { + "id_car_serie": 47849, + "name": "4.6 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197554, + "fields": { + "id_car_serie": 47849, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197555, + "fields": { + "id_car_serie": 47849, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197556, + "fields": { + "id_car_serie": 47849, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197557, + "fields": { + "id_car_serie": 47849, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197558, + "fields": { + "id_car_serie": 47849, + "name": "5.4 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197559, + "fields": { + "id_car_serie": 47849, + "name": "5.4 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197560, + "fields": { + "id_car_serie": 47849, + "name": "6.7 Powerglide (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197561, + "fields": { + "id_car_serie": 47849, + "name": "6.7 MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197562, + "fields": { + "id_car_serie": 47849, + "name": "6.7 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197563, + "fields": { + "id_car_serie": 47849, + "name": "6.7 MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197564, + "fields": { + "id_car_serie": 47850, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197565, + "fields": { + "id_car_serie": 47850, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197566, + "fields": { + "id_car_serie": 47850, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197567, + "fields": { + "id_car_serie": 47850, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197568, + "fields": { + "id_car_serie": 47850, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197569, + "fields": { + "id_car_serie": 47850, + "name": "4.6 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197570, + "fields": { + "id_car_serie": 47850, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197571, + "fields": { + "id_car_serie": 47850, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197572, + "fields": { + "id_car_serie": 47850, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197573, + "fields": { + "id_car_serie": 47850, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197574, + "fields": { + "id_car_serie": 47850, + "name": "5.4 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197575, + "fields": { + "id_car_serie": 47850, + "name": "5.4 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197576, + "fields": { + "id_car_serie": 47850, + "name": "6.7 Powerglide (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197577, + "fields": { + "id_car_serie": 47850, + "name": "6.7 MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197578, + "fields": { + "id_car_serie": 47850, + "name": "6.7 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197579, + "fields": { + "id_car_serie": 47850, + "name": "6.7 MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197580, + "fields": { + "id_car_serie": 47851, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197581, + "fields": { + "id_car_serie": 47851, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197582, + "fields": { + "id_car_serie": 47851, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197583, + "fields": { + "id_car_serie": 47851, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197584, + "fields": { + "id_car_serie": 47851, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197585, + "fields": { + "id_car_serie": 47851, + "name": "4.6 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197586, + "fields": { + "id_car_serie": 47851, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197587, + "fields": { + "id_car_serie": 47851, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197588, + "fields": { + "id_car_serie": 47851, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197589, + "fields": { + "id_car_serie": 47851, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197590, + "fields": { + "id_car_serie": 47851, + "name": "5.4 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197591, + "fields": { + "id_car_serie": 47851, + "name": "5.4 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197592, + "fields": { + "id_car_serie": 47851, + "name": "6.7 Powerglide (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197593, + "fields": { + "id_car_serie": 47851, + "name": "6.7 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197594, + "fields": { + "id_car_serie": 47851, + "name": "6.7 MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197595, + "fields": { + "id_car_serie": 47851, + "name": "6.7 MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197596, + "fields": { + "id_car_serie": 47852, + "name": "3.8 Powerglide 2-seat (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197597, + "fields": { + "id_car_serie": 47852, + "name": "3.8 Powerglide 3-seat (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197598, + "fields": { + "id_car_serie": 47852, + "name": "3.8 MT 2-seat (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197599, + "fields": { + "id_car_serie": 47852, + "name": "3.8 MT Overdrive 2-seat (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197600, + "fields": { + "id_car_serie": 47852, + "name": "3.8 MT 3-seat (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197601, + "fields": { + "id_car_serie": 47852, + "name": "3.8 MT Overdrive 3-seat (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197602, + "fields": { + "id_car_serie": 47852, + "name": "4.6 Powerglide 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197603, + "fields": { + "id_car_serie": 47852, + "name": "4.6 Powerglide 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197604, + "fields": { + "id_car_serie": 47852, + "name": "4.6 MT 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197605, + "fields": { + "id_car_serie": 47852, + "name": "4.6 MT 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197606, + "fields": { + "id_car_serie": 47852, + "name": "4.6 MT Overdrive 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197607, + "fields": { + "id_car_serie": 47852, + "name": "4.6 MT Overdrive 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197608, + "fields": { + "id_car_serie": 47852, + "name": "5.4 Powerglide 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197609, + "fields": { + "id_car_serie": 47852, + "name": "5.4 Powerglide 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197610, + "fields": { + "id_car_serie": 47852, + "name": "5.4 Powerglide 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197611, + "fields": { + "id_car_serie": 47852, + "name": "5.4 Powerglide 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197612, + "fields": { + "id_car_serie": 47852, + "name": "5.4 3MT 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197613, + "fields": { + "id_car_serie": 47852, + "name": "5.4 3MT 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197614, + "fields": { + "id_car_serie": 47852, + "name": "5.4 3MT 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197615, + "fields": { + "id_car_serie": 47852, + "name": "5.4 4MT 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197616, + "fields": { + "id_car_serie": 47852, + "name": "5.4 3MT 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197617, + "fields": { + "id_car_serie": 47852, + "name": "5.4 4MT 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197618, + "fields": { + "id_car_serie": 47852, + "name": "5.4 4MT 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197619, + "fields": { + "id_car_serie": 47852, + "name": "5.4 4MT 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197620, + "fields": { + "id_car_serie": 47852, + "name": "6.7 Powerglide 3-seat (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197621, + "fields": { + "id_car_serie": 47852, + "name": "6.7 Powerglide 2-seat (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197622, + "fields": { + "id_car_serie": 47852, + "name": "6.7 4MT 3-seat (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197623, + "fields": { + "id_car_serie": 47852, + "name": "6.7 3MT 2-seat (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197624, + "fields": { + "id_car_serie": 47852, + "name": "6.7 3MT 2-seat (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197625, + "fields": { + "id_car_serie": 47852, + "name": "6.7 4MT 2-seat (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197626, + "fields": { + "id_car_serie": 47852, + "name": "6.7 4MT 2-seat (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197627, + "fields": { + "id_car_serie": 47852, + "name": "6.7 4MT 2-seat (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197628, + "fields": { + "id_car_serie": 47852, + "name": "6.7 4MT 3-seat (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197629, + "fields": { + "id_car_serie": 47852, + "name": "6.7 4MT 3-seat (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197630, + "fields": { + "id_car_serie": 47852, + "name": "6.7 3MT 3-seat (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197631, + "fields": { + "id_car_serie": 47852, + "name": "6.7 3MT 3-seat (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197632, + "fields": { + "id_car_serie": 47852, + "name": "6.7 3MT 3-seat (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197633, + "fields": { + "id_car_serie": 47852, + "name": "6.7 3MT 2-seat (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197634, + "fields": { + "id_car_serie": 47853, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197635, + "fields": { + "id_car_serie": 47853, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197636, + "fields": { + "id_car_serie": 47853, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197637, + "fields": { + "id_car_serie": 47853, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197638, + "fields": { + "id_car_serie": 47853, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197639, + "fields": { + "id_car_serie": 47853, + "name": "4.6 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197640, + "fields": { + "id_car_serie": 47853, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197641, + "fields": { + "id_car_serie": 47853, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197642, + "fields": { + "id_car_serie": 47853, + "name": "5.4 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197643, + "fields": { + "id_car_serie": 47853, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197644, + "fields": { + "id_car_serie": 47853, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197645, + "fields": { + "id_car_serie": 47853, + "name": "5.4 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197646, + "fields": { + "id_car_serie": 47853, + "name": "6.7 Powerglide (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197647, + "fields": { + "id_car_serie": 47853, + "name": "6.7 3MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197648, + "fields": { + "id_car_serie": 47853, + "name": "6.7 3MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197649, + "fields": { + "id_car_serie": 47853, + "name": "6.7 3MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197650, + "fields": { + "id_car_serie": 47853, + "name": "6.7 4MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197651, + "fields": { + "id_car_serie": 47853, + "name": "6.7 4MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197652, + "fields": { + "id_car_serie": 47853, + "name": "6.7 4MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197653, + "fields": { + "id_car_serie": 47854, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197654, + "fields": { + "id_car_serie": 47854, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197655, + "fields": { + "id_car_serie": 47854, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197656, + "fields": { + "id_car_serie": 47854, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197657, + "fields": { + "id_car_serie": 47854, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197658, + "fields": { + "id_car_serie": 47854, + "name": "4.6 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197659, + "fields": { + "id_car_serie": 47854, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197660, + "fields": { + "id_car_serie": 47854, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197661, + "fields": { + "id_car_serie": 47854, + "name": "5.4 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197662, + "fields": { + "id_car_serie": 47854, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197663, + "fields": { + "id_car_serie": 47854, + "name": "5.4 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197664, + "fields": { + "id_car_serie": 47854, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197665, + "fields": { + "id_car_serie": 47854, + "name": "6.7 Powerglide (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197666, + "fields": { + "id_car_serie": 47854, + "name": "6.7 3MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197667, + "fields": { + "id_car_serie": 47854, + "name": "6.7 3MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197668, + "fields": { + "id_car_serie": 47854, + "name": "6.7 3MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197669, + "fields": { + "id_car_serie": 47854, + "name": "6.7 4MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197670, + "fields": { + "id_car_serie": 47854, + "name": "6.7 4MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197671, + "fields": { + "id_car_serie": 47854, + "name": "6.7 4MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197672, + "fields": { + "id_car_serie": 47855, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197673, + "fields": { + "id_car_serie": 47855, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197674, + "fields": { + "id_car_serie": 47855, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197675, + "fields": { + "id_car_serie": 47855, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197676, + "fields": { + "id_car_serie": 47855, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197677, + "fields": { + "id_car_serie": 47855, + "name": "4.6 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197678, + "fields": { + "id_car_serie": 47855, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197679, + "fields": { + "id_car_serie": 47855, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197680, + "fields": { + "id_car_serie": 47855, + "name": "5.4 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197681, + "fields": { + "id_car_serie": 47855, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197682, + "fields": { + "id_car_serie": 47855, + "name": "5.4 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197683, + "fields": { + "id_car_serie": 47855, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197684, + "fields": { + "id_car_serie": 47855, + "name": "6.7 Powerglide (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197685, + "fields": { + "id_car_serie": 47855, + "name": "6.7 3MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197686, + "fields": { + "id_car_serie": 47855, + "name": "6.7 3MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197687, + "fields": { + "id_car_serie": 47855, + "name": "6.7 3MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197688, + "fields": { + "id_car_serie": 47855, + "name": "6.7 4MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197689, + "fields": { + "id_car_serie": 47855, + "name": "6.7 4MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197690, + "fields": { + "id_car_serie": 47855, + "name": "6.7 4MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197691, + "fields": { + "id_car_serie": 47856, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197692, + "fields": { + "id_car_serie": 47856, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197693, + "fields": { + "id_car_serie": 47856, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197694, + "fields": { + "id_car_serie": 47856, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197695, + "fields": { + "id_car_serie": 47856, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197696, + "fields": { + "id_car_serie": 47856, + "name": "4.6 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197697, + "fields": { + "id_car_serie": 47856, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197698, + "fields": { + "id_car_serie": 47856, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197699, + "fields": { + "id_car_serie": 47856, + "name": "5.4 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197700, + "fields": { + "id_car_serie": 47856, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197701, + "fields": { + "id_car_serie": 47856, + "name": "5.4 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197702, + "fields": { + "id_car_serie": 47856, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197703, + "fields": { + "id_car_serie": 47856, + "name": "6.7 Powerglide (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197704, + "fields": { + "id_car_serie": 47856, + "name": "6.7 3MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197705, + "fields": { + "id_car_serie": 47856, + "name": "6.7 3MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197706, + "fields": { + "id_car_serie": 47856, + "name": "6.7 3MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197707, + "fields": { + "id_car_serie": 47856, + "name": "6.7 4MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197708, + "fields": { + "id_car_serie": 47856, + "name": "6.7 4MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197709, + "fields": { + "id_car_serie": 47856, + "name": "6.7 4MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197710, + "fields": { + "id_car_serie": 47857, + "name": "3.9 Powerglide (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197711, + "fields": { + "id_car_serie": 47857, + "name": "3.9 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197712, + "fields": { + "id_car_serie": 47857, + "name": "3.9 MT Overdrive (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197713, + "fields": { + "id_car_serie": 47857, + "name": "4.6 Powerglide (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197714, + "fields": { + "id_car_serie": 47857, + "name": "4.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197715, + "fields": { + "id_car_serie": 47857, + "name": "4.6 MT Overdrive (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197716, + "fields": { + "id_car_serie": 47857, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197717, + "fields": { + "id_car_serie": 47857, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197718, + "fields": { + "id_car_serie": 47857, + "name": "5.4 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197719, + "fields": { + "id_car_serie": 47857, + "name": "5.4 Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197720, + "fields": { + "id_car_serie": 47857, + "name": "5.4 Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197721, + "fields": { + "id_car_serie": 47857, + "name": "5.4 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197722, + "fields": { + "id_car_serie": 47857, + "name": "6.7 3MT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197723, + "fields": { + "id_car_serie": 47857, + "name": "6.7 4MT (409 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197724, + "fields": { + "id_car_serie": 47857, + "name": "6.7 3MT (409 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197725, + "fields": { + "id_car_serie": 47857, + "name": "6.7 4MT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197726, + "fields": { + "id_car_serie": 47858, + "name": "3.9 Powerglide 2-seat (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197727, + "fields": { + "id_car_serie": 47858, + "name": "3.9 Powerglide 3-seat (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197728, + "fields": { + "id_car_serie": 47858, + "name": "3.9 MT 2-seat (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197729, + "fields": { + "id_car_serie": 47858, + "name": "3.9 MT Overdrive 2-seat (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197730, + "fields": { + "id_car_serie": 47858, + "name": "3.9 MT 3-seat (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197731, + "fields": { + "id_car_serie": 47858, + "name": "3.9 MT Overdrive 3-seat (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197732, + "fields": { + "id_car_serie": 47858, + "name": "4.6 Powerglide 3-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197733, + "fields": { + "id_car_serie": 47858, + "name": "4.6 Powerglide 2-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197734, + "fields": { + "id_car_serie": 47858, + "name": "4.6 MT 3-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197735, + "fields": { + "id_car_serie": 47858, + "name": "4.6 MT 2-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197736, + "fields": { + "id_car_serie": 47858, + "name": "4.6 MT Overdrive 3-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197737, + "fields": { + "id_car_serie": 47858, + "name": "4.6 MT Overdrive 2-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197738, + "fields": { + "id_car_serie": 47858, + "name": "5.4 Powerglide 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197739, + "fields": { + "id_car_serie": 47858, + "name": "5.4 Powerglide 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197740, + "fields": { + "id_car_serie": 47858, + "name": "5.4 Powerglide 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197741, + "fields": { + "id_car_serie": 47858, + "name": "5.4 Powerglide 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197742, + "fields": { + "id_car_serie": 47858, + "name": "5.4 MT 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197743, + "fields": { + "id_car_serie": 47858, + "name": "5.4 MT 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197744, + "fields": { + "id_car_serie": 47858, + "name": "5.4 Synchromesh 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197745, + "fields": { + "id_car_serie": 47858, + "name": "5.4 Synchromesh 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197746, + "fields": { + "id_car_serie": 47858, + "name": "5.4 Synchromesh 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197747, + "fields": { + "id_car_serie": 47858, + "name": "5.4 Synchromesh 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197748, + "fields": { + "id_car_serie": 47858, + "name": "5.4 MT 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197749, + "fields": { + "id_car_serie": 47858, + "name": "5.4 MT 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197750, + "fields": { + "id_car_serie": 47859, + "name": "3.9 Powerglide (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197751, + "fields": { + "id_car_serie": 47859, + "name": "3.9 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197752, + "fields": { + "id_car_serie": 47859, + "name": "3.9 MT Overdrive (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197753, + "fields": { + "id_car_serie": 47859, + "name": "4.6 Powerglide (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197754, + "fields": { + "id_car_serie": 47859, + "name": "4.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197755, + "fields": { + "id_car_serie": 47859, + "name": "4.6 MT Overdrive (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197756, + "fields": { + "id_car_serie": 47859, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197757, + "fields": { + "id_car_serie": 47859, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197758, + "fields": { + "id_car_serie": 47859, + "name": "5.4 Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197759, + "fields": { + "id_car_serie": 47859, + "name": "5.4 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197760, + "fields": { + "id_car_serie": 47859, + "name": "5.4 Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197761, + "fields": { + "id_car_serie": 47859, + "name": "5.4 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197762, + "fields": { + "id_car_serie": 47859, + "name": "6.7 3MT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197763, + "fields": { + "id_car_serie": 47859, + "name": "6.7 4MT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197764, + "fields": { + "id_car_serie": 47859, + "name": "6.7 3MT (409 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197765, + "fields": { + "id_car_serie": 47859, + "name": "6.7 4MT (409 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197766, + "fields": { + "id_car_serie": 47860, + "name": "3.9 Powerglide (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197767, + "fields": { + "id_car_serie": 47860, + "name": "3.9 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197768, + "fields": { + "id_car_serie": 47860, + "name": "3.9 MT Overdrive (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197769, + "fields": { + "id_car_serie": 47860, + "name": "4.6 Powerglide (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197770, + "fields": { + "id_car_serie": 47860, + "name": "4.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197771, + "fields": { + "id_car_serie": 47860, + "name": "4.6 MT Overdrive (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197772, + "fields": { + "id_car_serie": 47860, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197773, + "fields": { + "id_car_serie": 47860, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197774, + "fields": { + "id_car_serie": 47860, + "name": "5.4 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197775, + "fields": { + "id_car_serie": 47860, + "name": "5.4 Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197776, + "fields": { + "id_car_serie": 47860, + "name": "5.4 Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197777, + "fields": { + "id_car_serie": 47860, + "name": "5.4 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197778, + "fields": { + "id_car_serie": 47860, + "name": "6.7 3MT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197779, + "fields": { + "id_car_serie": 47860, + "name": "6.7 4MT (409 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197780, + "fields": { + "id_car_serie": 47860, + "name": "6.7 3MT (409 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197781, + "fields": { + "id_car_serie": 47860, + "name": "6.7 4MT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197782, + "fields": { + "id_car_serie": 47861, + "name": "3.9 Powerglide (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197783, + "fields": { + "id_car_serie": 47861, + "name": "3.9 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197784, + "fields": { + "id_car_serie": 47861, + "name": "3.9 MT Overdrive (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197785, + "fields": { + "id_car_serie": 47861, + "name": "4.6 Powerglide (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197786, + "fields": { + "id_car_serie": 47861, + "name": "4.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197787, + "fields": { + "id_car_serie": 47861, + "name": "4.6 MT Overdrive (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197788, + "fields": { + "id_car_serie": 47861, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197789, + "fields": { + "id_car_serie": 47861, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197790, + "fields": { + "id_car_serie": 47861, + "name": "5.4 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197791, + "fields": { + "id_car_serie": 47861, + "name": "5.4 Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197792, + "fields": { + "id_car_serie": 47861, + "name": "5.4 Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197793, + "fields": { + "id_car_serie": 47861, + "name": "5.4 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197794, + "fields": { + "id_car_serie": 47861, + "name": "6.7 3MT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197795, + "fields": { + "id_car_serie": 47861, + "name": "6.7 4MT (409 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197796, + "fields": { + "id_car_serie": 47861, + "name": "6.7 3MT (409 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197797, + "fields": { + "id_car_serie": 47861, + "name": "6.7 4MT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197798, + "fields": { + "id_car_serie": 47862, + "name": "3.9 Powerglide 2-seat (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197799, + "fields": { + "id_car_serie": 47862, + "name": "3.9 Powerglide 3-seat (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197800, + "fields": { + "id_car_serie": 47862, + "name": "3.9 MT Overdrive 2-seat (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197801, + "fields": { + "id_car_serie": 47862, + "name": "3.9 MT 3-seat (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197802, + "fields": { + "id_car_serie": 47862, + "name": "3.9 MT 2-seat (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197803, + "fields": { + "id_car_serie": 47862, + "name": "3.9 MT Overdrive 3-seat (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197804, + "fields": { + "id_car_serie": 47862, + "name": "4.6 Turboglide 3-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197805, + "fields": { + "id_car_serie": 47862, + "name": "4.6 Powerglide 2-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197806, + "fields": { + "id_car_serie": 47862, + "name": "4.6 Powerglide 2-seat (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197807, + "fields": { + "id_car_serie": 47862, + "name": "4.6 Turboglide 2-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197808, + "fields": { + "id_car_serie": 47862, + "name": "4.6 Turboglide 2-seat (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197809, + "fields": { + "id_car_serie": 47862, + "name": "4.6 Powerglide 3-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197810, + "fields": { + "id_car_serie": 47862, + "name": "4.6 Powerglide 3-seat (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197811, + "fields": { + "id_car_serie": 47862, + "name": "4.6 Turboglide 3-seat (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197812, + "fields": { + "id_car_serie": 47862, + "name": "4.6 MT 2-seat (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197813, + "fields": { + "id_car_serie": 47862, + "name": "4.6 MT 3-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197814, + "fields": { + "id_car_serie": 47862, + "name": "4.6 MT 3-seat (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197815, + "fields": { + "id_car_serie": 47862, + "name": "4.6 MT Overdrive 2-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197816, + "fields": { + "id_car_serie": 47862, + "name": "4.6 MT Overdrive 2-seat (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197817, + "fields": { + "id_car_serie": 47862, + "name": "4.6 MT Overdrive 3-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197818, + "fields": { + "id_car_serie": 47862, + "name": "4.6 MT Overdrive 3-seat (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197819, + "fields": { + "id_car_serie": 47862, + "name": "4.6 MT 2-seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197820, + "fields": { + "id_car_serie": 47862, + "name": "5.7 Turboglide 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197821, + "fields": { + "id_car_serie": 47862, + "name": "5.7 Powerglide 3-seat (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197822, + "fields": { + "id_car_serie": 47862, + "name": "5.7 Turboglide 2-seat (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197823, + "fields": { + "id_car_serie": 47862, + "name": "5.7 Turboglide 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197824, + "fields": { + "id_car_serie": 47862, + "name": "5.7 Powerglide 2-seat (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197825, + "fields": { + "id_car_serie": 47862, + "name": "5.7 Turboglide 3-seat (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197826, + "fields": { + "id_car_serie": 47862, + "name": "5.7 4MT 3-seat (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197827, + "fields": { + "id_car_serie": 47862, + "name": "5.7 3MT 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197828, + "fields": { + "id_car_serie": 47862, + "name": "5.7 3MT 2-seat (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197829, + "fields": { + "id_car_serie": 47862, + "name": "5.7 3MT 2-seat (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197830, + "fields": { + "id_car_serie": 47862, + "name": "5.7 3MT 2-seat (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197831, + "fields": { + "id_car_serie": 47862, + "name": "5.7 3MT 2-seat (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197832, + "fields": { + "id_car_serie": 47862, + "name": "5.7 3MT 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197833, + "fields": { + "id_car_serie": 47862, + "name": "5.7 3MT 3-seat (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197834, + "fields": { + "id_car_serie": 47862, + "name": "5.7 3MT 3-seat (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197835, + "fields": { + "id_car_serie": 47862, + "name": "5.7 3MT 3-seat (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197836, + "fields": { + "id_car_serie": 47862, + "name": "5.7 3MT 3-seat (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197837, + "fields": { + "id_car_serie": 47862, + "name": "5.7 4MT 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197838, + "fields": { + "id_car_serie": 47862, + "name": "5.7 4MT 2-seat (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197839, + "fields": { + "id_car_serie": 47862, + "name": "5.7 4MT 2-seat (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197840, + "fields": { + "id_car_serie": 47862, + "name": "5.7 4MT 2-seat (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197841, + "fields": { + "id_car_serie": 47862, + "name": "5.7 4MT 2-seat (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197842, + "fields": { + "id_car_serie": 47862, + "name": "5.7 4MT 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197843, + "fields": { + "id_car_serie": 47862, + "name": "5.7 4MT 3-seat (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197844, + "fields": { + "id_car_serie": 47862, + "name": "5.7 4MT 3-seat (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197845, + "fields": { + "id_car_serie": 47862, + "name": "5.7 4MT 3-seat (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197846, + "fields": { + "id_car_serie": 47863, + "name": "3.9 Powerglide (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197847, + "fields": { + "id_car_serie": 47863, + "name": "3.9 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197848, + "fields": { + "id_car_serie": 47863, + "name": "3.9 MT Overdrive (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197849, + "fields": { + "id_car_serie": 47863, + "name": "4.6 Turboglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197850, + "fields": { + "id_car_serie": 47863, + "name": "4.6 Powerglide (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197851, + "fields": { + "id_car_serie": 47863, + "name": "4.6 Turboglide (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197852, + "fields": { + "id_car_serie": 47863, + "name": "4.6 Powerglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197853, + "fields": { + "id_car_serie": 47863, + "name": "4.6 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197854, + "fields": { + "id_car_serie": 47863, + "name": "4.6 MT Overdrive (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197855, + "fields": { + "id_car_serie": 47863, + "name": "4.6 MT Overdrive (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197856, + "fields": { + "id_car_serie": 47863, + "name": "4.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197857, + "fields": { + "id_car_serie": 47863, + "name": "5.7 Turboglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197858, + "fields": { + "id_car_serie": 47863, + "name": "5.7 Turboglide (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197859, + "fields": { + "id_car_serie": 47863, + "name": "5.7 Powerglide (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197860, + "fields": { + "id_car_serie": 47863, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197861, + "fields": { + "id_car_serie": 47863, + "name": "5.7 4MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197862, + "fields": { + "id_car_serie": 47863, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197863, + "fields": { + "id_car_serie": 47863, + "name": "5.7 3MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197864, + "fields": { + "id_car_serie": 47863, + "name": "5.7 3MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197865, + "fields": { + "id_car_serie": 47863, + "name": "5.7 4MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197866, + "fields": { + "id_car_serie": 47863, + "name": "5.7 3MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197867, + "fields": { + "id_car_serie": 47863, + "name": "5.7 4MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197868, + "fields": { + "id_car_serie": 47863, + "name": "5.7 3MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197869, + "fields": { + "id_car_serie": 47863, + "name": "5.7 4MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197870, + "fields": { + "id_car_serie": 47863, + "name": "6.7 3MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197871, + "fields": { + "id_car_serie": 47863, + "name": "6.7 4MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197872, + "fields": { + "id_car_serie": 47864, + "name": "3.9 Powerglide (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197873, + "fields": { + "id_car_serie": 47864, + "name": "3.9 MT Overdrive (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197874, + "fields": { + "id_car_serie": 47864, + "name": "3.9 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197875, + "fields": { + "id_car_serie": 47864, + "name": "4.6 Turboglide (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197876, + "fields": { + "id_car_serie": 47864, + "name": "4.6 Turboglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197877, + "fields": { + "id_car_serie": 47864, + "name": "4.6 Powerglide (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197878, + "fields": { + "id_car_serie": 47864, + "name": "4.6 Powerglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197879, + "fields": { + "id_car_serie": 47864, + "name": "4.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197880, + "fields": { + "id_car_serie": 47864, + "name": "4.6 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197881, + "fields": { + "id_car_serie": 47864, + "name": "4.6 MT Overdrive (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197882, + "fields": { + "id_car_serie": 47864, + "name": "4.6 MT Overdrive (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197883, + "fields": { + "id_car_serie": 47864, + "name": "5.7 Turboglide (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197884, + "fields": { + "id_car_serie": 47864, + "name": "5.7 Turboglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197885, + "fields": { + "id_car_serie": 47864, + "name": "5.7 Powerglide (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197886, + "fields": { + "id_car_serie": 47864, + "name": "5.7 3MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197887, + "fields": { + "id_car_serie": 47864, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197888, + "fields": { + "id_car_serie": 47864, + "name": "5.7 3MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197889, + "fields": { + "id_car_serie": 47864, + "name": "5.7 3MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197890, + "fields": { + "id_car_serie": 47864, + "name": "5.7 3MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197891, + "fields": { + "id_car_serie": 47864, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197892, + "fields": { + "id_car_serie": 47864, + "name": "5.7 4MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197893, + "fields": { + "id_car_serie": 47864, + "name": "5.7 4MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197894, + "fields": { + "id_car_serie": 47864, + "name": "5.7 4MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197895, + "fields": { + "id_car_serie": 47864, + "name": "5.7 4MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197896, + "fields": { + "id_car_serie": 47864, + "name": "6.7 3MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197897, + "fields": { + "id_car_serie": 47864, + "name": "6.7 4MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197898, + "fields": { + "id_car_serie": 47865, + "name": "3.9 Powerglide (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197899, + "fields": { + "id_car_serie": 47865, + "name": "3.9 MT Overdrive (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197900, + "fields": { + "id_car_serie": 47865, + "name": "3.9 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197901, + "fields": { + "id_car_serie": 47865, + "name": "4.6 Turboglide (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197902, + "fields": { + "id_car_serie": 47865, + "name": "4.6 Turboglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197903, + "fields": { + "id_car_serie": 47865, + "name": "4.6 Powerglide (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197904, + "fields": { + "id_car_serie": 47865, + "name": "4.6 Powerglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197905, + "fields": { + "id_car_serie": 47865, + "name": "4.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197906, + "fields": { + "id_car_serie": 47865, + "name": "4.6 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197907, + "fields": { + "id_car_serie": 47865, + "name": "4.6 MT Overdrive (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197908, + "fields": { + "id_car_serie": 47865, + "name": "4.6 MT Overdrive (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197909, + "fields": { + "id_car_serie": 47865, + "name": "5.7 Turboglide (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197910, + "fields": { + "id_car_serie": 47865, + "name": "5.7 Turboglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197911, + "fields": { + "id_car_serie": 47865, + "name": "5.7 Powerglide (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197912, + "fields": { + "id_car_serie": 47865, + "name": "5.7 3MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197913, + "fields": { + "id_car_serie": 47865, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197914, + "fields": { + "id_car_serie": 47865, + "name": "5.7 3MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197915, + "fields": { + "id_car_serie": 47865, + "name": "5.7 3MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197916, + "fields": { + "id_car_serie": 47865, + "name": "5.7 3MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197917, + "fields": { + "id_car_serie": 47865, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197918, + "fields": { + "id_car_serie": 47865, + "name": "5.7 4MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197919, + "fields": { + "id_car_serie": 47865, + "name": "5.7 4MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197920, + "fields": { + "id_car_serie": 47865, + "name": "5.7 4MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197921, + "fields": { + "id_car_serie": 47865, + "name": "5.7 4MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197922, + "fields": { + "id_car_serie": 47865, + "name": "6.7 4MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197923, + "fields": { + "id_car_serie": 47865, + "name": "6.7 3MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197924, + "fields": { + "id_car_serie": 47866, + "name": "3.9 Powerglide (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197925, + "fields": { + "id_car_serie": 47866, + "name": "3.9 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197926, + "fields": { + "id_car_serie": 47866, + "name": "3.9 MT Overdrive (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197927, + "fields": { + "id_car_serie": 47866, + "name": "4.6 Turboglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197928, + "fields": { + "id_car_serie": 47866, + "name": "4.6 Powerglide (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197929, + "fields": { + "id_car_serie": 47866, + "name": "4.6 Powerglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197930, + "fields": { + "id_car_serie": 47866, + "name": "4.6 Turboglide (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197931, + "fields": { + "id_car_serie": 47866, + "name": "4.6 3MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197932, + "fields": { + "id_car_serie": 47866, + "name": "4.6 3MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197933, + "fields": { + "id_car_serie": 47866, + "name": "4.6 3MT Overdrive (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197934, + "fields": { + "id_car_serie": 47866, + "name": "4.6 3MT Overdrive (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197935, + "fields": { + "id_car_serie": 47866, + "name": "5.7 Turboglide (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197936, + "fields": { + "id_car_serie": 47866, + "name": "5.7 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197937, + "fields": { + "id_car_serie": 47866, + "name": "5.7 Powerglide (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197938, + "fields": { + "id_car_serie": 47866, + "name": "5.7 Powerglide (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197939, + "fields": { + "id_car_serie": 47866, + "name": "5.7 Powerglide (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197940, + "fields": { + "id_car_serie": 47866, + "name": "5.7 Turboglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197941, + "fields": { + "id_car_serie": 47866, + "name": "5.7 4MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197942, + "fields": { + "id_car_serie": 47866, + "name": "5.7 4MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197943, + "fields": { + "id_car_serie": 47866, + "name": "5.7 4MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197944, + "fields": { + "id_car_serie": 47866, + "name": "5.7 4MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197945, + "fields": { + "id_car_serie": 47866, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197946, + "fields": { + "id_car_serie": 47866, + "name": "5.7 3MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197947, + "fields": { + "id_car_serie": 47866, + "name": "5.7 3MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197948, + "fields": { + "id_car_serie": 47866, + "name": "5.7 3MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197949, + "fields": { + "id_car_serie": 47866, + "name": "5.7 3MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197950, + "fields": { + "id_car_serie": 47866, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197951, + "fields": { + "id_car_serie": 47867, + "name": "3.9 Powerglide (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197952, + "fields": { + "id_car_serie": 47867, + "name": "3.9 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197953, + "fields": { + "id_car_serie": 47867, + "name": "3.9 MT Overdrive (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197954, + "fields": { + "id_car_serie": 47867, + "name": "4.6 Turboglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197955, + "fields": { + "id_car_serie": 47867, + "name": "4.6 Powerglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197956, + "fields": { + "id_car_serie": 47867, + "name": "4.6 Powerglide (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197957, + "fields": { + "id_car_serie": 47867, + "name": "4.6 Turboglide (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197958, + "fields": { + "id_car_serie": 47867, + "name": "4.6 3MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197959, + "fields": { + "id_car_serie": 47867, + "name": "4.6 3MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197960, + "fields": { + "id_car_serie": 47867, + "name": "4.6 3MT Overdrive (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197961, + "fields": { + "id_car_serie": 47867, + "name": "4.6 3MT Overdrive (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197962, + "fields": { + "id_car_serie": 47867, + "name": "5.7 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197963, + "fields": { + "id_car_serie": 47867, + "name": "5.7 Turboglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197964, + "fields": { + "id_car_serie": 47867, + "name": "5.7 Powerglide (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197965, + "fields": { + "id_car_serie": 47867, + "name": "5.7 Powerglide (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197966, + "fields": { + "id_car_serie": 47867, + "name": "5.7 Powerglide (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197967, + "fields": { + "id_car_serie": 47867, + "name": "5.7 Turboglide (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197968, + "fields": { + "id_car_serie": 47867, + "name": "5.7 3MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197969, + "fields": { + "id_car_serie": 47867, + "name": "5.7 3MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197970, + "fields": { + "id_car_serie": 47867, + "name": "5.7 4MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197971, + "fields": { + "id_car_serie": 47867, + "name": "5.7 4MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197972, + "fields": { + "id_car_serie": 47867, + "name": "5.7 3MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197973, + "fields": { + "id_car_serie": 47867, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197974, + "fields": { + "id_car_serie": 47867, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197975, + "fields": { + "id_car_serie": 47867, + "name": "5.7 4MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197976, + "fields": { + "id_car_serie": 47867, + "name": "5.7 3MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197977, + "fields": { + "id_car_serie": 47867, + "name": "5.7 4MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197978, + "fields": { + "id_car_serie": 47868, + "name": "3.9 Powerglide (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197979, + "fields": { + "id_car_serie": 47868, + "name": "3.9 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197980, + "fields": { + "id_car_serie": 47868, + "name": "3.9 MT Overdrive (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197981, + "fields": { + "id_car_serie": 47868, + "name": "4.6 Turboglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197982, + "fields": { + "id_car_serie": 47868, + "name": "4.6 Powerglide (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197983, + "fields": { + "id_car_serie": 47868, + "name": "4.6 Powerglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197984, + "fields": { + "id_car_serie": 47868, + "name": "4.6 Turboglide (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197985, + "fields": { + "id_car_serie": 47868, + "name": "4.6 3MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197986, + "fields": { + "id_car_serie": 47868, + "name": "4.6 3MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197987, + "fields": { + "id_car_serie": 47868, + "name": "4.6 3MT Overdrive (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197988, + "fields": { + "id_car_serie": 47868, + "name": "4.6 3MT Overdrive (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197989, + "fields": { + "id_car_serie": 47868, + "name": "5.7 Turboglide (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197990, + "fields": { + "id_car_serie": 47868, + "name": "5.7 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197991, + "fields": { + "id_car_serie": 47868, + "name": "5.7 Powerglide (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197992, + "fields": { + "id_car_serie": 47868, + "name": "5.7 Powerglide (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197993, + "fields": { + "id_car_serie": 47868, + "name": "5.7 Powerglide (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197994, + "fields": { + "id_car_serie": 47868, + "name": "5.7 Turboglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197995, + "fields": { + "id_car_serie": 47868, + "name": "5.7 4MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197996, + "fields": { + "id_car_serie": 47868, + "name": "5.7 4MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197997, + "fields": { + "id_car_serie": 47868, + "name": "5.7 4MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197998, + "fields": { + "id_car_serie": 47868, + "name": "5.7 4MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 197999, + "fields": { + "id_car_serie": 47868, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198000, + "fields": { + "id_car_serie": 47868, + "name": "5.7 3MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198001, + "fields": { + "id_car_serie": 47868, + "name": "5.7 3MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198002, + "fields": { + "id_car_serie": 47868, + "name": "5.7 3MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198003, + "fields": { + "id_car_serie": 47868, + "name": "5.7 3MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198004, + "fields": { + "id_car_serie": 47868, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198005, + "fields": { + "id_car_serie": 47869, + "name": "3.9 Powerglide (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198006, + "fields": { + "id_car_serie": 47869, + "name": "3.9 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198007, + "fields": { + "id_car_serie": 47869, + "name": "3.9 MT Overdrive (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198008, + "fields": { + "id_car_serie": 47869, + "name": "4.6 Turboglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198009, + "fields": { + "id_car_serie": 47869, + "name": "4.6 Powerglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198010, + "fields": { + "id_car_serie": 47869, + "name": "4.6 Powerglide (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198011, + "fields": { + "id_car_serie": 47869, + "name": "4.6 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198012, + "fields": { + "id_car_serie": 47869, + "name": "4.6 Turboglide (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198013, + "fields": { + "id_car_serie": 47869, + "name": "4.6 Turboglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198014, + "fields": { + "id_car_serie": 47869, + "name": "4.6 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198015, + "fields": { + "id_car_serie": 47869, + "name": "4.6 4MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198016, + "fields": { + "id_car_serie": 47869, + "name": "4.6 3MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198017, + "fields": { + "id_car_serie": 47869, + "name": "4.6 3MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198018, + "fields": { + "id_car_serie": 47869, + "name": "4.6 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198019, + "fields": { + "id_car_serie": 47869, + "name": "4.6 3MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198020, + "fields": { + "id_car_serie": 47869, + "name": "4.6 3MT Overdrive (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198021, + "fields": { + "id_car_serie": 47869, + "name": "4.6 3MT Overdrive (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198022, + "fields": { + "id_car_serie": 47869, + "name": "5.7 Powerglide (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198023, + "fields": { + "id_car_serie": 47869, + "name": "5.7 Powerglide (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198024, + "fields": { + "id_car_serie": 47869, + "name": "5.7 Turboglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198025, + "fields": { + "id_car_serie": 47869, + "name": "5.7 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198026, + "fields": { + "id_car_serie": 47869, + "name": "5.7 Turboglide (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198027, + "fields": { + "id_car_serie": 47869, + "name": "5.7 4MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198028, + "fields": { + "id_car_serie": 47869, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198029, + "fields": { + "id_car_serie": 47869, + "name": "5.7 4MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198030, + "fields": { + "id_car_serie": 47869, + "name": "5.7 4MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198031, + "fields": { + "id_car_serie": 47869, + "name": "5.7 3MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198032, + "fields": { + "id_car_serie": 47869, + "name": "5.7 3MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198033, + "fields": { + "id_car_serie": 47869, + "name": "5.7 3MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198034, + "fields": { + "id_car_serie": 47869, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198035, + "fields": { + "id_car_serie": 47870, + "name": "3.9 Powerglide (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198036, + "fields": { + "id_car_serie": 47870, + "name": "3.9 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198037, + "fields": { + "id_car_serie": 47870, + "name": "3.9 MT Overdrive (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198038, + "fields": { + "id_car_serie": 47870, + "name": "4.6 Turboglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198039, + "fields": { + "id_car_serie": 47870, + "name": "4.6 Powerglide (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198040, + "fields": { + "id_car_serie": 47870, + "name": "4.6 Powerglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198041, + "fields": { + "id_car_serie": 47870, + "name": "4.6 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198042, + "fields": { + "id_car_serie": 47870, + "name": "4.6 Turboglide (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198043, + "fields": { + "id_car_serie": 47870, + "name": "4.6 Turboglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198044, + "fields": { + "id_car_serie": 47870, + "name": "4.6 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198045, + "fields": { + "id_car_serie": 47870, + "name": "4.6 4MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198046, + "fields": { + "id_car_serie": 47870, + "name": "4.6 3MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198047, + "fields": { + "id_car_serie": 47870, + "name": "4.6 3MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198048, + "fields": { + "id_car_serie": 47870, + "name": "4.6 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198049, + "fields": { + "id_car_serie": 47870, + "name": "4.6 3MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198050, + "fields": { + "id_car_serie": 47870, + "name": "4.6 3MT Overdrive (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198051, + "fields": { + "id_car_serie": 47870, + "name": "4.6 3MT Overdrive (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198052, + "fields": { + "id_car_serie": 47870, + "name": "5.7 Powerglide (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198053, + "fields": { + "id_car_serie": 47870, + "name": "5.7 Powerglide (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198054, + "fields": { + "id_car_serie": 47870, + "name": "5.7 Turboglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198055, + "fields": { + "id_car_serie": 47870, + "name": "5.7 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198056, + "fields": { + "id_car_serie": 47870, + "name": "5.7 Turboglide (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198057, + "fields": { + "id_car_serie": 47870, + "name": "5.7 4MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198058, + "fields": { + "id_car_serie": 47870, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198059, + "fields": { + "id_car_serie": 47870, + "name": "5.7 4MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198060, + "fields": { + "id_car_serie": 47870, + "name": "5.7 4MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198061, + "fields": { + "id_car_serie": 47870, + "name": "5.7 3MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198062, + "fields": { + "id_car_serie": 47870, + "name": "5.7 3MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198063, + "fields": { + "id_car_serie": 47870, + "name": "5.7 3MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198064, + "fields": { + "id_car_serie": 47870, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198065, + "fields": { + "id_car_serie": 47871, + "name": "3.9 Powerglide (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198066, + "fields": { + "id_car_serie": 47871, + "name": "3.9 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198067, + "fields": { + "id_car_serie": 47871, + "name": "3.9 MT Overdrive (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198068, + "fields": { + "id_car_serie": 47871, + "name": "4.6 Turboglide (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198069, + "fields": { + "id_car_serie": 47871, + "name": "4.6 Powerglide (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198070, + "fields": { + "id_car_serie": 47871, + "name": "4.6 Turboglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198071, + "fields": { + "id_car_serie": 47871, + "name": "4.6 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198072, + "fields": { + "id_car_serie": 47871, + "name": "4.6 Powerglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198073, + "fields": { + "id_car_serie": 47871, + "name": "4.6 Turboglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198074, + "fields": { + "id_car_serie": 47871, + "name": "4.6 3MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198075, + "fields": { + "id_car_serie": 47871, + "name": "4.6 3MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198076, + "fields": { + "id_car_serie": 47871, + "name": "4.6 3MT Overdrive (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198077, + "fields": { + "id_car_serie": 47871, + "name": "4.6 3MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198078, + "fields": { + "id_car_serie": 47871, + "name": "4.6 3MT Overdrive (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198079, + "fields": { + "id_car_serie": 47871, + "name": "4.6 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198080, + "fields": { + "id_car_serie": 47871, + "name": "4.6 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198081, + "fields": { + "id_car_serie": 47871, + "name": "4.6 4MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198082, + "fields": { + "id_car_serie": 47871, + "name": "5.7 Turboglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198083, + "fields": { + "id_car_serie": 47871, + "name": "5.7 Powerglide (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198084, + "fields": { + "id_car_serie": 47871, + "name": "5.7 Turboglide (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198085, + "fields": { + "id_car_serie": 47871, + "name": "5.7 Powerglide (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198086, + "fields": { + "id_car_serie": 47871, + "name": "5.7 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198087, + "fields": { + "id_car_serie": 47871, + "name": "5.7 4MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198088, + "fields": { + "id_car_serie": 47871, + "name": "5.7 3MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198089, + "fields": { + "id_car_serie": 47871, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198090, + "fields": { + "id_car_serie": 47871, + "name": "5.7 4MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198091, + "fields": { + "id_car_serie": 47871, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198092, + "fields": { + "id_car_serie": 47871, + "name": "5.7 3MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198093, + "fields": { + "id_car_serie": 47871, + "name": "5.7 4MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198094, + "fields": { + "id_car_serie": 47871, + "name": "5.7 3MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198095, + "fields": { + "id_car_serie": 47872, + "name": "3.9 Powerglide (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198096, + "fields": { + "id_car_serie": 47872, + "name": "3.9 Synchro-Mesh (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198097, + "fields": { + "id_car_serie": 47872, + "name": "3.9 Synchro-Mesh Overdrive (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198098, + "fields": { + "id_car_serie": 47872, + "name": "4.6 Turboglide (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198099, + "fields": { + "id_car_serie": 47872, + "name": "4.6 Powerglide (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198100, + "fields": { + "id_car_serie": 47872, + "name": "4.6 Powerglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198101, + "fields": { + "id_car_serie": 47872, + "name": "4.6 Turboglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198102, + "fields": { + "id_car_serie": 47872, + "name": "4.6 Turboglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198103, + "fields": { + "id_car_serie": 47872, + "name": "4.6 Synchro-Mesh (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198104, + "fields": { + "id_car_serie": 47872, + "name": "4.6 Synchro-Mesh (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198105, + "fields": { + "id_car_serie": 47872, + "name": "4.6 Synchro-Mesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198106, + "fields": { + "id_car_serie": 47872, + "name": "5.7 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198107, + "fields": { + "id_car_serie": 47872, + "name": "5.7 Turboglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198108, + "fields": { + "id_car_serie": 47872, + "name": "5.7 Turboglide (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198109, + "fields": { + "id_car_serie": 47872, + "name": "5.7 Synchro-Mesh (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198110, + "fields": { + "id_car_serie": 47872, + "name": "5.7 Synchro-Mesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198111, + "fields": { + "id_car_serie": 47873, + "name": "3.9 Powerglide (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198112, + "fields": { + "id_car_serie": 47873, + "name": "3.9 Synchro-Mesh (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198113, + "fields": { + "id_car_serie": 47873, + "name": "3.9 Synchro-Mesh Overdrive (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198114, + "fields": { + "id_car_serie": 47873, + "name": "4.6 Powerglide (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198115, + "fields": { + "id_car_serie": 47873, + "name": "4.6 Powerglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198116, + "fields": { + "id_car_serie": 47873, + "name": "4.6 Turboglide (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198117, + "fields": { + "id_car_serie": 47873, + "name": "4.6 Turboglide (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198118, + "fields": { + "id_car_serie": 47873, + "name": "4.6 Turboglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198119, + "fields": { + "id_car_serie": 47873, + "name": "4.6 Synchro-Mesh (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198120, + "fields": { + "id_car_serie": 47873, + "name": "4.6 Synchro-Mesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198121, + "fields": { + "id_car_serie": 47873, + "name": "4.6 Synchro-Mesh (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198122, + "fields": { + "id_car_serie": 47873, + "name": "5.7 Turboglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198123, + "fields": { + "id_car_serie": 47873, + "name": "5.7 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198124, + "fields": { + "id_car_serie": 47873, + "name": "5.7 Turboglide (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198125, + "fields": { + "id_car_serie": 47873, + "name": "5.7 Synchro-Mesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198126, + "fields": { + "id_car_serie": 47873, + "name": "5.7 Synchro-Mesh (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198127, + "fields": { + "id_car_serie": 47874, + "name": "1.2 LPG MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198128, + "fields": { + "id_car_serie": 47874, + "name": "1.2 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198129, + "fields": { + "id_car_serie": 47874, + "name": "1.4 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198130, + "fields": { + "id_car_serie": 47874, + "name": "1.4 LPG AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198131, + "fields": { + "id_car_serie": 47874, + "name": "1.4 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198132, + "fields": { + "id_car_serie": 47874, + "name": "1.4 LPG MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198133, + "fields": { + "id_car_serie": 47874, + "name": "1.4 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198134, + "fields": { + "id_car_serie": 47875, + "name": "6.0 AT (349 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198135, + "fields": { + "id_car_serie": 47875, + "name": "6.0 MT (362 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198136, + "fields": { + "id_car_serie": 47876, + "name": "3.6 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198137, + "fields": { + "id_car_serie": 47876, + "name": "5.7 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198138, + "fields": { + "id_car_serie": 47876, + "name": "5.7 MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198139, + "fields": { + "id_car_serie": 47877, + "name": "3.8 AT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198140, + "fields": { + "id_car_serie": 47877, + "name": "5.7 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198141, + "fields": { + "id_car_serie": 47877, + "name": "5.7 MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198142, + "fields": { + "id_car_serie": 47878, + "name": "3.8 CV6 AT (229 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198143, + "fields": { + "id_car_serie": 47878, + "name": "5.7 CV8 AT (302 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198144, + "fields": { + "id_car_serie": 47878, + "name": "5.7 CV8-R AT (329 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198145, + "fields": { + "id_car_serie": 47878, + "name": "5.7 CV8-Z AT (349 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198146, + "fields": { + "id_car_serie": 47878, + "name": "5.7 CV8-R MT (329 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198147, + "fields": { + "id_car_serie": 47878, + "name": "5.7 CV8-Z MT (349 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198148, + "fields": { + "id_car_serie": 47878, + "name": "5.7 CV8 MT (302 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198149, + "fields": { + "id_car_serie": 47879, + "name": "3.1 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198150, + "fields": { + "id_car_serie": 47879, + "name": "3.1 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198151, + "fields": { + "id_car_serie": 47879, + "name": "3.4 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198152, + "fields": { + "id_car_serie": 47879, + "name": "3.4 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198153, + "fields": { + "id_car_serie": 47879, + "name": "3.8 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198154, + "fields": { + "id_car_serie": 47880, + "name": "2.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198155, + "fields": { + "id_car_serie": 47880, + "name": "2.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198156, + "fields": { + "id_car_serie": 47880, + "name": "2.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198157, + "fields": { + "id_car_serie": 47880, + "name": "3.1 4AT Euro (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198158, + "fields": { + "id_car_serie": 47880, + "name": "3.1 4AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198159, + "fields": { + "id_car_serie": 47880, + "name": "3.1 3AT Euro (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198160, + "fields": { + "id_car_serie": 47880, + "name": "3.1 3AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198161, + "fields": { + "id_car_serie": 47880, + "name": "3.1 4AT Euro (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198162, + "fields": { + "id_car_serie": 47880, + "name": "3.1 3AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198163, + "fields": { + "id_car_serie": 47880, + "name": "3.1 3AT Euro (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198164, + "fields": { + "id_car_serie": 47880, + "name": "3.1 4AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198165, + "fields": { + "id_car_serie": 47881, + "name": "2.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198166, + "fields": { + "id_car_serie": 47881, + "name": "2.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198167, + "fields": { + "id_car_serie": 47881, + "name": "3.1 4AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198168, + "fields": { + "id_car_serie": 47881, + "name": "3.1 3AT Euro (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198169, + "fields": { + "id_car_serie": 47881, + "name": "3.1 3AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198170, + "fields": { + "id_car_serie": 47881, + "name": "3.1 4AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198171, + "fields": { + "id_car_serie": 47881, + "name": "3.1 3AT Euro (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198172, + "fields": { + "id_car_serie": 47881, + "name": "3.1 3AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198173, + "fields": { + "id_car_serie": 47881, + "name": "3.1 4AT Euro (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198174, + "fields": { + "id_car_serie": 47881, + "name": "3.1 4AT Euro (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198175, + "fields": { + "id_car_serie": 47881, + "name": "3.4 Z34 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198176, + "fields": { + "id_car_serie": 47881, + "name": "3.4 Z34 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198177, + "fields": { + "id_car_serie": 47881, + "name": "3.4 Z34 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198178, + "fields": { + "id_car_serie": 47882, + "name": "2.4 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198179, + "fields": { + "id_car_serie": 47882, + "name": "2.5 TDi MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198180, + "fields": { + "id_car_serie": 47882, + "name": "3.0 TDi AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198181, + "fields": { + "id_car_serie": 47882, + "name": "3.0 TDi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198182, + "fields": { + "id_car_serie": 47882, + "name": "3.0 TDi MT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198183, + "fields": { + "id_car_serie": 47882, + "name": "3.5 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198184, + "fields": { + "id_car_serie": 47882, + "name": "3.5 MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198185, + "fields": { + "id_car_serie": 47883, + "name": "3.9 Hydra-Matic (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198186, + "fields": { + "id_car_serie": 47884, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198187, + "fields": { + "id_car_serie": 47884, + "name": "3.8 AT California (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198189, + "fields": { + "id_car_serie": 47884, + "name": "4.4 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198190, + "fields": { + "id_car_serie": 47884, + "name": "5.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198191, + "fields": { + "id_car_serie": 47884, + "name": "5.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198192, + "fields": { + "id_car_serie": 47884, + "name": "5.7 D AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198193, + "fields": { + "id_car_serie": 47885, + "name": "3.8 AT California (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198194, + "fields": { + "id_car_serie": 47885, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198195, + "fields": { + "id_car_serie": 47885, + "name": "3.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198196, + "fields": { + "id_car_serie": 47885, + "name": "4.4 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198197, + "fields": { + "id_car_serie": 47885, + "name": "5.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198198, + "fields": { + "id_car_serie": 47886, + "name": "3.8 AT California (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198199, + "fields": { + "id_car_serie": 47886, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198200, + "fields": { + "id_car_serie": 47886, + "name": "3.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198201, + "fields": { + "id_car_serie": 47886, + "name": "4.4 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198202, + "fields": { + "id_car_serie": 47886, + "name": "5.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198203, + "fields": { + "id_car_serie": 47887, + "name": "3.8 AT California (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198204, + "fields": { + "id_car_serie": 47887, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198205, + "fields": { + "id_car_serie": 47887, + "name": "3.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198206, + "fields": { + "id_car_serie": 47887, + "name": "4.4 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198207, + "fields": { + "id_car_serie": 47887, + "name": "5.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198208, + "fields": { + "id_car_serie": 47888, + "name": "3.3 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198209, + "fields": { + "id_car_serie": 47888, + "name": "3.3 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198210, + "fields": { + "id_car_serie": 47888, + "name": "3.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198211, + "fields": { + "id_car_serie": 47888, + "name": "4.4 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198212, + "fields": { + "id_car_serie": 47888, + "name": "4.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198213, + "fields": { + "id_car_serie": 47888, + "name": "5.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198214, + "fields": { + "id_car_serie": 47888, + "name": "5.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198215, + "fields": { + "id_car_serie": 47888, + "name": "5.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198216, + "fields": { + "id_car_serie": 47888, + "name": "5.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198217, + "fields": { + "id_car_serie": 47889, + "name": "3.3 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198218, + "fields": { + "id_car_serie": 47889, + "name": "3.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198219, + "fields": { + "id_car_serie": 47889, + "name": "3.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198220, + "fields": { + "id_car_serie": 47889, + "name": "5.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198221, + "fields": { + "id_car_serie": 47889, + "name": "5.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198222, + "fields": { + "id_car_serie": 47889, + "name": "5.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198223, + "fields": { + "id_car_serie": 47889, + "name": "5.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198224, + "fields": { + "id_car_serie": 47890, + "name": "3.3 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198225, + "fields": { + "id_car_serie": 47890, + "name": "3.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198226, + "fields": { + "id_car_serie": 47890, + "name": "3.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198227, + "fields": { + "id_car_serie": 47890, + "name": "5.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198228, + "fields": { + "id_car_serie": 47890, + "name": "5.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198229, + "fields": { + "id_car_serie": 47890, + "name": "5.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198230, + "fields": { + "id_car_serie": 47890, + "name": "5.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198231, + "fields": { + "id_car_serie": 47890, + "name": "5.7 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198232, + "fields": { + "id_car_serie": 47890, + "name": "5.7 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198233, + "fields": { + "id_car_serie": 47891, + "name": "3.3 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198234, + "fields": { + "id_car_serie": 47891, + "name": "3.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198235, + "fields": { + "id_car_serie": 47891, + "name": "3.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198236, + "fields": { + "id_car_serie": 47891, + "name": "5.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198237, + "fields": { + "id_car_serie": 47891, + "name": "5.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198238, + "fields": { + "id_car_serie": 47891, + "name": "5.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198239, + "fields": { + "id_car_serie": 47891, + "name": "5.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198240, + "fields": { + "id_car_serie": 47892, + "name": "3.3 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198241, + "fields": { + "id_car_serie": 47892, + "name": "3.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198242, + "fields": { + "id_car_serie": 47892, + "name": "3.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198243, + "fields": { + "id_car_serie": 47892, + "name": "5.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198244, + "fields": { + "id_car_serie": 47892, + "name": "5.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198245, + "fields": { + "id_car_serie": 47892, + "name": "5.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198246, + "fields": { + "id_car_serie": 47892, + "name": "5.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198247, + "fields": { + "id_car_serie": 47893, + "name": "3.5 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198248, + "fields": { + "id_car_serie": 47893, + "name": "3.9 AT (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198249, + "fields": { + "id_car_serie": 47893, + "name": "5.3 AT H.D. (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198250, + "fields": { + "id_car_serie": 47894, + "name": "3.8 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198251, + "fields": { + "id_car_serie": 47895, + "name": "3.8 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198252, + "fields": { + "id_car_serie": 47896, + "name": "5.0 AT Overdrive (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198253, + "fields": { + "id_car_serie": 47897, + "name": "5.0 AT Overdrive (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198254, + "fields": { + "id_car_serie": 47900, + "name": "5.0 AT Overdrive (180 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198256, + "fields": { + "id_car_serie": 47900, + "name": "5.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198257, + "fields": { + "id_car_serie": 47900, + "name": "5.0 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198258, + "fields": { + "id_car_serie": 47902, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198259, + "fields": { + "id_car_serie": 47902, + "name": "3.8 AT California (110 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198260, + "fields": { + "id_car_serie": 47902, + "name": "3.8 AT Overdrive (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198263, + "fields": { + "id_car_serie": 47902, + "name": "4.3 D AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198264, + "fields": { + "id_car_serie": 47902, + "name": "4.3 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198265, + "fields": { + "id_car_serie": 47902, + "name": "4.3 AT Overdrive (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198266, + "fields": { + "id_car_serie": 47902, + "name": "5.0 AT Overdrive (150 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198268, + "fields": { + "id_car_serie": 47902, + "name": "5.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198271, + "fields": { + "id_car_serie": 47902, + "name": "5.7 D AT Overdrive (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198272, + "fields": { + "id_car_serie": 47902, + "name": "5.7 D AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198274, + "fields": { + "id_car_serie": 47903, + "name": "3.8 AT California (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198275, + "fields": { + "id_car_serie": 47903, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198276, + "fields": { + "id_car_serie": 47903, + "name": "4.3 D AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198277, + "fields": { + "id_car_serie": 47903, + "name": "4.4 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198278, + "fields": { + "id_car_serie": 47903, + "name": "5.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198279, + "fields": { + "id_car_serie": 47903, + "name": "5.7 D AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198280, + "fields": { + "id_car_serie": 47904, + "name": "3.8 T AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198281, + "fields": { + "id_car_serie": 47904, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198282, + "fields": { + "id_car_serie": 47904, + "name": "3.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198283, + "fields": { + "id_car_serie": 47904, + "name": "4.4 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198284, + "fields": { + "id_car_serie": 47904, + "name": "5.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198285, + "fields": { + "id_car_serie": 47905, + "name": "3.3 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198286, + "fields": { + "id_car_serie": 47905, + "name": "3.3 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198287, + "fields": { + "id_car_serie": 47905, + "name": "3.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198288, + "fields": { + "id_car_serie": 47905, + "name": "4.4 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198289, + "fields": { + "id_car_serie": 47905, + "name": "5.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198290, + "fields": { + "id_car_serie": 47905, + "name": "5.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198291, + "fields": { + "id_car_serie": 47906, + "name": "5.0 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198292, + "fields": { + "id_car_serie": 47906, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198293, + "fields": { + "id_car_serie": 47906, + "name": "5.7 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198294, + "fields": { + "id_car_serie": 47907, + "name": "5.0 Turbo Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198295, + "fields": { + "id_car_serie": 47907, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198296, + "fields": { + "id_car_serie": 47907, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198297, + "fields": { + "id_car_serie": 47907, + "name": "6.6 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198298, + "fields": { + "id_car_serie": 47908, + "name": "5.7 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198299, + "fields": { + "id_car_serie": 47908, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198300, + "fields": { + "id_car_serie": 47908, + "name": "5.7 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198301, + "fields": { + "id_car_serie": 47908, + "name": "6.6 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198302, + "fields": { + "id_car_serie": 47908, + "name": "7.4 Turbo Hydra-Matic (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198303, + "fields": { + "id_car_serie": 47909, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198304, + "fields": { + "id_car_serie": 47909, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198305, + "fields": { + "id_car_serie": 47909, + "name": "5.7 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198306, + "fields": { + "id_car_serie": 47909, + "name": "5.7 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198307, + "fields": { + "id_car_serie": 47909, + "name": "6.6 Turbo Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198308, + "fields": { + "id_car_serie": 47909, + "name": "6.6 Turbo Hydra-Matic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198309, + "fields": { + "id_car_serie": 47909, + "name": "7.4 Turbo Hydra-Matic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198310, + "fields": { + "id_car_serie": 47910, + "name": "5.7 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198311, + "fields": { + "id_car_serie": 47910, + "name": "5.7 Powerglide (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198312, + "fields": { + "id_car_serie": 47910, + "name": "5.7 Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198313, + "fields": { + "id_car_serie": 47910, + "name": "5.7 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198314, + "fields": { + "id_car_serie": 47910, + "name": "5.7 MT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198315, + "fields": { + "id_car_serie": 47910, + "name": "6.6 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198316, + "fields": { + "id_car_serie": 47910, + "name": "6.6 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198317, + "fields": { + "id_car_serie": 47910, + "name": "7.4 Turbo Hydra-Matic (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198318, + "fields": { + "id_car_serie": 47910, + "name": "7.4 Turbo Hydra-Matic (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198319, + "fields": { + "id_car_serie": 47910, + "name": "7.4 MT HD (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198320, + "fields": { + "id_car_serie": 47911, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198321, + "fields": { + "id_car_serie": 47911, + "name": "5.7 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198322, + "fields": { + "id_car_serie": 47911, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198323, + "fields": { + "id_car_serie": 47911, + "name": "5.7 Turbo Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198324, + "fields": { + "id_car_serie": 47911, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198325, + "fields": { + "id_car_serie": 47911, + "name": "5.7 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198326, + "fields": { + "id_car_serie": 47911, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198327, + "fields": { + "id_car_serie": 47911, + "name": "6.6 Turbo Hydra-Matic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198328, + "fields": { + "id_car_serie": 47911, + "name": "6.6 Turbo Hydra-Matic (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198329, + "fields": { + "id_car_serie": 47911, + "name": "6.6 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198330, + "fields": { + "id_car_serie": 47911, + "name": "6.6 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198331, + "fields": { + "id_car_serie": 47911, + "name": "7.4 Turbo Hydra-Matic (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198332, + "fields": { + "id_car_serie": 47912, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198333, + "fields": { + "id_car_serie": 47912, + "name": "5.7 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198334, + "fields": { + "id_car_serie": 47912, + "name": "5.7 Turbo Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198335, + "fields": { + "id_car_serie": 47912, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198336, + "fields": { + "id_car_serie": 47912, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198337, + "fields": { + "id_car_serie": 47912, + "name": "5.7 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198338, + "fields": { + "id_car_serie": 47912, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198339, + "fields": { + "id_car_serie": 47912, + "name": "6.6 Turbo Hydra-Matic (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198340, + "fields": { + "id_car_serie": 47912, + "name": "6.6 Turbo Hydra-Matic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198341, + "fields": { + "id_car_serie": 47912, + "name": "6.6 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198342, + "fields": { + "id_car_serie": 47912, + "name": "6.6 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198343, + "fields": { + "id_car_serie": 47912, + "name": "7.4 Turbo Hydra-Matic (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198344, + "fields": { + "id_car_serie": 47913, + "name": "1.8 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198345, + "fields": { + "id_car_serie": 47913, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198346, + "fields": { + "id_car_serie": 47913, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198347, + "fields": { + "id_car_serie": 47913, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198348, + "fields": { + "id_car_serie": 47914, + "name": "1.8 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198349, + "fields": { + "id_car_serie": 47914, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198350, + "fields": { + "id_car_serie": 47914, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198352, + "fields": { + "id_car_serie": 47920, + "name": "3.6 AT (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198353, + "fields": { + "id_car_serie": 47921, + "name": "3.6 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198354, + "fields": { + "id_car_serie": 47922, + "name": "3.6 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198355, + "fields": { + "id_car_serie": 47922, + "name": "3.6 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198356, + "fields": { + "id_car_serie": 47923, + "name": "3.8 AT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198357, + "fields": { + "id_car_serie": 47923, + "name": "3.8 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198358, + "fields": { + "id_car_serie": 47923, + "name": "3.8 MT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198359, + "fields": { + "id_car_serie": 47923, + "name": "3.8 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198360, + "fields": { + "id_car_serie": 47924, + "name": "2.2 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198361, + "fields": { + "id_car_serie": 47924, + "name": "2.4 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198362, + "fields": { + "id_car_serie": 47924, + "name": "2.4 FlexFuel MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198363, + "fields": { + "id_car_serie": 47924, + "name": "2.5 TD MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198364, + "fields": { + "id_car_serie": 47924, + "name": "2.5 TD MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198365, + "fields": { + "id_car_serie": 47924, + "name": "2.8 TD MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198366, + "fields": { + "id_car_serie": 47924, + "name": "2.8 TD MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198367, + "fields": { + "id_car_serie": 47924, + "name": "2.8 TD MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198368, + "fields": { + "id_car_serie": 47924, + "name": "2.8 TD MT 4WD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198369, + "fields": { + "id_car_serie": 47924, + "name": "4.3 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198370, + "fields": { + "id_car_serie": 47924, + "name": "4.3 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198371, + "fields": { + "id_car_serie": 47924, + "name": "4.3 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198372, + "fields": { + "id_car_serie": 47924, + "name": "4.3 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198373, + "fields": { + "id_car_serie": 47925, + "name": "2.5 TD MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198374, + "fields": { + "id_car_serie": 47925, + "name": "4.3 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198375, + "fields": { + "id_car_serie": 47925, + "name": "4.3 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198376, + "fields": { + "id_car_serie": 47926, + "name": "2.2 AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198377, + "fields": { + "id_car_serie": 47926, + "name": "2.2 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198378, + "fields": { + "id_car_serie": 47926, + "name": "4.3 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198379, + "fields": { + "id_car_serie": 47926, + "name": "4.3 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198380, + "fields": { + "id_car_serie": 47926, + "name": "4.3 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198381, + "fields": { + "id_car_serie": 47926, + "name": "4.3 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198382, + "fields": { + "id_car_serie": 47926, + "name": "4.3 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198383, + "fields": { + "id_car_serie": 47926, + "name": "4.3 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198384, + "fields": { + "id_car_serie": 47926, + "name": "4.3 AT 4WD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198385, + "fields": { + "id_car_serie": 47926, + "name": "4.3 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198387, + "fields": { + "id_car_serie": 47926, + "name": "4.3 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198388, + "fields": { + "id_car_serie": 47926, + "name": "4.3 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198389, + "fields": { + "id_car_serie": 47926, + "name": "4.3 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198390, + "fields": { + "id_car_serie": 47926, + "name": "4.3 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198391, + "fields": { + "id_car_serie": 47926, + "name": "4.3 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198392, + "fields": { + "id_car_serie": 47926, + "name": "4.3 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198393, + "fields": { + "id_car_serie": 47926, + "name": "4.3 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198394, + "fields": { + "id_car_serie": 47926, + "name": "4.3 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198395, + "fields": { + "id_car_serie": 47926, + "name": "4.3 MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198396, + "fields": { + "id_car_serie": 47927, + "name": "2.2 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198397, + "fields": { + "id_car_serie": 47927, + "name": "2.2 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198398, + "fields": { + "id_car_serie": 47927, + "name": "2.4 FlexFuel MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198399, + "fields": { + "id_car_serie": 47927, + "name": "2.4 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198400, + "fields": { + "id_car_serie": 47927, + "name": "2.5 TD MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198401, + "fields": { + "id_car_serie": 47927, + "name": "2.8 TD MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198402, + "fields": { + "id_car_serie": 47927, + "name": "2.8 TD MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198403, + "fields": { + "id_car_serie": 47927, + "name": "2.8 TD MT 4WD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198404, + "fields": { + "id_car_serie": 47927, + "name": "2.8 TD MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198405, + "fields": { + "id_car_serie": 47927, + "name": "4.3 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198406, + "fields": { + "id_car_serie": 47927, + "name": "4.3 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198407, + "fields": { + "id_car_serie": 47928, + "name": "2.2 AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198408, + "fields": { + "id_car_serie": 47928, + "name": "2.2 AT LWB (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198409, + "fields": { + "id_car_serie": 47928, + "name": "2.2 MT LWB (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198410, + "fields": { + "id_car_serie": 47928, + "name": "2.2 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198411, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198412, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT 4WD LWB (190 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198413, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198414, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT 4WD LWB (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198417, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198418, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT LWB (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198419, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT LWB (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198420, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198421, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198422, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT LWB (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198423, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT LWB (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198424, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198425, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198426, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198427, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT LWB (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198428, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT 4WD LWB (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198429, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT 4WD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198430, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT LWB (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198431, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT 4WD LWB (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198432, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198433, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198434, + "fields": { + "id_car_serie": 47928, + "name": "4.3 AT 4WD LWB (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198435, + "fields": { + "id_car_serie": 47928, + "name": "4.3 MT 4WD LWB (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198436, + "fields": { + "id_car_serie": 47928, + "name": "4.3 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198437, + "fields": { + "id_car_serie": 47928, + "name": "4.3 MT LWB (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198438, + "fields": { + "id_car_serie": 47928, + "name": "4.3 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198439, + "fields": { + "id_car_serie": 47928, + "name": "4.3 MT LWB (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198440, + "fields": { + "id_car_serie": 47928, + "name": "4.3 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198441, + "fields": { + "id_car_serie": 47928, + "name": "4.3 MT LWB (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198442, + "fields": { + "id_car_serie": 47928, + "name": "4.3 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198443, + "fields": { + "id_car_serie": 47928, + "name": "4.3 MT 4WD LWB (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198444, + "fields": { + "id_car_serie": 47928, + "name": "4.3 MT 4WD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198445, + "fields": { + "id_car_serie": 47928, + "name": "4.3 MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198446, + "fields": { + "id_car_serie": 47928, + "name": "4.3 MT 4WD LWB (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198447, + "fields": { + "id_car_serie": 47928, + "name": "4.3 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198448, + "fields": { + "id_car_serie": 47929, + "name": "2.0 4AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198449, + "fields": { + "id_car_serie": 47929, + "name": "2.0 5MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198450, + "fields": { + "id_car_serie": 47929, + "name": "2.0 4MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198451, + "fields": { + "id_car_serie": 47929, + "name": "2.0 5MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198452, + "fields": { + "id_car_serie": 47929, + "name": "2.0 4MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198453, + "fields": { + "id_car_serie": 47929, + "name": "2.2D 4MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198454, + "fields": { + "id_car_serie": 47929, + "name": "2.2D 5MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198455, + "fields": { + "id_car_serie": 47929, + "name": "2.5 4AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198456, + "fields": { + "id_car_serie": 47929, + "name": "2.5 4AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198457, + "fields": { + "id_car_serie": 47929, + "name": "2.5 4AT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198458, + "fields": { + "id_car_serie": 47929, + "name": "2.5 4AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198459, + "fields": { + "id_car_serie": 47929, + "name": "2.5 5MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198460, + "fields": { + "id_car_serie": 47929, + "name": "2.5 5MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198461, + "fields": { + "id_car_serie": 47929, + "name": "2.5 4MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198462, + "fields": { + "id_car_serie": 47929, + "name": "2.5 5MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198463, + "fields": { + "id_car_serie": 47929, + "name": "2.5 5MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198464, + "fields": { + "id_car_serie": 47929, + "name": "2.5 4MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198465, + "fields": { + "id_car_serie": 47929, + "name": "2.8 4AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198466, + "fields": { + "id_car_serie": 47929, + "name": "2.8 4AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198467, + "fields": { + "id_car_serie": 47929, + "name": "2.8 4AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198468, + "fields": { + "id_car_serie": 47929, + "name": "2.8 4AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198469, + "fields": { + "id_car_serie": 47929, + "name": "2.8 5MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198470, + "fields": { + "id_car_serie": 47929, + "name": "2.8 4MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198471, + "fields": { + "id_car_serie": 47929, + "name": "2.8 4MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198472, + "fields": { + "id_car_serie": 47929, + "name": "2.8 4MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198473, + "fields": { + "id_car_serie": 47929, + "name": "2.8 5MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198474, + "fields": { + "id_car_serie": 47929, + "name": "2.8 5MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198475, + "fields": { + "id_car_serie": 47929, + "name": "2.8 4MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198476, + "fields": { + "id_car_serie": 47929, + "name": "2.8 5MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198477, + "fields": { + "id_car_serie": 47929, + "name": "4.3 4AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198478, + "fields": { + "id_car_serie": 47929, + "name": "4.3 4AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198479, + "fields": { + "id_car_serie": 47929, + "name": "4.3 5MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198480, + "fields": { + "id_car_serie": 47929, + "name": "4.3 5MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198481, + "fields": { + "id_car_serie": 47930, + "name": "1.9 3AT LWB (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198482, + "fields": { + "id_car_serie": 47930, + "name": "2.0 4AT LWB (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198483, + "fields": { + "id_car_serie": 47930, + "name": "2.0 4AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198484, + "fields": { + "id_car_serie": 47930, + "name": "1.9 3AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198485, + "fields": { + "id_car_serie": 47930, + "name": "2.0 4MT LWB (83 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198486, + "fields": { + "id_car_serie": 47930, + "name": "1.9 5MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198487, + "fields": { + "id_car_serie": 47930, + "name": "1.9 4MT LWB (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198488, + "fields": { + "id_car_serie": 47930, + "name": "1.9 4MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198489, + "fields": { + "id_car_serie": 47930, + "name": "2.0 4MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198490, + "fields": { + "id_car_serie": 47930, + "name": "2.0 5MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198492, + "fields": { + "id_car_serie": 47930, + "name": "2.0 5MT LWB (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198493, + "fields": { + "id_car_serie": 47930, + "name": "2.0 4MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198494, + "fields": { + "id_car_serie": 47930, + "name": "2.0 5MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198495, + "fields": { + "id_car_serie": 47930, + "name": "2.0 4MT 4WD LWB (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198496, + "fields": { + "id_car_serie": 47930, + "name": "2.0 5MT 4WD LWB (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198497, + "fields": { + "id_car_serie": 47930, + "name": "2.2D 4MT LWB (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198498, + "fields": { + "id_car_serie": 47930, + "name": "2.2D 5MT LWB (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198499, + "fields": { + "id_car_serie": 47930, + "name": "2.2D 4MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198500, + "fields": { + "id_car_serie": 47930, + "name": "2.2D 5MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198501, + "fields": { + "id_car_serie": 47930, + "name": "2.5 4AT LWB (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198502, + "fields": { + "id_car_serie": 47930, + "name": "2.5 4AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198503, + "fields": { + "id_car_serie": 47930, + "name": "2.5 4AT LWB (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198504, + "fields": { + "id_car_serie": 47930, + "name": "2.5 4AT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198505, + "fields": { + "id_car_serie": 47930, + "name": "2.5 4AT 4WD LWB (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198506, + "fields": { + "id_car_serie": 47930, + "name": "2.5 4AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198507, + "fields": { + "id_car_serie": 47930, + "name": "2.5 5MT 4WD LWB (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198508, + "fields": { + "id_car_serie": 47930, + "name": "2.5 4MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198509, + "fields": { + "id_car_serie": 47930, + "name": "2.5 5MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198510, + "fields": { + "id_car_serie": 47930, + "name": "2.5 4MT LWB (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198511, + "fields": { + "id_car_serie": 47930, + "name": "2.5 5MT LWB (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198512, + "fields": { + "id_car_serie": 47930, + "name": "2.5 4MT 4WD LWB (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198513, + "fields": { + "id_car_serie": 47930, + "name": "2.5 4MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198514, + "fields": { + "id_car_serie": 47930, + "name": "2.5 5MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198515, + "fields": { + "id_car_serie": 47930, + "name": "2.5 5MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198516, + "fields": { + "id_car_serie": 47930, + "name": "2.5 5MT LWB (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198517, + "fields": { + "id_car_serie": 47930, + "name": "2.8 4AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198518, + "fields": { + "id_car_serie": 47930, + "name": "2.8 3AT LWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198519, + "fields": { + "id_car_serie": 47930, + "name": "2.8 3AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198520, + "fields": { + "id_car_serie": 47930, + "name": "2.8 4AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198521, + "fields": { + "id_car_serie": 47930, + "name": "2.8 4AT LWB (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198522, + "fields": { + "id_car_serie": 47930, + "name": "2.8 4AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198523, + "fields": { + "id_car_serie": 47930, + "name": "2.8 4AT 4WD LWB (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198524, + "fields": { + "id_car_serie": 47930, + "name": "2.8 4AT 4WD LWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198525, + "fields": { + "id_car_serie": 47930, + "name": "2.8 4AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198526, + "fields": { + "id_car_serie": 47930, + "name": "2.8 4AT LWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198527, + "fields": { + "id_car_serie": 47930, + "name": "2.8 4MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198528, + "fields": { + "id_car_serie": 47930, + "name": "2.8 4MT LWB (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198529, + "fields": { + "id_car_serie": 47930, + "name": "2.8 5MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198530, + "fields": { + "id_car_serie": 47930, + "name": "2.8 5MT LWB (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198531, + "fields": { + "id_car_serie": 47930, + "name": "2.8 4MT 4WD LWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198532, + "fields": { + "id_car_serie": 47930, + "name": "2.8 4MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198533, + "fields": { + "id_car_serie": 47930, + "name": "2.8 5MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198534, + "fields": { + "id_car_serie": 47930, + "name": "2.8 5MT 4WD LWB (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198535, + "fields": { + "id_car_serie": 47930, + "name": "2.8 5MT 4WD LWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198536, + "fields": { + "id_car_serie": 47930, + "name": "2.8 5MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198537, + "fields": { + "id_car_serie": 47930, + "name": "2.8 4MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198538, + "fields": { + "id_car_serie": 47930, + "name": "2.8 5MT LWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198539, + "fields": { + "id_car_serie": 47930, + "name": "2.8 4MT LWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198540, + "fields": { + "id_car_serie": 47930, + "name": "2.8 5MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198541, + "fields": { + "id_car_serie": 47930, + "name": "2.8 4MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198542, + "fields": { + "id_car_serie": 47930, + "name": "2.8 4MT 4WD LWB (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198543, + "fields": { + "id_car_serie": 47930, + "name": "4.3 4AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198544, + "fields": { + "id_car_serie": 47930, + "name": "4.3 4AT 4WD LWB (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198545, + "fields": { + "id_car_serie": 47930, + "name": "4.3 4AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198546, + "fields": { + "id_car_serie": 47930, + "name": "4.3 4AT LWB (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198547, + "fields": { + "id_car_serie": 47930, + "name": "4.3 5MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198548, + "fields": { + "id_car_serie": 47930, + "name": "4.3 5MT LWB (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198549, + "fields": { + "id_car_serie": 47930, + "name": "4.3 5MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198550, + "fields": { + "id_car_serie": 47930, + "name": "4.3 5MT 4WD LWB (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198551, + "fields": { + "id_car_serie": 47931, + "name": "1.2 TDCi MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198552, + "fields": { + "id_car_serie": 47931, + "name": "1.2 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198553, + "fields": { + "id_car_serie": 47931, + "name": "1.2 EMT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198554, + "fields": { + "id_car_serie": 47931, + "name": "1.4 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198555, + "fields": { + "id_car_serie": 47931, + "name": "1.4 EMT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198556, + "fields": { + "id_car_serie": 47932, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198557, + "fields": { + "id_car_serie": 47933, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198559, + "fields": { + "id_car_serie": 3076, + "name": "1.4 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198560, + "fields": { + "id_car_serie": 47935, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198561, + "fields": { + "id_car_serie": 47935, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198562, + "fields": { + "id_car_serie": 47935, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198563, + "fields": { + "id_car_serie": 47936, + "name": "1.4 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198564, + "fields": { + "id_car_serie": 47936, + "name": "1.4 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198565, + "fields": { + "id_car_serie": 47936, + "name": "1.8 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198566, + "fields": { + "id_car_serie": 47936, + "name": "1.8 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198567, + "fields": { + "id_car_serie": 47937, + "name": "0.8 MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198568, + "fields": { + "id_car_serie": 47937, + "name": "1.0 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198569, + "fields": { + "id_car_serie": 47938, + "name": "4.1 C10 AT Turbo Hydra-Matic (100 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198570, + "fields": { + "id_car_serie": 47938, + "name": "4.1 K10 AT Turbo Hydra-Matic 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198572, + "fields": { + "id_car_serie": 47938, + "name": "4.1 C10 AT Turbo Hydra-Matic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198573, + "fields": { + "id_car_serie": 47938, + "name": "4.1 C10 3MT Fully Synchronized (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198574, + "fields": { + "id_car_serie": 47938, + "name": "4.1 C10 4MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198575, + "fields": { + "id_car_serie": 47938, + "name": "4.1 C10 3MT Fully Synchronized (100 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198578, + "fields": { + "id_car_serie": 47938, + "name": "4.1 C10 4MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198579, + "fields": { + "id_car_serie": 47938, + "name": "4.1 K10 3MT Fully Synchronized 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198580, + "fields": { + "id_car_serie": 47938, + "name": "4.1 K10 4MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198581, + "fields": { + "id_car_serie": 47938, + "name": "5.0 C20 AT Turbo Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198582, + "fields": { + "id_car_serie": 47938, + "name": "5.0 K20 AT Turbo Hydra-Matic 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198583, + "fields": { + "id_car_serie": 47938, + "name": "5.0 C10 AT Turbo Hydra-Matic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198584, + "fields": { + "id_car_serie": 47938, + "name": "5.0 K10 AT Turbo Hydra-Matic 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198585, + "fields": { + "id_car_serie": 47938, + "name": "5.0 C10 AT Turbo Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198586, + "fields": { + "id_car_serie": 47938, + "name": "5.0 K20 3MT Fully Synchronized 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198587, + "fields": { + "id_car_serie": 47938, + "name": "5.0 C10 3MT Fully Synchronized (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198588, + "fields": { + "id_car_serie": 47938, + "name": "5.0 K10 4MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198589, + "fields": { + "id_car_serie": 47938, + "name": "5.0 C10 4MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198590, + "fields": { + "id_car_serie": 47938, + "name": "5.0 C10 3MT Fully Synchronized (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198591, + "fields": { + "id_car_serie": 47938, + "name": "5.0 K10 3MT Fully Synchronized 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198592, + "fields": { + "id_car_serie": 47938, + "name": "5.0 K20 4MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198593, + "fields": { + "id_car_serie": 47938, + "name": "5.0 C20 4MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198594, + "fields": { + "id_car_serie": 47938, + "name": "5.7 K10 AT Turbo Hydra-Matic 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198595, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C10 AT Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198596, + "fields": { + "id_car_serie": 47938, + "name": "5.7 K10 AT Turbo Hydra-Matic 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198597, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C20 AT Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198598, + "fields": { + "id_car_serie": 47938, + "name": "5.7 K20 AT Turbo Hydra-Matic 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198599, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C10 AT Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198600, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C20 AT Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198601, + "fields": { + "id_car_serie": 47938, + "name": "5.7 K10 AT Turbo Hydra-Matic 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198602, + "fields": { + "id_car_serie": 47938, + "name": "5.7 K20 AT Turbo Hydra-Matic 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198603, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C10 AT Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198604, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C20 AT Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198607, + "fields": { + "id_car_serie": 47938, + "name": "5.7 K20 AT Turbo Hydra-Matic 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198608, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C10 AT Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198609, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C20 AT Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198610, + "fields": { + "id_car_serie": 47938, + "name": "5.7 K10 AT Turbo Hydra-Matic 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198611, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C20/C6K AT Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198615, + "fields": { + "id_car_serie": 47938, + "name": "5.7 K20 4MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198616, + "fields": { + "id_car_serie": 47938, + "name": "5.7 K20 3MT Fully Synchronized 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198617, + "fields": { + "id_car_serie": 47938, + "name": "5.7 K10 4MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198618, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C20/C6K 4MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198619, + "fields": { + "id_car_serie": 47938, + "name": "5.7 K10 3MT Fully Synchronized 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198620, + "fields": { + "id_car_serie": 47938, + "name": "5.7 K10 4MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198621, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C10 3MT Fully Synchronized (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198623, + "fields": { + "id_car_serie": 47938, + "name": "5.7 K20 4MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198624, + "fields": { + "id_car_serie": 47938, + "name": "5.7 K20 3MT Fully Synchronized 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198625, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C10 3MT Fully Synchronized (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198626, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C10 4MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198630, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C10 3MT Fully Synchronized (165 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198631, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C20 3MT Fully Synchronized (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198632, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C10 4MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198633, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C20 4MT (165 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198634, + "fields": { + "id_car_serie": 47938, + "name": "5.7 K10 3MT Fully Synchronized 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198635, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C20 4MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198636, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C20 3MT Fully Synchronized (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198637, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C10 4MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198638, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C10 3MT Fully Synchronized (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198639, + "fields": { + "id_car_serie": 47938, + "name": "5.7 K20 4MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198640, + "fields": { + "id_car_serie": 47938, + "name": "5.7 K20 3MT Fully Synchronized 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198641, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C20 4MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198642, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C20 3MT Fully Synchronized (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198643, + "fields": { + "id_car_serie": 47938, + "name": "5.7 K10 4MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198644, + "fields": { + "id_car_serie": 47938, + "name": "5.7 K10 3MT Fully Synchronized 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198645, + "fields": { + "id_car_serie": 47938, + "name": "5.7 C10 4MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198650, + "fields": { + "id_car_serie": 47938, + "name": "6.6 K20 AT Turbo Hydra-Matic 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198651, + "fields": { + "id_car_serie": 47938, + "name": "6.6 K20 AT Turbo Hydra-Matic 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198652, + "fields": { + "id_car_serie": 47938, + "name": "6.6 K20 AT Turbo Hydra-Matic 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198653, + "fields": { + "id_car_serie": 47938, + "name": "6.6 K10 AT Turbo Hydra-Matic 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198654, + "fields": { + "id_car_serie": 47938, + "name": "6.6 K10 AT Turbo Hydra-Matic 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198655, + "fields": { + "id_car_serie": 47938, + "name": "7.4 C20 AT Turbo Hydra-Matic (240 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198657, + "fields": { + "id_car_serie": 47938, + "name": "7.4 C10 AT Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198658, + "fields": { + "id_car_serie": 47938, + "name": "7.4 C20 AT Turbo Hydra-Matic (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198659, + "fields": { + "id_car_serie": 47938, + "name": "7.4 C10 AT Turbo Hydra-Matic (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198660, + "fields": { + "id_car_serie": 47938, + "name": "7.4 C20 AT Turbo Hydra-Matic (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198661, + "fields": { + "id_car_serie": 47938, + "name": "7.4 C10 AT Turbo Hydra-Matic (240 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198663, + "fields": { + "id_car_serie": 47938, + "name": "7.4 C10 AT Turbo Hydra-Matic (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198664, + "fields": { + "id_car_serie": 47938, + "name": "7.4 C20 AT Turbo Hydra-Matic (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198665, + "fields": { + "id_car_serie": 47938, + "name": "7.4 C20 AT Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198666, + "fields": { + "id_car_serie": 47939, + "name": "4.1 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198667, + "fields": { + "id_car_serie": 47939, + "name": "4.1 Powerglide (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198668, + "fields": { + "id_car_serie": 47939, + "name": "4.1 Turbo Hydra-Matic 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198669, + "fields": { + "id_car_serie": 47939, + "name": "4.1 4MT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198670, + "fields": { + "id_car_serie": 47939, + "name": "4.1 3MT Heavy Duty 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198671, + "fields": { + "id_car_serie": 47939, + "name": "4.1 3MT Fully Synchronized (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198672, + "fields": { + "id_car_serie": 47939, + "name": "4.1 4MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198673, + "fields": { + "id_car_serie": 47939, + "name": "4.8 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198674, + "fields": { + "id_car_serie": 47939, + "name": "4.8 Turbo Hydra-Matic 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198675, + "fields": { + "id_car_serie": 47939, + "name": "4.8 3MT Fully Synchronized (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198676, + "fields": { + "id_car_serie": 47939, + "name": "4.8 4MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198677, + "fields": { + "id_car_serie": 47939, + "name": "4.8 3MT Heavy Duty 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198678, + "fields": { + "id_car_serie": 47939, + "name": "4.8 4MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198679, + "fields": { + "id_car_serie": 47939, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198680, + "fields": { + "id_car_serie": 47939, + "name": "5.0 Turbo Hydra-Matic 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198681, + "fields": { + "id_car_serie": 47939, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198682, + "fields": { + "id_car_serie": 47939, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198683, + "fields": { + "id_car_serie": 47939, + "name": "5.0 3MT Fully Synchronized (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198684, + "fields": { + "id_car_serie": 47939, + "name": "5.0 3MT Heavy Duty 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198685, + "fields": { + "id_car_serie": 47939, + "name": "5.0 4MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198686, + "fields": { + "id_car_serie": 47939, + "name": "5.7 Turbo Hydra-Matic 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198687, + "fields": { + "id_car_serie": 47939, + "name": "5.7 3AT Turbo Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198688, + "fields": { + "id_car_serie": 47939, + "name": "5.7 3MT Heavy-Duty 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198689, + "fields": { + "id_car_serie": 47939, + "name": "5.7 4MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198690, + "fields": { + "id_car_serie": 47939, + "name": "5.7 3MT Heavy-Duty (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198691, + "fields": { + "id_car_serie": 47939, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198692, + "fields": { + "id_car_serie": 47939, + "name": "6.6 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198693, + "fields": { + "id_car_serie": 47939, + "name": "6.6 3MT Heavy Duty (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198694, + "fields": { + "id_car_serie": 47939, + "name": "6.6 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198695, + "fields": { + "id_car_serie": 47940, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198696, + "fields": { + "id_car_serie": 47940, + "name": "4.1 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198697, + "fields": { + "id_car_serie": 47940, + "name": "4.1 3MT Fully Synchronized (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198698, + "fields": { + "id_car_serie": 47940, + "name": "4.1 4MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198699, + "fields": { + "id_car_serie": 47940, + "name": "4.1 3MT Heavy Duty 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198700, + "fields": { + "id_car_serie": 47940, + "name": "4.1 4MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198701, + "fields": { + "id_car_serie": 47940, + "name": "4.8 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198702, + "fields": { + "id_car_serie": 47940, + "name": "4.8 Powerglide (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198703, + "fields": { + "id_car_serie": 47940, + "name": "4.8 3MT Heavy Duty 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198704, + "fields": { + "id_car_serie": 47940, + "name": "4.8 3MT Fully Synchronized (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198705, + "fields": { + "id_car_serie": 47940, + "name": "4.8 4MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198706, + "fields": { + "id_car_serie": 47940, + "name": "4.8 4MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198707, + "fields": { + "id_car_serie": 47940, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198708, + "fields": { + "id_car_serie": 47940, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198709, + "fields": { + "id_car_serie": 47940, + "name": "5.0 4MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198710, + "fields": { + "id_car_serie": 47940, + "name": "5.0 3MT Heavy Duty 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198711, + "fields": { + "id_car_serie": 47940, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198712, + "fields": { + "id_car_serie": 47940, + "name": "5.0 3MT Fully Synchronized (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198713, + "fields": { + "id_car_serie": 47940, + "name": "5.7 Powerglide (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198714, + "fields": { + "id_car_serie": 47940, + "name": "5.7 Turbo Hydra-Matic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198715, + "fields": { + "id_car_serie": 47940, + "name": "5.7 4MT 4WD (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198716, + "fields": { + "id_car_serie": 47940, + "name": "5.7 4MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198717, + "fields": { + "id_car_serie": 47940, + "name": "5.7 3MT Fully Synchronized (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198718, + "fields": { + "id_car_serie": 47940, + "name": "5.7 3MT Heavy-Duty 4WD (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198719, + "fields": { + "id_car_serie": 47940, + "name": "6.5 Turbo Hydra-Matic (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198720, + "fields": { + "id_car_serie": 47940, + "name": "6.5 Powerglide (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198721, + "fields": { + "id_car_serie": 47940, + "name": "6.5 4MT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198722, + "fields": { + "id_car_serie": 47940, + "name": "6.5 3MT Fully Synchronized (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198723, + "fields": { + "id_car_serie": 47941, + "name": "3.8 AT Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198724, + "fields": { + "id_car_serie": 47941, + "name": "3.8 3MT Synchro-mesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198725, + "fields": { + "id_car_serie": 47941, + "name": "3.8 4MT Synchro-mesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198726, + "fields": { + "id_car_serie": 47941, + "name": "3.8 3MT Synchro-mesh Heavy Duty (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198727, + "fields": { + "id_car_serie": 47941, + "name": "3.8 Economy 3MT Synchro-mesh (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198728, + "fields": { + "id_car_serie": 47941, + "name": "3.8 4MT Synchro-mesh 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198729, + "fields": { + "id_car_serie": 47941, + "name": "4.6 AT Powerglide (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198730, + "fields": { + "id_car_serie": 47941, + "name": "4.6 3MT Synchro-mesh (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198731, + "fields": { + "id_car_serie": 47941, + "name": "4.6 3MT Synchro-mesh Heavy Duty (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198732, + "fields": { + "id_car_serie": 47941, + "name": "4.6 4MT Synchro-mesh (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198733, + "fields": { + "id_car_serie": 47941, + "name": "4.8 AT Powerglide (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198734, + "fields": { + "id_car_serie": 47941, + "name": "4.8 3MT Synchro-mesh Heavy Duty (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198735, + "fields": { + "id_car_serie": 47941, + "name": "4.8 3MT Synchro-mesh (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198736, + "fields": { + "id_car_serie": 47941, + "name": "4.8 4MT Synchro-mesh (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198737, + "fields": { + "id_car_serie": 47942, + "name": "3.9 AT Powerglide (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198738, + "fields": { + "id_car_serie": 47942, + "name": "3.9 3MT Synchro-mesh Heavy Duty (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198739, + "fields": { + "id_car_serie": 47942, + "name": "3.9 4MT Synchro-mesh (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198740, + "fields": { + "id_car_serie": 47942, + "name": "3.9 Economy 3MT Synchro-mesh (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198741, + "fields": { + "id_car_serie": 47942, + "name": "3.9 4MT Synchro-mesh 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198742, + "fields": { + "id_car_serie": 47942, + "name": "3.9 3MT Synchro-mesh (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198743, + "fields": { + "id_car_serie": 47942, + "name": "4.6 AT Powerglide (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198744, + "fields": { + "id_car_serie": 47942, + "name": "4.6 3MT Synchro-mesh (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198745, + "fields": { + "id_car_serie": 47942, + "name": "4.6 3MT Synchro-mesh Heavy Duty (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198746, + "fields": { + "id_car_serie": 47942, + "name": "4.6 4MT Synchro-mesh (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198747, + "fields": { + "id_car_serie": 47943, + "name": "3.9 AT Hydra-Matic (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198748, + "fields": { + "id_car_serie": 47943, + "name": "3.9 AT Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198749, + "fields": { + "id_car_serie": 47943, + "name": "3.9 Economy AT Hydra Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198750, + "fields": { + "id_car_serie": 47943, + "name": "3.9 AT Hydra-Matic (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198751, + "fields": { + "id_car_serie": 47943, + "name": "3.9 AT Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198752, + "fields": { + "id_car_serie": 47943, + "name": "3.9 3MT Synchro-mesh Heavy Duty (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198753, + "fields": { + "id_car_serie": 47943, + "name": "3.9 Economy 4MT Synchro-mesh 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198754, + "fields": { + "id_car_serie": 47943, + "name": "3.9 3MT Synchro-mesh Heavy Duty (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198755, + "fields": { + "id_car_serie": 47943, + "name": "3.9 4MT Synchro-mesh (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198756, + "fields": { + "id_car_serie": 47943, + "name": "3.9 3MT Synchro-mesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198757, + "fields": { + "id_car_serie": 47943, + "name": "3.9 4MT Synchro-mesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198758, + "fields": { + "id_car_serie": 47943, + "name": "3.9 4MT Synchro-mesh 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198759, + "fields": { + "id_car_serie": 47943, + "name": "3.9 3MT Synchro-mesh (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198760, + "fields": { + "id_car_serie": 47943, + "name": "3.9 3MT Synchro-mesh Heavy Duty (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198761, + "fields": { + "id_car_serie": 47943, + "name": "3.9 4MT Synchro-mesh (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198762, + "fields": { + "id_car_serie": 47943, + "name": "3.9 Economy 3MT Synchro-mesh (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198763, + "fields": { + "id_car_serie": 47943, + "name": "3.9 Economy 3MT Synchro-mesh Heavy Duty (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198764, + "fields": { + "id_car_serie": 47943, + "name": "3.9 Economy 4MT Synchro-mesh (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198765, + "fields": { + "id_car_serie": 47943, + "name": "3.9 3MT Synchro-mesh (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198766, + "fields": { + "id_car_serie": 47943, + "name": "3.9 4MT Synchro-mesh 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198767, + "fields": { + "id_car_serie": 47943, + "name": "3.9 3MT Synchro-mesh (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198768, + "fields": { + "id_car_serie": 47943, + "name": "3.9 4MT Synchro-mesh (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198769, + "fields": { + "id_car_serie": 47943, + "name": "3.9 3MT Synchro-mesh Heavy Duty (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198770, + "fields": { + "id_car_serie": 47943, + "name": "4.3 AT Hydra Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198771, + "fields": { + "id_car_serie": 47943, + "name": "4.3 3MT Synchro-mesh (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198772, + "fields": { + "id_car_serie": 47943, + "name": "4.3 4MT Synchro-mesh (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198773, + "fields": { + "id_car_serie": 47943, + "name": "4.3 3MT Synchro-mesh Heavy Duty (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198774, + "fields": { + "id_car_serie": 47943, + "name": "4.6 AT Hydra Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198775, + "fields": { + "id_car_serie": 47943, + "name": "4.6 3MT Synchro-mesh Heavy Duty (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198776, + "fields": { + "id_car_serie": 47943, + "name": "4.6 3MT Synchro-mesh (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198777, + "fields": { + "id_car_serie": 47943, + "name": "4.6 4MT Synchro-mesh (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198778, + "fields": { + "id_car_serie": 47944, + "name": "3.9 AT Hydra-Matic (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198779, + "fields": { + "id_car_serie": 47944, + "name": "3.9 3MT Synchro-mesh (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198780, + "fields": { + "id_car_serie": 47944, + "name": "3.9 3MT Synchro-mesh Heavy Duty (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198781, + "fields": { + "id_car_serie": 47944, + "name": "3.9 4MT Synchro-mesh (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198782, + "fields": { + "id_car_serie": 47945, + "name": "3.5 3MT Synchro-mesh (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198783, + "fields": { + "id_car_serie": 47945, + "name": "3.5 4MT Synchro-mesh (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198784, + "fields": { + "id_car_serie": 47945, + "name": "3.9 AT Hydra-Matic (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198785, + "fields": { + "id_car_serie": 47945, + "name": "3.9 3MT Synchro-mesh (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198786, + "fields": { + "id_car_serie": 47945, + "name": "3.9 4MT Synchro-mesh (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198787, + "fields": { + "id_car_serie": 47946, + "name": "3.5 MT Syncro-mesh (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198788, + "fields": { + "id_car_serie": 47947, + "name": "3.4 MT Syncro-mesh (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198789, + "fields": { + "id_car_serie": 47947, + "name": "3.5 MT Syncro-mesh (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198790, + "fields": { + "id_car_serie": 47948, + "name": "2.2 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198792, + "fields": { + "id_car_serie": 47949, + "name": "1.4 Turbo Start/Stop MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198793, + "fields": { + "id_car_serie": 47949, + "name": "1.6 Start/Stop MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198794, + "fields": { + "id_car_serie": 47949, + "name": "1.7 CDTi AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198795, + "fields": { + "id_car_serie": 47949, + "name": "1.7 CDTi Start/Stop MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198796, + "fields": { + "id_car_serie": 47949, + "name": "1.7 CDTi Start/Stop MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198797, + "fields": { + "id_car_serie": 47949, + "name": "1.8 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198798, + "fields": { + "id_car_serie": 47949, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198799, + "fields": { + "id_car_serie": 47950, + "name": "1.6 MT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198800, + "fields": { + "id_car_serie": 47950, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198801, + "fields": { + "id_car_serie": 47950, + "name": "2.0 MT AWD (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198802, + "fields": { + "id_car_serie": 47950, + "name": "2.0 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198803, + "fields": { + "id_car_serie": 47952, + "name": "3.4 AT (187 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198804, + "fields": { + "id_car_serie": 47952, + "name": "3.4 AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198805, + "fields": { + "id_car_serie": 47953, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198806, + "fields": { + "id_car_serie": 47953, + "name": "2.4 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198807, + "fields": { + "id_car_serie": 47953, + "name": "2.4 MT GT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198808, + "fields": { + "id_car_serie": 47954, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198809, + "fields": { + "id_car_serie": 47954, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198810, + "fields": { + "id_car_serie": 47954, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198811, + "fields": { + "id_car_serie": 47954, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198812, + "fields": { + "id_car_serie": 47954, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198813, + "fields": { + "id_car_serie": 47954, + "name": "2.2 CRD AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198814, + "fields": { + "id_car_serie": 47954, + "name": "2.2 CRD MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198815, + "fields": { + "id_car_serie": 47954, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198816, + "fields": { + "id_car_serie": 47954, + "name": "2.4 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198817, + "fields": { + "id_car_serie": 47954, + "name": "2.4 MT GT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198818, + "fields": { + "id_car_serie": 47954, + "name": "2.4 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198819, + "fields": { + "id_car_serie": 47955, + "name": "0.4 MT (24 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198820, + "fields": { + "id_car_serie": 47955, + "name": "0.6 MT (29 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198821, + "fields": { + "id_car_serie": 47956, + "name": "0.4 MT (16 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198822, + "fields": { + "id_car_serie": 47956, + "name": "0.4 MT (25 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198823, + "fields": { + "id_car_serie": 47956, + "name": "0.6 MT (23 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198824, + "fields": { + "id_car_serie": 47956, + "name": "0.6 MT (33 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198825, + "fields": { + "id_car_serie": 47957, + "name": "0.9 MT (28 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198826, + "fields": { + "id_car_serie": 47957, + "name": "0.9 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198827, + "fields": { + "id_car_serie": 47958, + "name": "0.4 MT (12 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198828, + "fields": { + "id_car_serie": 47958, + "name": "0.4 MT (13 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198829, + "fields": { + "id_car_serie": 47958, + "name": "0.4 MT (17 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198830, + "fields": { + "id_car_serie": 47958, + "name": "0.4 MT (18 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198831, + "fields": { + "id_car_serie": 47958, + "name": "0.6 MT (29 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198832, + "fields": { + "id_car_serie": 47959, + "name": "0.4 MT (12 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198833, + "fields": { + "id_car_serie": 47959, + "name": "0.4 MT (9 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198834, + "fields": { + "id_car_serie": 47960, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198835, + "fields": { + "id_car_serie": 47960, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198836, + "fields": { + "id_car_serie": 47960, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198837, + "fields": { + "id_car_serie": 47960, + "name": "1.3 Sport MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198838, + "fields": { + "id_car_serie": 47960, + "name": "1.4 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198839, + "fields": { + "id_car_serie": 47960, + "name": "1.4 4x4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198840, + "fields": { + "id_car_serie": 47960, + "name": "1.4 D MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198841, + "fields": { + "id_car_serie": 47960, + "name": "1.4 D MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198842, + "fields": { + "id_car_serie": 47960, + "name": "1.4 GTi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198843, + "fields": { + "id_car_serie": 47960, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198844, + "fields": { + "id_car_serie": 47960, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198845, + "fields": { + "id_car_serie": 47960, + "name": "1.5 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198846, + "fields": { + "id_car_serie": 47961, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198847, + "fields": { + "id_car_serie": 47961, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198848, + "fields": { + "id_car_serie": 47961, + "name": "1.6 VTi MT AWD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198849, + "fields": { + "id_car_serie": 47961, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198850, + "fields": { + "id_car_serie": 47961, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198851, + "fields": { + "id_car_serie": 47961, + "name": "1.6 e-HDi ETG (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198852, + "fields": { + "id_car_serie": 47962, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198855, + "fields": { + "id_car_serie": 47962, + "name": "1.9 HDi MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198856, + "fields": { + "id_car_serie": 47963, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198857, + "fields": { + "id_car_serie": 47963, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198858, + "fields": { + "id_car_serie": 47963, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198859, + "fields": { + "id_car_serie": 47963, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198860, + "fields": { + "id_car_serie": 47963, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198861, + "fields": { + "id_car_serie": 47963, + "name": "1.8 TRD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198862, + "fields": { + "id_car_serie": 47963, + "name": "1.9 MT 4x4 (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198863, + "fields": { + "id_car_serie": 47963, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198864, + "fields": { + "id_car_serie": 47963, + "name": "1.9 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198865, + "fields": { + "id_car_serie": 47963, + "name": "1.9 MT 4x4 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198866, + "fields": { + "id_car_serie": 47964, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198867, + "fields": { + "id_car_serie": 47964, + "name": "1.4 SensoDrive (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198868, + "fields": { + "id_car_serie": 47964, + "name": "1.4 SensoDrive (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198869, + "fields": { + "id_car_serie": 47964, + "name": "1.4 HDi SensoDrive (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198870, + "fields": { + "id_car_serie": 47964, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198871, + "fields": { + "id_car_serie": 47964, + "name": "1.4 HDi MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198872, + "fields": { + "id_car_serie": 47964, + "name": "1.6 HDi SensoDrive (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198873, + "fields": { + "id_car_serie": 47964, + "name": "1.6 SensoDrive (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198874, + "fields": { + "id_car_serie": 47964, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198875, + "fields": { + "id_car_serie": 47964, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198876, + "fields": { + "id_car_serie": 47965, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198877, + "fields": { + "id_car_serie": 47965, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198878, + "fields": { + "id_car_serie": 47965, + "name": "2.0 Turbo MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198879, + "fields": { + "id_car_serie": 47965, + "name": "2.1 TD MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198880, + "fields": { + "id_car_serie": 47966, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198881, + "fields": { + "id_car_serie": 47966, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198882, + "fields": { + "id_car_serie": 47966, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198883, + "fields": { + "id_car_serie": 47966, + "name": "1.5 MT D (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198884, + "fields": { + "id_car_serie": 47966, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198885, + "fields": { + "id_car_serie": 47966, + "name": "1.6 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198886, + "fields": { + "id_car_serie": 47967, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198887, + "fields": { + "id_car_serie": 47967, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198888, + "fields": { + "id_car_serie": 47967, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198889, + "fields": { + "id_car_serie": 47967, + "name": "1.8 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198890, + "fields": { + "id_car_serie": 47967, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198891, + "fields": { + "id_car_serie": 47967, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198892, + "fields": { + "id_car_serie": 47967, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198893, + "fields": { + "id_car_serie": 47967, + "name": "2.0 HDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198894, + "fields": { + "id_car_serie": 47967, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198895, + "fields": { + "id_car_serie": 47968, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198896, + "fields": { + "id_car_serie": 47968, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198897, + "fields": { + "id_car_serie": 47968, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198898, + "fields": { + "id_car_serie": 47968, + "name": "1.8 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198899, + "fields": { + "id_car_serie": 47968, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198900, + "fields": { + "id_car_serie": 47968, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198901, + "fields": { + "id_car_serie": 47968, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198902, + "fields": { + "id_car_serie": 47968, + "name": "2.0 HDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198903, + "fields": { + "id_car_serie": 47969, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198904, + "fields": { + "id_car_serie": 47969, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198905, + "fields": { + "id_car_serie": 47969, + "name": "1.8 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198906, + "fields": { + "id_car_serie": 47969, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198907, + "fields": { + "id_car_serie": 47969, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198908, + "fields": { + "id_car_serie": 47969, + "name": "1.9 D MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198909, + "fields": { + "id_car_serie": 47969, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198910, + "fields": { + "id_car_serie": 47969, + "name": "2.0 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198911, + "fields": { + "id_car_serie": 47970, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198912, + "fields": { + "id_car_serie": 47971, + "name": "1.4 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198913, + "fields": { + "id_car_serie": 47971, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198914, + "fields": { + "id_car_serie": 47972, + "name": "1.4 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198915, + "fields": { + "id_car_serie": 47973, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198916, + "fields": { + "id_car_serie": 47974, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198917, + "fields": { + "id_car_serie": 47976, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198918, + "fields": { + "id_car_serie": 47976, + "name": "1.5 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198919, + "fields": { + "id_car_serie": 47976, + "name": "1.5 D MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198920, + "fields": { + "id_car_serie": 47976, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198921, + "fields": { + "id_car_serie": 47976, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198922, + "fields": { + "id_car_serie": 47977, + "name": "1.4 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198923, + "fields": { + "id_car_serie": 47977, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198924, + "fields": { + "id_car_serie": 47978, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198925, + "fields": { + "id_car_serie": 47978, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198926, + "fields": { + "id_car_serie": 47979, + "name": "1.2 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198927, + "fields": { + "id_car_serie": 47979, + "name": "1.4 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198928, + "fields": { + "id_car_serie": 47979, + "name": "1.4 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198929, + "fields": { + "id_car_serie": 47980, + "name": "2.0 TCDI AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198930, + "fields": { + "id_car_serie": 47980, + "name": "2.0 TCDI MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198931, + "fields": { + "id_car_serie": 47981, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198932, + "fields": { + "id_car_serie": 47981, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198933, + "fields": { + "id_car_serie": 47981, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198934, + "fields": { + "id_car_serie": 47981, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198935, + "fields": { + "id_car_serie": 47981, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198936, + "fields": { + "id_car_serie": 47981, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198937, + "fields": { + "id_car_serie": 47981, + "name": "2.0 TCDI AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198938, + "fields": { + "id_car_serie": 47981, + "name": "2.0 TCDI MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198939, + "fields": { + "id_car_serie": 47982, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198940, + "fields": { + "id_car_serie": 47982, + "name": "1.5 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198941, + "fields": { + "id_car_serie": 47982, + "name": "1.5 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198942, + "fields": { + "id_car_serie": 47982, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198943, + "fields": { + "id_car_serie": 47982, + "name": "1.5 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198944, + "fields": { + "id_car_serie": 47982, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198945, + "fields": { + "id_car_serie": 47982, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198946, + "fields": { + "id_car_serie": 47983, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198947, + "fields": { + "id_car_serie": 47983, + "name": "1.5 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198948, + "fields": { + "id_car_serie": 47983, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198949, + "fields": { + "id_car_serie": 47983, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198950, + "fields": { + "id_car_serie": 47983, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198951, + "fields": { + "id_car_serie": 47983, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198952, + "fields": { + "id_car_serie": 47984, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198953, + "fields": { + "id_car_serie": 47984, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198954, + "fields": { + "id_car_serie": 47984, + "name": "1.5 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198955, + "fields": { + "id_car_serie": 47984, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198956, + "fields": { + "id_car_serie": 47984, + "name": "1.5 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198957, + "fields": { + "id_car_serie": 47984, + "name": "1.5 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198958, + "fields": { + "id_car_serie": 47984, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198959, + "fields": { + "id_car_serie": 47984, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198960, + "fields": { + "id_car_serie": 47984, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198961, + "fields": { + "id_car_serie": 47984, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198962, + "fields": { + "id_car_serie": 47985, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198963, + "fields": { + "id_car_serie": 47985, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198964, + "fields": { + "id_car_serie": 47985, + "name": "2.0 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198965, + "fields": { + "id_car_serie": 47985, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198966, + "fields": { + "id_car_serie": 47985, + "name": "2.0 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198967, + "fields": { + "id_car_serie": 47985, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198968, + "fields": { + "id_car_serie": 47985, + "name": "2.0 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198969, + "fields": { + "id_car_serie": 47985, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198970, + "fields": { + "id_car_serie": 47985, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198971, + "fields": { + "id_car_serie": 47985, + "name": "2.5 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198972, + "fields": { + "id_car_serie": 47986, + "name": "0.8 AT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198973, + "fields": { + "id_car_serie": 47986, + "name": "0.8 MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198975, + "fields": { + "id_car_serie": 47986, + "name": "1.0 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198976, + "fields": { + "id_car_serie": 47987, + "name": "0.8 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198977, + "fields": { + "id_car_serie": 47987, + "name": "0.8 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198978, + "fields": { + "id_car_serie": 47988, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198979, + "fields": { + "id_car_serie": 47988, + "name": "1.9 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198980, + "fields": { + "id_car_serie": 47988, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198981, + "fields": { + "id_car_serie": 47988, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198982, + "fields": { + "id_car_serie": 47988, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198983, + "fields": { + "id_car_serie": 47988, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198984, + "fields": { + "id_car_serie": 47989, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198985, + "fields": { + "id_car_serie": 47989, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198986, + "fields": { + "id_car_serie": 47989, + "name": "2.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198987, + "fields": { + "id_car_serie": 47989, + "name": "2.0 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198988, + "fields": { + "id_car_serie": 47989, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198989, + "fields": { + "id_car_serie": 47989, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198990, + "fields": { + "id_car_serie": 47990, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198991, + "fields": { + "id_car_serie": 47990, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198992, + "fields": { + "id_car_serie": 47990, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198993, + "fields": { + "id_car_serie": 47991, + "name": "1.0 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198994, + "fields": { + "id_car_serie": 47991, + "name": "1.0 AT AWD (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198995, + "fields": { + "id_car_serie": 47991, + "name": "1.3 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198996, + "fields": { + "id_car_serie": 47992, + "name": "0.8 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198997, + "fields": { + "id_car_serie": 47993, + "name": "0.8 MT (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198998, + "fields": { + "id_car_serie": 47994, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 198999, + "fields": { + "id_car_serie": 47995, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199000, + "fields": { + "id_car_serie": 47996, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199001, + "fields": { + "id_car_serie": 47996, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199002, + "fields": { + "id_car_serie": 47997, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199003, + "fields": { + "id_car_serie": 47997, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199004, + "fields": { + "id_car_serie": 47998, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199005, + "fields": { + "id_car_serie": 47998, + "name": "1.6 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199006, + "fields": { + "id_car_serie": 47999, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199007, + "fields": { + "id_car_serie": 48000, + "name": "2.8 TD MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199008, + "fields": { + "id_car_serie": 48001, + "name": "2.8 TD MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199009, + "fields": { + "id_car_serie": 48001, + "name": "2.8 TD MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199010, + "fields": { + "id_car_serie": 48002, + "name": "2.2 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199011, + "fields": { + "id_car_serie": 48002, + "name": "2.8 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199012, + "fields": { + "id_car_serie": 48003, + "name": "2.2 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199013, + "fields": { + "id_car_serie": 48003, + "name": "2.8 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199014, + "fields": { + "id_car_serie": 48004, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199015, + "fields": { + "id_car_serie": 48005, + "name": "0.7 AT AWD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199016, + "fields": { + "id_car_serie": 48005, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199017, + "fields": { + "id_car_serie": 48005, + "name": "0.7 CVT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199018, + "fields": { + "id_car_serie": 48006, + "name": "0.7 AT AWD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199019, + "fields": { + "id_car_serie": 48006, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199020, + "fields": { + "id_car_serie": 48006, + "name": "0.7 Turbo AT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199021, + "fields": { + "id_car_serie": 48006, + "name": "0.7 Turbo AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199022, + "fields": { + "id_car_serie": 48007, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199023, + "fields": { + "id_car_serie": 48007, + "name": "0.7 Turbo AT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199024, + "fields": { + "id_car_serie": 48007, + "name": "0.7 AT AWD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199025, + "fields": { + "id_car_serie": 48007, + "name": "0.7 Turbo AT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199026, + "fields": { + "id_car_serie": 48008, + "name": "1.3 Turbo AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199027, + "fields": { + "id_car_serie": 48008, + "name": "1.3 AT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199028, + "fields": { + "id_car_serie": 48008, + "name": "1.3 Turbo MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199029, + "fields": { + "id_car_serie": 48008, + "name": "1.3 MT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199031, + "fields": { + "id_car_serie": 48009, + "name": "2.3 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199032, + "fields": { + "id_car_serie": 48010, + "name": "5.2 V8 TorqueFlite (230 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199034, + "fields": { + "id_car_serie": 48010, + "name": "5.2 V8 3MT (230 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199036, + "fields": { + "id_car_serie": 48010, + "name": "5.6 V8 TorqueFlite (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199037, + "fields": { + "id_car_serie": 48010, + "name": "5.6 V8 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199038, + "fields": { + "id_car_serie": 48010, + "name": "5.6 V8 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199039, + "fields": { + "id_car_serie": 48010, + "name": "5.9 V8 TorqueFlite (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199040, + "fields": { + "id_car_serie": 48010, + "name": "5.9 V8 3MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199041, + "fields": { + "id_car_serie": 48010, + "name": "5.9 V8 4MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199042, + "fields": { + "id_car_serie": 48011, + "name": "5.2 V8 TorqueFlite (230 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199044, + "fields": { + "id_car_serie": 48011, + "name": "5.2 V8 3MT (230 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199046, + "fields": { + "id_car_serie": 48011, + "name": "5.6 V8 TorqueFlite (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199047, + "fields": { + "id_car_serie": 48011, + "name": "5.6 V8 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199048, + "fields": { + "id_car_serie": 48011, + "name": "5.6 V8 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199049, + "fields": { + "id_car_serie": 48011, + "name": "5.9 V8 TorqueFlite (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199050, + "fields": { + "id_car_serie": 48011, + "name": "5.9 V8 3MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199051, + "fields": { + "id_car_serie": 48011, + "name": "5.9 V8 4MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199052, + "fields": { + "id_car_serie": 48012, + "name": "5.2 V8 TorqueFlite (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199053, + "fields": { + "id_car_serie": 48012, + "name": "5.2 V8 3MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199054, + "fields": { + "id_car_serie": 48012, + "name": "5.6 V8 TorqueFlite (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199055, + "fields": { + "id_car_serie": 48012, + "name": "5.6 V8 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199056, + "fields": { + "id_car_serie": 48012, + "name": "5.6 V8 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199057, + "fields": { + "id_car_serie": 48013, + "name": "3.7 TorqueFlite (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199058, + "fields": { + "id_car_serie": 48013, + "name": "3.7 3MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199059, + "fields": { + "id_car_serie": 48013, + "name": "5.2 V8 TorqueFlite (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199060, + "fields": { + "id_car_serie": 48013, + "name": "5.2 V8 3MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199061, + "fields": { + "id_car_serie": 48013, + "name": "5.6 V8 TorqueFlite (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199062, + "fields": { + "id_car_serie": 48013, + "name": "5.6 V8 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199063, + "fields": { + "id_car_serie": 48013, + "name": "5.6 V8 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199064, + "fields": { + "id_car_serie": 48014, + "name": "3.2 TorqueFlite (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199065, + "fields": { + "id_car_serie": 48014, + "name": "3.2 3MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199066, + "fields": { + "id_car_serie": 48014, + "name": "3.7 TorqueFlite (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199067, + "fields": { + "id_car_serie": 48014, + "name": "3.7 3MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199068, + "fields": { + "id_car_serie": 48014, + "name": "5.2 V8 TorqueFlite (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199069, + "fields": { + "id_car_serie": 48014, + "name": "5.2 4MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199070, + "fields": { + "id_car_serie": 48014, + "name": "5.2 3MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199071, + "fields": { + "id_car_serie": 48014, + "name": "6.3 V8 TorqueFlite (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199072, + "fields": { + "id_car_serie": 48014, + "name": "6.3 V8 TorqueFlite (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199073, + "fields": { + "id_car_serie": 48014, + "name": "6.3 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199074, + "fields": { + "id_car_serie": 48014, + "name": "6.3 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199075, + "fields": { + "id_car_serie": 48015, + "name": "3.7 TorqueFlite (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199076, + "fields": { + "id_car_serie": 48015, + "name": "3.7 3MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199077, + "fields": { + "id_car_serie": 48015, + "name": "5.2 V8 TorqueFlite (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199078, + "fields": { + "id_car_serie": 48015, + "name": "5.2 V8 4MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199079, + "fields": { + "id_car_serie": 48015, + "name": "5.2 V8 3MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199080, + "fields": { + "id_car_serie": 48015, + "name": "5.6 V8 TorqueFlite (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199081, + "fields": { + "id_car_serie": 48015, + "name": "5.6 V8 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199082, + "fields": { + "id_car_serie": 48015, + "name": "5.6 V8 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199083, + "fields": { + "id_car_serie": 48015, + "name": "6.3 V8 TorqueFlite (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199084, + "fields": { + "id_car_serie": 48015, + "name": "6.3 V8 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199085, + "fields": { + "id_car_serie": 48015, + "name": "6.3 V8 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199086, + "fields": { + "id_car_serie": 48015, + "name": "7.0 V8 TorqueFlite (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199087, + "fields": { + "id_car_serie": 48015, + "name": "7.0 V8 4MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199088, + "fields": { + "id_car_serie": 48015, + "name": "7.2 V8 TorqueFlite (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199089, + "fields": { + "id_car_serie": 48015, + "name": "7.2 V8 4MT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199090, + "fields": { + "id_car_serie": 48016, + "name": "3.7 TorqueFlite (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199091, + "fields": { + "id_car_serie": 48016, + "name": "3.7 3MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199092, + "fields": { + "id_car_serie": 48016, + "name": "5.2 V8 TorqueFlite (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199093, + "fields": { + "id_car_serie": 48016, + "name": "5.2 V8 4MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199094, + "fields": { + "id_car_serie": 48016, + "name": "5.2 V8 3MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199095, + "fields": { + "id_car_serie": 48016, + "name": "6.3 V8 TorqueFlite (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199096, + "fields": { + "id_car_serie": 48016, + "name": "6.3 V8 TorqueFlite (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199097, + "fields": { + "id_car_serie": 48016, + "name": "6.3 V8 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199098, + "fields": { + "id_car_serie": 48016, + "name": "6.3 V8 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199099, + "fields": { + "id_car_serie": 48017, + "name": "5.6 V8 TorqueFlite (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199100, + "fields": { + "id_car_serie": 48017, + "name": "5.6 4MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199101, + "fields": { + "id_car_serie": 48017, + "name": "5.6 3MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199102, + "fields": { + "id_car_serie": 48017, + "name": "7.0 V8 TorqueFlite (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199103, + "fields": { + "id_car_serie": 48017, + "name": "7.0 4MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199104, + "fields": { + "id_car_serie": 48017, + "name": "7.2 V8 TorqueFlite (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199105, + "fields": { + "id_car_serie": 48017, + "name": "7.2 4MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199106, + "fields": { + "id_car_serie": 48018, + "name": "6.3 V8 TorqueFlite (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199107, + "fields": { + "id_car_serie": 48018, + "name": "6.3 3MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199108, + "fields": { + "id_car_serie": 48018, + "name": "6.3 4MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199109, + "fields": { + "id_car_serie": 48018, + "name": "7.0 V8 TorqueFlite (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199110, + "fields": { + "id_car_serie": 48018, + "name": "7.0 4MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199111, + "fields": { + "id_car_serie": 48018, + "name": "7.2 V8 TorqueFlite (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199112, + "fields": { + "id_car_serie": 48018, + "name": "7.2 V8 TorqueFlite (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199113, + "fields": { + "id_car_serie": 48018, + "name": "7.2 4MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199114, + "fields": { + "id_car_serie": 48018, + "name": "7.2 V8 4MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199115, + "fields": { + "id_car_serie": 48019, + "name": "6.3 V8 TorqueFlite (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199116, + "fields": { + "id_car_serie": 48019, + "name": "6.3 V8 3MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199117, + "fields": { + "id_car_serie": 48019, + "name": "6.3 V8 4MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199118, + "fields": { + "id_car_serie": 48019, + "name": "7.0 V8 TorqueFlite (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199119, + "fields": { + "id_car_serie": 48019, + "name": "7.0 V8 4MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199120, + "fields": { + "id_car_serie": 48019, + "name": "7.2 V8 TorqueFlite (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199121, + "fields": { + "id_car_serie": 48019, + "name": "7.2 V8 TorqueFlite (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199122, + "fields": { + "id_car_serie": 48019, + "name": "7.2 V8 4MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199123, + "fields": { + "id_car_serie": 48019, + "name": "7.2 V8 4MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199124, + "fields": { + "id_car_serie": 48020, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199125, + "fields": { + "id_car_serie": 48020, + "name": "2.7 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199126, + "fields": { + "id_car_serie": 48021, + "name": "2.2 Turbo MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199127, + "fields": { + "id_car_serie": 48021, + "name": "2.5 Turbo AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199128, + "fields": { + "id_car_serie": 48021, + "name": "2.5 Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199129, + "fields": { + "id_car_serie": 48021, + "name": "2.5 Turbo MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199130, + "fields": { + "id_car_serie": 48021, + "name": "3.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199131, + "fields": { + "id_car_serie": 48021, + "name": "3.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199132, + "fields": { + "id_car_serie": 48022, + "name": "3.2 FSI quattro MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199133, + "fields": { + "id_car_serie": 48022, + "name": "3.2 FSI MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199134, + "fields": { + "id_car_serie": 48022, + "name": "4.2 FSI quattro AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199135, + "fields": { + "id_car_serie": 48023, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199136, + "fields": { + "id_car_serie": 48023, + "name": "1.8 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199137, + "fields": { + "id_car_serie": 48023, + "name": "2.8 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199138, + "fields": { + "id_car_serie": 48024, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199139, + "fields": { + "id_car_serie": 48024, + "name": "2.0 AMT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199140, + "fields": { + "id_car_serie": 48024, + "name": "2.3 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199141, + "fields": { + "id_car_serie": 48025, + "name": "4.9 MT (428 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199142, + "fields": { + "id_car_serie": 48026, + "name": "4.9 MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199144, + "fields": { + "id_car_serie": 6036, + "name": "1.9 D MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199150, + "fields": { + "id_car_serie": 6036, + "name": "2.5 D MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199152, + "fields": { + "id_car_serie": 6036, + "name": "2.5 D MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199153, + "fields": { + "id_car_serie": 48028, + "name": "1.3 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199154, + "fields": { + "id_car_serie": 48028, + "name": "1.4 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199157, + "fields": { + "id_car_serie": 48029, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199159, + "fields": { + "id_car_serie": 48029, + "name": "1.9 D MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199162, + "fields": { + "id_car_serie": 48030, + "name": "1.3 Multijet MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199164, + "fields": { + "id_car_serie": 48030, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199165, + "fields": { + "id_car_serie": 48031, + "name": "1.3 Multijet AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199166, + "fields": { + "id_car_serie": 48031, + "name": "1.3 Multijet MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199167, + "fields": { + "id_car_serie": 48031, + "name": "1.4 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199168, + "fields": { + "id_car_serie": 48031, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199169, + "fields": { + "id_car_serie": 48032, + "name": "1.6 MT Natural Power (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199170, + "fields": { + "id_car_serie": 48032, + "name": "1.9 DPF T MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199171, + "fields": { + "id_car_serie": 48032, + "name": "1.9 JTD MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199172, + "fields": { + "id_car_serie": 48033, + "name": "1.4 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199173, + "fields": { + "id_car_serie": 48033, + "name": "1.4 AMT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199174, + "fields": { + "id_car_serie": 48034, + "name": "1.4 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199175, + "fields": { + "id_car_serie": 48034, + "name": "1.4 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199176, + "fields": { + "id_car_serie": 48035, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199177, + "fields": { + "id_car_serie": 48035, + "name": "1.9 D MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199178, + "fields": { + "id_car_serie": 48036, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199179, + "fields": { + "id_car_serie": 48036, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199180, + "fields": { + "id_car_serie": 48036, + "name": "1.7 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199181, + "fields": { + "id_car_serie": 48037, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199182, + "fields": { + "id_car_serie": 48037, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199183, + "fields": { + "id_car_serie": 48037, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199184, + "fields": { + "id_car_serie": 48037, + "name": "1.7 TD MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199185, + "fields": { + "id_car_serie": 48038, + "name": "2.3 eCVT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199186, + "fields": { + "id_car_serie": 48038, + "name": "2.3 eCVT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199187, + "fields": { + "id_car_serie": 48039, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199188, + "fields": { + "id_car_serie": 48039, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199189, + "fields": { + "id_car_serie": 48039, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199190, + "fields": { + "id_car_serie": 48039, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199191, + "fields": { + "id_car_serie": 48039, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199192, + "fields": { + "id_car_serie": 48039, + "name": "1.8 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199193, + "fields": { + "id_car_serie": 48040, + "name": "1.3 MT 55 (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199195, + "fields": { + "id_car_serie": 48040, + "name": "1.4 MT 35 (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199197, + "fields": { + "id_car_serie": 48040, + "name": "1.6 D MT 35 (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199199, + "fields": { + "id_car_serie": 48040, + "name": "1.8 D MT 55 (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199201, + "fields": { + "id_car_serie": 48041, + "name": "1.1 MT 35 (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199203, + "fields": { + "id_car_serie": 48041, + "name": "1.3 MT 55 (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199204, + "fields": { + "id_car_serie": 48044, + "name": "1.6 RS Turbo MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199205, + "fields": { + "id_car_serie": 48044, + "name": "1.6 RS 1600i MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199206, + "fields": { + "id_car_serie": 48045, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199207, + "fields": { + "id_car_serie": 48045, + "name": "1.6 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199208, + "fields": { + "id_car_serie": 48045, + "name": "1.6i MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199209, + "fields": { + "id_car_serie": 48045, + "name": "1.6 MT XR3 (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199210, + "fields": { + "id_car_serie": 48046, + "name": "1.6 RS Mexico MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199211, + "fields": { + "id_car_serie": 48046, + "name": "1.8 RS 1800 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199212, + "fields": { + "id_car_serie": 48046, + "name": "2.0 RS 2000 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199213, + "fields": { + "id_car_serie": 48046, + "name": "2.0 RS 2000 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199218, + "fields": { + "id_car_serie": 48048, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199219, + "fields": { + "id_car_serie": 48048, + "name": "1.1 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199220, + "fields": { + "id_car_serie": 48048, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199221, + "fields": { + "id_car_serie": 48048, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199222, + "fields": { + "id_car_serie": 48048, + "name": "1.3 S MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199223, + "fields": { + "id_car_serie": 48048, + "name": "1.6 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199224, + "fields": { + "id_car_serie": 48048, + "name": "1.6 AT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199225, + "fields": { + "id_car_serie": 48048, + "name": "1.6 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199226, + "fields": { + "id_car_serie": 48048, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199227, + "fields": { + "id_car_serie": 48048, + "name": "2.0 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199228, + "fields": { + "id_car_serie": 48048, + "name": "2.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199229, + "fields": { + "id_car_serie": 48049, + "name": "1.1 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199230, + "fields": { + "id_car_serie": 48049, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199231, + "fields": { + "id_car_serie": 48049, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199232, + "fields": { + "id_car_serie": 48049, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199233, + "fields": { + "id_car_serie": 48049, + "name": "1.3 S MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199234, + "fields": { + "id_car_serie": 48049, + "name": "1.6 AT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199235, + "fields": { + "id_car_serie": 48049, + "name": "1.6 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199236, + "fields": { + "id_car_serie": 48049, + "name": "1.6 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199237, + "fields": { + "id_car_serie": 48049, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199238, + "fields": { + "id_car_serie": 48049, + "name": "2.0 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199239, + "fields": { + "id_car_serie": 48049, + "name": "2.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199240, + "fields": { + "id_car_serie": 48050, + "name": "1.6 RS Mexico MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199241, + "fields": { + "id_car_serie": 48050, + "name": "1.8 RS 1800 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199242, + "fields": { + "id_car_serie": 48050, + "name": "2.0 RS 2000 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199243, + "fields": { + "id_car_serie": 48051, + "name": "1.1 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199244, + "fields": { + "id_car_serie": 48051, + "name": "1.1 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199245, + "fields": { + "id_car_serie": 48051, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199246, + "fields": { + "id_car_serie": 48051, + "name": "1.3 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199247, + "fields": { + "id_car_serie": 48052, + "name": "1.1 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199248, + "fields": { + "id_car_serie": 48052, + "name": "1.1 MT (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199249, + "fields": { + "id_car_serie": 48052, + "name": "1.1 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199250, + "fields": { + "id_car_serie": 48052, + "name": "1.1 S MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199251, + "fields": { + "id_car_serie": 48052, + "name": "1.3 AT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199252, + "fields": { + "id_car_serie": 48052, + "name": "1.3 S MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199253, + "fields": { + "id_car_serie": 48052, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199254, + "fields": { + "id_car_serie": 48052, + "name": "1.3 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199255, + "fields": { + "id_car_serie": 48052, + "name": "1.3 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199256, + "fields": { + "id_car_serie": 48052, + "name": "1.6 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199257, + "fields": { + "id_car_serie": 48052, + "name": "1.6 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199258, + "fields": { + "id_car_serie": 48052, + "name": "1.6 Sport MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199259, + "fields": { + "id_car_serie": 48052, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199260, + "fields": { + "id_car_serie": 48052, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199265, + "fields": { + "id_car_serie": 48054, + "name": "1.1 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199266, + "fields": { + "id_car_serie": 48054, + "name": "1.1 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199267, + "fields": { + "id_car_serie": 48054, + "name": "1.1 MT (43 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199268, + "fields": { + "id_car_serie": 48054, + "name": "1.1 MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199269, + "fields": { + "id_car_serie": 48054, + "name": "1.3 AT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199270, + "fields": { + "id_car_serie": 48054, + "name": "1.3 AT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199271, + "fields": { + "id_car_serie": 48054, + "name": "1.3 GT MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199272, + "fields": { + "id_car_serie": 48054, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199273, + "fields": { + "id_car_serie": 48054, + "name": "1.3 MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199274, + "fields": { + "id_car_serie": 48054, + "name": "1.3 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199275, + "fields": { + "id_car_serie": 48054, + "name": "1.3 MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199276, + "fields": { + "id_car_serie": 48054, + "name": "1.3 GT MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199277, + "fields": { + "id_car_serie": 48054, + "name": "1.6 Mexico MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199278, + "fields": { + "id_car_serie": 48054, + "name": "1.6 Twin Cam MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199279, + "fields": { + "id_car_serie": 48055, + "name": "1.1 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199280, + "fields": { + "id_car_serie": 48055, + "name": "1.1 MT (43 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199281, + "fields": { + "id_car_serie": 48055, + "name": "1.1 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199282, + "fields": { + "id_car_serie": 48055, + "name": "1.1 MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199283, + "fields": { + "id_car_serie": 48055, + "name": "1.3 AT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199284, + "fields": { + "id_car_serie": 48055, + "name": "1.3 AT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199285, + "fields": { + "id_car_serie": 48055, + "name": "1.3 GT MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199286, + "fields": { + "id_car_serie": 48055, + "name": "1.3 GT MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199287, + "fields": { + "id_car_serie": 48055, + "name": "1.3 MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199288, + "fields": { + "id_car_serie": 48055, + "name": "1.3 MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199289, + "fields": { + "id_car_serie": 48055, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199290, + "fields": { + "id_car_serie": 48055, + "name": "1.3 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199291, + "fields": { + "id_car_serie": 48056, + "name": "3.5 EcoBoost SelectShift 4WD (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199292, + "fields": { + "id_car_serie": 48056, + "name": "3.5 EcoBoost SelectShift 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199293, + "fields": { + "id_car_serie": 48057, + "name": "4.0 AT 4x4 (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199294, + "fields": { + "id_car_serie": 48057, + "name": "4.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199295, + "fields": { + "id_car_serie": 48057, + "name": "4.0 MT 4x4 (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199296, + "fields": { + "id_car_serie": 48057, + "name": "4.0 MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199297, + "fields": { + "id_car_serie": 48058, + "name": "4.0 AT 4x4 (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199298, + "fields": { + "id_car_serie": 48058, + "name": "4.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199299, + "fields": { + "id_car_serie": 48058, + "name": "4.0 AT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199300, + "fields": { + "id_car_serie": 48058, + "name": "4.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199301, + "fields": { + "id_car_serie": 48058, + "name": "4.0 MT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199302, + "fields": { + "id_car_serie": 48058, + "name": "4.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199303, + "fields": { + "id_car_serie": 48059, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199304, + "fields": { + "id_car_serie": 48059, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199305, + "fields": { + "id_car_serie": 48059, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199306, + "fields": { + "id_car_serie": 48059, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199307, + "fields": { + "id_car_serie": 48060, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199308, + "fields": { + "id_car_serie": 48060, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199309, + "fields": { + "id_car_serie": 48060, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199310, + "fields": { + "id_car_serie": 48060, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199311, + "fields": { + "id_car_serie": 48061, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199312, + "fields": { + "id_car_serie": 48061, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199313, + "fields": { + "id_car_serie": 48061, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199314, + "fields": { + "id_car_serie": 48061, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199315, + "fields": { + "id_car_serie": 48062, + "name": "1.1 MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199316, + "fields": { + "id_car_serie": 48062, + "name": "1.3 AT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199317, + "fields": { + "id_car_serie": 48062, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199318, + "fields": { + "id_car_serie": 48062, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199323, + "fields": { + "id_car_serie": 48065, + "name": "1.6 EcoBoost MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199324, + "fields": { + "id_car_serie": 48066, + "name": "1.6 Flex MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199325, + "fields": { + "id_car_serie": 48066, + "name": "1.6 Flex MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199326, + "fields": { + "id_car_serie": 48066, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199327, + "fields": { + "id_car_serie": 48066, + "name": "1.6 PowerShift (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199328, + "fields": { + "id_car_serie": 48066, + "name": "1.6 SFE PowerShift (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199329, + "fields": { + "id_car_serie": 48067, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199330, + "fields": { + "id_car_serie": 48067, + "name": "1.6 Flex MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199331, + "fields": { + "id_car_serie": 48067, + "name": "1.6 Flex MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199332, + "fields": { + "id_car_serie": 48067, + "name": "1.6 PowerShift (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199333, + "fields": { + "id_car_serie": 48067, + "name": "1.6 SFE PowerShift (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199338, + "fields": { + "id_car_serie": 48069, + "name": "1.4 TDCi MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199339, + "fields": { + "id_car_serie": 48069, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199340, + "fields": { + "id_car_serie": 48070, + "name": "1.0 Rocam Flex MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199341, + "fields": { + "id_car_serie": 48070, + "name": "1.0 Rocam Flex MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199342, + "fields": { + "id_car_serie": 48070, + "name": "1.4 TDCi Max One MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199343, + "fields": { + "id_car_serie": 48070, + "name": "1.6 Rocam Flex MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199344, + "fields": { + "id_car_serie": 48070, + "name": "1.6 Rocam Flex MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199345, + "fields": { + "id_car_serie": 48070, + "name": "1.6 Max One MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199346, + "fields": { + "id_car_serie": 48071, + "name": "1.25 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199347, + "fields": { + "id_car_serie": 48071, + "name": "1.3 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199348, + "fields": { + "id_car_serie": 48071, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199349, + "fields": { + "id_car_serie": 48071, + "name": "1.4 TDCi MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199350, + "fields": { + "id_car_serie": 48071, + "name": "1.4 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199351, + "fields": { + "id_car_serie": 48071, + "name": "1.4 Durashift EST (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199352, + "fields": { + "id_car_serie": 48071, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199353, + "fields": { + "id_car_serie": 48071, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199354, + "fields": { + "id_car_serie": 48071, + "name": "1.6 TDCi MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199358, + "fields": { + "id_car_serie": 48072, + "name": "1.4 TDCi Max MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199359, + "fields": { + "id_car_serie": 48072, + "name": "1.6 Max AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199360, + "fields": { + "id_car_serie": 48072, + "name": "1.6 Flex MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199361, + "fields": { + "id_car_serie": 48072, + "name": "1.6 Flex MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199362, + "fields": { + "id_car_serie": 48072, + "name": "1.6 Max MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199363, + "fields": { + "id_car_serie": 48072, + "name": "1.6 Flex MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199364, + "fields": { + "id_car_serie": 48073, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199365, + "fields": { + "id_car_serie": 48073, + "name": "2.0 ST500 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199366, + "fields": { + "id_car_serie": 48073, + "name": "2.0 ST165 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199367, + "fields": { + "id_car_serie": 48073, + "name": "2.0 ST185 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199368, + "fields": { + "id_car_serie": 48074, + "name": "1.0 Flex MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199371, + "fields": { + "id_car_serie": 48074, + "name": "1.4 TDCi MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199372, + "fields": { + "id_car_serie": 48074, + "name": "1.6 Flex MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199373, + "fields": { + "id_car_serie": 48074, + "name": "1.6 Flex MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199374, + "fields": { + "id_car_serie": 48074, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199375, + "fields": { + "id_car_serie": 48074, + "name": "1.6 Flex MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199378, + "fields": { + "id_car_serie": 48076, + "name": "1.25 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199379, + "fields": { + "id_car_serie": 48076, + "name": "1.3 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199380, + "fields": { + "id_car_serie": 48076, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199381, + "fields": { + "id_car_serie": 48076, + "name": "1.4 TDCi Zetec MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199382, + "fields": { + "id_car_serie": 48076, + "name": "1.4 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199383, + "fields": { + "id_car_serie": 48076, + "name": "1.4 TDCi MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199384, + "fields": { + "id_car_serie": 48076, + "name": "1.4 Durashift EST (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199385, + "fields": { + "id_car_serie": 48076, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199386, + "fields": { + "id_car_serie": 48076, + "name": "1.6 TDCi Zetec S MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199387, + "fields": { + "id_car_serie": 48076, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199388, + "fields": { + "id_car_serie": 48076, + "name": "1.6 Zetec S MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199389, + "fields": { + "id_car_serie": 48076, + "name": "1.6 TDCi MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199394, + "fields": { + "id_car_serie": 48077, + "name": "1.4 TDCi MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199395, + "fields": { + "id_car_serie": 48077, + "name": "1.6 Flex MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199397, + "fields": { + "id_car_serie": 48077, + "name": "1.6 Max MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199398, + "fields": { + "id_car_serie": 48078, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199402, + "fields": { + "id_car_serie": 48081, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199404, + "fields": { + "id_car_serie": 48083, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199405, + "fields": { + "id_car_serie": 48083, + "name": "1.6 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199406, + "fields": { + "id_car_serie": 48083, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199410, + "fields": { + "id_car_serie": 48085, + "name": "1.6 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199414, + "fields": { + "id_car_serie": 3336, + "name": "2.0 EcoBoost MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199415, + "fields": { + "id_car_serie": 3337, + "name": "2.0 EcoBoost MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199416, + "fields": { + "id_car_serie": 3336, + "name": "BEV (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199417, + "fields": { + "id_car_serie": 48091, + "name": "2.5 T MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199418, + "fields": { + "id_car_serie": 48092, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199419, + "fields": { + "id_car_serie": 48092, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199420, + "fields": { + "id_car_serie": 48092, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199421, + "fields": { + "id_car_serie": 48092, + "name": "2.0 TDCi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199422, + "fields": { + "id_car_serie": 48093, + "name": "2.5 T MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199423, + "fields": { + "id_car_serie": 6147, + "name": "2.5 T MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199425, + "fields": { + "id_car_serie": 48096, + "name": "2.5 T MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199426, + "fields": { + "id_car_serie": 48097, + "name": "2.0 TDCi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199427, + "fields": { + "id_car_serie": 48098, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199428, + "fields": { + "id_car_serie": 48098, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199429, + "fields": { + "id_car_serie": 48098, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199430, + "fields": { + "id_car_serie": 48098, + "name": "2.0 TDCi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199431, + "fields": { + "id_car_serie": 48099, + "name": "2.5 T MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199432, + "fields": { + "id_car_serie": 6156, + "name": "2.0 MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199433, + "fields": { + "id_car_serie": 48101, + "name": "2.0 MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199434, + "fields": { + "id_car_serie": 48102, + "name": "2.0 MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199435, + "fields": { + "id_car_serie": 48105, + "name": "2.0i MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199437, + "fields": { + "id_car_serie": 48105, + "name": "2.3i MT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199438, + "fields": { + "id_car_serie": 6170, + "name": "2.0i MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199439, + "fields": { + "id_car_serie": 6170, + "name": "2.3i MT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199440, + "fields": { + "id_car_serie": 48105, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199441, + "fields": { + "id_car_serie": 48105, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199442, + "fields": { + "id_car_serie": 48105, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199443, + "fields": { + "id_car_serie": 48105, + "name": "1.8 TDCi MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199444, + "fields": { + "id_car_serie": 48105, + "name": "1.8 MT TDDi (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199445, + "fields": { + "id_car_serie": 48105, + "name": "1.8 MT TDDi (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199446, + "fields": { + "id_car_serie": 48105, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199447, + "fields": { + "id_car_serie": 48105, + "name": "1.8 MT TDCi (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199448, + "fields": { + "id_car_serie": 48105, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199449, + "fields": { + "id_car_serie": 48105, + "name": "2.0 AT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199450, + "fields": { + "id_car_serie": 48105, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199451, + "fields": { + "id_car_serie": 48105, + "name": "2.0 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199452, + "fields": { + "id_car_serie": 6172, + "name": "2.0i MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199453, + "fields": { + "id_car_serie": 6172, + "name": "2.0i MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199456, + "fields": { + "id_car_serie": 6173, + "name": "2.0i MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199457, + "fields": { + "id_car_serie": 6173, + "name": "2.0i MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199460, + "fields": { + "id_car_serie": 48108, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199461, + "fields": { + "id_car_serie": 48109, + "name": "2.0 MT 4x4 (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199462, + "fields": { + "id_car_serie": 48109, + "name": "3.0 AT 4x4 (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199463, + "fields": { + "id_car_serie": 48110, + "name": "2.4 MT 4x4 (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199464, + "fields": { + "id_car_serie": 48110, + "name": "2.7 TD MT 4x4 (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199465, + "fields": { + "id_car_serie": 48111, + "name": "2.4 MT 4x4 (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199466, + "fields": { + "id_car_serie": 48111, + "name": "2.7 TD MT 4x4 (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199472, + "fields": { + "id_car_serie": 48113, + "name": "2.5 TD AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199473, + "fields": { + "id_car_serie": 48113, + "name": "3.0 TD AT 4x4 Chassis (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199474, + "fields": { + "id_car_serie": 48113, + "name": "3.0 TD AT Hi-Rider (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199475, + "fields": { + "id_car_serie": 48113, + "name": "3.0 TD AT 4x4 (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199476, + "fields": { + "id_car_serie": 48113, + "name": "3.0 TD AT Chassis Hi-Rider (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199477, + "fields": { + "id_car_serie": 48113, + "name": "3.0 TD MT 4x4 (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199478, + "fields": { + "id_car_serie": 48113, + "name": "3.0 TD MT 4x4 Chassis (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199479, + "fields": { + "id_car_serie": 48113, + "name": "3.0 TD MT Hi-Rider (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199480, + "fields": { + "id_car_serie": 48114, + "name": "2.5 TD MT 4x4 (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199481, + "fields": { + "id_car_serie": 48114, + "name": "2.5 TD MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199482, + "fields": { + "id_car_serie": 48115, + "name": "2.5 TD MT 4x4 (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199483, + "fields": { + "id_car_serie": 48115, + "name": "3.0 TD AT 4x4 (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199484, + "fields": { + "id_car_serie": 48115, + "name": "3.0 TD MT 4x4 (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199485, + "fields": { + "id_car_serie": 48116, + "name": "2.5 TD MT 4x4 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199486, + "fields": { + "id_car_serie": 48116, + "name": "2.5 TD MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199487, + "fields": { + "id_car_serie": 48117, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199488, + "fields": { + "id_car_serie": 48117, + "name": "2.0i AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199489, + "fields": { + "id_car_serie": 48117, + "name": "2.0i AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199490, + "fields": { + "id_car_serie": 48117, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199491, + "fields": { + "id_car_serie": 48117, + "name": "2.0i AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199492, + "fields": { + "id_car_serie": 48117, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199493, + "fields": { + "id_car_serie": 48117, + "name": "2.0i AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199494, + "fields": { + "id_car_serie": 48117, + "name": "2.0i MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199495, + "fields": { + "id_car_serie": 48117, + "name": "2.0i MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199496, + "fields": { + "id_car_serie": 48117, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199497, + "fields": { + "id_car_serie": 48117, + "name": "2.0i MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199498, + "fields": { + "id_car_serie": 48117, + "name": "2.0i MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199500, + "fields": { + "id_car_serie": 48117, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199501, + "fields": { + "id_car_serie": 48117, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199502, + "fields": { + "id_car_serie": 48117, + "name": "2.4 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199503, + "fields": { + "id_car_serie": 48117, + "name": "2.4 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199504, + "fields": { + "id_car_serie": 48117, + "name": "2.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199505, + "fields": { + "id_car_serie": 48117, + "name": "2.4 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199506, + "fields": { + "id_car_serie": 48117, + "name": "2.5 D MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199507, + "fields": { + "id_car_serie": 48117, + "name": "2.5 TD MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199508, + "fields": { + "id_car_serie": 48117, + "name": "2.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199509, + "fields": { + "id_car_serie": 48117, + "name": "2.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199510, + "fields": { + "id_car_serie": 48117, + "name": "2.8 MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199511, + "fields": { + "id_car_serie": 48117, + "name": "2.9 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199512, + "fields": { + "id_car_serie": 48117, + "name": "2.9 Cosworth AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199513, + "fields": { + "id_car_serie": 48117, + "name": "2.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199514, + "fields": { + "id_car_serie": 48117, + "name": "2.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199515, + "fields": { + "id_car_serie": 48117, + "name": "2.9 MT 4x4 (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199516, + "fields": { + "id_car_serie": 48117, + "name": "2.9 MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199517, + "fields": { + "id_car_serie": 48117, + "name": "2.9 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199518, + "fields": { + "id_car_serie": 48118, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199519, + "fields": { + "id_car_serie": 48118, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199520, + "fields": { + "id_car_serie": 48118, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199521, + "fields": { + "id_car_serie": 48118, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199522, + "fields": { + "id_car_serie": 48118, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199523, + "fields": { + "id_car_serie": 48118, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199524, + "fields": { + "id_car_serie": 48118, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199525, + "fields": { + "id_car_serie": 48118, + "name": "2.4 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199526, + "fields": { + "id_car_serie": 48118, + "name": "2.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199527, + "fields": { + "id_car_serie": 48118, + "name": "2.5 TD MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199528, + "fields": { + "id_car_serie": 48118, + "name": "2.9 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199529, + "fields": { + "id_car_serie": 48118, + "name": "2.9 Cosworth AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199530, + "fields": { + "id_car_serie": 48118, + "name": "2.9 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199531, + "fields": { + "id_car_serie": 48118, + "name": "2.9 MT 4x4 (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199532, + "fields": { + "id_car_serie": 48119, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199533, + "fields": { + "id_car_serie": 48119, + "name": "2.3 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199534, + "fields": { + "id_car_serie": 48120, + "name": "3.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199535, + "fields": { + "id_car_serie": 48120, + "name": "3.8 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199536, + "fields": { + "id_car_serie": 48120, + "name": "3.8 AT GL (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199537, + "fields": { + "id_car_serie": 48121, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199538, + "fields": { + "id_car_serie": 48122, + "name": "1.4 MPi MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199539, + "fields": { + "id_car_serie": 48122, + "name": "1.5 MT GL (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199540, + "fields": { + "id_car_serie": 48122, + "name": "1.6 MT GLi (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199541, + "fields": { + "id_car_serie": 48122, + "name": "1.9D MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199542, + "fields": { + "id_car_serie": 48123, + "name": "1.4 MPi MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199543, + "fields": { + "id_car_serie": 48123, + "name": "1.5 MT GL (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199544, + "fields": { + "id_car_serie": 48123, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199545, + "fields": { + "id_car_serie": 48123, + "name": "1.6 MT GL (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199546, + "fields": { + "id_car_serie": 48123, + "name": "1.6 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199547, + "fields": { + "id_car_serie": 48123, + "name": "1.9D MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199548, + "fields": { + "id_car_serie": 48124, + "name": "1.3 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199549, + "fields": { + "id_car_serie": 48124, + "name": "1.3 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199550, + "fields": { + "id_car_serie": 48124, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199551, + "fields": { + "id_car_serie": 48124, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199552, + "fields": { + "id_car_serie": 48124, + "name": "2.0 TD MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199553, + "fields": { + "id_car_serie": 53441, + "name": "1.5 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199554, + "fields": { + "id_car_serie": 53441, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199555, + "fields": { + "id_car_serie": 53441, + "name": "1.8 CVT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199556, + "fields": { + "id_car_serie": 48126, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199557, + "fields": { + "id_car_serie": 48126, + "name": "2.4 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199558, + "fields": { + "id_car_serie": 48127, + "name": "1.5 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199559, + "fields": { + "id_car_serie": 48127, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199560, + "fields": { + "id_car_serie": 48127, + "name": "1.8 CVT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199561, + "fields": { + "id_car_serie": 48128, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199562, + "fields": { + "id_car_serie": 48129, + "name": "4.3 AT SWB 2WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199563, + "fields": { + "id_car_serie": 48129, + "name": "4.3 MT SWB 2WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199564, + "fields": { + "id_car_serie": 48129, + "name": "8.1 AT LWB 2WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199565, + "fields": { + "id_car_serie": 48129, + "name": "8.1 MT LWB 2WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199567, + "fields": { + "id_car_serie": 48131, + "name": "2.2 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199568, + "fields": { + "id_car_serie": 48131, + "name": "2.8 MT TD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199573, + "fields": { + "id_car_serie": 48133, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199575, + "fields": { + "id_car_serie": 48134, + "name": "5.0 AT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199576, + "fields": { + "id_car_serie": 48135, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199577, + "fields": { + "id_car_serie": 48135, + "name": "2.3 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199578, + "fields": { + "id_car_serie": 48135, + "name": "2.3 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199579, + "fields": { + "id_car_serie": 48135, + "name": "2.3 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199580, + "fields": { + "id_car_serie": 48135, + "name": "2.3 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199581, + "fields": { + "id_car_serie": 48135, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199582, + "fields": { + "id_car_serie": 48135, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199583, + "fields": { + "id_car_serie": 48136, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199584, + "fields": { + "id_car_serie": 48136, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199585, + "fields": { + "id_car_serie": 48136, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199586, + "fields": { + "id_car_serie": 48136, + "name": "2.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199587, + "fields": { + "id_car_serie": 48136, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199588, + "fields": { + "id_car_serie": 48136, + "name": "2.0 MT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199589, + "fields": { + "id_car_serie": 48137, + "name": "2.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199590, + "fields": { + "id_car_serie": 48137, + "name": "2.3 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199591, + "fields": { + "id_car_serie": 48137, + "name": "2.3 AT AWD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199592, + "fields": { + "id_car_serie": 48138, + "name": "2.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199593, + "fields": { + "id_car_serie": 48139, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199594, + "fields": { + "id_car_serie": 48139, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199595, + "fields": { + "id_car_serie": 48139, + "name": "2.3 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199596, + "fields": { + "id_car_serie": 48139, + "name": "2.3 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199597, + "fields": { + "id_car_serie": 48139, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199598, + "fields": { + "id_car_serie": 48139, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199599, + "fields": { + "id_car_serie": 48139, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199600, + "fields": { + "id_car_serie": 48139, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199601, + "fields": { + "id_car_serie": 48140, + "name": "2.3 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199602, + "fields": { + "id_car_serie": 48140, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199603, + "fields": { + "id_car_serie": 48140, + "name": "2.3 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199604, + "fields": { + "id_car_serie": 48140, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199605, + "fields": { + "id_car_serie": 48140, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199606, + "fields": { + "id_car_serie": 48141, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199607, + "fields": { + "id_car_serie": 48141, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199608, + "fields": { + "id_car_serie": 48141, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199609, + "fields": { + "id_car_serie": 48141, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199610, + "fields": { + "id_car_serie": 48142, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199611, + "fields": { + "id_car_serie": 48142, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199612, + "fields": { + "id_car_serie": 48142, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199613, + "fields": { + "id_car_serie": 48143, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199614, + "fields": { + "id_car_serie": 48143, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199615, + "fields": { + "id_car_serie": 48143, + "name": "2.2 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199616, + "fields": { + "id_car_serie": 48143, + "name": "2.2 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199617, + "fields": { + "id_car_serie": 48152, + "name": "1.5 CVT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199618, + "fields": { + "id_car_serie": 48152, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199619, + "fields": { + "id_car_serie": 48153, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199620, + "fields": { + "id_car_serie": 48158, + "name": "2.4 MT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199621, + "fields": { + "id_car_serie": 48159, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199622, + "fields": { + "id_car_serie": 48159, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199623, + "fields": { + "id_car_serie": 48160, + "name": "2.0 MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199624, + "fields": { + "id_car_serie": 48161, + "name": "1.4 CVT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199625, + "fields": { + "id_car_serie": 48162, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199626, + "fields": { + "id_car_serie": 48162, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199627, + "fields": { + "id_car_serie": 48163, + "name": "2.0 MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199628, + "fields": { + "id_car_serie": 15280, + "name": "2.0 MT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199629, + "fields": { + "id_car_serie": 48165, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199630, + "fields": { + "id_car_serie": 48165, + "name": "1.8 I-SHIFT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199631, + "fields": { + "id_car_serie": 48165, + "name": "2.2 CTDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199632, + "fields": { + "id_car_serie": 6346, + "name": "1.8 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199633, + "fields": { + "id_car_serie": 6346, + "name": "1.8 CNG AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199634, + "fields": { + "id_car_serie": 6346, + "name": "1.8 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199635, + "fields": { + "id_car_serie": 48167, + "name": "1.4 CVT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199636, + "fields": { + "id_car_serie": 48168, + "name": "2.0 MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199637, + "fields": { + "id_car_serie": 48169, + "name": "2.0 MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199638, + "fields": { + "id_car_serie": 48165, + "name": "2.0 MT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199639, + "fields": { + "id_car_serie": 48171, + "name": "2.0 6MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199640, + "fields": { + "id_car_serie": 48171, + "name": "2.0 6MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199641, + "fields": { + "id_car_serie": 48172, + "name": "2.0 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199642, + "fields": { + "id_car_serie": 48173, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199643, + "fields": { + "id_car_serie": 48173, + "name": "1.3 CVT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199644, + "fields": { + "id_car_serie": 48174, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199645, + "fields": { + "id_car_serie": 48174, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199646, + "fields": { + "id_car_serie": 48174, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199647, + "fields": { + "id_car_serie": 48174, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199648, + "fields": { + "id_car_serie": 48174, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199649, + "fields": { + "id_car_serie": 48174, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199650, + "fields": { + "id_car_serie": 48174, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199651, + "fields": { + "id_car_serie": 48174, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199652, + "fields": { + "id_car_serie": 48174, + "name": "1.7 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199653, + "fields": { + "id_car_serie": 48174, + "name": "1.7 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199654, + "fields": { + "id_car_serie": 48174, + "name": "1.7 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199655, + "fields": { + "id_car_serie": 48174, + "name": "1.7 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199656, + "fields": { + "id_car_serie": 48174, + "name": "1.7 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199657, + "fields": { + "id_car_serie": 48174, + "name": "1.7 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199658, + "fields": { + "id_car_serie": 48174, + "name": "1.7 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199659, + "fields": { + "id_car_serie": 48174, + "name": "1.7 CNG CVT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199660, + "fields": { + "id_car_serie": 6338, + "name": "2.0 6MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199661, + "fields": { + "id_car_serie": 6338, + "name": "2.0 6MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199662, + "fields": { + "id_car_serie": 48177, + "name": "1.4 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199663, + "fields": { + "id_car_serie": 48177, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199664, + "fields": { + "id_car_serie": 48177, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199665, + "fields": { + "id_car_serie": 48177, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199666, + "fields": { + "id_car_serie": 48177, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199667, + "fields": { + "id_car_serie": 48177, + "name": "1.5 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199668, + "fields": { + "id_car_serie": 48177, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199669, + "fields": { + "id_car_serie": 48177, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199670, + "fields": { + "id_car_serie": 48177, + "name": "1.5 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199671, + "fields": { + "id_car_serie": 48177, + "name": "1.5 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199672, + "fields": { + "id_car_serie": 48177, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199673, + "fields": { + "id_car_serie": 48177, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199674, + "fields": { + "id_car_serie": 48177, + "name": "1.7 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199675, + "fields": { + "id_car_serie": 48177, + "name": "1.7 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199676, + "fields": { + "id_car_serie": 48177, + "name": "1.7 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199677, + "fields": { + "id_car_serie": 48177, + "name": "1.7 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199678, + "fields": { + "id_car_serie": 48177, + "name": "1.7 CNG CVT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199679, + "fields": { + "id_car_serie": 48177, + "name": "1.7 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199680, + "fields": { + "id_car_serie": 48178, + "name": "2.0 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199681, + "fields": { + "id_car_serie": 48179, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199682, + "fields": { + "id_car_serie": 48179, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199683, + "fields": { + "id_car_serie": 48179, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199684, + "fields": { + "id_car_serie": 48179, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199685, + "fields": { + "id_car_serie": 48179, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199686, + "fields": { + "id_car_serie": 48179, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199687, + "fields": { + "id_car_serie": 48179, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199688, + "fields": { + "id_car_serie": 48179, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199689, + "fields": { + "id_car_serie": 48179, + "name": "1.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199690, + "fields": { + "id_car_serie": 48179, + "name": "2.0 TD MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199691, + "fields": { + "id_car_serie": 48179, + "name": "2.0 TDi MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199692, + "fields": { + "id_car_serie": 48180, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199693, + "fields": { + "id_car_serie": 48180, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199694, + "fields": { + "id_car_serie": 48180, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199695, + "fields": { + "id_car_serie": 48180, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199696, + "fields": { + "id_car_serie": 48180, + "name": "1.6 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199700, + "fields": { + "id_car_serie": 47223, + "name": "1.5 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199702, + "fields": { + "id_car_serie": 47223, + "name": "1.6 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199706, + "fields": { + "id_car_serie": 47223, + "name": "1.6 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199707, + "fields": { + "id_car_serie": 47223, + "name": "1.6 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199711, + "fields": { + "id_car_serie": 6349, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199712, + "fields": { + "id_car_serie": 48188, + "name": "3.9 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199713, + "fields": { + "id_car_serie": 48189, + "name": "3.9 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199714, + "fields": { + "id_car_serie": 48190, + "name": "1.7 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199715, + "fields": { + "id_car_serie": 48190, + "name": "1.7 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199716, + "fields": { + "id_car_serie": 48190, + "name": "2.0 AT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199717, + "fields": { + "id_car_serie": 48190, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199718, + "fields": { + "id_car_serie": 48191, + "name": "2.4 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199719, + "fields": { + "id_car_serie": 48191, + "name": "2.4 MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199720, + "fields": { + "id_car_serie": 48192, + "name": "2.4 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199721, + "fields": { + "id_car_serie": 48192, + "name": "2.4 MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199722, + "fields": { + "id_car_serie": 48193, + "name": "2.4 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199723, + "fields": { + "id_car_serie": 48193, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199724, + "fields": { + "id_car_serie": 48194, + "name": "2.4 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199725, + "fields": { + "id_car_serie": 48194, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199726, + "fields": { + "id_car_serie": 48194, + "name": "3.5 AT 4WD (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199727, + "fields": { + "id_car_serie": 48194, + "name": "3.5 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199728, + "fields": { + "id_car_serie": 48195, + "name": "2.4 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199729, + "fields": { + "id_car_serie": 48195, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199730, + "fields": { + "id_car_serie": 48195, + "name": "3.5 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199731, + "fields": { + "id_car_serie": 48195, + "name": "3.5 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199732, + "fields": { + "id_car_serie": 48196, + "name": "1.3 CVT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199733, + "fields": { + "id_car_serie": 48196, + "name": "1.3 CVT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199734, + "fields": { + "id_car_serie": 48196, + "name": "1.5 CVT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199735, + "fields": { + "id_car_serie": 48196, + "name": "1.5 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199736, + "fields": { + "id_car_serie": 48197, + "name": "1.5 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199737, + "fields": { + "id_car_serie": 48197, + "name": "1.5 CVT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199738, + "fields": { + "id_car_serie": 48198, + "name": "1.3 CVT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199739, + "fields": { + "id_car_serie": 48199, + "name": "1.5 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199740, + "fields": { + "id_car_serie": 48199, + "name": "1.5 CVT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199741, + "fields": { + "id_car_serie": 48200, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199742, + "fields": { + "id_car_serie": 48200, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199743, + "fields": { + "id_car_serie": 48201, + "name": "EV CVT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199744, + "fields": { + "id_car_serie": 48202, + "name": "1.3 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199745, + "fields": { + "id_car_serie": 48202, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199746, + "fields": { + "id_car_serie": 48202, + "name": "1.3 CVT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199747, + "fields": { + "id_car_serie": 48202, + "name": "1.5 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199748, + "fields": { + "id_car_serie": 48202, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199749, + "fields": { + "id_car_serie": 48203, + "name": "1.5 AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199750, + "fields": { + "id_car_serie": 48203, + "name": "1.5 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199751, + "fields": { + "id_car_serie": 48204, + "name": "1.5 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199752, + "fields": { + "id_car_serie": 48204, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199753, + "fields": { + "id_car_serie": 48204, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199754, + "fields": { + "id_car_serie": 48205, + "name": "1.3 CVT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199755, + "fields": { + "id_car_serie": 48205, + "name": "1.3 CVT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199756, + "fields": { + "id_car_serie": 48205, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199757, + "fields": { + "id_car_serie": 48205, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199758, + "fields": { + "id_car_serie": 48205, + "name": "1.5 CVT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199759, + "fields": { + "id_car_serie": 48205, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199760, + "fields": { + "id_car_serie": 48206, + "name": "1.5 AT 4WD 7 places (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199761, + "fields": { + "id_car_serie": 48206, + "name": "1.5 AT 4WD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199762, + "fields": { + "id_car_serie": 48206, + "name": "1.5 CVT 7 places (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199763, + "fields": { + "id_car_serie": 48206, + "name": "1.5 CVT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199764, + "fields": { + "id_car_serie": 48207, + "name": "1.5 AT 4WD 5 places (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199765, + "fields": { + "id_car_serie": 48207, + "name": "1.5 AT 4WD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199766, + "fields": { + "id_car_serie": 48207, + "name": "1.5 CVT 5 places (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199767, + "fields": { + "id_car_serie": 48207, + "name": "1.5 CVT 8 places (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199768, + "fields": { + "id_car_serie": 48207, + "name": "1.5 CVT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199769, + "fields": { + "id_car_serie": 48208, + "name": "3.2 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199770, + "fields": { + "id_car_serie": 48209, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199771, + "fields": { + "id_car_serie": 48209, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199772, + "fields": { + "id_car_serie": 48210, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199773, + "fields": { + "id_car_serie": 48210, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199774, + "fields": { + "id_car_serie": 48211, + "name": "1.8 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199775, + "fields": { + "id_car_serie": 48212, + "name": "1.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199776, + "fields": { + "id_car_serie": 48213, + "name": "1.8 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199777, + "fields": { + "id_car_serie": 48214, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199778, + "fields": { + "id_car_serie": 48214, + "name": "1.6 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199779, + "fields": { + "id_car_serie": 48214, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199780, + "fields": { + "id_car_serie": 48214, + "name": "1.6 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199781, + "fields": { + "id_car_serie": 48215, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199782, + "fields": { + "id_car_serie": 48215, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199783, + "fields": { + "id_car_serie": 48215, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199784, + "fields": { + "id_car_serie": 48215, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199785, + "fields": { + "id_car_serie": 48215, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199786, + "fields": { + "id_car_serie": 48215, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199787, + "fields": { + "id_car_serie": 48216, + "name": "1.3 CVT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199788, + "fields": { + "id_car_serie": 48217, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199789, + "fields": { + "id_car_serie": 48217, + "name": "1.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199790, + "fields": { + "id_car_serie": 48217, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199791, + "fields": { + "id_car_serie": 48218, + "name": "3.5 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199792, + "fields": { + "id_car_serie": 48218, + "name": "3.5 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199793, + "fields": { + "id_car_serie": 48219, + "name": "0.7 T AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199794, + "fields": { + "id_car_serie": 48219, + "name": "0.7 T AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199795, + "fields": { + "id_car_serie": 48219, + "name": "0.7 AT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199796, + "fields": { + "id_car_serie": 48219, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199797, + "fields": { + "id_car_serie": 48220, + "name": "0.7 T AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199798, + "fields": { + "id_car_serie": 48220, + "name": "0.7 T AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199799, + "fields": { + "id_car_serie": 48220, + "name": "0.7 AT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199800, + "fields": { + "id_car_serie": 48220, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199801, + "fields": { + "id_car_serie": 48221, + "name": "0.7 T AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199802, + "fields": { + "id_car_serie": 48221, + "name": "0.7 T AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199803, + "fields": { + "id_car_serie": 48221, + "name": "0.7 AT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199804, + "fields": { + "id_car_serie": 48221, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199805, + "fields": { + "id_car_serie": 48222, + "name": "0.7 T AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199806, + "fields": { + "id_car_serie": 48222, + "name": "0.7 T AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199807, + "fields": { + "id_car_serie": 48223, + "name": "0.7 AT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199808, + "fields": { + "id_car_serie": 48223, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199809, + "fields": { + "id_car_serie": 48223, + "name": "0.7 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199810, + "fields": { + "id_car_serie": 48223, + "name": "0.7 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199811, + "fields": { + "id_car_serie": 48224, + "name": "0.7 AT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199812, + "fields": { + "id_car_serie": 48224, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199813, + "fields": { + "id_car_serie": 48224, + "name": "0.7 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199814, + "fields": { + "id_car_serie": 48224, + "name": "0.7 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199815, + "fields": { + "id_car_serie": 48225, + "name": "0.7 AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199816, + "fields": { + "id_car_serie": 48225, + "name": "0.7 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199817, + "fields": { + "id_car_serie": 48231, + "name": "1.3 AT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199818, + "fields": { + "id_car_serie": 48231, + "name": "1.3 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199819, + "fields": { + "id_car_serie": 48231, + "name": "1.3 CVT 4WD (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199820, + "fields": { + "id_car_serie": 48231, + "name": "1.3 CVT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199821, + "fields": { + "id_car_serie": 48231, + "name": "1.3 CVT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199822, + "fields": { + "id_car_serie": 48232, + "name": "1.3 AT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199823, + "fields": { + "id_car_serie": 48232, + "name": "1.3 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199824, + "fields": { + "id_car_serie": 48232, + "name": "1.3 CVT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199825, + "fields": { + "id_car_serie": 48233, + "name": "1.3 AT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199826, + "fields": { + "id_car_serie": 48233, + "name": "1.3 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199827, + "fields": { + "id_car_serie": 48233, + "name": "1.3 CVT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199828, + "fields": { + "id_car_serie": 48234, + "name": "3.0 AT (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199829, + "fields": { + "id_car_serie": 48234, + "name": "3.2 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199830, + "fields": { + "id_car_serie": 48235, + "name": "3.0 MT (274 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199831, + "fields": { + "id_car_serie": 48235, + "name": "3.2 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199832, + "fields": { + "id_car_serie": 48236, + "name": "3.0 AT (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199833, + "fields": { + "id_car_serie": 48236, + "name": "3.0 MT (274 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199834, + "fields": { + "id_car_serie": 48236, + "name": "3.2 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199835, + "fields": { + "id_car_serie": 48237, + "name": "2.4 CVT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199836, + "fields": { + "id_car_serie": 48237, + "name": "2.4 CVT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199837, + "fields": { + "id_car_serie": 48238, + "name": "2.4 CVT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199838, + "fields": { + "id_car_serie": 48238, + "name": "2.4 CVT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199839, + "fields": { + "id_car_serie": 48239, + "name": "3.5 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199840, + "fields": { + "id_car_serie": 48240, + "name": "2.4 AT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199841, + "fields": { + "id_car_serie": 48240, + "name": "2.4 CVT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199842, + "fields": { + "id_car_serie": 48241, + "name": "2.4 AT (179 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199843, + "fields": { + "id_car_serie": 48241, + "name": "2.4 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199844, + "fields": { + "id_car_serie": 48241, + "name": "2.4 AT (206 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199845, + "fields": { + "id_car_serie": 48242, + "name": "3.5 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199846, + "fields": { + "id_car_serie": 48242, + "name": "3.5 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199847, + "fields": { + "id_car_serie": 48243, + "name": "2.4 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199848, + "fields": { + "id_car_serie": 48243, + "name": "2.4 AT (206 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199849, + "fields": { + "id_car_serie": 48244, + "name": "3.5 AT (247 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199850, + "fields": { + "id_car_serie": 48245, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199851, + "fields": { + "id_car_serie": 48245, + "name": "2.4 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199852, + "fields": { + "id_car_serie": 48245, + "name": "2.4 CVT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199853, + "fields": { + "id_car_serie": 48246, + "name": "3.5 AT (247 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199854, + "fields": { + "id_car_serie": 48247, + "name": "2.3 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199855, + "fields": { + "id_car_serie": 48247, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199856, + "fields": { + "id_car_serie": 48247, + "name": "3.0 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199857, + "fields": { + "id_car_serie": 48247, + "name": "3.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199858, + "fields": { + "id_car_serie": 48248, + "name": "3.5 AT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199859, + "fields": { + "id_car_serie": 48249, + "name": "3.0 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199860, + "fields": { + "id_car_serie": 48249, + "name": "3.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199861, + "fields": { + "id_car_serie": 48250, + "name": "2.3 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199862, + "fields": { + "id_car_serie": 48250, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199863, + "fields": { + "id_car_serie": 48251, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199864, + "fields": { + "id_car_serie": 48252, + "name": "2.2 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199865, + "fields": { + "id_car_serie": 48253, + "name": "2.2 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199866, + "fields": { + "id_car_serie": 48254, + "name": "2.2 MT (239 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199867, + "fields": { + "id_car_serie": 48255, + "name": "2.2 MT (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199868, + "fields": { + "id_car_serie": 48256, + "name": "3.2 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199869, + "fields": { + "id_car_serie": 48257, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199870, + "fields": { + "id_car_serie": 48257, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199871, + "fields": { + "id_car_serie": 48258, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199872, + "fields": { + "id_car_serie": 48258, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199873, + "fields": { + "id_car_serie": 48259, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199874, + "fields": { + "id_car_serie": 48259, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199875, + "fields": { + "id_car_serie": 48260, + "name": "2.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199876, + "fields": { + "id_car_serie": 48260, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199877, + "fields": { + "id_car_serie": 48260, + "name": "2.4 AT 4WD (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199878, + "fields": { + "id_car_serie": 48260, + "name": "2.4 CVT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199879, + "fields": { + "id_car_serie": 48261, + "name": "2.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199880, + "fields": { + "id_car_serie": 48261, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199881, + "fields": { + "id_car_serie": 48262, + "name": "2.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199882, + "fields": { + "id_car_serie": 48262, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199883, + "fields": { + "id_car_serie": 48262, + "name": "2.4 AT 4WD (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199884, + "fields": { + "id_car_serie": 48262, + "name": "2.4 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199885, + "fields": { + "id_car_serie": 48263, + "name": "1.8 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199886, + "fields": { + "id_car_serie": 48263, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199887, + "fields": { + "id_car_serie": 48263, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199888, + "fields": { + "id_car_serie": 48263, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199889, + "fields": { + "id_car_serie": 48264, + "name": "2.2 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199890, + "fields": { + "id_car_serie": 48265, + "name": "3.5 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199891, + "fields": { + "id_car_serie": 48265, + "name": "3.7 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199892, + "fields": { + "id_car_serie": 48265, + "name": "3.7 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199893, + "fields": { + "id_car_serie": 48265, + "name": "5.3 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199894, + "fields": { + "id_car_serie": 48266, + "name": "1.6 LPi CVT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199895, + "fields": { + "id_car_serie": 48267, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199896, + "fields": { + "id_car_serie": 48267, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199897, + "fields": { + "id_car_serie": 48267, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199898, + "fields": { + "id_car_serie": 48268, + "name": "3.3 AT (247 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199899, + "fields": { + "id_car_serie": 48268, + "name": "3.5 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199900, + "fields": { + "id_car_serie": 48268, + "name": "3.8 AT (266 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199901, + "fields": { + "id_car_serie": 48268, + "name": "4.5 AT (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199902, + "fields": { + "id_car_serie": 48269, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199903, + "fields": { + "id_car_serie": 48269, + "name": "3.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199904, + "fields": { + "id_car_serie": 48269, + "name": "3.5 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199905, + "fields": { + "id_car_serie": 48269, + "name": "3.5 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199906, + "fields": { + "id_car_serie": 48269, + "name": "4.5 AT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199907, + "fields": { + "id_car_serie": 48269, + "name": "4.5 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199908, + "fields": { + "id_car_serie": 48270, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199909, + "fields": { + "id_car_serie": 48270, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199910, + "fields": { + "id_car_serie": 48271, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199911, + "fields": { + "id_car_serie": 48271, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199912, + "fields": { + "id_car_serie": 48271, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199913, + "fields": { + "id_car_serie": 48271, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199914, + "fields": { + "id_car_serie": 48271, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199915, + "fields": { + "id_car_serie": 48271, + "name": "2.7 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199916, + "fields": { + "id_car_serie": 48271, + "name": "2.7 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199917, + "fields": { + "id_car_serie": 48272, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199918, + "fields": { + "id_car_serie": 48272, + "name": "1.6 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199919, + "fields": { + "id_car_serie": 48272, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199920, + "fields": { + "id_car_serie": 48272, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199921, + "fields": { + "id_car_serie": 48272, + "name": "1.8 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199922, + "fields": { + "id_car_serie": 48272, + "name": "1.8 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199923, + "fields": { + "id_car_serie": 48272, + "name": "1.9 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199924, + "fields": { + "id_car_serie": 48272, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199925, + "fields": { + "id_car_serie": 48272, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199926, + "fields": { + "id_car_serie": 48273, + "name": "1.5 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199927, + "fields": { + "id_car_serie": 48273, + "name": "1.5 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199928, + "fields": { + "id_car_serie": 48273, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199929, + "fields": { + "id_car_serie": 48273, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199930, + "fields": { + "id_car_serie": 48273, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199931, + "fields": { + "id_car_serie": 48273, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199932, + "fields": { + "id_car_serie": 48274, + "name": "3.3 AT (247 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199933, + "fields": { + "id_car_serie": 48274, + "name": "3.5 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199934, + "fields": { + "id_car_serie": 48274, + "name": "3.8 AT (266 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199935, + "fields": { + "id_car_serie": 48274, + "name": "4.5 AT (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199936, + "fields": { + "id_car_serie": 48275, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199937, + "fields": { + "id_car_serie": 48275, + "name": "3.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199939, + "fields": { + "id_car_serie": 48275, + "name": "3.5 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199940, + "fields": { + "id_car_serie": 48275, + "name": "4.5 AT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199941, + "fields": { + "id_car_serie": 48275, + "name": "4.5 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199942, + "fields": { + "id_car_serie": 48276, + "name": "1.3 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199943, + "fields": { + "id_car_serie": 48276, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199944, + "fields": { + "id_car_serie": 48276, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199945, + "fields": { + "id_car_serie": 48276, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199946, + "fields": { + "id_car_serie": 48276, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199947, + "fields": { + "id_car_serie": 48276, + "name": "1.5 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199948, + "fields": { + "id_car_serie": 48276, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199949, + "fields": { + "id_car_serie": 48276, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199950, + "fields": { + "id_car_serie": 48276, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199951, + "fields": { + "id_car_serie": 48277, + "name": "1.3 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199952, + "fields": { + "id_car_serie": 48277, + "name": "1.3 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199953, + "fields": { + "id_car_serie": 48277, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199954, + "fields": { + "id_car_serie": 48277, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199955, + "fields": { + "id_car_serie": 48277, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199956, + "fields": { + "id_car_serie": 48277, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199957, + "fields": { + "id_car_serie": 48277, + "name": "1.5 AT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199958, + "fields": { + "id_car_serie": 48277, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199959, + "fields": { + "id_car_serie": 48277, + "name": "1.5 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199960, + "fields": { + "id_car_serie": 48277, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199961, + "fields": { + "id_car_serie": 48278, + "name": "1.3 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199962, + "fields": { + "id_car_serie": 48278, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199963, + "fields": { + "id_car_serie": 48278, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199964, + "fields": { + "id_car_serie": 48278, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199965, + "fields": { + "id_car_serie": 48278, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199966, + "fields": { + "id_car_serie": 48278, + "name": "1.5 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199967, + "fields": { + "id_car_serie": 48278, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199968, + "fields": { + "id_car_serie": 48278, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199969, + "fields": { + "id_car_serie": 48278, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199970, + "fields": { + "id_car_serie": 48279, + "name": "1.3 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199971, + "fields": { + "id_car_serie": 48279, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199972, + "fields": { + "id_car_serie": 48279, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199973, + "fields": { + "id_car_serie": 48279, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199974, + "fields": { + "id_car_serie": 48279, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199975, + "fields": { + "id_car_serie": 48279, + "name": "1.5 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199976, + "fields": { + "id_car_serie": 48279, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199977, + "fields": { + "id_car_serie": 48279, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199978, + "fields": { + "id_car_serie": 48279, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199979, + "fields": { + "id_car_serie": 48280, + "name": "1.3 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199980, + "fields": { + "id_car_serie": 48280, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199981, + "fields": { + "id_car_serie": 48280, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199982, + "fields": { + "id_car_serie": 48280, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199983, + "fields": { + "id_car_serie": 48280, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199984, + "fields": { + "id_car_serie": 48280, + "name": "1.5 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199985, + "fields": { + "id_car_serie": 48280, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199986, + "fields": { + "id_car_serie": 48280, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199987, + "fields": { + "id_car_serie": 48280, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199988, + "fields": { + "id_car_serie": 48281, + "name": "1.3 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199989, + "fields": { + "id_car_serie": 48281, + "name": "1.3 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199990, + "fields": { + "id_car_serie": 48281, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199991, + "fields": { + "id_car_serie": 48281, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199992, + "fields": { + "id_car_serie": 48281, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199993, + "fields": { + "id_car_serie": 48281, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199994, + "fields": { + "id_car_serie": 48281, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199995, + "fields": { + "id_car_serie": 48281, + "name": "1.5 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199996, + "fields": { + "id_car_serie": 48281, + "name": "1.5 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199997, + "fields": { + "id_car_serie": 48281, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199998, + "fields": { + "id_car_serie": 48282, + "name": "1.3 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 199999, + "fields": { + "id_car_serie": 48282, + "name": "1.5 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200000, + "fields": { + "id_car_serie": 48282, + "name": "1.5 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200001, + "fields": { + "id_car_serie": 48282, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200002, + "fields": { + "id_car_serie": 48282, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200003, + "fields": { + "id_car_serie": 48283, + "name": "1.3 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200004, + "fields": { + "id_car_serie": 48283, + "name": "1.5 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200005, + "fields": { + "id_car_serie": 48283, + "name": "1.5 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200006, + "fields": { + "id_car_serie": 48283, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200007, + "fields": { + "id_car_serie": 48283, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200008, + "fields": { + "id_car_serie": 48284, + "name": "1.3 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200009, + "fields": { + "id_car_serie": 48284, + "name": "1.5 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200010, + "fields": { + "id_car_serie": 48284, + "name": "1.5 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200011, + "fields": { + "id_car_serie": 48284, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200012, + "fields": { + "id_car_serie": 48284, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200013, + "fields": { + "id_car_serie": 48285, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200014, + "fields": { + "id_car_serie": 48286, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200015, + "fields": { + "id_car_serie": 48286, + "name": "1.5 AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200016, + "fields": { + "id_car_serie": 48286, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200017, + "fields": { + "id_car_serie": 48291, + "name": "2.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200018, + "fields": { + "id_car_serie": 48292, + "name": "2.0 T MT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200019, + "fields": { + "id_car_serie": 48292, + "name": "3.8 MT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200020, + "fields": { + "id_car_serie": 48293, + "name": "2.0 T Shiftronic (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200021, + "fields": { + "id_car_serie": 48293, + "name": "2.0 T MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200022, + "fields": { + "id_car_serie": 48293, + "name": "3.8 Shiftronic (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200023, + "fields": { + "id_car_serie": 48293, + "name": "3.8 MT (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200025, + "fields": { + "id_car_serie": 48296, + "name": "1.5 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200026, + "fields": { + "id_car_serie": 48296, + "name": "1.5 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200027, + "fields": { + "id_car_serie": 48296, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200028, + "fields": { + "id_car_serie": 48296, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200029, + "fields": { + "id_car_serie": 48296, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200030, + "fields": { + "id_car_serie": 48297, + "name": "1.5 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200031, + "fields": { + "id_car_serie": 48297, + "name": "1.5 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200032, + "fields": { + "id_car_serie": 48297, + "name": "1.8 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200033, + "fields": { + "id_car_serie": 48297, + "name": "1.8 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200034, + "fields": { + "id_car_serie": 48298, + "name": "1.5 CRDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200035, + "fields": { + "id_car_serie": 48298, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200036, + "fields": { + "id_car_serie": 48298, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200037, + "fields": { + "id_car_serie": 48298, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200038, + "fields": { + "id_car_serie": 48298, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200039, + "fields": { + "id_car_serie": 48299, + "name": "1.5 CRDi MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200040, + "fields": { + "id_car_serie": 48299, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200041, + "fields": { + "id_car_serie": 48299, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200042, + "fields": { + "id_car_serie": 48299, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200043, + "fields": { + "id_car_serie": 48299, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200044, + "fields": { + "id_car_serie": 48300, + "name": "1.4 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200045, + "fields": { + "id_car_serie": 48300, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200046, + "fields": { + "id_car_serie": 48301, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200047, + "fields": { + "id_car_serie": 48301, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200048, + "fields": { + "id_car_serie": 48301, + "name": "1.4 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200049, + "fields": { + "id_car_serie": 48301, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200050, + "fields": { + "id_car_serie": 48301, + "name": "1.4 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200051, + "fields": { + "id_car_serie": 48301, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200052, + "fields": { + "id_car_serie": 48302, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200053, + "fields": { + "id_car_serie": 48302, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200054, + "fields": { + "id_car_serie": 48302, + "name": "1.4 AT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200055, + "fields": { + "id_car_serie": 48302, + "name": "1.4 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200056, + "fields": { + "id_car_serie": 48302, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200057, + "fields": { + "id_car_serie": 48303, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200058, + "fields": { + "id_car_serie": 48303, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200059, + "fields": { + "id_car_serie": 48304, + "name": "2.0 CRDi AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200060, + "fields": { + "id_car_serie": 48304, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200061, + "fields": { + "id_car_serie": 48304, + "name": "2.0 CRDi MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200062, + "fields": { + "id_car_serie": 48304, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200063, + "fields": { + "id_car_serie": 48304, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200064, + "fields": { + "id_car_serie": 48304, + "name": "2.7 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200065, + "fields": { + "id_car_serie": 48305, + "name": "2.0 AT hybrid (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200066, + "fields": { + "id_car_serie": 48305, + "name": "2.4 MPi AT hybrid (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200067, + "fields": { + "id_car_serie": 48306, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200068, + "fields": { + "id_car_serie": 48306, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200069, + "fields": { + "id_car_serie": 48306, + "name": "2.7 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200070, + "fields": { + "id_car_serie": 48306, + "name": "2.7 MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200071, + "fields": { + "id_car_serie": 48307, + "name": "2.4 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200072, + "fields": { + "id_car_serie": 48307, + "name": "2.5 CRDi AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200073, + "fields": { + "id_car_serie": 48307, + "name": "2.5 CRDi 6MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200074, + "fields": { + "id_car_serie": 48307, + "name": "2.5 CRDi 5MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200075, + "fields": { + "id_car_serie": 48307, + "name": "2.5 CRDi MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200076, + "fields": { + "id_car_serie": 48308, + "name": "2.4 AT LWB (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200077, + "fields": { + "id_car_serie": 48308, + "name": "2.4 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200078, + "fields": { + "id_car_serie": 48308, + "name": "2.4 MT LWB (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200079, + "fields": { + "id_car_serie": 48308, + "name": "2.4 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200080, + "fields": { + "id_car_serie": 48308, + "name": "2.4 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200081, + "fields": { + "id_car_serie": 48308, + "name": "2.5 CRDi AT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200082, + "fields": { + "id_car_serie": 48308, + "name": "2.5 CRDi AT LWB (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200083, + "fields": { + "id_car_serie": 48308, + "name": "2.5 CRDi AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200084, + "fields": { + "id_car_serie": 48308, + "name": "2.5 CRDi MT LWB (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200085, + "fields": { + "id_car_serie": 48308, + "name": "2.5 CRDi MT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200086, + "fields": { + "id_car_serie": 48308, + "name": "2.5 CRDi MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200087, + "fields": { + "id_car_serie": 48309, + "name": "2.4 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200088, + "fields": { + "id_car_serie": 48309, + "name": "2.4 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200089, + "fields": { + "id_car_serie": 48309, + "name": "2.4 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200090, + "fields": { + "id_car_serie": 48309, + "name": "2.4 AT 4WD LWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200091, + "fields": { + "id_car_serie": 48309, + "name": "2.4 AT LWB (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200092, + "fields": { + "id_car_serie": 48309, + "name": "2.4 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200093, + "fields": { + "id_car_serie": 48309, + "name": "2.4 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200094, + "fields": { + "id_car_serie": 48309, + "name": "2.4 MT 4WD LWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200095, + "fields": { + "id_car_serie": 48309, + "name": "2.4 MT LWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200096, + "fields": { + "id_car_serie": 48309, + "name": "2.4 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200097, + "fields": { + "id_car_serie": 48309, + "name": "2.4 MT LWB (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200098, + "fields": { + "id_car_serie": 48309, + "name": "2.4 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200099, + "fields": { + "id_car_serie": 48309, + "name": "2.5 TD AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200100, + "fields": { + "id_car_serie": 48309, + "name": "2.5 TD AT 4WD LWB (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200101, + "fields": { + "id_car_serie": 48309, + "name": "2.5 CRDi AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200102, + "fields": { + "id_car_serie": 48309, + "name": "2.5 TD AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200103, + "fields": { + "id_car_serie": 48309, + "name": "2.5 CRDi AT LWB (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200104, + "fields": { + "id_car_serie": 48309, + "name": "2.5 CRDi AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200105, + "fields": { + "id_car_serie": 48309, + "name": "2.5 CRDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200106, + "fields": { + "id_car_serie": 48309, + "name": "2.5 TD MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200107, + "fields": { + "id_car_serie": 48309, + "name": "2.5 TDI MT 4WD (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200108, + "fields": { + "id_car_serie": 48309, + "name": "2.5 CRDi MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200109, + "fields": { + "id_car_serie": 48309, + "name": "2.5 CRDi MT LWB (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200110, + "fields": { + "id_car_serie": 48309, + "name": "2.5 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200111, + "fields": { + "id_car_serie": 48309, + "name": "2.5 TD MT 4WD LWB (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200112, + "fields": { + "id_car_serie": 48310, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200113, + "fields": { + "id_car_serie": 48310, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200114, + "fields": { + "id_car_serie": 48310, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200115, + "fields": { + "id_car_serie": 48310, + "name": "1.6 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200116, + "fields": { + "id_car_serie": 48310, + "name": "1.6 4MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200117, + "fields": { + "id_car_serie": 48310, + "name": "1.6 4MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200118, + "fields": { + "id_car_serie": 48310, + "name": "1.6 5MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200119, + "fields": { + "id_car_serie": 48311, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200120, + "fields": { + "id_car_serie": 48311, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200121, + "fields": { + "id_car_serie": 48311, + "name": "2.7 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200122, + "fields": { + "id_car_serie": 48311, + "name": "2.7 6MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200123, + "fields": { + "id_car_serie": 48311, + "name": "2.7 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200125, + "fields": { + "id_car_serie": 48312, + "name": "2.0 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200127, + "fields": { + "id_car_serie": 48312, + "name": "2.0 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200128, + "fields": { + "id_car_serie": 48312, + "name": "2.7 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200129, + "fields": { + "id_car_serie": 48312, + "name": "2.7 MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200130, + "fields": { + "id_car_serie": 48313, + "name": "1.4 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200131, + "fields": { + "id_car_serie": 48313, + "name": "1.4 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200132, + "fields": { + "id_car_serie": 48313, + "name": "1.6 CRDi AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200133, + "fields": { + "id_car_serie": 48313, + "name": "1.6 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200134, + "fields": { + "id_car_serie": 48313, + "name": "1.6 MT CRDi (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200135, + "fields": { + "id_car_serie": 48313, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200136, + "fields": { + "id_car_serie": 48314, + "name": "1.4 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200137, + "fields": { + "id_car_serie": 48314, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200138, + "fields": { + "id_car_serie": 48314, + "name": "1.5 CRDi AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200139, + "fields": { + "id_car_serie": 48314, + "name": "1.5 MT CRDi (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200140, + "fields": { + "id_car_serie": 48314, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200141, + "fields": { + "id_car_serie": 48314, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200142, + "fields": { + "id_car_serie": 48315, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200143, + "fields": { + "id_car_serie": 48315, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200144, + "fields": { + "id_car_serie": 48315, + "name": "1.5 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200145, + "fields": { + "id_car_serie": 48315, + "name": "1.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200146, + "fields": { + "id_car_serie": 48315, + "name": "1.5 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200147, + "fields": { + "id_car_serie": 48315, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200148, + "fields": { + "id_car_serie": 48315, + "name": "1.5 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200149, + "fields": { + "id_car_serie": 48315, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200150, + "fields": { + "id_car_serie": 48316, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200151, + "fields": { + "id_car_serie": 48316, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200152, + "fields": { + "id_car_serie": 48317, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200153, + "fields": { + "id_car_serie": 48317, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200154, + "fields": { + "id_car_serie": 48317, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200155, + "fields": { + "id_car_serie": 48317, + "name": "1.5 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200156, + "fields": { + "id_car_serie": 48317, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200157, + "fields": { + "id_car_serie": 48317, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200158, + "fields": { + "id_car_serie": 48318, + "name": "FX50 AT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200159, + "fields": { + "id_car_serie": 48319, + "name": "G37 AT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200160, + "fields": { + "id_car_serie": 48320, + "name": "G37 AT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200161, + "fields": { + "id_car_serie": 48321, + "name": "G37 7AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200162, + "fields": { + "id_car_serie": 48321, + "name": "G37 5AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200163, + "fields": { + "id_car_serie": 48321, + "name": "G37 5AT AWD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200164, + "fields": { + "id_car_serie": 48321, + "name": "G37 7AT AWD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200165, + "fields": { + "id_car_serie": 48321, + "name": "G37 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200166, + "fields": { + "id_car_serie": 48322, + "name": "G37 AT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200167, + "fields": { + "id_car_serie": 48322, + "name": "G37 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200168, + "fields": { + "id_car_serie": 48323, + "name": "G35 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200169, + "fields": { + "id_car_serie": 48323, + "name": "G35 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200170, + "fields": { + "id_car_serie": 48323, + "name": "G35 AT AWD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200171, + "fields": { + "id_car_serie": 48323, + "name": "G35 AT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200172, + "fields": { + "id_car_serie": 48324, + "name": "G35 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200173, + "fields": { + "id_car_serie": 48324, + "name": "G35 AT (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200174, + "fields": { + "id_car_serie": 48324, + "name": "G35 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200175, + "fields": { + "id_car_serie": 48324, + "name": "G35 MT (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200176, + "fields": { + "id_car_serie": 48325, + "name": "G35 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200177, + "fields": { + "id_car_serie": 48325, + "name": "G35 AT (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200178, + "fields": { + "id_car_serie": 48325, + "name": "G35 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200179, + "fields": { + "id_car_serie": 48325, + "name": "G35 MT (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200180, + "fields": { + "id_car_serie": 48326, + "name": "G35 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200181, + "fields": { + "id_car_serie": 48326, + "name": "G35 AT AWD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200182, + "fields": { + "id_car_serie": 48326, + "name": "G35 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200183, + "fields": { + "id_car_serie": 48326, + "name": "G35 AT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200184, + "fields": { + "id_car_serie": 48327, + "name": "G20 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200185, + "fields": { + "id_car_serie": 48327, + "name": "G20 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200186, + "fields": { + "id_car_serie": 48327, + "name": "G20 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200187, + "fields": { + "id_car_serie": 48327, + "name": "G20 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200188, + "fields": { + "id_car_serie": 48328, + "name": "G20 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200189, + "fields": { + "id_car_serie": 48328, + "name": "G20 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200190, + "fields": { + "id_car_serie": 48328, + "name": "G20 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200191, + "fields": { + "id_car_serie": 48328, + "name": "G20 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200192, + "fields": { + "id_car_serie": 48329, + "name": "M35 AT (307 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200193, + "fields": { + "id_car_serie": 48329, + "name": "M35 AT AWD (307 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200194, + "fields": { + "id_car_serie": 48330, + "name": "M35 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200195, + "fields": { + "id_car_serie": 48330, + "name": "M35 AT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200196, + "fields": { + "id_car_serie": 48331, + "name": "M45 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200201, + "fields": { + "id_car_serie": 48335, + "name": "2.5 AT AWD (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200202, + "fields": { + "id_car_serie": 48335, + "name": "3.7 AT AWD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200203, + "fields": { + "id_car_serie": 48336, + "name": "2.5 Xtronic AWD Hybrid (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200204, + "fields": { + "id_car_serie": 48336, + "name": "3.5 Xtronic AWD (262 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200205, + "fields": { + "id_car_serie": 48337, + "name": "2.2 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200206, + "fields": { + "id_car_serie": 48337, + "name": "3.2 MT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200207, + "fields": { + "id_car_serie": 48338, + "name": "2.2 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200208, + "fields": { + "id_car_serie": 48338, + "name": "3.2 MT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200209, + "fields": { + "id_car_serie": 48339, + "name": "2.2 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200210, + "fields": { + "id_car_serie": 48339, + "name": "3.2 MT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200211, + "fields": { + "id_car_serie": 48340, + "name": "2.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200212, + "fields": { + "id_car_serie": 48340, + "name": "3.2 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200213, + "fields": { + "id_car_serie": 48340, + "name": "3.2 AT 4WD (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200214, + "fields": { + "id_car_serie": 48341, + "name": "4.2 AT (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200215, + "fields": { + "id_car_serie": 48342, + "name": "2.0 D MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200216, + "fields": { + "id_car_serie": 48342, + "name": "2.1 AT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200217, + "fields": { + "id_car_serie": 48342, + "name": "2.1 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200218, + "fields": { + "id_car_serie": 48342, + "name": "2.2 D MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200219, + "fields": { + "id_car_serie": 48342, + "name": "2.5 AT (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200220, + "fields": { + "id_car_serie": 48342, + "name": "2.5 MT (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200221, + "fields": { + "id_car_serie": 48342, + "name": "3.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200222, + "fields": { + "id_car_serie": 48342, + "name": "3.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200223, + "fields": { + "id_car_serie": 48343, + "name": "2.0 D MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200224, + "fields": { + "id_car_serie": 48343, + "name": "2.1 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200225, + "fields": { + "id_car_serie": 48343, + "name": "2.1 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200226, + "fields": { + "id_car_serie": 48343, + "name": "2.2 D MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200227, + "fields": { + "id_car_serie": 48343, + "name": "2.5 AT (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200228, + "fields": { + "id_car_serie": 48343, + "name": "2.5 MT (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200229, + "fields": { + "id_car_serie": 48343, + "name": "3.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200230, + "fields": { + "id_car_serie": 48343, + "name": "3.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200231, + "fields": { + "id_car_serie": 48344, + "name": "5.0 AT (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200232, + "fields": { + "id_car_serie": 48345, + "name": "5.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200233, + "fields": { + "id_car_serie": 48346, + "name": "4.2 AT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200234, + "fields": { + "id_car_serie": 48347, + "name": "5.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200235, + "fields": { + "id_car_serie": 48348, + "name": "5.0 AT (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200236, + "fields": { + "id_car_serie": 48349, + "name": "5.0 AT (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200237, + "fields": { + "id_car_serie": 48350, + "name": "4.2 AT (298 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200238, + "fields": { + "id_car_serie": 48351, + "name": "4.2 AT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200239, + "fields": { + "id_car_serie": 48352, + "name": "4.2 AT (298 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200240, + "fields": { + "id_car_serie": 48353, + "name": "4.2 MT (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200241, + "fields": { + "id_car_serie": 48354, + "name": "4.2 AT (298 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200242, + "fields": { + "id_car_serie": 48355, + "name": "4.2 AT (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200243, + "fields": { + "id_car_serie": 48356, + "name": "4.2 AT (298 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200244, + "fields": { + "id_car_serie": 48357, + "name": "4.0 MT (363 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200245, + "fields": { + "id_car_serie": 48358, + "name": "4.0 AT (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200246, + "fields": { + "id_car_serie": 48359, + "name": "4.0 AT (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200247, + "fields": { + "id_car_serie": 48360, + "name": "4.0 AT (363 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200250, + "fields": { + "id_car_serie": 48362, + "name": "6.4 AT AWD (468 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200251, + "fields": { + "id_car_serie": 48363, + "name": "2.8 TD AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200252, + "fields": { + "id_car_serie": 48363, + "name": "2.8 TD MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200253, + "fields": { + "id_car_serie": 48363, + "name": "3.6 AT (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200254, + "fields": { + "id_car_serie": 48364, + "name": "2.8 TD AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200255, + "fields": { + "id_car_serie": 48364, + "name": "3.6 AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200256, + "fields": { + "id_car_serie": 48365, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200257, + "fields": { + "id_car_serie": 48365, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200258, + "fields": { + "id_car_serie": 48366, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200259, + "fields": { + "id_car_serie": 48366, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200260, + "fields": { + "id_car_serie": 48367, + "name": "1.5 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200261, + "fields": { + "id_car_serie": 48367, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200262, + "fields": { + "id_car_serie": 48367, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200263, + "fields": { + "id_car_serie": 48367, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200264, + "fields": { + "id_car_serie": 48368, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200265, + "fields": { + "id_car_serie": 48369, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200266, + "fields": { + "id_car_serie": 48369, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200267, + "fields": { + "id_car_serie": 48369, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200268, + "fields": { + "id_car_serie": 48369, + "name": "2.0 CRDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200269, + "fields": { + "id_car_serie": 48370, + "name": "1.6 T MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200270, + "fields": { + "id_car_serie": 48371, + "name": "1.6 T MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200271, + "fields": { + "id_car_serie": 48372, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200272, + "fields": { + "id_car_serie": 48372, + "name": "1.6 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200273, + "fields": { + "id_car_serie": 48372, + "name": "1.6 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200274, + "fields": { + "id_car_serie": 48372, + "name": "1.6 CRDi MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200275, + "fields": { + "id_car_serie": 48373, + "name": "1.6 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200276, + "fields": { + "id_car_serie": 48373, + "name": "1.6 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200278, + "fields": { + "id_car_serie": 48375, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200279, + "fields": { + "id_car_serie": 48375, + "name": "1.1 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200280, + "fields": { + "id_car_serie": 48375, + "name": "1.1 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200281, + "fields": { + "id_car_serie": 48375, + "name": "1.1 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200282, + "fields": { + "id_car_serie": 48376, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200283, + "fields": { + "id_car_serie": 48376, + "name": "2.2 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200284, + "fields": { + "id_car_serie": 48376, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200285, + "fields": { + "id_car_serie": 48376, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200286, + "fields": { + "id_car_serie": 48377, + "name": "1.4 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200287, + "fields": { + "id_car_serie": 48377, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200288, + "fields": { + "id_car_serie": 48377, + "name": "1.5 VGT AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200289, + "fields": { + "id_car_serie": 48377, + "name": "1.5 VGT MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200290, + "fields": { + "id_car_serie": 48377, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200291, + "fields": { + "id_car_serie": 48377, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200292, + "fields": { + "id_car_serie": 48378, + "name": "1.4 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200293, + "fields": { + "id_car_serie": 48378, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200294, + "fields": { + "id_car_serie": 48378, + "name": "1.5 VGT AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200295, + "fields": { + "id_car_serie": 48378, + "name": "1.5 VGT MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200296, + "fields": { + "id_car_serie": 48378, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200297, + "fields": { + "id_car_serie": 48378, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200298, + "fields": { + "id_car_serie": 48379, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200299, + "fields": { + "id_car_serie": 48380, + "name": "3.8 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200300, + "fields": { + "id_car_serie": 48381, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200302, + "fields": { + "id_car_serie": 48381, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200304, + "fields": { + "id_car_serie": 48381, + "name": "1.5 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200305, + "fields": { + "id_car_serie": 48381, + "name": "1.5 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200310, + "fields": { + "id_car_serie": 48381, + "name": "1.5 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200311, + "fields": { + "id_car_serie": 48381, + "name": "1.5 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200312, + "fields": { + "id_car_serie": 48382, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200314, + "fields": { + "id_car_serie": 48382, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200316, + "fields": { + "id_car_serie": 48382, + "name": "1.5 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200317, + "fields": { + "id_car_serie": 48382, + "name": "1.5 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200322, + "fields": { + "id_car_serie": 48382, + "name": "1.5 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200323, + "fields": { + "id_car_serie": 48382, + "name": "1.5 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200324, + "fields": { + "id_car_serie": 48383, + "name": "2.0 AT (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200325, + "fields": { + "id_car_serie": 48383, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200326, + "fields": { + "id_car_serie": 48383, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200327, + "fields": { + "id_car_serie": 48384, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200328, + "fields": { + "id_car_serie": 48384, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200329, + "fields": { + "id_car_serie": 48385, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200330, + "fields": { + "id_car_serie": 48385, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200331, + "fields": { + "id_car_serie": 48390, + "name": "1.5 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200332, + "fields": { + "id_car_serie": 48390, + "name": "1.5 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200333, + "fields": { + "id_car_serie": 48390, + "name": "1.5 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200334, + "fields": { + "id_car_serie": 48390, + "name": "1.5 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200335, + "fields": { + "id_car_serie": 48390, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200336, + "fields": { + "id_car_serie": 48390, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200337, + "fields": { + "id_car_serie": 48388, + "name": "1.8 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200338, + "fields": { + "id_car_serie": 48388, + "name": "1.8 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200339, + "fields": { + "id_car_serie": 48388, + "name": "1.5 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200340, + "fields": { + "id_car_serie": 48388, + "name": "1.5 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200343, + "fields": { + "id_car_serie": 48389, + "name": "1.5 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200344, + "fields": { + "id_car_serie": 48389, + "name": "1.5 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200345, + "fields": { + "id_car_serie": 48389, + "name": "1.5 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200346, + "fields": { + "id_car_serie": 48389, + "name": "1.5 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200347, + "fields": { + "id_car_serie": 48389, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200348, + "fields": { + "id_car_serie": 48389, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200349, + "fields": { + "id_car_serie": 48390, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200350, + "fields": { + "id_car_serie": 48390, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200351, + "fields": { + "id_car_serie": 48390, + "name": "1.8 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200352, + "fields": { + "id_car_serie": 48390, + "name": "1.8 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200353, + "fields": { + "id_car_serie": 48391, + "name": "1.8 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200354, + "fields": { + "id_car_serie": 48391, + "name": "1.8 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200355, + "fields": { + "id_car_serie": 48392, + "name": "5.7 MT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200356, + "fields": { + "id_car_serie": 48393, + "name": "5.8 GT2 MT (640 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200357, + "fields": { + "id_car_serie": 48393, + "name": "6.0 GTR MT (590 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200358, + "fields": { + "id_car_serie": 48393, + "name": "6.0 GT MT (575 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200359, + "fields": { + "id_car_serie": 48394, + "name": "5.7 MT (523 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200360, + "fields": { + "id_car_serie": 48395, + "name": "5.7 MT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200361, + "fields": { + "id_car_serie": 48396, + "name": "5.7 MT 4WD (485 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200362, + "fields": { + "id_car_serie": 48397, + "name": "5.7 MT 4WD (485 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200363, + "fields": { + "id_car_serie": 48398, + "name": "5.7 MT (523 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200364, + "fields": { + "id_car_serie": 48398, + "name": "5.7 MT (493 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200365, + "fields": { + "id_car_serie": 48398, + "name": "5.7 MT (512 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200366, + "fields": { + "id_car_serie": 48399, + "name": "5.7 MT (492 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200367, + "fields": { + "id_car_serie": 48399, + "name": "5.7 MT Jota (591 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200368, + "fields": { + "id_car_serie": 48400, + "name": "5.2 MT AWD (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200369, + "fields": { + "id_car_serie": 48400, + "name": "5.2 AMT AWD (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200370, + "fields": { + "id_car_serie": 48401, + "name": "5.2 MT AWD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200371, + "fields": { + "id_car_serie": 48401, + "name": "5.2 AMT AWD (570 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200372, + "fields": { + "id_car_serie": 48402, + "name": "5.2 MT (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200373, + "fields": { + "id_car_serie": 48402, + "name": "5.2 AMT (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200374, + "fields": { + "id_car_serie": 48403, + "name": "5.2 AMT AWD (570 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200375, + "fields": { + "id_car_serie": 48404, + "name": "6.5 MT (640 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200376, + "fields": { + "id_car_serie": 48404, + "name": "6.5 AMT (640 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200377, + "fields": { + "id_car_serie": 48405, + "name": "6.5 MT (641 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200378, + "fields": { + "id_car_serie": 48406, + "name": "2.0 MT Integrale AWD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200379, + "fields": { + "id_car_serie": 48406, + "name": "2.0 MT Integrale AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200380, + "fields": { + "id_car_serie": 48407, + "name": "2.0 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200381, + "fields": { + "id_car_serie": 48407, + "name": "2.5 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200382, + "fields": { + "id_car_serie": 48408, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200383, + "fields": { + "id_car_serie": 48408, + "name": "2.5 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200384, + "fields": { + "id_car_serie": 48409, + "name": "1.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200385, + "fields": { + "id_car_serie": 48409, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200386, + "fields": { + "id_car_serie": 48409, + "name": "2.0 TD AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200387, + "fields": { + "id_car_serie": 48409, + "name": "2.0 DI MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200388, + "fields": { + "id_car_serie": 48409, + "name": "2.0 TD MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200389, + "fields": { + "id_car_serie": 48409, + "name": "2.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200398, + "fields": { + "id_car_serie": 46015, + "name": "500 AT (423 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200399, + "fields": { + "id_car_serie": 48415, + "name": "600h L CVT AWD (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200400, + "fields": { + "id_car_serie": 48415, + "name": "460 AT (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200401, + "fields": { + "id_car_serie": 48415, + "name": "460 AT AWD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200402, + "fields": { + "id_car_serie": 48415, + "name": "460 L AT AWD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200403, + "fields": { + "id_car_serie": 48415, + "name": "460 L AT (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200405, + "fields": { + "id_car_serie": 48418, + "name": "5.0 AT (477 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200406, + "fields": { + "id_car_serie": 48419, + "name": "270 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200407, + "fields": { + "id_car_serie": 48419, + "name": "350 AT AWD (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200408, + "fields": { + "id_car_serie": 48419, + "name": "450h CVT AWD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200409, + "fields": { + "id_car_serie": 48420, + "name": "1.3 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200410, + "fields": { + "id_car_serie": 48420, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200411, + "fields": { + "id_car_serie": 48422, + "name": "4.6 AT (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200412, + "fields": { + "id_car_serie": 48423, + "name": "1.8 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200413, + "fields": { + "id_car_serie": 48424, + "name": "1.2 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200414, + "fields": { + "id_car_serie": 48424, + "name": "1.2 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200415, + "fields": { + "id_car_serie": 48425, + "name": "2.0 MT (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200416, + "fields": { + "id_car_serie": 48426, + "name": "2.2 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200417, + "fields": { + "id_car_serie": 48427, + "name": "4.7 AT (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200418, + "fields": { + "id_car_serie": 48427, + "name": "4.7 AMT (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200419, + "fields": { + "id_car_serie": 48428, + "name": "4.7 AT (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200420, + "fields": { + "id_car_serie": 48429, + "name": "4.7 AT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200421, + "fields": { + "id_car_serie": 48430, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200422, + "fields": { + "id_car_serie": 48430, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200423, + "fields": { + "id_car_serie": 48430, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200424, + "fields": { + "id_car_serie": 48431, + "name": "2.3 T MT (267 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200425, + "fields": { + "id_car_serie": 48431, + "name": "2.3 T MT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200426, + "fields": { + "id_car_serie": 48432, + "name": "1.4 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200427, + "fields": { + "id_car_serie": 48432, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200428, + "fields": { + "id_car_serie": 48432, + "name": "1.6 CiTD MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200429, + "fields": { + "id_car_serie": 48432, + "name": "1.6 CiTD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200430, + "fields": { + "id_car_serie": 48432, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200431, + "fields": { + "id_car_serie": 48432, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200432, + "fields": { + "id_car_serie": 48432, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200433, + "fields": { + "id_car_serie": 48432, + "name": "2.0 CiTD MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200434, + "fields": { + "id_car_serie": 48433, + "name": "1.8 T MT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200435, + "fields": { + "id_car_serie": 48433, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200436, + "fields": { + "id_car_serie": 48434, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200437, + "fields": { + "id_car_serie": 48434, + "name": "1.6 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200438, + "fields": { + "id_car_serie": 48434, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200439, + "fields": { + "id_car_serie": 48434, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200440, + "fields": { + "id_car_serie": 48434, + "name": "1.8 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200441, + "fields": { + "id_car_serie": 48434, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200442, + "fields": { + "id_car_serie": 48434, + "name": "1.8 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200443, + "fields": { + "id_car_serie": 48439, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200444, + "fields": { + "id_car_serie": 48439, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200445, + "fields": { + "id_car_serie": 48439, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200446, + "fields": { + "id_car_serie": 48439, + "name": "2.0 MZR-CD MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200447, + "fields": { + "id_car_serie": 48439, + "name": "2.0 MZR-CD MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200448, + "fields": { + "id_car_serie": 48439, + "name": "2.3 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200449, + "fields": { + "id_car_serie": 48439, + "name": "2.3 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200450, + "fields": { + "id_car_serie": 48439, + "name": "2.3 MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200451, + "fields": { + "id_car_serie": 48439, + "name": "2.3 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200452, + "fields": { + "id_car_serie": 48439, + "name": "3.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200453, + "fields": { + "id_car_serie": 48439, + "name": "3.0 MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200454, + "fields": { + "id_car_serie": 48440, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200455, + "fields": { + "id_car_serie": 48440, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200456, + "fields": { + "id_car_serie": 48440, + "name": "2.0 MZR-CD MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200457, + "fields": { + "id_car_serie": 48440, + "name": "2.0 MZR-CD MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200458, + "fields": { + "id_car_serie": 48440, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200459, + "fields": { + "id_car_serie": 48440, + "name": "2.3 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200460, + "fields": { + "id_car_serie": 48440, + "name": "2.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200461, + "fields": { + "id_car_serie": 48440, + "name": "2.3 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200462, + "fields": { + "id_car_serie": 48440, + "name": "2.3 MT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200463, + "fields": { + "id_car_serie": 48440, + "name": "2.3 MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200464, + "fields": { + "id_car_serie": 48440, + "name": "3.0 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200465, + "fields": { + "id_car_serie": 48440, + "name": "3.0 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200466, + "fields": { + "id_car_serie": 48441, + "name": "1.6 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200467, + "fields": { + "id_car_serie": 48442, + "name": "2.0 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200468, + "fields": { + "id_car_serie": 48442, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200469, + "fields": { + "id_car_serie": 48442, + "name": "2.5 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200470, + "fields": { + "id_car_serie": 48442, + "name": "2.5 MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200471, + "fields": { + "id_car_serie": 48443, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200472, + "fields": { + "id_car_serie": 48443, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200473, + "fields": { + "id_car_serie": 48443, + "name": "2.5 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200474, + "fields": { + "id_car_serie": 48443, + "name": "2.5 MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200475, + "fields": { + "id_car_serie": 48444, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200476, + "fields": { + "id_car_serie": 48444, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200477, + "fields": { + "id_car_serie": 48444, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200478, + "fields": { + "id_car_serie": 48444, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200479, + "fields": { + "id_car_serie": 48444, + "name": "2.0 D MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200480, + "fields": { + "id_car_serie": 48444, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200481, + "fields": { + "id_car_serie": 48444, + "name": "2.0 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200482, + "fields": { + "id_car_serie": 48444, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200483, + "fields": { + "id_car_serie": 48444, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200484, + "fields": { + "id_car_serie": 48444, + "name": "2.2 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200485, + "fields": { + "id_car_serie": 48444, + "name": "2.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200486, + "fields": { + "id_car_serie": 48444, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200487, + "fields": { + "id_car_serie": 48444, + "name": "2.2 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200488, + "fields": { + "id_car_serie": 48444, + "name": "2.2 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200489, + "fields": { + "id_car_serie": 48445, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200490, + "fields": { + "id_car_serie": 48445, + "name": "2.0 MT 4WS (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200491, + "fields": { + "id_car_serie": 48445, + "name": "2.0 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200492, + "fields": { + "id_car_serie": 48445, + "name": "2.0 MT 4WS (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200493, + "fields": { + "id_car_serie": 48445, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200494, + "fields": { + "id_car_serie": 48445, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200495, + "fields": { + "id_car_serie": 48446, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200497, + "fields": { + "id_car_serie": 48446, + "name": "2.0 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200498, + "fields": { + "id_car_serie": 48446, + "name": "2.0 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200499, + "fields": { + "id_car_serie": 48446, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200500, + "fields": { + "id_car_serie": 48446, + "name": "2.0 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200501, + "fields": { + "id_car_serie": 48446, + "name": "2.0 D MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200502, + "fields": { + "id_car_serie": 48446, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200503, + "fields": { + "id_car_serie": 48446, + "name": "2.2 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200504, + "fields": { + "id_car_serie": 48447, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200505, + "fields": { + "id_car_serie": 48447, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200506, + "fields": { + "id_car_serie": 48447, + "name": "1.8 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200507, + "fields": { + "id_car_serie": 48447, + "name": "1.8 5MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200508, + "fields": { + "id_car_serie": 48447, + "name": "1.8 4MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200509, + "fields": { + "id_car_serie": 48447, + "name": "1.8 4MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200510, + "fields": { + "id_car_serie": 48447, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200511, + "fields": { + "id_car_serie": 48447, + "name": "2.0 Cat AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200512, + "fields": { + "id_car_serie": 48447, + "name": "2.0 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200513, + "fields": { + "id_car_serie": 48447, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200514, + "fields": { + "id_car_serie": 48447, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200515, + "fields": { + "id_car_serie": 48447, + "name": "2.0 MT 4WS (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200516, + "fields": { + "id_car_serie": 48447, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200517, + "fields": { + "id_car_serie": 48447, + "name": "2.0 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200518, + "fields": { + "id_car_serie": 48447, + "name": "2.0 MT 4WS (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200519, + "fields": { + "id_car_serie": 48447, + "name": "2.0 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200520, + "fields": { + "id_car_serie": 48447, + "name": "2.0 D MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200521, + "fields": { + "id_car_serie": 48447, + "name": "2.0 Cat MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200522, + "fields": { + "id_car_serie": 48447, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200523, + "fields": { + "id_car_serie": 48447, + "name": "2.2 T AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200524, + "fields": { + "id_car_serie": 48447, + "name": "2.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200525, + "fields": { + "id_car_serie": 48447, + "name": "2.2 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200526, + "fields": { + "id_car_serie": 48447, + "name": "2.2 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200527, + "fields": { + "id_car_serie": 48447, + "name": "2.2 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200528, + "fields": { + "id_car_serie": 48447, + "name": "2.2 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200529, + "fields": { + "id_car_serie": 48447, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200530, + "fields": { + "id_car_serie": 48447, + "name": "2.2 T MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200531, + "fields": { + "id_car_serie": 48452, + "name": "2.0 SKYACTIV-G AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200532, + "fields": { + "id_car_serie": 48452, + "name": "2.0 SKYACTIV-G MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200533, + "fields": { + "id_car_serie": 48452, + "name": "2.2 SKYACTIV-D AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200534, + "fields": { + "id_car_serie": 48452, + "name": "2.2 SKYACTIV-D MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200535, + "fields": { + "id_car_serie": 48452, + "name": "2.5 SKYACTIV-G AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200539, + "fields": { + "id_car_serie": 48454, + "name": "2.0 AT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200540, + "fields": { + "id_car_serie": 48454, + "name": "2.5 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200541, + "fields": { + "id_car_serie": 48454, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200545, + "fields": { + "id_car_serie": 48456, + "name": "2.3 T MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200546, + "fields": { + "id_car_serie": 48457, + "name": "2.0 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200547, + "fields": { + "id_car_serie": 48457, + "name": "2.3 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200548, + "fields": { + "id_car_serie": 48457, + "name": "2.3 AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200549, + "fields": { + "id_car_serie": 48458, + "name": "2.0 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200550, + "fields": { + "id_car_serie": 48458, + "name": "2.3 AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200554, + "fields": { + "id_car_serie": 48460, + "name": "2.3 T MT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200555, + "fields": { + "id_car_serie": 48461, + "name": "1.5 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200556, + "fields": { + "id_car_serie": 48461, + "name": "1.5 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200557, + "fields": { + "id_car_serie": 48461, + "name": "2.0 4AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200558, + "fields": { + "id_car_serie": 48461, + "name": "2.0 AT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200559, + "fields": { + "id_car_serie": 48461, + "name": "2.0 5AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200560, + "fields": { + "id_car_serie": 48461, + "name": "2.3 5AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200561, + "fields": { + "id_car_serie": 48461, + "name": "2.3 4AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200562, + "fields": { + "id_car_serie": 48461, + "name": "2.3 MT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200563, + "fields": { + "id_car_serie": 48462, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200564, + "fields": { + "id_car_serie": 48463, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200565, + "fields": { + "id_car_serie": 48463, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200566, + "fields": { + "id_car_serie": 48463, + "name": "0.7 MT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200567, + "fields": { + "id_car_serie": 48463, + "name": "0.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200568, + "fields": { + "id_car_serie": 48463, + "name": "0.7 CVT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200569, + "fields": { + "id_car_serie": 48463, + "name": "0.7 CVT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200570, + "fields": { + "id_car_serie": 48463, + "name": "0.7 T CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200571, + "fields": { + "id_car_serie": 48463, + "name": "0.7 T CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200572, + "fields": { + "id_car_serie": 48464, + "name": "0.7 T AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200573, + "fields": { + "id_car_serie": 48464, + "name": "0.7 T AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200574, + "fields": { + "id_car_serie": 48464, + "name": "0.7 T AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200575, + "fields": { + "id_car_serie": 48464, + "name": "0.7 T AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200576, + "fields": { + "id_car_serie": 48464, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200577, + "fields": { + "id_car_serie": 48464, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200578, + "fields": { + "id_car_serie": 48465, + "name": "0.7 T AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200579, + "fields": { + "id_car_serie": 48465, + "name": "0.7 T AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200580, + "fields": { + "id_car_serie": 48465, + "name": "0.7 T AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200581, + "fields": { + "id_car_serie": 48465, + "name": "0.7 T AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200582, + "fields": { + "id_car_serie": 48465, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200583, + "fields": { + "id_car_serie": 48465, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200584, + "fields": { + "id_car_serie": 48465, + "name": "0.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200585, + "fields": { + "id_car_serie": 48465, + "name": "0.7 MT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200586, + "fields": { + "id_car_serie": 48466, + "name": "0.7 T 4AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200587, + "fields": { + "id_car_serie": 48466, + "name": "0.7 T 4AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200588, + "fields": { + "id_car_serie": 48466, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200589, + "fields": { + "id_car_serie": 48466, + "name": "0.7 T AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200590, + "fields": { + "id_car_serie": 48466, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200591, + "fields": { + "id_car_serie": 48466, + "name": "0.7 T 3AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200592, + "fields": { + "id_car_serie": 48466, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200593, + "fields": { + "id_car_serie": 48466, + "name": "0.7 T AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200594, + "fields": { + "id_car_serie": 48466, + "name": "0.7 AT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200595, + "fields": { + "id_car_serie": 48466, + "name": "0.7 T 3AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200596, + "fields": { + "id_car_serie": 48466, + "name": "0.7 AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200597, + "fields": { + "id_car_serie": 48466, + "name": "0.7 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200598, + "fields": { + "id_car_serie": 48466, + "name": "0.7 T MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200599, + "fields": { + "id_car_serie": 48466, + "name": "0.7 T MT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200600, + "fields": { + "id_car_serie": 48466, + "name": "0.7 T MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200601, + "fields": { + "id_car_serie": 48466, + "name": "0.7 MT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200602, + "fields": { + "id_car_serie": 48466, + "name": "0.7 MT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200603, + "fields": { + "id_car_serie": 48466, + "name": "0.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200604, + "fields": { + "id_car_serie": 48466, + "name": "0.7 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200605, + "fields": { + "id_car_serie": 48466, + "name": "0.7 T MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200606, + "fields": { + "id_car_serie": 48468, + "name": "3.0 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200607, + "fields": { + "id_car_serie": 48468, + "name": "3.0 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200608, + "fields": { + "id_car_serie": 48468, + "name": "4.0 AT 4x4 (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200609, + "fields": { + "id_car_serie": 48468, + "name": "4.0 AT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200610, + "fields": { + "id_car_serie": 48468, + "name": "4.0 MT 4x4 (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200611, + "fields": { + "id_car_serie": 48470, + "name": "2.3 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200612, + "fields": { + "id_car_serie": 48470, + "name": "2.3 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200613, + "fields": { + "id_car_serie": 48470, + "name": "3.0 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200614, + "fields": { + "id_car_serie": 48470, + "name": "3.0 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200615, + "fields": { + "id_car_serie": 48475, + "name": "1.8 AT 4WD H2 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200616, + "fields": { + "id_car_serie": 48475, + "name": "1.8 AT 4WD H1 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200617, + "fields": { + "id_car_serie": 48475, + "name": "1.8 AT H2 DRW (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200618, + "fields": { + "id_car_serie": 48475, + "name": "1.8 AT H1 DRW (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200619, + "fields": { + "id_car_serie": 48475, + "name": "1.8 AT H2 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200620, + "fields": { + "id_car_serie": 48475, + "name": "1.8 AT H1 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200621, + "fields": { + "id_car_serie": 48475, + "name": "1.8 MT H2 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200622, + "fields": { + "id_car_serie": 48475, + "name": "1.8 MT 4WD H2 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200623, + "fields": { + "id_car_serie": 48475, + "name": "1.8 MT H1 DRW (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200624, + "fields": { + "id_car_serie": 48475, + "name": "1.8 MT 4WD H1 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200625, + "fields": { + "id_car_serie": 48475, + "name": "1.8 MT H1 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200626, + "fields": { + "id_car_serie": 48475, + "name": "1.8 MT H2 DRW (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200633, + "fields": { + "id_car_serie": 48482, + "name": "2.5 MZR-CD MT 4x4 (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200634, + "fields": { + "id_car_serie": 48482, + "name": "2.5 MZR-CD MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200636, + "fields": { + "id_car_serie": 48486, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200637, + "fields": { + "id_car_serie": 48486, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200638, + "fields": { + "id_car_serie": 48486, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200639, + "fields": { + "id_car_serie": 48486, + "name": "2.0 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200640, + "fields": { + "id_car_serie": 48486, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200641, + "fields": { + "id_car_serie": 48486, + "name": "2.0 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200642, + "fields": { + "id_car_serie": 48493, + "name": "3.5 AT AWD (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200643, + "fields": { + "id_car_serie": 48493, + "name": "3.5 AT (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200646, + "fields": { + "id_car_serie": 48494, + "name": "1.3 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200647, + "fields": { + "id_car_serie": 48494, + "name": "1.3 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200648, + "fields": { + "id_car_serie": 48494, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200649, + "fields": { + "id_car_serie": 48494, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200650, + "fields": { + "id_car_serie": 48494, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200651, + "fields": { + "id_car_serie": 48494, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200652, + "fields": { + "id_car_serie": 48494, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200653, + "fields": { + "id_car_serie": 48494, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200654, + "fields": { + "id_car_serie": 48495, + "name": "1.3 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200655, + "fields": { + "id_car_serie": 48495, + "name": "1.3 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200656, + "fields": { + "id_car_serie": 48495, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200657, + "fields": { + "id_car_serie": 48495, + "name": "1.3 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200658, + "fields": { + "id_car_serie": 48495, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200659, + "fields": { + "id_car_serie": 48495, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200660, + "fields": { + "id_car_serie": 48497, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200661, + "fields": { + "id_car_serie": 48497, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200662, + "fields": { + "id_car_serie": 48497, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200663, + "fields": { + "id_car_serie": 48497, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200664, + "fields": { + "id_car_serie": 48497, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200665, + "fields": { + "id_car_serie": 48497, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200666, + "fields": { + "id_car_serie": 48497, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200667, + "fields": { + "id_car_serie": 48497, + "name": "1.5 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200668, + "fields": { + "id_car_serie": 48497, + "name": "2.0 D AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200669, + "fields": { + "id_car_serie": 48497, + "name": "2.0 D MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200670, + "fields": { + "id_car_serie": 48498, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200671, + "fields": { + "id_car_serie": 48498, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200672, + "fields": { + "id_car_serie": 48498, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200673, + "fields": { + "id_car_serie": 48498, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200674, + "fields": { + "id_car_serie": 48498, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200675, + "fields": { + "id_car_serie": 48498, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200676, + "fields": { + "id_car_serie": 48498, + "name": "1.7 TD AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200677, + "fields": { + "id_car_serie": 48498, + "name": "1.7 TD MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200678, + "fields": { + "id_car_serie": 48498, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200679, + "fields": { + "id_car_serie": 48498, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200680, + "fields": { + "id_car_serie": 48524, + "name": "0.7 Turbo AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200681, + "fields": { + "id_car_serie": 48524, + "name": "0.7 Turbo AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200682, + "fields": { + "id_car_serie": 48524, + "name": "0.7 Turbo AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200683, + "fields": { + "id_car_serie": 48524, + "name": "0.7 Turbo AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200684, + "fields": { + "id_car_serie": 48524, + "name": "0.7 Turbo MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200685, + "fields": { + "id_car_serie": 48525, + "name": "2.3 AT 4WD 7seat (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200686, + "fields": { + "id_car_serie": 48525, + "name": "2.3 AT 7seat (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200687, + "fields": { + "id_car_serie": 48525, + "name": "2.3 AT 4WD 7seat (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200688, + "fields": { + "id_car_serie": 48525, + "name": "2.3 AT 7seat (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200689, + "fields": { + "id_car_serie": 48525, + "name": "2.3 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200690, + "fields": { + "id_car_serie": 48525, + "name": "2.3 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200691, + "fields": { + "id_car_serie": 48525, + "name": "2.3 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200692, + "fields": { + "id_car_serie": 48525, + "name": "2.3 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200693, + "fields": { + "id_car_serie": 48526, + "name": "2.0 MZR-CD MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200694, + "fields": { + "id_car_serie": 48526, + "name": "2.3 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200695, + "fields": { + "id_car_serie": 48526, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200696, + "fields": { + "id_car_serie": 48527, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200697, + "fields": { + "id_car_serie": 48527, + "name": "2.3 AT 4WD (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200698, + "fields": { + "id_car_serie": 48527, + "name": "2.3 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200699, + "fields": { + "id_car_serie": 48527, + "name": "2.5 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200700, + "fields": { + "id_car_serie": 48527, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200701, + "fields": { + "id_car_serie": 48527, + "name": "3.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200703, + "fields": { + "id_car_serie": 48528, + "name": "2.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200704, + "fields": { + "id_car_serie": 48528, + "name": "2.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200705, + "fields": { + "id_car_serie": 48528, + "name": "3.0 AT 4WD (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200706, + "fields": { + "id_car_serie": 48528, + "name": "3.0 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200707, + "fields": { + "id_car_serie": 48528, + "name": "3.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200708, + "fields": { + "id_car_serie": 48528, + "name": "3.0 AT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200709, + "fields": { + "id_car_serie": 48528, + "name": "3.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200711, + "fields": { + "id_car_serie": 48528, + "name": "3.0 MT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200712, + "fields": { + "id_car_serie": 48528, + "name": "3.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200713, + "fields": { + "id_car_serie": 48528, + "name": "3.0 MT 4WD (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200714, + "fields": { + "id_car_serie": 48529, + "name": "2.0 MZR AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200715, + "fields": { + "id_car_serie": 48529, + "name": "2.0 MZR MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200716, + "fields": { + "id_car_serie": 48530, + "name": "1.8 MZR MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200717, + "fields": { + "id_car_serie": 48530, + "name": "2.0 MZR AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200718, + "fields": { + "id_car_serie": 48530, + "name": "2.0 MZR MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200719, + "fields": { + "id_car_serie": 48530, + "name": "2.0 MZR MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200720, + "fields": { + "id_car_serie": 48531, + "name": "1.8 MZR MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200721, + "fields": { + "id_car_serie": 48531, + "name": "2.0 MZR AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200722, + "fields": { + "id_car_serie": 48531, + "name": "2.0 MZR AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200723, + "fields": { + "id_car_serie": 48531, + "name": "2.0 MZR 6MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200724, + "fields": { + "id_car_serie": 48531, + "name": "2.0 MZR 6MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200725, + "fields": { + "id_car_serie": 48531, + "name": "2.0 MZR 5MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200726, + "fields": { + "id_car_serie": 48531, + "name": "2.0 MZR 5MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200727, + "fields": { + "id_car_serie": 48533, + "name": "1.8 AT 4WD 5seat (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200728, + "fields": { + "id_car_serie": 48533, + "name": "1.8 AT 5seat (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200729, + "fields": { + "id_car_serie": 48533, + "name": "1.8 AT 4WD 7seat (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200730, + "fields": { + "id_car_serie": 48533, + "name": "1.8 AT 7seat (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200731, + "fields": { + "id_car_serie": 48533, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200732, + "fields": { + "id_car_serie": 48533, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200733, + "fields": { + "id_car_serie": 48533, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200734, + "fields": { + "id_car_serie": 48533, + "name": "2.0 TD MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200735, + "fields": { + "id_car_serie": 48533, + "name": "2.0 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200736, + "fields": { + "id_car_serie": 48535, + "name": "2.0 T MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200737, + "fields": { + "id_car_serie": 48541, + "name": "2.3 AT 4WD (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200738, + "fields": { + "id_car_serie": 48541, + "name": "2.3 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200739, + "fields": { + "id_car_serie": 48541, + "name": "2.3 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200740, + "fields": { + "id_car_serie": 48541, + "name": "2.3 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200741, + "fields": { + "id_car_serie": 48541, + "name": "2.3 MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200742, + "fields": { + "id_car_serie": 48541, + "name": "2.3 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200743, + "fields": { + "id_car_serie": 48541, + "name": "2.3 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200744, + "fields": { + "id_car_serie": 48541, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200745, + "fields": { + "id_car_serie": 48541, + "name": "3.0 AT 4WD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200746, + "fields": { + "id_car_serie": 48542, + "name": "2.0 AT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200747, + "fields": { + "id_car_serie": 48542, + "name": "2.0 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200748, + "fields": { + "id_car_serie": 48542, + "name": "2.0 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200749, + "fields": { + "id_car_serie": 48542, + "name": "2.0 MT 4WD (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200750, + "fields": { + "id_car_serie": 48542, + "name": "2.3 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200751, + "fields": { + "id_car_serie": 48542, + "name": "2.3 AT 4WD (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200752, + "fields": { + "id_car_serie": 48542, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200753, + "fields": { + "id_car_serie": 48542, + "name": "3.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200754, + "fields": { + "id_car_serie": 48542, + "name": "3.0 AT 4WD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200763, + "fields": { + "id_car_serie": 48545, + "name": "2.0 D AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200764, + "fields": { + "id_car_serie": 48545, + "name": "2.0 D 4MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200765, + "fields": { + "id_car_serie": 48545, + "name": "2.0 D 5MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200766, + "fields": { + "id_car_serie": 48545, + "name": "2.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200767, + "fields": { + "id_car_serie": 48545, + "name": "2.3 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200768, + "fields": { + "id_car_serie": 48545, + "name": "2.3 5MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200769, + "fields": { + "id_car_serie": 48545, + "name": "2.3 5MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200770, + "fields": { + "id_car_serie": 48545, + "name": "2.3 4MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200771, + "fields": { + "id_car_serie": 48545, + "name": "2.3 4MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200772, + "fields": { + "id_car_serie": 48550, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200773, + "fields": { + "id_car_serie": 48550, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200774, + "fields": { + "id_car_serie": 48553, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200776, + "fields": { + "id_car_serie": 48553, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200778, + "fields": { + "id_car_serie": 48554, + "name": "3.0 AT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200779, + "fields": { + "id_car_serie": 48554, + "name": "3.0 AT (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200780, + "fields": { + "id_car_serie": 48554, + "name": "3.0 MT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200781, + "fields": { + "id_car_serie": 48554, + "name": "3.0 MT (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200782, + "fields": { + "id_car_serie": 48554, + "name": "3.0 Twin Turbo MT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200783, + "fields": { + "id_car_serie": 48555, + "name": "1.5 Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200784, + "fields": { + "id_car_serie": 48556, + "name": "1.5 Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200785, + "fields": { + "id_car_serie": 48557, + "name": "1.3 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200786, + "fields": { + "id_car_serie": 48557, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200787, + "fields": { + "id_car_serie": 48557, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200788, + "fields": { + "id_car_serie": 48557, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200789, + "fields": { + "id_car_serie": 48558, + "name": "1.1 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200790, + "fields": { + "id_car_serie": 48558, + "name": "1.3 Allshift (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200791, + "fields": { + "id_car_serie": 48558, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200792, + "fields": { + "id_car_serie": 48558, + "name": "1.5 Allshift (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200793, + "fields": { + "id_car_serie": 48558, + "name": "1.5 DI-D Allshift (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200794, + "fields": { + "id_car_serie": 48558, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200795, + "fields": { + "id_car_serie": 48558, + "name": "1.5 DI-D MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200796, + "fields": { + "id_car_serie": 48559, + "name": "1.5 Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200797, + "fields": { + "id_car_serie": 48559, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200798, + "fields": { + "id_car_serie": 48560, + "name": "1.5 Turbo CVT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200799, + "fields": { + "id_car_serie": 48561, + "name": "1.5 Turbo MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200800, + "fields": { + "id_car_serie": 48561, + "name": "1.5 Turbo CVT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200801, + "fields": { + "id_car_serie": 48562, + "name": "1.5 Turbo CVT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200802, + "fields": { + "id_car_serie": 48562, + "name": "1.5 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200803, + "fields": { + "id_car_serie": 48562, + "name": "1.6 CVT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200804, + "fields": { + "id_car_serie": 48563, + "name": "1.5 Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200805, + "fields": { + "id_car_serie": 48567, + "name": "3.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200806, + "fields": { + "id_car_serie": 48568, + "name": "2.4 Sportronic (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200807, + "fields": { + "id_car_serie": 48568, + "name": "2.4 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200808, + "fields": { + "id_car_serie": 48568, + "name": "3.8 Sportronic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200809, + "fields": { + "id_car_serie": 48568, + "name": "3.8 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200810, + "fields": { + "id_car_serie": 48569, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200811, + "fields": { + "id_car_serie": 48569, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200812, + "fields": { + "id_car_serie": 48569, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200813, + "fields": { + "id_car_serie": 48569, + "name": "3.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200814, + "fields": { + "id_car_serie": 48569, + "name": "3.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200815, + "fields": { + "id_car_serie": 48569, + "name": "3.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200816, + "fields": { + "id_car_serie": 48570, + "name": "2.0 AT T (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200817, + "fields": { + "id_car_serie": 48570, + "name": "2.0 MT T (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200818, + "fields": { + "id_car_serie": 48570, + "name": "2.4 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200819, + "fields": { + "id_car_serie": 48570, + "name": "2.4 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200820, + "fields": { + "id_car_serie": 48571, + "name": "2.0 AT T (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200821, + "fields": { + "id_car_serie": 48571, + "name": "2.0 MT T (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200822, + "fields": { + "id_car_serie": 48571, + "name": "2.4 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200823, + "fields": { + "id_car_serie": 48571, + "name": "2.4 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200824, + "fields": { + "id_car_serie": 48572, + "name": "1.8 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200825, + "fields": { + "id_car_serie": 48572, + "name": "1.8 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200826, + "fields": { + "id_car_serie": 48572, + "name": "2.0 AT Turbo (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200827, + "fields": { + "id_car_serie": 48572, + "name": "2.0 AT Turbo AWD (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200828, + "fields": { + "id_car_serie": 48572, + "name": "2.0 AT Turbo (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200829, + "fields": { + "id_car_serie": 48572, + "name": "2.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200830, + "fields": { + "id_car_serie": 48572, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200831, + "fields": { + "id_car_serie": 48572, + "name": "2.0 MT Turbo (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200832, + "fields": { + "id_car_serie": 48572, + "name": "2.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200833, + "fields": { + "id_car_serie": 48572, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200834, + "fields": { + "id_car_serie": 48572, + "name": "2.0 MT Turbo (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200835, + "fields": { + "id_car_serie": 48572, + "name": "2.0 MT Turbo AWD (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200836, + "fields": { + "id_car_serie": 48573, + "name": "1.8 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200837, + "fields": { + "id_car_serie": 48573, + "name": "1.8 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200838, + "fields": { + "id_car_serie": 48573, + "name": "2.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200839, + "fields": { + "id_car_serie": 48573, + "name": "2.0 AT Turbo (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200840, + "fields": { + "id_car_serie": 48573, + "name": "2.0 AT Turbo (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200841, + "fields": { + "id_car_serie": 48573, + "name": "2.0 AT Turbo AWD (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200842, + "fields": { + "id_car_serie": 48573, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200843, + "fields": { + "id_car_serie": 48573, + "name": "2.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200844, + "fields": { + "id_car_serie": 48573, + "name": "2.0 MT Turbo (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200845, + "fields": { + "id_car_serie": 48573, + "name": "2.0 MT Turbo AWD (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200846, + "fields": { + "id_car_serie": 48573, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200847, + "fields": { + "id_car_serie": 48573, + "name": "2.0 MT Turbo (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200850, + "fields": { + "id_car_serie": 48574, + "name": "3.8 AT Ralliart (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200851, + "fields": { + "id_car_serie": 48575, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200852, + "fields": { + "id_car_serie": 48575, + "name": "3.8 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200854, + "fields": { + "id_car_serie": 48575, + "name": "2.4 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200855, + "fields": { + "id_car_serie": 48577, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200856, + "fields": { + "id_car_serie": 48577, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200857, + "fields": { + "id_car_serie": 48577, + "name": "2.4 GDI AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200858, + "fields": { + "id_car_serie": 48577, + "name": "2.4 GDI MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200859, + "fields": { + "id_car_serie": 48577, + "name": "2.5 V6 AT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200860, + "fields": { + "id_car_serie": 48577, + "name": "2.5 V6 MT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200861, + "fields": { + "id_car_serie": 48578, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200862, + "fields": { + "id_car_serie": 48578, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200863, + "fields": { + "id_car_serie": 48583, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200864, + "fields": { + "id_car_serie": 48583, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200865, + "fields": { + "id_car_serie": 48583, + "name": "1.4 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200866, + "fields": { + "id_car_serie": 48583, + "name": "1.4 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200867, + "fields": { + "id_car_serie": 48583, + "name": "1.5 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200868, + "fields": { + "id_car_serie": 48583, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200869, + "fields": { + "id_car_serie": 48583, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200870, + "fields": { + "id_car_serie": 48583, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200871, + "fields": { + "id_car_serie": 48583, + "name": "1.7 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200872, + "fields": { + "id_car_serie": 48583, + "name": "1.7 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200873, + "fields": { + "id_car_serie": 48584, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200874, + "fields": { + "id_car_serie": 48584, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200875, + "fields": { + "id_car_serie": 48585, + "name": "1.4 MT FTO (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200876, + "fields": { + "id_car_serie": 48585, + "name": "1.6 MT GTO (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200877, + "fields": { + "id_car_serie": 48586, + "name": "2.0 T AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200878, + "fields": { + "id_car_serie": 48586, + "name": "2.0 T MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200879, + "fields": { + "id_car_serie": 48587, + "name": "2.0 T MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200880, + "fields": { + "id_car_serie": 48588, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200881, + "fields": { + "id_car_serie": 48588, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200882, + "fields": { + "id_car_serie": 48588, + "name": "1.8 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200883, + "fields": { + "id_car_serie": 48589, + "name": "2.0 TC-SST (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200884, + "fields": { + "id_car_serie": 48590, + "name": "2.0 TC-SST (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200885, + "fields": { + "id_car_serie": 48591, + "name": "1.8 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200886, + "fields": { + "id_car_serie": 48591, + "name": "2.0 CVT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200887, + "fields": { + "id_car_serie": 48592, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200888, + "fields": { + "id_car_serie": 48592, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200889, + "fields": { + "id_car_serie": 48592, + "name": "1.8 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200890, + "fields": { + "id_car_serie": 48592, + "name": "1.8 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200891, + "fields": { + "id_car_serie": 48592, + "name": "2.0 DI-D MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200893, + "fields": { + "id_car_serie": 48593, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200894, + "fields": { + "id_car_serie": 48594, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200895, + "fields": { + "id_car_serie": 48594, + "name": "1.5 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200896, + "fields": { + "id_car_serie": 48594, + "name": "1.5 CVT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200897, + "fields": { + "id_car_serie": 48594, + "name": "1.8 T Ralliart AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200898, + "fields": { + "id_car_serie": 48594, + "name": "2.0 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200899, + "fields": { + "id_car_serie": 48595, + "name": "1.8 T AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200900, + "fields": { + "id_car_serie": 48595, + "name": "2.4 AT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200901, + "fields": { + "id_car_serie": 48595, + "name": "2.4 MT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200902, + "fields": { + "id_car_serie": 48596, + "name": "1.8 T AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200903, + "fields": { + "id_car_serie": 48597, + "name": "1.8 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200904, + "fields": { + "id_car_serie": 48597, + "name": "1.8 CVT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200905, + "fields": { + "id_car_serie": 48598, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200906, + "fields": { + "id_car_serie": 48598, + "name": "1.5 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200907, + "fields": { + "id_car_serie": 48598, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200908, + "fields": { + "id_car_serie": 48598, + "name": "1.6 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200909, + "fields": { + "id_car_serie": 48598, + "name": "1.8 D MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200910, + "fields": { + "id_car_serie": 48599, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200911, + "fields": { + "id_car_serie": 48599, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200912, + "fields": { + "id_car_serie": 48599, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200913, + "fields": { + "id_car_serie": 48600, + "name": "2.0 T MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200914, + "fields": { + "id_car_serie": 48601, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200915, + "fields": { + "id_car_serie": 48601, + "name": "1.2 MCA MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200916, + "fields": { + "id_car_serie": 48601, + "name": "1.2 MCA MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200917, + "fields": { + "id_car_serie": 48601, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200918, + "fields": { + "id_car_serie": 48601, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200919, + "fields": { + "id_car_serie": 48601, + "name": "1.4 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200920, + "fields": { + "id_car_serie": 48601, + "name": "1.4 MCA MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200921, + "fields": { + "id_car_serie": 48601, + "name": "1.4 MCA MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200922, + "fields": { + "id_car_serie": 48602, + "name": "1.2 4MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200923, + "fields": { + "id_car_serie": 48602, + "name": "1.2 5MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200924, + "fields": { + "id_car_serie": 48602, + "name": "1.4 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200925, + "fields": { + "id_car_serie": 48602, + "name": "1.4 4MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200926, + "fields": { + "id_car_serie": 48602, + "name": "1.4 5MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200927, + "fields": { + "id_car_serie": 48602, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200928, + "fields": { + "id_car_serie": 48603, + "name": "0.5 MT (29 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200929, + "fields": { + "id_car_serie": 48603, + "name": "0.5 MT XL (32 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200930, + "fields": { + "id_car_serie": 48603, + "name": "0.5 MT (32 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200931, + "fields": { + "id_car_serie": 48604, + "name": "0.4 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200932, + "fields": { + "id_car_serie": 48604, + "name": "0.4 MT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200933, + "fields": { + "id_car_serie": 48605, + "name": "0.4 MT (21 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200934, + "fields": { + "id_car_serie": 48605, + "name": "0.4 MT (23 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200935, + "fields": { + "id_car_serie": 48606, + "name": "0.4 MT (18 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200936, + "fields": { + "id_car_serie": 48607, + "name": "0.4 MT (17 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200937, + "fields": { + "id_car_serie": 48608, + "name": "2.8 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200938, + "fields": { + "id_car_serie": 48608, + "name": "2.8 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200939, + "fields": { + "id_car_serie": 48608, + "name": "3.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200940, + "fields": { + "id_car_serie": 48608, + "name": "3.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200941, + "fields": { + "id_car_serie": 48608, + "name": "3.2 DI-D AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200942, + "fields": { + "id_car_serie": 48608, + "name": "3.2 DI-D MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200943, + "fields": { + "id_car_serie": 48608, + "name": "3.5 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200944, + "fields": { + "id_car_serie": 48608, + "name": "3.5 GDI AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200945, + "fields": { + "id_car_serie": 48608, + "name": "3.5 MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200946, + "fields": { + "id_car_serie": 48608, + "name": "3.5 GDI MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200947, + "fields": { + "id_car_serie": 48609, + "name": "2.8 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200948, + "fields": { + "id_car_serie": 48609, + "name": "2.8 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200949, + "fields": { + "id_car_serie": 48609, + "name": "3.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200950, + "fields": { + "id_car_serie": 48609, + "name": "3.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200951, + "fields": { + "id_car_serie": 48609, + "name": "3.2 DI-D AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200952, + "fields": { + "id_car_serie": 48609, + "name": "3.2 DI-D MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200953, + "fields": { + "id_car_serie": 48609, + "name": "3.5 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200954, + "fields": { + "id_car_serie": 48609, + "name": "3.5 GDI AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200955, + "fields": { + "id_car_serie": 48609, + "name": "3.5 GDI MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200956, + "fields": { + "id_car_serie": 48609, + "name": "3.5 MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200957, + "fields": { + "id_car_serie": 48609, + "name": "3.8 AT (217 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200958, + "fields": { + "id_car_serie": 48610, + "name": "2.4 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200959, + "fields": { + "id_car_serie": 48610, + "name": "2.4 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200960, + "fields": { + "id_car_serie": 48610, + "name": "2.5 TD AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200961, + "fields": { + "id_car_serie": 48610, + "name": "2.5 TD MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200962, + "fields": { + "id_car_serie": 48610, + "name": "2.8 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200963, + "fields": { + "id_car_serie": 48610, + "name": "2.8 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200964, + "fields": { + "id_car_serie": 48610, + "name": "3.0 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200965, + "fields": { + "id_car_serie": 48610, + "name": "3.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200966, + "fields": { + "id_car_serie": 48610, + "name": "3.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200967, + "fields": { + "id_car_serie": 48610, + "name": "3.0 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200968, + "fields": { + "id_car_serie": 48610, + "name": "3.5 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200969, + "fields": { + "id_car_serie": 48610, + "name": "3.5 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200970, + "fields": { + "id_car_serie": 48611, + "name": "2.4 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200971, + "fields": { + "id_car_serie": 48611, + "name": "2.4 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200972, + "fields": { + "id_car_serie": 48611, + "name": "2.5 TD AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200973, + "fields": { + "id_car_serie": 48611, + "name": "2.5 TD MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200974, + "fields": { + "id_car_serie": 48611, + "name": "2.8 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200975, + "fields": { + "id_car_serie": 48611, + "name": "2.8 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200976, + "fields": { + "id_car_serie": 48611, + "name": "3.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200977, + "fields": { + "id_car_serie": 48611, + "name": "3.0 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200978, + "fields": { + "id_car_serie": 48611, + "name": "3.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200979, + "fields": { + "id_car_serie": 48611, + "name": "3.0 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200980, + "fields": { + "id_car_serie": 48611, + "name": "3.5 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200981, + "fields": { + "id_car_serie": 48611, + "name": "3.5 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200982, + "fields": { + "id_car_serie": 8886, + "name": "2.0 CVT 4WD (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200984, + "fields": { + "id_car_serie": 8886, + "name": "2.4 CVT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200985, + "fields": { + "id_car_serie": 8886, + "name": "3.0 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200986, + "fields": { + "id_car_serie": 48613, + "name": "2.5 TD AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200987, + "fields": { + "id_car_serie": 48613, + "name": "2.5 TD MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200988, + "fields": { + "id_car_serie": 48613, + "name": "2.8 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200989, + "fields": { + "id_car_serie": 48613, + "name": "2.8 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200990, + "fields": { + "id_car_serie": 48613, + "name": "3.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200991, + "fields": { + "id_car_serie": 48613, + "name": "3.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200992, + "fields": { + "id_car_serie": 48613, + "name": "3.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200993, + "fields": { + "id_car_serie": 48613, + "name": "3.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200994, + "fields": { + "id_car_serie": 48613, + "name": "3.5 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200995, + "fields": { + "id_car_serie": 48613, + "name": "3.5 MT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200996, + "fields": { + "id_car_serie": 48614, + "name": "2.5 TD AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200997, + "fields": { + "id_car_serie": 48614, + "name": "2.5 TD MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200998, + "fields": { + "id_car_serie": 48614, + "name": "2.8 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 200999, + "fields": { + "id_car_serie": 48614, + "name": "2.8 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201000, + "fields": { + "id_car_serie": 48614, + "name": "3.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201001, + "fields": { + "id_car_serie": 48614, + "name": "3.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201002, + "fields": { + "id_car_serie": 48614, + "name": "3.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201003, + "fields": { + "id_car_serie": 48614, + "name": "3.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201004, + "fields": { + "id_car_serie": 48614, + "name": "3.5 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201005, + "fields": { + "id_car_serie": 48614, + "name": "3.5 MT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201006, + "fields": { + "id_car_serie": 48615, + "name": "2.5 TD AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201007, + "fields": { + "id_car_serie": 48615, + "name": "2.5 TD MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201008, + "fields": { + "id_car_serie": 48615, + "name": "2.8 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201009, + "fields": { + "id_car_serie": 48615, + "name": "2.8 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201010, + "fields": { + "id_car_serie": 48615, + "name": "3.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201011, + "fields": { + "id_car_serie": 48615, + "name": "3.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201012, + "fields": { + "id_car_serie": 48615, + "name": "3.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201013, + "fields": { + "id_car_serie": 48615, + "name": "3.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201014, + "fields": { + "id_car_serie": 48615, + "name": "3.5 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201015, + "fields": { + "id_car_serie": 48615, + "name": "3.5 MT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201026, + "fields": { + "id_car_serie": 7090, + "name": "2.0 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201027, + "fields": { + "id_car_serie": 7090, + "name": "2.0 Turbo AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201028, + "fields": { + "id_car_serie": 7090, + "name": "2.0 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201029, + "fields": { + "id_car_serie": 7090, + "name": "2.0 Turbo MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201030, + "fields": { + "id_car_serie": 7090, + "name": "2.3 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201031, + "fields": { + "id_car_serie": 7090, + "name": "2.3 TD MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201032, + "fields": { + "id_car_serie": 7090, + "name": "2.5 TD AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201033, + "fields": { + "id_car_serie": 7090, + "name": "2.5 TD AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201034, + "fields": { + "id_car_serie": 7090, + "name": "2.5 TD MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201035, + "fields": { + "id_car_serie": 7090, + "name": "2.5 TD MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201036, + "fields": { + "id_car_serie": 7090, + "name": "2.6 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201037, + "fields": { + "id_car_serie": 7090, + "name": "2.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201038, + "fields": { + "id_car_serie": 7090, + "name": "3.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201039, + "fields": { + "id_car_serie": 7090, + "name": "3.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201040, + "fields": { + "id_car_serie": 48618, + "name": "2.0 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201041, + "fields": { + "id_car_serie": 48618, + "name": "2.0 Turbo AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201042, + "fields": { + "id_car_serie": 48618, + "name": "2.0 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201043, + "fields": { + "id_car_serie": 48618, + "name": "2.0 Turbo MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201044, + "fields": { + "id_car_serie": 48618, + "name": "2.3 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201045, + "fields": { + "id_car_serie": 48618, + "name": "2.3 TD MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201046, + "fields": { + "id_car_serie": 48618, + "name": "2.5 TD AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201047, + "fields": { + "id_car_serie": 48618, + "name": "2.5 TD AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201048, + "fields": { + "id_car_serie": 48618, + "name": "2.5 TD MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201049, + "fields": { + "id_car_serie": 48618, + "name": "2.5 TD MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201050, + "fields": { + "id_car_serie": 48618, + "name": "2.6 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201051, + "fields": { + "id_car_serie": 48618, + "name": "2.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201052, + "fields": { + "id_car_serie": 48618, + "name": "3.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201053, + "fields": { + "id_car_serie": 48618, + "name": "3.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201054, + "fields": { + "id_car_serie": 48619, + "name": "2.0 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201055, + "fields": { + "id_car_serie": 48619, + "name": "2.0 Turbo AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201056, + "fields": { + "id_car_serie": 48619, + "name": "2.0 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201057, + "fields": { + "id_car_serie": 48619, + "name": "2.0 Turbo MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201058, + "fields": { + "id_car_serie": 48619, + "name": "2.3 TD MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201059, + "fields": { + "id_car_serie": 48619, + "name": "2.3 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201060, + "fields": { + "id_car_serie": 48619, + "name": "2.5 TD AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201061, + "fields": { + "id_car_serie": 48619, + "name": "2.5 TD AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201062, + "fields": { + "id_car_serie": 48619, + "name": "2.5 TD MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201063, + "fields": { + "id_car_serie": 48619, + "name": "2.5 TD MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201064, + "fields": { + "id_car_serie": 48619, + "name": "2.6 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201065, + "fields": { + "id_car_serie": 48619, + "name": "2.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201066, + "fields": { + "id_car_serie": 48619, + "name": "3.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201067, + "fields": { + "id_car_serie": 48619, + "name": "3.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201068, + "fields": { + "id_car_serie": 48620, + "name": "2.0 Turbo AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201069, + "fields": { + "id_car_serie": 48620, + "name": "2.0 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201070, + "fields": { + "id_car_serie": 48620, + "name": "2.0 Turbo MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201071, + "fields": { + "id_car_serie": 48620, + "name": "2.0 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201072, + "fields": { + "id_car_serie": 48620, + "name": "2.3 TD MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201073, + "fields": { + "id_car_serie": 48620, + "name": "2.3 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201074, + "fields": { + "id_car_serie": 48620, + "name": "2.5 TD AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201075, + "fields": { + "id_car_serie": 48620, + "name": "2.5 TD AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201076, + "fields": { + "id_car_serie": 48620, + "name": "2.5 TD MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201077, + "fields": { + "id_car_serie": 48620, + "name": "2.5 TD MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201078, + "fields": { + "id_car_serie": 48620, + "name": "2.6 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201079, + "fields": { + "id_car_serie": 48620, + "name": "2.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201080, + "fields": { + "id_car_serie": 48620, + "name": "3.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201081, + "fields": { + "id_car_serie": 48620, + "name": "3.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201082, + "fields": { + "id_car_serie": 48621, + "name": "0.7 Turbo AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201083, + "fields": { + "id_car_serie": 48621, + "name": "0.7 Turbo AT 2WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201084, + "fields": { + "id_car_serie": 48621, + "name": "0.7 AT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201085, + "fields": { + "id_car_serie": 48621, + "name": "0.7 AT 2WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201086, + "fields": { + "id_car_serie": 48621, + "name": "0.7 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201087, + "fields": { + "id_car_serie": 48621, + "name": "0.7 Turbo MT 2WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201088, + "fields": { + "id_car_serie": 48621, + "name": "0.7 Turbo MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201089, + "fields": { + "id_car_serie": 48621, + "name": "0.7 MT 2WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201090, + "fields": { + "id_car_serie": 48622, + "name": "0.7 Turbo AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201091, + "fields": { + "id_car_serie": 48622, + "name": "0.7 Turbo MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201092, + "fields": { + "id_car_serie": 48623, + "name": "0.7 Turbo AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201093, + "fields": { + "id_car_serie": 48623, + "name": "0.7 AT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201094, + "fields": { + "id_car_serie": 48623, + "name": "0.7 AT 2WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201095, + "fields": { + "id_car_serie": 48623, + "name": "0.7 MT 2WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201096, + "fields": { + "id_car_serie": 48623, + "name": "0.7 Turbo MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201097, + "fields": { + "id_car_serie": 48623, + "name": "0.7 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201098, + "fields": { + "id_car_serie": 48624, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201099, + "fields": { + "id_car_serie": 48624, + "name": "1.8 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201100, + "fields": { + "id_car_serie": 48624, + "name": "1.8 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201101, + "fields": { + "id_car_serie": 48624, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201102, + "fields": { + "id_car_serie": 48624, + "name": "2.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201103, + "fields": { + "id_car_serie": 48624, + "name": "2.0 TD AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201104, + "fields": { + "id_car_serie": 48624, + "name": "2.0 TD MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201105, + "fields": { + "id_car_serie": 48625, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201106, + "fields": { + "id_car_serie": 48625, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201107, + "fields": { + "id_car_serie": 48626, + "name": "0.7 AT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201108, + "fields": { + "id_car_serie": 48626, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201109, + "fields": { + "id_car_serie": 48626, + "name": "0.7 MT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201110, + "fields": { + "id_car_serie": 48626, + "name": "0.7 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201111, + "fields": { + "id_car_serie": 48627, + "name": "4.4 MT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201112, + "fields": { + "id_car_serie": 48628, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201113, + "fields": { + "id_car_serie": 48628, + "name": "2.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201114, + "fields": { + "id_car_serie": 48628, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201115, + "fields": { + "id_car_serie": 48628, + "name": "2.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201116, + "fields": { + "id_car_serie": 48629, + "name": "1.8 turbo MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201117, + "fields": { + "id_car_serie": 48630, + "name": "2.0 T AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201118, + "fields": { + "id_car_serie": 48630, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201119, + "fields": { + "id_car_serie": 48630, + "name": "2.0 T MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201120, + "fields": { + "id_car_serie": 48630, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201121, + "fields": { + "id_car_serie": 48631, + "name": "2.0 AT Turbo (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201122, + "fields": { + "id_car_serie": 48631, + "name": "2.0 MT Turbo (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201123, + "fields": { + "id_car_serie": 48632, + "name": "1.8 AT Turbo (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201124, + "fields": { + "id_car_serie": 48632, + "name": "1.8 MT Turbo (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201125, + "fields": { + "id_car_serie": 48633, + "name": "3.0 Twin Turbo AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201126, + "fields": { + "id_car_serie": 48633, + "name": "3.0 Twin Turbo MT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201127, + "fields": { + "id_car_serie": 48634, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201128, + "fields": { + "id_car_serie": 48634, + "name": "2.0 turbo AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201129, + "fields": { + "id_car_serie": 48634, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201130, + "fields": { + "id_car_serie": 48634, + "name": "2.0 turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201131, + "fields": { + "id_car_serie": 48634, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201132, + "fields": { + "id_car_serie": 48634, + "name": "3.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201133, + "fields": { + "id_car_serie": 48634, + "name": "3.0 turbo MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201134, + "fields": { + "id_car_serie": 48638, + "name": "2.5 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201135, + "fields": { + "id_car_serie": 48638, + "name": "2.5 CVT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201136, + "fields": { + "id_car_serie": 48638, + "name": "3.5 MT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201137, + "fields": { + "id_car_serie": 48638, + "name": "3.5 CVT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201138, + "fields": { + "id_car_serie": 48639, + "name": "3.5 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201139, + "fields": { + "id_car_serie": 48639, + "name": "3.5 MT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201140, + "fields": { + "id_car_serie": 48640, + "name": "2.4 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201141, + "fields": { + "id_car_serie": 48640, + "name": "2.4 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201142, + "fields": { + "id_car_serie": 62777, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201143, + "fields": { + "id_car_serie": 62777, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201144, + "fields": { + "id_car_serie": 48642, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201145, + "fields": { + "id_car_serie": 48642, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201146, + "fields": { + "id_car_serie": 48643, + "name": "1.0 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201147, + "fields": { + "id_car_serie": 48643, + "name": "1.0 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201148, + "fields": { + "id_car_serie": 48644, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201149, + "fields": { + "id_car_serie": 48644, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201150, + "fields": { + "id_car_serie": 48644, + "name": "1.8 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201151, + "fields": { + "id_car_serie": 48644, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201152, + "fields": { + "id_car_serie": 48644, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201163, + "fields": { + "id_car_serie": 48648, + "name": "1.6 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201164, + "fields": { + "id_car_serie": 48648, + "name": "1.6 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201165, + "fields": { + "id_car_serie": 48648, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201166, + "fields": { + "id_car_serie": 48648, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201167, + "fields": { + "id_car_serie": 48648, + "name": "1.8 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201168, + "fields": { + "id_car_serie": 48648, + "name": "1.8 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201169, + "fields": { + "id_car_serie": 48648, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201170, + "fields": { + "id_car_serie": 48648, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201171, + "fields": { + "id_car_serie": 48648, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201172, + "fields": { + "id_car_serie": 48648, + "name": "1.8 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201173, + "fields": { + "id_car_serie": 48648, + "name": "1.8 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201174, + "fields": { + "id_car_serie": 48648, + "name": "2.0 SSS AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201175, + "fields": { + "id_car_serie": 48648, + "name": "2.0 SSS AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201176, + "fields": { + "id_car_serie": 48648, + "name": "2.0 D AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201177, + "fields": { + "id_car_serie": 48648, + "name": "2.0 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201178, + "fields": { + "id_car_serie": 48648, + "name": "2.0 SSS MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201179, + "fields": { + "id_car_serie": 48648, + "name": "2.0 SSS MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201180, + "fields": { + "id_car_serie": 48649, + "name": "1.6 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201181, + "fields": { + "id_car_serie": 48649, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201182, + "fields": { + "id_car_serie": 48649, + "name": "1.8i T SSS MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201183, + "fields": { + "id_car_serie": 48649, + "name": "2.0 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201184, + "fields": { + "id_car_serie": 48649, + "name": "2.0 D AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201185, + "fields": { + "id_car_serie": 48649, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201186, + "fields": { + "id_car_serie": 48650, + "name": "1.8 T SSS MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201187, + "fields": { + "id_car_serie": 48650, + "name": "2.0 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201188, + "fields": { + "id_car_serie": 48650, + "name": "2.0 D AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201189, + "fields": { + "id_car_serie": 48650, + "name": "2.0 D MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201190, + "fields": { + "id_car_serie": 48650, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201191, + "fields": { + "id_car_serie": 48650, + "name": "2.0 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201192, + "fields": { + "id_car_serie": 48651, + "name": "1.8i AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201193, + "fields": { + "id_car_serie": 48651, + "name": "1.8i MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201194, + "fields": { + "id_car_serie": 48651, + "name": "1.8i T SSS MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201195, + "fields": { + "id_car_serie": 48651, + "name": "2.0 D AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201196, + "fields": { + "id_car_serie": 48651, + "name": "2.0i AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201197, + "fields": { + "id_car_serie": 48651, + "name": "2.0 D AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201198, + "fields": { + "id_car_serie": 48651, + "name": "2.0 D MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201199, + "fields": { + "id_car_serie": 48651, + "name": "2.0 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201200, + "fields": { + "id_car_serie": 48651, + "name": "2.0i MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201201, + "fields": { + "id_car_serie": 48652, + "name": "1.6 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201202, + "fields": { + "id_car_serie": 48652, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201203, + "fields": { + "id_car_serie": 48652, + "name": "1.8 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201204, + "fields": { + "id_car_serie": 48652, + "name": "1.8 SSS MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201205, + "fields": { + "id_car_serie": 48653, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201206, + "fields": { + "id_car_serie": 48653, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201207, + "fields": { + "id_car_serie": 48653, + "name": "2.4 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201208, + "fields": { + "id_car_serie": 48654, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201209, + "fields": { + "id_car_serie": 48655, + "name": "1.8 SSS MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201210, + "fields": { + "id_car_serie": 48655, + "name": "2.4 SSS MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201211, + "fields": { + "id_car_serie": 48656, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201212, + "fields": { + "id_car_serie": 48657, + "name": "1.8 SSS MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201213, + "fields": { + "id_car_serie": 48657, + "name": "2.4 SSS MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201214, + "fields": { + "id_car_serie": 48658, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201215, + "fields": { + "id_car_serie": 48658, + "name": "1.8 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201216, + "fields": { + "id_car_serie": 48658, + "name": "1.8 4MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201217, + "fields": { + "id_car_serie": 48658, + "name": "1.8 5MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201218, + "fields": { + "id_car_serie": 48659, + "name": "1.6 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201219, + "fields": { + "id_car_serie": 48659, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201220, + "fields": { + "id_car_serie": 48659, + "name": "1.6 3MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201221, + "fields": { + "id_car_serie": 48659, + "name": "1.6 4MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201222, + "fields": { + "id_car_serie": 48659, + "name": "1.8 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201223, + "fields": { + "id_car_serie": 48659, + "name": "1.8 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201224, + "fields": { + "id_car_serie": 48659, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201225, + "fields": { + "id_car_serie": 48660, + "name": "1.6 SSS-E 4MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201226, + "fields": { + "id_car_serie": 48660, + "name": "1.6 SSS-E 5MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201227, + "fields": { + "id_car_serie": 48660, + "name": "1.6 SSS MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201228, + "fields": { + "id_car_serie": 48660, + "name": "1.8 SSS AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201229, + "fields": { + "id_car_serie": 48660, + "name": "1.8 SSS-E 4MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201230, + "fields": { + "id_car_serie": 48660, + "name": "1.8 SSS-E 5MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201231, + "fields": { + "id_car_serie": 48660, + "name": "1.8 SSS 4MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201232, + "fields": { + "id_car_serie": 48660, + "name": "1.8 SSS 5MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201233, + "fields": { + "id_car_serie": 48661, + "name": "1.6 SSS AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201234, + "fields": { + "id_car_serie": 48661, + "name": "1.6 SSS-E 5MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201235, + "fields": { + "id_car_serie": 48661, + "name": "1.6 SSS-E 4MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201236, + "fields": { + "id_car_serie": 48661, + "name": "1.6 SSS MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201237, + "fields": { + "id_car_serie": 48661, + "name": "1.8 SSS AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201238, + "fields": { + "id_car_serie": 48661, + "name": "1.8 SSS 5MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201239, + "fields": { + "id_car_serie": 48661, + "name": "1.8 SSS 4MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201240, + "fields": { + "id_car_serie": 48662, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201241, + "fields": { + "id_car_serie": 48662, + "name": "1.6 SSS MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201242, + "fields": { + "id_car_serie": 48662, + "name": "1.6 SSS-E MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201243, + "fields": { + "id_car_serie": 48662, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201244, + "fields": { + "id_car_serie": 48662, + "name": "1.8 SSS AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201245, + "fields": { + "id_car_serie": 48662, + "name": "1.8 SSS-E 5MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201246, + "fields": { + "id_car_serie": 48662, + "name": "1.8 SSS 4MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201247, + "fields": { + "id_car_serie": 48662, + "name": "1.8 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201248, + "fields": { + "id_car_serie": 48662, + "name": "1.8 SSS-E 4MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201249, + "fields": { + "id_car_serie": 48662, + "name": "1.8 SSS 5MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201250, + "fields": { + "id_car_serie": 48663, + "name": "1.6 SSS AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201251, + "fields": { + "id_car_serie": 48663, + "name": "1.6 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201252, + "fields": { + "id_car_serie": 48663, + "name": "1.6 SSS MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201253, + "fields": { + "id_car_serie": 48663, + "name": "1.6 3MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201254, + "fields": { + "id_car_serie": 48663, + "name": "1.6 4MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201255, + "fields": { + "id_car_serie": 48663, + "name": "1.6 SSS-E MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201256, + "fields": { + "id_car_serie": 48663, + "name": "1.8 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201257, + "fields": { + "id_car_serie": 48663, + "name": "1.8 SSS AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201258, + "fields": { + "id_car_serie": 48663, + "name": "1.8 SSS 4MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201259, + "fields": { + "id_car_serie": 48663, + "name": "1.8 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201260, + "fields": { + "id_car_serie": 48663, + "name": "1.8 SSS 5MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201261, + "fields": { + "id_car_serie": 48664, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201262, + "fields": { + "id_car_serie": 48664, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201263, + "fields": { + "id_car_serie": 48664, + "name": "1.6 4MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201264, + "fields": { + "id_car_serie": 48664, + "name": "1.6 3MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201265, + "fields": { + "id_car_serie": 48664, + "name": "1.8 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201266, + "fields": { + "id_car_serie": 48664, + "name": "1.8 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201267, + "fields": { + "id_car_serie": 48665, + "name": "1.3 3MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201268, + "fields": { + "id_car_serie": 48665, + "name": "1.3 4MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201269, + "fields": { + "id_car_serie": 48665, + "name": "1.6 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201270, + "fields": { + "id_car_serie": 48665, + "name": "1.6 SSS MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201271, + "fields": { + "id_car_serie": 48665, + "name": "1.6 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201272, + "fields": { + "id_car_serie": 48665, + "name": "1.6 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201273, + "fields": { + "id_car_serie": 48665, + "name": "1.8 SSS MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201274, + "fields": { + "id_car_serie": 48666, + "name": "1.3 3MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201275, + "fields": { + "id_car_serie": 48666, + "name": "1.3 4MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201276, + "fields": { + "id_car_serie": 48666, + "name": "1.6 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201277, + "fields": { + "id_car_serie": 48666, + "name": "1.6 SSS MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201278, + "fields": { + "id_car_serie": 48666, + "name": "1.8 SSS MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201279, + "fields": { + "id_car_serie": 48667, + "name": "1.3 4MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201280, + "fields": { + "id_car_serie": 48667, + "name": "1.3 3MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201281, + "fields": { + "id_car_serie": 48667, + "name": "1.3 4MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201282, + "fields": { + "id_car_serie": 48667, + "name": "1.3 3MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201283, + "fields": { + "id_car_serie": 48667, + "name": "1.6 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201284, + "fields": { + "id_car_serie": 48667, + "name": "1.6 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201285, + "fields": { + "id_car_serie": 48667, + "name": "1.6 SSS MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201286, + "fields": { + "id_car_serie": 48667, + "name": "1.6 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201287, + "fields": { + "id_car_serie": 48667, + "name": "1.6 SSS MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201288, + "fields": { + "id_car_serie": 48667, + "name": "1.6 3MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201289, + "fields": { + "id_car_serie": 48667, + "name": "1.6 4MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201290, + "fields": { + "id_car_serie": 48667, + "name": "1.6 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201291, + "fields": { + "id_car_serie": 48667, + "name": "1.8 SSS MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201292, + "fields": { + "id_car_serie": 48668, + "name": "1.3 3MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201293, + "fields": { + "id_car_serie": 48668, + "name": "1.3 4MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201294, + "fields": { + "id_car_serie": 48668, + "name": "1.6 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201295, + "fields": { + "id_car_serie": 48668, + "name": "1.6 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201296, + "fields": { + "id_car_serie": 48668, + "name": "1.6 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201297, + "fields": { + "id_car_serie": 48668, + "name": "1.6 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201298, + "fields": { + "id_car_serie": 48669, + "name": "1.3 3MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201299, + "fields": { + "id_car_serie": 48669, + "name": "1.3 4MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201300, + "fields": { + "id_car_serie": 48669, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201301, + "fields": { + "id_car_serie": 48669, + "name": "1.3 SS MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201302, + "fields": { + "id_car_serie": 48669, + "name": "1.6 Sport AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201303, + "fields": { + "id_car_serie": 48669, + "name": "1.6 Sport MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201304, + "fields": { + "id_car_serie": 48669, + "name": "1.6 SSS MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201305, + "fields": { + "id_car_serie": 48670, + "name": "1.0 MT (37 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201306, + "fields": { + "id_car_serie": 48670, + "name": "1.2 3MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201307, + "fields": { + "id_car_serie": 48670, + "name": "1.2 4MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201308, + "fields": { + "id_car_serie": 48670, + "name": "1.2 4MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201309, + "fields": { + "id_car_serie": 48670, + "name": "1.2 3MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201310, + "fields": { + "id_car_serie": 48670, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201311, + "fields": { + "id_car_serie": 48670, + "name": "1.3 3MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201312, + "fields": { + "id_car_serie": 48670, + "name": "1.3 4MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201313, + "fields": { + "id_car_serie": 48670, + "name": "1.6 Sport AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201314, + "fields": { + "id_car_serie": 48670, + "name": "1.6 Sport MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201315, + "fields": { + "id_car_serie": 48671, + "name": "1.0 MT (37 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201316, + "fields": { + "id_car_serie": 48671, + "name": "1.2 4MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201317, + "fields": { + "id_car_serie": 48671, + "name": "1.2 3MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201318, + "fields": { + "id_car_serie": 48671, + "name": "1.2 3MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201319, + "fields": { + "id_car_serie": 48671, + "name": "1.2 4MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201320, + "fields": { + "id_car_serie": 48671, + "name": "1.3 4MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201321, + "fields": { + "id_car_serie": 48671, + "name": "1.3 3MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201322, + "fields": { + "id_car_serie": 48671, + "name": "1.3 4MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201323, + "fields": { + "id_car_serie": 48671, + "name": "1.3 3MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201324, + "fields": { + "id_car_serie": 48671, + "name": "1.3 SS MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201325, + "fields": { + "id_car_serie": 48672, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201326, + "fields": { + "id_car_serie": 48672, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201327, + "fields": { + "id_car_serie": 48673, + "name": "1.0 MT (37 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201328, + "fields": { + "id_car_serie": 48673, + "name": "1.2 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201329, + "fields": { + "id_car_serie": 48673, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201330, + "fields": { + "id_car_serie": 48673, + "name": "1.2 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201331, + "fields": { + "id_car_serie": 48673, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201332, + "fields": { + "id_car_serie": 48674, + "name": "1.0 MT (36 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201333, + "fields": { + "id_car_serie": 48674, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201334, + "fields": { + "id_car_serie": 48674, + "name": "1.2 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201335, + "fields": { + "id_car_serie": 48674, + "name": "1.2 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201336, + "fields": { + "id_car_serie": 48674, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201337, + "fields": { + "id_car_serie": 48675, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201338, + "fields": { + "id_car_serie": 48675, + "name": "2.5 Turbo 4WD AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201339, + "fields": { + "id_car_serie": 48675, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201340, + "fields": { + "id_car_serie": 48675, + "name": "3.0 T AT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201341, + "fields": { + "id_car_serie": 48675, + "name": "3.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201342, + "fields": { + "id_car_serie": 48675, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201344, + "fields": { + "id_car_serie": 48676, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201345, + "fields": { + "id_car_serie": 48676, + "name": "2.8 D AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201346, + "fields": { + "id_car_serie": 48676, + "name": "2.8 D AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201347, + "fields": { + "id_car_serie": 48676, + "name": "3.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201348, + "fields": { + "id_car_serie": 48676, + "name": "3.0 Turbo AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201349, + "fields": { + "id_car_serie": 48676, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201350, + "fields": { + "id_car_serie": 48677, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201351, + "fields": { + "id_car_serie": 48677, + "name": "2.8 D AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201352, + "fields": { + "id_car_serie": 48677, + "name": "3.0 T AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201353, + "fields": { + "id_car_serie": 48677, + "name": "3.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201354, + "fields": { + "id_car_serie": 48678, + "name": "2.0 T AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201355, + "fields": { + "id_car_serie": 48678, + "name": "2.0 T AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201356, + "fields": { + "id_car_serie": 48679, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201357, + "fields": { + "id_car_serie": 48679, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201358, + "fields": { + "id_car_serie": 48679, + "name": "3.0 AT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201359, + "fields": { + "id_car_serie": 48679, + "name": "3.0 MT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201360, + "fields": { + "id_car_serie": 48680, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201361, + "fields": { + "id_car_serie": 48680, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201362, + "fields": { + "id_car_serie": 48680, + "name": "2.8 D MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201363, + "fields": { + "id_car_serie": 48681, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201364, + "fields": { + "id_car_serie": 48681, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201365, + "fields": { + "id_car_serie": 48681, + "name": "3.0 AT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201366, + "fields": { + "id_car_serie": 48681, + "name": "3.0 MT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201367, + "fields": { + "id_car_serie": 48682, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201368, + "fields": { + "id_car_serie": 48682, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201369, + "fields": { + "id_car_serie": 48682, + "name": "2.8 D MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201370, + "fields": { + "id_car_serie": 48683, + "name": "2.0 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201371, + "fields": { + "id_car_serie": 48683, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201372, + "fields": { + "id_car_serie": 48683, + "name": "2.2 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201373, + "fields": { + "id_car_serie": 48683, + "name": "2.8 D AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201374, + "fields": { + "id_car_serie": 48683, + "name": "2.8 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201375, + "fields": { + "id_car_serie": 48683, + "name": "2.8 D MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201376, + "fields": { + "id_car_serie": 48683, + "name": "2.8 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201377, + "fields": { + "id_car_serie": 48684, + "name": "2.0 T AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201378, + "fields": { + "id_car_serie": 48684, + "name": "2.0 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201379, + "fields": { + "id_car_serie": 48684, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201380, + "fields": { + "id_car_serie": 48684, + "name": "2.0 T MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201381, + "fields": { + "id_car_serie": 48684, + "name": "2.2 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201382, + "fields": { + "id_car_serie": 48684, + "name": "2.8 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201383, + "fields": { + "id_car_serie": 48684, + "name": "2.8 D AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201384, + "fields": { + "id_car_serie": 48684, + "name": "2.8 D MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201385, + "fields": { + "id_car_serie": 48684, + "name": "2.8 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201386, + "fields": { + "id_car_serie": 48685, + "name": "2.0 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201387, + "fields": { + "id_car_serie": 48685, + "name": "2.0 D AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201388, + "fields": { + "id_car_serie": 48685, + "name": "2.0 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201389, + "fields": { + "id_car_serie": 48685, + "name": "2.0 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201390, + "fields": { + "id_car_serie": 48685, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201391, + "fields": { + "id_car_serie": 48685, + "name": "2.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201392, + "fields": { + "id_car_serie": 48685, + "name": "2.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201393, + "fields": { + "id_car_serie": 48686, + "name": "2.0 T AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201394, + "fields": { + "id_car_serie": 48686, + "name": "2.0 D AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201395, + "fields": { + "id_car_serie": 48686, + "name": "2.0 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201396, + "fields": { + "id_car_serie": 48686, + "name": "2.0 T MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201397, + "fields": { + "id_car_serie": 48687, + "name": "2.0 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201398, + "fields": { + "id_car_serie": 48687, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201399, + "fields": { + "id_car_serie": 48687, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201400, + "fields": { + "id_car_serie": 48687, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201401, + "fields": { + "id_car_serie": 48688, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201402, + "fields": { + "id_car_serie": 48688, + "name": "2.0 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201403, + "fields": { + "id_car_serie": 48688, + "name": "2.0 3MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201404, + "fields": { + "id_car_serie": 48688, + "name": "2.0 4MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201405, + "fields": { + "id_car_serie": 48688, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201406, + "fields": { + "id_car_serie": 48688, + "name": "2.8 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201407, + "fields": { + "id_car_serie": 48689, + "name": "2.0 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201408, + "fields": { + "id_car_serie": 48689, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201409, + "fields": { + "id_car_serie": 48689, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201410, + "fields": { + "id_car_serie": 48689, + "name": "2.0 4MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201411, + "fields": { + "id_car_serie": 48689, + "name": "2.0 3MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201412, + "fields": { + "id_car_serie": 48690, + "name": "2.0 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201413, + "fields": { + "id_car_serie": 48690, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201414, + "fields": { + "id_car_serie": 48691, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201415, + "fields": { + "id_car_serie": 48691, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201416, + "fields": { + "id_car_serie": 48691, + "name": "2.4 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201417, + "fields": { + "id_car_serie": 48691, + "name": "2.4 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201418, + "fields": { + "id_car_serie": 48691, + "name": "2.6 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201419, + "fields": { + "id_car_serie": 48691, + "name": "2.6 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201420, + "fields": { + "id_car_serie": 48692, + "name": "2.4 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201421, + "fields": { + "id_car_serie": 48692, + "name": "2.6 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201422, + "fields": { + "id_car_serie": 48692, + "name": "2.6 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201423, + "fields": { + "id_car_serie": 48693, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201424, + "fields": { + "id_car_serie": 48693, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201425, + "fields": { + "id_car_serie": 48693, + "name": "2.4 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201426, + "fields": { + "id_car_serie": 48693, + "name": "2.4 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201427, + "fields": { + "id_car_serie": 48693, + "name": "2.6 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201428, + "fields": { + "id_car_serie": 48693, + "name": "2.6 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201429, + "fields": { + "id_car_serie": 48694, + "name": "2.0 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201430, + "fields": { + "id_car_serie": 48694, + "name": "2.0 4MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201431, + "fields": { + "id_car_serie": 48694, + "name": "2.0 3MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201432, + "fields": { + "id_car_serie": 48694, + "name": "2.0 4MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201433, + "fields": { + "id_car_serie": 48694, + "name": "2.0 3MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201434, + "fields": { + "id_car_serie": 48694, + "name": "2.0 4MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201435, + "fields": { + "id_car_serie": 48694, + "name": "2.0 3MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201436, + "fields": { + "id_car_serie": 48694, + "name": "2.2 D 3MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201437, + "fields": { + "id_car_serie": 48694, + "name": "2.2 D 4MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201438, + "fields": { + "id_car_serie": 48695, + "name": "2.0 3MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201439, + "fields": { + "id_car_serie": 48695, + "name": "2.0 4MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201440, + "fields": { + "id_car_serie": 48695, + "name": "2.0 4MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201441, + "fields": { + "id_car_serie": 48695, + "name": "2.0 4MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201442, + "fields": { + "id_car_serie": 48695, + "name": "2.0 3MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201443, + "fields": { + "id_car_serie": 48695, + "name": "2.0 3MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201444, + "fields": { + "id_car_serie": 48695, + "name": "2.2 D 3MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201445, + "fields": { + "id_car_serie": 48695, + "name": "2.2 D 4MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201446, + "fields": { + "id_car_serie": 48696, + "name": "2.0 4MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201447, + "fields": { + "id_car_serie": 48696, + "name": "2.0 3MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201448, + "fields": { + "id_car_serie": 48696, + "name": "2.0 4MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201449, + "fields": { + "id_car_serie": 48696, + "name": "2.0 3MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201450, + "fields": { + "id_car_serie": 48697, + "name": "2.0 4MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201451, + "fields": { + "id_car_serie": 48697, + "name": "2.0 3MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201452, + "fields": { + "id_car_serie": 48697, + "name": "2.0 4MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201453, + "fields": { + "id_car_serie": 48697, + "name": "2.0 3MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201454, + "fields": { + "id_car_serie": 48697, + "name": "2.0 4MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201455, + "fields": { + "id_car_serie": 48697, + "name": "2.0 3MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201456, + "fields": { + "id_car_serie": 48697, + "name": "2.2 D 4MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201457, + "fields": { + "id_car_serie": 48697, + "name": "2.2 D 3MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201458, + "fields": { + "id_car_serie": 48698, + "name": "2.8 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201459, + "fields": { + "id_car_serie": 48699, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201460, + "fields": { + "id_car_serie": 48699, + "name": "2.0 3MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201461, + "fields": { + "id_car_serie": 48699, + "name": "2.0 4MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201462, + "fields": { + "id_car_serie": 48699, + "name": "2.0 3MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201463, + "fields": { + "id_car_serie": 48699, + "name": "2.0 4MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201464, + "fields": { + "id_car_serie": 48699, + "name": "2.2 D 3MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201465, + "fields": { + "id_car_serie": 48699, + "name": "2.2 D 4MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201466, + "fields": { + "id_car_serie": 48699, + "name": "2.4 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201467, + "fields": { + "id_car_serie": 48699, + "name": "2.4 4MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201468, + "fields": { + "id_car_serie": 48699, + "name": "2.4 3MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201469, + "fields": { + "id_car_serie": 48700, + "name": "2.8 AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201470, + "fields": { + "id_car_serie": 48700, + "name": "2.8 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201471, + "fields": { + "id_car_serie": 48701, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201472, + "fields": { + "id_car_serie": 48701, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201473, + "fields": { + "id_car_serie": 48701, + "name": "1.9 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201474, + "fields": { + "id_car_serie": 48701, + "name": "2.0 D AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201475, + "fields": { + "id_car_serie": 48701, + "name": "2.0 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201476, + "fields": { + "id_car_serie": 48702, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201477, + "fields": { + "id_car_serie": 48702, + "name": "1.9 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201478, + "fields": { + "id_car_serie": 48703, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201479, + "fields": { + "id_car_serie": 48703, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201480, + "fields": { + "id_car_serie": 48703, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201481, + "fields": { + "id_car_serie": 48703, + "name": "3.0 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201482, + "fields": { + "id_car_serie": 48704, + "name": "1.2 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201483, + "fields": { + "id_car_serie": 48707, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201484, + "fields": { + "id_car_serie": 48708, + "name": "1.2 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201485, + "fields": { + "id_car_serie": 48709, + "name": "3.0 Turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201486, + "fields": { + "id_car_serie": 48709, + "name": "4.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201487, + "fields": { + "id_car_serie": 48709, + "name": "4.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201488, + "fields": { + "id_car_serie": 48710, + "name": "3.0 AT (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201489, + "fields": { + "id_car_serie": 48710, + "name": "3.0 T AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201490, + "fields": { + "id_car_serie": 48711, + "name": "0.7 T AT H2 (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201491, + "fields": { + "id_car_serie": 48711, + "name": "0.7 AT H2 (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201492, + "fields": { + "id_car_serie": 48711, + "name": "0.7 T AT 4WD H2 (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201493, + "fields": { + "id_car_serie": 48711, + "name": "0.7 AT H2 2seat (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201494, + "fields": { + "id_car_serie": 48711, + "name": "0.7 AT 4WD H1 (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201495, + "fields": { + "id_car_serie": 48711, + "name": "0.7 AT H1 (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201496, + "fields": { + "id_car_serie": 48711, + "name": "0.7 AT 4WD H2 (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201497, + "fields": { + "id_car_serie": 48711, + "name": "0.7 MT H2 2seat (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201498, + "fields": { + "id_car_serie": 48711, + "name": "0.7 MT 4WD H1 (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201499, + "fields": { + "id_car_serie": 48711, + "name": "0.7 MT 4WD H2 (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201500, + "fields": { + "id_car_serie": 48711, + "name": "0.7 MT H1 (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201501, + "fields": { + "id_car_serie": 48711, + "name": "0.7 MT H2 (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201502, + "fields": { + "id_car_serie": 48712, + "name": "0.7 T AT 4WD Aero (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201503, + "fields": { + "id_car_serie": 48712, + "name": "0.7 T AT 4WD (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201504, + "fields": { + "id_car_serie": 48712, + "name": "0.7 T AT Aero (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201505, + "fields": { + "id_car_serie": 48712, + "name": "0.7 T AT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201506, + "fields": { + "id_car_serie": 48712, + "name": "0.7 AT 4WD Aero (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201507, + "fields": { + "id_car_serie": 48712, + "name": "0.7 AT 4WD (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201508, + "fields": { + "id_car_serie": 48712, + "name": "0.7 AT Aero (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201509, + "fields": { + "id_car_serie": 48712, + "name": "0.7 AT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201510, + "fields": { + "id_car_serie": 48712, + "name": "0.7 MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201511, + "fields": { + "id_car_serie": 48712, + "name": "0.7 T MT 4WD Aero (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201512, + "fields": { + "id_car_serie": 48712, + "name": "0.7 MT 4WD Aero (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201513, + "fields": { + "id_car_serie": 48712, + "name": "0.7 T MT 4WD (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201514, + "fields": { + "id_car_serie": 48712, + "name": "0.7 MT Aero (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201515, + "fields": { + "id_car_serie": 48712, + "name": "0.7 T MT Aero (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201516, + "fields": { + "id_car_serie": 48712, + "name": "0.7 MT 4WD (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201517, + "fields": { + "id_car_serie": 48712, + "name": "0.7 T MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201522, + "fields": { + "id_car_serie": 48714, + "name": "0.7 AT 4WD High Roof (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201523, + "fields": { + "id_car_serie": 48714, + "name": "0.7 AT 4WD (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201524, + "fields": { + "id_car_serie": 48714, + "name": "0.7 AT High Roof (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201525, + "fields": { + "id_car_serie": 48714, + "name": "0.7 AT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201526, + "fields": { + "id_car_serie": 48714, + "name": "0.7 AT High Roof 2seat (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201527, + "fields": { + "id_car_serie": 48714, + "name": "0.7 MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201528, + "fields": { + "id_car_serie": 48714, + "name": "0.7 MT High Roof 2seat (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201529, + "fields": { + "id_car_serie": 48714, + "name": "0.7 MT 4WD High Roof (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201530, + "fields": { + "id_car_serie": 48714, + "name": "0.7 MT High Roof (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201531, + "fields": { + "id_car_serie": 48714, + "name": "0.7 MT 4WD (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201532, + "fields": { + "id_car_serie": 48716, + "name": "2.0 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201533, + "fields": { + "id_car_serie": 48716, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201534, + "fields": { + "id_car_serie": 48716, + "name": "2.0 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201535, + "fields": { + "id_car_serie": 48716, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201536, + "fields": { + "id_car_serie": 48716, + "name": "2.8 D AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201537, + "fields": { + "id_car_serie": 48716, + "name": "2.8 D MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201538, + "fields": { + "id_car_serie": 48717, + "name": "1.4 AT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201539, + "fields": { + "id_car_serie": 48717, + "name": "1.4 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201540, + "fields": { + "id_car_serie": 48717, + "name": "1.5 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201541, + "fields": { + "id_car_serie": 48717, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201542, + "fields": { + "id_car_serie": 48717, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201543, + "fields": { + "id_car_serie": 48718, + "name": "2.0 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201544, + "fields": { + "id_car_serie": 48718, + "name": "2.7 TD AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201545, + "fields": { + "id_car_serie": 48718, + "name": "2.7 TD MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201546, + "fields": { + "id_car_serie": 48718, + "name": "2.7 D MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201547, + "fields": { + "id_car_serie": 48720, + "name": "2.0 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201548, + "fields": { + "id_car_serie": 48720, + "name": "2.7 D MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201549, + "fields": { + "id_car_serie": 48721, + "name": "1.5 TDI 2WD MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201550, + "fields": { + "id_car_serie": 48721, + "name": "1.6 2WD MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201551, + "fields": { + "id_car_serie": 48721, + "name": "2.0 2WD MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201552, + "fields": { + "id_car_serie": 48721, + "name": "2.0 TDI 4WD MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201553, + "fields": { + "id_car_serie": 48721, + "name": "2.0 TDI 2WD MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201554, + "fields": { + "id_car_serie": 48721, + "name": "2.0 4WD MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201555, + "fields": { + "id_car_serie": 48721, + "name": "2.0 4WD CVT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201556, + "fields": { + "id_car_serie": 48721, + "name": "2.0 2WD CVT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201557, + "fields": { + "id_car_serie": 48721, + "name": "2.0 TDI 4WD CVT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201558, + "fields": { + "id_car_serie": 48722, + "name": "2.5 AT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201559, + "fields": { + "id_car_serie": 48722, + "name": "2.5 AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201560, + "fields": { + "id_car_serie": 48722, + "name": "3.5 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201561, + "fields": { + "id_car_serie": 48722, + "name": "3.5 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201562, + "fields": { + "id_car_serie": 48722, + "name": "3.5 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201563, + "fields": { + "id_car_serie": 48722, + "name": "3.5 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201564, + "fields": { + "id_car_serie": 48723, + "name": "2.5 AT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201565, + "fields": { + "id_car_serie": 48723, + "name": "2.5 AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201566, + "fields": { + "id_car_serie": 48723, + "name": "3.5 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201567, + "fields": { + "id_car_serie": 48723, + "name": "3.5 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201568, + "fields": { + "id_car_serie": 48723, + "name": "3.5 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201569, + "fields": { + "id_car_serie": 48723, + "name": "3.5 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201570, + "fields": { + "id_car_serie": 48724, + "name": "2.5 AT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201571, + "fields": { + "id_car_serie": 48724, + "name": "3.5 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201572, + "fields": { + "id_car_serie": 48724, + "name": "3.5 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201573, + "fields": { + "id_car_serie": 48725, + "name": "2.5 AT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201574, + "fields": { + "id_car_serie": 48725, + "name": "2.5 AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201575, + "fields": { + "id_car_serie": 48725, + "name": "3.5 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201576, + "fields": { + "id_car_serie": 48725, + "name": "3.5 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201577, + "fields": { + "id_car_serie": 48725, + "name": "3.5 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201578, + "fields": { + "id_car_serie": 48725, + "name": "3.5 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201579, + "fields": { + "id_car_serie": 48726, + "name": "3.0 TD AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201580, + "fields": { + "id_car_serie": 48726, + "name": "3.0 TD AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201581, + "fields": { + "id_car_serie": 48726, + "name": "3.3 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201582, + "fields": { + "id_car_serie": 48726, + "name": "3.3 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201583, + "fields": { + "id_car_serie": 48727, + "name": "3.7 AT (332 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201584, + "fields": { + "id_car_serie": 48727, + "name": "3.7 MT (332 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201585, + "fields": { + "id_car_serie": 48728, + "name": "3.7 AT (332 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201586, + "fields": { + "id_car_serie": 48728, + "name": "3.7 MT (332 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201587, + "fields": { + "id_car_serie": 48729, + "name": "3.0 AT (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201588, + "fields": { + "id_car_serie": 48729, + "name": "3.0 MT (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201589, + "fields": { + "id_car_serie": 48730, + "name": "3.0 T MT (283 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201590, + "fields": { + "id_car_serie": 48731, + "name": "3.0 T MT (283 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201591, + "fields": { + "id_car_serie": 48732, + "name": "3.0 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201592, + "fields": { + "id_car_serie": 48732, + "name": "3.0 T MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201593, + "fields": { + "id_car_serie": 48732, + "name": "3.0 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201594, + "fields": { + "id_car_serie": 48733, + "name": "3.0 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201595, + "fields": { + "id_car_serie": 48733, + "name": "3.0 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201596, + "fields": { + "id_car_serie": 48733, + "name": "3.0 T MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201597, + "fields": { + "id_car_serie": 48734, + "name": "3.0 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201598, + "fields": { + "id_car_serie": 48734, + "name": "3.0 T MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201599, + "fields": { + "id_car_serie": 48734, + "name": "3.0 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201600, + "fields": { + "id_car_serie": 48735, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201601, + "fields": { + "id_car_serie": 48735, + "name": "2.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201602, + "fields": { + "id_car_serie": 48736, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201603, + "fields": { + "id_car_serie": 48736, + "name": "2.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201604, + "fields": { + "id_car_serie": 48737, + "name": "2.5 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201605, + "fields": { + "id_car_serie": 48737, + "name": "2.5 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201606, + "fields": { + "id_car_serie": 48737, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201607, + "fields": { + "id_car_serie": 48737, + "name": "3.5 AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201608, + "fields": { + "id_car_serie": 48737, + "name": "3.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201609, + "fields": { + "id_car_serie": 48737, + "name": "4.5 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201610, + "fields": { + "id_car_serie": 48737, + "name": "4.5 AT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201611, + "fields": { + "id_car_serie": 48738, + "name": "2.0 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201612, + "fields": { + "id_car_serie": 48738, + "name": "3.0 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201613, + "fields": { + "id_car_serie": 48739, + "name": "2.0 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201614, + "fields": { + "id_car_serie": 48739, + "name": "2.0 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201615, + "fields": { + "id_car_serie": 48739, + "name": "2.8 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201616, + "fields": { + "id_car_serie": 48739, + "name": "2.8 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201617, + "fields": { + "id_car_serie": 48740, + "name": "2.0 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201618, + "fields": { + "id_car_serie": 48740, + "name": "2.0 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201619, + "fields": { + "id_car_serie": 48740, + "name": "2.8 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201620, + "fields": { + "id_car_serie": 48740, + "name": "2.8 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201621, + "fields": { + "id_car_serie": 48741, + "name": "2.0 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201622, + "fields": { + "id_car_serie": 48741, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201623, + "fields": { + "id_car_serie": 48741, + "name": "2.6 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201624, + "fields": { + "id_car_serie": 48741, + "name": "2.6 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201625, + "fields": { + "id_car_serie": 48742, + "name": "2.0 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201626, + "fields": { + "id_car_serie": 48742, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201627, + "fields": { + "id_car_serie": 48742, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201628, + "fields": { + "id_car_serie": 48742, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201629, + "fields": { + "id_car_serie": 48742, + "name": "2.5 AT (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201630, + "fields": { + "id_car_serie": 48742, + "name": "2.5 MT (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201631, + "fields": { + "id_car_serie": 48743, + "name": "1.9 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201632, + "fields": { + "id_car_serie": 48743, + "name": "2.5 MT (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201633, + "fields": { + "id_car_serie": 48744, + "name": "3.8 Twin-Turbo AMT AWD (480 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201634, + "fields": { + "id_car_serie": 48745, + "name": "1.6 DIG-T MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201635, + "fields": { + "id_car_serie": 48745, + "name": "1.6 DIG-T CVT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201636, + "fields": { + "id_car_serie": 48746, + "name": "3.8 AMT (485 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201637, + "fields": { + "id_car_serie": 48747, + "name": "2.0 CVT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201638, + "fields": { + "id_car_serie": 48747, + "name": "2.0 CVT 2WD (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201639, + "fields": { + "id_car_serie": 48748, + "name": "2.0 CVT 2WD (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201640, + "fields": { + "id_car_serie": 48748, + "name": "2.0 CVT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201641, + "fields": { + "id_car_serie": 48749, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201642, + "fields": { + "id_car_serie": 48749, + "name": "1.8 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201643, + "fields": { + "id_car_serie": 48749, + "name": "1.8 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201644, + "fields": { + "id_car_serie": 48750, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201645, + "fields": { + "id_car_serie": 48750, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201646, + "fields": { + "id_car_serie": 48751, + "name": "2.0 TDI AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201647, + "fields": { + "id_car_serie": 48751, + "name": "2.0 TDI AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201648, + "fields": { + "id_car_serie": 48751, + "name": "2.4 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201649, + "fields": { + "id_car_serie": 48751, + "name": "2.4 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201650, + "fields": { + "id_car_serie": 48752, + "name": "2.0 TDi AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201651, + "fields": { + "id_car_serie": 48752, + "name": "2.0 TDi AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201652, + "fields": { + "id_car_serie": 48752, + "name": "2.0 TDI AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201653, + "fields": { + "id_car_serie": 48752, + "name": "2.0 TDi AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201654, + "fields": { + "id_car_serie": 48752, + "name": "2.4 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201655, + "fields": { + "id_car_serie": 48752, + "name": "2.4 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201656, + "fields": { + "id_car_serie": 48753, + "name": "2.0 TDI AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201657, + "fields": { + "id_car_serie": 48753, + "name": "2.0 TDI AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201658, + "fields": { + "id_car_serie": 48753, + "name": "2.4 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201659, + "fields": { + "id_car_serie": 48753, + "name": "2.4 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201660, + "fields": { + "id_car_serie": 48754, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201661, + "fields": { + "id_car_serie": 48754, + "name": "2.5 T MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201662, + "fields": { + "id_car_serie": 48754, + "name": "2.8 D AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201663, + "fields": { + "id_car_serie": 48754, + "name": "2.8 D MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201664, + "fields": { + "id_car_serie": 48755, + "name": "2.0 T AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201665, + "fields": { + "id_car_serie": 48755, + "name": "2.0 T MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201666, + "fields": { + "id_car_serie": 48755, + "name": "2.8 D AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201667, + "fields": { + "id_car_serie": 48755, + "name": "2.8 D MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201668, + "fields": { + "id_car_serie": 48755, + "name": "3.0 AT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201669, + "fields": { + "id_car_serie": 48755, + "name": "3.0 MT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201670, + "fields": { + "id_car_serie": 48756, + "name": "2.0 T AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201671, + "fields": { + "id_car_serie": 48756, + "name": "2.0 T MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201672, + "fields": { + "id_car_serie": 48756, + "name": "2.8 D AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201673, + "fields": { + "id_car_serie": 48756, + "name": "3.0 AT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201674, + "fields": { + "id_car_serie": 48756, + "name": "3.0 MT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201675, + "fields": { + "id_car_serie": 48757, + "name": "2.0 D AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201676, + "fields": { + "id_car_serie": 48757, + "name": "2.4 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201677, + "fields": { + "id_car_serie": 48757, + "name": "2.8 D AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201678, + "fields": { + "id_car_serie": 48757, + "name": "2.8 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201679, + "fields": { + "id_car_serie": 48757, + "name": "2.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201680, + "fields": { + "id_car_serie": 48758, + "name": "2.0 D AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201681, + "fields": { + "id_car_serie": 48758, + "name": "2.0 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201682, + "fields": { + "id_car_serie": 48758, + "name": "2.4 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201683, + "fields": { + "id_car_serie": 48758, + "name": "2.8 D AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201684, + "fields": { + "id_car_serie": 48758, + "name": "2.8 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201685, + "fields": { + "id_car_serie": 48758, + "name": "2.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201686, + "fields": { + "id_car_serie": 48759, + "name": "1.8 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201687, + "fields": { + "id_car_serie": 48759, + "name": "2.0 T AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201688, + "fields": { + "id_car_serie": 48759, + "name": "2.0 T MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201689, + "fields": { + "id_car_serie": 48759, + "name": "2.0 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201690, + "fields": { + "id_car_serie": 48760, + "name": "1.8 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201691, + "fields": { + "id_car_serie": 48760, + "name": "2.0 T AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201692, + "fields": { + "id_car_serie": 48760, + "name": "2.0 T MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201693, + "fields": { + "id_car_serie": 48760, + "name": "2.0 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201694, + "fields": { + "id_car_serie": 48760, + "name": "2.4 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201695, + "fields": { + "id_car_serie": 48760, + "name": "2.4 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201696, + "fields": { + "id_car_serie": 48761, + "name": "1.8 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201697, + "fields": { + "id_car_serie": 48761, + "name": "2.0 T AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201698, + "fields": { + "id_car_serie": 48761, + "name": "2.0 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201699, + "fields": { + "id_car_serie": 48761, + "name": "2.0 T MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201700, + "fields": { + "id_car_serie": 48761, + "name": "2.4 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201701, + "fields": { + "id_car_serie": 48761, + "name": "2.4 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201702, + "fields": { + "id_car_serie": 48762, + "name": "2.0 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201703, + "fields": { + "id_car_serie": 48762, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201704, + "fields": { + "id_car_serie": 48762, + "name": "2.6 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201705, + "fields": { + "id_car_serie": 48762, + "name": "2.6 MT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201706, + "fields": { + "id_car_serie": 48762, + "name": "2.8 AT (168 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201707, + "fields": { + "id_car_serie": 48762, + "name": "2.8 MT (168 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201708, + "fields": { + "id_car_serie": 48763, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201709, + "fields": { + "id_car_serie": 48763, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201710, + "fields": { + "id_car_serie": 48764, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201711, + "fields": { + "id_car_serie": 48764, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201712, + "fields": { + "id_car_serie": 48765, + "name": "2.0 T AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201713, + "fields": { + "id_car_serie": 48765, + "name": "3.0 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201714, + "fields": { + "id_car_serie": 48765, + "name": "3.0 T AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201715, + "fields": { + "id_car_serie": 48766, + "name": "1.8 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201716, + "fields": { + "id_car_serie": 48766, + "name": "3.0 T AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201717, + "fields": { + "id_car_serie": 48767, + "name": "1.8 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201718, + "fields": { + "id_car_serie": 48767, + "name": "2.0 T MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201719, + "fields": { + "id_car_serie": 48767, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201720, + "fields": { + "id_car_serie": 48768, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201721, + "fields": { + "id_car_serie": 48768, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201722, + "fields": { + "id_car_serie": 48768, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201723, + "fields": { + "id_car_serie": 48768, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201724, + "fields": { + "id_car_serie": 48768, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201725, + "fields": { + "id_car_serie": 48768, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201726, + "fields": { + "id_car_serie": 48769, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201727, + "fields": { + "id_car_serie": 48769, + "name": "1.0 CVT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201728, + "fields": { + "id_car_serie": 48769, + "name": "1.4 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201729, + "fields": { + "id_car_serie": 48769, + "name": "1.4 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201730, + "fields": { + "id_car_serie": 48769, + "name": "1.5 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201740, + "fields": { + "id_car_serie": 48772, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201741, + "fields": { + "id_car_serie": 48772, + "name": "1.0 CVT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201742, + "fields": { + "id_car_serie": 48772, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201743, + "fields": { + "id_car_serie": 48772, + "name": "1.3 CVT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201744, + "fields": { + "id_car_serie": 48772, + "name": "1.5 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201745, + "fields": { + "id_car_serie": 48773, + "name": "1.0 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201746, + "fields": { + "id_car_serie": 48773, + "name": "1.0 CVT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201747, + "fields": { + "id_car_serie": 48773, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201748, + "fields": { + "id_car_serie": 48773, + "name": "1.3 CVT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201749, + "fields": { + "id_car_serie": 48774, + "name": "1.0 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201750, + "fields": { + "id_car_serie": 48774, + "name": "1.0 CVT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201751, + "fields": { + "id_car_serie": 48774, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201752, + "fields": { + "id_car_serie": 48774, + "name": "1.3 CVT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201760, + "fields": { + "id_car_serie": 48778, + "name": "0.9 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201761, + "fields": { + "id_car_serie": 48779, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201762, + "fields": { + "id_car_serie": 48779, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201763, + "fields": { + "id_car_serie": 48779, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201764, + "fields": { + "id_car_serie": 48779, + "name": "3.0 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201765, + "fields": { + "id_car_serie": 48779, + "name": "3.0 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201766, + "fields": { + "id_car_serie": 48781, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201767, + "fields": { + "id_car_serie": 48781, + "name": "1.2 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201768, + "fields": { + "id_car_serie": 48781, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201769, + "fields": { + "id_car_serie": 48781, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201770, + "fields": { + "id_car_serie": 48781, + "name": "1.4 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201771, + "fields": { + "id_car_serie": 48781, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201772, + "fields": { + "id_car_serie": 48781, + "name": "1.5 D MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201773, + "fields": { + "id_car_serie": 48781, + "name": "1.5 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201774, + "fields": { + "id_car_serie": 48781, + "name": "1.6 SR MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201775, + "fields": { + "id_car_serie": 48782, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201776, + "fields": { + "id_car_serie": 48782, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201777, + "fields": { + "id_car_serie": 48786, + "name": "0.7 CVT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201778, + "fields": { + "id_car_serie": 48786, + "name": "0.7 CVT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201779, + "fields": { + "id_car_serie": 48786, + "name": "0.7 turbo CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201780, + "fields": { + "id_car_serie": 48786, + "name": "0.7 turbo CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201781, + "fields": { + "id_car_serie": 48788, + "name": "1.5 Turbo dCi MT 7seat (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201782, + "fields": { + "id_car_serie": 48788, + "name": "1.5 Turbo dCi MT 5seat (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201783, + "fields": { + "id_car_serie": 48788, + "name": "1.6 AT 7seat (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201785, + "fields": { + "id_car_serie": 48790, + "name": "0.7 T 4WD AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201786, + "fields": { + "id_car_serie": 48790, + "name": "0.7 T AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201787, + "fields": { + "id_car_serie": 48791, + "name": "0.7 4WD AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201788, + "fields": { + "id_car_serie": 48791, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201789, + "fields": { + "id_car_serie": 48792, + "name": "2.7 TD 4WD AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201790, + "fields": { + "id_car_serie": 48792, + "name": "2.7 TD 4WD MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201791, + "fields": { + "id_car_serie": 48792, + "name": "3.2 TD 4WD AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201792, + "fields": { + "id_car_serie": 48792, + "name": "3.2 TD MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201793, + "fields": { + "id_car_serie": 48792, + "name": "3.3 4WD MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201794, + "fields": { + "id_car_serie": 48793, + "name": "3.0 Di MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201795, + "fields": { + "id_car_serie": 48793, + "name": "4.2 D MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201796, + "fields": { + "id_car_serie": 48793, + "name": "4.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201797, + "fields": { + "id_car_serie": 48794, + "name": "2.4 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201798, + "fields": { + "id_car_serie": 48794, + "name": "3.3 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201799, + "fields": { + "id_car_serie": 48794, + "name": "3.2 D MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201800, + "fields": { + "id_car_serie": 48795, + "name": "2.8 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201801, + "fields": { + "id_car_serie": 48795, + "name": "3.0 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201802, + "fields": { + "id_car_serie": 48796, + "name": "2.8 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201803, + "fields": { + "id_car_serie": 48796, + "name": "3.3 D MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201804, + "fields": { + "id_car_serie": 48797, + "name": "4.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201805, + "fields": { + "id_car_serie": 48798, + "name": "4.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201806, + "fields": { + "id_car_serie": 48799, + "name": "2.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201807, + "fields": { + "id_car_serie": 48799, + "name": "3.1 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201808, + "fields": { + "id_car_serie": 48799, + "name": "3.4 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201809, + "fields": { + "id_car_serie": 48800, + "name": "2.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201810, + "fields": { + "id_car_serie": 48800, + "name": "3.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201811, + "fields": { + "id_car_serie": 48801, + "name": "2.2 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201812, + "fields": { + "id_car_serie": 48801, + "name": "2.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201813, + "fields": { + "id_car_serie": 48801, + "name": "3.1 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201814, + "fields": { + "id_car_serie": 48801, + "name": "3.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201815, + "fields": { + "id_car_serie": 48802, + "name": "2.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201816, + "fields": { + "id_car_serie": 48802, + "name": "3.1 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201817, + "fields": { + "id_car_serie": 48802, + "name": "3.4 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201818, + "fields": { + "id_car_serie": 48803, + "name": "2.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201819, + "fields": { + "id_car_serie": 48803, + "name": "3.1 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201820, + "fields": { + "id_car_serie": 48803, + "name": "3.4 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201821, + "fields": { + "id_car_serie": 48804, + "name": "2.3 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201822, + "fields": { + "id_car_serie": 48804, + "name": "2.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201823, + "fields": { + "id_car_serie": 48804, + "name": "3.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201824, + "fields": { + "id_car_serie": 48805, + "name": "2.3 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201825, + "fields": { + "id_car_serie": 48805, + "name": "2.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201826, + "fields": { + "id_car_serie": 48805, + "name": "3.3 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201828, + "fields": { + "id_car_serie": 48814, + "name": "1.2 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201829, + "fields": { + "id_car_serie": 48814, + "name": "1.3 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201830, + "fields": { + "id_car_serie": 48814, + "name": "1.6 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201831, + "fields": { + "id_car_serie": 48814, + "name": "1.9 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201832, + "fields": { + "id_car_serie": 48814, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201833, + "fields": { + "id_car_serie": 7281, + "name": "2.0 CDTI Biturbo ecoFLEX MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201834, + "fields": { + "id_car_serie": 48819, + "name": "1.4 Turbo AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201835, + "fields": { + "id_car_serie": 48819, + "name": "1.4 Turbo MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201836, + "fields": { + "id_car_serie": 48819, + "name": "1.4 ecoFLEX MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201837, + "fields": { + "id_car_serie": 48819, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201838, + "fields": { + "id_car_serie": 48819, + "name": "1.4 Turbo ecoFLEX MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201839, + "fields": { + "id_car_serie": 48819, + "name": "1.4 Turbo MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201840, + "fields": { + "id_car_serie": 48819, + "name": "1.4 Turbo ecoFLEX MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201841, + "fields": { + "id_car_serie": 48819, + "name": "1.6 Turbo AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201842, + "fields": { + "id_car_serie": 48819, + "name": "1.6 Turbo ecoFLEX MT (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201843, + "fields": { + "id_car_serie": 48819, + "name": "1.6 SIDI Turbo ecoFLEX MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201844, + "fields": { + "id_car_serie": 48819, + "name": "1.6 Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201845, + "fields": { + "id_car_serie": 48819, + "name": "1.7 CDTI ecoFLEX MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201846, + "fields": { + "id_car_serie": 48819, + "name": "1.7 CDTI ecoFLEX A+ MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201847, + "fields": { + "id_car_serie": 48819, + "name": "1.7 CDTI ecoFLEX MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201848, + "fields": { + "id_car_serie": 48819, + "name": "1.7 CDTI ecoFLEX A+ MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201849, + "fields": { + "id_car_serie": 48819, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201850, + "fields": { + "id_car_serie": 48819, + "name": "2.0 CDTI AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201851, + "fields": { + "id_car_serie": 48819, + "name": "2.0 CDTI AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201852, + "fields": { + "id_car_serie": 48819, + "name": "2.0 CDTI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201853, + "fields": { + "id_car_serie": 48819, + "name": "2.0 CDTI ecoFLEX MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201854, + "fields": { + "id_car_serie": 48820, + "name": "2.0 Turbo MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201855, + "fields": { + "id_car_serie": 48821, + "name": "2.0 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201856, + "fields": { + "id_car_serie": 48821, + "name": "2.0 Turbo MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201857, + "fields": { + "id_car_serie": 48822, + "name": "1.6 Twinport MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201858, + "fields": { + "id_car_serie": 48822, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201859, + "fields": { + "id_car_serie": 48822, + "name": "2.0 Turbo MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201860, + "fields": { + "id_car_serie": 48822, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201861, + "fields": { + "id_car_serie": 48822, + "name": "2.2 DTi MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201862, + "fields": { + "id_car_serie": 48822, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201863, + "fields": { + "id_car_serie": 48824, + "name": "2.0 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201865, + "fields": { + "id_car_serie": 48825, + "name": "1.4 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201866, + "fields": { + "id_car_serie": 48825, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201867, + "fields": { + "id_car_serie": 48825, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201868, + "fields": { + "id_car_serie": 48825, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201869, + "fields": { + "id_car_serie": 48825, + "name": "1.6 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201870, + "fields": { + "id_car_serie": 48825, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201871, + "fields": { + "id_car_serie": 48825, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201872, + "fields": { + "id_car_serie": 48825, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201873, + "fields": { + "id_car_serie": 48825, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201874, + "fields": { + "id_car_serie": 48825, + "name": "1.6 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201875, + "fields": { + "id_car_serie": 48825, + "name": "1.7 TD MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201876, + "fields": { + "id_car_serie": 48825, + "name": "1.7 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201877, + "fields": { + "id_car_serie": 48825, + "name": "1.7 TDS MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201878, + "fields": { + "id_car_serie": 48825, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201879, + "fields": { + "id_car_serie": 48825, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201880, + "fields": { + "id_car_serie": 48825, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201881, + "fields": { + "id_car_serie": 48825, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201882, + "fields": { + "id_car_serie": 48826, + "name": "1.4 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201883, + "fields": { + "id_car_serie": 48826, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201884, + "fields": { + "id_car_serie": 48826, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201885, + "fields": { + "id_car_serie": 48826, + "name": "1.6 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201886, + "fields": { + "id_car_serie": 48826, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201887, + "fields": { + "id_car_serie": 48826, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201888, + "fields": { + "id_car_serie": 48826, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201889, + "fields": { + "id_car_serie": 48826, + "name": "1.6 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201890, + "fields": { + "id_car_serie": 48826, + "name": "1.7 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201891, + "fields": { + "id_car_serie": 48826, + "name": "1.7 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201892, + "fields": { + "id_car_serie": 48826, + "name": "1.7 TDS MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201893, + "fields": { + "id_car_serie": 48826, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201894, + "fields": { + "id_car_serie": 48826, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201895, + "fields": { + "id_car_serie": 48827, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201896, + "fields": { + "id_car_serie": 48827, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201897, + "fields": { + "id_car_serie": 48827, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201898, + "fields": { + "id_car_serie": 48827, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201899, + "fields": { + "id_car_serie": 48827, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201900, + "fields": { + "id_car_serie": 48827, + "name": "2.0 T MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201901, + "fields": { + "id_car_serie": 48827, + "name": "2.0 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201902, + "fields": { + "id_car_serie": 48827, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201903, + "fields": { + "id_car_serie": 48827, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201904, + "fields": { + "id_car_serie": 48828, + "name": "1.3 CDTI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201905, + "fields": { + "id_car_serie": 48828, + "name": "1.3 CDTI Easytronic (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201906, + "fields": { + "id_car_serie": 48828, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201907, + "fields": { + "id_car_serie": 48828, + "name": "1.6 CNG MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201908, + "fields": { + "id_car_serie": 48828, + "name": "1.7 CDTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201909, + "fields": { + "id_car_serie": 48829, + "name": "1.3 CDTI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201910, + "fields": { + "id_car_serie": 48829, + "name": "1.3 CDTI Easytronic (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201911, + "fields": { + "id_car_serie": 48829, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201912, + "fields": { + "id_car_serie": 48829, + "name": "1.6 CNG MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201913, + "fields": { + "id_car_serie": 48829, + "name": "1.7 CDTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201914, + "fields": { + "id_car_serie": 48830, + "name": "1.3 CDTI MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201915, + "fields": { + "id_car_serie": 48830, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201916, + "fields": { + "id_car_serie": 48830, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201917, + "fields": { + "id_car_serie": 48830, + "name": "1.7 DTI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201918, + "fields": { + "id_car_serie": 48830, + "name": "1.7 DI MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201929, + "fields": { + "id_car_serie": 48832, + "name": "1.6 Turbo MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201930, + "fields": { + "id_car_serie": 48832, + "name": "1.6 Turbo MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201939, + "fields": { + "id_car_serie": 48834, + "name": "1.6 T MT (192 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201941, + "fields": { + "id_car_serie": 8306, + "name": "1.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201952, + "fields": { + "id_car_serie": 48842, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201953, + "fields": { + "id_car_serie": 48842, + "name": "1.6i MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201954, + "fields": { + "id_car_serie": 48852, + "name": "2.8 Turbo AT 4x4 (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201955, + "fields": { + "id_car_serie": 48852, + "name": "2.8 Turbo MT 4x4 (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201956, + "fields": { + "id_car_serie": 48853, + "name": "2.8 Turbo AT 4x4 (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201957, + "fields": { + "id_car_serie": 48853, + "name": "2.8 Turbo MT 4x4 (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201958, + "fields": { + "id_car_serie": 48854, + "name": "2.8 Turbo AT 4x4 (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201959, + "fields": { + "id_car_serie": 48854, + "name": "2.8 Turbo MT 4x4 (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201963, + "fields": { + "id_car_serie": 48863, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201964, + "fields": { + "id_car_serie": 48873, + "name": "1.6 Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201965, + "fields": { + "id_car_serie": 48876, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201966, + "fields": { + "id_car_serie": 48876, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201967, + "fields": { + "id_car_serie": 48876, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201968, + "fields": { + "id_car_serie": 48876, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201969, + "fields": { + "id_car_serie": 48876, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201970, + "fields": { + "id_car_serie": 48876, + "name": "2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201971, + "fields": { + "id_car_serie": 48876, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201972, + "fields": { + "id_car_serie": 48876, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201973, + "fields": { + "id_car_serie": 48876, + "name": "2.3 TD AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201974, + "fields": { + "id_car_serie": 48876, + "name": "2.3 TD AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201975, + "fields": { + "id_car_serie": 48876, + "name": "2.3 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201976, + "fields": { + "id_car_serie": 48876, + "name": "2.3 TD MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201977, + "fields": { + "id_car_serie": 48876, + "name": "2.3 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201978, + "fields": { + "id_car_serie": 48876, + "name": "2.4 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201979, + "fields": { + "id_car_serie": 48876, + "name": "2.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201980, + "fields": { + "id_car_serie": 48876, + "name": "3.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201981, + "fields": { + "id_car_serie": 48876, + "name": "3.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201982, + "fields": { + "id_car_serie": 48877, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201983, + "fields": { + "id_car_serie": 48877, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201984, + "fields": { + "id_car_serie": 48877, + "name": "1.8 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201985, + "fields": { + "id_car_serie": 48877, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201986, + "fields": { + "id_car_serie": 48877, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201987, + "fields": { + "id_car_serie": 48877, + "name": "2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201988, + "fields": { + "id_car_serie": 48877, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201989, + "fields": { + "id_car_serie": 48877, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201990, + "fields": { + "id_car_serie": 48877, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201991, + "fields": { + "id_car_serie": 48877, + "name": "2.3 TD AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201992, + "fields": { + "id_car_serie": 48877, + "name": "2.3 TD AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201993, + "fields": { + "id_car_serie": 48877, + "name": "2.3 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201994, + "fields": { + "id_car_serie": 48877, + "name": "2.3 TD MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201995, + "fields": { + "id_car_serie": 48877, + "name": "2.3 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201996, + "fields": { + "id_car_serie": 48877, + "name": "2.4 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201997, + "fields": { + "id_car_serie": 48877, + "name": "2.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201998, + "fields": { + "id_car_serie": 48877, + "name": "3.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 201999, + "fields": { + "id_car_serie": 48877, + "name": "3.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202000, + "fields": { + "id_car_serie": 48888, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202001, + "fields": { + "id_car_serie": 48889, + "name": "2.8 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202002, + "fields": { + "id_car_serie": 48889, + "name": "2.8 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202003, + "fields": { + "id_car_serie": 48889, + "name": "2.8 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202004, + "fields": { + "id_car_serie": 48890, + "name": "1.6 Twinport MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202005, + "fields": { + "id_car_serie": 48890, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202006, + "fields": { + "id_car_serie": 48890, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202007, + "fields": { + "id_car_serie": 48890, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202008, + "fields": { + "id_car_serie": 48890, + "name": "1.8 Easytronic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202009, + "fields": { + "id_car_serie": 48890, + "name": "1.9 CDTi AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202010, + "fields": { + "id_car_serie": 48890, + "name": "1.9 CDTi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202011, + "fields": { + "id_car_serie": 48890, + "name": "1.9 CDTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202012, + "fields": { + "id_car_serie": 48890, + "name": "1.9 CDTi MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202013, + "fields": { + "id_car_serie": 48890, + "name": "2.0 Turbo MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202014, + "fields": { + "id_car_serie": 48890, + "name": "2.2 direct AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202015, + "fields": { + "id_car_serie": 48890, + "name": "2.2 direct 6MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202016, + "fields": { + "id_car_serie": 48890, + "name": "2.2 direct 5MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202017, + "fields": { + "id_car_serie": 48890, + "name": "2.8 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202018, + "fields": { + "id_car_serie": 48890, + "name": "2.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202019, + "fields": { + "id_car_serie": 48890, + "name": "2.8 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202020, + "fields": { + "id_car_serie": 48890, + "name": "2.8 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202021, + "fields": { + "id_car_serie": 48890, + "name": "3.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202022, + "fields": { + "id_car_serie": 48890, + "name": "3.0 CDTi MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202023, + "fields": { + "id_car_serie": 48891, + "name": "2.5 MT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202024, + "fields": { + "id_car_serie": 48892, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202025, + "fields": { + "id_car_serie": 48892, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202026, + "fields": { + "id_car_serie": 48892, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202027, + "fields": { + "id_car_serie": 48892, + "name": "1.7 TD MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202028, + "fields": { + "id_car_serie": 48892, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202029, + "fields": { + "id_car_serie": 48892, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202030, + "fields": { + "id_car_serie": 48892, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202031, + "fields": { + "id_car_serie": 48892, + "name": "2.0 DI MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202032, + "fields": { + "id_car_serie": 48892, + "name": "2.0 DTI MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202033, + "fields": { + "id_car_serie": 48892, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202034, + "fields": { + "id_car_serie": 48892, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202035, + "fields": { + "id_car_serie": 48892, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202036, + "fields": { + "id_car_serie": 48893, + "name": "2.5 MT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202037, + "fields": { + "id_car_serie": 48894, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202038, + "fields": { + "id_car_serie": 48894, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202039, + "fields": { + "id_car_serie": 48894, + "name": "1.7 TD MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202040, + "fields": { + "id_car_serie": 48894, + "name": "1.7 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202041, + "fields": { + "id_car_serie": 48894, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202042, + "fields": { + "id_car_serie": 48894, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202043, + "fields": { + "id_car_serie": 48894, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202044, + "fields": { + "id_car_serie": 48894, + "name": "2.0 GT MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202045, + "fields": { + "id_car_serie": 48894, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202046, + "fields": { + "id_car_serie": 48895, + "name": "1.6 CNG MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202047, + "fields": { + "id_car_serie": 48895, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202048, + "fields": { + "id_car_serie": 48895, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202049, + "fields": { + "id_car_serie": 48895, + "name": "1.8 Easytronic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202050, + "fields": { + "id_car_serie": 48895, + "name": "1.9 CDTI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202051, + "fields": { + "id_car_serie": 48895, + "name": "1.9 CDTI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202052, + "fields": { + "id_car_serie": 48895, + "name": "1.9 CDTI MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202053, + "fields": { + "id_car_serie": 48895, + "name": "1.9 CDTI Sequential (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202054, + "fields": { + "id_car_serie": 48895, + "name": "1.9 CDTI Sequential (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202055, + "fields": { + "id_car_serie": 48895, + "name": "2.0 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202056, + "fields": { + "id_car_serie": 48895, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202057, + "fields": { + "id_car_serie": 48895, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202058, + "fields": { + "id_car_serie": 48896, + "name": "2.0 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202059, + "fields": { + "id_car_serie": 48897, + "name": "2.0 Turbo MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202060, + "fields": { + "id_car_serie": 48898, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202061, + "fields": { + "id_car_serie": 48898, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202062, + "fields": { + "id_car_serie": 48898, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202063, + "fields": { + "id_car_serie": 48898, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202064, + "fields": { + "id_car_serie": 48898, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202065, + "fields": { + "id_car_serie": 48898, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202066, + "fields": { + "id_car_serie": 48898, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202067, + "fields": { + "id_car_serie": 48898, + "name": "1.6 AT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202068, + "fields": { + "id_car_serie": 48898, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202069, + "fields": { + "id_car_serie": 48898, + "name": "1.8 TD MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202070, + "fields": { + "id_car_serie": 48898, + "name": "1.8 TD MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202071, + "fields": { + "id_car_serie": 48899, + "name": "2.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202072, + "fields": { + "id_car_serie": 48900, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202073, + "fields": { + "id_car_serie": 48900, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202074, + "fields": { + "id_car_serie": 48900, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202075, + "fields": { + "id_car_serie": 48900, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202076, + "fields": { + "id_car_serie": 48901, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202077, + "fields": { + "id_car_serie": 48901, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202078, + "fields": { + "id_car_serie": 48901, + "name": "1.4 HDi MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202079, + "fields": { + "id_car_serie": 48901, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202080, + "fields": { + "id_car_serie": 48901, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202081, + "fields": { + "id_car_serie": 48901, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202082, + "fields": { + "id_car_serie": 48901, + "name": "1.6 HDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202083, + "fields": { + "id_car_serie": 48901, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202084, + "fields": { + "id_car_serie": 48901, + "name": "2.0 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202085, + "fields": { + "id_car_serie": 48901, + "name": "2.0 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202086, + "fields": { + "id_car_serie": 48902, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202087, + "fields": { + "id_car_serie": 48902, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202088, + "fields": { + "id_car_serie": 48902, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202089, + "fields": { + "id_car_serie": 48902, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202090, + "fields": { + "id_car_serie": 48902, + "name": "1.4 HDi MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202091, + "fields": { + "id_car_serie": 48902, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202092, + "fields": { + "id_car_serie": 48902, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202093, + "fields": { + "id_car_serie": 48902, + "name": "1.6 HDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202094, + "fields": { + "id_car_serie": 48902, + "name": "2.0 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202095, + "fields": { + "id_car_serie": 48903, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202096, + "fields": { + "id_car_serie": 48904, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202097, + "fields": { + "id_car_serie": 48904, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202098, + "fields": { + "id_car_serie": 48904, + "name": "1.4 HDi MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202099, + "fields": { + "id_car_serie": 48904, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202100, + "fields": { + "id_car_serie": 48904, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202101, + "fields": { + "id_car_serie": 48904, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202102, + "fields": { + "id_car_serie": 48904, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202103, + "fields": { + "id_car_serie": 48904, + "name": "1.9 D MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202104, + "fields": { + "id_car_serie": 48904, + "name": "2.0 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202105, + "fields": { + "id_car_serie": 48904, + "name": "2.0 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202106, + "fields": { + "id_car_serie": 48905, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202107, + "fields": { + "id_car_serie": 48905, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202108, + "fields": { + "id_car_serie": 48905, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202109, + "fields": { + "id_car_serie": 48905, + "name": "1.4 HDi MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202110, + "fields": { + "id_car_serie": 48905, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202111, + "fields": { + "id_car_serie": 48905, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202112, + "fields": { + "id_car_serie": 48905, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202113, + "fields": { + "id_car_serie": 48905, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202114, + "fields": { + "id_car_serie": 48905, + "name": "1.9 D MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202115, + "fields": { + "id_car_serie": 48905, + "name": "2.0 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202116, + "fields": { + "id_car_serie": 48907, + "name": "1.4 VTi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202117, + "fields": { + "id_car_serie": 48907, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202118, + "fields": { + "id_car_serie": 48907, + "name": "1.6 VTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202119, + "fields": { + "id_car_serie": 48907, + "name": "1.6 HDi MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202120, + "fields": { + "id_car_serie": 48907, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202121, + "fields": { + "id_car_serie": 48907, + "name": "1.6 HDi MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202122, + "fields": { + "id_car_serie": 48907, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202123, + "fields": { + "id_car_serie": 48907, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202124, + "fields": { + "id_car_serie": 48908, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202125, + "fields": { + "id_car_serie": 48908, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202126, + "fields": { + "id_car_serie": 48908, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202127, + "fields": { + "id_car_serie": 48909, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202128, + "fields": { + "id_car_serie": 48909, + "name": "1.4 HDi MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202129, + "fields": { + "id_car_serie": 48909, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202130, + "fields": { + "id_car_serie": 48910, + "name": "1.6 VTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202131, + "fields": { + "id_car_serie": 48910, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202132, + "fields": { + "id_car_serie": 48910, + "name": "1.6 THP MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202133, + "fields": { + "id_car_serie": 48910, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202134, + "fields": { + "id_car_serie": 48911, + "name": "1.6 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202135, + "fields": { + "id_car_serie": 48913, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202136, + "fields": { + "id_car_serie": 48913, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202137, + "fields": { + "id_car_serie": 48913, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202138, + "fields": { + "id_car_serie": 48913, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202139, + "fields": { + "id_car_serie": 48913, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202140, + "fields": { + "id_car_serie": 48913, + "name": "2.0 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202141, + "fields": { + "id_car_serie": 48913, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202142, + "fields": { + "id_car_serie": 48913, + "name": "2.0 HDi MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202143, + "fields": { + "id_car_serie": 48913, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202144, + "fields": { + "id_car_serie": 48913, + "name": "2.0 HDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202145, + "fields": { + "id_car_serie": 48915, + "name": "1.4 VTi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202146, + "fields": { + "id_car_serie": 48915, + "name": "1.6 VTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202147, + "fields": { + "id_car_serie": 48915, + "name": "1.6 THP AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202148, + "fields": { + "id_car_serie": 48915, + "name": "1.6 THP AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202149, + "fields": { + "id_car_serie": 48915, + "name": "1.6 THP MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202150, + "fields": { + "id_car_serie": 48915, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202151, + "fields": { + "id_car_serie": 48915, + "name": "1.6 THP MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202152, + "fields": { + "id_car_serie": 48915, + "name": "1.6 THP MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202154, + "fields": { + "id_car_serie": 48915, + "name": "1.6 HDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202155, + "fields": { + "id_car_serie": 48915, + "name": "2.0 HDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202156, + "fields": { + "id_car_serie": 48915, + "name": "2.0 HDi 2-Tronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202157, + "fields": { + "id_car_serie": 48916, + "name": "1.6 THP AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202158, + "fields": { + "id_car_serie": 48916, + "name": "1.6 THP AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202159, + "fields": { + "id_car_serie": 48916, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202160, + "fields": { + "id_car_serie": 48916, + "name": "1.6 THP MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202161, + "fields": { + "id_car_serie": 48916, + "name": "1.6 THP MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202162, + "fields": { + "id_car_serie": 48916, + "name": "2.0 HDi 2-Tronic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202163, + "fields": { + "id_car_serie": 48917, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202164, + "fields": { + "id_car_serie": 48917, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202165, + "fields": { + "id_car_serie": 48917, + "name": "1.8 TD MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202166, + "fields": { + "id_car_serie": 48917, + "name": "1.9 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202167, + "fields": { + "id_car_serie": 48917, + "name": "1.9 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202168, + "fields": { + "id_car_serie": 48917, + "name": "1.9 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202169, + "fields": { + "id_car_serie": 48917, + "name": "1.9 D MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202170, + "fields": { + "id_car_serie": 48918, + "name": "1.4 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202171, + "fields": { + "id_car_serie": 48918, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202172, + "fields": { + "id_car_serie": 48918, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202173, + "fields": { + "id_car_serie": 48918, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202174, + "fields": { + "id_car_serie": 48918, + "name": "1.8 TD MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202175, + "fields": { + "id_car_serie": 48918, + "name": "1.9 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202176, + "fields": { + "id_car_serie": 48918, + "name": "1.9 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202177, + "fields": { + "id_car_serie": 48918, + "name": "1.9 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202178, + "fields": { + "id_car_serie": 48918, + "name": "1.9 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202179, + "fields": { + "id_car_serie": 48918, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202180, + "fields": { + "id_car_serie": 48918, + "name": "1.9 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202181, + "fields": { + "id_car_serie": 48918, + "name": "1.9 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202182, + "fields": { + "id_car_serie": 48919, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202183, + "fields": { + "id_car_serie": 48919, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202184, + "fields": { + "id_car_serie": 48919, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202185, + "fields": { + "id_car_serie": 48919, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202186, + "fields": { + "id_car_serie": 48919, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202187, + "fields": { + "id_car_serie": 48919, + "name": "2.0 Turbo MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202188, + "fields": { + "id_car_serie": 48919, + "name": "2.1 TD MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202189, + "fields": { + "id_car_serie": 48919, + "name": "2.9 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202190, + "fields": { + "id_car_serie": 48919, + "name": "2.9 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202191, + "fields": { + "id_car_serie": 48920, + "name": "2.9 MT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202192, + "fields": { + "id_car_serie": 48921, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202193, + "fields": { + "id_car_serie": 48921, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202194, + "fields": { + "id_car_serie": 48921, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202195, + "fields": { + "id_car_serie": 48921, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202196, + "fields": { + "id_car_serie": 48921, + "name": "2.0 Turbo MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202197, + "fields": { + "id_car_serie": 48921, + "name": "2.1 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202198, + "fields": { + "id_car_serie": 48921, + "name": "3.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202199, + "fields": { + "id_car_serie": 48922, + "name": "1.6 HDi MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202200, + "fields": { + "id_car_serie": 48922, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202201, + "fields": { + "id_car_serie": 48922, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202202, + "fields": { + "id_car_serie": 48922, + "name": "2.2 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202203, + "fields": { + "id_car_serie": 48922, + "name": "2.9 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202204, + "fields": { + "id_car_serie": 48923, + "name": "1.8 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202205, + "fields": { + "id_car_serie": 48923, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202206, + "fields": { + "id_car_serie": 48923, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202207, + "fields": { + "id_car_serie": 48923, + "name": "2.2 AT GTI (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202208, + "fields": { + "id_car_serie": 48923, + "name": "2.2 T MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202209, + "fields": { + "id_car_serie": 48923, + "name": "2.2 MT STI (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202210, + "fields": { + "id_car_serie": 48923, + "name": "2.2 MT GTI (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202211, + "fields": { + "id_car_serie": 48923, + "name": "2.3 TD AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202212, + "fields": { + "id_car_serie": 48923, + "name": "2.3 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202213, + "fields": { + "id_car_serie": 48923, + "name": "2.3 D MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202214, + "fields": { + "id_car_serie": 48923, + "name": "2.5 TD AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202215, + "fields": { + "id_car_serie": 48923, + "name": "2.5 D AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202216, + "fields": { + "id_car_serie": 48923, + "name": "2.5 TD MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202217, + "fields": { + "id_car_serie": 48923, + "name": "2.5 D MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202218, + "fields": { + "id_car_serie": 48924, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202219, + "fields": { + "id_car_serie": 48924, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202220, + "fields": { + "id_car_serie": 48924, + "name": "2.2 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202221, + "fields": { + "id_car_serie": 48924, + "name": "2.5 D MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202222, + "fields": { + "id_car_serie": 48925, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202223, + "fields": { + "id_car_serie": 48925, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202224, + "fields": { + "id_car_serie": 48925, + "name": "2.0 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202225, + "fields": { + "id_car_serie": 48925, + "name": "2.1 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202226, + "fields": { + "id_car_serie": 48925, + "name": "2.1 D MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202227, + "fields": { + "id_car_serie": 48925, + "name": "3.0 MT SV (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202228, + "fields": { + "id_car_serie": 48925, + "name": "3.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202229, + "fields": { + "id_car_serie": 48926, + "name": "1.6 HDi MT L2 (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202232, + "fields": { + "id_car_serie": 48926, + "name": "1.6 HDi MT L1 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202233, + "fields": { + "id_car_serie": 48927, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202234, + "fields": { + "id_car_serie": 48927, + "name": "1.4 CNG MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202235, + "fields": { + "id_car_serie": 48927, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202236, + "fields": { + "id_car_serie": 48927, + "name": "1.6 HDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202237, + "fields": { + "id_car_serie": 48927, + "name": "1.9 HDi MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202238, + "fields": { + "id_car_serie": 48927, + "name": "2.0 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202243, + "fields": { + "id_car_serie": 48929, + "name": "2.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202244, + "fields": { + "id_car_serie": 48930, + "name": "2.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202245, + "fields": { + "id_car_serie": 48931, + "name": "2.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202246, + "fields": { + "id_car_serie": 48932, + "name": "3.4 AT AWD (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202247, + "fields": { + "id_car_serie": 48932, + "name": "3.4 AT FWD (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202248, + "fields": { + "id_car_serie": 48933, + "name": "3.8 AT (244 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202249, + "fields": { + "id_car_serie": 48933, + "name": "3.8 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202250, + "fields": { + "id_car_serie": 48934, + "name": "3.8 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202251, + "fields": { + "id_car_serie": 48934, + "name": "3.8 AT (244 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202252, + "fields": { + "id_car_serie": 48935, + "name": "3.8 AT SSEi (244 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202253, + "fields": { + "id_car_serie": 48936, + "name": "3.8 AT SE (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202254, + "fields": { + "id_car_serie": 48936, + "name": "3.8 AT SSE (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202255, + "fields": { + "id_car_serie": 48937, + "name": "3.8 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202256, + "fields": { + "id_car_serie": 48937, + "name": "3.8 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202257, + "fields": { + "id_car_serie": 48938, + "name": "3.8 MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202258, + "fields": { + "id_car_serie": 48938, + "name": "5.7 AT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202259, + "fields": { + "id_car_serie": 48938, + "name": "5.7 MT (329 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202260, + "fields": { + "id_car_serie": 48938, + "name": "5.7 MT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202261, + "fields": { + "id_car_serie": 48942, + "name": "5.0 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202262, + "fields": { + "id_car_serie": 48942, + "name": "5.0 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202263, + "fields": { + "id_car_serie": 48942, + "name": "5.0 MT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202264, + "fields": { + "id_car_serie": 48942, + "name": "5.7 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202265, + "fields": { + "id_car_serie": 48942, + "name": "5.7 MT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202266, + "fields": { + "id_car_serie": 48943, + "name": "3.8 Turbo AT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202267, + "fields": { + "id_car_serie": 48943, + "name": "3.8 Turbo MT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202268, + "fields": { + "id_car_serie": 48943, + "name": "5.0 MT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202269, + "fields": { + "id_car_serie": 48943, + "name": "5.0 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202270, + "fields": { + "id_car_serie": 48943, + "name": "5.0 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202271, + "fields": { + "id_car_serie": 48943, + "name": "5.0 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202272, + "fields": { + "id_car_serie": 48943, + "name": "5.0 MT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202273, + "fields": { + "id_car_serie": 48943, + "name": "5.7 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202274, + "fields": { + "id_car_serie": 48943, + "name": "5.7 MT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202275, + "fields": { + "id_car_serie": 48944, + "name": "3.8 Turbo AT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202276, + "fields": { + "id_car_serie": 48944, + "name": "3.8 Turbo MT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202277, + "fields": { + "id_car_serie": 48944, + "name": "5.0 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202278, + "fields": { + "id_car_serie": 48944, + "name": "5.0 MT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202279, + "fields": { + "id_car_serie": 48944, + "name": "5.0 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202280, + "fields": { + "id_car_serie": 48944, + "name": "5.0 MT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202281, + "fields": { + "id_car_serie": 48944, + "name": "5.0 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202282, + "fields": { + "id_car_serie": 48944, + "name": "5.7 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202283, + "fields": { + "id_car_serie": 48944, + "name": "5.7 MT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202284, + "fields": { + "id_car_serie": 48945, + "name": "5.0 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202285, + "fields": { + "id_car_serie": 48945, + "name": "5.0 MT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202286, + "fields": { + "id_car_serie": 48945, + "name": "5.0 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202287, + "fields": { + "id_car_serie": 48945, + "name": "5.7 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202288, + "fields": { + "id_car_serie": 48945, + "name": "5.7 MT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202289, + "fields": { + "id_car_serie": 48946, + "name": "5.0 AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202290, + "fields": { + "id_car_serie": 48946, + "name": "5.0 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202291, + "fields": { + "id_car_serie": 48946, + "name": "5.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202292, + "fields": { + "id_car_serie": 48946, + "name": "5.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202293, + "fields": { + "id_car_serie": 48946, + "name": "5.0 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202294, + "fields": { + "id_car_serie": 48946, + "name": "5.0 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202295, + "fields": { + "id_car_serie": 48946, + "name": "5.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202296, + "fields": { + "id_car_serie": 48946, + "name": "5.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202297, + "fields": { + "id_car_serie": 48947, + "name": "5.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202298, + "fields": { + "id_car_serie": 48947, + "name": "5.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202299, + "fields": { + "id_car_serie": 48947, + "name": "5.0 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202300, + "fields": { + "id_car_serie": 48947, + "name": "5.0 AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202301, + "fields": { + "id_car_serie": 48947, + "name": "5.0 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202302, + "fields": { + "id_car_serie": 48947, + "name": "5.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202303, + "fields": { + "id_car_serie": 48947, + "name": "5.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202304, + "fields": { + "id_car_serie": 48947, + "name": "5.0 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202305, + "fields": { + "id_car_serie": 48948, + "name": "2.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202306, + "fields": { + "id_car_serie": 48948, + "name": "2.5 AT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202307, + "fields": { + "id_car_serie": 48948, + "name": "2.5 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202308, + "fields": { + "id_car_serie": 48948, + "name": "2.5 5MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202309, + "fields": { + "id_car_serie": 48948, + "name": "2.5 4MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202310, + "fields": { + "id_car_serie": 48948, + "name": "2.5 5MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202311, + "fields": { + "id_car_serie": 48948, + "name": "2.5 5MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202312, + "fields": { + "id_car_serie": 48948, + "name": "2.5 4MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202313, + "fields": { + "id_car_serie": 48948, + "name": "2.5 4MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202314, + "fields": { + "id_car_serie": 48948, + "name": "2.8 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202315, + "fields": { + "id_car_serie": 48948, + "name": "2.8 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202316, + "fields": { + "id_car_serie": 48948, + "name": "2.8 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202317, + "fields": { + "id_car_serie": 48948, + "name": "2.8 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202318, + "fields": { + "id_car_serie": 48948, + "name": "2.8 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202319, + "fields": { + "id_car_serie": 48948, + "name": "2.8 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202320, + "fields": { + "id_car_serie": 48948, + "name": "5.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202321, + "fields": { + "id_car_serie": 48948, + "name": "5.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202322, + "fields": { + "id_car_serie": 48948, + "name": "5.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202323, + "fields": { + "id_car_serie": 48948, + "name": "5.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202324, + "fields": { + "id_car_serie": 48949, + "name": "4.9 Turbo MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202325, + "fields": { + "id_car_serie": 48949, + "name": "6.6 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202326, + "fields": { + "id_car_serie": 48949, + "name": "6.6 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202327, + "fields": { + "id_car_serie": 48949, + "name": "6.6 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202328, + "fields": { + "id_car_serie": 48949, + "name": "6.6 MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202329, + "fields": { + "id_car_serie": 48950, + "name": "6.6 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202330, + "fields": { + "id_car_serie": 48950, + "name": "6.6 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202331, + "fields": { + "id_car_serie": 48950, + "name": "6.6 MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202332, + "fields": { + "id_car_serie": 48950, + "name": "6.6 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202333, + "fields": { + "id_car_serie": 48951, + "name": "4.9 Turbo MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202334, + "fields": { + "id_car_serie": 48951, + "name": "6.6 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202335, + "fields": { + "id_car_serie": 48951, + "name": "6.6 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202336, + "fields": { + "id_car_serie": 48951, + "name": "6.6 MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202337, + "fields": { + "id_car_serie": 48951, + "name": "6.6 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202338, + "fields": { + "id_car_serie": 48952, + "name": "4.9 Turbo MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202339, + "fields": { + "id_car_serie": 48952, + "name": "5.0 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202340, + "fields": { + "id_car_serie": 48952, + "name": "5.0 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202341, + "fields": { + "id_car_serie": 48952, + "name": "6.6 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202342, + "fields": { + "id_car_serie": 48952, + "name": "6.6 MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202343, + "fields": { + "id_car_serie": 48953, + "name": "3.8 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202344, + "fields": { + "id_car_serie": 48953, + "name": "3.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202345, + "fields": { + "id_car_serie": 48953, + "name": "4.9 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202346, + "fields": { + "id_car_serie": 48953, + "name": "4.9 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202347, + "fields": { + "id_car_serie": 48953, + "name": "4.9 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202348, + "fields": { + "id_car_serie": 48953, + "name": "4.9 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202349, + "fields": { + "id_car_serie": 48953, + "name": "5.0 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202350, + "fields": { + "id_car_serie": 48953, + "name": "5.0 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202351, + "fields": { + "id_car_serie": 48954, + "name": "6.6 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202352, + "fields": { + "id_car_serie": 48954, + "name": "6.6 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202353, + "fields": { + "id_car_serie": 48954, + "name": "6.6 MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202354, + "fields": { + "id_car_serie": 48954, + "name": "6.6 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202355, + "fields": { + "id_car_serie": 48955, + "name": "3.8 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202356, + "fields": { + "id_car_serie": 48955, + "name": "3.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202357, + "fields": { + "id_car_serie": 48955, + "name": "4.9 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202358, + "fields": { + "id_car_serie": 48955, + "name": "4.9 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202359, + "fields": { + "id_car_serie": 48955, + "name": "4.9 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202360, + "fields": { + "id_car_serie": 48955, + "name": "4.9 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202361, + "fields": { + "id_car_serie": 48955, + "name": "5.0 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202362, + "fields": { + "id_car_serie": 48955, + "name": "5.0 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202363, + "fields": { + "id_car_serie": 48956, + "name": "3.8 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202364, + "fields": { + "id_car_serie": 48956, + "name": "3.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202365, + "fields": { + "id_car_serie": 48956, + "name": "4.9 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202366, + "fields": { + "id_car_serie": 48956, + "name": "4.9 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202367, + "fields": { + "id_car_serie": 48956, + "name": "4.9 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202368, + "fields": { + "id_car_serie": 48956, + "name": "4.9 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202369, + "fields": { + "id_car_serie": 48956, + "name": "5.0 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202370, + "fields": { + "id_car_serie": 48956, + "name": "5.0 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202371, + "fields": { + "id_car_serie": 48957, + "name": "6.6 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202372, + "fields": { + "id_car_serie": 48957, + "name": "6.6 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202373, + "fields": { + "id_car_serie": 48957, + "name": "6.6 MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202374, + "fields": { + "id_car_serie": 48957, + "name": "6.6 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202375, + "fields": { + "id_car_serie": 48958, + "name": "6.6 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202376, + "fields": { + "id_car_serie": 48958, + "name": "6.6 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202377, + "fields": { + "id_car_serie": 48958, + "name": "6.6 MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202378, + "fields": { + "id_car_serie": 48958, + "name": "6.6 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202379, + "fields": { + "id_car_serie": 48959, + "name": "5.0 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202380, + "fields": { + "id_car_serie": 48959, + "name": "5.0 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202381, + "fields": { + "id_car_serie": 48959, + "name": "5.7 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202382, + "fields": { + "id_car_serie": 48959, + "name": "5.7 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202383, + "fields": { + "id_car_serie": 48959, + "name": "6.6 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202384, + "fields": { + "id_car_serie": 48959, + "name": "6.6 MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202385, + "fields": { + "id_car_serie": 48960, + "name": "6.6 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202386, + "fields": { + "id_car_serie": 48960, + "name": "6.6 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202387, + "fields": { + "id_car_serie": 48960, + "name": "6.6 MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202388, + "fields": { + "id_car_serie": 48960, + "name": "6.6 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202389, + "fields": { + "id_car_serie": 48961, + "name": "6.6 Turbo Hydra-Matic (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202390, + "fields": { + "id_car_serie": 48961, + "name": "6.6 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202391, + "fields": { + "id_car_serie": 48961, + "name": "7.5 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202392, + "fields": { + "id_car_serie": 48961, + "name": "7.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202393, + "fields": { + "id_car_serie": 48962, + "name": "7.5 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202394, + "fields": { + "id_car_serie": 48962, + "name": "7.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202395, + "fields": { + "id_car_serie": 48963, + "name": "4.1 Turbo Hydra-Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202396, + "fields": { + "id_car_serie": 48963, + "name": "4.1 3MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202397, + "fields": { + "id_car_serie": 48963, + "name": "4.1 4MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202398, + "fields": { + "id_car_serie": 48963, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202399, + "fields": { + "id_car_serie": 48963, + "name": "5.7 3MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202400, + "fields": { + "id_car_serie": 48963, + "name": "5.7 4MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202401, + "fields": { + "id_car_serie": 48964, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202402, + "fields": { + "id_car_serie": 48964, + "name": "5.7 3MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202403, + "fields": { + "id_car_serie": 48964, + "name": "5.7 4MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202404, + "fields": { + "id_car_serie": 48964, + "name": "6.6 Turbo Hydra-Matic (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202405, + "fields": { + "id_car_serie": 48964, + "name": "6.6 3MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202406, + "fields": { + "id_car_serie": 48964, + "name": "6.6 4MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202407, + "fields": { + "id_car_serie": 48965, + "name": "6.6 Hydra-Matic (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202408, + "fields": { + "id_car_serie": 48965, + "name": "6.6 MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202409, + "fields": { + "id_car_serie": 48965, + "name": "7.5 Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202410, + "fields": { + "id_car_serie": 48965, + "name": "7.5 Hydra-Matic (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202411, + "fields": { + "id_car_serie": 48965, + "name": "7.5 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202412, + "fields": { + "id_car_serie": 48965, + "name": "7.5 MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202413, + "fields": { + "id_car_serie": 48966, + "name": "5.7 Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202414, + "fields": { + "id_car_serie": 48966, + "name": "5.7 Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202415, + "fields": { + "id_car_serie": 48966, + "name": "5.7 3MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202416, + "fields": { + "id_car_serie": 48966, + "name": "5.7 4MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202417, + "fields": { + "id_car_serie": 48966, + "name": "5.7 3MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202418, + "fields": { + "id_car_serie": 48966, + "name": "5.7 4MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202419, + "fields": { + "id_car_serie": 48966, + "name": "6.6 Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202420, + "fields": { + "id_car_serie": 48966, + "name": "6.6 Hydra-Matic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202421, + "fields": { + "id_car_serie": 48966, + "name": "6.6 3MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202422, + "fields": { + "id_car_serie": 48966, + "name": "6.6 4MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202423, + "fields": { + "id_car_serie": 48966, + "name": "6.6 3MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202424, + "fields": { + "id_car_serie": 48966, + "name": "6.6 4MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202425, + "fields": { + "id_car_serie": 48967, + "name": "5.7 Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202426, + "fields": { + "id_car_serie": 48967, + "name": "5.7 Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202427, + "fields": { + "id_car_serie": 48967, + "name": "5.7 3MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202428, + "fields": { + "id_car_serie": 48967, + "name": "5.7 3MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202429, + "fields": { + "id_car_serie": 48967, + "name": "5.7 4MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202430, + "fields": { + "id_car_serie": 48967, + "name": "5.7 4MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202431, + "fields": { + "id_car_serie": 48967, + "name": "6.6 Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202432, + "fields": { + "id_car_serie": 48967, + "name": "6.6 Hydra-Matic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202433, + "fields": { + "id_car_serie": 48967, + "name": "6.6 Hydra-Matic (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202434, + "fields": { + "id_car_serie": 48967, + "name": "6.6 4MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202435, + "fields": { + "id_car_serie": 48967, + "name": "6.6 3MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202436, + "fields": { + "id_car_serie": 48967, + "name": "6.6 3MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202437, + "fields": { + "id_car_serie": 48967, + "name": "6.6 4MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202438, + "fields": { + "id_car_serie": 48967, + "name": "6.6 4MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202439, + "fields": { + "id_car_serie": 48967, + "name": "6.6 3MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202440, + "fields": { + "id_car_serie": 48967, + "name": "7.5 Hydra-Matic (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202441, + "fields": { + "id_car_serie": 48967, + "name": "7.5 Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202442, + "fields": { + "id_car_serie": 48967, + "name": "7.5 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202443, + "fields": { + "id_car_serie": 48967, + "name": "7.5 3MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202444, + "fields": { + "id_car_serie": 48967, + "name": "7.5 4MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202445, + "fields": { + "id_car_serie": 48967, + "name": "7.5 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202446, + "fields": { + "id_car_serie": 48968, + "name": "6.6 Turbo Hydra-Matic (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202447, + "fields": { + "id_car_serie": 48968, + "name": "6.6 Hurst-Shifter MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202448, + "fields": { + "id_car_serie": 48968, + "name": "7.5 Hydra-Matic (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202449, + "fields": { + "id_car_serie": 48968, + "name": "7.5 Hydra-Matic (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202450, + "fields": { + "id_car_serie": 48968, + "name": "7.5 Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202451, + "fields": { + "id_car_serie": 48968, + "name": "7.5 Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202452, + "fields": { + "id_car_serie": 48968, + "name": "7.5 MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202453, + "fields": { + "id_car_serie": 48968, + "name": "7.5 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202454, + "fields": { + "id_car_serie": 48968, + "name": "7.5 MT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202455, + "fields": { + "id_car_serie": 48968, + "name": "7.5 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202456, + "fields": { + "id_car_serie": 48969, + "name": "5.7 Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202457, + "fields": { + "id_car_serie": 48969, + "name": "5.7 Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202459, + "fields": { + "id_car_serie": 48969, + "name": "5.7 Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202460, + "fields": { + "id_car_serie": 48969, + "name": "5.7 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202461, + "fields": { + "id_car_serie": 48969, + "name": "5.7 Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202462, + "fields": { + "id_car_serie": 48969, + "name": "5.7 MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202463, + "fields": { + "id_car_serie": 48969, + "name": "5.7 4MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202464, + "fields": { + "id_car_serie": 48969, + "name": "5.7 Heavy-Duty MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202467, + "fields": { + "id_car_serie": 48969, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202468, + "fields": { + "id_car_serie": 48969, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202469, + "fields": { + "id_car_serie": 48969, + "name": "5.7 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202470, + "fields": { + "id_car_serie": 48969, + "name": "5.7 3MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202471, + "fields": { + "id_car_serie": 48969, + "name": "6.6 Hydra-Matic (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202472, + "fields": { + "id_car_serie": 48969, + "name": "6.6 Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202473, + "fields": { + "id_car_serie": 48969, + "name": "6.6 Turbo Hydra-Matic (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202474, + "fields": { + "id_car_serie": 48969, + "name": "6.6 Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202475, + "fields": { + "id_car_serie": 48969, + "name": "6.6 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202476, + "fields": { + "id_car_serie": 48969, + "name": "6.6 Turbo Hydra-Matic (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202477, + "fields": { + "id_car_serie": 48969, + "name": "6.6 Heavy-Duty Hurst-Shifter MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202478, + "fields": { + "id_car_serie": 48969, + "name": "6.6 Heavy-Duty Hurst-Shifter MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202479, + "fields": { + "id_car_serie": 48969, + "name": "6.6 Hurst-Shifter MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202480, + "fields": { + "id_car_serie": 48969, + "name": "6.6 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202481, + "fields": { + "id_car_serie": 48969, + "name": "6.6 Hurst-Shifter MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202482, + "fields": { + "id_car_serie": 48969, + "name": "6.6 3MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202483, + "fields": { + "id_car_serie": 48969, + "name": "6.6 4MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202484, + "fields": { + "id_car_serie": 48969, + "name": "6.6 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202485, + "fields": { + "id_car_serie": 48969, + "name": "6.6 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202486, + "fields": { + "id_car_serie": 48969, + "name": "6.6 Heavy-Duty MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202487, + "fields": { + "id_car_serie": 48969, + "name": "7.5 AT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202488, + "fields": { + "id_car_serie": 48969, + "name": "7.5 Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202489, + "fields": { + "id_car_serie": 48969, + "name": "7.5 Hydra-Matic (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202490, + "fields": { + "id_car_serie": 48969, + "name": "7.5 Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202491, + "fields": { + "id_car_serie": 48969, + "name": "7.5 Hydra-Matic (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202492, + "fields": { + "id_car_serie": 48969, + "name": "7.5 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202493, + "fields": { + "id_car_serie": 48969, + "name": "7.5 Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202494, + "fields": { + "id_car_serie": 48969, + "name": "7.5 Heavy-Duty MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202495, + "fields": { + "id_car_serie": 48969, + "name": "7.5 3MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202496, + "fields": { + "id_car_serie": 48969, + "name": "7.5 4MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202497, + "fields": { + "id_car_serie": 48969, + "name": "7.5 4MT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202498, + "fields": { + "id_car_serie": 48969, + "name": "7.5 3MT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202499, + "fields": { + "id_car_serie": 48969, + "name": "7.5 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202500, + "fields": { + "id_car_serie": 48969, + "name": "7.5 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202501, + "fields": { + "id_car_serie": 48969, + "name": "7.5 Heavy-Duty MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202502, + "fields": { + "id_car_serie": 48969, + "name": "7.5 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202503, + "fields": { + "id_car_serie": 48969, + "name": "7.5 3MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202504, + "fields": { + "id_car_serie": 48969, + "name": "7.5 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202505, + "fields": { + "id_car_serie": 48970, + "name": "5.7 Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202506, + "fields": { + "id_car_serie": 48970, + "name": "5.7 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202507, + "fields": { + "id_car_serie": 48970, + "name": "5.7 Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202508, + "fields": { + "id_car_serie": 48970, + "name": "5.7 Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202509, + "fields": { + "id_car_serie": 48970, + "name": "5.7 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202510, + "fields": { + "id_car_serie": 48970, + "name": "5.7 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202511, + "fields": { + "id_car_serie": 48970, + "name": "5.7 Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202513, + "fields": { + "id_car_serie": 48970, + "name": "5.7 Turbo Hydra-Matic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202514, + "fields": { + "id_car_serie": 48970, + "name": "5.7 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202515, + "fields": { + "id_car_serie": 48970, + "name": "5.7 3MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202516, + "fields": { + "id_car_serie": 48970, + "name": "5.7 3MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202517, + "fields": { + "id_car_serie": 48970, + "name": "5.7 4MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202518, + "fields": { + "id_car_serie": 48970, + "name": "5.7 4MT (175 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202519, + "fields": { + "id_car_serie": 48970, + "name": "5.7 3MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202520, + "fields": { + "id_car_serie": 48970, + "name": "5.7 4MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202521, + "fields": { + "id_car_serie": 48970, + "name": "5.7 3MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202522, + "fields": { + "id_car_serie": 48970, + "name": "5.7 4MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202525, + "fields": { + "id_car_serie": 48970, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202526, + "fields": { + "id_car_serie": 48970, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202527, + "fields": { + "id_car_serie": 48970, + "name": "5.7 Heavy-Duty MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202528, + "fields": { + "id_car_serie": 48970, + "name": "6.6 Turbo Hydra-Matic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202529, + "fields": { + "id_car_serie": 48970, + "name": "6.6 AT (265 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202530, + "fields": { + "id_car_serie": 48970, + "name": "6.6 Hydra-Matic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202532, + "fields": { + "id_car_serie": 48970, + "name": "6.6 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202533, + "fields": { + "id_car_serie": 48970, + "name": "6.6 Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202534, + "fields": { + "id_car_serie": 48970, + "name": "6.6 4MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202535, + "fields": { + "id_car_serie": 48970, + "name": "6.6 4MT (265 hp)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202537, + "fields": { + "id_car_serie": 48970, + "name": "6.6 Heavy-Duty MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202538, + "fields": { + "id_car_serie": 48970, + "name": "6.6 3MT (265 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202540, + "fields": { + "id_car_serie": 48970, + "name": "6.6 3MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202541, + "fields": { + "id_car_serie": 48971, + "name": "4.1 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202542, + "fields": { + "id_car_serie": 48971, + "name": "4.1 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202543, + "fields": { + "id_car_serie": 48971, + "name": "4.1 3MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202544, + "fields": { + "id_car_serie": 48971, + "name": "4.1 4MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202545, + "fields": { + "id_car_serie": 48971, + "name": "4.1 3MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202546, + "fields": { + "id_car_serie": 48971, + "name": "4.1 4MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202547, + "fields": { + "id_car_serie": 48971, + "name": "5.8 AT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202548, + "fields": { + "id_car_serie": 48971, + "name": "5.8 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202549, + "fields": { + "id_car_serie": 48971, + "name": "5.8 4MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202550, + "fields": { + "id_car_serie": 48971, + "name": "5.8 4MT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202551, + "fields": { + "id_car_serie": 48971, + "name": "5.8 3MT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202552, + "fields": { + "id_car_serie": 48971, + "name": "5.8 3MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202553, + "fields": { + "id_car_serie": 48971, + "name": "6.6 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202554, + "fields": { + "id_car_serie": 48971, + "name": "6.6 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202555, + "fields": { + "id_car_serie": 48971, + "name": "6.6 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202556, + "fields": { + "id_car_serie": 48971, + "name": "6.6 3MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202557, + "fields": { + "id_car_serie": 48971, + "name": "6.6 3MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202558, + "fields": { + "id_car_serie": 48971, + "name": "6.6 4MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202559, + "fields": { + "id_car_serie": 48971, + "name": "6.6 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202560, + "fields": { + "id_car_serie": 48971, + "name": "6.6 4MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202561, + "fields": { + "id_car_serie": 48972, + "name": "6.6 MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202562, + "fields": { + "id_car_serie": 48973, + "name": "4.1 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202563, + "fields": { + "id_car_serie": 48973, + "name": "4.1 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202564, + "fields": { + "id_car_serie": 48973, + "name": "4.1 3MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202565, + "fields": { + "id_car_serie": 48973, + "name": "4.1 4MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202566, + "fields": { + "id_car_serie": 48973, + "name": "4.1 3MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202567, + "fields": { + "id_car_serie": 48973, + "name": "4.1 4MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202568, + "fields": { + "id_car_serie": 48973, + "name": "5.7 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202569, + "fields": { + "id_car_serie": 48973, + "name": "5.7 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202570, + "fields": { + "id_car_serie": 48973, + "name": "5.7 3MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202571, + "fields": { + "id_car_serie": 48973, + "name": "5.7 3MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202572, + "fields": { + "id_car_serie": 48973, + "name": "5.7 4MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202573, + "fields": { + "id_car_serie": 48973, + "name": "5.7 4MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202574, + "fields": { + "id_car_serie": 48973, + "name": "6.6 Turbo Hydra-Matic (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202575, + "fields": { + "id_car_serie": 48973, + "name": "6.6 Turbo Hydra-Matic (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202576, + "fields": { + "id_car_serie": 48973, + "name": "6.6 Heavy-Duty MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202577, + "fields": { + "id_car_serie": 48973, + "name": "6.6 Heavy-Duty 4MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202578, + "fields": { + "id_car_serie": 48973, + "name": "6.6 MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202579, + "fields": { + "id_car_serie": 48973, + "name": "6.6 Heavy-Duty 3MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202580, + "fields": { + "id_car_serie": 48973, + "name": "6.6 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202581, + "fields": { + "id_car_serie": 48974, + "name": "4.1 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202582, + "fields": { + "id_car_serie": 48974, + "name": "4.1 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202583, + "fields": { + "id_car_serie": 48974, + "name": "4.1 3MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202584, + "fields": { + "id_car_serie": 48974, + "name": "4.1 4MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202585, + "fields": { + "id_car_serie": 48974, + "name": "4.1 4MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202586, + "fields": { + "id_car_serie": 48974, + "name": "4.1 3MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202587, + "fields": { + "id_car_serie": 48974, + "name": "5.7 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202588, + "fields": { + "id_car_serie": 48974, + "name": "5.7 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202589, + "fields": { + "id_car_serie": 48974, + "name": "5.7 3MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202590, + "fields": { + "id_car_serie": 48974, + "name": "5.7 3MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202591, + "fields": { + "id_car_serie": 48974, + "name": "5.7 4MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202592, + "fields": { + "id_car_serie": 48974, + "name": "5.7 4MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202593, + "fields": { + "id_car_serie": 48974, + "name": "6.6 Turbo Hydra-Matic (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202594, + "fields": { + "id_car_serie": 48974, + "name": "6.6 Turbo Hydra-Matic (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202595, + "fields": { + "id_car_serie": 48974, + "name": "6.6 Heavy-Duty MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202596, + "fields": { + "id_car_serie": 48974, + "name": "6.6 MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202597, + "fields": { + "id_car_serie": 48974, + "name": "6.6 Heavy-Duty 4MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202598, + "fields": { + "id_car_serie": 48974, + "name": "6.6 Heavy-Duty 3MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202599, + "fields": { + "id_car_serie": 48974, + "name": "6.6 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202600, + "fields": { + "id_car_serie": 48975, + "name": "3.8 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202601, + "fields": { + "id_car_serie": 48975, + "name": "3.8 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202602, + "fields": { + "id_car_serie": 48975, + "name": "3.8 3MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202603, + "fields": { + "id_car_serie": 48975, + "name": "3.8 4MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202604, + "fields": { + "id_car_serie": 48975, + "name": "3.8 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202605, + "fields": { + "id_car_serie": 48975, + "name": "5.3 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202606, + "fields": { + "id_car_serie": 48975, + "name": "5.3 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202607, + "fields": { + "id_car_serie": 48975, + "name": "5.3 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202608, + "fields": { + "id_car_serie": 48975, + "name": "5.3 3MT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202609, + "fields": { + "id_car_serie": 48975, + "name": "5.3 4MT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202610, + "fields": { + "id_car_serie": 48975, + "name": "5.3 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202611, + "fields": { + "id_car_serie": 48975, + "name": "6.6 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202612, + "fields": { + "id_car_serie": 48975, + "name": "6.6 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202613, + "fields": { + "id_car_serie": 48975, + "name": "6.6 Heavy-Duty MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202614, + "fields": { + "id_car_serie": 48976, + "name": "3.8 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202615, + "fields": { + "id_car_serie": 48976, + "name": "3.8 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202616, + "fields": { + "id_car_serie": 48976, + "name": "3.8 3MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202617, + "fields": { + "id_car_serie": 48976, + "name": "3.8 4MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202618, + "fields": { + "id_car_serie": 48976, + "name": "3.8 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202619, + "fields": { + "id_car_serie": 48976, + "name": "5.3 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202620, + "fields": { + "id_car_serie": 48976, + "name": "5.3 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202621, + "fields": { + "id_car_serie": 48976, + "name": "5.3 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202622, + "fields": { + "id_car_serie": 48976, + "name": "5.3 3MT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202623, + "fields": { + "id_car_serie": 48976, + "name": "5.3 4MT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202624, + "fields": { + "id_car_serie": 48976, + "name": "5.3 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202625, + "fields": { + "id_car_serie": 48976, + "name": "6.6 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202626, + "fields": { + "id_car_serie": 48976, + "name": "6.6 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202627, + "fields": { + "id_car_serie": 48976, + "name": "6.6 Heavy Duty MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202628, + "fields": { + "id_car_serie": 48977, + "name": "5.3 AT (307 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202629, + "fields": { + "id_car_serie": 48978, + "name": "3.1 AT SE (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202630, + "fields": { + "id_car_serie": 48978, + "name": "3.8 AT GT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202631, + "fields": { + "id_car_serie": 48978, + "name": "3.8 AT GT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202632, + "fields": { + "id_car_serie": 48978, + "name": "3.8 AT GTP (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202633, + "fields": { + "id_car_serie": 48979, + "name": "2.2 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202634, + "fields": { + "id_car_serie": 48979, + "name": "2.2 MT Ecotec (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202635, + "fields": { + "id_car_serie": 48979, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202636, + "fields": { + "id_car_serie": 48980, + "name": "2.2 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202637, + "fields": { + "id_car_serie": 48980, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202638, + "fields": { + "id_car_serie": 48981, + "name": "2.2 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202639, + "fields": { + "id_car_serie": 48981, + "name": "2.2 MT Ecotec (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202640, + "fields": { + "id_car_serie": 48981, + "name": "2.4 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202641, + "fields": { + "id_car_serie": 48982, + "name": "2.2 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202642, + "fields": { + "id_car_serie": 48982, + "name": "2.3 MT GT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202643, + "fields": { + "id_car_serie": 48982, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202644, + "fields": { + "id_car_serie": 48983, + "name": "2.2 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202645, + "fields": { + "id_car_serie": 48983, + "name": "2.2 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202646, + "fields": { + "id_car_serie": 48983, + "name": "2.3 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202647, + "fields": { + "id_car_serie": 48983, + "name": "2.4 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202648, + "fields": { + "id_car_serie": 48984, + "name": "2.2 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202649, + "fields": { + "id_car_serie": 48984, + "name": "2.2 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202650, + "fields": { + "id_car_serie": 48984, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202651, + "fields": { + "id_car_serie": 48985, + "name": "2.3 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202652, + "fields": { + "id_car_serie": 48986, + "name": "3.1 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202653, + "fields": { + "id_car_serie": 48986, + "name": "3.8 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202654, + "fields": { + "id_car_serie": 48987, + "name": "3.8 PDK AWD (520 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202655, + "fields": { + "id_car_serie": 48987, + "name": "S 3.8 PDK AWD (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202656, + "fields": { + "id_car_serie": 48988, + "name": "3.8 PDK (475 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202657, + "fields": { + "id_car_serie": 48989, + "name": "3.6 MT (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202658, + "fields": { + "id_car_serie": 48989, + "name": "RS 3.6 MT (620 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202659, + "fields": { + "id_car_serie": 48990, + "name": "4 3.6 MT AWD (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202660, + "fields": { + "id_car_serie": 48990, + "name": "4 3.6 PDK AWD (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202661, + "fields": { + "id_car_serie": 48990, + "name": "4S 3.8 MT AWD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202662, + "fields": { + "id_car_serie": 48990, + "name": "4S 3.8 PDK AWD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202663, + "fields": { + "id_car_serie": 48991, + "name": "RS 4.0 MT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202664, + "fields": { + "id_car_serie": 48992, + "name": "3.8 MT AWD (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202665, + "fields": { + "id_car_serie": 48992, + "name": "S 3.8 PDK AWD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202666, + "fields": { + "id_car_serie": 48992, + "name": "3.8 PDK AWD (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202667, + "fields": { + "id_car_serie": 48993, + "name": "3.6 MT Black Edition (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202668, + "fields": { + "id_car_serie": 48993, + "name": "3.6 MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202669, + "fields": { + "id_car_serie": 48993, + "name": "4 3.6 MT AWD (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202670, + "fields": { + "id_car_serie": 48993, + "name": "3.6 PDK Black Edition (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202671, + "fields": { + "id_car_serie": 48993, + "name": "4 3.6 PDK AWD (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202672, + "fields": { + "id_car_serie": 48993, + "name": "3.6 PDK (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202673, + "fields": { + "id_car_serie": 48993, + "name": "S 3.8 MT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202674, + "fields": { + "id_car_serie": 48993, + "name": "4S 3.8 MT AWD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202675, + "fields": { + "id_car_serie": 48993, + "name": "GTS 3.8 MT (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202676, + "fields": { + "id_car_serie": 48993, + "name": "4 GTS 3.8 MT (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202677, + "fields": { + "id_car_serie": 48993, + "name": "S 3.8 PDK (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202678, + "fields": { + "id_car_serie": 48993, + "name": "4 GTS 3.8 PDK (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202679, + "fields": { + "id_car_serie": 48993, + "name": "4S 3.8 PDK AWD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202680, + "fields": { + "id_car_serie": 48993, + "name": "GTS 3.8 PDK (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202681, + "fields": { + "id_car_serie": 48994, + "name": "3.6 T MT (480 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202682, + "fields": { + "id_car_serie": 48995, + "name": "4 3.6 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202683, + "fields": { + "id_car_serie": 48995, + "name": "4S 3.8 MT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202684, + "fields": { + "id_car_serie": 48996, + "name": "3.6 MT (415 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202685, + "fields": { + "id_car_serie": 48996, + "name": "RS 3.6 MT (415 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202686, + "fields": { + "id_car_serie": 48997, + "name": "3.6 T MT (480 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202687, + "fields": { + "id_car_serie": 48998, + "name": "3.6 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202688, + "fields": { + "id_car_serie": 48999, + "name": "3.6 MT Carrera (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202689, + "fields": { + "id_car_serie": 48999, + "name": "3.6 MT Carrera 4 (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202690, + "fields": { + "id_car_serie": 48999, + "name": "3.6 MT Carrera 4S (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202691, + "fields": { + "id_car_serie": 49000, + "name": "3.4 MT Carrera (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202692, + "fields": { + "id_car_serie": 49000, + "name": "3.4 MT Carrera 4 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202693, + "fields": { + "id_car_serie": 49001, + "name": "3.6 MT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202694, + "fields": { + "id_car_serie": 49002, + "name": "3.6 MT Turbo (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202695, + "fields": { + "id_car_serie": 49003, + "name": "3.3 MT Turbo (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202696, + "fields": { + "id_car_serie": 49003, + "name": "3.6 MT Turbo (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202697, + "fields": { + "id_car_serie": 49004, + "name": "3.6 MT Carrera 2 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202698, + "fields": { + "id_car_serie": 49004, + "name": "3.6 MT Carrera 4 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202699, + "fields": { + "id_car_serie": 49005, + "name": "4.6 PDK AWD (887 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202700, + "fields": { + "id_car_serie": 49005, + "name": "4.6 PDK AWD Weissach package (887 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202701, + "fields": { + "id_car_serie": 49006, + "name": "3.4 Tiptronic RS 60 Spyder (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202702, + "fields": { + "id_car_serie": 49006, + "name": "3.4 MT RS 60 Spyder (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202703, + "fields": { + "id_car_serie": 49007, + "name": "S 3.2 Tiptronic 50 Years of the 550 (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202704, + "fields": { + "id_car_serie": 49007, + "name": "S 3.2 MT 50 Years of the 550 (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202705, + "fields": { + "id_car_serie": 49008, + "name": "2.5 Tiptronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202706, + "fields": { + "id_car_serie": 49008, + "name": "2.5 MT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202707, + "fields": { + "id_car_serie": 49008, + "name": "2.7 Tiptronic (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202708, + "fields": { + "id_car_serie": 49008, + "name": "2.7 MT (217 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202709, + "fields": { + "id_car_serie": 49008, + "name": "S 3.2 Tiptronic (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202710, + "fields": { + "id_car_serie": 49008, + "name": "S 3.2 MT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202711, + "fields": { + "id_car_serie": 49009, + "name": "3.0 TDI AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202712, + "fields": { + "id_car_serie": 49009, + "name": "3.6 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202713, + "fields": { + "id_car_serie": 49009, + "name": "3.6 MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202714, + "fields": { + "id_car_serie": 49009, + "name": "4.8 AT S (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202715, + "fields": { + "id_car_serie": 49009, + "name": "4.8 MT S (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202716, + "fields": { + "id_car_serie": 49010, + "name": "3.2 AT Tiptronic S (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202717, + "fields": { + "id_car_serie": 49010, + "name": "3.2 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202718, + "fields": { + "id_car_serie": 49010, + "name": "4.5 AT S Tiptronic S (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202719, + "fields": { + "id_car_serie": 49010, + "name": "4.5 MT S (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202720, + "fields": { + "id_car_serie": 49011, + "name": "3.4 MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202721, + "fields": { + "id_car_serie": 49011, + "name": "3.4 PDK (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202722, + "fields": { + "id_car_serie": 4051, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202723, + "fields": { + "id_car_serie": 4051, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202724, + "fields": { + "id_car_serie": 4051, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202726, + "fields": { + "id_car_serie": 4051, + "name": "1.7 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202727, + "fields": { + "id_car_serie": 49012, + "name": "1.1 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202728, + "fields": { + "id_car_serie": 49012, + "name": "1.4 T MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202729, + "fields": { + "id_car_serie": 49012, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202730, + "fields": { + "id_car_serie": 49012, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202732, + "fields": { + "id_car_serie": 49012, + "name": "1.7 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202733, + "fields": { + "id_car_serie": 49014, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202734, + "fields": { + "id_car_serie": 49015, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202735, + "fields": { + "id_car_serie": 49016, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202736, + "fields": { + "id_car_serie": 49016, + "name": "1.3 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202737, + "fields": { + "id_car_serie": 49016, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202739, + "fields": { + "id_car_serie": 49017, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202740, + "fields": { + "id_car_serie": 62778, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202741, + "fields": { + "id_car_serie": 62778, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202742, + "fields": { + "id_car_serie": 62778, + "name": "1.6 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202743, + "fields": { + "id_car_serie": 62778, + "name": "1.6 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202744, + "fields": { + "id_car_serie": 49019, + "name": "1.6 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202745, + "fields": { + "id_car_serie": 49019, + "name": "1.6 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202746, + "fields": { + "id_car_serie": 49019, + "name": "1.6 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202747, + "fields": { + "id_car_serie": 49019, + "name": "1.6 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202748, + "fields": { + "id_car_serie": 49020, + "name": "1.5 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202749, + "fields": { + "id_car_serie": 49020, + "name": "1.6 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202750, + "fields": { + "id_car_serie": 49020, + "name": "1.6 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202751, + "fields": { + "id_car_serie": 49020, + "name": "1.6 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202752, + "fields": { + "id_car_serie": 49021, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202753, + "fields": { + "id_car_serie": 49021, + "name": "1.6 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202755, + "fields": { + "id_car_serie": 49021, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202757, + "fields": { + "id_car_serie": 49021, + "name": "1.6 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202758, + "fields": { + "id_car_serie": 49022, + "name": "1.7 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202759, + "fields": { + "id_car_serie": 49022, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202760, + "fields": { + "id_car_serie": 49022, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202761, + "fields": { + "id_car_serie": 49022, + "name": "2.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202762, + "fields": { + "id_car_serie": 49023, + "name": "1.7 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202763, + "fields": { + "id_car_serie": 49023, + "name": "1.7 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202764, + "fields": { + "id_car_serie": 49023, + "name": "1.7 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202768, + "fields": { + "id_car_serie": 49023, + "name": "2.0 T MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202769, + "fields": { + "id_car_serie": 49023, + "name": "2.1 d MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202773, + "fields": { + "id_car_serie": 49024, + "name": "1.7 4MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202774, + "fields": { + "id_car_serie": 49024, + "name": "1.7 5MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202776, + "fields": { + "id_car_serie": 49024, + "name": "2.1 Td MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202777, + "fields": { + "id_car_serie": 49024, + "name": "2.1 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202778, + "fields": { + "id_car_serie": 49025, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202780, + "fields": { + "id_car_serie": 49025, + "name": "2.1 D MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202782, + "fields": { + "id_car_serie": 49025, + "name": "2.2 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202783, + "fields": { + "id_car_serie": 49025, + "name": "2.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202785, + "fields": { + "id_car_serie": 49025, + "name": "2.7 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202786, + "fields": { + "id_car_serie": 49025, + "name": "2.9 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202787, + "fields": { + "id_car_serie": 49026, + "name": "2.5 T MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202788, + "fields": { + "id_car_serie": 49026, + "name": "2.7 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202789, + "fields": { + "id_car_serie": 4064, + "name": "1.4 T MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202790, + "fields": { + "id_car_serie": 49037, + "name": "1.1 5MT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202791, + "fields": { + "id_car_serie": 49037, + "name": "1.1 MT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202792, + "fields": { + "id_car_serie": 49037, + "name": "1.1 5MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202793, + "fields": { + "id_car_serie": 49037, + "name": "1.1 MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202794, + "fields": { + "id_car_serie": 49037, + "name": "1.2 5MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202795, + "fields": { + "id_car_serie": 49037, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202796, + "fields": { + "id_car_serie": 49037, + "name": "1.4 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202797, + "fields": { + "id_car_serie": 49037, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202798, + "fields": { + "id_car_serie": 49037, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202799, + "fields": { + "id_car_serie": 49037, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202800, + "fields": { + "id_car_serie": 49037, + "name": "1.6 TD MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202801, + "fields": { + "id_car_serie": 49037, + "name": "1.7 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202802, + "fields": { + "id_car_serie": 49038, + "name": "1.4 T MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202803, + "fields": { + "id_car_serie": 49039, + "name": "1.4 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202804, + "fields": { + "id_car_serie": 49040, + "name": "0.8 MT (37 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202805, + "fields": { + "id_car_serie": 49041, + "name": "1.4 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202806, + "fields": { + "id_car_serie": 49042, + "name": "1.4 T MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202807, + "fields": { + "id_car_serie": 49043, + "name": "1.4 T MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202815, + "fields": { + "id_car_serie": 49045, + "name": "1.4 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202817, + "fields": { + "id_car_serie": 49045, + "name": "1.6 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202818, + "fields": { + "id_car_serie": 49045, + "name": "1.7 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202819, + "fields": { + "id_car_serie": 49046, + "name": "1.4 T MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202820, + "fields": { + "id_car_serie": 9037, + "name": "2.0 T MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202821, + "fields": { + "id_car_serie": 49048, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202822, + "fields": { + "id_car_serie": 49048, + "name": "1.5 dCi MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202824, + "fields": { + "id_car_serie": 49050, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202825, + "fields": { + "id_car_serie": 49050, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202826, + "fields": { + "id_car_serie": 49050, + "name": "1.5 dCi MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202827, + "fields": { + "id_car_serie": 49050, + "name": "1.5 dCi MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202828, + "fields": { + "id_car_serie": 49050, + "name": "1.5 dCi MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202829, + "fields": { + "id_car_serie": 49050, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202830, + "fields": { + "id_car_serie": 49050, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202831, + "fields": { + "id_car_serie": 49051, + "name": "3.0 T MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202832, + "fields": { + "id_car_serie": 49051, + "name": "3.0 T MT (226 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202833, + "fields": { + "id_car_serie": 15081, + "name": "2.0 T MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202834, + "fields": { + "id_car_serie": 15081, + "name": "2.0 T MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202835, + "fields": { + "id_car_serie": 49053, + "name": "3.0 T MT (226 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202836, + "fields": { + "id_car_serie": 49054, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202837, + "fields": { + "id_car_serie": 49054, + "name": "1.4 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202838, + "fields": { + "id_car_serie": 49054, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202839, + "fields": { + "id_car_serie": 49054, + "name": "1.8 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202840, + "fields": { + "id_car_serie": 49054, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202841, + "fields": { + "id_car_serie": 49055, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202842, + "fields": { + "id_car_serie": 49055, + "name": "1.4 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202843, + "fields": { + "id_car_serie": 49055, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202844, + "fields": { + "id_car_serie": 49055, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202845, + "fields": { + "id_car_serie": 49055, + "name": "1.8 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202846, + "fields": { + "id_car_serie": 49055, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202848, + "fields": { + "id_car_serie": 49057, + "name": "1.6 T MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202849, + "fields": { + "id_car_serie": 49057, + "name": "2.1 TD MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202850, + "fields": { + "id_car_serie": 49057, + "name": "2.2 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202851, + "fields": { + "id_car_serie": 49058, + "name": "1.4 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202852, + "fields": { + "id_car_serie": 49058, + "name": "1.6 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202853, + "fields": { + "id_car_serie": 49058, + "name": "1.6 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202854, + "fields": { + "id_car_serie": 49058, + "name": "1.6 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202855, + "fields": { + "id_car_serie": 49058, + "name": "1.6 T MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202856, + "fields": { + "id_car_serie": 49058, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202857, + "fields": { + "id_car_serie": 49058, + "name": "2.1 TD MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202858, + "fields": { + "id_car_serie": 49059, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202859, + "fields": { + "id_car_serie": 49059, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202860, + "fields": { + "id_car_serie": 49059, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202861, + "fields": { + "id_car_serie": 49059, + "name": "1.4 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202862, + "fields": { + "id_car_serie": 49059, + "name": "1.5 dCi MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202863, + "fields": { + "id_car_serie": 49059, + "name": "1.5 dCi MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202864, + "fields": { + "id_car_serie": 49059, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202865, + "fields": { + "id_car_serie": 49059, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202866, + "fields": { + "id_car_serie": 49059, + "name": "1.9 dCi MT AWD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202867, + "fields": { + "id_car_serie": 49060, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202868, + "fields": { + "id_car_serie": 49060, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202870, + "fields": { + "id_car_serie": 49060, + "name": "1.9 DTi AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202871, + "fields": { + "id_car_serie": 49060, + "name": "1.9 DCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202872, + "fields": { + "id_car_serie": 49060, + "name": "1.9 DTi MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202873, + "fields": { + "id_car_serie": 49060, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202874, + "fields": { + "id_car_serie": 49060, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202875, + "fields": { + "id_car_serie": 49060, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202876, + "fields": { + "id_car_serie": 49060, + "name": "2.2 DT MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202878, + "fields": { + "id_car_serie": 49060, + "name": "3.0 MT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202879, + "fields": { + "id_car_serie": 49061, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202880, + "fields": { + "id_car_serie": 49061, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202882, + "fields": { + "id_car_serie": 49061, + "name": "1.9 DTi AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202883, + "fields": { + "id_car_serie": 49061, + "name": "1.9 DTi MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202884, + "fields": { + "id_car_serie": 49061, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202885, + "fields": { + "id_car_serie": 49061, + "name": "1.9 DCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202886, + "fields": { + "id_car_serie": 49061, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202887, + "fields": { + "id_car_serie": 49061, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202888, + "fields": { + "id_car_serie": 49061, + "name": "2.2 DT MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202889, + "fields": { + "id_car_serie": 49061, + "name": "3.0 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202890, + "fields": { + "id_car_serie": 49061, + "name": "3.0 MT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202891, + "fields": { + "id_car_serie": 49062, + "name": "1.5 dCi MT 7 seat (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202892, + "fields": { + "id_car_serie": 49062, + "name": "1.5 dCi MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202893, + "fields": { + "id_car_serie": 49062, + "name": "1.6 MT LPG 7 seat (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202894, + "fields": { + "id_car_serie": 49062, + "name": "1.6 MT LPG (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202895, + "fields": { + "id_car_serie": 49062, + "name": "1.6 MT 7 seat (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202896, + "fields": { + "id_car_serie": 49062, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202899, + "fields": { + "id_car_serie": 49064, + "name": "1.5 dCi MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202900, + "fields": { + "id_car_serie": 49064, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202901, + "fields": { + "id_car_serie": 49065, + "name": "2.0 Turbo RS 250 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202902, + "fields": { + "id_car_serie": 47388, + "name": "2.0 TCe MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202903, + "fields": { + "id_car_serie": 47388, + "name": "2.0 dCi MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202904, + "fields": { + "id_car_serie": 49068, + "name": "2.0 TCe MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202905, + "fields": { + "id_car_serie": 49068, + "name": "2.0 dCi MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202906, + "fields": { + "id_car_serie": 49069, + "name": "2.0 TCe MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202907, + "fields": { + "id_car_serie": 7503, + "name": "2.0 dCi MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202908, + "fields": { + "id_car_serie": 7503, + "name": "2.0 TCe MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202909, + "fields": { + "id_car_serie": 7497, + "name": "2.0 TCe MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202910, + "fields": { + "id_car_serie": 7497, + "name": "2.0 dCi MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202911, + "fields": { + "id_car_serie": 15098, + "name": "2.0 T MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202912, + "fields": { + "id_car_serie": 15098, + "name": "2.0 dCi MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202913, + "fields": { + "id_car_serie": 49073, + "name": "2.0 T MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202914, + "fields": { + "id_car_serie": 49073, + "name": "2.0 dCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202915, + "fields": { + "id_car_serie": 49074, + "name": "2.0 dCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202916, + "fields": { + "id_car_serie": 49074, + "name": "2.0 T MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202917, + "fields": { + "id_car_serie": 7508, + "name": "2.0 T MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202918, + "fields": { + "id_car_serie": 49076, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202919, + "fields": { + "id_car_serie": 49076, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202920, + "fields": { + "id_car_serie": 49076, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202921, + "fields": { + "id_car_serie": 49076, + "name": "1.9 dTi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202922, + "fields": { + "id_car_serie": 49076, + "name": "1.9 dTi MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202923, + "fields": { + "id_car_serie": 49076, + "name": "1.9 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202924, + "fields": { + "id_car_serie": 49076, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202925, + "fields": { + "id_car_serie": 49076, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202926, + "fields": { + "id_car_serie": 49077, + "name": "0.8 MT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202927, + "fields": { + "id_car_serie": 49078, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202928, + "fields": { + "id_car_serie": 49078, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202929, + "fields": { + "id_car_serie": 49078, + "name": "3.5 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202934, + "fields": { + "id_car_serie": 49080, + "name": "3.0 Twinturbo MT (262 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202935, + "fields": { + "id_car_serie": 49081, + "name": "1.5 dCi MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202936, + "fields": { + "id_car_serie": 49081, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202937, + "fields": { + "id_car_serie": 49081, + "name": "1.9 dCi AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202938, + "fields": { + "id_car_serie": 49081, + "name": "1.9 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202939, + "fields": { + "id_car_serie": 49081, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202940, + "fields": { + "id_car_serie": 49081, + "name": "2.0 dCi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202941, + "fields": { + "id_car_serie": 49081, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202942, + "fields": { + "id_car_serie": 49081, + "name": "2.0T MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202943, + "fields": { + "id_car_serie": 49083, + "name": "1.2 MT EURO-3 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202944, + "fields": { + "id_car_serie": 49083, + "name": "1.2 MT EURO-4 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202945, + "fields": { + "id_car_serie": 49083, + "name": "1.2 MT EURO-2 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202946, + "fields": { + "id_car_serie": 49083, + "name": "1.4 AT EURO-3 (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202947, + "fields": { + "id_car_serie": 49083, + "name": "1.4 AT EURO-2 (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202948, + "fields": { + "id_car_serie": 49083, + "name": "1.4 MT EURO-2 (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202949, + "fields": { + "id_car_serie": 49083, + "name": "1.4 MT EURO-3 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202950, + "fields": { + "id_car_serie": 49083, + "name": "1.4 MT EURO-4 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202951, + "fields": { + "id_car_serie": 49083, + "name": "1.4 MT EURO-4 (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202952, + "fields": { + "id_car_serie": 49083, + "name": "1.4 MT EURO-3 (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202953, + "fields": { + "id_car_serie": 49083, + "name": "1.4 MT EURO-2 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202954, + "fields": { + "id_car_serie": 49083, + "name": "1.5 dCi MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202955, + "fields": { + "id_car_serie": 49083, + "name": "1.5 dCi MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202956, + "fields": { + "id_car_serie": 49083, + "name": "1.5 dCi MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202958, + "fields": { + "id_car_serie": 49085, + "name": "1.2 T MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202959, + "fields": { + "id_car_serie": 49086, + "name": "1.2 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202960, + "fields": { + "id_car_serie": 49086, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202961, + "fields": { + "id_car_serie": 49086, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202962, + "fields": { + "id_car_serie": 49086, + "name": "1.2 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202963, + "fields": { + "id_car_serie": 49087, + "name": "1.2 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202964, + "fields": { + "id_car_serie": 49087, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202965, + "fields": { + "id_car_serie": 49088, + "name": "1.2 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202966, + "fields": { + "id_car_serie": 49088, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202967, + "fields": { + "id_car_serie": 49088, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202968, + "fields": { + "id_car_serie": 49089, + "name": "6.7 AT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202969, + "fields": { + "id_car_serie": 49090, + "name": "6.7 AT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202970, + "fields": { + "id_car_serie": 49091, + "name": "1.9 TTD AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202971, + "fields": { + "id_car_serie": 49091, + "name": "1.9 TD AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202972, + "fields": { + "id_car_serie": 49091, + "name": "1.9 TD MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202973, + "fields": { + "id_car_serie": 49091, + "name": "1.9 TTD MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202974, + "fields": { + "id_car_serie": 49091, + "name": "2.0 AT BioPower (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202975, + "fields": { + "id_car_serie": 49091, + "name": "2.0 turbo AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202976, + "fields": { + "id_car_serie": 49091, + "name": "2.0 AT BioPower (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202977, + "fields": { + "id_car_serie": 49091, + "name": "2.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202978, + "fields": { + "id_car_serie": 49091, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202979, + "fields": { + "id_car_serie": 49091, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202980, + "fields": { + "id_car_serie": 49091, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202981, + "fields": { + "id_car_serie": 49091, + "name": "2.0 turbo MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202982, + "fields": { + "id_car_serie": 49091, + "name": "2.0 MT BioPower (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202983, + "fields": { + "id_car_serie": 49091, + "name": "2.0 MT BioPower (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202984, + "fields": { + "id_car_serie": 49091, + "name": "2.8 turbo AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202985, + "fields": { + "id_car_serie": 49091, + "name": "2.8 turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202986, + "fields": { + "id_car_serie": 49091, + "name": "2.8 turbo MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202987, + "fields": { + "id_car_serie": 49091, + "name": "2.8 turbo MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202995, + "fields": { + "id_car_serie": 49093, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202996, + "fields": { + "id_car_serie": 49093, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202997, + "fields": { + "id_car_serie": 49093, + "name": "2.0 Turbo AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202998, + "fields": { + "id_car_serie": 49093, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 202999, + "fields": { + "id_car_serie": 49093, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203000, + "fields": { + "id_car_serie": 49093, + "name": "2.0 Turbo MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203002, + "fields": { + "id_car_serie": 49093, + "name": "2.3 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203004, + "fields": { + "id_car_serie": 49093, + "name": "2.3 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203005, + "fields": { + "id_car_serie": 49094, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203006, + "fields": { + "id_car_serie": 49095, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203008, + "fields": { + "id_car_serie": 49095, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203009, + "fields": { + "id_car_serie": 49095, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203010, + "fields": { + "id_car_serie": 49095, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203011, + "fields": { + "id_car_serie": 49095, + "name": "1.6 DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203012, + "fields": { + "id_car_serie": 49096, + "name": "1.4 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203013, + "fields": { + "id_car_serie": 49097, + "name": "1.4 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203014, + "fields": { + "id_car_serie": 49098, + "name": "1.2 MPI MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203015, + "fields": { + "id_car_serie": 49098, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203016, + "fields": { + "id_car_serie": 49098, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203017, + "fields": { + "id_car_serie": 49098, + "name": "1.4 MPI MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203018, + "fields": { + "id_car_serie": 7590, + "name": "1.4 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203019, + "fields": { + "id_car_serie": 4150, + "name": "1.2 TSI MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203020, + "fields": { + "id_car_serie": 4150, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203021, + "fields": { + "id_car_serie": 4150, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203022, + "fields": { + "id_car_serie": 4150, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203023, + "fields": { + "id_car_serie": 4150, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203024, + "fields": { + "id_car_serie": 4150, + "name": "1.8 TSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203025, + "fields": { + "id_car_serie": 4150, + "name": "1.8 TSI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203026, + "fields": { + "id_car_serie": 47411, + "name": "2.0 TSI MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203027, + "fields": { + "id_car_serie": 47411, + "name": "2.0 TSI DSG (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203028, + "fields": { + "id_car_serie": 49102, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203029, + "fields": { + "id_car_serie": 49102, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203030, + "fields": { + "id_car_serie": 49102, + "name": "1.8 TSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203031, + "fields": { + "id_car_serie": 49102, + "name": "1.8 TSI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203032, + "fields": { + "id_car_serie": 49103, + "name": "2.0 TSI MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203033, + "fields": { + "id_car_serie": 49103, + "name": "2.0 TSI DSG (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203034, + "fields": { + "id_car_serie": 49104, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203035, + "fields": { + "id_car_serie": 49104, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203036, + "fields": { + "id_car_serie": 49104, + "name": "1.8 TSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203037, + "fields": { + "id_car_serie": 49104, + "name": "1.8 TSI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203038, + "fields": { + "id_car_serie": 49104, + "name": "2.0 TDI MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203039, + "fields": { + "id_car_serie": 49104, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203040, + "fields": { + "id_car_serie": 49104, + "name": "2.0 TDI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203041, + "fields": { + "id_car_serie": 14827, + "name": "1.8 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203042, + "fields": { + "id_car_serie": 14827, + "name": "2.0 TSI DSG (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203043, + "fields": { + "id_car_serie": 49106, + "name": "2.0 TFSI MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203044, + "fields": { + "id_car_serie": 49107, + "name": "2.0 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203047, + "fields": { + "id_car_serie": 49109, + "name": "1.6 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203050, + "fields": { + "id_car_serie": 49109, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203052, + "fields": { + "id_car_serie": 49109, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203054, + "fields": { + "id_car_serie": 49109, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203055, + "fields": { + "id_car_serie": 49109, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203064, + "fields": { + "id_car_serie": 49111, + "name": "1.2 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203065, + "fields": { + "id_car_serie": 49111, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203066, + "fields": { + "id_car_serie": 49111, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203067, + "fields": { + "id_car_serie": 49111, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203068, + "fields": { + "id_car_serie": 49111, + "name": "1.2 TSI MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203070, + "fields": { + "id_car_serie": 49111, + "name": "1.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203071, + "fields": { + "id_car_serie": 49111, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203072, + "fields": { + "id_car_serie": 49111, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203073, + "fields": { + "id_car_serie": 49111, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203074, + "fields": { + "id_car_serie": 49111, + "name": "1.6 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203075, + "fields": { + "id_car_serie": 49111, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203076, + "fields": { + "id_car_serie": 49112, + "name": "1.4 TSI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203077, + "fields": { + "id_car_serie": 49113, + "name": "1.2 TDI MT GreenLine (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203078, + "fields": { + "id_car_serie": 49113, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203079, + "fields": { + "id_car_serie": 49113, + "name": "1.2 TSI MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203080, + "fields": { + "id_car_serie": 49113, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203081, + "fields": { + "id_car_serie": 49113, + "name": "1.2 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203082, + "fields": { + "id_car_serie": 49113, + "name": "1.2 MT Green tec (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203083, + "fields": { + "id_car_serie": 49113, + "name": "1.2 TSI MT Green tec (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203084, + "fields": { + "id_car_serie": 49113, + "name": "1.2 TSI MT Green tec (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203085, + "fields": { + "id_car_serie": 49113, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203086, + "fields": { + "id_car_serie": 49113, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203087, + "fields": { + "id_car_serie": 49113, + "name": "1.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203088, + "fields": { + "id_car_serie": 49113, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203089, + "fields": { + "id_car_serie": 49113, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203090, + "fields": { + "id_car_serie": 49113, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203091, + "fields": { + "id_car_serie": 49113, + "name": "1.6 TDI MT Green tec (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203092, + "fields": { + "id_car_serie": 49113, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203093, + "fields": { + "id_car_serie": 49113, + "name": "1.6 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203094, + "fields": { + "id_car_serie": 49114, + "name": "1.4 TSI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203095, + "fields": { + "id_car_serie": 49115, + "name": "1.4 TDI MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203096, + "fields": { + "id_car_serie": 49115, + "name": "1.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203097, + "fields": { + "id_car_serie": 49115, + "name": "1.4 TDI DPF MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203098, + "fields": { + "id_car_serie": 49115, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203099, + "fields": { + "id_car_serie": 49115, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203100, + "fields": { + "id_car_serie": 49115, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203101, + "fields": { + "id_car_serie": 49115, + "name": "1.9 TDI DPF MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203106, + "fields": { + "id_car_serie": 49117, + "name": "1.2 HTP MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203107, + "fields": { + "id_car_serie": 49117, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203108, + "fields": { + "id_car_serie": 49117, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203109, + "fields": { + "id_car_serie": 49117, + "name": "1.4 TDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203110, + "fields": { + "id_car_serie": 49117, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203111, + "fields": { + "id_car_serie": 49117, + "name": "1.4 TDI MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203112, + "fields": { + "id_car_serie": 49117, + "name": "1.4 TDI MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203113, + "fields": { + "id_car_serie": 49117, + "name": "1.9 SDI MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203114, + "fields": { + "id_car_serie": 49117, + "name": "1.9 TDI MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203115, + "fields": { + "id_car_serie": 49117, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203116, + "fields": { + "id_car_serie": 49118, + "name": "1.9 TDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203118, + "fields": { + "id_car_serie": 49119, + "name": "1.2 HTP MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203120, + "fields": { + "id_car_serie": 49119, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203122, + "fields": { + "id_car_serie": 49119, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203123, + "fields": { + "id_car_serie": 49119, + "name": "1.4 TDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203124, + "fields": { + "id_car_serie": 49119, + "name": "1.9 TDI MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203125, + "fields": { + "id_car_serie": 49119, + "name": "1.9 SDi MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203126, + "fields": { + "id_car_serie": 49119, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203127, + "fields": { + "id_car_serie": 49120, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203128, + "fields": { + "id_car_serie": 49120, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203129, + "fields": { + "id_car_serie": 49120, + "name": "1.3 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203130, + "fields": { + "id_car_serie": 49120, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203138, + "fields": { + "id_car_serie": 49122, + "name": "2.0 TSI MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203139, + "fields": { + "id_car_serie": 49122, + "name": "2.0 TDI MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203140, + "fields": { + "id_car_serie": 49122, + "name": "2.0 TSI DSG (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203141, + "fields": { + "id_car_serie": 49122, + "name": "2.0 TDI DSG (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203142, + "fields": { + "id_car_serie": 49123, + "name": "2.0 TSI MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203143, + "fields": { + "id_car_serie": 49123, + "name": "2.0 TDI MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203144, + "fields": { + "id_car_serie": 49123, + "name": "2.0 TSI DSG (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203145, + "fields": { + "id_car_serie": 49123, + "name": "2.0 TDI DSG (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203146, + "fields": { + "id_car_serie": 49124, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203147, + "fields": { + "id_car_serie": 49124, + "name": "2.0 TSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203148, + "fields": { + "id_car_serie": 49124, + "name": "2.0 TDI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203149, + "fields": { + "id_car_serie": 49124, + "name": "2.0 TSI DSG (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203150, + "fields": { + "id_car_serie": 49125, + "name": "1.8 TSI MT 4x4 (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203152, + "fields": { + "id_car_serie": 49125, + "name": "2.0 TDI MT 4x4 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203153, + "fields": { + "id_car_serie": 49125, + "name": "2.0 DTI Euro V MT 4x4 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203154, + "fields": { + "id_car_serie": 49125, + "name": "2.0 DTI DSG 4x4 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203155, + "fields": { + "id_car_serie": 49126, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203157, + "fields": { + "id_car_serie": 49126, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203158, + "fields": { + "id_car_serie": 49126, + "name": "1.6 FSI Tiptronic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203159, + "fields": { + "id_car_serie": 49126, + "name": "1.6 Tiptronic (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203161, + "fields": { + "id_car_serie": 49126, + "name": "1.6 FSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203163, + "fields": { + "id_car_serie": 49126, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203164, + "fields": { + "id_car_serie": 49126, + "name": "1.8 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203165, + "fields": { + "id_car_serie": 49126, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203166, + "fields": { + "id_car_serie": 49126, + "name": "1.9 TDI DPF MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203167, + "fields": { + "id_car_serie": 49126, + "name": "1.9 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203168, + "fields": { + "id_car_serie": 49126, + "name": "1.9 TDI DPF DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203169, + "fields": { + "id_car_serie": 49126, + "name": "2.0 FSI Tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203171, + "fields": { + "id_car_serie": 49126, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203172, + "fields": { + "id_car_serie": 49126, + "name": "2.0 FSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203173, + "fields": { + "id_car_serie": 49126, + "name": "2.0 TDI DPF MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203174, + "fields": { + "id_car_serie": 49126, + "name": "2.0 TDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203175, + "fields": { + "id_car_serie": 49126, + "name": "2.0 TDI DSG (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203176, + "fields": { + "id_car_serie": 49126, + "name": "2.0 TDI DPF DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203177, + "fields": { + "id_car_serie": 49126, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203178, + "fields": { + "id_car_serie": 49127, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203179, + "fields": { + "id_car_serie": 49127, + "name": "2.0 TFSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203180, + "fields": { + "id_car_serie": 49128, + "name": "1.8 T MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203181, + "fields": { + "id_car_serie": 49128, + "name": "1.8 T MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203182, + "fields": { + "id_car_serie": 49129, + "name": "1.8 T MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203183, + "fields": { + "id_car_serie": 49129, + "name": "1.8 T MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203187, + "fields": { + "id_car_serie": 49132, + "name": "1.5 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203189, + "fields": { + "id_car_serie": 4169, + "name": "1.0 Brabus Turbo AMT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203190, + "fields": { + "id_car_serie": 4170, + "name": "1.0 Brabus Turbo AMT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203191, + "fields": { + "id_car_serie": 49136, + "name": "0.7 AMT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203192, + "fields": { + "id_car_serie": 49136, + "name": "0.7 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203193, + "fields": { + "id_car_serie": 49137, + "name": "0.7 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203194, + "fields": { + "id_car_serie": 49138, + "name": "0.7 AMT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203195, + "fields": { + "id_car_serie": 49138, + "name": "1.4 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203196, + "fields": { + "id_car_serie": 49139, + "name": "0.7 AMT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203197, + "fields": { + "id_car_serie": 49140, + "name": "2.0 AT AWD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203198, + "fields": { + "id_car_serie": 49140, + "name": "2.0 Xdi AT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203199, + "fields": { + "id_car_serie": 49140, + "name": "2.0 Xdi AT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203200, + "fields": { + "id_car_serie": 49140, + "name": "2.0 Xdi AT AWD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203201, + "fields": { + "id_car_serie": 49140, + "name": "2.0 AT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203202, + "fields": { + "id_car_serie": 49140, + "name": "2.0 Xdi AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203203, + "fields": { + "id_car_serie": 49140, + "name": "2.0 MT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203204, + "fields": { + "id_car_serie": 49140, + "name": "2.0 MT AWD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203205, + "fields": { + "id_car_serie": 49140, + "name": "2.0 Xdi MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203206, + "fields": { + "id_car_serie": 49140, + "name": "2.0 Xdi MT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203207, + "fields": { + "id_car_serie": 49140, + "name": "2.0 Xdi MT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203208, + "fields": { + "id_car_serie": 49140, + "name": "2.0 Xdi MT AWD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203209, + "fields": { + "id_car_serie": 49141, + "name": "2.0 TD AT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203210, + "fields": { + "id_car_serie": 49141, + "name": "2.0 TD MT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203211, + "fields": { + "id_car_serie": 49141, + "name": "2.3 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203212, + "fields": { + "id_car_serie": 49141, + "name": "2.3 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203213, + "fields": { + "id_car_serie": 4186, + "name": "2.0i MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203214, + "fields": { + "id_car_serie": 4186, + "name": "2.0D MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203215, + "fields": { + "id_car_serie": 4186, + "name": "2.0i MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203216, + "fields": { + "id_car_serie": 4186, + "name": "2.0XT Lineartronic AWD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203217, + "fields": { + "id_car_serie": 4186, + "name": "2.0XT Lineartronic (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203218, + "fields": { + "id_car_serie": 4186, + "name": "2.0 XT Lineartronic (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203219, + "fields": { + "id_car_serie": 4186, + "name": "2.0 XT Lineartronic (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203220, + "fields": { + "id_car_serie": 4186, + "name": "2.0i Lineartronic AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203221, + "fields": { + "id_car_serie": 4186, + "name": "2.0i Lineartronic (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203222, + "fields": { + "id_car_serie": 4186, + "name": "2.5i S AWD (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203223, + "fields": { + "id_car_serie": 4186, + "name": "2.5i Lineartronic AWD (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203224, + "fields": { + "id_car_serie": 7648, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203227, + "fields": { + "id_car_serie": 49144, + "name": "2.0X LPG AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203228, + "fields": { + "id_car_serie": 49144, + "name": "2.0X AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203229, + "fields": { + "id_car_serie": 49144, + "name": "2.0X AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203230, + "fields": { + "id_car_serie": 49144, + "name": "2.0XT AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203231, + "fields": { + "id_car_serie": 49144, + "name": "2.0X MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203232, + "fields": { + "id_car_serie": 49144, + "name": "2.0X LPG MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203233, + "fields": { + "id_car_serie": 49144, + "name": "2.0XT MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203234, + "fields": { + "id_car_serie": 49144, + "name": "2.0X MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203235, + "fields": { + "id_car_serie": 49144, + "name": "2.5XT AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203236, + "fields": { + "id_car_serie": 49144, + "name": "2.5XT MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203237, + "fields": { + "id_car_serie": 49145, + "name": "2.5 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203238, + "fields": { + "id_car_serie": 49146, + "name": "2.0X LPG AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203239, + "fields": { + "id_car_serie": 49146, + "name": "2.0X AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203240, + "fields": { + "id_car_serie": 49146, + "name": "2.0X AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203241, + "fields": { + "id_car_serie": 49146, + "name": "2.0XT AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203242, + "fields": { + "id_car_serie": 49146, + "name": "2.0XT AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203243, + "fields": { + "id_car_serie": 49146, + "name": "2.0X MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203244, + "fields": { + "id_car_serie": 49146, + "name": "2.0XT MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203245, + "fields": { + "id_car_serie": 49146, + "name": "2.0X MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203246, + "fields": { + "id_car_serie": 49146, + "name": "2.0XT MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203247, + "fields": { + "id_car_serie": 49146, + "name": "2.0X LPG MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203248, + "fields": { + "id_car_serie": 49146, + "name": "2.5 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203249, + "fields": { + "id_car_serie": 49146, + "name": "2.5XT MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203250, + "fields": { + "id_car_serie": 49146, + "name": "2.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203251, + "fields": { + "id_car_serie": 49145, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203252, + "fields": { + "id_car_serie": 49145, + "name": "2.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203253, + "fields": { + "id_car_serie": 49145, + "name": "2.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203254, + "fields": { + "id_car_serie": 49148, + "name": "2.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203255, + "fields": { + "id_car_serie": 49148, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203256, + "fields": { + "id_car_serie": 49148, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203257, + "fields": { + "id_car_serie": 49148, + "name": "2.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203258, + "fields": { + "id_car_serie": 49148, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203259, + "fields": { + "id_car_serie": 49148, + "name": "2.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203260, + "fields": { + "id_car_serie": 49148, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203261, + "fields": { + "id_car_serie": 49148, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203262, + "fields": { + "id_car_serie": 49148, + "name": "2.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203263, + "fields": { + "id_car_serie": 49148, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203264, + "fields": { + "id_car_serie": 49148, + "name": "2.5 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203265, + "fields": { + "id_car_serie": 49149, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203266, + "fields": { + "id_car_serie": 49149, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203267, + "fields": { + "id_car_serie": 49149, + "name": "2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203268, + "fields": { + "id_car_serie": 49149, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203269, + "fields": { + "id_car_serie": 49149, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203270, + "fields": { + "id_car_serie": 49149, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203271, + "fields": { + "id_car_serie": 49149, + "name": "2.5 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203272, + "fields": { + "id_car_serie": 49149, + "name": "2.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203273, + "fields": { + "id_car_serie": 49150, + "name": "2.5 MT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203274, + "fields": { + "id_car_serie": 49151, + "name": "2.5 E-AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203275, + "fields": { + "id_car_serie": 49151, + "name": "2.5 MT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203276, + "fields": { + "id_car_serie": 49152, + "name": "2.5 MT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203277, + "fields": { + "id_car_serie": 49153, + "name": "2.0 MT 4WD (308 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203278, + "fields": { + "id_car_serie": 49153, + "name": "2.5 E-AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203279, + "fields": { + "id_car_serie": 49153, + "name": "2.5 MT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203280, + "fields": { + "id_car_serie": 49154, + "name": "2.5 MT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203281, + "fields": { + "id_car_serie": 49155, + "name": "2.0 MT AWD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203283, + "fields": { + "id_car_serie": 49156, + "name": "2.0 MT AWD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203285, + "fields": { + "id_car_serie": 49157, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203286, + "fields": { + "id_car_serie": 49157, + "name": "1.6 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203287, + "fields": { + "id_car_serie": 49157, + "name": "2.0 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203291, + "fields": { + "id_car_serie": 49159, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203292, + "fields": { + "id_car_serie": 49159, + "name": "1.6 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203293, + "fields": { + "id_car_serie": 49159, + "name": "1.8 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203294, + "fields": { + "id_car_serie": 49159, + "name": "2.0 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203304, + "fields": { + "id_car_serie": 49161, + "name": "1.8 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203305, + "fields": { + "id_car_serie": 49161, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203306, + "fields": { + "id_car_serie": 49162, + "name": "2.0 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203307, + "fields": { + "id_car_serie": 49162, + "name": "2.0 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203308, + "fields": { + "id_car_serie": 49163, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203309, + "fields": { + "id_car_serie": 49163, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203310, + "fields": { + "id_car_serie": 49164, + "name": "1.6 AT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203311, + "fields": { + "id_car_serie": 49164, + "name": "1.6 AT 4WD (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203312, + "fields": { + "id_car_serie": 49164, + "name": "1.6 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203313, + "fields": { + "id_car_serie": 49164, + "name": "2.0 TD AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203314, + "fields": { + "id_car_serie": 49164, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203315, + "fields": { + "id_car_serie": 49164, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203316, + "fields": { + "id_car_serie": 49164, + "name": "2.0 TD MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203317, + "fields": { + "id_car_serie": 49164, + "name": "2.0 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203318, + "fields": { + "id_car_serie": 49164, + "name": "2.0 TD MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203319, + "fields": { + "id_car_serie": 49164, + "name": "2.0 TD MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203321, + "fields": { + "id_car_serie": 49164, + "name": "2.5 AT 4WD (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203322, + "fields": { + "id_car_serie": 49164, + "name": "2.5 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203323, + "fields": { + "id_car_serie": 49164, + "name": "2.5 MT 4WD (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203327, + "fields": { + "id_car_serie": 49165, + "name": "2.7 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203328, + "fields": { + "id_car_serie": 49165, + "name": "2.7 MT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203329, + "fields": { + "id_car_serie": 49166, + "name": "1.6 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203330, + "fields": { + "id_car_serie": 49166, + "name": "2.0 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203331, + "fields": { + "id_car_serie": 49167, + "name": "1.6 AT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203332, + "fields": { + "id_car_serie": 49167, + "name": "1.6 MT 4WD (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203333, + "fields": { + "id_car_serie": 49167, + "name": "1.6 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203334, + "fields": { + "id_car_serie": 49167, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203335, + "fields": { + "id_car_serie": 49167, + "name": "2.0 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203336, + "fields": { + "id_car_serie": 49167, + "name": "2.0 TD MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203337, + "fields": { + "id_car_serie": 49167, + "name": "2.0 TD MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203338, + "fields": { + "id_car_serie": 49167, + "name": "2.5 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203339, + "fields": { + "id_car_serie": 49168, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203340, + "fields": { + "id_car_serie": 49169, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203341, + "fields": { + "id_car_serie": 49169, + "name": "1.3 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203342, + "fields": { + "id_car_serie": 49169, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203343, + "fields": { + "id_car_serie": 49169, + "name": "1.3 GTI MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203344, + "fields": { + "id_car_serie": 49170, + "name": "1.3 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203345, + "fields": { + "id_car_serie": 49170, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203346, + "fields": { + "id_car_serie": 49171, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203347, + "fields": { + "id_car_serie": 49171, + "name": "0.7 AT AWD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203348, + "fields": { + "id_car_serie": 49171, + "name": "0.7 turbo AT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203349, + "fields": { + "id_car_serie": 49171, + "name": "0.7 turbo AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203350, + "fields": { + "id_car_serie": 49171, + "name": "0.7 turbo CVT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203351, + "fields": { + "id_car_serie": 49171, + "name": "0.7 CVT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203352, + "fields": { + "id_car_serie": 49171, + "name": "0.7 turbo CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203353, + "fields": { + "id_car_serie": 49171, + "name": "0.7 CVT AWD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203354, + "fields": { + "id_car_serie": 49172, + "name": "0.7 AT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203355, + "fields": { + "id_car_serie": 49172, + "name": "0.7 AT AWD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203356, + "fields": { + "id_car_serie": 49172, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203357, + "fields": { + "id_car_serie": 49172, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203358, + "fields": { + "id_car_serie": 49172, + "name": "0.7 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203359, + "fields": { + "id_car_serie": 49172, + "name": "0.7 AT AWD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203360, + "fields": { + "id_car_serie": 49172, + "name": "0.7 CVT AWD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203361, + "fields": { + "id_car_serie": 49172, + "name": "0.7 CVT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203362, + "fields": { + "id_car_serie": 49173, + "name": "0.7 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203363, + "fields": { + "id_car_serie": 49173, + "name": "0.7 AT AWD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203364, + "fields": { + "id_car_serie": 49173, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203365, + "fields": { + "id_car_serie": 49173, + "name": "0.7 AT AWD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203366, + "fields": { + "id_car_serie": 49173, + "name": "0.7 turbo AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203367, + "fields": { + "id_car_serie": 49173, + "name": "0.7 turbo AT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203368, + "fields": { + "id_car_serie": 49173, + "name": "0.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203369, + "fields": { + "id_car_serie": 49173, + "name": "0.7 MT AWD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203370, + "fields": { + "id_car_serie": 49173, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203371, + "fields": { + "id_car_serie": 49173, + "name": "1.3 D MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203372, + "fields": { + "id_car_serie": 49173, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203373, + "fields": { + "id_car_serie": 49173, + "name": "1.3 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203374, + "fields": { + "id_car_serie": 49174, + "name": "1.0 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203375, + "fields": { + "id_car_serie": 49174, + "name": "1.0 AT AWD (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203376, + "fields": { + "id_car_serie": 49174, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203377, + "fields": { + "id_car_serie": 49174, + "name": "1.3 AT AWD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203378, + "fields": { + "id_car_serie": 49175, + "name": "0.7 AT AWD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203379, + "fields": { + "id_car_serie": 49175, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203380, + "fields": { + "id_car_serie": 49175, + "name": "0.7 turbo AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203381, + "fields": { + "id_car_serie": 49175, + "name": "0.7 turbo AT AWD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203382, + "fields": { + "id_car_serie": 49175, + "name": "0.7 MT AWD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203383, + "fields": { + "id_car_serie": 49175, + "name": "0.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203384, + "fields": { + "id_car_serie": 49175, + "name": "0.7 CVT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203385, + "fields": { + "id_car_serie": 49176, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203386, + "fields": { + "id_car_serie": 49176, + "name": "0.7 AT AWD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203387, + "fields": { + "id_car_serie": 49177, + "name": "0.7 turbo AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203388, + "fields": { + "id_car_serie": 49177, + "name": "0.7 turbo AT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203389, + "fields": { + "id_car_serie": 49177, + "name": "0.7 turbo MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203390, + "fields": { + "id_car_serie": 49177, + "name": "0.7 turbo MT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203393, + "fields": { + "id_car_serie": 49180, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203394, + "fields": { + "id_car_serie": 49180, + "name": "1.4 D MT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203395, + "fields": { + "id_car_serie": 49180, + "name": "1.4 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203396, + "fields": { + "id_car_serie": 49180, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203397, + "fields": { + "id_car_serie": 49180, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203398, + "fields": { + "id_car_serie": 49180, + "name": "1.4 TD MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203400, + "fields": { + "id_car_serie": 49188, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203401, + "fields": { + "id_car_serie": 49188, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203402, + "fields": { + "id_car_serie": 49188, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203403, + "fields": { + "id_car_serie": 49188, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203404, + "fields": { + "id_car_serie": 49188, + "name": "1.8 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203405, + "fields": { + "id_car_serie": 49188, + "name": "1.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203406, + "fields": { + "id_car_serie": 49189, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203407, + "fields": { + "id_car_serie": 49189, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203408, + "fields": { + "id_car_serie": 49189, + "name": "1.8 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203409, + "fields": { + "id_car_serie": 49189, + "name": "1.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203410, + "fields": { + "id_car_serie": 49190, + "name": "2.4 CVT (8 places) (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203411, + "fields": { + "id_car_serie": 49190, + "name": "2.4 CVT 4WD (8 places) (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203412, + "fields": { + "id_car_serie": 49190, + "name": "2.4 CVT 4WD (7 places) (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203413, + "fields": { + "id_car_serie": 49190, + "name": "2.4 CVT (7 places) (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203414, + "fields": { + "id_car_serie": 49190, + "name": "3.5 AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203415, + "fields": { + "id_car_serie": 49190, + "name": "3.5 AT 4WD (7 places) (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203416, + "fields": { + "id_car_serie": 49190, + "name": "3.5 AT (8 places) (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203417, + "fields": { + "id_car_serie": 49190, + "name": "3.5 AT 4WD (8 places) (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203418, + "fields": { + "id_car_serie": 49190, + "name": "3.5 AT (7 places) (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203419, + "fields": { + "id_car_serie": 49191, + "name": "2.4 AT 4WD (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203420, + "fields": { + "id_car_serie": 49191, + "name": "2.4 AT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203421, + "fields": { + "id_car_serie": 49191, + "name": "3.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203422, + "fields": { + "id_car_serie": 49191, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203423, + "fields": { + "id_car_serie": 49192, + "name": "2.4 CVT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203424, + "fields": { + "id_car_serie": 49193, + "name": "3.0 Twin-Turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203425, + "fields": { + "id_car_serie": 49193, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203426, + "fields": { + "id_car_serie": 49194, + "name": "3.0 Twin-Turbo AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203427, + "fields": { + "id_car_serie": 49194, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203428, + "fields": { + "id_car_serie": 49194, + "name": "4.0 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203429, + "fields": { + "id_car_serie": 49195, + "name": "3.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203430, + "fields": { + "id_car_serie": 49196, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203431, + "fields": { + "id_car_serie": 49196, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203432, + "fields": { + "id_car_serie": 49196, + "name": "3.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203433, + "fields": { + "id_car_serie": 49197, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203434, + "fields": { + "id_car_serie": 49197, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203435, + "fields": { + "id_car_serie": 49197, + "name": "3.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203436, + "fields": { + "id_car_serie": 49198, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203437, + "fields": { + "id_car_serie": 49198, + "name": "2.4 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203438, + "fields": { + "id_car_serie": 49198, + "name": "2.4 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203439, + "fields": { + "id_car_serie": 49198, + "name": "3.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203440, + "fields": { + "id_car_serie": 49199, + "name": "3.5 Supercharged AT (327 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203441, + "fields": { + "id_car_serie": 49200, + "name": "1.33 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203442, + "fields": { + "id_car_serie": 49200, + "name": "1.4 D-4D MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203443, + "fields": { + "id_car_serie": 49200, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203444, + "fields": { + "id_car_serie": 49200, + "name": "1.6 Multidrive S (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203445, + "fields": { + "id_car_serie": 49200, + "name": "2.0 D-4D MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203446, + "fields": { + "id_car_serie": 49201, + "name": "1.8 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203447, + "fields": { + "id_car_serie": 49202, + "name": "1.8 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203448, + "fields": { + "id_car_serie": 49203, + "name": "2.5 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203449, + "fields": { + "id_car_serie": 49204, + "name": "1.0 CVT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203450, + "fields": { + "id_car_serie": 49204, + "name": "1.3 CVT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203451, + "fields": { + "id_car_serie": 49205, + "name": "2.4 CVT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203452, + "fields": { + "id_car_serie": 49205, + "name": "2.4 CVT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203453, + "fields": { + "id_car_serie": 49205, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203454, + "fields": { + "id_car_serie": 49206, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203455, + "fields": { + "id_car_serie": 49206, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203456, + "fields": { + "id_car_serie": 49206, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203457, + "fields": { + "id_car_serie": 49207, + "name": "2.4 Hybrid CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203458, + "fields": { + "id_car_serie": 49209, + "name": "2.4 VVT-i AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203461, + "fields": { + "id_car_serie": 49209, + "name": "2.4 VVT-i MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203462, + "fields": { + "id_car_serie": 49209, + "name": "2.4 MT Overdrive (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203464, + "fields": { + "id_car_serie": 49209, + "name": "3.0 AT Overdrive (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203466, + "fields": { + "id_car_serie": 49209, + "name": "3.3 AT Overdrive (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203467, + "fields": { + "id_car_serie": 49210, + "name": "2.2 AT Overdrive (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203468, + "fields": { + "id_car_serie": 49210, + "name": "2.2 MT Overdrive (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203469, + "fields": { + "id_car_serie": 49210, + "name": "3.0 AT Overdrive (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203470, + "fields": { + "id_car_serie": 49210, + "name": "3.0 MT Overdrive (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203471, + "fields": { + "id_car_serie": 49211, + "name": "2.2 AT Overdrive (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203472, + "fields": { + "id_car_serie": 49211, + "name": "2.2 MT Overdrive (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203473, + "fields": { + "id_car_serie": 49211, + "name": "3.0 AT Overdrive (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203474, + "fields": { + "id_car_serie": 49211, + "name": "3.0 MT Overdrive (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203475, + "fields": { + "id_car_serie": 49212, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203476, + "fields": { + "id_car_serie": 49212, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203477, + "fields": { + "id_car_serie": 49212, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203478, + "fields": { + "id_car_serie": 49212, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203479, + "fields": { + "id_car_serie": 49212, + "name": "2.0 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203480, + "fields": { + "id_car_serie": 49212, + "name": "2.2 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203481, + "fields": { + "id_car_serie": 49212, + "name": "2.2 TD AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203482, + "fields": { + "id_car_serie": 49212, + "name": "2.2 TD MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203483, + "fields": { + "id_car_serie": 49213, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203484, + "fields": { + "id_car_serie": 49213, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203485, + "fields": { + "id_car_serie": 49213, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203486, + "fields": { + "id_car_serie": 49213, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203487, + "fields": { + "id_car_serie": 49213, + "name": "2.0 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203488, + "fields": { + "id_car_serie": 49213, + "name": "2.2 TD AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203489, + "fields": { + "id_car_serie": 49213, + "name": "2.2 TD AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203490, + "fields": { + "id_car_serie": 49213, + "name": "2.2 TD MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203491, + "fields": { + "id_car_serie": 49214, + "name": "2.2 AT Overdrive (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203492, + "fields": { + "id_car_serie": 49214, + "name": "2.2 MT Overdrive (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203493, + "fields": { + "id_car_serie": 49214, + "name": "3.0 AT Overdrive (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203494, + "fields": { + "id_car_serie": 49215, + "name": "2.2 AT Overdrive (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203495, + "fields": { + "id_car_serie": 49215, + "name": "2.2 MT Overdrive (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203496, + "fields": { + "id_car_serie": 49215, + "name": "3.0 AT Overdrive (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203497, + "fields": { + "id_car_serie": 49216, + "name": "2.2 AT Overdrive (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203498, + "fields": { + "id_car_serie": 49216, + "name": "2.2 AT Overdrive (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203499, + "fields": { + "id_car_serie": 49216, + "name": "3.0 AT Overdrive (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203500, + "fields": { + "id_car_serie": 49217, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203501, + "fields": { + "id_car_serie": 49217, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203502, + "fields": { + "id_car_serie": 49217, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203503, + "fields": { + "id_car_serie": 49217, + "name": "2.0 TD AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203504, + "fields": { + "id_car_serie": 49217, + "name": "2.0 V6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203505, + "fields": { + "id_car_serie": 49217, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203506, + "fields": { + "id_car_serie": 49217, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203507, + "fields": { + "id_car_serie": 49217, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203508, + "fields": { + "id_car_serie": 49217, + "name": "2.0 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203509, + "fields": { + "id_car_serie": 49217, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203510, + "fields": { + "id_car_serie": 49217, + "name": "2.0 TD MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203511, + "fields": { + "id_car_serie": 49217, + "name": "2.0 V6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203512, + "fields": { + "id_car_serie": 49217, + "name": "2.5 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203513, + "fields": { + "id_car_serie": 49218, + "name": "2.0 AT 4WS (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203514, + "fields": { + "id_car_serie": 49218, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203515, + "fields": { + "id_car_serie": 49218, + "name": "2.0 MT 4WS (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203516, + "fields": { + "id_car_serie": 49218, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203517, + "fields": { + "id_car_serie": 49219, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203518, + "fields": { + "id_car_serie": 49219, + "name": "2.0 AT Overdrive (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203519, + "fields": { + "id_car_serie": 49219, + "name": "2.0 MT Overdrive (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203520, + "fields": { + "id_car_serie": 49219, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203521, + "fields": { + "id_car_serie": 49219, + "name": "2.5 AT Overdrive (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203522, + "fields": { + "id_car_serie": 49219, + "name": "2.5 AT Overdrive (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203523, + "fields": { + "id_car_serie": 62780, + "name": "1.8 TD MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203524, + "fields": { + "id_car_serie": 62780, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203525, + "fields": { + "id_car_serie": 62780, + "name": "2.0 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203526, + "fields": { + "id_car_serie": 62780, + "name": "2.0 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203527, + "fields": { + "id_car_serie": 49221, + "name": "1.6 AT (88 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203529, + "fields": { + "id_car_serie": 49221, + "name": "1.6 Synchromesh (88 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203531, + "fields": { + "id_car_serie": 49222, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203532, + "fields": { + "id_car_serie": 49222, + "name": "2.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203533, + "fields": { + "id_car_serie": 49222, + "name": "2.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203534, + "fields": { + "id_car_serie": 49223, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203535, + "fields": { + "id_car_serie": 49223, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203536, + "fields": { + "id_car_serie": 49223, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203537, + "fields": { + "id_car_serie": 49223, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203538, + "fields": { + "id_car_serie": 49223, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203539, + "fields": { + "id_car_serie": 49223, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203540, + "fields": { + "id_car_serie": 49223, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203541, + "fields": { + "id_car_serie": 49223, + "name": "2.0 Turbo MT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203542, + "fields": { + "id_car_serie": 49224, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203543, + "fields": { + "id_car_serie": 49224, + "name": "1.6 GT MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203544, + "fields": { + "id_car_serie": 49224, + "name": "2.0 GT-S MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203545, + "fields": { + "id_car_serie": 49224, + "name": "2.0 GT MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203546, + "fields": { + "id_car_serie": 49225, + "name": "1.6 AT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203547, + "fields": { + "id_car_serie": 49225, + "name": "1.6 GT MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203548, + "fields": { + "id_car_serie": 49225, + "name": "1.6 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203549, + "fields": { + "id_car_serie": 49225, + "name": "1.8 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203550, + "fields": { + "id_car_serie": 49225, + "name": "1.8 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203551, + "fields": { + "id_car_serie": 49225, + "name": "2.0 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203552, + "fields": { + "id_car_serie": 49225, + "name": "2.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203553, + "fields": { + "id_car_serie": 49225, + "name": "2.0 GT MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203554, + "fields": { + "id_car_serie": 49226, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203555, + "fields": { + "id_car_serie": 49226, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203556, + "fields": { + "id_car_serie": 49226, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203557, + "fields": { + "id_car_serie": 49226, + "name": "2.6 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203558, + "fields": { + "id_car_serie": 49227, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203559, + "fields": { + "id_car_serie": 49227, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203560, + "fields": { + "id_car_serie": 49227, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203561, + "fields": { + "id_car_serie": 49228, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203562, + "fields": { + "id_car_serie": 49228, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203563, + "fields": { + "id_car_serie": 49228, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203564, + "fields": { + "id_car_serie": 49229, + "name": "4.0 AT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203565, + "fields": { + "id_car_serie": 49230, + "name": "3.0 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203566, + "fields": { + "id_car_serie": 49230, + "name": "3.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203567, + "fields": { + "id_car_serie": 49230, + "name": "3.0 3MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203568, + "fields": { + "id_car_serie": 49230, + "name": "3.0 4MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203569, + "fields": { + "id_car_serie": 49230, + "name": "3.4 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203570, + "fields": { + "id_car_serie": 7817, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203571, + "fields": { + "id_car_serie": 7817, + "name": "1.8 MT Overdrive (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203572, + "fields": { + "id_car_serie": 7817, + "name": "2.4 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203573, + "fields": { + "id_car_serie": 7817, + "name": "2.4 MT Overdrive (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203574, + "fields": { + "id_car_serie": 49232, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203575, + "fields": { + "id_car_serie": 49232, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203576, + "fields": { + "id_car_serie": 49232, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203577, + "fields": { + "id_car_serie": 49232, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203578, + "fields": { + "id_car_serie": 49232, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203579, + "fields": { + "id_car_serie": 49232, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203580, + "fields": { + "id_car_serie": 49232, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203581, + "fields": { + "id_car_serie": 49233, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203582, + "fields": { + "id_car_serie": 49233, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203583, + "fields": { + "id_car_serie": 49233, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203584, + "fields": { + "id_car_serie": 49233, + "name": "1.8 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203585, + "fields": { + "id_car_serie": 49233, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203586, + "fields": { + "id_car_serie": 49233, + "name": "1.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203587, + "fields": { + "id_car_serie": 49234, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203588, + "fields": { + "id_car_serie": 49234, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203589, + "fields": { + "id_car_serie": 49234, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203590, + "fields": { + "id_car_serie": 49234, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203591, + "fields": { + "id_car_serie": 49234, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203592, + "fields": { + "id_car_serie": 49234, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203593, + "fields": { + "id_car_serie": 49234, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203594, + "fields": { + "id_car_serie": 49234, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203595, + "fields": { + "id_car_serie": 49234, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203596, + "fields": { + "id_car_serie": 49234, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203597, + "fields": { + "id_car_serie": 49234, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203598, + "fields": { + "id_car_serie": 49234, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203600, + "fields": { + "id_car_serie": 49234, + "name": "2.2 D AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203601, + "fields": { + "id_car_serie": 49234, + "name": "2.2 D MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203602, + "fields": { + "id_car_serie": 49235, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203603, + "fields": { + "id_car_serie": 49235, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203604, + "fields": { + "id_car_serie": 49235, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203605, + "fields": { + "id_car_serie": 49235, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203606, + "fields": { + "id_car_serie": 49235, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203607, + "fields": { + "id_car_serie": 49235, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203608, + "fields": { + "id_car_serie": 49235, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203609, + "fields": { + "id_car_serie": 49235, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203610, + "fields": { + "id_car_serie": 49235, + "name": "1.8 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203611, + "fields": { + "id_car_serie": 49235, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203612, + "fields": { + "id_car_serie": 49235, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203613, + "fields": { + "id_car_serie": 49235, + "name": "1.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203614, + "fields": { + "id_car_serie": 49235, + "name": "2.2 D AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203615, + "fields": { + "id_car_serie": 49236, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203616, + "fields": { + "id_car_serie": 49236, + "name": "1.8 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203617, + "fields": { + "id_car_serie": 49236, + "name": "1.8 5MT Overdrive (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203618, + "fields": { + "id_car_serie": 49236, + "name": "1.8 6MT Overdrive (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203619, + "fields": { + "id_car_serie": 49236, + "name": "1.8 6MT Overdrive (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203620, + "fields": { + "id_car_serie": 49236, + "name": "1.8 5MT Overdrive (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203621, + "fields": { + "id_car_serie": 49237, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203622, + "fields": { + "id_car_serie": 49237, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203623, + "fields": { + "id_car_serie": 49237, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203624, + "fields": { + "id_car_serie": 49237, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203625, + "fields": { + "id_car_serie": 49237, + "name": "1.8 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203626, + "fields": { + "id_car_serie": 49237, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203627, + "fields": { + "id_car_serie": 49237, + "name": "1.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203628, + "fields": { + "id_car_serie": 49238, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203629, + "fields": { + "id_car_serie": 49238, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203630, + "fields": { + "id_car_serie": 49238, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203631, + "fields": { + "id_car_serie": 49238, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203632, + "fields": { + "id_car_serie": 49238, + "name": "1.6 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203633, + "fields": { + "id_car_serie": 49238, + "name": "1.6 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203634, + "fields": { + "id_car_serie": 49238, + "name": "1.6 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203635, + "fields": { + "id_car_serie": 49238, + "name": "1.6 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203636, + "fields": { + "id_car_serie": 49238, + "name": "2.0 D AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203637, + "fields": { + "id_car_serie": 49238, + "name": "2.0 D MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203638, + "fields": { + "id_car_serie": 49238, + "name": "2.0 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203639, + "fields": { + "id_car_serie": 49239, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203640, + "fields": { + "id_car_serie": 7836, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203641, + "fields": { + "id_car_serie": 49239, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203642, + "fields": { + "id_car_serie": 7836, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203643, + "fields": { + "id_car_serie": 7836, + "name": "1.6 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203644, + "fields": { + "id_car_serie": 7836, + "name": "1.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203645, + "fields": { + "id_car_serie": 7836, + "name": "1.6 AT (165 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203647, + "fields": { + "id_car_serie": 7836, + "name": "1.6 6MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203648, + "fields": { + "id_car_serie": 7836, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203649, + "fields": { + "id_car_serie": 7836, + "name": "1.6 5MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203650, + "fields": { + "id_car_serie": 7836, + "name": "1.6 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203655, + "fields": { + "id_car_serie": 7836, + "name": "2.2 D AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203656, + "fields": { + "id_car_serie": 7836, + "name": "2.2 D MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203657, + "fields": { + "id_car_serie": 49240, + "name": "1.6 MT Overdrive (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203658, + "fields": { + "id_car_serie": 49240, + "name": "1.8 MT Overdrive (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203659, + "fields": { + "id_car_serie": 49241, + "name": "1.6 AT Overdrive (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203660, + "fields": { + "id_car_serie": 49241, + "name": "1.6 MT Overdrive (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203661, + "fields": { + "id_car_serie": 49241, + "name": "1.8 AT Overdrive (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203662, + "fields": { + "id_car_serie": 49241, + "name": "1.8 MT Overdrive (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203663, + "fields": { + "id_car_serie": 49242, + "name": "1.2 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203664, + "fields": { + "id_car_serie": 49242, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203665, + "fields": { + "id_car_serie": 49242, + "name": "1.6 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203666, + "fields": { + "id_car_serie": 49242, + "name": "1.6 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203667, + "fields": { + "id_car_serie": 49242, + "name": "1.6 MT Overdrive (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203668, + "fields": { + "id_car_serie": 49244, + "name": "1.2 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203669, + "fields": { + "id_car_serie": 49244, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203670, + "fields": { + "id_car_serie": 49244, + "name": "1.6 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203671, + "fields": { + "id_car_serie": 49244, + "name": "1.6 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203672, + "fields": { + "id_car_serie": 49244, + "name": "1.6 MT Overdrive (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203673, + "fields": { + "id_car_serie": 49245, + "name": "1.1 Toyoglide (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203674, + "fields": { + "id_car_serie": 49245, + "name": "1.1 Synchromesh (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203675, + "fields": { + "id_car_serie": 49246, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203676, + "fields": { + "id_car_serie": 49246, + "name": "1.8 CVT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203677, + "fields": { + "id_car_serie": 49246, + "name": "1.8 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203678, + "fields": { + "id_car_serie": 49247, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203679, + "fields": { + "id_car_serie": 49247, + "name": "1.5 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203680, + "fields": { + "id_car_serie": 49247, + "name": "1.5 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203681, + "fields": { + "id_car_serie": 49247, + "name": "1.9 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203682, + "fields": { + "id_car_serie": 49247, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203683, + "fields": { + "id_car_serie": 49248, + "name": "2.8 AT Overdrive (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203684, + "fields": { + "id_car_serie": 49249, + "name": "2.8 AT Overdrive (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203685, + "fields": { + "id_car_serie": 49249, + "name": "2.8 AT Overdrive (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203686, + "fields": { + "id_car_serie": 49250, + "name": "2.6 AT Overdrive (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203687, + "fields": { + "id_car_serie": 49251, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203688, + "fields": { + "id_car_serie": 49251, + "name": "2.6 AT Overdrive (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203689, + "fields": { + "id_car_serie": 49253, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203690, + "fields": { + "id_car_serie": 49253, + "name": "4.0 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203691, + "fields": { + "id_car_serie": 49253, + "name": "4.0 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203692, + "fields": { + "id_car_serie": 49254, + "name": "2.5 Hybrid CVT RWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203693, + "fields": { + "id_car_serie": 49255, + "name": "2.5 AT RWD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203694, + "fields": { + "id_car_serie": 49255, + "name": "2.5 AT AWD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203695, + "fields": { + "id_car_serie": 49255, + "name": "3.0 AT RWD (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203696, + "fields": { + "id_car_serie": 49255, + "name": "3.0 AT AWD (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203697, + "fields": { + "id_car_serie": 49256, + "name": "3.5 CVT (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203698, + "fields": { + "id_car_serie": 49257, + "name": "3.5 CVT (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203699, + "fields": { + "id_car_serie": 49258, + "name": "2.5 AT RWD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203700, + "fields": { + "id_car_serie": 49258, + "name": "2.5 AT AWD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203701, + "fields": { + "id_car_serie": 49258, + "name": "3.0 AT RWD (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203702, + "fields": { + "id_car_serie": 49258, + "name": "3.0 AT AWD (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203703, + "fields": { + "id_car_serie": 53168, + "name": "3.5 AT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203704, + "fields": { + "id_car_serie": 49259, + "name": "2.5 AT RWD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203705, + "fields": { + "id_car_serie": 49259, + "name": "2.5 AT AWD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203706, + "fields": { + "id_car_serie": 53169, + "name": "3.0 AT RWD (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203707, + "fields": { + "id_car_serie": 53169, + "name": "3.0 AT AWD (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203708, + "fields": { + "id_car_serie": 49259, + "name": "3.5 AT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203709, + "fields": { + "id_car_serie": 49260, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203710, + "fields": { + "id_car_serie": 49260, + "name": "2.5 AT RWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203711, + "fields": { + "id_car_serie": 49260, + "name": "2.5 AT AWD (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203712, + "fields": { + "id_car_serie": 49260, + "name": "3.0 AT RWD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203713, + "fields": { + "id_car_serie": 49260, + "name": "3.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203715, + "fields": { + "id_car_serie": 49261, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203716, + "fields": { + "id_car_serie": 49261, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203717, + "fields": { + "id_car_serie": 49261, + "name": "2.4 TD AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203718, + "fields": { + "id_car_serie": 49261, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203719, + "fields": { + "id_car_serie": 49261, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203720, + "fields": { + "id_car_serie": 49261, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203721, + "fields": { + "id_car_serie": 49262, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203722, + "fields": { + "id_car_serie": 49262, + "name": "2.4 TD AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203723, + "fields": { + "id_car_serie": 49262, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203724, + "fields": { + "id_car_serie": 49262, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203725, + "fields": { + "id_car_serie": 49262, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203726, + "fields": { + "id_car_serie": 49263, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203727, + "fields": { + "id_car_serie": 49263, + "name": "2.4 TD AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203728, + "fields": { + "id_car_serie": 49263, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203729, + "fields": { + "id_car_serie": 49263, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203730, + "fields": { + "id_car_serie": 49264, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203731, + "fields": { + "id_car_serie": 49264, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203732, + "fields": { + "id_car_serie": 49264, + "name": "2.4 TD AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203733, + "fields": { + "id_car_serie": 49264, + "name": "2.4 TD AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203734, + "fields": { + "id_car_serie": 49264, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203735, + "fields": { + "id_car_serie": 49264, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203736, + "fields": { + "id_car_serie": 49265, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203737, + "fields": { + "id_car_serie": 49265, + "name": "2.0 4MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203738, + "fields": { + "id_car_serie": 49265, + "name": "2.0 5MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203739, + "fields": { + "id_car_serie": 49265, + "name": "2.4 TD AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203740, + "fields": { + "id_car_serie": 49265, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203741, + "fields": { + "id_car_serie": 49266, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203742, + "fields": { + "id_car_serie": 49266, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203743, + "fields": { + "id_car_serie": 49266, + "name": "2.4 TD AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203744, + "fields": { + "id_car_serie": 49266, + "name": "2.4 TD MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203745, + "fields": { + "id_car_serie": 49266, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203746, + "fields": { + "id_car_serie": 49268, + "name": "2.0 Toyoglide (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203747, + "fields": { + "id_car_serie": 49268, + "name": "2.0 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203748, + "fields": { + "id_car_serie": 49268, + "name": "2.6 Toyoglide (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203749, + "fields": { + "id_car_serie": 49268, + "name": "2.6 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203750, + "fields": { + "id_car_serie": 49269, + "name": "2.6 Toyoglide (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203751, + "fields": { + "id_car_serie": 49269, + "name": "2.6 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203752, + "fields": { + "id_car_serie": 49270, + "name": "2.0 Toyoglide (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203753, + "fields": { + "id_car_serie": 49270, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203754, + "fields": { + "id_car_serie": 49270, + "name": "2.3 Toyoglide (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203755, + "fields": { + "id_car_serie": 49270, + "name": "2.3 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203756, + "fields": { + "id_car_serie": 49270, + "name": "2.6 Toyoglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203757, + "fields": { + "id_car_serie": 49270, + "name": "2.6 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203758, + "fields": { + "id_car_serie": 49271, + "name": "2.0 Toyoglide (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203759, + "fields": { + "id_car_serie": 49271, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203760, + "fields": { + "id_car_serie": 49271, + "name": "2.3 Toyoglide (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203761, + "fields": { + "id_car_serie": 49271, + "name": "2.3 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203762, + "fields": { + "id_car_serie": 49271, + "name": "2.6 Toyoglide (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203763, + "fields": { + "id_car_serie": 49271, + "name": "2.6 Toyoglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203764, + "fields": { + "id_car_serie": 49271, + "name": "2.6 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203765, + "fields": { + "id_car_serie": 49271, + "name": "2.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203766, + "fields": { + "id_car_serie": 49272, + "name": "2.0 Toyoglide (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203767, + "fields": { + "id_car_serie": 49272, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203768, + "fields": { + "id_car_serie": 49273, + "name": "1.9 Toyoglide (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203769, + "fields": { + "id_car_serie": 49273, + "name": "1.9 Toyoglide (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203770, + "fields": { + "id_car_serie": 49273, + "name": "1.9 Synchromesh (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203771, + "fields": { + "id_car_serie": 49273, + "name": "1.9 MT Overdrive (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203772, + "fields": { + "id_car_serie": 49273, + "name": "1.9 MT Overdrive (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203773, + "fields": { + "id_car_serie": 49273, + "name": "2.0 Toyoglide (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203774, + "fields": { + "id_car_serie": 49273, + "name": "2.0 Synchromesh (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203775, + "fields": { + "id_car_serie": 49274, + "name": "1.5 Synchromesh (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203776, + "fields": { + "id_car_serie": 49274, + "name": "1.5 Synchromesh (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203777, + "fields": { + "id_car_serie": 49274, + "name": "1.9 Synchromesh (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203778, + "fields": { + "id_car_serie": 49275, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203779, + "fields": { + "id_car_serie": 49275, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203780, + "fields": { + "id_car_serie": 49275, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203781, + "fields": { + "id_car_serie": 49275, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203782, + "fields": { + "id_car_serie": 49276, + "name": "1.0 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203783, + "fields": { + "id_car_serie": 49276, + "name": "1.0 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203784, + "fields": { + "id_car_serie": 49276, + "name": "1.0 AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203785, + "fields": { + "id_car_serie": 49276, + "name": "1.0 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203786, + "fields": { + "id_car_serie": 49276, + "name": "1.0 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203787, + "fields": { + "id_car_serie": 49276, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203788, + "fields": { + "id_car_serie": 49276, + "name": "1.0 MT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203789, + "fields": { + "id_car_serie": 49276, + "name": "1.0 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203790, + "fields": { + "id_car_serie": 49276, + "name": "1.3 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203791, + "fields": { + "id_car_serie": 49276, + "name": "1.3 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203792, + "fields": { + "id_car_serie": 49276, + "name": "1.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203793, + "fields": { + "id_car_serie": 49276, + "name": "1.3 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203794, + "fields": { + "id_car_serie": 49277, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203795, + "fields": { + "id_car_serie": 49277, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203796, + "fields": { + "id_car_serie": 49277, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203797, + "fields": { + "id_car_serie": 49277, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203798, + "fields": { + "id_car_serie": 49278, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203799, + "fields": { + "id_car_serie": 49278, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203800, + "fields": { + "id_car_serie": 49278, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203801, + "fields": { + "id_car_serie": 49278, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203802, + "fields": { + "id_car_serie": 49279, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203803, + "fields": { + "id_car_serie": 49279, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203804, + "fields": { + "id_car_serie": 49279, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203805, + "fields": { + "id_car_serie": 49279, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203806, + "fields": { + "id_car_serie": 49280, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203807, + "fields": { + "id_car_serie": 49280, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203808, + "fields": { + "id_car_serie": 49280, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203809, + "fields": { + "id_car_serie": 49280, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203810, + "fields": { + "id_car_serie": 49281, + "name": "1.0 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203811, + "fields": { + "id_car_serie": 49281, + "name": "1.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203812, + "fields": { + "id_car_serie": 49281, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203813, + "fields": { + "id_car_serie": 49281, + "name": "1.5 MT Overdrive (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203814, + "fields": { + "id_car_serie": 49282, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203815, + "fields": { + "id_car_serie": 49282, + "name": "1.5 MT Overdrive (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203816, + "fields": { + "id_car_serie": 49283, + "name": "2.2DT AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203817, + "fields": { + "id_car_serie": 49283, + "name": "2.2DT AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203818, + "fields": { + "id_car_serie": 49283, + "name": "2.2DT MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203819, + "fields": { + "id_car_serie": 49283, + "name": "2.2DT MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203820, + "fields": { + "id_car_serie": 49283, + "name": "2.4 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203821, + "fields": { + "id_car_serie": 49283, + "name": "2.4 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203822, + "fields": { + "id_car_serie": 49283, + "name": "2.4 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203823, + "fields": { + "id_car_serie": 49283, + "name": "2.4 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203824, + "fields": { + "id_car_serie": 49284, + "name": "2.2DT AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203825, + "fields": { + "id_car_serie": 49284, + "name": "2.2DT AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203826, + "fields": { + "id_car_serie": 49284, + "name": "2.2DT MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203827, + "fields": { + "id_car_serie": 49284, + "name": "2.2DT MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203828, + "fields": { + "id_car_serie": 49284, + "name": "2.4 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203829, + "fields": { + "id_car_serie": 49284, + "name": "2.4 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203830, + "fields": { + "id_car_serie": 49284, + "name": "2.4 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203831, + "fields": { + "id_car_serie": 49284, + "name": "2.4 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203832, + "fields": { + "id_car_serie": 49285, + "name": "4.0 AT 4WD (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203833, + "fields": { + "id_car_serie": 49285, + "name": "4.0 MT 4WD (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203834, + "fields": { + "id_car_serie": 49286, + "name": "4.0 AT 4WD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203835, + "fields": { + "id_car_serie": 49286, + "name": "4.0 AT (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203836, + "fields": { + "id_car_serie": 49286, + "name": "4.0 MT 4WD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203837, + "fields": { + "id_car_serie": 49286, + "name": "4.0 MT (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203838, + "fields": { + "id_car_serie": 49289, + "name": "2.5 MT TD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203839, + "fields": { + "id_car_serie": 49289, + "name": "2.5 TD MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203840, + "fields": { + "id_car_serie": 49289, + "name": "2.7 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203841, + "fields": { + "id_car_serie": 49289, + "name": "2.7 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203842, + "fields": { + "id_car_serie": 49289, + "name": "3.0 D MT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203843, + "fields": { + "id_car_serie": 49289, + "name": "4.0 MT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203844, + "fields": { + "id_car_serie": 49289, + "name": "4.0 MT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203845, + "fields": { + "id_car_serie": 49290, + "name": "2.5G MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203846, + "fields": { + "id_car_serie": 49290, + "name": "2.7 AT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203847, + "fields": { + "id_car_serie": 49290, + "name": "2.7 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203848, + "fields": { + "id_car_serie": 49290, + "name": "2.7 MT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203849, + "fields": { + "id_car_serie": 49290, + "name": "2.7 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203850, + "fields": { + "id_car_serie": 49290, + "name": "3.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203851, + "fields": { + "id_car_serie": 49290, + "name": "3.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203852, + "fields": { + "id_car_serie": 49290, + "name": "4.0 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203853, + "fields": { + "id_car_serie": 49290, + "name": "4.0 MT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203854, + "fields": { + "id_car_serie": 49292, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203855, + "fields": { + "id_car_serie": 49292, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203856, + "fields": { + "id_car_serie": 49293, + "name": "3.3 CVT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203857, + "fields": { + "id_car_serie": 49295, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203858, + "fields": { + "id_car_serie": 49295, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203859, + "fields": { + "id_car_serie": 49295, + "name": "2.4 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203860, + "fields": { + "id_car_serie": 49295, + "name": "2.4 TD AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203861, + "fields": { + "id_car_serie": 49295, + "name": "2.4 D MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203862, + "fields": { + "id_car_serie": 49295, + "name": "2.4 TD MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203863, + "fields": { + "id_car_serie": 49295, + "name": "2.8 D AT 4WD 8seat (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203864, + "fields": { + "id_car_serie": 49295, + "name": "2.8 D MT 4WD 8seat (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203865, + "fields": { + "id_car_serie": 53480, + "name": "2.7 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203866, + "fields": { + "id_car_serie": 53480, + "name": "2.7 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203867, + "fields": { + "id_car_serie": 53480, + "name": "3.0 D AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203868, + "fields": { + "id_car_serie": 53480, + "name": "3.0 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203869, + "fields": { + "id_car_serie": 53480, + "name": "3.0 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203871, + "fields": { + "id_car_serie": 49299, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203872, + "fields": { + "id_car_serie": 49299, + "name": "2.8 D MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203873, + "fields": { + "id_car_serie": 49307, + "name": "2.7 AT 7seat (187 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203874, + "fields": { + "id_car_serie": 49307, + "name": "2.7 AT 5seat (187 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203875, + "fields": { + "id_car_serie": 49307, + "name": "3.5 AT 4WD 5seat (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203876, + "fields": { + "id_car_serie": 49307, + "name": "3.5 AT 4WD 7seat (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203877, + "fields": { + "id_car_serie": 49307, + "name": "3.5 AT 7seat (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203878, + "fields": { + "id_car_serie": 49307, + "name": "3.5 AT 5seat (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203879, + "fields": { + "id_car_serie": 49308, + "name": "2.4 AT 4WD 5seat (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203880, + "fields": { + "id_car_serie": 49308, + "name": "2.4 AT 7seat (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203881, + "fields": { + "id_car_serie": 49308, + "name": "2.4 AT 5seat (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203882, + "fields": { + "id_car_serie": 49308, + "name": "2.4 AT 4WD 5seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203883, + "fields": { + "id_car_serie": 49308, + "name": "2.4 AT 7seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203884, + "fields": { + "id_car_serie": 49308, + "name": "2.4 AT 5seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203885, + "fields": { + "id_car_serie": 49308, + "name": "3.3 AT 5seat (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203886, + "fields": { + "id_car_serie": 49308, + "name": "3.3 AT 7seat (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203887, + "fields": { + "id_car_serie": 49308, + "name": "3.3 AT 5seat (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203888, + "fields": { + "id_car_serie": 49308, + "name": "3.3 AT 7seat (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203889, + "fields": { + "id_car_serie": 49308, + "name": "3.3 AT 4WD 7seat (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203890, + "fields": { + "id_car_serie": 49308, + "name": "3.3 AT 4WD 7seat (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203891, + "fields": { + "id_car_serie": 49309, + "name": "2.5D MT Turbo AWD (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203892, + "fields": { + "id_car_serie": 49309, + "name": "3.0D AT Turbo AWD (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203893, + "fields": { + "id_car_serie": 49310, + "name": "2.5 TD AT AWD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203894, + "fields": { + "id_car_serie": 49310, + "name": "2.5 TD MT AWD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203895, + "fields": { + "id_car_serie": 49310, + "name": "2.7 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203896, + "fields": { + "id_car_serie": 49311, + "name": "2.5 TD AT AWD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203897, + "fields": { + "id_car_serie": 49311, + "name": "2.5 TD MT AWD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203898, + "fields": { + "id_car_serie": 49311, + "name": "2.5 TD MT AWD (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203899, + "fields": { + "id_car_serie": 49311, + "name": "2.7 AT AWD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203900, + "fields": { + "id_car_serie": 49311, + "name": "2.7 MT AWD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203901, + "fields": { + "id_car_serie": 49311, + "name": "3.0 TD MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203902, + "fields": { + "id_car_serie": 49311, + "name": "4.0 MT AWD (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203903, + "fields": { + "id_car_serie": 49312, + "name": "1.8 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203904, + "fields": { + "id_car_serie": 49312, + "name": "2.4 D AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203905, + "fields": { + "id_car_serie": 49312, + "name": "2.4 MT AWD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203906, + "fields": { + "id_car_serie": 49312, + "name": "2.4 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203907, + "fields": { + "id_car_serie": 49312, + "name": "2.4 D MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203908, + "fields": { + "id_car_serie": 49312, + "name": "2.4 D MT AWD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203909, + "fields": { + "id_car_serie": 49312, + "name": "2.8 D MT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203910, + "fields": { + "id_car_serie": 49312, + "name": "2.8 D MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203911, + "fields": { + "id_car_serie": 49312, + "name": "3.0 AT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203912, + "fields": { + "id_car_serie": 49312, + "name": "3.0 MT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203913, + "fields": { + "id_car_serie": 49313, + "name": "1.8 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203914, + "fields": { + "id_car_serie": 49313, + "name": "2.4 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203915, + "fields": { + "id_car_serie": 49313, + "name": "2.4 D MT AWD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203916, + "fields": { + "id_car_serie": 49313, + "name": "2.4 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203917, + "fields": { + "id_car_serie": 49313, + "name": "2.4 D MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203918, + "fields": { + "id_car_serie": 49313, + "name": "2.8 D MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203919, + "fields": { + "id_car_serie": 49313, + "name": "2.8 D MT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203920, + "fields": { + "id_car_serie": 49313, + "name": "3.0 AT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203921, + "fields": { + "id_car_serie": 49313, + "name": "3.0 MT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203922, + "fields": { + "id_car_serie": 49314, + "name": "1.8 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203923, + "fields": { + "id_car_serie": 49314, + "name": "2.4 MT AWD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203924, + "fields": { + "id_car_serie": 49314, + "name": "2.4 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203925, + "fields": { + "id_car_serie": 49314, + "name": "2.4 D MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203926, + "fields": { + "id_car_serie": 49314, + "name": "2.4 D MT AWD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203927, + "fields": { + "id_car_serie": 49314, + "name": "2.8 D AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203928, + "fields": { + "id_car_serie": 49314, + "name": "2.8 D MT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203929, + "fields": { + "id_car_serie": 49314, + "name": "2.8 D MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203930, + "fields": { + "id_car_serie": 49314, + "name": "3.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203931, + "fields": { + "id_car_serie": 49314, + "name": "3.0 AT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203932, + "fields": { + "id_car_serie": 49314, + "name": "3.0 MT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203933, + "fields": { + "id_car_serie": 49314, + "name": "3.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203934, + "fields": { + "id_car_serie": 49315, + "name": "2.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203935, + "fields": { + "id_car_serie": 49315, + "name": "2.4 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203936, + "fields": { + "id_car_serie": 49315, + "name": "2.4 T MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203937, + "fields": { + "id_car_serie": 49315, + "name": "2.4 T MT AWD (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203938, + "fields": { + "id_car_serie": 49315, + "name": "2.5 D MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203939, + "fields": { + "id_car_serie": 49315, + "name": "2.5 TD MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203940, + "fields": { + "id_car_serie": 49315, + "name": "3.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203941, + "fields": { + "id_car_serie": 49315, + "name": "3.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203942, + "fields": { + "id_car_serie": 49315, + "name": "3.0 MT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203943, + "fields": { + "id_car_serie": 49316, + "name": "2.2 D MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203944, + "fields": { + "id_car_serie": 49316, + "name": "2.4 T MT AWD (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203945, + "fields": { + "id_car_serie": 49316, + "name": "2.4 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203946, + "fields": { + "id_car_serie": 49316, + "name": "2.4 T MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203947, + "fields": { + "id_car_serie": 49316, + "name": "2.5 D MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203948, + "fields": { + "id_car_serie": 49316, + "name": "2.5 TD MT AWD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203949, + "fields": { + "id_car_serie": 49316, + "name": "2.5 TD MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203950, + "fields": { + "id_car_serie": 49316, + "name": "2.5 D MT AWD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203951, + "fields": { + "id_car_serie": 49316, + "name": "3.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203952, + "fields": { + "id_car_serie": 49316, + "name": "3.0 MT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203953, + "fields": { + "id_car_serie": 49316, + "name": "3.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203954, + "fields": { + "id_car_serie": 49320, + "name": "2.0 AT 7seat (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203955, + "fields": { + "id_car_serie": 49320, + "name": "2.0 MT 8seat (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203956, + "fields": { + "id_car_serie": 49320, + "name": "2.0 MT 7seat (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203957, + "fields": { + "id_car_serie": 49320, + "name": "2.0 MT 7seat (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203958, + "fields": { + "id_car_serie": 49320, + "name": "2.0 MT 8seat (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203959, + "fields": { + "id_car_serie": 49320, + "name": "2.5 D-4D AT 7seat (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203960, + "fields": { + "id_car_serie": 49320, + "name": "2.5 D-4D MT 8seat (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203961, + "fields": { + "id_car_serie": 49320, + "name": "2.5 D-4D MT 7seat (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203962, + "fields": { + "id_car_serie": 49321, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203963, + "fields": { + "id_car_serie": 49321, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203964, + "fields": { + "id_car_serie": 49321, + "name": "2.5 D-4D AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203965, + "fields": { + "id_car_serie": 49321, + "name": "2.5 D-4D MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203966, + "fields": { + "id_car_serie": 49321, + "name": "2.7 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203967, + "fields": { + "id_car_serie": 49321, + "name": "2.7 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203968, + "fields": { + "id_car_serie": 49322, + "name": "1.33 Turbo MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203969, + "fields": { + "id_car_serie": 49323, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203970, + "fields": { + "id_car_serie": 49323, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203971, + "fields": { + "id_car_serie": 49323, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203972, + "fields": { + "id_car_serie": 49324, + "name": "3.3 CVT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203973, + "fields": { + "id_car_serie": 49325, + "name": "4.0 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203974, + "fields": { + "id_car_serie": 49326, + "name": "4.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203975, + "fields": { + "id_car_serie": 49326, + "name": "4.2 D MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203976, + "fields": { + "id_car_serie": 49326, + "name": "4.5 TD MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203977, + "fields": { + "id_car_serie": 49327, + "name": "4.2 D MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203978, + "fields": { + "id_car_serie": 49328, + "name": "4.2 D MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203979, + "fields": { + "id_car_serie": 49329, + "name": "2.4 TD MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203980, + "fields": { + "id_car_serie": 49329, + "name": "3.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203981, + "fields": { + "id_car_serie": 49329, + "name": "4.2 D MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203982, + "fields": { + "id_car_serie": 49329, + "name": "4.2 TD MT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203983, + "fields": { + "id_car_serie": 49330, + "name": "2.4 TD MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203984, + "fields": { + "id_car_serie": 49330, + "name": "3.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203985, + "fields": { + "id_car_serie": 49330, + "name": "4.2 D MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203986, + "fields": { + "id_car_serie": 49330, + "name": "4.2 TD MT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203987, + "fields": { + "id_car_serie": 49331, + "name": "3.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203988, + "fields": { + "id_car_serie": 49331, + "name": "4.2 D AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203989, + "fields": { + "id_car_serie": 49331, + "name": "4.2 D MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203990, + "fields": { + "id_car_serie": 49331, + "name": "4.2 TD MT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203991, + "fields": { + "id_car_serie": 49332, + "name": "4.2 D MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203992, + "fields": { + "id_car_serie": 49332, + "name": "4.2 TD MT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203993, + "fields": { + "id_car_serie": 49333, + "name": "4.2 D AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203994, + "fields": { + "id_car_serie": 49333, + "name": "4.2 D MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203995, + "fields": { + "id_car_serie": 49335, + "name": "4.2 TD MT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203996, + "fields": { + "id_car_serie": 49336, + "name": "4.2 TD MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203997, + "fields": { + "id_car_serie": 49337, + "name": "4.2 D MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203998, + "fields": { + "id_car_serie": 49338, + "name": "4.2 D MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 203999, + "fields": { + "id_car_serie": 49339, + "name": "3.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204000, + "fields": { + "id_car_serie": 49340, + "name": "3.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204001, + "fields": { + "id_car_serie": 49340, + "name": "4.2 D MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204002, + "fields": { + "id_car_serie": 49341, + "name": "3.4 D MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204003, + "fields": { + "id_car_serie": 49342, + "name": "2.4 TD AT J70 (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204004, + "fields": { + "id_car_serie": 49342, + "name": "3.4 MT J70 (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204005, + "fields": { + "id_car_serie": 49342, + "name": "3.4 MT J71 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204006, + "fields": { + "id_car_serie": 49342, + "name": "3.4 MT J73 (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204008, + "fields": { + "id_car_serie": 49344, + "name": "3.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204009, + "fields": { + "id_car_serie": 49344, + "name": "3.4 D MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204010, + "fields": { + "id_car_serie": 49345, + "name": "4.2 MT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204011, + "fields": { + "id_car_serie": 49346, + "name": "3.0 D MT AWD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204012, + "fields": { + "id_car_serie": 49346, + "name": "3.2 D MT AWD (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204013, + "fields": { + "id_car_serie": 49346, + "name": "3.4 D MT AWD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204014, + "fields": { + "id_car_serie": 49346, + "name": "3.9 MT AWD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204015, + "fields": { + "id_car_serie": 49346, + "name": "3.9 MT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204016, + "fields": { + "id_car_serie": 49347, + "name": "3.0 D MT AWD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204017, + "fields": { + "id_car_serie": 49347, + "name": "3.2 D MT AWD (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204018, + "fields": { + "id_car_serie": 49347, + "name": "3.4 D MT AWD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204019, + "fields": { + "id_car_serie": 49347, + "name": "3.9 MT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204020, + "fields": { + "id_car_serie": 49347, + "name": "3.9 MT AWD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204021, + "fields": { + "id_car_serie": 49348, + "name": "3.0 D MT AWD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204022, + "fields": { + "id_car_serie": 49348, + "name": "3.9 MT AWD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204023, + "fields": { + "id_car_serie": 49348, + "name": "3.9 MT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204024, + "fields": { + "id_car_serie": 49349, + "name": "3.9 MT AWD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204025, + "fields": { + "id_car_serie": 49349, + "name": "4.2 MT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204026, + "fields": { + "id_car_serie": 49350, + "name": "3.9 MT AWD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204027, + "fields": { + "id_car_serie": 49351, + "name": "3.9 MT AWD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204028, + "fields": { + "id_car_serie": 49351, + "name": "3.9 MT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204029, + "fields": { + "id_car_serie": 49352, + "name": "3.0 D MT AWD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204030, + "fields": { + "id_car_serie": 49352, + "name": "3.2 D MT AWD (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204031, + "fields": { + "id_car_serie": 49352, + "name": "3.4 D MT AWD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204032, + "fields": { + "id_car_serie": 49352, + "name": "3.9 MT AWD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204033, + "fields": { + "id_car_serie": 49352, + "name": "3.9 MT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204034, + "fields": { + "id_car_serie": 49353, + "name": "3.4 MT AWD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204035, + "fields": { + "id_car_serie": 49353, + "name": "3.9 MT AWD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204036, + "fields": { + "id_car_serie": 49353, + "name": "3.9 MT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204037, + "fields": { + "id_car_serie": 49354, + "name": "3.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204038, + "fields": { + "id_car_serie": 49355, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204039, + "fields": { + "id_car_serie": 49356, + "name": "1.6i MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204040, + "fields": { + "id_car_serie": 49356, + "name": "1.6 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204041, + "fields": { + "id_car_serie": 49358, + "name": "1.2 MT L (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204042, + "fields": { + "id_car_serie": 49358, + "name": "1.3 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204043, + "fields": { + "id_car_serie": 49358, + "name": "1.3 AMT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204044, + "fields": { + "id_car_serie": 49358, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204045, + "fields": { + "id_car_serie": 49358, + "name": "1.6 AMT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204046, + "fields": { + "id_car_serie": 49360, + "name": "1.2 MT L (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204047, + "fields": { + "id_car_serie": 49360, + "name": "1.2 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204048, + "fields": { + "id_car_serie": 49360, + "name": "1.3 MT L (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204049, + "fields": { + "id_car_serie": 49360, + "name": "1.3 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204050, + "fields": { + "id_car_serie": 49360, + "name": "1.3 AMT L (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204051, + "fields": { + "id_car_serie": 49360, + "name": "1.3 AMT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204052, + "fields": { + "id_car_serie": 49360, + "name": "1.6 MT L (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204053, + "fields": { + "id_car_serie": 49360, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204054, + "fields": { + "id_car_serie": 49360, + "name": "1.6 AMT L (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204055, + "fields": { + "id_car_serie": 49360, + "name": "1.6 AMT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204056, + "fields": { + "id_car_serie": 49361, + "name": "1.2 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204057, + "fields": { + "id_car_serie": 49361, + "name": "1.2 Saxomat (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204058, + "fields": { + "id_car_serie": 49361, + "name": "1.3 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204059, + "fields": { + "id_car_serie": 49361, + "name": "1.3 AMT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204060, + "fields": { + "id_car_serie": 49361, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204061, + "fields": { + "id_car_serie": 49361, + "name": "1.5 AMT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204062, + "fields": { + "id_car_serie": 49361, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204063, + "fields": { + "id_car_serie": 49361, + "name": "1.6 AMT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204064, + "fields": { + "id_car_serie": 49362, + "name": "1.2 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204065, + "fields": { + "id_car_serie": 49362, + "name": "1.2 Saxomat (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204066, + "fields": { + "id_car_serie": 49362, + "name": "1.3 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204067, + "fields": { + "id_car_serie": 49362, + "name": "1.3 AMT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204068, + "fields": { + "id_car_serie": 49362, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204069, + "fields": { + "id_car_serie": 49362, + "name": "1.5 AMT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204070, + "fields": { + "id_car_serie": 49362, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204071, + "fields": { + "id_car_serie": 49362, + "name": "1.6 AMT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204072, + "fields": { + "id_car_serie": 49363, + "name": "1.2 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204073, + "fields": { + "id_car_serie": 49363, + "name": "1.2 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204074, + "fields": { + "id_car_serie": 49363, + "name": "1.2 Saxomat (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204075, + "fields": { + "id_car_serie": 49363, + "name": "1.3 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204076, + "fields": { + "id_car_serie": 49363, + "name": "1.3 AMT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204077, + "fields": { + "id_car_serie": 49363, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204078, + "fields": { + "id_car_serie": 49363, + "name": "1.5 AMT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204079, + "fields": { + "id_car_serie": 49364, + "name": "1.2 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204080, + "fields": { + "id_car_serie": 49364, + "name": "1.2 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204081, + "fields": { + "id_car_serie": 49364, + "name": "1.2 Saxomat (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204082, + "fields": { + "id_car_serie": 49364, + "name": "1.3 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204083, + "fields": { + "id_car_serie": 49364, + "name": "1.3 AMT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204084, + "fields": { + "id_car_serie": 49364, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204085, + "fields": { + "id_car_serie": 49364, + "name": "1.5 AMT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204086, + "fields": { + "id_car_serie": 47514, + "name": "1.1 MT (25 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204087, + "fields": { + "id_car_serie": 49366, + "name": "1.1 MT (25 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204088, + "fields": { + "id_car_serie": 49367, + "name": "1.2 TSI MT L1 (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204089, + "fields": { + "id_car_serie": 49367, + "name": "1.2 TSI MT L2 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204090, + "fields": { + "id_car_serie": 49367, + "name": "1.2 TSI MT L1 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204091, + "fields": { + "id_car_serie": 49367, + "name": "1.2 TSI MT L2 (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204092, + "fields": { + "id_car_serie": 49367, + "name": "1.2 TSI MT L1 (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204093, + "fields": { + "id_car_serie": 49367, + "name": "1.6 TDI MT L1 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204094, + "fields": { + "id_car_serie": 49367, + "name": "1.6 TDI DSG L2 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204095, + "fields": { + "id_car_serie": 49367, + "name": "1.6 TDI DSG L1 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204096, + "fields": { + "id_car_serie": 49367, + "name": "2.0 TDI MT L1 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204097, + "fields": { + "id_car_serie": 49367, + "name": "2.0 TDI MT 4Motion L1 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204098, + "fields": { + "id_car_serie": 49367, + "name": "2.0 TDI MT L1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204099, + "fields": { + "id_car_serie": 49367, + "name": "2.0 MT EcoFuel L1 (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204100, + "fields": { + "id_car_serie": 49367, + "name": "2.0 TDI MT L2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204101, + "fields": { + "id_car_serie": 49367, + "name": "2.0 TDI MT L2 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204102, + "fields": { + "id_car_serie": 49367, + "name": "2.0 TDI MT 4Motion L2 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204103, + "fields": { + "id_car_serie": 49367, + "name": "2.0 TDI DSG L2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204104, + "fields": { + "id_car_serie": 49367, + "name": "2.0 TDI DSG L1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204105, + "fields": { + "id_car_serie": 49367, + "name": "2.0 TDI DSG 4Motion L1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204106, + "fields": { + "id_car_serie": 49367, + "name": "2.0 TDI DSG 4Motion L2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204107, + "fields": { + "id_car_serie": 49368, + "name": "1.2 TSI MT L1 (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204108, + "fields": { + "id_car_serie": 49368, + "name": "1.2 TSI MT L1 (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204109, + "fields": { + "id_car_serie": 49368, + "name": "1.2 TSI MT L2 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204110, + "fields": { + "id_car_serie": 49368, + "name": "1.2 TSI MT L1 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204111, + "fields": { + "id_car_serie": 49368, + "name": "1.6 TDI MT L1 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204112, + "fields": { + "id_car_serie": 49368, + "name": "1.6 TDI DSG L1 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204113, + "fields": { + "id_car_serie": 49368, + "name": "1.6 TDI DSG L2 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204114, + "fields": { + "id_car_serie": 49368, + "name": "2.0 TDI MT L1 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204115, + "fields": { + "id_car_serie": 49368, + "name": "2.0 TDI MT L2 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204119, + "fields": { + "id_car_serie": 49370, + "name": "1.2 TSI MT L1 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204120, + "fields": { + "id_car_serie": 49370, + "name": "1.2 TSI MT L2 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204121, + "fields": { + "id_car_serie": 49370, + "name": "1.2 TSI MT L1 (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204122, + "fields": { + "id_car_serie": 49370, + "name": "1.6 TDI MT L1 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204123, + "fields": { + "id_car_serie": 49370, + "name": "1.6 TDI DSG L2 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204124, + "fields": { + "id_car_serie": 49370, + "name": "1.6 TDI DSG L1 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204125, + "fields": { + "id_car_serie": 49370, + "name": "2.0 TDI MT L2 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204126, + "fields": { + "id_car_serie": 49370, + "name": "2.0 TDI MT L1 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204127, + "fields": { + "id_car_serie": 49370, + "name": "2.0 TDI MT 4Motion L1 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204128, + "fields": { + "id_car_serie": 49370, + "name": "2.0 TDI MT L1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204129, + "fields": { + "id_car_serie": 49370, + "name": "2.0 EcoFuel MT L1 (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204130, + "fields": { + "id_car_serie": 49370, + "name": "2.0 TDI MT L2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204131, + "fields": { + "id_car_serie": 49370, + "name": "2.0 TDI DSG L1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204132, + "fields": { + "id_car_serie": 49370, + "name": "2.0 TDI DSG 4Motion L1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204133, + "fields": { + "id_car_serie": 49372, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204134, + "fields": { + "id_car_serie": 49372, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204135, + "fields": { + "id_car_serie": 49372, + "name": "1.9 TDI MT 4Motion (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204136, + "fields": { + "id_car_serie": 49372, + "name": "1.9 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204138, + "fields": { + "id_car_serie": 49372, + "name": "1.9 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204139, + "fields": { + "id_car_serie": 49372, + "name": "2.0 TDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204141, + "fields": { + "id_car_serie": 49372, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204150, + "fields": { + "id_car_serie": 49374, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204151, + "fields": { + "id_car_serie": 49374, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204152, + "fields": { + "id_car_serie": 49374, + "name": "1.9 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204153, + "fields": { + "id_car_serie": 49374, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204154, + "fields": { + "id_car_serie": 49374, + "name": "1.9 EcoFuel MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204155, + "fields": { + "id_car_serie": 49375, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204156, + "fields": { + "id_car_serie": 49375, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204157, + "fields": { + "id_car_serie": 49375, + "name": "1.7 TD MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204158, + "fields": { + "id_car_serie": 49375, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204159, + "fields": { + "id_car_serie": 49375, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204160, + "fields": { + "id_car_serie": 49376, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204161, + "fields": { + "id_car_serie": 49376, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204162, + "fields": { + "id_car_serie": 49376, + "name": "1.7 TD MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204163, + "fields": { + "id_car_serie": 49376, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204164, + "fields": { + "id_car_serie": 49376, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204165, + "fields": { + "id_car_serie": 49377, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204166, + "fields": { + "id_car_serie": 49377, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204167, + "fields": { + "id_car_serie": 49377, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204168, + "fields": { + "id_car_serie": 49377, + "name": "1.6 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204169, + "fields": { + "id_car_serie": 49377, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204170, + "fields": { + "id_car_serie": 49378, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204171, + "fields": { + "id_car_serie": 49379, + "name": "1.6 I-Motion AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204172, + "fields": { + "id_car_serie": 49379, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204173, + "fields": { + "id_car_serie": 49380, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204174, + "fields": { + "id_car_serie": 49380, + "name": "1.4 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204175, + "fields": { + "id_car_serie": 49380, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204176, + "fields": { + "id_car_serie": 49380, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204177, + "fields": { + "id_car_serie": 49381, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204178, + "fields": { + "id_car_serie": 49382, + "name": "1.0 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204179, + "fields": { + "id_car_serie": 49382, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204180, + "fields": { + "id_car_serie": 49383, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204181, + "fields": { + "id_car_serie": 49386, + "name": "1.8 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204182, + "fields": { + "id_car_serie": 49388, + "name": "1.8 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204183, + "fields": { + "id_car_serie": 49389, + "name": "2.0 TSI 4MOTION BlueMotion MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204184, + "fields": { + "id_car_serie": 49389, + "name": "2.0 TSI 4MOTION BlueMotion DSG (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204185, + "fields": { + "id_car_serie": 49390, + "name": "2.0 TSI BlueMotion MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204186, + "fields": { + "id_car_serie": 49390, + "name": "2.0 TSI BlueMotion DSG (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204187, + "fields": { + "id_car_serie": 49391, + "name": "2.0 TSI 4MOTION BlueMotion MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204188, + "fields": { + "id_car_serie": 49391, + "name": "2.0 TSI 4MOTION BlueMotion DSG (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204189, + "fields": { + "id_car_serie": 49392, + "name": "2.0 TSI BlueMotion MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204190, + "fields": { + "id_car_serie": 49392, + "name": "2.0 TSI BlueMotion DSG (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204191, + "fields": { + "id_car_serie": 49393, + "name": "2.0 TSI DSG 4Motion (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204192, + "fields": { + "id_car_serie": 49394, + "name": "2.0 TSI MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204193, + "fields": { + "id_car_serie": 49394, + "name": "2.0 TSI DSG (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204194, + "fields": { + "id_car_serie": 49394, + "name": "2.0 TSI DSG “Edition 35” (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204195, + "fields": { + "id_car_serie": 49395, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204196, + "fields": { + "id_car_serie": 49395, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204197, + "fields": { + "id_car_serie": 49395, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204198, + "fields": { + "id_car_serie": 49395, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204199, + "fields": { + "id_car_serie": 49395, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204200, + "fields": { + "id_car_serie": 49395, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204201, + "fields": { + "id_car_serie": 49395, + "name": "1.6 DSG (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204202, + "fields": { + "id_car_serie": 49396, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204203, + "fields": { + "id_car_serie": 49396, + "name": "1.6 TDI BlueMotion MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204204, + "fields": { + "id_car_serie": 49396, + "name": "1.6 TDI BlueMotion DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204205, + "fields": { + "id_car_serie": 49397, + "name": "2.0 TSI DSG 4Motion (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204206, + "fields": { + "id_car_serie": 49398, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204207, + "fields": { + "id_car_serie": 49398, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204208, + "fields": { + "id_car_serie": 49398, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204209, + "fields": { + "id_car_serie": 49398, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204210, + "fields": { + "id_car_serie": 49398, + "name": "1.4 TSI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204211, + "fields": { + "id_car_serie": 49398, + "name": "1.4 TSI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204212, + "fields": { + "id_car_serie": 49398, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204213, + "fields": { + "id_car_serie": 49398, + "name": "1.4 TSI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204214, + "fields": { + "id_car_serie": 49398, + "name": "1.6 FSI Tiptronic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204215, + "fields": { + "id_car_serie": 49398, + "name": "1.6 Tiptronic (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204216, + "fields": { + "id_car_serie": 49398, + "name": "1.6 FSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204217, + "fields": { + "id_car_serie": 49398, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204218, + "fields": { + "id_car_serie": 49398, + "name": "1.9 TDI BlueMotion MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204219, + "fields": { + "id_car_serie": 49398, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204220, + "fields": { + "id_car_serie": 49398, + "name": "1.9 TDI 5MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204221, + "fields": { + "id_car_serie": 49398, + "name": "1.9 TDI 6MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204222, + "fields": { + "id_car_serie": 49398, + "name": "1.9 TDI 7DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204223, + "fields": { + "id_car_serie": 49398, + "name": "1.9 TDI 6DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204224, + "fields": { + "id_car_serie": 49398, + "name": "2.0 FSI Tiptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204225, + "fields": { + "id_car_serie": 49398, + "name": "2.0 FSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204226, + "fields": { + "id_car_serie": 49398, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204227, + "fields": { + "id_car_serie": 49398, + "name": "2.0 TDI DPF MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204228, + "fields": { + "id_car_serie": 49398, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204229, + "fields": { + "id_car_serie": 49398, + "name": "2.0 TDI DPF DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204230, + "fields": { + "id_car_serie": 49399, + "name": "3.2 VR6 4motion MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204231, + "fields": { + "id_car_serie": 49399, + "name": "3.2 VR6 4motion DSG (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204232, + "fields": { + "id_car_serie": 49400, + "name": "1.4 TSI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204233, + "fields": { + "id_car_serie": 49400, + "name": "1.4 TSI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204234, + "fields": { + "id_car_serie": 49400, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204235, + "fields": { + "id_car_serie": 49400, + "name": "2.0 TDI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204236, + "fields": { + "id_car_serie": 49401, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204237, + "fields": { + "id_car_serie": 49401, + "name": "1.4 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204238, + "fields": { + "id_car_serie": 49401, + "name": "1.4 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204239, + "fields": { + "id_car_serie": 49401, + "name": "1.4 TSI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204240, + "fields": { + "id_car_serie": 49401, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204241, + "fields": { + "id_car_serie": 49401, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204242, + "fields": { + "id_car_serie": 49401, + "name": "1.9 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204243, + "fields": { + "id_car_serie": 49401, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204244, + "fields": { + "id_car_serie": 49401, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204245, + "fields": { + "id_car_serie": 49402, + "name": "2.0 TSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204246, + "fields": { + "id_car_serie": 49402, + "name": "2.0 TSI Edition 30 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204247, + "fields": { + "id_car_serie": 49402, + "name": "2.0 TSI Pirelli MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204248, + "fields": { + "id_car_serie": 49402, + "name": "2.0 TSI DSG (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204249, + "fields": { + "id_car_serie": 49402, + "name": "2.0 TSI Edition 30 DSG (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204250, + "fields": { + "id_car_serie": 49402, + "name": "2.0 TSI Pirelli DSG (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204251, + "fields": { + "id_car_serie": 49403, + "name": "2.0 TSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204252, + "fields": { + "id_car_serie": 49403, + "name": "2.0 TSI Edition 30 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204253, + "fields": { + "id_car_serie": 49403, + "name": "2.0 TSI Pirelli MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204254, + "fields": { + "id_car_serie": 49403, + "name": "2.0 TSI DSG (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204255, + "fields": { + "id_car_serie": 49403, + "name": "2.0 TSI Edition 30 DSG (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204256, + "fields": { + "id_car_serie": 49403, + "name": "2.0 TSI Pirelli DSG (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204257, + "fields": { + "id_car_serie": 49404, + "name": "3.2 VR6 4motion MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204258, + "fields": { + "id_car_serie": 49404, + "name": "3.2 VR6 4motion DSG (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204260, + "fields": { + "id_car_serie": 49406, + "name": "1.8 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204261, + "fields": { + "id_car_serie": 49407, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204262, + "fields": { + "id_car_serie": 49407, + "name": "1.8 Kat MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204263, + "fields": { + "id_car_serie": 49407, + "name": "1.8 16v MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204264, + "fields": { + "id_car_serie": 49407, + "name": "1.8 16v Kat MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204265, + "fields": { + "id_car_serie": 49407, + "name": "1.8 G60 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204266, + "fields": { + "id_car_serie": 49408, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204267, + "fields": { + "id_car_serie": 49409, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204268, + "fields": { + "id_car_serie": 49409, + "name": "1.8 16v MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204269, + "fields": { + "id_car_serie": 49409, + "name": "1.8 Kat MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204270, + "fields": { + "id_car_serie": 49409, + "name": "1.8 16v Kat MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204271, + "fields": { + "id_car_serie": 49409, + "name": "1.8 G60 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204272, + "fields": { + "id_car_serie": 49410, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204273, + "fields": { + "id_car_serie": 49410, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204274, + "fields": { + "id_car_serie": 49411, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204275, + "fields": { + "id_car_serie": 49411, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204276, + "fields": { + "id_car_serie": 49412, + "name": "1.0 BlueMotion MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204277, + "fields": { + "id_car_serie": 49412, + "name": "1.0 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204278, + "fields": { + "id_car_serie": 49412, + "name": "1.0 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204279, + "fields": { + "id_car_serie": 49412, + "name": "1.0 BlueMotion MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204280, + "fields": { + "id_car_serie": 49412, + "name": "1.6 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204281, + "fields": { + "id_car_serie": 49412, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204282, + "fields": { + "id_car_serie": 49412, + "name": "1.6 i-Motion (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204283, + "fields": { + "id_car_serie": 49412, + "name": "1.6 i-Motion (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204284, + "fields": { + "id_car_serie": 49413, + "name": "1.0 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204285, + "fields": { + "id_car_serie": 49413, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204286, + "fields": { + "id_car_serie": 49414, + "name": "1.0 EcoMotion MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204287, + "fields": { + "id_car_serie": 49414, + "name": "1.0 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204288, + "fields": { + "id_car_serie": 49414, + "name": "1.0 EcoMotion MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204289, + "fields": { + "id_car_serie": 49414, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204290, + "fields": { + "id_car_serie": 49415, + "name": "1.0 EcoMotion MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204291, + "fields": { + "id_car_serie": 49415, + "name": "1.0 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204292, + "fields": { + "id_car_serie": 49415, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204293, + "fields": { + "id_car_serie": 49415, + "name": "1.0 EcoMotion MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204294, + "fields": { + "id_car_serie": 49416, + "name": "1.0 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204295, + "fields": { + "id_car_serie": 49416, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204296, + "fields": { + "id_car_serie": 49416, + "name": "1.8 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204297, + "fields": { + "id_car_serie": 49416, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204298, + "fields": { + "id_car_serie": 49417, + "name": "1.0 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204299, + "fields": { + "id_car_serie": 49417, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204300, + "fields": { + "id_car_serie": 49417, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204301, + "fields": { + "id_car_serie": 49418, + "name": "1.0 T MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204302, + "fields": { + "id_car_serie": 49418, + "name": "1.0 16V MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204303, + "fields": { + "id_car_serie": 49418, + "name": "1.0 16V MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204304, + "fields": { + "id_car_serie": 49418, + "name": "1.0 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204305, + "fields": { + "id_car_serie": 49418, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204306, + "fields": { + "id_car_serie": 49418, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204307, + "fields": { + "id_car_serie": 49418, + "name": "1.0 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204308, + "fields": { + "id_car_serie": 49418, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204309, + "fields": { + "id_car_serie": 49418, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204310, + "fields": { + "id_car_serie": 49418, + "name": "1.8 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204311, + "fields": { + "id_car_serie": 49418, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204312, + "fields": { + "id_car_serie": 49418, + "name": "2.0 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204313, + "fields": { + "id_car_serie": 49418, + "name": "2.0 16V MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204314, + "fields": { + "id_car_serie": 49419, + "name": "1.0 T MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204315, + "fields": { + "id_car_serie": 49419, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204316, + "fields": { + "id_car_serie": 49419, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204317, + "fields": { + "id_car_serie": 49419, + "name": "1.0 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204318, + "fields": { + "id_car_serie": 49419, + "name": "1.0 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204319, + "fields": { + "id_car_serie": 49419, + "name": "1.0 16V MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204320, + "fields": { + "id_car_serie": 49419, + "name": "1.0 16V MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204321, + "fields": { + "id_car_serie": 49419, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204322, + "fields": { + "id_car_serie": 49419, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204323, + "fields": { + "id_car_serie": 49419, + "name": "1.8 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204324, + "fields": { + "id_car_serie": 49419, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204325, + "fields": { + "id_car_serie": 49420, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204326, + "fields": { + "id_car_serie": 49420, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204327, + "fields": { + "id_car_serie": 49420, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204328, + "fields": { + "id_car_serie": 49420, + "name": "2.0 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204329, + "fields": { + "id_car_serie": 49421, + "name": "2.0 16V MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204330, + "fields": { + "id_car_serie": 49422, + "name": "1.8 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204331, + "fields": { + "id_car_serie": 49423, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204332, + "fields": { + "id_car_serie": 49424, + "name": "1.3 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204333, + "fields": { + "id_car_serie": 49425, + "name": "1.8 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204334, + "fields": { + "id_car_serie": 49426, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204335, + "fields": { + "id_car_serie": 49426, + "name": "1.4 TSI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204336, + "fields": { + "id_car_serie": 49426, + "name": "1.4 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204337, + "fields": { + "id_car_serie": 49426, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204338, + "fields": { + "id_car_serie": 49426, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204339, + "fields": { + "id_car_serie": 49426, + "name": "1.4 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204340, + "fields": { + "id_car_serie": 49426, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204341, + "fields": { + "id_car_serie": 49426, + "name": "1.4 TSI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204342, + "fields": { + "id_car_serie": 49426, + "name": "1.4 TSI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204343, + "fields": { + "id_car_serie": 49426, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204344, + "fields": { + "id_car_serie": 49426, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204345, + "fields": { + "id_car_serie": 49426, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204346, + "fields": { + "id_car_serie": 49426, + "name": "1.9 TDI 4Motion MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204347, + "fields": { + "id_car_serie": 49426, + "name": "1.9 TDI 6DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204348, + "fields": { + "id_car_serie": 49426, + "name": "1.9 TDI 7DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204349, + "fields": { + "id_car_serie": 49426, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204350, + "fields": { + "id_car_serie": 49426, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204351, + "fields": { + "id_car_serie": 49427, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204352, + "fields": { + "id_car_serie": 49427, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204353, + "fields": { + "id_car_serie": 49427, + "name": "1.6 AT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204354, + "fields": { + "id_car_serie": 49427, + "name": "1.6 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204355, + "fields": { + "id_car_serie": 49427, + "name": "1.6 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204356, + "fields": { + "id_car_serie": 49427, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204357, + "fields": { + "id_car_serie": 49427, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204358, + "fields": { + "id_car_serie": 49427, + "name": "1.6 ECODiesel MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204359, + "fields": { + "id_car_serie": 49427, + "name": "1.6 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204360, + "fields": { + "id_car_serie": 49427, + "name": "1.6 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204361, + "fields": { + "id_car_serie": 49427, + "name": "1.8 AT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204362, + "fields": { + "id_car_serie": 49427, + "name": "1.8 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204363, + "fields": { + "id_car_serie": 49427, + "name": "1.8 GT 16V MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204364, + "fields": { + "id_car_serie": 49427, + "name": "1.8 GTX MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204365, + "fields": { + "id_car_serie": 49427, + "name": "1.8 GT MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204366, + "fields": { + "id_car_serie": 49428, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204367, + "fields": { + "id_car_serie": 49428, + "name": "1.6 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204368, + "fields": { + "id_car_serie": 49428, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204369, + "fields": { + "id_car_serie": 49428, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204370, + "fields": { + "id_car_serie": 49428, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204371, + "fields": { + "id_car_serie": 49428, + "name": "1.6 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204372, + "fields": { + "id_car_serie": 49428, + "name": "1.8 GT MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204373, + "fields": { + "id_car_serie": 49428, + "name": "1.8 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204374, + "fields": { + "id_car_serie": 49429, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204375, + "fields": { + "id_car_serie": 49429, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204376, + "fields": { + "id_car_serie": 49429, + "name": "1.6 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204377, + "fields": { + "id_car_serie": 49429, + "name": "1.6 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204378, + "fields": { + "id_car_serie": 49429, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204379, + "fields": { + "id_car_serie": 49429, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204380, + "fields": { + "id_car_serie": 49429, + "name": "1.8 GT MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204381, + "fields": { + "id_car_serie": 49429, + "name": "1.8 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204383, + "fields": { + "id_car_serie": 49430, + "name": "1.3 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204384, + "fields": { + "id_car_serie": 49430, + "name": "1.5 AT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204385, + "fields": { + "id_car_serie": 49430, + "name": "1.5 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204386, + "fields": { + "id_car_serie": 49430, + "name": "1.5 5MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204387, + "fields": { + "id_car_serie": 49430, + "name": "1.6 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204389, + "fields": { + "id_car_serie": 49430, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204390, + "fields": { + "id_car_serie": 49430, + "name": "1.6 GLI MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204391, + "fields": { + "id_car_serie": 49430, + "name": "1.6 5MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204392, + "fields": { + "id_car_serie": 49430, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204393, + "fields": { + "id_car_serie": 49430, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204394, + "fields": { + "id_car_serie": 49431, + "name": "1.3 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204395, + "fields": { + "id_car_serie": 49431, + "name": "1.5 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204396, + "fields": { + "id_car_serie": 49431, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204397, + "fields": { + "id_car_serie": 49431, + "name": "1.6 GLI MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204398, + "fields": { + "id_car_serie": 49431, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204399, + "fields": { + "id_car_serie": 49431, + "name": "1.6 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204400, + "fields": { + "id_car_serie": 49431, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204401, + "fields": { + "id_car_serie": 49432, + "name": "1.2 TDI AT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204402, + "fields": { + "id_car_serie": 49432, + "name": "1.2 TDI MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204403, + "fields": { + "id_car_serie": 49433, + "name": "1.6 Turbo MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204404, + "fields": { + "id_car_serie": 49433, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204405, + "fields": { + "id_car_serie": 49434, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204415, + "fields": { + "id_car_serie": 9307, + "name": "3.6 4motion DSG (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204416, + "fields": { + "id_car_serie": 49436, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204417, + "fields": { + "id_car_serie": 49436, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204418, + "fields": { + "id_car_serie": 49436, + "name": "1.6 D AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204419, + "fields": { + "id_car_serie": 49436, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204420, + "fields": { + "id_car_serie": 49436, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204421, + "fields": { + "id_car_serie": 49436, + "name": "1.6 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204422, + "fields": { + "id_car_serie": 49436, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204423, + "fields": { + "id_car_serie": 49436, + "name": "1.8 AT CIS (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204424, + "fields": { + "id_car_serie": 49436, + "name": "1.8 MT CIS (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204425, + "fields": { + "id_car_serie": 49436, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204426, + "fields": { + "id_car_serie": 49436, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204427, + "fields": { + "id_car_serie": 49436, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204428, + "fields": { + "id_car_serie": 49436, + "name": "1.9 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204429, + "fields": { + "id_car_serie": 49436, + "name": "2.2 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204430, + "fields": { + "id_car_serie": 49437, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204431, + "fields": { + "id_car_serie": 49437, + "name": "1.5 D MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204432, + "fields": { + "id_car_serie": 49437, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204433, + "fields": { + "id_car_serie": 49438, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204434, + "fields": { + "id_car_serie": 49438, + "name": "1.5 D MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204435, + "fields": { + "id_car_serie": 49438, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204436, + "fields": { + "id_car_serie": 49439, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204437, + "fields": { + "id_car_serie": 49439, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204438, + "fields": { + "id_car_serie": 49439, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204439, + "fields": { + "id_car_serie": 49440, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204440, + "fields": { + "id_car_serie": 49440, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204441, + "fields": { + "id_car_serie": 49440, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204442, + "fields": { + "id_car_serie": 49441, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204443, + "fields": { + "id_car_serie": 49441, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204444, + "fields": { + "id_car_serie": 49441, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204445, + "fields": { + "id_car_serie": 49442, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204446, + "fields": { + "id_car_serie": 49442, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204447, + "fields": { + "id_car_serie": 49442, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204448, + "fields": { + "id_car_serie": 49443, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204449, + "fields": { + "id_car_serie": 49443, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204450, + "fields": { + "id_car_serie": 49443, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204451, + "fields": { + "id_car_serie": 49444, + "name": "1.8 MT GTI (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204452, + "fields": { + "id_car_serie": 49445, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204453, + "fields": { + "id_car_serie": 49445, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204454, + "fields": { + "id_car_serie": 49445, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204455, + "fields": { + "id_car_serie": 49445, + "name": "1.4 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204456, + "fields": { + "id_car_serie": 49445, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204457, + "fields": { + "id_car_serie": 49445, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204458, + "fields": { + "id_car_serie": 49445, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204459, + "fields": { + "id_car_serie": 49445, + "name": "1.4 TDi MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204460, + "fields": { + "id_car_serie": 49445, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204461, + "fields": { + "id_car_serie": 49445, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204462, + "fields": { + "id_car_serie": 49445, + "name": "1.9 TDi MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204463, + "fields": { + "id_car_serie": 49446, + "name": "1.8 MT GTI (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204464, + "fields": { + "id_car_serie": 49448, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204465, + "fields": { + "id_car_serie": 49448, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204466, + "fields": { + "id_car_serie": 49448, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204467, + "fields": { + "id_car_serie": 49448, + "name": "1.4 D MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204468, + "fields": { + "id_car_serie": 49449, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204469, + "fields": { + "id_car_serie": 49449, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204470, + "fields": { + "id_car_serie": 49449, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204471, + "fields": { + "id_car_serie": 49449, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204472, + "fields": { + "id_car_serie": 49449, + "name": "1.3 D MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204473, + "fields": { + "id_car_serie": 14841, + "name": "2.0 TSI DSG (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204477, + "fields": { + "id_car_serie": 49452, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204478, + "fields": { + "id_car_serie": 49452, + "name": "1.5 AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204479, + "fields": { + "id_car_serie": 49452, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204481, + "fields": { + "id_car_serie": 49452, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204484, + "fields": { + "id_car_serie": 49453, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204485, + "fields": { + "id_car_serie": 49453, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204486, + "fields": { + "id_car_serie": 49453, + "name": "2.3 T5 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204487, + "fields": { + "id_car_serie": 49453, + "name": "2.3 T5 MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204488, + "fields": { + "id_car_serie": 49453, + "name": "2.5 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204489, + "fields": { + "id_car_serie": 49453, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204490, + "fields": { + "id_car_serie": 49453, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204491, + "fields": { + "id_car_serie": 49453, + "name": "2.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204492, + "fields": { + "id_car_serie": 49454, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204493, + "fields": { + "id_car_serie": 49454, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204494, + "fields": { + "id_car_serie": 49454, + "name": "2.3 T5 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204495, + "fields": { + "id_car_serie": 49454, + "name": "2.3 T5 MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204496, + "fields": { + "id_car_serie": 49454, + "name": "2.5 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204497, + "fields": { + "id_car_serie": 49454, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204498, + "fields": { + "id_car_serie": 49454, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204499, + "fields": { + "id_car_serie": 49454, + "name": "2.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204500, + "fields": { + "id_car_serie": 4537, + "name": "1.5 T3 Drive-E Geartronic (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204502, + "fields": { + "id_car_serie": 4537, + "name": "1.6 D2 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204503, + "fields": { + "id_car_serie": 4537, + "name": "1.6 D2 Powershift (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204505, + "fields": { + "id_car_serie": 4537, + "name": "2.0 D2 Drive-E Geartronic (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204506, + "fields": { + "id_car_serie": 4537, + "name": "2.0 T4 Drive-E Geartronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204507, + "fields": { + "id_car_serie": 4537, + "name": "2.0 T4 Drive-E Geartronic AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204508, + "fields": { + "id_car_serie": 4537, + "name": "2.0 T5 Drive-E Geartronic AWD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204509, + "fields": { + "id_car_serie": 4537, + "name": "2.0 T4 Geartronic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204510, + "fields": { + "id_car_serie": 4537, + "name": "2.0 T5 Geartronic AWD (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204511, + "fields": { + "id_car_serie": 4537, + "name": "2.0 T4 Geartronic AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204515, + "fields": { + "id_car_serie": 4537, + "name": "2.0 T5 Geartronic (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204519, + "fields": { + "id_car_serie": 4537, + "name": "2.5 T5 Geartronic AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204520, + "fields": { + "id_car_serie": 4537, + "name": "2.5 T5 Geartronic AWD (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204523, + "fields": { + "id_car_serie": 49456, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204524, + "fields": { + "id_car_serie": 49456, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204527, + "fields": { + "id_car_serie": 49456, + "name": "1.8i MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204528, + "fields": { + "id_car_serie": 49456, + "name": "1.9 T4 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204530, + "fields": { + "id_car_serie": 49456, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204531, + "fields": { + "id_car_serie": 49456, + "name": "2.0 T AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204532, + "fields": { + "id_car_serie": 49456, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204533, + "fields": { + "id_car_serie": 49456, + "name": "2.0 T MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204535, + "fields": { + "id_car_serie": 49456, + "name": "1.9 TD MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204536, + "fields": { + "id_car_serie": 49456, + "name": "1.9 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204537, + "fields": { + "id_car_serie": 49456, + "name": "1.9 T4 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204538, + "fields": { + "id_car_serie": 15160, + "name": "2.5 T MT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204539, + "fields": { + "id_car_serie": 8043, + "name": "2.5 T Geartronic AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204540, + "fields": { + "id_car_serie": 8043, + "name": "2.5 T MT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204541, + "fields": { + "id_car_serie": 49459, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204542, + "fields": { + "id_car_serie": 49459, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204543, + "fields": { + "id_car_serie": 49459, + "name": "2.3 T5 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204544, + "fields": { + "id_car_serie": 49459, + "name": "2.3 T5 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204545, + "fields": { + "id_car_serie": 49459, + "name": "2.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204546, + "fields": { + "id_car_serie": 49459, + "name": "2.5 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204547, + "fields": { + "id_car_serie": 49459, + "name": "2.5 T AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204548, + "fields": { + "id_car_serie": 49459, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204549, + "fields": { + "id_car_serie": 49459, + "name": "2.5 T AT AWD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204550, + "fields": { + "id_car_serie": 49459, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204551, + "fields": { + "id_car_serie": 49459, + "name": "2.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204552, + "fields": { + "id_car_serie": 49459, + "name": "2.5 T MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204553, + "fields": { + "id_car_serie": 49459, + "name": "2.5 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204554, + "fields": { + "id_car_serie": 49459, + "name": "2.5 T MT AWD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204555, + "fields": { + "id_car_serie": 49459, + "name": "2.5 TDI AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204556, + "fields": { + "id_car_serie": 49459, + "name": "2.5 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204557, + "fields": { + "id_car_serie": 49460, + "name": "2.4 T MT AWD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204558, + "fields": { + "id_car_serie": 49461, + "name": "2.2 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204559, + "fields": { + "id_car_serie": 49461, + "name": "2.4 AT 4WD (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204560, + "fields": { + "id_car_serie": 49461, + "name": "2.4 MT 2WD (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204561, + "fields": { + "id_car_serie": 49461, + "name": "2.4 MT 4WD (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204562, + "fields": { + "id_car_serie": 49461, + "name": "3.2 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204563, + "fields": { + "id_car_serie": 49461, + "name": "3.2 TD MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204564, + "fields": { + "id_car_serie": 49462, + "name": "21106 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204565, + "fields": { + "id_car_serie": 49463, + "name": "21106 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204566, + "fields": { + "id_car_serie": 49464, + "name": "1.7 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204567, + "fields": { + "id_car_serie": 49464, + "name": "1.8 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204568, + "fields": { + "id_car_serie": 49465, + "name": "1.7 MT 8 valves. (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204569, + "fields": { + "id_car_serie": 49466, + "name": "1.7 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204570, + "fields": { + "id_car_serie": 49466, + "name": "1.7 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204571, + "fields": { + "id_car_serie": 49466, + "name": "1.8 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204572, + "fields": { + "id_car_serie": 49467, + "name": "1.7 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204573, + "fields": { + "id_car_serie": 49469, + "name": "1.7 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204574, + "fields": { + "id_car_serie": 49470, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204575, + "fields": { + "id_car_serie": 49471, + "name": "1.6 MT 16 valves (5 places) (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204576, + "fields": { + "id_car_serie": 49471, + "name": "1.6 MT 16 valves (7 places) (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204577, + "fields": { + "id_car_serie": 49471, + "name": "1.6 MT 16 valves (7 places) (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204578, + "fields": { + "id_car_serie": 49471, + "name": "1.6 MT 16 valves (5 places) (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204579, + "fields": { + "id_car_serie": 49472, + "name": "1.6 MT 16 valves (Euro-3) (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204580, + "fields": { + "id_car_serie": 49472, + "name": "1.6 MT 16 valves (Euro-4) (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204581, + "fields": { + "id_car_serie": 49473, + "name": "1.2 A MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204582, + "fields": { + "id_car_serie": 49473, + "name": "1.2 M MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204584, + "fields": { + "id_car_serie": 49474, + "name": "7.7 AT Pullman (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204585, + "fields": { + "id_car_serie": 49475, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204586, + "fields": { + "id_car_serie": 49476, + "name": "1.6 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204587, + "fields": { + "id_car_serie": 49476, + "name": "1.7 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204588, + "fields": { + "id_car_serie": 49476, + "name": "1.8 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204589, + "fields": { + "id_car_serie": 49477, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204590, + "fields": { + "id_car_serie": 49478, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204591, + "fields": { + "id_car_serie": 49479, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204592, + "fields": { + "id_car_serie": 49481, + "name": "2.7 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204593, + "fields": { + "id_car_serie": 49483, + "name": "2.0 Flexpower AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204594, + "fields": { + "id_car_serie": 49483, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204595, + "fields": { + "id_car_serie": 49483, + "name": "2.0 Flexpower MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204596, + "fields": { + "id_car_serie": 49483, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204597, + "fields": { + "id_car_serie": 49484, + "name": "2.0 Flexpower AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204598, + "fields": { + "id_car_serie": 49484, + "name": "2.0 Flexpower AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204599, + "fields": { + "id_car_serie": 49484, + "name": "2.0 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204600, + "fields": { + "id_car_serie": 49484, + "name": "2.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204601, + "fields": { + "id_car_serie": 49484, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204602, + "fields": { + "id_car_serie": 49484, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204603, + "fields": { + "id_car_serie": 49485, + "name": "2.0 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204604, + "fields": { + "id_car_serie": 49485, + "name": "2.0 Flexpower AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204605, + "fields": { + "id_car_serie": 49485, + "name": "2.0 Flexpower AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204606, + "fields": { + "id_car_serie": 49485, + "name": "2.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204607, + "fields": { + "id_car_serie": 49485, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204608, + "fields": { + "id_car_serie": 49485, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204609, + "fields": { + "id_car_serie": 49485, + "name": "2.4 AT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204610, + "fields": { + "id_car_serie": 49485, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204611, + "fields": { + "id_car_serie": 49485, + "name": "2.4 Flexpower AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204612, + "fields": { + "id_car_serie": 49485, + "name": "2.4 Flexpower AT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204613, + "fields": { + "id_car_serie": 49485, + "name": "2.4 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204614, + "fields": { + "id_car_serie": 49485, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204616, + "fields": { + "id_car_serie": 49486, + "name": "3.4 AT LWB (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204618, + "fields": { + "id_car_serie": 49486, + "name": "3.4 AT SWB (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204619, + "fields": { + "id_car_serie": 62761, + "name": "2.0 Flexpower AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204620, + "fields": { + "id_car_serie": 62761, + "name": "2.0 Flexpower AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204621, + "fields": { + "id_car_serie": 62761, + "name": "2.0 Flexpower MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204622, + "fields": { + "id_car_serie": 62761, + "name": "2.0 Flexpower MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204623, + "fields": { + "id_car_serie": 62762, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204624, + "fields": { + "id_car_serie": 62762, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204625, + "fields": { + "id_car_serie": 49490, + "name": "2.0 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204626, + "fields": { + "id_car_serie": 49490, + "name": "2.3 AT (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204627, + "fields": { + "id_car_serie": 49490, + "name": "2.5 AT 4WS (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204628, + "fields": { + "id_car_serie": 49490, + "name": "2.5 AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204629, + "fields": { + "id_car_serie": 49490, + "name": "2.5 MT 4WS (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204630, + "fields": { + "id_car_serie": 49490, + "name": "2.5 MT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204631, + "fields": { + "id_car_serie": 49491, + "name": "2.0 i AT 4X4 (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204632, + "fields": { + "id_car_serie": 49491, + "name": "2.0 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204633, + "fields": { + "id_car_serie": 49491, + "name": "2.0 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204634, + "fields": { + "id_car_serie": 49491, + "name": "2.0 MT 4x4 (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204635, + "fields": { + "id_car_serie": 49491, + "name": "2.4 i AT 4X4 (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204636, + "fields": { + "id_car_serie": 49491, + "name": "2.4 i AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204637, + "fields": { + "id_car_serie": 49491, + "name": "2.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204638, + "fields": { + "id_car_serie": 49491, + "name": "2.4 MT 4x4 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204639, + "fields": { + "id_car_serie": 49493, + "name": "3.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204640, + "fields": { + "id_car_serie": 49493, + "name": "4.4 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204641, + "fields": { + "id_car_serie": 49494, + "name": "3.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204642, + "fields": { + "id_car_serie": 49494, + "name": "4.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204643, + "fields": { + "id_car_serie": 49495, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204644, + "fields": { + "id_car_serie": 49495, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204645, + "fields": { + "id_car_serie": 49495, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204646, + "fields": { + "id_car_serie": 49495, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204647, + "fields": { + "id_car_serie": 49495, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204648, + "fields": { + "id_car_serie": 49495, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204649, + "fields": { + "id_car_serie": 49495, + "name": "2.0 GT MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204650, + "fields": { + "id_car_serie": 49495, + "name": "2.0 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204651, + "fields": { + "id_car_serie": 49496, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204652, + "fields": { + "id_car_serie": 49496, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204653, + "fields": { + "id_car_serie": 49496, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204654, + "fields": { + "id_car_serie": 49496, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204655, + "fields": { + "id_car_serie": 49496, + "name": "2.0 GT MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204656, + "fields": { + "id_car_serie": 49496, + "name": "2.0 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204657, + "fields": { + "id_car_serie": 49496, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204658, + "fields": { + "id_car_serie": 49496, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204659, + "fields": { + "id_car_serie": 49498, + "name": "1.6 AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204660, + "fields": { + "id_car_serie": 49498, + "name": "1.6 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204661, + "fields": { + "id_car_serie": 49498, + "name": "1.8 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204662, + "fields": { + "id_car_serie": 49498, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204663, + "fields": { + "id_car_serie": 49499, + "name": "1.6 AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204664, + "fields": { + "id_car_serie": 49499, + "name": "1.6 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204665, + "fields": { + "id_car_serie": 49499, + "name": "1.8 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204666, + "fields": { + "id_car_serie": 49499, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204667, + "fields": { + "id_car_serie": 49500, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204668, + "fields": { + "id_car_serie": 49501, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204669, + "fields": { + "id_car_serie": 49501, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204670, + "fields": { + "id_car_serie": 49501, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204671, + "fields": { + "id_car_serie": 49501, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204672, + "fields": { + "id_car_serie": 49501, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204673, + "fields": { + "id_car_serie": 49501, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204674, + "fields": { + "id_car_serie": 49501, + "name": "1.6 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204675, + "fields": { + "id_car_serie": 49501, + "name": "1.8 GTI AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204676, + "fields": { + "id_car_serie": 49502, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204677, + "fields": { + "id_car_serie": 49502, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204678, + "fields": { + "id_car_serie": 49502, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204679, + "fields": { + "id_car_serie": 49502, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204680, + "fields": { + "id_car_serie": 49502, + "name": "1.6 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204681, + "fields": { + "id_car_serie": 49502, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204682, + "fields": { + "id_car_serie": 49502, + "name": "1.8 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204683, + "fields": { + "id_car_serie": 49502, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204684, + "fields": { + "id_car_serie": 49502, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204685, + "fields": { + "id_car_serie": 49503, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204686, + "fields": { + "id_car_serie": 49503, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204687, + "fields": { + "id_car_serie": 49503, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204688, + "fields": { + "id_car_serie": 49503, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204689, + "fields": { + "id_car_serie": 49503, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204690, + "fields": { + "id_car_serie": 49503, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204691, + "fields": { + "id_car_serie": 49503, + "name": "1.6 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204692, + "fields": { + "id_car_serie": 49503, + "name": "1.8 GTI AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204693, + "fields": { + "id_car_serie": 49503, + "name": "2.0 D AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204694, + "fields": { + "id_car_serie": 49503, + "name": "2.0 D AT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204695, + "fields": { + "id_car_serie": 49503, + "name": "2.0 D MT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204696, + "fields": { + "id_car_serie": 49503, + "name": "2.0 D MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204697, + "fields": { + "id_car_serie": 49504, + "name": "2.0 T MT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204698, + "fields": { + "id_car_serie": 49505, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204699, + "fields": { + "id_car_serie": 49505, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204700, + "fields": { + "id_car_serie": 49506, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204701, + "fields": { + "id_car_serie": 49506, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204702, + "fields": { + "id_car_serie": 49507, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204703, + "fields": { + "id_car_serie": 49507, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204704, + "fields": { + "id_car_serie": 49507, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204705, + "fields": { + "id_car_serie": 49507, + "name": "1.8 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204706, + "fields": { + "id_car_serie": 49507, + "name": "1.8 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204707, + "fields": { + "id_car_serie": 49508, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204708, + "fields": { + "id_car_serie": 49508, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204709, + "fields": { + "id_car_serie": 49508, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204710, + "fields": { + "id_car_serie": 49511, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204711, + "fields": { + "id_car_serie": 49511, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204712, + "fields": { + "id_car_serie": 49512, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204713, + "fields": { + "id_car_serie": 49512, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204714, + "fields": { + "id_car_serie": 49513, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204715, + "fields": { + "id_car_serie": 49514, + "name": "1.2 MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204716, + "fields": { + "id_car_serie": 49515, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204717, + "fields": { + "id_car_serie": 49515, + "name": "1.2 MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204718, + "fields": { + "id_car_serie": 49516, + "name": "1.4 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204719, + "fields": { + "id_car_serie": 49517, + "name": "3.5 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204720, + "fields": { + "id_car_serie": 49518, + "name": "3.3 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204721, + "fields": { + "id_car_serie": 49519, + "name": "3.0 AT (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204722, + "fields": { + "id_car_serie": 49520, + "name": "0.7 CVT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204723, + "fields": { + "id_car_serie": 49520, + "name": "0.7 CVT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204724, + "fields": { + "id_car_serie": 49521, + "name": "2.8 D 4WD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204725, + "fields": { + "id_car_serie": 49521, + "name": "2.8 D 4WD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204726, + "fields": { + "id_car_serie": 49522, + "name": "4.2 D 4WD AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204727, + "fields": { + "id_car_serie": 49522, + "name": "4.2 4WD AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204728, + "fields": { + "id_car_serie": 49522, + "name": "4.2 D 4WD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204729, + "fields": { + "id_car_serie": 49522, + "name": "4.2 4WD MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204730, + "fields": { + "id_car_serie": 49523, + "name": "2.8 4WD AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204731, + "fields": { + "id_car_serie": 49523, + "name": "2.8 4WD MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204732, + "fields": { + "id_car_serie": 49523, + "name": "3.2 D T 4WD AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204733, + "fields": { + "id_car_serie": 49523, + "name": "3.2 D T 4WD MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204734, + "fields": { + "id_car_serie": 49524, + "name": "2.8 4WD MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204735, + "fields": { + "id_car_serie": 49524, + "name": "3.2 D 4WD MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204736, + "fields": { + "id_car_serie": 49524, + "name": "4.0 4WD MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204737, + "fields": { + "id_car_serie": 49525, + "name": "2.8 4WD MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204738, + "fields": { + "id_car_serie": 49525, + "name": "3.2 D 4WD MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204739, + "fields": { + "id_car_serie": 49525, + "name": "4.0 4WD MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204740, + "fields": { + "id_car_serie": 49526, + "name": "2.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204741, + "fields": { + "id_car_serie": 49526, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204742, + "fields": { + "id_car_serie": 49526, + "name": "2.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204743, + "fields": { + "id_car_serie": 49526, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204744, + "fields": { + "id_car_serie": 49526, + "name": "2.4 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204745, + "fields": { + "id_car_serie": 49526, + "name": "2.4 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204746, + "fields": { + "id_car_serie": 49527, + "name": "2.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204747, + "fields": { + "id_car_serie": 49527, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204748, + "fields": { + "id_car_serie": 49527, + "name": "2.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204749, + "fields": { + "id_car_serie": 49527, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204750, + "fields": { + "id_car_serie": 49527, + "name": "2.4 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204751, + "fields": { + "id_car_serie": 49527, + "name": "2.4 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204752, + "fields": { + "id_car_serie": 49528, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204753, + "fields": { + "id_car_serie": 49528, + "name": "1.8 T AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204754, + "fields": { + "id_car_serie": 49528, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204755, + "fields": { + "id_car_serie": 49528, + "name": "1.8 T MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204756, + "fields": { + "id_car_serie": 49528, + "name": "2.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204757, + "fields": { + "id_car_serie": 49528, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204758, + "fields": { + "id_car_serie": 49528, + "name": "2.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204759, + "fields": { + "id_car_serie": 49528, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204760, + "fields": { + "id_car_serie": 49528, + "name": "2.4 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204761, + "fields": { + "id_car_serie": 49528, + "name": "2.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204762, + "fields": { + "id_car_serie": 49528, + "name": "2.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204763, + "fields": { + "id_car_serie": 49528, + "name": "2.4 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204764, + "fields": { + "id_car_serie": 49529, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204765, + "fields": { + "id_car_serie": 49529, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204766, + "fields": { + "id_car_serie": 49529, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204767, + "fields": { + "id_car_serie": 49529, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204768, + "fields": { + "id_car_serie": 49530, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204769, + "fields": { + "id_car_serie": 49530, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204770, + "fields": { + "id_car_serie": 49530, + "name": "2.0 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204771, + "fields": { + "id_car_serie": 49530, + "name": "2.0 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204772, + "fields": { + "id_car_serie": 49531, + "name": "1.6 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204773, + "fields": { + "id_car_serie": 49532, + "name": "2.6 Twin Turbo MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204774, + "fields": { + "id_car_serie": 49533, + "name": "1.8 TI AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204775, + "fields": { + "id_car_serie": 49533, + "name": "1.8 TI MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204776, + "fields": { + "id_car_serie": 49533, + "name": "1.8 L MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204777, + "fields": { + "id_car_serie": 49533, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204778, + "fields": { + "id_car_serie": 49533, + "name": "2.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204779, + "fields": { + "id_car_serie": 49534, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204780, + "fields": { + "id_car_serie": 49535, + "name": "2.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204781, + "fields": { + "id_car_serie": 49535, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204782, + "fields": { + "id_car_serie": 49536, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204783, + "fields": { + "id_car_serie": 49536, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204784, + "fields": { + "id_car_serie": 49537, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204785, + "fields": { + "id_car_serie": 49537, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204786, + "fields": { + "id_car_serie": 49538, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204787, + "fields": { + "id_car_serie": 49539, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204788, + "fields": { + "id_car_serie": 49540, + "name": "2.0 Turbo MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204789, + "fields": { + "id_car_serie": 49541, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204790, + "fields": { + "id_car_serie": 49541, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204791, + "fields": { + "id_car_serie": 49542, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204792, + "fields": { + "id_car_serie": 49542, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204793, + "fields": { + "id_car_serie": 49543, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204794, + "fields": { + "id_car_serie": 49543, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204795, + "fields": { + "id_car_serie": 49543, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204796, + "fields": { + "id_car_serie": 49543, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204797, + "fields": { + "id_car_serie": 49544, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204798, + "fields": { + "id_car_serie": 49544, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204799, + "fields": { + "id_car_serie": 49545, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204800, + "fields": { + "id_car_serie": 49546, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204801, + "fields": { + "id_car_serie": 49546, + "name": "1.9 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204802, + "fields": { + "id_car_serie": 49546, + "name": "2.0 MT Long (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204803, + "fields": { + "id_car_serie": 49546, + "name": "2.0 MT Long (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204804, + "fields": { + "id_car_serie": 49547, + "name": "1.9 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204805, + "fields": { + "id_car_serie": 49548, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204806, + "fields": { + "id_car_serie": 49549, + "name": "1.5 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204807, + "fields": { + "id_car_serie": 49550, + "name": "2.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204808, + "fields": { + "id_car_serie": 49550, + "name": "2.5 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204809, + "fields": { + "id_car_serie": 49550, + "name": "2.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204810, + "fields": { + "id_car_serie": 49550, + "name": "2.5 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204811, + "fields": { + "id_car_serie": 49550, + "name": "2.5 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204812, + "fields": { + "id_car_serie": 49550, + "name": "3.0 MT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204813, + "fields": { + "id_car_serie": 49551, + "name": "3.5 MT 4WD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204814, + "fields": { + "id_car_serie": 49552, + "name": "2.6 RS MT 4WD (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204815, + "fields": { + "id_car_serie": 49552, + "name": "2.6 RS MT (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204816, + "fields": { + "id_car_serie": 49553, + "name": "2.0 MT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204817, + "fields": { + "id_car_serie": 49553, + "name": "2.5 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204818, + "fields": { + "id_car_serie": 49553, + "name": "2.5 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204819, + "fields": { + "id_car_serie": 49554, + "name": "2.6 RS MT 4WD (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204820, + "fields": { + "id_car_serie": 49554, + "name": "2.6 RS MT (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204821, + "fields": { + "id_car_serie": 49556, + "name": "1.6 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204822, + "fields": { + "id_car_serie": 49556, + "name": "1.8 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204823, + "fields": { + "id_car_serie": 49556, + "name": "1.8 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204824, + "fields": { + "id_car_serie": 49557, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204825, + "fields": { + "id_car_serie": 49557, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204826, + "fields": { + "id_car_serie": 49558, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204827, + "fields": { + "id_car_serie": 49558, + "name": "2.2 D MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204828, + "fields": { + "id_car_serie": 49559, + "name": "1.5 D MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204829, + "fields": { + "id_car_serie": 49559, + "name": "1.5 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204830, + "fields": { + "id_car_serie": 49559, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204831, + "fields": { + "id_car_serie": 49559, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204832, + "fields": { + "id_car_serie": 49559, + "name": "2.2 D MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204833, + "fields": { + "id_car_serie": 49559, + "name": "2.2 D MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204835, + "fields": { + "id_car_serie": 49560, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204836, + "fields": { + "id_car_serie": 49560, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204847, + "fields": { + "id_car_serie": 49562, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204848, + "fields": { + "id_car_serie": 49562, + "name": "1.6 MT AWD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204849, + "fields": { + "id_car_serie": 49562, + "name": "1.7 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204850, + "fields": { + "id_car_serie": 49564, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204851, + "fields": { + "id_car_serie": 49564, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204852, + "fields": { + "id_car_serie": 49564, + "name": "1.5 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204853, + "fields": { + "id_car_serie": 49564, + "name": "1.5 T AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204854, + "fields": { + "id_car_serie": 49564, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204855, + "fields": { + "id_car_serie": 49564, + "name": "1.5 T MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204856, + "fields": { + "id_car_serie": 49564, + "name": "1.7 D AT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204857, + "fields": { + "id_car_serie": 49564, + "name": "1.7 D MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204858, + "fields": { + "id_car_serie": 49565, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204859, + "fields": { + "id_car_serie": 49565, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204860, + "fields": { + "id_car_serie": 49565, + "name": "1.5 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204862, + "fields": { + "id_car_serie": 49565, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204864, + "fields": { + "id_car_serie": 49565, + "name": "1.7 D AT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204865, + "fields": { + "id_car_serie": 49565, + "name": "1.7 D MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204866, + "fields": { + "id_car_serie": 49566, + "name": "1.2 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204867, + "fields": { + "id_car_serie": 49566, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204868, + "fields": { + "id_car_serie": 49566, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204869, + "fields": { + "id_car_serie": 49566, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204870, + "fields": { + "id_car_serie": 49566, + "name": "1.4 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204871, + "fields": { + "id_car_serie": 49566, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204872, + "fields": { + "id_car_serie": 49566, + "name": "1.5 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204873, + "fields": { + "id_car_serie": 49566, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204874, + "fields": { + "id_car_serie": 49567, + "name": "1.2 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204875, + "fields": { + "id_car_serie": 49567, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204876, + "fields": { + "id_car_serie": 49567, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204877, + "fields": { + "id_car_serie": 49567, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204878, + "fields": { + "id_car_serie": 49567, + "name": "1.4 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204879, + "fields": { + "id_car_serie": 49567, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204880, + "fields": { + "id_car_serie": 49567, + "name": "1.5 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204881, + "fields": { + "id_car_serie": 49567, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204882, + "fields": { + "id_car_serie": 49568, + "name": "1.2 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204883, + "fields": { + "id_car_serie": 49568, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204884, + "fields": { + "id_car_serie": 49568, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204885, + "fields": { + "id_car_serie": 49568, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204886, + "fields": { + "id_car_serie": 49568, + "name": "1.4 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204887, + "fields": { + "id_car_serie": 49568, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204888, + "fields": { + "id_car_serie": 49568, + "name": "1.5 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204889, + "fields": { + "id_car_serie": 49568, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204890, + "fields": { + "id_car_serie": 49569, + "name": "1.2 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204891, + "fields": { + "id_car_serie": 49569, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204892, + "fields": { + "id_car_serie": 49569, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204893, + "fields": { + "id_car_serie": 49569, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204894, + "fields": { + "id_car_serie": 49569, + "name": "1.4 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204895, + "fields": { + "id_car_serie": 49569, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204896, + "fields": { + "id_car_serie": 49570, + "name": "1.2 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204897, + "fields": { + "id_car_serie": 49570, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204898, + "fields": { + "id_car_serie": 49570, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204899, + "fields": { + "id_car_serie": 49570, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204900, + "fields": { + "id_car_serie": 49570, + "name": "1.4 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204901, + "fields": { + "id_car_serie": 49570, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204902, + "fields": { + "id_car_serie": 49571, + "name": "1.2 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204903, + "fields": { + "id_car_serie": 49571, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204904, + "fields": { + "id_car_serie": 49572, + "name": "1.2 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204905, + "fields": { + "id_car_serie": 49572, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204906, + "fields": { + "id_car_serie": 49573, + "name": "1.2 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204907, + "fields": { + "id_car_serie": 49573, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204908, + "fields": { + "id_car_serie": 49574, + "name": "1.0 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204909, + "fields": { + "id_car_serie": 49575, + "name": "1.0 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204910, + "fields": { + "id_car_serie": 49576, + "name": "1.0 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204911, + "fields": { + "id_car_serie": 49577, + "name": "1.0 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204912, + "fields": { + "id_car_serie": 49578, + "name": "2.7 TD 4WD AT 4x L (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204913, + "fields": { + "id_car_serie": 49578, + "name": "2.7 TD 4WD AT wide 4x (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204914, + "fields": { + "id_car_serie": 49578, + "name": "2.7 TD 4WD AT wide 4x L (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204915, + "fields": { + "id_car_serie": 49578, + "name": "2.7 TD 4WD AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204916, + "fields": { + "id_car_serie": 49578, + "name": "2.7 TD 4WD AT wide (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204917, + "fields": { + "id_car_serie": 49578, + "name": "2.7 TD 4WD AT 4x (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204918, + "fields": { + "id_car_serie": 49578, + "name": "2.7 TD 4WD MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204919, + "fields": { + "id_car_serie": 49578, + "name": "2.7 TD 4WD MT wide (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204920, + "fields": { + "id_car_serie": 49578, + "name": "3.0 TD 4WD AT 4x wide H (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204921, + "fields": { + "id_car_serie": 49578, + "name": "3.0 TD 4WD AT 4x wide (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204922, + "fields": { + "id_car_serie": 49578, + "name": "3.0 TD 4WD AT 4x (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204923, + "fields": { + "id_car_serie": 49578, + "name": "3.2 TD 4WD AT 4x L (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204924, + "fields": { + "id_car_serie": 49578, + "name": "3.2 TD 4WD AT 4x wide (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204925, + "fields": { + "id_car_serie": 49578, + "name": "3.2 TD 4WD AT 4x wide H (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204926, + "fields": { + "id_car_serie": 49578, + "name": "3.2 TD 4WD AT G3M (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204927, + "fields": { + "id_car_serie": 49578, + "name": "3.2 TD 4WD AT 4x wide L (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204928, + "fields": { + "id_car_serie": 49578, + "name": "3.2 TD 4WD AT G3M wide (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204929, + "fields": { + "id_car_serie": 49578, + "name": "3.2 TD 4WD AT 4x (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204930, + "fields": { + "id_car_serie": 49578, + "name": "3.3 2WD AT R3m-X (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204931, + "fields": { + "id_car_serie": 49578, + "name": "3.3 4WD AT 4x wide (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204932, + "fields": { + "id_car_serie": 49578, + "name": "3.3 4WD AT 4x L (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204933, + "fields": { + "id_car_serie": 49578, + "name": "3.3 4WD AT 4x (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204934, + "fields": { + "id_car_serie": 49578, + "name": "3.3 4WD AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204935, + "fields": { + "id_car_serie": 49578, + "name": "3.3 4WD AT 4x wide L (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204940, + "fields": { + "id_car_serie": 4505, + "name": "5.6 AT SWB 4WD (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204941, + "fields": { + "id_car_serie": 4505, + "name": "5.6 AT SWB (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204942, + "fields": { + "id_car_serie": 4505, + "name": "5.6 AT LWB 4WD (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204943, + "fields": { + "id_car_serie": 4505, + "name": "5.6 AT LWB (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204945, + "fields": { + "id_car_serie": 49584, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204946, + "fields": { + "id_car_serie": 49584, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204947, + "fields": { + "id_car_serie": 49584, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204948, + "fields": { + "id_car_serie": 49584, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204949, + "fields": { + "id_car_serie": 49584, + "name": "1.8 sVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204950, + "fields": { + "id_car_serie": 49585, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204951, + "fields": { + "id_car_serie": 49585, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204952, + "fields": { + "id_car_serie": 49585, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204953, + "fields": { + "id_car_serie": 49585, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204954, + "fields": { + "id_car_serie": 49585, + "name": "2.0 D AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204955, + "fields": { + "id_car_serie": 49585, + "name": "2.0 D MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204956, + "fields": { + "id_car_serie": 49586, + "name": "2.0 AT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204957, + "fields": { + "id_car_serie": 49586, + "name": "2.0 GT MT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204958, + "fields": { + "id_car_serie": 49586, + "name": "2.0 MT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204959, + "fields": { + "id_car_serie": 49586, + "name": "2.2 DCI AT AWD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204960, + "fields": { + "id_car_serie": 49586, + "name": "2.2 DCI MT AWD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204961, + "fields": { + "id_car_serie": 49586, + "name": "2.5 AT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204962, + "fields": { + "id_car_serie": 49586, + "name": "2.5 MT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204965, + "fields": { + "id_car_serie": 49588, + "name": "1.5 AT high roof (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204966, + "fields": { + "id_car_serie": 49588, + "name": "1.5 MT high roof (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204975, + "fields": { + "id_car_serie": 49589, + "name": "2.0 AT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204976, + "fields": { + "id_car_serie": 49589, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204977, + "fields": { + "id_car_serie": 49589, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204978, + "fields": { + "id_car_serie": 49589, + "name": "2.4 TD AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204979, + "fields": { + "id_car_serie": 49589, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204980, + "fields": { + "id_car_serie": 49589, + "name": "2.5 AWD AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204981, + "fields": { + "id_car_serie": 49589, + "name": "2.5 T AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204982, + "fields": { + "id_car_serie": 49589, + "name": "2.5 T MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204983, + "fields": { + "id_car_serie": 49589, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204984, + "fields": { + "id_car_serie": 49590, + "name": "2.2 AWD AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204985, + "fields": { + "id_car_serie": 49590, + "name": "2.2 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204986, + "fields": { + "id_car_serie": 49590, + "name": "2.5 AWD AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204987, + "fields": { + "id_car_serie": 49590, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204988, + "fields": { + "id_car_serie": 49590, + "name": "3.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204989, + "fields": { + "id_car_serie": 53176, + "name": "3.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204990, + "fields": { + "id_car_serie": 49591, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204991, + "fields": { + "id_car_serie": 49591, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204992, + "fields": { + "id_car_serie": 49591, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204993, + "fields": { + "id_car_serie": 49591, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204994, + "fields": { + "id_car_serie": 49591, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204995, + "fields": { + "id_car_serie": 49591, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204996, + "fields": { + "id_car_serie": 49591, + "name": "2.6 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204997, + "fields": { + "id_car_serie": 49592, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204998, + "fields": { + "id_car_serie": 49592, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 204999, + "fields": { + "id_car_serie": 49592, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205000, + "fields": { + "id_car_serie": 49592, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205001, + "fields": { + "id_car_serie": 49592, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205002, + "fields": { + "id_car_serie": 49592, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205003, + "fields": { + "id_car_serie": 49592, + "name": "2.6 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205004, + "fields": { + "id_car_serie": 49593, + "name": "1.7 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205005, + "fields": { + "id_car_serie": 49593, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205006, + "fields": { + "id_car_serie": 49593, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205007, + "fields": { + "id_car_serie": 49593, + "name": "2.3 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205008, + "fields": { + "id_car_serie": 49593, + "name": "2.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205009, + "fields": { + "id_car_serie": 49594, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205010, + "fields": { + "id_car_serie": 49594, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205011, + "fields": { + "id_car_serie": 49594, + "name": "2.3 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205012, + "fields": { + "id_car_serie": 49595, + "name": "1.7 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205013, + "fields": { + "id_car_serie": 49595, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205014, + "fields": { + "id_car_serie": 49595, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205015, + "fields": { + "id_car_serie": 49595, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205016, + "fields": { + "id_car_serie": 49595, + "name": "2.3 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205017, + "fields": { + "id_car_serie": 49595, + "name": "2.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205018, + "fields": { + "id_car_serie": 49596, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205019, + "fields": { + "id_car_serie": 49597, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205020, + "fields": { + "id_car_serie": 49597, + "name": "1.9 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205021, + "fields": { + "id_car_serie": 49597, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205022, + "fields": { + "id_car_serie": 49598, + "name": "1.7 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205023, + "fields": { + "id_car_serie": 49598, + "name": "1.9 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205024, + "fields": { + "id_car_serie": 49598, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205025, + "fields": { + "id_car_serie": 49599, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205026, + "fields": { + "id_car_serie": 49600, + "name": "1.5 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205027, + "fields": { + "id_car_serie": 49600, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205028, + "fields": { + "id_car_serie": 49600, + "name": "1.7 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205029, + "fields": { + "id_car_serie": 49600, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205030, + "fields": { + "id_car_serie": 49601, + "name": "1.5 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205031, + "fields": { + "id_car_serie": 49601, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205032, + "fields": { + "id_car_serie": 49601, + "name": "1.7 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205033, + "fields": { + "id_car_serie": 49601, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205034, + "fields": { + "id_car_serie": 49602, + "name": "2.5 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205035, + "fields": { + "id_car_serie": 49602, + "name": "2.5 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205036, + "fields": { + "id_car_serie": 49602, + "name": "3.0 AT (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205037, + "fields": { + "id_car_serie": 49603, + "name": "2.4 CVT 4WD 6seat (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205038, + "fields": { + "id_car_serie": 49603, + "name": "2.4 CVT 4WD 7seat (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205039, + "fields": { + "id_car_serie": 49603, + "name": "2.4 CVT 6seat (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205040, + "fields": { + "id_car_serie": 49603, + "name": "2.4 CVT 7seat (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205041, + "fields": { + "id_car_serie": 49603, + "name": "3.5 AT 6seat (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205042, + "fields": { + "id_car_serie": 49604, + "name": "2.4 CVT 4WD 6seat (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205043, + "fields": { + "id_car_serie": 49604, + "name": "2.4 CVT 4WD 7seat (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205044, + "fields": { + "id_car_serie": 49604, + "name": "2.4 CVT 6seat (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205045, + "fields": { + "id_car_serie": 49604, + "name": "2.4 CVT 7seat (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205046, + "fields": { + "id_car_serie": 49604, + "name": "3.5 AT 6seat (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205047, + "fields": { + "id_car_serie": 49605, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205048, + "fields": { + "id_car_serie": 49605, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205049, + "fields": { + "id_car_serie": 49605, + "name": "2.4 AT AWD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205050, + "fields": { + "id_car_serie": 49606, + "name": "2.4 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205051, + "fields": { + "id_car_serie": 49606, + "name": "2.4 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205052, + "fields": { + "id_car_serie": 49607, + "name": "2.4 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205053, + "fields": { + "id_car_serie": 49607, + "name": "2.4 AT AWD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205054, + "fields": { + "id_car_serie": 49607, + "name": "2.4 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205055, + "fields": { + "id_car_serie": 49608, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205056, + "fields": { + "id_car_serie": 49608, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205057, + "fields": { + "id_car_serie": 49609, + "name": "1.8 FWD AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205058, + "fields": { + "id_car_serie": 49609, + "name": "1.8 FWD MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205059, + "fields": { + "id_car_serie": 49610, + "name": "1.8 AT AWD (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205060, + "fields": { + "id_car_serie": 49610, + "name": "1.8 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205061, + "fields": { + "id_car_serie": 49610, + "name": "1.8 AT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205062, + "fields": { + "id_car_serie": 49610, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205063, + "fields": { + "id_car_serie": 49610, + "name": "1.8 AT AWD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205064, + "fields": { + "id_car_serie": 49610, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205065, + "fields": { + "id_car_serie": 49610, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205066, + "fields": { + "id_car_serie": 49611, + "name": "1.8 AT AWD (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205067, + "fields": { + "id_car_serie": 49611, + "name": "1.8 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205068, + "fields": { + "id_car_serie": 49611, + "name": "1.8 AT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205069, + "fields": { + "id_car_serie": 49611, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205070, + "fields": { + "id_car_serie": 49611, + "name": "1.8 AT AWD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205071, + "fields": { + "id_car_serie": 49611, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205072, + "fields": { + "id_car_serie": 49611, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205073, + "fields": { + "id_car_serie": 49613, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205074, + "fields": { + "id_car_serie": 49613, + "name": "1.8 6SMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205075, + "fields": { + "id_car_serie": 49613, + "name": "1.8 5SMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205076, + "fields": { + "id_car_serie": 49614, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205077, + "fields": { + "id_car_serie": 49614, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205078, + "fields": { + "id_car_serie": 49614, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205079, + "fields": { + "id_car_serie": 49615, + "name": "1.5 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205080, + "fields": { + "id_car_serie": 49615, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205081, + "fields": { + "id_car_serie": 49616, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205082, + "fields": { + "id_car_serie": 49616, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205083, + "fields": { + "id_car_serie": 49617, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205084, + "fields": { + "id_car_serie": 49617, + "name": "1.8 CVT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205085, + "fields": { + "id_car_serie": 49617, + "name": "1.8 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205086, + "fields": { + "id_car_serie": 49617, + "name": "2.0 CVT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205087, + "fields": { + "id_car_serie": 49618, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205088, + "fields": { + "id_car_serie": 49618, + "name": "1.8 AT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205089, + "fields": { + "id_car_serie": 49618, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205090, + "fields": { + "id_car_serie": 49618, + "name": "2.0 CVT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205091, + "fields": { + "id_car_serie": 49618, + "name": "2.0 CVT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205092, + "fields": { + "id_car_serie": 49619, + "name": "2.0 D4-D MT 8seat (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205093, + "fields": { + "id_car_serie": 49619, + "name": "2.0 D4-D MT 7seat (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205094, + "fields": { + "id_car_serie": 49619, + "name": "2.4 AT 8seat (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205095, + "fields": { + "id_car_serie": 49619, + "name": "2.4 AT 7seat (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205096, + "fields": { + "id_car_serie": 49619, + "name": "2.4 MT 8seat (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205097, + "fields": { + "id_car_serie": 49619, + "name": "3.0 AT 8seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205098, + "fields": { + "id_car_serie": 49620, + "name": "1.8 CVT 7seat (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205099, + "fields": { + "id_car_serie": 49620, + "name": "1.8 CVT 5seat (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205100, + "fields": { + "id_car_serie": 49621, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205101, + "fields": { + "id_car_serie": 49621, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205102, + "fields": { + "id_car_serie": 49621, + "name": "3.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205103, + "fields": { + "id_car_serie": 49622, + "name": "1.3 CVT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205104, + "fields": { + "id_car_serie": 49622, + "name": "1.5 AT AWD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205105, + "fields": { + "id_car_serie": 49622, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205106, + "fields": { + "id_car_serie": 49623, + "name": "2.0 MT FWD (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205107, + "fields": { + "id_car_serie": 49623, + "name": "2.0 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205108, + "fields": { + "id_car_serie": 49623, + "name": "2.0 CVT FWD (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205109, + "fields": { + "id_car_serie": 49623, + "name": "2.0 CVT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205110, + "fields": { + "id_car_serie": 49623, + "name": "2.2 TD AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205111, + "fields": { + "id_car_serie": 49623, + "name": "2.2 TD MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205112, + "fields": { + "id_car_serie": 49623, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205113, + "fields": { + "id_car_serie": 49623, + "name": "2.5 AT FWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205114, + "fields": { + "id_car_serie": 49624, + "name": "2.0 AT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205115, + "fields": { + "id_car_serie": 49624, + "name": "2.0 MT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205116, + "fields": { + "id_car_serie": 49624, + "name": "2.2 TD MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205117, + "fields": { + "id_car_serie": 49624, + "name": "2.4 AT Long AWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205118, + "fields": { + "id_car_serie": 49625, + "name": "2.0 AT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205119, + "fields": { + "id_car_serie": 49625, + "name": "2.0 MT AWD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205120, + "fields": { + "id_car_serie": 49626, + "name": "2.0 AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205121, + "fields": { + "id_car_serie": 49626, + "name": "2.0 AT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205122, + "fields": { + "id_car_serie": 49626, + "name": "2.0 AT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205123, + "fields": { + "id_car_serie": 49626, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205124, + "fields": { + "id_car_serie": 49626, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205125, + "fields": { + "id_car_serie": 49626, + "name": "2.0 MT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205126, + "fields": { + "id_car_serie": 49626, + "name": "2.0 MT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205127, + "fields": { + "id_car_serie": 49626, + "name": "2.0 MT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205128, + "fields": { + "id_car_serie": 49627, + "name": "2.0 AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205129, + "fields": { + "id_car_serie": 49627, + "name": "2.0 AT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205130, + "fields": { + "id_car_serie": 49627, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205131, + "fields": { + "id_car_serie": 49627, + "name": "2.0 MT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205132, + "fields": { + "id_car_serie": 49627, + "name": "2.0 MT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205133, + "fields": { + "id_car_serie": 49627, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205134, + "fields": { + "id_car_serie": 53480, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205135, + "fields": { + "id_car_serie": 53480, + "name": "2.4 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205136, + "fields": { + "id_car_serie": 53480, + "name": "3.0 D MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205140, + "fields": { + "id_car_serie": 49630, + "name": "2.7 AT (187 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205141, + "fields": { + "id_car_serie": 49630, + "name": "3.5 AT AWD (266 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205142, + "fields": { + "id_car_serie": 49630, + "name": "3.5 AT (266 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205143, + "fields": { + "id_car_serie": 49631, + "name": "3.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205144, + "fields": { + "id_car_serie": 49632, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205145, + "fields": { + "id_car_serie": 49632, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205146, + "fields": { + "id_car_serie": 49633, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205147, + "fields": { + "id_car_serie": 49633, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205148, + "fields": { + "id_car_serie": 49634, + "name": "1.5 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205149, + "fields": { + "id_car_serie": 49634, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205150, + "fields": { + "id_car_serie": 49634, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205151, + "fields": { + "id_car_serie": 49634, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205152, + "fields": { + "id_car_serie": 49635, + "name": "1.5 4AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205153, + "fields": { + "id_car_serie": 49635, + "name": "1.5 3AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205154, + "fields": { + "id_car_serie": 49635, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205155, + "fields": { + "id_car_serie": 49635, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205156, + "fields": { + "id_car_serie": 49635, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205157, + "fields": { + "id_car_serie": 49637, + "name": "3.0 AT Overdrive (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205158, + "fields": { + "id_car_serie": 49637, + "name": "3.0 AT Overdrive (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205159, + "fields": { + "id_car_serie": 49637, + "name": "3.0 Twin-Turbo AT Overdrive (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205160, + "fields": { + "id_car_serie": 49637, + "name": "3.0 Twin-Turbo MT Overdrive (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205161, + "fields": { + "id_car_serie": 49637, + "name": "3.0 MT Overdrive (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205162, + "fields": { + "id_car_serie": 49638, + "name": "3.0 Twin-Turbo AT Overdrive (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205163, + "fields": { + "id_car_serie": 49638, + "name": "3.0 Twin-Turbo AT Overdrive (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205164, + "fields": { + "id_car_serie": 49638, + "name": "3.0 AT Overdrive (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205165, + "fields": { + "id_car_serie": 49638, + "name": "3.0 Twin-Turbo MT Overdrive (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205166, + "fields": { + "id_car_serie": 49638, + "name": "3.0 Twin-Turbo MT Overdrive (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205167, + "fields": { + "id_car_serie": 49638, + "name": "3.0 MT Overdrive (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205168, + "fields": { + "id_car_serie": 49639, + "name": "2.0 AT Overdrive (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205169, + "fields": { + "id_car_serie": 49639, + "name": "2.0 Twin-Turbo AT Overdrive (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205170, + "fields": { + "id_car_serie": 49639, + "name": "2.0 Twin-Turbo MT Overdrive (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205171, + "fields": { + "id_car_serie": 49639, + "name": "2.0 MT Overdrive (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205172, + "fields": { + "id_car_serie": 49639, + "name": "2.5 Twin-Turbo AT Overdrive (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205173, + "fields": { + "id_car_serie": 49639, + "name": "2.5 Twin-Turbo MT Overdrive (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205174, + "fields": { + "id_car_serie": 49639, + "name": "3.0 AT Overdrive (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205175, + "fields": { + "id_car_serie": 49639, + "name": "3.0 Turbo AT Overdrive (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205176, + "fields": { + "id_car_serie": 49639, + "name": "3.0 MT Overdrive (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205177, + "fields": { + "id_car_serie": 49640, + "name": "2.0 Twin-Turbo AT Overdrive (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205178, + "fields": { + "id_car_serie": 49640, + "name": "2.0 AT Overdrive (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205179, + "fields": { + "id_car_serie": 49640, + "name": "2.0 Twin-Turbo MT Overdrive (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205180, + "fields": { + "id_car_serie": 49640, + "name": "2.0 MT Overdrive (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205181, + "fields": { + "id_car_serie": 49640, + "name": "3.0 AT Overdrive (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205182, + "fields": { + "id_car_serie": 49640, + "name": "3.0 Turbo AT Overdrive (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205183, + "fields": { + "id_car_serie": 49640, + "name": "3.0 MT Overdrive (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205184, + "fields": { + "id_car_serie": 49640, + "name": "3.0 Turbo MT Overdrive (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205185, + "fields": { + "id_car_serie": 49641, + "name": "2.0 Twin-Turbo AT Overdrive (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205186, + "fields": { + "id_car_serie": 49641, + "name": "2.0 AT Overdrive (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205187, + "fields": { + "id_car_serie": 49641, + "name": "2.0 MT Overdrive (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205188, + "fields": { + "id_car_serie": 49641, + "name": "2.0 Twin-Turbo MT Overdrive (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205189, + "fields": { + "id_car_serie": 49641, + "name": "3.0 AT Overdrive (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205190, + "fields": { + "id_car_serie": 49641, + "name": "3.0 Turbo AT Overdrive (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205191, + "fields": { + "id_car_serie": 49641, + "name": "3.0 MT Overdrive (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205192, + "fields": { + "id_car_serie": 49641, + "name": "3.0 Turbo MT Overdrive (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205193, + "fields": { + "id_car_serie": 49642, + "name": "2.8 AT Overdrive (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205194, + "fields": { + "id_car_serie": 49642, + "name": "2.8 AT Overdrive (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205195, + "fields": { + "id_car_serie": 49642, + "name": "2.8 MT Overdrive (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205196, + "fields": { + "id_car_serie": 49642, + "name": "2.8 MT Overdrive (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205197, + "fields": { + "id_car_serie": 49642, + "name": "2.8 MT Overdrive (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205198, + "fields": { + "id_car_serie": 49643, + "name": "2.8 AT Overdrive (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205199, + "fields": { + "id_car_serie": 49643, + "name": "2.8 AT Overdrive (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205200, + "fields": { + "id_car_serie": 49643, + "name": "2.8 MT Overdrive (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205201, + "fields": { + "id_car_serie": 49643, + "name": "2.8 MT Overdrive (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205202, + "fields": { + "id_car_serie": 49644, + "name": "2.6 AT Overdrive (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205203, + "fields": { + "id_car_serie": 49644, + "name": "2.6 MT Overdrive (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205204, + "fields": { + "id_car_serie": 49644, + "name": "2.8 AT Overdrive (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205205, + "fields": { + "id_car_serie": 49644, + "name": "2.8 MT Overdrive (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205206, + "fields": { + "id_car_serie": 49645, + "name": "4.0 MT (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205207, + "fields": { + "id_car_serie": 49646, + "name": "4.0 MT (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205208, + "fields": { + "id_car_serie": 49647, + "name": "2.7 AT 4x4 (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205209, + "fields": { + "id_car_serie": 49647, + "name": "2.7 AT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205210, + "fields": { + "id_car_serie": 49647, + "name": "2.7 MT 4x4 (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205211, + "fields": { + "id_car_serie": 49647, + "name": "2.7 MT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205212, + "fields": { + "id_car_serie": 49648, + "name": "2.7 AT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205213, + "fields": { + "id_car_serie": 49648, + "name": "4.0 AT 4x4 L2 (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205214, + "fields": { + "id_car_serie": 49648, + "name": "4.0 AT L2 (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205215, + "fields": { + "id_car_serie": 49648, + "name": "4.0 AT 4x4 L1 (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205216, + "fields": { + "id_car_serie": 49648, + "name": "4.0 AT L1 (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205217, + "fields": { + "id_car_serie": 49648, + "name": "4.0 MT 4x4 L1 (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205218, + "fields": { + "id_car_serie": 49649, + "name": "2.7 AT 4x4 (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205219, + "fields": { + "id_car_serie": 49649, + "name": "2.7 AT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205220, + "fields": { + "id_car_serie": 49649, + "name": "2.7 MT 4x4 (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205221, + "fields": { + "id_car_serie": 49649, + "name": "2.7 MT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205222, + "fields": { + "id_car_serie": 49649, + "name": "4.0 AT (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205223, + "fields": { + "id_car_serie": 49649, + "name": "4.0 AT 4x4 (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205224, + "fields": { + "id_car_serie": 49649, + "name": "4.0 MT 4x4 (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205225, + "fields": { + "id_car_serie": 49650, + "name": "2.4 AT Overdrive (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205226, + "fields": { + "id_car_serie": 49650, + "name": "2.4 MT Overdrive (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205227, + "fields": { + "id_car_serie": 49650, + "name": "2.7 AT Overdrive 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205228, + "fields": { + "id_car_serie": 49650, + "name": "2.7 AT Overdrive (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205229, + "fields": { + "id_car_serie": 49650, + "name": "2.7 MT Overdrive 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205230, + "fields": { + "id_car_serie": 49650, + "name": "3.4 AT Overdrive 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205231, + "fields": { + "id_car_serie": 49650, + "name": "3.4 AT Overdrive (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205232, + "fields": { + "id_car_serie": 49650, + "name": "3.4 MT Overdrive 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205233, + "fields": { + "id_car_serie": 49651, + "name": "2.4 AT Overdrive (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205234, + "fields": { + "id_car_serie": 49651, + "name": "2.4 MT Overdrive (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205235, + "fields": { + "id_car_serie": 49651, + "name": "2.7 AT Overdrive (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205236, + "fields": { + "id_car_serie": 49651, + "name": "2.7 AT Overdrive 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205237, + "fields": { + "id_car_serie": 49651, + "name": "2.7 MT Overdrive 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205238, + "fields": { + "id_car_serie": 49651, + "name": "3.4 AT Overdrive 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205239, + "fields": { + "id_car_serie": 49651, + "name": "3.4 AT Overdrive (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205240, + "fields": { + "id_car_serie": 49651, + "name": "3.4 MT Overdrive (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205241, + "fields": { + "id_car_serie": 49651, + "name": "3.4 MT Overdrive 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205242, + "fields": { + "id_car_serie": 49652, + "name": "2.4 AT Overdrive (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205243, + "fields": { + "id_car_serie": 49652, + "name": "2.4 MT Overdrive (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205244, + "fields": { + "id_car_serie": 49652, + "name": "2.7 AT Overdrive (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205245, + "fields": { + "id_car_serie": 49652, + "name": "2.7 AT Overdrive 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205246, + "fields": { + "id_car_serie": 49652, + "name": "2.7 MT Overdrive 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205247, + "fields": { + "id_car_serie": 49653, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205248, + "fields": { + "id_car_serie": 49653, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205249, + "fields": { + "id_car_serie": 49654, + "name": "1.5 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205250, + "fields": { + "id_car_serie": 49654, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205255, + "fields": { + "id_car_serie": 49654, + "name": "2.0 D AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205256, + "fields": { + "id_car_serie": 49654, + "name": "2.0 D AT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205257, + "fields": { + "id_car_serie": 49654, + "name": "2.0 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205258, + "fields": { + "id_car_serie": 49654, + "name": "2.0 D MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205263, + "fields": { + "id_car_serie": 49655, + "name": "4.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205264, + "fields": { + "id_car_serie": 49655, + "name": "4.0 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205265, + "fields": { + "id_car_serie": 49655, + "name": "4.7 AT 4WD (282 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205266, + "fields": { + "id_car_serie": 49656, + "name": "2.4 CVT 7seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205267, + "fields": { + "id_car_serie": 49656, + "name": "2.4 CVT 5seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205268, + "fields": { + "id_car_serie": 49656, + "name": "2.4 CVT 4WD 7seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205269, + "fields": { + "id_car_serie": 49656, + "name": "2.4 CVT 4WD 5seat (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205270, + "fields": { + "id_car_serie": 49656, + "name": "3.5 AT 4WD 7seat (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205271, + "fields": { + "id_car_serie": 49656, + "name": "3.5 AT 4WD 5seat (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205272, + "fields": { + "id_car_serie": 49657, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205273, + "fields": { + "id_car_serie": 49657, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205274, + "fields": { + "id_car_serie": 49657, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205275, + "fields": { + "id_car_serie": 49657, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205276, + "fields": { + "id_car_serie": 49657, + "name": "1.6 AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205277, + "fields": { + "id_car_serie": 49657, + "name": "1.6 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205278, + "fields": { + "id_car_serie": 49658, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205279, + "fields": { + "id_car_serie": 49658, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205280, + "fields": { + "id_car_serie": 49658, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205281, + "fields": { + "id_car_serie": 49658, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205282, + "fields": { + "id_car_serie": 49659, + "name": "1.0 CVT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205284, + "fields": { + "id_car_serie": 49659, + "name": "1.3 AT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205286, + "fields": { + "id_car_serie": 49659, + "name": "1.3 CVT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205289, + "fields": { + "id_car_serie": 49660, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205290, + "fields": { + "id_car_serie": 49660, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205293, + "fields": { + "id_car_serie": 49661, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205294, + "fields": { + "id_car_serie": 49661, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205295, + "fields": { + "id_car_serie": 49662, + "name": "1.0 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205296, + "fields": { + "id_car_serie": 49662, + "name": "1.0 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205297, + "fields": { + "id_car_serie": 49662, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205298, + "fields": { + "id_car_serie": 49662, + "name": "1.3 4WD MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205299, + "fields": { + "id_car_serie": 49662, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205300, + "fields": { + "id_car_serie": 49663, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205301, + "fields": { + "id_car_serie": 49663, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205302, + "fields": { + "id_car_serie": 49663, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205303, + "fields": { + "id_car_serie": 49663, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205304, + "fields": { + "id_car_serie": 49664, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205305, + "fields": { + "id_car_serie": 49664, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205306, + "fields": { + "id_car_serie": 49664, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205307, + "fields": { + "id_car_serie": 49664, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205308, + "fields": { + "id_car_serie": 49665, + "name": "1.0 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205309, + "fields": { + "id_car_serie": 49665, + "name": "1.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205310, + "fields": { + "id_car_serie": 49665, + "name": "1.3 4WD AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205311, + "fields": { + "id_car_serie": 49665, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205312, + "fields": { + "id_car_serie": 49665, + "name": "1.3 4WD MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205313, + "fields": { + "id_car_serie": 49665, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205314, + "fields": { + "id_car_serie": 49666, + "name": "1.0 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205315, + "fields": { + "id_car_serie": 49666, + "name": "1.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205316, + "fields": { + "id_car_serie": 49666, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205317, + "fields": { + "id_car_serie": 49666, + "name": "1.3 4WD AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205318, + "fields": { + "id_car_serie": 49666, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205319, + "fields": { + "id_car_serie": 49666, + "name": "1.3 4WD MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205320, + "fields": { + "id_car_serie": 49667, + "name": "2.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205321, + "fields": { + "id_car_serie": 49667, + "name": "2.0 AT FWD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205322, + "fields": { + "id_car_serie": 49667, + "name": "2.0 CVT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205323, + "fields": { + "id_car_serie": 49667, + "name": "2.0 CVT FWD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205324, + "fields": { + "id_car_serie": 49668, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205325, + "fields": { + "id_car_serie": 49668, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205326, + "fields": { + "id_car_serie": 49668, + "name": "2.0 sVT 6seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205327, + "fields": { + "id_car_serie": 49668, + "name": "2.0 sVT 7seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205328, + "fields": { + "id_car_serie": 49669, + "name": "1.5 MultiDrive S (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205329, + "fields": { + "id_car_serie": 49670, + "name": "1.5 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205330, + "fields": { + "id_car_serie": 49670, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205331, + "fields": { + "id_car_serie": 49670, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205332, + "fields": { + "id_car_serie": 49671, + "name": "1.5 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205333, + "fields": { + "id_car_serie": 49671, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205334, + "fields": { + "id_car_serie": 49671, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205335, + "fields": { + "id_car_serie": 49672, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205336, + "fields": { + "id_car_serie": 49672, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205337, + "fields": { + "id_car_serie": 49675, + "name": "4.3 4AT 4WD 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205338, + "fields": { + "id_car_serie": 49675, + "name": "4.3 4AT 4WD 1500 Sportside (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205339, + "fields": { + "id_car_serie": 49675, + "name": "4.3 4AT 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205340, + "fields": { + "id_car_serie": 49675, + "name": "4.3 4AT 1500 Fleetside (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205341, + "fields": { + "id_car_serie": 49675, + "name": "4.3 4AT 1500 Sportside (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205342, + "fields": { + "id_car_serie": 49675, + "name": "4.3 4AT 4WD 1500 Fleetside (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205343, + "fields": { + "id_car_serie": 49675, + "name": "4.3 5MT 4WD 1500 Fleetside (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205344, + "fields": { + "id_car_serie": 49675, + "name": "4.3 5MT 1500 Fleetside (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205345, + "fields": { + "id_car_serie": 49675, + "name": "4.3 5MT 4WD 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205346, + "fields": { + "id_car_serie": 49675, + "name": "4.3 5MT 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205347, + "fields": { + "id_car_serie": 49675, + "name": "4.8 4AT 4WD 1500 Sportside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205348, + "fields": { + "id_car_serie": 49675, + "name": "4.8 4AT 4WD 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205349, + "fields": { + "id_car_serie": 49675, + "name": "4.8 4AT 4WD 1500 Fleetside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205350, + "fields": { + "id_car_serie": 49675, + "name": "4.8 4AT 4WD 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205351, + "fields": { + "id_car_serie": 49675, + "name": "4.8 4AT LWB 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205352, + "fields": { + "id_car_serie": 49675, + "name": "4.8 4AT LWB 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205353, + "fields": { + "id_car_serie": 49675, + "name": "4.8 4AT LWB 1500 Fleetside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205354, + "fields": { + "id_car_serie": 49675, + "name": "4.8 4AT 4WD LWB 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205355, + "fields": { + "id_car_serie": 49675, + "name": "4.8 4AT 1500 Sportside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205356, + "fields": { + "id_car_serie": 49675, + "name": "4.8 4AT 1500 Sportside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205357, + "fields": { + "id_car_serie": 49675, + "name": "4.8 4AT 1500 Sportside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205358, + "fields": { + "id_car_serie": 49675, + "name": "4.8 4AT 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205359, + "fields": { + "id_car_serie": 49675, + "name": "4.8 4AT 4WD LWB 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205360, + "fields": { + "id_car_serie": 49675, + "name": "4.8 4AT 4WD LWB 1500 Fleetside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205361, + "fields": { + "id_car_serie": 49675, + "name": "4.8 4AT 1500 Fleetside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205362, + "fields": { + "id_car_serie": 49675, + "name": "4.8 4AT 4WD 1500 Sportside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205363, + "fields": { + "id_car_serie": 49675, + "name": "4.8 4AT 4WD 1500 Sportside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205364, + "fields": { + "id_car_serie": 49675, + "name": "4.8 4AT 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205365, + "fields": { + "id_car_serie": 49675, + "name": "4.8 5MT 4WD LWB 1500 Fleetside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205366, + "fields": { + "id_car_serie": 49675, + "name": "4.8 5MT 4WD LWB 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205367, + "fields": { + "id_car_serie": 49675, + "name": "4.8 5MT LWB 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205368, + "fields": { + "id_car_serie": 49675, + "name": "4.8 5MT 4WD 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205369, + "fields": { + "id_car_serie": 49675, + "name": "4.8 5MT 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205370, + "fields": { + "id_car_serie": 49675, + "name": "4.8 5MT 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205371, + "fields": { + "id_car_serie": 49675, + "name": "4.8 5MT 1500 Fleetside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205372, + "fields": { + "id_car_serie": 49675, + "name": "4.8 5MT 4WD 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205373, + "fields": { + "id_car_serie": 49675, + "name": "4.8 5MT LWB 1500 Fleetside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205374, + "fields": { + "id_car_serie": 49675, + "name": "4.8 5MT 4WD 1500 Fleetside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205375, + "fields": { + "id_car_serie": 49675, + "name": "5.3 Hybrid 4AT 4WD LWB 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205376, + "fields": { + "id_car_serie": 49675, + "name": "5.3 4AT 4WD LWB 1500 Fleetside (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205377, + "fields": { + "id_car_serie": 49675, + "name": "5.3 FlexFuel 4AT 4WD LWB 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205378, + "fields": { + "id_car_serie": 49675, + "name": "5.3 4AT 4WD LWB 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205379, + "fields": { + "id_car_serie": 49675, + "name": "5.3 FlexFuel 4AT LWB 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205380, + "fields": { + "id_car_serie": 49675, + "name": "5.3 Hybrid 4AT LWB 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205381, + "fields": { + "id_car_serie": 49675, + "name": "5.3 4AT LWB 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205382, + "fields": { + "id_car_serie": 49675, + "name": "5.3 4AT LWB 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205383, + "fields": { + "id_car_serie": 49675, + "name": "5.3 4AT 4WD SWB 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205384, + "fields": { + "id_car_serie": 49675, + "name": "5.3 Hybrid 4AT 4WD 1500 Sportside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205385, + "fields": { + "id_car_serie": 49675, + "name": "5.3 Hybrid 4AT 4WD 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205386, + "fields": { + "id_car_serie": 49675, + "name": "5.3 Hybrid 4AT 1500 Sportside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205387, + "fields": { + "id_car_serie": 49675, + "name": "5.3 FlexFuel 4AT 4WD 1500 Sportside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205388, + "fields": { + "id_car_serie": 49675, + "name": "5.3 FlexFuel 4AT 4WD 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205389, + "fields": { + "id_car_serie": 49675, + "name": "5.3 FlexFuel 4AT 1500 Sportside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205390, + "fields": { + "id_car_serie": 49675, + "name": "5.3 4AT 4WD 1500 Sportside (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205391, + "fields": { + "id_car_serie": 49675, + "name": "5.3 4AT 4WD 1500 Fleetside (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205392, + "fields": { + "id_car_serie": 49675, + "name": "5.3 4AT 4WD 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205393, + "fields": { + "id_car_serie": 49675, + "name": "5.3 Hybrid 4AT 4WD SWB 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205394, + "fields": { + "id_car_serie": 49675, + "name": "5.3 FlexFuel 4AT 4WD SWB 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205395, + "fields": { + "id_car_serie": 49675, + "name": "5.3 Hybrid 4AT SWB 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205396, + "fields": { + "id_car_serie": 49675, + "name": "5.3 FlexFuel 4AT SWB 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205397, + "fields": { + "id_car_serie": 49675, + "name": "5.3 FlexFuel 4AT 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205398, + "fields": { + "id_car_serie": 49675, + "name": "5.3 Hybrid 4AT 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205399, + "fields": { + "id_car_serie": 49675, + "name": "5.3 4AT SWB 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205400, + "fields": { + "id_car_serie": 49675, + "name": "5.3 4AT 1500 Sportside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205401, + "fields": { + "id_car_serie": 49675, + "name": "5.3 4AT 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205402, + "fields": { + "id_car_serie": 49675, + "name": "6.0 4AT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205403, + "fields": { + "id_car_serie": 49675, + "name": "6.0 4AT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205404, + "fields": { + "id_car_serie": 49675, + "name": "6.0 5AT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205405, + "fields": { + "id_car_serie": 49675, + "name": "6.0 6AT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205406, + "fields": { + "id_car_serie": 49675, + "name": "6.0 5AT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205407, + "fields": { + "id_car_serie": 49675, + "name": "6.0 6AT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205408, + "fields": { + "id_car_serie": 49675, + "name": "6.0 4AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205409, + "fields": { + "id_car_serie": 49675, + "name": "6.0 5AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205410, + "fields": { + "id_car_serie": 49675, + "name": "6.0 6AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205411, + "fields": { + "id_car_serie": 49675, + "name": "6.0 4AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205412, + "fields": { + "id_car_serie": 49675, + "name": "6.0 5AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205413, + "fields": { + "id_car_serie": 49675, + "name": "6.0 6AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205414, + "fields": { + "id_car_serie": 49675, + "name": "6.0 4AT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205415, + "fields": { + "id_car_serie": 49675, + "name": "6.0 5AT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205416, + "fields": { + "id_car_serie": 49675, + "name": "6.0 6AT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205417, + "fields": { + "id_car_serie": 49675, + "name": "6.0 5AT 4WD LWB 3500HD DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205418, + "fields": { + "id_car_serie": 49675, + "name": "6.0 4AT 4WD LWB 3500HD DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205419, + "fields": { + "id_car_serie": 49675, + "name": "6.0 6AT 4WD LWB 3500HD DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205420, + "fields": { + "id_car_serie": 49675, + "name": "6.0 4AT LWB 3500HD DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205421, + "fields": { + "id_car_serie": 49675, + "name": "6.0 6AT LWB 3500HD DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205422, + "fields": { + "id_car_serie": 49675, + "name": "6.0 5AT LWB 3500HD DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205423, + "fields": { + "id_car_serie": 49675, + "name": "6.0 6MT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205424, + "fields": { + "id_car_serie": 49675, + "name": "6.0 5MT LWB 3500HD DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205425, + "fields": { + "id_car_serie": 49675, + "name": "6.0 5MT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205426, + "fields": { + "id_car_serie": 49675, + "name": "6.0 5MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205427, + "fields": { + "id_car_serie": 49675, + "name": "6.0 5MT 4WD LWB 3500HD DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205428, + "fields": { + "id_car_serie": 49675, + "name": "6.0 6MT 4WD LWB 3500HD DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205429, + "fields": { + "id_car_serie": 49675, + "name": "6.0 6MT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205430, + "fields": { + "id_car_serie": 49675, + "name": "6.0 6MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205431, + "fields": { + "id_car_serie": 49675, + "name": "6.0 5MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205432, + "fields": { + "id_car_serie": 49675, + "name": "6.0 6MT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205433, + "fields": { + "id_car_serie": 49675, + "name": "6.0 6MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205434, + "fields": { + "id_car_serie": 49675, + "name": "6.0 6MT LWB 3500HD DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205435, + "fields": { + "id_car_serie": 49675, + "name": "6.0 5MT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205436, + "fields": { + "id_car_serie": 49675, + "name": "6.0 5MT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205437, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205438, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5AT 4WD LWB 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205439, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5AT LWB 3500HD DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205440, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT LWB 3500HD DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205441, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6AT 4WD LWB 3500HD DRW (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205442, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6AT 4WD LWB 3500HD DRW (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205443, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5AT 4WD LWB 3500HD DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205444, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5AT 4WD LWB 3500HD DRW (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205445, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT 4WD LWB 3500HD DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205446, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT 4WD LWB 3500HD DRW (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205447, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT 4WD LWB 3500HD DRW (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205448, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205449, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205450, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5AT 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205451, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5AT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205452, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6AT 4WD 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205453, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6AT 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205454, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6AT 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205455, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205456, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT LWB 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205457, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT LWB 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205458, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205459, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5AT LWB 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205460, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6AT 4WD 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205461, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6AT LWB 3500HD DRW (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205462, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT LWB 3500HD DRW (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205463, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6AT LWB 3500HD DRW (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205464, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5AT LWB 3500HD DRW (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205465, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT LWB 3500HD DRW (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205466, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6AT LWB 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205467, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6AT LWB 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205468, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205469, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT 4WD LWB 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205470, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT 4WD LWB 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205471, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205472, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6AT 4WD LWB 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205473, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205474, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT 4WD LWB 3500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205475, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT 4WD LWB 3500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205476, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5AT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205477, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5AT 4WD LWB 3500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205478, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6AT 4WD LWB 3500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205479, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6AT 4WD LWB 3500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205480, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6AT 4WD LWB 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205481, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205482, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT 4WD 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205483, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 4AT 4WD 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205484, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5AT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205485, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5AT 4WD 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205486, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6MT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205487, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6MT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205488, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5MT 4WD LWB 3500HD DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205489, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5MT 4WD LWB 3500HD DRW (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205490, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5MT 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205491, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5MT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205492, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5MT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205493, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5MT 4WD LWB 3500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205494, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205495, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6MT 4WD LWB 3500HD DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205496, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5MT LWB 3500HD DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205497, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205498, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5MT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205499, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5MT 4WD 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205500, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5MT 4WD LWB 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205501, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205502, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6MT LWB 3500HD DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205503, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5MT LWB 3500HD DRW (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205504, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205505, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 5MT LWB 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205506, + "fields": { + "id_car_serie": 49675, + "name": "6.6 TD 6MT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205507, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT LWB 3500HD DRW (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205508, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT 4WD 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205509, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT 4WD 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205510, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205511, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205512, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205513, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205514, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205515, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205516, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205517, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205518, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205519, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205520, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205521, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205522, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205523, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205524, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205525, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205526, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205527, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205528, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205529, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205530, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205531, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205532, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205533, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205534, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205535, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205536, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205537, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205538, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205539, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205540, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205541, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205542, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205543, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT 4WD LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205544, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT 4WD LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205545, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT 4WD LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205546, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205547, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 3500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205548, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 3500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205549, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 3500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205550, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 3500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205551, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 3500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205552, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 3500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205553, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 3500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205554, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205555, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 3500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205556, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 3500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205557, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 3500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205558, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 3500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205559, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 3500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205560, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 3500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205561, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT 4WD LWB 3500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205562, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT 4WD LWB 3500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205563, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT 4WD LWB 3500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205564, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 3500HD DRW (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205565, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 3500HD DRW (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205566, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 3500HD DRW (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205567, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 3500HD DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205568, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 3500HD DRW (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205569, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 3500HD DRW (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205570, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 3500HD DRW (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205571, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD LWB 3500HD DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205572, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 3500HD DRW (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205573, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 3500HD DRW (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205574, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 3500HD DRW (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205575, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 3500HD DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205576, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 3500HD DRW (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205577, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 3500HD DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205578, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD LWB 3500HD DRW (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205579, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT 4WD LWB 3500HD DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205580, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT 4WD LWB 3500HD DRW (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205581, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT 4WD LWB 3500HD DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205582, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT LWB 3500HD DRW (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205583, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT LWB 3500HD DRW (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205584, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT LWB 3500HD DRW (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205585, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT LWB 3500HD DRW (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205586, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT LWB 3500HD DRW (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205587, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT LWB 3500HD DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205588, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT LWB 3500HD DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205589, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT LWB 3500HD DRW (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205590, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT LWB 3500HD DRW (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205591, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT LWB 3500HD DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205592, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT LWB 3500HD DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205593, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT 4WD 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205594, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT LWB 3500HD DRW (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205595, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT LWB 3500HD DRW (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205596, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT LWB 3500HD DRW (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205597, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT LWB 3500HD DRW (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205598, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT LWB 3500HD DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205599, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT LWB 3500HD DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205600, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205601, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205602, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205603, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205604, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205605, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205606, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205607, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 4WD 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205608, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205609, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205610, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6AT 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205611, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205612, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205613, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205614, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205615, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205616, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205617, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205618, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205619, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205620, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205621, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205622, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205623, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205624, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205625, + "fields": { + "id_car_serie": 49675, + "name": "8.1 4AT 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205626, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205627, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205628, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205629, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205630, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205631, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205632, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5AT 4WD 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205633, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205634, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205635, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205636, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205637, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205638, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205639, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205640, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205641, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205642, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205643, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205644, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205645, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205646, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205647, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205648, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205649, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205650, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205651, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205652, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205653, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT LWB 3500HD DRW (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205654, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT LWB 3500HD DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205655, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT LWB 3500HD DRW (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205656, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT LWB 3500HD DRW (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205657, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT LWB 3500HD DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205658, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205659, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT LWB 3500HD DRW (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205660, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT LWB 3500HD DRW (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205661, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT LWB 3500HD DRW (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205662, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205663, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205664, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205665, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205666, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205667, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205668, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205669, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205670, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205671, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205672, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT LWB 3500HD DRW (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205673, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT LWB 3500HD DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205674, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT LWB 3500HD DRW (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205675, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT LWB 3500HD DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205676, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT LWB 3500HD DRW (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205677, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205678, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 3500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205679, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 3500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205680, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 3500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205681, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 3500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205682, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 3500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205683, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 3500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205684, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 3500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205685, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 3500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205686, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 3500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205687, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 3500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205688, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205689, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 3500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205690, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 3500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205691, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 3500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205692, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 3500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205693, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205694, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205695, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205696, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205697, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205698, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205699, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205700, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205701, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205702, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205703, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205704, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205705, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205706, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205707, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205708, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT LWB 3500HD DRW (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205709, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT LWB 3500HD DRW (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205710, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT LWB 3500HD DRW (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205711, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205712, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205713, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205714, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205715, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205716, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 3500HD DRW (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205717, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 3500HD DRW (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205718, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 3500HD DRW (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205719, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 3500HD DRW (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205720, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 3500HD DRW (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205721, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 3500HD DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205722, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 3500HD DRW (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205723, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD LWB 3500HD DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205724, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205725, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205726, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205727, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT 4WD 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205728, + "fields": { + "id_car_serie": 49675, + "name": "8.1 5MT LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205729, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205730, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205731, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205732, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205733, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205734, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 3500HD DRW (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205735, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 3500HD DRW (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205736, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 3500HD DRW (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205737, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 3500HD DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205738, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 3500HD DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205739, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 3500HD DRW (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205740, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 3500HD DRW (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205741, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT 4WD LWB 3500HD DRW (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205742, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205743, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205744, + "fields": { + "id_car_serie": 49675, + "name": "8.1 6MT LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205745, + "fields": { + "id_car_serie": 49676, + "name": "4.3 4AT 1500 (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205746, + "fields": { + "id_car_serie": 49676, + "name": "4.3 4AT 4WD 1500 (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205747, + "fields": { + "id_car_serie": 49676, + "name": "4.3 4AT 4WD 1500 (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205748, + "fields": { + "id_car_serie": 49676, + "name": "4.3 4AT 1500 (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205749, + "fields": { + "id_car_serie": 49676, + "name": "5.3 4AT 4WD 1500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205750, + "fields": { + "id_car_serie": 49676, + "name": "5.3 4AT 4WD 1500 (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205751, + "fields": { + "id_car_serie": 49676, + "name": "5.3 Hybrid 4AT SWB 1500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205752, + "fields": { + "id_car_serie": 49676, + "name": "5.3 4AT 1500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205753, + "fields": { + "id_car_serie": 49676, + "name": "5.3 Hybrid 4AT 4WD 1500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205754, + "fields": { + "id_car_serie": 49676, + "name": "5.3 Hybrid 4AT 1500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205755, + "fields": { + "id_car_serie": 49676, + "name": "5.3 FlexFuel 4AT 4WD SWB 1500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205756, + "fields": { + "id_car_serie": 49676, + "name": "5.3 FlexFuel 4AT 1500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205757, + "fields": { + "id_car_serie": 49676, + "name": "5.3 FlexFuel 4AT SWB 1500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205758, + "fields": { + "id_car_serie": 49676, + "name": "5.3 4AT SWB 1500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205759, + "fields": { + "id_car_serie": 49676, + "name": "5.3 4AT 4WD SWB 1500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205760, + "fields": { + "id_car_serie": 49676, + "name": "5.3 4AT 1500 (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205761, + "fields": { + "id_car_serie": 49676, + "name": "5.3 FlexFuel 4AT 4WD 1500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205762, + "fields": { + "id_car_serie": 49676, + "name": "5.3 Hybrid 4AT 4WD SWB 1500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205763, + "fields": { + "id_car_serie": 49676, + "name": "6.0 4AT 4WD 1500HD (300 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205764, + "fields": { + "id_car_serie": 49676, + "name": "6.0 4AT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205765, + "fields": { + "id_car_serie": 49676, + "name": "6.0 6AT 4WD LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205766, + "fields": { + "id_car_serie": 49676, + "name": "6.0 5AT 4WD LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205767, + "fields": { + "id_car_serie": 49676, + "name": "6.0 4AT 4WD LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205768, + "fields": { + "id_car_serie": 49676, + "name": "6.0 5AT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205769, + "fields": { + "id_car_serie": 49676, + "name": "6.0 6AT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205770, + "fields": { + "id_car_serie": 49676, + "name": "6.0 6AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205771, + "fields": { + "id_car_serie": 49676, + "name": "6.0 4AT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205772, + "fields": { + "id_car_serie": 49676, + "name": "6.0 5AT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205773, + "fields": { + "id_car_serie": 49676, + "name": "6.0 6AT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205774, + "fields": { + "id_car_serie": 49676, + "name": "6.0 5AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205775, + "fields": { + "id_car_serie": 49676, + "name": "6.0 4AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205776, + "fields": { + "id_car_serie": 49676, + "name": "6.0 4AT 1500HD (300 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205777, + "fields": { + "id_car_serie": 49676, + "name": "6.0 6AT 4WD LWB 3500 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205778, + "fields": { + "id_car_serie": 49676, + "name": "6.0 5AT 4WD LWB 3500 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205779, + "fields": { + "id_car_serie": 49676, + "name": "6.0 4AT 4WD LWB 3500 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205782, + "fields": { + "id_car_serie": 49676, + "name": "6.0 6AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205783, + "fields": { + "id_car_serie": 49676, + "name": "6.0 5AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205784, + "fields": { + "id_car_serie": 49676, + "name": "6.0 4AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205785, + "fields": { + "id_car_serie": 49676, + "name": "6.0 6AT LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205786, + "fields": { + "id_car_serie": 49676, + "name": "6.0 5AT LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205787, + "fields": { + "id_car_serie": 49676, + "name": "6.0 4AT LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205788, + "fields": { + "id_car_serie": 49676, + "name": "6.0 6MT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205789, + "fields": { + "id_car_serie": 49676, + "name": "6.0 6MT LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205790, + "fields": { + "id_car_serie": 49676, + "name": "6.0 5MT LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205791, + "fields": { + "id_car_serie": 49676, + "name": "6.0 5MT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205792, + "fields": { + "id_car_serie": 49676, + "name": "6.0 5MT 4WD LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205793, + "fields": { + "id_car_serie": 49676, + "name": "6.0 6MT 4WD LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205794, + "fields": { + "id_car_serie": 49676, + "name": "6.0 5MT 4WD LWB 3500 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205795, + "fields": { + "id_car_serie": 49676, + "name": "6.0 6MT 4WD LWB 3500 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205796, + "fields": { + "id_car_serie": 49676, + "name": "6.0 6MT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205797, + "fields": { + "id_car_serie": 49676, + "name": "6.0 5MT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205798, + "fields": { + "id_car_serie": 49676, + "name": "6.0 6MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205799, + "fields": { + "id_car_serie": 49676, + "name": "6.0 5MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205800, + "fields": { + "id_car_serie": 49676, + "name": "6.0 5MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205801, + "fields": { + "id_car_serie": 49676, + "name": "6.0 6MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205802, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT LWB 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205803, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205804, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205805, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205806, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205807, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5AT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205808, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5AT 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205809, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6AT 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205810, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6AT 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205811, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6AT LWB 3500 DRW (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205812, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6AT LWB 3500 DRW (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205813, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT LWB 3500 DRW (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205814, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5AT LWB 3500 DRW (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205815, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT LWB 3500 DRW (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205816, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5AT LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205817, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205818, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6AT 4WD LWB 3500 DRW (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205819, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6AT 4WD LWB 3500 DRW (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205820, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5AT 4WD LWB 3500 DRW (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205821, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT 4WD LWB 3500 DRW (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205822, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT 4WD LWB 3500 DRW (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205823, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5AT 4WD LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205824, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT 4WD LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205825, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6AT 4WD LWB 3500 (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205826, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6AT 4WD LWB 3500 (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205827, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT 4WD LWB 3500 (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205828, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5AT 4WD LWB 3500 (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205829, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT 4WD LWB 3500 (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205830, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5AT 4WD LWB 3500 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205831, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT 4WD LWB 3500 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205832, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205833, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT 4WD 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205834, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT 4WD 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205835, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6AT 4WD 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205836, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6AT 4WD 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205837, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5AT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205838, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5AT 4WD 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205839, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6AT 4WD LWB 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205840, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6AT 4WD LWB 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205841, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT 4WD LWB 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205842, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5AT 4WD LWB 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205843, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT 4WD LWB 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205844, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205845, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205846, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6AT LWB 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205847, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6AT LWB 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205848, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 4AT LWB 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205849, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5AT LWB 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205850, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205851, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5MT 4WD LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205852, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5MT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205853, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6MT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205854, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5MT 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205855, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6MT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205856, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5MT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205857, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5MT 4WD 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205858, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5MT LWB 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205859, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205860, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205861, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205862, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205863, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5MT 4WD LWB 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205864, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5MT 4WD LWB 3500 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205865, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6MT 4WD LWB 3500 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205866, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5MT 4WD LWB 3500 (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205867, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6MT 4WD LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205868, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5MT 4WD LWB 3500 DRW (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205869, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5MT LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205870, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 6MT LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205871, + "fields": { + "id_car_serie": 49676, + "name": "6.6 TD 5MT LWB 3500 DRW (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205872, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205873, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205874, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205875, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205876, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205877, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205878, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205879, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT LWB 3500 DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205880, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT LWB 3500 DRW (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205881, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205882, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205883, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205884, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205885, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205886, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT LWB 3500 DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205887, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205888, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205889, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205890, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205891, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205892, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205893, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205894, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205895, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205896, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205897, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205898, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205899, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205900, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205901, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT 4WD LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205902, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT 4WD LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205903, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT 4WD LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205904, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205905, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205906, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205907, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 3500 (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205908, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205909, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 3500 (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205910, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 3500 (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205911, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 3500 (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205912, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 3500 (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205913, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 3500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205914, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 3500 (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205915, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 3500 (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205916, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 3500 (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205917, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 3500 (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205918, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 3500 (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205919, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 3500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205920, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 3500 (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205921, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 3500 (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205922, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 3500 (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205923, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT 4WD LWB 3500 (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205924, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT 4WD LWB 3500 (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205925, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT 4WD LWB 3500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205926, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205927, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205928, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205929, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205930, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205931, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205932, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205933, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205934, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205935, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 3500 DRW (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205936, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 3500 DRW (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205937, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 3500 DRW (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205938, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 3500 DRW (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205939, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 3500 DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205940, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 3500 DRW (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205941, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 3500 DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205942, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 4WD LWB 3500 DRW (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205943, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 3500 DRW (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205944, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 3500 DRW (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205945, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 3500 DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205946, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 3500 DRW (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205947, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 3500 DRW (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205948, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 3500 DRW (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205949, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD LWB 3500 DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205950, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT 4WD LWB 3500 DRW (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205951, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT 4WD LWB 3500 DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205952, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT 4WD LWB 3500 DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205953, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205954, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205955, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205956, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205957, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205958, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205959, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205960, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205961, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT LWB 3500 DRW (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205962, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT LWB 3500 DRW (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205963, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT LWB 3500 DRW (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205964, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT LWB 3500 DRW (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205965, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT LWB 3500 DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205966, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT LWB 3500 DRW (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205967, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT LWB 3500 DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205968, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT LWB 3500 DRW (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205969, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT LWB 3500 DRW (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205970, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT LWB 3500 DRW (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205971, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT LWB 3500 DRW (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205972, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT LWB 3500 DRW (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205973, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205974, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205975, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205976, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205977, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205978, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205979, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT 4WD 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205980, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT 4WD 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205981, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT 4WD 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205982, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6AT 4WD 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205983, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT LWB 3500 DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205984, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT LWB 3500 DRW (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205985, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT LWB 3500 DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205986, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205987, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205988, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205989, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205990, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205991, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205992, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205993, + "fields": { + "id_car_serie": 49676, + "name": "8.1 4AT LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205994, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205995, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205996, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205997, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205998, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 205999, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5AT LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206000, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206001, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206002, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206003, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 3500 DRW (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206004, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 3500 DRW (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206005, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 3500 DRW (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206006, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206007, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 3500 (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206008, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 3500 (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206009, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 3500 (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206010, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 3500 (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206011, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 3500 (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206012, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 3500 (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206013, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 3500 (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206014, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 3500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206015, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206016, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206017, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206018, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206019, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206020, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206021, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206022, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206023, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT LWB 3500 DRW (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206024, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT LWB 3500 DRW (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206025, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT LWB 3500 DRW (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206026, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT LWB 3500 DRW (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206027, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT LWB 3500 DRW (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206028, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT LWB 3500 DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206029, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT LWB 3500 DRW (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206030, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT LWB 3500 DRW (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206031, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT LWB 3500 DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206032, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 3500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206033, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206034, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206035, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206036, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206037, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206038, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 3500 (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206039, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206040, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206041, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206042, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206043, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206044, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206045, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206046, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206047, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 3500 (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206048, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 3500 (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206049, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 3500 (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206050, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 3500 (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206051, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 3500 (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206052, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 3500 (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206053, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 3500 DRW (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206054, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 3500 DRW (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206055, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 3500 DRW (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206056, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 3500 DRW (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206057, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206058, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 3500 DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206059, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 3500 DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206060, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 3500 DRW (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206061, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 3500 DRW (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206062, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT LWB 3500 DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206063, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206064, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206065, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206066, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206067, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206068, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206069, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206070, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206071, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206072, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206073, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206074, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206075, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206076, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT LWB 3500 DRW (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206077, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206078, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206079, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206080, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206081, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206082, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206083, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206084, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206085, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206086, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206087, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206088, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206089, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206090, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206091, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 4WD 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206092, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT LWB 3500 DRW (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206093, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206094, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT LWB 3500 DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206095, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206096, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206097, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206098, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT LWB 3500 DRW (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206099, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT LWB 3500 DRW (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206100, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206101, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206102, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206103, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 3500 DRW (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206104, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT LWB 3500 DRW (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206105, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 3500 DRW (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206106, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 3500 DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206107, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 3500 DRW (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206108, + "fields": { + "id_car_serie": 49676, + "name": "8.1 5MT 4WD LWB 3500 DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206109, + "fields": { + "id_car_serie": 49677, + "name": "4.3 4AT 4WD 1500 Fleetside (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206110, + "fields": { + "id_car_serie": 49677, + "name": "4.3 4AT 1500 Sportside (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206111, + "fields": { + "id_car_serie": 49677, + "name": "4.3 4AT 1500 Sportside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206112, + "fields": { + "id_car_serie": 49677, + "name": "4.3 4AT 1500 Fleetside (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206113, + "fields": { + "id_car_serie": 49677, + "name": "4.3 4AT 4WD 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206114, + "fields": { + "id_car_serie": 49677, + "name": "4.3 4AT 4WD 1500 Sportside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206115, + "fields": { + "id_car_serie": 49677, + "name": "4.3 4AT 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206116, + "fields": { + "id_car_serie": 49677, + "name": "4.3 4AT LWB 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206117, + "fields": { + "id_car_serie": 49677, + "name": "4.3 4AT LWB 1500 Fleetside (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206118, + "fields": { + "id_car_serie": 49677, + "name": "4.3 4AT 4WD LWB 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206119, + "fields": { + "id_car_serie": 49677, + "name": "4.3 4AT 4WD 1500 Sportside (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206120, + "fields": { + "id_car_serie": 49677, + "name": "4.3 4AT 4WD LWB 1500 Fleetside (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206121, + "fields": { + "id_car_serie": 49677, + "name": "4.3 5MT 1500 Fleetside (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206122, + "fields": { + "id_car_serie": 49677, + "name": "4.3 5MT LWB 1500 Fleetside (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206123, + "fields": { + "id_car_serie": 49677, + "name": "4.3 5MT 4WD 1500 Sportside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206124, + "fields": { + "id_car_serie": 49677, + "name": "4.3 5MT 4WD LWB 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206125, + "fields": { + "id_car_serie": 49677, + "name": "4.3 5MT 4WD 1500 Sportside (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206126, + "fields": { + "id_car_serie": 49677, + "name": "4.3 5MT 4WD LWB 1500 Fleetside (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206127, + "fields": { + "id_car_serie": 49677, + "name": "4.3 5MT 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206128, + "fields": { + "id_car_serie": 49677, + "name": "4.3 5MT LWB 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206129, + "fields": { + "id_car_serie": 49677, + "name": "4.3 5MT 1500 Sportside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206130, + "fields": { + "id_car_serie": 49677, + "name": "4.3 5MT 4WD 1500 Fleetside (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206131, + "fields": { + "id_car_serie": 49677, + "name": "4.3 5MT 4WD 1500 Fleetside (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206132, + "fields": { + "id_car_serie": 49677, + "name": "4.3 5MT 1500 Sportside (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206133, + "fields": { + "id_car_serie": 49677, + "name": "4.8 4AT LWB 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206134, + "fields": { + "id_car_serie": 49677, + "name": "4.8 4AT 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206135, + "fields": { + "id_car_serie": 49677, + "name": "4.8 4AT 1500 Fleetside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206136, + "fields": { + "id_car_serie": 49677, + "name": "4.8 4AT 1500 Sportside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206137, + "fields": { + "id_car_serie": 49677, + "name": "4.8 4AT 1500 Sportside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206138, + "fields": { + "id_car_serie": 49677, + "name": "4.8 4AT 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206139, + "fields": { + "id_car_serie": 49677, + "name": "4.8 4AT 4WD 1500 Sportside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206140, + "fields": { + "id_car_serie": 49677, + "name": "4.8 4AT 4WD LWB 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206141, + "fields": { + "id_car_serie": 49677, + "name": "4.8 4AT 4WD LWB 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206142, + "fields": { + "id_car_serie": 49677, + "name": "4.8 4AT 4WD 1500 Sportside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206143, + "fields": { + "id_car_serie": 49677, + "name": "4.8 4AT 4WD 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206144, + "fields": { + "id_car_serie": 49677, + "name": "4.8 4AT 4WD LWB 1500 Fleetside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206145, + "fields": { + "id_car_serie": 49677, + "name": "4.8 4AT 4WD 1500 Fleetside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206146, + "fields": { + "id_car_serie": 49677, + "name": "4.8 4AT 4WD 1500 Sportside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206147, + "fields": { + "id_car_serie": 49677, + "name": "4.8 4AT 4WD 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206148, + "fields": { + "id_car_serie": 49677, + "name": "4.8 4AT LWB 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206149, + "fields": { + "id_car_serie": 49677, + "name": "4.8 4AT LWB 1500 Fleetside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206150, + "fields": { + "id_car_serie": 49677, + "name": "4.8 4AT 1500 Sportside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206151, + "fields": { + "id_car_serie": 49677, + "name": "4.8 5MT 4WD 1500 Sportside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206152, + "fields": { + "id_car_serie": 49677, + "name": "4.8 5MT 4WD LWB 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206153, + "fields": { + "id_car_serie": 49677, + "name": "4.8 5MT 4WD LWB 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206154, + "fields": { + "id_car_serie": 49677, + "name": "4.8 5MT 4WD 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206155, + "fields": { + "id_car_serie": 49677, + "name": "4.8 5MT 4WD 1500 Sportside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206156, + "fields": { + "id_car_serie": 49677, + "name": "4.8 5MT 4WD 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206157, + "fields": { + "id_car_serie": 49677, + "name": "4.8 5MT 1500 Sportside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206158, + "fields": { + "id_car_serie": 49677, + "name": "4.8 5MT 4WD LWB 1500 Fleetside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206159, + "fields": { + "id_car_serie": 49677, + "name": "4.8 5MT 1500 Sportside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206160, + "fields": { + "id_car_serie": 49677, + "name": "4.8 5MT 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206161, + "fields": { + "id_car_serie": 49677, + "name": "4.8 5MT 1500 Sportside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206162, + "fields": { + "id_car_serie": 49677, + "name": "4.8 5MT 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206163, + "fields": { + "id_car_serie": 49677, + "name": "4.8 5MT 1500 Fleetside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206164, + "fields": { + "id_car_serie": 49677, + "name": "4.8 5MT 4WD 1500 Fleetside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206165, + "fields": { + "id_car_serie": 49677, + "name": "4.8 5MT 4WD 1500 Sportside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206166, + "fields": { + "id_car_serie": 49677, + "name": "4.8 5MT LWB 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206167, + "fields": { + "id_car_serie": 49677, + "name": "4.8 5MT LWB 1500 Fleetside (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206168, + "fields": { + "id_car_serie": 49677, + "name": "4.8 5MT LWB 1500 Fleetside (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206169, + "fields": { + "id_car_serie": 49677, + "name": "5.3 4AT 1500 Sportside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206170, + "fields": { + "id_car_serie": 49677, + "name": "5.3 4AT 4WD 1500 Sportside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206171, + "fields": { + "id_car_serie": 49677, + "name": "5.3 Hybrid 4AT 4WD LWB 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206172, + "fields": { + "id_car_serie": 49677, + "name": "5.3 Hybrid 4AT LWB 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206173, + "fields": { + "id_car_serie": 49677, + "name": "5.3 FlexFuel 4AT 4WD LWB 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206174, + "fields": { + "id_car_serie": 49677, + "name": "5.3 FlexFuel 4AT LWB 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206175, + "fields": { + "id_car_serie": 49677, + "name": "5.3 4AT 4WD LWB 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206176, + "fields": { + "id_car_serie": 49677, + "name": "5.3 4AT 4WD LWB 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206177, + "fields": { + "id_car_serie": 49677, + "name": "5.3 4AT LWB 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206178, + "fields": { + "id_car_serie": 49677, + "name": "5.3 4AT LWB 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206179, + "fields": { + "id_car_serie": 49677, + "name": "5.3 FlexFuel 4AT 4WD 1500 Sportside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206180, + "fields": { + "id_car_serie": 49677, + "name": "5.3 FlexFuel 4AT 4WD 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206181, + "fields": { + "id_car_serie": 49677, + "name": "5.3 Hybrid 4AT 4WD 1500 Sportside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206182, + "fields": { + "id_car_serie": 49677, + "name": "5.3 Hybrid 4AT 4WD 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206183, + "fields": { + "id_car_serie": 49677, + "name": "5.3 4AT 4WD 1500 Sportside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206184, + "fields": { + "id_car_serie": 49677, + "name": "5.3 4AT 4WD 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206185, + "fields": { + "id_car_serie": 49677, + "name": "5.3 Hybrid 4AT 1500 Sportside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206186, + "fields": { + "id_car_serie": 49677, + "name": "5.3 FlexFuel 4AT 1500 Sportside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206187, + "fields": { + "id_car_serie": 49677, + "name": "5.3 4AT 1500 Sportside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206188, + "fields": { + "id_car_serie": 49677, + "name": "5.3 Hybrid 4AT 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206189, + "fields": { + "id_car_serie": 49677, + "name": "5.3 4AT 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206190, + "fields": { + "id_car_serie": 49677, + "name": "5.3 4AT 4WD 1500 Fleetside (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206191, + "fields": { + "id_car_serie": 49677, + "name": "5.3 FlexFuel 4AT 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206192, + "fields": { + "id_car_serie": 49677, + "name": "5.3 4AT 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206193, + "fields": { + "id_car_serie": 49677, + "name": "6.0 5AT 4WD LWB 3500 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206194, + "fields": { + "id_car_serie": 49677, + "name": "6.0 5AT 4WD LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206195, + "fields": { + "id_car_serie": 49677, + "name": "6.0 4AT 4WD LWB 3500 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206196, + "fields": { + "id_car_serie": 49677, + "name": "6.0 6AT 4WD LWB 3500 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206197, + "fields": { + "id_car_serie": 49677, + "name": "6.0 4AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206198, + "fields": { + "id_car_serie": 49677, + "name": "6.0 4AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206199, + "fields": { + "id_car_serie": 49677, + "name": "6.0 5AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206200, + "fields": { + "id_car_serie": 49677, + "name": "6.0 6AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206201, + "fields": { + "id_car_serie": 49677, + "name": "6.0 5AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206202, + "fields": { + "id_car_serie": 49677, + "name": "6.0 6AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206203, + "fields": { + "id_car_serie": 49677, + "name": "6.0 4AT 4WD LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206204, + "fields": { + "id_car_serie": 49677, + "name": "6.0 6AT 4WD LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206205, + "fields": { + "id_car_serie": 49677, + "name": "6.0 5MT 4WD LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206206, + "fields": { + "id_car_serie": 49677, + "name": "6.0 6MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206207, + "fields": { + "id_car_serie": 49677, + "name": "6.0 6MT 4WD LWB 3500 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206208, + "fields": { + "id_car_serie": 49677, + "name": "6.0 6MT 4WD LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206209, + "fields": { + "id_car_serie": 49677, + "name": "6.0 5MT 4WD LWB 3500 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206210, + "fields": { + "id_car_serie": 49677, + "name": "6.0 6MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206211, + "fields": { + "id_car_serie": 49677, + "name": "6.0 5MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206212, + "fields": { + "id_car_serie": 49677, + "name": "6.0 5MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206213, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 5AT 4WD LWB 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206214, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 6AT 4WD LWB 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206215, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 6AT 4WD LWB 3500 (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206216, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 6AT 4WD LWB 3500 (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206217, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 5AT 4WD LWB 3500 (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206218, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 4AT 4WD LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206219, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 4AT 4WD LWB 3500 DRW (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206220, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 4AT 4WD LWB 3500 DRW (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206221, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 5AT 4WD LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206222, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 5AT 4WD LWB 3500 DRW (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206223, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 6AT 4WD LWB 3500 DRW (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206224, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 6AT 4WD LWB 3500 DRW (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206225, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 5AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206226, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 4AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206227, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 6AT LWB 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206228, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 5AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206229, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 6AT LWB 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206230, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 4AT LWB 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206231, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 5AT LWB 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206232, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 4AT LWB 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206233, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 4AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206234, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 4AT 4WD LWB 2500HD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206235, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 4AT 4WD LWB 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206236, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 6AT 4WD LWB 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206237, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 5AT 4WD LWB 3500 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206238, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 4AT 4WD LWB 3500 (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206239, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 4AT 4WD LWB 3500 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206240, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 6MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206241, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 5MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206242, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 5MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206243, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 6MT 4WD LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206244, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 5MT 4WD LWB 3500 DRW (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206245, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 5MT 4WD LWB 3500 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206246, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 5MT 4WD LWB 3500 (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206247, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 6MT 4WD LWB 3500 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206248, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 5MT 4WD LWB 3500 DRW (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206249, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 5MT 4WD LWB 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206250, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 6MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206251, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 5MT LWB 2500HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206252, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 3500 (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206253, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206254, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206255, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206256, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206257, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206258, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206259, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206260, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206261, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206262, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206263, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206264, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206265, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206266, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206267, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6AT LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206268, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206269, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6AT LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206270, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6AT LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206271, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206272, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206273, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206274, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206275, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206276, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206277, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206278, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206279, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206280, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206281, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206282, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206283, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206284, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206285, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206286, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6AT 4WD LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206287, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6AT 4WD LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206288, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6AT 4WD LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206289, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 3500 DRW (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206290, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 3500 DRW (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206291, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 3500 DRW (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206292, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 3500 DRW (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206293, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 3500 DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206294, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 3500 DRW (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206295, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 3500 DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206296, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 3500 DRW (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206297, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 3500 DRW (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206298, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 3500 DRW (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206299, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 3500 DRW (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206300, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 3500 DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206301, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 3500 DRW (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206302, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 3500 DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206303, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 3500 DRW (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206304, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6AT 4WD LWB 3500 DRW (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206305, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6AT 4WD LWB 3500 DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206306, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6AT 4WD LWB 3500 DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206307, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 3500 (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206308, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 3500 (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206309, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 3500 (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206310, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 3500 (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206311, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 3500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206312, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 3500 (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206313, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 3500 (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206314, + "fields": { + "id_car_serie": 49677, + "name": "8.1 4AT 4WD LWB 3500 (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206315, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 3500 (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206316, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 3500 (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206317, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6AT 4WD LWB 3500 (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206318, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 3500 (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206319, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 3500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206320, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6AT 4WD LWB 3500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206321, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 3500 (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206322, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6AT 4WD LWB 3500 (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206323, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5AT 4WD LWB 3500 (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206324, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 3500 (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206325, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 3500 (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206326, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 3500 (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206327, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 3500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206328, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 3500 (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206329, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 3500 (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206330, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 3500 (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206331, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 3500 (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206332, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 3500 (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206333, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 3500 (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206334, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 3500 (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206335, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 3500 (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206336, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 3500 (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206337, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 3500 (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206338, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 3500 (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206339, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 3500 (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206340, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 3500 DRW (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206341, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 3500 DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206342, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 3500 DRW (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206343, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 3500 DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206344, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 3500 DRW (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206345, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 3500 DRW (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206346, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 3500 DRW (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206347, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 3500 DRW (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206348, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 3500 DRW (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206349, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 3500 DRW (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206350, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 3500 DRW (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206351, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 3500 DRW (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206352, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 3500 DRW (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206353, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 3500 DRW (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206354, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 3500 DRW (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206355, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 3500 DRW (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206356, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206357, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206358, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206359, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206360, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206361, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206362, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206363, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206364, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206365, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206366, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206367, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206368, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206369, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206370, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT 4WD LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206371, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206372, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206373, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT LWB 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206374, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206375, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT LWB 2500HD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206376, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206377, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT LWB 2500HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206378, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206379, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT LWB 2500HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206380, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206381, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT LWB 2500HD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206382, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206383, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT LWB 2500HD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206384, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206385, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT LWB 2500HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206386, + "fields": { + "id_car_serie": 49677, + "name": "8.1 6MT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206387, + "fields": { + "id_car_serie": 49677, + "name": "8.1 5MT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206388, + "fields": { + "id_car_serie": 49679, + "name": "6.0 5AT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206389, + "fields": { + "id_car_serie": 49679, + "name": "6.0 4AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206390, + "fields": { + "id_car_serie": 49679, + "name": "6.0 5AT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206391, + "fields": { + "id_car_serie": 49679, + "name": "6.0 4AT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206392, + "fields": { + "id_car_serie": 49679, + "name": "6.0 5AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206393, + "fields": { + "id_car_serie": 49679, + "name": "6.0 4AT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206394, + "fields": { + "id_car_serie": 49679, + "name": "6.0 5AT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206395, + "fields": { + "id_car_serie": 49679, + "name": "6.0 4AT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206396, + "fields": { + "id_car_serie": 49679, + "name": "6.0 4AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206397, + "fields": { + "id_car_serie": 49679, + "name": "6.0 5AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206398, + "fields": { + "id_car_serie": 49679, + "name": "6.0 4AT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206399, + "fields": { + "id_car_serie": 49679, + "name": "6.0 5AT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206400, + "fields": { + "id_car_serie": 49679, + "name": "6.0 5MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206401, + "fields": { + "id_car_serie": 49679, + "name": "6.0 6MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206402, + "fields": { + "id_car_serie": 49679, + "name": "6.0 6MT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206403, + "fields": { + "id_car_serie": 49679, + "name": "6.0 5MT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206404, + "fields": { + "id_car_serie": 49679, + "name": "6.0 6MT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206405, + "fields": { + "id_car_serie": 49679, + "name": "6.0 5MT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206406, + "fields": { + "id_car_serie": 49679, + "name": "6.0 6MT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206407, + "fields": { + "id_car_serie": 49679, + "name": "6.0 6MT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206408, + "fields": { + "id_car_serie": 49679, + "name": "6.0 5MT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206409, + "fields": { + "id_car_serie": 49679, + "name": "6.0 5MT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206410, + "fields": { + "id_car_serie": 49679, + "name": "6.0 6MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206411, + "fields": { + "id_car_serie": 49679, + "name": "6.0 5MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206412, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 5AT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206413, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 5AT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206414, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 4AT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206415, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 4AT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206416, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 5AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206417, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 4AT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206418, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 5AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206419, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 4AT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206420, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 5AT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206421, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 4AT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206422, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 5AT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206423, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 4AT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206424, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 6MT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206425, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 5MT 4WD 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206426, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 6MT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206427, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 5MT 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206428, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 5MT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206429, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 6MT LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206430, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 6MT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206431, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 5MT 4WD LWB 3500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206432, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 6MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206433, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 5MT LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206434, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 5MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206435, + "fields": { + "id_car_serie": 49679, + "name": "6.6 TD 6MT 4WD LWB 2500HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206436, + "fields": { + "id_car_serie": 49679, + "name": "8.1 4AT 4WD 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206437, + "fields": { + "id_car_serie": 49679, + "name": "8.1 5AT 4WD 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206438, + "fields": { + "id_car_serie": 49679, + "name": "8.1 5AT 4WD LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206439, + "fields": { + "id_car_serie": 49679, + "name": "8.1 4AT 4WD LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206440, + "fields": { + "id_car_serie": 49679, + "name": "8.1 5AT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206441, + "fields": { + "id_car_serie": 49679, + "name": "8.1 4AT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206442, + "fields": { + "id_car_serie": 49679, + "name": "8.1 5AT LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206443, + "fields": { + "id_car_serie": 49679, + "name": "8.1 4AT LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206444, + "fields": { + "id_car_serie": 49679, + "name": "8.1 4AT 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206445, + "fields": { + "id_car_serie": 49679, + "name": "8.1 5AT 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206446, + "fields": { + "id_car_serie": 49679, + "name": "8.1 5AT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206447, + "fields": { + "id_car_serie": 49679, + "name": "8.1 4AT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206448, + "fields": { + "id_car_serie": 49679, + "name": "8.1 5MT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206449, + "fields": { + "id_car_serie": 49679, + "name": "8.1 6MT LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206450, + "fields": { + "id_car_serie": 49679, + "name": "8.1 6MT 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206451, + "fields": { + "id_car_serie": 49679, + "name": "8.1 5MT 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206452, + "fields": { + "id_car_serie": 49679, + "name": "8.1 6MT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206453, + "fields": { + "id_car_serie": 49679, + "name": "8.1 5MT 4WD LWB 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206454, + "fields": { + "id_car_serie": 49679, + "name": "8.1 5MT 4WD LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206455, + "fields": { + "id_car_serie": 49679, + "name": "8.1 6MT 4WD LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206456, + "fields": { + "id_car_serie": 49679, + "name": "8.1 5MT LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206457, + "fields": { + "id_car_serie": 49679, + "name": "8.1 6MT LWB 3500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206458, + "fields": { + "id_car_serie": 49679, + "name": "8.1 5MT 4WD 2500HD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206460, + "fields": { + "id_car_serie": 49681, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206461, + "fields": { + "id_car_serie": 49681, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206462, + "fields": { + "id_car_serie": 49681, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206463, + "fields": { + "id_car_serie": 49682, + "name": "2.0 MultiJet MT LWB H1 29 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206464, + "fields": { + "id_car_serie": 49683, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206465, + "fields": { + "id_car_serie": 49683, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206466, + "fields": { + "id_car_serie": 49684, + "name": "2.0 AT Long (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206467, + "fields": { + "id_car_serie": 49684, + "name": "2.0 MT Long (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206468, + "fields": { + "id_car_serie": 49684, + "name": "2.5 AT Super Long H1 (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206469, + "fields": { + "id_car_serie": 49684, + "name": "2.5 AT Super Long H2 (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206470, + "fields": { + "id_car_serie": 49684, + "name": "3.0 AT TDI Long (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206471, + "fields": { + "id_car_serie": 49684, + "name": "3.0 AT TDI Super Long H2 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206472, + "fields": { + "id_car_serie": 49684, + "name": "3.0 AT TDI Long 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206473, + "fields": { + "id_car_serie": 49684, + "name": "3.0 AT TDI Super Long H1 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206474, + "fields": { + "id_car_serie": 49684, + "name": "3.0 MT TDI Long (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206475, + "fields": { + "id_car_serie": 49684, + "name": "3.0 MT TDI Super Long H1 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206476, + "fields": { + "id_car_serie": 49684, + "name": "3.0 MT TDI Super Long H2 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206477, + "fields": { + "id_car_serie": 49685, + "name": "2.0 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206478, + "fields": { + "id_car_serie": 49685, + "name": "2.0 AT Long (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206479, + "fields": { + "id_car_serie": 49685, + "name": "2.0 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206480, + "fields": { + "id_car_serie": 49685, + "name": "2.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206481, + "fields": { + "id_car_serie": 49685, + "name": "2.0 MT Long (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206482, + "fields": { + "id_car_serie": 49685, + "name": "2.0 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206483, + "fields": { + "id_car_serie": 49685, + "name": "2.7 D AT Silk Road Planetaroof (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206484, + "fields": { + "id_car_serie": 49685, + "name": "2.7 D AT Silk Road Limousine (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206485, + "fields": { + "id_car_serie": 49685, + "name": "2.7 D AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206486, + "fields": { + "id_car_serie": 49685, + "name": "2.7 D MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206487, + "fields": { + "id_car_serie": 49685, + "name": "2.7 D MT 4WD Silk Road Limousine (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206488, + "fields": { + "id_car_serie": 49685, + "name": "2.7 D MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206489, + "fields": { + "id_car_serie": 49686, + "name": "2.0 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206490, + "fields": { + "id_car_serie": 49686, + "name": "2.2 D AT High-Roof Long (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206491, + "fields": { + "id_car_serie": 49686, + "name": "2.2 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206492, + "fields": { + "id_car_serie": 49686, + "name": "2.3 D MT Silk Road (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206493, + "fields": { + "id_car_serie": 49687, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206494, + "fields": { + "id_car_serie": 49687, + "name": "1.8 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206495, + "fields": { + "id_car_serie": 49687, + "name": "2.0 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206496, + "fields": { + "id_car_serie": 49687, + "name": "2.2 D AT High-Roof Long (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206497, + "fields": { + "id_car_serie": 49687, + "name": "2.2 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206498, + "fields": { + "id_car_serie": 49687, + "name": "2.3 D MT Silk Road (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206499, + "fields": { + "id_car_serie": 49688, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206500, + "fields": { + "id_car_serie": 49688, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206501, + "fields": { + "id_car_serie": 49688, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206502, + "fields": { + "id_car_serie": 49689, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206503, + "fields": { + "id_car_serie": 49689, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206504, + "fields": { + "id_car_serie": 49689, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206507, + "fields": { + "id_car_serie": 49693, + "name": "2.0 L1H1 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206508, + "fields": { + "id_car_serie": 49693, + "name": "2.0 CDTI L2H1 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206509, + "fields": { + "id_car_serie": 49693, + "name": "2.0 L2H1 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206510, + "fields": { + "id_car_serie": 49693, + "name": "2.0 CDTI L1H1 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206511, + "fields": { + "id_car_serie": 49693, + "name": "2.0 CDTI L1H1 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206512, + "fields": { + "id_car_serie": 49693, + "name": "2.0 CDTI L2H1 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206513, + "fields": { + "id_car_serie": 49693, + "name": "2.0 CDTI L1H1 Easytronic (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206514, + "fields": { + "id_car_serie": 49693, + "name": "2.0 CDTI L2H1 Easytronic (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206515, + "fields": { + "id_car_serie": 49693, + "name": "2.5 CDTI L2H1 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206516, + "fields": { + "id_car_serie": 49693, + "name": "2.5 CDTI L2H1 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206517, + "fields": { + "id_car_serie": 49693, + "name": "2.5 CDTI L1H1 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206518, + "fields": { + "id_car_serie": 49693, + "name": "2.5 CDTI L1H1 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206519, + "fields": { + "id_car_serie": 49693, + "name": "2.5 CDTI L1H1 Easytronic (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206520, + "fields": { + "id_car_serie": 49693, + "name": "2.5 CDTI L2H1 Easytronic (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206521, + "fields": { + "id_car_serie": 49694, + "name": "2.0 L1H1 2700 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206522, + "fields": { + "id_car_serie": 49694, + "name": "2.0 CDTI ecoFLEX L1H1 2900 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206523, + "fields": { + "id_car_serie": 49694, + "name": "2.0 CDTI L1H1 2900 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206524, + "fields": { + "id_car_serie": 49694, + "name": "2.0 CDTI L1H1 2700 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206525, + "fields": { + "id_car_serie": 49694, + "name": "2.0 CDTI L2H1 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206526, + "fields": { + "id_car_serie": 49694, + "name": "2.0 CDTI ecoFLEX L2H1 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206527, + "fields": { + "id_car_serie": 49694, + "name": "2.0 CDTI ecoFLEX L1H1 2900 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206528, + "fields": { + "id_car_serie": 49694, + "name": "2.0 CDTI ecoFLEX L1H1 2700 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206529, + "fields": { + "id_car_serie": 49694, + "name": "2.0 CDTI L1H1 2900 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206530, + "fields": { + "id_car_serie": 49694, + "name": "2.0 CDTI L1H1 2700 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206531, + "fields": { + "id_car_serie": 49694, + "name": "2.0 CDTI L2H1 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206532, + "fields": { + "id_car_serie": 49694, + "name": "2.0 L2H1 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206533, + "fields": { + "id_car_serie": 49694, + "name": "2.0 L1H1 2900 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206534, + "fields": { + "id_car_serie": 49694, + "name": "2.0 CDTI ecoFLEX L2H1 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206535, + "fields": { + "id_car_serie": 49694, + "name": "2.0 CDTI ecoFLEX L1H1 2700 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206536, + "fields": { + "id_car_serie": 49694, + "name": "2.0 CDTI L1H1 2700 Easytronic (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206537, + "fields": { + "id_car_serie": 49694, + "name": "2.0 CDTI L2H1 Easytronic (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206538, + "fields": { + "id_car_serie": 49694, + "name": "2.0 CDTI ecoFLEX L1H1 2700 Easytronic (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206539, + "fields": { + "id_car_serie": 49694, + "name": "2.0 CDTI ecoFLEX L1H1 2900 Easytronic (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206540, + "fields": { + "id_car_serie": 49694, + "name": "2.0 CDTI L1H1 2900 Easytronic (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206541, + "fields": { + "id_car_serie": 49694, + "name": "2.0 CDTI ecoFLEX L2H1 Easytronic (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206542, + "fields": { + "id_car_serie": 49694, + "name": "2.5 CDTI L1H1 2700 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206543, + "fields": { + "id_car_serie": 49694, + "name": "2.5 CDTI L1H1 2900 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206544, + "fields": { + "id_car_serie": 49694, + "name": "2.5 CDTI L2H1 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206545, + "fields": { + "id_car_serie": 49694, + "name": "2.5 CDTI L1H1 2700 Easytronic (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206546, + "fields": { + "id_car_serie": 49694, + "name": "2.5 CDTI L2H1 Easytronic (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206547, + "fields": { + "id_car_serie": 49694, + "name": "2.5 CDTI L1H1 2900 Easytronic (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206548, + "fields": { + "id_car_serie": 49695, + "name": "2.0 CDTI L1H1 2700 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206549, + "fields": { + "id_car_serie": 49695, + "name": "2.0 L2H2 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206566, + "fields": { + "id_car_serie": 49695, + "name": "2.5 CDTI L2H2 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206571, + "fields": { + "id_car_serie": 49695, + "name": "2.5 CDTI L1H2 Easytronic (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206575, + "fields": { + "id_car_serie": 14742, + "name": "1.9 CDTI MT L1H1 2900 (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206576, + "fields": { + "id_car_serie": 14742, + "name": "1.9 CDTI MT L1H1 2700 (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206577, + "fields": { + "id_car_serie": 14742, + "name": "1.9 CDTI MT L1H1 2700 (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206578, + "fields": { + "id_car_serie": 14742, + "name": "1.9 CDTI MT L2H1 2900 (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206579, + "fields": { + "id_car_serie": 14742, + "name": "1.9 CDTI MT L2H1 2900 (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206580, + "fields": { + "id_car_serie": 14742, + "name": "1.9 CDTI MT L1H1 2900 (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206581, + "fields": { + "id_car_serie": 14742, + "name": "2.0 MT L1H1 2700 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206582, + "fields": { + "id_car_serie": 14742, + "name": "2.0 MT L2H1 2900 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206583, + "fields": { + "id_car_serie": 14742, + "name": "2.0 MT L1H1 2900 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206584, + "fields": { + "id_car_serie": 14742, + "name": "2.5 CDTI MT L1H1 2700 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206585, + "fields": { + "id_car_serie": 14742, + "name": "2.5 CDTI MT L1H1 2900 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206586, + "fields": { + "id_car_serie": 14742, + "name": "2.5 CDTI MT L2H1 2900 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206587, + "fields": { + "id_car_serie": 49697, + "name": "1.9 CDTI MT L1H2 2900 (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206588, + "fields": { + "id_car_serie": 49697, + "name": "1.9 CDTI MT L2H2 2900 (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206597, + "fields": { + "id_car_serie": 49697, + "name": "2.0 MT L1H1 2700 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206602, + "fields": { + "id_car_serie": 49697, + "name": "2.5 CDTI MT L1H1 2900 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206618, + "fields": { + "id_car_serie": 49701, + "name": "2.0 dCi MT L2H1 (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206619, + "fields": { + "id_car_serie": 49701, + "name": "2.0 MT L1H1 (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206620, + "fields": { + "id_car_serie": 49701, + "name": "2.0 dCi MT L1H1 2.9 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206651, + "fields": { + "id_car_serie": 49703, + "name": "1.9 dCi MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206652, + "fields": { + "id_car_serie": 49703, + "name": "1.9 dCi MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206653, + "fields": { + "id_car_serie": 49703, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206654, + "fields": { + "id_car_serie": 49703, + "name": "2.5 dCi MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206702, + "fields": { + "id_car_serie": 49707, + "name": "1.6 SWB MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206703, + "fields": { + "id_car_serie": 49707, + "name": "1.6 LWB MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206704, + "fields": { + "id_car_serie": 49707, + "name": "2.5 D SWB MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206705, + "fields": { + "id_car_serie": 49707, + "name": "2.5 D LWB MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206717, + "fields": { + "id_car_serie": 49710, + "name": "2.5 Turbo MT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206718, + "fields": { + "id_car_serie": 49711, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206719, + "fields": { + "id_car_serie": 49712, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206720, + "fields": { + "id_car_serie": 49712, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206721, + "fields": { + "id_car_serie": 49712, + "name": "1.0 EcoFuel MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206722, + "fields": { + "id_car_serie": 49712, + "name": "1.0 BlueMotion MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206723, + "fields": { + "id_car_serie": 49712, + "name": "1.0 BlueMotion MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206724, + "fields": { + "id_car_serie": 49712, + "name": "1.0 ASG (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206725, + "fields": { + "id_car_serie": 49712, + "name": "1.0 ASG (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206726, + "fields": { + "id_car_serie": 49713, + "name": "2.0 TDI MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206727, + "fields": { + "id_car_serie": 49713, + "name": "2.0 TDI MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206728, + "fields": { + "id_car_serie": 49713, + "name": "2.0 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206729, + "fields": { + "id_car_serie": 49713, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206730, + "fields": { + "id_car_serie": 49713, + "name": "2.0 TDI MT 4Motion (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206731, + "fields": { + "id_car_serie": 49713, + "name": "2.0 TSI MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206732, + "fields": { + "id_car_serie": 49713, + "name": "2.0 BiTDI MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206733, + "fields": { + "id_car_serie": 49713, + "name": "2.0 BiTDI MT 4Motion (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206734, + "fields": { + "id_car_serie": 49713, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206735, + "fields": { + "id_car_serie": 49713, + "name": "2.0 TSI DSG (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206736, + "fields": { + "id_car_serie": 49713, + "name": "2.0 BiTDI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206737, + "fields": { + "id_car_serie": 49713, + "name": "2.0 TSI DSG 4Motion (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206738, + "fields": { + "id_car_serie": 49713, + "name": "2.0 BiTDI DSG 4Motion (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206739, + "fields": { + "id_car_serie": 49714, + "name": "2.0 MT L1H1 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206740, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI MT L1H1 (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206741, + "fields": { + "id_car_serie": 49714, + "name": "2.0 MT L1H2 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206742, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI MT L2H1 (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206743, + "fields": { + "id_car_serie": 49714, + "name": "2.0 MT L2H1 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206744, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI MT L1H2 (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206745, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI MT L1H1 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206746, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TSI MT L1H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206747, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI MT L2H2 (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206748, + "fields": { + "id_car_serie": 49714, + "name": "2.0 MT L2H2 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206749, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI MT L1H2 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206750, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI MT L2H1 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206751, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI MT L2H3 (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206752, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TSI MT L1H2 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206753, + "fields": { + "id_car_serie": 49714, + "name": "2.0 MT L2H3 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206754, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TSI MT L2H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206755, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI MT L2H2 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206756, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI MT L1H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206757, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TSI MT L2H2 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206758, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI MT L2H3 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206759, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI MT L1H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206760, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TSI MT L2H3 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206761, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI MT L2H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206762, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI MT L2H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206763, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI MT 4Motion L1H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206764, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI MT L2H3 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206765, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI MT 4Motion L1H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206766, + "fields": { + "id_car_serie": 49714, + "name": "2.0 BiTDI MT L1H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206767, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI MT 4Motion L2H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206768, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TSI MT L1H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206769, + "fields": { + "id_car_serie": 49714, + "name": "2.0 BiTDI MT L1H2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206770, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI MT 4Motion L2H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206771, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TSI MT L1H2 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206772, + "fields": { + "id_car_serie": 49714, + "name": "2.0 BiTDI MT L2H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206773, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI MT 4Motion L2H3 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206774, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TSI MT L2H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206775, + "fields": { + "id_car_serie": 49714, + "name": "2.0 BiTDI MT L2H2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206776, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TSI MT L2H2 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206777, + "fields": { + "id_car_serie": 49714, + "name": "2.0 BiTDI MT L2H3 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206778, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TSI MT L2H3 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206779, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI DSG L1H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206780, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI DSG L1H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206781, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI DSG L2H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206782, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI DSG L2H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206783, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TDI DSG L2H3 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206784, + "fields": { + "id_car_serie": 49714, + "name": "2.0 BiTDI DSG L1H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206785, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TSI DSG L1H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206786, + "fields": { + "id_car_serie": 49714, + "name": "2.0 BiTDI DSG L1H2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206787, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TSI DSG L1H2 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206788, + "fields": { + "id_car_serie": 49714, + "name": "2.0 BiTDI DSG L2H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206789, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TSI DSG L2H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206790, + "fields": { + "id_car_serie": 49714, + "name": "2.0 BiTDI DSG L2H2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206791, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TSI DSG L2H2 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206792, + "fields": { + "id_car_serie": 49714, + "name": "2.0 BiTDI DSG L2H3 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206793, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TSI DSG L2H3 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206794, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TSI DSG 4Motion L1H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206795, + "fields": { + "id_car_serie": 49714, + "name": "2.0 BiTDI DSG 4Motion L1H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206796, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TSI DSG 4Motion L1H2 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206797, + "fields": { + "id_car_serie": 49714, + "name": "2.0 BiTDI DSG 4Motion L1H2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206798, + "fields": { + "id_car_serie": 49714, + "name": "2.0 BiTDI DSG 4Motion L2H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206799, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TSI DSG 4Motion L2H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206800, + "fields": { + "id_car_serie": 49714, + "name": "2.0 BiTDI DSG 4Motion L2H2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206801, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TSI DSG 4Motion L2H2 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206802, + "fields": { + "id_car_serie": 49714, + "name": "2.0 TSI DSG 4Motion L2H3 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206803, + "fields": { + "id_car_serie": 49714, + "name": "2.0 BiTDI DSG 4Motion L2H3 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206833, + "fields": { + "id_car_serie": 49716, + "name": "2.0 TDI MT L1H1 (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206834, + "fields": { + "id_car_serie": 49716, + "name": "2.0 MT L1H1 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206835, + "fields": { + "id_car_serie": 49716, + "name": "2.0 TDI MT L1H1 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206839, + "fields": { + "id_car_serie": 49716, + "name": "2.0 TSI MT L1H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206843, + "fields": { + "id_car_serie": 49716, + "name": "2.0 TDI MT L1H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206846, + "fields": { + "id_car_serie": 49716, + "name": "2.0 BiTDI MT L1H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206850, + "fields": { + "id_car_serie": 49716, + "name": "2.0 TSI MT L1H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206878, + "fields": { + "id_car_serie": 49716, + "name": "2.0 TDI DSG L1H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206879, + "fields": { + "id_car_serie": 49716, + "name": "2.0 BiTDI DSG L1H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206880, + "fields": { + "id_car_serie": 49716, + "name": "2.0 TSI DSG L1H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206926, + "fields": { + "id_car_serie": 49718, + "name": "1.9 TDI LWB L2H1 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206927, + "fields": { + "id_car_serie": 49718, + "name": "1.9 TDI LWB L2H1 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206928, + "fields": { + "id_car_serie": 49718, + "name": "1.9 TDI LWB L2H2 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206929, + "fields": { + "id_car_serie": 49718, + "name": "1.9 TDI LWB L2H2 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206930, + "fields": { + "id_car_serie": 49718, + "name": "1.9 TDI LWB L2H3 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206931, + "fields": { + "id_car_serie": 49718, + "name": "1.9 TDI LWB L2H3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206932, + "fields": { + "id_car_serie": 49718, + "name": "1.9 TDI SWB L1H1 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206933, + "fields": { + "id_car_serie": 49718, + "name": "1.9 TDI SWB L1H1 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206934, + "fields": { + "id_car_serie": 49718, + "name": "1.9 TDI SWB L1H2 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206935, + "fields": { + "id_car_serie": 49718, + "name": "1.9 TDI SWB L1H2 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206936, + "fields": { + "id_car_serie": 49718, + "name": "2.0 SWB L1H2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206937, + "fields": { + "id_car_serie": 49718, + "name": "2.0 LWB L2H3 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206938, + "fields": { + "id_car_serie": 49718, + "name": "2.0 LWB L2H2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206939, + "fields": { + "id_car_serie": 49718, + "name": "2.0 LWB L2H1 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206942, + "fields": { + "id_car_serie": 49718, + "name": "2.0 SWB L1H1 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206951, + "fields": { + "id_car_serie": 49718, + "name": "2.5 TDI LWB L2H1 4motion MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206952, + "fields": { + "id_car_serie": 49718, + "name": "2.5 TDI SWB L1H1 4motion MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206953, + "fields": { + "id_car_serie": 49718, + "name": "2.5 TDI MT 4motion L1H2 SWB (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206954, + "fields": { + "id_car_serie": 49718, + "name": "2.5 TDI LWB L2H1 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206960, + "fields": { + "id_car_serie": 49718, + "name": "2.5 TDI LWB L2H1 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206961, + "fields": { + "id_car_serie": 49718, + "name": "2.5 TDI LWB L2H2 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206962, + "fields": { + "id_car_serie": 49718, + "name": "2.5 TDI LWB L2H3 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206963, + "fields": { + "id_car_serie": 49718, + "name": "2.5 TDI SWB L1H1 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206964, + "fields": { + "id_car_serie": 49718, + "name": "2.5 TDI SWB L1H2 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206965, + "fields": { + "id_car_serie": 49718, + "name": "2.5 TDI LWB L2H2 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206966, + "fields": { + "id_car_serie": 49718, + "name": "2.5 TDI LWB L2H3 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206967, + "fields": { + "id_car_serie": 49718, + "name": "2.5 TDI SWB L1H1 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206968, + "fields": { + "id_car_serie": 49718, + "name": "2.5 TDI SWB L1H2 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206972, + "fields": { + "id_car_serie": 49718, + "name": "3.2 V6 LWB L2H2 4motion AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206973, + "fields": { + "id_car_serie": 49718, + "name": "3.2 V6 LWB L2H3 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206974, + "fields": { + "id_car_serie": 49718, + "name": "3.2 V6 LWB L2H2 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206979, + "fields": { + "id_car_serie": 49718, + "name": "3.2 V6 LWB L2H3 4motion AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206980, + "fields": { + "id_car_serie": 49718, + "name": "3.2 AT 4motion L1H1 SWB (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206981, + "fields": { + "id_car_serie": 49718, + "name": "3.2 AT 4motion L1H2 SWB (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206982, + "fields": { + "id_car_serie": 49718, + "name": "3.2 V6 LWB L2H1 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206983, + "fields": { + "id_car_serie": 49718, + "name": "3.2 V6 SWB L1H1 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206984, + "fields": { + "id_car_serie": 49718, + "name": "3.2 V6 SWB L1H2 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 206985, + "fields": { + "id_car_serie": 49718, + "name": "3.2 V6 LWB L2H1 4motion AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207029, + "fields": { + "id_car_serie": 49723, + "name": "1.8 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207031, + "fields": { + "id_car_serie": 49723, + "name": "1.9 TD L MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207032, + "fields": { + "id_car_serie": 49723, + "name": "1.9 D L MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207034, + "fields": { + "id_car_serie": 49723, + "name": "2.0 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207035, + "fields": { + "id_car_serie": 49723, + "name": "2.4 D L MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207036, + "fields": { + "id_car_serie": 49723, + "name": "2.4 D L MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207041, + "fields": { + "id_car_serie": 49723, + "name": "2.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207046, + "fields": { + "id_car_serie": 49723, + "name": "2.5 L MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207051, + "fields": { + "id_car_serie": 49723, + "name": "2.5 TDI L MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207057, + "fields": { + "id_car_serie": 49724, + "name": "1.8 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207058, + "fields": { + "id_car_serie": 49724, + "name": "1.8 L MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207059, + "fields": { + "id_car_serie": 49724, + "name": "1.9 TD L MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207060, + "fields": { + "id_car_serie": 49724, + "name": "1.9 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207061, + "fields": { + "id_car_serie": 49724, + "name": "1.9 D L MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207062, + "fields": { + "id_car_serie": 49724, + "name": "2.0 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207063, + "fields": { + "id_car_serie": 49724, + "name": "2.4 D MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207064, + "fields": { + "id_car_serie": 49724, + "name": "2.4 D L MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207065, + "fields": { + "id_car_serie": 49724, + "name": "2.4 D Syncro L MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207066, + "fields": { + "id_car_serie": 49724, + "name": "2.4 D L MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207067, + "fields": { + "id_car_serie": 49724, + "name": "2.4 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207068, + "fields": { + "id_car_serie": 49724, + "name": "2.4 D Syncro MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207069, + "fields": { + "id_car_serie": 49724, + "name": "2.5 TDI L AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207070, + "fields": { + "id_car_serie": 49724, + "name": "2.5 L AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207071, + "fields": { + "id_car_serie": 49724, + "name": "2.5 TDI AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207072, + "fields": { + "id_car_serie": 49724, + "name": "2.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207073, + "fields": { + "id_car_serie": 49724, + "name": "2.5 TDI MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207074, + "fields": { + "id_car_serie": 49724, + "name": "2.5 TDI Syncro MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207075, + "fields": { + "id_car_serie": 49724, + "name": "2.5 L MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207076, + "fields": { + "id_car_serie": 49724, + "name": "2.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207077, + "fields": { + "id_car_serie": 49724, + "name": "2.5 Syncro MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207078, + "fields": { + "id_car_serie": 49724, + "name": "2.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207079, + "fields": { + "id_car_serie": 49724, + "name": "2.5 Syncro MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207080, + "fields": { + "id_car_serie": 49724, + "name": "2.5 TDI L MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207081, + "fields": { + "id_car_serie": 49724, + "name": "2.5 L MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207082, + "fields": { + "id_car_serie": 49724, + "name": "2.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207083, + "fields": { + "id_car_serie": 49724, + "name": "2.8 L MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207084, + "fields": { + "id_car_serie": 49724, + "name": "2.8 Syncro MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207100, + "fields": { + "id_car_serie": 49726, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207102, + "fields": { + "id_car_serie": 49727, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207103, + "fields": { + "id_car_serie": 49727, + "name": "2.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207104, + "fields": { + "id_car_serie": 49728, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207105, + "fields": { + "id_car_serie": 49728, + "name": "2.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207108, + "fields": { + "id_car_serie": 49730, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207109, + "fields": { + "id_car_serie": 49730, + "name": "1.7 AT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207110, + "fields": { + "id_car_serie": 49730, + "name": "1.7 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207111, + "fields": { + "id_car_serie": 49730, + "name": "1.8 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207112, + "fields": { + "id_car_serie": 49730, + "name": "2.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207121, + "fields": { + "id_car_serie": 49734, + "name": "1.6 MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207122, + "fields": { + "id_car_serie": 49735, + "name": "1.5 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207123, + "fields": { + "id_car_serie": 49735, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207124, + "fields": { + "id_car_serie": 49736, + "name": "1.5 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207125, + "fields": { + "id_car_serie": 49736, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207138, + "fields": { + "id_car_serie": 49740, + "name": "1.1 MT (25 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207139, + "fields": { + "id_car_serie": 49740, + "name": "1.2 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207140, + "fields": { + "id_car_serie": 49740, + "name": "1.2 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207141, + "fields": { + "id_car_serie": 49740, + "name": "1.5 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207142, + "fields": { + "id_car_serie": 49740, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207143, + "fields": { + "id_car_serie": 49741, + "name": "1.1 MT (25 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207144, + "fields": { + "id_car_serie": 49741, + "name": "1.2 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207145, + "fields": { + "id_car_serie": 49741, + "name": "1.2 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207146, + "fields": { + "id_car_serie": 49741, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207147, + "fields": { + "id_car_serie": 49741, + "name": "1.5 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207154, + "fields": { + "id_car_serie": 49743, + "name": "2.0 Turbo dCi MT L1H1 (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207155, + "fields": { + "id_car_serie": 49744, + "name": "1.9 Turbo dCi MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207156, + "fields": { + "id_car_serie": 49744, + "name": "1.9 Turbo dCi MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207157, + "fields": { + "id_car_serie": 49744, + "name": "1.9 Turbo dCi MT LWB (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207158, + "fields": { + "id_car_serie": 49744, + "name": "1.9 Turbo dCi MT LWB (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207159, + "fields": { + "id_car_serie": 49744, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207160, + "fields": { + "id_car_serie": 49744, + "name": "2.5 Turbo dCi MT LWB (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207161, + "fields": { + "id_car_serie": 49744, + "name": "2.5 Turbo dCi MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207163, + "fields": { + "id_car_serie": 49745, + "name": "1.9 Turbo dCi MT LWB (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207166, + "fields": { + "id_car_serie": 49745, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207167, + "fields": { + "id_car_serie": 49745, + "name": "2.5 Turbo dCi MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207173, + "fields": { + "id_car_serie": 49748, + "name": "2.4 MT Overdrive (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207174, + "fields": { + "id_car_serie": 49748, + "name": "2.4 MMT Overdrive (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207175, + "fields": { + "id_car_serie": 49748, + "name": "3.3 MMT Overdrive (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207176, + "fields": { + "id_car_serie": 49749, + "name": "3.3 MMT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207180, + "fields": { + "id_car_serie": 49751, + "name": "2.2 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207181, + "fields": { + "id_car_serie": 49751, + "name": "2.2 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207182, + "fields": { + "id_car_serie": 49751, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207183, + "fields": { + "id_car_serie": 49751, + "name": "3.0 MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207184, + "fields": { + "id_car_serie": 49752, + "name": "2.2 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207185, + "fields": { + "id_car_serie": 49752, + "name": "2.2 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207186, + "fields": { + "id_car_serie": 49752, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207187, + "fields": { + "id_car_serie": 49752, + "name": "3.0 MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207188, + "fields": { + "id_car_serie": 49754, + "name": "1.6 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207189, + "fields": { + "id_car_serie": 49754, + "name": "1.6 AT 4WD (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207190, + "fields": { + "id_car_serie": 49754, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207191, + "fields": { + "id_car_serie": 49754, + "name": "1.6 MT 4WD (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207192, + "fields": { + "id_car_serie": 15584, + "name": "3.0 MT Lightweight (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207193, + "fields": { + "id_car_serie": 15584, + "name": "3.0 MT GT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207194, + "fields": { + "id_car_serie": 49757, + "name": "2.3 MT Cecotto (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207195, + "fields": { + "id_car_serie": 49757, + "name": "2.3 MT Evolution (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207196, + "fields": { + "id_car_serie": 49757, + "name": "2.3 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207197, + "fields": { + "id_car_serie": 49757, + "name": "2.3 kat MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207198, + "fields": { + "id_car_serie": 49757, + "name": "2.5 MT Sport Evolution (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207203, + "fields": { + "id_car_serie": 49760, + "name": "4.4 M-DKG (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207204, + "fields": { + "id_car_serie": 49761, + "name": "4.4 BITURBO SWITCH-TRONIC SWB (540 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207205, + "fields": { + "id_car_serie": 49761, + "name": "4.4 BITURBO SWITCH-TRONIC SWB AWD (540 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207206, + "fields": { + "id_car_serie": 49761, + "name": "4.4 BITURBO SWITCH-TRONIC LWB (540 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207207, + "fields": { + "id_car_serie": 49761, + "name": "4.4 BITURBO SWITCH-TRONIC LWB AWD (540 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207212, + "fields": { + "id_car_serie": 49762, + "name": "4.4 AT LWB (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207213, + "fields": { + "id_car_serie": 49762, + "name": "4.4 AT SWB (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207214, + "fields": { + "id_car_serie": 49762, + "name": "4.4 AT LWB AWD (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207215, + "fields": { + "id_car_serie": 49762, + "name": "4.4 AT SWB AWD (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207216, + "fields": { + "id_car_serie": 49763, + "name": "4.4 BITURBO SWITCH-TRONIC (540 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207218, + "fields": { + "id_car_serie": 49764, + "name": "4.4 AT (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207219, + "fields": { + "id_car_serie": 49765, + "name": "4.4 AT (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207220, + "fields": { + "id_car_serie": 49766, + "name": "6.0 AWD AT (625 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207221, + "fields": { + "id_car_serie": 49767, + "name": "6.0 AT (575 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207222, + "fields": { + "id_car_serie": 49768, + "name": "6.0 AT (610 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207223, + "fields": { + "id_car_serie": 49769, + "name": "3.0i AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207224, + "fields": { + "id_car_serie": 49770, + "name": "3.0 Allrad AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207225, + "fields": { + "id_car_serie": 49770, + "name": "3.0 AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207226, + "fields": { + "id_car_serie": 49771, + "name": "3.0i Allroad AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207227, + "fields": { + "id_car_serie": 49771, + "name": "3.0i AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207228, + "fields": { + "id_car_serie": 49772, + "name": "3.0 BITURBO AT SWITCH-TRONIC (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207229, + "fields": { + "id_car_serie": 49773, + "name": "3.0i AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207230, + "fields": { + "id_car_serie": 49773, + "name": "3.0i Allrad AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207231, + "fields": { + "id_car_serie": 49776, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207232, + "fields": { + "id_car_serie": 49776, + "name": "3.8 AT California (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207234, + "fields": { + "id_car_serie": 49776, + "name": "4.3 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207235, + "fields": { + "id_car_serie": 49776, + "name": "4.3 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207236, + "fields": { + "id_car_serie": 49776, + "name": "4.4 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207237, + "fields": { + "id_car_serie": 49776, + "name": "5.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207239, + "fields": { + "id_car_serie": 49776, + "name": "5.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207240, + "fields": { + "id_car_serie": 49776, + "name": "5.7 D AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207241, + "fields": { + "id_car_serie": 49777, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207242, + "fields": { + "id_car_serie": 49777, + "name": "3.8 AT California (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207243, + "fields": { + "id_car_serie": 49777, + "name": "3.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207244, + "fields": { + "id_car_serie": 49777, + "name": "4.4 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207245, + "fields": { + "id_car_serie": 49777, + "name": "5.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207246, + "fields": { + "id_car_serie": 49777, + "name": "5.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207247, + "fields": { + "id_car_serie": 49778, + "name": "3.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207248, + "fields": { + "id_car_serie": 49778, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207249, + "fields": { + "id_car_serie": 49778, + "name": "3.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207250, + "fields": { + "id_car_serie": 49778, + "name": "4.4 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207251, + "fields": { + "id_car_serie": 49778, + "name": "5.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207252, + "fields": { + "id_car_serie": 49778, + "name": "5.0 AT California (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207253, + "fields": { + "id_car_serie": 49778, + "name": "5.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207254, + "fields": { + "id_car_serie": 49779, + "name": "3.3 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207255, + "fields": { + "id_car_serie": 49779, + "name": "3.3 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207256, + "fields": { + "id_car_serie": 49779, + "name": "3.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207257, + "fields": { + "id_car_serie": 49779, + "name": "4.4 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207258, + "fields": { + "id_car_serie": 49779, + "name": "4.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207259, + "fields": { + "id_car_serie": 49779, + "name": "5.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207260, + "fields": { + "id_car_serie": 49779, + "name": "5.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207261, + "fields": { + "id_car_serie": 49779, + "name": "5.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207262, + "fields": { + "id_car_serie": 49779, + "name": "5.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207263, + "fields": { + "id_car_serie": 49779, + "name": "5.7 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207264, + "fields": { + "id_car_serie": 49780, + "name": "3.3 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207265, + "fields": { + "id_car_serie": 49780, + "name": "3.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207266, + "fields": { + "id_car_serie": 49780, + "name": "3.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207267, + "fields": { + "id_car_serie": 49780, + "name": "5.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207268, + "fields": { + "id_car_serie": 49780, + "name": "5.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207269, + "fields": { + "id_car_serie": 49780, + "name": "5.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207270, + "fields": { + "id_car_serie": 49780, + "name": "5.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207271, + "fields": { + "id_car_serie": 49780, + "name": "5.7 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207272, + "fields": { + "id_car_serie": 49780, + "name": "5.7 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207273, + "fields": { + "id_car_serie": 49780, + "name": "5.7 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207274, + "fields": { + "id_car_serie": 49780, + "name": "5.7 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207275, + "fields": { + "id_car_serie": 49781, + "name": "4.1 Turbo Hydra-Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207276, + "fields": { + "id_car_serie": 49781, + "name": "4.1 Turbo Hydra-Matic (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207277, + "fields": { + "id_car_serie": 49781, + "name": "4.1 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207278, + "fields": { + "id_car_serie": 49781, + "name": "4.1 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207279, + "fields": { + "id_car_serie": 49781, + "name": "5.0 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207280, + "fields": { + "id_car_serie": 49781, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207281, + "fields": { + "id_car_serie": 49781, + "name": "5.7 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207282, + "fields": { + "id_car_serie": 49782, + "name": "4.1 Turbo Hydra-Matic (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207283, + "fields": { + "id_car_serie": 49782, + "name": "4.1 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207284, + "fields": { + "id_car_serie": 49782, + "name": "5.0 Turbo Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207285, + "fields": { + "id_car_serie": 49782, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207286, + "fields": { + "id_car_serie": 49782, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207287, + "fields": { + "id_car_serie": 49782, + "name": "6.6 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207288, + "fields": { + "id_car_serie": 49783, + "name": "4.1 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207289, + "fields": { + "id_car_serie": 49783, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207290, + "fields": { + "id_car_serie": 49783, + "name": "4.1 Synchromesh (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207291, + "fields": { + "id_car_serie": 49783, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207292, + "fields": { + "id_car_serie": 49783, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207293, + "fields": { + "id_car_serie": 49783, + "name": "5.0 3Synchromesh (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207294, + "fields": { + "id_car_serie": 49783, + "name": "5.0 4Synchromesh (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207295, + "fields": { + "id_car_serie": 49783, + "name": "5.7 Turbo Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207296, + "fields": { + "id_car_serie": 49783, + "name": "5.7 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207297, + "fields": { + "id_car_serie": 49783, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207298, + "fields": { + "id_car_serie": 49783, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207299, + "fields": { + "id_car_serie": 49783, + "name": "5.7 Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207300, + "fields": { + "id_car_serie": 49783, + "name": "5.7 4Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207301, + "fields": { + "id_car_serie": 49783, + "name": "5.7 3Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207302, + "fields": { + "id_car_serie": 49783, + "name": "6.6 Turbo Hydra-Matic (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207303, + "fields": { + "id_car_serie": 49783, + "name": "6.6 Turbo Hydra-Matic (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207304, + "fields": { + "id_car_serie": 49783, + "name": "6.6 Synchromesh (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207305, + "fields": { + "id_car_serie": 49783, + "name": "6.6 Synchromesh Close (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207306, + "fields": { + "id_car_serie": 49783, + "name": "6.6 Synchromesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207307, + "fields": { + "id_car_serie": 49783, + "name": "7.4 Turbo Hydra-Matic (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207308, + "fields": { + "id_car_serie": 49783, + "name": "7.4 Synchromesh HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207309, + "fields": { + "id_car_serie": 49784, + "name": "3.8 Turbo Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207310, + "fields": { + "id_car_serie": 49784, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207311, + "fields": { + "id_car_serie": 49784, + "name": "3.8 Synchromesh HD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207312, + "fields": { + "id_car_serie": 49784, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207313, + "fields": { + "id_car_serie": 49784, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207314, + "fields": { + "id_car_serie": 49784, + "name": "4.1 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207315, + "fields": { + "id_car_serie": 49784, + "name": "4.1 Synchromesh (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207316, + "fields": { + "id_car_serie": 49784, + "name": "4.1 Synchromesh HD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207317, + "fields": { + "id_car_serie": 49784, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207318, + "fields": { + "id_car_serie": 49784, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207319, + "fields": { + "id_car_serie": 49784, + "name": "5.0 3Synchromesh (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207320, + "fields": { + "id_car_serie": 49784, + "name": "5.0 Synchromesh HD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207321, + "fields": { + "id_car_serie": 49784, + "name": "5.0 4Synchromesh (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207322, + "fields": { + "id_car_serie": 49784, + "name": "5.7 Powerglide (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207323, + "fields": { + "id_car_serie": 49784, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207324, + "fields": { + "id_car_serie": 49784, + "name": "5.7 Turbo Hydra-Matic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207325, + "fields": { + "id_car_serie": 49784, + "name": "5.7 Synchromesh HD (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207326, + "fields": { + "id_car_serie": 49784, + "name": "5.7 3Synchromesh (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207327, + "fields": { + "id_car_serie": 49784, + "name": "5.7 4Synchromesh (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207328, + "fields": { + "id_car_serie": 49784, + "name": "5.7 Synchromesh HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207329, + "fields": { + "id_car_serie": 49784, + "name": "5.7 Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207330, + "fields": { + "id_car_serie": 49784, + "name": "5.7 Synchromesh Close (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207331, + "fields": { + "id_car_serie": 49784, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207332, + "fields": { + "id_car_serie": 49784, + "name": "6.5 Turbo Hydra-Matic (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207333, + "fields": { + "id_car_serie": 49784, + "name": "6.5 Synchromesh HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207334, + "fields": { + "id_car_serie": 49784, + "name": "6.5 Synchromesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207335, + "fields": { + "id_car_serie": 49784, + "name": "6.5 Synchromesh Close (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207336, + "fields": { + "id_car_serie": 49784, + "name": "6.5 Synchromesh HD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207337, + "fields": { + "id_car_serie": 49784, + "name": "6.5 Synchromesh (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207338, + "fields": { + "id_car_serie": 49785, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207339, + "fields": { + "id_car_serie": 49785, + "name": "3.8 Synchromesh Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207340, + "fields": { + "id_car_serie": 49785, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207341, + "fields": { + "id_car_serie": 49785, + "name": "3.8 Synchromesh HD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207342, + "fields": { + "id_car_serie": 49785, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207343, + "fields": { + "id_car_serie": 49785, + "name": "4.1 Synchromesh Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207344, + "fields": { + "id_car_serie": 49785, + "name": "4.1 Synchromesh (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207345, + "fields": { + "id_car_serie": 49785, + "name": "4.1 Synchromesh HD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207346, + "fields": { + "id_car_serie": 49785, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207347, + "fields": { + "id_car_serie": 49785, + "name": "5.0 3Synchromesh (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207348, + "fields": { + "id_car_serie": 49785, + "name": "5.0 Synchromesh HD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207349, + "fields": { + "id_car_serie": 49785, + "name": "5.0 4Synchromesh (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207350, + "fields": { + "id_car_serie": 49785, + "name": "5.0 Synchromesh Overdrive (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207351, + "fields": { + "id_car_serie": 49785, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207352, + "fields": { + "id_car_serie": 49785, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207353, + "fields": { + "id_car_serie": 49785, + "name": "5.4 4Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207354, + "fields": { + "id_car_serie": 49785, + "name": "5.4 3Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207355, + "fields": { + "id_car_serie": 49785, + "name": "5.4 3Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207356, + "fields": { + "id_car_serie": 49785, + "name": "5.4 Synchromesh HD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207357, + "fields": { + "id_car_serie": 49785, + "name": "5.4 4Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207358, + "fields": { + "id_car_serie": 49785, + "name": "5.4 Synchromesh HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207359, + "fields": { + "id_car_serie": 49785, + "name": "5.4 Synchromesh (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207360, + "fields": { + "id_car_serie": 49785, + "name": "5.4 Synchromesh Close (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207361, + "fields": { + "id_car_serie": 49785, + "name": "5.4 Synchromesh HD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207362, + "fields": { + "id_car_serie": 49785, + "name": "6.5 Powerglide (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207363, + "fields": { + "id_car_serie": 49785, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207364, + "fields": { + "id_car_serie": 49785, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207365, + "fields": { + "id_car_serie": 49785, + "name": "6.5 Turbo Hydra-Matic (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207366, + "fields": { + "id_car_serie": 49785, + "name": "6.5 Synchromesh Close (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207367, + "fields": { + "id_car_serie": 49785, + "name": "6.5 Synchromesh HD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207368, + "fields": { + "id_car_serie": 49785, + "name": "6.5 Synchromesh (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207369, + "fields": { + "id_car_serie": 49785, + "name": "6.5 Synchromesh HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207370, + "fields": { + "id_car_serie": 49785, + "name": "6.5 Synchromesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207371, + "fields": { + "id_car_serie": 49786, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207372, + "fields": { + "id_car_serie": 49786, + "name": "3.8 Synchromesh Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207373, + "fields": { + "id_car_serie": 49786, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207374, + "fields": { + "id_car_serie": 49786, + "name": "3.8 Synchromesh HD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207375, + "fields": { + "id_car_serie": 49786, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207376, + "fields": { + "id_car_serie": 49786, + "name": "4.1 Synchromesh (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207377, + "fields": { + "id_car_serie": 49786, + "name": "4.1 Synchromesh Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207378, + "fields": { + "id_car_serie": 49786, + "name": "4.1 Synchromesh HD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207379, + "fields": { + "id_car_serie": 49786, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207380, + "fields": { + "id_car_serie": 49786, + "name": "4.6 Synchromesh HD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207381, + "fields": { + "id_car_serie": 49786, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207382, + "fields": { + "id_car_serie": 49786, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207383, + "fields": { + "id_car_serie": 49786, + "name": "4.6 Synchromesh Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207384, + "fields": { + "id_car_serie": 49786, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207385, + "fields": { + "id_car_serie": 49786, + "name": "5.4 4Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207386, + "fields": { + "id_car_serie": 49786, + "name": "5.4 3Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207387, + "fields": { + "id_car_serie": 49786, + "name": "5.4 Synchromesh HD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207388, + "fields": { + "id_car_serie": 49786, + "name": "5.4 Synchromesh HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207389, + "fields": { + "id_car_serie": 49786, + "name": "5.4 Synchromesh (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207390, + "fields": { + "id_car_serie": 49786, + "name": "5.4 Synchromesh Close (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207391, + "fields": { + "id_car_serie": 49786, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207392, + "fields": { + "id_car_serie": 49786, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207393, + "fields": { + "id_car_serie": 49786, + "name": "6.5 Powerglide (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207394, + "fields": { + "id_car_serie": 49786, + "name": "6.5 Turbo Hydra-Matic (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207395, + "fields": { + "id_car_serie": 49786, + "name": "6.5 Synchromesh Close (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207396, + "fields": { + "id_car_serie": 49786, + "name": "6.5 Synchromesh HD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207397, + "fields": { + "id_car_serie": 49786, + "name": "6.5 Synchromesh (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207398, + "fields": { + "id_car_serie": 49786, + "name": "6.5 Synchromesh HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207399, + "fields": { + "id_car_serie": 49786, + "name": "6.5 Synchromesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207400, + "fields": { + "id_car_serie": 49787, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207401, + "fields": { + "id_car_serie": 49787, + "name": "3.2 Synchromesh Overdrive (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207402, + "fields": { + "id_car_serie": 49787, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207403, + "fields": { + "id_car_serie": 49787, + "name": "3.8 Synchromesh Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207404, + "fields": { + "id_car_serie": 49787, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207405, + "fields": { + "id_car_serie": 49787, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207406, + "fields": { + "id_car_serie": 49787, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207407, + "fields": { + "id_car_serie": 49787, + "name": "4.6 4Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207408, + "fields": { + "id_car_serie": 49787, + "name": "4.6 Synchromesh Overdrive (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207409, + "fields": { + "id_car_serie": 49787, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207410, + "fields": { + "id_car_serie": 49787, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207411, + "fields": { + "id_car_serie": 49787, + "name": "4.6 Synchromesh Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207412, + "fields": { + "id_car_serie": 49787, + "name": "4.6 3Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207413, + "fields": { + "id_car_serie": 49787, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207414, + "fields": { + "id_car_serie": 49787, + "name": "5.4 3Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207415, + "fields": { + "id_car_serie": 49787, + "name": "5.4 4Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207416, + "fields": { + "id_car_serie": 49787, + "name": "6.5 Powerglide (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207417, + "fields": { + "id_car_serie": 49787, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207418, + "fields": { + "id_car_serie": 49787, + "name": "6.5 Synchromesh HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207419, + "fields": { + "id_car_serie": 49787, + "name": "6.5 Synchromesh HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207420, + "fields": { + "id_car_serie": 49787, + "name": "6.5 Synchromesh (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207421, + "fields": { + "id_car_serie": 49787, + "name": "6.5 Synchromesh Close (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207422, + "fields": { + "id_car_serie": 49787, + "name": "6.5 Synchromesh (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207423, + "fields": { + "id_car_serie": 49788, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207424, + "fields": { + "id_car_serie": 49788, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207425, + "fields": { + "id_car_serie": 49788, + "name": "3.2 Synchromesh Overdrive (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207426, + "fields": { + "id_car_serie": 49788, + "name": "3.8 Powerglide (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207427, + "fields": { + "id_car_serie": 49788, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207428, + "fields": { + "id_car_serie": 49788, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207429, + "fields": { + "id_car_serie": 49788, + "name": "3.8 Synchromesh (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207430, + "fields": { + "id_car_serie": 49788, + "name": "3.8 Synchromesh Overdrive (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207431, + "fields": { + "id_car_serie": 49788, + "name": "3.8 Synchromesh Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207432, + "fields": { + "id_car_serie": 49788, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207433, + "fields": { + "id_car_serie": 49788, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207434, + "fields": { + "id_car_serie": 49788, + "name": "4.6 Synchromesh Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207435, + "fields": { + "id_car_serie": 49788, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207436, + "fields": { + "id_car_serie": 49788, + "name": "4.6 3Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207437, + "fields": { + "id_car_serie": 49788, + "name": "4.6 4Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207438, + "fields": { + "id_car_serie": 49788, + "name": "4.6 Synchromesh Overdrive (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207439, + "fields": { + "id_car_serie": 49788, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207440, + "fields": { + "id_car_serie": 49788, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207441, + "fields": { + "id_car_serie": 49788, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207442, + "fields": { + "id_car_serie": 49788, + "name": "5.4 3Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207443, + "fields": { + "id_car_serie": 49788, + "name": "5.4 4Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207444, + "fields": { + "id_car_serie": 49788, + "name": "5.4 4Synchromesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207445, + "fields": { + "id_car_serie": 49788, + "name": "5.4 3Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207446, + "fields": { + "id_car_serie": 49788, + "name": "5.4 3Synchromesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207447, + "fields": { + "id_car_serie": 49788, + "name": "5.4 4Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207448, + "fields": { + "id_car_serie": 49789, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207449, + "fields": { + "id_car_serie": 49789, + "name": "3.2 Synchromesh Overdrive (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207450, + "fields": { + "id_car_serie": 49789, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207451, + "fields": { + "id_car_serie": 49789, + "name": "3.8 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207452, + "fields": { + "id_car_serie": 49789, + "name": "3.8 Synchromesh Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207453, + "fields": { + "id_car_serie": 49789, + "name": "3.8 Synchromesh (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207454, + "fields": { + "id_car_serie": 49789, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207455, + "fields": { + "id_car_serie": 49789, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207456, + "fields": { + "id_car_serie": 49789, + "name": "4.6 3Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207457, + "fields": { + "id_car_serie": 49789, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207458, + "fields": { + "id_car_serie": 49789, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207459, + "fields": { + "id_car_serie": 49789, + "name": "4.6 Synchromesh Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207460, + "fields": { + "id_car_serie": 49789, + "name": "4.6 4Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207461, + "fields": { + "id_car_serie": 49789, + "name": "4.6 Synchromesh Overdrive (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207462, + "fields": { + "id_car_serie": 49789, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207463, + "fields": { + "id_car_serie": 49789, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207464, + "fields": { + "id_car_serie": 49789, + "name": "5.4 3Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207465, + "fields": { + "id_car_serie": 49789, + "name": "5.4 4Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207466, + "fields": { + "id_car_serie": 49789, + "name": "5.4 Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207467, + "fields": { + "id_car_serie": 49789, + "name": "5.4 Synchromesh (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207468, + "fields": { + "id_car_serie": 49790, + "name": "3.9 Powerglide 4400 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207469, + "fields": { + "id_car_serie": 49790, + "name": "3.9 Powerglide 4900 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207470, + "fields": { + "id_car_serie": 49790, + "name": "3.9 Synchromesh 4400 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207471, + "fields": { + "id_car_serie": 49790, + "name": "3.9 Synchromesh 4900 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207472, + "fields": { + "id_car_serie": 49790, + "name": "3.9 Synchromesh Overdrive 4400 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207473, + "fields": { + "id_car_serie": 49790, + "name": "3.9 Synchromesh Overdrive 4900 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207474, + "fields": { + "id_car_serie": 49790, + "name": "3.9 Synchromesh 4400 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207475, + "fields": { + "id_car_serie": 49790, + "name": "3.9 Synchromesh 4900 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207476, + "fields": { + "id_car_serie": 49790, + "name": "3.9 Synchromesh Overdrive 4400 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207477, + "fields": { + "id_car_serie": 49790, + "name": "3.9 Synchromesh Overdrive 4900 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207478, + "fields": { + "id_car_serie": 49790, + "name": "4.6 Powerglide 4900 (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207479, + "fields": { + "id_car_serie": 49790, + "name": "4.6 Powerglide 4400 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207480, + "fields": { + "id_car_serie": 49790, + "name": "4.6 Powerglide 4900 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207481, + "fields": { + "id_car_serie": 49790, + "name": "4.6 Turboglide 4400 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207482, + "fields": { + "id_car_serie": 49790, + "name": "4.6 Turboglide 4900 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207483, + "fields": { + "id_car_serie": 49790, + "name": "4.6 Powerglide 4400 (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207484, + "fields": { + "id_car_serie": 49790, + "name": "4.6 Turboglide 4400 (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207485, + "fields": { + "id_car_serie": 49790, + "name": "4.6 Turboglide 4900 (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207486, + "fields": { + "id_car_serie": 49790, + "name": "4.6 Synchromesh 4400 (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207487, + "fields": { + "id_car_serie": 49790, + "name": "4.6 Synchromesh 4900 (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207488, + "fields": { + "id_car_serie": 49790, + "name": "4.6 Synchromesh Overdrive 4400 (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207489, + "fields": { + "id_car_serie": 49790, + "name": "4.6 Synchromesh Overdrive 4900 (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207490, + "fields": { + "id_car_serie": 49790, + "name": "4.6 Synchromesh 4400 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207491, + "fields": { + "id_car_serie": 49790, + "name": "4.6 Synchromesh 4900 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207492, + "fields": { + "id_car_serie": 49790, + "name": "4.6 Synchromesh Overdrive 4400 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207493, + "fields": { + "id_car_serie": 49790, + "name": "4.6 Synchromesh Overdrive 4900 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207494, + "fields": { + "id_car_serie": 49790, + "name": "5.7 Powerglide HD 4400 (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207495, + "fields": { + "id_car_serie": 49790, + "name": "5.7 Powerglide HD 4900 (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207496, + "fields": { + "id_car_serie": 49790, + "name": "5.7 Powerglide 4900 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207497, + "fields": { + "id_car_serie": 49790, + "name": "5.7 Turboglide 4400 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207498, + "fields": { + "id_car_serie": 49790, + "name": "5.7 Turboglide 4900 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207499, + "fields": { + "id_car_serie": 49790, + "name": "5.7 Powerglide 4900 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207500, + "fields": { + "id_car_serie": 49790, + "name": "5.7 Turboglide 4400 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207501, + "fields": { + "id_car_serie": 49790, + "name": "5.7 Powerglide 4400 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207502, + "fields": { + "id_car_serie": 49790, + "name": "5.7 Powerglide 4400 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207503, + "fields": { + "id_car_serie": 49790, + "name": "5.7 Turboglide 4900 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207504, + "fields": { + "id_car_serie": 49790, + "name": "5.7 3Synchromesh 4400 (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207505, + "fields": { + "id_car_serie": 49790, + "name": "5.7 4Synchromesh 4400 (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207506, + "fields": { + "id_car_serie": 49790, + "name": "5.7 4Synchromesh 4900 (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207507, + "fields": { + "id_car_serie": 49790, + "name": "5.7 Synchromesh 4400 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207508, + "fields": { + "id_car_serie": 49790, + "name": "5.7 Synchromesh 4900 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207509, + "fields": { + "id_car_serie": 49790, + "name": "5.7 Synchromesh Overdrive 4400 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207510, + "fields": { + "id_car_serie": 49790, + "name": "5.7 Synchromesh Overdrive 4900 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207511, + "fields": { + "id_car_serie": 49790, + "name": "5.7 Synchromesh 4400 (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207512, + "fields": { + "id_car_serie": 49790, + "name": "5.7 Synchromesh 4900 (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207513, + "fields": { + "id_car_serie": 49790, + "name": "5.7 3Synchromesh 4400 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207514, + "fields": { + "id_car_serie": 49790, + "name": "5.7 3Synchromesh 4900 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207515, + "fields": { + "id_car_serie": 49790, + "name": "5.7 4Synchromesh 4400 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207516, + "fields": { + "id_car_serie": 49790, + "name": "5.7 4Synchromesh 4900 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207517, + "fields": { + "id_car_serie": 49790, + "name": "5.7 3Synchromesh 4900 (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207518, + "fields": { + "id_car_serie": 49791, + "name": "3.9 Powerglide 4400 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207519, + "fields": { + "id_car_serie": 49791, + "name": "3.9 Powerglide 4900 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207520, + "fields": { + "id_car_serie": 49791, + "name": "3.9 Synchromesh 4400 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207521, + "fields": { + "id_car_serie": 49791, + "name": "3.9 Synchromesh Overdrive 4900 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207522, + "fields": { + "id_car_serie": 49791, + "name": "3.9 Synchromesh 4900 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207523, + "fields": { + "id_car_serie": 49791, + "name": "3.9 Synchromesh Overdrive 4400 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207524, + "fields": { + "id_car_serie": 49791, + "name": "4.6 Turboglide 4900 (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207525, + "fields": { + "id_car_serie": 49791, + "name": "4.6 Turboglide 4400 (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207526, + "fields": { + "id_car_serie": 49791, + "name": "4.6 Turboglide 4900 (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207527, + "fields": { + "id_car_serie": 49791, + "name": "4.6 Powerglide 4900 (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207528, + "fields": { + "id_car_serie": 49791, + "name": "4.6 Powerglide 4400 (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207529, + "fields": { + "id_car_serie": 49791, + "name": "4.6 Powerglide 4400 (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207530, + "fields": { + "id_car_serie": 49791, + "name": "4.6 Powerglide 4900 (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207531, + "fields": { + "id_car_serie": 49791, + "name": "4.6 Turboglide 4400 (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207532, + "fields": { + "id_car_serie": 49791, + "name": "4.6 Synchromesh Overdrive 4900 (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207533, + "fields": { + "id_car_serie": 49791, + "name": "4.6 4Synchromesh 4400 (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207534, + "fields": { + "id_car_serie": 49791, + "name": "4.6 4Synchromesh 4900 (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207535, + "fields": { + "id_car_serie": 49791, + "name": "4.6 3Synchromesh 4400 (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207536, + "fields": { + "id_car_serie": 49791, + "name": "4.6 3Synchromesh 4900 (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207537, + "fields": { + "id_car_serie": 49791, + "name": "4.6 4Synchromesh 4400 (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207538, + "fields": { + "id_car_serie": 49791, + "name": "4.6 4Synchromesh 4900 (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207539, + "fields": { + "id_car_serie": 49791, + "name": "4.6 Synchromesh Overdrive 4400 (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207540, + "fields": { + "id_car_serie": 49791, + "name": "4.6 Synchromesh Overdrive 4900 (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207541, + "fields": { + "id_car_serie": 49791, + "name": "4.6 3Synchromesh 4400 (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207542, + "fields": { + "id_car_serie": 49791, + "name": "4.6 Synchromesh Overdrive 4400 (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207543, + "fields": { + "id_car_serie": 49791, + "name": "4.6 3Synchromesh 4900 (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207544, + "fields": { + "id_car_serie": 49791, + "name": "5.7 Powerglide 4400 (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207545, + "fields": { + "id_car_serie": 49791, + "name": "5.7 Turboglide 4900 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207546, + "fields": { + "id_car_serie": 49791, + "name": "5.7 Turboglide 4400 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207547, + "fields": { + "id_car_serie": 49791, + "name": "5.7 Powerglide 4900 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207548, + "fields": { + "id_car_serie": 49791, + "name": "5.7 Powerglide 4400 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207549, + "fields": { + "id_car_serie": 49791, + "name": "5.7 Powerglide 4900 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207550, + "fields": { + "id_car_serie": 49791, + "name": "5.7 Turboglide 4400 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207551, + "fields": { + "id_car_serie": 49791, + "name": "5.7 Turboglide 4900 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207552, + "fields": { + "id_car_serie": 49791, + "name": "5.7 Powerglide 4400 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207553, + "fields": { + "id_car_serie": 49791, + "name": "5.7 Powerglide 4900 (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207554, + "fields": { + "id_car_serie": 49791, + "name": "5.7 Turboglide 4400 (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207555, + "fields": { + "id_car_serie": 49791, + "name": "5.7 Turboglide 4900 (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207556, + "fields": { + "id_car_serie": 49791, + "name": "5.7 Turboglide 4900 (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207557, + "fields": { + "id_car_serie": 49791, + "name": "5.7 Powerglide 4400 (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207558, + "fields": { + "id_car_serie": 49791, + "name": "5.7 Turboglide 4400 (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207559, + "fields": { + "id_car_serie": 49791, + "name": "5.7 Powerglide 4900 (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207560, + "fields": { + "id_car_serie": 49791, + "name": "5.7 3Synchromesh 4400 (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207561, + "fields": { + "id_car_serie": 49791, + "name": "5.7 3Synchromesh 4400 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207562, + "fields": { + "id_car_serie": 49791, + "name": "5.7 3Synchromesh 4900 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207563, + "fields": { + "id_car_serie": 49791, + "name": "5.7 4Synchromesh 4400 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207564, + "fields": { + "id_car_serie": 49791, + "name": "5.7 4Synchromesh 4900 (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207565, + "fields": { + "id_car_serie": 49791, + "name": "5.7 3Synchromesh 4400 (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207566, + "fields": { + "id_car_serie": 49791, + "name": "5.7 3Synchromesh 4900 (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207567, + "fields": { + "id_car_serie": 49791, + "name": "5.7 4Synchromesh 4400 (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207568, + "fields": { + "id_car_serie": 49791, + "name": "5.7 4Synchromesh 4900 (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207569, + "fields": { + "id_car_serie": 49791, + "name": "5.7 3Synchromesh 4400 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207570, + "fields": { + "id_car_serie": 49791, + "name": "5.7 3Synchromesh 4900 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207571, + "fields": { + "id_car_serie": 49791, + "name": "5.7 4Synchromesh 4400 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207572, + "fields": { + "id_car_serie": 49791, + "name": "5.7 4Synchromesh 4900 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207573, + "fields": { + "id_car_serie": 49791, + "name": "5.7 3Synchromesh 4900 (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207574, + "fields": { + "id_car_serie": 49791, + "name": "5.7 4Synchromesh 4400 (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207575, + "fields": { + "id_car_serie": 49791, + "name": "5.7 4Synchromesh 4900 (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207576, + "fields": { + "id_car_serie": 49792, + "name": "AMG 63 4MATIC 7G-TRONIC (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207577, + "fields": { + "id_car_serie": 49792, + "name": "AMG 63 S 4MATIC 7G-TRONIC (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207578, + "fields": { + "id_car_serie": 49792, + "name": "AMG 43 4MATIC 9G-TRONIC (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207579, + "fields": { + "id_car_serie": 49794, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207580, + "fields": { + "id_car_serie": 49795, + "name": "1.2 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207581, + "fields": { + "id_car_serie": 49797, + "name": "4.1 Turbo Hydra-Matic (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207582, + "fields": { + "id_car_serie": 49797, + "name": "4.1 Turbo Hydra-Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207583, + "fields": { + "id_car_serie": 49797, + "name": "4.1 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207584, + "fields": { + "id_car_serie": 49797, + "name": "4.1 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207585, + "fields": { + "id_car_serie": 49797, + "name": "5.0 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207586, + "fields": { + "id_car_serie": 49797, + "name": "5.7 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207587, + "fields": { + "id_car_serie": 49797, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207588, + "fields": { + "id_car_serie": 49798, + "name": "4.1 Turbo Hydra-Matic (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207589, + "fields": { + "id_car_serie": 49798, + "name": "4.1 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207590, + "fields": { + "id_car_serie": 49798, + "name": "5.0 Turbo Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207591, + "fields": { + "id_car_serie": 49798, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207592, + "fields": { + "id_car_serie": 49798, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207593, + "fields": { + "id_car_serie": 49798, + "name": "6.6 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207594, + "fields": { + "id_car_serie": 49799, + "name": "4.1 Turbo Hydra-Matic (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207595, + "fields": { + "id_car_serie": 49799, + "name": "4.1 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207596, + "fields": { + "id_car_serie": 49799, + "name": "5.0 Turbo Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207597, + "fields": { + "id_car_serie": 49799, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207598, + "fields": { + "id_car_serie": 49799, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207599, + "fields": { + "id_car_serie": 49799, + "name": "6.6 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207600, + "fields": { + "id_car_serie": 49800, + "name": "5.7 Turbo Hydra-Matic 2-seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207601, + "fields": { + "id_car_serie": 49800, + "name": "5.7 Turbo Hydra-Matic 3-seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207602, + "fields": { + "id_car_serie": 49800, + "name": "5.7 Turbo Hydra-Matic 2-seat (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207603, + "fields": { + "id_car_serie": 49800, + "name": "5.7 Turbo Hydra-Matic 3-seat (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207604, + "fields": { + "id_car_serie": 49800, + "name": "6.6 Turbo Hydra-Matic 2-seat (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207605, + "fields": { + "id_car_serie": 49800, + "name": "6.6 Turbo Hydra-Matic 3-seat (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207606, + "fields": { + "id_car_serie": 49801, + "name": "5.0 Turbo Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207607, + "fields": { + "id_car_serie": 49801, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207608, + "fields": { + "id_car_serie": 49801, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207609, + "fields": { + "id_car_serie": 49801, + "name": "6.6 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207610, + "fields": { + "id_car_serie": 49802, + "name": "4.1 Turbo Hydra-Matic (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207611, + "fields": { + "id_car_serie": 49802, + "name": "4.1 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207612, + "fields": { + "id_car_serie": 49802, + "name": "5.7 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207613, + "fields": { + "id_car_serie": 49802, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207614, + "fields": { + "id_car_serie": 49802, + "name": "5.7 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207615, + "fields": { + "id_car_serie": 49802, + "name": "5.7 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207616, + "fields": { + "id_car_serie": 49802, + "name": "6.6 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207617, + "fields": { + "id_car_serie": 49802, + "name": "7.4 Turbo Hydra-Matic (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207618, + "fields": { + "id_car_serie": 49803, + "name": "4.1 Turbo Hydra-Matic (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207619, + "fields": { + "id_car_serie": 49803, + "name": "4.1 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207620, + "fields": { + "id_car_serie": 49803, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207621, + "fields": { + "id_car_serie": 49803, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207622, + "fields": { + "id_car_serie": 49803, + "name": "5.7 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207623, + "fields": { + "id_car_serie": 49803, + "name": "5.7 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207624, + "fields": { + "id_car_serie": 49803, + "name": "6.6 Turbo Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207625, + "fields": { + "id_car_serie": 49803, + "name": "6.6 Turbo Hydra-Matic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207626, + "fields": { + "id_car_serie": 49803, + "name": "7.4 Turbo Hydra-Matic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207627, + "fields": { + "id_car_serie": 49804, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207628, + "fields": { + "id_car_serie": 49804, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207629, + "fields": { + "id_car_serie": 49804, + "name": "5.7 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207630, + "fields": { + "id_car_serie": 49804, + "name": "5.7 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207631, + "fields": { + "id_car_serie": 49804, + "name": "6.6 Turbo Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207632, + "fields": { + "id_car_serie": 49804, + "name": "6.6 Turbo Hydra-Matic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207633, + "fields": { + "id_car_serie": 49804, + "name": "7.4 Turbo Hydra-Matic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207634, + "fields": { + "id_car_serie": 49804, + "name": "7.4 MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207635, + "fields": { + "id_car_serie": 49805, + "name": "4.1 Turbo Hydra-Matic (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207636, + "fields": { + "id_car_serie": 49805, + "name": "4.1 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207637, + "fields": { + "id_car_serie": 49805, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207638, + "fields": { + "id_car_serie": 49805, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207639, + "fields": { + "id_car_serie": 49805, + "name": "5.7 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207640, + "fields": { + "id_car_serie": 49805, + "name": "5.7 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207641, + "fields": { + "id_car_serie": 49805, + "name": "6.6 Turbo Hydra-Matic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207642, + "fields": { + "id_car_serie": 49805, + "name": "6.6 Turbo Hydra-Matic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207643, + "fields": { + "id_car_serie": 49805, + "name": "7.4 Turbo Hydra-Matic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207644, + "fields": { + "id_car_serie": 49805, + "name": "7.4 MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207645, + "fields": { + "id_car_serie": 49806, + "name": "4.1 Turbo Hydra-Matic (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207646, + "fields": { + "id_car_serie": 49806, + "name": "4.1 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207647, + "fields": { + "id_car_serie": 49806, + "name": "5.0 Turbo Hydra-Matic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207648, + "fields": { + "id_car_serie": 49806, + "name": "5.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207649, + "fields": { + "id_car_serie": 49806, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207650, + "fields": { + "id_car_serie": 49806, + "name": "5.7 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207651, + "fields": { + "id_car_serie": 49806, + "name": "5.7 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207652, + "fields": { + "id_car_serie": 49806, + "name": "5.7 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207653, + "fields": { + "id_car_serie": 49806, + "name": "7.4 Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207654, + "fields": { + "id_car_serie": 49806, + "name": "7.4 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207655, + "fields": { + "id_car_serie": 49807, + "name": "5.0 Powerglide (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207656, + "fields": { + "id_car_serie": 49807, + "name": "5.0 Turbo Hydra-Matic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207657, + "fields": { + "id_car_serie": 49807, + "name": "5.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207658, + "fields": { + "id_car_serie": 49807, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207659, + "fields": { + "id_car_serie": 49807, + "name": "5.7 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207660, + "fields": { + "id_car_serie": 49807, + "name": "5.7 4MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207661, + "fields": { + "id_car_serie": 49807, + "name": "5.7 3MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207662, + "fields": { + "id_car_serie": 49807, + "name": "5.7 4MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207663, + "fields": { + "id_car_serie": 49807, + "name": "5.7 3MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207664, + "fields": { + "id_car_serie": 49807, + "name": "6.6 Turbo Hydra-Matic (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207665, + "fields": { + "id_car_serie": 49807, + "name": "6.6 3MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207666, + "fields": { + "id_car_serie": 49807, + "name": "6.6 4MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207667, + "fields": { + "id_car_serie": 49807, + "name": "7.4 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207668, + "fields": { + "id_car_serie": 49807, + "name": "7.4 MT HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207669, + "fields": { + "id_car_serie": 49808, + "name": "5.0 Turbo Hydra-Matic 2-seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207670, + "fields": { + "id_car_serie": 49808, + "name": "5.0 Turbo Hydra-Matic 3-seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207671, + "fields": { + "id_car_serie": 49808, + "name": "5.0 Powerglide 2-seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207672, + "fields": { + "id_car_serie": 49808, + "name": "5.0 Powerglide 3-seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207673, + "fields": { + "id_car_serie": 49808, + "name": "5.0 MT 3-seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207674, + "fields": { + "id_car_serie": 49808, + "name": "5.0 MT 2-seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207675, + "fields": { + "id_car_serie": 49808, + "name": "5.7 Turbo Hydra-Matic 2-seat (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207676, + "fields": { + "id_car_serie": 49808, + "name": "5.7 Turbo Hydra-Matic 2-seat (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207677, + "fields": { + "id_car_serie": 49808, + "name": "5.7 Turbo Hydra-Matic 3-seat (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207678, + "fields": { + "id_car_serie": 49808, + "name": "5.7 Turbo Hydra-Matic 3-seat (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207679, + "fields": { + "id_car_serie": 49808, + "name": "5.7 3MT 2-seat (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207680, + "fields": { + "id_car_serie": 49808, + "name": "5.7 3MT 2-seat (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207681, + "fields": { + "id_car_serie": 49808, + "name": "5.7 3MT 3-seat (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207682, + "fields": { + "id_car_serie": 49808, + "name": "5.7 4MT 2-seat (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207683, + "fields": { + "id_car_serie": 49808, + "name": "5.7 4MT 3-seat (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207684, + "fields": { + "id_car_serie": 49808, + "name": "5.7 3MT 3-seat (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207685, + "fields": { + "id_car_serie": 49808, + "name": "5.7 4MT 2-seat (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207686, + "fields": { + "id_car_serie": 49808, + "name": "5.7 4MT 3-seat (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207687, + "fields": { + "id_car_serie": 49808, + "name": "6.6 Turbo Hydra-Matic 2-seat (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207688, + "fields": { + "id_car_serie": 49808, + "name": "6.6 Turbo Hydra-Matic 3-seat (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207689, + "fields": { + "id_car_serie": 49808, + "name": "6.6 MT HD 2-seat (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207690, + "fields": { + "id_car_serie": 49808, + "name": "6.6 MT HD 3-seat (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207691, + "fields": { + "id_car_serie": 49808, + "name": "6.6 MT 2-seat (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207692, + "fields": { + "id_car_serie": 49808, + "name": "6.6 MT 3-seat (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207693, + "fields": { + "id_car_serie": 49809, + "name": "4.1 Powerglide (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207694, + "fields": { + "id_car_serie": 49809, + "name": "4.1 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207695, + "fields": { + "id_car_serie": 49809, + "name": "5.0 Powerglide (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207696, + "fields": { + "id_car_serie": 49809, + "name": "5.0 Turbo Hydra-Matic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207697, + "fields": { + "id_car_serie": 49809, + "name": "5.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207698, + "fields": { + "id_car_serie": 49809, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207699, + "fields": { + "id_car_serie": 49809, + "name": "5.7 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207700, + "fields": { + "id_car_serie": 49809, + "name": "5.7 4MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207701, + "fields": { + "id_car_serie": 49809, + "name": "5.7 3MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207702, + "fields": { + "id_car_serie": 49809, + "name": "5.7 4MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207703, + "fields": { + "id_car_serie": 49809, + "name": "5.7 3MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207704, + "fields": { + "id_car_serie": 49809, + "name": "6.6 Turbo Hydra-Matic (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207705, + "fields": { + "id_car_serie": 49809, + "name": "6.6 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207706, + "fields": { + "id_car_serie": 49809, + "name": "6.6 MT HD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207707, + "fields": { + "id_car_serie": 49810, + "name": "5.0 Powerglide (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207708, + "fields": { + "id_car_serie": 49810, + "name": "5.0 Turbo Hydra-Matic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207709, + "fields": { + "id_car_serie": 49810, + "name": "5.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207710, + "fields": { + "id_car_serie": 49810, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207711, + "fields": { + "id_car_serie": 49810, + "name": "5.7 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207712, + "fields": { + "id_car_serie": 49810, + "name": "5.7 3MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207713, + "fields": { + "id_car_serie": 49810, + "name": "5.7 3MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207714, + "fields": { + "id_car_serie": 49810, + "name": "5.7 4MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207715, + "fields": { + "id_car_serie": 49810, + "name": "5.7 4MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207716, + "fields": { + "id_car_serie": 49810, + "name": "6.6 Turbo Hydra-Matic (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207717, + "fields": { + "id_car_serie": 49810, + "name": "6.6 3MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207718, + "fields": { + "id_car_serie": 49810, + "name": "6.6 4MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207719, + "fields": { + "id_car_serie": 49811, + "name": "5.0 Turbo Hydra-Matic 2-seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207720, + "fields": { + "id_car_serie": 49811, + "name": "5.0 Turbo Hydra-Matic 3-seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207721, + "fields": { + "id_car_serie": 49811, + "name": "5.0 Powerglide 2-seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207722, + "fields": { + "id_car_serie": 49811, + "name": "5.0 Powerglide 3-seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207723, + "fields": { + "id_car_serie": 49811, + "name": "5.0 MT 3-seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207724, + "fields": { + "id_car_serie": 49811, + "name": "5.0 MT 2-seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207725, + "fields": { + "id_car_serie": 49811, + "name": "5.7 Turbo Hydra-Matic 2-seat (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207726, + "fields": { + "id_car_serie": 49811, + "name": "5.7 Turbo Hydra-Matic 2-seat (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207727, + "fields": { + "id_car_serie": 49811, + "name": "5.7 Turbo Hydra-Matic 3-seat (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207728, + "fields": { + "id_car_serie": 49811, + "name": "5.7 Turbo Hydra-Matic 3-seat (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207729, + "fields": { + "id_car_serie": 49811, + "name": "5.7 3MT 2-seat (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207730, + "fields": { + "id_car_serie": 49811, + "name": "5.7 3MT 2-seat (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207731, + "fields": { + "id_car_serie": 49811, + "name": "5.7 3MT 3-seat (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207732, + "fields": { + "id_car_serie": 49811, + "name": "5.7 4MT 2-seat (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207733, + "fields": { + "id_car_serie": 49811, + "name": "5.7 4MT 3-seat (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207734, + "fields": { + "id_car_serie": 49811, + "name": "5.7 3MT 3-seat (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207735, + "fields": { + "id_car_serie": 49811, + "name": "5.7 4MT 2-seat (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207736, + "fields": { + "id_car_serie": 49811, + "name": "5.7 4MT 3-seat (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207737, + "fields": { + "id_car_serie": 49811, + "name": "6.6 Turbo Hydra-Matic 2-seat (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207738, + "fields": { + "id_car_serie": 49811, + "name": "6.6 Turbo Hydra-Matic 3-seat (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207739, + "fields": { + "id_car_serie": 49811, + "name": "6.6 MT HD 2-seat (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207740, + "fields": { + "id_car_serie": 49811, + "name": "6.6 MT HD 3-seat (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207741, + "fields": { + "id_car_serie": 49811, + "name": "6.6 MT 2-seat (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207742, + "fields": { + "id_car_serie": 49811, + "name": "6.6 MT 3-seat (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207743, + "fields": { + "id_car_serie": 49812, + "name": "4.1 Powerglide (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207744, + "fields": { + "id_car_serie": 49812, + "name": "4.1 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207745, + "fields": { + "id_car_serie": 49812, + "name": "5.0 Powerglide (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207746, + "fields": { + "id_car_serie": 49812, + "name": "5.0 Turbo Hydra-Matic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207747, + "fields": { + "id_car_serie": 49812, + "name": "5.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207748, + "fields": { + "id_car_serie": 49812, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207749, + "fields": { + "id_car_serie": 49812, + "name": "5.7 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207750, + "fields": { + "id_car_serie": 49812, + "name": "5.7 4MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207751, + "fields": { + "id_car_serie": 49812, + "name": "5.7 3MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207752, + "fields": { + "id_car_serie": 49812, + "name": "5.7 4MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207753, + "fields": { + "id_car_serie": 49812, + "name": "5.7 3MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207754, + "fields": { + "id_car_serie": 49812, + "name": "6.6 Turbo Hydra-Matic (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207755, + "fields": { + "id_car_serie": 49812, + "name": "6.6 MT HD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207756, + "fields": { + "id_car_serie": 49813, + "name": "4.1 Powerglide (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207757, + "fields": { + "id_car_serie": 49813, + "name": "4.1 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207758, + "fields": { + "id_car_serie": 49813, + "name": "5.0 Powerglide (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207759, + "fields": { + "id_car_serie": 49813, + "name": "5.0 Turbo Hydra-Matic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207760, + "fields": { + "id_car_serie": 49813, + "name": "5.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207761, + "fields": { + "id_car_serie": 49813, + "name": "5.7 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207762, + "fields": { + "id_car_serie": 49813, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207763, + "fields": { + "id_car_serie": 49813, + "name": "5.7 3MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207764, + "fields": { + "id_car_serie": 49813, + "name": "5.7 3MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207765, + "fields": { + "id_car_serie": 49813, + "name": "5.7 4MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207766, + "fields": { + "id_car_serie": 49813, + "name": "5.7 4MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207767, + "fields": { + "id_car_serie": 49813, + "name": "6.6 Turbo Hydra-Matic (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207768, + "fields": { + "id_car_serie": 49813, + "name": "6.6 3MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207769, + "fields": { + "id_car_serie": 49813, + "name": "6.6 4MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207770, + "fields": { + "id_car_serie": 49813, + "name": "7.4 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207771, + "fields": { + "id_car_serie": 49813, + "name": "7.4 MT HD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207772, + "fields": { + "id_car_serie": 49814, + "name": "4.1 Powerglide (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207773, + "fields": { + "id_car_serie": 49814, + "name": "4.1 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207774, + "fields": { + "id_car_serie": 49814, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207775, + "fields": { + "id_car_serie": 49814, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207776, + "fields": { + "id_car_serie": 49814, + "name": "5.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207777, + "fields": { + "id_car_serie": 49814, + "name": "5.7 Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207778, + "fields": { + "id_car_serie": 49814, + "name": "5.7 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207779, + "fields": { + "id_car_serie": 49814, + "name": "5.7 3MT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207780, + "fields": { + "id_car_serie": 49814, + "name": "5.7 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207781, + "fields": { + "id_car_serie": 49814, + "name": "5.7 4MT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207782, + "fields": { + "id_car_serie": 49814, + "name": "6.6 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207783, + "fields": { + "id_car_serie": 49814, + "name": "6.6 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207784, + "fields": { + "id_car_serie": 49814, + "name": "6.6 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207785, + "fields": { + "id_car_serie": 49814, + "name": "7.4 Turbo Hydra-Matic (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207786, + "fields": { + "id_car_serie": 49814, + "name": "7.4 Turbo Hydra-Matic (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207787, + "fields": { + "id_car_serie": 49814, + "name": "7.4 MT HD (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207788, + "fields": { + "id_car_serie": 49814, + "name": "7.4 MT HD (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207789, + "fields": { + "id_car_serie": 49815, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207790, + "fields": { + "id_car_serie": 49815, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207791, + "fields": { + "id_car_serie": 49815, + "name": "5.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207792, + "fields": { + "id_car_serie": 49815, + "name": "5.7 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207793, + "fields": { + "id_car_serie": 49815, + "name": "5.7 Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207794, + "fields": { + "id_car_serie": 49815, + "name": "5.7 4MT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207795, + "fields": { + "id_car_serie": 49815, + "name": "5.7 3MT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207796, + "fields": { + "id_car_serie": 49815, + "name": "5.7 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207797, + "fields": { + "id_car_serie": 49815, + "name": "6.6 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207798, + "fields": { + "id_car_serie": 49815, + "name": "6.6 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207799, + "fields": { + "id_car_serie": 49815, + "name": "6.6 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207800, + "fields": { + "id_car_serie": 49815, + "name": "7.4 Turbo Hydra-Matic (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207801, + "fields": { + "id_car_serie": 49815, + "name": "7.4 Turbo Hydra-Matic (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207802, + "fields": { + "id_car_serie": 49815, + "name": "7.4 MT HD (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207803, + "fields": { + "id_car_serie": 49815, + "name": "7.4 MT HD (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207804, + "fields": { + "id_car_serie": 49816, + "name": "4.1 Powerglide (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207805, + "fields": { + "id_car_serie": 49816, + "name": "4.1 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207806, + "fields": { + "id_car_serie": 49816, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207807, + "fields": { + "id_car_serie": 49816, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207808, + "fields": { + "id_car_serie": 49816, + "name": "5.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207809, + "fields": { + "id_car_serie": 49816, + "name": "5.7 Turbo Hydra-Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207810, + "fields": { + "id_car_serie": 49816, + "name": "5.7 Turbo Hydra-Matic (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207811, + "fields": { + "id_car_serie": 49816, + "name": "5.7 3MT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207812, + "fields": { + "id_car_serie": 49816, + "name": "5.7 4MT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207813, + "fields": { + "id_car_serie": 49816, + "name": "5.7 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207814, + "fields": { + "id_car_serie": 49816, + "name": "6.6 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207815, + "fields": { + "id_car_serie": 49816, + "name": "6.6 MT HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207816, + "fields": { + "id_car_serie": 49816, + "name": "6.6 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207817, + "fields": { + "id_car_serie": 49817, + "name": "5.0 Powerglide 2-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207818, + "fields": { + "id_car_serie": 49817, + "name": "5.0 Turbo Hydra-Matic 3-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207819, + "fields": { + "id_car_serie": 49817, + "name": "5.0 Powerglide 3-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207820, + "fields": { + "id_car_serie": 49817, + "name": "5.0 Turbo Hydra-Matic 2-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207821, + "fields": { + "id_car_serie": 49817, + "name": "5.0 MT 3-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207822, + "fields": { + "id_car_serie": 49817, + "name": "5.0 MT 2-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207823, + "fields": { + "id_car_serie": 49817, + "name": "5.7 Turbo Hydra-Matic 3-seat (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207824, + "fields": { + "id_car_serie": 49817, + "name": "5.7 Turbo Hydra-Matic 2-seat (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207825, + "fields": { + "id_car_serie": 49817, + "name": "5.7 Turbo Hydra-Matic 3-seat (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207826, + "fields": { + "id_car_serie": 49817, + "name": "5.7 Turbo Hydra-Matic 2-seat (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207827, + "fields": { + "id_car_serie": 49817, + "name": "5.7 3MT 3-seat (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207828, + "fields": { + "id_car_serie": 49817, + "name": "5.7 MT 2-seat (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207829, + "fields": { + "id_car_serie": 49817, + "name": "5.7 MT 3-seat (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207830, + "fields": { + "id_car_serie": 49817, + "name": "5.7 3MT 2-seat (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207831, + "fields": { + "id_car_serie": 49817, + "name": "5.7 4MT 2-seat (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207832, + "fields": { + "id_car_serie": 49817, + "name": "5.7 4MT 3-seat (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207833, + "fields": { + "id_car_serie": 49817, + "name": "6.6 Turbo Hydra-Matic 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207834, + "fields": { + "id_car_serie": 49817, + "name": "6.6 Turbo Hydra-Matic 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207835, + "fields": { + "id_car_serie": 49817, + "name": "6.6 MT HD 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207836, + "fields": { + "id_car_serie": 49817, + "name": "6.6 MT HD 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207837, + "fields": { + "id_car_serie": 49817, + "name": "6.6 MT 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207838, + "fields": { + "id_car_serie": 49817, + "name": "6.6 MT 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207839, + "fields": { + "id_car_serie": 49818, + "name": "4.1 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207840, + "fields": { + "id_car_serie": 49818, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207841, + "fields": { + "id_car_serie": 49818, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207842, + "fields": { + "id_car_serie": 49818, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207843, + "fields": { + "id_car_serie": 49818, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207844, + "fields": { + "id_car_serie": 49818, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207845, + "fields": { + "id_car_serie": 49818, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207846, + "fields": { + "id_car_serie": 49818, + "name": "5.7 Turbo Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207847, + "fields": { + "id_car_serie": 49818, + "name": "5.7 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207848, + "fields": { + "id_car_serie": 49818, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207849, + "fields": { + "id_car_serie": 49818, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207850, + "fields": { + "id_car_serie": 49818, + "name": "5.7 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207851, + "fields": { + "id_car_serie": 49818, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207852, + "fields": { + "id_car_serie": 49818, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207853, + "fields": { + "id_car_serie": 49818, + "name": "6.6 Turbo Hydra-Matic (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207854, + "fields": { + "id_car_serie": 49818, + "name": "6.6 Turbo Hydra-Matic (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207855, + "fields": { + "id_car_serie": 49818, + "name": "6.6 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207856, + "fields": { + "id_car_serie": 49818, + "name": "6.6 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207857, + "fields": { + "id_car_serie": 49818, + "name": "7.4 Turbo Hydra-Matic (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207858, + "fields": { + "id_car_serie": 49818, + "name": "7.4 MT HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207859, + "fields": { + "id_car_serie": 49819, + "name": "4.1 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207860, + "fields": { + "id_car_serie": 49819, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207861, + "fields": { + "id_car_serie": 49819, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207862, + "fields": { + "id_car_serie": 49819, + "name": "5.0 Turbo Hydra-Matic 2-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207863, + "fields": { + "id_car_serie": 49819, + "name": "5.0 Powerglide 2-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207864, + "fields": { + "id_car_serie": 49819, + "name": "5.0 Turbo Hydra-Matic 3-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207865, + "fields": { + "id_car_serie": 49819, + "name": "5.0 Powerglide 3-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207866, + "fields": { + "id_car_serie": 49819, + "name": "5.0 3MT 3-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207867, + "fields": { + "id_car_serie": 49819, + "name": "5.0 4MT 2-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207868, + "fields": { + "id_car_serie": 49819, + "name": "5.0 4MT 3-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207869, + "fields": { + "id_car_serie": 49819, + "name": "5.0 3MT 2-seat (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207870, + "fields": { + "id_car_serie": 49819, + "name": "5.7 Turbo Hydra-Matic 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207871, + "fields": { + "id_car_serie": 49819, + "name": "5.7 Powerglide 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207872, + "fields": { + "id_car_serie": 49819, + "name": "5.7 Turbo Hydra-Matic 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207873, + "fields": { + "id_car_serie": 49819, + "name": "5.7 Powerglide 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207874, + "fields": { + "id_car_serie": 49819, + "name": "5.7 Powerglide 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207875, + "fields": { + "id_car_serie": 49819, + "name": "5.7 Powerglide 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207876, + "fields": { + "id_car_serie": 49819, + "name": "5.7 Turbo Hydra-Matic 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207877, + "fields": { + "id_car_serie": 49819, + "name": "5.7 Turbo Hydra-Matic 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207878, + "fields": { + "id_car_serie": 49819, + "name": "5.7 4MT 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207879, + "fields": { + "id_car_serie": 49819, + "name": "5.7 3MT 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207880, + "fields": { + "id_car_serie": 49819, + "name": "5.7 3MT 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207881, + "fields": { + "id_car_serie": 49819, + "name": "5.7 4MT 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207882, + "fields": { + "id_car_serie": 49819, + "name": "5.7 MT 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207883, + "fields": { + "id_car_serie": 49819, + "name": "5.7 MT 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207884, + "fields": { + "id_car_serie": 49819, + "name": "6.6 Turbo Hydra-Matic 2-seat (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207885, + "fields": { + "id_car_serie": 49819, + "name": "6.6 Turbo Hydra-Matic 3-seat (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207886, + "fields": { + "id_car_serie": 49819, + "name": "6.6 MT 2-seat (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207887, + "fields": { + "id_car_serie": 49819, + "name": "6.6 MT 3-seat (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207888, + "fields": { + "id_car_serie": 49820, + "name": "4.1 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207889, + "fields": { + "id_car_serie": 49820, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207890, + "fields": { + "id_car_serie": 49820, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207891, + "fields": { + "id_car_serie": 49820, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207892, + "fields": { + "id_car_serie": 49820, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207893, + "fields": { + "id_car_serie": 49820, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207894, + "fields": { + "id_car_serie": 49820, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207895, + "fields": { + "id_car_serie": 49820, + "name": "5.7 Turbo Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207896, + "fields": { + "id_car_serie": 49820, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207897, + "fields": { + "id_car_serie": 49820, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207898, + "fields": { + "id_car_serie": 49820, + "name": "5.7 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207899, + "fields": { + "id_car_serie": 49820, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207900, + "fields": { + "id_car_serie": 49820, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207901, + "fields": { + "id_car_serie": 49820, + "name": "5.7 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207902, + "fields": { + "id_car_serie": 49820, + "name": "6.6 Turbo Hydra-Matic (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207903, + "fields": { + "id_car_serie": 49820, + "name": "6.6 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207904, + "fields": { + "id_car_serie": 49821, + "name": "4.1 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207905, + "fields": { + "id_car_serie": 49821, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207906, + "fields": { + "id_car_serie": 49821, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207907, + "fields": { + "id_car_serie": 49821, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207908, + "fields": { + "id_car_serie": 49821, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207909, + "fields": { + "id_car_serie": 49821, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207910, + "fields": { + "id_car_serie": 49821, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207911, + "fields": { + "id_car_serie": 49821, + "name": "5.7 Turbo Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207912, + "fields": { + "id_car_serie": 49821, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207913, + "fields": { + "id_car_serie": 49821, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207914, + "fields": { + "id_car_serie": 49821, + "name": "5.7 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207915, + "fields": { + "id_car_serie": 49821, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207916, + "fields": { + "id_car_serie": 49821, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207917, + "fields": { + "id_car_serie": 49821, + "name": "5.7 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207918, + "fields": { + "id_car_serie": 49821, + "name": "6.6 Turbo Hydra-Matic (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207919, + "fields": { + "id_car_serie": 49821, + "name": "6.6 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207920, + "fields": { + "id_car_serie": 49822, + "name": "4.1 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207921, + "fields": { + "id_car_serie": 49822, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207922, + "fields": { + "id_car_serie": 49822, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207923, + "fields": { + "id_car_serie": 49822, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207924, + "fields": { + "id_car_serie": 49822, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207925, + "fields": { + "id_car_serie": 49822, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207926, + "fields": { + "id_car_serie": 49822, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207927, + "fields": { + "id_car_serie": 49822, + "name": "5.7 Turbo Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207928, + "fields": { + "id_car_serie": 49822, + "name": "5.7 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207929, + "fields": { + "id_car_serie": 49822, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207930, + "fields": { + "id_car_serie": 49822, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207931, + "fields": { + "id_car_serie": 49822, + "name": "5.7 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207932, + "fields": { + "id_car_serie": 49822, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207933, + "fields": { + "id_car_serie": 49822, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207934, + "fields": { + "id_car_serie": 49822, + "name": "6.6 Turbo Hydra-Matic (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207935, + "fields": { + "id_car_serie": 49822, + "name": "6.6 Turbo Hydra-Matic (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207936, + "fields": { + "id_car_serie": 49822, + "name": "6.6 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207937, + "fields": { + "id_car_serie": 49822, + "name": "6.6 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207938, + "fields": { + "id_car_serie": 49822, + "name": "7.4 Turbo Hydra-Matic (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207939, + "fields": { + "id_car_serie": 49822, + "name": "7.4 MT HD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207940, + "fields": { + "id_car_serie": 49823, + "name": "3.8 Turbo Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207941, + "fields": { + "id_car_serie": 49823, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207942, + "fields": { + "id_car_serie": 49823, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207943, + "fields": { + "id_car_serie": 49823, + "name": "3.8 MT HD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207944, + "fields": { + "id_car_serie": 49823, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207945, + "fields": { + "id_car_serie": 49823, + "name": "4.1 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207946, + "fields": { + "id_car_serie": 49823, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207947, + "fields": { + "id_car_serie": 49823, + "name": "4.1 MT HD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207948, + "fields": { + "id_car_serie": 49823, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207949, + "fields": { + "id_car_serie": 49823, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207950, + "fields": { + "id_car_serie": 49823, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207951, + "fields": { + "id_car_serie": 49823, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207952, + "fields": { + "id_car_serie": 49823, + "name": "5.0 MT HD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207953, + "fields": { + "id_car_serie": 49823, + "name": "5.7 Powerglide (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207954, + "fields": { + "id_car_serie": 49823, + "name": "5.7 Turbo Hydra-Matic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207955, + "fields": { + "id_car_serie": 49823, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207956, + "fields": { + "id_car_serie": 49823, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207957, + "fields": { + "id_car_serie": 49823, + "name": "5.7 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207958, + "fields": { + "id_car_serie": 49823, + "name": "5.7 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207959, + "fields": { + "id_car_serie": 49823, + "name": "5.7 MT HD (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207960, + "fields": { + "id_car_serie": 49823, + "name": "5.7 MT HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207961, + "fields": { + "id_car_serie": 49824, + "name": "3.8 Turbo Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207962, + "fields": { + "id_car_serie": 49824, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207963, + "fields": { + "id_car_serie": 49824, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207964, + "fields": { + "id_car_serie": 49824, + "name": "3.8 MT HD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207965, + "fields": { + "id_car_serie": 49824, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207966, + "fields": { + "id_car_serie": 49824, + "name": "4.1 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207967, + "fields": { + "id_car_serie": 49824, + "name": "4.1 MT HD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207968, + "fields": { + "id_car_serie": 49824, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207969, + "fields": { + "id_car_serie": 49824, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207970, + "fields": { + "id_car_serie": 49824, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207971, + "fields": { + "id_car_serie": 49824, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207972, + "fields": { + "id_car_serie": 49824, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207973, + "fields": { + "id_car_serie": 49824, + "name": "5.0 MT HD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207974, + "fields": { + "id_car_serie": 49824, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207975, + "fields": { + "id_car_serie": 49824, + "name": "5.7 Powerglide (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207976, + "fields": { + "id_car_serie": 49824, + "name": "5.7 Turbo Hydra-Matic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207977, + "fields": { + "id_car_serie": 49824, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207978, + "fields": { + "id_car_serie": 49824, + "name": "5.7 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207979, + "fields": { + "id_car_serie": 49824, + "name": "5.7 3MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207980, + "fields": { + "id_car_serie": 49824, + "name": "5.7 4MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207981, + "fields": { + "id_car_serie": 49824, + "name": "5.7 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207982, + "fields": { + "id_car_serie": 49824, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207983, + "fields": { + "id_car_serie": 49824, + "name": "6.5 Turbo Hydra-Matic (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207984, + "fields": { + "id_car_serie": 49824, + "name": "6.5 MT HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207985, + "fields": { + "id_car_serie": 49824, + "name": "6.5 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207986, + "fields": { + "id_car_serie": 49824, + "name": "6.5 MT Close (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207987, + "fields": { + "id_car_serie": 49824, + "name": "6.5 MT HD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207988, + "fields": { + "id_car_serie": 49824, + "name": "6.5 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207989, + "fields": { + "id_car_serie": 49825, + "name": "3.8 Turbo Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207990, + "fields": { + "id_car_serie": 49825, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207991, + "fields": { + "id_car_serie": 49825, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207992, + "fields": { + "id_car_serie": 49825, + "name": "3.8 MT HD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207993, + "fields": { + "id_car_serie": 49825, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207994, + "fields": { + "id_car_serie": 49825, + "name": "4.1 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207995, + "fields": { + "id_car_serie": 49825, + "name": "4.1 MT HD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207996, + "fields": { + "id_car_serie": 49825, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207997, + "fields": { + "id_car_serie": 49825, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207998, + "fields": { + "id_car_serie": 49825, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 207999, + "fields": { + "id_car_serie": 49825, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208000, + "fields": { + "id_car_serie": 49825, + "name": "5.0 MT HD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208001, + "fields": { + "id_car_serie": 49825, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208002, + "fields": { + "id_car_serie": 49825, + "name": "5.7 Powerglide (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208003, + "fields": { + "id_car_serie": 49825, + "name": "5.7 Turbo Hydra-Matic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208004, + "fields": { + "id_car_serie": 49825, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208005, + "fields": { + "id_car_serie": 49825, + "name": "5.7 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208006, + "fields": { + "id_car_serie": 49825, + "name": "5.7 3MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208007, + "fields": { + "id_car_serie": 49825, + "name": "5.7 4MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208008, + "fields": { + "id_car_serie": 49825, + "name": "5.7 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208009, + "fields": { + "id_car_serie": 49825, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208010, + "fields": { + "id_car_serie": 49825, + "name": "6.5 Turbo Hydra-Matic (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208011, + "fields": { + "id_car_serie": 49825, + "name": "6.5 MT HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208012, + "fields": { + "id_car_serie": 49825, + "name": "6.5 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208013, + "fields": { + "id_car_serie": 49825, + "name": "6.5 MT Close (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208014, + "fields": { + "id_car_serie": 49825, + "name": "6.5 MT HD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208015, + "fields": { + "id_car_serie": 49825, + "name": "6.5 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208016, + "fields": { + "id_car_serie": 49826, + "name": "3.8 Turbo Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208017, + "fields": { + "id_car_serie": 49826, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208018, + "fields": { + "id_car_serie": 49826, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208019, + "fields": { + "id_car_serie": 49826, + "name": "3.8 MT HD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208020, + "fields": { + "id_car_serie": 49826, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208021, + "fields": { + "id_car_serie": 49826, + "name": "4.1 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208022, + "fields": { + "id_car_serie": 49826, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208023, + "fields": { + "id_car_serie": 49826, + "name": "4.1 MT HD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208024, + "fields": { + "id_car_serie": 49826, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208025, + "fields": { + "id_car_serie": 49826, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208026, + "fields": { + "id_car_serie": 49826, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208027, + "fields": { + "id_car_serie": 49826, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208028, + "fields": { + "id_car_serie": 49826, + "name": "5.0 MT HD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208029, + "fields": { + "id_car_serie": 49826, + "name": "5.7 Powerglide (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208030, + "fields": { + "id_car_serie": 49826, + "name": "5.7 Turbo Hydra-Matic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208031, + "fields": { + "id_car_serie": 49826, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208032, + "fields": { + "id_car_serie": 49826, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208033, + "fields": { + "id_car_serie": 49826, + "name": "5.7 MT HD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208034, + "fields": { + "id_car_serie": 49826, + "name": "5.7 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208035, + "fields": { + "id_car_serie": 49826, + "name": "5.7 MT HD (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208036, + "fields": { + "id_car_serie": 49826, + "name": "5.7 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208037, + "fields": { + "id_car_serie": 49827, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208038, + "fields": { + "id_car_serie": 49827, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208039, + "fields": { + "id_car_serie": 49827, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208040, + "fields": { + "id_car_serie": 49827, + "name": "3.8 MT HD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208041, + "fields": { + "id_car_serie": 49827, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208042, + "fields": { + "id_car_serie": 49827, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208043, + "fields": { + "id_car_serie": 49827, + "name": "4.1 MT HD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208044, + "fields": { + "id_car_serie": 49827, + "name": "4.1 MT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208045, + "fields": { + "id_car_serie": 49827, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208046, + "fields": { + "id_car_serie": 49827, + "name": "5.0 MT Overdrive (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208047, + "fields": { + "id_car_serie": 49827, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208048, + "fields": { + "id_car_serie": 49827, + "name": "5.0 MT HD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208049, + "fields": { + "id_car_serie": 49827, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208050, + "fields": { + "id_car_serie": 49827, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208051, + "fields": { + "id_car_serie": 49827, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208052, + "fields": { + "id_car_serie": 49827, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208053, + "fields": { + "id_car_serie": 49827, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208054, + "fields": { + "id_car_serie": 49827, + "name": "5.4 MT HD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208055, + "fields": { + "id_car_serie": 49827, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208056, + "fields": { + "id_car_serie": 49827, + "name": "5.4 MT HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208057, + "fields": { + "id_car_serie": 49827, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208058, + "fields": { + "id_car_serie": 49827, + "name": "5.4 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208059, + "fields": { + "id_car_serie": 49827, + "name": "5.4 MT HD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208060, + "fields": { + "id_car_serie": 49828, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208061, + "fields": { + "id_car_serie": 49828, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208062, + "fields": { + "id_car_serie": 49828, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208063, + "fields": { + "id_car_serie": 49828, + "name": "3.8 MT HD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208064, + "fields": { + "id_car_serie": 49828, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208065, + "fields": { + "id_car_serie": 49828, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208066, + "fields": { + "id_car_serie": 49828, + "name": "4.1 MT HD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208067, + "fields": { + "id_car_serie": 49828, + "name": "4.1 MT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208068, + "fields": { + "id_car_serie": 49828, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208069, + "fields": { + "id_car_serie": 49828, + "name": "5.0 MT Overdrive (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208070, + "fields": { + "id_car_serie": 49828, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208071, + "fields": { + "id_car_serie": 49828, + "name": "5.0 MT HD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208072, + "fields": { + "id_car_serie": 49828, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208073, + "fields": { + "id_car_serie": 49828, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208074, + "fields": { + "id_car_serie": 49828, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208075, + "fields": { + "id_car_serie": 49828, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208076, + "fields": { + "id_car_serie": 49828, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208077, + "fields": { + "id_car_serie": 49828, + "name": "5.4 MT HD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208078, + "fields": { + "id_car_serie": 49828, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208079, + "fields": { + "id_car_serie": 49828, + "name": "5.4 MT HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208080, + "fields": { + "id_car_serie": 49828, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208081, + "fields": { + "id_car_serie": 49828, + "name": "5.4 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208082, + "fields": { + "id_car_serie": 49828, + "name": "5.4 MT HD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208083, + "fields": { + "id_car_serie": 49829, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208084, + "fields": { + "id_car_serie": 49829, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208086, + "fields": { + "id_car_serie": 49829, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208087, + "fields": { + "id_car_serie": 49829, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208088, + "fields": { + "id_car_serie": 49829, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208090, + "fields": { + "id_car_serie": 49829, + "name": "4.1 MT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208091, + "fields": { + "id_car_serie": 49829, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208092, + "fields": { + "id_car_serie": 49829, + "name": "5.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208093, + "fields": { + "id_car_serie": 49829, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208094, + "fields": { + "id_car_serie": 49829, + "name": "5.0 MT Overdrive (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208095, + "fields": { + "id_car_serie": 49829, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208096, + "fields": { + "id_car_serie": 49829, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208097, + "fields": { + "id_car_serie": 49829, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208098, + "fields": { + "id_car_serie": 49829, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208099, + "fields": { + "id_car_serie": 49829, + "name": "5.4 MT (275 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208100, + "fields": { + "id_car_serie": 49829, + "name": "5.4 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208101, + "fields": { + "id_car_serie": 49829, + "name": "5.4 3MT (325 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208102, + "fields": { + "id_car_serie": 49829, + "name": "5.4 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208103, + "fields": { + "id_car_serie": 49829, + "name": "5.4 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208104, + "fields": { + "id_car_serie": 49829, + "name": "5.4 MT HD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208105, + "fields": { + "id_car_serie": 49829, + "name": "5.4 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208106, + "fields": { + "id_car_serie": 49829, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208107, + "fields": { + "id_car_serie": 49829, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208108, + "fields": { + "id_car_serie": 49829, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208109, + "fields": { + "id_car_serie": 49829, + "name": "6.5 Powerglide (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208110, + "fields": { + "id_car_serie": 49829, + "name": "6.5 Turbo Hydra-Matic (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208111, + "fields": { + "id_car_serie": 49829, + "name": "6.5 MT HD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208112, + "fields": { + "id_car_serie": 49829, + "name": "6.5 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208113, + "fields": { + "id_car_serie": 49829, + "name": "6.5 MT HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208114, + "fields": { + "id_car_serie": 49829, + "name": "6.5 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208115, + "fields": { + "id_car_serie": 49830, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208116, + "fields": { + "id_car_serie": 49830, + "name": "3.8 Synchromesh Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208117, + "fields": { + "id_car_serie": 49830, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208118, + "fields": { + "id_car_serie": 49830, + "name": "3.8 Synchromesh HD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208119, + "fields": { + "id_car_serie": 49830, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208120, + "fields": { + "id_car_serie": 49830, + "name": "4.1 Synchromesh (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208121, + "fields": { + "id_car_serie": 49830, + "name": "4.1 Synchromesh HD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208122, + "fields": { + "id_car_serie": 49830, + "name": "4.1 Synchromesh Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208123, + "fields": { + "id_car_serie": 49830, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208124, + "fields": { + "id_car_serie": 49830, + "name": "4.6 Synchromesh HD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208125, + "fields": { + "id_car_serie": 49830, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208126, + "fields": { + "id_car_serie": 49830, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208127, + "fields": { + "id_car_serie": 49830, + "name": "4.6 Synchromesh Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208128, + "fields": { + "id_car_serie": 49830, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208129, + "fields": { + "id_car_serie": 49830, + "name": "5.4 3Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208130, + "fields": { + "id_car_serie": 49830, + "name": "5.4 Synchromesh HD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208131, + "fields": { + "id_car_serie": 49830, + "name": "5.4 4Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208132, + "fields": { + "id_car_serie": 49830, + "name": "5.4 Synchromesh HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208133, + "fields": { + "id_car_serie": 49830, + "name": "5.4 Synchromesh (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208134, + "fields": { + "id_car_serie": 49831, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208135, + "fields": { + "id_car_serie": 49831, + "name": "3.8 Synchromesh Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208136, + "fields": { + "id_car_serie": 49831, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208137, + "fields": { + "id_car_serie": 49831, + "name": "3.8 Synchromesh HD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208138, + "fields": { + "id_car_serie": 49831, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208139, + "fields": { + "id_car_serie": 49831, + "name": "4.1 Synchromesh (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208140, + "fields": { + "id_car_serie": 49831, + "name": "4.1 Synchromesh HD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208141, + "fields": { + "id_car_serie": 49831, + "name": "4.1 Synchromesh Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208142, + "fields": { + "id_car_serie": 49831, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208143, + "fields": { + "id_car_serie": 49831, + "name": "4.6 Synchromesh HD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208144, + "fields": { + "id_car_serie": 49831, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208145, + "fields": { + "id_car_serie": 49831, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208146, + "fields": { + "id_car_serie": 49831, + "name": "4.6 Synchromesh Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208147, + "fields": { + "id_car_serie": 49831, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208148, + "fields": { + "id_car_serie": 49831, + "name": "5.4 3Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208149, + "fields": { + "id_car_serie": 49831, + "name": "5.4 Synchromesh HD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208150, + "fields": { + "id_car_serie": 49831, + "name": "5.4 4Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208151, + "fields": { + "id_car_serie": 49831, + "name": "5.4 Synchromesh HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208152, + "fields": { + "id_car_serie": 49831, + "name": "5.4 Synchromesh (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208153, + "fields": { + "id_car_serie": 49832, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208154, + "fields": { + "id_car_serie": 49832, + "name": "3.8 Synchromesh Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208155, + "fields": { + "id_car_serie": 49832, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208156, + "fields": { + "id_car_serie": 49832, + "name": "3.8 Synchromesh HD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208157, + "fields": { + "id_car_serie": 49832, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208158, + "fields": { + "id_car_serie": 49832, + "name": "4.1 Synchromesh (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208159, + "fields": { + "id_car_serie": 49832, + "name": "4.1 Synchromesh HD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208160, + "fields": { + "id_car_serie": 49832, + "name": "4.1 Synchromesh Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208161, + "fields": { + "id_car_serie": 49832, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208162, + "fields": { + "id_car_serie": 49832, + "name": "4.6 Synchromesh HD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208163, + "fields": { + "id_car_serie": 49832, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208164, + "fields": { + "id_car_serie": 49832, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208165, + "fields": { + "id_car_serie": 49832, + "name": "4.6 Synchromesh Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208166, + "fields": { + "id_car_serie": 49832, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208167, + "fields": { + "id_car_serie": 49832, + "name": "5.4 3Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208168, + "fields": { + "id_car_serie": 49832, + "name": "5.4 Synchromesh HD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208169, + "fields": { + "id_car_serie": 49832, + "name": "5.4 4Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208170, + "fields": { + "id_car_serie": 49832, + "name": "5.4 Synchromesh HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208171, + "fields": { + "id_car_serie": 49832, + "name": "5.4 Synchromesh (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208172, + "fields": { + "id_car_serie": 49833, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208173, + "fields": { + "id_car_serie": 49833, + "name": "3.8 Synchromesh Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208174, + "fields": { + "id_car_serie": 49833, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208175, + "fields": { + "id_car_serie": 49833, + "name": "3.8 Synchromesh HD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208176, + "fields": { + "id_car_serie": 49833, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208177, + "fields": { + "id_car_serie": 49833, + "name": "4.1 Synchromesh (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208178, + "fields": { + "id_car_serie": 49833, + "name": "4.1 Synchromesh HD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208179, + "fields": { + "id_car_serie": 49833, + "name": "4.1 Synchromesh Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208180, + "fields": { + "id_car_serie": 49833, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208181, + "fields": { + "id_car_serie": 49833, + "name": "4.6 Synchromesh HD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208182, + "fields": { + "id_car_serie": 49833, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208183, + "fields": { + "id_car_serie": 49833, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208184, + "fields": { + "id_car_serie": 49833, + "name": "4.6 Synchromesh Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208185, + "fields": { + "id_car_serie": 49833, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208186, + "fields": { + "id_car_serie": 49833, + "name": "5.4 3Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208187, + "fields": { + "id_car_serie": 49833, + "name": "5.4 Synchromesh HD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208188, + "fields": { + "id_car_serie": 49833, + "name": "5.4 4Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208189, + "fields": { + "id_car_serie": 49833, + "name": "5.4 Synchromesh HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208190, + "fields": { + "id_car_serie": 49833, + "name": "5.4 Synchromesh (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208191, + "fields": { + "id_car_serie": 49834, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208192, + "fields": { + "id_car_serie": 49834, + "name": "3.8 Synchromesh Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208193, + "fields": { + "id_car_serie": 49834, + "name": "3.8 Synchromesh HD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208194, + "fields": { + "id_car_serie": 49834, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208195, + "fields": { + "id_car_serie": 49834, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208196, + "fields": { + "id_car_serie": 49834, + "name": "4.1 Synchromesh (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208197, + "fields": { + "id_car_serie": 49834, + "name": "4.1 Synchromesh Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208198, + "fields": { + "id_car_serie": 49834, + "name": "4.1 Synchromesh HD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208199, + "fields": { + "id_car_serie": 49834, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208200, + "fields": { + "id_car_serie": 49834, + "name": "4.6 Synchromesh HD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208201, + "fields": { + "id_car_serie": 49834, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208202, + "fields": { + "id_car_serie": 49834, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208203, + "fields": { + "id_car_serie": 49834, + "name": "4.6 Synchromesh Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208204, + "fields": { + "id_car_serie": 49834, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208205, + "fields": { + "id_car_serie": 49834, + "name": "5.4 3Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208206, + "fields": { + "id_car_serie": 49834, + "name": "5.4 Synchromesh HD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208207, + "fields": { + "id_car_serie": 49834, + "name": "5.4 4Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208208, + "fields": { + "id_car_serie": 49834, + "name": "5.4 Synchromesh HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208209, + "fields": { + "id_car_serie": 49834, + "name": "5.4 Synchromesh (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208210, + "fields": { + "id_car_serie": 49834, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208211, + "fields": { + "id_car_serie": 49834, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208212, + "fields": { + "id_car_serie": 49834, + "name": "6.5 Turbo Hydra-Matic (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208213, + "fields": { + "id_car_serie": 49834, + "name": "6.5 Powerglide (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208214, + "fields": { + "id_car_serie": 49834, + "name": "6.5 Synchromesh HD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208215, + "fields": { + "id_car_serie": 49834, + "name": "6.5 Synchromesh (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208216, + "fields": { + "id_car_serie": 49834, + "name": "6.5 Synchromesh HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208217, + "fields": { + "id_car_serie": 49834, + "name": "6.5 Synchromesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208218, + "fields": { + "id_car_serie": 49835, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208219, + "fields": { + "id_car_serie": 49835, + "name": "3.8 Synchromesh Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208220, + "fields": { + "id_car_serie": 49835, + "name": "3.8 Synchromesh HD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208221, + "fields": { + "id_car_serie": 49835, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208222, + "fields": { + "id_car_serie": 49835, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208223, + "fields": { + "id_car_serie": 49835, + "name": "4.1 Synchromesh (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208224, + "fields": { + "id_car_serie": 49835, + "name": "4.1 Synchromesh Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208225, + "fields": { + "id_car_serie": 49835, + "name": "4.1 Synchromesh HD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208226, + "fields": { + "id_car_serie": 49835, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208227, + "fields": { + "id_car_serie": 49835, + "name": "4.6 Synchromesh HD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208228, + "fields": { + "id_car_serie": 49835, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208229, + "fields": { + "id_car_serie": 49835, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208230, + "fields": { + "id_car_serie": 49835, + "name": "4.6 Synchromesh Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208231, + "fields": { + "id_car_serie": 49835, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208232, + "fields": { + "id_car_serie": 49835, + "name": "5.4 3Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208233, + "fields": { + "id_car_serie": 49835, + "name": "5.4 Synchromesh HD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208234, + "fields": { + "id_car_serie": 49835, + "name": "5.4 4Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208235, + "fields": { + "id_car_serie": 49835, + "name": "5.4 Synchromesh HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208236, + "fields": { + "id_car_serie": 49835, + "name": "5.4 Synchromesh (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208237, + "fields": { + "id_car_serie": 49835, + "name": "6.5 Turbo Hydra-Matic (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208238, + "fields": { + "id_car_serie": 49835, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208239, + "fields": { + "id_car_serie": 49835, + "name": "6.5 Turbo Hydra-Matic (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208240, + "fields": { + "id_car_serie": 49835, + "name": "6.5 Powerglide (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208241, + "fields": { + "id_car_serie": 49835, + "name": "6.5 Synchromesh HD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208242, + "fields": { + "id_car_serie": 49835, + "name": "6.5 Synchromesh (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208243, + "fields": { + "id_car_serie": 49835, + "name": "6.5 Synchromesh HD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208244, + "fields": { + "id_car_serie": 49835, + "name": "6.5 Synchromesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208245, + "fields": { + "id_car_serie": 49836, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208246, + "fields": { + "id_car_serie": 49836, + "name": "6.5 Powerglide (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208247, + "fields": { + "id_car_serie": 49836, + "name": "6.5 3MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208248, + "fields": { + "id_car_serie": 49836, + "name": "6.5 3MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208249, + "fields": { + "id_car_serie": 49836, + "name": "6.5 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208250, + "fields": { + "id_car_serie": 49836, + "name": "6.5 4MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208251, + "fields": { + "id_car_serie": 49837, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208252, + "fields": { + "id_car_serie": 49837, + "name": "3.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208253, + "fields": { + "id_car_serie": 49837, + "name": "3.2 MT Overdrive (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208254, + "fields": { + "id_car_serie": 49837, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208255, + "fields": { + "id_car_serie": 49837, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208256, + "fields": { + "id_car_serie": 49837, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208257, + "fields": { + "id_car_serie": 49837, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208258, + "fields": { + "id_car_serie": 49837, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208259, + "fields": { + "id_car_serie": 49837, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208260, + "fields": { + "id_car_serie": 49837, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208261, + "fields": { + "id_car_serie": 49837, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208262, + "fields": { + "id_car_serie": 49837, + "name": "4.6 3MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208263, + "fields": { + "id_car_serie": 49837, + "name": "4.6 MT Overdrive (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208264, + "fields": { + "id_car_serie": 49837, + "name": "4.6 4MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208265, + "fields": { + "id_car_serie": 49837, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208266, + "fields": { + "id_car_serie": 49837, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208267, + "fields": { + "id_car_serie": 49837, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208268, + "fields": { + "id_car_serie": 49838, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208269, + "fields": { + "id_car_serie": 49838, + "name": "3.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208270, + "fields": { + "id_car_serie": 49838, + "name": "3.2 MT Overdrive (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208271, + "fields": { + "id_car_serie": 49838, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208272, + "fields": { + "id_car_serie": 49838, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208273, + "fields": { + "id_car_serie": 49838, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208274, + "fields": { + "id_car_serie": 49838, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208275, + "fields": { + "id_car_serie": 49838, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208276, + "fields": { + "id_car_serie": 49838, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208277, + "fields": { + "id_car_serie": 49838, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208278, + "fields": { + "id_car_serie": 49838, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208279, + "fields": { + "id_car_serie": 49838, + "name": "4.6 3MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208280, + "fields": { + "id_car_serie": 49838, + "name": "4.6 MT Overdrive (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208281, + "fields": { + "id_car_serie": 49838, + "name": "4.6 4MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208282, + "fields": { + "id_car_serie": 49838, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208283, + "fields": { + "id_car_serie": 49838, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208284, + "fields": { + "id_car_serie": 49838, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208285, + "fields": { + "id_car_serie": 49839, + "name": "6.5 Powerglide (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208286, + "fields": { + "id_car_serie": 49839, + "name": "6.5 Powerglide (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208287, + "fields": { + "id_car_serie": 49839, + "name": "6.5 3MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208288, + "fields": { + "id_car_serie": 49839, + "name": "6.5 3MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208289, + "fields": { + "id_car_serie": 49839, + "name": "6.5 4MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208290, + "fields": { + "id_car_serie": 49839, + "name": "6.5 4MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208291, + "fields": { + "id_car_serie": 49840, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208292, + "fields": { + "id_car_serie": 49840, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208293, + "fields": { + "id_car_serie": 49840, + "name": "3.2 Synchromesh Overdrive (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208294, + "fields": { + "id_car_serie": 49840, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208295, + "fields": { + "id_car_serie": 49840, + "name": "3.8 Synchromesh Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208296, + "fields": { + "id_car_serie": 49840, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208297, + "fields": { + "id_car_serie": 49840, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208298, + "fields": { + "id_car_serie": 49840, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208299, + "fields": { + "id_car_serie": 49840, + "name": "4.6 Synchromesh Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208300, + "fields": { + "id_car_serie": 49840, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208301, + "fields": { + "id_car_serie": 49840, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208302, + "fields": { + "id_car_serie": 49840, + "name": "4.6 3Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208303, + "fields": { + "id_car_serie": 49840, + "name": "4.6 4Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208304, + "fields": { + "id_car_serie": 49840, + "name": "4.6 Synchromesh Overdrive (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208305, + "fields": { + "id_car_serie": 49840, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208306, + "fields": { + "id_car_serie": 49840, + "name": "5.4 3Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208307, + "fields": { + "id_car_serie": 49840, + "name": "5.4 4Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208308, + "fields": { + "id_car_serie": 49841, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208309, + "fields": { + "id_car_serie": 49841, + "name": "3.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208310, + "fields": { + "id_car_serie": 49841, + "name": "3.2 MT Overdrive (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208311, + "fields": { + "id_car_serie": 49841, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208312, + "fields": { + "id_car_serie": 49841, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208313, + "fields": { + "id_car_serie": 49841, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208314, + "fields": { + "id_car_serie": 49841, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208315, + "fields": { + "id_car_serie": 49841, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208316, + "fields": { + "id_car_serie": 49841, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208317, + "fields": { + "id_car_serie": 49841, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208318, + "fields": { + "id_car_serie": 49841, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208319, + "fields": { + "id_car_serie": 49841, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208320, + "fields": { + "id_car_serie": 49841, + "name": "5.4 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208321, + "fields": { + "id_car_serie": 49841, + "name": "5.4 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208322, + "fields": { + "id_car_serie": 49841, + "name": "5.4 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208323, + "fields": { + "id_car_serie": 49841, + "name": "6.5 MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208324, + "fields": { + "id_car_serie": 49842, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208325, + "fields": { + "id_car_serie": 49842, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208326, + "fields": { + "id_car_serie": 49842, + "name": "3.2 Synchromesh Overdrive (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208327, + "fields": { + "id_car_serie": 49842, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208328, + "fields": { + "id_car_serie": 49842, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208329, + "fields": { + "id_car_serie": 49842, + "name": "3.8 Synchromesh Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208330, + "fields": { + "id_car_serie": 49842, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208331, + "fields": { + "id_car_serie": 49842, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208332, + "fields": { + "id_car_serie": 49842, + "name": "4.6 4Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208333, + "fields": { + "id_car_serie": 49842, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208334, + "fields": { + "id_car_serie": 49842, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208335, + "fields": { + "id_car_serie": 49842, + "name": "4.6 Synchromesh Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208336, + "fields": { + "id_car_serie": 49842, + "name": "4.6 3Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208337, + "fields": { + "id_car_serie": 49842, + "name": "4.6 Synchromesh Overdrive (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208338, + "fields": { + "id_car_serie": 49842, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208339, + "fields": { + "id_car_serie": 49842, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208340, + "fields": { + "id_car_serie": 49842, + "name": "5.4 3Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208341, + "fields": { + "id_car_serie": 49842, + "name": "5.4 4Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208342, + "fields": { + "id_car_serie": 49842, + "name": "5.4 3Synchromesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208343, + "fields": { + "id_car_serie": 49842, + "name": "5.4 3Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208344, + "fields": { + "id_car_serie": 49842, + "name": "5.4 4Synchromesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208345, + "fields": { + "id_car_serie": 49842, + "name": "5.4 4Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208346, + "fields": { + "id_car_serie": 49843, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208347, + "fields": { + "id_car_serie": 49843, + "name": "3.2 Synchromesh Overdrive (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208348, + "fields": { + "id_car_serie": 49843, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208349, + "fields": { + "id_car_serie": 49843, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208350, + "fields": { + "id_car_serie": 49843, + "name": "3.8 Synchromesh Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208351, + "fields": { + "id_car_serie": 49843, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208352, + "fields": { + "id_car_serie": 49843, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208353, + "fields": { + "id_car_serie": 49843, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208354, + "fields": { + "id_car_serie": 49843, + "name": "4.6 4Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208355, + "fields": { + "id_car_serie": 49843, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208356, + "fields": { + "id_car_serie": 49843, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208357, + "fields": { + "id_car_serie": 49843, + "name": "4.6 Synchromesh Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208358, + "fields": { + "id_car_serie": 49843, + "name": "4.6 3Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208359, + "fields": { + "id_car_serie": 49843, + "name": "4.6 Synchromesh Overdrive (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208360, + "fields": { + "id_car_serie": 49843, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208361, + "fields": { + "id_car_serie": 49843, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208362, + "fields": { + "id_car_serie": 49843, + "name": "5.4 3Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208363, + "fields": { + "id_car_serie": 49843, + "name": "5.4 4Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208364, + "fields": { + "id_car_serie": 49843, + "name": "5.4 3Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208365, + "fields": { + "id_car_serie": 49843, + "name": "5.4 4Synchromesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208366, + "fields": { + "id_car_serie": 49843, + "name": "5.4 4Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208367, + "fields": { + "id_car_serie": 49844, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208368, + "fields": { + "id_car_serie": 49844, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208369, + "fields": { + "id_car_serie": 49844, + "name": "3.2 Synchromesh Overdrive (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208370, + "fields": { + "id_car_serie": 49844, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208371, + "fields": { + "id_car_serie": 49844, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208372, + "fields": { + "id_car_serie": 49844, + "name": "3.8 Synchromesh Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208373, + "fields": { + "id_car_serie": 49844, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208374, + "fields": { + "id_car_serie": 49844, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208375, + "fields": { + "id_car_serie": 49844, + "name": "4.6 4Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208376, + "fields": { + "id_car_serie": 49844, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208377, + "fields": { + "id_car_serie": 49844, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208378, + "fields": { + "id_car_serie": 49844, + "name": "4.6 Synchromesh Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208379, + "fields": { + "id_car_serie": 49844, + "name": "4.6 3Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208380, + "fields": { + "id_car_serie": 49844, + "name": "4.6 Synchromesh Overdrive (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208381, + "fields": { + "id_car_serie": 49844, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208382, + "fields": { + "id_car_serie": 49844, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208383, + "fields": { + "id_car_serie": 49844, + "name": "5.4 3Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208384, + "fields": { + "id_car_serie": 49844, + "name": "5.4 4Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208385, + "fields": { + "id_car_serie": 49844, + "name": "5.4 3Synchromesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208386, + "fields": { + "id_car_serie": 49844, + "name": "5.4 3Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208387, + "fields": { + "id_car_serie": 49844, + "name": "5.4 4Synchromesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208388, + "fields": { + "id_car_serie": 49844, + "name": "5.4 4Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208389, + "fields": { + "id_car_serie": 49845, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208390, + "fields": { + "id_car_serie": 49845, + "name": "3.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208391, + "fields": { + "id_car_serie": 49845, + "name": "3.2 MT Overdrive (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208392, + "fields": { + "id_car_serie": 49845, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208393, + "fields": { + "id_car_serie": 49845, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208394, + "fields": { + "id_car_serie": 49845, + "name": "3.8 MT Overdrive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208395, + "fields": { + "id_car_serie": 49845, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208396, + "fields": { + "id_car_serie": 49845, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208397, + "fields": { + "id_car_serie": 49845, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208398, + "fields": { + "id_car_serie": 49845, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208399, + "fields": { + "id_car_serie": 49845, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208400, + "fields": { + "id_car_serie": 49845, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208401, + "fields": { + "id_car_serie": 49845, + "name": "5.4 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208402, + "fields": { + "id_car_serie": 49845, + "name": "5.4 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208403, + "fields": { + "id_car_serie": 49845, + "name": "5.4 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208404, + "fields": { + "id_car_serie": 49845, + "name": "6.5 MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208405, + "fields": { + "id_car_serie": 49846, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208406, + "fields": { + "id_car_serie": 49846, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208407, + "fields": { + "id_car_serie": 49846, + "name": "3.2 Synchromesh Overdrive (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208408, + "fields": { + "id_car_serie": 49846, + "name": "3.8 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208409, + "fields": { + "id_car_serie": 49846, + "name": "3.8 Synchromesh (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208410, + "fields": { + "id_car_serie": 49846, + "name": "3.8 Synchromesh Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208411, + "fields": { + "id_car_serie": 49846, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208412, + "fields": { + "id_car_serie": 49846, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208413, + "fields": { + "id_car_serie": 49846, + "name": "4.6 Synchromesh Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208414, + "fields": { + "id_car_serie": 49846, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208415, + "fields": { + "id_car_serie": 49846, + "name": "4.6 3Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208416, + "fields": { + "id_car_serie": 49846, + "name": "4.6 4Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208417, + "fields": { + "id_car_serie": 49846, + "name": "4.6 Synchromesh Overdrive (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208418, + "fields": { + "id_car_serie": 49846, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208419, + "fields": { + "id_car_serie": 49846, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208420, + "fields": { + "id_car_serie": 49846, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208421, + "fields": { + "id_car_serie": 49846, + "name": "5.4 4Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208422, + "fields": { + "id_car_serie": 49846, + "name": "5.4 Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208423, + "fields": { + "id_car_serie": 49846, + "name": "5.4 3Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208424, + "fields": { + "id_car_serie": 49847, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208425, + "fields": { + "id_car_serie": 49847, + "name": "3.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208426, + "fields": { + "id_car_serie": 49847, + "name": "3.2 MT Overdrive (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208427, + "fields": { + "id_car_serie": 49847, + "name": "3.8 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208428, + "fields": { + "id_car_serie": 49847, + "name": "3.8 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208429, + "fields": { + "id_car_serie": 49847, + "name": "3.8 MT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208430, + "fields": { + "id_car_serie": 49847, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208431, + "fields": { + "id_car_serie": 49847, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208432, + "fields": { + "id_car_serie": 49847, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208433, + "fields": { + "id_car_serie": 49847, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208434, + "fields": { + "id_car_serie": 49847, + "name": "4.6 4MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208435, + "fields": { + "id_car_serie": 49847, + "name": "4.6 3MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208436, + "fields": { + "id_car_serie": 49847, + "name": "4.6 MT Overdrive (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208437, + "fields": { + "id_car_serie": 49847, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208438, + "fields": { + "id_car_serie": 49848, + "name": "3.2 Powerglide 2-seat (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208439, + "fields": { + "id_car_serie": 49848, + "name": "3.2 Powerglide 3-seat (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208440, + "fields": { + "id_car_serie": 49848, + "name": "3.2 Synchromesh 2-seat (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208441, + "fields": { + "id_car_serie": 49848, + "name": "3.2 Synchromesh 3-seat (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208442, + "fields": { + "id_car_serie": 49848, + "name": "3.2 Synchromesh Overdrive 2-seat (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208443, + "fields": { + "id_car_serie": 49848, + "name": "3.2 Synchromesh Overdrive 3-seat (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208444, + "fields": { + "id_car_serie": 49848, + "name": "3.8 Powerglide 3-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208445, + "fields": { + "id_car_serie": 49848, + "name": "3.8 Powerglide 2-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208446, + "fields": { + "id_car_serie": 49848, + "name": "3.8 Synchromesh Overdrive 2-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208447, + "fields": { + "id_car_serie": 49848, + "name": "3.8 Synchromesh Overdrive 3-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208448, + "fields": { + "id_car_serie": 49848, + "name": "3.8 Synchromesh 2-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208449, + "fields": { + "id_car_serie": 49848, + "name": "3.8 Synchromesh 3-seat (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208450, + "fields": { + "id_car_serie": 49848, + "name": "4.6 Powerglide 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208451, + "fields": { + "id_car_serie": 49848, + "name": "4.6 Powerglide 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208452, + "fields": { + "id_car_serie": 49848, + "name": "4.6 Powerglide 2-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208453, + "fields": { + "id_car_serie": 49848, + "name": "4.6 Powerglide 3-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208454, + "fields": { + "id_car_serie": 49848, + "name": "4.6 Synchromesh Overdrive 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208455, + "fields": { + "id_car_serie": 49848, + "name": "4.6 4Synchromesh 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208456, + "fields": { + "id_car_serie": 49848, + "name": "4.6 3Synchromesh 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208457, + "fields": { + "id_car_serie": 49848, + "name": "4.6 3Synchromesh 2-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208458, + "fields": { + "id_car_serie": 49848, + "name": "4.6 3Synchromesh 3-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208459, + "fields": { + "id_car_serie": 49848, + "name": "4.6 4Synchromesh 2-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208460, + "fields": { + "id_car_serie": 49848, + "name": "4.6 4Synchromesh 3-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208461, + "fields": { + "id_car_serie": 49848, + "name": "4.6 Synchromesh Overdrive 2-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208462, + "fields": { + "id_car_serie": 49848, + "name": "4.6 Synchromesh Overdrive 3-seat (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208463, + "fields": { + "id_car_serie": 49848, + "name": "4.6 3Synchromesh 3-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208464, + "fields": { + "id_car_serie": 49848, + "name": "4.6 4Synchromesh 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208465, + "fields": { + "id_car_serie": 49848, + "name": "4.6 Synchromesh Overdrive 2-seat (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208466, + "fields": { + "id_car_serie": 49848, + "name": "5.4 Powerglide 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208467, + "fields": { + "id_car_serie": 49848, + "name": "5.4 Powerglide 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208468, + "fields": { + "id_car_serie": 49848, + "name": "5.4 Powerglide 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208469, + "fields": { + "id_car_serie": 49848, + "name": "5.4 Powerglide 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208470, + "fields": { + "id_car_serie": 49848, + "name": "5.4 4Synchromesh 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208471, + "fields": { + "id_car_serie": 49848, + "name": "5.4 Synchromesh 2-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208472, + "fields": { + "id_car_serie": 49848, + "name": "5.4 Synchromesh 3-seat (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208473, + "fields": { + "id_car_serie": 49848, + "name": "5.4 3Synchromesh 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208474, + "fields": { + "id_car_serie": 49848, + "name": "5.4 3Synchromesh 3-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208475, + "fields": { + "id_car_serie": 49848, + "name": "5.4 4Synchromesh 2-seat (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208476, + "fields": { + "id_car_serie": 49849, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208477, + "fields": { + "id_car_serie": 49849, + "name": "3.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208478, + "fields": { + "id_car_serie": 49849, + "name": "3.2 MT Overdrive (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208479, + "fields": { + "id_car_serie": 49849, + "name": "3.8 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208480, + "fields": { + "id_car_serie": 49849, + "name": "3.8 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208481, + "fields": { + "id_car_serie": 49849, + "name": "3.8 MT Overdrive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208482, + "fields": { + "id_car_serie": 49849, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208483, + "fields": { + "id_car_serie": 49849, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208484, + "fields": { + "id_car_serie": 49849, + "name": "4.6 MT Overdrive (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208485, + "fields": { + "id_car_serie": 49849, + "name": "4.6 4MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208486, + "fields": { + "id_car_serie": 49849, + "name": "4.6 4MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208487, + "fields": { + "id_car_serie": 49849, + "name": "4.6 3MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208488, + "fields": { + "id_car_serie": 49849, + "name": "4.6 MT Overdrive (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208489, + "fields": { + "id_car_serie": 49849, + "name": "4.6 3MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208491, + "fields": { + "id_car_serie": 49851, + "name": "2.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208492, + "fields": { + "id_car_serie": 49851, + "name": "2.1 Transfluide (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208493, + "fields": { + "id_car_serie": 49851, + "name": "2.1 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208494, + "fields": { + "id_car_serie": 49852, + "name": "2.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208495, + "fields": { + "id_car_serie": 49853, + "name": "2.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208496, + "fields": { + "id_car_serie": 49853, + "name": "2.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208497, + "fields": { + "id_car_serie": 49854, + "name": "1.1 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208498, + "fields": { + "id_car_serie": 49854, + "name": "1.3 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208499, + "fields": { + "id_car_serie": 49855, + "name": "1.1 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208500, + "fields": { + "id_car_serie": 49856, + "name": "3.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208501, + "fields": { + "id_car_serie": 49857, + "name": "3.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208502, + "fields": { + "id_car_serie": 49858, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208503, + "fields": { + "id_car_serie": 49858, + "name": "1.4 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208504, + "fields": { + "id_car_serie": 49860, + "name": "4.7 V8 MT (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208505, + "fields": { + "id_car_serie": 49860, + "name": "4.7 V8 Sportshift II (436 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208506, + "fields": { + "id_car_serie": 49861, + "name": "5.9 V12 Sportshift III (573 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208507, + "fields": { + "id_car_serie": 49862, + "name": "5.9 V12 MT (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208508, + "fields": { + "id_car_serie": 49863, + "name": "5.9 V12 MT (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208509, + "fields": { + "id_car_serie": 49864, + "name": "4.7 V8 Sportshift (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208510, + "fields": { + "id_car_serie": 49864, + "name": "4.7 V8 MT (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208511, + "fields": { + "id_car_serie": 49865, + "name": "4.7 V8 Sportshift (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208512, + "fields": { + "id_car_serie": 49865, + "name": "4.7 V8 MT (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208513, + "fields": { + "id_car_serie": 49866, + "name": "4.7 V8 Sportshift (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208514, + "fields": { + "id_car_serie": 49866, + "name": "4.7 V8 MT (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208515, + "fields": { + "id_car_serie": 49867, + "name": "4.7 V8 AT (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208516, + "fields": { + "id_car_serie": 49867, + "name": "4.7 V8 MT (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208517, + "fields": { + "id_car_serie": 49868, + "name": "4.3 V8 Sportshift (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208518, + "fields": { + "id_car_serie": 49868, + "name": "4.3 V8 MT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208519, + "fields": { + "id_car_serie": 49869, + "name": "4.3 V8 MT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208520, + "fields": { + "id_car_serie": 49870, + "name": "4.3 V8 Sportshift (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208521, + "fields": { + "id_car_serie": 49870, + "name": "4.3 V8 MT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208522, + "fields": { + "id_car_serie": 49871, + "name": "4.3 V8 MT (384 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208523, + "fields": { + "id_car_serie": 49872, + "name": "5.3 V8 MT (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208524, + "fields": { + "id_car_serie": 49873, + "name": "5.3 V8 MT (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208525, + "fields": { + "id_car_serie": 49874, + "name": "5.3 V8 MT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208526, + "fields": { + "id_car_serie": 49875, + "name": "5.3 V8 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208527, + "fields": { + "id_car_serie": 49876, + "name": "5.3 V8 AT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208528, + "fields": { + "id_car_serie": 49876, + "name": "5.3 V8 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208529, + "fields": { + "id_car_serie": 49878, + "name": "118i MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208530, + "fields": { + "id_car_serie": 49878, + "name": "118i Steptronic (136 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208531, + "fields": { + "id_car_serie": 49878, + "name": "120i Steptronic (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208532, + "fields": { + "id_car_serie": 49878, + "name": "M135i Steptronic xDrive (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208533, + "fields": { + "id_car_serie": 49879, + "name": "118i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208534, + "fields": { + "id_car_serie": 49879, + "name": "116i AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208535, + "fields": { + "id_car_serie": 49879, + "name": "116i MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208536, + "fields": { + "id_car_serie": 49879, + "name": "114i MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208537, + "fields": { + "id_car_serie": 49879, + "name": "114d MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208538, + "fields": { + "id_car_serie": 49879, + "name": "118i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208539, + "fields": { + "id_car_serie": 49879, + "name": "118d AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208540, + "fields": { + "id_car_serie": 49879, + "name": "116d AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208541, + "fields": { + "id_car_serie": 49879, + "name": "120d AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208542, + "fields": { + "id_car_serie": 49879, + "name": "125i AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208543, + "fields": { + "id_car_serie": 49879, + "name": "125d AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208544, + "fields": { + "id_car_serie": 49879, + "name": "118d xDrive MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208545, + "fields": { + "id_car_serie": 49879, + "name": "120d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208546, + "fields": { + "id_car_serie": 49879, + "name": "120d xDrive MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208547, + "fields": { + "id_car_serie": 49879, + "name": "125i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208548, + "fields": { + "id_car_serie": 49879, + "name": "116d MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208549, + "fields": { + "id_car_serie": 49879, + "name": "116d EfficientDynamics Edition MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208550, + "fields": { + "id_car_serie": 49879, + "name": "118d MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208551, + "fields": { + "id_car_serie": 49879, + "name": "125d MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208552, + "fields": { + "id_car_serie": 49879, + "name": "M135i AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208553, + "fields": { + "id_car_serie": 49879, + "name": "M135i xDrive AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208554, + "fields": { + "id_car_serie": 49879, + "name": "M135i MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208555, + "fields": { + "id_car_serie": 49880, + "name": "116i AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208556, + "fields": { + "id_car_serie": 49880, + "name": "118i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208557, + "fields": { + "id_car_serie": 49880, + "name": "114i MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208558, + "fields": { + "id_car_serie": 49880, + "name": "116i MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208559, + "fields": { + "id_car_serie": 49880, + "name": "118i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208560, + "fields": { + "id_car_serie": 49880, + "name": "114d MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208561, + "fields": { + "id_car_serie": 49880, + "name": "116d AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208562, + "fields": { + "id_car_serie": 49880, + "name": "125d AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208563, + "fields": { + "id_car_serie": 49880, + "name": "118d AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208564, + "fields": { + "id_car_serie": 49880, + "name": "120d AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208565, + "fields": { + "id_car_serie": 49880, + "name": "125i AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208566, + "fields": { + "id_car_serie": 49880, + "name": "118d xDrive MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208567, + "fields": { + "id_car_serie": 49880, + "name": "120d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208568, + "fields": { + "id_car_serie": 49880, + "name": "120d xDrive MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208569, + "fields": { + "id_car_serie": 49880, + "name": "116d MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208570, + "fields": { + "id_car_serie": 49880, + "name": "118d MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208571, + "fields": { + "id_car_serie": 49880, + "name": "125i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208572, + "fields": { + "id_car_serie": 49880, + "name": "116d EfficientDynamics Edition MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208573, + "fields": { + "id_car_serie": 49880, + "name": "125d MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208574, + "fields": { + "id_car_serie": 49880, + "name": "M135i AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208575, + "fields": { + "id_car_serie": 49880, + "name": "M135i xDrive AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208576, + "fields": { + "id_car_serie": 49880, + "name": "M135i MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208577, + "fields": { + "id_car_serie": 49881, + "name": "120i AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208578, + "fields": { + "id_car_serie": 49881, + "name": "118d AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208579, + "fields": { + "id_car_serie": 49881, + "name": "120i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208580, + "fields": { + "id_car_serie": 49881, + "name": "118i AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208581, + "fields": { + "id_car_serie": 49881, + "name": "118i AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208582, + "fields": { + "id_car_serie": 49881, + "name": "120d AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208583, + "fields": { + "id_car_serie": 49881, + "name": "123d AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208584, + "fields": { + "id_car_serie": 49881, + "name": "118i MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208585, + "fields": { + "id_car_serie": 49881, + "name": "118i MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208586, + "fields": { + "id_car_serie": 49881, + "name": "120d MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208587, + "fields": { + "id_car_serie": 49881, + "name": "120i MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208588, + "fields": { + "id_car_serie": 49881, + "name": "123d MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208589, + "fields": { + "id_car_serie": 49881, + "name": "120i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208590, + "fields": { + "id_car_serie": 49881, + "name": "118d MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208591, + "fields": { + "id_car_serie": 49881, + "name": "128i AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208592, + "fields": { + "id_car_serie": 49881, + "name": "125i AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208593, + "fields": { + "id_car_serie": 49881, + "name": "135is MT (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208594, + "fields": { + "id_car_serie": 49881, + "name": "128i MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208595, + "fields": { + "id_car_serie": 49881, + "name": "135i MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208596, + "fields": { + "id_car_serie": 49881, + "name": "125i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208597, + "fields": { + "id_car_serie": 49881, + "name": "135i MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208598, + "fields": { + "id_car_serie": 49881, + "name": "135i AMT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208599, + "fields": { + "id_car_serie": 49881, + "name": "135i DCT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208600, + "fields": { + "id_car_serie": 49881, + "name": "135is DCT (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208601, + "fields": { + "id_car_serie": 49882, + "name": "120i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208602, + "fields": { + "id_car_serie": 49882, + "name": "120d AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208603, + "fields": { + "id_car_serie": 49882, + "name": "120i AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208604, + "fields": { + "id_car_serie": 49882, + "name": "123d AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208605, + "fields": { + "id_car_serie": 49882, + "name": "118d AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208606, + "fields": { + "id_car_serie": 49882, + "name": "120i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208607, + "fields": { + "id_car_serie": 49882, + "name": "120d MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208608, + "fields": { + "id_car_serie": 49882, + "name": "123d MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208609, + "fields": { + "id_car_serie": 49882, + "name": "120i MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208610, + "fields": { + "id_car_serie": 49882, + "name": "118d MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208611, + "fields": { + "id_car_serie": 49882, + "name": "128i AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208612, + "fields": { + "id_car_serie": 49882, + "name": "125i AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208613, + "fields": { + "id_car_serie": 49882, + "name": "135i MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208614, + "fields": { + "id_car_serie": 49882, + "name": "128i MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208615, + "fields": { + "id_car_serie": 49882, + "name": "135i MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208616, + "fields": { + "id_car_serie": 49882, + "name": "125i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208617, + "fields": { + "id_car_serie": 49882, + "name": "135is MT (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208618, + "fields": { + "id_car_serie": 49882, + "name": "135i DCT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208619, + "fields": { + "id_car_serie": 49882, + "name": "135i AMT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208620, + "fields": { + "id_car_serie": 49882, + "name": "135is DCT (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208621, + "fields": { + "id_car_serie": 49883, + "name": "116i AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208622, + "fields": { + "id_car_serie": 49883, + "name": "116i AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208623, + "fields": { + "id_car_serie": 49883, + "name": "116i MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208624, + "fields": { + "id_car_serie": 49883, + "name": "116i MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208625, + "fields": { + "id_car_serie": 49883, + "name": "123d AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208627, + "fields": { + "id_car_serie": 49883, + "name": "118d AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208628, + "fields": { + "id_car_serie": 49883, + "name": "120d AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208631, + "fields": { + "id_car_serie": 49883, + "name": "118i AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208632, + "fields": { + "id_car_serie": 49883, + "name": "118i AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208634, + "fields": { + "id_car_serie": 49883, + "name": "120i AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208635, + "fields": { + "id_car_serie": 49883, + "name": "120i AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208642, + "fields": { + "id_car_serie": 49883, + "name": "120d MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208643, + "fields": { + "id_car_serie": 49883, + "name": "118i MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208645, + "fields": { + "id_car_serie": 49883, + "name": "120i MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208646, + "fields": { + "id_car_serie": 49883, + "name": "123d MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208647, + "fields": { + "id_car_serie": 49883, + "name": "118i MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208648, + "fields": { + "id_car_serie": 49883, + "name": "120i MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208649, + "fields": { + "id_car_serie": 49883, + "name": "118d MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208656, + "fields": { + "id_car_serie": 49883, + "name": "116d MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208658, + "fields": { + "id_car_serie": 49883, + "name": "116d MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208661, + "fields": { + "id_car_serie": 49883, + "name": "130i AT EU (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208662, + "fields": { + "id_car_serie": 49883, + "name": "130i AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208663, + "fields": { + "id_car_serie": 49883, + "name": "130i AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208664, + "fields": { + "id_car_serie": 49883, + "name": "130i MT EU (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208665, + "fields": { + "id_car_serie": 49883, + "name": "130i MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208666, + "fields": { + "id_car_serie": 49883, + "name": "130i MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208667, + "fields": { + "id_car_serie": 49884, + "name": "116i AT (122 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208668, + "fields": { + "id_car_serie": 49884, + "name": "116i AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208669, + "fields": { + "id_car_serie": 49884, + "name": "116i MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208670, + "fields": { + "id_car_serie": 49884, + "name": "116i MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208671, + "fields": { + "id_car_serie": 49884, + "name": "120i AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208672, + "fields": { + "id_car_serie": 49884, + "name": "118i AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208673, + "fields": { + "id_car_serie": 49884, + "name": "120d AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208674, + "fields": { + "id_car_serie": 49884, + "name": "123d AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208675, + "fields": { + "id_car_serie": 49884, + "name": "118i AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208676, + "fields": { + "id_car_serie": 49884, + "name": "120i AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208677, + "fields": { + "id_car_serie": 49884, + "name": "118d AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208688, + "fields": { + "id_car_serie": 49884, + "name": "118d MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208689, + "fields": { + "id_car_serie": 49884, + "name": "120d MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208690, + "fields": { + "id_car_serie": 49884, + "name": "118i MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208691, + "fields": { + "id_car_serie": 49884, + "name": "118i MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208692, + "fields": { + "id_car_serie": 49884, + "name": "116d MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208693, + "fields": { + "id_car_serie": 49884, + "name": "120i MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208696, + "fields": { + "id_car_serie": 49884, + "name": "123d MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208703, + "fields": { + "id_car_serie": 49884, + "name": "116d MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208706, + "fields": { + "id_car_serie": 49884, + "name": "120i MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208707, + "fields": { + "id_car_serie": 49884, + "name": "130i AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208708, + "fields": { + "id_car_serie": 49884, + "name": "130i AT EU (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208709, + "fields": { + "id_car_serie": 49884, + "name": "130i AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208710, + "fields": { + "id_car_serie": 49884, + "name": "130i MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208711, + "fields": { + "id_car_serie": 49884, + "name": "130i MT EU (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208712, + "fields": { + "id_car_serie": 49884, + "name": "130i MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208713, + "fields": { + "id_car_serie": 49885, + "name": "123d AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208714, + "fields": { + "id_car_serie": 49885, + "name": "120d AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208715, + "fields": { + "id_car_serie": 49885, + "name": "118i AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208716, + "fields": { + "id_car_serie": 49885, + "name": "120i AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208720, + "fields": { + "id_car_serie": 49885, + "name": "118d AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208723, + "fields": { + "id_car_serie": 49885, + "name": "118i MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208724, + "fields": { + "id_car_serie": 49885, + "name": "120i MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208725, + "fields": { + "id_car_serie": 49885, + "name": "120d MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208726, + "fields": { + "id_car_serie": 49885, + "name": "123d MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208729, + "fields": { + "id_car_serie": 49885, + "name": "118d MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208733, + "fields": { + "id_car_serie": 49885, + "name": "135i AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208734, + "fields": { + "id_car_serie": 49885, + "name": "125i AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208735, + "fields": { + "id_car_serie": 49885, + "name": "128i AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208737, + "fields": { + "id_car_serie": 49885, + "name": "135i AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208738, + "fields": { + "id_car_serie": 49885, + "name": "135i MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208739, + "fields": { + "id_car_serie": 49885, + "name": "125i MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208740, + "fields": { + "id_car_serie": 49885, + "name": "128i MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208741, + "fields": { + "id_car_serie": 49885, + "name": "135i MT (306 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208744, + "fields": { + "id_car_serie": 49885, + "name": "135i DKG (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208745, + "fields": { + "id_car_serie": 49886, + "name": "118d AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208746, + "fields": { + "id_car_serie": 49886, + "name": "120i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208747, + "fields": { + "id_car_serie": 49886, + "name": "120d AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208748, + "fields": { + "id_car_serie": 49886, + "name": "123d AT (204 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208753, + "fields": { + "id_car_serie": 49886, + "name": "120i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208754, + "fields": { + "id_car_serie": 49886, + "name": "120d MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208755, + "fields": { + "id_car_serie": 49886, + "name": "123d MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208757, + "fields": { + "id_car_serie": 49886, + "name": "118d MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208761, + "fields": { + "id_car_serie": 49886, + "name": "125i AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208762, + "fields": { + "id_car_serie": 49886, + "name": "135i AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208763, + "fields": { + "id_car_serie": 49886, + "name": "128i AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208765, + "fields": { + "id_car_serie": 49886, + "name": "135i AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208766, + "fields": { + "id_car_serie": 49886, + "name": "125i MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208767, + "fields": { + "id_car_serie": 49886, + "name": "135i MT (306 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208768, + "fields": { + "id_car_serie": 49886, + "name": "128i MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208771, + "fields": { + "id_car_serie": 49886, + "name": "135i MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208772, + "fields": { + "id_car_serie": 49886, + "name": "135i DKG (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208773, + "fields": { + "id_car_serie": 49887, + "name": "116i MT (115 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208775, + "fields": { + "id_car_serie": 49887, + "name": "118i AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208776, + "fields": { + "id_car_serie": 49887, + "name": "120d AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208777, + "fields": { + "id_car_serie": 49887, + "name": "120i AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208778, + "fields": { + "id_car_serie": 49887, + "name": "120d MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208779, + "fields": { + "id_car_serie": 49887, + "name": "118i MT (129 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208780, + "fields": { + "id_car_serie": 49887, + "name": "120i MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208781, + "fields": { + "id_car_serie": 49887, + "name": "118d MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208783, + "fields": { + "id_car_serie": 49887, + "name": "130i AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208784, + "fields": { + "id_car_serie": 49887, + "name": "130i MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208785, + "fields": { + "id_car_serie": 49888, + "name": "220i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208786, + "fields": { + "id_car_serie": 49888, + "name": "220d Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208787, + "fields": { + "id_car_serie": 49888, + "name": "228i Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208788, + "fields": { + "id_car_serie": 49888, + "name": "220i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208789, + "fields": { + "id_car_serie": 49888, + "name": "220d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208790, + "fields": { + "id_car_serie": 49888, + "name": "228i MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208791, + "fields": { + "id_car_serie": 49888, + "name": "M235i Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208792, + "fields": { + "id_car_serie": 49888, + "name": "M235i xDrive Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208793, + "fields": { + "id_car_serie": 49888, + "name": "M235i MT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208794, + "fields": { + "id_car_serie": 49889, + "name": "220d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208795, + "fields": { + "id_car_serie": 49889, + "name": "228i Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208796, + "fields": { + "id_car_serie": 49889, + "name": "220i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208797, + "fields": { + "id_car_serie": 49889, + "name": "220i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208798, + "fields": { + "id_car_serie": 49889, + "name": "228i MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208799, + "fields": { + "id_car_serie": 49889, + "name": "220d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208800, + "fields": { + "id_car_serie": 49889, + "name": "M235i Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208801, + "fields": { + "id_car_serie": 49889, + "name": "M235i MT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208802, + "fields": { + "id_car_serie": 49890, + "name": "218i Steptronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208803, + "fields": { + "id_car_serie": 49890, + "name": "218i MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208804, + "fields": { + "id_car_serie": 49890, + "name": "216d MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208805, + "fields": { + "id_car_serie": 49890, + "name": "220d xDrive Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208806, + "fields": { + "id_car_serie": 49890, + "name": "220d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208807, + "fields": { + "id_car_serie": 49890, + "name": "218d Steptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208808, + "fields": { + "id_car_serie": 49890, + "name": "225i Steptronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208809, + "fields": { + "id_car_serie": 49890, + "name": "220i Steptronic (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208810, + "fields": { + "id_car_serie": 49890, + "name": "225i xDrive Steptronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208811, + "fields": { + "id_car_serie": 49890, + "name": "220d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208812, + "fields": { + "id_car_serie": 49890, + "name": "218d MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208813, + "fields": { + "id_car_serie": 49890, + "name": "220i MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208814, + "fields": { + "id_car_serie": 49891, + "name": "316i AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208815, + "fields": { + "id_car_serie": 49891, + "name": "316i MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208816, + "fields": { + "id_car_serie": 49891, + "name": "320i xDrive AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208817, + "fields": { + "id_car_serie": 49891, + "name": "328i xDrive AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208818, + "fields": { + "id_car_serie": 49891, + "name": "318d AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208819, + "fields": { + "id_car_serie": 49891, + "name": "325d AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208820, + "fields": { + "id_car_serie": 49891, + "name": "320d EfficientDynamics Edition AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208821, + "fields": { + "id_car_serie": 49891, + "name": "320d xDrive AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208822, + "fields": { + "id_car_serie": 49891, + "name": "320i AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208823, + "fields": { + "id_car_serie": 49891, + "name": "320d AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208824, + "fields": { + "id_car_serie": 49891, + "name": "328i AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208825, + "fields": { + "id_car_serie": 49891, + "name": "316d AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208826, + "fields": { + "id_car_serie": 49891, + "name": "320i xDrive MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208827, + "fields": { + "id_car_serie": 49891, + "name": "328i xDrive MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208828, + "fields": { + "id_car_serie": 49891, + "name": "328i MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208829, + "fields": { + "id_car_serie": 49891, + "name": "320i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208830, + "fields": { + "id_car_serie": 49891, + "name": "316d MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208831, + "fields": { + "id_car_serie": 49891, + "name": "318d MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208832, + "fields": { + "id_car_serie": 49891, + "name": "320d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208833, + "fields": { + "id_car_serie": 49891, + "name": "320d EfficientDynamics Edition MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208834, + "fields": { + "id_car_serie": 49891, + "name": "325d MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208835, + "fields": { + "id_car_serie": 49891, + "name": "318d xDrive MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208836, + "fields": { + "id_car_serie": 49891, + "name": "330d xDrive AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208837, + "fields": { + "id_car_serie": 49891, + "name": "330d AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208838, + "fields": { + "id_car_serie": 49891, + "name": "335i AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208839, + "fields": { + "id_car_serie": 49891, + "name": "335i xDrive AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208840, + "fields": { + "id_car_serie": 49891, + "name": "335i MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208841, + "fields": { + "id_car_serie": 8106, + "name": "316i AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208842, + "fields": { + "id_car_serie": 8106, + "name": "320i EfficientDynamics Edition AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208843, + "fields": { + "id_car_serie": 8106, + "name": "316i MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208844, + "fields": { + "id_car_serie": 8106, + "name": "320i EfficientDynamics Edition MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208845, + "fields": { + "id_car_serie": 8106, + "name": "320d xDrive AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208846, + "fields": { + "id_car_serie": 8106, + "name": "320i xDrive AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208847, + "fields": { + "id_car_serie": 8106, + "name": "328i AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208848, + "fields": { + "id_car_serie": 8106, + "name": "328i xDrive AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208849, + "fields": { + "id_car_serie": 8106, + "name": "328i xDrive AT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208850, + "fields": { + "id_car_serie": 8106, + "name": "318d AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208851, + "fields": { + "id_car_serie": 8106, + "name": "316d AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208852, + "fields": { + "id_car_serie": 8106, + "name": "328i AT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208854, + "fields": { + "id_car_serie": 8106, + "name": "325d AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208855, + "fields": { + "id_car_serie": 8106, + "name": "320d AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208856, + "fields": { + "id_car_serie": 8106, + "name": "320d EfficientDynamics Edition AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208857, + "fields": { + "id_car_serie": 8106, + "name": "320i AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208858, + "fields": { + "id_car_serie": 8106, + "name": "320i xDrive MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208859, + "fields": { + "id_car_serie": 8106, + "name": "328i MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208860, + "fields": { + "id_car_serie": 8106, + "name": "328i xDrive MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208861, + "fields": { + "id_car_serie": 8106, + "name": "328i MT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208862, + "fields": { + "id_car_serie": 8106, + "name": "325d MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208863, + "fields": { + "id_car_serie": 8106, + "name": "320d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208864, + "fields": { + "id_car_serie": 8106, + "name": "316d MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208865, + "fields": { + "id_car_serie": 8106, + "name": "320d xDrive MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208866, + "fields": { + "id_car_serie": 8106, + "name": "318d MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208867, + "fields": { + "id_car_serie": 8106, + "name": "320d EfficientDynamics Edition MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208869, + "fields": { + "id_car_serie": 8106, + "name": "320i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208870, + "fields": { + "id_car_serie": 8106, + "name": "318d xDrive MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208871, + "fields": { + "id_car_serie": 8106, + "name": "335i xDrive AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208872, + "fields": { + "id_car_serie": 8106, + "name": "335i xDrive AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208873, + "fields": { + "id_car_serie": 8106, + "name": "335i AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208874, + "fields": { + "id_car_serie": 8106, + "name": "335i AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208875, + "fields": { + "id_car_serie": 8106, + "name": "330d xDrive AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208876, + "fields": { + "id_car_serie": 8106, + "name": "335d xDrive AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208877, + "fields": { + "id_car_serie": 8106, + "name": "ActiveHybrid 3 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208878, + "fields": { + "id_car_serie": 8106, + "name": "335i xDrive MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208879, + "fields": { + "id_car_serie": 8106, + "name": "335i MT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208880, + "fields": { + "id_car_serie": 8106, + "name": "335i xDrive MT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208881, + "fields": { + "id_car_serie": 8106, + "name": "335i MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208882, + "fields": { + "id_car_serie": 49893, + "name": "320i AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208883, + "fields": { + "id_car_serie": 49893, + "name": "320i xDrive AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208884, + "fields": { + "id_car_serie": 49893, + "name": "320d xDrive AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208885, + "fields": { + "id_car_serie": 49893, + "name": "328i xDrive AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208886, + "fields": { + "id_car_serie": 49893, + "name": "318d AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208887, + "fields": { + "id_car_serie": 49893, + "name": "328i AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208888, + "fields": { + "id_car_serie": 49893, + "name": "320d AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208889, + "fields": { + "id_car_serie": 49893, + "name": "320d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208890, + "fields": { + "id_car_serie": 49893, + "name": "328i MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208891, + "fields": { + "id_car_serie": 49893, + "name": "320i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208892, + "fields": { + "id_car_serie": 49893, + "name": "318d MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208893, + "fields": { + "id_car_serie": 49893, + "name": "335i xDrive AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208894, + "fields": { + "id_car_serie": 49893, + "name": "335i AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208895, + "fields": { + "id_car_serie": 49893, + "name": "335i MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208896, + "fields": { + "id_car_serie": 49894, + "name": "320d AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208897, + "fields": { + "id_car_serie": 49894, + "name": "318d AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208898, + "fields": { + "id_car_serie": 49894, + "name": "320d AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208899, + "fields": { + "id_car_serie": 49894, + "name": "318i AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208901, + "fields": { + "id_car_serie": 49894, + "name": "320i AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208902, + "fields": { + "id_car_serie": 49894, + "name": "320d xDrive AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208904, + "fields": { + "id_car_serie": 49894, + "name": "320d xDrive AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208906, + "fields": { + "id_car_serie": 49894, + "name": "320i MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208907, + "fields": { + "id_car_serie": 49894, + "name": "320d xDrive MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208908, + "fields": { + "id_car_serie": 49894, + "name": "318d MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208909, + "fields": { + "id_car_serie": 49894, + "name": "320d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208910, + "fields": { + "id_car_serie": 49894, + "name": "320d EfficientDynamics Edition MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208911, + "fields": { + "id_car_serie": 49894, + "name": "320d xDrive MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208912, + "fields": { + "id_car_serie": 49894, + "name": "318i MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208914, + "fields": { + "id_car_serie": 49894, + "name": "320d MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208917, + "fields": { + "id_car_serie": 49894, + "name": "316d MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208918, + "fields": { + "id_car_serie": 49894, + "name": "330i xDrive AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208919, + "fields": { + "id_car_serie": 49894, + "name": "325i xDrive AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208920, + "fields": { + "id_car_serie": 49894, + "name": "325i AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208922, + "fields": { + "id_car_serie": 49894, + "name": "330i AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208923, + "fields": { + "id_car_serie": 49894, + "name": "335i AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208924, + "fields": { + "id_car_serie": 49894, + "name": "325d AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208925, + "fields": { + "id_car_serie": 49894, + "name": "330d AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208926, + "fields": { + "id_car_serie": 49894, + "name": "335d AT (286 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208927, + "fields": { + "id_car_serie": 49894, + "name": "328i AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208930, + "fields": { + "id_car_serie": 49894, + "name": "325d AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208933, + "fields": { + "id_car_serie": 49894, + "name": "335i xDrive AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208934, + "fields": { + "id_car_serie": 49894, + "name": "330d xDrive AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208935, + "fields": { + "id_car_serie": 49894, + "name": "328i xDrive AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208938, + "fields": { + "id_car_serie": 49894, + "name": "325i xDrive MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208939, + "fields": { + "id_car_serie": 49894, + "name": "330i xDrive MT (272 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208941, + "fields": { + "id_car_serie": 49894, + "name": "335i MT (306 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208942, + "fields": { + "id_car_serie": 49894, + "name": "335i xDrive MT (306 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208944, + "fields": { + "id_car_serie": 49894, + "name": "330i MT (272 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208945, + "fields": { + "id_car_serie": 49894, + "name": "325i MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208946, + "fields": { + "id_car_serie": 49894, + "name": "330d xDrive MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208950, + "fields": { + "id_car_serie": 49894, + "name": "328i MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208951, + "fields": { + "id_car_serie": 49894, + "name": "330d MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208952, + "fields": { + "id_car_serie": 49894, + "name": "325d MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208953, + "fields": { + "id_car_serie": 49894, + "name": "328i xDrive MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208955, + "fields": { + "id_car_serie": 49894, + "name": "325d MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208956, + "fields": { + "id_car_serie": 49895, + "name": "318d AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208958, + "fields": { + "id_car_serie": 49895, + "name": "320d AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208959, + "fields": { + "id_car_serie": 49895, + "name": "320d AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208960, + "fields": { + "id_car_serie": 49895, + "name": "320d xDrive AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208961, + "fields": { + "id_car_serie": 49895, + "name": "318i AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208962, + "fields": { + "id_car_serie": 49895, + "name": "320i AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208963, + "fields": { + "id_car_serie": 49895, + "name": "320d xDrive AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208966, + "fields": { + "id_car_serie": 49895, + "name": "318i MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208967, + "fields": { + "id_car_serie": 49895, + "name": "320i MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208968, + "fields": { + "id_car_serie": 49895, + "name": "320d xDrive MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208969, + "fields": { + "id_car_serie": 49895, + "name": "320d EfficientDynamics Edition MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208970, + "fields": { + "id_car_serie": 49895, + "name": "318d MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208972, + "fields": { + "id_car_serie": 49895, + "name": "320d MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208973, + "fields": { + "id_car_serie": 49895, + "name": "320d BluePerformance MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208975, + "fields": { + "id_car_serie": 49895, + "name": "320d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208976, + "fields": { + "id_car_serie": 49895, + "name": "316d MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208977, + "fields": { + "id_car_serie": 49895, + "name": "320d xDrive MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208979, + "fields": { + "id_car_serie": 49895, + "name": "330i xDrive AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208980, + "fields": { + "id_car_serie": 49895, + "name": "325i AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208981, + "fields": { + "id_car_serie": 49895, + "name": "325i xDrive AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208982, + "fields": { + "id_car_serie": 49895, + "name": "335i xDrive AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208984, + "fields": { + "id_car_serie": 49895, + "name": "330i AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208985, + "fields": { + "id_car_serie": 49895, + "name": "335i AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208986, + "fields": { + "id_car_serie": 49895, + "name": "325d AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208987, + "fields": { + "id_car_serie": 49895, + "name": "330d AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208988, + "fields": { + "id_car_serie": 49895, + "name": "335d AT (286 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208989, + "fields": { + "id_car_serie": 49895, + "name": "328i AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208991, + "fields": { + "id_car_serie": 49895, + "name": "335d AT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208993, + "fields": { + "id_car_serie": 49895, + "name": "325d AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208998, + "fields": { + "id_car_serie": 49895, + "name": "330d xDrive AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 208999, + "fields": { + "id_car_serie": 49895, + "name": "328i xDrive AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209000, + "fields": { + "id_car_serie": 49895, + "name": "330i MT (272 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209001, + "fields": { + "id_car_serie": 49895, + "name": "325i MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209002, + "fields": { + "id_car_serie": 49895, + "name": "325d MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209003, + "fields": { + "id_car_serie": 49895, + "name": "335i xDrive MT (306 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209004, + "fields": { + "id_car_serie": 49895, + "name": "330d xDrive MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209005, + "fields": { + "id_car_serie": 49895, + "name": "325i xDrive MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209006, + "fields": { + "id_car_serie": 49895, + "name": "330i xDrive MT (272 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209008, + "fields": { + "id_car_serie": 49895, + "name": "328i MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209009, + "fields": { + "id_car_serie": 49895, + "name": "328i xDrive MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209012, + "fields": { + "id_car_serie": 49895, + "name": "330d MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209013, + "fields": { + "id_car_serie": 49895, + "name": "330d BluePerformance MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209015, + "fields": { + "id_car_serie": 49895, + "name": "335i MT (306 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209017, + "fields": { + "id_car_serie": 49895, + "name": "325d MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209019, + "fields": { + "id_car_serie": 49896, + "name": "320i AT EU (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209020, + "fields": { + "id_car_serie": 49896, + "name": "320i AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209021, + "fields": { + "id_car_serie": 49896, + "name": "320d AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209022, + "fields": { + "id_car_serie": 49896, + "name": "320d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209023, + "fields": { + "id_car_serie": 49896, + "name": "318i MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209024, + "fields": { + "id_car_serie": 49896, + "name": "320i MT EU (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209025, + "fields": { + "id_car_serie": 49896, + "name": "320i MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209026, + "fields": { + "id_car_serie": 49896, + "name": "325i AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209027, + "fields": { + "id_car_serie": 49896, + "name": "325i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209028, + "fields": { + "id_car_serie": 49896, + "name": "330d AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209029, + "fields": { + "id_car_serie": 49896, + "name": "328i AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209030, + "fields": { + "id_car_serie": 49896, + "name": "325d AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209031, + "fields": { + "id_car_serie": 49896, + "name": "325i AT EU (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209032, + "fields": { + "id_car_serie": 49896, + "name": "330i AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209033, + "fields": { + "id_car_serie": 49896, + "name": "330i MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209034, + "fields": { + "id_car_serie": 49896, + "name": "335i MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209035, + "fields": { + "id_car_serie": 49896, + "name": "325i MT EU (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209036, + "fields": { + "id_car_serie": 49896, + "name": "325d MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209037, + "fields": { + "id_car_serie": 49896, + "name": "330d MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209038, + "fields": { + "id_car_serie": 49896, + "name": "328i MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209039, + "fields": { + "id_car_serie": 49896, + "name": "335is MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209040, + "fields": { + "id_car_serie": 49896, + "name": "335is DCT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209041, + "fields": { + "id_car_serie": 49896, + "name": "335i DKG (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209042, + "fields": { + "id_car_serie": 49897, + "name": "320d xDrive AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209043, + "fields": { + "id_car_serie": 49897, + "name": "320d AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209044, + "fields": { + "id_car_serie": 49897, + "name": "320i AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209045, + "fields": { + "id_car_serie": 49897, + "name": "320i AT EU (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209046, + "fields": { + "id_car_serie": 49897, + "name": "320i MT EU (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209047, + "fields": { + "id_car_serie": 49897, + "name": "320d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209048, + "fields": { + "id_car_serie": 49897, + "name": "320d xDrive MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209049, + "fields": { + "id_car_serie": 49897, + "name": "320i MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209050, + "fields": { + "id_car_serie": 49897, + "name": "318i MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209051, + "fields": { + "id_car_serie": 49897, + "name": "325i AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209052, + "fields": { + "id_car_serie": 49897, + "name": "325i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209053, + "fields": { + "id_car_serie": 49897, + "name": "325i AT EU (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209054, + "fields": { + "id_car_serie": 49897, + "name": "325i xDrive AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209055, + "fields": { + "id_car_serie": 49897, + "name": "335i xDrive AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209056, + "fields": { + "id_car_serie": 49897, + "name": "330i AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209057, + "fields": { + "id_car_serie": 49897, + "name": "325d AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209058, + "fields": { + "id_car_serie": 49897, + "name": "330d AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209059, + "fields": { + "id_car_serie": 49897, + "name": "335d AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209060, + "fields": { + "id_car_serie": 49897, + "name": "328i AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209061, + "fields": { + "id_car_serie": 49897, + "name": "330i xDrive AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209062, + "fields": { + "id_car_serie": 49897, + "name": "330d xDrive AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209063, + "fields": { + "id_car_serie": 49897, + "name": "335i MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209064, + "fields": { + "id_car_serie": 49897, + "name": "335is MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209065, + "fields": { + "id_car_serie": 49897, + "name": "328i MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209066, + "fields": { + "id_car_serie": 49897, + "name": "325i xDrive MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209067, + "fields": { + "id_car_serie": 49897, + "name": "330i xDrive MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209068, + "fields": { + "id_car_serie": 49897, + "name": "325i MT EU (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209069, + "fields": { + "id_car_serie": 49897, + "name": "330d MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209070, + "fields": { + "id_car_serie": 49897, + "name": "325d MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209071, + "fields": { + "id_car_serie": 49897, + "name": "330d xDrive MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209072, + "fields": { + "id_car_serie": 49897, + "name": "335i xDrive MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209073, + "fields": { + "id_car_serie": 49897, + "name": "330i MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209074, + "fields": { + "id_car_serie": 49897, + "name": "335is DCT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209075, + "fields": { + "id_car_serie": 49897, + "name": "335i DKG (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209076, + "fields": { + "id_car_serie": 49898, + "name": "320i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209077, + "fields": { + "id_car_serie": 49898, + "name": "318i AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209078, + "fields": { + "id_car_serie": 49898, + "name": "320d AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209079, + "fields": { + "id_car_serie": 49898, + "name": "320d AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209080, + "fields": { + "id_car_serie": 49898, + "name": "318i AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209081, + "fields": { + "id_car_serie": 49898, + "name": "320i AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209082, + "fields": { + "id_car_serie": 49898, + "name": "320d MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209083, + "fields": { + "id_car_serie": 49898, + "name": "320i MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209084, + "fields": { + "id_car_serie": 49898, + "name": "318i MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209085, + "fields": { + "id_car_serie": 49898, + "name": "320i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209086, + "fields": { + "id_car_serie": 49898, + "name": "320d MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209087, + "fields": { + "id_car_serie": 49898, + "name": "318d MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209088, + "fields": { + "id_car_serie": 49898, + "name": "318i MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209089, + "fields": { + "id_car_serie": 49898, + "name": "318d MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209090, + "fields": { + "id_car_serie": 49898, + "name": "325xi AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209091, + "fields": { + "id_car_serie": 49898, + "name": "325i AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209092, + "fields": { + "id_car_serie": 49898, + "name": "325xi MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209093, + "fields": { + "id_car_serie": 49898, + "name": "325i MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209094, + "fields": { + "id_car_serie": 49898, + "name": "328xi AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209095, + "fields": { + "id_car_serie": 49898, + "name": "330i AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209096, + "fields": { + "id_car_serie": 49898, + "name": "330d AT (231 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209097, + "fields": { + "id_car_serie": 49898, + "name": "335i AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209098, + "fields": { + "id_car_serie": 49898, + "name": "335d AT (286 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209100, + "fields": { + "id_car_serie": 49898, + "name": "330i AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209102, + "fields": { + "id_car_serie": 49898, + "name": "325d AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209104, + "fields": { + "id_car_serie": 49898, + "name": "328i AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209105, + "fields": { + "id_car_serie": 49898, + "name": "330xi AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209106, + "fields": { + "id_car_serie": 49898, + "name": "330xd AT (231 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209109, + "fields": { + "id_car_serie": 49898, + "name": "330xi AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209110, + "fields": { + "id_car_serie": 49898, + "name": "335xi AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209112, + "fields": { + "id_car_serie": 49898, + "name": "335i MT (306 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209113, + "fields": { + "id_car_serie": 49898, + "name": "330d MT (231 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209114, + "fields": { + "id_car_serie": 49898, + "name": "330xi MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209115, + "fields": { + "id_car_serie": 49898, + "name": "330i MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209116, + "fields": { + "id_car_serie": 49898, + "name": "330xd MT (231 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209117, + "fields": { + "id_car_serie": 49898, + "name": "335xi MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209119, + "fields": { + "id_car_serie": 49898, + "name": "328xi MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209120, + "fields": { + "id_car_serie": 49898, + "name": "330i MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209122, + "fields": { + "id_car_serie": 49898, + "name": "325d MT (197 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209127, + "fields": { + "id_car_serie": 49898, + "name": "328i MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209128, + "fields": { + "id_car_serie": 49898, + "name": "330xi MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209129, + "fields": { + "id_car_serie": 49899, + "name": "318i AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209130, + "fields": { + "id_car_serie": 49899, + "name": "320d AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209131, + "fields": { + "id_car_serie": 49899, + "name": "320d AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209132, + "fields": { + "id_car_serie": 49899, + "name": "318i AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209133, + "fields": { + "id_car_serie": 49899, + "name": "320i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209134, + "fields": { + "id_car_serie": 49899, + "name": "320i AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209135, + "fields": { + "id_car_serie": 49899, + "name": "318d MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209136, + "fields": { + "id_car_serie": 49899, + "name": "318i MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209137, + "fields": { + "id_car_serie": 49899, + "name": "320i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209138, + "fields": { + "id_car_serie": 49899, + "name": "318d MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209139, + "fields": { + "id_car_serie": 49899, + "name": "320i MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209140, + "fields": { + "id_car_serie": 49899, + "name": "320d MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209141, + "fields": { + "id_car_serie": 49899, + "name": "318i MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209142, + "fields": { + "id_car_serie": 49899, + "name": "320si MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209143, + "fields": { + "id_car_serie": 49899, + "name": "320d MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209144, + "fields": { + "id_car_serie": 49899, + "name": "325xi AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209145, + "fields": { + "id_car_serie": 49899, + "name": "325i AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209146, + "fields": { + "id_car_serie": 49899, + "name": "325xi MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209147, + "fields": { + "id_car_serie": 49899, + "name": "325i MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209148, + "fields": { + "id_car_serie": 49899, + "name": "328xi AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209149, + "fields": { + "id_car_serie": 49899, + "name": "330i AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209150, + "fields": { + "id_car_serie": 49899, + "name": "330d AT (231 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209151, + "fields": { + "id_car_serie": 49899, + "name": "335d AT (286 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209153, + "fields": { + "id_car_serie": 49899, + "name": "330i AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209155, + "fields": { + "id_car_serie": 49899, + "name": "335i AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209156, + "fields": { + "id_car_serie": 49899, + "name": "325d AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209158, + "fields": { + "id_car_serie": 49899, + "name": "328i AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209159, + "fields": { + "id_car_serie": 49899, + "name": "330xi AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209160, + "fields": { + "id_car_serie": 49899, + "name": "330xd AT (231 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209162, + "fields": { + "id_car_serie": 49899, + "name": "330xi AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209164, + "fields": { + "id_car_serie": 49899, + "name": "335xi AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209166, + "fields": { + "id_car_serie": 49899, + "name": "330xi MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209167, + "fields": { + "id_car_serie": 49899, + "name": "330d MT (231 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209168, + "fields": { + "id_car_serie": 49899, + "name": "330i MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209169, + "fields": { + "id_car_serie": 49899, + "name": "330xi MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209170, + "fields": { + "id_car_serie": 49899, + "name": "330i MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209171, + "fields": { + "id_car_serie": 49899, + "name": "335xi MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209173, + "fields": { + "id_car_serie": 49899, + "name": "325d MT (197 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209174, + "fields": { + "id_car_serie": 49899, + "name": "335i MT (306 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209176, + "fields": { + "id_car_serie": 49899, + "name": "330xd MT (231 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209181, + "fields": { + "id_car_serie": 49899, + "name": "328xi MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209182, + "fields": { + "id_car_serie": 49899, + "name": "328i MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209183, + "fields": { + "id_car_serie": 49900, + "name": "320d AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209184, + "fields": { + "id_car_serie": 49900, + "name": "320i AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209187, + "fields": { + "id_car_serie": 49900, + "name": "320i MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209189, + "fields": { + "id_car_serie": 49900, + "name": "320d MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209191, + "fields": { + "id_car_serie": 49900, + "name": "325d AT (197 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209192, + "fields": { + "id_car_serie": 49900, + "name": "330d AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209193, + "fields": { + "id_car_serie": 49900, + "name": "330i AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209196, + "fields": { + "id_car_serie": 49900, + "name": "330d AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209197, + "fields": { + "id_car_serie": 49900, + "name": "325i AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209198, + "fields": { + "id_car_serie": 49900, + "name": "335i AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209200, + "fields": { + "id_car_serie": 49900, + "name": "328i AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209201, + "fields": { + "id_car_serie": 49900, + "name": "330d MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209202, + "fields": { + "id_car_serie": 49900, + "name": "325i MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209203, + "fields": { + "id_car_serie": 49900, + "name": "328i MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209204, + "fields": { + "id_car_serie": 49900, + "name": "330i MT (272 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209205, + "fields": { + "id_car_serie": 49900, + "name": "335i MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209206, + "fields": { + "id_car_serie": 49900, + "name": "325d MT (197 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209208, + "fields": { + "id_car_serie": 49900, + "name": "330d MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209211, + "fields": { + "id_car_serie": 49901, + "name": "320i AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209212, + "fields": { + "id_car_serie": 49901, + "name": "320d AT (177 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209215, + "fields": { + "id_car_serie": 49901, + "name": "320d xDrive AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209216, + "fields": { + "id_car_serie": 49901, + "name": "320d xDrive MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209217, + "fields": { + "id_car_serie": 49901, + "name": "320d MT (177 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209219, + "fields": { + "id_car_serie": 49901, + "name": "320i MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209221, + "fields": { + "id_car_serie": 49901, + "name": "325i AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209222, + "fields": { + "id_car_serie": 49901, + "name": "325xi AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209223, + "fields": { + "id_car_serie": 49901, + "name": "325i MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209224, + "fields": { + "id_car_serie": 49901, + "name": "325xi MT (218 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209225, + "fields": { + "id_car_serie": 49901, + "name": "330i xDrive AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209226, + "fields": { + "id_car_serie": 49901, + "name": "330i AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209227, + "fields": { + "id_car_serie": 49901, + "name": "335i AT (306 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209228, + "fields": { + "id_car_serie": 49901, + "name": "330d AT (231 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209229, + "fields": { + "id_car_serie": 49901, + "name": "335d AT (286 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209231, + "fields": { + "id_car_serie": 49901, + "name": "328i AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209234, + "fields": { + "id_car_serie": 49901, + "name": "325d AT (197 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209237, + "fields": { + "id_car_serie": 49901, + "name": "330d AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209241, + "fields": { + "id_car_serie": 49901, + "name": "330xi AT (272 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209242, + "fields": { + "id_car_serie": 49901, + "name": "330xd AT (231 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209244, + "fields": { + "id_car_serie": 49901, + "name": "328i xDrive AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209246, + "fields": { + "id_car_serie": 49901, + "name": "335xi AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209248, + "fields": { + "id_car_serie": 49901, + "name": "330d xDrive AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209249, + "fields": { + "id_car_serie": 49901, + "name": "325i xDrive AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209250, + "fields": { + "id_car_serie": 49901, + "name": "330xd MT (231 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209252, + "fields": { + "id_car_serie": 49901, + "name": "330xi MT (272 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209253, + "fields": { + "id_car_serie": 49901, + "name": "330i MT (272 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209255, + "fields": { + "id_car_serie": 49901, + "name": "330d MT (231 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209257, + "fields": { + "id_car_serie": 49901, + "name": "335i MT (306 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209258, + "fields": { + "id_car_serie": 49901, + "name": "328i xDrive MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209259, + "fields": { + "id_car_serie": 49901, + "name": "330d xDrive MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209261, + "fields": { + "id_car_serie": 49901, + "name": "330d MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209262, + "fields": { + "id_car_serie": 49901, + "name": "330i xDrive MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209264, + "fields": { + "id_car_serie": 49901, + "name": "325d MT (197 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209268, + "fields": { + "id_car_serie": 49901, + "name": "335xi MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209270, + "fields": { + "id_car_serie": 49901, + "name": "325i xDrive MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209271, + "fields": { + "id_car_serie": 49901, + "name": "328i MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209273, + "fields": { + "id_car_serie": 49901, + "name": "335i DKG (306 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209274, + "fields": { + "id_car_serie": 49902, + "name": "316ti AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209275, + "fields": { + "id_car_serie": 49902, + "name": "316ti MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209276, + "fields": { + "id_car_serie": 49902, + "name": "320td AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209277, + "fields": { + "id_car_serie": 49902, + "name": "318ti AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209278, + "fields": { + "id_car_serie": 49902, + "name": "318td MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209279, + "fields": { + "id_car_serie": 49902, + "name": "320td MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209280, + "fields": { + "id_car_serie": 49902, + "name": "318ti MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209281, + "fields": { + "id_car_serie": 49902, + "name": "325ti AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209282, + "fields": { + "id_car_serie": 49902, + "name": "325ti MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209283, + "fields": { + "id_car_serie": 49903, + "name": "316i AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209284, + "fields": { + "id_car_serie": 49903, + "name": "316i MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209285, + "fields": { + "id_car_serie": 49903, + "name": "318i AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209286, + "fields": { + "id_car_serie": 49903, + "name": "318d AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209287, + "fields": { + "id_car_serie": 49903, + "name": "320d AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209288, + "fields": { + "id_car_serie": 49903, + "name": "320d 5MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209289, + "fields": { + "id_car_serie": 49903, + "name": "320d 6MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209290, + "fields": { + "id_car_serie": 49903, + "name": "318d MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209291, + "fields": { + "id_car_serie": 49903, + "name": "318i MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209292, + "fields": { + "id_car_serie": 49903, + "name": "320i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209293, + "fields": { + "id_car_serie": 49903, + "name": "320i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209294, + "fields": { + "id_car_serie": 49903, + "name": "325xi AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209295, + "fields": { + "id_car_serie": 49903, + "name": "325i AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209296, + "fields": { + "id_car_serie": 49903, + "name": "325i AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209297, + "fields": { + "id_car_serie": 49903, + "name": "325xi AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209298, + "fields": { + "id_car_serie": 49903, + "name": "325i MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209299, + "fields": { + "id_car_serie": 49903, + "name": "325xi MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209300, + "fields": { + "id_car_serie": 49903, + "name": "325xi MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209301, + "fields": { + "id_car_serie": 49903, + "name": "325i MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209302, + "fields": { + "id_car_serie": 49903, + "name": "330xd AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209303, + "fields": { + "id_car_serie": 49903, + "name": "330d AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209304, + "fields": { + "id_car_serie": 49903, + "name": "330xd MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209305, + "fields": { + "id_car_serie": 49903, + "name": "330d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209306, + "fields": { + "id_car_serie": 49903, + "name": "330xd AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209307, + "fields": { + "id_car_serie": 49903, + "name": "330i AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209308, + "fields": { + "id_car_serie": 49903, + "name": "330d AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209309, + "fields": { + "id_car_serie": 49903, + "name": "330xi AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209310, + "fields": { + "id_car_serie": 49903, + "name": "330xi 5MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209311, + "fields": { + "id_car_serie": 49903, + "name": "330d MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209312, + "fields": { + "id_car_serie": 49903, + "name": "330i 6MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209313, + "fields": { + "id_car_serie": 49903, + "name": "330xi 6MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209314, + "fields": { + "id_car_serie": 49903, + "name": "330xd MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209315, + "fields": { + "id_car_serie": 49903, + "name": "330i 5MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209316, + "fields": { + "id_car_serie": 49904, + "name": "320Cd AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209317, + "fields": { + "id_car_serie": 49904, + "name": "318Ci AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209318, + "fields": { + "id_car_serie": 49904, + "name": "318Ci MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209319, + "fields": { + "id_car_serie": 49904, + "name": "320Cd MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209320, + "fields": { + "id_car_serie": 49904, + "name": "320Ci AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209321, + "fields": { + "id_car_serie": 49904, + "name": "320Ci MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209322, + "fields": { + "id_car_serie": 49904, + "name": "325Ci AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209323, + "fields": { + "id_car_serie": 49904, + "name": "325Ci AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209324, + "fields": { + "id_car_serie": 49904, + "name": "325Ci MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209325, + "fields": { + "id_car_serie": 49904, + "name": "325Ci MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209326, + "fields": { + "id_car_serie": 49904, + "name": "330Cd AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209327, + "fields": { + "id_car_serie": 49904, + "name": "330Ci AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209328, + "fields": { + "id_car_serie": 49904, + "name": "330Ci AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209329, + "fields": { + "id_car_serie": 49904, + "name": "330Cd MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209330, + "fields": { + "id_car_serie": 49904, + "name": "330Ci MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209331, + "fields": { + "id_car_serie": 49904, + "name": "330Ci MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209332, + "fields": { + "id_car_serie": 49905, + "name": "318Ci AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209333, + "fields": { + "id_car_serie": 49905, + "name": "318Ci MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209334, + "fields": { + "id_car_serie": 49905, + "name": "320Cd MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209335, + "fields": { + "id_car_serie": 49905, + "name": "320Ci AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209336, + "fields": { + "id_car_serie": 49905, + "name": "320Ci MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209337, + "fields": { + "id_car_serie": 49905, + "name": "325Ci AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209338, + "fields": { + "id_car_serie": 49905, + "name": "325Ci AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209339, + "fields": { + "id_car_serie": 49905, + "name": "325Ci MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209340, + "fields": { + "id_car_serie": 49905, + "name": "325Ci MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209341, + "fields": { + "id_car_serie": 49905, + "name": "330Ci AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209342, + "fields": { + "id_car_serie": 49905, + "name": "330Ci AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209343, + "fields": { + "id_car_serie": 49905, + "name": "330Cd MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209344, + "fields": { + "id_car_serie": 49905, + "name": "330Ci MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209345, + "fields": { + "id_car_serie": 49905, + "name": "330Ci MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209346, + "fields": { + "id_car_serie": 49906, + "name": "316i AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209347, + "fields": { + "id_car_serie": 49906, + "name": "316i MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209348, + "fields": { + "id_car_serie": 49906, + "name": "318d AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209349, + "fields": { + "id_car_serie": 49906, + "name": "318i AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209350, + "fields": { + "id_car_serie": 49906, + "name": "320d AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209351, + "fields": { + "id_car_serie": 49906, + "name": "320d 6MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209352, + "fields": { + "id_car_serie": 49906, + "name": "318d MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209353, + "fields": { + "id_car_serie": 49906, + "name": "320d 5MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209354, + "fields": { + "id_car_serie": 49906, + "name": "318i MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209355, + "fields": { + "id_car_serie": 49906, + "name": "320i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209356, + "fields": { + "id_car_serie": 49906, + "name": "320i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209357, + "fields": { + "id_car_serie": 49906, + "name": "325i AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209358, + "fields": { + "id_car_serie": 49906, + "name": "325xi AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209359, + "fields": { + "id_car_serie": 49906, + "name": "325i AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209360, + "fields": { + "id_car_serie": 49906, + "name": "325xi AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209361, + "fields": { + "id_car_serie": 49906, + "name": "325xi MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209362, + "fields": { + "id_car_serie": 49906, + "name": "325xi MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209363, + "fields": { + "id_car_serie": 49906, + "name": "325i MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209364, + "fields": { + "id_car_serie": 49906, + "name": "325i MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209365, + "fields": { + "id_car_serie": 49906, + "name": "330d AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209366, + "fields": { + "id_car_serie": 49906, + "name": "330xd AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209367, + "fields": { + "id_car_serie": 49906, + "name": "330xd MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209368, + "fields": { + "id_car_serie": 49906, + "name": "330d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209369, + "fields": { + "id_car_serie": 49906, + "name": "330d AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209370, + "fields": { + "id_car_serie": 49906, + "name": "330i AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209371, + "fields": { + "id_car_serie": 49906, + "name": "330xd AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209372, + "fields": { + "id_car_serie": 49906, + "name": "330i AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209373, + "fields": { + "id_car_serie": 49906, + "name": "330xi AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209374, + "fields": { + "id_car_serie": 49906, + "name": "330xi AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209375, + "fields": { + "id_car_serie": 49906, + "name": "330xi 6MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209376, + "fields": { + "id_car_serie": 49906, + "name": "330i 5MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209377, + "fields": { + "id_car_serie": 49906, + "name": "330i 5MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209378, + "fields": { + "id_car_serie": 49906, + "name": "330i 6MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209379, + "fields": { + "id_car_serie": 49906, + "name": "330d MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209380, + "fields": { + "id_car_serie": 49906, + "name": "330i 6MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209381, + "fields": { + "id_car_serie": 49906, + "name": "330xi 5MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209382, + "fields": { + "id_car_serie": 49906, + "name": "330xi 5MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209383, + "fields": { + "id_car_serie": 49906, + "name": "330xi 6MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209384, + "fields": { + "id_car_serie": 49906, + "name": "330xd MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209385, + "fields": { + "id_car_serie": 49907, + "name": "316ti AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209386, + "fields": { + "id_car_serie": 49907, + "name": "316ti MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209387, + "fields": { + "id_car_serie": 49907, + "name": "320td AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209388, + "fields": { + "id_car_serie": 49907, + "name": "318ti AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209389, + "fields": { + "id_car_serie": 49907, + "name": "320td MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209390, + "fields": { + "id_car_serie": 49907, + "name": "318ti MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209391, + "fields": { + "id_car_serie": 49907, + "name": "325ti AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209392, + "fields": { + "id_car_serie": 49907, + "name": "325ti MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209393, + "fields": { + "id_car_serie": 49908, + "name": "318Ci AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209394, + "fields": { + "id_car_serie": 49908, + "name": "318Ci MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209395, + "fields": { + "id_car_serie": 49908, + "name": "318Ci AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209396, + "fields": { + "id_car_serie": 49908, + "name": "320Ci AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209397, + "fields": { + "id_car_serie": 49908, + "name": "318Ci MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209398, + "fields": { + "id_car_serie": 49908, + "name": "320Ci MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209399, + "fields": { + "id_car_serie": 49908, + "name": "320Ci AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209400, + "fields": { + "id_car_serie": 49908, + "name": "320Ci MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209401, + "fields": { + "id_car_serie": 49908, + "name": "323Ci AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209402, + "fields": { + "id_car_serie": 49908, + "name": "325Ci AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209403, + "fields": { + "id_car_serie": 49908, + "name": "325Ci AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209404, + "fields": { + "id_car_serie": 49908, + "name": "325Ci MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209405, + "fields": { + "id_car_serie": 49908, + "name": "323Ci MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209406, + "fields": { + "id_car_serie": 49908, + "name": "325Ci MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209407, + "fields": { + "id_car_serie": 49908, + "name": "328Ci AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209408, + "fields": { + "id_car_serie": 49908, + "name": "328Ci MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209409, + "fields": { + "id_car_serie": 49908, + "name": "330Ci AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209410, + "fields": { + "id_car_serie": 49908, + "name": "330Ci AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209411, + "fields": { + "id_car_serie": 49908, + "name": "330Ci MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209412, + "fields": { + "id_car_serie": 49908, + "name": "330Ci MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209413, + "fields": { + "id_car_serie": 49909, + "name": "318Ci AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209414, + "fields": { + "id_car_serie": 49909, + "name": "318Ci MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209415, + "fields": { + "id_car_serie": 49909, + "name": "320Ci AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209416, + "fields": { + "id_car_serie": 49909, + "name": "320Ci MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209417, + "fields": { + "id_car_serie": 49909, + "name": "325Ci AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209418, + "fields": { + "id_car_serie": 49909, + "name": "325Ci AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209419, + "fields": { + "id_car_serie": 49909, + "name": "323Ci AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209420, + "fields": { + "id_car_serie": 49909, + "name": "325Ci MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209421, + "fields": { + "id_car_serie": 49909, + "name": "325Ci MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209422, + "fields": { + "id_car_serie": 49909, + "name": "323Ci MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209423, + "fields": { + "id_car_serie": 49909, + "name": "330Ci AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209424, + "fields": { + "id_car_serie": 49909, + "name": "330Ci AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209425, + "fields": { + "id_car_serie": 49909, + "name": "330Ci MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209426, + "fields": { + "id_car_serie": 49909, + "name": "330Ci MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209427, + "fields": { + "id_car_serie": 49910, + "name": "318i AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209428, + "fields": { + "id_car_serie": 49910, + "name": "318i MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209429, + "fields": { + "id_car_serie": 49910, + "name": "320i AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209430, + "fields": { + "id_car_serie": 49910, + "name": "320d AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209431, + "fields": { + "id_car_serie": 49910, + "name": "320i MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209432, + "fields": { + "id_car_serie": 49910, + "name": "320d MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209433, + "fields": { + "id_car_serie": 49910, + "name": "320i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209434, + "fields": { + "id_car_serie": 49910, + "name": "320i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209435, + "fields": { + "id_car_serie": 49910, + "name": "325xi AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209436, + "fields": { + "id_car_serie": 49910, + "name": "323i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209437, + "fields": { + "id_car_serie": 49910, + "name": "325i AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209438, + "fields": { + "id_car_serie": 49910, + "name": "325i AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209439, + "fields": { + "id_car_serie": 49910, + "name": "325i MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209440, + "fields": { + "id_car_serie": 49910, + "name": "325i MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209441, + "fields": { + "id_car_serie": 49910, + "name": "323i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209442, + "fields": { + "id_car_serie": 49910, + "name": "325xi MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209443, + "fields": { + "id_car_serie": 49910, + "name": "328i AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209444, + "fields": { + "id_car_serie": 49910, + "name": "328i MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209445, + "fields": { + "id_car_serie": 49910, + "name": "330d AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209446, + "fields": { + "id_car_serie": 49910, + "name": "330xd AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209447, + "fields": { + "id_car_serie": 49910, + "name": "330xd MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209448, + "fields": { + "id_car_serie": 49910, + "name": "330d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209449, + "fields": { + "id_car_serie": 49910, + "name": "330i AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209450, + "fields": { + "id_car_serie": 49910, + "name": "330xi AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209451, + "fields": { + "id_car_serie": 49910, + "name": "330xi MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209452, + "fields": { + "id_car_serie": 49910, + "name": "330i MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209453, + "fields": { + "id_car_serie": 49911, + "name": "318i AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209454, + "fields": { + "id_car_serie": 49911, + "name": "316i AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209455, + "fields": { + "id_car_serie": 49911, + "name": "316i MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209456, + "fields": { + "id_car_serie": 49911, + "name": "318i MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209457, + "fields": { + "id_car_serie": 49911, + "name": "320i AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209458, + "fields": { + "id_car_serie": 49911, + "name": "320i MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209459, + "fields": { + "id_car_serie": 49911, + "name": "320d MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209460, + "fields": { + "id_car_serie": 49911, + "name": "320i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209461, + "fields": { + "id_car_serie": 49911, + "name": "320i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209462, + "fields": { + "id_car_serie": 49911, + "name": "325i AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209463, + "fields": { + "id_car_serie": 49911, + "name": "325xi AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209464, + "fields": { + "id_car_serie": 49911, + "name": "325i AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209465, + "fields": { + "id_car_serie": 49911, + "name": "323i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209466, + "fields": { + "id_car_serie": 49911, + "name": "325i MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209467, + "fields": { + "id_car_serie": 49911, + "name": "323i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209468, + "fields": { + "id_car_serie": 49911, + "name": "325i MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209469, + "fields": { + "id_car_serie": 49911, + "name": "325xi MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209470, + "fields": { + "id_car_serie": 49911, + "name": "328i AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209471, + "fields": { + "id_car_serie": 49911, + "name": "328i MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209472, + "fields": { + "id_car_serie": 49911, + "name": "330d AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209473, + "fields": { + "id_car_serie": 49911, + "name": "330xd AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209474, + "fields": { + "id_car_serie": 49911, + "name": "330d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209475, + "fields": { + "id_car_serie": 49911, + "name": "330xd MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209476, + "fields": { + "id_car_serie": 49911, + "name": "330xi AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209477, + "fields": { + "id_car_serie": 49911, + "name": "330xi AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209478, + "fields": { + "id_car_serie": 49911, + "name": "330i AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209479, + "fields": { + "id_car_serie": 49911, + "name": "330i AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209480, + "fields": { + "id_car_serie": 49911, + "name": "330i MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209481, + "fields": { + "id_car_serie": 49911, + "name": "330i MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209482, + "fields": { + "id_car_serie": 49911, + "name": "330xi MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209483, + "fields": { + "id_car_serie": 49911, + "name": "330xi MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209484, + "fields": { + "id_car_serie": 49912, + "name": "316i AT (100 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209486, + "fields": { + "id_car_serie": 49912, + "name": "316i AT (102 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209487, + "fields": { + "id_car_serie": 49912, + "name": "316i MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209488, + "fields": { + "id_car_serie": 49912, + "name": "316i MT (100 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209491, + "fields": { + "id_car_serie": 49912, + "name": "318tds MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209492, + "fields": { + "id_car_serie": 49912, + "name": "318i AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209493, + "fields": { + "id_car_serie": 49912, + "name": "318i AT (113 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209495, + "fields": { + "id_car_serie": 49912, + "name": "318i AT (116 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209496, + "fields": { + "id_car_serie": 49912, + "name": "318is AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209498, + "fields": { + "id_car_serie": 49912, + "name": "318is MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209499, + "fields": { + "id_car_serie": 49912, + "name": "318i MT (113 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209500, + "fields": { + "id_car_serie": 49912, + "name": "318i MT (116 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209503, + "fields": { + "id_car_serie": 49912, + "name": "318i MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209505, + "fields": { + "id_car_serie": 49912, + "name": "320i AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209509, + "fields": { + "id_car_serie": 49912, + "name": "320i MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209513, + "fields": { + "id_car_serie": 49912, + "name": "323i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209514, + "fields": { + "id_car_serie": 49912, + "name": "325i AT (192 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209517, + "fields": { + "id_car_serie": 49912, + "name": "325tds AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209518, + "fields": { + "id_car_serie": 49912, + "name": "325td AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209519, + "fields": { + "id_car_serie": 49912, + "name": "323i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209520, + "fields": { + "id_car_serie": 49912, + "name": "325i MT (192 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209521, + "fields": { + "id_car_serie": 49912, + "name": "325tds MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209522, + "fields": { + "id_car_serie": 49912, + "name": "325td MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209525, + "fields": { + "id_car_serie": 49912, + "name": "328i AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209526, + "fields": { + "id_car_serie": 49912, + "name": "328i MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209527, + "fields": { + "id_car_serie": 49913, + "name": "316i AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209528, + "fields": { + "id_car_serie": 49913, + "name": "316i MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209529, + "fields": { + "id_car_serie": 49913, + "name": "318is AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209531, + "fields": { + "id_car_serie": 49913, + "name": "318is MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209533, + "fields": { + "id_car_serie": 49913, + "name": "320i AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209536, + "fields": { + "id_car_serie": 49913, + "name": "320i MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209539, + "fields": { + "id_car_serie": 49913, + "name": "323i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209540, + "fields": { + "id_car_serie": 49913, + "name": "325i AT (192 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209542, + "fields": { + "id_car_serie": 49913, + "name": "325i MT (192 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209544, + "fields": { + "id_car_serie": 49913, + "name": "323i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209545, + "fields": { + "id_car_serie": 49913, + "name": "328i AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209546, + "fields": { + "id_car_serie": 49913, + "name": "328i MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209547, + "fields": { + "id_car_serie": 49914, + "name": "318i AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209548, + "fields": { + "id_car_serie": 49914, + "name": "318i AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209549, + "fields": { + "id_car_serie": 49914, + "name": "318i MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209550, + "fields": { + "id_car_serie": 49914, + "name": "318i MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209551, + "fields": { + "id_car_serie": 49914, + "name": "320i AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209553, + "fields": { + "id_car_serie": 49914, + "name": "320i MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209555, + "fields": { + "id_car_serie": 49914, + "name": "323i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209556, + "fields": { + "id_car_serie": 49914, + "name": "325i AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209557, + "fields": { + "id_car_serie": 49914, + "name": "323i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209558, + "fields": { + "id_car_serie": 49914, + "name": "325i MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209559, + "fields": { + "id_car_serie": 49914, + "name": "328i AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209560, + "fields": { + "id_car_serie": 49914, + "name": "328i MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209561, + "fields": { + "id_car_serie": 49915, + "name": "316i AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209562, + "fields": { + "id_car_serie": 49915, + "name": "316i MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209563, + "fields": { + "id_car_serie": 49915, + "name": "316g MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209564, + "fields": { + "id_car_serie": 49915, + "name": "318tds MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209565, + "fields": { + "id_car_serie": 49915, + "name": "318ti AT (140 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209567, + "fields": { + "id_car_serie": 49915, + "name": "318ti MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209569, + "fields": { + "id_car_serie": 49915, + "name": "316i AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209570, + "fields": { + "id_car_serie": 49915, + "name": "316i MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209571, + "fields": { + "id_car_serie": 49915, + "name": "323ti AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209572, + "fields": { + "id_car_serie": 49915, + "name": "323ti MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209573, + "fields": { + "id_car_serie": 49916, + "name": "316i AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209574, + "fields": { + "id_car_serie": 49916, + "name": "316i MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209575, + "fields": { + "id_car_serie": 49916, + "name": "318tds MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209576, + "fields": { + "id_car_serie": 49916, + "name": "318i AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209577, + "fields": { + "id_car_serie": 49916, + "name": "318i MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209578, + "fields": { + "id_car_serie": 49916, + "name": "320i AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209579, + "fields": { + "id_car_serie": 49916, + "name": "320i MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209580, + "fields": { + "id_car_serie": 49916, + "name": "325tds AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209581, + "fields": { + "id_car_serie": 49916, + "name": "323i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209582, + "fields": { + "id_car_serie": 49916, + "name": "325tds MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209583, + "fields": { + "id_car_serie": 49916, + "name": "323i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209584, + "fields": { + "id_car_serie": 49916, + "name": "328i AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209585, + "fields": { + "id_car_serie": 49916, + "name": "328i MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209586, + "fields": { + "id_car_serie": 49917, + "name": "316i AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209587, + "fields": { + "id_car_serie": 49917, + "name": "316i kat AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209588, + "fields": { + "id_car_serie": 49917, + "name": "316i kat MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209589, + "fields": { + "id_car_serie": 49917, + "name": "316i MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209590, + "fields": { + "id_car_serie": 49917, + "name": "318i AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209591, + "fields": { + "id_car_serie": 49917, + "name": "316 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209592, + "fields": { + "id_car_serie": 49917, + "name": "318i kat AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209593, + "fields": { + "id_car_serie": 49917, + "name": "316i AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209594, + "fields": { + "id_car_serie": 49917, + "name": "316 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209595, + "fields": { + "id_car_serie": 49917, + "name": "316i MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209596, + "fields": { + "id_car_serie": 49917, + "name": "318i kat MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209597, + "fields": { + "id_car_serie": 49917, + "name": "318i MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209598, + "fields": { + "id_car_serie": 49917, + "name": "318is MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209599, + "fields": { + "id_car_serie": 49917, + "name": "318i MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209600, + "fields": { + "id_car_serie": 49917, + "name": "320i kat AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209601, + "fields": { + "id_car_serie": 49917, + "name": "320i AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209602, + "fields": { + "id_car_serie": 49917, + "name": "320is MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209603, + "fields": { + "id_car_serie": 49917, + "name": "320i kat MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209604, + "fields": { + "id_car_serie": 49917, + "name": "320i MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209605, + "fields": { + "id_car_serie": 49917, + "name": "324td AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209606, + "fields": { + "id_car_serie": 49917, + "name": "324d AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209607, + "fields": { + "id_car_serie": 49917, + "name": "324td MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209608, + "fields": { + "id_car_serie": 49917, + "name": "324d MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209609, + "fields": { + "id_car_serie": 49917, + "name": "325i kat AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209610, + "fields": { + "id_car_serie": 49917, + "name": "325i AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209611, + "fields": { + "id_car_serie": 49917, + "name": "325ix kat AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209612, + "fields": { + "id_car_serie": 49917, + "name": "325ix AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209613, + "fields": { + "id_car_serie": 49917, + "name": "325is AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209614, + "fields": { + "id_car_serie": 49917, + "name": "325is MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209615, + "fields": { + "id_car_serie": 49917, + "name": "325i kat MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209616, + "fields": { + "id_car_serie": 49917, + "name": "325ix MT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209617, + "fields": { + "id_car_serie": 49917, + "name": "325ix kat MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209618, + "fields": { + "id_car_serie": 49917, + "name": "325i MT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209619, + "fields": { + "id_car_serie": 49917, + "name": "325 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209620, + "fields": { + "id_car_serie": 49917, + "name": "325 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209621, + "fields": { + "id_car_serie": 49918, + "name": "316i AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209622, + "fields": { + "id_car_serie": 49918, + "name": "316i kat AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209623, + "fields": { + "id_car_serie": 49918, + "name": "316i kat MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209624, + "fields": { + "id_car_serie": 49918, + "name": "316i MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209625, + "fields": { + "id_car_serie": 49918, + "name": "316i AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209626, + "fields": { + "id_car_serie": 49918, + "name": "316 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209627, + "fields": { + "id_car_serie": 49918, + "name": "318i kat AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209628, + "fields": { + "id_car_serie": 49918, + "name": "318i AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209629, + "fields": { + "id_car_serie": 49918, + "name": "318i MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209630, + "fields": { + "id_car_serie": 49918, + "name": "318is MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209631, + "fields": { + "id_car_serie": 49918, + "name": "316 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209632, + "fields": { + "id_car_serie": 49918, + "name": "316i MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209633, + "fields": { + "id_car_serie": 49918, + "name": "318i kat MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209634, + "fields": { + "id_car_serie": 49918, + "name": "318i MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209635, + "fields": { + "id_car_serie": 49918, + "name": "320i AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209636, + "fields": { + "id_car_serie": 49918, + "name": "320i kat AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209637, + "fields": { + "id_car_serie": 49918, + "name": "320is MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209638, + "fields": { + "id_car_serie": 49918, + "name": "320i kat MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209639, + "fields": { + "id_car_serie": 49918, + "name": "320i MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209640, + "fields": { + "id_car_serie": 49918, + "name": "324d AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209641, + "fields": { + "id_car_serie": 49918, + "name": "324td AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209642, + "fields": { + "id_car_serie": 49918, + "name": "324td MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209643, + "fields": { + "id_car_serie": 49918, + "name": "324d MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209644, + "fields": { + "id_car_serie": 49918, + "name": "325i AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209645, + "fields": { + "id_car_serie": 49918, + "name": "325ix AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209646, + "fields": { + "id_car_serie": 49918, + "name": "325i kat AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209647, + "fields": { + "id_car_serie": 49918, + "name": "325ix kat AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209648, + "fields": { + "id_car_serie": 49918, + "name": "325is AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209649, + "fields": { + "id_car_serie": 49918, + "name": "325is MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209650, + "fields": { + "id_car_serie": 49918, + "name": "325ix kat MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209651, + "fields": { + "id_car_serie": 49918, + "name": "325i MT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209652, + "fields": { + "id_car_serie": 49918, + "name": "325i kat MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209653, + "fields": { + "id_car_serie": 49918, + "name": "325ix MT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209654, + "fields": { + "id_car_serie": 49918, + "name": "325 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209655, + "fields": { + "id_car_serie": 49918, + "name": "325 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209656, + "fields": { + "id_car_serie": 49919, + "name": "318i AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209657, + "fields": { + "id_car_serie": 49919, + "name": "318i MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209658, + "fields": { + "id_car_serie": 49919, + "name": "320i AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209659, + "fields": { + "id_car_serie": 49919, + "name": "320i MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209660, + "fields": { + "id_car_serie": 49919, + "name": "325i kat AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209661, + "fields": { + "id_car_serie": 49919, + "name": "325i kat MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209662, + "fields": { + "id_car_serie": 49920, + "name": "316i AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209663, + "fields": { + "id_car_serie": 49920, + "name": "316i MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209664, + "fields": { + "id_car_serie": 49920, + "name": "318i kat AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209665, + "fields": { + "id_car_serie": 49920, + "name": "318i AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209666, + "fields": { + "id_car_serie": 49920, + "name": "318i MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209667, + "fields": { + "id_car_serie": 49920, + "name": "318i kat MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209668, + "fields": { + "id_car_serie": 49920, + "name": "320i AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209669, + "fields": { + "id_car_serie": 49920, + "name": "320i MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209670, + "fields": { + "id_car_serie": 49920, + "name": "324td AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209671, + "fields": { + "id_car_serie": 49920, + "name": "324td MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209672, + "fields": { + "id_car_serie": 49920, + "name": "325ix AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209673, + "fields": { + "id_car_serie": 49920, + "name": "325i kat AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209674, + "fields": { + "id_car_serie": 49920, + "name": "325i AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209675, + "fields": { + "id_car_serie": 49920, + "name": "325i kat MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209676, + "fields": { + "id_car_serie": 49920, + "name": "325i MT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209677, + "fields": { + "id_car_serie": 49920, + "name": "325ix MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209678, + "fields": { + "id_car_serie": 49921, + "name": "318i 4AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209679, + "fields": { + "id_car_serie": 49921, + "name": "316 4AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209680, + "fields": { + "id_car_serie": 49921, + "name": "316 3AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209681, + "fields": { + "id_car_serie": 49921, + "name": "318i kat AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209682, + "fields": { + "id_car_serie": 49921, + "name": "318i 3AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209683, + "fields": { + "id_car_serie": 49921, + "name": "318i 3AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209684, + "fields": { + "id_car_serie": 49921, + "name": "318i 4AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209685, + "fields": { + "id_car_serie": 49921, + "name": "318i 4MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209686, + "fields": { + "id_car_serie": 49921, + "name": "316 4MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209687, + "fields": { + "id_car_serie": 49921, + "name": "316 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209688, + "fields": { + "id_car_serie": 49921, + "name": "318i 5MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209689, + "fields": { + "id_car_serie": 49921, + "name": "318i kat MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209690, + "fields": { + "id_car_serie": 49921, + "name": "318i MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209691, + "fields": { + "id_car_serie": 49921, + "name": "320i 3AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209692, + "fields": { + "id_car_serie": 49921, + "name": "320i 4AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209693, + "fields": { + "id_car_serie": 49921, + "name": "320i AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209694, + "fields": { + "id_car_serie": 49921, + "name": "320i kat AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209695, + "fields": { + "id_car_serie": 49921, + "name": "320i MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209696, + "fields": { + "id_car_serie": 49921, + "name": "320i kat MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209697, + "fields": { + "id_car_serie": 49921, + "name": "320i MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209698, + "fields": { + "id_car_serie": 49921, + "name": "323i 4AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209699, + "fields": { + "id_car_serie": 49921, + "name": "323i AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209700, + "fields": { + "id_car_serie": 49921, + "name": "323i 3AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209701, + "fields": { + "id_car_serie": 49921, + "name": "323i MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209702, + "fields": { + "id_car_serie": 49921, + "name": "323i MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209703, + "fields": { + "id_car_serie": 49921, + "name": "324d AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209704, + "fields": { + "id_car_serie": 49921, + "name": "324d MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209705, + "fields": { + "id_car_serie": 49921, + "name": "325ix AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209706, + "fields": { + "id_car_serie": 49921, + "name": "325ix kat AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209707, + "fields": { + "id_car_serie": 49921, + "name": "325i AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209708, + "fields": { + "id_car_serie": 49921, + "name": "325i kat AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209709, + "fields": { + "id_car_serie": 49921, + "name": "325ix MT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209710, + "fields": { + "id_car_serie": 49921, + "name": "325i kat MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209711, + "fields": { + "id_car_serie": 49921, + "name": "325i MT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209712, + "fields": { + "id_car_serie": 49921, + "name": "325ix kat MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209713, + "fields": { + "id_car_serie": 49921, + "name": "325e AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209714, + "fields": { + "id_car_serie": 49921, + "name": "325e MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209715, + "fields": { + "id_car_serie": 49922, + "name": "318i 3AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209716, + "fields": { + "id_car_serie": 49922, + "name": "318i 4AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209717, + "fields": { + "id_car_serie": 49922, + "name": "316 4AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209718, + "fields": { + "id_car_serie": 49922, + "name": "318i kat AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209719, + "fields": { + "id_car_serie": 49922, + "name": "318i 4AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209720, + "fields": { + "id_car_serie": 49922, + "name": "318i 3AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209721, + "fields": { + "id_car_serie": 49922, + "name": "316 3AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209722, + "fields": { + "id_car_serie": 49922, + "name": "316 4MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209723, + "fields": { + "id_car_serie": 49922, + "name": "318i 4MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209724, + "fields": { + "id_car_serie": 49922, + "name": "318i MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209725, + "fields": { + "id_car_serie": 49922, + "name": "318i kat MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209726, + "fields": { + "id_car_serie": 49922, + "name": "316 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209727, + "fields": { + "id_car_serie": 49922, + "name": "318i 5MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209728, + "fields": { + "id_car_serie": 49922, + "name": "320i kat AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209729, + "fields": { + "id_car_serie": 49922, + "name": "320i 3AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209730, + "fields": { + "id_car_serie": 49922, + "name": "320i 4AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209731, + "fields": { + "id_car_serie": 49922, + "name": "320i AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209732, + "fields": { + "id_car_serie": 49922, + "name": "320i MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209733, + "fields": { + "id_car_serie": 49922, + "name": "320i kat MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209734, + "fields": { + "id_car_serie": 49922, + "name": "320i MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209735, + "fields": { + "id_car_serie": 49922, + "name": "323i 4AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209736, + "fields": { + "id_car_serie": 49922, + "name": "323i 3AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209737, + "fields": { + "id_car_serie": 49922, + "name": "323i AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209738, + "fields": { + "id_car_serie": 49922, + "name": "323i MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209739, + "fields": { + "id_car_serie": 49922, + "name": "323i MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209740, + "fields": { + "id_car_serie": 49922, + "name": "324d AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209741, + "fields": { + "id_car_serie": 49922, + "name": "324d MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209742, + "fields": { + "id_car_serie": 49922, + "name": "325ix kat AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209743, + "fields": { + "id_car_serie": 49922, + "name": "325i AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209744, + "fields": { + "id_car_serie": 49922, + "name": "325ix AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209745, + "fields": { + "id_car_serie": 49922, + "name": "325i kat AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209746, + "fields": { + "id_car_serie": 49922, + "name": "325i MT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209747, + "fields": { + "id_car_serie": 49922, + "name": "325i kat MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209748, + "fields": { + "id_car_serie": 49922, + "name": "325ix MT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209749, + "fields": { + "id_car_serie": 49922, + "name": "325ix kat MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209750, + "fields": { + "id_car_serie": 49922, + "name": "325e AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209751, + "fields": { + "id_car_serie": 49922, + "name": "325e MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209756, + "fields": { + "id_car_serie": 49923, + "name": "325i AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209757, + "fields": { + "id_car_serie": 49923, + "name": "325i kat AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209758, + "fields": { + "id_car_serie": 49923, + "name": "325i MT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209759, + "fields": { + "id_car_serie": 49923, + "name": "325i kat MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209760, + "fields": { + "id_car_serie": 49924, + "name": "316 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209761, + "fields": { + "id_car_serie": 49924, + "name": "315 4MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209762, + "fields": { + "id_car_serie": 49924, + "name": "316 4MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209763, + "fields": { + "id_car_serie": 49924, + "name": "315 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209764, + "fields": { + "id_car_serie": 49924, + "name": "316 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209765, + "fields": { + "id_car_serie": 49924, + "name": "318 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209766, + "fields": { + "id_car_serie": 49924, + "name": "318i AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209768, + "fields": { + "id_car_serie": 49924, + "name": "318i 4MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209769, + "fields": { + "id_car_serie": 49924, + "name": "318i 5MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209771, + "fields": { + "id_car_serie": 49924, + "name": "318 5MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209772, + "fields": { + "id_car_serie": 49924, + "name": "318 4MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209773, + "fields": { + "id_car_serie": 49924, + "name": "320 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209774, + "fields": { + "id_car_serie": 49924, + "name": "320i AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209775, + "fields": { + "id_car_serie": 49924, + "name": "320 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209776, + "fields": { + "id_car_serie": 49924, + "name": "320 5MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209777, + "fields": { + "id_car_serie": 49924, + "name": "320i 5MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209778, + "fields": { + "id_car_serie": 49924, + "name": "320i 4MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209779, + "fields": { + "id_car_serie": 49924, + "name": "320 5MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209780, + "fields": { + "id_car_serie": 49924, + "name": "320 4MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209781, + "fields": { + "id_car_serie": 49924, + "name": "320 4MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209782, + "fields": { + "id_car_serie": 49924, + "name": "323i AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209783, + "fields": { + "id_car_serie": 49924, + "name": "323i 4MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209784, + "fields": { + "id_car_serie": 49924, + "name": "323i 5MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209785, + "fields": { + "id_car_serie": 49925, + "name": "420i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209786, + "fields": { + "id_car_serie": 49925, + "name": "420i xDrive Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209787, + "fields": { + "id_car_serie": 49925, + "name": "420d Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209788, + "fields": { + "id_car_serie": 49925, + "name": "420d xDrive Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209789, + "fields": { + "id_car_serie": 49925, + "name": "428i xDrive Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209790, + "fields": { + "id_car_serie": 49925, + "name": "428i Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209791, + "fields": { + "id_car_serie": 49925, + "name": "420d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209792, + "fields": { + "id_car_serie": 49925, + "name": "428i xDrive MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209793, + "fields": { + "id_car_serie": 49925, + "name": "428i MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209794, + "fields": { + "id_car_serie": 49925, + "name": "420i xDrive MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209795, + "fields": { + "id_car_serie": 49925, + "name": "420i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209796, + "fields": { + "id_car_serie": 49925, + "name": "420d xDrive MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209797, + "fields": { + "id_car_serie": 49925, + "name": "435i xDrive Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209798, + "fields": { + "id_car_serie": 49925, + "name": "430d Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209799, + "fields": { + "id_car_serie": 49925, + "name": "435i Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209800, + "fields": { + "id_car_serie": 49925, + "name": "435d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209801, + "fields": { + "id_car_serie": 49925, + "name": "435i xDrive MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209802, + "fields": { + "id_car_serie": 49925, + "name": "435i MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209803, + "fields": { + "id_car_serie": 49926, + "name": "420i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209804, + "fields": { + "id_car_serie": 49926, + "name": "420d xDrive Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209805, + "fields": { + "id_car_serie": 49926, + "name": "428i xDrive Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209806, + "fields": { + "id_car_serie": 49926, + "name": "420d Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209807, + "fields": { + "id_car_serie": 49926, + "name": "418d Steptronic (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209808, + "fields": { + "id_car_serie": 49926, + "name": "428i Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209809, + "fields": { + "id_car_serie": 49926, + "name": "428i MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209810, + "fields": { + "id_car_serie": 49926, + "name": "420d xDrive MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209811, + "fields": { + "id_car_serie": 49926, + "name": "420d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209812, + "fields": { + "id_car_serie": 49926, + "name": "418d MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209813, + "fields": { + "id_car_serie": 49926, + "name": "420i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209814, + "fields": { + "id_car_serie": 49926, + "name": "428i xDrive MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209815, + "fields": { + "id_car_serie": 49926, + "name": "435i Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209816, + "fields": { + "id_car_serie": 49926, + "name": "435i MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209817, + "fields": { + "id_car_serie": 49927, + "name": "420d Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209818, + "fields": { + "id_car_serie": 49927, + "name": "428i Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209819, + "fields": { + "id_car_serie": 49927, + "name": "425d Steptronic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209820, + "fields": { + "id_car_serie": 49927, + "name": "420i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209821, + "fields": { + "id_car_serie": 49927, + "name": "420d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209822, + "fields": { + "id_car_serie": 49927, + "name": "425d MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209823, + "fields": { + "id_car_serie": 49927, + "name": "420i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209824, + "fields": { + "id_car_serie": 49927, + "name": "428i MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209825, + "fields": { + "id_car_serie": 49927, + "name": "435i Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209826, + "fields": { + "id_car_serie": 49927, + "name": "435d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209827, + "fields": { + "id_car_serie": 49927, + "name": "435i xDrive Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209828, + "fields": { + "id_car_serie": 49927, + "name": "430d Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209829, + "fields": { + "id_car_serie": 49927, + "name": "435i MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209830, + "fields": { + "id_car_serie": 49928, + "name": "528i xDrive Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209831, + "fields": { + "id_car_serie": 49928, + "name": "520i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209832, + "fields": { + "id_car_serie": 49928, + "name": "518d Steptronic (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209833, + "fields": { + "id_car_serie": 49928, + "name": "528i Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209834, + "fields": { + "id_car_serie": 49928, + "name": "525d Steptronic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209835, + "fields": { + "id_car_serie": 49928, + "name": "520d xDrive Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209836, + "fields": { + "id_car_serie": 49928, + "name": "520d Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209837, + "fields": { + "id_car_serie": 49928, + "name": "525d xDrive Steptronic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209838, + "fields": { + "id_car_serie": 49928, + "name": "518d MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209839, + "fields": { + "id_car_serie": 49928, + "name": "520d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209840, + "fields": { + "id_car_serie": 49928, + "name": "525d MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209841, + "fields": { + "id_car_serie": 49928, + "name": "520i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209842, + "fields": { + "id_car_serie": 49928, + "name": "528i MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209843, + "fields": { + "id_car_serie": 49928, + "name": "M550d xDrive Steptronic (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209844, + "fields": { + "id_car_serie": 49928, + "name": "530d Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209845, + "fields": { + "id_car_serie": 49928, + "name": "535d Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209846, + "fields": { + "id_car_serie": 49928, + "name": "530d xDrive Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209847, + "fields": { + "id_car_serie": 49928, + "name": "535d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209848, + "fields": { + "id_car_serie": 49928, + "name": "535i Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209849, + "fields": { + "id_car_serie": 49928, + "name": "535i xDrive Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209850, + "fields": { + "id_car_serie": 49928, + "name": "535i MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209851, + "fields": { + "id_car_serie": 49928, + "name": "550i Steptronic (449 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209852, + "fields": { + "id_car_serie": 49929, + "name": "520d Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209853, + "fields": { + "id_car_serie": 49929, + "name": "530d Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209854, + "fields": { + "id_car_serie": 49929, + "name": "530d xDrive Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209855, + "fields": { + "id_car_serie": 49929, + "name": "535i xDrive Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209856, + "fields": { + "id_car_serie": 49929, + "name": "535d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209857, + "fields": { + "id_car_serie": 49929, + "name": "535i Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209858, + "fields": { + "id_car_serie": 49929, + "name": "535d Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209859, + "fields": { + "id_car_serie": 49929, + "name": "550i xDrive Steptronic (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209860, + "fields": { + "id_car_serie": 49929, + "name": "550i Steptronic (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209861, + "fields": { + "id_car_serie": 49930, + "name": "520i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209862, + "fields": { + "id_car_serie": 49930, + "name": "520d Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209863, + "fields": { + "id_car_serie": 49930, + "name": "528i xDrive Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209864, + "fields": { + "id_car_serie": 49930, + "name": "528i Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209865, + "fields": { + "id_car_serie": 49930, + "name": "518d Steptronic (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209866, + "fields": { + "id_car_serie": 49930, + "name": "525d Steptronic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209867, + "fields": { + "id_car_serie": 49930, + "name": "520d xDrive Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209868, + "fields": { + "id_car_serie": 49930, + "name": "525d xDrive Steptronic (218 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209869, + "fields": { + "id_car_serie": 49930, + "name": "518d Steptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209870, + "fields": { + "id_car_serie": 49930, + "name": "520d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209871, + "fields": { + "id_car_serie": 49930, + "name": "520d xDrive Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209872, + "fields": { + "id_car_serie": 49930, + "name": "528i MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209873, + "fields": { + "id_car_serie": 49930, + "name": "518d MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209874, + "fields": { + "id_car_serie": 49930, + "name": "525d MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209875, + "fields": { + "id_car_serie": 49930, + "name": "518d MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209876, + "fields": { + "id_car_serie": 49930, + "name": "520d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209877, + "fields": { + "id_car_serie": 49930, + "name": "520i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209878, + "fields": { + "id_car_serie": 49930, + "name": "520d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209879, + "fields": { + "id_car_serie": 49930, + "name": "535i xDrive Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209880, + "fields": { + "id_car_serie": 49930, + "name": "530d xDrive Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209881, + "fields": { + "id_car_serie": 49930, + "name": "M550d xDrive Steptronic (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209882, + "fields": { + "id_car_serie": 49930, + "name": "535d Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209883, + "fields": { + "id_car_serie": 49930, + "name": "ActiveHybrid 5 Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209884, + "fields": { + "id_car_serie": 49930, + "name": "535d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209885, + "fields": { + "id_car_serie": 49930, + "name": "535i Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209886, + "fields": { + "id_car_serie": 49930, + "name": "530d Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209887, + "fields": { + "id_car_serie": 49930, + "name": "535i MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209888, + "fields": { + "id_car_serie": 49930, + "name": "550i xDrive Steptronic (449 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209889, + "fields": { + "id_car_serie": 49930, + "name": "550i Steptronic (449 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209890, + "fields": { + "id_car_serie": 49931, + "name": "535d Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209891, + "fields": { + "id_car_serie": 49931, + "name": "535d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209892, + "fields": { + "id_car_serie": 49931, + "name": "535d xDrive Steptronic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209893, + "fields": { + "id_car_serie": 49931, + "name": "530d Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209894, + "fields": { + "id_car_serie": 49931, + "name": "535i Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209895, + "fields": { + "id_car_serie": 49931, + "name": "535i xDrive Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209896, + "fields": { + "id_car_serie": 49931, + "name": "530d xDrive Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209897, + "fields": { + "id_car_serie": 49931, + "name": "535d Steptronic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209898, + "fields": { + "id_car_serie": 49931, + "name": "530d Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209899, + "fields": { + "id_car_serie": 49931, + "name": "530d xDrive Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209900, + "fields": { + "id_car_serie": 49931, + "name": "550i xDrive Steptronic (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209901, + "fields": { + "id_car_serie": 49931, + "name": "550i Steptronic (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209902, + "fields": { + "id_car_serie": 49931, + "name": "550i xDrive Steptronic (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209903, + "fields": { + "id_car_serie": 49931, + "name": "550i Steptronic (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209904, + "fields": { + "id_car_serie": 49932, + "name": "525d xDrive Steptronic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209905, + "fields": { + "id_car_serie": 49932, + "name": "528i Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209906, + "fields": { + "id_car_serie": 49932, + "name": "528i xDrive Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209907, + "fields": { + "id_car_serie": 49932, + "name": "520d Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209908, + "fields": { + "id_car_serie": 49932, + "name": "525d Steptronic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209909, + "fields": { + "id_car_serie": 49932, + "name": "528i xDrive Steptronic (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209910, + "fields": { + "id_car_serie": 49932, + "name": "528i Steptronic (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209911, + "fields": { + "id_car_serie": 49932, + "name": "520i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209912, + "fields": { + "id_car_serie": 49932, + "name": "525d MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209913, + "fields": { + "id_car_serie": 49932, + "name": "520d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209914, + "fields": { + "id_car_serie": 49932, + "name": "520d EfficientDynamics Edition MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209915, + "fields": { + "id_car_serie": 49932, + "name": "520i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209916, + "fields": { + "id_car_serie": 49932, + "name": "528i MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209917, + "fields": { + "id_car_serie": 49932, + "name": "523i Steptronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209918, + "fields": { + "id_car_serie": 49932, + "name": "525d Steptronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209919, + "fields": { + "id_car_serie": 49932, + "name": "530d Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209920, + "fields": { + "id_car_serie": 49932, + "name": "535d Steptronic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209921, + "fields": { + "id_car_serie": 49932, + "name": "535i Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209922, + "fields": { + "id_car_serie": 49932, + "name": "530d xDrive Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209923, + "fields": { + "id_car_serie": 49932, + "name": "535i xDrive Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209924, + "fields": { + "id_car_serie": 49932, + "name": "M550d xDrive Steptronic (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209925, + "fields": { + "id_car_serie": 49932, + "name": "535d Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209926, + "fields": { + "id_car_serie": 49932, + "name": "535d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209927, + "fields": { + "id_car_serie": 49932, + "name": "523i Steptronic EU (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209928, + "fields": { + "id_car_serie": 49932, + "name": "528i Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209929, + "fields": { + "id_car_serie": 49932, + "name": "530i Steptronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209930, + "fields": { + "id_car_serie": 49932, + "name": "530d Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209931, + "fields": { + "id_car_serie": 49932, + "name": "535i Steptronic (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209932, + "fields": { + "id_car_serie": 49932, + "name": "535i xDrive Steptronic (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209933, + "fields": { + "id_car_serie": 49932, + "name": "ActiveHybrid 5 Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209934, + "fields": { + "id_car_serie": 49932, + "name": "530d MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209935, + "fields": { + "id_car_serie": 49932, + "name": "523i MT EU (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209936, + "fields": { + "id_car_serie": 49932, + "name": "528i MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209937, + "fields": { + "id_car_serie": 49932, + "name": "535i MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209938, + "fields": { + "id_car_serie": 49932, + "name": "530i MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209939, + "fields": { + "id_car_serie": 49932, + "name": "525d MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209940, + "fields": { + "id_car_serie": 49932, + "name": "535i MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209941, + "fields": { + "id_car_serie": 49932, + "name": "530d MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209942, + "fields": { + "id_car_serie": 49932, + "name": "550i xDrive Steptronic (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209943, + "fields": { + "id_car_serie": 49932, + "name": "550i xDrive Steptronic (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209944, + "fields": { + "id_car_serie": 49932, + "name": "550i Steptronic (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209945, + "fields": { + "id_car_serie": 49932, + "name": "550i Steptronic (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209946, + "fields": { + "id_car_serie": 49932, + "name": "550i MT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209947, + "fields": { + "id_car_serie": 49933, + "name": "520d Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209948, + "fields": { + "id_car_serie": 49933, + "name": "520i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209949, + "fields": { + "id_car_serie": 49933, + "name": "525d xDrive Steptronic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209950, + "fields": { + "id_car_serie": 49933, + "name": "525d Steptronic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209951, + "fields": { + "id_car_serie": 49933, + "name": "528i xDrive Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209952, + "fields": { + "id_car_serie": 49933, + "name": "528i Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209953, + "fields": { + "id_car_serie": 49933, + "name": "528i MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209954, + "fields": { + "id_car_serie": 49933, + "name": "525d MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209955, + "fields": { + "id_car_serie": 49933, + "name": "520d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209956, + "fields": { + "id_car_serie": 49933, + "name": "520i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209957, + "fields": { + "id_car_serie": 49933, + "name": "M550d xDrive Steptronic (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209958, + "fields": { + "id_car_serie": 49933, + "name": "530d xDrive Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209959, + "fields": { + "id_car_serie": 49933, + "name": "535i xDrive Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209960, + "fields": { + "id_car_serie": 49933, + "name": "528i Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209961, + "fields": { + "id_car_serie": 49933, + "name": "535i Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209962, + "fields": { + "id_car_serie": 49933, + "name": "525d Steptronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209963, + "fields": { + "id_car_serie": 49933, + "name": "530d Steptronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209964, + "fields": { + "id_car_serie": 49933, + "name": "535d Steptronic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209966, + "fields": { + "id_car_serie": 49933, + "name": "530d Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209967, + "fields": { + "id_car_serie": 49933, + "name": "535d Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209968, + "fields": { + "id_car_serie": 49933, + "name": "530i Steptronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209969, + "fields": { + "id_car_serie": 49933, + "name": "535d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209970, + "fields": { + "id_car_serie": 49933, + "name": "523i Steptronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209971, + "fields": { + "id_car_serie": 49933, + "name": "528i MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209972, + "fields": { + "id_car_serie": 49933, + "name": "523i MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209973, + "fields": { + "id_car_serie": 49933, + "name": "530d MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209974, + "fields": { + "id_car_serie": 49933, + "name": "530d MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209975, + "fields": { + "id_car_serie": 49933, + "name": "525d MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209976, + "fields": { + "id_car_serie": 49933, + "name": "535i MT (306 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209977, + "fields": { + "id_car_serie": 49933, + "name": "530i MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209979, + "fields": { + "id_car_serie": 49933, + "name": "550i Steptronic (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209980, + "fields": { + "id_car_serie": 49934, + "name": "520d AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209981, + "fields": { + "id_car_serie": 49934, + "name": "520i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209982, + "fields": { + "id_car_serie": 49934, + "name": "520d MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209983, + "fields": { + "id_car_serie": 49934, + "name": "520i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209984, + "fields": { + "id_car_serie": 49934, + "name": "523i AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209985, + "fields": { + "id_car_serie": 49934, + "name": "523i MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209986, + "fields": { + "id_car_serie": 49934, + "name": "535i xDrive AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209987, + "fields": { + "id_car_serie": 49934, + "name": "525i AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209988, + "fields": { + "id_car_serie": 49934, + "name": "530i AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209989, + "fields": { + "id_car_serie": 49934, + "name": "525d AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209990, + "fields": { + "id_car_serie": 49934, + "name": "530d AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209991, + "fields": { + "id_car_serie": 49934, + "name": "535d AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209992, + "fields": { + "id_car_serie": 49934, + "name": "525xi AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209993, + "fields": { + "id_car_serie": 49934, + "name": "530xi AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209994, + "fields": { + "id_car_serie": 49934, + "name": "525xd AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209995, + "fields": { + "id_car_serie": 49934, + "name": "530xd AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209996, + "fields": { + "id_car_serie": 49934, + "name": "535i xDrive MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209997, + "fields": { + "id_car_serie": 49934, + "name": "525xi MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209998, + "fields": { + "id_car_serie": 49934, + "name": "530xd MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 209999, + "fields": { + "id_car_serie": 49934, + "name": "530xi MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210000, + "fields": { + "id_car_serie": 49934, + "name": "530d MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210001, + "fields": { + "id_car_serie": 49934, + "name": "525xd MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210002, + "fields": { + "id_car_serie": 49934, + "name": "530i MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210003, + "fields": { + "id_car_serie": 49934, + "name": "525d MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210004, + "fields": { + "id_car_serie": 49934, + "name": "525i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210005, + "fields": { + "id_car_serie": 49934, + "name": "550i AT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210006, + "fields": { + "id_car_serie": 49934, + "name": "550i MT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210007, + "fields": { + "id_car_serie": 49935, + "name": "520d AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210008, + "fields": { + "id_car_serie": 49935, + "name": "520i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210009, + "fields": { + "id_car_serie": 49935, + "name": "520d MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210010, + "fields": { + "id_car_serie": 49935, + "name": "520i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210011, + "fields": { + "id_car_serie": 49935, + "name": "523i AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210012, + "fields": { + "id_car_serie": 49935, + "name": "523i MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210013, + "fields": { + "id_car_serie": 49935, + "name": "535i xDrive AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210014, + "fields": { + "id_car_serie": 49935, + "name": "525i AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210015, + "fields": { + "id_car_serie": 49935, + "name": "530i AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210016, + "fields": { + "id_car_serie": 49935, + "name": "525d AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210017, + "fields": { + "id_car_serie": 49935, + "name": "530d AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210018, + "fields": { + "id_car_serie": 49935, + "name": "535d AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210019, + "fields": { + "id_car_serie": 49935, + "name": "525xi AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210020, + "fields": { + "id_car_serie": 49935, + "name": "530xi AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210021, + "fields": { + "id_car_serie": 49935, + "name": "525xd AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210022, + "fields": { + "id_car_serie": 49935, + "name": "530xd AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210023, + "fields": { + "id_car_serie": 49935, + "name": "528i AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210024, + "fields": { + "id_car_serie": 49935, + "name": "535i AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210025, + "fields": { + "id_car_serie": 49935, + "name": "528i xDrive AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210026, + "fields": { + "id_car_serie": 49935, + "name": "525xi MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210027, + "fields": { + "id_car_serie": 49935, + "name": "535i xDrive MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210028, + "fields": { + "id_car_serie": 49935, + "name": "530xi MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210029, + "fields": { + "id_car_serie": 49935, + "name": "530i MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210030, + "fields": { + "id_car_serie": 49935, + "name": "525d MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210031, + "fields": { + "id_car_serie": 49935, + "name": "528i MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210032, + "fields": { + "id_car_serie": 49935, + "name": "530d MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210033, + "fields": { + "id_car_serie": 49935, + "name": "525i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210034, + "fields": { + "id_car_serie": 49935, + "name": "535i MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210035, + "fields": { + "id_car_serie": 49935, + "name": "525xd MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210036, + "fields": { + "id_car_serie": 49935, + "name": "530xd MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210037, + "fields": { + "id_car_serie": 49935, + "name": "528i xDrive MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210038, + "fields": { + "id_car_serie": 49935, + "name": "540i AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210039, + "fields": { + "id_car_serie": 49935, + "name": "540i MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210040, + "fields": { + "id_car_serie": 49935, + "name": "550i AT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210041, + "fields": { + "id_car_serie": 49935, + "name": "550i AT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210042, + "fields": { + "id_car_serie": 49935, + "name": "550i MT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210043, + "fields": { + "id_car_serie": 49936, + "name": "520d AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210044, + "fields": { + "id_car_serie": 49936, + "name": "520d MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210045, + "fields": { + "id_car_serie": 49936, + "name": "525i AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210046, + "fields": { + "id_car_serie": 49936, + "name": "525d AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210047, + "fields": { + "id_car_serie": 49936, + "name": "525xi AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210048, + "fields": { + "id_car_serie": 49936, + "name": "523i AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210049, + "fields": { + "id_car_serie": 49936, + "name": "525i AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210050, + "fields": { + "id_car_serie": 49936, + "name": "525i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210051, + "fields": { + "id_car_serie": 49936, + "name": "525d MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210052, + "fields": { + "id_car_serie": 49936, + "name": "525xi MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210053, + "fields": { + "id_car_serie": 49936, + "name": "525i MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210054, + "fields": { + "id_car_serie": 49936, + "name": "523i MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210055, + "fields": { + "id_car_serie": 49936, + "name": "530xd AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210056, + "fields": { + "id_car_serie": 49936, + "name": "530d AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210057, + "fields": { + "id_car_serie": 49936, + "name": "535d AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210058, + "fields": { + "id_car_serie": 49936, + "name": "530i AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210059, + "fields": { + "id_car_serie": 49936, + "name": "530d AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210060, + "fields": { + "id_car_serie": 49936, + "name": "530xi AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210061, + "fields": { + "id_car_serie": 49936, + "name": "530xi MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210062, + "fields": { + "id_car_serie": 49936, + "name": "530d MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210063, + "fields": { + "id_car_serie": 49936, + "name": "530xd MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210064, + "fields": { + "id_car_serie": 49936, + "name": "530d MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210065, + "fields": { + "id_car_serie": 49936, + "name": "530i MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210066, + "fields": { + "id_car_serie": 49936, + "name": "545i AT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210067, + "fields": { + "id_car_serie": 49936, + "name": "545i MT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210068, + "fields": { + "id_car_serie": 49936, + "name": "550i AT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210069, + "fields": { + "id_car_serie": 49936, + "name": "550i MT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210070, + "fields": { + "id_car_serie": 49937, + "name": "520d AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210071, + "fields": { + "id_car_serie": 49937, + "name": "520d MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210072, + "fields": { + "id_car_serie": 49937, + "name": "520i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210073, + "fields": { + "id_car_serie": 49937, + "name": "520i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210074, + "fields": { + "id_car_serie": 49937, + "name": "523i AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210075, + "fields": { + "id_car_serie": 49937, + "name": "525i AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210076, + "fields": { + "id_car_serie": 49937, + "name": "525xi AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210077, + "fields": { + "id_car_serie": 49937, + "name": "525i AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210078, + "fields": { + "id_car_serie": 49937, + "name": "525d AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210079, + "fields": { + "id_car_serie": 49937, + "name": "525i AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210080, + "fields": { + "id_car_serie": 49937, + "name": "525d MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210081, + "fields": { + "id_car_serie": 49937, + "name": "525i MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210082, + "fields": { + "id_car_serie": 49937, + "name": "525i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210083, + "fields": { + "id_car_serie": 49937, + "name": "523i MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210084, + "fields": { + "id_car_serie": 49937, + "name": "525xi MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210085, + "fields": { + "id_car_serie": 49937, + "name": "525i MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210086, + "fields": { + "id_car_serie": 49937, + "name": "535d AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210087, + "fields": { + "id_car_serie": 49937, + "name": "530i AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210088, + "fields": { + "id_car_serie": 49937, + "name": "530d AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210089, + "fields": { + "id_car_serie": 49937, + "name": "530i AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210090, + "fields": { + "id_car_serie": 49937, + "name": "530i AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210091, + "fields": { + "id_car_serie": 49937, + "name": "530d AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210092, + "fields": { + "id_car_serie": 49937, + "name": "530xi AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210093, + "fields": { + "id_car_serie": 49937, + "name": "530xd AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210094, + "fields": { + "id_car_serie": 49937, + "name": "530xd MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210095, + "fields": { + "id_car_serie": 49937, + "name": "530d MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210096, + "fields": { + "id_car_serie": 49937, + "name": "530d MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210097, + "fields": { + "id_car_serie": 49937, + "name": "530i MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210098, + "fields": { + "id_car_serie": 49937, + "name": "530xi MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210099, + "fields": { + "id_car_serie": 49937, + "name": "530i MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210100, + "fields": { + "id_car_serie": 49937, + "name": "530i MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210101, + "fields": { + "id_car_serie": 49937, + "name": "540i AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210102, + "fields": { + "id_car_serie": 49937, + "name": "540i MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210103, + "fields": { + "id_car_serie": 49937, + "name": "545i AT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210104, + "fields": { + "id_car_serie": 49937, + "name": "545i AT (329 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210105, + "fields": { + "id_car_serie": 49937, + "name": "545i MT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210106, + "fields": { + "id_car_serie": 49937, + "name": "545i MT (329 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210107, + "fields": { + "id_car_serie": 49937, + "name": "550i AT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210108, + "fields": { + "id_car_serie": 49937, + "name": "550i AT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210109, + "fields": { + "id_car_serie": 49937, + "name": "550i MT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210110, + "fields": { + "id_car_serie": 49938, + "name": "520d MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210111, + "fields": { + "id_car_serie": 49938, + "name": "520i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210112, + "fields": { + "id_car_serie": 49938, + "name": "520i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210113, + "fields": { + "id_car_serie": 49938, + "name": "525i AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210114, + "fields": { + "id_car_serie": 49938, + "name": "525i AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210115, + "fields": { + "id_car_serie": 49938, + "name": "525d AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210116, + "fields": { + "id_car_serie": 49938, + "name": "525d MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210117, + "fields": { + "id_car_serie": 49938, + "name": "525i MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210118, + "fields": { + "id_car_serie": 49938, + "name": "525i MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210119, + "fields": { + "id_car_serie": 49938, + "name": "530d AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210120, + "fields": { + "id_car_serie": 49938, + "name": "530d MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210121, + "fields": { + "id_car_serie": 49938, + "name": "530i AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210122, + "fields": { + "id_car_serie": 49938, + "name": "530i AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210123, + "fields": { + "id_car_serie": 49938, + "name": "530i MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210124, + "fields": { + "id_car_serie": 49938, + "name": "530i MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210125, + "fields": { + "id_car_serie": 49938, + "name": "535i AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210126, + "fields": { + "id_car_serie": 49938, + "name": "535i MT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210127, + "fields": { + "id_car_serie": 49938, + "name": "540i AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210128, + "fields": { + "id_car_serie": 49938, + "name": "540i AT Protection (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210129, + "fields": { + "id_car_serie": 49938, + "name": "540i MT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210130, + "fields": { + "id_car_serie": 49939, + "name": "520d MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210131, + "fields": { + "id_car_serie": 49939, + "name": "520i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210132, + "fields": { + "id_car_serie": 49939, + "name": "520i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210133, + "fields": { + "id_car_serie": 49939, + "name": "525i AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210134, + "fields": { + "id_car_serie": 49939, + "name": "525i AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210135, + "fields": { + "id_car_serie": 49939, + "name": "525d AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210136, + "fields": { + "id_car_serie": 49939, + "name": "525i MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210137, + "fields": { + "id_car_serie": 49939, + "name": "525d MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210138, + "fields": { + "id_car_serie": 49939, + "name": "525i MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210139, + "fields": { + "id_car_serie": 49939, + "name": "530d AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210140, + "fields": { + "id_car_serie": 49939, + "name": "530d MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210141, + "fields": { + "id_car_serie": 49939, + "name": "530i AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210142, + "fields": { + "id_car_serie": 49939, + "name": "530i MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210143, + "fields": { + "id_car_serie": 49939, + "name": "540i AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210144, + "fields": { + "id_car_serie": 49939, + "name": "540i MT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210145, + "fields": { + "id_car_serie": 49940, + "name": "520i AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210147, + "fields": { + "id_car_serie": 49940, + "name": "520i MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210149, + "fields": { + "id_car_serie": 49940, + "name": "525tds AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210150, + "fields": { + "id_car_serie": 49940, + "name": "523i AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210152, + "fields": { + "id_car_serie": 49940, + "name": "523i MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210153, + "fields": { + "id_car_serie": 49940, + "name": "525tds MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210155, + "fields": { + "id_car_serie": 49940, + "name": "528i AT (193 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210157, + "fields": { + "id_car_serie": 49940, + "name": "528i MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210159, + "fields": { + "id_car_serie": 49940, + "name": "530d AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210160, + "fields": { + "id_car_serie": 49940, + "name": "530d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210161, + "fields": { + "id_car_serie": 49940, + "name": "535i AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210162, + "fields": { + "id_car_serie": 49940, + "name": "535i AT (238 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210163, + "fields": { + "id_car_serie": 49940, + "name": "535i MT (238 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210164, + "fields": { + "id_car_serie": 49940, + "name": "535i MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210165, + "fields": { + "id_car_serie": 49940, + "name": "540i AT (286 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210167, + "fields": { + "id_car_serie": 49940, + "name": "540i MT (286 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210169, + "fields": { + "id_car_serie": 49941, + "name": "520i AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210171, + "fields": { + "id_car_serie": 49941, + "name": "520i MT (150 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210173, + "fields": { + "id_car_serie": 49941, + "name": "525tds AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210174, + "fields": { + "id_car_serie": 49941, + "name": "523i AT (170 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210176, + "fields": { + "id_car_serie": 49941, + "name": "523i MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210177, + "fields": { + "id_car_serie": 49941, + "name": "525tds MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210179, + "fields": { + "id_car_serie": 49941, + "name": "528i AT (193 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210181, + "fields": { + "id_car_serie": 49941, + "name": "528i MT (193 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210183, + "fields": { + "id_car_serie": 49941, + "name": "530d AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210184, + "fields": { + "id_car_serie": 49941, + "name": "530d MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210185, + "fields": { + "id_car_serie": 49941, + "name": "540i AT (286 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210187, + "fields": { + "id_car_serie": 49941, + "name": "540i MT (286 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210189, + "fields": { + "id_car_serie": 49942, + "name": "518i AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210190, + "fields": { + "id_car_serie": 49942, + "name": "518i AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210191, + "fields": { + "id_car_serie": 49942, + "name": "518i MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210192, + "fields": { + "id_car_serie": 49942, + "name": "518i MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210193, + "fields": { + "id_car_serie": 49942, + "name": "518i MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210194, + "fields": { + "id_car_serie": 49942, + "name": "520i 5AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210195, + "fields": { + "id_car_serie": 49942, + "name": "520i kat AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210196, + "fields": { + "id_car_serie": 49942, + "name": "520i 4AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210197, + "fields": { + "id_car_serie": 49942, + "name": "520i AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210198, + "fields": { + "id_car_serie": 49942, + "name": "520i VANOS AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210199, + "fields": { + "id_car_serie": 49942, + "name": "520i MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210200, + "fields": { + "id_car_serie": 49942, + "name": "520i MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210201, + "fields": { + "id_car_serie": 49942, + "name": "520i kat MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210202, + "fields": { + "id_car_serie": 49942, + "name": "520i VANOS MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210203, + "fields": { + "id_car_serie": 49942, + "name": "524td AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210204, + "fields": { + "id_car_serie": 49942, + "name": "524td MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210205, + "fields": { + "id_car_serie": 49942, + "name": "525i AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210206, + "fields": { + "id_car_serie": 49942, + "name": "525i kat AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210207, + "fields": { + "id_car_serie": 49942, + "name": "525i 4AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210208, + "fields": { + "id_car_serie": 49942, + "name": "525tds AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210209, + "fields": { + "id_car_serie": 49942, + "name": "525ix AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210210, + "fields": { + "id_car_serie": 49942, + "name": "525i 5AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210211, + "fields": { + "id_car_serie": 49942, + "name": "525td AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210212, + "fields": { + "id_car_serie": 49942, + "name": "525ix VANOS AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210213, + "fields": { + "id_car_serie": 49942, + "name": "525tds MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210214, + "fields": { + "id_car_serie": 49942, + "name": "525td MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210215, + "fields": { + "id_car_serie": 49942, + "name": "525i MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210216, + "fields": { + "id_car_serie": 49942, + "name": "525ix VANOS MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210217, + "fields": { + "id_car_serie": 49942, + "name": "525i MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210218, + "fields": { + "id_car_serie": 49942, + "name": "525ix MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210219, + "fields": { + "id_car_serie": 49942, + "name": "525i VANOS MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210220, + "fields": { + "id_car_serie": 49942, + "name": "525i kat MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210221, + "fields": { + "id_car_serie": 49942, + "name": "530i AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210222, + "fields": { + "id_car_serie": 49942, + "name": "530i kat AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210223, + "fields": { + "id_car_serie": 49942, + "name": "530i AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210224, + "fields": { + "id_car_serie": 49942, + "name": "530i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210225, + "fields": { + "id_car_serie": 49942, + "name": "530i MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210226, + "fields": { + "id_car_serie": 49942, + "name": "530i kat MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210227, + "fields": { + "id_car_serie": 49942, + "name": "535i AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210228, + "fields": { + "id_car_serie": 49942, + "name": "535i MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210229, + "fields": { + "id_car_serie": 49942, + "name": "540i AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210230, + "fields": { + "id_car_serie": 49942, + "name": "540i MT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210231, + "fields": { + "id_car_serie": 49943, + "name": "518i MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210232, + "fields": { + "id_car_serie": 49943, + "name": "518i MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210233, + "fields": { + "id_car_serie": 49943, + "name": "520i AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210234, + "fields": { + "id_car_serie": 49943, + "name": "520i VANOS AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210235, + "fields": { + "id_car_serie": 49943, + "name": "520i MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210236, + "fields": { + "id_car_serie": 49943, + "name": "520i VANOS MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210237, + "fields": { + "id_car_serie": 49943, + "name": "525i VANOS AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210238, + "fields": { + "id_car_serie": 49943, + "name": "525tds AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210239, + "fields": { + "id_car_serie": 49943, + "name": "525ix VANOS AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210240, + "fields": { + "id_car_serie": 49943, + "name": "525td AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210241, + "fields": { + "id_car_serie": 49943, + "name": "525i AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210242, + "fields": { + "id_car_serie": 49943, + "name": "525ix AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210243, + "fields": { + "id_car_serie": 49943, + "name": "525ix MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210244, + "fields": { + "id_car_serie": 49943, + "name": "525tds MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210245, + "fields": { + "id_car_serie": 49943, + "name": "525i MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210246, + "fields": { + "id_car_serie": 49943, + "name": "525i VANOS MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210247, + "fields": { + "id_car_serie": 49943, + "name": "525td MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210248, + "fields": { + "id_car_serie": 49943, + "name": "525ix VANOS MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210249, + "fields": { + "id_car_serie": 49943, + "name": "530i AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210250, + "fields": { + "id_car_serie": 49943, + "name": "530i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210251, + "fields": { + "id_car_serie": 49943, + "name": "540i AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210252, + "fields": { + "id_car_serie": 49943, + "name": "540i MT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210253, + "fields": { + "id_car_serie": 49944, + "name": "518i MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210254, + "fields": { + "id_car_serie": 49944, + "name": "518i 4MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210255, + "fields": { + "id_car_serie": 49944, + "name": "518 4MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210256, + "fields": { + "id_car_serie": 49944, + "name": "518i 5MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210257, + "fields": { + "id_car_serie": 49944, + "name": "518 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210258, + "fields": { + "id_car_serie": 49944, + "name": "520i kat AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210259, + "fields": { + "id_car_serie": 49944, + "name": "520i AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210260, + "fields": { + "id_car_serie": 49944, + "name": "520i 3AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210261, + "fields": { + "id_car_serie": 49944, + "name": "520i 4AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210262, + "fields": { + "id_car_serie": 49944, + "name": "520i 4MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210263, + "fields": { + "id_car_serie": 49944, + "name": "520i kat MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210264, + "fields": { + "id_car_serie": 49944, + "name": "520i MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210265, + "fields": { + "id_car_serie": 49944, + "name": "520i 5MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210266, + "fields": { + "id_car_serie": 49944, + "name": "524td AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210267, + "fields": { + "id_car_serie": 49944, + "name": "524td AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210268, + "fields": { + "id_car_serie": 49944, + "name": "524td MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210269, + "fields": { + "id_car_serie": 49944, + "name": "524d MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210270, + "fields": { + "id_car_serie": 49944, + "name": "525i 3AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210271, + "fields": { + "id_car_serie": 49944, + "name": "525i 4AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210272, + "fields": { + "id_car_serie": 49944, + "name": "525i 5MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210273, + "fields": { + "id_car_serie": 49944, + "name": "525i 4MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210274, + "fields": { + "id_car_serie": 49944, + "name": "528e AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210275, + "fields": { + "id_car_serie": 49944, + "name": "528e 3AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210276, + "fields": { + "id_car_serie": 49944, + "name": "525e AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210277, + "fields": { + "id_car_serie": 49944, + "name": "525e kat AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210278, + "fields": { + "id_car_serie": 49944, + "name": "528e 4AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210279, + "fields": { + "id_car_serie": 49944, + "name": "525e AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210280, + "fields": { + "id_car_serie": 49944, + "name": "528e MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210281, + "fields": { + "id_car_serie": 49944, + "name": "525e MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210282, + "fields": { + "id_car_serie": 49944, + "name": "525e MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210283, + "fields": { + "id_car_serie": 49944, + "name": "525e kat MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210284, + "fields": { + "id_car_serie": 49944, + "name": "528e MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210285, + "fields": { + "id_car_serie": 49944, + "name": "528i 4AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210286, + "fields": { + "id_car_serie": 49944, + "name": "528i 3AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210287, + "fields": { + "id_car_serie": 49944, + "name": "528i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210288, + "fields": { + "id_car_serie": 49944, + "name": "533i AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210289, + "fields": { + "id_car_serie": 49944, + "name": "533i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210290, + "fields": { + "id_car_serie": 49944, + "name": "535i AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210291, + "fields": { + "id_car_serie": 49944, + "name": "535i AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210292, + "fields": { + "id_car_serie": 49944, + "name": "535i kat AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210293, + "fields": { + "id_car_serie": 49944, + "name": "535i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210294, + "fields": { + "id_car_serie": 49944, + "name": "535i MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210295, + "fields": { + "id_car_serie": 49944, + "name": "535i kat MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210296, + "fields": { + "id_car_serie": 49945, + "name": "518 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210297, + "fields": { + "id_car_serie": 49945, + "name": "518 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210298, + "fields": { + "id_car_serie": 49945, + "name": "518i MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210299, + "fields": { + "id_car_serie": 49945, + "name": "518 4MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210300, + "fields": { + "id_car_serie": 49945, + "name": "520 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210301, + "fields": { + "id_car_serie": 49945, + "name": "520 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210302, + "fields": { + "id_car_serie": 49945, + "name": "520 4MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210303, + "fields": { + "id_car_serie": 49945, + "name": "520i 5MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210304, + "fields": { + "id_car_serie": 49945, + "name": "520 5MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210305, + "fields": { + "id_car_serie": 49945, + "name": "520i 4MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210306, + "fields": { + "id_car_serie": 49945, + "name": "520 4MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210307, + "fields": { + "id_car_serie": 49945, + "name": "520 5MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210308, + "fields": { + "id_car_serie": 49945, + "name": "525 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210309, + "fields": { + "id_car_serie": 49945, + "name": "525 5MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210310, + "fields": { + "id_car_serie": 49945, + "name": "525 4MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210311, + "fields": { + "id_car_serie": 49945, + "name": "528i AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210312, + "fields": { + "id_car_serie": 49945, + "name": "528 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210313, + "fields": { + "id_car_serie": 49945, + "name": "528i AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210314, + "fields": { + "id_car_serie": 49945, + "name": "528i 4MT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210315, + "fields": { + "id_car_serie": 49945, + "name": "528 4MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210316, + "fields": { + "id_car_serie": 49945, + "name": "528i 4MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210317, + "fields": { + "id_car_serie": 49945, + "name": "528i 5MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210318, + "fields": { + "id_car_serie": 49945, + "name": "528i 5MT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210319, + "fields": { + "id_car_serie": 49945, + "name": "530i AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210320, + "fields": { + "id_car_serie": 49945, + "name": "530i MT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210321, + "fields": { + "id_car_serie": 49945, + "name": "M535i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210322, + "fields": { + "id_car_serie": 49946, + "name": "518 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210323, + "fields": { + "id_car_serie": 49946, + "name": "520 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210324, + "fields": { + "id_car_serie": 49946, + "name": "520i 4MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210325, + "fields": { + "id_car_serie": 49946, + "name": "520i 5MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210326, + "fields": { + "id_car_serie": 49946, + "name": "520 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210327, + "fields": { + "id_car_serie": 49946, + "name": "520 5MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210328, + "fields": { + "id_car_serie": 49946, + "name": "525 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210329, + "fields": { + "id_car_serie": 49946, + "name": "525 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210330, + "fields": { + "id_car_serie": 49946, + "name": "528 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210331, + "fields": { + "id_car_serie": 49946, + "name": "528 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210332, + "fields": { + "id_car_serie": 49946, + "name": "530i AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210333, + "fields": { + "id_car_serie": 49946, + "name": "530i MT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210334, + "fields": { + "id_car_serie": 49947, + "name": "640d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210335, + "fields": { + "id_car_serie": 49947, + "name": "640i xDrive Steptronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210336, + "fields": { + "id_car_serie": 49947, + "name": "640d Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210337, + "fields": { + "id_car_serie": 49947, + "name": "640i Steptronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210338, + "fields": { + "id_car_serie": 49947, + "name": "650i xDrive Steptronic (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210339, + "fields": { + "id_car_serie": 49947, + "name": "650i Steptronic (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210340, + "fields": { + "id_car_serie": 49948, + "name": "640i Steptronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210341, + "fields": { + "id_car_serie": 49948, + "name": "640i xDrive Steptronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210342, + "fields": { + "id_car_serie": 49948, + "name": "640d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210343, + "fields": { + "id_car_serie": 49948, + "name": "640d Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210344, + "fields": { + "id_car_serie": 49948, + "name": "650i Steptronic (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210345, + "fields": { + "id_car_serie": 49948, + "name": "650i xDrive Steptronic (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210346, + "fields": { + "id_car_serie": 49949, + "name": "640i xDrive Steptronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210347, + "fields": { + "id_car_serie": 49949, + "name": "640d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210348, + "fields": { + "id_car_serie": 49949, + "name": "640d Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210349, + "fields": { + "id_car_serie": 49949, + "name": "640i Steptronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210350, + "fields": { + "id_car_serie": 49949, + "name": "650i xDrive Steptronic (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210351, + "fields": { + "id_car_serie": 49949, + "name": "650i Steptronic (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210352, + "fields": { + "id_car_serie": 49950, + "name": "630i AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210353, + "fields": { + "id_car_serie": 49950, + "name": "635d AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210354, + "fields": { + "id_car_serie": 49950, + "name": "630i MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210355, + "fields": { + "id_car_serie": 49950, + "name": "650i AT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210356, + "fields": { + "id_car_serie": 49950, + "name": "650i AT (364 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210357, + "fields": { + "id_car_serie": 49950, + "name": "650i MT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210358, + "fields": { + "id_car_serie": 49950, + "name": "650i MT (364 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210359, + "fields": { + "id_car_serie": 49951, + "name": "630i AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210360, + "fields": { + "id_car_serie": 49951, + "name": "635d AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210361, + "fields": { + "id_car_serie": 49951, + "name": "630i MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210362, + "fields": { + "id_car_serie": 49951, + "name": "650i AT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210363, + "fields": { + "id_car_serie": 49951, + "name": "650i AT (364 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210364, + "fields": { + "id_car_serie": 49951, + "name": "650i MT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210365, + "fields": { + "id_car_serie": 49951, + "name": "650i MT (364 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210366, + "fields": { + "id_car_serie": 49952, + "name": "630i AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210367, + "fields": { + "id_car_serie": 49952, + "name": "630i MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210368, + "fields": { + "id_car_serie": 49952, + "name": "645Ci AT (329 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210369, + "fields": { + "id_car_serie": 49952, + "name": "645Ci AT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210370, + "fields": { + "id_car_serie": 49952, + "name": "645Ci MT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210371, + "fields": { + "id_car_serie": 49952, + "name": "645Ci MT (329 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210372, + "fields": { + "id_car_serie": 49952, + "name": "650Ci AT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210373, + "fields": { + "id_car_serie": 49952, + "name": "650Ci AT (364 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210374, + "fields": { + "id_car_serie": 49952, + "name": "650Ci MT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210375, + "fields": { + "id_car_serie": 49952, + "name": "650Ci MT (364 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210376, + "fields": { + "id_car_serie": 49953, + "name": "630i AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210377, + "fields": { + "id_car_serie": 49953, + "name": "630i MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210378, + "fields": { + "id_car_serie": 49953, + "name": "645Ci AT (329 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210379, + "fields": { + "id_car_serie": 49953, + "name": "645Ci AT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210380, + "fields": { + "id_car_serie": 49953, + "name": "645Ci MT (329 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210381, + "fields": { + "id_car_serie": 49953, + "name": "645Ci MT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210382, + "fields": { + "id_car_serie": 49953, + "name": "650Ci AT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210383, + "fields": { + "id_car_serie": 49953, + "name": "650Ci AT (364 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210384, + "fields": { + "id_car_serie": 49953, + "name": "650Ci MT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210385, + "fields": { + "id_car_serie": 49953, + "name": "650Ci MT (364 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210386, + "fields": { + "id_car_serie": 49954, + "name": "635CSi AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210387, + "fields": { + "id_car_serie": 49954, + "name": "635CSi AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210388, + "fields": { + "id_car_serie": 49954, + "name": "635CSi kat AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210389, + "fields": { + "id_car_serie": 49954, + "name": "635CSi MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210390, + "fields": { + "id_car_serie": 49954, + "name": "635CSi MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210391, + "fields": { + "id_car_serie": 49954, + "name": "635CSi kat MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210392, + "fields": { + "id_car_serie": 49955, + "name": "628CSi AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210393, + "fields": { + "id_car_serie": 49955, + "name": "628CSi 4MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210394, + "fields": { + "id_car_serie": 49955, + "name": "628CSi 5MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210395, + "fields": { + "id_car_serie": 49955, + "name": "633CSi 3AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210396, + "fields": { + "id_car_serie": 49955, + "name": "633CSi 4AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210397, + "fields": { + "id_car_serie": 49955, + "name": "635CSi AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210398, + "fields": { + "id_car_serie": 49955, + "name": "633CSi MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210399, + "fields": { + "id_car_serie": 49955, + "name": "635CSi MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210400, + "fields": { + "id_car_serie": 49955, + "name": "635CSi AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210401, + "fields": { + "id_car_serie": 49955, + "name": "635CSi AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210402, + "fields": { + "id_car_serie": 49955, + "name": "635CSi AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210403, + "fields": { + "id_car_serie": 49955, + "name": "635CSi kat AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210404, + "fields": { + "id_car_serie": 49955, + "name": "635CSi MT (218 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210405, + "fields": { + "id_car_serie": 49955, + "name": "635CSi MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210406, + "fields": { + "id_car_serie": 49955, + "name": "635CSi kat MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210407, + "fields": { + "id_car_serie": 49955, + "name": "635CSi MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210408, + "fields": { + "id_car_serie": 49956, + "name": "628CSi AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210409, + "fields": { + "id_car_serie": 49956, + "name": "628CSi 5MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210410, + "fields": { + "id_car_serie": 49956, + "name": "628CSi 4MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210411, + "fields": { + "id_car_serie": 49956, + "name": "630CS AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210412, + "fields": { + "id_car_serie": 49956, + "name": "630CS MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210413, + "fields": { + "id_car_serie": 49956, + "name": "633CSi AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210414, + "fields": { + "id_car_serie": 49956, + "name": "633CSi AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210415, + "fields": { + "id_car_serie": 49956, + "name": "633CSi AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210416, + "fields": { + "id_car_serie": 49956, + "name": "633CSi AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210417, + "fields": { + "id_car_serie": 49956, + "name": "633CSi MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210418, + "fields": { + "id_car_serie": 49956, + "name": "633CSi 5MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210419, + "fields": { + "id_car_serie": 49956, + "name": "633CSi MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210420, + "fields": { + "id_car_serie": 49956, + "name": "633CSi 4MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210421, + "fields": { + "id_car_serie": 49956, + "name": "635CSi AT (218 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210423, + "fields": { + "id_car_serie": 49956, + "name": "635CSi MT (218 hp)", + "arabic_name": "-", + "start_production_year": 1980, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210425, + "fields": { + "id_car_serie": 49957, + "name": "730i Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210426, + "fields": { + "id_car_serie": 49957, + "name": "730d xDrive Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210427, + "fields": { + "id_car_serie": 49957, + "name": "750Ld xDrive Steptronic (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210428, + "fields": { + "id_car_serie": 49957, + "name": "750d xDrive Steptronic (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210429, + "fields": { + "id_car_serie": 49957, + "name": "740d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210430, + "fields": { + "id_car_serie": 49957, + "name": "740d Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210431, + "fields": { + "id_car_serie": 49957, + "name": "730Ld Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210432, + "fields": { + "id_car_serie": 49957, + "name": "730d Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210433, + "fields": { + "id_car_serie": 49957, + "name": "ActiveHybrid 7L Steptronic (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210434, + "fields": { + "id_car_serie": 49957, + "name": "ActiveHybrid 7 Steptronic (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210435, + "fields": { + "id_car_serie": 49957, + "name": "740Li xDrive Steptronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210436, + "fields": { + "id_car_serie": 49957, + "name": "740Li Steptronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210437, + "fields": { + "id_car_serie": 49957, + "name": "740i Steptronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210438, + "fields": { + "id_car_serie": 49957, + "name": "730Li Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210439, + "fields": { + "id_car_serie": 49957, + "name": "750i Steptronic (449 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210440, + "fields": { + "id_car_serie": 49957, + "name": "760Li Steptronic (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210441, + "fields": { + "id_car_serie": 49957, + "name": "750Li xDrive Steptronic (449 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210442, + "fields": { + "id_car_serie": 49957, + "name": "750Li Steptronic (449 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210443, + "fields": { + "id_car_serie": 49957, + "name": "750i xDrive Steptronic (449 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210444, + "fields": { + "id_car_serie": 49957, + "name": "760i Steptronic (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210445, + "fields": { + "id_car_serie": 49958, + "name": "740d AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210446, + "fields": { + "id_car_serie": 49958, + "name": "740Li AT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210447, + "fields": { + "id_car_serie": 49958, + "name": "740i AT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210448, + "fields": { + "id_car_serie": 49958, + "name": "740d xDrive AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210449, + "fields": { + "id_car_serie": 49958, + "name": "730Li AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210450, + "fields": { + "id_car_serie": 49958, + "name": "730Ld AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210451, + "fields": { + "id_car_serie": 49958, + "name": "730i AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210452, + "fields": { + "id_car_serie": 49958, + "name": "730d AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210453, + "fields": { + "id_car_serie": 49958, + "name": "750i xDrive AT (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210454, + "fields": { + "id_car_serie": 49958, + "name": "750i AT (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210455, + "fields": { + "id_car_serie": 49958, + "name": "ActiveHybrid 7L AT (465 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210456, + "fields": { + "id_car_serie": 49958, + "name": "ActiveHybrid 7 AT (465 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210457, + "fields": { + "id_car_serie": 49958, + "name": "750Li xDrive AT (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210458, + "fields": { + "id_car_serie": 49958, + "name": "750Li AT (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210459, + "fields": { + "id_car_serie": 49958, + "name": "760Li AT (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210460, + "fields": { + "id_car_serie": 49958, + "name": "760i AT (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210461, + "fields": { + "id_car_serie": 49959, + "name": "730Ld AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210462, + "fields": { + "id_car_serie": 49959, + "name": "730d AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210463, + "fields": { + "id_car_serie": 49959, + "name": "730i AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210464, + "fields": { + "id_car_serie": 49959, + "name": "730Li AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210465, + "fields": { + "id_car_serie": 49959, + "name": "740i AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210466, + "fields": { + "id_car_serie": 49959, + "name": "740Li AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210467, + "fields": { + "id_car_serie": 49959, + "name": "745d AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210468, + "fields": { + "id_car_serie": 49959, + "name": "745d AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210469, + "fields": { + "id_car_serie": 49959, + "name": "750i AT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210470, + "fields": { + "id_car_serie": 49959, + "name": "750Li AT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210471, + "fields": { + "id_car_serie": 49959, + "name": "760i AT (445 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210472, + "fields": { + "id_car_serie": 49959, + "name": "760Li AT (445 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210473, + "fields": { + "id_car_serie": 49960, + "name": "730d AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210474, + "fields": { + "id_car_serie": 49960, + "name": "730Li AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210475, + "fields": { + "id_car_serie": 49960, + "name": "730i AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210476, + "fields": { + "id_car_serie": 49960, + "name": "735Li AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210477, + "fields": { + "id_car_serie": 49960, + "name": "735i AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210478, + "fields": { + "id_car_serie": 49960, + "name": "740d AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210479, + "fields": { + "id_car_serie": 49960, + "name": "745Li AT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210480, + "fields": { + "id_car_serie": 49960, + "name": "745i AT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210481, + "fields": { + "id_car_serie": 49960, + "name": "760i AT (445 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210482, + "fields": { + "id_car_serie": 49960, + "name": "760Li AT (445 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210483, + "fields": { + "id_car_serie": 49961, + "name": "725tds AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210484, + "fields": { + "id_car_serie": 49961, + "name": "725tds MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210485, + "fields": { + "id_car_serie": 49961, + "name": "728iL AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210486, + "fields": { + "id_car_serie": 49961, + "name": "728i AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210487, + "fields": { + "id_car_serie": 49961, + "name": "728i MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210488, + "fields": { + "id_car_serie": 49961, + "name": "730d AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210489, + "fields": { + "id_car_serie": 49961, + "name": "735i AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210490, + "fields": { + "id_car_serie": 49961, + "name": "735iL AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210491, + "fields": { + "id_car_serie": 49961, + "name": "740d AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210492, + "fields": { + "id_car_serie": 49961, + "name": "740i AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210493, + "fields": { + "id_car_serie": 49961, + "name": "740iL AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210494, + "fields": { + "id_car_serie": 49961, + "name": "750i AT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210495, + "fields": { + "id_car_serie": 49961, + "name": "750iL AT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210496, + "fields": { + "id_car_serie": 49962, + "name": "L7 AT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210497, + "fields": { + "id_car_serie": 49963, + "name": "725tds AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210498, + "fields": { + "id_car_serie": 49963, + "name": "725tds MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210499, + "fields": { + "id_car_serie": 49963, + "name": "728iL AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210500, + "fields": { + "id_car_serie": 49963, + "name": "728i AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210501, + "fields": { + "id_car_serie": 49963, + "name": "728i MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210502, + "fields": { + "id_car_serie": 49963, + "name": "730iL AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210503, + "fields": { + "id_car_serie": 49963, + "name": "730i AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210504, + "fields": { + "id_car_serie": 49963, + "name": "730iL MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210505, + "fields": { + "id_car_serie": 49963, + "name": "730i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210506, + "fields": { + "id_car_serie": 49963, + "name": "735iL AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210507, + "fields": { + "id_car_serie": 49963, + "name": "735i AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210508, + "fields": { + "id_car_serie": 49963, + "name": "735i MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210509, + "fields": { + "id_car_serie": 49963, + "name": "740i AT (286 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210510, + "fields": { + "id_car_serie": 49963, + "name": "740iL AT (286 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210511, + "fields": { + "id_car_serie": 49963, + "name": "740i MT (286 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210515, + "fields": { + "id_car_serie": 49963, + "name": "750iL AT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210516, + "fields": { + "id_car_serie": 49963, + "name": "750i AT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210517, + "fields": { + "id_car_serie": 49964, + "name": "730i kat AT (188 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210519, + "fields": { + "id_car_serie": 49964, + "name": "730i AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210520, + "fields": { + "id_car_serie": 49964, + "name": "730i AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210521, + "fields": { + "id_car_serie": 49964, + "name": "730i kat MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210522, + "fields": { + "id_car_serie": 49964, + "name": "730i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210523, + "fields": { + "id_car_serie": 49964, + "name": "730i MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210524, + "fields": { + "id_car_serie": 49964, + "name": "735iL kat AT (211 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210525, + "fields": { + "id_car_serie": 49964, + "name": "735i AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210526, + "fields": { + "id_car_serie": 49964, + "name": "735iL AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210527, + "fields": { + "id_car_serie": 49964, + "name": "735i kat AT (211 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210530, + "fields": { + "id_car_serie": 49964, + "name": "735iL MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210531, + "fields": { + "id_car_serie": 49964, + "name": "735iL kat MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210532, + "fields": { + "id_car_serie": 49964, + "name": "735i MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210533, + "fields": { + "id_car_serie": 49964, + "name": "735i kat MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210534, + "fields": { + "id_car_serie": 49964, + "name": "740iL AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210535, + "fields": { + "id_car_serie": 49964, + "name": "740i AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210536, + "fields": { + "id_car_serie": 49964, + "name": "750i AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210537, + "fields": { + "id_car_serie": 49964, + "name": "750iL AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210538, + "fields": { + "id_car_serie": 49965, + "name": "728i AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210539, + "fields": { + "id_car_serie": 49965, + "name": "728i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210540, + "fields": { + "id_car_serie": 49965, + "name": "732i AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210541, + "fields": { + "id_car_serie": 49965, + "name": "732i MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210542, + "fields": { + "id_car_serie": 49965, + "name": "L7 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210543, + "fields": { + "id_car_serie": 49965, + "name": "735i AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210544, + "fields": { + "id_car_serie": 49965, + "name": "735i kat AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210545, + "fields": { + "id_car_serie": 49965, + "name": "735i AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210546, + "fields": { + "id_car_serie": 49965, + "name": "745i AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210547, + "fields": { + "id_car_serie": 49965, + "name": "735i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210548, + "fields": { + "id_car_serie": 49965, + "name": "735i MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210549, + "fields": { + "id_car_serie": 49965, + "name": "735i kat MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210550, + "fields": { + "id_car_serie": 49966, + "name": "728i AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210551, + "fields": { + "id_car_serie": 49966, + "name": "728 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210552, + "fields": { + "id_car_serie": 49966, + "name": "728 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210553, + "fields": { + "id_car_serie": 49966, + "name": "728i 5MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210554, + "fields": { + "id_car_serie": 49966, + "name": "728i 4MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210555, + "fields": { + "id_car_serie": 49966, + "name": "730 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210556, + "fields": { + "id_car_serie": 49966, + "name": "730 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210557, + "fields": { + "id_car_serie": 49966, + "name": "732i AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210558, + "fields": { + "id_car_serie": 49966, + "name": "745i AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210559, + "fields": { + "id_car_serie": 49966, + "name": "733i AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210560, + "fields": { + "id_car_serie": 49966, + "name": "745i MT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210561, + "fields": { + "id_car_serie": 49966, + "name": "733i MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210562, + "fields": { + "id_car_serie": 49966, + "name": "732i 4MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210563, + "fields": { + "id_car_serie": 49966, + "name": "732i 5MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210564, + "fields": { + "id_car_serie": 49966, + "name": "735i AT (218 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210566, + "fields": { + "id_car_serie": 49966, + "name": "735i MT (218 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210568, + "fields": { + "id_car_serie": 49967, + "name": "840Ci AT (286 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210569, + "fields": { + "id_car_serie": 49967, + "name": "840Ci MT (286 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210572, + "fields": { + "id_car_serie": 49967, + "name": "850Ci AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210573, + "fields": { + "id_car_serie": 49967, + "name": "850i MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210574, + "fields": { + "id_car_serie": 49967, + "name": "850Ci MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210575, + "fields": { + "id_car_serie": 49967, + "name": "850Ci AT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210576, + "fields": { + "id_car_serie": 49967, + "name": "850CSi MT (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210577, + "fields": { + "id_car_serie": 49968, + "name": "3.5 MT (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210578, + "fields": { + "id_car_serie": 49969, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210579, + "fields": { + "id_car_serie": 49970, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210580, + "fields": { + "id_car_serie": 49971, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210581, + "fields": { + "id_car_serie": 49971, + "name": "1.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210582, + "fields": { + "id_car_serie": 49971, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210583, + "fields": { + "id_car_serie": 49971, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210584, + "fields": { + "id_car_serie": 49972, + "name": "4.2 AT AWD (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210585, + "fields": { + "id_car_serie": 49972, + "name": "4.2 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210586, + "fields": { + "id_car_serie": 49972, + "name": "4.2 AT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210587, + "fields": { + "id_car_serie": 49972, + "name": "4.2 AT AWD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210588, + "fields": { + "id_car_serie": 49972, + "name": "5.3 AT AWD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210589, + "fields": { + "id_car_serie": 49972, + "name": "5.3 AT AWD (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210590, + "fields": { + "id_car_serie": 49972, + "name": "5.3 AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210591, + "fields": { + "id_car_serie": 49972, + "name": "5.3 AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210592, + "fields": { + "id_car_serie": 49973, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210593, + "fields": { + "id_car_serie": 49973, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210594, + "fields": { + "id_car_serie": 49973, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210595, + "fields": { + "id_car_serie": 49973, + "name": "2.4 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210596, + "fields": { + "id_car_serie": 49974, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210597, + "fields": { + "id_car_serie": 49975, + "name": "1.4 Flex MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210598, + "fields": { + "id_car_serie": 49975, + "name": "1.4 Flex MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210599, + "fields": { + "id_car_serie": 49976, + "name": "1.0 D MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210600, + "fields": { + "id_car_serie": 49976, + "name": "1.2 LPG MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210601, + "fields": { + "id_car_serie": 49976, + "name": "1.2 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210622, + "fields": { + "id_car_serie": 49978, + "name": "4.3 AT Overdrive G10 LWB (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210623, + "fields": { + "id_car_serie": 49978, + "name": "4.3 AT Overdrive G20 (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210624, + "fields": { + "id_car_serie": 49978, + "name": "4.3 AT Overdrive G10 (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210625, + "fields": { + "id_car_serie": 49978, + "name": "5.0 AT Overdrive G10 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210626, + "fields": { + "id_car_serie": 49978, + "name": "5.0 AT Overdrive G10 LWB (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210627, + "fields": { + "id_car_serie": 49978, + "name": "5.0 AT Overdrive G20 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210628, + "fields": { + "id_car_serie": 49978, + "name": "5.7 AT Overdrive G30 LWB (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210629, + "fields": { + "id_car_serie": 49978, + "name": "5.7 AT Overdrive G10 (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210630, + "fields": { + "id_car_serie": 49978, + "name": "5.7 AT Overdrive G20 (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210631, + "fields": { + "id_car_serie": 49978, + "name": "5.7 AT Overdrive G30 (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210632, + "fields": { + "id_car_serie": 49978, + "name": "6.2 D AT Overdrive G20 (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210633, + "fields": { + "id_car_serie": 49978, + "name": "6.2 D AT Overdrive G30 (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210634, + "fields": { + "id_car_serie": 49978, + "name": "6.2 D AT Overdrive G30 LWB (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210635, + "fields": { + "id_car_serie": 49978, + "name": "6.5 D AT Overdrive G30 LWB (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210636, + "fields": { + "id_car_serie": 49978, + "name": "6.5 D AT Overdrive G20 (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210637, + "fields": { + "id_car_serie": 49978, + "name": "6.5 D AT Overdrive G30 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210638, + "fields": { + "id_car_serie": 49978, + "name": "7.4 AT Overdrive G30 (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210639, + "fields": { + "id_car_serie": 49978, + "name": "7.4 AT Overdrive G30 LWB (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210640, + "fields": { + "id_car_serie": 49979, + "name": "4.1 AT G10 LWB (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210641, + "fields": { + "id_car_serie": 49979, + "name": "4.1 AT Overdrive G20 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210642, + "fields": { + "id_car_serie": 49979, + "name": "4.1 AT Overdrive G10 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210643, + "fields": { + "id_car_serie": 49979, + "name": "4.1 AT Overdrive G10 LWB (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210644, + "fields": { + "id_car_serie": 49979, + "name": "4.1 AT G10 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210645, + "fields": { + "id_car_serie": 49979, + "name": "4.1 AT G20 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210646, + "fields": { + "id_car_serie": 49979, + "name": "4.1 MT G10 LWB (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210647, + "fields": { + "id_car_serie": 49979, + "name": "4.1 MT G20 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210648, + "fields": { + "id_car_serie": 49979, + "name": "4.1 MT G10 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210649, + "fields": { + "id_car_serie": 49979, + "name": "4.1 MT Overdrive G20 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210650, + "fields": { + "id_car_serie": 49979, + "name": "4.3 AT G10 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210651, + "fields": { + "id_car_serie": 49979, + "name": "4.3 AT G10 LWB (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210652, + "fields": { + "id_car_serie": 49979, + "name": "4.3 AT G20 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210653, + "fields": { + "id_car_serie": 49979, + "name": "4.3 AT Overdrive G10 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210654, + "fields": { + "id_car_serie": 49979, + "name": "4.3 AT Overdrive G10 LWB (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210655, + "fields": { + "id_car_serie": 49979, + "name": "4.3 AT Overdrive G20 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210656, + "fields": { + "id_car_serie": 49979, + "name": "4.3 MT Overdrive G20 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210657, + "fields": { + "id_car_serie": 49979, + "name": "4.3 MT G20 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210658, + "fields": { + "id_car_serie": 49979, + "name": "4.3 MT G10 LWB (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210659, + "fields": { + "id_car_serie": 49979, + "name": "4.3 MT G10 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210660, + "fields": { + "id_car_serie": 49979, + "name": "5.0 AT G10 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210661, + "fields": { + "id_car_serie": 49979, + "name": "5.0 AT Overdrive G20 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210662, + "fields": { + "id_car_serie": 49979, + "name": "5.0 AT Overdrive G10 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210663, + "fields": { + "id_car_serie": 49979, + "name": "5.0 AT Overdrive G10 LWB (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210664, + "fields": { + "id_car_serie": 49979, + "name": "5.0 AT G20 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210665, + "fields": { + "id_car_serie": 49979, + "name": "5.0 AT Overdrive G10 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210666, + "fields": { + "id_car_serie": 49979, + "name": "5.0 AT Overdrive G10 LWB (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210667, + "fields": { + "id_car_serie": 49979, + "name": "5.0 AT Overdrive G20 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210668, + "fields": { + "id_car_serie": 49979, + "name": "5.0 AT G10 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210669, + "fields": { + "id_car_serie": 49979, + "name": "5.0 AT G10 LWB (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210670, + "fields": { + "id_car_serie": 49979, + "name": "5.0 AT G20 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210671, + "fields": { + "id_car_serie": 49979, + "name": "5.0 AT G10 LWB (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210672, + "fields": { + "id_car_serie": 49979, + "name": "5.0 MT Overdrive G20 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210673, + "fields": { + "id_car_serie": 49979, + "name": "5.0 MT Overdrive G20 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210674, + "fields": { + "id_car_serie": 49979, + "name": "5.7 AT G30 (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210675, + "fields": { + "id_car_serie": 49979, + "name": "5.7 AT G30 (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210676, + "fields": { + "id_car_serie": 49979, + "name": "5.7 AT Overdrive G30 (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210677, + "fields": { + "id_car_serie": 49979, + "name": "5.7 AT Overdrive G30 (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210678, + "fields": { + "id_car_serie": 49979, + "name": "6.2 D AT G30 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210679, + "fields": { + "id_car_serie": 49979, + "name": "6.2 D AT Overdrive G20 (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210680, + "fields": { + "id_car_serie": 49979, + "name": "6.2 D AT Overdrive G30 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210681, + "fields": { + "id_car_serie": 49979, + "name": "6.2 D AT Overdrive G20 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210682, + "fields": { + "id_car_serie": 49979, + "name": "6.2 D AT G20 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210683, + "fields": { + "id_car_serie": 49979, + "name": "6.2 D AT Overdrive G30 (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210684, + "fields": { + "id_car_serie": 49979, + "name": "6.2 D MT Overdrive G20 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210685, + "fields": { + "id_car_serie": 49979, + "name": "7.4 AT Overdrive G30 (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210686, + "fields": { + "id_car_serie": 49979, + "name": "7.4 AT Overdrive G30 LWB (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210767, + "fields": { + "id_car_serie": 49981, + "name": "4.1 AT G10 (115 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210768, + "fields": { + "id_car_serie": 49981, + "name": "4.1 AT G20 LWB (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210770, + "fields": { + "id_car_serie": 49981, + "name": "4.1 AT G20 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210771, + "fields": { + "id_car_serie": 49981, + "name": "4.1 AT G10 LWB (115 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210773, + "fields": { + "id_car_serie": 49981, + "name": "4.1 MT G20 LWB (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210774, + "fields": { + "id_car_serie": 49981, + "name": "4.1 MT G10 (115 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210776, + "fields": { + "id_car_serie": 49981, + "name": "4.1 MT G10 LWB (115 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210777, + "fields": { + "id_car_serie": 49981, + "name": "4.1 MT G20 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210779, + "fields": { + "id_car_serie": 49981, + "name": "4.8 AT G20 LWB (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210780, + "fields": { + "id_car_serie": 49981, + "name": "4.8 AT G30 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210781, + "fields": { + "id_car_serie": 49981, + "name": "4.8 AT G20 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210782, + "fields": { + "id_car_serie": 49981, + "name": "4.8 MT G30 (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210783, + "fields": { + "id_car_serie": 49981, + "name": "4.8 MT G20 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210784, + "fields": { + "id_car_serie": 49981, + "name": "4.8 MT G20 LWB (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210785, + "fields": { + "id_car_serie": 49981, + "name": "4.8 MT G30 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210786, + "fields": { + "id_car_serie": 49981, + "name": "5.0 AT G10 (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210787, + "fields": { + "id_car_serie": 49981, + "name": "5.0 AT G10 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210788, + "fields": { + "id_car_serie": 49981, + "name": "5.0 AT G20 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210789, + "fields": { + "id_car_serie": 49981, + "name": "5.0 AT G10 LWB (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210790, + "fields": { + "id_car_serie": 49981, + "name": "5.0 AT G20 LWB (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210791, + "fields": { + "id_car_serie": 49981, + "name": "5.0 MT G20 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210792, + "fields": { + "id_car_serie": 49981, + "name": "5.0 MT G10 (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210793, + "fields": { + "id_car_serie": 49981, + "name": "5.0 MT G10 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210794, + "fields": { + "id_car_serie": 49981, + "name": "5.0 MT G10 LWB (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210795, + "fields": { + "id_car_serie": 49981, + "name": "5.0 MT G20 LWB (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210796, + "fields": { + "id_car_serie": 49981, + "name": "5.7 AT G10 LWB (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210797, + "fields": { + "id_car_serie": 49981, + "name": "5.7 AT G20 LWB (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210798, + "fields": { + "id_car_serie": 49981, + "name": "5.7 AT G30 (165 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210800, + "fields": { + "id_car_serie": 49981, + "name": "5.7 AT G10 (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210801, + "fields": { + "id_car_serie": 49981, + "name": "5.7 AT G20 (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210802, + "fields": { + "id_car_serie": 49981, + "name": "5.7 MT G10 LWB (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210803, + "fields": { + "id_car_serie": 49981, + "name": "5.7 MT G20 LWB (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210804, + "fields": { + "id_car_serie": 49981, + "name": "5.7 MT G30 (165 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210805, + "fields": { + "id_car_serie": 49981, + "name": "5.7 MT G10 (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210806, + "fields": { + "id_car_serie": 49981, + "name": "5.7 MT G20 (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210886, + "fields": { + "id_car_serie": 49984, + "name": "4.1 Turbo Hydra-matic G10 LWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210887, + "fields": { + "id_car_serie": 49984, + "name": "4.1 Turbo Hydra-matic G20 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210888, + "fields": { + "id_car_serie": 49984, + "name": "4.1 Turbo Hydra-matic G20 LWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210889, + "fields": { + "id_car_serie": 49984, + "name": "4.1 Turbo Hydra-matic G10 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210890, + "fields": { + "id_car_serie": 49984, + "name": "4.1 Turbo Hydra-matic G30 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210891, + "fields": { + "id_car_serie": 49984, + "name": "4.1 MT G10 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210892, + "fields": { + "id_car_serie": 49984, + "name": "4.1 MT G10 LWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210893, + "fields": { + "id_car_serie": 49984, + "name": "4.1 MT G20 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210894, + "fields": { + "id_car_serie": 49984, + "name": "4.1 MT G20 LWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210895, + "fields": { + "id_car_serie": 49984, + "name": "4.1 MT G30 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210896, + "fields": { + "id_car_serie": 49984, + "name": "4.8 Turbo Hydra-matic G30 (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210897, + "fields": { + "id_car_serie": 49984, + "name": "4.8 Turbo Hydra-matic G20 LWB (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210898, + "fields": { + "id_car_serie": 49984, + "name": "4.8 Turbo Hydra-matic G20 (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210899, + "fields": { + "id_car_serie": 49984, + "name": "4.8 MT G20 LWB (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210900, + "fields": { + "id_car_serie": 49984, + "name": "4.8 MT G20 (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210901, + "fields": { + "id_car_serie": 49984, + "name": "4.8 MT G30 (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210902, + "fields": { + "id_car_serie": 49984, + "name": "5.0 Turbo Hydra-matic G10 LWB (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210903, + "fields": { + "id_car_serie": 49984, + "name": "5.0 Turbo Hydra-matic G10 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210904, + "fields": { + "id_car_serie": 49984, + "name": "5.0 MT G10 LWB (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210905, + "fields": { + "id_car_serie": 49984, + "name": "5.0 MT G10 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210906, + "fields": { + "id_car_serie": 49984, + "name": "5.7 Turbo Hydra-matic G10 LWB (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210907, + "fields": { + "id_car_serie": 49984, + "name": "5.7 Turbo Hydra-matic G10 (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210908, + "fields": { + "id_car_serie": 49984, + "name": "5.7 Turbo Hydra-matic G30 (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210909, + "fields": { + "id_car_serie": 49984, + "name": "5.7 Turbo Hydra-matic G20 (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210910, + "fields": { + "id_car_serie": 49984, + "name": "5.7 Turbo Hydra-matic G20 LWB (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210911, + "fields": { + "id_car_serie": 49984, + "name": "5.7 MT G20 LWB (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210912, + "fields": { + "id_car_serie": 49984, + "name": "5.7 MT G10 LWB (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210913, + "fields": { + "id_car_serie": 49984, + "name": "5.7 MT G30 (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210914, + "fields": { + "id_car_serie": 49984, + "name": "5.7 MT G10 (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210915, + "fields": { + "id_car_serie": 49984, + "name": "5.7 MT G20 (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210952, + "fields": { + "id_car_serie": 49986, + "name": "3.8 Powerglide G10 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210953, + "fields": { + "id_car_serie": 49986, + "name": "3.8 Turbo Hydra-matic G10 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210954, + "fields": { + "id_car_serie": 49986, + "name": "3.8 Turbo Hydra-matic G20 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210955, + "fields": { + "id_car_serie": 49986, + "name": "3.8 Powerglide G20 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210956, + "fields": { + "id_car_serie": 49986, + "name": "3.8 3MT G20 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210957, + "fields": { + "id_car_serie": 49986, + "name": "3.8 4MT G10 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210958, + "fields": { + "id_car_serie": 49986, + "name": "3.8 3MT G10 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210959, + "fields": { + "id_car_serie": 49986, + "name": "3.8 4MT G20 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210960, + "fields": { + "id_car_serie": 49986, + "name": "4.1 Powerglide G20 (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210961, + "fields": { + "id_car_serie": 49986, + "name": "4.1 Turbo Hydra-matic G10 (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210962, + "fields": { + "id_car_serie": 49986, + "name": "4.1 Powerglide G10 (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210963, + "fields": { + "id_car_serie": 49986, + "name": "4.1 Turbo Hydra-matic G20 (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210964, + "fields": { + "id_car_serie": 49986, + "name": "4.1 3MT G10 (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210965, + "fields": { + "id_car_serie": 49986, + "name": "4.1 3MT G20 (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210966, + "fields": { + "id_car_serie": 49986, + "name": "4.1 4MT G10 (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210967, + "fields": { + "id_car_serie": 49986, + "name": "4.1 4MT G20 (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210968, + "fields": { + "id_car_serie": 49986, + "name": "4.6 Powerglide G10 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210969, + "fields": { + "id_car_serie": 49986, + "name": "4.6 Powerglide G20 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210970, + "fields": { + "id_car_serie": 49986, + "name": "4.6 3MT G10 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210971, + "fields": { + "id_car_serie": 49986, + "name": "4.6 3MT G20 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210972, + "fields": { + "id_car_serie": 49986, + "name": "5.0 Powerglide G20 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210973, + "fields": { + "id_car_serie": 49986, + "name": "5.0 Turbo Hydra-matic G10 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210974, + "fields": { + "id_car_serie": 49986, + "name": "5.0 Powerglide G10 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210975, + "fields": { + "id_car_serie": 49986, + "name": "5.0 Turbo Hydra-matic G20 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210976, + "fields": { + "id_car_serie": 49986, + "name": "5.0 3MT G10 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210977, + "fields": { + "id_car_serie": 49986, + "name": "5.0 3MT G20 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210978, + "fields": { + "id_car_serie": 49986, + "name": "5.0 4MT G10 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210979, + "fields": { + "id_car_serie": 49986, + "name": "5.0 4MT G20 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210980, + "fields": { + "id_car_serie": 49986, + "name": "5.7 Powerglide G20 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210981, + "fields": { + "id_car_serie": 49986, + "name": "5.7 Turbo Hydra-matic G10 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210982, + "fields": { + "id_car_serie": 49986, + "name": "5.7 Powerglide G10 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210983, + "fields": { + "id_car_serie": 49986, + "name": "5.7 Turbo Hydra-matic G20 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210984, + "fields": { + "id_car_serie": 49986, + "name": "5.7 3MT G10 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210985, + "fields": { + "id_car_serie": 49986, + "name": "5.7 3MT G20 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210986, + "fields": { + "id_car_serie": 49986, + "name": "5.7 4MT G10 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210987, + "fields": { + "id_car_serie": 49986, + "name": "5.7 4MT G20 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210988, + "fields": { + "id_car_serie": 49987, + "name": "3.2 Powerglide (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210989, + "fields": { + "id_car_serie": 49987, + "name": "3.2 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210990, + "fields": { + "id_car_serie": 49987, + "name": "3.8 Powerglide (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 210991, + "fields": { + "id_car_serie": 49987, + "name": "3.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211000, + "fields": { + "id_car_serie": 49990, + "name": "2.7 Powerglide (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211001, + "fields": { + "id_car_serie": 49990, + "name": "2.7 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211002, + "fields": { + "id_car_serie": 49990, + "name": "2.7 Powerglide (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211003, + "fields": { + "id_car_serie": 49990, + "name": "2.7 3MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211004, + "fields": { + "id_car_serie": 49990, + "name": "2.7 4MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211005, + "fields": { + "id_car_serie": 49990, + "name": "2.7 3MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211006, + "fields": { + "id_car_serie": 49990, + "name": "2.7 4MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211007, + "fields": { + "id_car_serie": 49990, + "name": "2.7 Turbocharged 4MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211008, + "fields": { + "id_car_serie": 49990, + "name": "2.7 3MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211009, + "fields": { + "id_car_serie": 49990, + "name": "2.7 Turbocharged 3MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211010, + "fields": { + "id_car_serie": 49990, + "name": "2.7 4MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211011, + "fields": { + "id_car_serie": 49991, + "name": "2.7 Powerglide (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211012, + "fields": { + "id_car_serie": 49991, + "name": "2.7 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211013, + "fields": { + "id_car_serie": 49991, + "name": "2.7 Powerglide (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211014, + "fields": { + "id_car_serie": 49991, + "name": "2.7 3MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211015, + "fields": { + "id_car_serie": 49991, + "name": "2.7 4MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211016, + "fields": { + "id_car_serie": 49991, + "name": "2.7 4MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211017, + "fields": { + "id_car_serie": 49991, + "name": "2.7 3MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211018, + "fields": { + "id_car_serie": 49991, + "name": "2.7 Turbocharged 4MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211019, + "fields": { + "id_car_serie": 49991, + "name": "2.7 3MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211020, + "fields": { + "id_car_serie": 49991, + "name": "2.7 Turbocharged 3MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211021, + "fields": { + "id_car_serie": 49991, + "name": "2.7 4MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211022, + "fields": { + "id_car_serie": 49992, + "name": "2.7 Powerglide (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211023, + "fields": { + "id_car_serie": 49992, + "name": "2.7 Powerglide (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211024, + "fields": { + "id_car_serie": 49992, + "name": "2.7 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211025, + "fields": { + "id_car_serie": 49992, + "name": "2.7 4MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211026, + "fields": { + "id_car_serie": 49992, + "name": "2.7 3MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211027, + "fields": { + "id_car_serie": 49992, + "name": "2.7 4MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211028, + "fields": { + "id_car_serie": 49992, + "name": "2.7 3MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211029, + "fields": { + "id_car_serie": 49992, + "name": "2.7 4MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211030, + "fields": { + "id_car_serie": 49992, + "name": "2.7 3MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211031, + "fields": { + "id_car_serie": 49993, + "name": "2.7 Powerglide (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211032, + "fields": { + "id_car_serie": 49993, + "name": "2.7 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211033, + "fields": { + "id_car_serie": 49993, + "name": "2.7 Powerglide (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211034, + "fields": { + "id_car_serie": 49993, + "name": "2.7 3MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211035, + "fields": { + "id_car_serie": 49993, + "name": "2.7 4MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211036, + "fields": { + "id_car_serie": 49993, + "name": "2.7 3MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211037, + "fields": { + "id_car_serie": 49993, + "name": "2.7 4MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211038, + "fields": { + "id_car_serie": 49993, + "name": "2.7 Turbocharged 4MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211039, + "fields": { + "id_car_serie": 49993, + "name": "2.7 3MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211040, + "fields": { + "id_car_serie": 49993, + "name": "2.7 Turbocharged 3MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211041, + "fields": { + "id_car_serie": 49993, + "name": "2.7 4MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211042, + "fields": { + "id_car_serie": 49994, + "name": "2.7 Powerglide (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211043, + "fields": { + "id_car_serie": 49994, + "name": "2.7 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211044, + "fields": { + "id_car_serie": 49994, + "name": "2.7 Powerglide (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211045, + "fields": { + "id_car_serie": 49994, + "name": "2.7 3MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211046, + "fields": { + "id_car_serie": 49994, + "name": "2.7 4MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211047, + "fields": { + "id_car_serie": 49994, + "name": "2.7 3MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211048, + "fields": { + "id_car_serie": 49994, + "name": "2.7 4MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211049, + "fields": { + "id_car_serie": 49994, + "name": "2.7 Turbocharged 4MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211050, + "fields": { + "id_car_serie": 49994, + "name": "2.7 3MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211051, + "fields": { + "id_car_serie": 49994, + "name": "2.7 Turbocharged 3MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211052, + "fields": { + "id_car_serie": 49994, + "name": "2.7 4MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211053, + "fields": { + "id_car_serie": 49996, + "name": "2.7 Powerglide (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211054, + "fields": { + "id_car_serie": 49996, + "name": "2.7 Powerglide (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211055, + "fields": { + "id_car_serie": 49996, + "name": "2.7 4MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211056, + "fields": { + "id_car_serie": 49996, + "name": "2.7 4MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211057, + "fields": { + "id_car_serie": 49996, + "name": "2.7 3MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211058, + "fields": { + "id_car_serie": 49996, + "name": "2.7 3MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211059, + "fields": { + "id_car_serie": 49997, + "name": "2.7 Powerglide (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211060, + "fields": { + "id_car_serie": 49997, + "name": "2.7 Powerglide (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211061, + "fields": { + "id_car_serie": 49997, + "name": "2.7 4MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211062, + "fields": { + "id_car_serie": 49997, + "name": "2.7 3MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211063, + "fields": { + "id_car_serie": 49997, + "name": "2.7 4MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211064, + "fields": { + "id_car_serie": 49997, + "name": "2.7 Turbocharged 4MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211065, + "fields": { + "id_car_serie": 49997, + "name": "2.7 3MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211066, + "fields": { + "id_car_serie": 49997, + "name": "2.7 Turbocharged 3MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211067, + "fields": { + "id_car_serie": 49998, + "name": "2.4 Powerglide (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211068, + "fields": { + "id_car_serie": 49998, + "name": "2.4 Powerglide (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211069, + "fields": { + "id_car_serie": 49998, + "name": "2.4 Powerglide (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211070, + "fields": { + "id_car_serie": 49998, + "name": "2.4 4Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211071, + "fields": { + "id_car_serie": 49998, + "name": "2.4 3Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211072, + "fields": { + "id_car_serie": 49998, + "name": "2.4 4Synchromesh (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211073, + "fields": { + "id_car_serie": 49998, + "name": "2.4 3Synchromesh (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211074, + "fields": { + "id_car_serie": 49999, + "name": "2.4 Powerglide (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211075, + "fields": { + "id_car_serie": 49999, + "name": "2.4 Powerglide (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211076, + "fields": { + "id_car_serie": 49999, + "name": "2.4 Powerglide (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211077, + "fields": { + "id_car_serie": 49999, + "name": "2.4 3Synchromesh (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211078, + "fields": { + "id_car_serie": 49999, + "name": "2.4 4Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211079, + "fields": { + "id_car_serie": 49999, + "name": "2.4 Turbocharged 4MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211080, + "fields": { + "id_car_serie": 49999, + "name": "2.4 3Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211081, + "fields": { + "id_car_serie": 49999, + "name": "2.4 Turbocharged 3MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211082, + "fields": { + "id_car_serie": 49999, + "name": "2.4 4Synchromesh (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211083, + "fields": { + "id_car_serie": 50000, + "name": "2.4 Powerglide (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211084, + "fields": { + "id_car_serie": 50000, + "name": "2.4 Powerglide (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211085, + "fields": { + "id_car_serie": 50000, + "name": "2.4 Powerglide (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211086, + "fields": { + "id_car_serie": 50000, + "name": "2.4 3Synchromesh (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211087, + "fields": { + "id_car_serie": 50000, + "name": "2.4 4Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211088, + "fields": { + "id_car_serie": 50000, + "name": "2.4 Turbocharged 4MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211089, + "fields": { + "id_car_serie": 50000, + "name": "2.4 3Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211090, + "fields": { + "id_car_serie": 50000, + "name": "2.4 Turbocharged 3MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211091, + "fields": { + "id_car_serie": 50000, + "name": "2.4 4Synchromesh (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211092, + "fields": { + "id_car_serie": 50001, + "name": "2.4 Powerglide (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211093, + "fields": { + "id_car_serie": 50001, + "name": "2.4 Powerglide (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211094, + "fields": { + "id_car_serie": 50001, + "name": "2.4 4Synchromesh (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211095, + "fields": { + "id_car_serie": 50001, + "name": "2.4 3Synchromesh (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211096, + "fields": { + "id_car_serie": 50001, + "name": "2.4 4Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211097, + "fields": { + "id_car_serie": 50001, + "name": "2.4 3Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211098, + "fields": { + "id_car_serie": 50002, + "name": "2.4 Powerglide (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211099, + "fields": { + "id_car_serie": 50002, + "name": "2.4 Powerglide (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211100, + "fields": { + "id_car_serie": 50002, + "name": "2.4 4Synchromesh (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211101, + "fields": { + "id_car_serie": 50002, + "name": "2.4 3Synchromesh (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211102, + "fields": { + "id_car_serie": 50002, + "name": "2.4 4Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211103, + "fields": { + "id_car_serie": 50002, + "name": "2.4 3Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211104, + "fields": { + "id_car_serie": 50003, + "name": "2.4 Powerglide (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211105, + "fields": { + "id_car_serie": 50003, + "name": "2.4 Powerglide (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211106, + "fields": { + "id_car_serie": 50003, + "name": "2.4 4Synchromesh (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211107, + "fields": { + "id_car_serie": 50003, + "name": "2.4 3Synchromesh (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211108, + "fields": { + "id_car_serie": 50003, + "name": "2.4 4Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211109, + "fields": { + "id_car_serie": 50003, + "name": "2.4 3Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211110, + "fields": { + "id_car_serie": 50004, + "name": "2.4 Powerglide (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211111, + "fields": { + "id_car_serie": 50004, + "name": "2.4 4Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211112, + "fields": { + "id_car_serie": 50004, + "name": "2.4 3Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211113, + "fields": { + "id_car_serie": 50005, + "name": "2.4 Powerglide (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211114, + "fields": { + "id_car_serie": 50005, + "name": "2.4 4Synchromesh (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211115, + "fields": { + "id_car_serie": 50005, + "name": "2.4 4Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211116, + "fields": { + "id_car_serie": 50005, + "name": "2.4 3Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211117, + "fields": { + "id_car_serie": 50006, + "name": "2.4 Powerglide (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211118, + "fields": { + "id_car_serie": 50006, + "name": "2.4 4Synchromesh (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211119, + "fields": { + "id_car_serie": 50006, + "name": "2.4 3Synchromesh (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211120, + "fields": { + "id_car_serie": 50006, + "name": "2.4 4Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211121, + "fields": { + "id_car_serie": 50006, + "name": "2.4 3Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211122, + "fields": { + "id_car_serie": 50007, + "name": "2.4 3Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211123, + "fields": { + "id_car_serie": 50007, + "name": "2.4 4Synchromesh (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211124, + "fields": { + "id_car_serie": 50007, + "name": "2.4 3Synchromesh (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211125, + "fields": { + "id_car_serie": 50007, + "name": "2.4 4Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211129, + "fields": { + "id_car_serie": 50010, + "name": "2.3 Powerglide (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211130, + "fields": { + "id_car_serie": 50010, + "name": "2.3 Synchromesh (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211131, + "fields": { + "id_car_serie": 50010, + "name": "2.3 Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211132, + "fields": { + "id_car_serie": 50011, + "name": "2.3 Powerglide (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211133, + "fields": { + "id_car_serie": 50011, + "name": "2.3 Synchromesh (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211134, + "fields": { + "id_car_serie": 50011, + "name": "2.3 Synchromesh (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211135, + "fields": { + "id_car_serie": 50012, + "name": "4.0 TD MT 4x4 (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211136, + "fields": { + "id_car_serie": 50012, + "name": "4.0 TD MT 6 seat (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211137, + "fields": { + "id_car_serie": 50012, + "name": "4.0 D MT 6 seat (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211138, + "fields": { + "id_car_serie": 50012, + "name": "4.0 TD MT 4x4 6 seat (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211139, + "fields": { + "id_car_serie": 50012, + "name": "4.0 TD MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211140, + "fields": { + "id_car_serie": 50012, + "name": "4.0 D MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211141, + "fields": { + "id_car_serie": 50013, + "name": "4.0 TD MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211142, + "fields": { + "id_car_serie": 50013, + "name": "4.0 D MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211143, + "fields": { + "id_car_serie": 50016, + "name": "1.2 D MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211144, + "fields": { + "id_car_serie": 50016, + "name": "1.4 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211145, + "fields": { + "id_car_serie": 50017, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211146, + "fields": { + "id_car_serie": 50017, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211147, + "fields": { + "id_car_serie": 50018, + "name": "2.0 AT AWD (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211148, + "fields": { + "id_car_serie": 50018, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211149, + "fields": { + "id_car_serie": 50018, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211150, + "fields": { + "id_car_serie": 50018, + "name": "2.0 TD MT AWD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211151, + "fields": { + "id_car_serie": 50018, + "name": "2.0 MT AWD (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211152, + "fields": { + "id_car_serie": 50018, + "name": "2.0 TD MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211153, + "fields": { + "id_car_serie": 50018, + "name": "2.5 AT AWD (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211154, + "fields": { + "id_car_serie": 50018, + "name": "2.5 MT AWD (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211155, + "fields": { + "id_car_serie": 50019, + "name": "1.6 MT Sport AWD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211156, + "fields": { + "id_car_serie": 50019, + "name": "1.6 MT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211157, + "fields": { + "id_car_serie": 50021, + "name": "1.8 Flexfuel Turbo Hydra-Matic (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211158, + "fields": { + "id_car_serie": 50021, + "name": "1.8 Flexfuel Turbo Hydra-Matic (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211159, + "fields": { + "id_car_serie": 50021, + "name": "1.8 Turbo Hydra-Matic (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211160, + "fields": { + "id_car_serie": 50021, + "name": "1.8 Turbo Hydra-Matic (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211161, + "fields": { + "id_car_serie": 50021, + "name": "1.8 Flexfuel MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211162, + "fields": { + "id_car_serie": 50021, + "name": "1.8 Flexfuel MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211163, + "fields": { + "id_car_serie": 50021, + "name": "1.8 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211164, + "fields": { + "id_car_serie": 50021, + "name": "2.0 MT (119 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211165, + "fields": { + "id_car_serie": 50021, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211166, + "fields": { + "id_car_serie": 50021, + "name": "2.0 Flexfuel MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211167, + "fields": { + "id_car_serie": 50022, + "name": "1.3 MT 4x4 (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211168, + "fields": { + "id_car_serie": 50023, + "name": "1.8 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211169, + "fields": { + "id_car_serie": 50023, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211170, + "fields": { + "id_car_serie": 50023, + "name": "2.0 MT (119 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211171, + "fields": { + "id_car_serie": 50024, + "name": "2.0 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211172, + "fields": { + "id_car_serie": 50025, + "name": "1.8 Flexfuel AT (98 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211174, + "fields": { + "id_car_serie": 50025, + "name": "1.8 AT (97 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211175, + "fields": { + "id_car_serie": 50025, + "name": "1.8 Flexfuel AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211176, + "fields": { + "id_car_serie": 50025, + "name": "1.8 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211178, + "fields": { + "id_car_serie": 50025, + "name": "1.8 Flexfuel MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211179, + "fields": { + "id_car_serie": 50025, + "name": "1.8 MT (97 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211180, + "fields": { + "id_car_serie": 50025, + "name": "1.8 Flexfuel MT (98 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211183, + "fields": { + "id_car_serie": 50025, + "name": "1.8 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211184, + "fields": { + "id_car_serie": 50025, + "name": "2.0 Flexfuel MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211185, + "fields": { + "id_car_serie": 50025, + "name": "2.0 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211186, + "fields": { + "id_car_serie": 50025, + "name": "2.0 MT (119 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211187, + "fields": { + "id_car_serie": 50026, + "name": "3.8 Tri-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211188, + "fields": { + "id_car_serie": 50026, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211189, + "fields": { + "id_car_serie": 50026, + "name": "4.1 Tri-Matic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211190, + "fields": { + "id_car_serie": 50026, + "name": "4.1 Tri-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211191, + "fields": { + "id_car_serie": 50026, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211192, + "fields": { + "id_car_serie": 50027, + "name": "1.4 AT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211193, + "fields": { + "id_car_serie": 50027, + "name": "1.4 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211194, + "fields": { + "id_car_serie": 50027, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211195, + "fields": { + "id_car_serie": 50027, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211196, + "fields": { + "id_car_serie": 50029, + "name": "0.8 AT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211197, + "fields": { + "id_car_serie": 50029, + "name": "0.8 MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211198, + "fields": { + "id_car_serie": 50029, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211199, + "fields": { + "id_car_serie": 50030, + "name": "0.8 AT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211200, + "fields": { + "id_car_serie": 50030, + "name": "0.8 MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211201, + "fields": { + "id_car_serie": 50030, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211202, + "fields": { + "id_car_serie": 50031, + "name": "0.8 MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211203, + "fields": { + "id_car_serie": 50031, + "name": "1.0 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211204, + "fields": { + "id_car_serie": 50032, + "name": "1.4 Flexfuel MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211205, + "fields": { + "id_car_serie": 50032, + "name": "1.8 Flexfuel Easytronic (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211206, + "fields": { + "id_car_serie": 50032, + "name": "1.8 Flexfuel MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211207, + "fields": { + "id_car_serie": 50033, + "name": "1.8 Flexfuel Easytronic (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211208, + "fields": { + "id_car_serie": 50033, + "name": "1.8 Flexfuel MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211209, + "fields": { + "id_car_serie": 50033, + "name": "1.8 Flexfuel MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211210, + "fields": { + "id_car_serie": 50034, + "name": "1.4 Flex MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211211, + "fields": { + "id_car_serie": 50034, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211212, + "fields": { + "id_car_serie": 50037, + "name": "1.8 Flex MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211213, + "fields": { + "id_car_serie": 50037, + "name": "1.8 Flex MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211215, + "fields": { + "id_car_serie": 50039, + "name": "1.2 MT 8 seat (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211216, + "fields": { + "id_car_serie": 50039, + "name": "1.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211217, + "fields": { + "id_car_serie": 50040, + "name": "1.2 MT 8 seat (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211218, + "fields": { + "id_car_serie": 50040, + "name": "1.2 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211220, + "fields": { + "id_car_serie": 50042, + "name": "1.6 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211221, + "fields": { + "id_car_serie": 50042, + "name": "1.6 AT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211222, + "fields": { + "id_car_serie": 50042, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211223, + "fields": { + "id_car_serie": 50042, + "name": "1.6 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211224, + "fields": { + "id_car_serie": 50042, + "name": "1.6 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211225, + "fields": { + "id_car_serie": 50042, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211226, + "fields": { + "id_car_serie": 50043, + "name": "4.1 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211227, + "fields": { + "id_car_serie": 50043, + "name": "4.1 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211228, + "fields": { + "id_car_serie": 50043, + "name": "4.1 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211229, + "fields": { + "id_car_serie": 50043, + "name": "4.1 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211230, + "fields": { + "id_car_serie": 50043, + "name": "5.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211231, + "fields": { + "id_car_serie": 50043, + "name": "5.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211232, + "fields": { + "id_car_serie": 50043, + "name": "5.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211233, + "fields": { + "id_car_serie": 50043, + "name": "5.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211234, + "fields": { + "id_car_serie": 50043, + "name": "5.7 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211235, + "fields": { + "id_car_serie": 50044, + "name": "4.1 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211236, + "fields": { + "id_car_serie": 50044, + "name": "4.1 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211237, + "fields": { + "id_car_serie": 50044, + "name": "4.1 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211238, + "fields": { + "id_car_serie": 50044, + "name": "4.1 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211239, + "fields": { + "id_car_serie": 50044, + "name": "5.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211240, + "fields": { + "id_car_serie": 50044, + "name": "5.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211241, + "fields": { + "id_car_serie": 50044, + "name": "5.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211242, + "fields": { + "id_car_serie": 50044, + "name": "5.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211243, + "fields": { + "id_car_serie": 50044, + "name": "5.7 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211244, + "fields": { + "id_car_serie": 50045, + "name": "4.1 Turbo Hydra-Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211245, + "fields": { + "id_car_serie": 50045, + "name": "4.1 Turbo Hydra-Matic (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211246, + "fields": { + "id_car_serie": 50045, + "name": "4.1 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211247, + "fields": { + "id_car_serie": 50045, + "name": "4.1 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211248, + "fields": { + "id_car_serie": 50045, + "name": "5.0 Turbo Hydra-Matic (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211249, + "fields": { + "id_car_serie": 50045, + "name": "5.0 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211250, + "fields": { + "id_car_serie": 50045, + "name": "5.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211251, + "fields": { + "id_car_serie": 50045, + "name": "5.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211252, + "fields": { + "id_car_serie": 50045, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211253, + "fields": { + "id_car_serie": 50046, + "name": "4.1 Turbo Hydra-Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211254, + "fields": { + "id_car_serie": 50046, + "name": "4.1 Turbo Hydra-Matic (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211255, + "fields": { + "id_car_serie": 50046, + "name": "4.1 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211256, + "fields": { + "id_car_serie": 50046, + "name": "4.1 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211257, + "fields": { + "id_car_serie": 50046, + "name": "5.0 Turbo Hydra-Matic (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211258, + "fields": { + "id_car_serie": 50046, + "name": "5.0 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211259, + "fields": { + "id_car_serie": 50046, + "name": "5.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211260, + "fields": { + "id_car_serie": 50046, + "name": "5.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211261, + "fields": { + "id_car_serie": 50046, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211262, + "fields": { + "id_car_serie": 50047, + "name": "4.1 Turbo Hydra-Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211263, + "fields": { + "id_car_serie": 50047, + "name": "4.1 Turbo Hydra-Matic (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211264, + "fields": { + "id_car_serie": 50047, + "name": "4.1 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211265, + "fields": { + "id_car_serie": 50047, + "name": "4.1 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211266, + "fields": { + "id_car_serie": 50047, + "name": "5.0 Turbo Hydra-Matic (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211267, + "fields": { + "id_car_serie": 50047, + "name": "5.0 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211268, + "fields": { + "id_car_serie": 50047, + "name": "5.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211269, + "fields": { + "id_car_serie": 50047, + "name": "5.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211270, + "fields": { + "id_car_serie": 50047, + "name": "5.7 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211271, + "fields": { + "id_car_serie": 50047, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211272, + "fields": { + "id_car_serie": 50047, + "name": "5.7 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211273, + "fields": { + "id_car_serie": 50047, + "name": "5.7 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211274, + "fields": { + "id_car_serie": 50048, + "name": "4.1 Turbo Hydra-Matic (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211275, + "fields": { + "id_car_serie": 50048, + "name": "4.1 Turbo Hydra-Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211276, + "fields": { + "id_car_serie": 50048, + "name": "4.1 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211277, + "fields": { + "id_car_serie": 50048, + "name": "4.1 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211278, + "fields": { + "id_car_serie": 50048, + "name": "5.0 Turbo Hydra-Matic (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211279, + "fields": { + "id_car_serie": 50048, + "name": "5.0 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211280, + "fields": { + "id_car_serie": 50048, + "name": "5.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211281, + "fields": { + "id_car_serie": 50048, + "name": "5.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211282, + "fields": { + "id_car_serie": 50048, + "name": "5.7 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211283, + "fields": { + "id_car_serie": 50048, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211284, + "fields": { + "id_car_serie": 50048, + "name": "5.7 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211285, + "fields": { + "id_car_serie": 50048, + "name": "5.7 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211286, + "fields": { + "id_car_serie": 50049, + "name": "4.1 Turbo Hydra-Matic (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211287, + "fields": { + "id_car_serie": 50049, + "name": "4.1 Turbo Hydra-Matic (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211288, + "fields": { + "id_car_serie": 50049, + "name": "4.1 Turbo Hydra-Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211289, + "fields": { + "id_car_serie": 50049, + "name": "4.1 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211290, + "fields": { + "id_car_serie": 50049, + "name": "4.1 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211291, + "fields": { + "id_car_serie": 50049, + "name": "4.1 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211292, + "fields": { + "id_car_serie": 50049, + "name": "5.0 Turbo Hydra-Matic (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211293, + "fields": { + "id_car_serie": 50049, + "name": "5.0 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211294, + "fields": { + "id_car_serie": 50049, + "name": "5.0 Turbo Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211295, + "fields": { + "id_car_serie": 50049, + "name": "5.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211296, + "fields": { + "id_car_serie": 50049, + "name": "5.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211297, + "fields": { + "id_car_serie": 50049, + "name": "5.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211298, + "fields": { + "id_car_serie": 50049, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211299, + "fields": { + "id_car_serie": 50049, + "name": "5.7 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211300, + "fields": { + "id_car_serie": 50049, + "name": "5.7 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211301, + "fields": { + "id_car_serie": 50049, + "name": "5.7 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211302, + "fields": { + "id_car_serie": 50049, + "name": "5.7 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211303, + "fields": { + "id_car_serie": 50050, + "name": "4.1 Turbo Hydra-Matic (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211304, + "fields": { + "id_car_serie": 50050, + "name": "4.1 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211305, + "fields": { + "id_car_serie": 50050, + "name": "5.0 Turbo Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211306, + "fields": { + "id_car_serie": 50050, + "name": "5.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211307, + "fields": { + "id_car_serie": 50050, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211308, + "fields": { + "id_car_serie": 50050, + "name": "5.7 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211309, + "fields": { + "id_car_serie": 50051, + "name": "4.1 Turbo Hydra-Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211310, + "fields": { + "id_car_serie": 50051, + "name": "4.1 Turbo Hydra-Matic (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211311, + "fields": { + "id_car_serie": 50051, + "name": "4.1 Turbo Hydra-Matic (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211312, + "fields": { + "id_car_serie": 50051, + "name": "4.1 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211313, + "fields": { + "id_car_serie": 50051, + "name": "4.1 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211314, + "fields": { + "id_car_serie": 50051, + "name": "4.1 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211315, + "fields": { + "id_car_serie": 50051, + "name": "5.0 Turbo Hydra-Matic (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211316, + "fields": { + "id_car_serie": 50051, + "name": "5.0 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211317, + "fields": { + "id_car_serie": 50051, + "name": "5.0 Turbo Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211318, + "fields": { + "id_car_serie": 50051, + "name": "5.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211319, + "fields": { + "id_car_serie": 50051, + "name": "5.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211320, + "fields": { + "id_car_serie": 50051, + "name": "5.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211321, + "fields": { + "id_car_serie": 50051, + "name": "5.7 Turbo Hydra-Matic (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211322, + "fields": { + "id_car_serie": 50051, + "name": "5.7 Turbo Hydra-Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211323, + "fields": { + "id_car_serie": 50051, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211324, + "fields": { + "id_car_serie": 50051, + "name": "5.7 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211325, + "fields": { + "id_car_serie": 50051, + "name": "5.7 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211326, + "fields": { + "id_car_serie": 50051, + "name": "5.7 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211327, + "fields": { + "id_car_serie": 50052, + "name": "4.1 Turbo Hydra-Matic (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211328, + "fields": { + "id_car_serie": 50052, + "name": "4.1 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211329, + "fields": { + "id_car_serie": 50052, + "name": "4.3 Turbo Hydra-Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211330, + "fields": { + "id_car_serie": 50052, + "name": "4.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211331, + "fields": { + "id_car_serie": 50052, + "name": "5.7 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211332, + "fields": { + "id_car_serie": 50052, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211333, + "fields": { + "id_car_serie": 50052, + "name": "5.7 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211334, + "fields": { + "id_car_serie": 50052, + "name": "5.7 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211335, + "fields": { + "id_car_serie": 50053, + "name": "4.1 Turbo Hydra-Matic (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211336, + "fields": { + "id_car_serie": 50053, + "name": "4.1 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211337, + "fields": { + "id_car_serie": 50053, + "name": "4.3 Turbo Hydra-Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211338, + "fields": { + "id_car_serie": 50053, + "name": "4.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211339, + "fields": { + "id_car_serie": 50053, + "name": "5.7 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211340, + "fields": { + "id_car_serie": 50053, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211341, + "fields": { + "id_car_serie": 50053, + "name": "5.7 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211342, + "fields": { + "id_car_serie": 50053, + "name": "5.7 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211343, + "fields": { + "id_car_serie": 50054, + "name": "4.1 Turbo Hydra-Matic (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211344, + "fields": { + "id_car_serie": 50054, + "name": "4.1 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211345, + "fields": { + "id_car_serie": 50054, + "name": "4.3 Turbo Hydra-Matic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211346, + "fields": { + "id_car_serie": 50054, + "name": "4.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211347, + "fields": { + "id_car_serie": 50054, + "name": "5.7 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211348, + "fields": { + "id_car_serie": 50054, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211349, + "fields": { + "id_car_serie": 50054, + "name": "5.7 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211350, + "fields": { + "id_car_serie": 50054, + "name": "5.7 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211351, + "fields": { + "id_car_serie": 50055, + "name": "4.1 Powerglide (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211352, + "fields": { + "id_car_serie": 50055, + "name": "4.1 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211353, + "fields": { + "id_car_serie": 50055, + "name": "5.0 Turbo Hydra-Matic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211354, + "fields": { + "id_car_serie": 50055, + "name": "5.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211355, + "fields": { + "id_car_serie": 50055, + "name": "5.7 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211356, + "fields": { + "id_car_serie": 50055, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211357, + "fields": { + "id_car_serie": 50055, + "name": "5.7 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211358, + "fields": { + "id_car_serie": 50055, + "name": "5.7 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211359, + "fields": { + "id_car_serie": 50056, + "name": "4.1 Powerglide (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211360, + "fields": { + "id_car_serie": 50056, + "name": "4.1 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211361, + "fields": { + "id_car_serie": 50056, + "name": "5.0 Turbo Hydra-Matic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211362, + "fields": { + "id_car_serie": 50056, + "name": "5.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211363, + "fields": { + "id_car_serie": 50056, + "name": "5.7 Turbo Hydra-Matic (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211364, + "fields": { + "id_car_serie": 50056, + "name": "5.7 Turbo Hydra-Matic (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211365, + "fields": { + "id_car_serie": 50056, + "name": "5.7 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211366, + "fields": { + "id_car_serie": 50056, + "name": "5.7 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211367, + "fields": { + "id_car_serie": 50057, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211368, + "fields": { + "id_car_serie": 50057, + "name": "2.5 Torque-Drive (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211369, + "fields": { + "id_car_serie": 50057, + "name": "3.8 Turbo Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211370, + "fields": { + "id_car_serie": 50057, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211371, + "fields": { + "id_car_serie": 50057, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211372, + "fields": { + "id_car_serie": 50057, + "name": "3.8 Torque-Drive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211373, + "fields": { + "id_car_serie": 50057, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211374, + "fields": { + "id_car_serie": 50057, + "name": "4.1 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211375, + "fields": { + "id_car_serie": 50057, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211376, + "fields": { + "id_car_serie": 50057, + "name": "4.1 Torque-Drive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211377, + "fields": { + "id_car_serie": 50057, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211378, + "fields": { + "id_car_serie": 50057, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211379, + "fields": { + "id_car_serie": 50057, + "name": "5.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211380, + "fields": { + "id_car_serie": 50057, + "name": "5.7 Turbo Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211381, + "fields": { + "id_car_serie": 50057, + "name": "5.7 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211382, + "fields": { + "id_car_serie": 50057, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211383, + "fields": { + "id_car_serie": 50057, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211384, + "fields": { + "id_car_serie": 50057, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211385, + "fields": { + "id_car_serie": 50057, + "name": "5.7 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211386, + "fields": { + "id_car_serie": 50057, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211387, + "fields": { + "id_car_serie": 50058, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211388, + "fields": { + "id_car_serie": 50058, + "name": "2.5 Torque-Drive (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211389, + "fields": { + "id_car_serie": 50058, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211390, + "fields": { + "id_car_serie": 50058, + "name": "3.8 Turbo Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211391, + "fields": { + "id_car_serie": 50058, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211392, + "fields": { + "id_car_serie": 50058, + "name": "3.8 Torque-Drive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211393, + "fields": { + "id_car_serie": 50058, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211394, + "fields": { + "id_car_serie": 50058, + "name": "4.1 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211395, + "fields": { + "id_car_serie": 50058, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211396, + "fields": { + "id_car_serie": 50058, + "name": "4.1 Torque-Drive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211397, + "fields": { + "id_car_serie": 50058, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211398, + "fields": { + "id_car_serie": 50058, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211399, + "fields": { + "id_car_serie": 50058, + "name": "5.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211400, + "fields": { + "id_car_serie": 50058, + "name": "5.7 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211401, + "fields": { + "id_car_serie": 50058, + "name": "5.7 Turbo Hydra-Matic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211402, + "fields": { + "id_car_serie": 50058, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211403, + "fields": { + "id_car_serie": 50058, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211404, + "fields": { + "id_car_serie": 50058, + "name": "5.7 4MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211405, + "fields": { + "id_car_serie": 50058, + "name": "5.7 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211406, + "fields": { + "id_car_serie": 50058, + "name": "5.7 3MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211407, + "fields": { + "id_car_serie": 50059, + "name": "2.5 Powerglide (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211408, + "fields": { + "id_car_serie": 50059, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211409, + "fields": { + "id_car_serie": 50059, + "name": "2.5 Torque-Drive (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211410, + "fields": { + "id_car_serie": 50059, + "name": "3.8 Turbo Hydra-Matic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211411, + "fields": { + "id_car_serie": 50059, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211412, + "fields": { + "id_car_serie": 50059, + "name": "3.8 Torque-Drive (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211413, + "fields": { + "id_car_serie": 50059, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211414, + "fields": { + "id_car_serie": 50059, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211415, + "fields": { + "id_car_serie": 50059, + "name": "4.1 Turbo Hydra-Matic (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211416, + "fields": { + "id_car_serie": 50059, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211417, + "fields": { + "id_car_serie": 50059, + "name": "4.1 Torque-Drive (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211418, + "fields": { + "id_car_serie": 50059, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211419, + "fields": { + "id_car_serie": 50059, + "name": "5.0 Turbo Hydra-Matic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211420, + "fields": { + "id_car_serie": 50059, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211421, + "fields": { + "id_car_serie": 50059, + "name": "5.7 Powerglide (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211422, + "fields": { + "id_car_serie": 50059, + "name": "5.7 Turbo Hydra-Matic (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211423, + "fields": { + "id_car_serie": 50059, + "name": "5.7 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211424, + "fields": { + "id_car_serie": 50059, + "name": "5.7 Turbo Hydra-Matic (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211425, + "fields": { + "id_car_serie": 50059, + "name": "5.7 3MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211426, + "fields": { + "id_car_serie": 50059, + "name": "5.7 4MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211427, + "fields": { + "id_car_serie": 50059, + "name": "5.7 3MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211428, + "fields": { + "id_car_serie": 50059, + "name": "5.7 4MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211429, + "fields": { + "id_car_serie": 50060, + "name": "2.5 Powerglide (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211430, + "fields": { + "id_car_serie": 50060, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211431, + "fields": { + "id_car_serie": 50060, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211432, + "fields": { + "id_car_serie": 50060, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211433, + "fields": { + "id_car_serie": 50060, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211434, + "fields": { + "id_car_serie": 50060, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211435, + "fields": { + "id_car_serie": 50060, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211436, + "fields": { + "id_car_serie": 50060, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211437, + "fields": { + "id_car_serie": 50060, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211438, + "fields": { + "id_car_serie": 50060, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211439, + "fields": { + "id_car_serie": 50060, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211440, + "fields": { + "id_car_serie": 50060, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211441, + "fields": { + "id_car_serie": 50060, + "name": "5.7 Powerglide (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211442, + "fields": { + "id_car_serie": 50060, + "name": "5.7 3MT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211443, + "fields": { + "id_car_serie": 50060, + "name": "5.7 4MT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211444, + "fields": { + "id_car_serie": 50060, + "name": "5.7 MT HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211445, + "fields": { + "id_car_serie": 50061, + "name": "2.5 Powerglide (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211446, + "fields": { + "id_car_serie": 50061, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211447, + "fields": { + "id_car_serie": 50061, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211448, + "fields": { + "id_car_serie": 50061, + "name": "3.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211449, + "fields": { + "id_car_serie": 50061, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211450, + "fields": { + "id_car_serie": 50061, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211451, + "fields": { + "id_car_serie": 50061, + "name": "5.0 Powerglide (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211452, + "fields": { + "id_car_serie": 50061, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211453, + "fields": { + "id_car_serie": 50061, + "name": "5.0 3MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211454, + "fields": { + "id_car_serie": 50061, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211455, + "fields": { + "id_car_serie": 50061, + "name": "5.4 4MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211456, + "fields": { + "id_car_serie": 50061, + "name": "5.4 3MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211457, + "fields": { + "id_car_serie": 50061, + "name": "5.7 Powerglide (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211458, + "fields": { + "id_car_serie": 50061, + "name": "5.7 3MT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211459, + "fields": { + "id_car_serie": 50061, + "name": "5.7 4MT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211460, + "fields": { + "id_car_serie": 50061, + "name": "5.7 MT HD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211461, + "fields": { + "id_car_serie": 50062, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211462, + "fields": { + "id_car_serie": 50062, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211463, + "fields": { + "id_car_serie": 50062, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211464, + "fields": { + "id_car_serie": 50062, + "name": "4.1 Synchromesh (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211465, + "fields": { + "id_car_serie": 50062, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211466, + "fields": { + "id_car_serie": 50062, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211467, + "fields": { + "id_car_serie": 50062, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211468, + "fields": { + "id_car_serie": 50062, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211469, + "fields": { + "id_car_serie": 50062, + "name": "5.4 3Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211470, + "fields": { + "id_car_serie": 50062, + "name": "5.4 4Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211471, + "fields": { + "id_car_serie": 50063, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211472, + "fields": { + "id_car_serie": 50063, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211473, + "fields": { + "id_car_serie": 50063, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211474, + "fields": { + "id_car_serie": 50063, + "name": "4.1 Synchromesh (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211475, + "fields": { + "id_car_serie": 50063, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211476, + "fields": { + "id_car_serie": 50063, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211477, + "fields": { + "id_car_serie": 50063, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211478, + "fields": { + "id_car_serie": 50063, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211479, + "fields": { + "id_car_serie": 50063, + "name": "5.4 3Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211480, + "fields": { + "id_car_serie": 50063, + "name": "5.4 4Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211481, + "fields": { + "id_car_serie": 50064, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211482, + "fields": { + "id_car_serie": 50064, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211483, + "fields": { + "id_car_serie": 50064, + "name": "4.1 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211484, + "fields": { + "id_car_serie": 50064, + "name": "4.1 Synchromesh (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211485, + "fields": { + "id_car_serie": 50064, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211486, + "fields": { + "id_car_serie": 50064, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211487, + "fields": { + "id_car_serie": 50064, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211488, + "fields": { + "id_car_serie": 50064, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211489, + "fields": { + "id_car_serie": 50064, + "name": "5.4 3Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211490, + "fields": { + "id_car_serie": 50064, + "name": "5.4 4Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211491, + "fields": { + "id_car_serie": 50065, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211492, + "fields": { + "id_car_serie": 50065, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211493, + "fields": { + "id_car_serie": 50065, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211494, + "fields": { + "id_car_serie": 50065, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211495, + "fields": { + "id_car_serie": 50065, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211496, + "fields": { + "id_car_serie": 50065, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211497, + "fields": { + "id_car_serie": 50065, + "name": "4.6 3Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211498, + "fields": { + "id_car_serie": 50065, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211499, + "fields": { + "id_car_serie": 50065, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211500, + "fields": { + "id_car_serie": 50065, + "name": "4.6 4Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211501, + "fields": { + "id_car_serie": 50065, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211502, + "fields": { + "id_car_serie": 50065, + "name": "5.4 Powerglide (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211503, + "fields": { + "id_car_serie": 50065, + "name": "5.4 3Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211504, + "fields": { + "id_car_serie": 50065, + "name": "5.4 4Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211505, + "fields": { + "id_car_serie": 50065, + "name": "5.4 Synchromesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211506, + "fields": { + "id_car_serie": 50066, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211507, + "fields": { + "id_car_serie": 50066, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211508, + "fields": { + "id_car_serie": 50066, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211509, + "fields": { + "id_car_serie": 50066, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211510, + "fields": { + "id_car_serie": 50066, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211511, + "fields": { + "id_car_serie": 50066, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211512, + "fields": { + "id_car_serie": 50066, + "name": "4.6 3Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211513, + "fields": { + "id_car_serie": 50066, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211514, + "fields": { + "id_car_serie": 50066, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211515, + "fields": { + "id_car_serie": 50066, + "name": "4.6 4Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211516, + "fields": { + "id_car_serie": 50066, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211517, + "fields": { + "id_car_serie": 50066, + "name": "5.4 Powerglide (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211518, + "fields": { + "id_car_serie": 50066, + "name": "5.4 3Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211519, + "fields": { + "id_car_serie": 50066, + "name": "5.4 4Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211520, + "fields": { + "id_car_serie": 50066, + "name": "5.4 Synchromesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211521, + "fields": { + "id_car_serie": 50067, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211522, + "fields": { + "id_car_serie": 50067, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211523, + "fields": { + "id_car_serie": 50067, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211524, + "fields": { + "id_car_serie": 50067, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211525, + "fields": { + "id_car_serie": 50067, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211526, + "fields": { + "id_car_serie": 50067, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211527, + "fields": { + "id_car_serie": 50067, + "name": "4.6 3Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211528, + "fields": { + "id_car_serie": 50067, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211529, + "fields": { + "id_car_serie": 50067, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211530, + "fields": { + "id_car_serie": 50067, + "name": "4.6 4Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211531, + "fields": { + "id_car_serie": 50067, + "name": "5.4 Powerglide (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211532, + "fields": { + "id_car_serie": 50067, + "name": "5.4 Powerglide (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211533, + "fields": { + "id_car_serie": 50067, + "name": "5.4 3Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211534, + "fields": { + "id_car_serie": 50067, + "name": "5.4 4Synchromesh (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211535, + "fields": { + "id_car_serie": 50067, + "name": "5.4 Synchromesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211536, + "fields": { + "id_car_serie": 50068, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211537, + "fields": { + "id_car_serie": 50068, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211538, + "fields": { + "id_car_serie": 50068, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211539, + "fields": { + "id_car_serie": 50068, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211540, + "fields": { + "id_car_serie": 50068, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211541, + "fields": { + "id_car_serie": 50068, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211542, + "fields": { + "id_car_serie": 50068, + "name": "4.6 4Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211543, + "fields": { + "id_car_serie": 50068, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211544, + "fields": { + "id_car_serie": 50068, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211545, + "fields": { + "id_car_serie": 50068, + "name": "4.6 3Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211546, + "fields": { + "id_car_serie": 50068, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211547, + "fields": { + "id_car_serie": 50068, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211548, + "fields": { + "id_car_serie": 50068, + "name": "5.4 3Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211549, + "fields": { + "id_car_serie": 50068, + "name": "5.4 4Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211550, + "fields": { + "id_car_serie": 50068, + "name": "5.4 3Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211551, + "fields": { + "id_car_serie": 50068, + "name": "5.4 4Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211552, + "fields": { + "id_car_serie": 50069, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211553, + "fields": { + "id_car_serie": 50069, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211554, + "fields": { + "id_car_serie": 50069, + "name": "3.8 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211555, + "fields": { + "id_car_serie": 50069, + "name": "3.8 Synchromesh (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211556, + "fields": { + "id_car_serie": 50069, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211557, + "fields": { + "id_car_serie": 50069, + "name": "4.6 Powerglide (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211558, + "fields": { + "id_car_serie": 50069, + "name": "4.6 4Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211559, + "fields": { + "id_car_serie": 50069, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211560, + "fields": { + "id_car_serie": 50069, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211561, + "fields": { + "id_car_serie": 50069, + "name": "4.6 3Synchromesh (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211562, + "fields": { + "id_car_serie": 50069, + "name": "5.4 Powerglide (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211563, + "fields": { + "id_car_serie": 50069, + "name": "5.4 Powerglide (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211564, + "fields": { + "id_car_serie": 50069, + "name": "5.4 3Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211565, + "fields": { + "id_car_serie": 50069, + "name": "5.4 4Synchromesh (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211566, + "fields": { + "id_car_serie": 50069, + "name": "5.4 3Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211567, + "fields": { + "id_car_serie": 50069, + "name": "5.4 4Synchromesh (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211568, + "fields": { + "id_car_serie": 50070, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211569, + "fields": { + "id_car_serie": 50070, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211570, + "fields": { + "id_car_serie": 50070, + "name": "3.8 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211571, + "fields": { + "id_car_serie": 50070, + "name": "3.8 Synchromesh (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211572, + "fields": { + "id_car_serie": 50070, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211573, + "fields": { + "id_car_serie": 50070, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211574, + "fields": { + "id_car_serie": 50070, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211575, + "fields": { + "id_car_serie": 50071, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211576, + "fields": { + "id_car_serie": 50071, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211577, + "fields": { + "id_car_serie": 50071, + "name": "3.8 Powerglide (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211578, + "fields": { + "id_car_serie": 50071, + "name": "3.8 Synchromesh (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211579, + "fields": { + "id_car_serie": 50071, + "name": "4.6 Powerglide (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211580, + "fields": { + "id_car_serie": 50071, + "name": "4.6 3Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211581, + "fields": { + "id_car_serie": 50071, + "name": "4.6 4Synchromesh (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211582, + "fields": { + "id_car_serie": 50072, + "name": "2.5 Powerglide (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211583, + "fields": { + "id_car_serie": 50072, + "name": "2.5 Synchromesh (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211584, + "fields": { + "id_car_serie": 50072, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211585, + "fields": { + "id_car_serie": 50072, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211586, + "fields": { + "id_car_serie": 50073, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211587, + "fields": { + "id_car_serie": 50073, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211588, + "fields": { + "id_car_serie": 50074, + "name": "2.5 Powerglide (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211589, + "fields": { + "id_car_serie": 50074, + "name": "2.5 Synchromesh (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211590, + "fields": { + "id_car_serie": 50074, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211591, + "fields": { + "id_car_serie": 50074, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211592, + "fields": { + "id_car_serie": 50075, + "name": "2.5 Powerglide (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211593, + "fields": { + "id_car_serie": 50075, + "name": "2.5 Synchromesh (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211594, + "fields": { + "id_car_serie": 50075, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211595, + "fields": { + "id_car_serie": 50075, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211596, + "fields": { + "id_car_serie": 50076, + "name": "2.5 Powerglide (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211597, + "fields": { + "id_car_serie": 50076, + "name": "2.5 Synchromesh (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211598, + "fields": { + "id_car_serie": 50076, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211599, + "fields": { + "id_car_serie": 50076, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211600, + "fields": { + "id_car_serie": 50077, + "name": "2.5 Powerglide (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211601, + "fields": { + "id_car_serie": 50077, + "name": "2.5 Synchromesh (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211602, + "fields": { + "id_car_serie": 50077, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211603, + "fields": { + "id_car_serie": 50077, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211604, + "fields": { + "id_car_serie": 50078, + "name": "2.5 Powerglide (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211605, + "fields": { + "id_car_serie": 50078, + "name": "2.5 Synchromesh (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211606, + "fields": { + "id_car_serie": 50078, + "name": "3.2 Powerglide (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211607, + "fields": { + "id_car_serie": 50078, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211608, + "fields": { + "id_car_serie": 50079, + "name": "1.0 Flexfuel MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211609, + "fields": { + "id_car_serie": 50079, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211610, + "fields": { + "id_car_serie": 50079, + "name": "1.4 Flexfuel MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211611, + "fields": { + "id_car_serie": 50080, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211612, + "fields": { + "id_car_serie": 50080, + "name": "2.0 AT (119 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211613, + "fields": { + "id_car_serie": 50080, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211614, + "fields": { + "id_car_serie": 50080, + "name": "2.0 MT (119 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211615, + "fields": { + "id_car_serie": 50081, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211616, + "fields": { + "id_car_serie": 50081, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211617, + "fields": { + "id_car_serie": 50081, + "name": "1.8 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211618, + "fields": { + "id_car_serie": 50081, + "name": "1.8 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211619, + "fields": { + "id_car_serie": 50081, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211620, + "fields": { + "id_car_serie": 50081, + "name": "2.0 AT (119 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211621, + "fields": { + "id_car_serie": 50081, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211622, + "fields": { + "id_car_serie": 50081, + "name": "2.0 MT (119 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211623, + "fields": { + "id_car_serie": 50082, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211624, + "fields": { + "id_car_serie": 50082, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211625, + "fields": { + "id_car_serie": 50082, + "name": "1.8 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211626, + "fields": { + "id_car_serie": 50082, + "name": "1.8 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211627, + "fields": { + "id_car_serie": 50082, + "name": "2.0 AT (119 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211628, + "fields": { + "id_car_serie": 50082, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211629, + "fields": { + "id_car_serie": 50082, + "name": "2.0 MT (119 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211630, + "fields": { + "id_car_serie": 50084, + "name": "1.0 Flexfuel MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211631, + "fields": { + "id_car_serie": 50084, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211632, + "fields": { + "id_car_serie": 50084, + "name": "1.4 Flexfuel MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211633, + "fields": { + "id_car_serie": 50085, + "name": "1.0 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211634, + "fields": { + "id_car_serie": 50085, + "name": "1.4 Flexfuel MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211635, + "fields": { + "id_car_serie": 50086, + "name": "1.0 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211636, + "fields": { + "id_car_serie": 50086, + "name": "1.4 Flexfuel MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211637, + "fields": { + "id_car_serie": 50086, + "name": "1.4 Flexfuel MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211638, + "fields": { + "id_car_serie": 50089, + "name": "4.8 AT AWD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211639, + "fields": { + "id_car_serie": 50089, + "name": "4.8 AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211640, + "fields": { + "id_car_serie": 50089, + "name": "5.3 AT AWD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211641, + "fields": { + "id_car_serie": 50089, + "name": "5.3 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211642, + "fields": { + "id_car_serie": 50090, + "name": "1.8 Flexfuel AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211643, + "fields": { + "id_car_serie": 50090, + "name": "1.8 Flexfuel MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211644, + "fields": { + "id_car_serie": 50093, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211645, + "fields": { + "id_car_serie": 50093, + "name": "1.6 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211646, + "fields": { + "id_car_serie": 50093, + "name": "2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211647, + "fields": { + "id_car_serie": 50093, + "name": "2.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211648, + "fields": { + "id_car_serie": 50093, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211649, + "fields": { + "id_car_serie": 50093, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211650, + "fields": { + "id_car_serie": 50094, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211651, + "fields": { + "id_car_serie": 50100, + "name": "1.3 VCDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211652, + "fields": { + "id_car_serie": 50100, + "name": "1.4 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211653, + "fields": { + "id_car_serie": 50100, + "name": "1.8 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211654, + "fields": { + "id_car_serie": 50101, + "name": "2.3 Turbo Hydra-Matic (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211655, + "fields": { + "id_car_serie": 50101, + "name": "2.3 Turbo Hydra-Matic (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211656, + "fields": { + "id_car_serie": 50101, + "name": "2.3 Turbo Hydra-Matic (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211657, + "fields": { + "id_car_serie": 50101, + "name": "2.3 Turbo Hydra-Matic long (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211658, + "fields": { + "id_car_serie": 50101, + "name": "2.3 Turbo Hydra-Matic long (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211659, + "fields": { + "id_car_serie": 50101, + "name": "2.3 Turbo Hydra-Matic (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211660, + "fields": { + "id_car_serie": 50101, + "name": "2.3 Turbo Hydra-Matic (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211661, + "fields": { + "id_car_serie": 50101, + "name": "2.3 Turbo Hydra-Matic (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211662, + "fields": { + "id_car_serie": 50101, + "name": "2.3 Turbo Hydra-Matic (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211663, + "fields": { + "id_car_serie": 50101, + "name": "2.3 Turbo Hydra-Matic (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211664, + "fields": { + "id_car_serie": 50101, + "name": "2.3 Turbo Hydra-Matic long (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211665, + "fields": { + "id_car_serie": 50101, + "name": "2.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211666, + "fields": { + "id_car_serie": 50101, + "name": "2.3 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211667, + "fields": { + "id_car_serie": 50101, + "name": "2.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211668, + "fields": { + "id_car_serie": 50101, + "name": "2.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211669, + "fields": { + "id_car_serie": 50101, + "name": "2.3 5MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211670, + "fields": { + "id_car_serie": 50101, + "name": "2.3 5MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211671, + "fields": { + "id_car_serie": 50101, + "name": "2.3 4MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211672, + "fields": { + "id_car_serie": 50101, + "name": "2.3 4MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211673, + "fields": { + "id_car_serie": 50101, + "name": "2.3 4MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211674, + "fields": { + "id_car_serie": 50101, + "name": "2.3 4MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211675, + "fields": { + "id_car_serie": 50101, + "name": "2.3 4MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211676, + "fields": { + "id_car_serie": 50101, + "name": "2.3 4MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211677, + "fields": { + "id_car_serie": 50101, + "name": "2.3 4MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211678, + "fields": { + "id_car_serie": 50101, + "name": "2.3 4MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211679, + "fields": { + "id_car_serie": 50101, + "name": "2.3 4MT long (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211680, + "fields": { + "id_car_serie": 50101, + "name": "2.3 MT long (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211681, + "fields": { + "id_car_serie": 50101, + "name": "2.3 4MT long (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211682, + "fields": { + "id_car_serie": 50101, + "name": "2.3 MT long (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211683, + "fields": { + "id_car_serie": 50101, + "name": "2.3 4MT long (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211684, + "fields": { + "id_car_serie": 50101, + "name": "2.3 MT long (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211685, + "fields": { + "id_car_serie": 50101, + "name": "2.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211686, + "fields": { + "id_car_serie": 50101, + "name": "2.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211687, + "fields": { + "id_car_serie": 50101, + "name": "2.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211688, + "fields": { + "id_car_serie": 50101, + "name": "2.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211689, + "fields": { + "id_car_serie": 50102, + "name": "2.3 Turbo Hydra-Matic (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211690, + "fields": { + "id_car_serie": 50102, + "name": "2.3 Turbo Hydra-Matic (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211691, + "fields": { + "id_car_serie": 50102, + "name": "2.3 Turbo Hydra-Matic (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211692, + "fields": { + "id_car_serie": 50102, + "name": "2.3 Turbo Hydra-Matic (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211693, + "fields": { + "id_car_serie": 50102, + "name": "2.3 Turbo Hydra-Matic (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211694, + "fields": { + "id_car_serie": 50102, + "name": "2.3 Turbo Hydra-Matic (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211695, + "fields": { + "id_car_serie": 50102, + "name": "2.3 Turbo Hydra-Matic (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211696, + "fields": { + "id_car_serie": 50102, + "name": "2.3 Turbo Hydra-Matic (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211697, + "fields": { + "id_car_serie": 50102, + "name": "2.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211698, + "fields": { + "id_car_serie": 50102, + "name": "2.3 4MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211699, + "fields": { + "id_car_serie": 50102, + "name": "2.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211700, + "fields": { + "id_car_serie": 50102, + "name": "2.3 4MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211701, + "fields": { + "id_car_serie": 50102, + "name": "2.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211702, + "fields": { + "id_car_serie": 50102, + "name": "2.3 4MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211703, + "fields": { + "id_car_serie": 50102, + "name": "2.3 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211704, + "fields": { + "id_car_serie": 50102, + "name": "2.3 4MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211705, + "fields": { + "id_car_serie": 50102, + "name": "2.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211706, + "fields": { + "id_car_serie": 50102, + "name": "2.3 4MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211707, + "fields": { + "id_car_serie": 50102, + "name": "2.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211708, + "fields": { + "id_car_serie": 50102, + "name": "2.3 5MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211709, + "fields": { + "id_car_serie": 50102, + "name": "2.3 4MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211710, + "fields": { + "id_car_serie": 50102, + "name": "2.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211711, + "fields": { + "id_car_serie": 50102, + "name": "2.3 5MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211712, + "fields": { + "id_car_serie": 50102, + "name": "2.3 4MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211713, + "fields": { + "id_car_serie": 50102, + "name": "2.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211714, + "fields": { + "id_car_serie": 50102, + "name": "2.3 4MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211715, + "fields": { + "id_car_serie": 50103, + "name": "2.3 Turbo Hydra-Matic LX (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211716, + "fields": { + "id_car_serie": 50103, + "name": "2.3 Turbo Hydra-Matic (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211717, + "fields": { + "id_car_serie": 50103, + "name": "2.3 Turbo Hydra-Matic (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211718, + "fields": { + "id_car_serie": 50103, + "name": "2.3 Turbo Hydra-Matic (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211719, + "fields": { + "id_car_serie": 50103, + "name": "2.3 Turbo Hydra-Matic LX (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211720, + "fields": { + "id_car_serie": 50103, + "name": "2.3 Turbo Hydra-Matic (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211721, + "fields": { + "id_car_serie": 50103, + "name": "2.3 Turbo Hydra-Matic LX (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211722, + "fields": { + "id_car_serie": 50103, + "name": "2.3 Turbo Hydra-Matic (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211723, + "fields": { + "id_car_serie": 50103, + "name": "2.3 4MT LX (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211724, + "fields": { + "id_car_serie": 50103, + "name": "2.3 MT LX (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211725, + "fields": { + "id_car_serie": 50103, + "name": "2.3 4MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211726, + "fields": { + "id_car_serie": 50103, + "name": "2.3 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211727, + "fields": { + "id_car_serie": 50103, + "name": "2.3 4MT LX (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211728, + "fields": { + "id_car_serie": 50103, + "name": "2.3 MT LX (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211729, + "fields": { + "id_car_serie": 50103, + "name": "2.3 4MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211730, + "fields": { + "id_car_serie": 50103, + "name": "2.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211731, + "fields": { + "id_car_serie": 50103, + "name": "2.3 4MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211732, + "fields": { + "id_car_serie": 50103, + "name": "2.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211733, + "fields": { + "id_car_serie": 50103, + "name": "2.3 4MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211734, + "fields": { + "id_car_serie": 50103, + "name": "2.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211735, + "fields": { + "id_car_serie": 50103, + "name": "2.3 4MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211736, + "fields": { + "id_car_serie": 50103, + "name": "2.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211737, + "fields": { + "id_car_serie": 50103, + "name": "2.3 4MT LX (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211738, + "fields": { + "id_car_serie": 50103, + "name": "2.3 MT LX (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211739, + "fields": { + "id_car_serie": 50103, + "name": "2.3 4MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211740, + "fields": { + "id_car_serie": 50103, + "name": "2.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211741, + "fields": { + "id_car_serie": 50104, + "name": "2.0 5MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211742, + "fields": { + "id_car_serie": 50104, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211743, + "fields": { + "id_car_serie": 50105, + "name": "2.3 Turbo Hydra-Matic (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211744, + "fields": { + "id_car_serie": 50105, + "name": "2.3 Turbo Hydra-Matic (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211745, + "fields": { + "id_car_serie": 50105, + "name": "2.3 Turbo Hydra-Matic (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211746, + "fields": { + "id_car_serie": 50105, + "name": "2.3 Turbo Hydra-Matic (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211747, + "fields": { + "id_car_serie": 50105, + "name": "2.3 Turbo Hydra-Matic (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211748, + "fields": { + "id_car_serie": 50105, + "name": "2.3 Turbo Hydra-Matic (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211749, + "fields": { + "id_car_serie": 50105, + "name": "2.3 Turbo Hydra-Matic (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211750, + "fields": { + "id_car_serie": 50105, + "name": "2.3 Turbo Hydra-Matic (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211751, + "fields": { + "id_car_serie": 50105, + "name": "2.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211752, + "fields": { + "id_car_serie": 50105, + "name": "2.3 4MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211753, + "fields": { + "id_car_serie": 50105, + "name": "2.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211754, + "fields": { + "id_car_serie": 50105, + "name": "2.3 4MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211755, + "fields": { + "id_car_serie": 50105, + "name": "2.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211756, + "fields": { + "id_car_serie": 50105, + "name": "2.3 4MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211757, + "fields": { + "id_car_serie": 50105, + "name": "2.3 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211758, + "fields": { + "id_car_serie": 50105, + "name": "2.3 4MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211759, + "fields": { + "id_car_serie": 50105, + "name": "2.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211760, + "fields": { + "id_car_serie": 50105, + "name": "2.3 4MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211761, + "fields": { + "id_car_serie": 50105, + "name": "2.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211762, + "fields": { + "id_car_serie": 50105, + "name": "2.3 5MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211763, + "fields": { + "id_car_serie": 50105, + "name": "2.3 4MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211764, + "fields": { + "id_car_serie": 50105, + "name": "2.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211765, + "fields": { + "id_car_serie": 50105, + "name": "2.3 5MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211766, + "fields": { + "id_car_serie": 50105, + "name": "2.3 4MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211767, + "fields": { + "id_car_serie": 50105, + "name": "2.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211768, + "fields": { + "id_car_serie": 50105, + "name": "2.3 4MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211769, + "fields": { + "id_car_serie": 50107, + "name": "2.3 Powerglide (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211770, + "fields": { + "id_car_serie": 50107, + "name": "2.3 Powerglide (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211771, + "fields": { + "id_car_serie": 50107, + "name": "2.3 Powerglide (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211772, + "fields": { + "id_car_serie": 50107, + "name": "2.3 Powerglide (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211773, + "fields": { + "id_car_serie": 50107, + "name": "2.3 Powerglide (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211774, + "fields": { + "id_car_serie": 50107, + "name": "2.3 Turbo Hydra-Matic (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211775, + "fields": { + "id_car_serie": 50107, + "name": "2.3 Turbo Hydra-Matic (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211776, + "fields": { + "id_car_serie": 50107, + "name": "2.3 Powerglide (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211777, + "fields": { + "id_car_serie": 50107, + "name": "2.3 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211778, + "fields": { + "id_car_serie": 50107, + "name": "2.3 4MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211779, + "fields": { + "id_car_serie": 50107, + "name": "2.3 4MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211780, + "fields": { + "id_car_serie": 50107, + "name": "2.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211781, + "fields": { + "id_car_serie": 50107, + "name": "2.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211782, + "fields": { + "id_car_serie": 50107, + "name": "2.3 4MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211783, + "fields": { + "id_car_serie": 50107, + "name": "2.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211784, + "fields": { + "id_car_serie": 50107, + "name": "2.3 4MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211785, + "fields": { + "id_car_serie": 50107, + "name": "2.3 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211786, + "fields": { + "id_car_serie": 50107, + "name": "2.3 4MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211787, + "fields": { + "id_car_serie": 50107, + "name": "2.3 4MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211788, + "fields": { + "id_car_serie": 50107, + "name": "2.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211789, + "fields": { + "id_car_serie": 50108, + "name": "2.3 Powerglide (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211790, + "fields": { + "id_car_serie": 50108, + "name": "2.3 Powerglide (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211791, + "fields": { + "id_car_serie": 50108, + "name": "2.3 Powerglide (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211792, + "fields": { + "id_car_serie": 50108, + "name": "2.3 Powerglide (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211793, + "fields": { + "id_car_serie": 50108, + "name": "2.3 Powerglide (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211794, + "fields": { + "id_car_serie": 50108, + "name": "2.3 Turbo Hydra-Matic (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211795, + "fields": { + "id_car_serie": 50108, + "name": "2.3 Turbo Hydra-Matic (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211796, + "fields": { + "id_car_serie": 50108, + "name": "2.3 Powerglide (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211797, + "fields": { + "id_car_serie": 50108, + "name": "2.3 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211798, + "fields": { + "id_car_serie": 50108, + "name": "2.3 4MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211799, + "fields": { + "id_car_serie": 50108, + "name": "2.3 4MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211800, + "fields": { + "id_car_serie": 50108, + "name": "2.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211801, + "fields": { + "id_car_serie": 50108, + "name": "2.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211802, + "fields": { + "id_car_serie": 50108, + "name": "2.3 4MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211803, + "fields": { + "id_car_serie": 50108, + "name": "2.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211804, + "fields": { + "id_car_serie": 50108, + "name": "2.3 4MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211805, + "fields": { + "id_car_serie": 50108, + "name": "2.3 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211806, + "fields": { + "id_car_serie": 50108, + "name": "2.3 4MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211807, + "fields": { + "id_car_serie": 50108, + "name": "2.3 4MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211808, + "fields": { + "id_car_serie": 50108, + "name": "2.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211809, + "fields": { + "id_car_serie": 50109, + "name": "2.3 Powerglide (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211810, + "fields": { + "id_car_serie": 50109, + "name": "2.3 Powerglide (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211811, + "fields": { + "id_car_serie": 50109, + "name": "2.3 Powerglide (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211812, + "fields": { + "id_car_serie": 50109, + "name": "2.3 Powerglide (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211813, + "fields": { + "id_car_serie": 50109, + "name": "2.3 Powerglide (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211814, + "fields": { + "id_car_serie": 50109, + "name": "2.3 Turbo Hydra-Matic (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211815, + "fields": { + "id_car_serie": 50109, + "name": "2.3 Turbo Hydra-Matic (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211816, + "fields": { + "id_car_serie": 50109, + "name": "2.3 Powerglide (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211817, + "fields": { + "id_car_serie": 50109, + "name": "2.3 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211818, + "fields": { + "id_car_serie": 50109, + "name": "2.3 4MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211819, + "fields": { + "id_car_serie": 50109, + "name": "2.3 4MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211820, + "fields": { + "id_car_serie": 50109, + "name": "2.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211821, + "fields": { + "id_car_serie": 50109, + "name": "2.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211822, + "fields": { + "id_car_serie": 50109, + "name": "2.3 4MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211823, + "fields": { + "id_car_serie": 50109, + "name": "2.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211824, + "fields": { + "id_car_serie": 50109, + "name": "2.3 4MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211825, + "fields": { + "id_car_serie": 50109, + "name": "2.3 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211826, + "fields": { + "id_car_serie": 50109, + "name": "2.3 4MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211827, + "fields": { + "id_car_serie": 50109, + "name": "2.3 4MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211828, + "fields": { + "id_car_serie": 50109, + "name": "2.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211829, + "fields": { + "id_car_serie": 50110, + "name": "1.6 MT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211830, + "fields": { + "id_car_serie": 50111, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211831, + "fields": { + "id_car_serie": 50111, + "name": "1.6 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211832, + "fields": { + "id_car_serie": 50111, + "name": "2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211833, + "fields": { + "id_car_serie": 50111, + "name": "2.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211834, + "fields": { + "id_car_serie": 50111, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211835, + "fields": { + "id_car_serie": 50111, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211836, + "fields": { + "id_car_serie": 50112, + "name": "2.5 AT Turbo (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211837, + "fields": { + "id_car_serie": 50113, + "name": "3.6 AT (283 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211838, + "fields": { + "id_car_serie": 50114, + "name": "2.8 D AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211839, + "fields": { + "id_car_serie": 50114, + "name": "3.8 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211848, + "fields": { + "id_car_serie": 50116, + "name": "2.4 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211849, + "fields": { + "id_car_serie": 50116, + "name": "2.5 D MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211850, + "fields": { + "id_car_serie": 50116, + "name": "2.8 D AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211851, + "fields": { + "id_car_serie": 50116, + "name": "3.3 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211852, + "fields": { + "id_car_serie": 50116, + "name": "3.3 AT AWD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211853, + "fields": { + "id_car_serie": 50116, + "name": "3.8 AT AWD (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211854, + "fields": { + "id_car_serie": 50117, + "name": "2.5 D MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211855, + "fields": { + "id_car_serie": 50117, + "name": "3.3 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211856, + "fields": { + "id_car_serie": 50117, + "name": "3.8 AT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211857, + "fields": { + "id_car_serie": 50118, + "name": "2.5 D MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211858, + "fields": { + "id_car_serie": 50118, + "name": "3.3 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211859, + "fields": { + "id_car_serie": 50118, + "name": "3.3 AT AWD (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211943, + "fields": { + "id_car_serie": 50125, + "name": "1.4 MT TL (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211944, + "fields": { + "id_car_serie": 50125, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211945, + "fields": { + "id_car_serie": 50125, + "name": "1.6 MT GTL (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211946, + "fields": { + "id_car_serie": 50127, + "name": "4.2 AT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211947, + "fields": { + "id_car_serie": 50128, + "name": "4.0 AT (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211948, + "fields": { + "id_car_serie": 50128, + "name": "4.0 AT (363 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211954, + "fields": { + "id_car_serie": 50132, + "name": "1.3 MT (5 places) (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211955, + "fields": { + "id_car_serie": 50132, + "name": "1.3 MT (7 places) (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211956, + "fields": { + "id_car_serie": 50132, + "name": "1.5 MT (5 places) (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 211957, + "fields": { + "id_car_serie": 50132, + "name": "1.5 MT (7 places) (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212032, + "fields": { + "id_car_serie": 50147, + "name": "4.2i AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212033, + "fields": { + "id_car_serie": 50147, + "name": "4.2i AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212034, + "fields": { + "id_car_serie": 50147, + "name": "4.2i MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212035, + "fields": { + "id_car_serie": 50147, + "name": "4.6i AT XL (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212036, + "fields": { + "id_car_serie": 50147, + "name": "4.6i AT XL (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212037, + "fields": { + "id_car_serie": 50147, + "name": "5.4i AT XLT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212038, + "fields": { + "id_car_serie": 50147, + "name": "5.4i AT XLT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212039, + "fields": { + "id_car_serie": 50148, + "name": "3.5 EcoBoost AT 4x4 5.5-ft. Styleside (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212040, + "fields": { + "id_car_serie": 50148, + "name": "3.5 EcoBoost AT 6.5-ft. Styleside (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212041, + "fields": { + "id_car_serie": 50148, + "name": "3.5 EcoBoost AT 4x4 6.5-ft. Styleside (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212042, + "fields": { + "id_car_serie": 50148, + "name": "3.5 EcoBoost AT 5.5-ft. Styleside (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212043, + "fields": { + "id_car_serie": 50148, + "name": "3.7 AT 5.5-ft. Styleside (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212044, + "fields": { + "id_car_serie": 50148, + "name": "4.6 AT 6.5-ft. Styleside (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212045, + "fields": { + "id_car_serie": 50148, + "name": "4.6 AT 4x4 5.5-ft. Styleside (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212046, + "fields": { + "id_car_serie": 50148, + "name": "4.6 AT 4x4 6.5-ft. Styleside (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212047, + "fields": { + "id_car_serie": 50148, + "name": "4.6 AT 6.5-ft. Styleside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212048, + "fields": { + "id_car_serie": 50148, + "name": "4.6 AT 5.5-ft. Styleside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212049, + "fields": { + "id_car_serie": 50148, + "name": "4.6 AT 5.5-ft. Styleside (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212050, + "fields": { + "id_car_serie": 50148, + "name": "5.0 AT 4x4 6.5-ft. Styleside (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212051, + "fields": { + "id_car_serie": 50148, + "name": "5.0 AT 4x4 5.5-ft. Styleside (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212052, + "fields": { + "id_car_serie": 50148, + "name": "5.0 AT 5.5-ft. Styleside (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212053, + "fields": { + "id_car_serie": 50148, + "name": "5.0 AT 6.5-ft. Styleside (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212054, + "fields": { + "id_car_serie": 50148, + "name": "5.4 AT 4x4 6.5-ft. Styleside (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212055, + "fields": { + "id_car_serie": 50148, + "name": "5.4 AT 6.5-ft. Styleside (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212056, + "fields": { + "id_car_serie": 50148, + "name": "5.4 AT 4x4 5.5-ft. Styleside (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212057, + "fields": { + "id_car_serie": 50148, + "name": "5.4 AT 5.5-ft. Styleside (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212058, + "fields": { + "id_car_serie": 50148, + "name": "6.2 AT 5.5-ft. Styleside (416 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212059, + "fields": { + "id_car_serie": 50148, + "name": "6.2 AT 4x4 5.5-ft. Styleside (416 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212060, + "fields": { + "id_car_serie": 50148, + "name": "6.2 AT 6.5-ft. Styleside (416 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212061, + "fields": { + "id_car_serie": 50148, + "name": "6.2 AT 4x4 6.5-ft. Styleside (416 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212064, + "fields": { + "id_car_serie": 50150, + "name": "3.5 EcoBoost AT 8.0-ft. Styleside (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212065, + "fields": { + "id_car_serie": 50150, + "name": "3.5 EcoBoost AT 4x4 8.0-ft. Styleside (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212066, + "fields": { + "id_car_serie": 50150, + "name": "3.5 EcoBoost AT 6.5-ft. Styleside (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212067, + "fields": { + "id_car_serie": 50150, + "name": "3.5 EcoBoost AT 4x4 6.5-ft. Styleside (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212068, + "fields": { + "id_car_serie": 50150, + "name": "3.7 AT 6.5-ft. Styleside (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212069, + "fields": { + "id_car_serie": 50150, + "name": "3.7 AT 4x4 6.5-ft. Styleside (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212070, + "fields": { + "id_car_serie": 50150, + "name": "4.6 AT 4x4 6.5-ft. Styleside (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212071, + "fields": { + "id_car_serie": 50150, + "name": "4.6 AT 6.5-ft. Styleside (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212072, + "fields": { + "id_car_serie": 50150, + "name": "4.6 AT 4x4 6.5-ft. Styleside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212073, + "fields": { + "id_car_serie": 50150, + "name": "4.6 AT 6.5-ft. Styleside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212074, + "fields": { + "id_car_serie": 50150, + "name": "5.0 AT 6.5-ft. Styleside (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212075, + "fields": { + "id_car_serie": 50150, + "name": "5.0 AT 4x4 6.5-ft. Styleside (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212076, + "fields": { + "id_car_serie": 50150, + "name": "5.0 AT 8.0-ft. Styleside (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212077, + "fields": { + "id_car_serie": 50150, + "name": "5.0 AT 4x4 8.0-ft. Styleside (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212078, + "fields": { + "id_car_serie": 50150, + "name": "5.4 AT 6.5-ft. Styleside (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212079, + "fields": { + "id_car_serie": 50150, + "name": "5.4 AT 8.0-ft. Styleside (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212080, + "fields": { + "id_car_serie": 50150, + "name": "5.4 AT 4x4 6.5-ft. Styleside (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212081, + "fields": { + "id_car_serie": 50150, + "name": "5.4 AT 4x4 8.0-ft. Styleside (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212082, + "fields": { + "id_car_serie": 50150, + "name": "6.2 AT 4x4 6.5-ft. Styleside (416 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212083, + "fields": { + "id_car_serie": 50150, + "name": "6.2 AT 6.5-ft. Styleside (416 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212084, + "fields": { + "id_car_serie": 50152, + "name": "6.2 AT 4x4 5.5-ft. Styleside (416 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212085, + "fields": { + "id_car_serie": 50153, + "name": "3.5 EcoBoost AT 4x4 8.0-ft. Styleside (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212086, + "fields": { + "id_car_serie": 50153, + "name": "3.5 EcoBoost AT 6.5-ft. Styleside (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212087, + "fields": { + "id_car_serie": 50153, + "name": "3.5 EcoBoost AT 4x4 6.5-ft. Styleside (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212088, + "fields": { + "id_car_serie": 50153, + "name": "3.5 EcoBoost AT 8.0-ft. Styleside (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212089, + "fields": { + "id_car_serie": 50153, + "name": "3.7 AT 6.5-ft. Styleside (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212090, + "fields": { + "id_car_serie": 50153, + "name": "3.7 AT 4x4 8.0-ft. Styleside (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212091, + "fields": { + "id_car_serie": 50153, + "name": "3.7 AT 8.0-ft. Styleside (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212092, + "fields": { + "id_car_serie": 50153, + "name": "3.7 AT 4x4 6.5-ft. Styleside (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212093, + "fields": { + "id_car_serie": 50153, + "name": "4.6 AT 4x4 6.5-ft. Styleside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212094, + "fields": { + "id_car_serie": 50153, + "name": "4.6 AT 6.5-ft. Styleside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212095, + "fields": { + "id_car_serie": 50153, + "name": "4.6 AT 8.0-ft. Styleside (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212096, + "fields": { + "id_car_serie": 50153, + "name": "4.6 AT 4x4 8.0-ft. Styleside (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212097, + "fields": { + "id_car_serie": 50153, + "name": "4.6 AT 4x4 6.5-ft. Styleside (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212098, + "fields": { + "id_car_serie": 50153, + "name": "4.6 AT 4x4 8.0-ft. Styleside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212099, + "fields": { + "id_car_serie": 50153, + "name": "4.6 AT 8.0-ft. Styleside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212100, + "fields": { + "id_car_serie": 50153, + "name": "5.0 AT 4x4 6.5-ft. Styleside (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212101, + "fields": { + "id_car_serie": 50153, + "name": "5.0 AT 6.5-ft. Styleside (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212102, + "fields": { + "id_car_serie": 50153, + "name": "5.0 AT 4x4 8.0-ft. Styleside (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212103, + "fields": { + "id_car_serie": 50153, + "name": "5.0 AT 8.0-ft. Styleside (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212104, + "fields": { + "id_car_serie": 50153, + "name": "5.4 AT 4x4 8.0-ft. Styleside (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212105, + "fields": { + "id_car_serie": 50153, + "name": "5.4 AT 4x4 6.5-ft. Styleside (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212106, + "fields": { + "id_car_serie": 50153, + "name": "5.4 AT 8.0-ft. Styleside (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212107, + "fields": { + "id_car_serie": 50154, + "name": "4.2 AT 8.0-ft. Styleside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212108, + "fields": { + "id_car_serie": 50154, + "name": "4.2 AT 6.5-ft. Styleside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212109, + "fields": { + "id_car_serie": 50154, + "name": "4.2 AT 6.5-ft. Flareside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212110, + "fields": { + "id_car_serie": 50154, + "name": "4.2 MT 8.0-ft. Styleside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212111, + "fields": { + "id_car_serie": 50154, + "name": "4.2 MT 6.5-ft. Flareside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212112, + "fields": { + "id_car_serie": 50154, + "name": "4.2 MT 6.5-ft. Styleside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212113, + "fields": { + "id_car_serie": 50154, + "name": "4.6 AT 6.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212114, + "fields": { + "id_car_serie": 50154, + "name": "4.6 AT 8.0-ft. Styleside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212115, + "fields": { + "id_car_serie": 50154, + "name": "4.6 AT 4x4 6.5-ft. Styleside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212116, + "fields": { + "id_car_serie": 50154, + "name": "4.6 AT 4x4 6.5-ft. Flareside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212117, + "fields": { + "id_car_serie": 50154, + "name": "4.6 AT 6.5-ft. Flareside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212118, + "fields": { + "id_car_serie": 50154, + "name": "4.6 AT 6.5-ft. Styleside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212119, + "fields": { + "id_car_serie": 50154, + "name": "4.6 AT 4x4 8.0-ft. Styleside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212120, + "fields": { + "id_car_serie": 50154, + "name": "4.6 AT 4x4 8.0-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212121, + "fields": { + "id_car_serie": 50154, + "name": "4.6 AT 8.0-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212122, + "fields": { + "id_car_serie": 50154, + "name": "4.6 AT 6.5-ft. Flareside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212123, + "fields": { + "id_car_serie": 50154, + "name": "4.6 AT 4x4 6.5-ft. Flareside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212124, + "fields": { + "id_car_serie": 50154, + "name": "4.6 AT 4x4 6.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212125, + "fields": { + "id_car_serie": 50154, + "name": "5.4 AT 4x4 8.0-ft. Styleside (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212126, + "fields": { + "id_car_serie": 50154, + "name": "5.4 AT 6.5-ft. Flareside (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212127, + "fields": { + "id_car_serie": 50154, + "name": "5.4 AT 6.5-ft. Styleside (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212128, + "fields": { + "id_car_serie": 50154, + "name": "5.4 AT 4x4 6.5-ft. Styleside (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212129, + "fields": { + "id_car_serie": 50154, + "name": "5.4 AT 4x4 6.5-ft. Flareside (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212130, + "fields": { + "id_car_serie": 50154, + "name": "5.4 AT 8.0-ft. Styleside (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212131, + "fields": { + "id_car_serie": 50155, + "name": "4.6 AT 4x4 6.5-ft. Flareside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212132, + "fields": { + "id_car_serie": 50155, + "name": "4.6 AT 6.5-ft. Flareside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212133, + "fields": { + "id_car_serie": 50155, + "name": "4.6 AT 4x4 6.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212134, + "fields": { + "id_car_serie": 50155, + "name": "4.6 AT 6.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212135, + "fields": { + "id_car_serie": 50155, + "name": "4.6 AT 4x4 5.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212136, + "fields": { + "id_car_serie": 50155, + "name": "4.6 AT 5.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212137, + "fields": { + "id_car_serie": 50155, + "name": "4.6 AT 4x4 6.5-ft. Flareside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212138, + "fields": { + "id_car_serie": 50155, + "name": "4.6 AT 6.5-ft. Flareside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212139, + "fields": { + "id_car_serie": 50155, + "name": "4.6 AT 4x4 6.5-ft. Styleside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212140, + "fields": { + "id_car_serie": 50155, + "name": "4.6 AT 6.5-ft. Styleside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212141, + "fields": { + "id_car_serie": 50155, + "name": "4.6 AT 4x4 5.5-ft. Styleside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212142, + "fields": { + "id_car_serie": 50155, + "name": "4.6 AT 5.5-ft. Styleside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212143, + "fields": { + "id_car_serie": 50155, + "name": "5.4 AT 4x4 5.5-ft. Styleside (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212144, + "fields": { + "id_car_serie": 50155, + "name": "5.4 AT 5.5-ft. Styleside (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212145, + "fields": { + "id_car_serie": 50155, + "name": "5.4 AT 4x4 8.0-ft. Styleside (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212146, + "fields": { + "id_car_serie": 50155, + "name": "5.4 AT 8.0-ft. Styleside (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212147, + "fields": { + "id_car_serie": 50155, + "name": "5.4 AT 4x4 6.5-ft. Flareside (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212148, + "fields": { + "id_car_serie": 50155, + "name": "5.4 AT 6.5-ft. Flareside (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212149, + "fields": { + "id_car_serie": 50155, + "name": "5.4 AT 4x4 6.5-ft. Styleside (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212150, + "fields": { + "id_car_serie": 50155, + "name": "5.4 AT 6.5-ft. Styleside (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212151, + "fields": { + "id_car_serie": 50156, + "name": "4.6 AT 5.5-ft. Styleside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212152, + "fields": { + "id_car_serie": 50156, + "name": "4.6 AT 6.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212153, + "fields": { + "id_car_serie": 50156, + "name": "4.6 AT 4x4 6.5-ft. Flareside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212154, + "fields": { + "id_car_serie": 50156, + "name": "4.6 AT 6.5-ft. Flareside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212155, + "fields": { + "id_car_serie": 50156, + "name": "4.6 AT 4x4 6.5-ft. Styleside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212156, + "fields": { + "id_car_serie": 50156, + "name": "4.6 AT 6.5-ft. Styleside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212157, + "fields": { + "id_car_serie": 50156, + "name": "4.6 AT 4x4 5.5-ft. Styleside (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212158, + "fields": { + "id_car_serie": 50156, + "name": "4.6 AT 5.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212159, + "fields": { + "id_car_serie": 50156, + "name": "4.6 AT 6.5-ft. Flareside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212160, + "fields": { + "id_car_serie": 50156, + "name": "4.6 AT 4x4 6.5-ft. Flareside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212161, + "fields": { + "id_car_serie": 50156, + "name": "4.6 AT 4x4 6.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212162, + "fields": { + "id_car_serie": 50156, + "name": "5.4 AT 6.5-ft. Flareside (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212163, + "fields": { + "id_car_serie": 50156, + "name": "5.4 AT 4x4 6.5-ft. Styleside (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212164, + "fields": { + "id_car_serie": 50156, + "name": "5.4 AT 6.5-ft. Styleside (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212165, + "fields": { + "id_car_serie": 50156, + "name": "5.4 AT 4x4 5.5-ft. Styleside (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212166, + "fields": { + "id_car_serie": 50156, + "name": "5.4 AT 5.5-ft. Styleside (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212167, + "fields": { + "id_car_serie": 50156, + "name": "5.4 AT 4x4 6.5-ft. Flareside (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212168, + "fields": { + "id_car_serie": 50157, + "name": "4.2 AT 6.5-ft. Flareside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212169, + "fields": { + "id_car_serie": 50157, + "name": "4.2 AT 6.5-ft. Styleside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212170, + "fields": { + "id_car_serie": 50157, + "name": "4.2 MT 6.5-ft. Flareside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212171, + "fields": { + "id_car_serie": 50157, + "name": "4.2 MT 6.5-ft. Styleside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212172, + "fields": { + "id_car_serie": 50157, + "name": "4.6 AT 4x4 8.0-ft. Styleside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212173, + "fields": { + "id_car_serie": 50157, + "name": "4.6 AT 4x4 6.5-ft. Flareside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212174, + "fields": { + "id_car_serie": 50157, + "name": "4.6 AT 6.5-ft. Flareside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212175, + "fields": { + "id_car_serie": 50157, + "name": "4.6 AT 4x4 6.5-ft. Styleside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212176, + "fields": { + "id_car_serie": 50157, + "name": "4.6 AT 6.5-ft. Styleside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212177, + "fields": { + "id_car_serie": 50157, + "name": "4.6 AT 8.0-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212178, + "fields": { + "id_car_serie": 50157, + "name": "4.6 AT 4x4 8.0-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212179, + "fields": { + "id_car_serie": 50157, + "name": "4.6 AT 6.5-ft. Flareside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212180, + "fields": { + "id_car_serie": 50157, + "name": "4.6 AT 4x4 6.5-ft. Flareside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212181, + "fields": { + "id_car_serie": 50157, + "name": "4.6 AT 4x4 6.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212182, + "fields": { + "id_car_serie": 50157, + "name": "4.6 AT 6.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212183, + "fields": { + "id_car_serie": 50157, + "name": "4.6 AT 8.0-ft. Styleside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212184, + "fields": { + "id_car_serie": 50157, + "name": "4.6 MT 8.0-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212185, + "fields": { + "id_car_serie": 50157, + "name": "4.6 MT 4x4 8.0-ft. Styleside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212186, + "fields": { + "id_car_serie": 50157, + "name": "4.6 MT 8.0-ft. Styleside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212187, + "fields": { + "id_car_serie": 50157, + "name": "4.6 MT 4x4 6.5-ft. Flareside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212188, + "fields": { + "id_car_serie": 50157, + "name": "4.6 MT 4x4 8.0-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212189, + "fields": { + "id_car_serie": 50157, + "name": "4.6 MT 4x4 6.5-ft. Flareside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212190, + "fields": { + "id_car_serie": 50157, + "name": "4.6 MT 6.5-ft. Flareside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212191, + "fields": { + "id_car_serie": 50157, + "name": "4.6 MT 4x4 6.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212192, + "fields": { + "id_car_serie": 50157, + "name": "4.6 MT 6.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212193, + "fields": { + "id_car_serie": 50157, + "name": "4.6 MT 6.5-ft. Flareside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212194, + "fields": { + "id_car_serie": 50157, + "name": "4.6 MT 4x4 6.5-ft. Styleside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212195, + "fields": { + "id_car_serie": 50157, + "name": "4.6 MT 6.5-ft. Styleside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212196, + "fields": { + "id_car_serie": 50157, + "name": "5.4 AT 6.5-ft. Flareside (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212197, + "fields": { + "id_car_serie": 50157, + "name": "5.4 AT 6.5-ft. Styleside (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212198, + "fields": { + "id_car_serie": 50157, + "name": "5.4 AT 4x4 6.5-ft. Flareside (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212199, + "fields": { + "id_car_serie": 50157, + "name": "5.4 AT 8.0-ft. Styleside (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212200, + "fields": { + "id_car_serie": 50157, + "name": "5.4 AT 4x4 8.0-ft. Styleside (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212201, + "fields": { + "id_car_serie": 50157, + "name": "5.4 AT 8.0-ft. Styleside (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212202, + "fields": { + "id_car_serie": 50157, + "name": "5.4 AT 4x4 6.5-ft. Flareside (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212203, + "fields": { + "id_car_serie": 50157, + "name": "5.4 AT 6.5-ft. Flareside (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212204, + "fields": { + "id_car_serie": 50157, + "name": "5.4 AT 4x4 6.5-ft. Styleside (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212205, + "fields": { + "id_car_serie": 50157, + "name": "5.4 AT 4x4 8.0-ft. Styleside (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212206, + "fields": { + "id_car_serie": 50157, + "name": "5.4 AT 6.5-ft. Styleside (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212207, + "fields": { + "id_car_serie": 50157, + "name": "5.4 AT 4x4 6.5-ft. Styleside (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212208, + "fields": { + "id_car_serie": 50158, + "name": "4.2 AT 4x4 8.0-ft. Styleside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212209, + "fields": { + "id_car_serie": 50158, + "name": "4.2 AT 8.0-ft. Styleside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212210, + "fields": { + "id_car_serie": 50158, + "name": "4.2 AT 4x4 6.5-ft. Flareside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212211, + "fields": { + "id_car_serie": 50158, + "name": "4.2 AT 6.5-ft. Flareside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212212, + "fields": { + "id_car_serie": 50158, + "name": "4.2 AT 4x4 6.5-ft. Styleside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212213, + "fields": { + "id_car_serie": 50158, + "name": "4.2 AT 6.5-ft. Styleside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212214, + "fields": { + "id_car_serie": 50158, + "name": "4.2 MT 6.5-ft. Styleside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212215, + "fields": { + "id_car_serie": 50158, + "name": "4.2 MT 4x4 6.5-ft. Styleside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212216, + "fields": { + "id_car_serie": 50158, + "name": "4.2 MT 6.5-ft. Flareside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212217, + "fields": { + "id_car_serie": 50158, + "name": "4.2 MT 4x4 6.5-ft. Flareside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212218, + "fields": { + "id_car_serie": 50158, + "name": "4.2 MT 8.0-ft. Styleside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212219, + "fields": { + "id_car_serie": 50158, + "name": "4.2 MT 4x4 8.0-ft. Styleside (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212220, + "fields": { + "id_car_serie": 50158, + "name": "4.6 AT 4x4 8.0-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212221, + "fields": { + "id_car_serie": 50158, + "name": "4.6 AT 6.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212222, + "fields": { + "id_car_serie": 50158, + "name": "4.6 AT 4x4 6.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212223, + "fields": { + "id_car_serie": 50158, + "name": "4.6 AT 6.5-ft. Flareside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212224, + "fields": { + "id_car_serie": 50158, + "name": "4.6 AT 4x4 6.5-ft. Flareside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212225, + "fields": { + "id_car_serie": 50158, + "name": "4.6 AT 4x4 8.0-ft. Styleside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212226, + "fields": { + "id_car_serie": 50158, + "name": "4.6 AT 8.0-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212227, + "fields": { + "id_car_serie": 50158, + "name": "4.6 AT 8.0-ft. Styleside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212228, + "fields": { + "id_car_serie": 50158, + "name": "4.6 AT 4x4 6.5-ft. Flareside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212229, + "fields": { + "id_car_serie": 50158, + "name": "4.6 AT 6.5-ft. Flareside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212230, + "fields": { + "id_car_serie": 50158, + "name": "4.6 AT 4x4 6.5-ft. Styleside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212231, + "fields": { + "id_car_serie": 50158, + "name": "4.6 AT 6.5-ft. Styleside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212232, + "fields": { + "id_car_serie": 50158, + "name": "4.6 MT 4x4 8.0-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212233, + "fields": { + "id_car_serie": 50158, + "name": "4.6 MT 4x4 8.0-ft. Styleside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212234, + "fields": { + "id_car_serie": 50158, + "name": "4.6 MT 8.0-ft. Styleside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212235, + "fields": { + "id_car_serie": 50158, + "name": "4.6 MT 4x4 6.5-ft. Flareside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212236, + "fields": { + "id_car_serie": 50158, + "name": "4.6 MT 6.5-ft. Flareside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212237, + "fields": { + "id_car_serie": 50158, + "name": "4.6 MT 4x4 6.5-ft. Styleside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212238, + "fields": { + "id_car_serie": 50158, + "name": "4.6 MT 6.5-ft. Styleside (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212239, + "fields": { + "id_car_serie": 50158, + "name": "4.6 MT 8.0-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212240, + "fields": { + "id_car_serie": 50158, + "name": "4.6 MT 4x4 6.5-ft. Flareside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212241, + "fields": { + "id_car_serie": 50158, + "name": "4.6 MT 6.5-ft. Flareside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212242, + "fields": { + "id_car_serie": 50158, + "name": "4.6 MT 4x4 6.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212243, + "fields": { + "id_car_serie": 50158, + "name": "4.6 MT 6.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212244, + "fields": { + "id_car_serie": 50158, + "name": "5.4 AT 4x4 8.0-ft. Styleside (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212245, + "fields": { + "id_car_serie": 50158, + "name": "5.4 AT 6.5-ft. Styleside (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212246, + "fields": { + "id_car_serie": 50158, + "name": "5.4 AT 4x4 6.5-ft. Styleside (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212247, + "fields": { + "id_car_serie": 50158, + "name": "5.4 AT 6.5-ft. Flareside (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212248, + "fields": { + "id_car_serie": 50158, + "name": "5.4 AT 4x4 6.5-ft. Flareside (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212249, + "fields": { + "id_car_serie": 50158, + "name": "5.4 AT 8.0-ft. Styleside (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212250, + "fields": { + "id_car_serie": 50158, + "name": "5.4 AT 4x4 8.0-ft. Styleside (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212251, + "fields": { + "id_car_serie": 50158, + "name": "5.4 AT 6.5-ft. Styleside (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212252, + "fields": { + "id_car_serie": 50158, + "name": "5.4 AT 4x4 6.5-ft. Styleside (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212253, + "fields": { + "id_car_serie": 50158, + "name": "5.4 AT 6.5-ft. Flareside (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212254, + "fields": { + "id_car_serie": 50158, + "name": "5.4 AT 4x4 6.5-ft. Flareside (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212255, + "fields": { + "id_car_serie": 50158, + "name": "5.4 AT 8.0-ft. Styleside (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212256, + "fields": { + "id_car_serie": 50159, + "name": "4.6 AT 4x4 5.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212257, + "fields": { + "id_car_serie": 50159, + "name": "4.6 AT 5.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212258, + "fields": { + "id_car_serie": 50159, + "name": "4.6 MT 4x4 5.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212259, + "fields": { + "id_car_serie": 50159, + "name": "4.6 MT 5.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212260, + "fields": { + "id_car_serie": 50159, + "name": "5.4 AT 5.5-ft. Styleside (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212261, + "fields": { + "id_car_serie": 50159, + "name": "5.4 AT 4x4 5.5-ft. Styleside (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212262, + "fields": { + "id_car_serie": 50159, + "name": "Harley-Davidson 5.4 AT T 5.5-ft. Styleside (344 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212263, + "fields": { + "id_car_serie": 50160, + "name": "5.4 T AT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212265, + "fields": { + "id_car_serie": 3311, + "name": "1.6 MT EcoBoost (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212267, + "fields": { + "id_car_serie": 3311, + "name": "2.0 TDCi PowerShift (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212268, + "fields": { + "id_car_serie": 50179, + "name": "5.4 MT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212269, + "fields": { + "id_car_serie": 50180, + "name": "5.4 MT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212375, + "fields": { + "id_car_serie": 50185, + "name": "2.2 TDCi MT FWD 280 SWB (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212376, + "fields": { + "id_car_serie": 50185, + "name": "2.2 TDCi MT FWD 280 SWB (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212443, + "fields": { + "id_car_serie": 50192, + "name": "1.8 TDCi MT LWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212452, + "fields": { + "id_car_serie": 50196, + "name": "1.8 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212453, + "fields": { + "id_car_serie": 50196, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212454, + "fields": { + "id_car_serie": 50196, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212455, + "fields": { + "id_car_serie": 50196, + "name": "2.4 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212456, + "fields": { + "id_car_serie": 50197, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212457, + "fields": { + "id_car_serie": 50197, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212458, + "fields": { + "id_car_serie": 50199, + "name": "2.2 MT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212459, + "fields": { + "id_car_serie": 50200, + "name": "1.3 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212460, + "fields": { + "id_car_serie": 50200, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212461, + "fields": { + "id_car_serie": 50201, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212462, + "fields": { + "id_car_serie": 50201, + "name": "2.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212463, + "fields": { + "id_car_serie": 50202, + "name": "2.8 TD MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212464, + "fields": { + "id_car_serie": 50202, + "name": "3.2 TD MT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212465, + "fields": { + "id_car_serie": 50203, + "name": "1.3 Hybrid CVT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212466, + "fields": { + "id_car_serie": 50203, + "name": "1.5 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212467, + "fields": { + "id_car_serie": 50203, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212468, + "fields": { + "id_car_serie": 50204, + "name": "1.3 CVT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212469, + "fields": { + "id_car_serie": 50205, + "name": "1.5 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212470, + "fields": { + "id_car_serie": 50205, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212471, + "fields": { + "id_car_serie": 50206, + "name": "1.5 CVT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212472, + "fields": { + "id_car_serie": 50206, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212473, + "fields": { + "id_car_serie": 50207, + "name": "1.5 CVT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212474, + "fields": { + "id_car_serie": 50207, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212475, + "fields": { + "id_car_serie": 50208, + "name": "1.1 AT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212476, + "fields": { + "id_car_serie": 50208, + "name": "1.1 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212477, + "fields": { + "id_car_serie": 50209, + "name": "1.0 AT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212478, + "fields": { + "id_car_serie": 50209, + "name": "1.0 4AT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212479, + "fields": { + "id_car_serie": 50210, + "name": "1.0 3AT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212480, + "fields": { + "id_car_serie": 50210, + "name": "1.0 4AT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212481, + "fields": { + "id_car_serie": 50210, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212482, + "fields": { + "id_car_serie": 50211, + "name": "1.1 AT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212483, + "fields": { + "id_car_serie": 50211, + "name": "1.1 AT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212484, + "fields": { + "id_car_serie": 50211, + "name": "1.1 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212485, + "fields": { + "id_car_serie": 50211, + "name": "1.1 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212486, + "fields": { + "id_car_serie": 50212, + "name": "1.0 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212487, + "fields": { + "id_car_serie": 50212, + "name": "1.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212488, + "fields": { + "id_car_serie": 50213, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212489, + "fields": { + "id_car_serie": 1107, + "name": "0.8 Turbo AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212490, + "fields": { + "id_car_serie": 1107, + "name": "0.8 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212491, + "fields": { + "id_car_serie": 1107, + "name": "0.8 LPG AT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212492, + "fields": { + "id_car_serie": 1107, + "name": "0.8 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212493, + "fields": { + "id_car_serie": 1107, + "name": "0.8 LPG MT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212494, + "fields": { + "id_car_serie": 1107, + "name": "0.8 Turbo MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212495, + "fields": { + "id_car_serie": 1107, + "name": "1.0 AT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212497, + "fields": { + "id_car_serie": 1107, + "name": "1.0 MTA (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212498, + "fields": { + "id_car_serie": 50216, + "name": "2.4 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212499, + "fields": { + "id_car_serie": 50216, + "name": "3.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212500, + "fields": { + "id_car_serie": 50216, + "name": "3.3 AT (297 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212501, + "fields": { + "id_car_serie": 50217, + "name": "2.4 AT (179 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212502, + "fields": { + "id_car_serie": 50217, + "name": "2.7 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212503, + "fields": { + "id_car_serie": 50217, + "name": "3.3 AT (259 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212504, + "fields": { + "id_car_serie": 50217, + "name": "3.8 AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212505, + "fields": { + "id_car_serie": 50218, + "name": "2.2 CRDi AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212506, + "fields": { + "id_car_serie": 50218, + "name": "2.4 AT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212507, + "fields": { + "id_car_serie": 50218, + "name": "2.7 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212508, + "fields": { + "id_car_serie": 50218, + "name": "3.3 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212509, + "fields": { + "id_car_serie": 50218, + "name": "3.8 AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212510, + "fields": { + "id_car_serie": 50219, + "name": "1.4 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212511, + "fields": { + "id_car_serie": 50219, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212512, + "fields": { + "id_car_serie": 50219, + "name": "1.5 CRDi MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212513, + "fields": { + "id_car_serie": 50219, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212514, + "fields": { + "id_car_serie": 50219, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212515, + "fields": { + "id_car_serie": 50220, + "name": "1.4 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212516, + "fields": { + "id_car_serie": 50220, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212517, + "fields": { + "id_car_serie": 50220, + "name": "1.5 CRDi MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212518, + "fields": { + "id_car_serie": 50220, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212519, + "fields": { + "id_car_serie": 50220, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212520, + "fields": { + "id_car_serie": 50221, + "name": "1.3 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212521, + "fields": { + "id_car_serie": 50221, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212522, + "fields": { + "id_car_serie": 50221, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212523, + "fields": { + "id_car_serie": 50221, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212524, + "fields": { + "id_car_serie": 50222, + "name": "1.3 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212525, + "fields": { + "id_car_serie": 50222, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212526, + "fields": { + "id_car_serie": 50222, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212527, + "fields": { + "id_car_serie": 50222, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212528, + "fields": { + "id_car_serie": 50223, + "name": "1.8 Shiftronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212529, + "fields": { + "id_car_serie": 50223, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212534, + "fields": { + "id_car_serie": 50225, + "name": "0.8 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212539, + "fields": { + "id_car_serie": 50233, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212540, + "fields": { + "id_car_serie": 50233, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212541, + "fields": { + "id_car_serie": 50234, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212542, + "fields": { + "id_car_serie": 50234, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212543, + "fields": { + "id_car_serie": 50234, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212544, + "fields": { + "id_car_serie": 50235, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212545, + "fields": { + "id_car_serie": 50235, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212546, + "fields": { + "id_car_serie": 50235, + "name": "2.4 AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212547, + "fields": { + "id_car_serie": 50235, + "name": "2.4 MT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212557, + "fields": { + "id_car_serie": 48307, + "name": "2.5 CRDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212559, + "fields": { + "id_car_serie": 6474, + "name": "2.0 CRDi AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212561, + "fields": { + "id_car_serie": 6474, + "name": "2.0 CRDi MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212562, + "fields": { + "id_car_serie": 6474, + "name": "2.4 AT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212563, + "fields": { + "id_car_serie": 6474, + "name": "2.4 MT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212564, + "fields": { + "id_car_serie": 6474, + "name": "3.3 AT (232 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212569, + "fields": { + "id_car_serie": 50248, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212570, + "fields": { + "id_car_serie": 50249, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212571, + "fields": { + "id_car_serie": 50249, + "name": "1.5 AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212572, + "fields": { + "id_car_serie": 50249, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212573, + "fields": { + "id_car_serie": 50250, + "name": "3.3 Shiftronic (262 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212574, + "fields": { + "id_car_serie": 50250, + "name": "3.8 Shiftronic (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212575, + "fields": { + "id_car_serie": 50250, + "name": "3.8 AT (334 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212576, + "fields": { + "id_car_serie": 50250, + "name": "3.8 Shiftronic (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212577, + "fields": { + "id_car_serie": 50250, + "name": "4.6 Shiftronic (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212578, + "fields": { + "id_car_serie": 50250, + "name": "4.6 AT (366 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212579, + "fields": { + "id_car_serie": 50250, + "name": "4.6 Shiftronic (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212580, + "fields": { + "id_car_serie": 50251, + "name": "2.0 T Shiftronic (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212581, + "fields": { + "id_car_serie": 50251, + "name": "2.0 T MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212582, + "fields": { + "id_car_serie": 50251, + "name": "3.8 Shiftronic (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212583, + "fields": { + "id_car_serie": 50251, + "name": "3.8 MT (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212586, + "fields": { + "id_car_serie": 50255, + "name": "1.5 AT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212587, + "fields": { + "id_car_serie": 50255, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212588, + "fields": { + "id_car_serie": 50255, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212589, + "fields": { + "id_car_serie": 50255, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212590, + "fields": { + "id_car_serie": 50255, + "name": "1.5 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212591, + "fields": { + "id_car_serie": 50255, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212592, + "fields": { + "id_car_serie": 50255, + "name": "1.5 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212593, + "fields": { + "id_car_serie": 50255, + "name": "1.5 Turbo MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212594, + "fields": { + "id_car_serie": 50256, + "name": "1.5 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212595, + "fields": { + "id_car_serie": 50256, + "name": "1.5 AT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212596, + "fields": { + "id_car_serie": 50256, + "name": "1.5 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212597, + "fields": { + "id_car_serie": 50256, + "name": "1.5 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212598, + "fields": { + "id_car_serie": 50256, + "name": "1.5 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212599, + "fields": { + "id_car_serie": 50256, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212600, + "fields": { + "id_car_serie": 50262, + "name": "1.4 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212601, + "fields": { + "id_car_serie": 50263, + "name": "1.4 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212602, + "fields": { + "id_car_serie": 50264, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212603, + "fields": { + "id_car_serie": 50264, + "name": "1.3 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212604, + "fields": { + "id_car_serie": 50265, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212605, + "fields": { + "id_car_serie": 50265, + "name": "1.3 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212617, + "fields": { + "id_car_serie": 47241, + "name": "2.0 AT 2WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212618, + "fields": { + "id_car_serie": 47241, + "name": "2.0 CRDi AT 2WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212620, + "fields": { + "id_car_serie": 47241, + "name": "2.0 CRDi MT 2WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212621, + "fields": { + "id_car_serie": 47241, + "name": "2.0 CRDi MT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212622, + "fields": { + "id_car_serie": 47241, + "name": "2.4 MT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212623, + "fields": { + "id_car_serie": 50270, + "name": "I35 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212624, + "fields": { + "id_car_serie": 50271, + "name": "I30 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212626, + "fields": { + "id_car_serie": 50272, + "name": "I30 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212627, + "fields": { + "id_car_serie": 50273, + "name": "0.7 MT (31 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212628, + "fields": { + "id_car_serie": 50273, + "name": "1.0 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212629, + "fields": { + "id_car_serie": 50274, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212630, + "fields": { + "id_car_serie": 50275, + "name": "2.7 D AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212631, + "fields": { + "id_car_serie": 50275, + "name": "2.7 D AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212632, + "fields": { + "id_car_serie": 50275, + "name": "2.7 D AT LD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212633, + "fields": { + "id_car_serie": 50275, + "name": "2.7 D MT 4WD LD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212634, + "fields": { + "id_car_serie": 50275, + "name": "2.7 D MT LD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212697, + "fields": { + "id_car_serie": 50285, + "name": "2.0 MT 2WD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212698, + "fields": { + "id_car_serie": 50285, + "name": "2.4 MT 2WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212699, + "fields": { + "id_car_serie": 50285, + "name": "2.4 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212700, + "fields": { + "id_car_serie": 50285, + "name": "2.8 MT 2WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212701, + "fields": { + "id_car_serie": 50285, + "name": "2.8 TD MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212702, + "fields": { + "id_car_serie": 50286, + "name": "3.8 AT (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212703, + "fields": { + "id_car_serie": 50287, + "name": "3.5 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212784, + "fields": { + "id_car_serie": 50308, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212785, + "fields": { + "id_car_serie": 50309, + "name": "1.0 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212786, + "fields": { + "id_car_serie": 50309, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212787, + "fields": { + "id_car_serie": 50310, + "name": "1.0 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212788, + "fields": { + "id_car_serie": 50311, + "name": "2.0 LPG AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212789, + "fields": { + "id_car_serie": 50311, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212790, + "fields": { + "id_car_serie": 50311, + "name": "2.0 LPG MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212791, + "fields": { + "id_car_serie": 50311, + "name": "2.0 LPG MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212792, + "fields": { + "id_car_serie": 50311, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212793, + "fields": { + "id_car_serie": 50312, + "name": "2.0 AT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212794, + "fields": { + "id_car_serie": 50312, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212795, + "fields": { + "id_car_serie": 50312, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212796, + "fields": { + "id_car_serie": 50313, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212797, + "fields": { + "id_car_serie": 50313, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212798, + "fields": { + "id_car_serie": 50313, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212799, + "fields": { + "id_car_serie": 50313, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212800, + "fields": { + "id_car_serie": 50314, + "name": "1.6 GDi AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212801, + "fields": { + "id_car_serie": 50314, + "name": "1.6 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212802, + "fields": { + "id_car_serie": 50314, + "name": "1.6 VGT AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212803, + "fields": { + "id_car_serie": 50314, + "name": "1.6 GDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212804, + "fields": { + "id_car_serie": 50314, + "name": "2.0 4AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212805, + "fields": { + "id_car_serie": 50314, + "name": "2.0 6AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212806, + "fields": { + "id_car_serie": 50314, + "name": "2.0 6AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212807, + "fields": { + "id_car_serie": 50314, + "name": "2.0 5AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212808, + "fields": { + "id_car_serie": 50314, + "name": "2.0 4AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212809, + "fields": { + "id_car_serie": 50314, + "name": "2.0 5AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212810, + "fields": { + "id_car_serie": 50314, + "name": "2.0 6MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212811, + "fields": { + "id_car_serie": 50314, + "name": "2.0 5MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212812, + "fields": { + "id_car_serie": 50314, + "name": "2.0 6MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212813, + "fields": { + "id_car_serie": 50314, + "name": "2.0 5MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212814, + "fields": { + "id_car_serie": 50314, + "name": "2.4 6AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212815, + "fields": { + "id_car_serie": 50314, + "name": "2.4 5AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212816, + "fields": { + "id_car_serie": 50314, + "name": "2.4 6AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212817, + "fields": { + "id_car_serie": 50314, + "name": "2.4 5AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212818, + "fields": { + "id_car_serie": 50314, + "name": "2.4 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212819, + "fields": { + "id_car_serie": 50314, + "name": "2.4 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212820, + "fields": { + "id_car_serie": 50315, + "name": "1.6 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212821, + "fields": { + "id_car_serie": 50315, + "name": "1.6 GDi AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212822, + "fields": { + "id_car_serie": 50315, + "name": "1.6 GDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212823, + "fields": { + "id_car_serie": 50315, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212824, + "fields": { + "id_car_serie": 50315, + "name": "2.0 6AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212825, + "fields": { + "id_car_serie": 50315, + "name": "2.0 6AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212826, + "fields": { + "id_car_serie": 50315, + "name": "2.0 4AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212827, + "fields": { + "id_car_serie": 50315, + "name": "2.0 4AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212828, + "fields": { + "id_car_serie": 50315, + "name": "2.0 6MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212829, + "fields": { + "id_car_serie": 50315, + "name": "2.0 5MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212830, + "fields": { + "id_car_serie": 50315, + "name": "2.0 6MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212831, + "fields": { + "id_car_serie": 50315, + "name": "2.0 5MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212832, + "fields": { + "id_car_serie": 50315, + "name": "2.4 5AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212833, + "fields": { + "id_car_serie": 50315, + "name": "2.4 6AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212834, + "fields": { + "id_car_serie": 50315, + "name": "2.4 6AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212835, + "fields": { + "id_car_serie": 50315, + "name": "2.4 5AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212836, + "fields": { + "id_car_serie": 50315, + "name": "2.4 6MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212837, + "fields": { + "id_car_serie": 50315, + "name": "2.4 6MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212838, + "fields": { + "id_car_serie": 50316, + "name": "1.6 GDi AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212839, + "fields": { + "id_car_serie": 50316, + "name": "1.6 GDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212840, + "fields": { + "id_car_serie": 50316, + "name": "2.0 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212841, + "fields": { + "id_car_serie": 50316, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212842, + "fields": { + "id_car_serie": 50316, + "name": "2.0 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212843, + "fields": { + "id_car_serie": 50316, + "name": "2.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212844, + "fields": { + "id_car_serie": 50316, + "name": "2.4 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212845, + "fields": { + "id_car_serie": 50316, + "name": "2.4 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212846, + "fields": { + "id_car_serie": 50316, + "name": "2.4 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212847, + "fields": { + "id_car_serie": 50316, + "name": "2.4 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212854, + "fields": { + "id_car_serie": 3555, + "name": "1.6 GDi AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212855, + "fields": { + "id_car_serie": 3555, + "name": "1.6 GDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212856, + "fields": { + "id_car_serie": 8693, + "name": "2.0 T-GDi AT (278 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212857, + "fields": { + "id_car_serie": 8693, + "name": "2.0 LPi AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212858, + "fields": { + "id_car_serie": 8693, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212859, + "fields": { + "id_car_serie": 8693, + "name": "2.0 LPi MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212860, + "fields": { + "id_car_serie": 8693, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212861, + "fields": { + "id_car_serie": 8693, + "name": "2.4 GDi AT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212862, + "fields": { + "id_car_serie": 50321, + "name": "2.4 GDi AT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212863, + "fields": { + "id_car_serie": 50321, + "name": "3.0 LPi AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212864, + "fields": { + "id_car_serie": 50321, + "name": "3.0 GDi AT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212865, + "fields": { + "id_car_serie": 50321, + "name": "3.3 GDi AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212866, + "fields": { + "id_car_serie": 47258, + "name": "2.4 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212867, + "fields": { + "id_car_serie": 47258, + "name": "2.7 LPi AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212868, + "fields": { + "id_car_serie": 47258, + "name": "2.7 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212870, + "fields": { + "id_car_serie": 48380, + "name": "3.3 GDi AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212871, + "fields": { + "id_car_serie": 48380, + "name": "3.8 GDi AT (334 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212872, + "fields": { + "id_car_serie": 50324, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212873, + "fields": { + "id_car_serie": 50324, + "name": "2.4 AT (179 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212874, + "fields": { + "id_car_serie": 50325, + "name": "1.8 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212875, + "fields": { + "id_car_serie": 50325, + "name": "1.8 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212876, + "fields": { + "id_car_serie": 50325, + "name": "2.0 AT (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212877, + "fields": { + "id_car_serie": 50325, + "name": "2.0 D-LEV AT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212878, + "fields": { + "id_car_serie": 50325, + "name": "2.0 MT (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212879, + "fields": { + "id_car_serie": 50325, + "name": "2.0 D-LEV MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212880, + "fields": { + "id_car_serie": 50325, + "name": "2.4 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212881, + "fields": { + "id_car_serie": 50326, + "name": "1.8 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212882, + "fields": { + "id_car_serie": 50326, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212883, + "fields": { + "id_car_serie": 50326, + "name": "2.0 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212884, + "fields": { + "id_car_serie": 50326, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212885, + "fields": { + "id_car_serie": 50326, + "name": "2.4 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212886, + "fields": { + "id_car_serie": 50327, + "name": "3.0 CRDi AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212887, + "fields": { + "id_car_serie": 50327, + "name": "3.8 AT AWD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212888, + "fields": { + "id_car_serie": 50328, + "name": "1.0 Bi-Fuel AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212889, + "fields": { + "id_car_serie": 50328, + "name": "1.0 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212890, + "fields": { + "id_car_serie": 50328, + "name": "1.0 Bi-Fuel MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212891, + "fields": { + "id_car_serie": 50328, + "name": "1.0 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212892, + "fields": { + "id_car_serie": 50328, + "name": "1.0 Eco Plus CVT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212893, + "fields": { + "id_car_serie": 50329, + "name": "1.0 LPi AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212894, + "fields": { + "id_car_serie": 50329, + "name": "1.0 AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212895, + "fields": { + "id_car_serie": 50329, + "name": "1.0 LPi MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212896, + "fields": { + "id_car_serie": 50329, + "name": "1.0 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212897, + "fields": { + "id_car_serie": 50330, + "name": "1.0 LPi AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212898, + "fields": { + "id_car_serie": 50330, + "name": "1.0 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212899, + "fields": { + "id_car_serie": 50330, + "name": "1.0 LPi MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212900, + "fields": { + "id_car_serie": 50330, + "name": "1.0 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212901, + "fields": { + "id_car_serie": 50331, + "name": "1.0 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212902, + "fields": { + "id_car_serie": 50331, + "name": "1.0 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212903, + "fields": { + "id_car_serie": 50332, + "name": "1.0 AT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212904, + "fields": { + "id_car_serie": 50332, + "name": "1.0 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212905, + "fields": { + "id_car_serie": 50333, + "name": "2.0 AT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212910, + "fields": { + "id_car_serie": 50335, + "name": "2.5 TCi MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212911, + "fields": { + "id_car_serie": 50335, + "name": "2.7 D MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212920, + "fields": { + "id_car_serie": 50338, + "name": "2.5 D MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212921, + "fields": { + "id_car_serie": 50338, + "name": "2.7 D MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212922, + "fields": { + "id_car_serie": 50338, + "name": "3.0 D AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212923, + "fields": { + "id_car_serie": 50338, + "name": "3.0 D MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212924, + "fields": { + "id_car_serie": 50339, + "name": "2.5 TD MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212925, + "fields": { + "id_car_serie": 50339, + "name": "3.0 D MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212933, + "fields": { + "id_car_serie": 50342, + "name": "2.4 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212934, + "fields": { + "id_car_serie": 50342, + "name": "2.4 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212935, + "fields": { + "id_car_serie": 50342, + "name": "2.7 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212936, + "fields": { + "id_car_serie": 50343, + "name": "2.4 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212937, + "fields": { + "id_car_serie": 50343, + "name": "2.4 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212938, + "fields": { + "id_car_serie": 50343, + "name": "2.4 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212939, + "fields": { + "id_car_serie": 50343, + "name": "2.7 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212940, + "fields": { + "id_car_serie": 50343, + "name": "2.7 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212949, + "fields": { + "id_car_serie": 50347, + "name": "0.8 LPG MT 5seater (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212950, + "fields": { + "id_car_serie": 50347, + "name": "0.8 MT 5seater (43 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212951, + "fields": { + "id_car_serie": 50347, + "name": "0.8 LPG MT 7seater (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212952, + "fields": { + "id_car_serie": 50347, + "name": "0.8 MT 7seater (43 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212953, + "fields": { + "id_car_serie": 50348, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212954, + "fields": { + "id_car_serie": 50348, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212955, + "fields": { + "id_car_serie": 50348, + "name": "1.2 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212956, + "fields": { + "id_car_serie": 50348, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212957, + "fields": { + "id_car_serie": 50348, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212958, + "fields": { + "id_car_serie": 50349, + "name": "4.6 AT (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212959, + "fields": { + "id_car_serie": 50349, + "name": "4.6 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212960, + "fields": { + "id_car_serie": 50349, + "name": "4.6 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212961, + "fields": { + "id_car_serie": 50349, + "name": "5.4 AT (232 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212962, + "fields": { + "id_car_serie": 50352, + "name": "4.2 MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212963, + "fields": { + "id_car_serie": 50353, + "name": "4.7 AT (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212964, + "fields": { + "id_car_serie": 50354, + "name": "4.7 AT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212965, + "fields": { + "id_car_serie": 50355, + "name": "4.2 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212966, + "fields": { + "id_car_serie": 50356, + "name": "4.2 MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212967, + "fields": { + "id_car_serie": 50357, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212968, + "fields": { + "id_car_serie": 50358, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212969, + "fields": { + "id_car_serie": 50358, + "name": "2.0 TD AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212970, + "fields": { + "id_car_serie": 50358, + "name": "2.0 TD AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212971, + "fields": { + "id_car_serie": 50358, + "name": "2.0 AT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212972, + "fields": { + "id_car_serie": 50358, + "name": "2.0 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212973, + "fields": { + "id_car_serie": 50358, + "name": "2.5 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212974, + "fields": { + "id_car_serie": 50359, + "name": "2.0 TD AT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212975, + "fields": { + "id_car_serie": 50359, + "name": "2.0 AT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 212976, + "fields": { + "id_car_serie": 50359, + "name": "2.0 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213027, + "fields": { + "id_car_serie": 50368, + "name": "45 AMG 7G-DCT 4MATIC (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213028, + "fields": { + "id_car_serie": 45699, + "name": "180 d MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213029, + "fields": { + "id_car_serie": 45699, + "name": "200 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213030, + "fields": { + "id_car_serie": 45699, + "name": "180 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213031, + "fields": { + "id_car_serie": 45699, + "name": "220 4MATIC AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213032, + "fields": { + "id_car_serie": 3698, + "name": "A 180 CDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213033, + "fields": { + "id_car_serie": 3698, + "name": "A 180 CDI BlueEfficiency Edition MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213034, + "fields": { + "id_car_serie": 3698, + "name": "A 160 CDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213035, + "fields": { + "id_car_serie": 3698, + "name": "A 160 CDI 7G-DCT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213036, + "fields": { + "id_car_serie": 3698, + "name": "A 180 CDI 7G-DCT (109 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213037, + "fields": { + "id_car_serie": 3698, + "name": "A 180 BlueEfficiency MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213038, + "fields": { + "id_car_serie": 3698, + "name": "A 200 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213039, + "fields": { + "id_car_serie": 3698, + "name": "A 180 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213040, + "fields": { + "id_car_serie": 3698, + "name": "A 200 BlueEfficiency MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213041, + "fields": { + "id_car_serie": 3698, + "name": "A 180 BlueEfficiency 7G-DCT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213042, + "fields": { + "id_car_serie": 3698, + "name": "A 180 7G-DCT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213043, + "fields": { + "id_car_serie": 3698, + "name": "A 200 BlueEfficiency 7G-DCT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213044, + "fields": { + "id_car_serie": 3698, + "name": "A 200 7G-DCT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213045, + "fields": { + "id_car_serie": 3698, + "name": "A 200 CDI BlueEfficiency MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213046, + "fields": { + "id_car_serie": 3698, + "name": "A 200 CDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213048, + "fields": { + "id_car_serie": 3698, + "name": "A 200 CDI BlueEfficiency 7G-DCT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213049, + "fields": { + "id_car_serie": 3698, + "name": "A 180 CDI BlueEfficiency 7G-DCT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213050, + "fields": { + "id_car_serie": 3698, + "name": "A 250 7G-DCT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213051, + "fields": { + "id_car_serie": 3698, + "name": "A 250 Sport 7G-DCT 4MATIC (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213052, + "fields": { + "id_car_serie": 3698, + "name": "A 250 7G-DCT 4Matic (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213053, + "fields": { + "id_car_serie": 3698, + "name": "A 250 Sport 7G-DCT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213054, + "fields": { + "id_car_serie": 3698, + "name": "A 250 BlueEfficiency 7G-DCT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213055, + "fields": { + "id_car_serie": 3698, + "name": "A 200 CDI 7G-DCT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213056, + "fields": { + "id_car_serie": 3698, + "name": "A 220 CDI 7G-DCT 4MATIC (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213057, + "fields": { + "id_car_serie": 3698, + "name": "A 200 CDI 7G-DCT 4MATIC (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213058, + "fields": { + "id_car_serie": 3698, + "name": "A 220 CDI 7G-DCT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213059, + "fields": { + "id_car_serie": 3698, + "name": "A 220 CDI BlueEfficiency 7G-DCT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213060, + "fields": { + "id_car_serie": 50371, + "name": "A45 AMG Speedshift DCT 4Matic (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213061, + "fields": { + "id_car_serie": 15018, + "name": "A 150 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213062, + "fields": { + "id_car_serie": 15018, + "name": "A 150 BlueEFFICIENCY MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213063, + "fields": { + "id_car_serie": 15018, + "name": "A 160 BlueEFFICIENCY MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213064, + "fields": { + "id_car_serie": 15018, + "name": "A 160 BlueEFFICIENCY Autotronic (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213065, + "fields": { + "id_car_serie": 15018, + "name": "A 150 Autotronic (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213066, + "fields": { + "id_car_serie": 15018, + "name": "A 160 Autotronic (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213067, + "fields": { + "id_car_serie": 15018, + "name": "A 170 BlueEFFICIENCY MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213068, + "fields": { + "id_car_serie": 15018, + "name": "A 170 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213069, + "fields": { + "id_car_serie": 15018, + "name": "A 180 BlueEFFICIENCY MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213070, + "fields": { + "id_car_serie": 15018, + "name": "A 180 BlueEFFICIENCY Autotronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213071, + "fields": { + "id_car_serie": 15018, + "name": "A 180 Autotronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213072, + "fields": { + "id_car_serie": 15018, + "name": "A 170 Autotronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213073, + "fields": { + "id_car_serie": 15018, + "name": "A 200 Turbo MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213074, + "fields": { + "id_car_serie": 15018, + "name": "A 160 CDI BlueEFFICIENCY MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213075, + "fields": { + "id_car_serie": 15018, + "name": "A 200 CDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213076, + "fields": { + "id_car_serie": 15018, + "name": "A 180 CDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213077, + "fields": { + "id_car_serie": 15018, + "name": "A 160 CDI MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213078, + "fields": { + "id_car_serie": 15018, + "name": "A 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213079, + "fields": { + "id_car_serie": 15018, + "name": "A 160 CDI Autotronic (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213080, + "fields": { + "id_car_serie": 15018, + "name": "A 180 CDI Autotronic (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213081, + "fields": { + "id_car_serie": 15018, + "name": "A 200 Turbo Autotronic (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213082, + "fields": { + "id_car_serie": 15018, + "name": "A 200 CDI Autotronic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213083, + "fields": { + "id_car_serie": 15018, + "name": "A 160 CDI BlueEFFICIENCY Autotronic (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213084, + "fields": { + "id_car_serie": 15018, + "name": "A 200 Autotronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213085, + "fields": { + "id_car_serie": 15017, + "name": "A 150 BlueEFFICIENCY MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213086, + "fields": { + "id_car_serie": 15017, + "name": "A 160 BlueEFFICIENCY MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213087, + "fields": { + "id_car_serie": 15017, + "name": "A 150 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213088, + "fields": { + "id_car_serie": 15017, + "name": "A 160 Autotronic (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213089, + "fields": { + "id_car_serie": 15017, + "name": "A 160 BlueEFFICIENCY Autotronic (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213090, + "fields": { + "id_car_serie": 15017, + "name": "A 150 Autotronic (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213091, + "fields": { + "id_car_serie": 15017, + "name": "A 170 BlueEFFICIENCY MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213092, + "fields": { + "id_car_serie": 15017, + "name": "A 180 BlueEFFICIENCY MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213093, + "fields": { + "id_car_serie": 15017, + "name": "A 170 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213094, + "fields": { + "id_car_serie": 15017, + "name": "A 180 Autotronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213095, + "fields": { + "id_car_serie": 15017, + "name": "A 180 BlueEFFICIENCY Autotronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213096, + "fields": { + "id_car_serie": 15017, + "name": "A 170 Autotronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213097, + "fields": { + "id_car_serie": 15017, + "name": "A 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213098, + "fields": { + "id_car_serie": 15017, + "name": "A 200 CDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213099, + "fields": { + "id_car_serie": 15017, + "name": "A 180 CDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213100, + "fields": { + "id_car_serie": 15017, + "name": "A 160 CDI BlueEFFICIENCY MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213101, + "fields": { + "id_car_serie": 15017, + "name": "A 160 CDI MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213102, + "fields": { + "id_car_serie": 15017, + "name": "A 200 Turbo MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213103, + "fields": { + "id_car_serie": 15017, + "name": "A 200 Autotronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213104, + "fields": { + "id_car_serie": 15017, + "name": "A 200 CDI Autotronic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213105, + "fields": { + "id_car_serie": 15017, + "name": "A 200 Turbo Autotronic (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213106, + "fields": { + "id_car_serie": 15017, + "name": "A 160 CDI Autotronic (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213107, + "fields": { + "id_car_serie": 15017, + "name": "A 160 CDI BlueEFFICIENCY Autotronic (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213108, + "fields": { + "id_car_serie": 15017, + "name": "A 180 CDI Autotronic (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213109, + "fields": { + "id_car_serie": 6902, + "name": "A 150 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213110, + "fields": { + "id_car_serie": 6902, + "name": "A 150 Autotronic (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213111, + "fields": { + "id_car_serie": 6902, + "name": "A 170 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213112, + "fields": { + "id_car_serie": 6902, + "name": "A 170 Autotronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213113, + "fields": { + "id_car_serie": 6902, + "name": "A 200 Turbo MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213114, + "fields": { + "id_car_serie": 6902, + "name": "A 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213115, + "fields": { + "id_car_serie": 6902, + "name": "A 200 CDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213116, + "fields": { + "id_car_serie": 6902, + "name": "A 180 CDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213117, + "fields": { + "id_car_serie": 6902, + "name": "A 160 CDI MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213118, + "fields": { + "id_car_serie": 6902, + "name": "A 200 Autotronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213119, + "fields": { + "id_car_serie": 6902, + "name": "A 200 Turbo Autotronic (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213120, + "fields": { + "id_car_serie": 6902, + "name": "A 160 CDI Autotronic (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213121, + "fields": { + "id_car_serie": 6902, + "name": "A 200 CDI Autotronic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213122, + "fields": { + "id_car_serie": 6902, + "name": "A 180 CDI Autotronic (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213123, + "fields": { + "id_car_serie": 6903, + "name": "A 150 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213124, + "fields": { + "id_car_serie": 6903, + "name": "A 150 Autotronic (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213125, + "fields": { + "id_car_serie": 6903, + "name": "A 170 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213126, + "fields": { + "id_car_serie": 6903, + "name": "A 170 Autotronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213127, + "fields": { + "id_car_serie": 6903, + "name": "A 200 Turbo MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213128, + "fields": { + "id_car_serie": 6903, + "name": "A 200 CDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213129, + "fields": { + "id_car_serie": 6903, + "name": "A 180 CDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213130, + "fields": { + "id_car_serie": 6903, + "name": "A 160 CDI MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213131, + "fields": { + "id_car_serie": 6903, + "name": "A 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213132, + "fields": { + "id_car_serie": 6903, + "name": "A 200 CDI Autotronic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213133, + "fields": { + "id_car_serie": 6903, + "name": "A 160 CDI Autotronic (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213134, + "fields": { + "id_car_serie": 6903, + "name": "A 180 CDI Autotronic (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213135, + "fields": { + "id_car_serie": 6903, + "name": "A 200 Turbo Autotronic (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213136, + "fields": { + "id_car_serie": 6903, + "name": "A 200 Autotronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213137, + "fields": { + "id_car_serie": 50376, + "name": "A 140 L AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213138, + "fields": { + "id_car_serie": 50376, + "name": "A 140 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213139, + "fields": { + "id_car_serie": 50376, + "name": "A 140 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213140, + "fields": { + "id_car_serie": 50376, + "name": "A 140 L MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213141, + "fields": { + "id_car_serie": 50376, + "name": "A 160 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213142, + "fields": { + "id_car_serie": 50376, + "name": "A 160 L AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213143, + "fields": { + "id_car_serie": 50376, + "name": "A 160 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213144, + "fields": { + "id_car_serie": 50376, + "name": "A 160 L MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213145, + "fields": { + "id_car_serie": 50376, + "name": "A 170 CDI L AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213146, + "fields": { + "id_car_serie": 50376, + "name": "A 160 CDI AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213147, + "fields": { + "id_car_serie": 50376, + "name": "A 170 CDI AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213148, + "fields": { + "id_car_serie": 50376, + "name": "A 160 CDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213149, + "fields": { + "id_car_serie": 50376, + "name": "A 170 CDI L MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213150, + "fields": { + "id_car_serie": 50376, + "name": "A 170 CDI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213151, + "fields": { + "id_car_serie": 50376, + "name": "A 190 L AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213152, + "fields": { + "id_car_serie": 50376, + "name": "A 190 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213153, + "fields": { + "id_car_serie": 50376, + "name": "A 190 L MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213154, + "fields": { + "id_car_serie": 50376, + "name": "A 190 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213155, + "fields": { + "id_car_serie": 50378, + "name": "A 210 Evolution L AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213156, + "fields": { + "id_car_serie": 50378, + "name": "A 210 Evolution AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213157, + "fields": { + "id_car_serie": 50378, + "name": "A 210 Evolution L MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213158, + "fields": { + "id_car_serie": 50378, + "name": "A 210 Evolution MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213159, + "fields": { + "id_car_serie": 50379, + "name": "A 140 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213160, + "fields": { + "id_car_serie": 50379, + "name": "A 140 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213161, + "fields": { + "id_car_serie": 50379, + "name": "A 160 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213162, + "fields": { + "id_car_serie": 50379, + "name": "A 160 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213163, + "fields": { + "id_car_serie": 50379, + "name": "A 170 CDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213164, + "fields": { + "id_car_serie": 50379, + "name": "A 160 CDI AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213165, + "fields": { + "id_car_serie": 50379, + "name": "A 170 CDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213166, + "fields": { + "id_car_serie": 50379, + "name": "A 160 CDI MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213167, + "fields": { + "id_car_serie": 50379, + "name": "A 190 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213168, + "fields": { + "id_car_serie": 50379, + "name": "A 190 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213169, + "fields": { + "id_car_serie": 50380, + "name": "B 180 d MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213170, + "fields": { + "id_car_serie": 50380, + "name": "B 180 CDI 7G-DCT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213171, + "fields": { + "id_car_serie": 50380, + "name": "B 180 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213172, + "fields": { + "id_car_serie": 50380, + "name": "B 200 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213173, + "fields": { + "id_car_serie": 50380, + "name": "B 200 7G-DCT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213174, + "fields": { + "id_car_serie": 50380, + "name": "B 180 7G-DCT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213175, + "fields": { + "id_car_serie": 50380, + "name": "B 200 7G-DCT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213176, + "fields": { + "id_car_serie": 50380, + "name": "B 200 d 4MATIC (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213177, + "fields": { + "id_car_serie": 50381, + "name": "B 180 CDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213178, + "fields": { + "id_car_serie": 50381, + "name": "B 160 CDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213179, + "fields": { + "id_car_serie": 50381, + "name": "B 180 CDI BlueEfficiency MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213180, + "fields": { + "id_car_serie": 50381, + "name": "B 160 CDI 7G-DCT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213181, + "fields": { + "id_car_serie": 50381, + "name": "B 180 CDI 7G-DCT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213182, + "fields": { + "id_car_serie": 50381, + "name": "B 200 BlueEfficiency MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213183, + "fields": { + "id_car_serie": 50381, + "name": "B 180 BlueEfficiency MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213184, + "fields": { + "id_car_serie": 50381, + "name": "B 200 BlueEfficiency 7G-DCT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213185, + "fields": { + "id_car_serie": 50381, + "name": "B 180 BlueEfficiency 7G-DCT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213186, + "fields": { + "id_car_serie": 50381, + "name": "B 200 CDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213189, + "fields": { + "id_car_serie": 50381, + "name": "B 200 CDI 7G-DCT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213190, + "fields": { + "id_car_serie": 50381, + "name": "B 200 Natural Gas Drive MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213191, + "fields": { + "id_car_serie": 50381, + "name": "B 200 Natural Gas Drive 7G-DCT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213192, + "fields": { + "id_car_serie": 50381, + "name": "B 220 7G-DCT 4MATIC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213193, + "fields": { + "id_car_serie": 50381, + "name": "B 250 7G-DCT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213194, + "fields": { + "id_car_serie": 50381, + "name": "B 220 CDI 7G-DCT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213195, + "fields": { + "id_car_serie": 50382, + "name": "B 160 BlueEFFICIENCY MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213196, + "fields": { + "id_car_serie": 50382, + "name": "B 150 BlueEFFICIENCY MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213197, + "fields": { + "id_car_serie": 50382, + "name": "B 150 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213198, + "fields": { + "id_car_serie": 50382, + "name": "B 160 Autotronic (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213199, + "fields": { + "id_car_serie": 50382, + "name": "B 150 Autotronic (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213200, + "fields": { + "id_car_serie": 50382, + "name": "B 160 BlueEFFICIENCY Autotronic (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213201, + "fields": { + "id_car_serie": 50382, + "name": "B 170 BlueEFFICIENCY MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213202, + "fields": { + "id_car_serie": 50382, + "name": "B 180 BlueEFFICIENCY MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213203, + "fields": { + "id_car_serie": 50382, + "name": "B 170 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213204, + "fields": { + "id_car_serie": 50382, + "name": "B 180 BlueEFFICIENCY Autotronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213205, + "fields": { + "id_car_serie": 50382, + "name": "B 180 Autotronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213206, + "fields": { + "id_car_serie": 50382, + "name": "B 170 Autotronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213207, + "fields": { + "id_car_serie": 50382, + "name": "B 180 CDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213208, + "fields": { + "id_car_serie": 50382, + "name": "B 170 NGT BlueEFFICIENCY MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213209, + "fields": { + "id_car_serie": 50382, + "name": "B 180 NGT BlueEFFICIENCY MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213210, + "fields": { + "id_car_serie": 50382, + "name": "B 200 Turbo MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213211, + "fields": { + "id_car_serie": 50382, + "name": "B 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213212, + "fields": { + "id_car_serie": 50382, + "name": "B 200 CDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213213, + "fields": { + "id_car_serie": 50382, + "name": "B 200 Turbo Autotronic (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213214, + "fields": { + "id_car_serie": 50382, + "name": "B 180 NGT BlueEFFICIENCY Autotronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213215, + "fields": { + "id_car_serie": 50382, + "name": "B 200 CDI Autotronic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213216, + "fields": { + "id_car_serie": 50382, + "name": "B 170 NGT BlueEFFICIENCY Autotronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213217, + "fields": { + "id_car_serie": 50382, + "name": "B 180 CDI Autotronic (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213218, + "fields": { + "id_car_serie": 50382, + "name": "B 200 Autotronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213219, + "fields": { + "id_car_serie": 50383, + "name": "B 150 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213220, + "fields": { + "id_car_serie": 50383, + "name": "B 150 Autotronic (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213221, + "fields": { + "id_car_serie": 50383, + "name": "B 170 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213222, + "fields": { + "id_car_serie": 50383, + "name": "B 170 Autotronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213223, + "fields": { + "id_car_serie": 50383, + "name": "B 180 CDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213224, + "fields": { + "id_car_serie": 50383, + "name": "B 200 Turbo MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213225, + "fields": { + "id_car_serie": 50383, + "name": "B 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213226, + "fields": { + "id_car_serie": 50383, + "name": "B 200 CDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213227, + "fields": { + "id_car_serie": 50383, + "name": "B 200 CDI Autotronic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213228, + "fields": { + "id_car_serie": 50383, + "name": "B 200 Turbo Autotronic (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213229, + "fields": { + "id_car_serie": 50383, + "name": "B 180 CDI Autotronic (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213230, + "fields": { + "id_car_serie": 50383, + "name": "B 200 Autotronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213231, + "fields": { + "id_car_serie": 50384, + "name": "CLA 180 CDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213232, + "fields": { + "id_car_serie": 50384, + "name": "CLA 180 CDI 7G-DCT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213233, + "fields": { + "id_car_serie": 50384, + "name": "CLA 180 BlueEfficiency Edition MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213234, + "fields": { + "id_car_serie": 50384, + "name": "CLA 200 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213235, + "fields": { + "id_car_serie": 50384, + "name": "CLA 180 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213236, + "fields": { + "id_car_serie": 50384, + "name": "CLA 180 7G-DCT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213237, + "fields": { + "id_car_serie": 50384, + "name": "CLA 200 7G-DCT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213238, + "fields": { + "id_car_serie": 50384, + "name": "CLA 200 CDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213239, + "fields": { + "id_car_serie": 50384, + "name": "CLA 200 CDI 7G-DCT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213240, + "fields": { + "id_car_serie": 50384, + "name": "CLA 250 7G-DCT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213241, + "fields": { + "id_car_serie": 50384, + "name": "CLA 250 Sport 4MATIC 7G-DCT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213242, + "fields": { + "id_car_serie": 50384, + "name": "CLA 250 Sport 7G-DCT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213243, + "fields": { + "id_car_serie": 50384, + "name": "CLA 250 7G-DCT 4Matic (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213245, + "fields": { + "id_car_serie": 50384, + "name": "CLA 220 CDI 4MATIC 7G-DCT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213246, + "fields": { + "id_car_serie": 50384, + "name": "CLA 220 CDI 7G-DCT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213247, + "fields": { + "id_car_serie": 50384, + "name": "CLA 200 CDI 4MATIC 7G-DCT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213250, + "fields": { + "id_car_serie": 50385, + "name": "CLA 200 7G-DCT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213251, + "fields": { + "id_car_serie": 50385, + "name": "CLA 250 7G-DCT 4Matic (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213252, + "fields": { + "id_car_serie": 50386, + "name": "CLA 45 AMG Speedshift DCT 4Matic (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213253, + "fields": { + "id_car_serie": 50387, + "name": "CLA 45 AMG Speedshift DCT 4Matic (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213254, + "fields": { + "id_car_serie": 50388, + "name": "CLC 160 BlueEFFICIENCY AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213255, + "fields": { + "id_car_serie": 50388, + "name": "CLC 160 BlueEFFICIENCY MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213256, + "fields": { + "id_car_serie": 50388, + "name": "CLC 180 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213257, + "fields": { + "id_car_serie": 50388, + "name": "CLC 200 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213258, + "fields": { + "id_car_serie": 50388, + "name": "CLC 200 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213259, + "fields": { + "id_car_serie": 50388, + "name": "CLC 180 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213260, + "fields": { + "id_car_serie": 50388, + "name": "CLC 220 CDI AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213261, + "fields": { + "id_car_serie": 50388, + "name": "CLC 200 CDI AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213262, + "fields": { + "id_car_serie": 50388, + "name": "CLC 220 CDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213263, + "fields": { + "id_car_serie": 50388, + "name": "CLC 200 CDI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213264, + "fields": { + "id_car_serie": 50388, + "name": "CLC 250 7G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213265, + "fields": { + "id_car_serie": 50388, + "name": "CLC 230 7G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213266, + "fields": { + "id_car_serie": 50388, + "name": "CLC 230 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213267, + "fields": { + "id_car_serie": 50388, + "name": "CLC 250 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213268, + "fields": { + "id_car_serie": 50388, + "name": "CLC 350 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213269, + "fields": { + "id_car_serie": 50388, + "name": "CLC 350 MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213270, + "fields": { + "id_car_serie": 50389, + "name": "CLK 63 7G-Tronic (481 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213271, + "fields": { + "id_car_serie": 50390, + "name": "CLK 63 Speedshift 7G-Tronic (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213272, + "fields": { + "id_car_serie": 50391, + "name": "CLK 63 7G-Tronic (481 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213273, + "fields": { + "id_car_serie": 50392, + "name": "CLK 200 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213274, + "fields": { + "id_car_serie": 50392, + "name": "CLK 200 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213275, + "fields": { + "id_car_serie": 50392, + "name": "CLK 220 CDI AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213276, + "fields": { + "id_car_serie": 50392, + "name": "CLK 220 CDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213277, + "fields": { + "id_car_serie": 50392, + "name": "CLK 320 CDI AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213278, + "fields": { + "id_car_serie": 50392, + "name": "CLK 280 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213279, + "fields": { + "id_car_serie": 50392, + "name": "CLK 280 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213280, + "fields": { + "id_car_serie": 50392, + "name": "CLK 280 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213281, + "fields": { + "id_car_serie": 50392, + "name": "CLK 320 CDI MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213282, + "fields": { + "id_car_serie": 50392, + "name": "CLK 350 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213283, + "fields": { + "id_car_serie": 50392, + "name": "CLK 350 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213284, + "fields": { + "id_car_serie": 50392, + "name": "CLK 500 AT (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213285, + "fields": { + "id_car_serie": 50392, + "name": "CLK 500 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213286, + "fields": { + "id_car_serie": 50393, + "name": "CLK 200 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213287, + "fields": { + "id_car_serie": 50393, + "name": "CLK 200 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213288, + "fields": { + "id_car_serie": 50393, + "name": "CLK 280 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213289, + "fields": { + "id_car_serie": 50393, + "name": "CLK 320 CDI AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213290, + "fields": { + "id_car_serie": 50393, + "name": "CLK 280 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213291, + "fields": { + "id_car_serie": 50393, + "name": "CLK 320 CDI MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213292, + "fields": { + "id_car_serie": 50393, + "name": "CLK 280 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213293, + "fields": { + "id_car_serie": 50393, + "name": "CLK 350 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213294, + "fields": { + "id_car_serie": 50393, + "name": "CLK 350 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213295, + "fields": { + "id_car_serie": 50393, + "name": "CLK 500 AT (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213296, + "fields": { + "id_car_serie": 50393, + "name": "CLK 500 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213297, + "fields": { + "id_car_serie": 50394, + "name": "CLK 200 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213298, + "fields": { + "id_car_serie": 50394, + "name": "CLK 200 CGI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213299, + "fields": { + "id_car_serie": 50394, + "name": "CLK 200 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213300, + "fields": { + "id_car_serie": 50394, + "name": "CLK 240 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213301, + "fields": { + "id_car_serie": 50394, + "name": "CLK 240 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213302, + "fields": { + "id_car_serie": 50394, + "name": "CLK 270 CDI AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213303, + "fields": { + "id_car_serie": 50394, + "name": "CLK 270 CDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213304, + "fields": { + "id_car_serie": 50394, + "name": "CLK 320 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213305, + "fields": { + "id_car_serie": 50394, + "name": "CLK 500 7G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213306, + "fields": { + "id_car_serie": 50394, + "name": "CLK 500 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213307, + "fields": { + "id_car_serie": 50395, + "name": "CLK 55 AT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213308, + "fields": { + "id_car_serie": 50396, + "name": "CLK 55 AT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213309, + "fields": { + "id_car_serie": 50397, + "name": "CLK 200 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213310, + "fields": { + "id_car_serie": 50397, + "name": "CLK 200 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213311, + "fields": { + "id_car_serie": 50397, + "name": "CLK 200 CGI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213312, + "fields": { + "id_car_serie": 50397, + "name": "CLK 240 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213313, + "fields": { + "id_car_serie": 50397, + "name": "CLK 240 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213314, + "fields": { + "id_car_serie": 50397, + "name": "CLK 320 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213315, + "fields": { + "id_car_serie": 50397, + "name": "CLK 500 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213316, + "fields": { + "id_car_serie": 50397, + "name": "CLK 500 7G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213317, + "fields": { + "id_car_serie": 50398, + "name": "CLK 200 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213318, + "fields": { + "id_car_serie": 50398, + "name": "CLK 200 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213319, + "fields": { + "id_car_serie": 50398, + "name": "CLK 200 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213320, + "fields": { + "id_car_serie": 50398, + "name": "CLK 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213321, + "fields": { + "id_car_serie": 50398, + "name": "CLK 200 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213322, + "fields": { + "id_car_serie": 50398, + "name": "CLK 230 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213323, + "fields": { + "id_car_serie": 50398, + "name": "CLK 230 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213324, + "fields": { + "id_car_serie": 50398, + "name": "CLK 230 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213325, + "fields": { + "id_car_serie": 50398, + "name": "CLK 230 MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213326, + "fields": { + "id_car_serie": 50398, + "name": "CLK 320 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213327, + "fields": { + "id_car_serie": 50398, + "name": "CLK 430 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213328, + "fields": { + "id_car_serie": 50399, + "name": "CLK 55 AT (347 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213329, + "fields": { + "id_car_serie": 50400, + "name": "CLK 55 AT (347 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213330, + "fields": { + "id_car_serie": 50401, + "name": "CLK 200 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213331, + "fields": { + "id_car_serie": 50401, + "name": "CLK 200 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213332, + "fields": { + "id_car_serie": 50401, + "name": "CLK 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213333, + "fields": { + "id_car_serie": 50401, + "name": "CLK 200 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213334, + "fields": { + "id_car_serie": 50401, + "name": "CLK 200 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213335, + "fields": { + "id_car_serie": 50401, + "name": "CLK 230 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213336, + "fields": { + "id_car_serie": 50401, + "name": "CLK 230 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213337, + "fields": { + "id_car_serie": 50401, + "name": "CLK 230 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213338, + "fields": { + "id_car_serie": 50401, + "name": "CLK 230 MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213339, + "fields": { + "id_car_serie": 50401, + "name": "CLK 320 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213340, + "fields": { + "id_car_serie": 50401, + "name": "CLK 430 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213341, + "fields": { + "id_car_serie": 50402, + "name": "CLK 200 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213342, + "fields": { + "id_car_serie": 50402, + "name": "CLK 200 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213343, + "fields": { + "id_car_serie": 50402, + "name": "CLK 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213344, + "fields": { + "id_car_serie": 50402, + "name": "CLK 230 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213345, + "fields": { + "id_car_serie": 50402, + "name": "CLK 230 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213346, + "fields": { + "id_car_serie": 50402, + "name": "CLK 320 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213347, + "fields": { + "id_car_serie": 50402, + "name": "CLK 430 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213348, + "fields": { + "id_car_serie": 50403, + "name": "CLK 200 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213349, + "fields": { + "id_car_serie": 50403, + "name": "CLK 200 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213350, + "fields": { + "id_car_serie": 50403, + "name": "CLK 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213351, + "fields": { + "id_car_serie": 50403, + "name": "CLK 230 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213352, + "fields": { + "id_car_serie": 50403, + "name": "CLK 230 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213353, + "fields": { + "id_car_serie": 50403, + "name": "CLK 320 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213354, + "fields": { + "id_car_serie": 50403, + "name": "CLK 430 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213355, + "fields": { + "id_car_serie": 50404, + "name": "CLS 250 d 4Matic 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213356, + "fields": { + "id_car_serie": 50404, + "name": "CLS 250 BlueTEC 7G-Tronic Plus 4Matic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213357, + "fields": { + "id_car_serie": 50404, + "name": "CLS 350 d 4MATIC 9G-TRONIC (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213358, + "fields": { + "id_car_serie": 50404, + "name": "CLS 350 BlueTEC 7G-Tronic Plus 4Matic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213359, + "fields": { + "id_car_serie": 50404, + "name": "CLS 400 7G-Tronic Plus 4Matic (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213360, + "fields": { + "id_car_serie": 50404, + "name": "CLS 400 7G-Tronic Plus (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213361, + "fields": { + "id_car_serie": 50404, + "name": "CLS 500 9G-Tronic (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213362, + "fields": { + "id_car_serie": 50404, + "name": "CLS 500 7G-Tronic Plus 4Matic (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213363, + "fields": { + "id_car_serie": 50405, + "name": "CLS 63 AMG S-Modell Speedshift MCT 4Matic (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213364, + "fields": { + "id_car_serie": 50405, + "name": "CLS 63 AMG Speedshift MCT 4Matic (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213365, + "fields": { + "id_car_serie": 50406, + "name": "CLS 63 AMG Speedshift MCT 4Matic (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213366, + "fields": { + "id_car_serie": 50406, + "name": "CLS 63 AMG S-Modell Speedshift MCT 4Matic (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213367, + "fields": { + "id_car_serie": 50406, + "name": "CLS 63 Speedshift MCT (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213368, + "fields": { + "id_car_serie": 50407, + "name": "CLS 250 d BlueTEC 4Matic 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213369, + "fields": { + "id_car_serie": 50407, + "name": "CLS 350 d 4MATIC 9G-TRONIC (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213370, + "fields": { + "id_car_serie": 50407, + "name": "CLS 350 BlueTEC 7G-Tronic Plus 4Matic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213371, + "fields": { + "id_car_serie": 50407, + "name": "CLS 400 4Matic 7G-Tronic Plus (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213372, + "fields": { + "id_car_serie": 50407, + "name": "CLS 500 4MATIC 9G-Tronic (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213373, + "fields": { + "id_car_serie": 50407, + "name": "CLS 500 7G-Tronic Plus 4Matic (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213379, + "fields": { + "id_car_serie": 50409, + "name": "CLS 63 AMG Speedshift MCT 4Matic (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213380, + "fields": { + "id_car_serie": 50409, + "name": "CLS 63 Speedshift MCT (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213383, + "fields": { + "id_car_serie": 50410, + "name": "CLS 350 BlueTEC 7G-Tronic plus 4MATIC (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213385, + "fields": { + "id_car_serie": 50410, + "name": "CLS 350 CDI 7G-Tronic Plus 4Matic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213387, + "fields": { + "id_car_serie": 50410, + "name": "CLS 350 BlueEfficiency 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213389, + "fields": { + "id_car_serie": 50410, + "name": "CLS 500 BlueEfficiency 7G-Tronic Plus (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213395, + "fields": { + "id_car_serie": 50411, + "name": "CLS 500 BlueEfficiency 7G-Tronic Plus (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213396, + "fields": { + "id_car_serie": 50412, + "name": "CLS 63 SPEEDSHIFT 7G-Tronic (514 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213399, + "fields": { + "id_car_serie": 15030, + "name": "CLS 350 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213400, + "fields": { + "id_car_serie": 15030, + "name": "CLS 320 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213401, + "fields": { + "id_car_serie": 15030, + "name": "CLS 350 CGI 7G-Tronic (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213410, + "fields": { + "id_car_serie": 50416, + "name": "CL 63 Performance Package Speedshift MCT (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213411, + "fields": { + "id_car_serie": 50416, + "name": "CL 63 AMG Speedshift MCT (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213412, + "fields": { + "id_car_serie": 50416, + "name": "CL 65 AMG Speedshift 5G-Tronic (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213413, + "fields": { + "id_car_serie": 50417, + "name": "CL 500 BlueEfficiency 7G-Tronic Plus 4Matic (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213414, + "fields": { + "id_car_serie": 50417, + "name": "CL 500 BlueEfficiency 7G-Tronic Plus (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213415, + "fields": { + "id_car_serie": 50417, + "name": "CL 600 5G-Tronic (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213416, + "fields": { + "id_car_serie": 50418, + "name": "CL 65 Speedshift 5G-Tronic (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213418, + "fields": { + "id_car_serie": 50419, + "name": "CL 600 5G-Tronic (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213419, + "fields": { + "id_car_serie": 50419, + "name": "CL 500 7G-Tronic 4MATIC (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213420, + "fields": { + "id_car_serie": 50419, + "name": "CL 500 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213421, + "fields": { + "id_car_serie": 50420, + "name": "CL 55 5G-Tronic (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213422, + "fields": { + "id_car_serie": 50420, + "name": "CL 65 5G-Tronic (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213423, + "fields": { + "id_car_serie": 50421, + "name": "CL 500 7G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213424, + "fields": { + "id_car_serie": 50421, + "name": "CL 500 5G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213425, + "fields": { + "id_car_serie": 50421, + "name": "CL 600 5G-Tronic (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213426, + "fields": { + "id_car_serie": 50422, + "name": "CL 500 ZAS 5G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213427, + "fields": { + "id_car_serie": 50422, + "name": "CL 500 5G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213428, + "fields": { + "id_car_serie": 50422, + "name": "CL 600 5G-Tronic (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213429, + "fields": { + "id_car_serie": 50423, + "name": "CL 55 5G-Tronic (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213430, + "fields": { + "id_car_serie": 50423, + "name": "CL 63 5G-Tronic (443 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213431, + "fields": { + "id_car_serie": 50424, + "name": "CL 420 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213432, + "fields": { + "id_car_serie": 50424, + "name": "CL 500 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213433, + "fields": { + "id_car_serie": 50424, + "name": "CL 600 AT (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213434, + "fields": { + "id_car_serie": 50428, + "name": "C 63 AMG Speedshift MCT (457 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213435, + "fields": { + "id_car_serie": 50429, + "name": "C 63 AMG Speedshift MCT (457 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213436, + "fields": { + "id_car_serie": 6908, + "name": "C 180 BlueEfficiency 7G-Tronic Plus (156 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213437, + "fields": { + "id_car_serie": 6908, + "name": "C 180 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213438, + "fields": { + "id_car_serie": 6908, + "name": "C 250 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213439, + "fields": { + "id_car_serie": 6908, + "name": "C 180 7G-Tronic Plus (156 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213440, + "fields": { + "id_car_serie": 6908, + "name": "C 200 7G-Tronic Plus (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213441, + "fields": { + "id_car_serie": 6908, + "name": "C 200 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213443, + "fields": { + "id_car_serie": 6908, + "name": "C 220 CDI 4MATIC 7G-Tronic Plus (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213444, + "fields": { + "id_car_serie": 6908, + "name": "C 180 CDI 7G-Tronic Plus (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213445, + "fields": { + "id_car_serie": 6908, + "name": "C 200 CDI 7G-Tronic Plus (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213446, + "fields": { + "id_car_serie": 6908, + "name": "C 220 CDI 7G-Tronic Plus (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213447, + "fields": { + "id_car_serie": 6908, + "name": "C 250 CDI 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213448, + "fields": { + "id_car_serie": 6908, + "name": "C 250 CDI 4MATIC 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213449, + "fields": { + "id_car_serie": 6908, + "name": "C 180 CDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213450, + "fields": { + "id_car_serie": 6908, + "name": "C 220 CDI BlueEFFICIENCY Edition MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213451, + "fields": { + "id_car_serie": 6908, + "name": "C 200 CDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213452, + "fields": { + "id_car_serie": 6908, + "name": "C 220 CDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213453, + "fields": { + "id_car_serie": 6908, + "name": "C 250 CDI MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213454, + "fields": { + "id_car_serie": 6908, + "name": "C 350 CDI 7G-Tronic Plus (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213455, + "fields": { + "id_car_serie": 6908, + "name": "C 300 CDI 4MATIC 7G-Tronic Plus (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213456, + "fields": { + "id_car_serie": 6908, + "name": "C 350 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213457, + "fields": { + "id_car_serie": 50431, + "name": "C 180 7G-Tronic Plus (156 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213458, + "fields": { + "id_car_serie": 50431, + "name": "C 180 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213459, + "fields": { + "id_car_serie": 50431, + "name": "C 250 BlueEfficiency 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213460, + "fields": { + "id_car_serie": 50431, + "name": "C 180 BlueEfficiency 7G-Tronic Plus (156 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213461, + "fields": { + "id_car_serie": 50431, + "name": "C 200 7G-Tronic Plus (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213462, + "fields": { + "id_car_serie": 50431, + "name": "C 180 BlueEfficiency MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213463, + "fields": { + "id_car_serie": 50431, + "name": "C 200 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213464, + "fields": { + "id_car_serie": 50431, + "name": "C 220 CDi BlueEfficiency 7G-Tronic Plus (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213465, + "fields": { + "id_car_serie": 50431, + "name": "C 250 CDI 4Matic 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213466, + "fields": { + "id_car_serie": 50431, + "name": "C 180 CDI 7G-Tronic Plus (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213467, + "fields": { + "id_car_serie": 50431, + "name": "C 200 CDI 7G-Tronic Plus (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213468, + "fields": { + "id_car_serie": 50431, + "name": "C 250 CDI 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213469, + "fields": { + "id_car_serie": 50431, + "name": "C 200 CDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213470, + "fields": { + "id_car_serie": 50431, + "name": "C 180 CDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213471, + "fields": { + "id_car_serie": 50431, + "name": "C 220 CDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213472, + "fields": { + "id_car_serie": 50431, + "name": "C 250 CDI MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213473, + "fields": { + "id_car_serie": 50431, + "name": "C 220 CDI BlueEFFICIENCY Edition MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213474, + "fields": { + "id_car_serie": 50431, + "name": "C 300 CDI 4MATIC 7G-Tronic Plus (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213475, + "fields": { + "id_car_serie": 50431, + "name": "C 350 CDI 7G-Tronic Plus (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213476, + "fields": { + "id_car_serie": 50431, + "name": "C 350 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213477, + "fields": { + "id_car_serie": 50431, + "name": "C 350 4MATIC 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213478, + "fields": { + "id_car_serie": 50431, + "name": "C 300 4Matic BlueEfficiency 7G-Ttonic Plus (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213479, + "fields": { + "id_car_serie": 50425, + "name": "C 180 7G-Tronic Plus (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213480, + "fields": { + "id_car_serie": 50425, + "name": "C 180 7G-Tronic Plus (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213481, + "fields": { + "id_car_serie": 50425, + "name": "C 180 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213482, + "fields": { + "id_car_serie": 50425, + "name": "C 250 7G-Tronic Plus (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213483, + "fields": { + "id_car_serie": 50425, + "name": "C 200 4Matic 7G-Tronic Plus (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213484, + "fields": { + "id_car_serie": 50425, + "name": "C 350 e 7G-Tronic Plus (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213485, + "fields": { + "id_car_serie": 50425, + "name": "C 200 7G-Tronic Plus (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213486, + "fields": { + "id_car_serie": 50425, + "name": "C 200 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213487, + "fields": { + "id_car_serie": 50425, + "name": "C 250 d 4Matic 9G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213488, + "fields": { + "id_car_serie": 50425, + "name": "C 300 BlueTEC Hybrid 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213489, + "fields": { + "id_car_serie": 50425, + "name": "C 220 BlueTEC 7G-Tronic Plus (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213490, + "fields": { + "id_car_serie": 50425, + "name": "C 220 BlueTEC MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213491, + "fields": { + "id_car_serie": 50426, + "name": "C 43 4Matic 9G-Tronic (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213492, + "fields": { + "id_car_serie": 50426, + "name": "C 63 SPEEDSHIFT DCT (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213493, + "fields": { + "id_car_serie": 50426, + "name": "C 63 S SPEEDSHIFT DCT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213494, + "fields": { + "id_car_serie": 50427, + "name": "C 180 7G-Tronic Plus (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213495, + "fields": { + "id_car_serie": 50427, + "name": "C 180 7G-Tronic Plus (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213496, + "fields": { + "id_car_serie": 50427, + "name": "C 200 4Matic 7G-Tronic Plus (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213497, + "fields": { + "id_car_serie": 50427, + "name": "C 250 BlueTEC 7G-Tronic Plus 4Matic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213498, + "fields": { + "id_car_serie": 50432, + "name": "C 180 7G-Tronic Plus (156 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213499, + "fields": { + "id_car_serie": 50432, + "name": "C 180 MT (156 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213500, + "fields": { + "id_car_serie": 50432, + "name": "C 250 BlueEfficiency 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213502, + "fields": { + "id_car_serie": 50432, + "name": "C 200 7G-Tronic Plus (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213504, + "fields": { + "id_car_serie": 50432, + "name": "C 200 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213505, + "fields": { + "id_car_serie": 50432, + "name": "C 220 CDI 7G-Tronic Plus (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213506, + "fields": { + "id_car_serie": 50432, + "name": "C 250 CDI 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213507, + "fields": { + "id_car_serie": 50432, + "name": "C 250 CDI MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213508, + "fields": { + "id_car_serie": 50432, + "name": "C 220 CDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213509, + "fields": { + "id_car_serie": 50432, + "name": "C 220 CDI BlueEFFICIENCY Edition MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213510, + "fields": { + "id_car_serie": 50432, + "name": "C 350 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213511, + "fields": { + "id_car_serie": 50433, + "name": "C 63 AMG SPEEDSHIFT MCT (457 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213512, + "fields": { + "id_car_serie": 50434, + "name": "C 63 AMG SPEEDSHIFT PLUS 7G-Tronic (457 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213513, + "fields": { + "id_car_serie": 50435, + "name": "C 180 Kompressor BlueEFFICIENCY AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213514, + "fields": { + "id_car_serie": 50435, + "name": "C 180 Kompressor BlueEFFICIENCY MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213515, + "fields": { + "id_car_serie": 50435, + "name": "C 180 CGI BlueEFFICIENCY AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213516, + "fields": { + "id_car_serie": 50435, + "name": "C 200 CGI BlueEFFICIENCY AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213517, + "fields": { + "id_car_serie": 50435, + "name": "C 200 Kompressor AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213518, + "fields": { + "id_car_serie": 50435, + "name": "C 250 CGI BlueEFFICIENCY AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213519, + "fields": { + "id_car_serie": 50435, + "name": "C 180 Kompressor AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213520, + "fields": { + "id_car_serie": 50435, + "name": "C 180 Kompressor MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213521, + "fields": { + "id_car_serie": 50435, + "name": "C 200 CGI BlueEFFICIENCY MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213522, + "fields": { + "id_car_serie": 50435, + "name": "C 200 Kompressor MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213523, + "fields": { + "id_car_serie": 50435, + "name": "C 180 CGI BlueEFFICIENCY MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213524, + "fields": { + "id_car_serie": 50435, + "name": "C 250 CDI 4MATIC BlueEFFICIENCY 7G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213525, + "fields": { + "id_car_serie": 50435, + "name": "C 220 CDI BlueEFFICIENCY AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213526, + "fields": { + "id_car_serie": 50435, + "name": "C 250 CDI BlueEFFICIENCY AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213527, + "fields": { + "id_car_serie": 50435, + "name": "C 200 CDI BlueEFFICIENCY AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213528, + "fields": { + "id_car_serie": 50435, + "name": "C 200 CDI AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213529, + "fields": { + "id_car_serie": 50435, + "name": "C 220 CDI AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213530, + "fields": { + "id_car_serie": 50435, + "name": "C 220 CDI BlueEFFICIENCY MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213531, + "fields": { + "id_car_serie": 50435, + "name": "C 220 CDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213532, + "fields": { + "id_car_serie": 50435, + "name": "C 200 CDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213533, + "fields": { + "id_car_serie": 50435, + "name": "C 200 CDI BlueEFFICIENCY MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213534, + "fields": { + "id_car_serie": 50435, + "name": "C 250 CDI BlueEFFICIENCY MT (204 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213537, + "fields": { + "id_car_serie": 50435, + "name": "C 230 7G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213538, + "fields": { + "id_car_serie": 50435, + "name": "C 230 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213539, + "fields": { + "id_car_serie": 50435, + "name": "C 350 CDI 4MATIC BlueEFFICIENCY 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213540, + "fields": { + "id_car_serie": 50435, + "name": "C 280 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213541, + "fields": { + "id_car_serie": 50435, + "name": "C 320 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213542, + "fields": { + "id_car_serie": 50435, + "name": "C 280 4MATIC 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213543, + "fields": { + "id_car_serie": 50435, + "name": "C 320 CDI 4MATIC 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213544, + "fields": { + "id_car_serie": 50435, + "name": "C 300 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213545, + "fields": { + "id_car_serie": 50435, + "name": "C 300 4MATIC 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213546, + "fields": { + "id_car_serie": 50435, + "name": "C 350 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213547, + "fields": { + "id_car_serie": 50435, + "name": "C 350 CDI BlueEFFICIENCY 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213548, + "fields": { + "id_car_serie": 50435, + "name": "C 320 CDI MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213549, + "fields": { + "id_car_serie": 50435, + "name": "C 300 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213550, + "fields": { + "id_car_serie": 50435, + "name": "C 350 CDI MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213551, + "fields": { + "id_car_serie": 50435, + "name": "C 280 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213552, + "fields": { + "id_car_serie": 50435, + "name": "C 350 4MATIC 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213553, + "fields": { + "id_car_serie": 50435, + "name": "C 350 CGI BlueEFFICIENCY 7G-Tronic (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213554, + "fields": { + "id_car_serie": 50435, + "name": "C 350 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213555, + "fields": { + "id_car_serie": 50436, + "name": "C 63 AMG SPEEDSHIFT PLUS 7G-Tronic (457 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213556, + "fields": { + "id_car_serie": 6909, + "name": "C 180 Kompressor BlueEFFICIENCY AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213557, + "fields": { + "id_car_serie": 6909, + "name": "C 180 Kompressor BlueEFFICIENCY MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213558, + "fields": { + "id_car_serie": 6909, + "name": "C 180 Kompressor AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213559, + "fields": { + "id_car_serie": 6909, + "name": "C 200 Kompressor AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213560, + "fields": { + "id_car_serie": 6909, + "name": "C 200 CGI BlueEFFICIENCY AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213561, + "fields": { + "id_car_serie": 6909, + "name": "C 180 CGI BlueEFFICIENCY AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213562, + "fields": { + "id_car_serie": 6909, + "name": "C 250 CGI BlueEFFICIENCY AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213563, + "fields": { + "id_car_serie": 6909, + "name": "C 200 CGI BlueEFFICIENCY MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213564, + "fields": { + "id_car_serie": 6909, + "name": "C 200 Kompressor MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213565, + "fields": { + "id_car_serie": 6909, + "name": "C 180 CGI BlueEFFICIENCY MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213566, + "fields": { + "id_car_serie": 6909, + "name": "C 180 Kompressor MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213567, + "fields": { + "id_car_serie": 6909, + "name": "C 220 CDI BlueEFFICIENCY AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213568, + "fields": { + "id_car_serie": 6909, + "name": "C 220 CDI AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213569, + "fields": { + "id_car_serie": 6909, + "name": "C 200 CDI AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213570, + "fields": { + "id_car_serie": 6909, + "name": "C 250 CDI 4MATIC BlueEFFICIENCY 7G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213571, + "fields": { + "id_car_serie": 6909, + "name": "C 200 CDI BlueEFFICIENCY AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213572, + "fields": { + "id_car_serie": 6909, + "name": "C 250 CDI BlueEFFICIENCY AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213573, + "fields": { + "id_car_serie": 6909, + "name": "C 250 CDI BlueEFFICIENCY MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213574, + "fields": { + "id_car_serie": 6909, + "name": "C 220 CDI BlueEFFICIENCY MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213575, + "fields": { + "id_car_serie": 6909, + "name": "C 220 CDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213576, + "fields": { + "id_car_serie": 6909, + "name": "C 200 CDI BlueEFFICIENCY MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213577, + "fields": { + "id_car_serie": 6909, + "name": "C 200 CDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213578, + "fields": { + "id_car_serie": 6909, + "name": "C 230 7G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213579, + "fields": { + "id_car_serie": 6909, + "name": "C 230 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213580, + "fields": { + "id_car_serie": 6909, + "name": "C 350 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213581, + "fields": { + "id_car_serie": 6909, + "name": "C 280 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213582, + "fields": { + "id_car_serie": 6909, + "name": "C 320 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213583, + "fields": { + "id_car_serie": 6909, + "name": "C 320 CDI 4MATIC 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213584, + "fields": { + "id_car_serie": 6909, + "name": "C 350 CDI BlueEFFICIENCY 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213585, + "fields": { + "id_car_serie": 6909, + "name": "C 300 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213586, + "fields": { + "id_car_serie": 6909, + "name": "C 350 CDI 4MATIC BlueEFFICIENCY 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213587, + "fields": { + "id_car_serie": 6909, + "name": "C 300 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213588, + "fields": { + "id_car_serie": 6909, + "name": "C 350 CDI MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213589, + "fields": { + "id_car_serie": 6909, + "name": "C 320 CDI MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213590, + "fields": { + "id_car_serie": 6909, + "name": "C 280 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213591, + "fields": { + "id_car_serie": 6909, + "name": "C 350 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213592, + "fields": { + "id_car_serie": 50438, + "name": "C 200 Kompressor AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213593, + "fields": { + "id_car_serie": 50438, + "name": "C 180 Kompressor AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213594, + "fields": { + "id_car_serie": 50438, + "name": "C 230 Kompressor AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213595, + "fields": { + "id_car_serie": 50438, + "name": "C 180 Kompressor MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213596, + "fields": { + "id_car_serie": 50438, + "name": "C 200 CGI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213597, + "fields": { + "id_car_serie": 50438, + "name": "C 230 Kompressor MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213598, + "fields": { + "id_car_serie": 50438, + "name": "C 200 Kompressor MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213599, + "fields": { + "id_car_serie": 50438, + "name": "C 220 CDI AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213600, + "fields": { + "id_car_serie": 50438, + "name": "C 200 CDI AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213601, + "fields": { + "id_car_serie": 50438, + "name": "C 220 CDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213602, + "fields": { + "id_car_serie": 50438, + "name": "C 200 CDI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213603, + "fields": { + "id_car_serie": 50438, + "name": "C 230 7G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213604, + "fields": { + "id_car_serie": 50438, + "name": "C 230 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213605, + "fields": { + "id_car_serie": 50438, + "name": "C 240 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213606, + "fields": { + "id_car_serie": 50438, + "name": "C 240 4MATIC AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213607, + "fields": { + "id_car_serie": 50438, + "name": "C 240 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213608, + "fields": { + "id_car_serie": 50438, + "name": "C 270 CDI AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213609, + "fields": { + "id_car_serie": 50438, + "name": "C 270 CDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213610, + "fields": { + "id_car_serie": 50438, + "name": "C 320 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213611, + "fields": { + "id_car_serie": 50438, + "name": "C 280 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213612, + "fields": { + "id_car_serie": 50438, + "name": "C 280 4MATIC AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213613, + "fields": { + "id_car_serie": 50438, + "name": "C 280 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213614, + "fields": { + "id_car_serie": 50438, + "name": "C 320 CDI MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213615, + "fields": { + "id_car_serie": 50438, + "name": "C 320 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213616, + "fields": { + "id_car_serie": 50438, + "name": "C 320 4MATIC AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213617, + "fields": { + "id_car_serie": 50438, + "name": "C 320 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213618, + "fields": { + "id_car_serie": 50438, + "name": "C 350 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213619, + "fields": { + "id_car_serie": 50438, + "name": "C 350 4MATIC AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213620, + "fields": { + "id_car_serie": 50438, + "name": "C 350 MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213621, + "fields": { + "id_car_serie": 15022, + "name": "C 200 Kompressor AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213622, + "fields": { + "id_car_serie": 15022, + "name": "C 180 Kompressor AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213623, + "fields": { + "id_car_serie": 15022, + "name": "C 230 Kompressor AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213624, + "fields": { + "id_car_serie": 15022, + "name": "C 180 Kompressor MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213625, + "fields": { + "id_car_serie": 15022, + "name": "C 200 CGI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213626, + "fields": { + "id_car_serie": 15022, + "name": "C 230 Kompressor MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213627, + "fields": { + "id_car_serie": 15022, + "name": "C 200 Kompressor MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213628, + "fields": { + "id_car_serie": 15022, + "name": "C 220 CDI AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213629, + "fields": { + "id_car_serie": 15022, + "name": "C 200 CDI AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213630, + "fields": { + "id_car_serie": 15022, + "name": "C 220 CDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213631, + "fields": { + "id_car_serie": 15022, + "name": "C 200 CDI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213632, + "fields": { + "id_car_serie": 15022, + "name": "C 230 7G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213633, + "fields": { + "id_car_serie": 15022, + "name": "C 230 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213634, + "fields": { + "id_car_serie": 15022, + "name": "C 240 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213635, + "fields": { + "id_car_serie": 15022, + "name": "C 240 4MATIC AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213636, + "fields": { + "id_car_serie": 15022, + "name": "C 240 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213637, + "fields": { + "id_car_serie": 15022, + "name": "C 270 CDI AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213638, + "fields": { + "id_car_serie": 15022, + "name": "C 270 CDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213639, + "fields": { + "id_car_serie": 15022, + "name": "C 320 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213640, + "fields": { + "id_car_serie": 15022, + "name": "C 280 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213641, + "fields": { + "id_car_serie": 15022, + "name": "C 280 4MATIC AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213642, + "fields": { + "id_car_serie": 15022, + "name": "C 280 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213643, + "fields": { + "id_car_serie": 15022, + "name": "C 320 CDI MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213644, + "fields": { + "id_car_serie": 15022, + "name": "C 320 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213645, + "fields": { + "id_car_serie": 15022, + "name": "C 320 4MATIC AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213646, + "fields": { + "id_car_serie": 15022, + "name": "C 320 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213647, + "fields": { + "id_car_serie": 15022, + "name": "C 350 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213648, + "fields": { + "id_car_serie": 15022, + "name": "C 350 4MATIC AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213649, + "fields": { + "id_car_serie": 15022, + "name": "C 350 MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213650, + "fields": { + "id_car_serie": 15020, + "name": "C 200 Kompressor AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213651, + "fields": { + "id_car_serie": 15020, + "name": "C 230 Kompressor AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213652, + "fields": { + "id_car_serie": 15020, + "name": "C 160 Kompressor AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213653, + "fields": { + "id_car_serie": 15020, + "name": "C 180 Kompressor AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213654, + "fields": { + "id_car_serie": 15020, + "name": "C 180 Kompressor MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213655, + "fields": { + "id_car_serie": 15020, + "name": "C 160 Kompressor MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213656, + "fields": { + "id_car_serie": 15020, + "name": "C 200 Kompressor MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213657, + "fields": { + "id_car_serie": 15020, + "name": "C 200 CGI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213658, + "fields": { + "id_car_serie": 15020, + "name": "C 230 Kompressor MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213659, + "fields": { + "id_car_serie": 15020, + "name": "C 200 CDI AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213660, + "fields": { + "id_car_serie": 15020, + "name": "C 220 CDI AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213661, + "fields": { + "id_car_serie": 15020, + "name": "C 220 CDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213662, + "fields": { + "id_car_serie": 15020, + "name": "C 200 CDI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213663, + "fields": { + "id_car_serie": 15020, + "name": "C 230 7G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213664, + "fields": { + "id_car_serie": 15020, + "name": "C 230 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213665, + "fields": { + "id_car_serie": 15020, + "name": "C 30 CDI AMG SPEEDSHIFT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213666, + "fields": { + "id_car_serie": 15020, + "name": "C 320 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213667, + "fields": { + "id_car_serie": 15020, + "name": "C 320 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213668, + "fields": { + "id_car_serie": 15020, + "name": "C 350 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213669, + "fields": { + "id_car_serie": 15020, + "name": "C 350 MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213670, + "fields": { + "id_car_serie": 50441, + "name": "C 30 CDI AMG SPEEDSHIFT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213671, + "fields": { + "id_car_serie": 50441, + "name": "C 55 AMG SPEEDSHIFT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213672, + "fields": { + "id_car_serie": 50442, + "name": "C 55 AMG SPEEDSHIFT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213673, + "fields": { + "id_car_serie": 50443, + "name": "C 180 Kompressor AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213674, + "fields": { + "id_car_serie": 50443, + "name": "C 230 Kompressor AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213675, + "fields": { + "id_car_serie": 50443, + "name": "C 200 Kompressor AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213676, + "fields": { + "id_car_serie": 50443, + "name": "C 230 Kompressor MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213677, + "fields": { + "id_car_serie": 50443, + "name": "C 180 Kompressor MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213678, + "fields": { + "id_car_serie": 50443, + "name": "C 200 Kompressor MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213679, + "fields": { + "id_car_serie": 50443, + "name": "C 200 CGI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213681, + "fields": { + "id_car_serie": 50443, + "name": "C 180 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213682, + "fields": { + "id_car_serie": 50443, + "name": "C 180 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213684, + "fields": { + "id_car_serie": 50443, + "name": "C 220 CDI AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213685, + "fields": { + "id_car_serie": 50443, + "name": "C 200 CDI AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213687, + "fields": { + "id_car_serie": 50443, + "name": "C 200 CDI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213688, + "fields": { + "id_car_serie": 50443, + "name": "C 220 CDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213690, + "fields": { + "id_car_serie": 50443, + "name": "C 230 Kompressor AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213691, + "fields": { + "id_car_serie": 50443, + "name": "C 230 Kompressor MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213692, + "fields": { + "id_car_serie": 50443, + "name": "C 30 CDI AMG SPEEDSHIFT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213693, + "fields": { + "id_car_serie": 50443, + "name": "C 320 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213694, + "fields": { + "id_car_serie": 50443, + "name": "C 320 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213695, + "fields": { + "id_car_serie": 50444, + "name": "C 30 CDI AMG SPEEDSHIFT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213696, + "fields": { + "id_car_serie": 50444, + "name": "C 32 AMG SPEEDSHIFT (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213697, + "fields": { + "id_car_serie": 6912, + "name": "C 200 Kompressor AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213698, + "fields": { + "id_car_serie": 6912, + "name": "C 180 Kompressor AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213699, + "fields": { + "id_car_serie": 6912, + "name": "C 200 CGI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213700, + "fields": { + "id_car_serie": 6912, + "name": "C 200 Kompressor MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213701, + "fields": { + "id_car_serie": 6912, + "name": "C 180 Kompressor MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213703, + "fields": { + "id_car_serie": 6912, + "name": "C 180 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213704, + "fields": { + "id_car_serie": 6912, + "name": "C 180 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213706, + "fields": { + "id_car_serie": 6912, + "name": "C 220 CDI AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213707, + "fields": { + "id_car_serie": 6912, + "name": "C 200 CDI AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213708, + "fields": { + "id_car_serie": 6912, + "name": "C 200 CDI AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213710, + "fields": { + "id_car_serie": 6912, + "name": "C 200 CDI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213711, + "fields": { + "id_car_serie": 6912, + "name": "C 220 CDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213713, + "fields": { + "id_car_serie": 6912, + "name": "C 200 CDI MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213714, + "fields": { + "id_car_serie": 6912, + "name": "C 240 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213715, + "fields": { + "id_car_serie": 6912, + "name": "C 240 4MATIC AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213716, + "fields": { + "id_car_serie": 6912, + "name": "C 240 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213717, + "fields": { + "id_car_serie": 6912, + "name": "C 270 CDI AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213719, + "fields": { + "id_car_serie": 6912, + "name": "C 270 CDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213721, + "fields": { + "id_car_serie": 6912, + "name": "C 320 4MATIC AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213722, + "fields": { + "id_car_serie": 6912, + "name": "C 320 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213723, + "fields": { + "id_car_serie": 6912, + "name": "C 320 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213724, + "fields": { + "id_car_serie": 50446, + "name": "C 30 CDI AMG SPEEDSHIFT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213725, + "fields": { + "id_car_serie": 50446, + "name": "C 32 AMG SPEEDSHIFT (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213726, + "fields": { + "id_car_serie": 50447, + "name": "C 180 Kompressor AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213727, + "fields": { + "id_car_serie": 50447, + "name": "C 230 Kompressor AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213728, + "fields": { + "id_car_serie": 50447, + "name": "C 200 Kompressor AT (163 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213729, + "fields": { + "id_car_serie": 50447, + "name": "C 200 Kompressor MT (163 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213730, + "fields": { + "id_car_serie": 50447, + "name": "C 230 Kompressor MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213731, + "fields": { + "id_car_serie": 50447, + "name": "C 200 CGI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213732, + "fields": { + "id_car_serie": 50447, + "name": "C 180 Kompressor MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213734, + "fields": { + "id_car_serie": 50447, + "name": "C 180 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213735, + "fields": { + "id_car_serie": 50447, + "name": "C 180 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213737, + "fields": { + "id_car_serie": 50447, + "name": "C 200 CDI AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213738, + "fields": { + "id_car_serie": 50447, + "name": "C 220 CDI AT (143 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213739, + "fields": { + "id_car_serie": 50447, + "name": "C 200 CDI AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213741, + "fields": { + "id_car_serie": 50447, + "name": "C 220 CDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213742, + "fields": { + "id_car_serie": 50447, + "name": "C 200 CDI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213743, + "fields": { + "id_car_serie": 50447, + "name": "C 200 CDI MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213745, + "fields": { + "id_car_serie": 50447, + "name": "C 240 4MATIC AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213746, + "fields": { + "id_car_serie": 50447, + "name": "C 240 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213747, + "fields": { + "id_car_serie": 50447, + "name": "C 240 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213748, + "fields": { + "id_car_serie": 50447, + "name": "C 270 CDI AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213750, + "fields": { + "id_car_serie": 50447, + "name": "C 270 CDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213752, + "fields": { + "id_car_serie": 50447, + "name": "C 320 4MATIC AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213753, + "fields": { + "id_car_serie": 50447, + "name": "C 320 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213754, + "fields": { + "id_car_serie": 50447, + "name": "C 320 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213755, + "fields": { + "id_car_serie": 50448, + "name": "C 43 AMG AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213756, + "fields": { + "id_car_serie": 50449, + "name": "C 180 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213757, + "fields": { + "id_car_serie": 50449, + "name": "C 180 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213758, + "fields": { + "id_car_serie": 50449, + "name": "C 200 Kompressor AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213759, + "fields": { + "id_car_serie": 50449, + "name": "C 200 Diesel AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213760, + "fields": { + "id_car_serie": 50449, + "name": "C 200 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213761, + "fields": { + "id_car_serie": 50449, + "name": "C 200 Kompressor MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213762, + "fields": { + "id_car_serie": 50449, + "name": "C 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213763, + "fields": { + "id_car_serie": 50449, + "name": "C 200 Diesel MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213764, + "fields": { + "id_car_serie": 50449, + "name": "C 220 CDI AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213765, + "fields": { + "id_car_serie": 50449, + "name": "C 220 Diesel AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213766, + "fields": { + "id_car_serie": 50449, + "name": "C 200 CDI AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213767, + "fields": { + "id_car_serie": 50449, + "name": "C 220 CDI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213768, + "fields": { + "id_car_serie": 50449, + "name": "C 200 CDI MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213769, + "fields": { + "id_car_serie": 50449, + "name": "C 220 Diesel MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213770, + "fields": { + "id_car_serie": 50449, + "name": "C 230 Kompressor MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213771, + "fields": { + "id_car_serie": 50449, + "name": "C 240 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213772, + "fields": { + "id_car_serie": 50449, + "name": "C 240 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213773, + "fields": { + "id_car_serie": 50449, + "name": "C 250 Turbodiesel AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213774, + "fields": { + "id_car_serie": 50449, + "name": "C 250 Turbodiesel MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213775, + "fields": { + "id_car_serie": 50449, + "name": "C 280 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213776, + "fields": { + "id_car_serie": 50449, + "name": "C 280 MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213777, + "fields": { + "id_car_serie": 50450, + "name": "C 43 AMG AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213778, + "fields": { + "id_car_serie": 50451, + "name": "C 180 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213779, + "fields": { + "id_car_serie": 50451, + "name": "C 180 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213780, + "fields": { + "id_car_serie": 50451, + "name": "C 200 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213781, + "fields": { + "id_car_serie": 50451, + "name": "C 200 Kompressor AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213782, + "fields": { + "id_car_serie": 50451, + "name": "C 200 Kompressor AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213783, + "fields": { + "id_car_serie": 50451, + "name": "C 200 Diesel AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213784, + "fields": { + "id_car_serie": 50451, + "name": "C 180 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213785, + "fields": { + "id_car_serie": 50451, + "name": "C 200 Kompressor MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213786, + "fields": { + "id_car_serie": 50451, + "name": "C 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213787, + "fields": { + "id_car_serie": 50451, + "name": "C 200 Kompressor MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213788, + "fields": { + "id_car_serie": 50451, + "name": "C 180 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213789, + "fields": { + "id_car_serie": 50451, + "name": "C 200 Diesel MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213790, + "fields": { + "id_car_serie": 50451, + "name": "C 220 Diesel AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213791, + "fields": { + "id_car_serie": 50451, + "name": "C 220 CDI AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213792, + "fields": { + "id_car_serie": 50451, + "name": "C 200 CDI AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213793, + "fields": { + "id_car_serie": 50451, + "name": "C 220 Diesel MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213794, + "fields": { + "id_car_serie": 50451, + "name": "C 200 CDI MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213795, + "fields": { + "id_car_serie": 50451, + "name": "C 220 CDI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213796, + "fields": { + "id_car_serie": 50451, + "name": "C 230 Kompressor AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213797, + "fields": { + "id_car_serie": 50451, + "name": "C 230 Kompressor MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213798, + "fields": { + "id_car_serie": 50451, + "name": "C 240 AT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213799, + "fields": { + "id_car_serie": 50451, + "name": "C 240 MT (170 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213800, + "fields": { + "id_car_serie": 50451, + "name": "C 250 Turbodiesel AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213801, + "fields": { + "id_car_serie": 50451, + "name": "C 250 Turbodiesel MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213804, + "fields": { + "id_car_serie": 50451, + "name": "C 280 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213805, + "fields": { + "id_car_serie": 50451, + "name": "C 280 5MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213806, + "fields": { + "id_car_serie": 50451, + "name": "C 280 6MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213807, + "fields": { + "id_car_serie": 46890, + "name": "C 180 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 1993, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213809, + "fields": { + "id_car_serie": 46890, + "name": "C 180 MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213811, + "fields": { + "id_car_serie": 46890, + "name": "C 200 Diesel AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213812, + "fields": { + "id_car_serie": 46890, + "name": "C 200 Diesel AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213813, + "fields": { + "id_car_serie": 46890, + "name": "C 200 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213815, + "fields": { + "id_car_serie": 46890, + "name": "C 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213816, + "fields": { + "id_car_serie": 46890, + "name": "C 200 Diesel MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213817, + "fields": { + "id_car_serie": 46890, + "name": "C 200 Diesel MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213819, + "fields": { + "id_car_serie": 46890, + "name": "C 200 Kompressor MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213820, + "fields": { + "id_car_serie": 46890, + "name": "C 200 Kompressor MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213821, + "fields": { + "id_car_serie": 46890, + "name": "C 220 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213822, + "fields": { + "id_car_serie": 46890, + "name": "C 220 Diesel 5AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213823, + "fields": { + "id_car_serie": 46890, + "name": "C 220 Diesel 4AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213824, + "fields": { + "id_car_serie": 46890, + "name": "C 220 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213825, + "fields": { + "id_car_serie": 46890, + "name": "C 220 Diesel MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213826, + "fields": { + "id_car_serie": 46890, + "name": "C 230 Kompressor AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213827, + "fields": { + "id_car_serie": 46890, + "name": "C 230 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213828, + "fields": { + "id_car_serie": 46890, + "name": "C 230 Kompressor MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213829, + "fields": { + "id_car_serie": 46890, + "name": "C 230 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213830, + "fields": { + "id_car_serie": 46890, + "name": "C 250 Turbodiesel 5AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213831, + "fields": { + "id_car_serie": 46890, + "name": "C 250 Diesel AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213832, + "fields": { + "id_car_serie": 46890, + "name": "C 250 Turbodiesel 4AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213833, + "fields": { + "id_car_serie": 46890, + "name": "C 250 Diesel MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213834, + "fields": { + "id_car_serie": 46890, + "name": "C 250 Turbodiesel MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213835, + "fields": { + "id_car_serie": 46890, + "name": "C 280 5AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213836, + "fields": { + "id_car_serie": 46890, + "name": "C 280 4AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213837, + "fields": { + "id_car_serie": 46890, + "name": "C 280 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213838, + "fields": { + "id_car_serie": 50453, + "name": "C 36 AMG 4AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213839, + "fields": { + "id_car_serie": 50453, + "name": "C 36 AMG 5AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213840, + "fields": { + "id_car_serie": 50454, + "name": "C 180 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213841, + "fields": { + "id_car_serie": 50454, + "name": "C 180 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213842, + "fields": { + "id_car_serie": 50454, + "name": "C 200 Diesel AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213843, + "fields": { + "id_car_serie": 50454, + "name": "C 200 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213844, + "fields": { + "id_car_serie": 50454, + "name": "C 200 Kompressor MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213845, + "fields": { + "id_car_serie": 50454, + "name": "C 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213846, + "fields": { + "id_car_serie": 50454, + "name": "C 200 Diesel MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213847, + "fields": { + "id_car_serie": 50454, + "name": "C 220 Diesel AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213848, + "fields": { + "id_car_serie": 50454, + "name": "C 220 Diesel MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213849, + "fields": { + "id_car_serie": 50454, + "name": "C 230 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213850, + "fields": { + "id_car_serie": 50454, + "name": "C 230 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213851, + "fields": { + "id_car_serie": 50454, + "name": "C 250 Turbodiesel AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213852, + "fields": { + "id_car_serie": 50454, + "name": "C 250 Turbodiesel MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213853, + "fields": { + "id_car_serie": 50455, + "name": "190 E 2.5-16 Evolution II MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213854, + "fields": { + "id_car_serie": 50456, + "name": "190 E 1.8 Kat AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213855, + "fields": { + "id_car_serie": 50456, + "name": "190 E 1.8 AT (109 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213857, + "fields": { + "id_car_serie": 50456, + "name": "190 E 1.8 5MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213858, + "fields": { + "id_car_serie": 50456, + "name": "190 E 1.8 Kat 5MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213860, + "fields": { + "id_car_serie": 50456, + "name": "190 E 1.8 Kat 4MT (109 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213861, + "fields": { + "id_car_serie": 50456, + "name": "190 E 1.8 4MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213864, + "fields": { + "id_car_serie": 50456, + "name": "190 2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213865, + "fields": { + "id_car_serie": 50456, + "name": "190 Kat 2.0 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213866, + "fields": { + "id_car_serie": 50456, + "name": "190 Kat 2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213867, + "fields": { + "id_car_serie": 50456, + "name": "190 E 2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213868, + "fields": { + "id_car_serie": 50456, + "name": "190 D 2.0 AT (75 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213871, + "fields": { + "id_car_serie": 50456, + "name": "190 E 2.0 Kat AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213872, + "fields": { + "id_car_serie": 50456, + "name": "190 E Kat 2.0 AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213873, + "fields": { + "id_car_serie": 50456, + "name": "190 D 2.0 AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213874, + "fields": { + "id_car_serie": 50456, + "name": "190 E Kat 2.0 5MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213875, + "fields": { + "id_car_serie": 50456, + "name": "190 E Kat 2.0 4MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213876, + "fields": { + "id_car_serie": 50456, + "name": "190 E 2.0 4MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213877, + "fields": { + "id_car_serie": 50456, + "name": "190 Kat 2.0 4MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213878, + "fields": { + "id_car_serie": 50456, + "name": "190 D 2.0 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213879, + "fields": { + "id_car_serie": 50456, + "name": "190 D 2.0 4MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213880, + "fields": { + "id_car_serie": 50456, + "name": "190 D 2.0 5MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213881, + "fields": { + "id_car_serie": 50456, + "name": "190 D 2.0 4MT (75 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213882, + "fields": { + "id_car_serie": 50456, + "name": "190 Kat 2.0 5MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213883, + "fields": { + "id_car_serie": 50456, + "name": "190 Kat 2.0 4MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213884, + "fields": { + "id_car_serie": 50456, + "name": "190 Kat 2.0 5MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213885, + "fields": { + "id_car_serie": 50456, + "name": "190 2.0 5MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213886, + "fields": { + "id_car_serie": 50456, + "name": "190 E 2.0 5MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213891, + "fields": { + "id_car_serie": 50456, + "name": "190 2.0 4MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213893, + "fields": { + "id_car_serie": 50456, + "name": "190 E 2.0 Kat 4MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213894, + "fields": { + "id_car_serie": 50456, + "name": "190 E 2.0 Kat 5MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213895, + "fields": { + "id_car_serie": 50456, + "name": "190 E 2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213896, + "fields": { + "id_car_serie": 50456, + "name": "190 E 2.3 AT (136 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213898, + "fields": { + "id_car_serie": 50456, + "name": "190 E 2.3 Kat AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213899, + "fields": { + "id_car_serie": 50456, + "name": "190 E 2.3 Kat AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213900, + "fields": { + "id_car_serie": 50456, + "name": "190 E 2.3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213902, + "fields": { + "id_car_serie": 50456, + "name": "190 E 2.3 Kat MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213903, + "fields": { + "id_car_serie": 50456, + "name": "190 E 2.3 Kat MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213906, + "fields": { + "id_car_serie": 50456, + "name": "190 D 2.5 Turbo AT (126 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213907, + "fields": { + "id_car_serie": 50456, + "name": "190 D 2.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213908, + "fields": { + "id_car_serie": 50456, + "name": "190 D 2.5 Turbo AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213909, + "fields": { + "id_car_serie": 50456, + "name": "190 D 2.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213913, + "fields": { + "id_car_serie": 50456, + "name": "190 D 2.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213914, + "fields": { + "id_car_serie": 50456, + "name": "190 D 2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213915, + "fields": { + "id_car_serie": 50456, + "name": "190 D 2.5 Turbo MT (126 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213919, + "fields": { + "id_car_serie": 50456, + "name": "190 E 2.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213920, + "fields": { + "id_car_serie": 50456, + "name": "190 E 2.6 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213921, + "fields": { + "id_car_serie": 50456, + "name": "190 E 2.6 Kat AT (160 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213923, + "fields": { + "id_car_serie": 50456, + "name": "190 E 2.6 MT (166 hp)", + "arabic_name": "-", + "start_production_year": 1989, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213924, + "fields": { + "id_car_serie": 50456, + "name": "190 E 2.6 Kat MT (160 hp)", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213928, + "fields": { + "id_car_serie": 50456, + "name": "190 E 2.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213929, + "fields": { + "id_car_serie": 50457, + "name": "190 E 2.5-16 Evolution Kat MT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213930, + "fields": { + "id_car_serie": 50457, + "name": "190 E 2.5-16 Evolution MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213931, + "fields": { + "id_car_serie": 50458, + "name": "190 E 2.5-16 Kat AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213932, + "fields": { + "id_car_serie": 50458, + "name": "190 E 2.5-16 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213933, + "fields": { + "id_car_serie": 50458, + "name": "190 E 2.5-16 Kat MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213934, + "fields": { + "id_car_serie": 50458, + "name": "190 E 2.5-16 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213935, + "fields": { + "id_car_serie": 50459, + "name": "190 E Kat 2.0 AT (118 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213936, + "fields": { + "id_car_serie": 50459, + "name": "190 2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213937, + "fields": { + "id_car_serie": 50459, + "name": "190 E 2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213942, + "fields": { + "id_car_serie": 50459, + "name": "190 D 2.0 AT (72 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213943, + "fields": { + "id_car_serie": 50459, + "name": "190 2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213945, + "fields": { + "id_car_serie": 50459, + "name": "190 Kat 2.0 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213948, + "fields": { + "id_car_serie": 50459, + "name": "190 E Kat 2.0 5MT (118 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213949, + "fields": { + "id_car_serie": 50459, + "name": "190 E Kat 2.0 4MT (118 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213951, + "fields": { + "id_car_serie": 50459, + "name": "190 E 2.0 4MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213952, + "fields": { + "id_car_serie": 50459, + "name": "190 E 2.0 5MT (122 hp)", + "arabic_name": "-", + "start_production_year": 1982, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213955, + "fields": { + "id_car_serie": 50459, + "name": "190 2.0 4MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213956, + "fields": { + "id_car_serie": 50459, + "name": "190 2.0 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213959, + "fields": { + "id_car_serie": 50459, + "name": "190 D 2.0 4MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213960, + "fields": { + "id_car_serie": 50459, + "name": "190 D 2.0 5MT (72 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213962, + "fields": { + "id_car_serie": 50459, + "name": "190 2.0 5MT (105 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213963, + "fields": { + "id_car_serie": 50459, + "name": "190 2.0 4MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213972, + "fields": { + "id_car_serie": 50459, + "name": "190 Kat 2.0 4MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213973, + "fields": { + "id_car_serie": 50459, + "name": "190 Kat 2.0 5MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213974, + "fields": { + "id_car_serie": 50459, + "name": "190 E 2.3 Kat AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213975, + "fields": { + "id_car_serie": 50459, + "name": "190 E 2.3 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213976, + "fields": { + "id_car_serie": 50459, + "name": "190 E 2.3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213977, + "fields": { + "id_car_serie": 50459, + "name": "190 E 2.3 Kat MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213978, + "fields": { + "id_car_serie": 50459, + "name": "190 D 2.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213980, + "fields": { + "id_car_serie": 50459, + "name": "190 D 2.5 Turbo AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213981, + "fields": { + "id_car_serie": 50459, + "name": "190 D 2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213983, + "fields": { + "id_car_serie": 50459, + "name": "190 E 2.6 Kat AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213984, + "fields": { + "id_car_serie": 50459, + "name": "190 E 2.6 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213985, + "fields": { + "id_car_serie": 50459, + "name": "190 E 2.6 MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213986, + "fields": { + "id_car_serie": 50459, + "name": "190 E 2.6 Kat MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213987, + "fields": { + "id_car_serie": 50460, + "name": "190 E 2.3-16 Kat AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213988, + "fields": { + "id_car_serie": 50460, + "name": "190 E 2.3-16 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213989, + "fields": { + "id_car_serie": 50460, + "name": "190 E 2.3-16 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213990, + "fields": { + "id_car_serie": 50460, + "name": "190 E 2.3-16 MT (185 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213991, + "fields": { + "id_car_serie": 50460, + "name": "190 E 2.3-16 Kat MT (170 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213992, + "fields": { + "id_car_serie": 50460, + "name": "190 E 2.3-16 MT (177 hp)", + "arabic_name": "-", + "start_production_year": 1985, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213996, + "fields": { + "id_car_serie": 50461, + "name": "E 200 7G-Tronic Plus (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213997, + "fields": { + "id_car_serie": 50461, + "name": "E 250 7G-Tronic Plus (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213998, + "fields": { + "id_car_serie": 50461, + "name": "E 200 T MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 213999, + "fields": { + "id_car_serie": 50461, + "name": "E 220 CDI 7G-Tronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214000, + "fields": { + "id_car_serie": 50461, + "name": "E 250 CDI 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214001, + "fields": { + "id_car_serie": 50461, + "name": "E 220 CDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214002, + "fields": { + "id_car_serie": 50461, + "name": "E 250 CDI MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214003, + "fields": { + "id_car_serie": 50461, + "name": "E 350 CDI BlueTec 7G-Tronic Plus (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214004, + "fields": { + "id_car_serie": 50461, + "name": "E 400 Bi-turbo 7G-Tronic Plus (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214005, + "fields": { + "id_car_serie": 50461, + "name": "E 300 7G-Tronic Plus (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214006, + "fields": { + "id_car_serie": 50461, + "name": "E 350 7G-Tronic Plus 4Matic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214007, + "fields": { + "id_car_serie": 50461, + "name": "E 300 7G-Tronic Plus (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214008, + "fields": { + "id_car_serie": 50461, + "name": "E 350 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214009, + "fields": { + "id_car_serie": 50461, + "name": "E 500 Bi-turbo 7G-Tronic Plus (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214010, + "fields": { + "id_car_serie": 50462, + "name": "E 200 T 7G-Tronic Plus (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214011, + "fields": { + "id_car_serie": 50462, + "name": "E 200 T MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214012, + "fields": { + "id_car_serie": 50462, + "name": "E 250 7G-Tronic Plus (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214013, + "fields": { + "id_car_serie": 50462, + "name": "E 220 CDI 7G-Tronic Plus (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214014, + "fields": { + "id_car_serie": 50462, + "name": "E 250 CDI 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214015, + "fields": { + "id_car_serie": 50462, + "name": "E 250 CDI MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214016, + "fields": { + "id_car_serie": 50462, + "name": "E 220 CDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214017, + "fields": { + "id_car_serie": 50462, + "name": "E 350 CDI BlueTec 7G-Tronic Plus (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214018, + "fields": { + "id_car_serie": 50462, + "name": "E 400 Bi-turbo 7G-Tronic Plus (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214019, + "fields": { + "id_car_serie": 50462, + "name": "E 300 7G-Tronic Plus (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214020, + "fields": { + "id_car_serie": 50462, + "name": "E 350 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214021, + "fields": { + "id_car_serie": 50462, + "name": "E 500 Bi-turbo 7G-Tronic Plus (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214022, + "fields": { + "id_car_serie": 50463, + "name": "E 63 AMG SpeedShift (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214023, + "fields": { + "id_car_serie": 50463, + "name": "E 63 AMG SpeedShift MCT 4Matic (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214024, + "fields": { + "id_car_serie": 50463, + "name": "E 63 AMG SpeedShift MCT S-Modell 4Matic (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214025, + "fields": { + "id_car_serie": 50464, + "name": "E 250 T 7G-Tronic Plus (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214026, + "fields": { + "id_car_serie": 50464, + "name": "E 200 7G-Tronic Plus (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214027, + "fields": { + "id_car_serie": 50464, + "name": "E 200 T MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214028, + "fields": { + "id_car_serie": 50464, + "name": "E 300 CDI Hybrid BlueTec 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214029, + "fields": { + "id_car_serie": 50464, + "name": "E 200 CDI 7G-Tronic Plus (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214030, + "fields": { + "id_car_serie": 50464, + "name": "E 220 CDI 7G-Tronic Plus (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214031, + "fields": { + "id_car_serie": 50464, + "name": "E 250 CDI 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214032, + "fields": { + "id_car_serie": 50464, + "name": "E 250 CDI 7G-Tronic Plus 4Matic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214033, + "fields": { + "id_car_serie": 50464, + "name": "E 200 CDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214034, + "fields": { + "id_car_serie": 50464, + "name": "E 250 CDI MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214035, + "fields": { + "id_car_serie": 50464, + "name": "E 220 CDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214036, + "fields": { + "id_car_serie": 50464, + "name": "E 300 CDI BlueTec 7G-Tronic Plus (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214037, + "fields": { + "id_car_serie": 50464, + "name": "E 350 CDI BlueTec 4Matic 7G-Tronic Plus (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214038, + "fields": { + "id_car_serie": 50464, + "name": "E 350 CDI BlueTec 7G-Tronic Plus (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214039, + "fields": { + "id_car_serie": 50464, + "name": "E 350 CDI BlueTec 9G-Tronic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214040, + "fields": { + "id_car_serie": 50464, + "name": "E 400 Bi-turbo 7G-Tronic Plus (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214041, + "fields": { + "id_car_serie": 50464, + "name": "E 400 Bi-turbo 4Matic 7G-Tronic Plus (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214042, + "fields": { + "id_car_serie": 50464, + "name": "E 300 4Matic 7G-Tronic Plus (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214043, + "fields": { + "id_car_serie": 50464, + "name": "E 300 7G-Tronic Plus (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214044, + "fields": { + "id_car_serie": 50464, + "name": "E 350 4Matic 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214045, + "fields": { + "id_car_serie": 50464, + "name": "E 350 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214046, + "fields": { + "id_car_serie": 50464, + "name": "E 500 Bi-turbo 4Matic 7G-Tronic Plus (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214047, + "fields": { + "id_car_serie": 50464, + "name": "E 500 Bi-turbo 7G-Tronic Plus (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214048, + "fields": { + "id_car_serie": 50465, + "name": "E 63 AMG 4Matic SpeedShift (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214049, + "fields": { + "id_car_serie": 50465, + "name": "E 63 AMG 4Matic S-Modell SpeedShift (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214050, + "fields": { + "id_car_serie": 50466, + "name": "E 200 NGT 7G-Tronic Plus (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214051, + "fields": { + "id_car_serie": 50466, + "name": "E 200 7G-Tronic Plus (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214052, + "fields": { + "id_car_serie": 50466, + "name": "E 250 7G-Tronic Plus (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214053, + "fields": { + "id_car_serie": 50466, + "name": "E 200 T MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214054, + "fields": { + "id_car_serie": 50466, + "name": "E 220 CDI 7G-Tronic Plus (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214055, + "fields": { + "id_car_serie": 50466, + "name": "E 250 CDI 7G-Tronic Plus 4Matic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214056, + "fields": { + "id_car_serie": 50466, + "name": "E 200 CDI 7G-Tronic Plus (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214057, + "fields": { + "id_car_serie": 50466, + "name": "E 220 CDI BlueTec BlueEfficiency Edition 7G-Tronic Plus (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214058, + "fields": { + "id_car_serie": 50466, + "name": "E 250 CDI 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214059, + "fields": { + "id_car_serie": 50466, + "name": "E 220 CDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214060, + "fields": { + "id_car_serie": 50466, + "name": "E 200 CDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214061, + "fields": { + "id_car_serie": 50466, + "name": "E 250 CDI MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214062, + "fields": { + "id_car_serie": 50466, + "name": "E 400 4Matic 7G-Tronic Plus (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214063, + "fields": { + "id_car_serie": 50466, + "name": "E 400 Bi-Turbo 7G-Tronic Plus (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214064, + "fields": { + "id_car_serie": 50466, + "name": "E 300 CDI BlueTec 7G-Tronic Plus (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214065, + "fields": { + "id_car_serie": 50466, + "name": "E 300 CDI Hybrid BlueTec 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214066, + "fields": { + "id_car_serie": 50466, + "name": "E 350 CDI BlueTec 7G-Tronic Plus (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214067, + "fields": { + "id_car_serie": 50466, + "name": "E 350 CDI BlueTec 9G-Tronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214068, + "fields": { + "id_car_serie": 50466, + "name": "E 350 CDI BlueTec 4Matic 7G-Tronic Plus (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214069, + "fields": { + "id_car_serie": 50466, + "name": "E 350 4Matic 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214070, + "fields": { + "id_car_serie": 50466, + "name": "E 300 7G-Tronic Plus (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214071, + "fields": { + "id_car_serie": 50466, + "name": "E 300 7G-Tronic Plus 4Matic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214072, + "fields": { + "id_car_serie": 50466, + "name": "E 350 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214073, + "fields": { + "id_car_serie": 50466, + "name": "E 500 Bi-turbo 7G-Tronic Plus (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214074, + "fields": { + "id_car_serie": 50466, + "name": "E 500 4Matic 7G-Tronic Plus (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214075, + "fields": { + "id_car_serie": 50467, + "name": "E 63 AMG Speedshift MCT (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214076, + "fields": { + "id_car_serie": 50468, + "name": "E 200 CGI BlueEfficiency AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214077, + "fields": { + "id_car_serie": 50468, + "name": "E 250 T BlueEfficiency 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214078, + "fields": { + "id_car_serie": 50468, + "name": "E 250 CGI BlueEfficiency AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214079, + "fields": { + "id_car_serie": 50468, + "name": "E 200 T BlueEfficiency 7G-Tronic Plus (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214080, + "fields": { + "id_car_serie": 50468, + "name": "E 200 CGI BlueEfficiency MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214081, + "fields": { + "id_car_serie": 50468, + "name": "E 200 T BlueEfficiency MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214082, + "fields": { + "id_car_serie": 50468, + "name": "E 220 CDI BlueEfficiency 7G-Tronic Plus (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214083, + "fields": { + "id_car_serie": 50468, + "name": "E 250 CDI BlueEfficiency 4MATIC 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214084, + "fields": { + "id_car_serie": 50468, + "name": "E 200 CDI BlueEfficiency 7G-Tronic Plus (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214085, + "fields": { + "id_car_serie": 50468, + "name": "E 220 CDI BlueEfficiency AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214086, + "fields": { + "id_car_serie": 50468, + "name": "E 250 CDI BlueEfficiency AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214087, + "fields": { + "id_car_serie": 50468, + "name": "E 250 CDI BlueEfficiency 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214088, + "fields": { + "id_car_serie": 50468, + "name": "E 200 CDI BlueEfficiency AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214089, + "fields": { + "id_car_serie": 50468, + "name": "E 300 CDI Hybrid BlueTec 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214090, + "fields": { + "id_car_serie": 50468, + "name": "E 200 CDI BlueEfficiency MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214091, + "fields": { + "id_car_serie": 50468, + "name": "E 250 CDI BlueEfficiency MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214092, + "fields": { + "id_car_serie": 50468, + "name": "E 220 CDI BlueEfficiency MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214093, + "fields": { + "id_car_serie": 50468, + "name": "E 350 CDI BlueEfficiency 4MATIC 7G-Tronic Plus (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214094, + "fields": { + "id_car_serie": 50468, + "name": "E 300 CDI BlueEfficiency 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214095, + "fields": { + "id_car_serie": 50468, + "name": "E 350 CDI BlueEfficiency 7G-Tronic Plus (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214096, + "fields": { + "id_car_serie": 50468, + "name": "E 350 CDI BlueTec 7G-Tronic Plus (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214097, + "fields": { + "id_car_serie": 50468, + "name": "E 350 CDI BlueEfficiency 4MATIC 7G-Tronic Plus (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214098, + "fields": { + "id_car_serie": 50468, + "name": "E 350 CDI BlueEfficiency 7G-Tronic Plus (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214099, + "fields": { + "id_car_serie": 50468, + "name": "E 300 CDI BlueEfficiency 7G-Tronic Plus (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214100, + "fields": { + "id_car_serie": 50468, + "name": "E 350 BlueEfficiency 4MATIC 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214101, + "fields": { + "id_car_serie": 50468, + "name": "E 300 BlueEfficiency 7G-Tronic Plus (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214102, + "fields": { + "id_car_serie": 50468, + "name": "E 350 BlueEfficiency 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214103, + "fields": { + "id_car_serie": 50468, + "name": "E 300 BlueEfficiency 4MATIC 7G-Tronic Plus (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214104, + "fields": { + "id_car_serie": 50468, + "name": "E 350 4MATIC 7G-Tronic Plus (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214105, + "fields": { + "id_car_serie": 50468, + "name": "E 350 CGI BlueEfficiency 7G-Tronic Plus (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214106, + "fields": { + "id_car_serie": 50468, + "name": "E 500 T BlueEfficiency 4MATIC 7G-Tronic Plus (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214107, + "fields": { + "id_car_serie": 50468, + "name": "E 500 T BlueEfficiency 7G-Tronic Plus (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214108, + "fields": { + "id_car_serie": 50468, + "name": "E 500 7G-Tronic Plus (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214109, + "fields": { + "id_car_serie": 50469, + "name": "E 200 T BlueEfficiency 7G-Tronic Plus (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214110, + "fields": { + "id_car_serie": 50469, + "name": "E 250 T BlueEfficiency 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214111, + "fields": { + "id_car_serie": 50469, + "name": "E 250 T CGI BlueEfficiency 5G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214112, + "fields": { + "id_car_serie": 50469, + "name": "E 200 T NGT 5G-Tronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214113, + "fields": { + "id_car_serie": 50469, + "name": "E 200 T CGI BlueEfficiency 5G-Tronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214114, + "fields": { + "id_car_serie": 50469, + "name": "E 200 T CGI BlueEfficiency MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214115, + "fields": { + "id_car_serie": 50469, + "name": "E 200 T BlueEfficiency MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214116, + "fields": { + "id_car_serie": 50469, + "name": "E 250 CDI BlueEfficiency 5G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214117, + "fields": { + "id_car_serie": 50469, + "name": "E 220 CDI BlueEfficiency 5G-Tronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214118, + "fields": { + "id_car_serie": 50469, + "name": "E 200 CDI BlueEfficiency 5G-Tronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214119, + "fields": { + "id_car_serie": 50469, + "name": "E 300 CDI Hybrid BlueTec 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214120, + "fields": { + "id_car_serie": 50469, + "name": "E 200 CDI BlueEfficiency 7G-Tronic Plus (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214121, + "fields": { + "id_car_serie": 50469, + "name": "E 250 CDI BlueEfficiency 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214122, + "fields": { + "id_car_serie": 50469, + "name": "E 220 CDI BlueEfficiency 7G-Tronic Plus (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214123, + "fields": { + "id_car_serie": 50469, + "name": "E 250 CDI BlueEfficiency 4MATIC 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214124, + "fields": { + "id_car_serie": 50469, + "name": "E 200 CDI BlueEfficiency MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214125, + "fields": { + "id_car_serie": 50469, + "name": "E 220 CDI BlueEfficiency MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214126, + "fields": { + "id_car_serie": 50469, + "name": "E 250 CDI BlueEfficiency MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214127, + "fields": { + "id_car_serie": 50469, + "name": "E 350 CDI BlueEfficiency 4MATIC 7G-Tronic Plus (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214128, + "fields": { + "id_car_serie": 50469, + "name": "E 350 CDI BlueTec 7G-Tronic Plus (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214129, + "fields": { + "id_car_serie": 50469, + "name": "E 350 CDI BlueEfficiency 4MATIC 7G-Tronic Plus (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214130, + "fields": { + "id_car_serie": 50469, + "name": "E 300 CDI BlueEfficiency 7G-Tronic Plus (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214131, + "fields": { + "id_car_serie": 50469, + "name": "E 350 CDI BlueEfficiency 7G-Tronic Plus (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214132, + "fields": { + "id_car_serie": 50469, + "name": "E 300 CDI BlueEfficiency 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214133, + "fields": { + "id_car_serie": 50469, + "name": "E 350 CDI BlueEfficiency 7G-Tronic Plus (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214134, + "fields": { + "id_car_serie": 50469, + "name": "E 350 BlueEfficiency 4MATIC 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214135, + "fields": { + "id_car_serie": 50469, + "name": "E 350 4MATIC 7G-Tronic Plus (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214136, + "fields": { + "id_car_serie": 50469, + "name": "E 300 BlueEfficiency 4MATIC 7G-Tronic Plus (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214137, + "fields": { + "id_car_serie": 50469, + "name": "E 300 BlueEfficiency 7G-Tronic Plus (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214138, + "fields": { + "id_car_serie": 50469, + "name": "E 350 BlueEfficiency 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214139, + "fields": { + "id_car_serie": 50469, + "name": "E 350 CGI BlueEfficiency 7G-Tronic Plus (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214140, + "fields": { + "id_car_serie": 50469, + "name": "E 500 T BlueEfficiency 7G-Tronic Plus (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214141, + "fields": { + "id_car_serie": 50469, + "name": "E 500 T BlueEfficiency 4MATIC 7G-Tronic Plus (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214142, + "fields": { + "id_car_serie": 50469, + "name": "E 500 4MATIC 7G-Tronic Plus (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214143, + "fields": { + "id_car_serie": 50469, + "name": "E 500 7G-Tronic Plus (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214144, + "fields": { + "id_car_serie": 50470, + "name": "E 200 T BlueEfficiency 7G-Tronic Plus (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214145, + "fields": { + "id_car_serie": 50470, + "name": "E 250 T BlueEfficiency 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214146, + "fields": { + "id_car_serie": 50470, + "name": "E 200 CGI BlueEfficiency AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214147, + "fields": { + "id_car_serie": 50470, + "name": "E 250 CGI BlueEfficiency AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214148, + "fields": { + "id_car_serie": 50470, + "name": "E 200 CGI BlueEfficiency MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214149, + "fields": { + "id_car_serie": 50470, + "name": "E 200 T BlueEfficiency MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214150, + "fields": { + "id_car_serie": 50470, + "name": "E 220 CDI BlueEfficiency 7G-Tronic Plus (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214151, + "fields": { + "id_car_serie": 50470, + "name": "E 220 CDI BlueEfficiency AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214152, + "fields": { + "id_car_serie": 50470, + "name": "E 250 CDI BlueEfficiency AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214153, + "fields": { + "id_car_serie": 50470, + "name": "E 250 CDI BlueEfficiency 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214154, + "fields": { + "id_car_serie": 50470, + "name": "E 250 CDI BlueEfficiency MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214155, + "fields": { + "id_car_serie": 50470, + "name": "E 220 CDI BlueEfficiency MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214156, + "fields": { + "id_car_serie": 50470, + "name": "E 350 CDI BlueEfficiency 7G-Tronic Plus (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214157, + "fields": { + "id_car_serie": 50470, + "name": "E 350 BlueEfficiency 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214158, + "fields": { + "id_car_serie": 50470, + "name": "E 350 CGI BlueEfficiency 7G-Tronic Plus (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214159, + "fields": { + "id_car_serie": 50470, + "name": "E 300 BlueEfficiency 7G-Tronic Plus (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214160, + "fields": { + "id_car_serie": 50470, + "name": "E 500 T BlueEfficiency 7G-Tronic Plus (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214161, + "fields": { + "id_car_serie": 50470, + "name": "E 500 7G-Tronic Plus (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214162, + "fields": { + "id_car_serie": 50471, + "name": "E 63 AMG Bi-turbo Speedshift MCT (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214163, + "fields": { + "id_car_serie": 50471, + "name": "E 63 AMG Speedshift MCT (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214164, + "fields": { + "id_car_serie": 50472, + "name": "E 200 T BlueEfficiency 7G-Tronic Plus (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214165, + "fields": { + "id_car_serie": 50472, + "name": "E 250 CGI BlueEfficiency AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214166, + "fields": { + "id_car_serie": 50472, + "name": "E 200 CGI BlueEfficiency AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214167, + "fields": { + "id_car_serie": 50472, + "name": "E 250 T BlueEfficiency 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214168, + "fields": { + "id_car_serie": 50472, + "name": "E 200 CGI BlueEfficiency MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214169, + "fields": { + "id_car_serie": 50472, + "name": "E 200 T BlueEfficiency MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214170, + "fields": { + "id_car_serie": 50472, + "name": "E 220 CDI BlueEfficiency 7G-Tronic Plus (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214171, + "fields": { + "id_car_serie": 50472, + "name": "E 250 CDI BlueEfficiency 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214172, + "fields": { + "id_car_serie": 50472, + "name": "E 220 CDI BlueEfficiency AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214173, + "fields": { + "id_car_serie": 50472, + "name": "E 250 CDI BlueEfficiency AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214174, + "fields": { + "id_car_serie": 50472, + "name": "E 250 CDI BlueEfficiency MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214175, + "fields": { + "id_car_serie": 50472, + "name": "E 220 CDI BlueEfficiency MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214176, + "fields": { + "id_car_serie": 50472, + "name": "E 350 CDI BlueEfficiency 7G-Tronic Plus (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214177, + "fields": { + "id_car_serie": 50472, + "name": "E 350 BlueEfficiency 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214178, + "fields": { + "id_car_serie": 50472, + "name": "E 350 CGI BlueEfficiency 7G-Tronic Plus (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214179, + "fields": { + "id_car_serie": 50472, + "name": "E 300 BlueEfficiency 7G-Tronic Plus (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214180, + "fields": { + "id_car_serie": 50472, + "name": "E 500 T BlueEfficiency 7G-Tronic Plus (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214181, + "fields": { + "id_car_serie": 50472, + "name": "E 500 7G-Tronic Plus (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214182, + "fields": { + "id_car_serie": 50473, + "name": "E 200 NGT AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214183, + "fields": { + "id_car_serie": 50473, + "name": "E 200 Kompressor AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214184, + "fields": { + "id_car_serie": 50473, + "name": "E 200 Kompressor MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214185, + "fields": { + "id_car_serie": 50473, + "name": "E 220 CDI AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214186, + "fields": { + "id_car_serie": 50473, + "name": "E 200 CDI AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214187, + "fields": { + "id_car_serie": 50473, + "name": "E 220 CDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214188, + "fields": { + "id_car_serie": 50473, + "name": "E 200 CDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214189, + "fields": { + "id_car_serie": 50473, + "name": "E 230 7G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214190, + "fields": { + "id_car_serie": 50473, + "name": "E 500 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214191, + "fields": { + "id_car_serie": 50473, + "name": "E 230 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214192, + "fields": { + "id_car_serie": 50473, + "name": "320 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214193, + "fields": { + "id_car_serie": 50473, + "name": "E 280 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214194, + "fields": { + "id_car_serie": 50473, + "name": "E 280 CDI 4MATIC AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214195, + "fields": { + "id_car_serie": 50473, + "name": "E 300 Bluetec 7G-Tronic (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214196, + "fields": { + "id_car_serie": 50473, + "name": "E 280 CDI 7G-Tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214197, + "fields": { + "id_car_serie": 50473, + "name": "320 CDI 4MATIC AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214198, + "fields": { + "id_car_serie": 50473, + "name": "E 280 4MATIC AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214199, + "fields": { + "id_car_serie": 50473, + "name": "E 280 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214200, + "fields": { + "id_car_serie": 50473, + "name": "E 280 CDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214201, + "fields": { + "id_car_serie": 50473, + "name": "E 350 4MATIC AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214202, + "fields": { + "id_car_serie": 50473, + "name": "E 350 CGI 7G-Tronic (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214203, + "fields": { + "id_car_serie": 50473, + "name": "E 350 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214204, + "fields": { + "id_car_serie": 50473, + "name": "420 CDI 7G-Tronic (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214205, + "fields": { + "id_car_serie": 50473, + "name": "E 500 4MATIC 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214206, + "fields": { + "id_car_serie": 50474, + "name": "E 200 Kompressor AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214207, + "fields": { + "id_car_serie": 50474, + "name": "E 200 Kompressor MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214208, + "fields": { + "id_car_serie": 50474, + "name": "E 220 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214209, + "fields": { + "id_car_serie": 50474, + "name": "E 200 CDI AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214210, + "fields": { + "id_car_serie": 50474, + "name": "E 220 CDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214211, + "fields": { + "id_car_serie": 50474, + "name": "E 200 CDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214212, + "fields": { + "id_car_serie": 50474, + "name": "E 230 7G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214213, + "fields": { + "id_car_serie": 50474, + "name": "E 230 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214214, + "fields": { + "id_car_serie": 50474, + "name": "E 280 CDI 7G-Tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214215, + "fields": { + "id_car_serie": 50474, + "name": "E 280 CDI 4MATIC AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214216, + "fields": { + "id_car_serie": 50474, + "name": "E 280 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214217, + "fields": { + "id_car_serie": 50474, + "name": "E 280 4MATIC AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214218, + "fields": { + "id_car_serie": 50474, + "name": "320 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214219, + "fields": { + "id_car_serie": 50474, + "name": "320 CDI 4MATIC AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214220, + "fields": { + "id_car_serie": 50474, + "name": "E 280 CDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214221, + "fields": { + "id_car_serie": 50474, + "name": "E 280 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214222, + "fields": { + "id_car_serie": 50474, + "name": "E 350 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214223, + "fields": { + "id_car_serie": 50474, + "name": "E 350 CGI 7G-Tronic (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214224, + "fields": { + "id_car_serie": 50474, + "name": "E 350 4MATIC AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214225, + "fields": { + "id_car_serie": 50474, + "name": "E 500 4MATIC AT (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214226, + "fields": { + "id_car_serie": 50474, + "name": "E 500 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214227, + "fields": { + "id_car_serie": 50475, + "name": "E 63 7G-Tronic (514 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214228, + "fields": { + "id_car_serie": 50476, + "name": "E 63 7G-Tronic (514 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214229, + "fields": { + "id_car_serie": 50477, + "name": "E 55 AT (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214230, + "fields": { + "id_car_serie": 50478, + "name": "E 200 Kompressor 5G-Tronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214231, + "fields": { + "id_car_serie": 50478, + "name": "E 200 Kompressor MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214232, + "fields": { + "id_car_serie": 50478, + "name": "E 220 CDI 5G-Tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214233, + "fields": { + "id_car_serie": 50478, + "name": "E 220 CDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214234, + "fields": { + "id_car_serie": 50478, + "name": "240 4MATIC AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214235, + "fields": { + "id_car_serie": 50478, + "name": "240 5G-Tronic (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214236, + "fields": { + "id_car_serie": 50478, + "name": "240 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214237, + "fields": { + "id_car_serie": 50478, + "name": "270 CDI 5G-Tronic (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214238, + "fields": { + "id_car_serie": 50478, + "name": "270 CDI MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214239, + "fields": { + "id_car_serie": 50478, + "name": "E 280 CDI 4MATIC AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214240, + "fields": { + "id_car_serie": 50478, + "name": "E 280 4MATIC AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214241, + "fields": { + "id_car_serie": 50478, + "name": "E 280 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214242, + "fields": { + "id_car_serie": 50478, + "name": "E 280 CDI 7G-Tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214243, + "fields": { + "id_car_serie": 50478, + "name": "320 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214244, + "fields": { + "id_car_serie": 50478, + "name": "320 CDI 4MATIC AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214245, + "fields": { + "id_car_serie": 50478, + "name": "E 280 CDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214246, + "fields": { + "id_car_serie": 50478, + "name": "E 280 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214247, + "fields": { + "id_car_serie": 50478, + "name": "320 5G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214248, + "fields": { + "id_car_serie": 50478, + "name": "320 CDI 5G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214249, + "fields": { + "id_car_serie": 50478, + "name": "E 280 CDI AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214250, + "fields": { + "id_car_serie": 50478, + "name": "320 4MATIC AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214251, + "fields": { + "id_car_serie": 50478, + "name": "E 350 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214252, + "fields": { + "id_car_serie": 50478, + "name": "E 350 4MATIC AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214253, + "fields": { + "id_car_serie": 50478, + "name": "E 500 4MATIC AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214254, + "fields": { + "id_car_serie": 50478, + "name": "E 500 7G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214255, + "fields": { + "id_car_serie": 50479, + "name": "E 200 NGT AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214256, + "fields": { + "id_car_serie": 50479, + "name": "E 200 Kompressor 5G-Tronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214257, + "fields": { + "id_car_serie": 50479, + "name": "E 200 Kompressor MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214258, + "fields": { + "id_car_serie": 50479, + "name": "E 220 CDI 5G-Tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214259, + "fields": { + "id_car_serie": 50479, + "name": "E 200 CDI 5G-Tronic (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214260, + "fields": { + "id_car_serie": 50479, + "name": "E 200 CDI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214261, + "fields": { + "id_car_serie": 50479, + "name": "E 220 CDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214262, + "fields": { + "id_car_serie": 50479, + "name": "240 5G-Tronic (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214263, + "fields": { + "id_car_serie": 50479, + "name": "240 4MATIC AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214264, + "fields": { + "id_car_serie": 50479, + "name": "240 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214265, + "fields": { + "id_car_serie": 50479, + "name": "270 CDI 5G-Tronic (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214266, + "fields": { + "id_car_serie": 50479, + "name": "270 CDI MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214267, + "fields": { + "id_car_serie": 50479, + "name": "E 280 CDI 4MATIC AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214268, + "fields": { + "id_car_serie": 50479, + "name": "E 280 4MATIC AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214269, + "fields": { + "id_car_serie": 50479, + "name": "E 280 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214270, + "fields": { + "id_car_serie": 50479, + "name": "E 280 CDI 7G-Tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214271, + "fields": { + "id_car_serie": 50479, + "name": "320 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214272, + "fields": { + "id_car_serie": 50479, + "name": "320 CDI 4MATIC AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214273, + "fields": { + "id_car_serie": 50479, + "name": "E 280 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214274, + "fields": { + "id_car_serie": 50479, + "name": "E 280 CDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214275, + "fields": { + "id_car_serie": 50479, + "name": "320 CDI 5G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214276, + "fields": { + "id_car_serie": 50479, + "name": "320 4MATIC 5G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214277, + "fields": { + "id_car_serie": 50479, + "name": "320 5G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214278, + "fields": { + "id_car_serie": 50479, + "name": "E 280 CDI AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214279, + "fields": { + "id_car_serie": 50479, + "name": "E 350 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214280, + "fields": { + "id_car_serie": 50479, + "name": "E 350 4MATIC AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214281, + "fields": { + "id_car_serie": 50479, + "name": "420 CDI 7G-Tronic (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214282, + "fields": { + "id_car_serie": 50479, + "name": "400 CDI AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214283, + "fields": { + "id_car_serie": 50479, + "name": "E 500 5G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214284, + "fields": { + "id_car_serie": 50479, + "name": "E 500 4MATIC AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214285, + "fields": { + "id_car_serie": 50479, + "name": "E 500 7G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214286, + "fields": { + "id_car_serie": 50480, + "name": "E 55 AT (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214287, + "fields": { + "id_car_serie": 50481, + "name": "E 200 5G-Tronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214288, + "fields": { + "id_car_serie": 50481, + "name": "E 200 Kompressor 5G-Tronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214289, + "fields": { + "id_car_serie": 50481, + "name": "E 200 Kompressor MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214290, + "fields": { + "id_car_serie": 50481, + "name": "E 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214291, + "fields": { + "id_car_serie": 50481, + "name": "E 220 CDI 5G-Tronic (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214292, + "fields": { + "id_car_serie": 50481, + "name": "E 220 CDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214293, + "fields": { + "id_car_serie": 50481, + "name": "240 5G-Tronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214294, + "fields": { + "id_car_serie": 50481, + "name": "240 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214295, + "fields": { + "id_car_serie": 50481, + "name": "270 CDI 5G-Tronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214296, + "fields": { + "id_car_serie": 50481, + "name": "270 CDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214297, + "fields": { + "id_car_serie": 50481, + "name": "E 280 4MATIC 5G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214298, + "fields": { + "id_car_serie": 50481, + "name": "E 280 5G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214299, + "fields": { + "id_car_serie": 50481, + "name": "E 280 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214300, + "fields": { + "id_car_serie": 50481, + "name": "320 4MATIC 5G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214301, + "fields": { + "id_car_serie": 50481, + "name": "320 5G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214302, + "fields": { + "id_car_serie": 50481, + "name": "320 CDI 5G-Tronic (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214303, + "fields": { + "id_car_serie": 50481, + "name": "430 4MATIC 5G-Tronic (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214304, + "fields": { + "id_car_serie": 50481, + "name": "430 5G-Tronic (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214305, + "fields": { + "id_car_serie": 50482, + "name": "E 200 5G-Tronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214306, + "fields": { + "id_car_serie": 50482, + "name": "E 200 Kompressor 5G-Tronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214307, + "fields": { + "id_car_serie": 50482, + "name": "E 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214308, + "fields": { + "id_car_serie": 50482, + "name": "E 200 Kompressor MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214309, + "fields": { + "id_car_serie": 50482, + "name": "E 220 CDI 5G-Tronic (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214310, + "fields": { + "id_car_serie": 50482, + "name": "E 200 CDI 5G-Tronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214311, + "fields": { + "id_car_serie": 50482, + "name": "E 200 CDI MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214312, + "fields": { + "id_car_serie": 50482, + "name": "E 220 CDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214313, + "fields": { + "id_car_serie": 50482, + "name": "240 5G-Tronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214314, + "fields": { + "id_car_serie": 50482, + "name": "240 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214315, + "fields": { + "id_car_serie": 50482, + "name": "270 CDI 5G-Tronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214316, + "fields": { + "id_car_serie": 50482, + "name": "270 CDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214317, + "fields": { + "id_car_serie": 50482, + "name": "E 280 5G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214318, + "fields": { + "id_car_serie": 50482, + "name": "E 280 4MATIC 5G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214319, + "fields": { + "id_car_serie": 50482, + "name": "E 280 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214320, + "fields": { + "id_car_serie": 50482, + "name": "320 CDI 5G-Tronic (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214321, + "fields": { + "id_car_serie": 50482, + "name": "320 5G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214322, + "fields": { + "id_car_serie": 50482, + "name": "320 4MATIC 5G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214323, + "fields": { + "id_car_serie": 50482, + "name": "430 5G-Tronic (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214324, + "fields": { + "id_car_serie": 50482, + "name": "430 4MATIC 5G-Tronic (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214325, + "fields": { + "id_car_serie": 50483, + "name": "E 55 5G-Tronic (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214326, + "fields": { + "id_car_serie": 50484, + "name": "E 55 5G-Tronic (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214327, + "fields": { + "id_car_serie": 50485, + "name": "E 200 Kompressor 5G-Tronic (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214328, + "fields": { + "id_car_serie": 50485, + "name": "E 200 5G-Tronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214329, + "fields": { + "id_car_serie": 50485, + "name": "E 200 Kompressor MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214330, + "fields": { + "id_car_serie": 50485, + "name": "E 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214331, + "fields": { + "id_car_serie": 50485, + "name": "E 220 CDI 5G-Tronic (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214332, + "fields": { + "id_car_serie": 50485, + "name": "E 220 CDI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214333, + "fields": { + "id_car_serie": 50485, + "name": "E 230 5G-Tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214334, + "fields": { + "id_car_serie": 50485, + "name": "E 230 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214335, + "fields": { + "id_car_serie": 50485, + "name": "240 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214336, + "fields": { + "id_car_serie": 50485, + "name": "240 5G-Tronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214337, + "fields": { + "id_car_serie": 50485, + "name": "250 D 5G-Tronic (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214338, + "fields": { + "id_car_serie": 50485, + "name": "250 D MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214339, + "fields": { + "id_car_serie": 50485, + "name": "250 TD MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214340, + "fields": { + "id_car_serie": 50485, + "name": "E 280 4MATIC 5G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214341, + "fields": { + "id_car_serie": 50485, + "name": "290 TD 5G-Tronic (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214342, + "fields": { + "id_car_serie": 50485, + "name": "290 TD MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214343, + "fields": { + "id_car_serie": 50485, + "name": "E 300 TD 5G-Tronic (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214344, + "fields": { + "id_car_serie": 50485, + "name": "320 4MATIC 5G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214345, + "fields": { + "id_car_serie": 50485, + "name": "320 5G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214346, + "fields": { + "id_car_serie": 50485, + "name": "420 5G-Tronic (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214347, + "fields": { + "id_car_serie": 50485, + "name": "430 5G-Tronic (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214348, + "fields": { + "id_car_serie": 50486, + "name": "E 50 5G-Tronic (347 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214349, + "fields": { + "id_car_serie": 50486, + "name": "E 55 5G-Tronic (347 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214350, + "fields": { + "id_car_serie": 50487, + "name": "E 200 5G-Tronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214351, + "fields": { + "id_car_serie": 50487, + "name": "E 200 Kompressor 5G-Tronic (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214352, + "fields": { + "id_car_serie": 50487, + "name": "E 200 D 5G-Tronic (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214353, + "fields": { + "id_car_serie": 50487, + "name": "E 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214354, + "fields": { + "id_car_serie": 50487, + "name": "E 200 D MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214355, + "fields": { + "id_car_serie": 50487, + "name": "E 200 Kompressor MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214356, + "fields": { + "id_car_serie": 50487, + "name": "E 220 D 5G-Tronic (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214357, + "fields": { + "id_car_serie": 50487, + "name": "E 220 CDI 5G-Tronic (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214358, + "fields": { + "id_car_serie": 50487, + "name": "E 200 CDI 5G-Tronic (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214359, + "fields": { + "id_car_serie": 50487, + "name": "E 220 D MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214360, + "fields": { + "id_car_serie": 50487, + "name": "E 200 CDI MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214361, + "fields": { + "id_car_serie": 50487, + "name": "E 220 CDI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214362, + "fields": { + "id_car_serie": 50487, + "name": "E 230 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214363, + "fields": { + "id_car_serie": 50487, + "name": "E 230 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214364, + "fields": { + "id_car_serie": 50487, + "name": "240 5G-Tronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214365, + "fields": { + "id_car_serie": 50487, + "name": "240 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214366, + "fields": { + "id_car_serie": 50487, + "name": "250 D AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214367, + "fields": { + "id_car_serie": 50487, + "name": "250 D MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214368, + "fields": { + "id_car_serie": 50487, + "name": "E 280 5G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214369, + "fields": { + "id_car_serie": 50487, + "name": "E 280 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214370, + "fields": { + "id_car_serie": 50487, + "name": "E 280 4MATIC 5G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214371, + "fields": { + "id_car_serie": 50487, + "name": "E 280 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214372, + "fields": { + "id_car_serie": 50487, + "name": "E 280 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214373, + "fields": { + "id_car_serie": 50487, + "name": "290 TD 5G-Tronic (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214374, + "fields": { + "id_car_serie": 50487, + "name": "290 TD MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214375, + "fields": { + "id_car_serie": 50487, + "name": "E 300 TD 5G-Tronic (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214376, + "fields": { + "id_car_serie": 50487, + "name": "E 300 D AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214377, + "fields": { + "id_car_serie": 50487, + "name": "E 300 D MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214378, + "fields": { + "id_car_serie": 50487, + "name": "320 4MATIC 5G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214379, + "fields": { + "id_car_serie": 50487, + "name": "320 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214380, + "fields": { + "id_car_serie": 50487, + "name": "320 5G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214381, + "fields": { + "id_car_serie": 50487, + "name": "320 5G-Tronic (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214382, + "fields": { + "id_car_serie": 50487, + "name": "420 5G-Tronic (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214383, + "fields": { + "id_car_serie": 50487, + "name": "430 5G-Tronic (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214384, + "fields": { + "id_car_serie": 50488, + "name": "E36 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214385, + "fields": { + "id_car_serie": 50489, + "name": "E 200 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214386, + "fields": { + "id_car_serie": 50489, + "name": "E 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214387, + "fields": { + "id_car_serie": 50489, + "name": "E 220 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214388, + "fields": { + "id_car_serie": 50489, + "name": "E 220 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214389, + "fields": { + "id_car_serie": 50489, + "name": "E 250 D AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214390, + "fields": { + "id_car_serie": 50489, + "name": "E 250 TD AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214391, + "fields": { + "id_car_serie": 50489, + "name": "E 250 D MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214392, + "fields": { + "id_car_serie": 50489, + "name": "E 250 TD MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214393, + "fields": { + "id_car_serie": 50489, + "name": "E 280 4AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214394, + "fields": { + "id_car_serie": 50489, + "name": "E 280 5AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214395, + "fields": { + "id_car_serie": 50489, + "name": "E 280 MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214396, + "fields": { + "id_car_serie": 50489, + "name": "E 300 4MATIC AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214397, + "fields": { + "id_car_serie": 50489, + "name": "E 300 D AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214398, + "fields": { + "id_car_serie": 50489, + "name": "E 300 TD AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214399, + "fields": { + "id_car_serie": 50489, + "name": "E 300 TD 4MATIC AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214400, + "fields": { + "id_car_serie": 50489, + "name": "E 300 D MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214401, + "fields": { + "id_car_serie": 50489, + "name": "E 320 5AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214402, + "fields": { + "id_car_serie": 50489, + "name": "E 320 4AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214403, + "fields": { + "id_car_serie": 50489, + "name": "E 320 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214404, + "fields": { + "id_car_serie": 50490, + "name": "E 200 D AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214405, + "fields": { + "id_car_serie": 50490, + "name": "E 200 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214406, + "fields": { + "id_car_serie": 50490, + "name": "E 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214407, + "fields": { + "id_car_serie": 50490, + "name": "E 200 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214408, + "fields": { + "id_car_serie": 50490, + "name": "E 220 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214409, + "fields": { + "id_car_serie": 50490, + "name": "E 220 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214410, + "fields": { + "id_car_serie": 50490, + "name": "E 250 TD AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214411, + "fields": { + "id_car_serie": 50490, + "name": "E 250 D AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214412, + "fields": { + "id_car_serie": 50490, + "name": "E 250 TD MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214413, + "fields": { + "id_car_serie": 50490, + "name": "E 250 D MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214414, + "fields": { + "id_car_serie": 50490, + "name": "E 280 5AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214415, + "fields": { + "id_car_serie": 50490, + "name": "E 280 4AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214416, + "fields": { + "id_car_serie": 50490, + "name": "E 280 MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214417, + "fields": { + "id_car_serie": 50490, + "name": "E 300 4MATIC AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214418, + "fields": { + "id_car_serie": 50490, + "name": "E 300 D AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214419, + "fields": { + "id_car_serie": 50490, + "name": "E 300 TD AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214420, + "fields": { + "id_car_serie": 50490, + "name": "E 300 TD 4MATIC AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214421, + "fields": { + "id_car_serie": 50490, + "name": "E 300 D MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214422, + "fields": { + "id_car_serie": 50490, + "name": "E 320 4AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214423, + "fields": { + "id_car_serie": 50490, + "name": "E 320 5AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214424, + "fields": { + "id_car_serie": 50490, + "name": "E 320 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214425, + "fields": { + "id_car_serie": 50490, + "name": "E 420 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214426, + "fields": { + "id_car_serie": 50491, + "name": "E 200 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214427, + "fields": { + "id_car_serie": 50491, + "name": "E 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214428, + "fields": { + "id_car_serie": 50491, + "name": "E 220 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214429, + "fields": { + "id_car_serie": 50491, + "name": "E 220 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214430, + "fields": { + "id_car_serie": 50491, + "name": "E 320 4AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214431, + "fields": { + "id_car_serie": 50491, + "name": "E 320 5AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214432, + "fields": { + "id_car_serie": 50491, + "name": "E 320 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214433, + "fields": { + "id_car_serie": 50492, + "name": "E 200 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214434, + "fields": { + "id_car_serie": 50492, + "name": "E 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214435, + "fields": { + "id_car_serie": 50492, + "name": "E 220 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214436, + "fields": { + "id_car_serie": 50492, + "name": "E 220 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214437, + "fields": { + "id_car_serie": 50492, + "name": "E 320 4AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214438, + "fields": { + "id_car_serie": 50492, + "name": "E 320 5AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214439, + "fields": { + "id_car_serie": 50492, + "name": "E 320 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214440, + "fields": { + "id_car_serie": 50493, + "name": "E36 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214441, + "fields": { + "id_car_serie": 50494, + "name": "E 500 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214442, + "fields": { + "id_car_serie": 50495, + "name": "E60 AT (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214443, + "fields": { + "id_car_serie": 50496, + "name": "E 200 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214444, + "fields": { + "id_car_serie": 50496, + "name": "E 200 D AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214445, + "fields": { + "id_car_serie": 50496, + "name": "E 200 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214446, + "fields": { + "id_car_serie": 50496, + "name": "E 200 AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214447, + "fields": { + "id_car_serie": 50496, + "name": "E 200 5MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214448, + "fields": { + "id_car_serie": 50496, + "name": "E 200 D 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214449, + "fields": { + "id_car_serie": 50496, + "name": "E 200 D 4MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214450, + "fields": { + "id_car_serie": 50496, + "name": "E 200 4MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214451, + "fields": { + "id_car_serie": 50496, + "name": "E 200 4MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214452, + "fields": { + "id_car_serie": 50496, + "name": "E 200 5MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214453, + "fields": { + "id_car_serie": 50496, + "name": "E 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214454, + "fields": { + "id_car_serie": 50496, + "name": "E 220 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214455, + "fields": { + "id_car_serie": 50496, + "name": "E 220 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214456, + "fields": { + "id_car_serie": 50496, + "name": "E 230 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214457, + "fields": { + "id_car_serie": 50496, + "name": "E 230 4MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214458, + "fields": { + "id_car_serie": 50496, + "name": "E 230 5MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214459, + "fields": { + "id_car_serie": 50496, + "name": "250 D Kat AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214460, + "fields": { + "id_car_serie": 50496, + "name": "250 D AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214461, + "fields": { + "id_car_serie": 50496, + "name": "250 TD Kat AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214462, + "fields": { + "id_car_serie": 50496, + "name": "250 TD Kat MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214463, + "fields": { + "id_car_serie": 50496, + "name": "250 D Kat MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214464, + "fields": { + "id_car_serie": 50496, + "name": "250 D MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214465, + "fields": { + "id_car_serie": 50496, + "name": "260 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214466, + "fields": { + "id_car_serie": 50496, + "name": "260 4MATIC MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214467, + "fields": { + "id_car_serie": 50496, + "name": "260 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214468, + "fields": { + "id_car_serie": 50496, + "name": "E 280 5AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214469, + "fields": { + "id_car_serie": 50496, + "name": "E 280 4AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214470, + "fields": { + "id_car_serie": 50496, + "name": "E 280 MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214471, + "fields": { + "id_car_serie": 50496, + "name": "E 300 TD 4MATIC AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214472, + "fields": { + "id_car_serie": 50496, + "name": "E 300 TD AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214473, + "fields": { + "id_car_serie": 50496, + "name": "E 300 D Kat 4MATIC AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214474, + "fields": { + "id_car_serie": 50496, + "name": "E 300 D 4MATIC AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214475, + "fields": { + "id_car_serie": 50496, + "name": "E 300 D Kat AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214476, + "fields": { + "id_car_serie": 50496, + "name": "E 300 D AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214477, + "fields": { + "id_car_serie": 50496, + "name": "E 300 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214478, + "fields": { + "id_car_serie": 50496, + "name": "E 300 4MATIC AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214479, + "fields": { + "id_car_serie": 50496, + "name": "E 300 4AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214480, + "fields": { + "id_car_serie": 50496, + "name": "E 300 5AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214481, + "fields": { + "id_car_serie": 50496, + "name": "E 300 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214482, + "fields": { + "id_car_serie": 50496, + "name": "E 300 D MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214483, + "fields": { + "id_car_serie": 50496, + "name": "E 300 D Kat MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214484, + "fields": { + "id_car_serie": 50496, + "name": "E 300 D 4MATIC MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214485, + "fields": { + "id_car_serie": 50496, + "name": "E 300 D Kat 4MATIC MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214486, + "fields": { + "id_car_serie": 50496, + "name": "E 300 4MATIC MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214487, + "fields": { + "id_car_serie": 50496, + "name": "E 300 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214488, + "fields": { + "id_car_serie": 50496, + "name": "320 5AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214489, + "fields": { + "id_car_serie": 50496, + "name": "320 4AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214490, + "fields": { + "id_car_serie": 50496, + "name": "320 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214491, + "fields": { + "id_car_serie": 50496, + "name": "400 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214492, + "fields": { + "id_car_serie": 50497, + "name": "E 300 4AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214493, + "fields": { + "id_car_serie": 50497, + "name": "E 300 5AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214494, + "fields": { + "id_car_serie": 50497, + "name": "E 300 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214495, + "fields": { + "id_car_serie": 50498, + "name": "E 500 AT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214496, + "fields": { + "id_car_serie": 50498, + "name": "E 500 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214497, + "fields": { + "id_car_serie": 50499, + "name": "E 200 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214498, + "fields": { + "id_car_serie": 50499, + "name": "E 200 D AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214499, + "fields": { + "id_car_serie": 50499, + "name": "E 200 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214500, + "fields": { + "id_car_serie": 50499, + "name": "E 200 AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214501, + "fields": { + "id_car_serie": 50499, + "name": "E 200 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214502, + "fields": { + "id_car_serie": 50499, + "name": "E 200 4MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214503, + "fields": { + "id_car_serie": 50499, + "name": "E 200 5MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214504, + "fields": { + "id_car_serie": 50499, + "name": "E 200 4MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214505, + "fields": { + "id_car_serie": 50499, + "name": "E 200 5MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214506, + "fields": { + "id_car_serie": 50499, + "name": "E 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214507, + "fields": { + "id_car_serie": 50499, + "name": "E 220 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214508, + "fields": { + "id_car_serie": 50499, + "name": "E 220 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214509, + "fields": { + "id_car_serie": 50499, + "name": "E 230 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214510, + "fields": { + "id_car_serie": 50499, + "name": "E 230 5MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214511, + "fields": { + "id_car_serie": 50499, + "name": "E 230 4MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214512, + "fields": { + "id_car_serie": 50499, + "name": "250 TD AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214513, + "fields": { + "id_car_serie": 50499, + "name": "250 D Kat AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214514, + "fields": { + "id_car_serie": 50499, + "name": "250 D AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214515, + "fields": { + "id_car_serie": 50499, + "name": "250 D MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214516, + "fields": { + "id_car_serie": 50499, + "name": "250 D Kat MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214517, + "fields": { + "id_car_serie": 50499, + "name": "250 TD MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214518, + "fields": { + "id_car_serie": 50499, + "name": "E 280 4AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214519, + "fields": { + "id_car_serie": 50499, + "name": "E 280 5AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214520, + "fields": { + "id_car_serie": 50499, + "name": "E 280 MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214521, + "fields": { + "id_car_serie": 50499, + "name": "E 300 D Kat AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214522, + "fields": { + "id_car_serie": 50499, + "name": "E 300 TD AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214523, + "fields": { + "id_car_serie": 50499, + "name": "E 300 TD 4MATIC AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214524, + "fields": { + "id_car_serie": 50499, + "name": "E 300 4AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214525, + "fields": { + "id_car_serie": 50499, + "name": "E 300 5AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214526, + "fields": { + "id_car_serie": 50499, + "name": "E 300 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214527, + "fields": { + "id_car_serie": 50499, + "name": "E 300 4MATIC AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214528, + "fields": { + "id_car_serie": 50499, + "name": "E 300 D AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214529, + "fields": { + "id_car_serie": 50499, + "name": "E 300 4MATIC MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214530, + "fields": { + "id_car_serie": 50499, + "name": "E 300 D Kat MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214531, + "fields": { + "id_car_serie": 50499, + "name": "E 300 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214532, + "fields": { + "id_car_serie": 50499, + "name": "E 300 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214533, + "fields": { + "id_car_serie": 50499, + "name": "E 300 D MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214534, + "fields": { + "id_car_serie": 50499, + "name": "320 5AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214535, + "fields": { + "id_car_serie": 50499, + "name": "320 4AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214536, + "fields": { + "id_car_serie": 50499, + "name": "320 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214537, + "fields": { + "id_car_serie": 50500, + "name": "E 200 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214538, + "fields": { + "id_car_serie": 50500, + "name": "E 200 Kat AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214539, + "fields": { + "id_car_serie": 50500, + "name": "E 200 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214540, + "fields": { + "id_car_serie": 50500, + "name": "E 200 Kat AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214541, + "fields": { + "id_car_serie": 50500, + "name": "E 200 D AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214542, + "fields": { + "id_car_serie": 50500, + "name": "E 200 Kat 4MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214543, + "fields": { + "id_car_serie": 50500, + "name": "E 200 Kat 5MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214544, + "fields": { + "id_car_serie": 50500, + "name": "E 200 D 5MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214545, + "fields": { + "id_car_serie": 50500, + "name": "E 200 D 4MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214546, + "fields": { + "id_car_serie": 50500, + "name": "E 200 4MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214547, + "fields": { + "id_car_serie": 50500, + "name": "E 200 5MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214548, + "fields": { + "id_car_serie": 50500, + "name": "E 200 Kat 4MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214549, + "fields": { + "id_car_serie": 50500, + "name": "E 200 Kat 5MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214550, + "fields": { + "id_car_serie": 50500, + "name": "E 200 4MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214551, + "fields": { + "id_car_serie": 50500, + "name": "E 200 5MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214552, + "fields": { + "id_car_serie": 50500, + "name": "E 230 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214553, + "fields": { + "id_car_serie": 50500, + "name": "E 230 Kat AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214554, + "fields": { + "id_car_serie": 50500, + "name": "E 230 5MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214555, + "fields": { + "id_car_serie": 50500, + "name": "E 230 4MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214556, + "fields": { + "id_car_serie": 50500, + "name": "E 230 Kat 5MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214557, + "fields": { + "id_car_serie": 50500, + "name": "E 230 Kat 4MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214558, + "fields": { + "id_car_serie": 50500, + "name": "250 TD AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214559, + "fields": { + "id_car_serie": 50500, + "name": "250 D AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214560, + "fields": { + "id_car_serie": 50500, + "name": "250 D MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214561, + "fields": { + "id_car_serie": 50500, + "name": "260 Kat 4MATIC AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214562, + "fields": { + "id_car_serie": 50500, + "name": "260 Kat 4MATIC AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214563, + "fields": { + "id_car_serie": 50500, + "name": "260 Kat AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214564, + "fields": { + "id_car_serie": 50500, + "name": "260 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214565, + "fields": { + "id_car_serie": 50500, + "name": "260 Kat 4MATIC MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214566, + "fields": { + "id_car_serie": 50500, + "name": "260 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214567, + "fields": { + "id_car_serie": 50500, + "name": "260 Kat MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214568, + "fields": { + "id_car_serie": 50500, + "name": "260 Kat 4MATIC MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214569, + "fields": { + "id_car_serie": 50500, + "name": "E 300 Kat 4MATIC AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214570, + "fields": { + "id_car_serie": 50500, + "name": "E 300 TD AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214571, + "fields": { + "id_car_serie": 50500, + "name": "E 300 TD 4MATIC AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214572, + "fields": { + "id_car_serie": 50500, + "name": "E 300 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214573, + "fields": { + "id_car_serie": 50500, + "name": "E 300 Kat AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214574, + "fields": { + "id_car_serie": 50500, + "name": "E 300 Kat 4MATIC AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214575, + "fields": { + "id_car_serie": 50500, + "name": "E 300 D AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214576, + "fields": { + "id_car_serie": 50500, + "name": "E 300 D 4MATIC AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214577, + "fields": { + "id_car_serie": 50500, + "name": "E 300 D 4MATIC MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214578, + "fields": { + "id_car_serie": 50500, + "name": "E 300 Kat MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214579, + "fields": { + "id_car_serie": 50500, + "name": "E 300 D MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214580, + "fields": { + "id_car_serie": 50500, + "name": "E 300 Kat 4MATIC MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214581, + "fields": { + "id_car_serie": 50500, + "name": "E 300 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214582, + "fields": { + "id_car_serie": 50500, + "name": "E 300 Kat 4MATIC MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214583, + "fields": { + "id_car_serie": 50501, + "name": "E 200 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214584, + "fields": { + "id_car_serie": 50501, + "name": "E 200 D AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214585, + "fields": { + "id_car_serie": 50501, + "name": "E 200 Kat AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214586, + "fields": { + "id_car_serie": 50501, + "name": "E 200 Kat AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214587, + "fields": { + "id_car_serie": 50501, + "name": "E 200 Kat AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214588, + "fields": { + "id_car_serie": 50501, + "name": "E 200 D MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214589, + "fields": { + "id_car_serie": 50501, + "name": "E 200 4MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214590, + "fields": { + "id_car_serie": 50501, + "name": "E 200 5MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214591, + "fields": { + "id_car_serie": 50501, + "name": "E 200 Kat 4MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214592, + "fields": { + "id_car_serie": 50501, + "name": "E 200 Kat 5MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214593, + "fields": { + "id_car_serie": 50501, + "name": "E 200 Kat 4MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214594, + "fields": { + "id_car_serie": 50501, + "name": "E 200 Kat 5MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214595, + "fields": { + "id_car_serie": 50501, + "name": "E 200 Kat 4MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214596, + "fields": { + "id_car_serie": 50501, + "name": "E 200 Kat 5MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214597, + "fields": { + "id_car_serie": 50501, + "name": "E 230 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214598, + "fields": { + "id_car_serie": 50501, + "name": "E 230 Kat AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214599, + "fields": { + "id_car_serie": 50501, + "name": "E 230 Kat 5MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214600, + "fields": { + "id_car_serie": 50501, + "name": "E 230 5MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214601, + "fields": { + "id_car_serie": 50501, + "name": "E 230 4MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214602, + "fields": { + "id_car_serie": 50501, + "name": "E 230 Kat 4MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214603, + "fields": { + "id_car_serie": 50501, + "name": "250 D AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214604, + "fields": { + "id_car_serie": 50501, + "name": "250 D MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214605, + "fields": { + "id_car_serie": 50501, + "name": "E 300 Kat AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214606, + "fields": { + "id_car_serie": 50501, + "name": "E 300 Kat 4MATIC AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214607, + "fields": { + "id_car_serie": 50501, + "name": "E 300 Kat 4MATIC AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214608, + "fields": { + "id_car_serie": 50501, + "name": "E 300 TD AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214609, + "fields": { + "id_car_serie": 50501, + "name": "E 300 TD 4MATIC AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214610, + "fields": { + "id_car_serie": 50501, + "name": "E 300 TD 4MATIC AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214611, + "fields": { + "id_car_serie": 50501, + "name": "E 300 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214612, + "fields": { + "id_car_serie": 50501, + "name": "E 300 D AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214613, + "fields": { + "id_car_serie": 50501, + "name": "E 300 TD AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214614, + "fields": { + "id_car_serie": 50501, + "name": "E 300 Kat 4MATIC MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214615, + "fields": { + "id_car_serie": 50501, + "name": "E 300 Kat 4MATIC MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214616, + "fields": { + "id_car_serie": 50501, + "name": "E 300 D MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214617, + "fields": { + "id_car_serie": 50501, + "name": "E 300 MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214618, + "fields": { + "id_car_serie": 50501, + "name": "E 300 Kat MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214619, + "fields": { + "id_car_serie": 50502, + "name": "E 200 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214620, + "fields": { + "id_car_serie": 50502, + "name": "E 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214621, + "fields": { + "id_car_serie": 50502, + "name": "E 200 Kat MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214622, + "fields": { + "id_car_serie": 50502, + "name": "E 200 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214623, + "fields": { + "id_car_serie": 50502, + "name": "E 220 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214624, + "fields": { + "id_car_serie": 50502, + "name": "E 220 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214625, + "fields": { + "id_car_serie": 50502, + "name": "E 230 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214626, + "fields": { + "id_car_serie": 50502, + "name": "E 230 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214627, + "fields": { + "id_car_serie": 50502, + "name": "E 230 Kat AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214628, + "fields": { + "id_car_serie": 50502, + "name": "E 230 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214629, + "fields": { + "id_car_serie": 50502, + "name": "E 230 Kat MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214630, + "fields": { + "id_car_serie": 50502, + "name": "E 230 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214631, + "fields": { + "id_car_serie": 50502, + "name": "E 300 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214632, + "fields": { + "id_car_serie": 50502, + "name": "E 300 Kat AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214633, + "fields": { + "id_car_serie": 50502, + "name": "E 300 4AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214634, + "fields": { + "id_car_serie": 50502, + "name": "E 300 5AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214635, + "fields": { + "id_car_serie": 50502, + "name": "E 300 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214636, + "fields": { + "id_car_serie": 50502, + "name": "E 300 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214637, + "fields": { + "id_car_serie": 50502, + "name": "E 300 Kat MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214638, + "fields": { + "id_car_serie": 50502, + "name": "E 300 MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214639, + "fields": { + "id_car_serie": 50502, + "name": "E 300 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214640, + "fields": { + "id_car_serie": 50502, + "name": "320 4AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214641, + "fields": { + "id_car_serie": 50502, + "name": "320 5AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214642, + "fields": { + "id_car_serie": 50502, + "name": "320 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214643, + "fields": { + "id_car_serie": 50503, + "name": "E 200 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214644, + "fields": { + "id_car_serie": 50503, + "name": "E 200 5MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214645, + "fields": { + "id_car_serie": 50503, + "name": "E 200 4MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214646, + "fields": { + "id_car_serie": 50503, + "name": "E 230 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214647, + "fields": { + "id_car_serie": 50503, + "name": "E 230 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214648, + "fields": { + "id_car_serie": 50503, + "name": "E 230 5MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214649, + "fields": { + "id_car_serie": 50503, + "name": "E 230 4MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214650, + "fields": { + "id_car_serie": 50503, + "name": "E 230 4MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214651, + "fields": { + "id_car_serie": 50503, + "name": "240 D AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214652, + "fields": { + "id_car_serie": 50503, + "name": "240 D 4MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214653, + "fields": { + "id_car_serie": 50503, + "name": "240 D 5MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214654, + "fields": { + "id_car_serie": 50503, + "name": "250 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214655, + "fields": { + "id_car_serie": 50503, + "name": "250 4MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214656, + "fields": { + "id_car_serie": 50503, + "name": "250 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214657, + "fields": { + "id_car_serie": 50503, + "name": "250 5MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214658, + "fields": { + "id_car_serie": 50503, + "name": "250 4MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214659, + "fields": { + "id_car_serie": 50503, + "name": "E 280 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214660, + "fields": { + "id_car_serie": 50503, + "name": "E 280 4MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214661, + "fields": { + "id_car_serie": 50503, + "name": "E 280 5MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214662, + "fields": { + "id_car_serie": 50503, + "name": "E 300 D AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214663, + "fields": { + "id_car_serie": 50503, + "name": "E 300 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214664, + "fields": { + "id_car_serie": 50503, + "name": "E 300 D 4MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214665, + "fields": { + "id_car_serie": 50503, + "name": "E 300 D 5MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214666, + "fields": { + "id_car_serie": 50504, + "name": "E 200 D AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214667, + "fields": { + "id_car_serie": 50504, + "name": "E 200 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214668, + "fields": { + "id_car_serie": 50504, + "name": "E 200 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214669, + "fields": { + "id_car_serie": 50504, + "name": "E 200 4MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214670, + "fields": { + "id_car_serie": 50504, + "name": "E 200 5MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214671, + "fields": { + "id_car_serie": 50504, + "name": "E 200 4MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214672, + "fields": { + "id_car_serie": 50504, + "name": "E 220 D 4MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214673, + "fields": { + "id_car_serie": 50504, + "name": "E 200 D 4MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214674, + "fields": { + "id_car_serie": 50504, + "name": "E 220 D AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214675, + "fields": { + "id_car_serie": 50504, + "name": "E 200 D AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214676, + "fields": { + "id_car_serie": 50504, + "name": "E 200 D 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214677, + "fields": { + "id_car_serie": 50504, + "name": "E 200 D 4MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214678, + "fields": { + "id_car_serie": 50504, + "name": "E 230 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214679, + "fields": { + "id_car_serie": 50504, + "name": "E 230 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214680, + "fields": { + "id_car_serie": 50504, + "name": "E 230 4MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214681, + "fields": { + "id_car_serie": 50504, + "name": "E 230 4MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214682, + "fields": { + "id_car_serie": 50504, + "name": "E 230 5MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214683, + "fields": { + "id_car_serie": 50504, + "name": "240 D AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214684, + "fields": { + "id_car_serie": 50504, + "name": "240 D AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214685, + "fields": { + "id_car_serie": 50504, + "name": "240 D 5MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214686, + "fields": { + "id_car_serie": 50504, + "name": "240 D 4MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214687, + "fields": { + "id_car_serie": 50504, + "name": "240 D 4MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214688, + "fields": { + "id_car_serie": 50504, + "name": "250 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214689, + "fields": { + "id_car_serie": 50504, + "name": "250 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214690, + "fields": { + "id_car_serie": 50504, + "name": "250 5MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214691, + "fields": { + "id_car_serie": 50504, + "name": "250 4MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214692, + "fields": { + "id_car_serie": 50504, + "name": "250 4MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214693, + "fields": { + "id_car_serie": 50504, + "name": "E 280 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214694, + "fields": { + "id_car_serie": 50504, + "name": "E 280 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214695, + "fields": { + "id_car_serie": 50504, + "name": "E 280 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214696, + "fields": { + "id_car_serie": 50504, + "name": "E 280 4MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214697, + "fields": { + "id_car_serie": 50504, + "name": "E 280 4MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214698, + "fields": { + "id_car_serie": 50504, + "name": "E 280 4MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214699, + "fields": { + "id_car_serie": 50504, + "name": "E 280 5MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214700, + "fields": { + "id_car_serie": 50504, + "name": "E 300 D AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214701, + "fields": { + "id_car_serie": 50504, + "name": "E 300 D AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214702, + "fields": { + "id_car_serie": 50504, + "name": "E 300 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214703, + "fields": { + "id_car_serie": 50504, + "name": "E 300 TD AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214704, + "fields": { + "id_car_serie": 50504, + "name": "E 300 D 4MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214705, + "fields": { + "id_car_serie": 50504, + "name": "E 300 D 4MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214706, + "fields": { + "id_car_serie": 50504, + "name": "E 300 D 5MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214707, + "fields": { + "id_car_serie": 50505, + "name": "E 230 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214708, + "fields": { + "id_car_serie": 50505, + "name": "E 230 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214709, + "fields": { + "id_car_serie": 50505, + "name": "E 230 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214710, + "fields": { + "id_car_serie": 50505, + "name": "E 230 4MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214711, + "fields": { + "id_car_serie": 50505, + "name": "E 230 5MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214712, + "fields": { + "id_car_serie": 50505, + "name": "E 280 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214713, + "fields": { + "id_car_serie": 50505, + "name": "E 280 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214714, + "fields": { + "id_car_serie": 50505, + "name": "E 280 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214715, + "fields": { + "id_car_serie": 50505, + "name": "E 280 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214716, + "fields": { + "id_car_serie": 50505, + "name": "E 280 4MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214717, + "fields": { + "id_car_serie": 50505, + "name": "E 280 5MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214718, + "fields": { + "id_car_serie": 50505, + "name": "E 280 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214719, + "fields": { + "id_car_serie": 50505, + "name": "E 300 D AT (78 hp)", + "arabic_name": "-", + "start_production_year": 1979, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214721, + "fields": { + "id_car_serie": 50505, + "name": "E 300 D AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214722, + "fields": { + "id_car_serie": 50505, + "name": "E 300 TD AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214723, + "fields": { + "id_car_serie": 50505, + "name": "E 300 TD AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214724, + "fields": { + "id_car_serie": 50506, + "name": "GLA 45 AMG SPEEDSHIFT DCT 4Matic (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214725, + "fields": { + "id_car_serie": 50506, + "name": "GLA 45 AMG 7G-DCT 4Matic (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214726, + "fields": { + "id_car_serie": 50507, + "name": "GLA 200 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214727, + "fields": { + "id_car_serie": 50507, + "name": "GLA 200 7G-DCT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214728, + "fields": { + "id_car_serie": 50507, + "name": "GLA 200 7G-DCT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214729, + "fields": { + "id_car_serie": 50507, + "name": "GLA 250 7G-DCT 4Matic (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214730, + "fields": { + "id_car_serie": 50507, + "name": "GLA 250 7G-DCT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214731, + "fields": { + "id_car_serie": 50507, + "name": "GLA 200 CDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214732, + "fields": { + "id_car_serie": 50507, + "name": "GLA 200 CDI 7G-DCT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214733, + "fields": { + "id_car_serie": 50507, + "name": "GLA 200 CDI 7G-DCT 4Matic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214734, + "fields": { + "id_car_serie": 50508, + "name": "GLK 250 7G-Tronic Plus 4Matic (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214735, + "fields": { + "id_car_serie": 50508, + "name": "GLK 250 7G-Tronic plus (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214736, + "fields": { + "id_car_serie": 50508, + "name": "GLK 200 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214737, + "fields": { + "id_car_serie": 50508, + "name": "GLK 220 CDI 7G-Tronic Plus 4Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214738, + "fields": { + "id_car_serie": 50508, + "name": "GLK 200 CDI 7G-Tronic plus (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214739, + "fields": { + "id_car_serie": 50508, + "name": "GLK 250 BlueTEC 7G-Tronic plus 4MATIC (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214740, + "fields": { + "id_car_serie": 50508, + "name": "GLK 220 CDI 7G-Tronic plus (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214741, + "fields": { + "id_car_serie": 50508, + "name": "GLK 200 CDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214742, + "fields": { + "id_car_serie": 50508, + "name": "GLK 220 CDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214743, + "fields": { + "id_car_serie": 50508, + "name": "GLK 350 CDI 7G-Tronic plus 4MATIC (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214744, + "fields": { + "id_car_serie": 50508, + "name": "GLK 300 7G-Tronic Plus 4Matic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214745, + "fields": { + "id_car_serie": 50508, + "name": "GLK 350 7G-Tronic Plus 4MATIC (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214746, + "fields": { + "id_car_serie": 50509, + "name": "GLK 220 CDI BlueEFFICIENCY 7G-Tronic 4MATIC (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214747, + "fields": { + "id_car_serie": 50509, + "name": "GLK 250 CDI BlueEFFICIENCY 7G-Tronic 4MATIC (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214748, + "fields": { + "id_car_serie": 50509, + "name": "GLK 220 CDI BlueEFFICIENCY 7G-Tronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214749, + "fields": { + "id_car_serie": 50509, + "name": "GLK 200 CDI BlueEFFICIENCY 7G-Tronic (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214750, + "fields": { + "id_car_serie": 50509, + "name": "GLK 200 CDI BlueEFFICIENCY MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214751, + "fields": { + "id_car_serie": 50509, + "name": "GLK 220 CDI BlueEFFICIENCY MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214752, + "fields": { + "id_car_serie": 50509, + "name": "GLK 350 CDI 7G-Tronic 4MATIC (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214753, + "fields": { + "id_car_serie": 50509, + "name": "GLK 350 CDI 7G-Tronic 4MATIC (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214754, + "fields": { + "id_car_serie": 50509, + "name": "GLK 320 CDI 7G-Tronic 4MATIC (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214755, + "fields": { + "id_car_serie": 50509, + "name": "GLK 300 7G-Tronic 4MATIC (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214756, + "fields": { + "id_car_serie": 50509, + "name": "GLK 280 7G-Tronic 4MATIC (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214757, + "fields": { + "id_car_serie": 50509, + "name": "GLK 350 7G-Tronic 4MATIC (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214758, + "fields": { + "id_car_serie": 50510, + "name": "GLS 63 4MATIC 7G-TRONIC PLUS (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214759, + "fields": { + "id_car_serie": 46332, + "name": "GLS 400 4MATIC 9G-TRONIC (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214760, + "fields": { + "id_car_serie": 46332, + "name": "GLS 350 d 4MATIC 9G-TRONIC (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214761, + "fields": { + "id_car_serie": 46332, + "name": "GLS 500 4MATIC 9G-TRONIC (455 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214762, + "fields": { + "id_car_serie": 50512, + "name": "GL 63 AMG Speedshift Plus 7G-Tronic 4Matic (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214763, + "fields": { + "id_car_serie": 3713, + "name": "GL 400 7G-Tronic Plus 4Matic (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214764, + "fields": { + "id_car_serie": 3713, + "name": "GL 350 BlueTec 7G-Tronic Plus 4Matic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214765, + "fields": { + "id_car_serie": 3713, + "name": "GL 500 BlueEfficiency 7G-Tronic Plus 4Matic (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214766, + "fields": { + "id_car_serie": 3713, + "name": "GL 450 7G-Tronic Plus 4Matic (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214767, + "fields": { + "id_car_serie": 15035, + "name": "GL 350 CDI BlueEFFICIENCY 7G-Tronic 4MATIC (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214768, + "fields": { + "id_car_serie": 15035, + "name": "GL 350 CDI BlueTEC 7G-Tronic 4MATIC 7 places (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214769, + "fields": { + "id_car_serie": 15035, + "name": "GL 350 CDI BlueTEC 7G-Tronic 4MATIC (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214770, + "fields": { + "id_car_serie": 15035, + "name": "GL 350 CDI BlueEFFICIENCY 7G-Tronic 4MATIC 7 places (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214771, + "fields": { + "id_car_serie": 15035, + "name": "GL 350 CDI BlueEFFICIENCY 7G-Tronic 4MATIC (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214772, + "fields": { + "id_car_serie": 15035, + "name": "GL 350 CDI BlueEFFICIENCY 7G-Tronic 4MATIC 7 places (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214773, + "fields": { + "id_car_serie": 15035, + "name": "GL 450 CDI 7G-Tronic 4MATIC 7 places (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214774, + "fields": { + "id_car_serie": 15035, + "name": "GL 450 CDI 7G-Tronic 4MATIC (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214775, + "fields": { + "id_car_serie": 15035, + "name": "GL 450 7G-Tronic 4MATIC 7 places (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214776, + "fields": { + "id_car_serie": 15035, + "name": "GL 450 7G-Tronic 4MATIC (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214777, + "fields": { + "id_car_serie": 15035, + "name": "GL 500 7G-Tronic 4MATIC (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214778, + "fields": { + "id_car_serie": 15035, + "name": "GL 500 7G-Tronic 4MATIC 7 places (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214779, + "fields": { + "id_car_serie": 50515, + "name": "GL 350 CDI BlueEFFICIENCY 7G-Tronic 4MATIC (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214780, + "fields": { + "id_car_serie": 50515, + "name": "GL 350 CDI BlueTEC 7G-Tronic 4MATIC 7 places (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214781, + "fields": { + "id_car_serie": 50515, + "name": "GL 350 CDI BlueTEC 7G-Tronic 4MATIC (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214782, + "fields": { + "id_car_serie": 50515, + "name": "GL 350 CDI BlueEFFICIENCY 7G-Tronic 4MATIC 7 places (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214783, + "fields": { + "id_car_serie": 50515, + "name": "GL 450 7G-Tronic 4MATIC 7 places (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214784, + "fields": { + "id_car_serie": 50515, + "name": "GL 450 7G-Tronic 4MATIC (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214785, + "fields": { + "id_car_serie": 50515, + "name": "GL 500 7G-Tronic 4MATIC 7 places (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214786, + "fields": { + "id_car_serie": 50515, + "name": "GL 500 7G-Tronic 4MATIC (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214787, + "fields": { + "id_car_serie": 50516, + "name": "GL 320 CDI 7G-Tronic 4MATIC (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214788, + "fields": { + "id_car_serie": 50516, + "name": "GL 320 CDI 7G-Tronic 4MATIC 7 places (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214789, + "fields": { + "id_car_serie": 50516, + "name": "GL 420 CDI 7G-Tronic 4MATIC (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214790, + "fields": { + "id_car_serie": 50516, + "name": "GL 420 CDI 7G-Tronic 4MATIC 7 places (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214791, + "fields": { + "id_car_serie": 50516, + "name": "GL 450 7G-Tronic 4MATIC (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214792, + "fields": { + "id_car_serie": 50516, + "name": "GL 450 7G-Tronic 4MATIC 7 places (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214793, + "fields": { + "id_car_serie": 50516, + "name": "GL 500 7G-Tronic 4MATIC (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214794, + "fields": { + "id_car_serie": 50516, + "name": "GL 500 7G-Tronic 4MATIC 7 places (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214795, + "fields": { + "id_car_serie": 50517, + "name": "G 350 d 7G-Tronic Plus (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214796, + "fields": { + "id_car_serie": 50517, + "name": "G 500 7G-Tronic Plus (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214797, + "fields": { + "id_car_serie": 50518, + "name": "G 500 4x4 7G-Tronic Plus (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214798, + "fields": { + "id_car_serie": 50519, + "name": "G 63 AMG Speedshift Plus 7G-Tronic (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214799, + "fields": { + "id_car_serie": 50519, + "name": "G 65 AMG Speedshift Plus 7G-Tronic (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214800, + "fields": { + "id_car_serie": 50520, + "name": "G 350 BlueTEC 7G-Tronic Plus (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214801, + "fields": { + "id_car_serie": 50520, + "name": "G 550 7G-Tronic Plus (387 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214802, + "fields": { + "id_car_serie": 50520, + "name": "G 500 7G-Tronic Plus (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214803, + "fields": { + "id_car_serie": 50521, + "name": "G 500 7G-Tronic Plus (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214804, + "fields": { + "id_car_serie": 50522, + "name": "G 63 AMG Speedshift Plus 7G-Tronic (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214805, + "fields": { + "id_car_serie": 50522, + "name": "G 65 AMG Speedshift Plus 7G-Tronic (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214806, + "fields": { + "id_car_serie": 50523, + "name": "G 63 AMG Speedshift Plus 7G-Tronic (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214807, + "fields": { + "id_car_serie": 50524, + "name": "G 320 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214808, + "fields": { + "id_car_serie": 50524, + "name": "G 350 CDI BlueTec 7G-Tronic (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214809, + "fields": { + "id_car_serie": 50524, + "name": "G 350 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214810, + "fields": { + "id_car_serie": 50524, + "name": "G 500 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214811, + "fields": { + "id_car_serie": 6924, + "name": "G 320 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214812, + "fields": { + "id_car_serie": 6924, + "name": "G 350 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214813, + "fields": { + "id_car_serie": 6924, + "name": "G 350 CDI BlueTEC 7G-Tronic (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214814, + "fields": { + "id_car_serie": 6924, + "name": "G 500 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214815, + "fields": { + "id_car_serie": 3711, + "name": "G 320 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214816, + "fields": { + "id_car_serie": 3711, + "name": "G 350 CDI BlueTEC 7G-Tronic (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214817, + "fields": { + "id_car_serie": 3711, + "name": "G 350 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214818, + "fields": { + "id_car_serie": 3711, + "name": "G 550 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214819, + "fields": { + "id_car_serie": 3711, + "name": "G 500 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214820, + "fields": { + "id_car_serie": 50527, + "name": "G 55 Kompressor 5G-Tronic AMG (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214821, + "fields": { + "id_car_serie": 6927, + "name": "200 GE MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214822, + "fields": { + "id_car_serie": 6927, + "name": "G 230 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214823, + "fields": { + "id_car_serie": 6927, + "name": "230 GE AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214824, + "fields": { + "id_car_serie": 6927, + "name": "230 GE AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214825, + "fields": { + "id_car_serie": 6927, + "name": "G 230 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214826, + "fields": { + "id_car_serie": 6927, + "name": "230 GE MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214827, + "fields": { + "id_car_serie": 6927, + "name": "230 GE MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214828, + "fields": { + "id_car_serie": 6927, + "name": "250 GD MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214829, + "fields": { + "id_car_serie": 6927, + "name": "G 270 CDI AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214830, + "fields": { + "id_car_serie": 6927, + "name": "G 320 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214831, + "fields": { + "id_car_serie": 6927, + "name": "G 300 D AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214832, + "fields": { + "id_car_serie": 6927, + "name": "300 GE AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214833, + "fields": { + "id_car_serie": 6927, + "name": "G 300 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214834, + "fields": { + "id_car_serie": 6927, + "name": "300 GE AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214835, + "fields": { + "id_car_serie": 6927, + "name": "300 GD AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214836, + "fields": { + "id_car_serie": 6927, + "name": "G 300 TD 5AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214837, + "fields": { + "id_car_serie": 6927, + "name": "300 GE MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214838, + "fields": { + "id_car_serie": 6927, + "name": "G 300 D MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214839, + "fields": { + "id_car_serie": 6927, + "name": "G 300 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214840, + "fields": { + "id_car_serie": 6927, + "name": "300 GD MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214841, + "fields": { + "id_car_serie": 6927, + "name": "300 GE MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214842, + "fields": { + "id_car_serie": 6927, + "name": "G 320 5AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214843, + "fields": { + "id_car_serie": 6927, + "name": "G 320 4AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214844, + "fields": { + "id_car_serie": 6927, + "name": "350 GD Turbo AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214845, + "fields": { + "id_car_serie": 6927, + "name": "G 350 TD AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214846, + "fields": { + "id_car_serie": 6927, + "name": "G 36 AMG AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214847, + "fields": { + "id_car_serie": 6927, + "name": "G 36 AMG AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214848, + "fields": { + "id_car_serie": 6927, + "name": "G 400 CDI AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214849, + "fields": { + "id_car_serie": 6927, + "name": "G 500 5AT (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214850, + "fields": { + "id_car_serie": 6927, + "name": "G 500 7G-Tronic (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214851, + "fields": { + "id_car_serie": 50529, + "name": "G 36 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214852, + "fields": { + "id_car_serie": 50529, + "name": "G 36 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214853, + "fields": { + "id_car_serie": 50529, + "name": "G 55 T AT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214854, + "fields": { + "id_car_serie": 50529, + "name": "G 55 T AT (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214855, + "fields": { + "id_car_serie": 50529, + "name": "G 55 AT (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214856, + "fields": { + "id_car_serie": 6931, + "name": "200 GE MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214857, + "fields": { + "id_car_serie": 6931, + "name": "G 230 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214858, + "fields": { + "id_car_serie": 6931, + "name": "230 GE AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214859, + "fields": { + "id_car_serie": 6931, + "name": "230 GE AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214860, + "fields": { + "id_car_serie": 6931, + "name": "G 230 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214861, + "fields": { + "id_car_serie": 6931, + "name": "230 GE MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214862, + "fields": { + "id_car_serie": 6931, + "name": "230 GE MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214863, + "fields": { + "id_car_serie": 6931, + "name": "250 GD MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214864, + "fields": { + "id_car_serie": 6931, + "name": "G 270 CDI AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214865, + "fields": { + "id_car_serie": 6931, + "name": "G 300 TD 5AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214866, + "fields": { + "id_car_serie": 6931, + "name": "G 300 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214867, + "fields": { + "id_car_serie": 6931, + "name": "G 300 D AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214868, + "fields": { + "id_car_serie": 6931, + "name": "G 320 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214869, + "fields": { + "id_car_serie": 6931, + "name": "300 GE AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214870, + "fields": { + "id_car_serie": 6931, + "name": "300 GE AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214871, + "fields": { + "id_car_serie": 6931, + "name": "300 GD AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214872, + "fields": { + "id_car_serie": 6931, + "name": "300 GD MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214873, + "fields": { + "id_car_serie": 6931, + "name": "G 300 D MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214874, + "fields": { + "id_car_serie": 6931, + "name": "G 300 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214875, + "fields": { + "id_car_serie": 6931, + "name": "300 GE MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214876, + "fields": { + "id_car_serie": 6931, + "name": "300 GE MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214877, + "fields": { + "id_car_serie": 6931, + "name": "G 320 5AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214878, + "fields": { + "id_car_serie": 6931, + "name": "G 320 4AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214879, + "fields": { + "id_car_serie": 6931, + "name": "350 GD Turbo AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214880, + "fields": { + "id_car_serie": 6931, + "name": "G 350 TD AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214881, + "fields": { + "id_car_serie": 6931, + "name": "G 400 CDI AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214882, + "fields": { + "id_car_serie": 6931, + "name": "G 500 7G-Tronic (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214883, + "fields": { + "id_car_serie": 6931, + "name": "G 500 5AT (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214884, + "fields": { + "id_car_serie": 6931, + "name": "500 GE AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214885, + "fields": { + "id_car_serie": 50531, + "name": "200 GE MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214886, + "fields": { + "id_car_serie": 50531, + "name": "G 230 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214887, + "fields": { + "id_car_serie": 50531, + "name": "230 GE AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214888, + "fields": { + "id_car_serie": 50531, + "name": "230 GE AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214889, + "fields": { + "id_car_serie": 50531, + "name": "G 230 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214890, + "fields": { + "id_car_serie": 50531, + "name": "230 GE MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214891, + "fields": { + "id_car_serie": 50531, + "name": "230 GE MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214892, + "fields": { + "id_car_serie": 50531, + "name": "250 GD MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214893, + "fields": { + "id_car_serie": 50531, + "name": "G 300 D AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214894, + "fields": { + "id_car_serie": 50531, + "name": "G 300 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214895, + "fields": { + "id_car_serie": 50531, + "name": "300 GE AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214896, + "fields": { + "id_car_serie": 50531, + "name": "G 300 TD 5AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214897, + "fields": { + "id_car_serie": 50531, + "name": "G 320 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214898, + "fields": { + "id_car_serie": 50531, + "name": "300 GD AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214899, + "fields": { + "id_car_serie": 50531, + "name": "300 GE AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214900, + "fields": { + "id_car_serie": 50531, + "name": "300 GE MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214901, + "fields": { + "id_car_serie": 50531, + "name": "G 300 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214902, + "fields": { + "id_car_serie": 50531, + "name": "300 GD MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214903, + "fields": { + "id_car_serie": 50531, + "name": "G 300 D MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214904, + "fields": { + "id_car_serie": 50531, + "name": "300 GE MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214905, + "fields": { + "id_car_serie": 50531, + "name": "G 320 4AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214906, + "fields": { + "id_car_serie": 50531, + "name": "G 320 5AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214907, + "fields": { + "id_car_serie": 50531, + "name": "G 350 TD AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214908, + "fields": { + "id_car_serie": 50531, + "name": "350 GD Turbo AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214909, + "fields": { + "id_car_serie": 50531, + "name": "G 400 CDI AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214910, + "fields": { + "id_car_serie": 50531, + "name": "G 500 5AT (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214911, + "fields": { + "id_car_serie": 50531, + "name": "G 500 7G-Tronic (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214912, + "fields": { + "id_car_serie": 50541, + "name": "ML 63 AMG Speedshift Plus 7G-Tronic (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214913, + "fields": { + "id_car_serie": 50542, + "name": "ML 250 BlueTec 7G-Tronic Plus 4Matic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214914, + "fields": { + "id_car_serie": 50542, + "name": "ML 400 7G-Tronic Plus 4Matic (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214915, + "fields": { + "id_car_serie": 50542, + "name": "ML 350 BlueTEC 7G-Tronic Plus 4Matic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214916, + "fields": { + "id_car_serie": 50542, + "name": "ML 300 BlueEfficiency 7G-Tronic Plus 4Matic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214917, + "fields": { + "id_car_serie": 50542, + "name": "ML 350 BlueEfficiency 7G-Tronic Plus 4Matic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214918, + "fields": { + "id_car_serie": 50542, + "name": "ML 500 BlueEfficiency 7G-Tronic Plus 4Matic (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214919, + "fields": { + "id_car_serie": 50543, + "name": "ML 63 AMG SPEEDSHIFT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214920, + "fields": { + "id_car_serie": 50544, + "name": "ML 280 CDI 7G-Tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214921, + "fields": { + "id_car_serie": 50544, + "name": "ML 350 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214922, + "fields": { + "id_car_serie": 50544, + "name": "ML 320 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214923, + "fields": { + "id_car_serie": 50544, + "name": "ML 300 CDI BlueEfficiency 7G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214924, + "fields": { + "id_car_serie": 50544, + "name": "ML 300 CDI BlueEfficiency 7G-Tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214925, + "fields": { + "id_car_serie": 50544, + "name": "ML 350 CDI BlueTec 7G-Tronic (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214926, + "fields": { + "id_car_serie": 50544, + "name": "ML 350 CDI 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214927, + "fields": { + "id_car_serie": 50544, + "name": "ML 350 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214928, + "fields": { + "id_car_serie": 50544, + "name": "ML 450 CDI 7G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214929, + "fields": { + "id_car_serie": 50544, + "name": "ML 420 CDI 7G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214930, + "fields": { + "id_car_serie": 50544, + "name": "ML 500 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214931, + "fields": { + "id_car_serie": 50545, + "name": "ML 320 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214932, + "fields": { + "id_car_serie": 50545, + "name": "ML 280 CDI 7G-Tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214933, + "fields": { + "id_car_serie": 50545, + "name": "ML 350 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214934, + "fields": { + "id_car_serie": 50545, + "name": "ML 420 CDI 7G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214935, + "fields": { + "id_car_serie": 50545, + "name": "ML 500 7G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214936, + "fields": { + "id_car_serie": 50545, + "name": "ML 500 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214937, + "fields": { + "id_car_serie": 50546, + "name": "ML 63 AMG SPEEDSHIFT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214938, + "fields": { + "id_car_serie": 50547, + "name": "ML 270 CDI 5G-Tronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214939, + "fields": { + "id_car_serie": 50547, + "name": "ML 270 CDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214940, + "fields": { + "id_car_serie": 50547, + "name": "ML 320 5G-Tronic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214941, + "fields": { + "id_car_serie": 50547, + "name": "ML 350 5G-Tronic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214942, + "fields": { + "id_car_serie": 50547, + "name": "ML 400 CDI 5G-Tronic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214943, + "fields": { + "id_car_serie": 50547, + "name": "ML 500 5G-Tronic (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214944, + "fields": { + "id_car_serie": 50548, + "name": "ML 55 AMG SPEEDSHIFT (347 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214945, + "fields": { + "id_car_serie": 50549, + "name": "ML 230 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214946, + "fields": { + "id_car_serie": 50549, + "name": "ML 270 CDI 5G-Tronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214947, + "fields": { + "id_car_serie": 50549, + "name": "ML 270 CDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214948, + "fields": { + "id_car_serie": 50549, + "name": "ML 320 5G-Tronic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214949, + "fields": { + "id_car_serie": 50549, + "name": "ML 430 5G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214950, + "fields": { + "id_car_serie": 50550, + "name": "ML 55 AMG SPEEDSHIFT (347 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214951, + "fields": { + "id_car_serie": 46896, + "name": "R 300 7G-Tronic long base (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214952, + "fields": { + "id_car_serie": 46896, + "name": "R 300 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214953, + "fields": { + "id_car_serie": 46896, + "name": "R 350 CDI 4MATIC 7G-Tronic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214954, + "fields": { + "id_car_serie": 46896, + "name": "R 350 BlueTEC 4MATIC 7G-Tronic long base (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214955, + "fields": { + "id_car_serie": 46896, + "name": "R 300 CDI BlueEFFICIENCY 7G-Tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214956, + "fields": { + "id_car_serie": 46896, + "name": "R 350 4MATIC 7G-Tronic long base (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214957, + "fields": { + "id_car_serie": 46896, + "name": "R 350 BlueEFFICIENCY 4MATIC 7G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214958, + "fields": { + "id_car_serie": 46896, + "name": "R 350 4MATIC 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214959, + "fields": { + "id_car_serie": 46896, + "name": "R 350 BlueEFFICIENCY 4MATIC 7G-Tronic long base (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214960, + "fields": { + "id_car_serie": 46896, + "name": "R 500 4MATIC 7G-Tronic long base (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214961, + "fields": { + "id_car_serie": 50552, + "name": "R 350 CDI 4MATIC 7G-Tronic long base (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214962, + "fields": { + "id_car_serie": 50552, + "name": "R 320 CDI 4MATIC 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214963, + "fields": { + "id_car_serie": 50552, + "name": "R 300 7G-Tronic long base (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214964, + "fields": { + "id_car_serie": 50552, + "name": "R 300 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214965, + "fields": { + "id_car_serie": 50552, + "name": "R 320 CDI 4MATIC 7G-Tronic long base (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214966, + "fields": { + "id_car_serie": 50552, + "name": "R 350 BlueTEC 4MATIC 7G-Tronic long base (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214967, + "fields": { + "id_car_serie": 50552, + "name": "R 300 CDI 4MATIC 7G-Tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214968, + "fields": { + "id_car_serie": 50552, + "name": "R 300 CDI 7G-Tronic long base (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214969, + "fields": { + "id_car_serie": 50552, + "name": "R 300 CDI BlueEFFICIENCY 7G-Tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214970, + "fields": { + "id_car_serie": 50552, + "name": "R 280 CDI 7G-Tronic long base (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214971, + "fields": { + "id_car_serie": 50552, + "name": "R 280 CDI 4MATIC 7G-Tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214972, + "fields": { + "id_car_serie": 50552, + "name": "R 350 CDI 4MATIC 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214973, + "fields": { + "id_car_serie": 50552, + "name": "R 280 7G-Tronic long base (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214974, + "fields": { + "id_car_serie": 50552, + "name": "R 280 CDI 7G-Tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214975, + "fields": { + "id_car_serie": 50552, + "name": "R 280 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214976, + "fields": { + "id_car_serie": 50552, + "name": "R 350 4MATIC 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214977, + "fields": { + "id_car_serie": 50552, + "name": "R 350 4MATIC 7G-Tronic long base (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214978, + "fields": { + "id_car_serie": 50552, + "name": "R 350 7G-Tronic long base (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214979, + "fields": { + "id_car_serie": 50552, + "name": "R 350 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214980, + "fields": { + "id_car_serie": 50552, + "name": "R 500 4MATIC 7G-Tronic long base (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214981, + "fields": { + "id_car_serie": 50552, + "name": "R 500 4MATIC 7G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214982, + "fields": { + "id_car_serie": 50552, + "name": "R 500 4MATIC 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214983, + "fields": { + "id_car_serie": 50552, + "name": "R 500 4MATIC 7G-Tronic long base (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214984, + "fields": { + "id_car_serie": 50553, + "name": "R 63 4MATIC SPEEDSHIFT 7G-Tronic long base (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214985, + "fields": { + "id_car_serie": 50553, + "name": "R 63 4MATIC SPEEDSHIFT 7G-Tronic (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214986, + "fields": { + "id_car_serie": 50554, + "name": "SLK 55 AMG 7G-Tronic Plus (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214987, + "fields": { + "id_car_serie": 50555, + "name": "SLK 200 BlueEfficiency 7G-Tronic Plus (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214988, + "fields": { + "id_car_serie": 50555, + "name": "SLK 250 BlueEfficiency 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214989, + "fields": { + "id_car_serie": 50555, + "name": "SLK 200 BlueEFFICIENCY MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214990, + "fields": { + "id_car_serie": 50555, + "name": "SLK 250 BlueEFFICIENCY MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214991, + "fields": { + "id_car_serie": 50555, + "name": "SLK 250 CDI BlueEFFICIENCY 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214992, + "fields": { + "id_car_serie": 50555, + "name": "SLK 250 CDI BlueEFFICIENCY MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214993, + "fields": { + "id_car_serie": 50555, + "name": "SLK 350 BlueEfficiency 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214994, + "fields": { + "id_car_serie": 50556, + "name": "SLK 55 7G-Tronic (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214995, + "fields": { + "id_car_serie": 15045, + "name": "SLK 200 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214996, + "fields": { + "id_car_serie": 15045, + "name": "SLK 200 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214997, + "fields": { + "id_car_serie": 15045, + "name": "SLK 300 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214998, + "fields": { + "id_car_serie": 15045, + "name": "SLK 280 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 214999, + "fields": { + "id_car_serie": 15045, + "name": "SLK 300 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215000, + "fields": { + "id_car_serie": 15045, + "name": "SLK 280 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215001, + "fields": { + "id_car_serie": 15045, + "name": "SLK 350 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215002, + "fields": { + "id_car_serie": 15045, + "name": "SLK 350 MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215003, + "fields": { + "id_car_serie": 50558, + "name": "SLK 55 7G-Tronic (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215004, + "fields": { + "id_car_serie": 50559, + "name": "SLK 55 7G-Tronic (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215005, + "fields": { + "id_car_serie": 6945, + "name": "SLK 200 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215006, + "fields": { + "id_car_serie": 6945, + "name": "SLK 200 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215007, + "fields": { + "id_car_serie": 6945, + "name": "SLK 280 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215008, + "fields": { + "id_car_serie": 6945, + "name": "SLK 280 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215009, + "fields": { + "id_car_serie": 6945, + "name": "SLK 350 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215010, + "fields": { + "id_car_serie": 6945, + "name": "SLK 350 MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215011, + "fields": { + "id_car_serie": 15046, + "name": "SLK 200 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215012, + "fields": { + "id_car_serie": 15046, + "name": "SLK 200 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215013, + "fields": { + "id_car_serie": 15046, + "name": "SLK 230 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215014, + "fields": { + "id_car_serie": 15046, + "name": "SLK 230 MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215015, + "fields": { + "id_car_serie": 15046, + "name": "SLK 320 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215016, + "fields": { + "id_car_serie": 15046, + "name": "SLK 320 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215017, + "fields": { + "id_car_serie": 50562, + "name": "SLK 32 AT (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215018, + "fields": { + "id_car_serie": 6946, + "name": "SLK 200 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215019, + "fields": { + "id_car_serie": 6946, + "name": "SLK 200 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215020, + "fields": { + "id_car_serie": 6946, + "name": "SLK 200 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215021, + "fields": { + "id_car_serie": 6946, + "name": "SLK 230 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215022, + "fields": { + "id_car_serie": 6946, + "name": "SLK 230 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215023, + "fields": { + "id_car_serie": 50564, + "name": "5.4 AT Turbo (626 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215024, + "fields": { + "id_car_serie": 50565, + "name": "5.4 AT (626 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215025, + "fields": { + "id_car_serie": 50566, + "name": "SL 63 AMG SPEEDSHIFT MCT (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215026, + "fields": { + "id_car_serie": 50566, + "name": "SL 65 AMG SPEEDSHIFT PLUS 7G-TRONIC (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215027, + "fields": { + "id_car_serie": 50567, + "name": "SL 400 9G-TRONIC (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215028, + "fields": { + "id_car_serie": 50567, + "name": "SL 500 9G-TRONIC (455 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215029, + "fields": { + "id_car_serie": 50568, + "name": "SL 400 7G-Tronic Plus (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215030, + "fields": { + "id_car_serie": 50568, + "name": "SL 350 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215031, + "fields": { + "id_car_serie": 50568, + "name": "SL 500 7G-Tronic Plus (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215032, + "fields": { + "id_car_serie": 50569, + "name": "SL 63 AMG Speedshift MCT (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215033, + "fields": { + "id_car_serie": 50569, + "name": "SL 63 AMG Speedshift MCT (537 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215034, + "fields": { + "id_car_serie": 50569, + "name": "SL 65 AMG Speedshift 7G-Tronic Plus (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215035, + "fields": { + "id_car_serie": 50570, + "name": "SL 65 Speedshift (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215036, + "fields": { + "id_car_serie": 50570, + "name": "SL 63 Speedshift MCT (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215037, + "fields": { + "id_car_serie": 50571, + "name": "SL 300 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215038, + "fields": { + "id_car_serie": 50571, + "name": "SL 280 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215039, + "fields": { + "id_car_serie": 50571, + "name": "SL 350 7G-Tronic (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215040, + "fields": { + "id_car_serie": 50571, + "name": "SL 600 5G-Tronic (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215041, + "fields": { + "id_car_serie": 50571, + "name": "SL 500 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215042, + "fields": { + "id_car_serie": 50572, + "name": "SL 350 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215043, + "fields": { + "id_car_serie": 50572, + "name": "SL 600 5G-Tronic (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215044, + "fields": { + "id_car_serie": 50572, + "name": "SL 500 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215045, + "fields": { + "id_car_serie": 50573, + "name": "SL 55 Speedshift (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215046, + "fields": { + "id_car_serie": 50573, + "name": "SL 65 Speedshift (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215047, + "fields": { + "id_car_serie": 50574, + "name": "SL 55 Speedshift (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215048, + "fields": { + "id_car_serie": 50574, + "name": "SL 55 Speedshift (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215049, + "fields": { + "id_car_serie": 50574, + "name": "SL 65 Speedshift (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215050, + "fields": { + "id_car_serie": 50575, + "name": "SL 350 5G-Tronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215051, + "fields": { + "id_car_serie": 50575, + "name": "SL 350 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215052, + "fields": { + "id_car_serie": 50575, + "name": "SL 500 7G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215053, + "fields": { + "id_car_serie": 50575, + "name": "SL 500 5G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215054, + "fields": { + "id_car_serie": 50575, + "name": "SL 600 5G-Tronic (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215055, + "fields": { + "id_car_serie": 50576, + "name": "SL 55 AT (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215056, + "fields": { + "id_car_serie": 50576, + "name": "SL 70 AT (496 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215057, + "fields": { + "id_car_serie": 50576, + "name": "SL 73 AT (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215058, + "fields": { + "id_car_serie": 50577, + "name": "SL 280 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215059, + "fields": { + "id_car_serie": 50577, + "name": "SL 280 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215060, + "fields": { + "id_car_serie": 50577, + "name": "SL 320 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215061, + "fields": { + "id_car_serie": 50577, + "name": "SL 500 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215062, + "fields": { + "id_car_serie": 50577, + "name": "SL 600 AT (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215063, + "fields": { + "id_car_serie": 15044, + "name": "SL 280 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215064, + "fields": { + "id_car_serie": 15044, + "name": "SL 280 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215065, + "fields": { + "id_car_serie": 15044, + "name": "SL 320 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215066, + "fields": { + "id_car_serie": 15044, + "name": "SL 500 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215067, + "fields": { + "id_car_serie": 15044, + "name": "SL 600 AT (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215540, + "fields": { + "id_car_serie": 50607, + "name": "S 63 AMG 7G-TRONIC PLUS 4Matic (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215541, + "fields": { + "id_car_serie": 50607, + "name": "S 65 AMG 7G-TRONIC PLUS (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215542, + "fields": { + "id_car_serie": 50610, + "name": "S 400 7G-Tronic Plus long base (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215543, + "fields": { + "id_car_serie": 50610, + "name": "S 400 7G-Tronic Plus 4Matic long base (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215544, + "fields": { + "id_car_serie": 50610, + "name": "S 350 d 9G-Tronic 4Matic long base (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215545, + "fields": { + "id_car_serie": 50610, + "name": "S 500 e 7G-Tronic Plus long base (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215546, + "fields": { + "id_car_serie": 50610, + "name": "S 350 BlueTEC 7G-Tronic Plus long base (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215547, + "fields": { + "id_car_serie": 50610, + "name": "S 350 BlueTEC 7G-Tronic Plus 4Matic long base (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215548, + "fields": { + "id_car_serie": 50610, + "name": "S 350 BlueTEC 7G-Tronic Plus (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215549, + "fields": { + "id_car_serie": 50610, + "name": "S 400 Hybrid 7G-Tronic Plus long base (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215550, + "fields": { + "id_car_serie": 50610, + "name": "S 400 Hybrid 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215551, + "fields": { + "id_car_serie": 50610, + "name": "S 500 7G-Tronic Plus 4Matic long base (455 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215552, + "fields": { + "id_car_serie": 50610, + "name": "S 500 7G-Tronic Plus long base (455 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215553, + "fields": { + "id_car_serie": 50610, + "name": "S 500 7G-Tronic Plus (455 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215554, + "fields": { + "id_car_serie": 50610, + "name": "S 500 7G-Tronic Plus 4Matic (455 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215555, + "fields": { + "id_car_serie": 50610, + "name": "S 600 7G-Tronic Plus long base (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215556, + "fields": { + "id_car_serie": 50611, + "name": "S 500 9G-Tronic 4Matic (455 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215557, + "fields": { + "id_car_serie": 50612, + "name": "S 63 AMG 4Matic Speedshift Plus 7G-Tronic long base (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215558, + "fields": { + "id_car_serie": 50612, + "name": "S 65 AMG Speedshift Plus 7G-Tronic long base (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215559, + "fields": { + "id_car_serie": 50613, + "name": "S 500 9G-TRONIC (455 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215560, + "fields": { + "id_car_serie": 50613, + "name": "S 500 9G-Tronic Plus 4Matic (455 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215561, + "fields": { + "id_car_serie": 50613, + "name": "S 600 7G-TRONIC PLUS (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215562, + "fields": { + "id_car_serie": 50614, + "name": "S 63 Performance Package SPEEDSHIFT MCT (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215563, + "fields": { + "id_car_serie": 50614, + "name": "S 63 Speedshift MCT (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215564, + "fields": { + "id_car_serie": 50614, + "name": "S 63 Speedshift MCT long base (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215565, + "fields": { + "id_car_serie": 50614, + "name": "S 65 Speedshift MCT long base (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215566, + "fields": { + "id_car_serie": 50614, + "name": "S 63 SPEEDSHIFT 7G-Tronic (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215567, + "fields": { + "id_car_serie": 50608, + "name": "S 63 7G-TRONIC PLUS 4MATIC (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215568, + "fields": { + "id_car_serie": 50608, + "name": "S 65 7G-TRONIC PLUS (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215569, + "fields": { + "id_car_serie": 50609, + "name": "S 500 9G-TRONIC Cabriolet (455 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215570, + "fields": { + "id_car_serie": 50615, + "name": "S 250 CDI BlueEFFICIENCY 7G-Tronic long base (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215571, + "fields": { + "id_car_serie": 50615, + "name": "S 250 CDI BlueEFFICIENCY 7G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215572, + "fields": { + "id_car_serie": 50615, + "name": "S 350 CDI BlueEFFICIENCY 4MATIC 7G-Tronic long base (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215573, + "fields": { + "id_car_serie": 50615, + "name": "S 350 CDI BlueEFFICIENCY 4MATIC 7G-Tronic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215574, + "fields": { + "id_car_serie": 50615, + "name": "S 350 CDI BlueEFFICIENCY 7G-Tronic long base (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215575, + "fields": { + "id_car_serie": 50615, + "name": "S 350 CDI BlueTEC 7G-Tronic long base (258 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215576, + "fields": { + "id_car_serie": 50615, + "name": "S 350 CDI BlueTEC 7G-Tronic (258 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215577, + "fields": { + "id_car_serie": 50615, + "name": "S 350 CDI BlueEFFICIENCY 7G-Tronic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215578, + "fields": { + "id_car_serie": 50615, + "name": "S 350 CDI BlueTEC 4MATIC 7G-Tronic long base (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215579, + "fields": { + "id_car_serie": 50615, + "name": "S 350 CDI BlueTEC 4MATIC 7G-Tronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215582, + "fields": { + "id_car_serie": 50615, + "name": "S 300 AT long base (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215583, + "fields": { + "id_car_serie": 50615, + "name": "S 350 4Matic BlueEfficiency AT long base (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215584, + "fields": { + "id_car_serie": 50615, + "name": "S 350 BlueEFFICIENCY 7G-Tronic long base (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215585, + "fields": { + "id_car_serie": 50615, + "name": "S 350 BlueEFFICIENCY 4MATIC 7G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215586, + "fields": { + "id_car_serie": 50615, + "name": "S 350 BlueEFFICIENCY 7G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215587, + "fields": { + "id_car_serie": 50615, + "name": "S 400 HYBRID 7G-Tronic long base (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215588, + "fields": { + "id_car_serie": 50615, + "name": "S 350 4MATIC 7G-Tronic long base (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215589, + "fields": { + "id_car_serie": 50615, + "name": "S 350 7G-Tronic long base (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215590, + "fields": { + "id_car_serie": 50615, + "name": "S 400 HYBRID 7G-Tronic (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215591, + "fields": { + "id_car_serie": 50615, + "name": "S 350 4MATIC 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215592, + "fields": { + "id_car_serie": 50615, + "name": "S 350 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215593, + "fields": { + "id_car_serie": 50615, + "name": "S 450 CDI 7G-Tronic long base (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215594, + "fields": { + "id_car_serie": 50615, + "name": "S 450 CDI 7G-Tronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215595, + "fields": { + "id_car_serie": 50615, + "name": "S 450 7G-Tronic long base (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215596, + "fields": { + "id_car_serie": 50615, + "name": "S 500 BlueEFFICIENCY 4MATIC 7G-Tronic (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215597, + "fields": { + "id_car_serie": 50615, + "name": "S 450 4MATIC 7G-Tronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215598, + "fields": { + "id_car_serie": 50615, + "name": "S 500 4Matic BlueEfficiency AT long base (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215599, + "fields": { + "id_car_serie": 50615, + "name": "S 500 BlueEFFICIENCY 7G-Tronic (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215600, + "fields": { + "id_car_serie": 50615, + "name": "S 450 7G-Tronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215601, + "fields": { + "id_car_serie": 50615, + "name": "S 500 BlueEFFICIENCY 7G-Tronic long base (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215602, + "fields": { + "id_car_serie": 50615, + "name": "S 450 4MATIC 7G-Tronic long base (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215603, + "fields": { + "id_car_serie": 50615, + "name": "S 500 4MATIC 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215604, + "fields": { + "id_car_serie": 50615, + "name": "S 500 7G-Tronic long base (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215605, + "fields": { + "id_car_serie": 50615, + "name": "S 600 AT long base (517 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215606, + "fields": { + "id_car_serie": 50615, + "name": "S 500 4MATIC 7G-Tronic long base (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215608, + "fields": { + "id_car_serie": 50615, + "name": "S 500 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215609, + "fields": { + "id_car_serie": 50616, + "name": "S 320 CDI 7G-Tronic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215610, + "fields": { + "id_car_serie": 50616, + "name": "S 320 CDI BlueEFFICIENCY 7G-Tronic long base (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215611, + "fields": { + "id_car_serie": 50616, + "name": "S 320 CDI BlueEFFICIENCY 7G-Tronic (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215612, + "fields": { + "id_car_serie": 50616, + "name": "S 320 CDI 7G-Tronic long base (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215613, + "fields": { + "id_car_serie": 50616, + "name": "S 320 CDI 7G-Tronic 4MATIC long base (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215614, + "fields": { + "id_car_serie": 50616, + "name": "S 320 CDI 7G-Tronic 4MATIC (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215615, + "fields": { + "id_car_serie": 50616, + "name": "S 350 7G-Tronic 4MATIC long base (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215616, + "fields": { + "id_car_serie": 50616, + "name": "S 350 7G-Tronic 4MATIC (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215617, + "fields": { + "id_car_serie": 50616, + "name": "S 350 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215618, + "fields": { + "id_car_serie": 50616, + "name": "S 350 7G-Tronic long base (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215619, + "fields": { + "id_car_serie": 50616, + "name": "S 420 CDI 7G-Tronic long base (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215620, + "fields": { + "id_car_serie": 50616, + "name": "S 420 CDI 7G-Tronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215621, + "fields": { + "id_car_serie": 50616, + "name": "S 450 7G-Tronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215622, + "fields": { + "id_car_serie": 50616, + "name": "S 450 7G-Tronic 4MATIC long base (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215623, + "fields": { + "id_car_serie": 50616, + "name": "S 450 7G-Tronic long base (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215624, + "fields": { + "id_car_serie": 50616, + "name": "S 450 7G-Tronic 4MATIC (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215625, + "fields": { + "id_car_serie": 50616, + "name": "S 500 7G-Tronic 4MATIC long base (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215626, + "fields": { + "id_car_serie": 50616, + "name": "S 500 7G-Tronic 4MATIC (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215627, + "fields": { + "id_car_serie": 50616, + "name": "S 500 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215628, + "fields": { + "id_car_serie": 50616, + "name": "S 600 5G-Tronic long base (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215629, + "fields": { + "id_car_serie": 50616, + "name": "S 500 7G-Tronic long base (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215630, + "fields": { + "id_car_serie": 50617, + "name": "S 65 SPEEDSHIFT MCT long base (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215631, + "fields": { + "id_car_serie": 50617, + "name": "S 63 SPEEDSHIFT MsT long base (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215632, + "fields": { + "id_car_serie": 50617, + "name": "S 63 SPEEDSHIFT MsT (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215633, + "fields": { + "id_car_serie": 50618, + "name": "S 320 CDI 5G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215634, + "fields": { + "id_car_serie": 50618, + "name": "S 320 CDI Dpf 5G-Tronic long base (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215635, + "fields": { + "id_car_serie": 50618, + "name": "S 320 CDI 5G-Tronic long base (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215636, + "fields": { + "id_car_serie": 50618, + "name": "S 350 5G-Tronic long base (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215637, + "fields": { + "id_car_serie": 50618, + "name": "S 350 5G-Tronic 4MATIC (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215638, + "fields": { + "id_car_serie": 50618, + "name": "S 350 5G-Tronic 4MATIC long base (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215639, + "fields": { + "id_car_serie": 50618, + "name": "S 350 5G-Tronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215640, + "fields": { + "id_car_serie": 50618, + "name": "S 400 CDI 5G-Tronic long base (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215641, + "fields": { + "id_car_serie": 50618, + "name": "S 400 CDI 5G-Tronic (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215642, + "fields": { + "id_car_serie": 50618, + "name": "S 430 7G-Tronic long base (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215643, + "fields": { + "id_car_serie": 50618, + "name": "S 430 7G-Tronic 4MATIC (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215644, + "fields": { + "id_car_serie": 50618, + "name": "S 430 7G-Tronic (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215645, + "fields": { + "id_car_serie": 50618, + "name": "S 430 7G-Tronic 4MATIC long base (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215646, + "fields": { + "id_car_serie": 50618, + "name": "S 500 7G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215647, + "fields": { + "id_car_serie": 50618, + "name": "S 500 7G-Tronic 4MATIC (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215648, + "fields": { + "id_car_serie": 50618, + "name": "S 500 7G-Tronic long base (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215649, + "fields": { + "id_car_serie": 50618, + "name": "S 500 7G-Tronic 4MATIC long base (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215650, + "fields": { + "id_car_serie": 50618, + "name": "S 600 5G-Tronic long base (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215651, + "fields": { + "id_car_serie": 50619, + "name": "S 55 5G-Tronic long base (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215652, + "fields": { + "id_car_serie": 50619, + "name": "S 55 5G-Tronic (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215653, + "fields": { + "id_car_serie": 50619, + "name": "S 65 5G-Tronic long base (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215654, + "fields": { + "id_car_serie": 50620, + "name": "S 320 5G-Tronic long base (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215655, + "fields": { + "id_car_serie": 50620, + "name": "S 320 CDI 5G-Tronic (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215656, + "fields": { + "id_car_serie": 50620, + "name": "S 320 5G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215657, + "fields": { + "id_car_serie": 50620, + "name": "S 400 CDI 5G-Tronic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215658, + "fields": { + "id_car_serie": 50620, + "name": "S 400 CDI 5G-Tronic long base (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215659, + "fields": { + "id_car_serie": 50620, + "name": "S 430 5G-Tronic long base (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215660, + "fields": { + "id_car_serie": 50620, + "name": "S 430 5G-Tronic (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215661, + "fields": { + "id_car_serie": 50620, + "name": "S 500 ZAS 5G-Tronic long base (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215662, + "fields": { + "id_car_serie": 50620, + "name": "S 500 ZAS 5G-Tronic (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215663, + "fields": { + "id_car_serie": 50620, + "name": "S 500 5G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215664, + "fields": { + "id_car_serie": 50620, + "name": "S 500 5G-Tronic long base (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215665, + "fields": { + "id_car_serie": 50620, + "name": "S 600 5G-Tronic long base (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215666, + "fields": { + "id_car_serie": 50621, + "name": "S 55 5G-Tronic long base (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215667, + "fields": { + "id_car_serie": 50621, + "name": "S 55 5G-Tronic (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215668, + "fields": { + "id_car_serie": 50621, + "name": "S 63 5G-Tronic long base (444 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215669, + "fields": { + "id_car_serie": 50622, + "name": "S 280 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215670, + "fields": { + "id_car_serie": 50622, + "name": "S 280 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215671, + "fields": { + "id_car_serie": 50622, + "name": "S 300 TD AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215672, + "fields": { + "id_car_serie": 50622, + "name": "S 320 AT long base (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215673, + "fields": { + "id_car_serie": 50622, + "name": "S 320 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215674, + "fields": { + "id_car_serie": 50622, + "name": "S 420 AT long base (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215675, + "fields": { + "id_car_serie": 50622, + "name": "S 420 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215676, + "fields": { + "id_car_serie": 50622, + "name": "S 500 AT long base (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215677, + "fields": { + "id_car_serie": 50622, + "name": "S 500 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215678, + "fields": { + "id_car_serie": 50622, + "name": "S 600 AT (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215679, + "fields": { + "id_car_serie": 50622, + "name": "S 600 AT long base (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215680, + "fields": { + "id_car_serie": 50623, + "name": "S 280 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215681, + "fields": { + "id_car_serie": 50623, + "name": "S 280 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215682, + "fields": { + "id_car_serie": 50623, + "name": "S 320 AT long base (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215683, + "fields": { + "id_car_serie": 50623, + "name": "S 320 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215684, + "fields": { + "id_car_serie": 50623, + "name": "S 350 TD AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215685, + "fields": { + "id_car_serie": 50623, + "name": "S 420 AT long base (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215686, + "fields": { + "id_car_serie": 50623, + "name": "S 420 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215687, + "fields": { + "id_car_serie": 50623, + "name": "S 500 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215688, + "fields": { + "id_car_serie": 50623, + "name": "S 500 AT long base (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215689, + "fields": { + "id_car_serie": 50623, + "name": "S 600 AT (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215690, + "fields": { + "id_car_serie": 50623, + "name": "S 600 AT long base (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215691, + "fields": { + "id_car_serie": 50624, + "name": "S 420 5AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215692, + "fields": { + "id_car_serie": 50624, + "name": "S 420 4AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215693, + "fields": { + "id_car_serie": 50624, + "name": "S 500 5AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215694, + "fields": { + "id_car_serie": 50624, + "name": "S 500 4AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215695, + "fields": { + "id_car_serie": 50624, + "name": "S 600 5AT (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215696, + "fields": { + "id_car_serie": 50624, + "name": "S 600 4AT (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215697, + "fields": { + "id_car_serie": 50625, + "name": "300 SE 2.8 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215698, + "fields": { + "id_car_serie": 50625, + "name": "300 SE AT long base (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215699, + "fields": { + "id_car_serie": 50625, + "name": "300 SE AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215700, + "fields": { + "id_car_serie": 50625, + "name": "300 SD Turbo AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215701, + "fields": { + "id_car_serie": 50625, + "name": "400 SE AT long base (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215702, + "fields": { + "id_car_serie": 50625, + "name": "400 SE AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215703, + "fields": { + "id_car_serie": 50625, + "name": "500 SE AT long base (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215704, + "fields": { + "id_car_serie": 50625, + "name": "500 SE AT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215705, + "fields": { + "id_car_serie": 50625, + "name": "600 SE AT (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215706, + "fields": { + "id_car_serie": 50625, + "name": "600 SE AT long base (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215707, + "fields": { + "id_car_serie": 50626, + "name": "500 SEC AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215708, + "fields": { + "id_car_serie": 50626, + "name": "600 SEC AT (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215709, + "fields": { + "id_car_serie": 44995, + "name": "V 250 BlueTEC 7G-Tronic Plus (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215710, + "fields": { + "id_car_serie": 44995, + "name": "V 220 CDI 7G-Tronic Plus (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215711, + "fields": { + "id_car_serie": 44995, + "name": "V 200 CDI 7G-Tronic Plus (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215712, + "fields": { + "id_car_serie": 44995, + "name": "V 200 CDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215713, + "fields": { + "id_car_serie": 44995, + "name": "V 220 CDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215714, + "fields": { + "id_car_serie": 44995, + "name": "V 250 d AT L1 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215715, + "fields": { + "id_car_serie": 44995, + "name": "V 250 d AT L2 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215716, + "fields": { + "id_car_serie": 44995, + "name": "V 250 d AT L3 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215717, + "fields": { + "id_car_serie": 44995, + "name": "V 200 d MT L1 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215718, + "fields": { + "id_car_serie": 44995, + "name": "V 200 d MT L2 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215719, + "fields": { + "id_car_serie": 44995, + "name": "V 200 d MT L3 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215720, + "fields": { + "id_car_serie": 44995, + "name": "V 220 d MT L1 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215721, + "fields": { + "id_car_serie": 44995, + "name": "V 220 d MT L2 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215722, + "fields": { + "id_car_serie": 44995, + "name": "V 220 d MT L3 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215723, + "fields": { + "id_car_serie": 50637, + "name": "1.5 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215724, + "fields": { + "id_car_serie": 50637, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215725, + "fields": { + "id_car_serie": 50638, + "name": "1.5 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215726, + "fields": { + "id_car_serie": 50638, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215727, + "fields": { + "id_car_serie": 50639, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215728, + "fields": { + "id_car_serie": 50639, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215729, + "fields": { + "id_car_serie": 50643, + "name": "2.0 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215730, + "fields": { + "id_car_serie": 50643, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215731, + "fields": { + "id_car_serie": 50644, + "name": "2.0 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215732, + "fields": { + "id_car_serie": 50644, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215733, + "fields": { + "id_car_serie": 50645, + "name": "1.6 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215734, + "fields": { + "id_car_serie": 50645, + "name": "1.6 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215735, + "fields": { + "id_car_serie": 50646, + "name": "1.6 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215736, + "fields": { + "id_car_serie": 50647, + "name": "1.6 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215737, + "fields": { + "id_car_serie": 50648, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215738, + "fields": { + "id_car_serie": 50648, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215739, + "fields": { + "id_car_serie": 50651, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215740, + "fields": { + "id_car_serie": 50651, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215741, + "fields": { + "id_car_serie": 50651, + "name": "2.0 MT TD (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215742, + "fields": { + "id_car_serie": 50651, + "name": "2.0 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215743, + "fields": { + "id_car_serie": 50652, + "name": "1.6 MT GLXi 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215744, + "fields": { + "id_car_serie": 50652, + "name": "1.6 MT GLXi (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215745, + "fields": { + "id_car_serie": 50653, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215746, + "fields": { + "id_car_serie": 50653, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215747, + "fields": { + "id_car_serie": 50653, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215748, + "fields": { + "id_car_serie": 50653, + "name": "1.8 MT GTi (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215749, + "fields": { + "id_car_serie": 50653, + "name": "1.8 MT 4x4 (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215750, + "fields": { + "id_car_serie": 50655, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215751, + "fields": { + "id_car_serie": 50655, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215752, + "fields": { + "id_car_serie": 50662, + "name": "1.6 AT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215753, + "fields": { + "id_car_serie": 50662, + "name": "1.6 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215754, + "fields": { + "id_car_serie": 50662, + "name": "1.8 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215755, + "fields": { + "id_car_serie": 50662, + "name": "1.8 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215756, + "fields": { + "id_car_serie": 50662, + "name": "1.8 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215757, + "fields": { + "id_car_serie": 50662, + "name": "1.8 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215758, + "fields": { + "id_car_serie": 50663, + "name": "1.6 AT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215759, + "fields": { + "id_car_serie": 50663, + "name": "1.6 4MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215760, + "fields": { + "id_car_serie": 50663, + "name": "1.6 5MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215761, + "fields": { + "id_car_serie": 50663, + "name": "1.8 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215762, + "fields": { + "id_car_serie": 50663, + "name": "1.8 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215763, + "fields": { + "id_car_serie": 50663, + "name": "1.8 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215764, + "fields": { + "id_car_serie": 50663, + "name": "1.8 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215784, + "fields": { + "id_car_serie": 50676, + "name": "1.5 TDI 2WD MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215785, + "fields": { + "id_car_serie": 50676, + "name": "1.6 TDI 4WD MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215786, + "fields": { + "id_car_serie": 50676, + "name": "1.6 TDI 2WD MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215787, + "fields": { + "id_car_serie": 50676, + "name": "1.6 2WD MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215788, + "fields": { + "id_car_serie": 50676, + "name": "2.0 dCi AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215789, + "fields": { + "id_car_serie": 50676, + "name": "2.0 4WD MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215790, + "fields": { + "id_car_serie": 50676, + "name": "2.0 2WD MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215791, + "fields": { + "id_car_serie": 50676, + "name": "2.0 4WD CVT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215798, + "fields": { + "id_car_serie": 50678, + "name": "4.0 AT AWD (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215799, + "fields": { + "id_car_serie": 50679, + "name": "2.5 AT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215800, + "fields": { + "id_car_serie": 50679, + "name": "2.5 MT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215801, + "fields": { + "id_car_serie": 50679, + "name": "4.0 AT 4WD (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215802, + "fields": { + "id_car_serie": 50679, + "name": "4.0 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215803, + "fields": { + "id_car_serie": 50679, + "name": "4.0 MT 4WD (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215804, + "fields": { + "id_car_serie": 50679, + "name": "4.0 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215805, + "fields": { + "id_car_serie": 50680, + "name": "3.3 AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215806, + "fields": { + "id_car_serie": 50680, + "name": "3.3 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215807, + "fields": { + "id_car_serie": 50680, + "name": "3.3 AT AWD LWB (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215808, + "fields": { + "id_car_serie": 50680, + "name": "3.3 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215809, + "fields": { + "id_car_serie": 50680, + "name": "3.3 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215810, + "fields": { + "id_car_serie": 50680, + "name": "3.3 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215811, + "fields": { + "id_car_serie": 50681, + "name": "2.4 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215812, + "fields": { + "id_car_serie": 50681, + "name": "2.4 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215813, + "fields": { + "id_car_serie": 50681, + "name": "3.3 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215814, + "fields": { + "id_car_serie": 50681, + "name": "3.3 MT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215815, + "fields": { + "id_car_serie": 50682, + "name": "2.4 AT RWD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215816, + "fields": { + "id_car_serie": 50682, + "name": "2.4 MT AWD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215817, + "fields": { + "id_car_serie": 50682, + "name": "2.4 MT RWD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215818, + "fields": { + "id_car_serie": 50683, + "name": "2.0 Turbo MT (187 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215819, + "fields": { + "id_car_serie": 50684, + "name": "1.8 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215820, + "fields": { + "id_car_serie": 50684, + "name": "1.8 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215821, + "fields": { + "id_car_serie": 50684, + "name": "1.8 Turbo MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215822, + "fields": { + "id_car_serie": 50684, + "name": "1.8 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215823, + "fields": { + "id_car_serie": 50684, + "name": "2.0 Turbo MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215824, + "fields": { + "id_car_serie": 50684, + "name": "2.0 Turbo MT (187 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215825, + "fields": { + "id_car_serie": 50685, + "name": "1.8 Turbo MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215826, + "fields": { + "id_car_serie": 50685, + "name": "2.0 AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215827, + "fields": { + "id_car_serie": 50685, + "name": "2.0 RS MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215828, + "fields": { + "id_car_serie": 50685, + "name": "2.0 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215829, + "fields": { + "id_car_serie": 50686, + "name": "1.8 Turbo AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215830, + "fields": { + "id_car_serie": 50686, + "name": "2.0 AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215831, + "fields": { + "id_car_serie": 50686, + "name": "2.0 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215835, + "fields": { + "id_car_serie": 50695, + "name": "2.0 AT Abbey Road Limousine (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215836, + "fields": { + "id_car_serie": 50695, + "name": "2.0 TD AT Abbey Road Limousine (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215837, + "fields": { + "id_car_serie": 50695, + "name": "2.0 TD AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215838, + "fields": { + "id_car_serie": 50695, + "name": "2.0 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215839, + "fields": { + "id_car_serie": 50695, + "name": "2.0 TD MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215840, + "fields": { + "id_car_serie": 50695, + "name": "2.0 MT Long (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215841, + "fields": { + "id_car_serie": 50695, + "name": "2.0 TD MT Long (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215842, + "fields": { + "id_car_serie": 50695, + "name": "2.0 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215843, + "fields": { + "id_car_serie": 50695, + "name": "2.7 D AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215844, + "fields": { + "id_car_serie": 50695, + "name": "2.7 TD AT GT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215845, + "fields": { + "id_car_serie": 50695, + "name": "2.7 TD AT 4WD GT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215846, + "fields": { + "id_car_serie": 50695, + "name": "2.7 TD AT GT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215847, + "fields": { + "id_car_serie": 50695, + "name": "2.7 TD AT 4WD GT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215848, + "fields": { + "id_car_serie": 50695, + "name": "2.7 TD AT GT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215849, + "fields": { + "id_car_serie": 50695, + "name": "2.7 TD AT 4WD GT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215850, + "fields": { + "id_car_serie": 50695, + "name": "2.7 D AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215851, + "fields": { + "id_car_serie": 50695, + "name": "2.7 D MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215852, + "fields": { + "id_car_serie": 50695, + "name": "2.7 D MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215853, + "fields": { + "id_car_serie": 50695, + "name": "2.7 D MT 4WD Long (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215854, + "fields": { + "id_car_serie": 50695, + "name": "3.0 AT GT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215868, + "fields": { + "id_car_serie": 50699, + "name": "0.7 turbo AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215869, + "fields": { + "id_car_serie": 50699, + "name": "0.7 turbo MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215870, + "fields": { + "id_car_serie": 50700, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215871, + "fields": { + "id_car_serie": 50700, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215872, + "fields": { + "id_car_serie": 50700, + "name": "1.5 TD MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215873, + "fields": { + "id_car_serie": 50700, + "name": "1.5 D MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215874, + "fields": { + "id_car_serie": 50700, + "name": "1.5 TD MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215875, + "fields": { + "id_car_serie": 50700, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215876, + "fields": { + "id_car_serie": 50701, + "name": "1.2 Xtronic (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215877, + "fields": { + "id_car_serie": 50702, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215878, + "fields": { + "id_car_serie": 50703, + "name": "1.6 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215879, + "fields": { + "id_car_serie": 50704, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215880, + "fields": { + "id_car_serie": 50704, + "name": "1.5 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215881, + "fields": { + "id_car_serie": 50704, + "name": "1.5 Xtronic (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215882, + "fields": { + "id_car_serie": 50707, + "name": "1.5 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215883, + "fields": { + "id_car_serie": 50707, + "name": "1.5 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215884, + "fields": { + "id_car_serie": 50707, + "name": "1.8 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215885, + "fields": { + "id_car_serie": 50707, + "name": "1.8 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215886, + "fields": { + "id_car_serie": 50708, + "name": "1.6 Flex-Fuel AT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215887, + "fields": { + "id_car_serie": 50708, + "name": "1.6 Flex-Fuel MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215888, + "fields": { + "id_car_serie": 50708, + "name": "1.8 Flex-Fuel AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215889, + "fields": { + "id_car_serie": 50708, + "name": "1.8 Flex-Fuel MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215890, + "fields": { + "id_car_serie": 50709, + "name": "1.5 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215891, + "fields": { + "id_car_serie": 50709, + "name": "1.5 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215892, + "fields": { + "id_car_serie": 50709, + "name": "1.8 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215893, + "fields": { + "id_car_serie": 50710, + "name": "1.6 Flex-Fuel MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215894, + "fields": { + "id_car_serie": 50710, + "name": "1.8 Flex-Fuel AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215895, + "fields": { + "id_car_serie": 50711, + "name": "1.5 dCi MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215896, + "fields": { + "id_car_serie": 50711, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215897, + "fields": { + "id_car_serie": 50711, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215898, + "fields": { + "id_car_serie": 50712, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215899, + "fields": { + "id_car_serie": 50713, + "name": "2.0 AT 5seat (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215900, + "fields": { + "id_car_serie": 50713, + "name": "2.0 AT 6seat (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215901, + "fields": { + "id_car_serie": 50713, + "name": "2.5 Turbo dCi AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215902, + "fields": { + "id_car_serie": 50713, + "name": "2.5 Turbo dCi AT 4WD 6seat (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215903, + "fields": { + "id_car_serie": 50713, + "name": "2.5 Turbo dCi AT 4WD 5seat (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215904, + "fields": { + "id_car_serie": 50713, + "name": "2.5 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215905, + "fields": { + "id_car_serie": 50713, + "name": "2.5 AT L2H2 Combi (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215906, + "fields": { + "id_car_serie": 50713, + "name": "2.5 AT L1H1 Combi (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215907, + "fields": { + "id_car_serie": 50713, + "name": "2.5 MT L1H1 Combi (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215908, + "fields": { + "id_car_serie": 50713, + "name": "2.5 Turbo dCi MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215909, + "fields": { + "id_car_serie": 50713, + "name": "2.5 MT L2H2 Combi (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215910, + "fields": { + "id_car_serie": 50713, + "name": "2.5 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215969, + "fields": { + "id_car_serie": 50717, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215970, + "fields": { + "id_car_serie": 50717, + "name": "2.4 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215971, + "fields": { + "id_car_serie": 50717, + "name": "3.3 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215977, + "fields": { + "id_car_serie": 53790, + "name": "2.5 AWD MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215994, + "fields": { + "id_car_serie": 50728, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215995, + "fields": { + "id_car_serie": 50728, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215996, + "fields": { + "id_car_serie": 50729, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215997, + "fields": { + "id_car_serie": 50729, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 215999, + "fields": { + "id_car_serie": 50735, + "name": "1.4 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216000, + "fields": { + "id_car_serie": 50735, + "name": "1.6 AT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216001, + "fields": { + "id_car_serie": 50735, + "name": "1.6 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216002, + "fields": { + "id_car_serie": 50737, + "name": "1.4 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216003, + "fields": { + "id_car_serie": 50737, + "name": "1.4 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216004, + "fields": { + "id_car_serie": 50737, + "name": "1.6 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216005, + "fields": { + "id_car_serie": 50737, + "name": "1.6 SSS AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216006, + "fields": { + "id_car_serie": 50737, + "name": "1.6 SSS 5MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216007, + "fields": { + "id_car_serie": 50737, + "name": "1.6 SSS MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216008, + "fields": { + "id_car_serie": 50737, + "name": "1.6 5MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216009, + "fields": { + "id_car_serie": 50737, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216010, + "fields": { + "id_car_serie": 50737, + "name": "1.6 SSS MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216011, + "fields": { + "id_car_serie": 50737, + "name": "1.6 SSS 5MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216012, + "fields": { + "id_car_serie": 50738, + "name": "1.4 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216013, + "fields": { + "id_car_serie": 50738, + "name": "1.4 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216014, + "fields": { + "id_car_serie": 50738, + "name": "1.6 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216015, + "fields": { + "id_car_serie": 50738, + "name": "1.6 SSS AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216016, + "fields": { + "id_car_serie": 50738, + "name": "1.6 SSS 5MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216017, + "fields": { + "id_car_serie": 50738, + "name": "1.6 SSS MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216018, + "fields": { + "id_car_serie": 50738, + "name": "1.6 5MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216019, + "fields": { + "id_car_serie": 50738, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216020, + "fields": { + "id_car_serie": 50738, + "name": "1.6 SSS MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216021, + "fields": { + "id_car_serie": 50738, + "name": "1.6 SSS 5MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216022, + "fields": { + "id_car_serie": 50739, + "name": "1.6 AT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216023, + "fields": { + "id_car_serie": 50739, + "name": "1.6 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216024, + "fields": { + "id_car_serie": 50739, + "name": "1.8 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216025, + "fields": { + "id_car_serie": 50739, + "name": "1.8 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216026, + "fields": { + "id_car_serie": 50739, + "name": "1.8 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216027, + "fields": { + "id_car_serie": 50739, + "name": "1.8 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216028, + "fields": { + "id_car_serie": 50741, + "name": "3.8 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216029, + "fields": { + "id_car_serie": 50741, + "name": "3.8 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216030, + "fields": { + "id_car_serie": 50741, + "name": "3.8 Supercharger AT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216033, + "fields": { + "id_car_serie": 50743, + "name": "1.4 Turbo ECOTEC MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216034, + "fields": { + "id_car_serie": 50743, + "name": "1.6 Turbo AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216035, + "fields": { + "id_car_serie": 50743, + "name": "1.6 Turbo MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216036, + "fields": { + "id_car_serie": 50743, + "name": "2.0 CDTI ECOTEC AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216037, + "fields": { + "id_car_serie": 50743, + "name": "2.0 CDTI BiTurbo MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216038, + "fields": { + "id_car_serie": 50743, + "name": "2.0 CDTI ECOTEC MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216156, + "fields": { + "id_car_serie": 50753, + "name": "0.7 MT (31 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216249, + "fields": { + "id_car_serie": 50763, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216250, + "fields": { + "id_car_serie": 50763, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216251, + "fields": { + "id_car_serie": 50764, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216252, + "fields": { + "id_car_serie": 50764, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216253, + "fields": { + "id_car_serie": 50765, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216254, + "fields": { + "id_car_serie": 50766, + "name": "4.1 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216255, + "fields": { + "id_car_serie": 50767, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216256, + "fields": { + "id_car_serie": 50767, + "name": "1.1 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216263, + "fields": { + "id_car_serie": 50779, + "name": "1.3 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216264, + "fields": { + "id_car_serie": 15075, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216265, + "fields": { + "id_car_serie": 15075, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216266, + "fields": { + "id_car_serie": 9038, + "name": "1.4 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216267, + "fields": { + "id_car_serie": 9038, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216268, + "fields": { + "id_car_serie": 9038, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216271, + "fields": { + "id_car_serie": 49054, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216272, + "fields": { + "id_car_serie": 49055, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216273, + "fields": { + "id_car_serie": 9041, + "name": "1.4 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216274, + "fields": { + "id_car_serie": 9041, + "name": "1.4 AT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216275, + "fields": { + "id_car_serie": 9041, + "name": "1.4 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216276, + "fields": { + "id_car_serie": 9041, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216277, + "fields": { + "id_car_serie": 9041, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216278, + "fields": { + "id_car_serie": 9041, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216279, + "fields": { + "id_car_serie": 9040, + "name": "1.4 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216280, + "fields": { + "id_car_serie": 9040, + "name": "1.4 AT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216281, + "fields": { + "id_car_serie": 9040, + "name": "1.4 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216282, + "fields": { + "id_car_serie": 9040, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216283, + "fields": { + "id_car_serie": 9040, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216284, + "fields": { + "id_car_serie": 9040, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216643, + "fields": { + "id_car_serie": 50823, + "name": "1.2 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216644, + "fields": { + "id_car_serie": 50823, + "name": "1.5 dCi MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216645, + "fields": { + "id_car_serie": 50824, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216646, + "fields": { + "id_car_serie": 50824, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216647, + "fields": { + "id_car_serie": 50825, + "name": "1.5 dCi MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216648, + "fields": { + "id_car_serie": 50825, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216649, + "fields": { + "id_car_serie": 50825, + "name": "1.5 X-Tronic (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216650, + "fields": { + "id_car_serie": 50826, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216651, + "fields": { + "id_car_serie": 50826, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216652, + "fields": { + "id_car_serie": 50826, + "name": "1.5 dCi MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216653, + "fields": { + "id_car_serie": 50826, + "name": "1.5 dCi MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216654, + "fields": { + "id_car_serie": 50826, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216655, + "fields": { + "id_car_serie": 50827, + "name": "1.2 MT EURO-4 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216656, + "fields": { + "id_car_serie": 50827, + "name": "1.2 MT EURO-2 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216657, + "fields": { + "id_car_serie": 50827, + "name": "1.2 MT EURO-3 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216658, + "fields": { + "id_car_serie": 50827, + "name": "1.4 AT EURO-2 (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216659, + "fields": { + "id_car_serie": 50827, + "name": "1.4 AT EURO-3 (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216660, + "fields": { + "id_car_serie": 50827, + "name": "1.4 MT EURO-4 (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216661, + "fields": { + "id_car_serie": 50827, + "name": "1.4 MT EURO-3 (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216662, + "fields": { + "id_car_serie": 50827, + "name": "1.4 MT EURO-2 (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216663, + "fields": { + "id_car_serie": 50827, + "name": "1.4 MT EURO-4 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216664, + "fields": { + "id_car_serie": 50827, + "name": "1.4 MT EURO-3 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216665, + "fields": { + "id_car_serie": 50827, + "name": "1.4 MT EURO-2 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216666, + "fields": { + "id_car_serie": 50827, + "name": "1.5 dCi MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216667, + "fields": { + "id_car_serie": 50827, + "name": "1.5 dCi MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216668, + "fields": { + "id_car_serie": 50827, + "name": "1.5 dCi MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216669, + "fields": { + "id_car_serie": 50827, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216670, + "fields": { + "id_car_serie": 50827, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216671, + "fields": { + "id_car_serie": 50828, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216672, + "fields": { + "id_car_serie": 50828, + "name": "1.4 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216673, + "fields": { + "id_car_serie": 50828, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216674, + "fields": { + "id_car_serie": 50828, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216675, + "fields": { + "id_car_serie": 50828, + "name": "1.5 dCi MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216676, + "fields": { + "id_car_serie": 50828, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216677, + "fields": { + "id_car_serie": 50829, + "name": "3.8 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216678, + "fields": { + "id_car_serie": 50830, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216679, + "fields": { + "id_car_serie": 50830, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216680, + "fields": { + "id_car_serie": 50830, + "name": "2.0 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216681, + "fields": { + "id_car_serie": 50830, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216682, + "fields": { + "id_car_serie": 50830, + "name": "2.0 TD MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216683, + "fields": { + "id_car_serie": 50831, + "name": "2.2 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216684, + "fields": { + "id_car_serie": 50831, + "name": "2.2 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216685, + "fields": { + "id_car_serie": 50831, + "name": "3.0 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216686, + "fields": { + "id_car_serie": 50832, + "name": "2.2 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216687, + "fields": { + "id_car_serie": 50832, + "name": "3.0 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216688, + "fields": { + "id_car_serie": 50833, + "name": "1.9 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216689, + "fields": { + "id_car_serie": 50833, + "name": "1.9 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216690, + "fields": { + "id_car_serie": 50833, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216691, + "fields": { + "id_car_serie": 50833, + "name": "1.9 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216692, + "fields": { + "id_car_serie": 50834, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216693, + "fields": { + "id_car_serie": 50834, + "name": "1.9 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216694, + "fields": { + "id_car_serie": 50835, + "name": "1.9 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216695, + "fields": { + "id_car_serie": 50835, + "name": "1.9 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216696, + "fields": { + "id_car_serie": 50835, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216697, + "fields": { + "id_car_serie": 50835, + "name": "1.9 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216698, + "fields": { + "id_car_serie": 50836, + "name": "1.9 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216699, + "fields": { + "id_car_serie": 50836, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216700, + "fields": { + "id_car_serie": 50836, + "name": "1.9 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216701, + "fields": { + "id_car_serie": 50837, + "name": "1.9 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216702, + "fields": { + "id_car_serie": 50837, + "name": "1.9 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216703, + "fields": { + "id_car_serie": 50837, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216704, + "fields": { + "id_car_serie": 50837, + "name": "1.9 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216705, + "fields": { + "id_car_serie": 50838, + "name": "1.9 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216706, + "fields": { + "id_car_serie": 50838, + "name": "1.9 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216707, + "fields": { + "id_car_serie": 50838, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216708, + "fields": { + "id_car_serie": 50838, + "name": "1.9 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216709, + "fields": { + "id_car_serie": 50839, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216710, + "fields": { + "id_car_serie": 50839, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216711, + "fields": { + "id_car_serie": 50839, + "name": "1.9 SDI MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216712, + "fields": { + "id_car_serie": 50840, + "name": "1.0 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216713, + "fields": { + "id_car_serie": 50840, + "name": "1.2 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216714, + "fields": { + "id_car_serie": 50840, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216715, + "fields": { + "id_car_serie": 50841, + "name": "1.0 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216716, + "fields": { + "id_car_serie": 50841, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216717, + "fields": { + "id_car_serie": 50841, + "name": "1.2 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216728, + "fields": { + "id_car_serie": 50844, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216729, + "fields": { + "id_car_serie": 50844, + "name": "2.9 D MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216730, + "fields": { + "id_car_serie": 50845, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216731, + "fields": { + "id_car_serie": 50845, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216732, + "fields": { + "id_car_serie": 50845, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216733, + "fields": { + "id_car_serie": 50846, + "name": "1.4 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216734, + "fields": { + "id_car_serie": 50846, + "name": "1.4 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216735, + "fields": { + "id_car_serie": 50846, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216736, + "fields": { + "id_car_serie": 50848, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216737, + "fields": { + "id_car_serie": 50848, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216738, + "fields": { + "id_car_serie": 50848, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216739, + "fields": { + "id_car_serie": 50849, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216740, + "fields": { + "id_car_serie": 50850, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216741, + "fields": { + "id_car_serie": 50850, + "name": "2.0 MT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216742, + "fields": { + "id_car_serie": 50851, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216743, + "fields": { + "id_car_serie": 50852, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216744, + "fields": { + "id_car_serie": 50852, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216745, + "fields": { + "id_car_serie": 50852, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216746, + "fields": { + "id_car_serie": 50853, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216747, + "fields": { + "id_car_serie": 50853, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216748, + "fields": { + "id_car_serie": 50853, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216749, + "fields": { + "id_car_serie": 50853, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216750, + "fields": { + "id_car_serie": 50854, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216751, + "fields": { + "id_car_serie": 50855, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216752, + "fields": { + "id_car_serie": 50855, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216753, + "fields": { + "id_car_serie": 50856, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216754, + "fields": { + "id_car_serie": 50856, + "name": "2.0 MT (119 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216755, + "fields": { + "id_car_serie": 50856, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216756, + "fields": { + "id_car_serie": 50856, + "name": "2.0 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216757, + "fields": { + "id_car_serie": 50857, + "name": "1.4 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216758, + "fields": { + "id_car_serie": 50857, + "name": "2.0 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216759, + "fields": { + "id_car_serie": 50858, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216760, + "fields": { + "id_car_serie": 50859, + "name": "1.3 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216761, + "fields": { + "id_car_serie": 50859, + "name": "1.3 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216762, + "fields": { + "id_car_serie": 50859, + "name": "1.5 AT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216763, + "fields": { + "id_car_serie": 50859, + "name": "1.5 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216764, + "fields": { + "id_car_serie": 50860, + "name": "1.3 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216765, + "fields": { + "id_car_serie": 50860, + "name": "1.3 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216766, + "fields": { + "id_car_serie": 50860, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216767, + "fields": { + "id_car_serie": 50860, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216768, + "fields": { + "id_car_serie": 50861, + "name": "2.0 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216769, + "fields": { + "id_car_serie": 50861, + "name": "2.0 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216770, + "fields": { + "id_car_serie": 50861, + "name": "2.4 TD AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216785, + "fields": { + "id_car_serie": 50865, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216786, + "fields": { + "id_car_serie": 50865, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216787, + "fields": { + "id_car_serie": 50865, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216788, + "fields": { + "id_car_serie": 50865, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216789, + "fields": { + "id_car_serie": 50865, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216790, + "fields": { + "id_car_serie": 50865, + "name": "1.6 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216791, + "fields": { + "id_car_serie": 50865, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216792, + "fields": { + "id_car_serie": 50865, + "name": "1.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216793, + "fields": { + "id_car_serie": 50865, + "name": "1.6 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216794, + "fields": { + "id_car_serie": 50865, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216795, + "fields": { + "id_car_serie": 50865, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216796, + "fields": { + "id_car_serie": 50865, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216797, + "fields": { + "id_car_serie": 50866, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216798, + "fields": { + "id_car_serie": 50866, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216799, + "fields": { + "id_car_serie": 50866, + "name": "1.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216800, + "fields": { + "id_car_serie": 50866, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216801, + "fields": { + "id_car_serie": 50866, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216802, + "fields": { + "id_car_serie": 50867, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216803, + "fields": { + "id_car_serie": 50867, + "name": "1.8 SMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216804, + "fields": { + "id_car_serie": 50868, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216805, + "fields": { + "id_car_serie": 50869, + "name": "1.8 CVT 7seat (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216806, + "fields": { + "id_car_serie": 50869, + "name": "1.8 CVT 5seat (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216807, + "fields": { + "id_car_serie": 50870, + "name": "1.8 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216808, + "fields": { + "id_car_serie": 50871, + "name": "2.4 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216809, + "fields": { + "id_car_serie": 50872, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216810, + "fields": { + "id_car_serie": 50872, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216811, + "fields": { + "id_car_serie": 50872, + "name": "1.8 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216812, + "fields": { + "id_car_serie": 50872, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216813, + "fields": { + "id_car_serie": 50872, + "name": "1.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216814, + "fields": { + "id_car_serie": 50873, + "name": "2.5 AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216815, + "fields": { + "id_car_serie": 50873, + "name": "2.5 AT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216816, + "fields": { + "id_car_serie": 50873, + "name": "2.5 MT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216817, + "fields": { + "id_car_serie": 50874, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216818, + "fields": { + "id_car_serie": 50874, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216819, + "fields": { + "id_car_serie": 50875, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216820, + "fields": { + "id_car_serie": 50875, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216821, + "fields": { + "id_car_serie": 50875, + "name": "1.4 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216822, + "fields": { + "id_car_serie": 50875, + "name": "1.6 Sport MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216823, + "fields": { + "id_car_serie": 50875, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216824, + "fields": { + "id_car_serie": 50876, + "name": "1.3 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216825, + "fields": { + "id_car_serie": 50876, + "name": "1.6 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216826, + "fields": { + "id_car_serie": 50877, + "name": "2.0 Tiptronic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 216827, + "fields": { + "id_car_serie": 50877, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217368, + "fields": { + "id_car_serie": 50891, + "name": "1.4 TSI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217369, + "fields": { + "id_car_serie": 50891, + "name": "1.4 TSI DSG (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217370, + "fields": { + "id_car_serie": 50891, + "name": "1.6 Tiptronic (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217371, + "fields": { + "id_car_serie": 50891, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217372, + "fields": { + "id_car_serie": 50891, + "name": "2.0 Tiptronic (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217373, + "fields": { + "id_car_serie": 50891, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217374, + "fields": { + "id_car_serie": 50892, + "name": "1.4 TSI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217375, + "fields": { + "id_car_serie": 50892, + "name": "1.4 TSI DSG (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217376, + "fields": { + "id_car_serie": 50892, + "name": "1.6 Tiptronic (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217377, + "fields": { + "id_car_serie": 50892, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217378, + "fields": { + "id_car_serie": 50892, + "name": "2.0 Tiptronic (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217379, + "fields": { + "id_car_serie": 50892, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217380, + "fields": { + "id_car_serie": 50893, + "name": "2.0 TSI DSG (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217381, + "fields": { + "id_car_serie": 50894, + "name": "2.0 TSI DSG (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217382, + "fields": { + "id_car_serie": 50895, + "name": "1.8 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217383, + "fields": { + "id_car_serie": 50895, + "name": "1.8 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217384, + "fields": { + "id_car_serie": 50895, + "name": "2.0 TSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217385, + "fields": { + "id_car_serie": 50895, + "name": "2.0 TSI DSG (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217386, + "fields": { + "id_car_serie": 50897, + "name": "1.8 TSI Tiptronic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217387, + "fields": { + "id_car_serie": 50897, + "name": "1.8 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217388, + "fields": { + "id_car_serie": 50897, + "name": "2.0 TSI Tiptronic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217389, + "fields": { + "id_car_serie": 50897, + "name": "2.0 TSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217390, + "fields": { + "id_car_serie": 50898, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217391, + "fields": { + "id_car_serie": 50898, + "name": "1.6 4AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217392, + "fields": { + "id_car_serie": 50898, + "name": "1.6 6AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217393, + "fields": { + "id_car_serie": 50898, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217394, + "fields": { + "id_car_serie": 50898, + "name": "1.8 5V Turbo 6AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217395, + "fields": { + "id_car_serie": 50898, + "name": "1.8 5V Turbo 4AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217396, + "fields": { + "id_car_serie": 50898, + "name": "1.8 5V Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217397, + "fields": { + "id_car_serie": 50898, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217398, + "fields": { + "id_car_serie": 50898, + "name": "2.0 4AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217399, + "fields": { + "id_car_serie": 50898, + "name": "2.0 6AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217400, + "fields": { + "id_car_serie": 50898, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217401, + "fields": { + "id_car_serie": 50899, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217402, + "fields": { + "id_car_serie": 50899, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217403, + "fields": { + "id_car_serie": 50899, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217404, + "fields": { + "id_car_serie": 50899, + "name": "1.8 5V Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217405, + "fields": { + "id_car_serie": 50899, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217406, + "fields": { + "id_car_serie": 50899, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217407, + "fields": { + "id_car_serie": 50899, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217408, + "fields": { + "id_car_serie": 50900, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217409, + "fields": { + "id_car_serie": 50900, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217410, + "fields": { + "id_car_serie": 50900, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217411, + "fields": { + "id_car_serie": 50900, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217412, + "fields": { + "id_car_serie": 50900, + "name": "1.8 5V Turbo AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217413, + "fields": { + "id_car_serie": 50900, + "name": "1.8 5V Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217414, + "fields": { + "id_car_serie": 50900, + "name": "1.9 TDI AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217415, + "fields": { + "id_car_serie": 50900, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217416, + "fields": { + "id_car_serie": 50900, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217417, + "fields": { + "id_car_serie": 50900, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217418, + "fields": { + "id_car_serie": 50900, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217419, + "fields": { + "id_car_serie": 50900, + "name": "2.3 V5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217420, + "fields": { + "id_car_serie": 50901, + "name": "3.2 V6 4Motion MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217421, + "fields": { + "id_car_serie": 50902, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217422, + "fields": { + "id_car_serie": 50902, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217423, + "fields": { + "id_car_serie": 50902, + "name": "1.8 5V Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217424, + "fields": { + "id_car_serie": 50902, + "name": "1.9 TDI AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217425, + "fields": { + "id_car_serie": 50902, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217426, + "fields": { + "id_car_serie": 50902, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217427, + "fields": { + "id_car_serie": 50902, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217428, + "fields": { + "id_car_serie": 50903, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217429, + "fields": { + "id_car_serie": 50903, + "name": "1.8 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217430, + "fields": { + "id_car_serie": 50904, + "name": "1.0 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217431, + "fields": { + "id_car_serie": 50904, + "name": "1.0 T MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217432, + "fields": { + "id_car_serie": 50904, + "name": "1.0 16V MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217433, + "fields": { + "id_car_serie": 50904, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217434, + "fields": { + "id_car_serie": 50904, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217435, + "fields": { + "id_car_serie": 50904, + "name": "1.8 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217436, + "fields": { + "id_car_serie": 50904, + "name": "2.0 16V MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217437, + "fields": { + "id_car_serie": 50904, + "name": "2.0 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217438, + "fields": { + "id_car_serie": 50905, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217439, + "fields": { + "id_car_serie": 50905, + "name": "1.8 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217440, + "fields": { + "id_car_serie": 50905, + "name": "1.8 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217441, + "fields": { + "id_car_serie": 50905, + "name": "1.8 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217442, + "fields": { + "id_car_serie": 50906, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217443, + "fields": { + "id_car_serie": 50907, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217444, + "fields": { + "id_car_serie": 50907, + "name": "1.8 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217445, + "fields": { + "id_car_serie": 50908, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217446, + "fields": { + "id_car_serie": 50909, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217447, + "fields": { + "id_car_serie": 50909, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217448, + "fields": { + "id_car_serie": 50909, + "name": "2.0 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217449, + "fields": { + "id_car_serie": 50909, + "name": "2.0 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217450, + "fields": { + "id_car_serie": 50911, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217451, + "fields": { + "id_car_serie": 50911, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217452, + "fields": { + "id_car_serie": 50911, + "name": "1.9 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217453, + "fields": { + "id_car_serie": 50911, + "name": "1.9 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217454, + "fields": { + "id_car_serie": 50912, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217455, + "fields": { + "id_car_serie": 50912, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217456, + "fields": { + "id_car_serie": 50912, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217457, + "fields": { + "id_car_serie": 50912, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217458, + "fields": { + "id_car_serie": 50913, + "name": "2.5 Tiptronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217459, + "fields": { + "id_car_serie": 50913, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217460, + "fields": { + "id_car_serie": 50914, + "name": "2.5 Tiptronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217461, + "fields": { + "id_car_serie": 50914, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217462, + "fields": { + "id_car_serie": 50915, + "name": "1.6 D AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217463, + "fields": { + "id_car_serie": 50915, + "name": "1.6 D MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217464, + "fields": { + "id_car_serie": 50915, + "name": "1.7 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217465, + "fields": { + "id_car_serie": 50915, + "name": "1.7 AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217466, + "fields": { + "id_car_serie": 50915, + "name": "1.7 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217467, + "fields": { + "id_car_serie": 50915, + "name": "1.7 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217468, + "fields": { + "id_car_serie": 50916, + "name": "1.6 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217469, + "fields": { + "id_car_serie": 50916, + "name": "1.6 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217470, + "fields": { + "id_car_serie": 50917, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217471, + "fields": { + "id_car_serie": 50918, + "name": "1.6 D AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217472, + "fields": { + "id_car_serie": 50918, + "name": "1.6 D MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217473, + "fields": { + "id_car_serie": 50918, + "name": "1.7 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217474, + "fields": { + "id_car_serie": 50918, + "name": "1.7 AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217475, + "fields": { + "id_car_serie": 50918, + "name": "1.7 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217476, + "fields": { + "id_car_serie": 50918, + "name": "1.7 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217477, + "fields": { + "id_car_serie": 50919, + "name": "1.5 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217478, + "fields": { + "id_car_serie": 50919, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217479, + "fields": { + "id_car_serie": 50919, + "name": "1.6 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217480, + "fields": { + "id_car_serie": 50919, + "name": "1.6 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217481, + "fields": { + "id_car_serie": 50920, + "name": "1.5 D AT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217482, + "fields": { + "id_car_serie": 50920, + "name": "1.5 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217483, + "fields": { + "id_car_serie": 50920, + "name": "1.5 D MT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217484, + "fields": { + "id_car_serie": 50920, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217485, + "fields": { + "id_car_serie": 50920, + "name": "1.6 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217486, + "fields": { + "id_car_serie": 50920, + "name": "1.6 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217487, + "fields": { + "id_car_serie": 50921, + "name": "1.5 D AT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217488, + "fields": { + "id_car_serie": 50921, + "name": "1.5 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217489, + "fields": { + "id_car_serie": 50921, + "name": "1.5 D MT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217490, + "fields": { + "id_car_serie": 50921, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217491, + "fields": { + "id_car_serie": 50921, + "name": "1.6 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217492, + "fields": { + "id_car_serie": 50921, + "name": "1.6 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217493, + "fields": { + "id_car_serie": 50922, + "name": "1.4 TSI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217494, + "fields": { + "id_car_serie": 50922, + "name": "1.4 TSI DSG (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217495, + "fields": { + "id_car_serie": 50922, + "name": "1.6 Tiptronic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217496, + "fields": { + "id_car_serie": 50922, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217497, + "fields": { + "id_car_serie": 50922, + "name": "1.8 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217498, + "fields": { + "id_car_serie": 50923, + "name": "1.4 TSI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217499, + "fields": { + "id_car_serie": 50923, + "name": "1.4 TSI DSG (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217500, + "fields": { + "id_car_serie": 50923, + "name": "1.6 Tiptronic (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217501, + "fields": { + "id_car_serie": 50923, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217502, + "fields": { + "id_car_serie": 50923, + "name": "1.8 TSI Tiptronic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217503, + "fields": { + "id_car_serie": 50923, + "name": "1.8 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217504, + "fields": { + "id_car_serie": 50924, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217505, + "fields": { + "id_car_serie": 50925, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217506, + "fields": { + "id_car_serie": 50926, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217507, + "fields": { + "id_car_serie": 50930, + "name": "1.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217508, + "fields": { + "id_car_serie": 50931, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217509, + "fields": { + "id_car_serie": 50931, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217510, + "fields": { + "id_car_serie": 50932, + "name": "1.0 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217511, + "fields": { + "id_car_serie": 50932, + "name": "1.0 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217512, + "fields": { + "id_car_serie": 50932, + "name": "1.6 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217513, + "fields": { + "id_car_serie": 50932, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217514, + "fields": { + "id_car_serie": 50932, + "name": "1.6 i-Motion (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217515, + "fields": { + "id_car_serie": 50932, + "name": "1.6 i-Motion (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217516, + "fields": { + "id_car_serie": 50933, + "name": "1.0 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217517, + "fields": { + "id_car_serie": 50933, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217518, + "fields": { + "id_car_serie": 50934, + "name": "3.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217519, + "fields": { + "id_car_serie": 50938, + "name": "5.5 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217521, + "fields": { + "id_car_serie": 50943, + "name": "2.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217522, + "fields": { + "id_car_serie": 50945, + "name": "5.5 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217523, + "fields": { + "id_car_serie": 50945, + "name": "2.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217524, + "fields": { + "id_car_serie": 50946, + "name": "2.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217525, + "fields": { + "id_car_serie": 50947, + "name": "2.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217526, + "fields": { + "id_car_serie": 50948, + "name": "2.1 D MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217527, + "fields": { + "id_car_serie": 50948, + "name": "2.3 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217528, + "fields": { + "id_car_serie": 50948, + "name": "2.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217529, + "fields": { + "id_car_serie": 50948, + "name": "2.4 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217530, + "fields": { + "id_car_serie": 50949, + "name": "2.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217531, + "fields": { + "id_car_serie": 50949, + "name": "2.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217532, + "fields": { + "id_car_serie": 50950, + "name": "2.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217533, + "fields": { + "id_car_serie": 50950, + "name": "2.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217534, + "fields": { + "id_car_serie": 50951, + "name": "2.1 TD MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217535, + "fields": { + "id_car_serie": 50951, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217536, + "fields": { + "id_car_serie": 50951, + "name": "2.3i MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217537, + "fields": { + "id_car_serie": 50951, + "name": "2.3i MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217538, + "fields": { + "id_car_serie": 50951, + "name": "2.3 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217539, + "fields": { + "id_car_serie": 50951, + "name": "2.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217540, + "fields": { + "id_car_serie": 50951, + "name": "2.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217541, + "fields": { + "id_car_serie": 50951, + "name": "2.4 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217542, + "fields": { + "id_car_serie": 50951, + "name": "2.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217543, + "fields": { + "id_car_serie": 50951, + "name": "2.4 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217544, + "fields": { + "id_car_serie": 50952, + "name": "2.1 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217545, + "fields": { + "id_car_serie": 50952, + "name": "2.1 TD MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217546, + "fields": { + "id_car_serie": 50952, + "name": "2.3 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217547, + "fields": { + "id_car_serie": 50952, + "name": "2.3 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217548, + "fields": { + "id_car_serie": 50952, + "name": "2.4 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217549, + "fields": { + "id_car_serie": 50952, + "name": "2.4 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217550, + "fields": { + "id_car_serie": 50952, + "name": "2.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217551, + "fields": { + "id_car_serie": 50952, + "name": "2.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217552, + "fields": { + "id_car_serie": 50953, + "name": "2.1 TD MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217553, + "fields": { + "id_car_serie": 50953, + "name": "2.1 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217554, + "fields": { + "id_car_serie": 50953, + "name": "2.3 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217555, + "fields": { + "id_car_serie": 50953, + "name": "2.4 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217556, + "fields": { + "id_car_serie": 50953, + "name": "2.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217557, + "fields": { + "id_car_serie": 50954, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217558, + "fields": { + "id_car_serie": 50954, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217559, + "fields": { + "id_car_serie": 50954, + "name": "2.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217560, + "fields": { + "id_car_serie": 50954, + "name": "2.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217561, + "fields": { + "id_car_serie": 50954, + "name": "2.4 4MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217684, + "fields": { + "id_car_serie": 50975, + "name": "2.1 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217685, + "fields": { + "id_car_serie": 50976, + "name": "2.1 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217690, + "fields": { + "id_car_serie": 50979, + "name": "2217 2.8 D MT H1 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217691, + "fields": { + "id_car_serie": 50979, + "name": "22171 2.8 D MT H2 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217692, + "fields": { + "id_car_serie": 50979, + "name": "221717 2.8 D MT H2 AWD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217693, + "fields": { + "id_car_serie": 50979, + "name": "22177 2.8 D MT H1 AWD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217694, + "fields": { + "id_car_serie": 50979, + "name": "2217 2.9 MT H1 (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217695, + "fields": { + "id_car_serie": 50979, + "name": "22171 2.9 MT H2 (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217696, + "fields": { + "id_car_serie": 50979, + "name": "221717 2.9 MT H2 AWD (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217697, + "fields": { + "id_car_serie": 50979, + "name": "22177 2.9 MT H1 AWD (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217702, + "fields": { + "id_car_serie": 50981, + "name": "27527 2.8 TD MT AWD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217703, + "fields": { + "id_car_serie": 50981, + "name": "2752 2.8 TD MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217704, + "fields": { + "id_car_serie": 50981, + "name": "2752 2.9 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217705, + "fields": { + "id_car_serie": 50981, + "name": "27527 2.9 MT AWD (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217706, + "fields": { + "id_car_serie": 50982, + "name": "22171 2.1 MT TD H2 (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217707, + "fields": { + "id_car_serie": 50982, + "name": "2217 2.1 MT TD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217708, + "fields": { + "id_car_serie": 50982, + "name": "2217 2.1 MT TD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217709, + "fields": { + "id_car_serie": 50982, + "name": "22171 2.1 MT TD H2 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217710, + "fields": { + "id_car_serie": 50982, + "name": "2217 2.4 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217711, + "fields": { + "id_car_serie": 50982, + "name": "22171 2.5 MT H2 (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217712, + "fields": { + "id_car_serie": 50982, + "name": "22177 2.5 MT AWD (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217713, + "fields": { + "id_car_serie": 50982, + "name": "2217 2.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217714, + "fields": { + "id_car_serie": 50982, + "name": "221717 2.5 MT AWD H2 (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217715, + "fields": { + "id_car_serie": 50982, + "name": "22171 2.5 MT H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217716, + "fields": { + "id_car_serie": 50982, + "name": "22177 2.5 MT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217717, + "fields": { + "id_car_serie": 50982, + "name": "221717 2.5 MT AWD H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217718, + "fields": { + "id_car_serie": 50982, + "name": "2217 2.5 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217719, + "fields": { + "id_car_serie": 50982, + "name": "22171 2.5 MT H2 (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217720, + "fields": { + "id_car_serie": 50983, + "name": "2.1 TD MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217721, + "fields": { + "id_car_serie": 50983, + "name": "2.4 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217722, + "fields": { + "id_car_serie": 50983, + "name": "2.5 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217723, + "fields": { + "id_car_serie": 50983, + "name": "2.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217733, + "fields": { + "id_car_serie": 50986, + "name": "22171 2.1 TD MT H2 10 places (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217734, + "fields": { + "id_car_serie": 50986, + "name": "2217 2.1 TD MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217735, + "fields": { + "id_car_serie": 50986, + "name": "22171 2.1 TD MT H2 (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217736, + "fields": { + "id_car_serie": 50986, + "name": "2217 2.1 TD MT 10 places (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217737, + "fields": { + "id_car_serie": 50986, + "name": "2217 2.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217738, + "fields": { + "id_car_serie": 50986, + "name": "2217 2.3 MT 10 places (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217739, + "fields": { + "id_car_serie": 50986, + "name": "22171 2.3 MT H2 10 places (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217744, + "fields": { + "id_car_serie": 50988, + "name": "2.1 TD MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217745, + "fields": { + "id_car_serie": 50988, + "name": "2.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217746, + "fields": { + "id_car_serie": 50988, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217747, + "fields": { + "id_car_serie": 50988, + "name": "2.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217748, + "fields": { + "id_car_serie": 50989, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217757, + "fields": { + "id_car_serie": 50994, + "name": "2.4 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217759, + "fields": { + "id_car_serie": 50994, + "name": "2.7 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217760, + "fields": { + "id_car_serie": 50994, + "name": "2.7 5MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217761, + "fields": { + "id_car_serie": 50994, + "name": "2.9 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217766, + "fields": { + "id_car_serie": 50998, + "name": "31622 2.7 4MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217767, + "fields": { + "id_car_serie": 50998, + "name": "31622 2.7 5MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217768, + "fields": { + "id_car_serie": 50998, + "name": "31625 2.9 4MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217769, + "fields": { + "id_car_serie": 50998, + "name": "31625 2.9 5MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217778, + "fields": { + "id_car_serie": 51001, + "name": "2.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217779, + "fields": { + "id_car_serie": 51001, + "name": "2.4 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217780, + "fields": { + "id_car_serie": 51001, + "name": "2.7 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217781, + "fields": { + "id_car_serie": 51001, + "name": "2.7 5MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217782, + "fields": { + "id_car_serie": 51001, + "name": "2.9 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217791, + "fields": { + "id_car_serie": 53331, + "name": "2.7 5MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217794, + "fields": { + "id_car_serie": 51005, + "name": "2.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217796, + "fields": { + "id_car_serie": 51007, + "name": "4.8 MT (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217797, + "fields": { + "id_car_serie": 51008, + "name": "1.6 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217798, + "fields": { + "id_car_serie": 51008, + "name": "1.8 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217800, + "fields": { + "id_car_serie": 51013, + "name": "1.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217801, + "fields": { + "id_car_serie": 51013, + "name": "1.0 AMT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217802, + "fields": { + "id_car_serie": 51014, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217803, + "fields": { + "id_car_serie": 51014, + "name": "1.1 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217804, + "fields": { + "id_car_serie": 51014, + "name": "1.4 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217805, + "fields": { + "id_car_serie": 51015, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217814, + "fields": { + "id_car_serie": 51028, + "name": "0.8 MT (36 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217815, + "fields": { + "id_car_serie": 51028, + "name": "1.1 MT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217816, + "fields": { + "id_car_serie": 51029, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217817, + "fields": { + "id_car_serie": 51030, + "name": "0.8 MT (36 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217818, + "fields": { + "id_car_serie": 51030, + "name": "1.1 MT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217822, + "fields": { + "id_car_serie": 51034, + "name": "GD04B (5 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217823, + "fields": { + "id_car_serie": 51035, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217824, + "fields": { + "id_car_serie": 51035, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217825, + "fields": { + "id_car_serie": 51035, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217826, + "fields": { + "id_car_serie": 51036, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217827, + "fields": { + "id_car_serie": 51036, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217828, + "fields": { + "id_car_serie": 51037, + "name": "1.0 MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217829, + "fields": { + "id_car_serie": 51037, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217830, + "fields": { + "id_car_serie": 51037, + "name": "1.2 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217831, + "fields": { + "id_car_serie": 51038, + "name": "1.0 MT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217834, + "fields": { + "id_car_serie": 51040, + "name": "21101 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217835, + "fields": { + "id_car_serie": 51040, + "name": "21104 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217838, + "fields": { + "id_car_serie": 51042, + "name": "21112 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217839, + "fields": { + "id_car_serie": 51042, + "name": "21114 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217845, + "fields": { + "id_car_serie": 45217, + "name": "350 d 4MATIC 9G-TRONIC (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217846, + "fields": { + "id_car_serie": 45217, + "name": "400 4MATIC 9G-TRONIC (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217847, + "fields": { + "id_car_serie": 47048, + "name": "1.6 X-tronic (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217848, + "fields": { + "id_car_serie": 47048, + "name": "2.0 AT AWD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217849, + "fields": { + "id_car_serie": 49500, + "name": "1.8 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217850, + "fields": { + "id_car_serie": 49558, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217851, + "fields": { + "id_car_serie": 49639, + "name": "3.0 Turbo MT Overdrive (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217852, + "fields": { + "id_car_serie": 49675, + "name": "5.3 4AT 1500 Fleetside (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217853, + "fields": { + "id_car_serie": 49676, + "name": "8.1 6MT 2500HD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217854, + "fields": { + "id_car_serie": 49677, + "name": "6.6 TD 4AT 4WD LWB 3500 (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217855, + "fields": { + "id_car_serie": 49685, + "name": "2.7 D MT 4WD Silk Road Planetaroof (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217861, + "fields": { + "id_car_serie": 49787, + "name": "3.2 Synchromesh (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217862, + "fields": { + "id_car_serie": 49812, + "name": "6.6 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217863, + "fields": { + "id_car_serie": 49825, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217864, + "fields": { + "id_car_serie": 49843, + "name": "5.4 3Synchromesh (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217865, + "fields": { + "id_car_serie": 49900, + "name": "335i DKG (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217866, + "fields": { + "id_car_serie": 49927, + "name": "435i xDrive MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217867, + "fields": { + "id_car_serie": 49935, + "name": "550i MT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217868, + "fields": { + "id_car_serie": 49937, + "name": "550i MT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217869, + "fields": { + "id_car_serie": 49942, + "name": "525i VANOS AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217871, + "fields": { + "id_car_serie": 49956, + "name": "633CSi MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217872, + "fields": { + "id_car_serie": 49967, + "name": "850i AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217875, + "fields": { + "id_car_serie": 49995, + "name": "2.7 Powerglide (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217876, + "fields": { + "id_car_serie": 49995, + "name": "2.7 Powerglide (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217877, + "fields": { + "id_car_serie": 49995, + "name": "2.7 Powerglide (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217878, + "fields": { + "id_car_serie": 49995, + "name": "2.7 4MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217879, + "fields": { + "id_car_serie": 49995, + "name": "2.7 4MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217880, + "fields": { + "id_car_serie": 49995, + "name": "2.7 3MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217881, + "fields": { + "id_car_serie": 49995, + "name": "2.7 3MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217882, + "fields": { + "id_car_serie": 49995, + "name": "2.7 4MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217883, + "fields": { + "id_car_serie": 49995, + "name": "2.7 3MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217884, + "fields": { + "id_car_serie": 50005, + "name": "2.4 3Synchromesh (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217885, + "fields": { + "id_car_serie": 50007, + "name": "2.4 Powerglide (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217886, + "fields": { + "id_car_serie": 50049, + "name": "5.7 Turbo Hydra-Matic (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217887, + "fields": { + "id_car_serie": 50059, + "name": "5.0 4MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217888, + "fields": { + "id_car_serie": 50082, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217889, + "fields": { + "id_car_serie": 50103, + "name": "2.3 Turbo Hydra-Matic (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217890, + "fields": { + "id_car_serie": 50106, + "name": "2.3 Powerglide (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217891, + "fields": { + "id_car_serie": 50106, + "name": "2.3 Powerglide (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217892, + "fields": { + "id_car_serie": 50106, + "name": "2.3 Powerglide (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217893, + "fields": { + "id_car_serie": 50106, + "name": "2.3 Powerglide (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217894, + "fields": { + "id_car_serie": 50106, + "name": "2.3 Powerglide (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217895, + "fields": { + "id_car_serie": 50106, + "name": "2.3 Turbo Hydra-Matic (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217896, + "fields": { + "id_car_serie": 50106, + "name": "2.3 Turbo Hydra-Matic (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217897, + "fields": { + "id_car_serie": 50106, + "name": "2.3 Powerglide (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217898, + "fields": { + "id_car_serie": 50106, + "name": "2.3 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217899, + "fields": { + "id_car_serie": 50106, + "name": "2.3 4MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217900, + "fields": { + "id_car_serie": 50106, + "name": "2.3 4MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217901, + "fields": { + "id_car_serie": 50106, + "name": "2.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217902, + "fields": { + "id_car_serie": 50106, + "name": "2.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217903, + "fields": { + "id_car_serie": 50106, + "name": "2.3 4MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217904, + "fields": { + "id_car_serie": 50106, + "name": "2.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217905, + "fields": { + "id_car_serie": 50106, + "name": "2.3 4MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217906, + "fields": { + "id_car_serie": 50106, + "name": "2.3 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217907, + "fields": { + "id_car_serie": 50106, + "name": "2.3 4MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217908, + "fields": { + "id_car_serie": 50106, + "name": "2.3 4MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217909, + "fields": { + "id_car_serie": 50106, + "name": "2.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217910, + "fields": { + "id_car_serie": 50156, + "name": "4.6 AT 4x4 5.5-ft. Styleside (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217913, + "fields": { + "id_car_serie": 50339, + "name": "2.7 D MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217914, + "fields": { + "id_car_serie": 51050, + "name": "CLA 200 7G-DCT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217915, + "fields": { + "id_car_serie": 51050, + "name": "CLA 250 7G-DCT 4MATIC (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217916, + "fields": { + "id_car_serie": 51049, + "name": "CLA 200 7G-DCT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217917, + "fields": { + "id_car_serie": 51049, + "name": "CLA 250 7G-DCT 4MATIC (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217918, + "fields": { + "id_car_serie": 50449, + "name": "C 230 Kompressor AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217919, + "fields": { + "id_car_serie": 51054, + "name": "SLC 43 9G-TRONIC (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217920, + "fields": { + "id_car_serie": 51055, + "name": "SLC 200 9G-TRONIC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 217921, + "fields": { + "id_car_serie": 51055, + "name": "SLC 300 9G-TRONIC (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219027, + "fields": { + "id_car_serie": 50847, + "name": "2.2 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219028, + "fields": { + "id_car_serie": 50847, + "name": "2.8 D MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219029, + "fields": { + "id_car_serie": 50866, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219033, + "fields": { + "id_car_serie": 50986, + "name": "22171 2.3 MT H2 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219034, + "fields": { + "id_car_serie": 51031, + "name": "5.2 MT (455 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219035, + "fields": { + "id_car_serie": 45444, + "name": "2.0i AWD 6MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219036, + "fields": { + "id_car_serie": 45444, + "name": "2.0i-L AWD CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219037, + "fields": { + "id_car_serie": 45444, + "name": "2.5i-L AWD CVT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219038, + "fields": { + "id_car_serie": 45444, + "name": "2.0 XT AWD CVT (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219039, + "fields": { + "id_car_serie": 51048, + "name": "CLA 45 AMG 7G-DCT 4MATIC (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219040, + "fields": { + "id_car_serie": 51047, + "name": "CLA 45 AMG 7G-DCT 4MATIC (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219041, + "fields": { + "id_car_serie": 51052, + "name": "s 180 7G-Tronic Plus (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219042, + "fields": { + "id_car_serie": 51052, + "name": "C 200 4Matic 7G-Tronic Plus (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219043, + "fields": { + "id_car_serie": 51051, + "name": "s 63 7G-Tronic Plus (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219044, + "fields": { + "id_car_serie": 51051, + "name": "s 63 S 7G-Tronic Plus (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219045, + "fields": { + "id_car_serie": 51053, + "name": "E 200 9G-TRONIC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219046, + "fields": { + "id_car_serie": 51053, + "name": "E 220 d 9G-TRONIC (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219386, + "fields": { + "id_car_serie": 51271, + "name": "AMG 63 4MATIC 7G-TRONIC (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219387, + "fields": { + "id_car_serie": 51271, + "name": "AMG 63 S 4MATIC 7G-TRONIC (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219388, + "fields": { + "id_car_serie": 51271, + "name": "AMG 43 4MATIC 9G-TRONIC (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219437, + "fields": { + "id_car_serie": 10797, + "name": "2.0 TFSI S tronic quattro (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219438, + "fields": { + "id_car_serie": 2939, + "name": "1.8 TFSI S tronic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219439, + "fields": { + "id_car_serie": 7782, + "name": "3.0 V6 AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219440, + "fields": { + "id_car_serie": 10787, + "name": "2.0 BiTDI Tiptronic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219441, + "fields": { + "id_car_serie": 14728, + "name": "1.4 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219442, + "fields": { + "id_car_serie": 14728, + "name": "1.8 TSI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219443, + "fields": { + "id_car_serie": 15316, + "name": "2.0 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219444, + "fields": { + "id_car_serie": 15316, + "name": "2.0 PDK (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219445, + "fields": { + "id_car_serie": 15316, + "name": "S 2.5 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219446, + "fields": { + "id_car_serie": 15316, + "name": "S 2.5 PDK (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219447, + "fields": { + "id_car_serie": 46805, + "name": "2.0i AWD 6MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219448, + "fields": { + "id_car_serie": 46805, + "name": "2.0i AWD CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219449, + "fields": { + "id_car_serie": 46805, + "name": "2.0i-S AWD CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219450, + "fields": { + "id_car_serie": 47352, + "name": "1.6 HDi MT L1 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219451, + "fields": { + "id_car_serie": 46886, + "name": "3.0 TDV6 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219452, + "fields": { + "id_car_serie": 46886, + "name": "3.0 V6 Supercharged AT AWD LWB (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219453, + "fields": { + "id_car_serie": 46886, + "name": "3.0 TDV6 AT AWD LWB (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219454, + "fields": { + "id_car_serie": 47614, + "name": "1.8 AMT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219455, + "fields": { + "id_car_serie": 1385, + "name": "200t AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219456, + "fields": { + "id_car_serie": 49209, + "name": "3.0 V6 AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219461, + "fields": { + "id_car_serie": 49699, + "name": "2.0 MT L1H1 (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219462, + "fields": { + "id_car_serie": 49699, + "name": "2.0 MT L2H1 (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219463, + "fields": { + "id_car_serie": 49699, + "name": "2.0 dCi MT L1H1 (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219464, + "fields": { + "id_car_serie": 49699, + "name": "2.0 dCi MT L2H1 (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219465, + "fields": { + "id_car_serie": 14711, + "name": "1.4 T AMT 4x4 (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219466, + "fields": { + "id_car_serie": 14711, + "name": "1.4 T AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219468, + "fields": { + "id_car_serie": 49888, + "name": "220d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219469, + "fields": { + "id_car_serie": 49888, + "name": "220d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219471, + "fields": { + "id_car_serie": 50613, + "name": "S 400 4MATIC 7G-TRONIC PLUS (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219488, + "fields": { + "id_car_serie": 7851, + "name": "1.33 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219489, + "fields": { + "id_car_serie": 7851, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219490, + "fields": { + "id_car_serie": 7851, + "name": "1.6 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219491, + "fields": { + "id_car_serie": 7851, + "name": "1.8 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219492, + "fields": { + "id_car_serie": 45837, + "name": "5.0 AT (477 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219493, + "fields": { + "id_car_serie": 46886, + "name": "5.0 V8 Supercharged AT AWD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219494, + "fields": { + "id_car_serie": 46886, + "name": "5.0 V8 Supercharged AT AWD LWB (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219496, + "fields": { + "id_car_serie": 49754, + "name": "1.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219497, + "fields": { + "id_car_serie": 49754, + "name": "1.4 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219498, + "fields": { + "id_car_serie": 49925, + "name": "420d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219499, + "fields": { + "id_car_serie": 49925, + "name": "420d xDrive Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219500, + "fields": { + "id_car_serie": 49925, + "name": "430i xDrive Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219501, + "fields": { + "id_car_serie": 49925, + "name": "418d Steptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219502, + "fields": { + "id_car_serie": 49925, + "name": "418d MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219503, + "fields": { + "id_car_serie": 49925, + "name": "440i xDrive Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219504, + "fields": { + "id_car_serie": 49926, + "name": "420i xDrive Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219505, + "fields": { + "id_car_serie": 49926, + "name": "420d xDrive Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219506, + "fields": { + "id_car_serie": 49926, + "name": "430i xDrive Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219507, + "fields": { + "id_car_serie": 49926, + "name": "418d Steptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219508, + "fields": { + "id_car_serie": 49926, + "name": "418d MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219509, + "fields": { + "id_car_serie": 49926, + "name": "440i xDrive Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219510, + "fields": { + "id_car_serie": 49927, + "name": "420d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219511, + "fields": { + "id_car_serie": 49927, + "name": "430i Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219512, + "fields": { + "id_car_serie": 49927, + "name": "440i Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219515, + "fields": { + "id_car_serie": 51383, + "name": "2.5 AT AWD (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219516, + "fields": { + "id_car_serie": 51384, + "name": "1.0 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219517, + "fields": { + "id_car_serie": 51384, + "name": "1.1 AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219518, + "fields": { + "id_car_serie": 51384, + "name": "1.1 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219519, + "fields": { + "id_car_serie": 51384, + "name": "1.1 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219520, + "fields": { + "id_car_serie": 51385, + "name": "0.9 T AMT twinamic (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219521, + "fields": { + "id_car_serie": 51386, + "name": "0.9 T AMT twinamic (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219522, + "fields": { + "id_car_serie": 51386, + "name": "1.0 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219523, + "fields": { + "id_car_serie": 14728, + "name": "2.0 TSI BlueMotion DSG 4motion (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219524, + "fields": { + "id_car_serie": 51388, + "name": "1.7 MT 8 valves. (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219525, + "fields": { + "id_car_serie": 51389, + "name": "320i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219526, + "fields": { + "id_car_serie": 51389, + "name": "320i xDrive Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219527, + "fields": { + "id_car_serie": 51389, + "name": "320d xDrive Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219528, + "fields": { + "id_car_serie": 51389, + "name": "330i xDrive Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219529, + "fields": { + "id_car_serie": 51389, + "name": "340i xDrive Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219530, + "fields": { + "id_car_serie": 51390, + "name": "318i Steptronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219531, + "fields": { + "id_car_serie": 51390, + "name": "318i MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219532, + "fields": { + "id_car_serie": 51390, + "name": "320i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219533, + "fields": { + "id_car_serie": 51390, + "name": "320d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219534, + "fields": { + "id_car_serie": 51390, + "name": "320i xDrive Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219535, + "fields": { + "id_car_serie": 51390, + "name": "320d xDrive Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219536, + "fields": { + "id_car_serie": 51390, + "name": "330i xDrive Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219537, + "fields": { + "id_car_serie": 51390, + "name": "320i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219538, + "fields": { + "id_car_serie": 51390, + "name": "320i xDrive MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219539, + "fields": { + "id_car_serie": 51390, + "name": "340i xDrive Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219540, + "fields": { + "id_car_serie": 51390, + "name": "340i xDrive MT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219541, + "fields": { + "id_car_serie": 50408, + "name": "CLS 63 AMG S-Modell Speedshift MCT 4Matic (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219542, + "fields": { + "id_car_serie": 50408, + "name": "CLS 63 AMG Speedshift MCT 4Matic (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219543, + "fields": { + "id_car_serie": 50408, + "name": "CLS 63 Speedshift MCT (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219544, + "fields": { + "id_car_serie": 50408, + "name": "CLS 63 Speedshift MCT (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219545, + "fields": { + "id_car_serie": 50409, + "name": "CLS 63 AMG S-Modell Speedshift MCT 4Matic (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219546, + "fields": { + "id_car_serie": 50409, + "name": "CLS 63 Speedshift MCT (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219547, + "fields": { + "id_car_serie": 50410, + "name": "CLS 250 CDI 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219548, + "fields": { + "id_car_serie": 50410, + "name": "CLS 350 BlueTEC 7G-Tronic plus (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219549, + "fields": { + "id_car_serie": 50410, + "name": "CLS 350 CDI BlueEfficiency 7G-Tronic plus (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219550, + "fields": { + "id_car_serie": 50410, + "name": "CLS 500 BlueEfficiency 7G-Tronic Plus 4Matic (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219551, + "fields": { + "id_car_serie": 50411, + "name": "CLS 250 CDI 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219552, + "fields": { + "id_car_serie": 50411, + "name": "CLS 350 CDI BlueEfficiency 7G-Tronic Plus (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219553, + "fields": { + "id_car_serie": 50411, + "name": "CLS 350 CDI 7G-Tronic Plus 4Matic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219554, + "fields": { + "id_car_serie": 50411, + "name": "CLS 350 7G-Tronic Plus (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219555, + "fields": { + "id_car_serie": 50411, + "name": "CLS 500 7G-Tronic Plus 4Matic (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219556, + "fields": { + "id_car_serie": 15030, + "name": "CLS 300 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219557, + "fields": { + "id_car_serie": 15030, + "name": "CLS 280 7G-Tronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219558, + "fields": { + "id_car_serie": 15030, + "name": "CLS 500 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219559, + "fields": { + "id_car_serie": 50414, + "name": "CLS 55 5G-Tronic (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219560, + "fields": { + "id_car_serie": 50414, + "name": "CLS 63 SPEEDSHIFT 7G-Tronic (514 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219561, + "fields": { + "id_car_serie": 50415, + "name": "CLS 320 CDI 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219562, + "fields": { + "id_car_serie": 50415, + "name": "CLS 350 CGI 7G-Tronic (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219563, + "fields": { + "id_car_serie": 50415, + "name": "CLS 350 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219564, + "fields": { + "id_car_serie": 50415, + "name": "CLS 500 7G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219565, + "fields": { + "id_car_serie": 50415, + "name": "CLS 500 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219566, + "fields": { + "id_car_serie": 50418, + "name": "CL 63 Speedshift 7G-Tronic (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219567, + "fields": { + "id_car_serie": 5798, + "name": "1.6i MT L1 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219575, + "fields": { + "id_car_serie": 45582, + "name": "1.4 TSI DSG (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219576, + "fields": { + "id_car_serie": 45582, + "name": "1.4 TSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219577, + "fields": { + "id_car_serie": 45691, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219578, + "fields": { + "id_car_serie": 45691, + "name": "1.4 AMT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219579, + "fields": { + "id_car_serie": 45847, + "name": "3.0 AT AWD (209 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219580, + "fields": { + "id_car_serie": 47153, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219581, + "fields": { + "id_car_serie": 47153, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219582, + "fields": { + "id_car_serie": 47153, + "name": "1.6 e-HDi ETG (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219583, + "fields": { + "id_car_serie": 46998, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219584, + "fields": { + "id_car_serie": 46998, + "name": "2.0 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219585, + "fields": { + "id_car_serie": 47120, + "name": "6.75 V8 AT (512 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219586, + "fields": { + "id_car_serie": 48787, + "name": "2.5 HEV Xtronic AWD (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219587, + "fields": { + "id_car_serie": 48787, + "name": "3.5 Xtronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219588, + "fields": { + "id_car_serie": 48787, + "name": "3.5 Xtronic AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219589, + "fields": { + "id_car_serie": 49878, + "name": "120i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219590, + "fields": { + "id_car_serie": 49878, + "name": "M140i Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219591, + "fields": { + "id_car_serie": 49878, + "name": "M140i Steptronic xDrive (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219595, + "fields": { + "id_car_serie": 51395, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219596, + "fields": { + "id_car_serie": 51395, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219597, + "fields": { + "id_car_serie": 51395, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219598, + "fields": { + "id_car_serie": 51395, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219599, + "fields": { + "id_car_serie": 51395, + "name": "1.8 D MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219600, + "fields": { + "id_car_serie": 51395, + "name": "1.9 D MT AWD (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219601, + "fields": { + "id_car_serie": 51395, + "name": "1.9 D MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219602, + "fields": { + "id_car_serie": 51395, + "name": "2.0 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219611, + "fields": { + "id_car_serie": 51393, + "name": "2.0 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219612, + "fields": { + "id_car_serie": 51392, + "name": "6.75 V8 AT (537 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219613, + "fields": { + "id_car_serie": 51396, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219614, + "fields": { + "id_car_serie": 51396, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219615, + "fields": { + "id_car_serie": 51396, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219616, + "fields": { + "id_car_serie": 51396, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219617, + "fields": { + "id_car_serie": 51391, + "name": "2.0 TFSI quattro S tronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219627, + "fields": { + "id_car_serie": 51403, + "name": "640d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219628, + "fields": { + "id_car_serie": 51403, + "name": "640i xDrive Steptronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219629, + "fields": { + "id_car_serie": 51403, + "name": "650i xDrive Steptronic (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219630, + "fields": { + "id_car_serie": 51394, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219631, + "fields": { + "id_car_serie": 51394, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219632, + "fields": { + "id_car_serie": 51394, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219633, + "fields": { + "id_car_serie": 51394, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219634, + "fields": { + "id_car_serie": 51394, + "name": "1.8 D MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219635, + "fields": { + "id_car_serie": 51394, + "name": "1.9 D MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219636, + "fields": { + "id_car_serie": 51394, + "name": "1.9 D MT AWD (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219637, + "fields": { + "id_car_serie": 51394, + "name": "2.0 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219640, + "fields": { + "id_car_serie": 51398, + "name": "2.5 AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219641, + "fields": { + "id_car_serie": 51398, + "name": "2.5 Hybrid CVT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219642, + "fields": { + "id_car_serie": 51398, + "name": "3.5 AT (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219643, + "fields": { + "id_car_serie": 51401, + "name": "2.0 T5 Drive-E Geartronic AWD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219644, + "fields": { + "id_car_serie": 51402, + "name": "640i xDrive Steptronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219645, + "fields": { + "id_car_serie": 51402, + "name": "640d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219646, + "fields": { + "id_car_serie": 51402, + "name": "650i xDrive Steptronic (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219647, + "fields": { + "id_car_serie": 51404, + "name": "640i Steptronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219648, + "fields": { + "id_car_serie": 51404, + "name": "640i xDrive Steptronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219649, + "fields": { + "id_car_serie": 51404, + "name": "650i Steptronic (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219650, + "fields": { + "id_car_serie": 51404, + "name": "650i xDrive Steptronic (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219651, + "fields": { + "id_car_serie": 51405, + "name": "730d xDrive Steptronic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219652, + "fields": { + "id_car_serie": 51405, + "name": "740Li xDrive Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219653, + "fields": { + "id_car_serie": 51405, + "name": "740d xDrive Steptronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219654, + "fields": { + "id_car_serie": 51405, + "name": "730Ld xDrive Steptronic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219655, + "fields": { + "id_car_serie": 51405, + "name": "740Ld xDrive Steptronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219656, + "fields": { + "id_car_serie": 51405, + "name": "750d xDrive Steptronic (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219657, + "fields": { + "id_car_serie": 51405, + "name": "750Ld xDrive Steptronic (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219658, + "fields": { + "id_car_serie": 51405, + "name": "750i xDrive Steptronic (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219659, + "fields": { + "id_car_serie": 51405, + "name": "750Li xDrive Steptronic (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219660, + "fields": { + "id_car_serie": 51406, + "name": "2.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219665, + "fields": { + "id_car_serie": 1173, + "name": "2.5 CVT AWD Hybrid (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219666, + "fields": { + "id_car_serie": 4183, + "name": "2.0 DTR T-Tronic 4WD (7 places) (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219667, + "fields": { + "id_car_serie": 4183, + "name": "2.7 XVT T-Tronic AWD (7 places) (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219668, + "fields": { + "id_car_serie": 4183, + "name": "2.7 Xdi T-Tronic 4WD (7 places) (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219669, + "fields": { + "id_car_serie": 9009, + "name": "GTS 3.8 MT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219670, + "fields": { + "id_car_serie": 9009, + "name": "4 GTS 3.8 MT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219671, + "fields": { + "id_car_serie": 9009, + "name": "GTS 3.8 PDK (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219672, + "fields": { + "id_car_serie": 9009, + "name": "4 GTS 3.8 PDK (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219673, + "fields": { + "id_car_serie": 4254, + "name": "2.0TD AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219679, + "fields": { + "id_car_serie": 5482, + "name": "3.2 FSI tiptronic quattro (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219680, + "fields": { + "id_car_serie": 5482, + "name": "3.2 FSI MT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219681, + "fields": { + "id_car_serie": 5482, + "name": "3.2 FSI MT quattro (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219682, + "fields": { + "id_car_serie": 5482, + "name": "3.2 FSI multitronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219683, + "fields": { + "id_car_serie": 6693, + "name": "220d AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219684, + "fields": { + "id_car_serie": 6693, + "name": "220d MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219685, + "fields": { + "id_car_serie": 6693, + "name": "250 AT AWD (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219686, + "fields": { + "id_car_serie": 6693, + "name": "350 AT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219687, + "fields": { + "id_car_serie": 14649, + "name": "21099-90 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219688, + "fields": { + "id_car_serie": 45217, + "name": "500 4MATIC 9G-TRONIC (456 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219689, + "fields": { + "id_car_serie": 45559, + "name": "18i sDrive AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219690, + "fields": { + "id_car_serie": 45559, + "name": "18d xDrive Steptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219691, + "fields": { + "id_car_serie": 45559, + "name": "20i xDrive Steptronic (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219692, + "fields": { + "id_car_serie": 45559, + "name": "20d xDrive Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219693, + "fields": { + "id_car_serie": 45559, + "name": "25i xDrive AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219694, + "fields": { + "id_car_serie": 45559, + "name": "25d xDrive AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219695, + "fields": { + "id_car_serie": 46056, + "name": "1.6 DCT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219696, + "fields": { + "id_car_serie": 46056, + "name": "2.0 DCT AWD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219697, + "fields": { + "id_car_serie": 46025, + "name": "3.8 PDK (475 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219698, + "fields": { + "id_car_serie": 46025, + "name": "RS 4.0 PDK (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219699, + "fields": { + "id_car_serie": 46151, + "name": "4 3.0 MT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219700, + "fields": { + "id_car_serie": 46151, + "name": "4S 3.0 MT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219701, + "fields": { + "id_car_serie": 46151, + "name": "4 3.0 PDK (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219702, + "fields": { + "id_car_serie": 46151, + "name": "4S 3.0 PDK (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219703, + "fields": { + "id_car_serie": 47077, + "name": "350e 7G-TRONIC PLUS 4MATIC (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219704, + "fields": { + "id_car_serie": 47270, + "name": "460 AT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219705, + "fields": { + "id_car_serie": 47270, + "name": "460 AT AWD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219706, + "fields": { + "id_car_serie": 47270, + "name": "460 AT AWD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219707, + "fields": { + "id_car_serie": 49888, + "name": "M240i Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219708, + "fields": { + "id_car_serie": 49888, + "name": "M240i xDrive Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219709, + "fields": { + "id_car_serie": 49888, + "name": "M240i MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219710, + "fields": { + "id_car_serie": 50404, + "name": "CLS 220 d BlueTEC 9G-Tronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219711, + "fields": { + "id_car_serie": 50407, + "name": "CLS 220 d BlueTEC 9G-Tronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219712, + "fields": { + "id_car_serie": 15030, + "name": "CLS 350 7G-Tronic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219713, + "fields": { + "id_car_serie": 15030, + "name": "CLS 550 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219714, + "fields": { + "id_car_serie": 50419, + "name": "CL 550 7G-Tronic (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219715, + "fields": { + "id_car_serie": 50507, + "name": "GLA 180 CDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219716, + "fields": { + "id_car_serie": 50507, + "name": "GLA 180 CDI 7G-DCT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219717, + "fields": { + "id_car_serie": 50507, + "name": "GLA 180 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219718, + "fields": { + "id_car_serie": 50507, + "name": "GLA 180 7G-DCT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219719, + "fields": { + "id_car_serie": 50507, + "name": "GLA 220 CDI 7G-DCT 4Matic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219720, + "fields": { + "id_car_serie": 50507, + "name": "GLA 220 CDI 7G-DCT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219722, + "fields": { + "id_car_serie": 50539, + "name": "240 GD MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219723, + "fields": { + "id_car_serie": 50627, + "name": "260 SE AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219724, + "fields": { + "id_car_serie": 50627, + "name": "260 SE AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219725, + "fields": { + "id_car_serie": 50627, + "name": "260 SE MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219726, + "fields": { + "id_car_serie": 50627, + "name": "260 SE MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219727, + "fields": { + "id_car_serie": 50627, + "name": "560 SE AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219728, + "fields": { + "id_car_serie": 50627, + "name": "560 SE AT (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219729, + "fields": { + "id_car_serie": 50627, + "name": "560 SE AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219730, + "fields": { + "id_car_serie": 50627, + "name": "560 SE AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219731, + "fields": { + "id_car_serie": 50627, + "name": "560 SE MT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219732, + "fields": { + "id_car_serie": 50627, + "name": "560 SE MT (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219733, + "fields": { + "id_car_serie": 50627, + "name": "560 SE MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219734, + "fields": { + "id_car_serie": 50627, + "name": "560 SE MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219735, + "fields": { + "id_car_serie": 51405, + "name": "730i Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219736, + "fields": { + "id_car_serie": 51405, + "name": "740Le xDrive Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219737, + "fields": { + "id_car_serie": 51413, + "name": "3.0 MT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219738, + "fields": { + "id_car_serie": 51413, + "name": "4 3.0 MT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219739, + "fields": { + "id_car_serie": 51413, + "name": "S 3.0 MT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219740, + "fields": { + "id_car_serie": 51413, + "name": "4S 3.0 MT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219741, + "fields": { + "id_car_serie": 51413, + "name": "3.0 PDK (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219742, + "fields": { + "id_car_serie": 51413, + "name": "4 3.0 PDK (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219743, + "fields": { + "id_car_serie": 51413, + "name": "S 3.0 PDK (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219744, + "fields": { + "id_car_serie": 51413, + "name": "4S 3.0 PDK (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219745, + "fields": { + "id_car_serie": 9010, + "name": "GTS 3.8 MT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219746, + "fields": { + "id_car_serie": 9010, + "name": "4 GTS 3.8 MT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219747, + "fields": { + "id_car_serie": 9010, + "name": "GTS 3.8 PDK (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219748, + "fields": { + "id_car_serie": 9010, + "name": "4 GTS 3.8 PDK (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219749, + "fields": { + "id_car_serie": 51409, + "name": "6.2 AT (649 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219750, + "fields": { + "id_car_serie": 51410, + "name": "1.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219751, + "fields": { + "id_car_serie": 51414, + "name": "3.8 PDK (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219752, + "fields": { + "id_car_serie": 51414, + "name": "S 3.8 PDK (580 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219753, + "fields": { + "id_car_serie": 51418, + "name": "250 9G-TRONIC 4MATIC (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219754, + "fields": { + "id_car_serie": 51418, + "name": "300 9G-TRONIC 4MATIC (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219755, + "fields": { + "id_car_serie": 51418, + "name": "220 d 9G-TRONIC 4MATIC (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219756, + "fields": { + "id_car_serie": 51418, + "name": "250 d 9G-TRONIC 4MATIC (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219757, + "fields": { + "id_car_serie": 51415, + "name": "2.0 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219758, + "fields": { + "id_car_serie": 51415, + "name": "2.0 PDK (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219759, + "fields": { + "id_car_serie": 51415, + "name": "S 2.5 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219760, + "fields": { + "id_car_serie": 51415, + "name": "S 2.5 PDK (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219761, + "fields": { + "id_car_serie": 51411, + "name": "1.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219762, + "fields": { + "id_car_serie": 51412, + "name": "1.6 MT L1 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219765, + "fields": { + "id_car_serie": 51412, + "name": "1.6 HDi MT L2 (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219766, + "fields": { + "id_car_serie": 51416, + "name": "3.0 TDI AT 4Motion (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219767, + "fields": { + "id_car_serie": 51419, + "name": "2.8 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219768, + "fields": { + "id_car_serie": 51420, + "name": "2.4 D AT 4WD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219769, + "fields": { + "id_car_serie": 51420, + "name": "2.4 D AT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219770, + "fields": { + "id_car_serie": 51420, + "name": "2.4 D MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219771, + "fields": { + "id_car_serie": 51420, + "name": "2.4 D MT 4WD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219772, + "fields": { + "id_car_serie": 51420, + "name": "2.4 D MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219775, + "fields": { + "id_car_serie": 9580, + "name": "3.3 AT AWD Limited (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219776, + "fields": { + "id_car_serie": 9580, + "name": "3.3 AT Limited (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219777, + "fields": { + "id_car_serie": 2974, + "name": "xDrive40e Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219780, + "fields": { + "id_car_serie": 3506, + "name": "2.5 d AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219781, + "fields": { + "id_car_serie": 3506, + "name": "2.5 d 5AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219782, + "fields": { + "id_car_serie": 3506, + "name": "2.5 d 6MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219783, + "fields": { + "id_car_serie": 4851, + "name": "M40i Steptronic (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219784, + "fields": { + "id_car_serie": 6949, + "name": "3.0 CDI TouchShift Marco Polo (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219785, + "fields": { + "id_car_serie": 6949, + "name": "3.0 TouchShift Marco Polo (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219786, + "fields": { + "id_car_serie": 6949, + "name": "3.2 TouchShift Marco Polo (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219787, + "fields": { + "id_car_serie": 6949, + "name": "3.5 TouchShift Marco Polo (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219788, + "fields": { + "id_car_serie": 6949, + "name": "3.5 TouchShift Marco Polo (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219789, + "fields": { + "id_car_serie": 7785, + "name": "2.4 AT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219790, + "fields": { + "id_car_serie": 7904, + "name": "105 4.2 D MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219791, + "fields": { + "id_car_serie": 53655, + "name": "4.4 M-DCT (560 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219792, + "fields": { + "id_car_serie": 53653, + "name": "4.4 M-DCT (560 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219793, + "fields": { + "id_car_serie": 53654, + "name": "4.4 M-DCT (560 hp)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219794, + "fields": { + "id_car_serie": 45716, + "name": "1.6 D AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219795, + "fields": { + "id_car_serie": 45716, + "name": "1.6 D AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219796, + "fields": { + "id_car_serie": 45716, + "name": "1.6 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219797, + "fields": { + "id_car_serie": 45716, + "name": "1.6 D MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219798, + "fields": { + "id_car_serie": 46807, + "name": "2.0 D4 Drive-E MT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219806, + "fields": { + "id_car_serie": 49760, + "name": "4.4 M-DKG (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219807, + "fields": { + "id_car_serie": 3713, + "name": "GL 350 BlueTec 7G-Tronic Plus 4Matic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219877, + "fields": { + "id_car_serie": 51053, + "name": "E 200 d 9G-TRONIC (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219878, + "fields": { + "id_car_serie": 51053, + "name": "E 200 4MATIC 9G-TRONIC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219879, + "fields": { + "id_car_serie": 51053, + "name": "E 300 9G-TRONIC (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219880, + "fields": { + "id_car_serie": 51053, + "name": "E 400 4MATIC 9G-TRONIC (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219881, + "fields": { + "id_car_serie": 51405, + "name": "M760Li xDrive Steptronic (610 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219882, + "fields": { + "id_car_serie": 51416, + "name": "2.0 biTDI AT 4Motion (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219883, + "fields": { + "id_car_serie": 51416, + "name": "2.0 TDI MT 4Motion (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219884, + "fields": { + "id_car_serie": 51416, + "name": "2.0 biTDI MT 4Motion (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219885, + "fields": { + "id_car_serie": 51417, + "name": "43 AMG 9G-TRONIC 4MATIC (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219886, + "fields": { + "id_car_serie": 51431, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219887, + "fields": { + "id_car_serie": 51423, + "name": "1.4 TFSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219888, + "fields": { + "id_car_serie": 51426, + "name": "2.2 CRDi AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219889, + "fields": { + "id_car_serie": 51426, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219890, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TDI MT L1 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219891, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TSI MT L1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219892, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TDI MT L1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219893, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TDI MT 4MOTION L1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219894, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TDI DSG L1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219895, + "fields": { + "id_car_serie": 51429, + "name": "2.0 biTDI DSG L1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219896, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TSI DSG L1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219897, + "fields": { + "id_car_serie": 51429, + "name": "2.0 biTDI DSG 4MOTION L1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219898, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TSI DSG 4MOTION L1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219899, + "fields": { + "id_car_serie": 51432, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219900, + "fields": { + "id_car_serie": 51432, + "name": "1.6 HDi AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219901, + "fields": { + "id_car_serie": 51432, + "name": "2.0 HDi AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219904, + "fields": { + "id_car_serie": 51436, + "name": "E 43 AMG 4MATIC 9G-TRONIC (401 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219907, + "fields": { + "id_car_serie": 51428, + "name": "1.4 Turbo AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219908, + "fields": { + "id_car_serie": 51428, + "name": "1.4 Turbo AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219909, + "fields": { + "id_car_serie": 51428, + "name": "1.6 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219910, + "fields": { + "id_car_serie": 51428, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219911, + "fields": { + "id_car_serie": 51428, + "name": "1.6 MT 4WD (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219912, + "fields": { + "id_car_serie": 51435, + "name": "1.8 Duratec MT SWB (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219913, + "fields": { + "id_car_serie": 51435, + "name": "1.8 Duratec MT LWB (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219915, + "fields": { + "id_car_serie": 51435, + "name": "1.8 TD MT SWB (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219916, + "fields": { + "id_car_serie": 51435, + "name": "1.8 TD MT LWB (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219917, + "fields": { + "id_car_serie": 51435, + "name": "1.8 TD MT LWB (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219918, + "fields": { + "id_car_serie": 51424, + "name": "1.4 TFSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219919, + "fields": { + "id_car_serie": 51424, + "name": "1.4 TFSI S-tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219920, + "fields": { + "id_car_serie": 51424, + "name": "2.0 TFSI S-tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219921, + "fields": { + "id_car_serie": 51424, + "name": "2.0 TFSI S-tronic quattro (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219922, + "fields": { + "id_car_serie": 51425, + "name": "2.0 TDI S tronic quattro (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219923, + "fields": { + "id_car_serie": 51425, + "name": "2.0 TFSI S tronic quattro (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219924, + "fields": { + "id_car_serie": 51433, + "name": "43 AMG 9G-TRONIC 4MATIC (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219925, + "fields": { + "id_car_serie": 51427, + "name": "8kw (11 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219928, + "fields": { + "id_car_serie": 51430, + "name": "2.7 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219930, + "fields": { + "id_car_serie": 1169, + "name": "3.0 T AT AWD (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219931, + "fields": { + "id_car_serie": 3015, + "name": "3.6 AT AWD (341 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219932, + "fields": { + "id_car_serie": 5471, + "name": "1.4 TFSI S tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219933, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI MT Marco Polo (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219934, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI 4MATIC MT Marco Polo (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219940, + "fields": { + "id_car_serie": 15274, + "name": "2.5 AT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219941, + "fields": { + "id_car_serie": 45717, + "name": "1.8 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219942, + "fields": { + "id_car_serie": 47492, + "name": "121 7G-Tronic Plus L2 (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219943, + "fields": { + "id_car_serie": 47492, + "name": "121 7G-Tronic Plus L3 (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219944, + "fields": { + "id_car_serie": 47493, + "name": "121 7G-Tronic Plus L2 (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219945, + "fields": { + "id_car_serie": 47493, + "name": "121 7G-Tronic Plus L3 (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219947, + "fields": { + "id_car_serie": 50611, + "name": "S 400 7G-Tronic Plus 4Matic (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219948, + "fields": { + "id_car_serie": 51051, + "name": "C 43 4Matic 9G-Tronic (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219949, + "fields": { + "id_car_serie": 51411, + "name": "1.6 AT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219950, + "fields": { + "id_car_serie": 51423, + "name": "1.4 TFSI S-tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219951, + "fields": { + "id_car_serie": 51423, + "name": "2.0 TFSI S-tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219952, + "fields": { + "id_car_serie": 51423, + "name": "2.0 TFSI S-tronic quattro (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219953, + "fields": { + "id_car_serie": 51444, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219954, + "fields": { + "id_car_serie": 51444, + "name": "1.6 BlueHDi AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219955, + "fields": { + "id_car_serie": 51447, + "name": "1.6 MPI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219956, + "fields": { + "id_car_serie": 51447, + "name": "1.6 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219957, + "fields": { + "id_car_serie": 51447, + "name": "1.6 TDI MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219958, + "fields": { + "id_car_serie": 51447, + "name": "1.6 TDI DSG (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219959, + "fields": { + "id_car_serie": 51447, + "name": "2.0 TDI MT 4Motion (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219960, + "fields": { + "id_car_serie": 51447, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219961, + "fields": { + "id_car_serie": 51447, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219962, + "fields": { + "id_car_serie": 51447, + "name": "2.0 TDI DSG 4Motion (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219963, + "fields": { + "id_car_serie": 51445, + "name": "3.0 SDV6 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219964, + "fields": { + "id_car_serie": 51445, + "name": "3.0 SiV6 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219965, + "fields": { + "id_car_serie": 51443, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219966, + "fields": { + "id_car_serie": 51443, + "name": "1.6 BlueHDi AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219967, + "fields": { + "id_car_serie": 51446, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219968, + "fields": { + "id_car_serie": 51446, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219969, + "fields": { + "id_car_serie": 51446, + "name": "1.4 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219970, + "fields": { + "id_car_serie": 51446, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219971, + "fields": { + "id_car_serie": 51446, + "name": "1.5 dCi MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219972, + "fields": { + "id_car_serie": 51446, + "name": "1.5 dCi MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219973, + "fields": { + "id_car_serie": 51446, + "name": "1.5 dCi MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219974, + "fields": { + "id_car_serie": 51446, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219975, + "fields": { + "id_car_serie": 51446, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219976, + "fields": { + "id_car_serie": 51446, + "name": "1.9 dTi MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219977, + "fields": { + "id_car_serie": 51446, + "name": "2.0 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219978, + "fields": { + "id_car_serie": 51446, + "name": "2.0 MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219979, + "fields": { + "id_car_serie": 5547, + "name": "4.0 V8 AWD AT (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219980, + "fields": { + "id_car_serie": 51441, + "name": "3.0 TFSI tiptronic quattro (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219981, + "fields": { + "id_car_serie": 51450, + "name": "s 180 9G-Tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219982, + "fields": { + "id_car_serie": 51450, + "name": "s 200 4Matic 9G-Tronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219983, + "fields": { + "id_car_serie": 51449, + "name": "C 43 4Matic 9G-Tronic (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219988, + "fields": { + "id_car_serie": 51454, + "name": "3.3 T-GDI AT AWD (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219989, + "fields": { + "id_car_serie": 51454, + "name": "3.8 GDI AT AWD (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219990, + "fields": { + "id_car_serie": 51454, + "name": "5.0 GDI AT AWD (413 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219991, + "fields": { + "id_car_serie": 51454, + "name": "5.0 L GDI AT AWD (413 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219993, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI TouchShift Marco Polo (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219994, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI 4MATIC TouchShift Marco Polo (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219995, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI TouchShift Marco Polo (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219996, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI 4MATIC TouchShift Marco Polo (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219997, + "fields": { + "id_car_serie": 6949, + "name": "2.2 CDI TouchShift Marco Polo (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219998, + "fields": { + "id_car_serie": 6949, + "name": "2.2 CDI 4MATIC TouchShift Marco Polo (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 219999, + "fields": { + "id_car_serie": 6949, + "name": "2.0 CDI MT Marco Polo (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220000, + "fields": { + "id_car_serie": 6949, + "name": "2.2 CDI MT Marco Polo (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220001, + "fields": { + "id_car_serie": 6949, + "name": "2.2 CDI 4MATIC MT Marco Polo (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220053, + "fields": { + "id_car_serie": 2105, + "name": "Turbo Performance 3.6 PDK AWD (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220054, + "fields": { + "id_car_serie": 3027, + "name": "2.0 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220055, + "fields": { + "id_car_serie": 4564, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220056, + "fields": { + "id_car_serie": 4564, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220057, + "fields": { + "id_car_serie": 14641, + "name": "0.9 T AMT twinamic (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220058, + "fields": { + "id_car_serie": 45388, + "name": "6.2 V8 MT SRT-8 (717 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220059, + "fields": { + "id_car_serie": 45388, + "name": "6.4 V8 AT SRT-8 (492 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220060, + "fields": { + "id_car_serie": 45388, + "name": "6.4 V8 MT SRT-8 (492 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220061, + "fields": { + "id_car_serie": 46061, + "name": "4.0 D AT AWD (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220062, + "fields": { + "id_car_serie": 46033, + "name": "1.4 TSI BlueMotion MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220063, + "fields": { + "id_car_serie": 46033, + "name": "1.4 TSI 4Motion MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220064, + "fields": { + "id_car_serie": 46033, + "name": "1.4 TSI BlueMotion MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220065, + "fields": { + "id_car_serie": 46033, + "name": "1.4 TSI 4Motion DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220066, + "fields": { + "id_car_serie": 46033, + "name": "1.4 TSI BlueMotion DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220067, + "fields": { + "id_car_serie": 46033, + "name": "2.0 TDI BlueMotion MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220068, + "fields": { + "id_car_serie": 46033, + "name": "2.0 TSI 4Motion DSG (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220069, + "fields": { + "id_car_serie": 46033, + "name": "2.0 TSI 4Motion DSG (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220070, + "fields": { + "id_car_serie": 46033, + "name": "2.0 TDI 4Motion DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220071, + "fields": { + "id_car_serie": 46033, + "name": "2.0 TDI 4Motion DSG (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220072, + "fields": { + "id_car_serie": 47176, + "name": "3.6 V6 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220073, + "fields": { + "id_car_serie": 47176, + "name": "3.6 V6 MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220074, + "fields": { + "id_car_serie": 47176, + "name": "5.7 V8 AT (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220075, + "fields": { + "id_car_serie": 47176, + "name": "5.7 V8 MT (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220079, + "fields": { + "id_car_serie": 45699, + "name": "180 7G-DCT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220080, + "fields": { + "id_car_serie": 50425, + "name": "C 180 9G-Tronic (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220081, + "fields": { + "id_car_serie": 50425, + "name": "C 200 4Matic 9G-Tronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220082, + "fields": { + "id_car_serie": 50425, + "name": "C 250 9G-Tronic (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220083, + "fields": { + "id_car_serie": 50427, + "name": "C 180 9G-Tronic (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220084, + "fields": { + "id_car_serie": 50427, + "name": "C 200 4Matic 9G-Tronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220085, + "fields": { + "id_car_serie": 50845, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220086, + "fields": { + "id_car_serie": 50845, + "name": "1.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220087, + "fields": { + "id_car_serie": 50845, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220088, + "fields": { + "id_car_serie": 50845, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220089, + "fields": { + "id_car_serie": 51052, + "name": "C 200 4Matic 9G-Tronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220090, + "fields": { + "id_car_serie": 51053, + "name": "E 220 d 4MATIC 9G-TRONIC (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220091, + "fields": { + "id_car_serie": 51053, + "name": "E 350 e 9G-TRONIC (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220092, + "fields": { + "id_car_serie": 51385, + "name": "0.9 T AMT twinamic (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220093, + "fields": { + "id_car_serie": 51385, + "name": "1.0 AMT twinamic (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220094, + "fields": { + "id_car_serie": 51386, + "name": "0.9 T AMT twinamic (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220095, + "fields": { + "id_car_serie": 51386, + "name": "1.0 AMT twinamic (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220096, + "fields": { + "id_car_serie": 51458, + "name": "1.5 EcoBoost AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220097, + "fields": { + "id_car_serie": 51458, + "name": "1.5 EcoBoost AT AWD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220098, + "fields": { + "id_car_serie": 51458, + "name": "2.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220099, + "fields": { + "id_car_serie": 51466, + "name": "6.0 W12 AWD AT (590 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220100, + "fields": { + "id_car_serie": 51463, + "name": "4.0 V8 AWD AT (528 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220101, + "fields": { + "id_car_serie": 51462, + "name": "2.7 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220102, + "fields": { + "id_car_serie": 51456, + "name": "4.0 V8 AWD AT (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220103, + "fields": { + "id_car_serie": 51461, + "name": "4 E-Hybrid 2.9 PDK AWD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220104, + "fields": { + "id_car_serie": 51461, + "name": "4S 2.9 PDK AWD (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220105, + "fields": { + "id_car_serie": 51461, + "name": "4 E-Hybrid Executive 2.9 PDK AWD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220106, + "fields": { + "id_car_serie": 51461, + "name": "4S Executive 2.9 PDK AWD (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220107, + "fields": { + "id_car_serie": 51461, + "name": "3.0 PDK (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220108, + "fields": { + "id_car_serie": 51461, + "name": "4 3.0 PDK AWD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220109, + "fields": { + "id_car_serie": 51461, + "name": "4 Executive 3.0 PDK AWD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220110, + "fields": { + "id_car_serie": 51461, + "name": "Turbo 4.0 PDK AWD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220111, + "fields": { + "id_car_serie": 51461, + "name": "Turbo Executive 4.0 PDK AWD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220112, + "fields": { + "id_car_serie": 51455, + "name": "6.0 W12 AWD AT (635 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220113, + "fields": { + "id_car_serie": 51460, + "name": "2.5 AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220114, + "fields": { + "id_car_serie": 51460, + "name": "2.5 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220115, + "fields": { + "id_car_serie": 51459, + "name": "1.8 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220116, + "fields": { + "id_car_serie": 51459, + "name": "1.8 CVT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220117, + "fields": { + "id_car_serie": 51465, + "name": "4.0 V8 AWD AT (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220118, + "fields": { + "id_car_serie": 51464, + "name": "6.0 W12 AWD AT (635 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220119, + "fields": { + "id_car_serie": 51469, + "name": "6.5 AMT AWD (770 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220120, + "fields": { + "id_car_serie": 51468, + "name": "6.5 AMT AWD (770 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220121, + "fields": { + "id_car_serie": 51467, + "name": "6.6 AT (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220122, + "fields": { + "id_car_serie": 51457, + "name": "4.0 V8 AWD AT (528 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220123, + "fields": { + "id_car_serie": 8090, + "name": "1.7 MT 8 valves. (Euro-4) Brontorys-1 (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220124, + "fields": { + "id_car_serie": 46033, + "name": "1.4 TSI BlueMotion DSG (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220127, + "fields": { + "id_car_serie": 51471, + "name": "3.0 TFSI tiptronic quattro (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220128, + "fields": { + "id_car_serie": 51470, + "name": "2.0 TFSI S tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220129, + "fields": { + "id_car_serie": 51470, + "name": "2.0 TDI S tronic quattro (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220130, + "fields": { + "id_car_serie": 51472, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220131, + "fields": { + "id_car_serie": 51472, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220132, + "fields": { + "id_car_serie": 51472, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220148, + "fields": { + "id_car_serie": 4507, + "name": "2.0 D AT 4WD (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220149, + "fields": { + "id_car_serie": 4507, + "name": "2.0 D AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220150, + "fields": { + "id_car_serie": 4507, + "name": "2.0 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220151, + "fields": { + "id_car_serie": 4507, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220152, + "fields": { + "id_car_serie": 4507, + "name": "2.0 D AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220153, + "fields": { + "id_car_serie": 4507, + "name": "2.0 D AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220154, + "fields": { + "id_car_serie": 4507, + "name": "2.0 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220155, + "fields": { + "id_car_serie": 4507, + "name": "2.0 D MT 4WD (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220156, + "fields": { + "id_car_serie": 4507, + "name": "2.0 D MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220157, + "fields": { + "id_car_serie": 4507, + "name": "2.0 D MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220158, + "fields": { + "id_car_serie": 4507, + "name": "2.0 D MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220159, + "fields": { + "id_car_serie": 4507, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220160, + "fields": { + "id_car_serie": 4507, + "name": "2.0 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220161, + "fields": { + "id_car_serie": 4507, + "name": "2.0 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220162, + "fields": { + "id_car_serie": 4507, + "name": "2.4 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220163, + "fields": { + "id_car_serie": 4507, + "name": "2.4 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220164, + "fields": { + "id_car_serie": 4507, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220165, + "fields": { + "id_car_serie": 4507, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220166, + "fields": { + "id_car_serie": 4507, + "name": "2.4 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220167, + "fields": { + "id_car_serie": 4621, + "name": "2.0 TFSI tiptronic quattro (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220168, + "fields": { + "id_car_serie": 4621, + "name": "2.0 TFSI MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220169, + "fields": { + "id_car_serie": 4623, + "name": "3.1 FSI MT (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220170, + "fields": { + "id_car_serie": 4625, + "name": "1.8 T Tiptronic quattro (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220172, + "fields": { + "id_car_serie": 4626, + "name": "1.9 TDI multitronic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220173, + "fields": { + "id_car_serie": 4626, + "name": "2.0 FSI Tiptronic quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220174, + "fields": { + "id_car_serie": 14812, + "name": "200t AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220175, + "fields": { + "id_car_serie": 46012, + "name": "LP 580-2 (580 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220176, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TFSI MT quattro (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220177, + "fields": { + "id_car_serie": 47095, + "name": "2.0 TFSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220178, + "fields": { + "id_car_serie": 47040, + "name": "2.0 MT CVVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220179, + "fields": { + "id_car_serie": 47040, + "name": "2.3 AT CVVT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220180, + "fields": { + "id_car_serie": 47579, + "name": "1.9 TDI multitronic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220181, + "fields": { + "id_car_serie": 47579, + "name": "2.0 TDI tiptronic quattro (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220182, + "fields": { + "id_car_serie": 47579, + "name": "2.0 TFSI tiptronic quattro (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220183, + "fields": { + "id_car_serie": 47579, + "name": "2.0 TFSI multitronic (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220184, + "fields": { + "id_car_serie": 47579, + "name": "3.1 FSI MT (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220185, + "fields": { + "id_car_serie": 47580, + "name": "1.8 T AT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220186, + "fields": { + "id_car_serie": 47580, + "name": "1.8 AT quattro (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220187, + "fields": { + "id_car_serie": 47580, + "name": "1.9 TDI AT quattro (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220188, + "fields": { + "id_car_serie": 47580, + "name": "1.9 TDI AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220189, + "fields": { + "id_car_serie": 47580, + "name": "1.9 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220190, + "fields": { + "id_car_serie": 47580, + "name": "2.6 AT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220191, + "fields": { + "id_car_serie": 47580, + "name": "2.8 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220192, + "fields": { + "id_car_serie": 47580, + "name": "2.8 AT quattro (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220193, + "fields": { + "id_car_serie": 47580, + "name": "2.8 MT quattro (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220194, + "fields": { + "id_car_serie": 47580, + "name": "2.8 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220195, + "fields": { + "id_car_serie": 49295, + "name": "3.0 TD AT 8seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220196, + "fields": { + "id_car_serie": 49295, + "name": "3.0 TD AT 4WD 8seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220197, + "fields": { + "id_car_serie": 49295, + "name": "3.0 TD AT 8seat (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220198, + "fields": { + "id_car_serie": 49295, + "name": "3.0 TD MT 8seat (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220199, + "fields": { + "id_car_serie": 49295, + "name": "3.0 TD MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220200, + "fields": { + "id_car_serie": 49295, + "name": "3.0 TD MT 8seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220201, + "fields": { + "id_car_serie": 51482, + "name": "3.0 V6 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220202, + "fields": { + "id_car_serie": 51482, + "name": "3.0 V6 AT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220203, + "fields": { + "id_car_serie": 51482, + "name": "3.0 V6 AT AWD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220204, + "fields": { + "id_car_serie": 51482, + "name": "3.0 V6 AT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220205, + "fields": { + "id_car_serie": 51482, + "name": "3.0 V6 AT AWD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220206, + "fields": { + "id_car_serie": 51482, + "name": "5.0 V8 AT AWD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220207, + "fields": { + "id_car_serie": 51482, + "name": "5.0 V8 AT AWD (575 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220208, + "fields": { + "id_car_serie": 51481, + "name": "3.0 V6 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220209, + "fields": { + "id_car_serie": 51481, + "name": "3.0 V6 AT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220210, + "fields": { + "id_car_serie": 51481, + "name": "3.0 V6 AT AWD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220211, + "fields": { + "id_car_serie": 51481, + "name": "3.0 V6 AT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220212, + "fields": { + "id_car_serie": 51481, + "name": "3.0 V6 AT AWD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220213, + "fields": { + "id_car_serie": 51481, + "name": "5.0 V8 AT AWD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220214, + "fields": { + "id_car_serie": 51481, + "name": "5.0 V8 AT AWD (575 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220215, + "fields": { + "id_car_serie": 51480, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220216, + "fields": { + "id_car_serie": 51480, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220217, + "fields": { + "id_car_serie": 51480, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220218, + "fields": { + "id_car_serie": 51480, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220219, + "fields": { + "id_car_serie": 51479, + "name": "1.8 T AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220220, + "fields": { + "id_car_serie": 51479, + "name": "2.4 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220221, + "fields": { + "id_car_serie": 51487, + "name": "1.6 TDI MT 4MOTION (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220222, + "fields": { + "id_car_serie": 51487, + "name": "1.8 TSI DSG 4MOTION (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220223, + "fields": { + "id_car_serie": 51487, + "name": "2.0 TDI MT 4MOTION (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220224, + "fields": { + "id_car_serie": 51487, + "name": "2.0 TDI DSG 4MOTION (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220226, + "fields": { + "id_car_serie": 51484, + "name": "6.5 AMT (740 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220227, + "fields": { + "id_car_serie": 51486, + "name": "3.5 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220228, + "fields": { + "id_car_serie": 51478, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220229, + "fields": { + "id_car_serie": 51478, + "name": "1.6 CVT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220230, + "fields": { + "id_car_serie": 51488, + "name": "2.0 TDI MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220231, + "fields": { + "id_car_serie": 51488, + "name": "2.0 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220232, + "fields": { + "id_car_serie": 51488, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220233, + "fields": { + "id_car_serie": 51488, + "name": "2.0 TDI MT 4Motion (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220234, + "fields": { + "id_car_serie": 51488, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220235, + "fields": { + "id_car_serie": 51488, + "name": "2.0 BiTDI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220236, + "fields": { + "id_car_serie": 51488, + "name": "2.0 TSI DSG (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220237, + "fields": { + "id_car_serie": 51488, + "name": "2.0 BiTDI DSG 4Motion (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220238, + "fields": { + "id_car_serie": 51488, + "name": "2.0 TSI DSG 4Motion (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220239, + "fields": { + "id_car_serie": 51483, + "name": "1.6 MPI AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220240, + "fields": { + "id_car_serie": 51483, + "name": "1.6 GDI AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220241, + "fields": { + "id_car_serie": 51483, + "name": "1.6 MPI MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220242, + "fields": { + "id_car_serie": 51483, + "name": "1.6 T GDI DCT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220245, + "fields": { + "id_car_serie": 51490, + "name": "520d xDrive Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220246, + "fields": { + "id_car_serie": 51490, + "name": "530i Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220247, + "fields": { + "id_car_serie": 51490, + "name": "530i xDrive Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220248, + "fields": { + "id_car_serie": 51490, + "name": "520d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220249, + "fields": { + "id_car_serie": 51490, + "name": "520d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220250, + "fields": { + "id_car_serie": 51490, + "name": "540i xDrive Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220251, + "fields": { + "id_car_serie": 51490, + "name": "530d xDrive Steptronic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220252, + "fields": { + "id_car_serie": 51490, + "name": "540i Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220253, + "fields": { + "id_car_serie": 51490, + "name": "530d Steptronic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220254, + "fields": { + "id_car_serie": 51490, + "name": "M550i xDrive Steptronic (462 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220255, + "fields": { + "id_car_serie": 5722, + "name": "2.0 TD AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220256, + "fields": { + "id_car_serie": 5721, + "name": "2.0 TD AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220257, + "fields": { + "id_car_serie": 5721, + "name": "2.0 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220258, + "fields": { + "id_car_serie": 5721, + "name": "2.0 TD MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220259, + "fields": { + "id_car_serie": 6156, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220260, + "fields": { + "id_car_serie": 6156, + "name": "1.8 TDDi AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220261, + "fields": { + "id_car_serie": 6156, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220262, + "fields": { + "id_car_serie": 6156, + "name": "1.8 TDCi AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220263, + "fields": { + "id_car_serie": 6156, + "name": "1.8 TDDi AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220264, + "fields": { + "id_car_serie": 6161, + "name": "1.8 TDCi AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220265, + "fields": { + "id_car_serie": 6170, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220266, + "fields": { + "id_car_serie": 6170, + "name": "1.8 TDi AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220267, + "fields": { + "id_car_serie": 6170, + "name": "1.8 TDCi AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220268, + "fields": { + "id_car_serie": 6171, + "name": "1.6 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220269, + "fields": { + "id_car_serie": 6171, + "name": "2.0 TDCi AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220270, + "fields": { + "id_car_serie": 6172, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220271, + "fields": { + "id_car_serie": 6172, + "name": "1.8 TDDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220272, + "fields": { + "id_car_serie": 6173, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220273, + "fields": { + "id_car_serie": 6173, + "name": "1.8 AT TDCi (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220274, + "fields": { + "id_car_serie": 6173, + "name": "1.8 Di MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220275, + "fields": { + "id_car_serie": 6194, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220276, + "fields": { + "id_car_serie": 6194, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220277, + "fields": { + "id_car_serie": 6194, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220278, + "fields": { + "id_car_serie": 6194, + "name": "1.8 TD MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220279, + "fields": { + "id_car_serie": 6194, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220280, + "fields": { + "id_car_serie": 6194, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220281, + "fields": { + "id_car_serie": 6194, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220282, + "fields": { + "id_car_serie": 6194, + "name": "2.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220283, + "fields": { + "id_car_serie": 6194, + "name": "2.5 ST200 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220284, + "fields": { + "id_car_serie": 6194, + "name": "2.5 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220285, + "fields": { + "id_car_serie": 6625, + "name": "2.4 AT 4WD (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220286, + "fields": { + "id_car_serie": 8894, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220287, + "fields": { + "id_car_serie": 8894, + "name": "1.8 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220288, + "fields": { + "id_car_serie": 47265, + "name": "2.0 AT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220289, + "fields": { + "id_car_serie": 47265, + "name": "2.0 AT FWD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220290, + "fields": { + "id_car_serie": 47265, + "name": "2.0 MT FWD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220291, + "fields": { + "id_car_serie": 47265, + "name": "2.0 MT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220292, + "fields": { + "id_car_serie": 47265, + "name": "2.0 TD MT AWD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220293, + "fields": { + "id_car_serie": 14787, + "name": "2.0 MT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220294, + "fields": { + "id_car_serie": 14787, + "name": "2.0 TDCi MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220295, + "fields": { + "id_car_serie": 48092, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220296, + "fields": { + "id_car_serie": 48105, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220297, + "fields": { + "id_car_serie": 48105, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220298, + "fields": { + "id_car_serie": 48105, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220299, + "fields": { + "id_car_serie": 48105, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220300, + "fields": { + "id_car_serie": 48105, + "name": "1.8 AT TDDi (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220301, + "fields": { + "id_car_serie": 48105, + "name": "1.8 AT TDDi (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220302, + "fields": { + "id_car_serie": 48105, + "name": "1.8 AT TDCi (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220303, + "fields": { + "id_car_serie": 48105, + "name": "1.8 AT TDCi (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220304, + "fields": { + "id_car_serie": 51510, + "name": "1.4 AT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220305, + "fields": { + "id_car_serie": 51510, + "name": "1.4 MT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220306, + "fields": { + "id_car_serie": 51511, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220307, + "fields": { + "id_car_serie": 51511, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220308, + "fields": { + "id_car_serie": 51511, + "name": "2.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220309, + "fields": { + "id_car_serie": 51511, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220310, + "fields": { + "id_car_serie": 51509, + "name": "1.4 AT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220311, + "fields": { + "id_car_serie": 51509, + "name": "1.4 MT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220312, + "fields": { + "id_car_serie": 51516, + "name": "2.0 TD AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220313, + "fields": { + "id_car_serie": 51516, + "name": "2.0 TD AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220314, + "fields": { + "id_car_serie": 51516, + "name": "2.0 T AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220315, + "fields": { + "id_car_serie": 51516, + "name": "3.0 TD V6 AT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220316, + "fields": { + "id_car_serie": 51516, + "name": "3.0 V6 AT AWD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220317, + "fields": { + "id_car_serie": 51508, + "name": "6.2 AT (466 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220318, + "fields": { + "id_car_serie": 51512, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220319, + "fields": { + "id_car_serie": 51512, + "name": "1.8 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220320, + "fields": { + "id_car_serie": 51514, + "name": "2.0 D AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220321, + "fields": { + "id_car_serie": 51514, + "name": "2.0 D MT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220322, + "fields": { + "id_car_serie": 51514, + "name": "2.0 D MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220323, + "fields": { + "id_car_serie": 51514, + "name": "2.4 D AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220324, + "fields": { + "id_car_serie": 51514, + "name": "2.4 D MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220325, + "fields": { + "id_car_serie": 51514, + "name": "2.4 D MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220330, + "fields": { + "id_car_serie": 3487, + "name": "2.0 CRDi MT 2WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220331, + "fields": { + "id_car_serie": 3487, + "name": "2.0 CRDi MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220332, + "fields": { + "id_car_serie": 3614, + "name": "570 AT (383 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220333, + "fields": { + "id_car_serie": 3781, + "name": "2.0 AT AWD Turbo (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220334, + "fields": { + "id_car_serie": 3781, + "name": "2.0 MT AWD Turbo (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220335, + "fields": { + "id_car_serie": 3781, + "name": "2.0 MT AWD Turbo (359 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220337, + "fields": { + "id_car_serie": 5810, + "name": "1.6 HDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220341, + "fields": { + "id_car_serie": 9042, + "name": "1.2 TCe MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220342, + "fields": { + "id_car_serie": 9042, + "name": "1.5 dCi MT 4x4 (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220343, + "fields": { + "id_car_serie": 7057, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220344, + "fields": { + "id_car_serie": 7058, + "name": "1.8 CVT 4WD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220345, + "fields": { + "id_car_serie": 7058, + "name": "1.8 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220346, + "fields": { + "id_car_serie": 7058, + "name": "1.8 CVT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220347, + "fields": { + "id_car_serie": 7063, + "name": "1.6 AT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220348, + "fields": { + "id_car_serie": 7063, + "name": "1.6 MT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220349, + "fields": { + "id_car_serie": 7064, + "name": "1.3 MT4 (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220350, + "fields": { + "id_car_serie": 7065, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220351, + "fields": { + "id_car_serie": 7065, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220352, + "fields": { + "id_car_serie": 7065, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220353, + "fields": { + "id_car_serie": 7065, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220354, + "fields": { + "id_car_serie": 7065, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220355, + "fields": { + "id_car_serie": 7065, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220356, + "fields": { + "id_car_serie": 8737, + "name": "570 AT (383 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220357, + "fields": { + "id_car_serie": 8888, + "name": "2.4 MT 4WD (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220358, + "fields": { + "id_car_serie": 14779, + "name": "1.6 Bioflex (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220359, + "fields": { + "id_car_serie": 14815, + "name": "400h CVT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220360, + "fields": { + "id_car_serie": 14815, + "name": "400h CVT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220361, + "fields": { + "id_car_serie": 15052, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220362, + "fields": { + "id_car_serie": 15052, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220363, + "fields": { + "id_car_serie": 15052, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220364, + "fields": { + "id_car_serie": 15052, + "name": "2.0 MT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220365, + "fields": { + "id_car_serie": 15052, + "name": "2.0 AMT Ralliart 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220366, + "fields": { + "id_car_serie": 15272, + "name": "1.5 TDCi Duratorq MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220367, + "fields": { + "id_car_serie": 15272, + "name": "2.0 TDCi Duratorq AMT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220368, + "fields": { + "id_car_serie": 15272, + "name": "2.0 TDCi Duratorq AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220369, + "fields": { + "id_car_serie": 15273, + "name": "1.5 TDCi Duratorq MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220370, + "fields": { + "id_car_serie": 15273, + "name": "2.0 TDCi Duratorq AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220371, + "fields": { + "id_car_serie": 15273, + "name": "2.0 TDCi Duratorq AMT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220372, + "fields": { + "id_car_serie": 15273, + "name": "2.5 AT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220373, + "fields": { + "id_car_serie": 15274, + "name": "1.5 TDCi Duratorq MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220374, + "fields": { + "id_car_serie": 15274, + "name": "2.0 TDCi Duratorq MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220375, + "fields": { + "id_car_serie": 15274, + "name": "2.0 EcoBoost MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220376, + "fields": { + "id_car_serie": 15274, + "name": "2.0 TDCi Duratorq AMT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220378, + "fields": { + "id_car_serie": 47417, + "name": "1.8 TSI DSG 4x4 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220379, + "fields": { + "id_car_serie": 47154, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220380, + "fields": { + "id_car_serie": 46998, + "name": "1.6 AT AWD (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220381, + "fields": { + "id_car_serie": 48372, + "name": "1.6 CRDi AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220382, + "fields": { + "id_car_serie": 48373, + "name": "1.6 CRDi AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220383, + "fields": { + "id_car_serie": 48373, + "name": "1.6 CRDi MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220384, + "fields": { + "id_car_serie": 48592, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220385, + "fields": { + "id_car_serie": 48592, + "name": "1.8 DI-D MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220386, + "fields": { + "id_car_serie": 48592, + "name": "1.8 DI-D MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220387, + "fields": { + "id_car_serie": 48592, + "name": "2.0 AMT Ralliart 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220388, + "fields": { + "id_car_serie": 48598, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220389, + "fields": { + "id_car_serie": 48598, + "name": "1.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220390, + "fields": { + "id_car_serie": 48598, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220391, + "fields": { + "id_car_serie": 48598, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220392, + "fields": { + "id_car_serie": 48598, + "name": "1.5 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220393, + "fields": { + "id_car_serie": 48598, + "name": "1.6 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220394, + "fields": { + "id_car_serie": 48598, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220395, + "fields": { + "id_car_serie": 48598, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220396, + "fields": { + "id_car_serie": 48598, + "name": "1.8 AT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220397, + "fields": { + "id_car_serie": 48598, + "name": "1.8 D AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220398, + "fields": { + "id_car_serie": 48598, + "name": "1.8 AT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220399, + "fields": { + "id_car_serie": 48598, + "name": "1.8 AT 4WD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220400, + "fields": { + "id_car_serie": 48598, + "name": "1.8 MT 4WD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220401, + "fields": { + "id_car_serie": 48598, + "name": "1.8 MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220402, + "fields": { + "id_car_serie": 48598, + "name": "1.8 MT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220403, + "fields": { + "id_car_serie": 48598, + "name": "2.0 D AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220404, + "fields": { + "id_car_serie": 48598, + "name": "2.0 D AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220405, + "fields": { + "id_car_serie": 48598, + "name": "2.0 D MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220406, + "fields": { + "id_car_serie": 48598, + "name": "2.0 D MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220407, + "fields": { + "id_car_serie": 48599, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220408, + "fields": { + "id_car_serie": 48599, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220409, + "fields": { + "id_car_serie": 48599, + "name": "1.3 4MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220410, + "fields": { + "id_car_serie": 48599, + "name": "1.3 5MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220411, + "fields": { + "id_car_serie": 48599, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220412, + "fields": { + "id_car_serie": 48599, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220413, + "fields": { + "id_car_serie": 48599, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220414, + "fields": { + "id_car_serie": 48599, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220415, + "fields": { + "id_car_serie": 48822, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220416, + "fields": { + "id_car_serie": 48822, + "name": "2.0 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220417, + "fields": { + "id_car_serie": 48824, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220418, + "fields": { + "id_car_serie": 49895, + "name": "320i AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220419, + "fields": { + "id_car_serie": 49895, + "name": "320i MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220423, + "fields": { + "id_car_serie": 45444, + "name": "2.0i AWD CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220424, + "fields": { + "id_car_serie": 51436, + "name": "E 63 AMG 4MATIC+ 9G-TRONIC (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220425, + "fields": { + "id_car_serie": 51436, + "name": "E 63 S AMG 4MATIC+ 9G-TRONIC (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220426, + "fields": { + "id_car_serie": 51500, + "name": "1.4 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220427, + "fields": { + "id_car_serie": 51500, + "name": "1.4 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220428, + "fields": { + "id_car_serie": 51500, + "name": "1.6 MPI AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220429, + "fields": { + "id_car_serie": 51500, + "name": "1.6 MPI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220430, + "fields": { + "id_car_serie": 51500, + "name": "1.8 TSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220431, + "fields": { + "id_car_serie": 51500, + "name": "1.8 TSI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220432, + "fields": { + "id_car_serie": 51500, + "name": "1.8 TSI DSG 4x4 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220433, + "fields": { + "id_car_serie": 51502, + "name": "1.4 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220434, + "fields": { + "id_car_serie": 51502, + "name": "1.4 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220435, + "fields": { + "id_car_serie": 51502, + "name": "1.6 MPI AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220436, + "fields": { + "id_car_serie": 51502, + "name": "1.6 MPI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220437, + "fields": { + "id_car_serie": 51502, + "name": "1.8 TSI MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220438, + "fields": { + "id_car_serie": 51502, + "name": "1.8 TSI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220439, + "fields": { + "id_car_serie": 51502, + "name": "1.8 TSI DSG 4x4 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220440, + "fields": { + "id_car_serie": 51521, + "name": "2.3 EcoBoost MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220441, + "fields": { + "id_car_serie": 51501, + "name": "2.0 TSI MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220442, + "fields": { + "id_car_serie": 51501, + "name": "2.0 TSI DSG (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220443, + "fields": { + "id_car_serie": 51533, + "name": "2.0 AT (5 places) (217 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220444, + "fields": { + "id_car_serie": 51533, + "name": "2.0 AT (7 places) (217 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220445, + "fields": { + "id_car_serie": 51533, + "name": "2.0 MT (5 places) (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220446, + "fields": { + "id_car_serie": 51533, + "name": "2.0 MT (7 places) (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220447, + "fields": { + "id_car_serie": 51531, + "name": "E 200 9G-TRONIC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220448, + "fields": { + "id_car_serie": 51531, + "name": "E 200 4MATIC 9G-TRONIC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220449, + "fields": { + "id_car_serie": 51530, + "name": "E 200 G-TRONIC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220450, + "fields": { + "id_car_serie": 51530, + "name": "E 300 G-TRONIC (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220451, + "fields": { + "id_car_serie": 51530, + "name": "E 400 4MATIC G-TRONIC (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220452, + "fields": { + "id_car_serie": 51529, + "name": "E 220 d 4MATIC 9G-Tronic (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220453, + "fields": { + "id_car_serie": 51499, + "name": "2.0 TSI MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220454, + "fields": { + "id_car_serie": 51499, + "name": "2.0 TSI DSG (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220455, + "fields": { + "id_car_serie": 51534, + "name": "6.5 AMT (800 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 220456, + "fields": { + "id_car_serie": 51520, + "name": "6.3 AMT (963 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233005, + "fields": { + "id_car_serie": 9328, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233006, + "fields": { + "id_car_serie": 9327, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233007, + "fields": { + "id_car_serie": 9327, + "name": "1.9 TDi MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233009, + "fields": { + "id_car_serie": 4168, + "name": "1.8 TSI MT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233010, + "fields": { + "id_car_serie": 7620, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233011, + "fields": { + "id_car_serie": 45166, + "name": "3.0 AT AWD (227 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233012, + "fields": { + "id_car_serie": 46025, + "name": "4.0 MT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233013, + "fields": { + "id_car_serie": 46025, + "name": "4.0 PDK (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233014, + "fields": { + "id_car_serie": 46151, + "name": "4 GTS 3.0 MT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233015, + "fields": { + "id_car_serie": 46151, + "name": "4 GTS 3.0 PDK (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233016, + "fields": { + "id_car_serie": 46940, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233017, + "fields": { + "id_car_serie": 46940, + "name": "1.9 TDi MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233018, + "fields": { + "id_car_serie": 47587, + "name": "3.0 TDI tiptronic quattro 7 places (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233019, + "fields": { + "id_car_serie": 47587, + "name": "3.6 FSI tiptronic quattro 7 places (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233020, + "fields": { + "id_car_serie": 47587, + "name": "4.2 TDI tiptronic quattro 7 places (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233021, + "fields": { + "id_car_serie": 47587, + "name": "4.2 FSI tiptronic quattro 7 places (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233022, + "fields": { + "id_car_serie": 49065, + "name": "2.0 Turbo RS 265 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233023, + "fields": { + "id_car_serie": 49065, + "name": "2.0 Turbo RS 275 MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233024, + "fields": { + "id_car_serie": 49065, + "name": "2.0 Turbo RS 275 Trophy-R MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233025, + "fields": { + "id_car_serie": 49395, + "name": "1.4 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233026, + "fields": { + "id_car_serie": 49395, + "name": "1.4 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233027, + "fields": { + "id_car_serie": 49395, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233028, + "fields": { + "id_car_serie": 49395, + "name": "1.6 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233029, + "fields": { + "id_car_serie": 49395, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233030, + "fields": { + "id_car_serie": 49395, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233037, + "fields": { + "id_car_serie": 49468, + "name": "1.7 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233038, + "fields": { + "id_car_serie": 49468, + "name": "1.7 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233039, + "fields": { + "id_car_serie": 49468, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233040, + "fields": { + "id_car_serie": 49878, + "name": "120d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233041, + "fields": { + "id_car_serie": 49878, + "name": "120d Steptronic xDrive (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233042, + "fields": { + "id_car_serie": 49887, + "name": "116i AT (115 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233044, + "fields": { + "id_car_serie": 49887, + "name": "118d AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233140, + "fields": { + "id_car_serie": 45444, + "name": "2.0i-S AWD CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233145, + "fields": { + "id_car_serie": 51444, + "name": "1.6 HDi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233146, + "fields": { + "id_car_serie": 51461, + "name": "Turbo S E-Hybrid 4.0 PDK AWD (680 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233147, + "fields": { + "id_car_serie": 51461, + "name": "Turbo S E-Hybrid Executive 4.0 PDK AWD (680 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233148, + "fields": { + "id_car_serie": 51518, + "name": "2.5 TFSI S tronic (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233149, + "fields": { + "id_car_serie": 53065, + "name": "2.0 AT AWD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233150, + "fields": { + "id_car_serie": 53057, + "name": "1.0 Turbo SIDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233151, + "fields": { + "id_car_serie": 53057, + "name": "1.0 Turbo SIDI AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233152, + "fields": { + "id_car_serie": 53057, + "name": "1.4 T AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233153, + "fields": { + "id_car_serie": 53057, + "name": "1.4 T MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233154, + "fields": { + "id_car_serie": 53057, + "name": "1.4 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233155, + "fields": { + "id_car_serie": 53057, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233156, + "fields": { + "id_car_serie": 53057, + "name": "1.6 CDTi AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233157, + "fields": { + "id_car_serie": 53057, + "name": "1.6 BiTurbo CDTi MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233158, + "fields": { + "id_car_serie": 53057, + "name": "1.6 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233159, + "fields": { + "id_car_serie": 53057, + "name": "1.6 CDTi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233160, + "fields": { + "id_car_serie": 53057, + "name": "1.6 CDTi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233161, + "fields": { + "id_car_serie": 53057, + "name": "1.6 CDTi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233162, + "fields": { + "id_car_serie": 53056, + "name": "1.0 Turbo SIDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233163, + "fields": { + "id_car_serie": 53056, + "name": "1.0 Turbo SIDI AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233164, + "fields": { + "id_car_serie": 53056, + "name": "1.4 T AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233165, + "fields": { + "id_car_serie": 53056, + "name": "1.4 T MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233166, + "fields": { + "id_car_serie": 53056, + "name": "1.4 T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233167, + "fields": { + "id_car_serie": 53056, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233168, + "fields": { + "id_car_serie": 53056, + "name": "1.6 CDTi AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233169, + "fields": { + "id_car_serie": 53056, + "name": "1.6 CDTi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233170, + "fields": { + "id_car_serie": 53056, + "name": "1.6 BiTurbo CDTi MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233171, + "fields": { + "id_car_serie": 53056, + "name": "1.6 CDTi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233172, + "fields": { + "id_car_serie": 53056, + "name": "1.6 CDTi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233173, + "fields": { + "id_car_serie": 53056, + "name": "1.6 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233174, + "fields": { + "id_car_serie": 53064, + "name": "1.6 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233175, + "fields": { + "id_car_serie": 53064, + "name": "1.6 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233176, + "fields": { + "id_car_serie": 51498, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233177, + "fields": { + "id_car_serie": 51498, + "name": "2.0 BlueHDi AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233178, + "fields": { + "id_car_serie": 51494, + "name": "2.4 CVT AWD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233181, + "fields": { + "id_car_serie": 53062, + "name": "3.0 DCT Drivelogic (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233182, + "fields": { + "id_car_serie": 51505, + "name": "1.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233183, + "fields": { + "id_car_serie": 51505, + "name": "1.4 TSI DSG 4X4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233184, + "fields": { + "id_car_serie": 51505, + "name": "2.0 TDI DSG 4X4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233185, + "fields": { + "id_car_serie": 51505, + "name": "2.0 TSI DSG 4X4 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233186, + "fields": { + "id_car_serie": 53060, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233187, + "fields": { + "id_car_serie": 53060, + "name": "1.2 TSI BlueMotion MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233188, + "fields": { + "id_car_serie": 53060, + "name": "1.4 TSI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233189, + "fields": { + "id_car_serie": 53060, + "name": "1.4 TSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233190, + "fields": { + "id_car_serie": 53060, + "name": "1.4 TSI DSG (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233191, + "fields": { + "id_car_serie": 53060, + "name": "1.4 TSI DSG (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233192, + "fields": { + "id_car_serie": 53060, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233193, + "fields": { + "id_car_serie": 53060, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233194, + "fields": { + "id_car_serie": 53060, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233195, + "fields": { + "id_car_serie": 51517, + "name": "3.0 TFSI tiptronic quattro  (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233196, + "fields": { + "id_car_serie": 53061, + "name": "4.0 AMG Speedshift DCT 7G (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233197, + "fields": { + "id_car_serie": 53061, + "name": "C 4.0 AMG Speedshift DCT 7G (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233198, + "fields": { + "id_car_serie": 51519, + "name": "2.5 TFSI S tronic (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233199, + "fields": { + "id_car_serie": 53066, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 233200, + "fields": { + "id_car_serie": 53066, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234152, + "fields": { + "id_car_serie": 2516, + "name": "4.4 MT 450 SEAC (323 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234153, + "fields": { + "id_car_serie": 2523, + "name": "4.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234154, + "fields": { + "id_car_serie": 9237, + "name": "4.6 AT (5 places) (347 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234155, + "fields": { + "id_car_serie": 3332, + "name": "1.4 TDCi MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234156, + "fields": { + "id_car_serie": 3333, + "name": "1.0 EcoBoost MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234157, + "fields": { + "id_car_serie": 3333, + "name": "1.4 TDCi MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234158, + "fields": { + "id_car_serie": 3347, + "name": "5.2 MT (526 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234159, + "fields": { + "id_car_serie": 3422, + "name": "2.4 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234160, + "fields": { + "id_car_serie": 3457, + "name": "1.6 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234161, + "fields": { + "id_car_serie": 3457, + "name": "1.6 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234162, + "fields": { + "id_car_serie": 4275, + "name": "2.4 Hybrid CVT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234163, + "fields": { + "id_car_serie": 4361, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234164, + "fields": { + "id_car_serie": 4361, + "name": "1.2 TSI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234165, + "fields": { + "id_car_serie": 4361, + "name": "1.6 TDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234166, + "fields": { + "id_car_serie": 4361, + "name": "1.6 TDi MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234167, + "fields": { + "id_car_serie": 4361, + "name": "1.6 TDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234168, + "fields": { + "id_car_serie": 4361, + "name": "1.6 TDi DSG (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234169, + "fields": { + "id_car_serie": 4361, + "name": "1.2 TDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234171, + "fields": { + "id_car_serie": 4361, + "name": "1.2 TSI DSG (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234175, + "fields": { + "id_car_serie": 4363, + "name": "1.2 TDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234176, + "fields": { + "id_car_serie": 4363, + "name": "1.2 TSI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234177, + "fields": { + "id_car_serie": 4363, + "name": "1.2 TSI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234178, + "fields": { + "id_car_serie": 4363, + "name": "1.2 TSI DSG (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234179, + "fields": { + "id_car_serie": 4363, + "name": "1.6 TDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234180, + "fields": { + "id_car_serie": 4363, + "name": "1.6 BiFuel MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234181, + "fields": { + "id_car_serie": 4363, + "name": "1.6 TDi DSG (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234182, + "fields": { + "id_car_serie": 5691, + "name": "1.4 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234183, + "fields": { + "id_car_serie": 5691, + "name": "1.4 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234184, + "fields": { + "id_car_serie": 5690, + "name": "1.4 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234185, + "fields": { + "id_car_serie": 10719, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234186, + "fields": { + "id_car_serie": 10805, + "name": "2.2 Duratorq TDCi MT 300 SWB (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234187, + "fields": { + "id_car_serie": 10805, + "name": "2.2 Duratorq TDCi MT 300 SWB (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234188, + "fields": { + "id_car_serie": 10805, + "name": "2.2 Duratorq TDCi MT 310 LWB (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234189, + "fields": { + "id_car_serie": 10805, + "name": "2.2 Duratorq TDCi MT 310 LWB (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234190, + "fields": { + "id_car_serie": 10805, + "name": "2.2 Duratorq TDCi MT 310 LWB (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234191, + "fields": { + "id_car_serie": 10805, + "name": "2.2 Duratorq TDCi MT 310 SWB (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234192, + "fields": { + "id_car_serie": 10805, + "name": "2.2 Duratorq TDCi MT 300 LWB (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234193, + "fields": { + "id_car_serie": 10805, + "name": "2.2 Duratorq TDCi MT 310 SWB (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234194, + "fields": { + "id_car_serie": 10805, + "name": "2.2 Duratorq TDCi MT 330 LWB (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234195, + "fields": { + "id_car_serie": 10805, + "name": "2.2 Duratorq TDCi MT 330 LWB (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234196, + "fields": { + "id_car_serie": 10805, + "name": "2.2 Duratorq TDCi MT 330 SWB (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234197, + "fields": { + "id_car_serie": 10805, + "name": "2.2 Duratorq TDCi MT 330 SWB (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234198, + "fields": { + "id_car_serie": 10805, + "name": "2.2 Duratorq TDCi MT 310 SWB (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234199, + "fields": { + "id_car_serie": 10805, + "name": "2.2 Duratorq TDCi MT 300 LWB (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234200, + "fields": { + "id_car_serie": 6135, + "name": "1.6 Sport Ti-VCT MT (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234201, + "fields": { + "id_car_serie": 6328, + "name": "1.8 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234202, + "fields": { + "id_car_serie": 6328, + "name": "1.8 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234203, + "fields": { + "id_car_serie": 6329, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234204, + "fields": { + "id_car_serie": 6329, + "name": "1.8 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234205, + "fields": { + "id_car_serie": 6329, + "name": "1.8 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234206, + "fields": { + "id_car_serie": 6429, + "name": "1.5 CRDI MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234207, + "fields": { + "id_car_serie": 6431, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234208, + "fields": { + "id_car_serie": 6432, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234209, + "fields": { + "id_car_serie": 6432, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234210, + "fields": { + "id_car_serie": 6433, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234211, + "fields": { + "id_car_serie": 6433, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234212, + "fields": { + "id_car_serie": 6686, + "name": "300 AT AWD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234213, + "fields": { + "id_car_serie": 4363, + "name": "1.4 TSI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234214, + "fields": { + "id_car_serie": 14719, + "name": "1.8 MT LWB (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234215, + "fields": { + "id_car_serie": 14719, + "name": "1.8 TDCi MT LWB (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234216, + "fields": { + "id_car_serie": 14719, + "name": "1.8 TDCi MT LWB (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234217, + "fields": { + "id_car_serie": 14718, + "name": "1.8 MT LWB (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234218, + "fields": { + "id_car_serie": 14718, + "name": "1.8 MT SWB (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234219, + "fields": { + "id_car_serie": 14718, + "name": "1.8 TD MT LWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234220, + "fields": { + "id_car_serie": 14718, + "name": "1.8 TD MT SWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234221, + "fields": { + "id_car_serie": 14718, + "name": "1.8 TD MT LWB (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234222, + "fields": { + "id_car_serie": 14718, + "name": "1.8 TD MT SWB (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234223, + "fields": { + "id_car_serie": 14718, + "name": "1.8 TD MT LWB (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234224, + "fields": { + "id_car_serie": 14718, + "name": "1.8 TD MT SWB (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234225, + "fields": { + "id_car_serie": 14945, + "name": "2.4 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234226, + "fields": { + "id_car_serie": 15138, + "name": "2.0 TDI DSG (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234227, + "fields": { + "id_car_serie": 15268, + "name": "1.25 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234228, + "fields": { + "id_car_serie": 15268, + "name": "1.25 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234229, + "fields": { + "id_car_serie": 15268, + "name": "1.4 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234230, + "fields": { + "id_car_serie": 15268, + "name": "1.4 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234231, + "fields": { + "id_car_serie": 15268, + "name": "1.4 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234232, + "fields": { + "id_car_serie": 15268, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234233, + "fields": { + "id_car_serie": 15268, + "name": "1.6 AT (119 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234234, + "fields": { + "id_car_serie": 15268, + "name": "1.6 TDCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234235, + "fields": { + "id_car_serie": 15268, + "name": "1.6 TDCi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234236, + "fields": { + "id_car_serie": 15268, + "name": "1.6 TDCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234237, + "fields": { + "id_car_serie": 15268, + "name": "1.6 MT (119 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234238, + "fields": { + "id_car_serie": 15268, + "name": "1.6 Rocam Flex MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234239, + "fields": { + "id_car_serie": 15271, + "name": "1.0 EcoBoost MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234240, + "fields": { + "id_car_serie": 15271, + "name": "1.0 EcoBoost MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234241, + "fields": { + "id_car_serie": 15271, + "name": "1.0 EcoBoost MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234242, + "fields": { + "id_car_serie": 15271, + "name": "1.0 EcoBoost Powershift (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234243, + "fields": { + "id_car_serie": 15271, + "name": "1.1 Ti-VCT MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234244, + "fields": { + "id_car_serie": 15271, + "name": "1.1 Ti-VCT MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234245, + "fields": { + "id_car_serie": 15271, + "name": "1.5 TDCi Duratorq MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234246, + "fields": { + "id_car_serie": 15271, + "name": "1.5 TDCi Duratorq MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234247, + "fields": { + "id_car_serie": 15271, + "name": "1.6 EcoBoost MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234248, + "fields": { + "id_car_serie": 44106, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234249, + "fields": { + "id_car_serie": 44106, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234250, + "fields": { + "id_car_serie": 44106, + "name": "1.8 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234288, + "fields": { + "id_car_serie": 47433, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234289, + "fields": { + "id_car_serie": 46998, + "name": "1.6 CRDi AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234290, + "fields": { + "id_car_serie": 46998, + "name": "1.6 CRDi MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234291, + "fields": { + "id_car_serie": 46866, + "name": "1.8 MT LWB (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234292, + "fields": { + "id_car_serie": 46866, + "name": "1.8 MT SWB (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234293, + "fields": { + "id_car_serie": 46866, + "name": "1.8 TD MT LWB (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234296, + "fields": { + "id_car_serie": 48070, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234297, + "fields": { + "id_car_serie": 48070, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234298, + "fields": { + "id_car_serie": 48070, + "name": "1.4 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234299, + "fields": { + "id_car_serie": 48070, + "name": "1.4 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234300, + "fields": { + "id_car_serie": 48070, + "name": "1.4 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234301, + "fields": { + "id_car_serie": 48070, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234302, + "fields": { + "id_car_serie": 48070, + "name": "1.6 AT (119 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234303, + "fields": { + "id_car_serie": 48070, + "name": "1.6 MT (119 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234304, + "fields": { + "id_car_serie": 48070, + "name": "1.6 TDCi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234305, + "fields": { + "id_car_serie": 48070, + "name": "1.6 TDCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234306, + "fields": { + "id_car_serie": 48070, + "name": "1.6 TDCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234307, + "fields": { + "id_car_serie": 48081, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234308, + "fields": { + "id_car_serie": 48081, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234309, + "fields": { + "id_car_serie": 48081, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234310, + "fields": { + "id_car_serie": 48081, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234311, + "fields": { + "id_car_serie": 48157, + "name": "1.6 i-DTEC MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234312, + "fields": { + "id_car_serie": 48157, + "name": "1.8 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234313, + "fields": { + "id_car_serie": 48157, + "name": "1.8 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234315, + "fields": { + "id_car_serie": 48306, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234316, + "fields": { + "id_car_serie": 48306, + "name": "2.0 CRDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234317, + "fields": { + "id_car_serie": 48306, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234320, + "fields": { + "id_car_serie": 49467, + "name": "1.7 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234367, + "fields": { + "id_car_serie": 50191, + "name": "1.8 TDCi MT SWB (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234368, + "fields": { + "id_car_serie": 50191, + "name": "1.8 TDCi MT LWB (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234369, + "fields": { + "id_car_serie": 50191, + "name": "1.8 TDCi MT SWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234370, + "fields": { + "id_car_serie": 50191, + "name": "1.8 TDCi MT LWB (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234371, + "fields": { + "id_car_serie": 50191, + "name": "1.8 TDCi MT LWB (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234372, + "fields": { + "id_car_serie": 50191, + "name": "1.8 TDCi MT SWB (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234373, + "fields": { + "id_car_serie": 50192, + "name": "1.8 MT SWB (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234374, + "fields": { + "id_car_serie": 50192, + "name": "1.8 TDCi MT LWB (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234375, + "fields": { + "id_car_serie": 53229, + "name": "S 400 d 9G-Tronic 4Matic long base (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234376, + "fields": { + "id_car_serie": 53229, + "name": "S 350 d 9G-Tronic 4Matic long base (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234377, + "fields": { + "id_car_serie": 53229, + "name": "S 560 9G-Tronic 4Matic long base (469 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234378, + "fields": { + "id_car_serie": 53230, + "name": "S 63 AMG 9G-Tronic 4Matic+ long base (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234379, + "fields": { + "id_car_serie": 53231, + "name": "S 560 9G-Tronic 4Matic (469 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234451, + "fields": { + "id_car_serie": 51457, + "name": "6.0 W12 AWD AT (635 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234452, + "fields": { + "id_car_serie": 53144, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234453, + "fields": { + "id_car_serie": 53144, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234454, + "fields": { + "id_car_serie": 53136, + "name": "1.6 MPI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234455, + "fields": { + "id_car_serie": 53136, + "name": "1.6 TDI MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234456, + "fields": { + "id_car_serie": 53136, + "name": "1.6 TDI DSG (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234457, + "fields": { + "id_car_serie": 53136, + "name": "2.0 TDI MT 4Motion (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234458, + "fields": { + "id_car_serie": 53136, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234459, + "fields": { + "id_car_serie": 53136, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234460, + "fields": { + "id_car_serie": 53136, + "name": "2.0 TDI DSG 4Motion (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234468, + "fields": { + "id_car_serie": 53127, + "name": "1.4 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234469, + "fields": { + "id_car_serie": 53127, + "name": "1.6 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234470, + "fields": { + "id_car_serie": 53127, + "name": "1.6 CRDi AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234471, + "fields": { + "id_car_serie": 53127, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234472, + "fields": { + "id_car_serie": 53127, + "name": "1.6 CRDi MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234473, + "fields": { + "id_car_serie": 53127, + "name": "1.6 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234474, + "fields": { + "id_car_serie": 51529, + "name": "E 350 d 4MATIC 9G-Tronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234475, + "fields": { + "id_car_serie": 53137, + "name": "1.0 TSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234476, + "fields": { + "id_car_serie": 53137, + "name": "1.0 TSI MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234477, + "fields": { + "id_car_serie": 53137, + "name": "1.0 TSI DSG (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234478, + "fields": { + "id_car_serie": 53137, + "name": "1.4 TSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234479, + "fields": { + "id_car_serie": 53137, + "name": "1.4 TSI DSG (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234480, + "fields": { + "id_car_serie": 53137, + "name": "1.6 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234481, + "fields": { + "id_car_serie": 53137, + "name": "1.6 TDI DSG (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234482, + "fields": { + "id_car_serie": 53137, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234483, + "fields": { + "id_car_serie": 53137, + "name": "2.0 TDI MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234484, + "fields": { + "id_car_serie": 53137, + "name": "2.0 TDI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234485, + "fields": { + "id_car_serie": 53137, + "name": "2.0 TDI DSG (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234486, + "fields": { + "id_car_serie": 51494, + "name": "1.5 CVT FWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234487, + "fields": { + "id_car_serie": 51494, + "name": "1.5 CVT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234488, + "fields": { + "id_car_serie": 51494, + "name": "2.4 CVT FWD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234489, + "fields": { + "id_car_serie": 53131, + "name": "2.0 AT ALL4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234490, + "fields": { + "id_car_serie": 53126, + "name": "1.5 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234491, + "fields": { + "id_car_serie": 53126, + "name": "1.5 CVT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234492, + "fields": { + "id_car_serie": 53126, + "name": "2.0 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234493, + "fields": { + "id_car_serie": 53126, + "name": "2.0 CVT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234494, + "fields": { + "id_car_serie": 51523, + "name": "1.0 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234495, + "fields": { + "id_car_serie": 51523, + "name": "1.2 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234496, + "fields": { + "id_car_serie": 53128, + "name": "1.5 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234497, + "fields": { + "id_car_serie": 53128, + "name": "1.5 AT ALL4 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234498, + "fields": { + "id_car_serie": 53128, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234499, + "fields": { + "id_car_serie": 53124, + "name": "1.5 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234500, + "fields": { + "id_car_serie": 53124, + "name": "1.5 CVT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234501, + "fields": { + "id_car_serie": 53124, + "name": "2.0 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234502, + "fields": { + "id_car_serie": 53124, + "name": "2.0 CVT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234503, + "fields": { + "id_car_serie": 53125, + "name": "1.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234504, + "fields": { + "id_car_serie": 53125, + "name": "1.0 CVT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234505, + "fields": { + "id_car_serie": 53125, + "name": "1.5 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234506, + "fields": { + "id_car_serie": 53125, + "name": "1.5 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234507, + "fields": { + "id_car_serie": 53125, + "name": "1.5 CVT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234508, + "fields": { + "id_car_serie": 53125, + "name": "1.5 CVT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234522, + "fields": { + "id_car_serie": 53134, + "name": "2.0 X-tronic 4x4 (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234523, + "fields": { + "id_car_serie": 53134, + "name": "2.0 dCi X-tronic 4x4 (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234524, + "fields": { + "id_car_serie": 53134, + "name": "2.5 X-tronic 4x4 (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234525, + "fields": { + "id_car_serie": 53129, + "name": "2.0 AT ALL4 (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234526, + "fields": { + "id_car_serie": 53138, + "name": "1.7 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234527, + "fields": { + "id_car_serie": 53138, + "name": "1.7 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234529, + "fields": { + "id_car_serie": 53123, + "name": "2.9 TFSI tiptronic quattro (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234530, + "fields": { + "id_car_serie": 53130, + "name": "2.0 AT ALL4 (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234531, + "fields": { + "id_car_serie": 53130, + "name": "2.0 MT ALL4 (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234532, + "fields": { + "id_car_serie": 53135, + "name": "2.4 AT 2WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234533, + "fields": { + "id_car_serie": 53135, + "name": "2.4 MT 2WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234534, + "fields": { + "id_car_serie": 53135, + "name": "2.7 AT 2WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234535, + "fields": { + "id_car_serie": 53135, + "name": "2.8 TD AT 2WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234536, + "fields": { + "id_car_serie": 53135, + "name": "2.8 TD AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234537, + "fields": { + "id_car_serie": 9646, + "name": "2.5 CVT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234538, + "fields": { + "id_car_serie": 9646, + "name": "2.5 CVT 2WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234539, + "fields": { + "id_car_serie": 9646, + "name": "2.5 Hybrid CVT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234540, + "fields": { + "id_car_serie": 9576, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234541, + "fields": { + "id_car_serie": 9576, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234542, + "fields": { + "id_car_serie": 9573, + "name": "2.4 AT Long AWD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234543, + "fields": { + "id_car_serie": 9573, + "name": "2.4 AT Long FWD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234544, + "fields": { + "id_car_serie": 9573, + "name": "2.4 CVT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234545, + "fields": { + "id_car_serie": 9573, + "name": "2.4 CVT FWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234546, + "fields": { + "id_car_serie": 9573, + "name": "3.5 AT AWD (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234547, + "fields": { + "id_car_serie": 9573, + "name": "3.5 AT FWD (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234548, + "fields": { + "id_car_serie": 9510, + "name": "3.5 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234549, + "fields": { + "id_car_serie": 2336, + "name": "2.0T AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234550, + "fields": { + "id_car_serie": 2336, + "name": "2.5 CVT AWD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234551, + "fields": { + "id_car_serie": 9248, + "name": "2.7 AT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234552, + "fields": { + "id_car_serie": 9248, + "name": "2.7 AT RWD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234553, + "fields": { + "id_car_serie": 9197, + "name": "3.5 AT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234554, + "fields": { + "id_car_serie": 3850, + "name": "2.5 CVT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234555, + "fields": { + "id_car_serie": 3850, + "name": "2.5 CVT FWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234556, + "fields": { + "id_car_serie": 3451, + "name": "5.7 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234557, + "fields": { + "id_car_serie": 3451, + "name": "6.5 TD AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234558, + "fields": { + "id_car_serie": 3451, + "name": "6.5 TD AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234559, + "fields": { + "id_car_serie": 3451, + "name": "6.5 D AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234560, + "fields": { + "id_car_serie": 3451, + "name": "6.6 TD AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234561, + "fields": { + "id_car_serie": 3484, + "name": "2.4 AT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234562, + "fields": { + "id_car_serie": 3840, + "name": "1.5 CVT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234563, + "fields": { + "id_car_serie": 4029, + "name": "GTS 3.0 MT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234564, + "fields": { + "id_car_serie": 4029, + "name": "4 GTS 3.0 MT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234565, + "fields": { + "id_car_serie": 4029, + "name": "GTS 3.0 PDK (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234566, + "fields": { + "id_car_serie": 4029, + "name": "4 GTS 3.0 PDK (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234567, + "fields": { + "id_car_serie": 4219, + "name": "1.0 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234568, + "fields": { + "id_car_serie": 4219, + "name": "1.0 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234569, + "fields": { + "id_car_serie": 4219, + "name": "1.2 MT 2WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234570, + "fields": { + "id_car_serie": 4219, + "name": "1.2 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234571, + "fields": { + "id_car_serie": 4219, + "name": "1.2 CVT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234572, + "fields": { + "id_car_serie": 4219, + "name": "1.2 CVT 2WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234573, + "fields": { + "id_car_serie": 4269, + "name": "2.5 Hybrid CVT RWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234574, + "fields": { + "id_car_serie": 4269, + "name": "2.5 Hybrid CVT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234575, + "fields": { + "id_car_serie": 5471, + "name": "1.4 TFSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234576, + "fields": { + "id_car_serie": 5471, + "name": "1.4 TFSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234577, + "fields": { + "id_car_serie": 5471, + "name": "1.4 TFSI S tronic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234578, + "fields": { + "id_car_serie": 5471, + "name": "1.6 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234579, + "fields": { + "id_car_serie": 5471, + "name": "2.0 TFSI MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234580, + "fields": { + "id_car_serie": 5471, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234581, + "fields": { + "id_car_serie": 5471, + "name": "2.0 TDI MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234582, + "fields": { + "id_car_serie": 5471, + "name": "2.0 TFSI S tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234583, + "fields": { + "id_car_serie": 5471, + "name": "2.0 TDI S tronic quattro (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234584, + "fields": { + "id_car_serie": 5471, + "name": "2.0 TFSI S tronic quattro (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234585, + "fields": { + "id_car_serie": 5471, + "name": "2.0 TDI S tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234586, + "fields": { + "id_car_serie": 9133, + "name": "2.5 AT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234587, + "fields": { + "id_car_serie": 9133, + "name": "2.5 MT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234588, + "fields": { + "id_car_serie": 6201, + "name": "4.0 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234589, + "fields": { + "id_car_serie": 6201, + "name": "Shelby GT500 5.4 MT (558 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234590, + "fields": { + "id_car_serie": 6201, + "name": "Shelby GT500 5.4 MT (548 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234591, + "fields": { + "id_car_serie": 6202, + "name": "Shelby GT500 5.4 MT (548 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234592, + "fields": { + "id_car_serie": 6205, + "name": "3.7 AT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234593, + "fields": { + "id_car_serie": 6205, + "name": "3.7 MT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234594, + "fields": { + "id_car_serie": 6205, + "name": "GT 5.0 AT (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234595, + "fields": { + "id_car_serie": 6205, + "name": "Boss 302 5.0 MT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234596, + "fields": { + "id_car_serie": 6205, + "name": "GT 5.0 MT (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234597, + "fields": { + "id_car_serie": 6205, + "name": "Shelby GT500 5.8 MT (672 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234598, + "fields": { + "id_car_serie": 6206, + "name": "3.7 AT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234599, + "fields": { + "id_car_serie": 6206, + "name": "3.7 MT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234600, + "fields": { + "id_car_serie": 6206, + "name": "GT 5.0 AT (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234601, + "fields": { + "id_car_serie": 6206, + "name": "GT 5.0 MT (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234602, + "fields": { + "id_car_serie": 6206, + "name": "Shelby GT500 5.8 MT (672 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234603, + "fields": { + "id_car_serie": 14749, + "name": "4.0 AMG Speedshift DCT 7G (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234604, + "fields": { + "id_car_serie": 14749, + "name": "S 4.0 AMG Speedshift DCT 7G (522 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234605, + "fields": { + "id_car_serie": 14749, + "name": "R 4.0 AMG Speedshift DCT 7G (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234606, + "fields": { + "id_car_serie": 14749, + "name": "C 4.0 AMG Speedshift DCT 7G (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234607, + "fields": { + "id_car_serie": 7689, + "name": "2.0D AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234608, + "fields": { + "id_car_serie": 7690, + "name": "2.0 V6 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234609, + "fields": { + "id_car_serie": 7690, + "name": "2.0D MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234610, + "fields": { + "id_car_serie": 7690, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234611, + "fields": { + "id_car_serie": 7691, + "name": "2.0D AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234612, + "fields": { + "id_car_serie": 7691, + "name": "2.0 V6 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234613, + "fields": { + "id_car_serie": 7691, + "name": "2.0 V6 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234614, + "fields": { + "id_car_serie": 7691, + "name": "2.5 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234615, + "fields": { + "id_car_serie": 7706, + "name": "1.2 CVT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234616, + "fields": { + "id_car_serie": 7706, + "name": "1.2 CVT 2WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234617, + "fields": { + "id_car_serie": 7706, + "name": "1.6 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234618, + "fields": { + "id_car_serie": 7860, + "name": "2.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234619, + "fields": { + "id_car_serie": 7860, + "name": "2.5 AT RWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234620, + "fields": { + "id_car_serie": 7865, + "name": "3.0 AT (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234621, + "fields": { + "id_car_serie": 8732, + "name": "240 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234622, + "fields": { + "id_car_serie": 8718, + "name": "4.6 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234623, + "fields": { + "id_car_serie": 8718, + "name": "4.6 MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234624, + "fields": { + "id_car_serie": 8651, + "name": "FX30D AT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234625, + "fields": { + "id_car_serie": 8308, + "name": "1.6 OPC MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234626, + "fields": { + "id_car_serie": 14810, + "name": "240 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234627, + "fields": { + "id_car_serie": 14832, + "name": "1.4 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234628, + "fields": { + "id_car_serie": 14832, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234629, + "fields": { + "id_car_serie": 15129, + "name": "1.2 CVT 2WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234630, + "fields": { + "id_car_serie": 15129, + "name": "1.2 CVT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234631, + "fields": { + "id_car_serie": 15129, + "name": "1.6 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234632, + "fields": { + "id_car_serie": 15134, + "name": "2.0 DDiS MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234633, + "fields": { + "id_car_serie": 15395, + "name": "3.5 AT +M Supercharger (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234634, + "fields": { + "id_car_serie": 15376, + "name": "2.0 AT AWD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234635, + "fields": { + "id_car_serie": 15376, + "name": "2.0 AT FWD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234636, + "fields": { + "id_car_serie": 15376, + "name": "2.0 CVT AWD (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234637, + "fields": { + "id_car_serie": 15376, + "name": "2.0 CVT FWD (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234638, + "fields": { + "id_car_serie": 15376, + "name": "2.5 CVT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234639, + "fields": { + "id_car_serie": 16695, + "name": "2.5 CVT AWD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234640, + "fields": { + "id_car_serie": 16695, + "name": "2.5 CVT FWD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234641, + "fields": { + "id_car_serie": 16695, + "name": "2.5 Hybrid CVT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234642, + "fields": { + "id_car_serie": 45408, + "name": "1.0 T-GDi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234643, + "fields": { + "id_car_serie": 45408, + "name": "1.4 T-GDI DCT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234644, + "fields": { + "id_car_serie": 45140, + "name": "3.6 AT AWD (283 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234645, + "fields": { + "id_car_serie": 45171, + "name": "2.5 CVT FWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234646, + "fields": { + "id_car_serie": 45171, + "name": "2.5 CVT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234647, + "fields": { + "id_car_serie": 45602, + "name": "1.7 CRDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234648, + "fields": { + "id_car_serie": 45601, + "name": "1.7 CRDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234650, + "fields": { + "id_car_serie": 45689, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234651, + "fields": { + "id_car_serie": 46027, + "name": "0.8 CDi AMT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234652, + "fields": { + "id_car_serie": 46154, + "name": "1.8 CVT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234653, + "fields": { + "id_car_serie": 46454, + "name": "6.1 AT (717 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234654, + "fields": { + "id_car_serie": 46454, + "name": "6.4 AT (492 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234655, + "fields": { + "id_car_serie": 46820, + "name": "2.0 HDi AT LWB (8 places) (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234656, + "fields": { + "id_car_serie": 46820, + "name": "2.0 HDi AT LWB (7 places) (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234657, + "fields": { + "id_car_serie": 46820, + "name": "2.0 HDi MT LWB (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234658, + "fields": { + "id_car_serie": 47438, + "name": "2.5T AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234659, + "fields": { + "id_car_serie": 47397, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234660, + "fields": { + "id_car_serie": 47397, + "name": "1.5 dCi MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234661, + "fields": { + "id_car_serie": 47178, + "name": "3.6 AT (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234662, + "fields": { + "id_car_serie": 47178, + "name": "3.6 AT AWD (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234663, + "fields": { + "id_car_serie": 47178, + "name": "3.6 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234664, + "fields": { + "id_car_serie": 47178, + "name": "3.6 AT AWD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234665, + "fields": { + "id_car_serie": 47178, + "name": "5.7 AT (377 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234666, + "fields": { + "id_car_serie": 46888, + "name": "2.3 T AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234667, + "fields": { + "id_car_serie": 47961, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234668, + "fields": { + "id_car_serie": 47962, + "name": "1.6HDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234669, + "fields": { + "id_car_serie": 47962, + "name": "2.0 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234670, + "fields": { + "id_car_serie": 47987, + "name": "1.0 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234671, + "fields": { + "id_car_serie": 53441, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234674, + "fields": { + "id_car_serie": 48127, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234677, + "fields": { + "id_car_serie": 48308, + "name": "2.5 CRDi AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234678, + "fields": { + "id_car_serie": 48308, + "name": "2.5 CRDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234679, + "fields": { + "id_car_serie": 48308, + "name": "2.5 CRDi MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234680, + "fields": { + "id_car_serie": 48308, + "name": "2.5 CRDi MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234681, + "fields": { + "id_car_serie": 48915, + "name": "1.6 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234682, + "fields": { + "id_car_serie": 49117, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234683, + "fields": { + "id_car_serie": 49117, + "name": "1.4 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234684, + "fields": { + "id_car_serie": 49117, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234685, + "fields": { + "id_car_serie": 49119, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234686, + "fields": { + "id_car_serie": 49119, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234687, + "fields": { + "id_car_serie": 49141, + "name": "2.0 TD AT 2WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234688, + "fields": { + "id_car_serie": 49141, + "name": "2.0 TD MT 2WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234689, + "fields": { + "id_car_serie": 49141, + "name": "2.3 AT 2WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234690, + "fields": { + "id_car_serie": 49141, + "name": "2.3 MT 2WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234691, + "fields": { + "id_car_serie": 49254, + "name": "2.5 AT RWD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234692, + "fields": { + "id_car_serie": 49254, + "name": "2.5 AT AWD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234693, + "fields": { + "id_car_serie": 49254, + "name": "2.5 Hybrid CVT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234694, + "fields": { + "id_car_serie": 49624, + "name": "2.4 CVT FWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234695, + "fields": { + "id_car_serie": 49624, + "name": "2.4 CVT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234696, + "fields": { + "id_car_serie": 49624, + "name": "2.5 AT AWD (179 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234697, + "fields": { + "id_car_serie": 49624, + "name": "2.5 AT FWD (179 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234698, + "fields": { + "id_car_serie": 49624, + "name": "3.5 AT AWD (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234699, + "fields": { + "id_car_serie": 49624, + "name": "3.5 AT FWD (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234700, + "fields": { + "id_car_serie": 49662, + "name": "1.0 CVT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234701, + "fields": { + "id_car_serie": 49662, + "name": "1.3 CVT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234702, + "fields": { + "id_car_serie": 51050, + "name": "CLA 180 CDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234703, + "fields": { + "id_car_serie": 51050, + "name": "CLA 180 CDI 7G-DCT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234704, + "fields": { + "id_car_serie": 51050, + "name": "CLA 180 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234705, + "fields": { + "id_car_serie": 51050, + "name": "CLA 200 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234706, + "fields": { + "id_car_serie": 51050, + "name": "CLA 180 7G-DCT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234707, + "fields": { + "id_car_serie": 51050, + "name": "CLA 200 7G-DCT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234708, + "fields": { + "id_car_serie": 51050, + "name": "CLA 250 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234709, + "fields": { + "id_car_serie": 51050, + "name": "CLA 250 Sport MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234710, + "fields": { + "id_car_serie": 51050, + "name": "CLA 250 Sport 7G-DCT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234711, + "fields": { + "id_car_serie": 51050, + "name": "CLA 250 7G-DCT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234712, + "fields": { + "id_car_serie": 51050, + "name": "CLA 220 7G-DCT 4MATIC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234713, + "fields": { + "id_car_serie": 51050, + "name": "CLA 250 Sport 7G-DCT 4MATIC (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234714, + "fields": { + "id_car_serie": 51050, + "name": "CLA 200 CDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234715, + "fields": { + "id_car_serie": 51050, + "name": "CLA 220 CDI 7G-DCT 4MATIC (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234716, + "fields": { + "id_car_serie": 51050, + "name": "CLA 200 CDI 7G-DCT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234717, + "fields": { + "id_car_serie": 51050, + "name": "CLA 220 CDI 7G-DCT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234718, + "fields": { + "id_car_serie": 51050, + "name": "CLA 200 CDI 7G-DCT 4MATIC (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234719, + "fields": { + "id_car_serie": 51049, + "name": "CLA 180 CDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234720, + "fields": { + "id_car_serie": 51049, + "name": "CLA 180 CDI 7G-DCT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234721, + "fields": { + "id_car_serie": 51049, + "name": "CLA 180 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234722, + "fields": { + "id_car_serie": 51049, + "name": "CLA 200 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234723, + "fields": { + "id_car_serie": 51049, + "name": "CLA 180 7G-DCT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234724, + "fields": { + "id_car_serie": 51049, + "name": "CLA 200 7G-DCT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234725, + "fields": { + "id_car_serie": 51049, + "name": "CLA 250 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234726, + "fields": { + "id_car_serie": 51049, + "name": "CLA 250 Sport 7G-DCT 4MATIC (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234727, + "fields": { + "id_car_serie": 51049, + "name": "CLA 250 7G-DCT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234728, + "fields": { + "id_car_serie": 51049, + "name": "CLA 220 7G-DCT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234729, + "fields": { + "id_car_serie": 51049, + "name": "CLA 200 CDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234730, + "fields": { + "id_car_serie": 51049, + "name": "CLA 220 CDI 7G-DCT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234731, + "fields": { + "id_car_serie": 51049, + "name": "CLA 220 CDI 7G-DCT 4MATIC (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234732, + "fields": { + "id_car_serie": 51049, + "name": "CLA 200 CDI 7G-DCT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234733, + "fields": { + "id_car_serie": 51049, + "name": "CLA 200 CDI 7G-DCT 4MATIC (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234734, + "fields": { + "id_car_serie": 50385, + "name": "CLA 200 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234735, + "fields": { + "id_car_serie": 50385, + "name": "CLA 180 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234736, + "fields": { + "id_car_serie": 50385, + "name": "CLA 180 7G-DCT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234737, + "fields": { + "id_car_serie": 50385, + "name": "CLA 250 7G-DCT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234738, + "fields": { + "id_car_serie": 50385, + "name": "CLA 250 Sport 7G-DCT 4Matic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234739, + "fields": { + "id_car_serie": 50385, + "name": "CLA 200 CDI MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234740, + "fields": { + "id_car_serie": 50385, + "name": "CLA 200 CDI 7G-DCT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234741, + "fields": { + "id_car_serie": 50385, + "name": "CLA 200 CDI 7G-DCT 4Matic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234742, + "fields": { + "id_car_serie": 50385, + "name": "CLA 220 CDI 7G-DCT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234743, + "fields": { + "id_car_serie": 50385, + "name": "CLA 220 CDI 7G-DCT 4Matic (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234744, + "fields": { + "id_car_serie": 50516, + "name": "GL 320 CDI 7G-Tronic 4MATIC (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234746, + "fields": { + "id_car_serie": 50982, + "name": "2217 2.3 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234747, + "fields": { + "id_car_serie": 50982, + "name": "2217 2.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234748, + "fields": { + "id_car_serie": 50982, + "name": "2217 2.5 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234749, + "fields": { + "id_car_serie": 50982, + "name": "22177 2.5 MT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234750, + "fields": { + "id_car_serie": 50982, + "name": "221717 2.5 MT AWD H2 (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234751, + "fields": { + "id_car_serie": 50982, + "name": "22177 2.9 MT AWD (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234764, + "fields": { + "id_car_serie": 50986, + "name": "2217 2.5 MT 10 places (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234765, + "fields": { + "id_car_serie": 50986, + "name": "2217 2.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234766, + "fields": { + "id_car_serie": 50986, + "name": "22171 2.5 MT H2 10 places (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234767, + "fields": { + "id_car_serie": 50986, + "name": "22171 2.5 MT H2 (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234768, + "fields": { + "id_car_serie": 51413, + "name": "GTS 3.0 MT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234769, + "fields": { + "id_car_serie": 51413, + "name": "4 GTS 3.0 MT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234770, + "fields": { + "id_car_serie": 51413, + "name": "GTS 3.0 PDK (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234771, + "fields": { + "id_car_serie": 51413, + "name": "4 GTS 3.0 PDK (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234772, + "fields": { + "id_car_serie": 51423, + "name": "1.0 TFSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234773, + "fields": { + "id_car_serie": 51423, + "name": "1.0 TFSI S-tronic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234774, + "fields": { + "id_car_serie": 51423, + "name": "1.4 g-tron MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234775, + "fields": { + "id_car_serie": 51423, + "name": "1.4 e-tron S-tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234776, + "fields": { + "id_car_serie": 51423, + "name": "1.4 g-tron S-tronic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234777, + "fields": { + "id_car_serie": 51423, + "name": "1.6 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234778, + "fields": { + "id_car_serie": 51423, + "name": "1.6 TDI S-tronic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234779, + "fields": { + "id_car_serie": 51423, + "name": "2.0 TDI MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234780, + "fields": { + "id_car_serie": 51423, + "name": "2.0 TFSI MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234781, + "fields": { + "id_car_serie": 51423, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234782, + "fields": { + "id_car_serie": 51423, + "name": "2.0 TDI S-tronic quattro (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234783, + "fields": { + "id_car_serie": 51423, + "name": "2.0 TDI S-tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234788, + "fields": { + "id_car_serie": 51428, + "name": "1.0 Turbo AT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234789, + "fields": { + "id_car_serie": 51428, + "name": "1.0 Turbo MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234790, + "fields": { + "id_car_serie": 51428, + "name": "1.4 Turbo MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234791, + "fields": { + "id_car_serie": 51428, + "name": "1.6 DDiS AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234792, + "fields": { + "id_car_serie": 51428, + "name": "1.6 DDiS MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234793, + "fields": { + "id_car_serie": 51424, + "name": "1.6 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234794, + "fields": { + "id_car_serie": 51424, + "name": "1.6 TDI S-tronic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234795, + "fields": { + "id_car_serie": 51424, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234796, + "fields": { + "id_car_serie": 51424, + "name": "2.0 TDI MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234797, + "fields": { + "id_car_serie": 51424, + "name": "2.0 TDI S-tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234798, + "fields": { + "id_car_serie": 51425, + "name": "2.0 TDI MT quattro (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234799, + "fields": { + "id_car_serie": 51425, + "name": "2.0 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234800, + "fields": { + "id_car_serie": 51425, + "name": "2.0 TDI S tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234801, + "fields": { + "id_car_serie": 51425, + "name": "3.0 TDI S tronic quattro (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234802, + "fields": { + "id_car_serie": 51425, + "name": "3.0 TDI S tronic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234804, + "fields": { + "id_car_serie": 51445, + "name": "2.0 TD4 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234805, + "fields": { + "id_car_serie": 51445, + "name": "2.0 SD4 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234806, + "fields": { + "id_car_serie": 51445, + "name": "3.0 TDV6 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234807, + "fields": { + "id_car_serie": 51482, + "name": "2.0 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234808, + "fields": { + "id_car_serie": 51536, + "name": "2.0 TSI 4Motion DSG (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234809, + "fields": { + "id_car_serie": 51481, + "name": "2.0 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234810, + "fields": { + "id_car_serie": 53169, + "name": "2.5 AT RWD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234811, + "fields": { + "id_car_serie": 53169, + "name": "2.5 AT AWD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234812, + "fields": { + "id_car_serie": 53194, + "name": "1.5 CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234813, + "fields": { + "id_car_serie": 53198, + "name": "1.3 CVT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234814, + "fields": { + "id_car_serie": 53198, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234815, + "fields": { + "id_car_serie": 53198, + "name": "1.5 CVT FWD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234816, + "fields": { + "id_car_serie": 53198, + "name": "1.5 CVT AWD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234817, + "fields": { + "id_car_serie": 53198, + "name": "1.5 Hybrid CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234818, + "fields": { + "id_car_serie": 9135, + "name": "2.5 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234819, + "fields": { + "id_car_serie": 9135, + "name": "2.5 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234820, + "fields": { + "id_car_serie": 9135, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234821, + "fields": { + "id_car_serie": 9137, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234822, + "fields": { + "id_car_serie": 9137, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234823, + "fields": { + "id_car_serie": 9137, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234824, + "fields": { + "id_car_serie": 53193, + "name": "2.5 AT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234825, + "fields": { + "id_car_serie": 53193, + "name": "2.5 AT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234826, + "fields": { + "id_car_serie": 53193, + "name": "2.5 MT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234827, + "fields": { + "id_car_serie": 53154, + "name": "2.0 AT FWD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234828, + "fields": { + "id_car_serie": 53154, + "name": "2.0 AT AWD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234829, + "fields": { + "id_car_serie": 53154, + "name": "2.0T AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234830, + "fields": { + "id_car_serie": 53154, + "name": "2.0 CVT FWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234831, + "fields": { + "id_car_serie": 53154, + "name": "2.0 CVT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234832, + "fields": { + "id_car_serie": 53154, + "name": "2.5 CVT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234833, + "fields": { + "id_car_serie": 51470, + "name": "2.0 TDI MT quattro (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234834, + "fields": { + "id_car_serie": 51470, + "name": "2.0 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234835, + "fields": { + "id_car_serie": 51470, + "name": "2.0 TFSI S tronic quattro (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234836, + "fields": { + "id_car_serie": 51470, + "name": "2.0 TDI S tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234837, + "fields": { + "id_car_serie": 51470, + "name": "2.0 TFSI S tronic quattro (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234838, + "fields": { + "id_car_serie": 51470, + "name": "2.0 TFSI S tronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234839, + "fields": { + "id_car_serie": 51470, + "name": "3.0 TDI S tronic quattro (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234840, + "fields": { + "id_car_serie": 53204, + "name": "3.0 AT 6'4\" box (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234841, + "fields": { + "id_car_serie": 53204, + "name": "3.0 AT 4x4 6'4\" box (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234842, + "fields": { + "id_car_serie": 53204, + "name": "3.6 AT 6'4\" box (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234843, + "fields": { + "id_car_serie": 53204, + "name": "3.6 AT 4x4 6'4\" box (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234844, + "fields": { + "id_car_serie": 53204, + "name": "5.7 AT 4x4 6'4\" box (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234845, + "fields": { + "id_car_serie": 53204, + "name": "5.7 AT 6'4\" box (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234846, + "fields": { + "id_car_serie": 51496, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234847, + "fields": { + "id_car_serie": 51496, + "name": "2.0 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234848, + "fields": { + "id_car_serie": 51496, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234849, + "fields": { + "id_car_serie": 51496, + "name": "2.2d AT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234850, + "fields": { + "id_car_serie": 51496, + "name": "2.5 AT AWD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234851, + "fields": { + "id_car_serie": 51486, + "name": "2.7 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234852, + "fields": { + "id_car_serie": 51486, + "name": "3.5 AT FWD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234853, + "fields": { + "id_car_serie": 51486, + "name": "3.5 Hybrid CVT (262 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234854, + "fields": { + "id_car_serie": 53168, + "name": "2.5 AT RWD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234855, + "fields": { + "id_car_serie": 53168, + "name": "2.5 AT AWD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234856, + "fields": { + "id_car_serie": 53149, + "name": "1.6 DIG-T MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234857, + "fields": { + "id_car_serie": 53149, + "name": "1.6 DIG-T CVT AWD (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234858, + "fields": { + "id_car_serie": 53171, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234859, + "fields": { + "id_car_serie": 53171, + "name": "2.5T AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234860, + "fields": { + "id_car_serie": 53171, + "name": "2.5 AT RWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234861, + "fields": { + "id_car_serie": 53171, + "name": "2.5 AT AWD (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234862, + "fields": { + "id_car_serie": 53171, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234863, + "fields": { + "id_car_serie": 53205, + "name": "3.6 AT 4x4 8\" box (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234864, + "fields": { + "id_car_serie": 53205, + "name": "3.6 AT 6'4\" box (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234865, + "fields": { + "id_car_serie": 53205, + "name": "3.6 AT 4x4 6'4\" box (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234866, + "fields": { + "id_car_serie": 53205, + "name": "3.6 AT 8\" box (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234867, + "fields": { + "id_car_serie": 53205, + "name": "5.7 AT 6'4\" box (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234868, + "fields": { + "id_car_serie": 53205, + "name": "5.7 AT 4x4 6'4\" box (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234869, + "fields": { + "id_car_serie": 53205, + "name": "5.7 AT 8\" box (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234870, + "fields": { + "id_car_serie": 53205, + "name": "5.7 AT 4x4 8\" box (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234876, + "fields": { + "id_car_serie": 53183, + "name": "1.8 Hybrid CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234877, + "fields": { + "id_car_serie": 53183, + "name": "2.0 CVT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234878, + "fields": { + "id_car_serie": 53183, + "name": "2.0 CVT FWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234879, + "fields": { + "id_car_serie": 51483, + "name": "2.0 MPI AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234880, + "fields": { + "id_car_serie": 53155, + "name": "1.0 CVT FWD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234881, + "fields": { + "id_car_serie": 53155, + "name": "1.0 CVT AWD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234882, + "fields": { + "id_car_serie": 53155, + "name": "1.0T CVT FWD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234883, + "fields": { + "id_car_serie": 53160, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234884, + "fields": { + "id_car_serie": 53160, + "name": "1.6 AT RWD (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234885, + "fields": { + "id_car_serie": 53160, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234886, + "fields": { + "id_car_serie": 53160, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234887, + "fields": { + "id_car_serie": 53160, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234888, + "fields": { + "id_car_serie": 51493, + "name": "3.5 AMT (656 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234889, + "fields": { + "id_car_serie": 53146, + "name": "1.8 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234890, + "fields": { + "id_car_serie": 53209, + "name": "2.5 CVT AWD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234891, + "fields": { + "id_car_serie": 53164, + "name": "2.5 Hybrid CVT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234892, + "fields": { + "id_car_serie": 53162, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234893, + "fields": { + "id_car_serie": 53162, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234894, + "fields": { + "id_car_serie": 53156, + "name": "1.6 FWD (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234895, + "fields": { + "id_car_serie": 53156, + "name": "1.6 AWD (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234896, + "fields": { + "id_car_serie": 53152, + "name": "4 E-Hybrid 2.9 PDK AWD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234897, + "fields": { + "id_car_serie": 53152, + "name": "4S 2.9 PDK AWD (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234898, + "fields": { + "id_car_serie": 53152, + "name": "4 3.0 PDK AWD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234899, + "fields": { + "id_car_serie": 53152, + "name": "Turbo 4.0 PDK AWD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234900, + "fields": { + "id_car_serie": 53195, + "name": "1.5 CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234901, + "fields": { + "id_car_serie": 53161, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234902, + "fields": { + "id_car_serie": 53161, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234903, + "fields": { + "id_car_serie": 53161, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234904, + "fields": { + "id_car_serie": 53161, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234905, + "fields": { + "id_car_serie": 51506, + "name": "1.2 CVT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234906, + "fields": { + "id_car_serie": 51506, + "name": "1.8 CVT Hybrid (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234907, + "fields": { + "id_car_serie": 53190, + "name": "AMG 45 4MATIC (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234908, + "fields": { + "id_car_serie": 53158, + "name": "2.4 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234909, + "fields": { + "id_car_serie": 53158, + "name": "2.4 MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234910, + "fields": { + "id_car_serie": 53158, + "name": "3.2 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234911, + "fields": { + "id_car_serie": 51524, + "name": "1.4 TSI DSG (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234912, + "fields": { + "id_car_serie": 51524, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234913, + "fields": { + "id_car_serie": 51524, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234914, + "fields": { + "id_car_serie": 51524, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234915, + "fields": { + "id_car_serie": 53173, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234916, + "fields": { + "id_car_serie": 53173, + "name": "2.0 MT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234918, + "fields": { + "id_car_serie": 53153, + "name": "2.0 MT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234919, + "fields": { + "id_car_serie": 53157, + "name": "2.4 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234920, + "fields": { + "id_car_serie": 53157, + "name": "2.4 MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234921, + "fields": { + "id_car_serie": 53159, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234922, + "fields": { + "id_car_serie": 53159, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234923, + "fields": { + "id_car_serie": 53159, + "name": "2.5 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234924, + "fields": { + "id_car_serie": 53151, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234925, + "fields": { + "id_car_serie": 53151, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234926, + "fields": { + "id_car_serie": 53151, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234927, + "fields": { + "id_car_serie": 53151, + "name": "1.6 HDi MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234928, + "fields": { + "id_car_serie": 53163, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234929, + "fields": { + "id_car_serie": 53163, + "name": "1.8 CVT AWD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234930, + "fields": { + "id_car_serie": 53163, + "name": "1.8 CVT FWD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234931, + "fields": { + "id_car_serie": 53163, + "name": "2.0 CVT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234932, + "fields": { + "id_car_serie": 53170, + "name": "2.5T AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234933, + "fields": { + "id_car_serie": 53170, + "name": "2.5 AT RWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234934, + "fields": { + "id_car_serie": 53170, + "name": "2.5 AT AWD (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234935, + "fields": { + "id_car_serie": 53170, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234936, + "fields": { + "id_car_serie": 53150, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234937, + "fields": { + "id_car_serie": 53150, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234938, + "fields": { + "id_car_serie": 53150, + "name": "1.6 Turbo MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234939, + "fields": { + "id_car_serie": 53150, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234940, + "fields": { + "id_car_serie": 53150, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234941, + "fields": { + "id_car_serie": 53150, + "name": "1.9 CDTI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234942, + "fields": { + "id_car_serie": 53150, + "name": "2.0 Turbo MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234943, + "fields": { + "id_car_serie": 53150, + "name": "2.0 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234944, + "fields": { + "id_car_serie": 53174, + "name": "2.0 AT RWD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234945, + "fields": { + "id_car_serie": 53174, + "name": "2.0 AT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234946, + "fields": { + "id_car_serie": 53174, + "name": "2.5 T AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234947, + "fields": { + "id_car_serie": 53174, + "name": "2.5 AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234948, + "fields": { + "id_car_serie": 53174, + "name": "2.5 AT RWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234949, + "fields": { + "id_car_serie": 53174, + "name": "2.5 T MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234950, + "fields": { + "id_car_serie": 53175, + "name": "2.0 AT RWD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234951, + "fields": { + "id_car_serie": 53175, + "name": "2.0 AT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234952, + "fields": { + "id_car_serie": 53175, + "name": "2.5 T AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234953, + "fields": { + "id_car_serie": 53175, + "name": "2.5 AT AWD (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234954, + "fields": { + "id_car_serie": 53175, + "name": "2.5 AT RWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234955, + "fields": { + "id_car_serie": 53176, + "name": "2.2 AT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234956, + "fields": { + "id_car_serie": 53176, + "name": "2.2 AT FWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234957, + "fields": { + "id_car_serie": 53176, + "name": "2.5 AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234958, + "fields": { + "id_car_serie": 53176, + "name": "2.5 AT FWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234959, + "fields": { + "id_car_serie": 53177, + "name": "2.5 AT 2WD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234960, + "fields": { + "id_car_serie": 53177, + "name": "2.5 AT 4WD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234961, + "fields": { + "id_car_serie": 53177, + "name": "3.5 AT (318 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234962, + "fields": { + "id_car_serie": 53179, + "name": "1.8 Hybrid CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234963, + "fields": { + "id_car_serie": 53179, + "name": "2.0 CVT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234964, + "fields": { + "id_car_serie": 53179, + "name": "2.0 CVT FWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234965, + "fields": { + "id_car_serie": 53172, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234966, + "fields": { + "id_car_serie": 53172, + "name": "1.5 AT AWD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234967, + "fields": { + "id_car_serie": 53172, + "name": "1.5 AT FWD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234968, + "fields": { + "id_car_serie": 53181, + "name": "2.4 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234969, + "fields": { + "id_car_serie": 53181, + "name": "2.4 CVT 2WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234970, + "fields": { + "id_car_serie": 53181, + "name": "2.4 Hybrid CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234971, + "fields": { + "id_car_serie": 53181, + "name": "3.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234972, + "fields": { + "id_car_serie": 53181, + "name": "3.5 AT 2WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234973, + "fields": { + "id_car_serie": 53167, + "name": "2.5 AT RWD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234974, + "fields": { + "id_car_serie": 53167, + "name": "2.5 AT AWD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234975, + "fields": { + "id_car_serie": 53167, + "name": "3.5 AT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234976, + "fields": { + "id_car_serie": 51522, + "name": "1.6 T GDi DCT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234977, + "fields": { + "id_car_serie": 51522, + "name": "2.0 AT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234978, + "fields": { + "id_car_serie": 51522, + "name": "2.0 T GDi AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234979, + "fields": { + "id_car_serie": 51522, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234980, + "fields": { + "id_car_serie": 51522, + "name": "2.0 MT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234981, + "fields": { + "id_car_serie": 51522, + "name": "2.0 DSG (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234982, + "fields": { + "id_car_serie": 51522, + "name": "2.4 GDI AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234983, + "fields": { + "id_car_serie": 53189, + "name": "200 7G-DCT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234984, + "fields": { + "id_car_serie": 53189, + "name": "250 7G-DCT 4MATIC (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234985, + "fields": { + "id_car_serie": 53178, + "name": "1.8 Hybrid CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234986, + "fields": { + "id_car_serie": 53178, + "name": "2.0 CVT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234987, + "fields": { + "id_car_serie": 53178, + "name": "2.0 CVT FWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234993, + "fields": { + "id_car_serie": 53182, + "name": "2.4 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234994, + "fields": { + "id_car_serie": 53182, + "name": "2.4 CVT 2WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234995, + "fields": { + "id_car_serie": 53182, + "name": "3.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234996, + "fields": { + "id_car_serie": 53182, + "name": "3.5 AT 2WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234997, + "fields": { + "id_car_serie": 53185, + "name": "2.0 CVT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234998, + "fields": { + "id_car_serie": 53185, + "name": "2.0 CVT 2WD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 234999, + "fields": { + "id_car_serie": 53180, + "name": "2.0 CVT FWD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235000, + "fields": { + "id_car_serie": 53180, + "name": "2.0 CVT AWD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235001, + "fields": { + "id_car_serie": 53206, + "name": "4.7 AT 4WD (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235002, + "fields": { + "id_car_serie": 53184, + "name": "1.8 CVT Hybrid (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235003, + "fields": { + "id_car_serie": 53184, + "name": "2.0 CVT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235004, + "fields": { + "id_car_serie": 53184, + "name": "2.0 CVT 2WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235005, + "fields": { + "id_car_serie": 53147, + "name": "1.0 TFSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235006, + "fields": { + "id_car_serie": 53147, + "name": "1.0 TFSI S-tronic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235007, + "fields": { + "id_car_serie": 53147, + "name": "1.4 TFSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235008, + "fields": { + "id_car_serie": 53147, + "name": "1.4 TFSI S-tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235009, + "fields": { + "id_car_serie": 53147, + "name": "1.6 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235010, + "fields": { + "id_car_serie": 53147, + "name": "1.6 TDI S-tronic (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235011, + "fields": { + "id_car_serie": 53147, + "name": "2.0 TDI MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235012, + "fields": { + "id_car_serie": 53147, + "name": "2.0 TFSI MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235013, + "fields": { + "id_car_serie": 53147, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235014, + "fields": { + "id_car_serie": 53147, + "name": "2.0 TDI S-tronic quattro (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235015, + "fields": { + "id_car_serie": 53147, + "name": "2.0 TFSI S-tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235016, + "fields": { + "id_car_serie": 53147, + "name": "2.0 TFSI S-tronic quattro (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235017, + "fields": { + "id_car_serie": 53147, + "name": "2.0 TDI S-tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235018, + "fields": { + "id_car_serie": 53196, + "name": "1.5 CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235019, + "fields": { + "id_car_serie": 53197, + "name": "1.5 CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235020, + "fields": { + "id_car_serie": 53202, + "name": "1.8 Hybrid CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235021, + "fields": { + "id_car_serie": 53202, + "name": "2.0 CVT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235022, + "fields": { + "id_car_serie": 53202, + "name": "2.0 CVT FWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235023, + "fields": { + "id_car_serie": 53203, + "name": "3.6 AT 5'7\" box (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235024, + "fields": { + "id_car_serie": 53203, + "name": "3.6 AT 4x4 5'7\" box (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235025, + "fields": { + "id_car_serie": 53203, + "name": "5.7 AT 6'4\" box (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235026, + "fields": { + "id_car_serie": 53203, + "name": "5.7 AT 4x4 6'4\" box (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235027, + "fields": { + "id_car_serie": 53203, + "name": "5.7 AT 4x4 5'7\" box (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235028, + "fields": { + "id_car_serie": 53203, + "name": "5.7 AT 5'7\" box (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235029, + "fields": { + "id_car_serie": 53201, + "name": "1.8 Hybrid CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235030, + "fields": { + "id_car_serie": 53201, + "name": "2.0 CVT FWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235031, + "fields": { + "id_car_serie": 53201, + "name": "2.0 CVT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235032, + "fields": { + "id_car_serie": 53210, + "name": "2.0 HDi AT M (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235033, + "fields": { + "id_car_serie": 53210, + "name": "2.0 HDi AT XL (8 places) (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235034, + "fields": { + "id_car_serie": 53210, + "name": "2.0 HDi AT XL (7 places) (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235035, + "fields": { + "id_car_serie": 53210, + "name": "2.0 HDi MT M (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235036, + "fields": { + "id_car_serie": 53210, + "name": "2.0 HDi MT XL (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235037, + "fields": { + "id_car_serie": 53207, + "name": "D150 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235038, + "fields": { + "id_car_serie": 53207, + "name": "D180 AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235039, + "fields": { + "id_car_serie": 53207, + "name": "P250 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235040, + "fields": { + "id_car_serie": 53207, + "name": "P300 AT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235041, + "fields": { + "id_car_serie": 53207, + "name": "D240 AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235046, + "fields": { + "id_car_serie": 3284, + "name": "2.0 TD MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235047, + "fields": { + "id_car_serie": 51271, + "name": "AMG 43 4MATIC 9G-TRONIC (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235048, + "fields": { + "id_car_serie": 5941, + "name": "3.6 AT AWD (283 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235049, + "fields": { + "id_car_serie": 7793, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235050, + "fields": { + "id_car_serie": 7793, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235051, + "fields": { + "id_car_serie": 7793, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235052, + "fields": { + "id_car_serie": 7793, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235053, + "fields": { + "id_car_serie": 7793, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235054, + "fields": { + "id_car_serie": 7793, + "name": "2.0d AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235055, + "fields": { + "id_car_serie": 7793, + "name": "2.0d MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235056, + "fields": { + "id_car_serie": 7793, + "name": "2.0d MT AWD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235057, + "fields": { + "id_car_serie": 8006, + "name": "1.8 TSI DSG (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235073, + "fields": { + "id_car_serie": 15166, + "name": "1.2 TCe MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235074, + "fields": { + "id_car_serie": 15166, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235075, + "fields": { + "id_car_serie": 15166, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235076, + "fields": { + "id_car_serie": 15166, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235077, + "fields": { + "id_car_serie": 14985, + "name": "1.0 T-GDi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235078, + "fields": { + "id_car_serie": 14985, + "name": "1.4 T-GDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235079, + "fields": { + "id_car_serie": 14985, + "name": "1.4 MPi MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235080, + "fields": { + "id_car_serie": 14985, + "name": "1.4 T-GDi DCT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235081, + "fields": { + "id_car_serie": 14985, + "name": "1.6 CRDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235082, + "fields": { + "id_car_serie": 14985, + "name": "1.6 CRDi DCT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235083, + "fields": { + "id_car_serie": 14985, + "name": "1.6 CRDi DCT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235084, + "fields": { + "id_car_serie": 15266, + "name": "1.6 TD MT Maxi (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235085, + "fields": { + "id_car_serie": 15266, + "name": "1.6 TD AMT Maxi (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235086, + "fields": { + "id_car_serie": 15266, + "name": "2.0 TD MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235087, + "fields": { + "id_car_serie": 45147, + "name": "2.0 TDCi AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235088, + "fields": { + "id_car_serie": 45147, + "name": "2.0 TDCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235089, + "fields": { + "id_car_serie": 10738, + "name": "2.5 T5 AWD Geartronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235090, + "fields": { + "id_car_serie": 45142, + "name": "2.2 TDCi AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235091, + "fields": { + "id_car_serie": 45143, + "name": "1.6 Ti-VCT MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235092, + "fields": { + "id_car_serie": 45143, + "name": "1.6 EcoBoost MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235093, + "fields": { + "id_car_serie": 45143, + "name": "1.6 TDCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235094, + "fields": { + "id_car_serie": 45143, + "name": "2.0 TDCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235095, + "fields": { + "id_car_serie": 45143, + "name": "2.0 TDCi PowerShift (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235096, + "fields": { + "id_car_serie": 45144, + "name": "1.6 TDCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235097, + "fields": { + "id_car_serie": 45144, + "name": "1.6 EcoBoost MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235098, + "fields": { + "id_car_serie": 45144, + "name": "2.0 TDCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235099, + "fields": { + "id_car_serie": 45144, + "name": "2.0 TDCi PowerShift (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235100, + "fields": { + "id_car_serie": 45144, + "name": "2.2 TDCi AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235101, + "fields": { + "id_car_serie": 45148, + "name": "2.0 TDCi AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235102, + "fields": { + "id_car_serie": 45148, + "name": "2.0 TDCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235103, + "fields": { + "id_car_serie": 46055, + "name": "2.0 AT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235104, + "fields": { + "id_car_serie": 47492, + "name": "119 BlueTEC AT L3 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235105, + "fields": { + "id_car_serie": 47492, + "name": "116 CDI AT L3 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235106, + "fields": { + "id_car_serie": 47492, + "name": "116 CDI AT L1 4x4 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235107, + "fields": { + "id_car_serie": 47492, + "name": "116 CDI AT L2 4x4 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235108, + "fields": { + "id_car_serie": 47492, + "name": "116 CDI AT L3 4x4 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235109, + "fields": { + "id_car_serie": 47492, + "name": "119 BlueTEC AT L1 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235110, + "fields": { + "id_car_serie": 47492, + "name": "119 BlueTEC AT L2 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235111, + "fields": { + "id_car_serie": 47492, + "name": "116 CDI AT L2 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235112, + "fields": { + "id_car_serie": 47492, + "name": "114 CDI AT L1 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235113, + "fields": { + "id_car_serie": 47492, + "name": "114 CDI AT L2 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235114, + "fields": { + "id_car_serie": 47492, + "name": "114 CDI AT L3 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235115, + "fields": { + "id_car_serie": 47492, + "name": "114 CDI AT L1 4x4 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235116, + "fields": { + "id_car_serie": 47492, + "name": "114 CDI AT L2 4x4 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235117, + "fields": { + "id_car_serie": 47492, + "name": "114 CDI AT L3 4x4 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235118, + "fields": { + "id_car_serie": 47492, + "name": "116 CDI AT L1 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235119, + "fields": { + "id_car_serie": 46922, + "name": "6.7 AT EWB (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235120, + "fields": { + "id_car_serie": 47040, + "name": "2.0 AT CVVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235121, + "fields": { + "id_car_serie": 47493, + "name": "119 BlueTEC AT L3 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235122, + "fields": { + "id_car_serie": 47493, + "name": "116 CDI AT L3 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235123, + "fields": { + "id_car_serie": 47493, + "name": "116 CDI AT L1 4x4 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235124, + "fields": { + "id_car_serie": 47493, + "name": "116 CDI AT L2 4x4 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235125, + "fields": { + "id_car_serie": 47493, + "name": "116 CDI AT L3 4x4 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235126, + "fields": { + "id_car_serie": 47493, + "name": "119 BlueTEC AT L1 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235127, + "fields": { + "id_car_serie": 47493, + "name": "119 BlueTEC AT L2 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235128, + "fields": { + "id_car_serie": 47493, + "name": "114 CDI AT L1 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235129, + "fields": { + "id_car_serie": 47493, + "name": "114 CDI AT L2 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235130, + "fields": { + "id_car_serie": 47493, + "name": "114 CDI AT L3 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235131, + "fields": { + "id_car_serie": 47493, + "name": "114 CDI AT L1 4x4 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235132, + "fields": { + "id_car_serie": 47493, + "name": "114 CDI AT L2 4x4 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235133, + "fields": { + "id_car_serie": 47493, + "name": "114 CDI AT L3 4x4 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235134, + "fields": { + "id_car_serie": 47493, + "name": "116 CDI AT L1 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235135, + "fields": { + "id_car_serie": 47493, + "name": "116 CDI AT L2 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235136, + "fields": { + "id_car_serie": 48788, + "name": "80 kw 7 places (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235137, + "fields": { + "id_car_serie": 48788, + "name": "80 kw 5 places (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235139, + "fields": { + "id_car_serie": 49468, + "name": "1.7 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235140, + "fields": { + "id_car_serie": 49792, + "name": "AMG 43 4MATIC 9G-TRONIC (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235143, + "fields": { + "id_car_serie": 49899, + "name": "320i AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235144, + "fields": { + "id_car_serie": 49899, + "name": "320i MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235145, + "fields": { + "id_car_serie": 50428, + "name": "C 63 AMG Perfomance Package Speedshift MCT (487 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235146, + "fields": { + "id_car_serie": 50428, + "name": "C 63 AMG Edition 507 Speedshift MCT (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235147, + "fields": { + "id_car_serie": 50428, + "name": "C 63 AMG Black Series Speedshift MCT (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235148, + "fields": { + "id_car_serie": 50429, + "name": "C 63 AMG Performance Package Speedshift MCT (487 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235149, + "fields": { + "id_car_serie": 50429, + "name": "C 63 AMG Edition 507 Speedshift MCT (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235150, + "fields": { + "id_car_serie": 50431, + "name": "C 350 7G-Tronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235151, + "fields": { + "id_car_serie": 50432, + "name": "C 305 4MATIC 7G-Tronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235152, + "fields": { + "id_car_serie": 50433, + "name": "C 63 AMG Performance Package Speedshift MCT (487 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235153, + "fields": { + "id_car_serie": 50433, + "name": "C 63 AMG Edition 507 Speedshift MCT (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235154, + "fields": { + "id_car_serie": 50434, + "name": "C 63 AMG Performance Package Plus 7G-Tronic (487 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235155, + "fields": { + "id_car_serie": 50435, + "name": "C 350 CDI 4MATIC 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235156, + "fields": { + "id_car_serie": 50436, + "name": "C 63 AMG Performance Package Plus 7G-Tronic (487 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235157, + "fields": { + "id_car_serie": 6909, + "name": "C 350 CDI 4MATIC 7G-Tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235158, + "fields": { + "id_car_serie": 50469, + "name": "E 350 7G-Tronic Plus (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235159, + "fields": { + "id_car_serie": 6942, + "name": "SL 500 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235161, + "fields": { + "id_car_serie": 44995, + "name": "V 250 AT L3 (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235162, + "fields": { + "id_car_serie": 44995, + "name": "V 250 AT L2 (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235163, + "fields": { + "id_car_serie": 44995, + "name": "V 200 d AT L2 4x4 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235164, + "fields": { + "id_car_serie": 44995, + "name": "V 200 d AT L1 4x4 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235165, + "fields": { + "id_car_serie": 44995, + "name": "V 200 d AT L3 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235166, + "fields": { + "id_car_serie": 44995, + "name": "V 200 d AT L2 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235167, + "fields": { + "id_car_serie": 44995, + "name": "V 200 d AT L1 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235168, + "fields": { + "id_car_serie": 44995, + "name": "V 220 d AT L1 4x4 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235169, + "fields": { + "id_car_serie": 44995, + "name": "V 220 d AT L2 4x4 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235170, + "fields": { + "id_car_serie": 44995, + "name": "V 220 d AT L3 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235171, + "fields": { + "id_car_serie": 44995, + "name": "V 220 d AT L1 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235172, + "fields": { + "id_car_serie": 44995, + "name": "V 200 d AT L3 4x4 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235173, + "fields": { + "id_car_serie": 44995, + "name": "V 220 d AT L3 4x4 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235174, + "fields": { + "id_car_serie": 44995, + "name": "V 250 d AT L1 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235175, + "fields": { + "id_car_serie": 44995, + "name": "V 250 d AT L3 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235176, + "fields": { + "id_car_serie": 44995, + "name": "V 250 d AT L2 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235177, + "fields": { + "id_car_serie": 44995, + "name": "V 220 d AT L2 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235178, + "fields": { + "id_car_serie": 51417, + "name": "63 S AMG 9G-TRONIC 4MATIC+ (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235179, + "fields": { + "id_car_serie": 51417, + "name": "63 AMG 9G-TRONIC 4MATIC+ (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235180, + "fields": { + "id_car_serie": 51433, + "name": "63 S AMG 9G-TRONIC 4MATIC+ (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235181, + "fields": { + "id_car_serie": 51433, + "name": "63 AMG 9G-TRONIC 4MATIC+ (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235182, + "fields": { + "id_car_serie": 51536, + "name": "2.0 TDI 4Motion DSG (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235183, + "fields": { + "id_car_serie": 51536, + "name": "2.0 TDI 4Motion DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235184, + "fields": { + "id_car_serie": 53231, + "name": "S 450 9G-Tronic 4Matic (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235185, + "fields": { + "id_car_serie": 53231, + "name": "S 650 7G-Tronic Plus (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235186, + "fields": { + "id_car_serie": 53221, + "name": "3.7 AT RWD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235187, + "fields": { + "id_car_serie": 53221, + "name": "3.7 MT RWD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235188, + "fields": { + "id_car_serie": 53139, + "name": "1.6 dCi MT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235189, + "fields": { + "id_car_serie": 53139, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235190, + "fields": { + "id_car_serie": 53139, + "name": "2.0 CVT AWD (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235191, + "fields": { + "id_car_serie": 53139, + "name": "2.0 CVT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235192, + "fields": { + "id_car_serie": 53139, + "name": "2.5 CVT AWD (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235193, + "fields": { + "id_car_serie": 53199, + "name": "1.6 Puretech AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235194, + "fields": { + "id_car_serie": 53199, + "name": "2.0 BlueHDi AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235195, + "fields": { + "id_car_serie": 51492, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235196, + "fields": { + "id_car_serie": 51492, + "name": "1.6 VTi AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235197, + "fields": { + "id_car_serie": 51492, + "name": "1.6 BlueHDi MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235198, + "fields": { + "id_car_serie": 51492, + "name": "1.6 VTi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235221, + "fields": { + "id_car_serie": 53132, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235222, + "fields": { + "id_car_serie": 53132, + "name": "2.0 CVT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235223, + "fields": { + "id_car_serie": 51495, + "name": "1.4 4x4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235224, + "fields": { + "id_car_serie": 51495, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235225, + "fields": { + "id_car_serie": 51495, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235226, + "fields": { + "id_car_serie": 51495, + "name": "2.0 4x4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235227, + "fields": { + "id_car_serie": 51495, + "name": "2.0 4x4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235228, + "fields": { + "id_car_serie": 51495, + "name": "2.4 4x4 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235229, + "fields": { + "id_car_serie": 51495, + "name": "2.4 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235230, + "fields": { + "id_car_serie": 51495, + "name": "2.4 4x4 MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235231, + "fields": { + "id_car_serie": 51495, + "name": "2.4 MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235232, + "fields": { + "id_car_serie": 53065, + "name": "3.3 AT AWD (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235233, + "fields": { + "id_car_serie": 53222, + "name": "2.5 AT RWD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235234, + "fields": { + "id_car_serie": 53222, + "name": "2.5 AT AWD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235235, + "fields": { + "id_car_serie": 53222, + "name": "3.5 AT RWD (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235236, + "fields": { + "id_car_serie": 53222, + "name": "3.7 AT RWD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235237, + "fields": { + "id_car_serie": 51497, + "name": "2.0 AT ALL4 (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235238, + "fields": { + "id_car_serie": 51497, + "name": "2.0 MT ALL4 (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235239, + "fields": { + "id_car_serie": 53219, + "name": "2.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235240, + "fields": { + "id_car_serie": 53219, + "name": "3.5 AT RWD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235241, + "fields": { + "id_car_serie": 53219, + "name": "3.5 AT AWD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235242, + "fields": { + "id_car_serie": 53239, + "name": "2.0 AT RWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235243, + "fields": { + "id_car_serie": 53239, + "name": "2.0 AT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235244, + "fields": { + "id_car_serie": 53239, + "name": "2.0 MT RWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235245, + "fields": { + "id_car_serie": 53239, + "name": "2.2 AT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235246, + "fields": { + "id_car_serie": 53239, + "name": "2.2 AT RWD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235247, + "fields": { + "id_car_serie": 53239, + "name": "2.2 MT RWD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235248, + "fields": { + "id_car_serie": 53239, + "name": "2.2 MT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235249, + "fields": { + "id_car_serie": 53224, + "name": "3.0 MT (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235250, + "fields": { + "id_car_serie": 53224, + "name": "3.0 DCT (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235251, + "fields": { + "id_car_serie": 53145, + "name": "1.0 TSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235252, + "fields": { + "id_car_serie": 53145, + "name": "1.0 TSI DSG (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235253, + "fields": { + "id_car_serie": 53145, + "name": "1.5 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235254, + "fields": { + "id_car_serie": 53145, + "name": "1.5 TSI MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235255, + "fields": { + "id_car_serie": 53145, + "name": "1.5 TSI DSG 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235256, + "fields": { + "id_car_serie": 53145, + "name": "1.5 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235257, + "fields": { + "id_car_serie": 53145, + "name": "1.6 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235258, + "fields": { + "id_car_serie": 53145, + "name": "1.6 TDI DSG (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235259, + "fields": { + "id_car_serie": 53145, + "name": "2.0 TDI MT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235260, + "fields": { + "id_car_serie": 53145, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235261, + "fields": { + "id_car_serie": 53145, + "name": "2.0 TDI DSG 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235262, + "fields": { + "id_car_serie": 53145, + "name": "2.0 TDI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235263, + "fields": { + "id_car_serie": 53145, + "name": "2.0 TDI DSG 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235264, + "fields": { + "id_car_serie": 53059, + "name": "2.0 MT AWD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235265, + "fields": { + "id_car_serie": 53059, + "name": "2.0 CVT AWD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235266, + "fields": { + "id_car_serie": 53200, + "name": "1.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235267, + "fields": { + "id_car_serie": 53200, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235268, + "fields": { + "id_car_serie": 53200, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235269, + "fields": { + "id_car_serie": 53200, + "name": "1.6 BlueHDi AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235270, + "fields": { + "id_car_serie": 53200, + "name": "1.6 BlueHDi MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235271, + "fields": { + "id_car_serie": 51516, + "name": "2.0 AT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235272, + "fields": { + "id_car_serie": 51490, + "name": "520i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235273, + "fields": { + "id_car_serie": 51490, + "name": "530d xDrive Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235274, + "fields": { + "id_car_serie": 51490, + "name": "M550d xDrive Steptronic (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235275, + "fields": { + "id_car_serie": 51513, + "name": "1.6 HDi 5MT L1 2495kg (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235279, + "fields": { + "id_car_serie": 51513, + "name": "2.0 HDi 6AT L2 2495kg (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235283, + "fields": { + "id_car_serie": 51513, + "name": "2.0 HDi 6MT L1 2495kg (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235289, + "fields": { + "id_car_serie": 51530, + "name": "E 200 4MATIC G-TRONIC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235290, + "fields": { + "id_car_serie": 51494, + "name": "2.0 CVT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235291, + "fields": { + "id_car_serie": 53187, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235293, + "fields": { + "id_car_serie": 53187, + "name": "1.8 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235294, + "fields": { + "id_car_serie": 53148, + "name": "xDrive20d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235295, + "fields": { + "id_car_serie": 53148, + "name": "M40i Steptronic (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235296, + "fields": { + "id_car_serie": 53148, + "name": "xDrive30d Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235297, + "fields": { + "id_car_serie": 51527, + "name": "1.2 DIG-T MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235298, + "fields": { + "id_car_serie": 51527, + "name": "1.2 DIG-T Xtronic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235299, + "fields": { + "id_car_serie": 51527, + "name": "1.5 dCI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235300, + "fields": { + "id_car_serie": 51527, + "name": "1.6 dCI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235301, + "fields": { + "id_car_serie": 51527, + "name": "1.6 dCI MT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235302, + "fields": { + "id_car_serie": 51527, + "name": "1.6 DIG-T MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235303, + "fields": { + "id_car_serie": 51527, + "name": "1.6 dCI Xtronic (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235304, + "fields": { + "id_car_serie": 51506, + "name": "1.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235305, + "fields": { + "id_car_serie": 51506, + "name": "1.2 CVT AWD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235306, + "fields": { + "id_car_serie": 51506, + "name": "2.0 CVT AWD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235307, + "fields": { + "id_car_serie": 51507, + "name": "2.0T AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235308, + "fields": { + "id_car_serie": 51507, + "name": "3.6 V6 AT 4Motion (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235309, + "fields": { + "id_car_serie": 51507, + "name": "3.6 V6 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235310, + "fields": { + "id_car_serie": 53233, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235311, + "fields": { + "id_car_serie": 53233, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235312, + "fields": { + "id_car_serie": 53233, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235313, + "fields": { + "id_car_serie": 53233, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235314, + "fields": { + "id_car_serie": 53233, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235315, + "fields": { + "id_car_serie": 53233, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235316, + "fields": { + "id_car_serie": 53233, + "name": "2.0 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235317, + "fields": { + "id_car_serie": 53233, + "name": "2.0 TD MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235318, + "fields": { + "id_car_serie": 53214, + "name": "4.7 AT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235319, + "fields": { + "id_car_serie": 53214, + "name": "4.7 AMT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235320, + "fields": { + "id_car_serie": 53055, + "name": "1.0 T-GDi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235321, + "fields": { + "id_car_serie": 53055, + "name": "1.4 T-GDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235322, + "fields": { + "id_car_serie": 53055, + "name": "1.4 MPi MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235323, + "fields": { + "id_car_serie": 53055, + "name": "1.4 T-GDi DCT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235324, + "fields": { + "id_car_serie": 53055, + "name": "1.6 MPi AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235325, + "fields": { + "id_car_serie": 53055, + "name": "1.6 CRDi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235326, + "fields": { + "id_car_serie": 53055, + "name": "1.6 MPi MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235327, + "fields": { + "id_car_serie": 53055, + "name": "1.6 CRDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235328, + "fields": { + "id_car_serie": 53055, + "name": "1.6 T-GDi MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235329, + "fields": { + "id_car_serie": 53055, + "name": "1.6 CRDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235330, + "fields": { + "id_car_serie": 53055, + "name": "1.6 T-GDi DCT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235331, + "fields": { + "id_car_serie": 53055, + "name": "1.6 CRDi DCT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235332, + "fields": { + "id_car_serie": 53055, + "name": "1.6 CRDi DCT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235333, + "fields": { + "id_car_serie": 53055, + "name": "2.0 GDi AT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235334, + "fields": { + "id_car_serie": 53055, + "name": "2.0 GDi MT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235335, + "fields": { + "id_car_serie": 53220, + "name": "2.5 AT RWD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235336, + "fields": { + "id_car_serie": 53220, + "name": "2.5 AT AWD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235337, + "fields": { + "id_car_serie": 53220, + "name": "3.7 AT RWD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235338, + "fields": { + "id_car_serie": 53215, + "name": "1.6 AT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235339, + "fields": { + "id_car_serie": 53215, + "name": "1.6 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235340, + "fields": { + "id_car_serie": 53215, + "name": "2.0 TD AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235341, + "fields": { + "id_car_serie": 53215, + "name": "2.0 TD MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235342, + "fields": { + "id_car_serie": 53215, + "name": "2.0 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235343, + "fields": { + "id_car_serie": 53215, + "name": "2.5 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235344, + "fields": { + "id_car_serie": 53215, + "name": "2.5 AT 4WD (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235345, + "fields": { + "id_car_serie": 53215, + "name": "2.5 MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235346, + "fields": { + "id_car_serie": 53215, + "name": "2.5 MT 4WD (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235347, + "fields": { + "id_car_serie": 51526, + "name": "2.0 D4 AT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235348, + "fields": { + "id_car_serie": 51526, + "name": "2.0 D5 AT AWD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235349, + "fields": { + "id_car_serie": 51526, + "name": "2.0 T5 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235350, + "fields": { + "id_car_serie": 51526, + "name": "2.0 T6 AT AWD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235351, + "fields": { + "id_car_serie": 51526, + "name": "2.0 T8 AT AWD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235352, + "fields": { + "id_car_serie": 53216, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235353, + "fields": { + "id_car_serie": 53216, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235354, + "fields": { + "id_car_serie": 53216, + "name": "2.0 D MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235355, + "fields": { + "id_car_serie": 53208, + "name": "X 250 d 7G-Tronic Plus 4Matic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235356, + "fields": { + "id_car_serie": 53208, + "name": "X 250 d 7G-Tronic Plus (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235357, + "fields": { + "id_car_serie": 53208, + "name": "X 220 d MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235358, + "fields": { + "id_car_serie": 53208, + "name": "X 250 d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235359, + "fields": { + "id_car_serie": 53208, + "name": "X 220 d MT 4Matic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235360, + "fields": { + "id_car_serie": 53208, + "name": "X 250 d MT 4Matic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235361, + "fields": { + "id_car_serie": 53208, + "name": "X 200 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235362, + "fields": { + "id_car_serie": 53208, + "name": "X 350 d 7G-Tronic Plus 4Matic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235387, + "fields": { + "id_car_serie": 53234, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235388, + "fields": { + "id_car_serie": 53234, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235389, + "fields": { + "id_car_serie": 53234, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235390, + "fields": { + "id_car_serie": 53234, + "name": "2.0 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235391, + "fields": { + "id_car_serie": 51537, + "name": "1.5 CVT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235392, + "fields": { + "id_car_serie": 51535, + "name": "2.0 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235393, + "fields": { + "id_car_serie": 51535, + "name": "3.3 AT AWD (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235394, + "fields": { + "id_car_serie": 53133, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235395, + "fields": { + "id_car_serie": 53133, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235396, + "fields": { + "id_car_serie": 53133, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235397, + "fields": { + "id_car_serie": 53133, + "name": "1.6d MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235398, + "fields": { + "id_car_serie": 53186, + "name": "1.6 HDi 5MT L1 2495kg (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235402, + "fields": { + "id_car_serie": 53186, + "name": "2.0 HDi 6AT L2 2495kg (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235406, + "fields": { + "id_car_serie": 53186, + "name": "2.0 HDi 6MT L1 2495kg (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235412, + "fields": { + "id_car_serie": 53225, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235413, + "fields": { + "id_car_serie": 53225, + "name": "1.6 AMT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235414, + "fields": { + "id_car_serie": 53225, + "name": "1.8 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235415, + "fields": { + "id_car_serie": 53229, + "name": "S 450 9G-Tronic long base (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235416, + "fields": { + "id_car_serie": 53229, + "name": "S 450 9G-Tronic 4Matic long base (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235417, + "fields": { + "id_car_serie": 53229, + "name": "S 600 7G-Tronic Plus long base (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235423, + "fields": { + "id_car_serie": 53230, + "name": "S 65 AMG 7G-Tronic Plus long base (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235424, + "fields": { + "id_car_serie": 53236, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235425, + "fields": { + "id_car_serie": 53227, + "name": "218i Steptronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235426, + "fields": { + "id_car_serie": 53227, + "name": "218i MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235427, + "fields": { + "id_car_serie": 53227, + "name": "220d xDrive Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235428, + "fields": { + "id_car_serie": 53227, + "name": "218d Steptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235429, + "fields": { + "id_car_serie": 53227, + "name": "230i Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235430, + "fields": { + "id_car_serie": 53227, + "name": "220i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235431, + "fields": { + "id_car_serie": 53227, + "name": "220d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235432, + "fields": { + "id_car_serie": 53227, + "name": "225d Steptronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235433, + "fields": { + "id_car_serie": 53227, + "name": "220d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235434, + "fields": { + "id_car_serie": 53227, + "name": "218d MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235435, + "fields": { + "id_car_serie": 53227, + "name": "M240i Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235436, + "fields": { + "id_car_serie": 53227, + "name": "M240i xDrive Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235437, + "fields": { + "id_car_serie": 53227, + "name": "M240i MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235438, + "fields": { + "id_car_serie": 53228, + "name": "218i Steptronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235439, + "fields": { + "id_car_serie": 53228, + "name": "218i MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235440, + "fields": { + "id_car_serie": 53228, + "name": "218d Steptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235441, + "fields": { + "id_car_serie": 53228, + "name": "220i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235442, + "fields": { + "id_car_serie": 53228, + "name": "225d Steptronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235443, + "fields": { + "id_car_serie": 53228, + "name": "230i Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235444, + "fields": { + "id_car_serie": 53228, + "name": "220d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235445, + "fields": { + "id_car_serie": 53228, + "name": "218d MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235446, + "fields": { + "id_car_serie": 53228, + "name": "220d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235447, + "fields": { + "id_car_serie": 53228, + "name": "M240i Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235448, + "fields": { + "id_car_serie": 53228, + "name": "M240i xDrive Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235449, + "fields": { + "id_car_serie": 53228, + "name": "M240i MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235450, + "fields": { + "id_car_serie": 53213, + "name": "4.7 AT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235451, + "fields": { + "id_car_serie": 53213, + "name": "4.7 AMT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235452, + "fields": { + "id_car_serie": 53212, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235453, + "fields": { + "id_car_serie": 53212, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235454, + "fields": { + "id_car_serie": 53212, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235455, + "fields": { + "id_car_serie": 53212, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235456, + "fields": { + "id_car_serie": 53218, + "name": "2.0 AT AWD (259 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235457, + "fields": { + "id_car_serie": 53218, + "name": "2.0 AT (259 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235458, + "fields": { + "id_car_serie": 53218, + "name": "3.6 AT AWD (318 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235459, + "fields": { + "id_car_serie": 53218, + "name": "3.6 AT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235460, + "fields": { + "id_car_serie": 53211, + "name": "2.0 TFSI MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235461, + "fields": { + "id_car_serie": 53211, + "name": "2.0 TFSI S tronic quattro (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235462, + "fields": { + "id_car_serie": 53211, + "name": "2.0 TDI S tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235463, + "fields": { + "id_car_serie": 53211, + "name": "2.0 TFSI S tronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235464, + "fields": { + "id_car_serie": 53211, + "name": "2.0 TDI S tronic quattro (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235465, + "fields": { + "id_car_serie": 53211, + "name": "3.0 TDI S tronic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235466, + "fields": { + "id_car_serie": 53211, + "name": "3.0 TDI S tronic quattro (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235523, + "fields": { + "id_car_serie": 3962, + "name": "2.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235524, + "fields": { + "id_car_serie": 3964, + "name": "1.6 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235525, + "fields": { + "id_car_serie": 3964, + "name": "1.6 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235526, + "fields": { + "id_car_serie": 3964, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235527, + "fields": { + "id_car_serie": 3964, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235528, + "fields": { + "id_car_serie": 3964, + "name": "1.6 16V MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235529, + "fields": { + "id_car_serie": 3964, + "name": "1.8 16V MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235530, + "fields": { + "id_car_serie": 3964, + "name": "1.8 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235531, + "fields": { + "id_car_serie": 3964, + "name": "2.0 16V AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235532, + "fields": { + "id_car_serie": 3964, + "name": "2.0 HDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235533, + "fields": { + "id_car_serie": 3964, + "name": "2.0 16V MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235534, + "fields": { + "id_car_serie": 3964, + "name": "2.0 16V GTi 6MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235535, + "fields": { + "id_car_serie": 4082, + "name": "1.2 TCe MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235536, + "fields": { + "id_car_serie": 4082, + "name": "1.2 TCe MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235537, + "fields": { + "id_car_serie": 4082, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235538, + "fields": { + "id_car_serie": 4082, + "name": "1.5 dCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235539, + "fields": { + "id_car_serie": 4082, + "name": "1.5 dCi AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235540, + "fields": { + "id_car_serie": 4082, + "name": "1.6 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235541, + "fields": { + "id_car_serie": 4082, + "name": "1.6 dCi AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235542, + "fields": { + "id_car_serie": 4254, + "name": "2.0TD MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235543, + "fields": { + "id_car_serie": 4495, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235544, + "fields": { + "id_car_serie": 8322, + "name": "1.8 AMT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235545, + "fields": { + "id_car_serie": 7791, + "name": "1.6 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235546, + "fields": { + "id_car_serie": 7791, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235547, + "fields": { + "id_car_serie": 7791, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235548, + "fields": { + "id_car_serie": 7791, + "name": "2.0 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235549, + "fields": { + "id_car_serie": 10775, + "name": "113 CDI BlueEfficiency AT over long (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235550, + "fields": { + "id_car_serie": 10775, + "name": "113 CDI BlueEfficiency AT extended (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235551, + "fields": { + "id_car_serie": 10775, + "name": "113 CDI BlueEfficiency AT compact (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235552, + "fields": { + "id_car_serie": 15105, + "name": "1.5 dCi AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235553, + "fields": { + "id_car_serie": 15270, + "name": "1.5 EcoBoost MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235554, + "fields": { + "id_car_serie": 45166, + "name": "2.0 PHEV 4WD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235555, + "fields": { + "id_car_serie": 45717, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235556, + "fields": { + "id_car_serie": 47394, + "name": "1.2 MT (7 places) (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235557, + "fields": { + "id_car_serie": 47394, + "name": "1.5 dCi MT (5 places) (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235558, + "fields": { + "id_car_serie": 47394, + "name": "1.5 dCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235559, + "fields": { + "id_car_serie": 47394, + "name": "1.5 dCi AMT (7 places) (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235560, + "fields": { + "id_car_serie": 47394, + "name": "1.5 dCi AMT (5 places) (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235561, + "fields": { + "id_car_serie": 47394, + "name": "2.0 dCi MT (5 places) (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235562, + "fields": { + "id_car_serie": 49165, + "name": "2.7 MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235563, + "fields": { + "id_car_serie": 50425, + "name": "C 180 9G-Tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235564, + "fields": { + "id_car_serie": 50427, + "name": "C 180 9G-Tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235567, + "fields": { + "id_car_serie": 50534, + "name": "G 280 CDI AT (183 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235568, + "fields": { + "id_car_serie": 50535, + "name": "230 GE MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235569, + "fields": { + "id_car_serie": 50536, + "name": "290 GD MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235570, + "fields": { + "id_car_serie": 50537, + "name": "230 GE MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235579, + "fields": { + "id_car_serie": 51414, + "name": "S Exclusive Series 3.8 PDK (607 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235580, + "fields": { + "id_car_serie": 53258, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235581, + "fields": { + "id_car_serie": 53258, + "name": "1.9 D MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235582, + "fields": { + "id_car_serie": 53258, + "name": "1.9 D MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235583, + "fields": { + "id_car_serie": 53139, + "name": "2.0 CVT Hybrid FWD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235584, + "fields": { + "id_car_serie": 53139, + "name": "2.0 CVT Hybrid AWD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235585, + "fields": { + "id_car_serie": 53256, + "name": "3.8 AMT (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235586, + "fields": { + "id_car_serie": 53270, + "name": "2.0 AT RWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235587, + "fields": { + "id_car_serie": 53270, + "name": "2.0DT AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235588, + "fields": { + "id_car_serie": 53270, + "name": "2.0DT AT RWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235589, + "fields": { + "id_car_serie": 53270, + "name": "2.0 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235590, + "fields": { + "id_car_serie": 53270, + "name": "2.0DT MT RWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235591, + "fields": { + "id_car_serie": 53270, + "name": "2.0DT MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235592, + "fields": { + "id_car_serie": 53270, + "name": "2.0 MT RWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235593, + "fields": { + "id_car_serie": 53270, + "name": "2.0 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235594, + "fields": { + "id_car_serie": 53271, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235595, + "fields": { + "id_car_serie": 53271, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235596, + "fields": { + "id_car_serie": 53271, + "name": "2.0 AT RWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235597, + "fields": { + "id_car_serie": 53271, + "name": "2.0DT AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235598, + "fields": { + "id_car_serie": 53271, + "name": "2.0DT AT RWD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235599, + "fields": { + "id_car_serie": 53271, + "name": "2.0 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235600, + "fields": { + "id_car_serie": 53271, + "name": "2.0DT MT RWD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235601, + "fields": { + "id_car_serie": 53271, + "name": "2.0 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235602, + "fields": { + "id_car_serie": 53271, + "name": "2.0 MT RWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235603, + "fields": { + "id_car_serie": 53271, + "name": "2.0DT MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235604, + "fields": { + "id_car_serie": 53259, + "name": "S 2.9 Tiptronic AWD (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235605, + "fields": { + "id_car_serie": 53259, + "name": "3.0 Tiptronic AWD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235606, + "fields": { + "id_car_serie": 53259, + "name": "Turbo 4.0 Tiptronic AWD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235610, + "fields": { + "id_car_serie": 53268, + "name": "2.0 AT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235611, + "fields": { + "id_car_serie": 53268, + "name": "2.0 CVT AWD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235612, + "fields": { + "id_car_serie": 53268, + "name": "2.5 AT FWD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235613, + "fields": { + "id_car_serie": 53059, + "name": "1.6 CVT AWD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235614, + "fields": { + "id_car_serie": 53059, + "name": "2.0 CVT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235615, + "fields": { + "id_car_serie": 53275, + "name": "4.4 Steptronic xDrive (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235616, + "fields": { + "id_car_serie": 53257, + "name": "110 kw (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235619, + "fields": { + "id_car_serie": 53262, + "name": "2.0 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235620, + "fields": { + "id_car_serie": 53262, + "name": "2.5 AT AWD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235621, + "fields": { + "id_car_serie": 53262, + "name": "2.5 Hybrid CVT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235622, + "fields": { + "id_car_serie": 53262, + "name": "2.5 Hybrid CVT RWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235623, + "fields": { + "id_car_serie": 53262, + "name": "3.5 AT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235625, + "fields": { + "id_car_serie": 53263, + "name": "2.5 AT AWD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235626, + "fields": { + "id_car_serie": 53263, + "name": "2.5 AT RWD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235627, + "fields": { + "id_car_serie": 53263, + "name": "2.5 Hybrid CVT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235628, + "fields": { + "id_car_serie": 53263, + "name": "2.5 Hybrid CVT RWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235629, + "fields": { + "id_car_serie": 53255, + "name": "2.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235630, + "fields": { + "id_car_serie": 53255, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235631, + "fields": { + "id_car_serie": 53255, + "name": "2.0 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235632, + "fields": { + "id_car_serie": 53255, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235633, + "fields": { + "id_car_serie": 53255, + "name": "2.4 GDi AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235634, + "fields": { + "id_car_serie": 53255, + "name": "2.4 AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235635, + "fields": { + "id_car_serie": 53189, + "name": "180 d MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235636, + "fields": { + "id_car_serie": 53189, + "name": "180 d 7G-DCT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235637, + "fields": { + "id_car_serie": 53189, + "name": "200 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235638, + "fields": { + "id_car_serie": 53189, + "name": "180 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235639, + "fields": { + "id_car_serie": 53189, + "name": "180 7G-DCT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235640, + "fields": { + "id_car_serie": 53189, + "name": "250 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235641, + "fields": { + "id_car_serie": 53189, + "name": "250 7G-DCT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235642, + "fields": { + "id_car_serie": 53189, + "name": "220 7G-DCT 4MATIC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235643, + "fields": { + "id_car_serie": 53189, + "name": "200 d MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235644, + "fields": { + "id_car_serie": 53189, + "name": "220 d 7G-DCT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235645, + "fields": { + "id_car_serie": 53189, + "name": "200 d 7G-DCT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235646, + "fields": { + "id_car_serie": 53189, + "name": "200 d 7G-DCT 4MATIC (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235647, + "fields": { + "id_car_serie": 53189, + "name": "220 d 7G-DCT 4MATIC (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235648, + "fields": { + "id_car_serie": 53267, + "name": "2.0 CVT FWD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235649, + "fields": { + "id_car_serie": 53267, + "name": "2.0 CVT FWD (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235650, + "fields": { + "id_car_serie": 53267, + "name": "2.0 CVT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235651, + "fields": { + "id_car_serie": 53267, + "name": "2.0 CVT AWD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235652, + "fields": { + "id_car_serie": 53254, + "name": "i3s (Range Extender) (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235653, + "fields": { + "id_car_serie": 53254, + "name": "i3 (Range Extender) (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235654, + "fields": { + "id_car_serie": 53254, + "name": "i3s (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235655, + "fields": { + "id_car_serie": 53254, + "name": "i3 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235656, + "fields": { + "id_car_serie": 51528, + "name": "5.9 V12 Sportshift III (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235659, + "fields": { + "id_car_serie": 53058, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235660, + "fields": { + "id_car_serie": 53058, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235661, + "fields": { + "id_car_serie": 53058, + "name": "1.6 BlueHDi AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235662, + "fields": { + "id_car_serie": 53058, + "name": "1.6 BlueHDi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235663, + "fields": { + "id_car_serie": 53058, + "name": "1.6 BlueHDi MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235664, + "fields": { + "id_car_serie": 53058, + "name": "2.0 BlueHDi AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235665, + "fields": { + "id_car_serie": 53058, + "name": "2.0 BlueHDi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235666, + "fields": { + "id_car_serie": 53276, + "name": "630i Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235667, + "fields": { + "id_car_serie": 53276, + "name": "630i Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235668, + "fields": { + "id_car_serie": 53276, + "name": "630d xDrive Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235669, + "fields": { + "id_car_serie": 53276, + "name": "640i xDrive Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235670, + "fields": { + "id_car_serie": 53276, + "name": "630d Steptronic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235671, + "fields": { + "id_car_serie": 53276, + "name": "630d xDrive Steptronic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235672, + "fields": { + "id_car_serie": 53276, + "name": "640i Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235673, + "fields": { + "id_car_serie": 53266, + "name": "2.0 CVT FWD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235674, + "fields": { + "id_car_serie": 53266, + "name": "2.0 CVT AWD (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235675, + "fields": { + "id_car_serie": 53265, + "name": "2.0 CVT FWD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235676, + "fields": { + "id_car_serie": 53265, + "name": "2.0 CVT AWD (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235685, + "fields": { + "id_car_serie": 53264, + "name": "1.7 MT 8 valves. (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235686, + "fields": { + "id_car_serie": 53277, + "name": "1.1 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235688, + "fields": { + "id_car_serie": 53274, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235690, + "fields": { + "id_car_serie": 53274, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235693, + "fields": { + "id_car_serie": 53260, + "name": "2.2 AT (5 places) (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235694, + "fields": { + "id_car_serie": 53260, + "name": "2.2 AT (5 places) AWD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235695, + "fields": { + "id_car_serie": 53260, + "name": "2.2 AT (7 places) (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235696, + "fields": { + "id_car_serie": 53260, + "name": "2.2 AT (7 places) AWD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235697, + "fields": { + "id_car_serie": 53260, + "name": "2.2 MT (5 places) AWD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235698, + "fields": { + "id_car_serie": 53260, + "name": "2.2 MT (7 places) (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235699, + "fields": { + "id_car_serie": 53260, + "name": "2.2 MT (5 places) (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235700, + "fields": { + "id_car_serie": 53260, + "name": "2.2 MT (7 places) AWD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235701, + "fields": { + "id_car_serie": 53252, + "name": "2.9 TFSI tiptronic quattro (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235702, + "fields": { + "id_car_serie": 53253, + "name": "6.0 AWD AMT (635 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235703, + "fields": { + "id_car_serie": 53261, + "name": "2.5 Hybrid CVT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235704, + "fields": { + "id_car_serie": 53261, + "name": "3.5 Hybrid CVT (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235705, + "fields": { + "id_car_serie": 53269, + "name": "2.0 CVT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235706, + "fields": { + "id_car_serie": 53269, + "name": "2.0 CVT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235707, + "fields": { + "id_car_serie": 53269, + "name": "2.5 TDi AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235708, + "fields": { + "id_car_serie": 53269, + "name": "2.5 TDi AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235763, + "fields": { + "id_car_serie": 1323, + "name": "LP 640-4 PERFORMANTE (640 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235764, + "fields": { + "id_car_serie": 2022, + "name": "1.6d MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235765, + "fields": { + "id_car_serie": 2022, + "name": "1.6d MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235766, + "fields": { + "id_car_serie": 2022, + "name": "1.6d AMT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235767, + "fields": { + "id_car_serie": 2022, + "name": "1.6d AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235768, + "fields": { + "id_car_serie": 2022, + "name": "2.0d AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235769, + "fields": { + "id_car_serie": 2022, + "name": "2.0d MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235770, + "fields": { + "id_car_serie": 9577, + "name": "2.4 CVT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235771, + "fields": { + "id_car_serie": 9577, + "name": "2.5 AT AWD (179 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235772, + "fields": { + "id_car_serie": 14751, + "name": "2.0 Turbo MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235774, + "fields": { + "id_car_serie": 3089, + "name": "3.5 AT (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235775, + "fields": { + "id_car_serie": 3471, + "name": "1.0 T-GDI blue MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235776, + "fields": { + "id_car_serie": 3471, + "name": "1.0 T-GDI blue MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235777, + "fields": { + "id_car_serie": 3471, + "name": "1.1 CRDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235778, + "fields": { + "id_car_serie": 3471, + "name": "1.2 blue MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235779, + "fields": { + "id_car_serie": 3471, + "name": "1.2 blue MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235780, + "fields": { + "id_car_serie": 3471, + "name": "1.4 CRDi blue MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235781, + "fields": { + "id_car_serie": 3472, + "name": "1.0 T-GDI blue MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235782, + "fields": { + "id_car_serie": 3472, + "name": "1.0 T-GDI blue MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235783, + "fields": { + "id_car_serie": 3472, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235784, + "fields": { + "id_car_serie": 3472, + "name": "1.4 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235785, + "fields": { + "id_car_serie": 3605, + "name": "2.0 Si4 PHEV AT AWD (404 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235786, + "fields": { + "id_car_serie": 3605, + "name": "2.0 Si4 PHEV AT AWD LWB (404 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235787, + "fields": { + "id_car_serie": 5779, + "name": "3.6 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235788, + "fields": { + "id_car_serie": 7514, + "name": "1.4 TCe MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235789, + "fields": { + "id_car_serie": 7514, + "name": "1.5 dCi MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235790, + "fields": { + "id_car_serie": 7514, + "name": "1.5 dCi EDC (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235791, + "fields": { + "id_car_serie": 7514, + "name": "1.9 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235792, + "fields": { + "id_car_serie": 7514, + "name": "2.0 dCi FAP AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235793, + "fields": { + "id_car_serie": 8772, + "name": "3.0 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235794, + "fields": { + "id_car_serie": 8772, + "name": "S 3.0 AT (410 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235795, + "fields": { + "id_car_serie": 8772, + "name": "S 3.0 AT Q4 (410 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235796, + "fields": { + "id_car_serie": 8772, + "name": "3.0 D AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235797, + "fields": { + "id_car_serie": 8772, + "name": "GTS 3.8 AT (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235798, + "fields": { + "id_car_serie": 10775, + "name": "116 CDI BlueEfficiency AT extended (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235799, + "fields": { + "id_car_serie": 10775, + "name": "116 CDI BlueEfficiency AT over long (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235800, + "fields": { + "id_car_serie": 10775, + "name": "116 CDI BlueEfficiency AT compact (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235801, + "fields": { + "id_car_serie": 10775, + "name": "110 CDI BlueEfficiency AT extended (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235802, + "fields": { + "id_car_serie": 10775, + "name": "110 CDI BlueEfficiency AT over long (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235803, + "fields": { + "id_car_serie": 10775, + "name": "110 CDI BlueEfficiency AT compact (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235804, + "fields": { + "id_car_serie": 14784, + "name": "2.3 AT AWD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235805, + "fields": { + "id_car_serie": 14981, + "name": "1.0 T-GDI blue MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235806, + "fields": { + "id_car_serie": 15106, + "name": "1.6 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235807, + "fields": { + "id_car_serie": 46322, + "name": "2.3 AT (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235808, + "fields": { + "id_car_serie": 46322, + "name": "GT 5.0 AT (466 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235809, + "fields": { + "id_car_serie": 46322, + "name": "GT 5.0 MT (466 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235810, + "fields": { + "id_car_serie": 46323, + "name": "GT 5.0 AT (466 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235811, + "fields": { + "id_car_serie": 46323, + "name": "GT 5.0 MT (466 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235812, + "fields": { + "id_car_serie": 46427, + "name": "1.5 EcoBoost AT AWD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235813, + "fields": { + "id_car_serie": 46427, + "name": "1.5 EcoBoost AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235814, + "fields": { + "id_car_serie": 46689, + "name": "T 3.9 AMT (610 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235815, + "fields": { + "id_car_serie": 46955, + "name": "1.6 MT 16 valves (5 places) (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235816, + "fields": { + "id_car_serie": 46955, + "name": "1.6 MT 16 valves (7 places) (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235817, + "fields": { + "id_car_serie": 49471, + "name": "1.6 MT 16 valves (5 places) (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235818, + "fields": { + "id_car_serie": 49471, + "name": "1.6 MT 16 valves (7 places) (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235819, + "fields": { + "id_car_serie": 49861, + "name": "GT12 6.0 AMT (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235820, + "fields": { + "id_car_serie": 49891, + "name": "320d xDrive MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235821, + "fields": { + "id_car_serie": 49891, + "name": "335d AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235822, + "fields": { + "id_car_serie": 8106, + "name": "330d AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235823, + "fields": { + "id_car_serie": 49893, + "name": "320d AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235824, + "fields": { + "id_car_serie": 49893, + "name": "318d AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235825, + "fields": { + "id_car_serie": 49893, + "name": "318d MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235826, + "fields": { + "id_car_serie": 49893, + "name": "320d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235827, + "fields": { + "id_car_serie": 49893, + "name": "320d xDrive MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235828, + "fields": { + "id_car_serie": 49893, + "name": "320i xDrive MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235829, + "fields": { + "id_car_serie": 49893, + "name": "330d AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235830, + "fields": { + "id_car_serie": 49893, + "name": "330d xDrive AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235831, + "fields": { + "id_car_serie": 49893, + "name": "335d xDrive AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235832, + "fields": { + "id_car_serie": 49894, + "name": "320i AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235833, + "fields": { + "id_car_serie": 49894, + "name": "320i MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235834, + "fields": { + "id_car_serie": 49907, + "name": "318td MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235835, + "fields": { + "id_car_serie": 49919, + "name": "325i AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235836, + "fields": { + "id_car_serie": 49919, + "name": "325i MT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235838, + "fields": { + "id_car_serie": 50649, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235840, + "fields": { + "id_car_serie": 50640, + "name": "1.6 D AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235841, + "fields": { + "id_car_serie": 50640, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235842, + "fields": { + "id_car_serie": 50640, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235843, + "fields": { + "id_car_serie": 50649, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235844, + "fields": { + "id_car_serie": 50640, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235845, + "fields": { + "id_car_serie": 50649, + "name": "1.6 D MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235846, + "fields": { + "id_car_serie": 50640, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235847, + "fields": { + "id_car_serie": 50640, + "name": "1.6 D MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235848, + "fields": { + "id_car_serie": 53431, + "name": "1.4 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235849, + "fields": { + "id_car_serie": 53431, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235850, + "fields": { + "id_car_serie": 50641, + "name": "JCW GP 1.6 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235851, + "fields": { + "id_car_serie": 53431, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235852, + "fields": { + "id_car_serie": 50641, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235853, + "fields": { + "id_car_serie": 50641, + "name": "JCW 1.6 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235854, + "fields": { + "id_car_serie": 53431, + "name": "1.6 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235855, + "fields": { + "id_car_serie": 50641, + "name": "1.6 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235856, + "fields": { + "id_car_serie": 50650, + "name": "1.4 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235857, + "fields": { + "id_car_serie": 50650, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235858, + "fields": { + "id_car_serie": 50650, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235859, + "fields": { + "id_car_serie": 50642, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235860, + "fields": { + "id_car_serie": 50650, + "name": "1.6 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235861, + "fields": { + "id_car_serie": 50642, + "name": "1.6 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235866, + "fields": { + "id_car_serie": 45444, + "name": "2.0i-L AWD MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235868, + "fields": { + "id_car_serie": 51460, + "name": "2.5 AT AWD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235869, + "fields": { + "id_car_serie": 53328, + "name": "V 200 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235870, + "fields": { + "id_car_serie": 53328, + "name": "V 200 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235871, + "fields": { + "id_car_serie": 53328, + "name": "V 200 CDI AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235872, + "fields": { + "id_car_serie": 53328, + "name": "V 220 CDI AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235873, + "fields": { + "id_car_serie": 53328, + "name": "V 200 CDI MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235874, + "fields": { + "id_car_serie": 53328, + "name": "V 220 CDI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235875, + "fields": { + "id_car_serie": 53328, + "name": "V 230 TD AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235876, + "fields": { + "id_car_serie": 53328, + "name": "V 230 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235877, + "fields": { + "id_car_serie": 53328, + "name": "V 230 TD MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235878, + "fields": { + "id_car_serie": 53328, + "name": "V 230 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235879, + "fields": { + "id_car_serie": 53328, + "name": "V 280 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235880, + "fields": { + "id_car_serie": 53315, + "name": "1.5 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235881, + "fields": { + "id_car_serie": 53315, + "name": "1.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235882, + "fields": { + "id_car_serie": 53315, + "name": "2.0 Diesel AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235883, + "fields": { + "id_car_serie": 53315, + "name": "2.0 BiTurbo Diesel AT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235884, + "fields": { + "id_car_serie": 53315, + "name": "2.0 AT AWD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235885, + "fields": { + "id_car_serie": 53315, + "name": "2.0 Diesel MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235886, + "fields": { + "id_car_serie": 53315, + "name": "2.0 Diesel MT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235887, + "fields": { + "id_car_serie": 53305, + "name": "6.3 AMT (780 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235888, + "fields": { + "id_car_serie": 53317, + "name": "1.0 TSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235889, + "fields": { + "id_car_serie": 53317, + "name": "1.0 TSI DSG (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235890, + "fields": { + "id_car_serie": 53317, + "name": "1.4 TSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235891, + "fields": { + "id_car_serie": 53317, + "name": "1.4 TSI DSG (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235892, + "fields": { + "id_car_serie": 53317, + "name": "1.6 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235893, + "fields": { + "id_car_serie": 53317, + "name": "1.6 TDI DSG (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235894, + "fields": { + "id_car_serie": 53317, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235895, + "fields": { + "id_car_serie": 53317, + "name": "2.0 TDI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235896, + "fields": { + "id_car_serie": 53337, + "name": "2.0 T AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235897, + "fields": { + "id_car_serie": 53337, + "name": "2.0 T AT AWD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235898, + "fields": { + "id_car_serie": 53337, + "name": "2.2 d AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235899, + "fields": { + "id_car_serie": 53337, + "name": "2.2 d AT AWD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235900, + "fields": { + "id_car_serie": 53337, + "name": "3.3 T AT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235901, + "fields": { + "id_car_serie": 53337, + "name": "3.3 T AT AWD (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235902, + "fields": { + "id_car_serie": 53313, + "name": "1.5 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235903, + "fields": { + "id_car_serie": 53313, + "name": "1.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235904, + "fields": { + "id_car_serie": 53313, + "name": "1.5 Ecotec MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235905, + "fields": { + "id_car_serie": 53313, + "name": "1.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235906, + "fields": { + "id_car_serie": 53313, + "name": "1.5 Ecotec MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235907, + "fields": { + "id_car_serie": 53313, + "name": "1.6 Ecotec Diesel AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235908, + "fields": { + "id_car_serie": 53313, + "name": "1.6 Ecotec Diesel MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235909, + "fields": { + "id_car_serie": 53313, + "name": "1.6 Ecotec Diesel MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235910, + "fields": { + "id_car_serie": 53313, + "name": "2.0 AT AWD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235911, + "fields": { + "id_car_serie": 53313, + "name": "2.0 Diesel AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235912, + "fields": { + "id_car_serie": 53313, + "name": "2.0 BiTurbo Diesel AT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235913, + "fields": { + "id_car_serie": 53313, + "name": "2.0 Diesel MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235914, + "fields": { + "id_car_serie": 53313, + "name": "2.0 Diesel MT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235915, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TDI 5MT L1H1 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235916, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TDI 5MT L1H2 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235917, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TDI 5MT L2H1 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235918, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TDI 5MT L2H2 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235919, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TSI 6MT L1H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235920, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TDI 6MT L1H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235921, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TSI 6MT L1H2 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235922, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TDI 6MT L1H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235923, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TDI 5MT L2H3 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235924, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TSI 6MT L2H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235925, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TDI 6MT L2H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235926, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TSI 6MT L2H2 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235927, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TDI 6MT L2H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235928, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TSI 6MT L2H3 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235929, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TDI 6MT L2H3 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235930, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TDI 6MT 4MOTION L1H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235931, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TDI 6MT 4MOTION L1H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235932, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TDI 6MT 4MOTION L2H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235933, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TDI 6MT 4MOTION L2H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235934, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TDI 6MT 4MOTION L2H3 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235935, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TDI DSG L1H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235936, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TDI DSG L1H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235937, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TDI DSG L2H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235938, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TDI DSG L2H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235939, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TDI DSG L2H3 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235940, + "fields": { + "id_car_serie": 53323, + "name": "2.0 biTDI DSG L1H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235941, + "fields": { + "id_car_serie": 53323, + "name": "2.0 biTDI DSG L1H2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235942, + "fields": { + "id_car_serie": 53323, + "name": "2.0 biTDI DSG L2H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235943, + "fields": { + "id_car_serie": 53323, + "name": "2.0 biTDI DSG L2H2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235944, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TSI DSG L1H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235945, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TSI DSG L1H2 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235946, + "fields": { + "id_car_serie": 53323, + "name": "2.0 biTDI DSG L2H3 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235947, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TSI DSG L2H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235948, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TSI DSG L2H2 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235949, + "fields": { + "id_car_serie": 53323, + "name": "2.0 biTDI DSG 4MOTION L1H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235950, + "fields": { + "id_car_serie": 53323, + "name": "2.0 biTDI DSG 4MOTION L1H2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235951, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TSI DSG L2H3 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235952, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TSI DSG 4MOTION L1H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235953, + "fields": { + "id_car_serie": 53323, + "name": "2.0 biTDI DSG 4MOTION L2H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235954, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TSI DSG 4MOTION L1H2 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235955, + "fields": { + "id_car_serie": 53323, + "name": "2.0 biTDI DSG 4MOTION L2H2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235956, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TSI DSG 4MOTION L2H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235957, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TSI DSG 4MOTION L2H2 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235958, + "fields": { + "id_car_serie": 53323, + "name": "2.0 TSI DSG 4MOTION L2H3 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235959, + "fields": { + "id_car_serie": 53331, + "name": "2.4 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235960, + "fields": { + "id_car_serie": 53331, + "name": "2.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235961, + "fields": { + "id_car_serie": 53331, + "name": "2.7 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235962, + "fields": { + "id_car_serie": 53331, + "name": "2.9 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235963, + "fields": { + "id_car_serie": 53287, + "name": "3.9 AMT (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235964, + "fields": { + "id_car_serie": 53303, + "name": "6.0 W12 AWD AT (710 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235972, + "fields": { + "id_car_serie": 53321, + "name": "2.0 TSI 6MT L1H1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235991, + "fields": { + "id_car_serie": 53321, + "name": "2.0 TDI MT L1H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235996, + "fields": { + "id_car_serie": 53321, + "name": "2.0 TDI MT L1H2 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 235999, + "fields": { + "id_car_serie": 53321, + "name": "2.0 TDI DSG L1H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236000, + "fields": { + "id_car_serie": 53321, + "name": "2.0 biTDI DSG L1H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236001, + "fields": { + "id_car_serie": 53321, + "name": "2.0 TSI DSG L1H1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236033, + "fields": { + "id_car_serie": 53187, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236034, + "fields": { + "id_car_serie": 53148, + "name": "xDrive30i Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236035, + "fields": { + "id_car_serie": 53336, + "name": "1.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236036, + "fields": { + "id_car_serie": 53336, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236037, + "fields": { + "id_car_serie": 53336, + "name": "1.2 Ecotec MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236038, + "fields": { + "id_car_serie": 53336, + "name": "1.2 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236039, + "fields": { + "id_car_serie": 53336, + "name": "1.6 Ecotec d MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236040, + "fields": { + "id_car_serie": 53336, + "name": "1.6 d MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236041, + "fields": { + "id_car_serie": 53336, + "name": "1.6 d MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236042, + "fields": { + "id_car_serie": 53299, + "name": "5.9 AT (588 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236043, + "fields": { + "id_car_serie": 53299, + "name": "5.9 AT (603 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236044, + "fields": { + "id_car_serie": 53300, + "name": "5.9 AT (588 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236045, + "fields": { + "id_car_serie": 53300, + "name": "5.9 AT (603 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236046, + "fields": { + "id_car_serie": 53333, + "name": "2.0 AT AWD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236047, + "fields": { + "id_car_serie": 53307, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236048, + "fields": { + "id_car_serie": 53307, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236049, + "fields": { + "id_car_serie": 53307, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236050, + "fields": { + "id_car_serie": 53307, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236051, + "fields": { + "id_car_serie": 53308, + "name": "6.5 AMT (740 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236052, + "fields": { + "id_car_serie": 53304, + "name": "6.0 W12 AWD AT (710 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236059, + "fields": { + "id_car_serie": 53309, + "name": "2.5 TD MT AWD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236060, + "fields": { + "id_car_serie": 53309, + "name": "2.5 TD MT AWD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236061, + "fields": { + "id_car_serie": 53330, + "name": "1.6 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236062, + "fields": { + "id_car_serie": 53334, + "name": "2.0 D4 Drive-E AT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236063, + "fields": { + "id_car_serie": 53334, + "name": "2.0 T5 Drive-E AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236064, + "fields": { + "id_car_serie": 51537, + "name": "1.5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236065, + "fields": { + "id_car_serie": 51537, + "name": "1.5 CVT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236066, + "fields": { + "id_car_serie": 53225, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236067, + "fields": { + "id_car_serie": 53332, + "name": "1.8 AT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236068, + "fields": { + "id_car_serie": 53335, + "name": "1.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236069, + "fields": { + "id_car_serie": 53335, + "name": "1.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236070, + "fields": { + "id_car_serie": 53335, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236071, + "fields": { + "id_car_serie": 53335, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236072, + "fields": { + "id_car_serie": 53314, + "name": "1.5 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236073, + "fields": { + "id_car_serie": 53314, + "name": "1.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236074, + "fields": { + "id_car_serie": 53314, + "name": "1.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236075, + "fields": { + "id_car_serie": 53314, + "name": "1.5 Ecotec MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236076, + "fields": { + "id_car_serie": 53314, + "name": "1.5 Ecotec MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236077, + "fields": { + "id_car_serie": 53314, + "name": "1.6 Diesel AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236078, + "fields": { + "id_car_serie": 53314, + "name": "1.6 Diesel MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236079, + "fields": { + "id_car_serie": 53314, + "name": "1.6 Diesel MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236080, + "fields": { + "id_car_serie": 53314, + "name": "1.6 Ecotec Diesel MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236081, + "fields": { + "id_car_serie": 53314, + "name": "2.0 Diesel AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236082, + "fields": { + "id_car_serie": 53314, + "name": "2.0 AT AWD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236083, + "fields": { + "id_car_serie": 53314, + "name": "2.0 BiTurbo Diesel AT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236084, + "fields": { + "id_car_serie": 53314, + "name": "2.0 Diesel MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236085, + "fields": { + "id_car_serie": 53314, + "name": "2.0 Diesel MT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236086, + "fields": { + "id_car_serie": 53329, + "name": "1.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236087, + "fields": { + "id_car_serie": 53329, + "name": "1.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236088, + "fields": { + "id_car_serie": 53324, + "name": "2.0 TDI (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236089, + "fields": { + "id_car_serie": 53326, + "name": "318i Steptronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236090, + "fields": { + "id_car_serie": 53326, + "name": "318i MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236091, + "fields": { + "id_car_serie": 53326, + "name": "330i Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236092, + "fields": { + "id_car_serie": 53326, + "name": "320d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236093, + "fields": { + "id_car_serie": 53326, + "name": "320d xDrive Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236094, + "fields": { + "id_car_serie": 53326, + "name": "316d Steptronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236095, + "fields": { + "id_car_serie": 53326, + "name": "320i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236096, + "fields": { + "id_car_serie": 53326, + "name": "320i xDrive Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236097, + "fields": { + "id_car_serie": 53326, + "name": "330i xDrive Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236098, + "fields": { + "id_car_serie": 53326, + "name": "325d Steptronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236099, + "fields": { + "id_car_serie": 53326, + "name": "320d EffDyn Edition Steptronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236100, + "fields": { + "id_car_serie": 53326, + "name": "318d Steptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236101, + "fields": { + "id_car_serie": 53326, + "name": "318d MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236102, + "fields": { + "id_car_serie": 53326, + "name": "320i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236103, + "fields": { + "id_car_serie": 53326, + "name": "330i MT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236104, + "fields": { + "id_car_serie": 53326, + "name": "320i xDrive MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236105, + "fields": { + "id_car_serie": 53326, + "name": "316d MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236106, + "fields": { + "id_car_serie": 53326, + "name": "320d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236107, + "fields": { + "id_car_serie": 53326, + "name": "320d EffDyn Edition MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236108, + "fields": { + "id_car_serie": 53326, + "name": "325d MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236109, + "fields": { + "id_car_serie": 53326, + "name": "318d xDrive MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236110, + "fields": { + "id_car_serie": 53326, + "name": "320d xDrive MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236111, + "fields": { + "id_car_serie": 53326, + "name": "330d xDrive Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236112, + "fields": { + "id_car_serie": 53326, + "name": "335d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236113, + "fields": { + "id_car_serie": 53326, + "name": "340i Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236114, + "fields": { + "id_car_serie": 53326, + "name": "340i xDrive Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236115, + "fields": { + "id_car_serie": 53326, + "name": "330d Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236116, + "fields": { + "id_car_serie": 53316, + "name": "1.2 TCe MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236117, + "fields": { + "id_car_serie": 53316, + "name": "1.2 TCe MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236118, + "fields": { + "id_car_serie": 53316, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236119, + "fields": { + "id_car_serie": 53316, + "name": "1.5 dCi EDC (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236120, + "fields": { + "id_car_serie": 53316, + "name": "1.6 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236121, + "fields": { + "id_car_serie": 53316, + "name": "1.6 dCi EDC (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236122, + "fields": { + "id_car_serie": 53312, + "name": "2.0 Si4 AT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236123, + "fields": { + "id_car_serie": 53312, + "name": "3.0 SDV6 AT AWD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236124, + "fields": { + "id_car_serie": 53312, + "name": "3.0 V6 Supercharged AT AWD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236125, + "fields": { + "id_car_serie": 53312, + "name": "3.0 V6 Supercharged AT AWD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236126, + "fields": { + "id_car_serie": 53312, + "name": "3.0 TDV6 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236127, + "fields": { + "id_car_serie": 53312, + "name": "4.4 SDV8 AT AWD (339 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236128, + "fields": { + "id_car_serie": 53312, + "name": "5.0 SVR V8 Supercharged AT AWD (575 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236129, + "fields": { + "id_car_serie": 53312, + "name": "5.0 V8 Supercharged AT AWD (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236164, + "fields": { + "id_car_serie": 53306, + "name": "2.3 AT AWD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236165, + "fields": { + "id_car_serie": 53306, + "name": "3.0 AT AWD (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236166, + "fields": { + "id_car_serie": 53301, + "name": "2.5 TFSI S tronic Quattro (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236167, + "fields": { + "id_car_serie": 53310, + "name": "2.5 D MT AWD (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236168, + "fields": { + "id_car_serie": 53310, + "name": "2.5 TD MT AWD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236169, + "fields": { + "id_car_serie": 53310, + "name": "2.5 TD MT AWD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236170, + "fields": { + "id_car_serie": 53310, + "name": "2.5 MT AWD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236171, + "fields": { + "id_car_serie": 53310, + "name": "2.5 TD MT AWD (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236172, + "fields": { + "id_car_serie": 53310, + "name": "3.5 MT AWD (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236173, + "fields": { + "id_car_serie": 53310, + "name": "4.0 MT AWD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236174, + "fields": { + "id_car_serie": 53311, + "name": "2.5 TD MT AWD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236175, + "fields": { + "id_car_serie": 53311, + "name": "2.5 TD MT AWD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236176, + "fields": { + "id_car_serie": 53311, + "name": "2.5 TD MT AWD (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236177, + "fields": { + "id_car_serie": 53311, + "name": "2.5 D MT AWD (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236178, + "fields": { + "id_car_serie": 53311, + "name": "2.5 MT AWD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236179, + "fields": { + "id_car_serie": 53311, + "name": "3.5 MT AWD (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236242, + "fields": { + "id_car_serie": 677, + "name": "3.6 AT AWD (287 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236243, + "fields": { + "id_car_serie": 3121, + "name": "2.0 HDi T MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236244, + "fields": { + "id_car_serie": 4379, + "name": "2.1 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236245, + "fields": { + "id_car_serie": 4379, + "name": "2.1 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236246, + "fields": { + "id_car_serie": 5484, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236247, + "fields": { + "id_car_serie": 5484, + "name": "2.0 TDI multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236248, + "fields": { + "id_car_serie": 5484, + "name": "2.4 tiptronic quattro (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236249, + "fields": { + "id_car_serie": 5484, + "name": "2.7 TDI tiptronic (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236250, + "fields": { + "id_car_serie": 5484, + "name": "2.7 TDI tiptronic quattro (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236251, + "fields": { + "id_car_serie": 5484, + "name": "2.7 TDI multitronic quattro (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236252, + "fields": { + "id_car_serie": 5484, + "name": "4.2 MT quattro (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236253, + "fields": { + "id_car_serie": 5484, + "name": "4.2 FSI MT quattro (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236254, + "fields": { + "id_car_serie": 5482, + "name": "3.0 multitronic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236255, + "fields": { + "id_car_serie": 5423, + "name": "1300 Super MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236256, + "fields": { + "id_car_serie": 5423, + "name": "1300 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236257, + "fields": { + "id_car_serie": 5423, + "name": "1300 Nuova Super MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236258, + "fields": { + "id_car_serie": 5423, + "name": "1300 Ti MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236259, + "fields": { + "id_car_serie": 5423, + "name": "1600 Super MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236260, + "fields": { + "id_car_serie": 5423, + "name": "1600 Nuova Super MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236261, + "fields": { + "id_car_serie": 5423, + "name": "1600 Ti MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236262, + "fields": { + "id_car_serie": 5423, + "name": "1600 Ti Super MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236263, + "fields": { + "id_car_serie": 5423, + "name": "1600 Super MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236264, + "fields": { + "id_car_serie": 5423, + "name": "1600 S MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236265, + "fields": { + "id_car_serie": 6055, + "name": "1.1 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236266, + "fields": { + "id_car_serie": 6055, + "name": "1.2 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236267, + "fields": { + "id_car_serie": 6055, + "name": "1.4 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236268, + "fields": { + "id_car_serie": 6055, + "name": "1.7 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236269, + "fields": { + "id_car_serie": 6055, + "name": "1.7 TD MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236270, + "fields": { + "id_car_serie": 6055, + "name": "1.7 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236271, + "fields": { + "id_car_serie": 6474, + "name": "2.0 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236272, + "fields": { + "id_car_serie": 14653, + "name": "1.6 MT 16 valves (Euro-4) (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236273, + "fields": { + "id_car_serie": 14735, + "name": "1.3 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236274, + "fields": { + "id_car_serie": 14735, + "name": "1.5 CVT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236275, + "fields": { + "id_car_serie": 14780, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236276, + "fields": { + "id_car_serie": 14878, + "name": "50 TDI L tiptronic quattro (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236277, + "fields": { + "id_car_serie": 14878, + "name": "50 TDI tiptronic quattro (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236278, + "fields": { + "id_car_serie": 14878, + "name": "55 TFSI L tiptronic quattro (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236279, + "fields": { + "id_car_serie": 14878, + "name": "55 TFSI tiptronic quattro (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236280, + "fields": { + "id_car_serie": 14999, + "name": "1.5 SkyActiv-G AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236281, + "fields": { + "id_car_serie": 45474, + "name": "1.0 LPG Ecotec MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236282, + "fields": { + "id_car_serie": 45474, + "name": "1.0 Ecotec MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236283, + "fields": { + "id_car_serie": 45474, + "name": "1.0 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236284, + "fields": { + "id_car_serie": 46194, + "name": "1.2 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236285, + "fields": { + "id_car_serie": 46194, + "name": "1.5 D AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236286, + "fields": { + "id_car_serie": 46194, + "name": "1.5 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236287, + "fields": { + "id_car_serie": 46194, + "name": "1.5 D MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236288, + "fields": { + "id_car_serie": 46194, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236289, + "fields": { + "id_car_serie": 46160, + "name": "2.0 Turbo PHEV AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236290, + "fields": { + "id_car_serie": 46437, + "name": "5.6 AT AWD (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236291, + "fields": { + "id_car_serie": 46437, + "name": "5.6 AT (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236292, + "fields": { + "id_car_serie": 46449, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236293, + "fields": { + "id_car_serie": 46449, + "name": "2.0 AT Q4 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236294, + "fields": { + "id_car_serie": 46449, + "name": "2.2 D AT Q4 (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236295, + "fields": { + "id_car_serie": 46449, + "name": "2.2 D AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236296, + "fields": { + "id_car_serie": 46449, + "name": "2.2 D AT Q4 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236297, + "fields": { + "id_car_serie": 46449, + "name": "2.2 D AE AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236298, + "fields": { + "id_car_serie": 46449, + "name": "2.2 D AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236299, + "fields": { + "id_car_serie": 46449, + "name": "2.2 D MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236300, + "fields": { + "id_car_serie": 46449, + "name": "2.9 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236301, + "fields": { + "id_car_serie": 46943, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236302, + "fields": { + "id_car_serie": 46943, + "name": "2.1 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236303, + "fields": { + "id_car_serie": 46943, + "name": "2.1 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236304, + "fields": { + "id_car_serie": 46943, + "name": "2.1 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236305, + "fields": { + "id_car_serie": 46943, + "name": "2.1 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236306, + "fields": { + "id_car_serie": 46943, + "name": "2.1 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236307, + "fields": { + "id_car_serie": 46943, + "name": "2.1 Turbo MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236308, + "fields": { + "id_car_serie": 46943, + "name": "2.3 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236309, + "fields": { + "id_car_serie": 46943, + "name": "2.3 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236310, + "fields": { + "id_car_serie": 46943, + "name": "2.3 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236311, + "fields": { + "id_car_serie": 46943, + "name": "2.3 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236312, + "fields": { + "id_car_serie": 46943, + "name": "2.3 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236313, + "fields": { + "id_car_serie": 46943, + "name": "2.4 d MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236314, + "fields": { + "id_car_serie": 46943, + "name": "2.7 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236315, + "fields": { + "id_car_serie": 47155, + "name": "2.0 HDI MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236316, + "fields": { + "id_car_serie": 47285, + "name": "2.0 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236317, + "fields": { + "id_car_serie": 47285, + "name": "2.0 D AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236318, + "fields": { + "id_car_serie": 47285, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236319, + "fields": { + "id_car_serie": 48020, + "name": "2.0 d MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236320, + "fields": { + "id_car_serie": 48020, + "name": "2.0 d AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236321, + "fields": { + "id_car_serie": 48020, + "name": "2.4 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236322, + "fields": { + "id_car_serie": 48020, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236323, + "fields": { + "id_car_serie": 48020, + "name": "3.5 AT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236324, + "fields": { + "id_car_serie": 48020, + "name": "3.5 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236325, + "fields": { + "id_car_serie": 48542, + "name": "2.0 AT 4WD (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236326, + "fields": { + "id_car_serie": 48542, + "name": "2.0 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236327, + "fields": { + "id_car_serie": 48542, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236328, + "fields": { + "id_car_serie": 48542, + "name": "2.0 MT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236329, + "fields": { + "id_car_serie": 49131, + "name": "1.3 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236330, + "fields": { + "id_car_serie": 49582, + "name": "5.6 AT (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236331, + "fields": { + "id_car_serie": 49582, + "name": "5.6 AT AWD (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236339, + "fields": { + "id_car_serie": 51431, + "name": "1.5 CVT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236340, + "fields": { + "id_car_serie": 51431, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236341, + "fields": { + "id_car_serie": 51431, + "name": "1.8 CVT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236342, + "fields": { + "id_car_serie": 51536, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236343, + "fields": { + "id_car_serie": 51536, + "name": "2.0 TDI 4Motion DSG (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236344, + "fields": { + "id_car_serie": 51536, + "name": "2.0 TDI DSG (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236345, + "fields": { + "id_car_serie": 51536, + "name": "2.0 TSI DSG (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236346, + "fields": { + "id_car_serie": 51536, + "name": "2.0 TDI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236347, + "fields": { + "id_car_serie": 53345, + "name": "1.5T AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236348, + "fields": { + "id_car_serie": 53347, + "name": "5.6 AT AWD (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236349, + "fields": { + "id_car_serie": 53384, + "name": "420d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236350, + "fields": { + "id_car_serie": 53384, + "name": "430i Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236351, + "fields": { + "id_car_serie": 53384, + "name": "430i xDrive Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236352, + "fields": { + "id_car_serie": 53384, + "name": "440i Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236353, + "fields": { + "id_car_serie": 53355, + "name": "500 AT (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236354, + "fields": { + "id_car_serie": 53355, + "name": "500 AT AWD (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236355, + "fields": { + "id_car_serie": 53355, + "name": "500h CVT (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236356, + "fields": { + "id_car_serie": 53355, + "name": "500h CVT AWD (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236357, + "fields": { + "id_car_serie": 53359, + "name": "2.5 CVT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236358, + "fields": { + "id_car_serie": 53359, + "name": "3.5 CVT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236359, + "fields": { + "id_car_serie": 53364, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236360, + "fields": { + "id_car_serie": 53364, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236361, + "fields": { + "id_car_serie": 53364, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236362, + "fields": { + "id_car_serie": 53364, + "name": "1.5 BlueHDi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236363, + "fields": { + "id_car_serie": 53364, + "name": "1.6 THP AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236364, + "fields": { + "id_car_serie": 53364, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236365, + "fields": { + "id_car_serie": 53364, + "name": "1.6 BlueHDi AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236366, + "fields": { + "id_car_serie": 53364, + "name": "1.6 GTi MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236367, + "fields": { + "id_car_serie": 53364, + "name": "1.6 BlueHDi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236368, + "fields": { + "id_car_serie": 53364, + "name": "1.6 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236369, + "fields": { + "id_car_serie": 53364, + "name": "1.6 BlueHDi MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236370, + "fields": { + "id_car_serie": 53364, + "name": "2.0 BlueHDi AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236371, + "fields": { + "id_car_serie": 53364, + "name": "2.0 BlueHDi AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236372, + "fields": { + "id_car_serie": 53364, + "name": "2.0 BlueHDi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236373, + "fields": { + "id_car_serie": 53396, + "name": "20d xDrive Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236374, + "fields": { + "id_car_serie": 53396, + "name": "25d xDrive Steptronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236375, + "fields": { + "id_car_serie": 53396, + "name": "20i sDrive Steptronic (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236376, + "fields": { + "id_car_serie": 53387, + "name": "3.0 CRDi AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236377, + "fields": { + "id_car_serie": 51529, + "name": "E 350 d 4MATIC 9G-Tronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236378, + "fields": { + "id_car_serie": 53351, + "name": "2.2 CRDi AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236379, + "fields": { + "id_car_serie": 53351, + "name": "3.3 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236380, + "fields": { + "id_car_serie": 53363, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236381, + "fields": { + "id_car_serie": 53363, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236382, + "fields": { + "id_car_serie": 53363, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236383, + "fields": { + "id_car_serie": 53363, + "name": "1.5 BlueHDi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236384, + "fields": { + "id_car_serie": 53363, + "name": "1.6 BlueHDi AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236385, + "fields": { + "id_car_serie": 53363, + "name": "1.6 BlueHDi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236386, + "fields": { + "id_car_serie": 53363, + "name": "1.6 BlueHDi MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236387, + "fields": { + "id_car_serie": 53363, + "name": "2.0 BlueHDi AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236388, + "fields": { + "id_car_serie": 53363, + "name": "2.0 BlueHDi AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236389, + "fields": { + "id_car_serie": 53363, + "name": "2.0 BlueHDi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236390, + "fields": { + "id_car_serie": 53148, + "name": "xDrive20i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236391, + "fields": { + "id_car_serie": 53367, + "name": "0.9 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236392, + "fields": { + "id_car_serie": 53367, + "name": "0.9 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236393, + "fields": { + "id_car_serie": 53385, + "name": "420i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236394, + "fields": { + "id_car_serie": 53385, + "name": "420d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236395, + "fields": { + "id_car_serie": 53385, + "name": "420i xDrive Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236396, + "fields": { + "id_car_serie": 53385, + "name": "420d xDrive Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236397, + "fields": { + "id_car_serie": 53385, + "name": "430i Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236398, + "fields": { + "id_car_serie": 53385, + "name": "430i xDrive Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236399, + "fields": { + "id_car_serie": 53385, + "name": "440i xDrive Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236400, + "fields": { + "id_car_serie": 53375, + "name": "300 AT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236401, + "fields": { + "id_car_serie": 53375, + "name": "200 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236402, + "fields": { + "id_car_serie": 53375, + "name": "200 CVT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236403, + "fields": { + "id_car_serie": 53375, + "name": "300h CVT AWD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236404, + "fields": { + "id_car_serie": 53188, + "name": "E 300 9G-TRONIC (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236405, + "fields": { + "id_car_serie": 53188, + "name": "E 200 9G-TRONIC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236406, + "fields": { + "id_car_serie": 53188, + "name": "E 220 d 9G-TRONIC (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236407, + "fields": { + "id_car_serie": 53188, + "name": "E 400 4MATIC 9G-TRONIC (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236408, + "fields": { + "id_car_serie": 53188, + "name": "E 350 d 4MATIC 9G-TRONIC (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236409, + "fields": { + "id_car_serie": 53376, + "name": "2.0 MT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236410, + "fields": { + "id_car_serie": 53376, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236411, + "fields": { + "id_car_serie": 53376, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236412, + "fields": { + "id_car_serie": 53376, + "name": "2.0 AMT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236413, + "fields": { + "id_car_serie": 53374, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236414, + "fields": { + "id_car_serie": 53374, + "name": "1.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236415, + "fields": { + "id_car_serie": 53374, + "name": "1.3 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236416, + "fields": { + "id_car_serie": 53374, + "name": "1.4 D MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236417, + "fields": { + "id_car_serie": 53374, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236418, + "fields": { + "id_car_serie": 53374, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236419, + "fields": { + "id_car_serie": 53374, + "name": "1.5 Hybrid CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236420, + "fields": { + "id_car_serie": 53371, + "name": "1.5 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236421, + "fields": { + "id_car_serie": 53371, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236422, + "fields": { + "id_car_serie": 53372, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236423, + "fields": { + "id_car_serie": 53372, + "name": "1.5 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236424, + "fields": { + "id_car_serie": 53372, + "name": "1.5 Hybrid CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236425, + "fields": { + "id_car_serie": 53372, + "name": "1.5 CVT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236426, + "fields": { + "id_car_serie": 53342, + "name": "1300 GTA Junior Autodelta MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236427, + "fields": { + "id_car_serie": 53342, + "name": "1300 GTA Junior MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236428, + "fields": { + "id_car_serie": 53342, + "name": "1300 GT Junior MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236429, + "fields": { + "id_car_serie": 53342, + "name": "1600 GTV MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236430, + "fields": { + "id_car_serie": 53342, + "name": "1600 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236431, + "fields": { + "id_car_serie": 53342, + "name": "1600 GT MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236432, + "fields": { + "id_car_serie": 53342, + "name": "1600 GTA MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236433, + "fields": { + "id_car_serie": 53342, + "name": "1600 GT Junior MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236434, + "fields": { + "id_car_serie": 53342, + "name": "1750 GTV MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236435, + "fields": { + "id_car_serie": 53342, + "name": "2000 GTV MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236436, + "fields": { + "id_car_serie": 51525, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236437, + "fields": { + "id_car_serie": 51525, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236438, + "fields": { + "id_car_serie": 51525, + "name": "1.0 DSG (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236439, + "fields": { + "id_car_serie": 51525, + "name": "1.4 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236440, + "fields": { + "id_car_serie": 51525, + "name": "1.4 DSG (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236441, + "fields": { + "id_car_serie": 51525, + "name": "1.4 TDI DSG (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236442, + "fields": { + "id_car_serie": 51525, + "name": "1.6 TDI MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236443, + "fields": { + "id_car_serie": 53356, + "name": "Diesel 3.0 V6 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236444, + "fields": { + "id_car_serie": 53356, + "name": "Diesel 3.0 V6 AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236445, + "fields": { + "id_car_serie": 53356, + "name": "3.0 V6 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236446, + "fields": { + "id_car_serie": 53356, + "name": "S 3.0 V6 AT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236447, + "fields": { + "id_car_serie": 53356, + "name": "S Q4 3.0 V6 AT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236448, + "fields": { + "id_car_serie": 53382, + "name": "4.0 V8 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236449, + "fields": { + "id_car_serie": 53341, + "name": "1600 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236450, + "fields": { + "id_car_serie": 53341, + "name": "1600 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236451, + "fields": { + "id_car_serie": 53340, + "name": "1600 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236452, + "fields": { + "id_car_serie": 53340, + "name": "1600 Veloce MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236453, + "fields": { + "id_car_serie": 53380, + "name": "2.0 AT AWD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236454, + "fields": { + "id_car_serie": 53380, + "name": "2.0 d AT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236455, + "fields": { + "id_car_serie": 53373, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236456, + "fields": { + "id_car_serie": 53373, + "name": "1.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236457, + "fields": { + "id_car_serie": 53373, + "name": "1.4 D MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236458, + "fields": { + "id_car_serie": 53373, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236459, + "fields": { + "id_car_serie": 53373, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236463, + "fields": { + "id_car_serie": 53276, + "name": "640d xDrive Steptronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236464, + "fields": { + "id_car_serie": 53346, + "name": "3.5 AT AWD MAX (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236465, + "fields": { + "id_car_serie": 53346, + "name": "3.5 AT MAX (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236466, + "fields": { + "id_car_serie": 53346, + "name": "3.5 AT AWD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236467, + "fields": { + "id_car_serie": 53346, + "name": "3.5 AT (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236468, + "fields": { + "id_car_serie": 53378, + "name": "3.0 MT (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236469, + "fields": { + "id_car_serie": 53378, + "name": "3.0 DCT (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236470, + "fields": { + "id_car_serie": 53361, + "name": "1.2 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236471, + "fields": { + "id_car_serie": 53361, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236472, + "fields": { + "id_car_serie": 53361, + "name": "1.2 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236473, + "fields": { + "id_car_serie": 53361, + "name": "1.2 CVT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236474, + "fields": { + "id_car_serie": 53360, + "name": "0.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236475, + "fields": { + "id_car_serie": 53360, + "name": "1.0 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236476, + "fields": { + "id_car_serie": 53360, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236477, + "fields": { + "id_car_serie": 46033, + "name": "1.4 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236478, + "fields": { + "id_car_serie": 46033, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236479, + "fields": { + "id_car_serie": 46033, + "name": "2.0 TDI MT 4Motion (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236480, + "fields": { + "id_car_serie": 46033, + "name": "2.0 TDI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236481, + "fields": { + "id_car_serie": 46033, + "name": "2.0 TDI DSG 4Motion (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236482, + "fields": { + "id_car_serie": 46033, + "name": "2.0 TDI DSG 4Motion (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236483, + "fields": { + "id_car_serie": 46033, + "name": "2.0 TSI DSG 4Motion (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236484, + "fields": { + "id_car_serie": 46033, + "name": "2.0 TSI DSG 4Motion (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236485, + "fields": { + "id_car_serie": 46033, + "name": "2.0 TDI DSG 4Motion (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236486, + "fields": { + "id_car_serie": 53362, + "name": "1.6 MT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236487, + "fields": { + "id_car_serie": 53335, + "name": "1.5 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236488, + "fields": { + "id_car_serie": 53335, + "name": "1.5 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236489, + "fields": { + "id_car_serie": 53383, + "name": "420i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236490, + "fields": { + "id_car_serie": 53383, + "name": "420i xDrive Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236491, + "fields": { + "id_car_serie": 53383, + "name": "420d xDrive Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236492, + "fields": { + "id_car_serie": 53383, + "name": "430i xDrive Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236493, + "fields": { + "id_car_serie": 53383, + "name": "440i xDrive Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236494, + "fields": { + "id_car_serie": 53381, + "name": "1.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236495, + "fields": { + "id_car_serie": 53381, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236496, + "fields": { + "id_car_serie": 53381, + "name": "1.8 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236497, + "fields": { + "id_car_serie": 53357, + "name": "1.5 SkyActiv-G AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236498, + "fields": { + "id_car_serie": 53357, + "name": "1.5 SkyActiv-G AT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236499, + "fields": { + "id_car_serie": 53357, + "name": "1.5 SkyActiv-G MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236500, + "fields": { + "id_car_serie": 53357, + "name": "1.5 SkyActiv-G MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236501, + "fields": { + "id_car_serie": 53357, + "name": "1.5 SkyActiv-G MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236502, + "fields": { + "id_car_serie": 53357, + "name": "1.5 SkyActiv-D MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236503, + "fields": { + "id_car_serie": 51523, + "name": "1.0 GDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236504, + "fields": { + "id_car_serie": 53365, + "name": "2.5 MT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236505, + "fields": { + "id_car_serie": 53365, + "name": "2.5 PDK (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236506, + "fields": { + "id_car_serie": 53367, + "name": "0.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236507, + "fields": { + "id_car_serie": 53367, + "name": "0.9 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236508, + "fields": { + "id_car_serie": 53367, + "name": "1.0 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236509, + "fields": { + "id_car_serie": 53367, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236510, + "fields": { + "id_car_serie": 53367, + "name": "1.0 AMT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236511, + "fields": { + "id_car_serie": 53370, + "name": "5.6 AT AWD (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236512, + "fields": { + "id_car_serie": 53370, + "name": "5.6 AT (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236513, + "fields": { + "id_car_serie": 53358, + "name": "2.0 AT ALL4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236514, + "fields": { + "id_car_serie": 53344, + "name": "4.0 AT AWD (580 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236515, + "fields": { + "id_car_serie": 53377, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236516, + "fields": { + "id_car_serie": 53377, + "name": "2.0 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236517, + "fields": { + "id_car_serie": 53379, + "name": "1.0 LPG Ecotec MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236518, + "fields": { + "id_car_serie": 53379, + "name": "1.0 Ecotec MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236519, + "fields": { + "id_car_serie": 53379, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236520, + "fields": { + "id_car_serie": 53379, + "name": "1.0 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236521, + "fields": { + "id_car_serie": 53343, + "name": "55 TFSI quattro S tronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236522, + "fields": { + "id_car_serie": 53354, + "name": "200 AT (244 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236523, + "fields": { + "id_car_serie": 53354, + "name": "200 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236524, + "fields": { + "id_car_serie": 53354, + "name": "350 AT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236525, + "fields": { + "id_car_serie": 53354, + "name": "350 AT AWD (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236526, + "fields": { + "id_car_serie": 53354, + "name": "350 AT AWD (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236527, + "fields": { + "id_car_serie": 53348, + "name": "25t AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236528, + "fields": { + "id_car_serie": 53348, + "name": "E-perfomance AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236529, + "fields": { + "id_car_serie": 53348, + "name": "20d AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236530, + "fields": { + "id_car_serie": 53348, + "name": "20d AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236531, + "fields": { + "id_car_serie": 53348, + "name": "25d AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236532, + "fields": { + "id_car_serie": 53348, + "name": "25d AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236533, + "fields": { + "id_car_serie": 53348, + "name": "E-perfomance MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236534, + "fields": { + "id_car_serie": 53348, + "name": "30d AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236535, + "fields": { + "id_car_serie": 53366, + "name": "2.5 MT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236536, + "fields": { + "id_car_serie": 53366, + "name": "2.5 PDK (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236540, + "fields": { + "id_car_serie": 2705, + "name": "21053-20 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236541, + "fields": { + "id_car_serie": 2707, + "name": "2107i MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236542, + "fields": { + "id_car_serie": 2707, + "name": "2107 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236543, + "fields": { + "id_car_serie": 2707, + "name": "2107-71 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236544, + "fields": { + "id_car_serie": 3184, + "name": "0.5 AT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236545, + "fields": { + "id_car_serie": 3184, + "name": "0.5 4MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236546, + "fields": { + "id_car_serie": 3184, + "name": "0.5 5MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236547, + "fields": { + "id_car_serie": 3184, + "name": "0.5 MT (31 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236548, + "fields": { + "id_car_serie": 3184, + "name": "0.5 4MT AWD (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236549, + "fields": { + "id_car_serie": 3184, + "name": "0.6 MT (33 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236550, + "fields": { + "id_car_serie": 3185, + "name": "0.5 AT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236551, + "fields": { + "id_car_serie": 3185, + "name": "0.5 MT (31 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236552, + "fields": { + "id_car_serie": 3185, + "name": "0.5 4MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236553, + "fields": { + "id_car_serie": 3185, + "name": "0.5 5MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236554, + "fields": { + "id_car_serie": 3185, + "name": "0.5 4MT AWD (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236555, + "fields": { + "id_car_serie": 3185, + "name": "0.6 MT (33 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236556, + "fields": { + "id_car_serie": 3824, + "name": "1.5 CVT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236557, + "fields": { + "id_car_serie": 4389, + "name": "2.8 Turbo AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236558, + "fields": { + "id_car_serie": 4389, + "name": "2.8 Turbo AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236559, + "fields": { + "id_car_serie": 4389, + "name": "2.8 Turbo AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236560, + "fields": { + "id_car_serie": 4389, + "name": "2.8 Turbo MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236561, + "fields": { + "id_car_serie": 4389, + "name": "2.8 Turbo MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236562, + "fields": { + "id_car_serie": 4389, + "name": "2.8 Turbo MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236563, + "fields": { + "id_car_serie": 4390, + "name": "2.4 D AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236564, + "fields": { + "id_car_serie": 4390, + "name": "2.4 D AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236565, + "fields": { + "id_car_serie": 4390, + "name": "2.4 D MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236566, + "fields": { + "id_car_serie": 4390, + "name": "2.8 Turbo AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236567, + "fields": { + "id_car_serie": 4390, + "name": "2.8 Turbo AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236568, + "fields": { + "id_car_serie": 4390, + "name": "2.8 Turbo AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236569, + "fields": { + "id_car_serie": 4390, + "name": "2.8 Turbo MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236570, + "fields": { + "id_car_serie": 4390, + "name": "2.8 Turbo MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236571, + "fields": { + "id_car_serie": 4390, + "name": "2.8 Turbo MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236572, + "fields": { + "id_car_serie": 4525, + "name": "Plug-in Hybrid 1.8 CVT (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236573, + "fields": { + "id_car_serie": 5892, + "name": "0.7 AT AWD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236574, + "fields": { + "id_car_serie": 5892, + "name": "0.7 AT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236575, + "fields": { + "id_car_serie": 5892, + "name": "0.7 MT AWD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236576, + "fields": { + "id_car_serie": 5892, + "name": "0.7 MT AWD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236577, + "fields": { + "id_car_serie": 7084, + "name": "3.0 AT AWD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236578, + "fields": { + "id_car_serie": 9007, + "name": "3.8 AMT (700 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236579, + "fields": { + "id_car_serie": 7143, + "name": "1.2 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236580, + "fields": { + "id_car_serie": 7143, + "name": "1.6 AT AWD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236581, + "fields": { + "id_car_serie": 7623, + "name": "1.0 Brabus AMT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236582, + "fields": { + "id_car_serie": 7997, + "name": "1.8 5V Turbo AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236583, + "fields": { + "id_car_serie": 14720, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236584, + "fields": { + "id_car_serie": 14720, + "name": "2.4 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236585, + "fields": { + "id_car_serie": 14720, + "name": "2.4 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236586, + "fields": { + "id_car_serie": 14720, + "name": "2.8 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236587, + "fields": { + "id_car_serie": 15117, + "name": "2.5 CVT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236588, + "fields": { + "id_car_serie": 15117, + "name": "3.6 CVT AWD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236589, + "fields": { + "id_car_serie": 45592, + "name": "1.5 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236590, + "fields": { + "id_car_serie": 45592, + "name": "1.5 dCi MT 4x4 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236591, + "fields": { + "id_car_serie": 45168, + "name": "1.3 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236592, + "fields": { + "id_car_serie": 45168, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236593, + "fields": { + "id_car_serie": 45168, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236594, + "fields": { + "id_car_serie": 45168, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236595, + "fields": { + "id_car_serie": 45168, + "name": "1.8 AT AWD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236596, + "fields": { + "id_car_serie": 45168, + "name": "1.8 MT AWD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236597, + "fields": { + "id_car_serie": 45168, + "name": "2.2 D AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236598, + "fields": { + "id_car_serie": 45168, + "name": "2.2 D MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236599, + "fields": { + "id_car_serie": 45168, + "name": "2.2 D MT AWD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236600, + "fields": { + "id_car_serie": 45698, + "name": "350L AT AWD (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236601, + "fields": { + "id_car_serie": 45698, + "name": "450hL CVT AWD (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236602, + "fields": { + "id_car_serie": 46194, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236603, + "fields": { + "id_car_serie": 46133, + "name": "2.0 TD4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236604, + "fields": { + "id_car_serie": 46027, + "name": "1.0 Brabus AMT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236605, + "fields": { + "id_car_serie": 46141, + "name": "1.8 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236606, + "fields": { + "id_car_serie": 46154, + "name": "Plug-in Hybrid 1.8 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236607, + "fields": { + "id_car_serie": 46322, + "name": "2.3 EcoBoost AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236608, + "fields": { + "id_car_serie": 46322, + "name": "2.3 EcoBoost MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236609, + "fields": { + "id_car_serie": 46322, + "name": "5.0 AT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236610, + "fields": { + "id_car_serie": 46322, + "name": "5.0 MT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236611, + "fields": { + "id_car_serie": 46325, + "name": "2.2 TD AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236612, + "fields": { + "id_car_serie": 46325, + "name": "2.2 TD AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236613, + "fields": { + "id_car_serie": 46323, + "name": "2.3 EcoBoost AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236614, + "fields": { + "id_car_serie": 46323, + "name": "2.3 EcoBoost MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236615, + "fields": { + "id_car_serie": 46323, + "name": "5.0 AT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236616, + "fields": { + "id_car_serie": 46323, + "name": "5.0 MT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236617, + "fields": { + "id_car_serie": 47166, + "name": "0.5 AT (32 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236618, + "fields": { + "id_car_serie": 47166, + "name": "0.5 AT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236619, + "fields": { + "id_car_serie": 47166, + "name": "0.5 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236620, + "fields": { + "id_car_serie": 47166, + "name": "0.5 MT AWD (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236621, + "fields": { + "id_car_serie": 47166, + "name": "0.5 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236622, + "fields": { + "id_car_serie": 47166, + "name": "0.5 5MT AWD (32 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236623, + "fields": { + "id_car_serie": 47166, + "name": "0.5 MT AWD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236624, + "fields": { + "id_car_serie": 47166, + "name": "0.5 MT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236625, + "fields": { + "id_car_serie": 47166, + "name": "0.5 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236626, + "fields": { + "id_car_serie": 47166, + "name": "0.5 4MT AWD (32 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236627, + "fields": { + "id_car_serie": 47166, + "name": "0.5 MT (32 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236628, + "fields": { + "id_car_serie": 47166, + "name": "0.5 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236629, + "fields": { + "id_car_serie": 47339, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236630, + "fields": { + "id_car_serie": 47339, + "name": "1.4 AMT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236631, + "fields": { + "id_car_serie": 47340, + "name": "1.4 AMT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236632, + "fields": { + "id_car_serie": 47340, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236633, + "fields": { + "id_car_serie": 47326, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236634, + "fields": { + "id_car_serie": 47326, + "name": "1.8 AT AWD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236635, + "fields": { + "id_car_serie": 47326, + "name": "1.8 MT AWD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236636, + "fields": { + "id_car_serie": 47326, + "name": "2.2 D AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236637, + "fields": { + "id_car_serie": 47326, + "name": "2.2 D MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236638, + "fields": { + "id_car_serie": 47326, + "name": "2.2 D MT AWD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236640, + "fields": { + "id_car_serie": 48176, + "name": "1.3 CVT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236641, + "fields": { + "id_car_serie": 49895, + "name": "318i AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236642, + "fields": { + "id_car_serie": 49895, + "name": "318i MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236643, + "fields": { + "id_car_serie": 49899, + "name": "318i AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236644, + "fields": { + "id_car_serie": 49899, + "name": "318i MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236645, + "fields": { + "id_car_serie": 50637, + "name": "1.5 D MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236646, + "fields": { + "id_car_serie": 50637, + "name": "1.5 D AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236647, + "fields": { + "id_car_serie": 50638, + "name": "1.5 D MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236648, + "fields": { + "id_car_serie": 50638, + "name": "1.5 D AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236649, + "fields": { + "id_car_serie": 50643, + "name": "2.0 D AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236650, + "fields": { + "id_car_serie": 50644, + "name": "2.0 D AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236651, + "fields": { + "id_car_serie": 51405, + "name": "725Ld Steptronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236652, + "fields": { + "id_car_serie": 51405, + "name": "730i Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236653, + "fields": { + "id_car_serie": 51405, + "name": "730d xDrive Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236654, + "fields": { + "id_car_serie": 51405, + "name": "730Ld xDrive Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236655, + "fields": { + "id_car_serie": 53408, + "name": "1.8 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236656, + "fields": { + "id_car_serie": 53408, + "name": "1.8 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236657, + "fields": { + "id_car_serie": 53436, + "name": "IM6 1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236658, + "fields": { + "id_car_serie": 53436, + "name": "IM8 1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236659, + "fields": { + "id_car_serie": 53436, + "name": "IM6 1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236660, + "fields": { + "id_car_serie": 53436, + "name": "IM8 1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236661, + "fields": { + "id_car_serie": 53415, + "name": "2.0 AT AWD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236662, + "fields": { + "id_car_serie": 53415, + "name": "2.0 D AT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236663, + "fields": { + "id_car_serie": 53415, + "name": "2.0 D AT AWD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236664, + "fields": { + "id_car_serie": 53415, + "name": "2.0 AT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236665, + "fields": { + "id_car_serie": 53415, + "name": "2.0 D MT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236666, + "fields": { + "id_car_serie": 53415, + "name": "2.0 MT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236667, + "fields": { + "id_car_serie": 53415, + "name": "2.0 D MT AWD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236668, + "fields": { + "id_car_serie": 53415, + "name": "2.0 MT AWD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236669, + "fields": { + "id_car_serie": 53415, + "name": "2.0 D MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236670, + "fields": { + "id_car_serie": 53415, + "name": "2.0 D MT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236671, + "fields": { + "id_car_serie": 53415, + "name": "2.2 D AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236672, + "fields": { + "id_car_serie": 53415, + "name": "2.2 D AT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236673, + "fields": { + "id_car_serie": 53415, + "name": "2.2 D MT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236674, + "fields": { + "id_car_serie": 53415, + "name": "2.2 D MT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236675, + "fields": { + "id_car_serie": 53435, + "name": "IX5 1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236676, + "fields": { + "id_car_serie": 53435, + "name": "IX7 1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236677, + "fields": { + "id_car_serie": 53435, + "name": "IX5 1.5 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236678, + "fields": { + "id_car_serie": 53435, + "name": "IX7 1.5 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236679, + "fields": { + "id_car_serie": 53399, + "name": "1.5 AT AWD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236680, + "fields": { + "id_car_serie": 53434, + "name": "1.6 THP AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236681, + "fields": { + "id_car_serie": 53434, + "name": "1.8 THP AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236682, + "fields": { + "id_car_serie": 53433, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236683, + "fields": { + "id_car_serie": 53433, + "name": "1.8 AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236684, + "fields": { + "id_car_serie": 53355, + "name": "350 AT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236685, + "fields": { + "id_car_serie": 53409, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236686, + "fields": { + "id_car_serie": 53409, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236687, + "fields": { + "id_car_serie": 53409, + "name": "2.4 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236688, + "fields": { + "id_car_serie": 53223, + "name": "2.0 TDCi AT 310 L1 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236689, + "fields": { + "id_car_serie": 53223, + "name": "2.0 TDCi AT 320 L2 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236690, + "fields": { + "id_car_serie": 53223, + "name": "2.0 TDCi AT 320 L1 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236691, + "fields": { + "id_car_serie": 53223, + "name": "2.0 TDCi AT 320 L2 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236692, + "fields": { + "id_car_serie": 53223, + "name": "2.0 TDCi AT 310 L1 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236693, + "fields": { + "id_car_serie": 53223, + "name": "2.0 TDCi AT 310 L2 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236694, + "fields": { + "id_car_serie": 53223, + "name": "2.0 TDCi AT 320 L1 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236695, + "fields": { + "id_car_serie": 53223, + "name": "2.0 TDCi AT 310 L2 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236696, + "fields": { + "id_car_serie": 53223, + "name": "2.0 TDCi MT 310 L2 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236697, + "fields": { + "id_car_serie": 53223, + "name": "2.0 TDCi MT 310 L2 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236698, + "fields": { + "id_car_serie": 53223, + "name": "2.0 TDCi MT 320 L2 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236699, + "fields": { + "id_car_serie": 53223, + "name": "2.0 TDCi MT 320 L1 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236700, + "fields": { + "id_car_serie": 53223, + "name": "2.0 TDCi MT 320 L1 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236701, + "fields": { + "id_car_serie": 53223, + "name": "2.0 TDCi MT 310 L1 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236702, + "fields": { + "id_car_serie": 53223, + "name": "2.0 TDCi MT 310 L1 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236703, + "fields": { + "id_car_serie": 53223, + "name": "2.0 TDCi MT 320 L1 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236704, + "fields": { + "id_car_serie": 53223, + "name": "2.0 TDCi MT 320 L2 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236705, + "fields": { + "id_car_serie": 53223, + "name": "2.0 TDCi MT 320 L2 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236706, + "fields": { + "id_car_serie": 53410, + "name": "2.4 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236707, + "fields": { + "id_car_serie": 53410, + "name": "2.4 CVT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236708, + "fields": { + "id_car_serie": 51490, + "name": "530i xDrive Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236709, + "fields": { + "id_car_serie": 53437, + "name": "4.0 AT AWD (650 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236710, + "fields": { + "id_car_serie": 53438, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236711, + "fields": { + "id_car_serie": 53438, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236712, + "fields": { + "id_car_serie": 53438, + "name": "1.6 Diesel AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236713, + "fields": { + "id_car_serie": 53438, + "name": "1.6 Diesel MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236714, + "fields": { + "id_car_serie": 53442, + "name": "2.3 dCi AT 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236715, + "fields": { + "id_car_serie": 53442, + "name": "2.3 dCi MT 4x4 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236716, + "fields": { + "id_car_serie": 53442, + "name": "2.3 dCi MT 4x4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236717, + "fields": { + "id_car_serie": 53420, + "name": "5.7 AT AWD (386 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236718, + "fields": { + "id_car_serie": 53420, + "name": "5.7 AT (386 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236719, + "fields": { + "id_car_serie": 53403, + "name": "2.2 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236720, + "fields": { + "id_car_serie": 53403, + "name": "2.2 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236721, + "fields": { + "id_car_serie": 53403, + "name": "2.2 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236722, + "fields": { + "id_car_serie": 53403, + "name": "2.2 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236723, + "fields": { + "id_car_serie": 53403, + "name": "2.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236724, + "fields": { + "id_car_serie": 53403, + "name": "2.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236725, + "fields": { + "id_car_serie": 53403, + "name": "2.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236726, + "fields": { + "id_car_serie": 53403, + "name": "2.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236727, + "fields": { + "id_car_serie": 53403, + "name": "2.6 AT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236728, + "fields": { + "id_car_serie": 53412, + "name": "4.2 MT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236729, + "fields": { + "id_car_serie": 53439, + "name": "1.5 AT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236730, + "fields": { + "id_car_serie": 53439, + "name": "1.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236731, + "fields": { + "id_car_serie": 53439, + "name": "1.5 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236732, + "fields": { + "id_car_serie": 53439, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236733, + "fields": { + "id_car_serie": 53418, + "name": "21081 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236734, + "fields": { + "id_car_serie": 53418, + "name": "2108-91 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236735, + "fields": { + "id_car_serie": 53418, + "name": "2108 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236736, + "fields": { + "id_car_serie": 53418, + "name": "21083 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236737, + "fields": { + "id_car_serie": 53418, + "name": "21083-20 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236738, + "fields": { + "id_car_serie": 53405, + "name": "2.0 VC-T CVT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236739, + "fields": { + "id_car_serie": 53405, + "name": "2.0 VC-T CVT AWD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236740, + "fields": { + "id_car_serie": 53413, + "name": "4.2 MT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236741, + "fields": { + "id_car_serie": 53400, + "name": "2.2 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236742, + "fields": { + "id_car_serie": 53400, + "name": "2.2 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236743, + "fields": { + "id_car_serie": 53400, + "name": "2.2 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236744, + "fields": { + "id_car_serie": 53400, + "name": "2.2 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236745, + "fields": { + "id_car_serie": 53400, + "name": "2.2 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236746, + "fields": { + "id_car_serie": 53400, + "name": "2.2 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236747, + "fields": { + "id_car_serie": 53400, + "name": "2.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236748, + "fields": { + "id_car_serie": 53400, + "name": "2.2 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236749, + "fields": { + "id_car_serie": 53400, + "name": "2.2 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236750, + "fields": { + "id_car_serie": 53400, + "name": "2.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236751, + "fields": { + "id_car_serie": 53400, + "name": "2.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236752, + "fields": { + "id_car_serie": 53400, + "name": "2.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236753, + "fields": { + "id_car_serie": 53400, + "name": "2.6 AT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236754, + "fields": { + "id_car_serie": 53416, + "name": "2.0 AT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236755, + "fields": { + "id_car_serie": 53416, + "name": "2.0 AT AWD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236756, + "fields": { + "id_car_serie": 53416, + "name": "2.0 D AT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236757, + "fields": { + "id_car_serie": 53416, + "name": "2.0 D AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236758, + "fields": { + "id_car_serie": 53416, + "name": "2.0 D AT AWD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236759, + "fields": { + "id_car_serie": 53416, + "name": "2.0 D AT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236760, + "fields": { + "id_car_serie": 53416, + "name": "2.0 D MT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236761, + "fields": { + "id_car_serie": 53416, + "name": "2.0 D MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236762, + "fields": { + "id_car_serie": 53416, + "name": "2.0 D MT AWD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236763, + "fields": { + "id_car_serie": 53416, + "name": "2.0 D MT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236764, + "fields": { + "id_car_serie": 53416, + "name": "2.0 MT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236765, + "fields": { + "id_car_serie": 53416, + "name": "2.0 MT AWD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236766, + "fields": { + "id_car_serie": 53417, + "name": "2.0 D AT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236767, + "fields": { + "id_car_serie": 53417, + "name": "2.0 AT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236768, + "fields": { + "id_car_serie": 53417, + "name": "2.0 D AT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236769, + "fields": { + "id_car_serie": 53417, + "name": "2.0 D AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236770, + "fields": { + "id_car_serie": 53417, + "name": "2.0 D AT AWD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236771, + "fields": { + "id_car_serie": 53417, + "name": "2.0 AT AWD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236772, + "fields": { + "id_car_serie": 53417, + "name": "2.0 D MT AWD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236773, + "fields": { + "id_car_serie": 53417, + "name": "2.0 MT AWD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236774, + "fields": { + "id_car_serie": 53417, + "name": "2.0 D MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236775, + "fields": { + "id_car_serie": 53417, + "name": "2.0 D MT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236776, + "fields": { + "id_car_serie": 53417, + "name": "2.0 D MT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236777, + "fields": { + "id_car_serie": 53417, + "name": "2.0 MT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236778, + "fields": { + "id_car_serie": 53406, + "name": "Skyactiv-G 2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236779, + "fields": { + "id_car_serie": 53406, + "name": "Skyactiv-G 2.5T AT (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236780, + "fields": { + "id_car_serie": 53406, + "name": "Skyactiv-G 2.5 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236781, + "fields": { + "id_car_serie": 53237, + "name": "1.8 TD AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236782, + "fields": { + "id_car_serie": 53237, + "name": "1.8 TD AT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236783, + "fields": { + "id_car_serie": 53237, + "name": "1.8 TD MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236784, + "fields": { + "id_car_serie": 53237, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236785, + "fields": { + "id_car_serie": 53237, + "name": "2.4 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236786, + "fields": { + "id_car_serie": 53237, + "name": "2.4 AT AWD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236787, + "fields": { + "id_car_serie": 53432, + "name": "2.0 AT Q4 (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236788, + "fields": { + "id_car_serie": 53432, + "name": "2.0 AT Q4 (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236789, + "fields": { + "id_car_serie": 53432, + "name": "2.2 D AT Q4 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236790, + "fields": { + "id_car_serie": 53432, + "name": "2.2 D AT Q4 (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236791, + "fields": { + "id_car_serie": 53432, + "name": "2.2 D AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236792, + "fields": { + "id_car_serie": 53432, + "name": "2.2 D AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236793, + "fields": { + "id_car_serie": 53432, + "name": "2.9 AT Q4 (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236794, + "fields": { + "id_car_serie": 53440, + "name": "1.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236795, + "fields": { + "id_car_serie": 53440, + "name": "1.5 AT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236796, + "fields": { + "id_car_serie": 53440, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236797, + "fields": { + "id_car_serie": 53440, + "name": "1.5 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236798, + "fields": { + "id_car_serie": 53425, + "name": "5.7 AT AWD (386 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236799, + "fields": { + "id_car_serie": 53426, + "name": "4.6 AT AWD (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236800, + "fields": { + "id_car_serie": 53426, + "name": "5.7 AT AWD (386 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236801, + "fields": { + "id_car_serie": 53426, + "name": "5.7 AT Long (386 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236802, + "fields": { + "id_car_serie": 53426, + "name": "5.7 AT Long AWD (386 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236803, + "fields": { + "id_car_serie": 53429, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236804, + "fields": { + "id_car_serie": 53429, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236805, + "fields": { + "id_car_serie": 53429, + "name": "1.5 D MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236806, + "fields": { + "id_car_serie": 53429, + "name": "1.5 AMT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236807, + "fields": { + "id_car_serie": 53430, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236808, + "fields": { + "id_car_serie": 53430, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236809, + "fields": { + "id_car_serie": 53430, + "name": "1.5 AMT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236810, + "fields": { + "id_car_serie": 53430, + "name": "1.5 D MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236811, + "fields": { + "id_car_serie": 53428, + "name": "350 d AT 4Matic (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236812, + "fields": { + "id_car_serie": 53428, + "name": "400 d AT 4Matic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236813, + "fields": { + "id_car_serie": 53428, + "name": "450 AT 4Matic (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236814, + "fields": { + "id_car_serie": 53398, + "name": "1.5 AT AWD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236815, + "fields": { + "id_car_serie": 53422, + "name": "4.6 AT AWD (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236816, + "fields": { + "id_car_serie": 53422, + "name": "5.7 AT Long AWD (386 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236817, + "fields": { + "id_car_serie": 53422, + "name": "5.7 AT Long (386 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236818, + "fields": { + "id_car_serie": 53422, + "name": "5.7 AT AWD (386 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236819, + "fields": { + "id_car_serie": 53407, + "name": "1.8 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236820, + "fields": { + "id_car_serie": 53407, + "name": "1.8 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236821, + "fields": { + "id_car_serie": 53407, + "name": "2.0 MT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236822, + "fields": { + "id_car_serie": 53407, + "name": "2.0 CVT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236823, + "fields": { + "id_car_serie": 53404, + "name": "2.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236824, + "fields": { + "id_car_serie": 53404, + "name": "3.0 AT AWD (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236825, + "fields": { + "id_car_serie": 53427, + "name": "4.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236826, + "fields": { + "id_car_serie": 53421, + "name": "3.5 AT (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236827, + "fields": { + "id_car_serie": 53421, + "name": "3.5 AT AWD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236834, + "fields": { + "id_car_serie": 53419, + "name": "21091 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236835, + "fields": { + "id_car_serie": 53419, + "name": "2109 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236836, + "fields": { + "id_car_serie": 53419, + "name": "21093i MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236837, + "fields": { + "id_car_serie": 53419, + "name": "21093 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236838, + "fields": { + "id_car_serie": 53419, + "name": "21094 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236839, + "fields": { + "id_car_serie": 53401, + "name": "2.2 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236840, + "fields": { + "id_car_serie": 53401, + "name": "2.2 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236841, + "fields": { + "id_car_serie": 53401, + "name": "2.2 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236842, + "fields": { + "id_car_serie": 53401, + "name": "2.2 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236843, + "fields": { + "id_car_serie": 53401, + "name": "2.2 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236844, + "fields": { + "id_car_serie": 53401, + "name": "2.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236845, + "fields": { + "id_car_serie": 53401, + "name": "2.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236846, + "fields": { + "id_car_serie": 53401, + "name": "2.6 AT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236847, + "fields": { + "id_car_serie": 53401, + "name": "2.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236848, + "fields": { + "id_car_serie": 53401, + "name": "2.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236849, + "fields": { + "id_car_serie": 53401, + "name": "2.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236850, + "fields": { + "id_car_serie": 53402, + "name": "2.2 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236851, + "fields": { + "id_car_serie": 53402, + "name": "2.2 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236852, + "fields": { + "id_car_serie": 53402, + "name": "2.2 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236853, + "fields": { + "id_car_serie": 53402, + "name": "2.2 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236854, + "fields": { + "id_car_serie": 53402, + "name": "2.2 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236855, + "fields": { + "id_car_serie": 53402, + "name": "2.2 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236856, + "fields": { + "id_car_serie": 53402, + "name": "2.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236857, + "fields": { + "id_car_serie": 53402, + "name": "2.2 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236858, + "fields": { + "id_car_serie": 53402, + "name": "2.2 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236859, + "fields": { + "id_car_serie": 53402, + "name": "2.2 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236860, + "fields": { + "id_car_serie": 53402, + "name": "2.6 AT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236861, + "fields": { + "id_car_serie": 53402, + "name": "2.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236862, + "fields": { + "id_car_serie": 53402, + "name": "2.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236863, + "fields": { + "id_car_serie": 53402, + "name": "2.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236864, + "fields": { + "id_car_serie": 53423, + "name": "5.7 AT AWD (386 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236865, + "fields": { + "id_car_serie": 53424, + "name": "5.7 AT (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236866, + "fields": { + "id_car_serie": 53424, + "name": "5.7 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236867, + "fields": { + "id_car_serie": 53424, + "name": "5.7 AT Long (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236868, + "fields": { + "id_car_serie": 1385, + "name": "300 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236869, + "fields": { + "id_car_serie": 3481, + "name": "2.0 CRDi AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236870, + "fields": { + "id_car_serie": 3886, + "name": "1.6 CDTI ecoFLEX MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236871, + "fields": { + "id_car_serie": 3888, + "name": "1.6 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236872, + "fields": { + "id_car_serie": 3979, + "name": "2.0 HDi 4AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236873, + "fields": { + "id_car_serie": 3979, + "name": "2.2 HDi MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236874, + "fields": { + "id_car_serie": 3979, + "name": "2.7 HDi AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236875, + "fields": { + "id_car_serie": 3979, + "name": "3.0 HDi AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236876, + "fields": { + "id_car_serie": 4539, + "name": "2.0 T5 Drive-E Geartronic AWD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236877, + "fields": { + "id_car_serie": 4187, + "name": "1.5 AT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236878, + "fields": { + "id_car_serie": 4187, + "name": "1.5 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236879, + "fields": { + "id_car_serie": 4187, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236880, + "fields": { + "id_car_serie": 4187, + "name": "1.5 AT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236881, + "fields": { + "id_car_serie": 4187, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236882, + "fields": { + "id_car_serie": 4187, + "name": "1.5 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236883, + "fields": { + "id_car_serie": 4187, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236884, + "fields": { + "id_car_serie": 4187, + "name": "1.5 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236885, + "fields": { + "id_car_serie": 4187, + "name": "2.0 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236886, + "fields": { + "id_car_serie": 4187, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236887, + "fields": { + "id_car_serie": 4187, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236888, + "fields": { + "id_car_serie": 4187, + "name": "2.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236889, + "fields": { + "id_car_serie": 4187, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236890, + "fields": { + "id_car_serie": 4187, + "name": "2.0 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236891, + "fields": { + "id_car_serie": 4187, + "name": "2.0 MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236892, + "fields": { + "id_car_serie": 4605, + "name": "315128 D 2.2 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236893, + "fields": { + "id_car_serie": 4605, + "name": "31512 2.4 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236894, + "fields": { + "id_car_serie": 4605, + "name": "31512-10 2.4 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236895, + "fields": { + "id_car_serie": 4605, + "name": "31512-10 2.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236896, + "fields": { + "id_car_serie": 4605, + "name": "31512 2.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236897, + "fields": { + "id_car_serie": 4605, + "name": "315128 D 2.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236898, + "fields": { + "id_car_serie": 4605, + "name": "315192-10 2.9 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236899, + "fields": { + "id_car_serie": 4605, + "name": "315192 2.9 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236900, + "fields": { + "id_car_serie": 4605, + "name": "315192 2.9 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236901, + "fields": { + "id_car_serie": 4605, + "name": "315192-10 2.9 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236902, + "fields": { + "id_car_serie": 4628, + "name": "1.9 TDI AT quattro (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236903, + "fields": { + "id_car_serie": 4628, + "name": "2.6 AT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236904, + "fields": { + "id_car_serie": 4851, + "name": "xDrive30d Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236905, + "fields": { + "id_car_serie": 5811, + "name": "1.6 HDi AMT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236906, + "fields": { + "id_car_serie": 5811, + "name": "2.0 HDi AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236907, + "fields": { + "id_car_serie": 5811, + "name": "2.0 HDi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236908, + "fields": { + "id_car_serie": 5811, + "name": "2.0 HDi AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236909, + "fields": { + "id_car_serie": 5811, + "name": "2.0 HDi AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236910, + "fields": { + "id_car_serie": 5811, + "name": "2.0 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236911, + "fields": { + "id_car_serie": 9111, + "name": "2.3 AT AWD RX 230 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236912, + "fields": { + "id_car_serie": 9111, + "name": "2.3 MT AWD RX 230 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236913, + "fields": { + "id_car_serie": 9111, + "name": "2.7 AT AWD RX 270 Xdi (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236914, + "fields": { + "id_car_serie": 9111, + "name": "2.7 MT AWD RX 270 Xdi (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236915, + "fields": { + "id_car_serie": 9111, + "name": "2.8 AT AWD RX 280 (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236916, + "fields": { + "id_car_serie": 7283, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236917, + "fields": { + "id_car_serie": 7283, + "name": "1.7 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236918, + "fields": { + "id_car_serie": 7283, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236919, + "fields": { + "id_car_serie": 7284, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236920, + "fields": { + "id_car_serie": 7285, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236921, + "fields": { + "id_car_serie": 7285, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236922, + "fields": { + "id_car_serie": 7289, + "name": "1.6 Easytronic (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236923, + "fields": { + "id_car_serie": 7293, + "name": "1.3 CDTI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236924, + "fields": { + "id_car_serie": 7296, + "name": "1.6 Turbo AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236925, + "fields": { + "id_car_serie": 7296, + "name": "1.9 CDTI MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236926, + "fields": { + "id_car_serie": 7299, + "name": "1.6 Twinport AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236927, + "fields": { + "id_car_serie": 7299, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236928, + "fields": { + "id_car_serie": 7300, + "name": "1.6 CNG AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236929, + "fields": { + "id_car_serie": 7300, + "name": "1.6 CNG MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236930, + "fields": { + "id_car_serie": 7300, + "name": "1.7 CDTi AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236931, + "fields": { + "id_car_serie": 7623, + "name": "17.6 kWh ED (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236932, + "fields": { + "id_car_serie": 8046, + "name": "2.0 D MT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236933, + "fields": { + "id_car_serie": 10787, + "name": "2.0 TDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236934, + "fields": { + "id_car_serie": 10787, + "name": "2.0 TDI MT 4Motion (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236935, + "fields": { + "id_car_serie": 14752, + "name": "2.0 TD AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236936, + "fields": { + "id_car_serie": 15140, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236937, + "fields": { + "id_car_serie": 15140, + "name": "1.9 TDI 5MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236938, + "fields": { + "id_car_serie": 14872, + "name": "2.4 tiptronic quattro (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236939, + "fields": { + "id_car_serie": 14931, + "name": "2.0 AT (259 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236940, + "fields": { + "id_car_serie": 14931, + "name": "2.5 AT (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236941, + "fields": { + "id_car_serie": 15141, + "name": "1.9 TDI 5MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236942, + "fields": { + "id_car_serie": 14662, + "name": "1.8 TFSI S tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236943, + "fields": { + "id_car_serie": 14662, + "name": "2.0 TFSI S tronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236944, + "fields": { + "id_car_serie": 14662, + "name": "3.0 TDI S tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236945, + "fields": { + "id_car_serie": 45559, + "name": "18i sDrive Steptronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236946, + "fields": { + "id_car_serie": 45698, + "name": "300 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236947, + "fields": { + "id_car_serie": 45698, + "name": "300 AT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236948, + "fields": { + "id_car_serie": 46155, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236949, + "fields": { + "id_car_serie": 46027, + "name": "17.6 kWh ED (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236950, + "fields": { + "id_car_serie": 46807, + "name": "2.0 T6 Drive-E AT AWD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236951, + "fields": { + "id_car_serie": 46807, + "name": "2.0 T5 Drive-E AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236952, + "fields": { + "id_car_serie": 47384, + "name": "1.1 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236953, + "fields": { + "id_car_serie": 47384, + "name": "1.5 dCi MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236954, + "fields": { + "id_car_serie": 47384, + "name": "1.5 dCi MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236955, + "fields": { + "id_car_serie": 47384, + "name": "1.5 dCi MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236956, + "fields": { + "id_car_serie": 47384, + "name": "1.5 dCi MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236957, + "fields": { + "id_car_serie": 47384, + "name": "1.5 dCi MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236958, + "fields": { + "id_car_serie": 47384, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236959, + "fields": { + "id_car_serie": 47384, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236960, + "fields": { + "id_car_serie": 47384, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236961, + "fields": { + "id_car_serie": 47384, + "name": "1.6 MT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236962, + "fields": { + "id_car_serie": 47384, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236963, + "fields": { + "id_car_serie": 47469, + "name": "315148-10 D 2.2 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236964, + "fields": { + "id_car_serie": 47469, + "name": "315148 D 2.2 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236965, + "fields": { + "id_car_serie": 47469, + "name": "315148-10 D 2.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236966, + "fields": { + "id_car_serie": 47469, + "name": "31514 2.4 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236967, + "fields": { + "id_car_serie": 47469, + "name": "31514-10 2.4 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236968, + "fields": { + "id_car_serie": 47469, + "name": "31514 2.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236969, + "fields": { + "id_car_serie": 47469, + "name": "31514-10 2.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236970, + "fields": { + "id_car_serie": 47469, + "name": "315148 D 2.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236971, + "fields": { + "id_car_serie": 47469, + "name": "31519 2.9 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236972, + "fields": { + "id_car_serie": 47469, + "name": "31519-10 2.9 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236973, + "fields": { + "id_car_serie": 47469, + "name": "31519 2.9 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236974, + "fields": { + "id_car_serie": 47469, + "name": "31519-10 2.9 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236975, + "fields": { + "id_car_serie": 46851, + "name": "1.6 THP MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236976, + "fields": { + "id_car_serie": 46851, + "name": "1.6 HDi AMT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236977, + "fields": { + "id_car_serie": 46851, + "name": "1.6 HDi AMT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236978, + "fields": { + "id_car_serie": 46851, + "name": "2.0 HDi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236979, + "fields": { + "id_car_serie": 46851, + "name": "2.0 HDi AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236980, + "fields": { + "id_car_serie": 46851, + "name": "2.0 HDi AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236981, + "fields": { + "id_car_serie": 47424, + "name": "1.8 AT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236982, + "fields": { + "id_car_serie": 47424, + "name": "1.8 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236983, + "fields": { + "id_car_serie": 47463, + "name": "1.5 T3 Drive-E Geartronic (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236984, + "fields": { + "id_car_serie": 47154, + "name": "1.6 HDi AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236985, + "fields": { + "id_car_serie": 47154, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236986, + "fields": { + "id_car_serie": 47154, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236987, + "fields": { + "id_car_serie": 47154, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236988, + "fields": { + "id_car_serie": 47154, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236989, + "fields": { + "id_car_serie": 47154, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236990, + "fields": { + "id_car_serie": 47023, + "name": "1.8 AT AWD turbo (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236991, + "fields": { + "id_car_serie": 47023, + "name": "1.8 AT turbo (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236993, + "fields": { + "id_car_serie": 5938, + "name": "2.0 CRD MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236995, + "fields": { + "id_car_serie": 5938, + "name": "2.0 CRD MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 236996, + "fields": { + "id_car_serie": 5938, + "name": "2.2 CRD MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237000, + "fields": { + "id_car_serie": 5938, + "name": "2.4 CVT AWD (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237001, + "fields": { + "id_car_serie": 5938, + "name": "2.4 CVT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237002, + "fields": { + "id_car_serie": 47580, + "name": "2.8 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237003, + "fields": { + "id_car_serie": 47580, + "name": "2.8 AT quattro (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237004, + "fields": { + "id_car_serie": 47580, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237005, + "fields": { + "id_car_serie": 47580, + "name": "2.8 MT quattro (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237006, + "fields": { + "id_car_serie": 47791, + "name": "4.3 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237007, + "fields": { + "id_car_serie": 47791, + "name": "5.0 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237008, + "fields": { + "id_car_serie": 47791, + "name": "5.7 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237009, + "fields": { + "id_car_serie": 47791, + "name": "6.5 TDi AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237010, + "fields": { + "id_car_serie": 47791, + "name": "7.4 AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237011, + "fields": { + "id_car_serie": 47791, + "name": "8.1 AT (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237012, + "fields": { + "id_car_serie": 48608, + "name": "3.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237013, + "fields": { + "id_car_serie": 48609, + "name": "3.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237014, + "fields": { + "id_car_serie": 48819, + "name": "1.6 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237015, + "fields": { + "id_car_serie": 48819, + "name": "1.6 CDTI ecoFLEX MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237016, + "fields": { + "id_car_serie": 48819, + "name": "2.0 CDTI BiTurbo ecoFLEX MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237017, + "fields": { + "id_car_serie": 48822, + "name": "1.6 Twinport Easytronic (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237018, + "fields": { + "id_car_serie": 48822, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237019, + "fields": { + "id_car_serie": 48822, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237020, + "fields": { + "id_car_serie": 48825, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237021, + "fields": { + "id_car_serie": 48826, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237022, + "fields": { + "id_car_serie": 48871, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237023, + "fields": { + "id_car_serie": 48872, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237024, + "fields": { + "id_car_serie": 48922, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237025, + "fields": { + "id_car_serie": 48922, + "name": "2.0 HDi AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237026, + "fields": { + "id_car_serie": 48922, + "name": "2.0 HDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237027, + "fields": { + "id_car_serie": 48922, + "name": "2.2 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237028, + "fields": { + "id_car_serie": 48922, + "name": "2.2 HDi MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237029, + "fields": { + "id_car_serie": 48922, + "name": "2.7 HDi MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237030, + "fields": { + "id_car_serie": 49151, + "name": "2.0 MT 4WD (308 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237031, + "fields": { + "id_car_serie": 49151, + "name": "2.0 MT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237032, + "fields": { + "id_car_serie": 49480, + "name": "2.5 MT AWD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237033, + "fields": { + "id_car_serie": 14711, + "name": "1.4 T MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237034, + "fields": { + "id_car_serie": 14711, + "name": "1.4 T MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237035, + "fields": { + "id_car_serie": 14711, + "name": "1.6 D MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237036, + "fields": { + "id_car_serie": 14711, + "name": "2.0 D AT 4x4 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237037, + "fields": { + "id_car_serie": 14711, + "name": "2.0 D AT 4x4 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237038, + "fields": { + "id_car_serie": 14711, + "name": "2.0 D MT 4x4 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237039, + "fields": { + "id_car_serie": 14711, + "name": "2.4 AT 4x4 (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237040, + "fields": { + "id_car_serie": 49710, + "name": "2.0 MT 4WD (308 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237041, + "fields": { + "id_car_serie": 49710, + "name": "2.0 MT 4WD (328 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237042, + "fields": { + "id_car_serie": 49724, + "name": "2.5 TDI 7DW MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237043, + "fields": { + "id_car_serie": 49724, + "name": "2.5 TDI 7DZ MT (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237044, + "fields": { + "id_car_serie": 49890, + "name": "216d Steptronic Gran (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237045, + "fields": { + "id_car_serie": 49890, + "name": "225xe Steptronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237046, + "fields": { + "id_car_serie": 49890, + "name": "216d Steptronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237047, + "fields": { + "id_car_serie": 49890, + "name": "218i Steptronic Gran (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237048, + "fields": { + "id_car_serie": 49890, + "name": "216i MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237049, + "fields": { + "id_car_serie": 49890, + "name": "214d MT Gran (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237050, + "fields": { + "id_car_serie": 49890, + "name": "216d MT Gran (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237051, + "fields": { + "id_car_serie": 49890, + "name": "216i MT Gran (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237052, + "fields": { + "id_car_serie": 49890, + "name": "218i MT Gran (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237053, + "fields": { + "id_car_serie": 49890, + "name": "218d Steptronic xDrive (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237054, + "fields": { + "id_car_serie": 49890, + "name": "220d Steptronic Gran (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237055, + "fields": { + "id_car_serie": 49890, + "name": "218d Steptronic xDrive Gran (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237056, + "fields": { + "id_car_serie": 49890, + "name": "218d Steptronic Gran (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237057, + "fields": { + "id_car_serie": 49890, + "name": "220i Steptronic Gran (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237058, + "fields": { + "id_car_serie": 49890, + "name": "220d Steptronic xDrive Gran (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237059, + "fields": { + "id_car_serie": 49890, + "name": "220i MT Gran (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237060, + "fields": { + "id_car_serie": 49890, + "name": "218d MT Gran (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237061, + "fields": { + "id_car_serie": 49890, + "name": "218d MT xDrive Gran (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237062, + "fields": { + "id_car_serie": 49890, + "name": "220d MT Gran (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237063, + "fields": { + "id_car_serie": 49890, + "name": "218d MT xDrive (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237064, + "fields": { + "id_car_serie": 49935, + "name": "520d MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237065, + "fields": { + "id_car_serie": 6908, + "name": "C 250 BlueEfficiency 7G-Tronic Plus (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237066, + "fields": { + "id_car_serie": 50431, + "name": "C 200 BlueEfficiency 7G-Tronic Plus (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237067, + "fields": { + "id_car_serie": 50432, + "name": "C 220 CDi BlueEfficiency 7G-Tronic Plus (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237068, + "fields": { + "id_car_serie": 50464, + "name": "E 300 7G-Tronic Plus (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237069, + "fields": { + "id_car_serie": 50464, + "name": "E 300 4Matic 7G-Tronic Plus (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237070, + "fields": { + "id_car_serie": 50466, + "name": "E 300 7G-Tronic Plus (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237071, + "fields": { + "id_car_serie": 50466, + "name": "E 300 7G-Tronic Plus 4Matic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237072, + "fields": { + "id_car_serie": 50468, + "name": "E 300 BlueEfficiency 4MATIC 7G-Tronic Plus (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237073, + "fields": { + "id_car_serie": 50468, + "name": "E 300 BlueEfficiency 7G-Tronic Plus (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237074, + "fields": { + "id_car_serie": 50469, + "name": "E 300 BlueEfficiency 7G-Tronic Plus (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237075, + "fields": { + "id_car_serie": 50469, + "name": "E 300 BlueEfficiency 4MATIC 7G-Tronic Plus (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237076, + "fields": { + "id_car_serie": 50470, + "name": "E 300 BlueEfficiency 7G-Tronic Plus (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237077, + "fields": { + "id_car_serie": 50472, + "name": "E 300 BlueEfficiency 7G-Tronic Plus (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237079, + "fields": { + "id_car_serie": 50939, + "name": "2.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237080, + "fields": { + "id_car_serie": 50939, + "name": "2.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237081, + "fields": { + "id_car_serie": 50940, + "name": "2.4 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237083, + "fields": { + "id_car_serie": 50941, + "name": "2.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237084, + "fields": { + "id_car_serie": 50941, + "name": "2.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237086, + "fields": { + "id_car_serie": 50942, + "name": "2.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237087, + "fields": { + "id_car_serie": 50942, + "name": "2.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237088, + "fields": { + "id_car_serie": 50942, + "name": "2.4 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237089, + "fields": { + "id_car_serie": 50994, + "name": "2.4 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237090, + "fields": { + "id_car_serie": 50994, + "name": "2.4 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237091, + "fields": { + "id_car_serie": 50994, + "name": "2.9 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237092, + "fields": { + "id_car_serie": 50994, + "name": "2.9 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237093, + "fields": { + "id_car_serie": 50994, + "name": "2.9 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237094, + "fields": { + "id_car_serie": 51001, + "name": "2.4 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237095, + "fields": { + "id_car_serie": 51001, + "name": "2.4 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237096, + "fields": { + "id_car_serie": 51001, + "name": "2.9 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237097, + "fields": { + "id_car_serie": 51001, + "name": "2.9 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237098, + "fields": { + "id_car_serie": 51001, + "name": "2.9 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237099, + "fields": { + "id_car_serie": 51385, + "name": "17.6 kWh ED (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237100, + "fields": { + "id_car_serie": 51386, + "name": "17.6 kWh ED (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237101, + "fields": { + "id_car_serie": 53486, + "name": "225xe Steptronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237102, + "fields": { + "id_car_serie": 53486, + "name": "216i MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237103, + "fields": { + "id_car_serie": 53486, + "name": "218i MT Gran (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237104, + "fields": { + "id_car_serie": 53486, + "name": "218i MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237105, + "fields": { + "id_car_serie": 53486, + "name": "216d MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237106, + "fields": { + "id_car_serie": 53486, + "name": "216d MT Gran (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237107, + "fields": { + "id_car_serie": 53486, + "name": "216i MT Gran (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237108, + "fields": { + "id_car_serie": 53486, + "name": "216d Steptronic Gran (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237109, + "fields": { + "id_car_serie": 53486, + "name": "216d Steptronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237110, + "fields": { + "id_car_serie": 53486, + "name": "218i Steptronic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237111, + "fields": { + "id_car_serie": 53486, + "name": "218i Steptronic Gran (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237112, + "fields": { + "id_car_serie": 53486, + "name": "220d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237113, + "fields": { + "id_car_serie": 53486, + "name": "220d Steptronic Gran (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237114, + "fields": { + "id_car_serie": 53486, + "name": "218d Steptronic xDrive Gran (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237115, + "fields": { + "id_car_serie": 53486, + "name": "218d Steptronic Gran (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237116, + "fields": { + "id_car_serie": 53486, + "name": "220d Steptronic xDrive Gran (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237117, + "fields": { + "id_car_serie": 53486, + "name": "220d Steptronic xDrive (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237118, + "fields": { + "id_car_serie": 53486, + "name": "218d Steptronic xDrive (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237119, + "fields": { + "id_car_serie": 53486, + "name": "218d Steptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237120, + "fields": { + "id_car_serie": 53486, + "name": "225i Steptronic xDrive (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237121, + "fields": { + "id_car_serie": 53486, + "name": "218d MT xDrive (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237122, + "fields": { + "id_car_serie": 53486, + "name": "218d MT xDrive Gran (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237123, + "fields": { + "id_car_serie": 53486, + "name": "218d MT Gran (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237124, + "fields": { + "id_car_serie": 53486, + "name": "218d MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237125, + "fields": { + "id_car_serie": 53486, + "name": "220i Steptronic (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237126, + "fields": { + "id_car_serie": 53486, + "name": "220i Steptronic Gran (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237127, + "fields": { + "id_car_serie": 53353, + "name": "2.2 CRDi AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237128, + "fields": { + "id_car_serie": 53353, + "name": "2.2 CRDi AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237129, + "fields": { + "id_car_serie": 53353, + "name": "2.2 CRDi MT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237130, + "fields": { + "id_car_serie": 53353, + "name": "2.2 CRDi MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237131, + "fields": { + "id_car_serie": 53353, + "name": "2.4 GDI AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237132, + "fields": { + "id_car_serie": 53353, + "name": "2.4 GDI AT AWD (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237133, + "fields": { + "id_car_serie": 53353, + "name": "3.5 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237134, + "fields": { + "id_car_serie": 53353, + "name": "3.5 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237135, + "fields": { + "id_car_serie": 53350, + "name": "2.0 AT AWD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237136, + "fields": { + "id_car_serie": 53350, + "name": "3.6 AT AWD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237137, + "fields": { + "id_car_serie": 53350, + "name": "3.6 MT AWD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237138, + "fields": { + "id_car_serie": 53473, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237139, + "fields": { + "id_car_serie": 53473, + "name": "1.0 MT Green Tec (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237140, + "fields": { + "id_car_serie": 53473, + "name": "1.0 MT Green Tec (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237141, + "fields": { + "id_car_serie": 53473, + "name": "1.0 G-TEC MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237142, + "fields": { + "id_car_serie": 53473, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237143, + "fields": { + "id_car_serie": 53473, + "name": "1.0 ASG Green Tec (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237144, + "fields": { + "id_car_serie": 53473, + "name": "1.0 ASG Green Tec (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237145, + "fields": { + "id_car_serie": 53065, + "name": "2.0 AT AWD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237146, + "fields": { + "id_car_serie": 53481, + "name": "2.7 AT 7seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237147, + "fields": { + "id_car_serie": 53481, + "name": "2.7 AT 8seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237148, + "fields": { + "id_car_serie": 53481, + "name": "3.0 TD AT 4WD 8seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237149, + "fields": { + "id_car_serie": 53481, + "name": "3.0 TD AT 4WD 7seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237150, + "fields": { + "id_car_serie": 53481, + "name": "3.0 TD AT 7seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237151, + "fields": { + "id_car_serie": 53481, + "name": "3.0 TD AT 8seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237152, + "fields": { + "id_car_serie": 53455, + "name": "2.2 TDCi MT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237153, + "fields": { + "id_car_serie": 53455, + "name": "2.2 TDCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237154, + "fields": { + "id_car_serie": 53465, + "name": "1.4 AT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237155, + "fields": { + "id_car_serie": 53465, + "name": "1.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237156, + "fields": { + "id_car_serie": 53465, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237157, + "fields": { + "id_car_serie": 53465, + "name": "1.4 LPG MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237158, + "fields": { + "id_car_serie": 53465, + "name": "1.4 MT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237159, + "fields": { + "id_car_serie": 53465, + "name": "1.6 D AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237160, + "fields": { + "id_car_serie": 53465, + "name": "1.6 D MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237161, + "fields": { + "id_car_serie": 53465, + "name": "1.6 D MT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237162, + "fields": { + "id_car_serie": 53465, + "name": "1.6 D MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237163, + "fields": { + "id_car_serie": 53465, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237164, + "fields": { + "id_car_serie": 53484, + "name": "2.9 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237165, + "fields": { + "id_car_serie": 53484, + "name": "2.9 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237166, + "fields": { + "id_car_serie": 53484, + "name": "2.9 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237167, + "fields": { + "id_car_serie": 53200, + "name": "1.2 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237168, + "fields": { + "id_car_serie": 53200, + "name": "1.6 BlueHDi MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237169, + "fields": { + "id_car_serie": 53331, + "name": "2.4 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237170, + "fields": { + "id_car_serie": 53331, + "name": "2.4 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237171, + "fields": { + "id_car_serie": 53331, + "name": "2.9 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237172, + "fields": { + "id_car_serie": 53331, + "name": "2.9 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237173, + "fields": { + "id_car_serie": 53331, + "name": "2.9 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237174, + "fields": { + "id_car_serie": 53493, + "name": "1.6 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237175, + "fields": { + "id_car_serie": 53493, + "name": "1.6 MT AWD (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237176, + "fields": { + "id_car_serie": 53493, + "name": "1.7 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237177, + "fields": { + "id_car_serie": 53493, + "name": "1.7 MT AWD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237178, + "fields": { + "id_car_serie": 53493, + "name": "1.8 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237179, + "fields": { + "id_car_serie": 53493, + "name": "1.8 MT AWD (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237180, + "fields": { + "id_car_serie": 53444, + "name": "1.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237181, + "fields": { + "id_car_serie": 53444, + "name": "1.2 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237182, + "fields": { + "id_car_serie": 53444, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237183, + "fields": { + "id_car_serie": 53444, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237184, + "fields": { + "id_car_serie": 53444, + "name": "1.6 BlueHDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237185, + "fields": { + "id_car_serie": 53444, + "name": "1.6 BlueHDi MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237186, + "fields": { + "id_car_serie": 51505, + "name": "1.4 TSI MT 4X4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237190, + "fields": { + "id_car_serie": 51505, + "name": "2.0 TDI MT 4X4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237192, + "fields": { + "id_car_serie": 51505, + "name": "2.0 TSI DSG 4X4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237195, + "fields": { + "id_car_serie": 53496, + "name": "1.9 TDI MT AWD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237196, + "fields": { + "id_car_serie": 53496, + "name": "1.9 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237197, + "fields": { + "id_car_serie": 53349, + "name": "2.0 AT AWD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237198, + "fields": { + "id_car_serie": 53349, + "name": "3.6 AT AWD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237199, + "fields": { + "id_car_serie": 53349, + "name": "3.6 MT AWD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237200, + "fields": { + "id_car_serie": 53451, + "name": "1.0 EcoBoost MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237201, + "fields": { + "id_car_serie": 53451, + "name": "1.0 EcoBoost MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237202, + "fields": { + "id_car_serie": 53451, + "name": "1.0 EcoBoost MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237203, + "fields": { + "id_car_serie": 53451, + "name": "1.0 EcoBoost Powershift (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237204, + "fields": { + "id_car_serie": 53451, + "name": "1.1 Ti-VCT MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237205, + "fields": { + "id_car_serie": 53451, + "name": "1.1 Ti-VCT MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237206, + "fields": { + "id_car_serie": 53451, + "name": "1.5 TDCi Duratorq MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237207, + "fields": { + "id_car_serie": 53451, + "name": "1.5 TDCi Duratorq MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237208, + "fields": { + "id_car_serie": 53451, + "name": "1.6 EcoBoost MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237209, + "fields": { + "id_car_serie": 53476, + "name": "1.9 TD MT AWD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237210, + "fields": { + "id_car_serie": 53476, + "name": "2.4 MT AWD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237211, + "fields": { + "id_car_serie": 53468, + "name": "1.8 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237212, + "fields": { + "id_car_serie": 53468, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237213, + "fields": { + "id_car_serie": 53468, + "name": "1.8 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237214, + "fields": { + "id_car_serie": 53468, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237215, + "fields": { + "id_car_serie": 53468, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237216, + "fields": { + "id_car_serie": 53468, + "name": "1.9 TiD AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237217, + "fields": { + "id_car_serie": 53468, + "name": "1.9 TiD AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237218, + "fields": { + "id_car_serie": 53468, + "name": "1.9 TiD AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237219, + "fields": { + "id_car_serie": 53468, + "name": "1.9 TiD MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237220, + "fields": { + "id_car_serie": 53468, + "name": "1.9 TiD MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237221, + "fields": { + "id_car_serie": 53468, + "name": "1.9 TiD MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237222, + "fields": { + "id_car_serie": 53468, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237223, + "fields": { + "id_car_serie": 53468, + "name": "2.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237224, + "fields": { + "id_car_serie": 53468, + "name": "2.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237225, + "fields": { + "id_car_serie": 53468, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237226, + "fields": { + "id_car_serie": 53468, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237227, + "fields": { + "id_car_serie": 53468, + "name": "2.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237228, + "fields": { + "id_car_serie": 53468, + "name": "2.8 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237229, + "fields": { + "id_car_serie": 53468, + "name": "2.8 AT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237230, + "fields": { + "id_car_serie": 53468, + "name": "2.8 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237231, + "fields": { + "id_car_serie": 53468, + "name": "2.8 MT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237232, + "fields": { + "id_car_serie": 51526, + "name": "2.0 T5 AT AWD (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237233, + "fields": { + "id_car_serie": 51526, + "name": "2.0 T6 AT AWD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237234, + "fields": { + "id_car_serie": 51526, + "name": "2.0 T5 AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237235, + "fields": { + "id_car_serie": 51526, + "name": "2.0 T5 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237236, + "fields": { + "id_car_serie": 51526, + "name": "2.0 D4 MT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237237, + "fields": { + "id_car_serie": 53474, + "name": "1.0 MPI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237238, + "fields": { + "id_car_serie": 53474, + "name": "1.0 TSI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237239, + "fields": { + "id_car_serie": 53474, + "name": "1.0 TSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237240, + "fields": { + "id_car_serie": 53474, + "name": "1.0 TSI DSG (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237241, + "fields": { + "id_car_serie": 53474, + "name": "1.4 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237242, + "fields": { + "id_car_serie": 53474, + "name": "1.4 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237243, + "fields": { + "id_car_serie": 53474, + "name": "1.4 TDI DSG (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237244, + "fields": { + "id_car_serie": 53466, + "name": "1.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237245, + "fields": { + "id_car_serie": 53466, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237246, + "fields": { + "id_car_serie": 53466, + "name": "1.4 LPG MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237247, + "fields": { + "id_car_serie": 53466, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237248, + "fields": { + "id_car_serie": 53466, + "name": "1.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237249, + "fields": { + "id_car_serie": 53466, + "name": "1.6 CNG MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237250, + "fields": { + "id_car_serie": 53466, + "name": "1.6 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237251, + "fields": { + "id_car_serie": 53466, + "name": "1.6 D MT (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237252, + "fields": { + "id_car_serie": 53466, + "name": "1.6 D MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237253, + "fields": { + "id_car_serie": 53466, + "name": "2.0 D AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237254, + "fields": { + "id_car_serie": 53466, + "name": "2.0 D AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237255, + "fields": { + "id_car_serie": 53466, + "name": "2.0 D MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237256, + "fields": { + "id_car_serie": 53058, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237257, + "fields": { + "id_car_serie": 53058, + "name": "1.6 THP AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237258, + "fields": { + "id_car_serie": 51535, + "name": "2.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237259, + "fields": { + "id_car_serie": 51535, + "name": "2.0 AT (247 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237260, + "fields": { + "id_car_serie": 51535, + "name": "2.0 AT AWD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237261, + "fields": { + "id_car_serie": 51535, + "name": "2.0 AT AWD (247 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237262, + "fields": { + "id_car_serie": 51535, + "name": "2.2 CDRi AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237263, + "fields": { + "id_car_serie": 51535, + "name": "2.2 CDRi AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237264, + "fields": { + "id_car_serie": 53454, + "name": "2.2 TDCi AT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237265, + "fields": { + "id_car_serie": 53454, + "name": "2.2 TDCi MT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237266, + "fields": { + "id_car_serie": 53454, + "name": "2.2 TDCi MT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237267, + "fields": { + "id_car_serie": 53454, + "name": "3.2 TDCi AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237268, + "fields": { + "id_car_serie": 53454, + "name": "3.2 TDCi MT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237269, + "fields": { + "id_car_serie": 53467, + "name": "44kw (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237270, + "fields": { + "id_car_serie": 53443, + "name": "xDrive20d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237271, + "fields": { + "id_car_serie": 53443, + "name": "xDrive30i Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237272, + "fields": { + "id_car_serie": 53443, + "name": "xDrive20i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237273, + "fields": { + "id_car_serie": 53443, + "name": "xDrive25d Steptronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237274, + "fields": { + "id_car_serie": 53443, + "name": "xDrive30i Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237275, + "fields": { + "id_car_serie": 53443, + "name": "M40d Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237276, + "fields": { + "id_car_serie": 53443, + "name": "M40i Steptronic (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237277, + "fields": { + "id_car_serie": 53495, + "name": "2.2 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237278, + "fields": { + "id_car_serie": 53495, + "name": "2.2 TDI MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237279, + "fields": { + "id_car_serie": 53477, + "name": "2.5 Hybrid CVT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237280, + "fields": { + "id_car_serie": 53477, + "name": "2.5 CVT AWD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237281, + "fields": { + "id_car_serie": 53477, + "name": "2.5 CVT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237282, + "fields": { + "id_car_serie": 53477, + "name": "3.5 AT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237283, + "fields": { + "id_car_serie": 53477, + "name": "3.5 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237287, + "fields": { + "id_car_serie": 47463, + "name": "2.0 T4 Drive-E Geartronic AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237288, + "fields": { + "id_car_serie": 47463, + "name": "2.0 T5 Drive-E Geartronic AWD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237296, + "fields": { + "id_car_serie": 53469, + "name": "1.8 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237297, + "fields": { + "id_car_serie": 53469, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237298, + "fields": { + "id_car_serie": 53469, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237299, + "fields": { + "id_car_serie": 53469, + "name": "1.8 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237300, + "fields": { + "id_car_serie": 53469, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237301, + "fields": { + "id_car_serie": 53469, + "name": "1.9 TiD AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237302, + "fields": { + "id_car_serie": 53469, + "name": "1.9 TiD AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237303, + "fields": { + "id_car_serie": 53469, + "name": "1.9 TiD MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237304, + "fields": { + "id_car_serie": 53469, + "name": "1.9 TiD MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237305, + "fields": { + "id_car_serie": 53469, + "name": "2.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237306, + "fields": { + "id_car_serie": 53469, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237307, + "fields": { + "id_car_serie": 53469, + "name": "2.0 AT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237308, + "fields": { + "id_car_serie": 53469, + "name": "2.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237309, + "fields": { + "id_car_serie": 53469, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237310, + "fields": { + "id_car_serie": 53469, + "name": "2.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237311, + "fields": { + "id_car_serie": 53469, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237312, + "fields": { + "id_car_serie": 53469, + "name": "2.0 MT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237313, + "fields": { + "id_car_serie": 53307, + "name": "1.0 T-GDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237314, + "fields": { + "id_car_serie": 53307, + "name": "1.0 T-GDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237315, + "fields": { + "id_car_serie": 53307, + "name": "1.2 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237316, + "fields": { + "id_car_serie": 53307, + "name": "1.4 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237317, + "fields": { + "id_car_serie": 53307, + "name": "1.4 CRDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237318, + "fields": { + "id_car_serie": 53307, + "name": "1.4 CRDi MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237319, + "fields": { + "id_car_serie": 53307, + "name": "1.4 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237320, + "fields": { + "id_car_serie": 53497, + "name": "1.5 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237321, + "fields": { + "id_car_serie": 53497, + "name": "1.5 DCT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237322, + "fields": { + "id_car_serie": 53460, + "name": "1.7 CRDI AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237323, + "fields": { + "id_car_serie": 53460, + "name": "1.7 CRDI MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237324, + "fields": { + "id_car_serie": 53460, + "name": "2.0 T-GDI AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237325, + "fields": { + "id_car_serie": 53460, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237326, + "fields": { + "id_car_serie": 53460, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237327, + "fields": { + "id_car_serie": 53479, + "name": "2.5 TD AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237328, + "fields": { + "id_car_serie": 53479, + "name": "2.5 TD AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237329, + "fields": { + "id_car_serie": 53479, + "name": "2.7 AT 8seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237330, + "fields": { + "id_car_serie": 53479, + "name": "2.7 AT 7seat (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237331, + "fields": { + "id_car_serie": 53479, + "name": "3.0 TD AT 4WD 7seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237332, + "fields": { + "id_car_serie": 53479, + "name": "3.0 TD AT 8seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237333, + "fields": { + "id_car_serie": 53479, + "name": "3.0 TD AT 4WD 8seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237334, + "fields": { + "id_car_serie": 53479, + "name": "3.0 TD AT 7seat (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237335, + "fields": { + "id_car_serie": 53281, + "name": "63 9G-Tronic 4Matic+ (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237336, + "fields": { + "id_car_serie": 53281, + "name": "65 Speedshift Plus 7G-Tronic (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237337, + "fields": { + "id_car_serie": 53278, + "name": "560 9G-Tronic (469 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237338, + "fields": { + "id_car_serie": 53279, + "name": "450 9G-Tronic 4Matic (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237339, + "fields": { + "id_car_serie": 53279, + "name": "560 9G-Tronic 4Matic (469 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237340, + "fields": { + "id_car_serie": 53279, + "name": "560 9G-Tronic (469 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237341, + "fields": { + "id_car_serie": 53280, + "name": "63 9G-Tronic 4Matic+ (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237342, + "fields": { + "id_car_serie": 53280, + "name": "65 Speedshift Plus 7G-Tronic (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237343, + "fields": { + "id_car_serie": 53498, + "name": "1.0 GDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237344, + "fields": { + "id_car_serie": 53498, + "name": "1.2 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237345, + "fields": { + "id_car_serie": 53498, + "name": "1.4 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237346, + "fields": { + "id_car_serie": 53498, + "name": "1.6 CRDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237347, + "fields": { + "id_car_serie": 53494, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237348, + "fields": { + "id_car_serie": 53494, + "name": "1.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237349, + "fields": { + "id_car_serie": 53470, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237350, + "fields": { + "id_car_serie": 53470, + "name": "1.8 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237351, + "fields": { + "id_car_serie": 53470, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237352, + "fields": { + "id_car_serie": 53470, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237353, + "fields": { + "id_car_serie": 53470, + "name": "1.8 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237354, + "fields": { + "id_car_serie": 53470, + "name": "1.9 TiD AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237355, + "fields": { + "id_car_serie": 53470, + "name": "1.9 TiD AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237356, + "fields": { + "id_car_serie": 53470, + "name": "1.9 TiD AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237357, + "fields": { + "id_car_serie": 53470, + "name": "1.9 TiD MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237358, + "fields": { + "id_car_serie": 53470, + "name": "1.9 TiD MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237359, + "fields": { + "id_car_serie": 53470, + "name": "1.9 TiD MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237360, + "fields": { + "id_car_serie": 53470, + "name": "2.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237362, + "fields": { + "id_car_serie": 53470, + "name": "2.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237363, + "fields": { + "id_car_serie": 53470, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237365, + "fields": { + "id_car_serie": 53470, + "name": "2.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237366, + "fields": { + "id_car_serie": 53470, + "name": "2.8 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237367, + "fields": { + "id_car_serie": 53470, + "name": "2.8 AT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237368, + "fields": { + "id_car_serie": 53470, + "name": "2.8 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237369, + "fields": { + "id_car_serie": 53470, + "name": "2.8 MT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237370, + "fields": { + "id_car_serie": 53478, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237371, + "fields": { + "id_car_serie": 53478, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237372, + "fields": { + "id_car_serie": 53478, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237373, + "fields": { + "id_car_serie": 53478, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237374, + "fields": { + "id_car_serie": 53478, + "name": "2.0 TD AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237375, + "fields": { + "id_car_serie": 53478, + "name": "2.0 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237376, + "fields": { + "id_car_serie": 53478, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237377, + "fields": { + "id_car_serie": 53478, + "name": "2.0 TD MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237378, + "fields": { + "id_car_serie": 53478, + "name": "2.5 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237379, + "fields": { + "id_car_serie": 53490, + "name": "G 500 9G-Tronic 4Matic (422 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237380, + "fields": { + "id_car_serie": 53449, + "name": "0.7 AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237381, + "fields": { + "id_car_serie": 53449, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237382, + "fields": { + "id_car_serie": 53449, + "name": "0.7 AT AWD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237383, + "fields": { + "id_car_serie": 53449, + "name": "0.7 AT AWD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237384, + "fields": { + "id_car_serie": 53449, + "name": "0.7 AT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237385, + "fields": { + "id_car_serie": 53449, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237386, + "fields": { + "id_car_serie": 53449, + "name": "0.7 AT AWD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237387, + "fields": { + "id_car_serie": 53449, + "name": "0.7 AT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237388, + "fields": { + "id_car_serie": 53449, + "name": "0.7 AT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237389, + "fields": { + "id_car_serie": 53449, + "name": "0.7 MT AWD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237390, + "fields": { + "id_car_serie": 53449, + "name": "0.7 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237391, + "fields": { + "id_car_serie": 53449, + "name": "0.7 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237392, + "fields": { + "id_car_serie": 53449, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237393, + "fields": { + "id_car_serie": 53449, + "name": "0.7 MT AWD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237394, + "fields": { + "id_car_serie": 53449, + "name": "0.7 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237395, + "fields": { + "id_car_serie": 53449, + "name": "0.7 MT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237396, + "fields": { + "id_car_serie": 53449, + "name": "0.7 MT AWD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237397, + "fields": { + "id_car_serie": 53449, + "name": "0.7 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237398, + "fields": { + "id_car_serie": 53446, + "name": "0.7 AT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237399, + "fields": { + "id_car_serie": 53446, + "name": "0.7 AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237400, + "fields": { + "id_car_serie": 53446, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237401, + "fields": { + "id_car_serie": 53446, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237402, + "fields": { + "id_car_serie": 53446, + "name": "0.7 AT AWD (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237403, + "fields": { + "id_car_serie": 53446, + "name": "0.7 AT AWD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237404, + "fields": { + "id_car_serie": 53446, + "name": "0.7 AT AWD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237405, + "fields": { + "id_car_serie": 53446, + "name": "0.7 AT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237406, + "fields": { + "id_car_serie": 53446, + "name": "0.7 MT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237407, + "fields": { + "id_car_serie": 53446, + "name": "0.7 MT AWD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237408, + "fields": { + "id_car_serie": 53446, + "name": "0.7 MT AWD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237409, + "fields": { + "id_car_serie": 53446, + "name": "0.7 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237410, + "fields": { + "id_car_serie": 53446, + "name": "0.7 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237411, + "fields": { + "id_car_serie": 53446, + "name": "0.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237412, + "fields": { + "id_car_serie": 53446, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237413, + "fields": { + "id_car_serie": 53446, + "name": "0.7 MT AWD (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237414, + "fields": { + "id_car_serie": 53446, + "name": "0.7 CVT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237415, + "fields": { + "id_car_serie": 53446, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237416, + "fields": { + "id_car_serie": 53445, + "name": "0.7 AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237417, + "fields": { + "id_car_serie": 53445, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237418, + "fields": { + "id_car_serie": 53445, + "name": "0.7 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237419, + "fields": { + "id_car_serie": 53445, + "name": "0.7 AT AWD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237420, + "fields": { + "id_car_serie": 53445, + "name": "0.7 AT AWD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237421, + "fields": { + "id_car_serie": 53445, + "name": "0.7 MT AWD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237422, + "fields": { + "id_car_serie": 53445, + "name": "0.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237423, + "fields": { + "id_car_serie": 53445, + "name": "0.7 MT AWD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237424, + "fields": { + "id_car_serie": 53445, + "name": "0.7 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237425, + "fields": { + "id_car_serie": 53445, + "name": "0.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237426, + "fields": { + "id_car_serie": 53445, + "name": "0.7 CVT AWD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237427, + "fields": { + "id_car_serie": 53445, + "name": "0.7 CVT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237428, + "fields": { + "id_car_serie": 53485, + "name": "2.0 D MT 4WD (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237429, + "fields": { + "id_car_serie": 53485, + "name": "2.0 D MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237430, + "fields": { + "id_car_serie": 53485, + "name": "2.3 D MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237431, + "fields": { + "id_car_serie": 53485, + "name": "2.3 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237432, + "fields": { + "id_car_serie": 53464, + "name": "60 kWh (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237433, + "fields": { + "id_car_serie": 53472, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237434, + "fields": { + "id_car_serie": 53472, + "name": "1.0 MT Green Tec (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237435, + "fields": { + "id_car_serie": 53472, + "name": "1.0 MT Green Tec (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237436, + "fields": { + "id_car_serie": 53472, + "name": "1.0 G-TEC MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237437, + "fields": { + "id_car_serie": 53472, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237438, + "fields": { + "id_car_serie": 53472, + "name": "1.0 ASG Green Tec (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237439, + "fields": { + "id_car_serie": 53472, + "name": "1.0 ASG Green Tec (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237440, + "fields": { + "id_car_serie": 53456, + "name": "2.2 TDCi AT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237441, + "fields": { + "id_car_serie": 53456, + "name": "2.2 TDCi MT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237442, + "fields": { + "id_car_serie": 53456, + "name": "2.2 TDCi MT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237443, + "fields": { + "id_car_serie": 53456, + "name": "3.2 TDCi AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237444, + "fields": { + "id_car_serie": 53456, + "name": "3.2 TDCi MT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237445, + "fields": { + "id_car_serie": 53482, + "name": "1.4 TSI AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237446, + "fields": { + "id_car_serie": 53482, + "name": "1.4 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237447, + "fields": { + "id_car_serie": 53471, + "name": "1.9 TiD MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237448, + "fields": { + "id_car_serie": 53471, + "name": "2.0 MT AWD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237449, + "fields": { + "id_car_serie": 53471, + "name": "2.0 MT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237450, + "fields": { + "id_car_serie": 53448, + "name": "0.7 AT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237451, + "fields": { + "id_car_serie": 53448, + "name": "0.7 AT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237452, + "fields": { + "id_car_serie": 53448, + "name": "0.7 AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237453, + "fields": { + "id_car_serie": 53448, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237454, + "fields": { + "id_car_serie": 53448, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237455, + "fields": { + "id_car_serie": 53448, + "name": "0.7 AT AWD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237456, + "fields": { + "id_car_serie": 53448, + "name": "0.7 AT AWD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237457, + "fields": { + "id_car_serie": 53448, + "name": "0.7 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237458, + "fields": { + "id_car_serie": 53448, + "name": "0.7 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237459, + "fields": { + "id_car_serie": 53448, + "name": "0.7 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237460, + "fields": { + "id_car_serie": 53448, + "name": "0.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237461, + "fields": { + "id_car_serie": 53448, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237462, + "fields": { + "id_car_serie": 53448, + "name": "0.7 MT AWD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237463, + "fields": { + "id_car_serie": 53448, + "name": "0.7 MT AWD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237464, + "fields": { + "id_car_serie": 53447, + "name": "0.7 AT AWD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237465, + "fields": { + "id_car_serie": 53447, + "name": "0.7 AT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237466, + "fields": { + "id_car_serie": 53447, + "name": "0.7 AT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237467, + "fields": { + "id_car_serie": 53447, + "name": "0.7 AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237468, + "fields": { + "id_car_serie": 53447, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237469, + "fields": { + "id_car_serie": 53447, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237470, + "fields": { + "id_car_serie": 53447, + "name": "0.7 AT AWD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237471, + "fields": { + "id_car_serie": 53447, + "name": "0.7 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237472, + "fields": { + "id_car_serie": 53447, + "name": "0.7 MT AWD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237473, + "fields": { + "id_car_serie": 53447, + "name": "0.7 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237474, + "fields": { + "id_car_serie": 53447, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237475, + "fields": { + "id_car_serie": 53447, + "name": "0.7 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237476, + "fields": { + "id_car_serie": 53447, + "name": "0.7 MT AWD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237477, + "fields": { + "id_car_serie": 53447, + "name": "0.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237478, + "fields": { + "id_car_serie": 53457, + "name": "1.5 i-VTEC MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237479, + "fields": { + "id_car_serie": 53457, + "name": "1.5 i-VTEC CVT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237480, + "fields": { + "id_car_serie": 53457, + "name": "1.6 i-DTEC MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237481, + "fields": { + "id_car_serie": 53457, + "name": "1.8 i-VTEC MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237482, + "fields": { + "id_car_serie": 53457, + "name": "1.8 i-VTEC CVT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237483, + "fields": { + "id_car_serie": 53457, + "name": "1.8 i-VTEC CVT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237484, + "fields": { + "id_car_serie": 5803, + "name": "1.6i AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237485, + "fields": { + "id_car_serie": 7660, + "name": "2.0 AT AWD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237486, + "fields": { + "id_car_serie": 7660, + "name": "2.0 MT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237487, + "fields": { + "id_car_serie": 7660, + "name": "2.5 AT AWD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237488, + "fields": { + "id_car_serie": 7661, + "name": "2.5 AT AWD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237489, + "fields": { + "id_car_serie": 7661, + "name": "2.5 MT AWD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237490, + "fields": { + "id_car_serie": 8703, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237491, + "fields": { + "id_car_serie": 14991, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237492, + "fields": { + "id_car_serie": 15258, + "name": "1.0 TFSI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237493, + "fields": { + "id_car_serie": 15258, + "name": "1.0 TFSI MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237494, + "fields": { + "id_car_serie": 15258, + "name": "1.0 TFSI S-tronic (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237495, + "fields": { + "id_car_serie": 15259, + "name": "1.0 TFSI MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237496, + "fields": { + "id_car_serie": 15259, + "name": "1.0 TFSI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237497, + "fields": { + "id_car_serie": 15259, + "name": "1.0 TFSI S-Tronic (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237498, + "fields": { + "id_car_serie": 46025, + "name": "RS 4.0 PDK (520 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237499, + "fields": { + "id_car_serie": 47577, + "name": "1.2 TFSI MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237500, + "fields": { + "id_car_serie": 47577, + "name": "1.4 TFSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237501, + "fields": { + "id_car_serie": 47577, + "name": "1.4 TFSI S-tronic (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237502, + "fields": { + "id_car_serie": 47577, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237503, + "fields": { + "id_car_serie": 47577, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237504, + "fields": { + "id_car_serie": 47577, + "name": "1.6 TDI S-tronic (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237505, + "fields": { + "id_car_serie": 47577, + "name": "2.0 TDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237506, + "fields": { + "id_car_serie": 49155, + "name": "2.0 AT AWD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237507, + "fields": { + "id_car_serie": 49155, + "name": "2.0 AT AWD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237508, + "fields": { + "id_car_serie": 49155, + "name": "2.0 AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237509, + "fields": { + "id_car_serie": 49155, + "name": "2.0 MT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237510, + "fields": { + "id_car_serie": 49155, + "name": "2.0 MT AWD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237511, + "fields": { + "id_car_serie": 49155, + "name": "2.5 MT AWD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237512, + "fields": { + "id_car_serie": 49156, + "name": "2.0 AT AWD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237513, + "fields": { + "id_car_serie": 49156, + "name": "2.0 AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237514, + "fields": { + "id_car_serie": 49156, + "name": "2.0 AT AWD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237515, + "fields": { + "id_car_serie": 49156, + "name": "2.0 MT AWD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237516, + "fields": { + "id_car_serie": 49156, + "name": "2.0 MT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237517, + "fields": { + "id_car_serie": 49156, + "name": "2.0 MT AWD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237518, + "fields": { + "id_car_serie": 49156, + "name": "2.5 MT AWD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237519, + "fields": { + "id_car_serie": 49157, + "name": "1.5 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237520, + "fields": { + "id_car_serie": 49157, + "name": "1.5 AT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237521, + "fields": { + "id_car_serie": 49157, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237522, + "fields": { + "id_car_serie": 49157, + "name": "1.5 AT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237523, + "fields": { + "id_car_serie": 49157, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237524, + "fields": { + "id_car_serie": 49157, + "name": "1.5 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237525, + "fields": { + "id_car_serie": 49157, + "name": "1.5 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237526, + "fields": { + "id_car_serie": 49157, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237527, + "fields": { + "id_car_serie": 49157, + "name": "2.0 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237528, + "fields": { + "id_car_serie": 49157, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237529, + "fields": { + "id_car_serie": 49157, + "name": "2.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237530, + "fields": { + "id_car_serie": 49157, + "name": "2.0 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237531, + "fields": { + "id_car_serie": 49157, + "name": "2.0 MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237532, + "fields": { + "id_car_serie": 49158, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237533, + "fields": { + "id_car_serie": 49158, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237534, + "fields": { + "id_car_serie": 49158, + "name": "1.6 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237535, + "fields": { + "id_car_serie": 49158, + "name": "1.6 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237536, + "fields": { + "id_car_serie": 49158, + "name": "1.6 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237537, + "fields": { + "id_car_serie": 49158, + "name": "1.6 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237538, + "fields": { + "id_car_serie": 49158, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237539, + "fields": { + "id_car_serie": 49159, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237540, + "fields": { + "id_car_serie": 49159, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237541, + "fields": { + "id_car_serie": 49159, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237542, + "fields": { + "id_car_serie": 49159, + "name": "1.6 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237543, + "fields": { + "id_car_serie": 49159, + "name": "1.6 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237544, + "fields": { + "id_car_serie": 49159, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237545, + "fields": { + "id_car_serie": 49159, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237546, + "fields": { + "id_car_serie": 49159, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237547, + "fields": { + "id_car_serie": 49159, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237548, + "fields": { + "id_car_serie": 49159, + "name": "1.6 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237549, + "fields": { + "id_car_serie": 49159, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237550, + "fields": { + "id_car_serie": 49159, + "name": "1.8 AT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237551, + "fields": { + "id_car_serie": 49159, + "name": "1.8 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237552, + "fields": { + "id_car_serie": 49159, + "name": "1.8 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237553, + "fields": { + "id_car_serie": 49159, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237554, + "fields": { + "id_car_serie": 49159, + "name": "2.0 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237555, + "fields": { + "id_car_serie": 49159, + "name": "2.0 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237556, + "fields": { + "id_car_serie": 49159, + "name": "2.0 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237557, + "fields": { + "id_car_serie": 50398, + "name": "CLK 200 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237558, + "fields": { + "id_car_serie": 50401, + "name": "CLK 200 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237559, + "fields": { + "id_car_serie": 50402, + "name": "CLK 200 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237560, + "fields": { + "id_car_serie": 50403, + "name": "CLK 200 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237561, + "fields": { + "id_car_serie": 50485, + "name": "E 280 5G-Tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237562, + "fields": { + "id_car_serie": 50485, + "name": "E 280 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237563, + "fields": { + "id_car_serie": 51445, + "name": "2.0 Si4 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237564, + "fields": { + "id_car_serie": 53450, + "name": "3.5 SelectShift 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237565, + "fields": { + "id_car_serie": 53450, + "name": "3.5 Ecoboost SelectShift 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237566, + "fields": { + "id_car_serie": 53508, + "name": "1.5 BlueHDI AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237567, + "fields": { + "id_car_serie": 53508, + "name": "1.5 BlueHDI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237568, + "fields": { + "id_car_serie": 53508, + "name": "1.6 PureTech AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237569, + "fields": { + "id_car_serie": 53508, + "name": "1.6 PureTech GT AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237570, + "fields": { + "id_car_serie": 53508, + "name": "2.0 BlueHDI AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237571, + "fields": { + "id_car_serie": 53508, + "name": "2.0 BlueHDI AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237572, + "fields": { + "id_car_serie": 53396, + "name": "18i sDrive MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237573, + "fields": { + "id_car_serie": 53396, + "name": "18i sDrive Steptronic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237574, + "fields": { + "id_car_serie": 53396, + "name": "20i xDrive Steptronic (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237575, + "fields": { + "id_car_serie": 53396, + "name": "18d sDrive Steptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237576, + "fields": { + "id_car_serie": 53396, + "name": "18d sDrive MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237577, + "fields": { + "id_car_serie": 53396, + "name": "18d xDrive MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237578, + "fields": { + "id_car_serie": 53520, + "name": "C 200 9G-TRONIC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237579, + "fields": { + "id_car_serie": 53520, + "name": "C 200 9G-TRONIC 4MATIC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237580, + "fields": { + "id_car_serie": 53520, + "name": "C 220 d 9G-TRONIC (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237581, + "fields": { + "id_car_serie": 53164, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237582, + "fields": { + "id_car_serie": 53164, + "name": "2.5 AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237583, + "fields": { + "id_car_serie": 53164, + "name": "3.5 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237584, + "fields": { + "id_car_serie": 51507, + "name": "2.0T AT 4Motion (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237585, + "fields": { + "id_car_serie": 53458, + "name": "2.0 AT AWD (274 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237586, + "fields": { + "id_car_serie": 53458, + "name": "2.0 AT (274 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237587, + "fields": { + "id_car_serie": 53458, + "name": "2.4 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237588, + "fields": { + "id_car_serie": 53458, + "name": "2.4 AT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237589, + "fields": { + "id_car_serie": 53458, + "name": "3.2 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237590, + "fields": { + "id_car_serie": 53458, + "name": "3.2 AT AWD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237591, + "fields": { + "id_car_serie": 53516, + "name": "2.5 CVT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237592, + "fields": { + "id_car_serie": 53516, + "name": "3.6 CVT AWD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237593, + "fields": { + "id_car_serie": 53512, + "name": "2.0 MT 4WD (308 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237594, + "fields": { + "id_car_serie": 53512, + "name": "2.0 MT 4WD (329 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237595, + "fields": { + "id_car_serie": 53512, + "name": "2.5 MT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237596, + "fields": { + "id_car_serie": 53418, + "name": "21083 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237597, + "fields": { + "id_car_serie": 51537, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237598, + "fields": { + "id_car_serie": 51537, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237599, + "fields": { + "id_car_serie": 51537, + "name": "1.5 CVT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237600, + "fields": { + "id_car_serie": 53517, + "name": "2.0 D4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237601, + "fields": { + "id_car_serie": 53517, + "name": "2.0 D3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237602, + "fields": { + "id_car_serie": 53517, + "name": "2.0 T6 Hybrid AT AWD (341 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237603, + "fields": { + "id_car_serie": 53517, + "name": "2.0 T8 Hybrid AT AWD (391 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237604, + "fields": { + "id_car_serie": 53517, + "name": "2.0 T6 AT AWD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237605, + "fields": { + "id_car_serie": 53517, + "name": "2.0 D4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237606, + "fields": { + "id_car_serie": 53517, + "name": "2.0 D3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237607, + "fields": { + "id_car_serie": 53521, + "name": "G 63 AMG Speedshift 4Matic (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237608, + "fields": { + "id_car_serie": 53502, + "name": "2.0 e-VGT AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237609, + "fields": { + "id_car_serie": 53502, + "name": "2.0 e-VGT AT AWD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237610, + "fields": { + "id_car_serie": 53502, + "name": "2.0 T-GDi AT AWD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237611, + "fields": { + "id_car_serie": 53502, + "name": "2.0 T-GDi AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237612, + "fields": { + "id_car_serie": 53502, + "name": "2.2 e-VGT AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237613, + "fields": { + "id_car_serie": 53502, + "name": "2.2 e-VGT AT AWD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237614, + "fields": { + "id_car_serie": 53502, + "name": "2.4 GDi AT AWD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237615, + "fields": { + "id_car_serie": 53492, + "name": "2.0 D AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237616, + "fields": { + "id_car_serie": 53492, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237617, + "fields": { + "id_car_serie": 53492, + "name": "2.0 AMT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237619, + "fields": { + "id_car_serie": 53491, + "name": "2.0 D AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237620, + "fields": { + "id_car_serie": 53491, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237621, + "fields": { + "id_car_serie": 53491, + "name": "2.0 AMT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237622, + "fields": { + "id_car_serie": 53501, + "name": "1.2 PureTech AT XL (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237623, + "fields": { + "id_car_serie": 53501, + "name": "1.2 PureTech AT XL (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237624, + "fields": { + "id_car_serie": 53501, + "name": "1.2 PureTech AT M (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237625, + "fields": { + "id_car_serie": 53501, + "name": "1.2 PureTech AT M (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237626, + "fields": { + "id_car_serie": 53501, + "name": "1.2 PureTech MT M (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237627, + "fields": { + "id_car_serie": 53501, + "name": "1.2 PureTech MT XL (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237628, + "fields": { + "id_car_serie": 53501, + "name": "1.5 BlueHDi AT M (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237629, + "fields": { + "id_car_serie": 53501, + "name": "1.5 BlueHDi AT XL (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237630, + "fields": { + "id_car_serie": 53501, + "name": "1.5 BlueHDi MT M (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237631, + "fields": { + "id_car_serie": 53501, + "name": "1.5 BlueHDi MT XL (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237632, + "fields": { + "id_car_serie": 53507, + "name": "1.2 DIG-T MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237633, + "fields": { + "id_car_serie": 53507, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237634, + "fields": { + "id_car_serie": 53507, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237635, + "fields": { + "id_car_serie": 53507, + "name": "1.6 DIG-T MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237636, + "fields": { + "id_car_serie": 53507, + "name": "1.6 DIG-T MCVT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237637, + "fields": { + "id_car_serie": 53507, + "name": "1.6 CVT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237638, + "fields": { + "id_car_serie": 53463, + "name": "2.0 D AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237639, + "fields": { + "id_car_serie": 53463, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237640, + "fields": { + "id_car_serie": 53463, + "name": "2.0 AMT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237641, + "fields": { + "id_car_serie": 53419, + "name": "21093 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237642, + "fields": { + "id_car_serie": 53487, + "name": "A 200 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237643, + "fields": { + "id_car_serie": 53487, + "name": "A 200 7G-DCT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237644, + "fields": { + "id_car_serie": 53487, + "name": "A 180 d 7G-DCT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237645, + "fields": { + "id_car_serie": 53487, + "name": "A 250 7G-DCT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237646, + "fields": { + "id_car_serie": 786, + "name": "1.4 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237647, + "fields": { + "id_car_serie": 786, + "name": "1.4 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237648, + "fields": { + "id_car_serie": 9643, + "name": "1.4 D-4D MMT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237649, + "fields": { + "id_car_serie": 9642, + "name": "1.4 D-4D MMT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237650, + "fields": { + "id_car_serie": 2264, + "name": "1.5 AT AWD (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237651, + "fields": { + "id_car_serie": 3904, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237652, + "fields": { + "id_car_serie": 3904, + "name": "1.6i AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237653, + "fields": { + "id_car_serie": 3904, + "name": "1.6i MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237654, + "fields": { + "id_car_serie": 3904, + "name": "2.0i MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237655, + "fields": { + "id_car_serie": 3905, + "name": "1.2 5MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237656, + "fields": { + "id_car_serie": 3905, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237657, + "fields": { + "id_car_serie": 3905, + "name": "1.3 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237658, + "fields": { + "id_car_serie": 3905, + "name": "1.3 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237659, + "fields": { + "id_car_serie": 3905, + "name": "1.3 5MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237660, + "fields": { + "id_car_serie": 3905, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237661, + "fields": { + "id_car_serie": 3905, + "name": "1.3 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237662, + "fields": { + "id_car_serie": 3905, + "name": "1.6i AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237663, + "fields": { + "id_car_serie": 3905, + "name": "1.6i GT MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237664, + "fields": { + "id_car_serie": 3905, + "name": "1.6i 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237665, + "fields": { + "id_car_serie": 3905, + "name": "1.6i MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237666, + "fields": { + "id_car_serie": 3905, + "name": "1.6i GT 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237667, + "fields": { + "id_car_serie": 3905, + "name": "1.6i 5MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237668, + "fields": { + "id_car_serie": 3905, + "name": "1.6i MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237669, + "fields": { + "id_car_serie": 3905, + "name": "1.8i AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237670, + "fields": { + "id_car_serie": 3905, + "name": "1.8i MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237671, + "fields": { + "id_car_serie": 3905, + "name": "1.8i 5MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237672, + "fields": { + "id_car_serie": 3906, + "name": "1.2 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237673, + "fields": { + "id_car_serie": 3906, + "name": "1.2 5MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237674, + "fields": { + "id_car_serie": 3906, + "name": "1.3 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237675, + "fields": { + "id_car_serie": 3906, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237676, + "fields": { + "id_car_serie": 3906, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237677, + "fields": { + "id_car_serie": 3906, + "name": "1.3 5MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237678, + "fields": { + "id_car_serie": 3906, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237679, + "fields": { + "id_car_serie": 3906, + "name": "1.3 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237680, + "fields": { + "id_car_serie": 3906, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237681, + "fields": { + "id_car_serie": 3906, + "name": "1.6 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237682, + "fields": { + "id_car_serie": 3906, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237683, + "fields": { + "id_car_serie": 3906, + "name": "1.6i MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237684, + "fields": { + "id_car_serie": 3906, + "name": "1.8i AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237685, + "fields": { + "id_car_serie": 3906, + "name": "1.8i MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237686, + "fields": { + "id_car_serie": 3906, + "name": "1.8i 5MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237687, + "fields": { + "id_car_serie": 3906, + "name": "2.0i 16V 5MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237688, + "fields": { + "id_car_serie": 3906, + "name": "2.0i 5MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237689, + "fields": { + "id_car_serie": 3906, + "name": "2.0i 16V 5MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237690, + "fields": { + "id_car_serie": 3907, + "name": "1.2 5MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237691, + "fields": { + "id_car_serie": 3907, + "name": "1.3 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237692, + "fields": { + "id_car_serie": 3907, + "name": "1.3 5MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237693, + "fields": { + "id_car_serie": 3907, + "name": "1.3 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237694, + "fields": { + "id_car_serie": 3907, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237695, + "fields": { + "id_car_serie": 3907, + "name": "1.3 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237696, + "fields": { + "id_car_serie": 3907, + "name": "1.6 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237697, + "fields": { + "id_car_serie": 3907, + "name": "1.6 5MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237698, + "fields": { + "id_car_serie": 3907, + "name": "1.6i MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237699, + "fields": { + "id_car_serie": 3907, + "name": "1.8i AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237700, + "fields": { + "id_car_serie": 3907, + "name": "1.8i 5MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237701, + "fields": { + "id_car_serie": 3907, + "name": "1.8i MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237702, + "fields": { + "id_car_serie": 3907, + "name": "2.0i 5MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237703, + "fields": { + "id_car_serie": 3907, + "name": "2.0i 16V 5MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237704, + "fields": { + "id_car_serie": 3907, + "name": "2.0i 16V 5MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237705, + "fields": { + "id_car_serie": 3908, + "name": "1.2 5MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237706, + "fields": { + "id_car_serie": 3908, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237707, + "fields": { + "id_car_serie": 3908, + "name": "1.3 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237708, + "fields": { + "id_car_serie": 3908, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237709, + "fields": { + "id_car_serie": 3908, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237710, + "fields": { + "id_car_serie": 3908, + "name": "1.4 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237711, + "fields": { + "id_car_serie": 3908, + "name": "1.5 Turbo D 5MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237712, + "fields": { + "id_car_serie": 3908, + "name": "1.7 D 5MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237713, + "fields": { + "id_car_serie": 3908, + "name": "1.8 5MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237714, + "fields": { + "id_car_serie": 6299, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237715, + "fields": { + "id_car_serie": 6299, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237716, + "fields": { + "id_car_serie": 8965, + "name": "1.2 MT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237717, + "fields": { + "id_car_serie": 8965, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237718, + "fields": { + "id_car_serie": 8965, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237719, + "fields": { + "id_car_serie": 8965, + "name": "1.3 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237720, + "fields": { + "id_car_serie": 8965, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237721, + "fields": { + "id_car_serie": 8965, + "name": "1.3 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237722, + "fields": { + "id_car_serie": 8965, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237723, + "fields": { + "id_car_serie": 8965, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237724, + "fields": { + "id_car_serie": 8965, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237725, + "fields": { + "id_car_serie": 8965, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237726, + "fields": { + "id_car_serie": 8965, + "name": "1.6 D 5MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237727, + "fields": { + "id_car_serie": 8965, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237728, + "fields": { + "id_car_serie": 8965, + "name": "1.6 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237729, + "fields": { + "id_car_serie": 8964, + "name": "1.0 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237730, + "fields": { + "id_car_serie": 8960, + "name": "1.2 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237731, + "fields": { + "id_car_serie": 8960, + "name": "1.2 MT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237732, + "fields": { + "id_car_serie": 8960, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237733, + "fields": { + "id_car_serie": 8960, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237734, + "fields": { + "id_car_serie": 8960, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237735, + "fields": { + "id_car_serie": 8960, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237736, + "fields": { + "id_car_serie": 8960, + "name": "1.3 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237737, + "fields": { + "id_car_serie": 8960, + "name": "1.3 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237738, + "fields": { + "id_car_serie": 8960, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237739, + "fields": { + "id_car_serie": 8960, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237740, + "fields": { + "id_car_serie": 8960, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237741, + "fields": { + "id_car_serie": 8960, + "name": "1.6 D AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237742, + "fields": { + "id_car_serie": 8960, + "name": "1.6 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237743, + "fields": { + "id_car_serie": 8960, + "name": "1.6 D 5MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237744, + "fields": { + "id_car_serie": 8960, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237745, + "fields": { + "id_car_serie": 8960, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237746, + "fields": { + "id_car_serie": 8958, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237747, + "fields": { + "id_car_serie": 8958, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237748, + "fields": { + "id_car_serie": 8958, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237749, + "fields": { + "id_car_serie": 8958, + "name": "1.2 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237750, + "fields": { + "id_car_serie": 8958, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237751, + "fields": { + "id_car_serie": 8958, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237752, + "fields": { + "id_car_serie": 8958, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237753, + "fields": { + "id_car_serie": 8958, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237754, + "fields": { + "id_car_serie": 8958, + "name": "1.3 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237755, + "fields": { + "id_car_serie": 8958, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237756, + "fields": { + "id_car_serie": 8958, + "name": "1.6 D AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237757, + "fields": { + "id_car_serie": 8958, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237758, + "fields": { + "id_car_serie": 8958, + "name": "1.6 D 5MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237759, + "fields": { + "id_car_serie": 8958, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237760, + "fields": { + "id_car_serie": 7651, + "name": "1.6i MT AWD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237761, + "fields": { + "id_car_serie": 7651, + "name": "1.6i Lineartronic (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237762, + "fields": { + "id_car_serie": 7651, + "name": "2.0i Lineartronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237763, + "fields": { + "id_car_serie": 7656, + "name": "2.0 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237764, + "fields": { + "id_car_serie": 7656, + "name": "2.5 MT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237765, + "fields": { + "id_car_serie": 8772, + "name": "3.0 D AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237766, + "fields": { + "id_car_serie": 8772, + "name": "S 3.0 AT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237767, + "fields": { + "id_car_serie": 8772, + "name": "S 3.0 AT Q4 (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237768, + "fields": { + "id_car_serie": 8772, + "name": "3.0 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237769, + "fields": { + "id_car_serie": 8961, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237770, + "fields": { + "id_car_serie": 8961, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237771, + "fields": { + "id_car_serie": 8961, + "name": "1.2 MT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237772, + "fields": { + "id_car_serie": 8961, + "name": "1.2 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237773, + "fields": { + "id_car_serie": 8961, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237774, + "fields": { + "id_car_serie": 8961, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237775, + "fields": { + "id_car_serie": 8961, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237776, + "fields": { + "id_car_serie": 8961, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237777, + "fields": { + "id_car_serie": 8961, + "name": "1.3 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237778, + "fields": { + "id_car_serie": 8961, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237779, + "fields": { + "id_car_serie": 8961, + "name": "1.3 MTA (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237780, + "fields": { + "id_car_serie": 8961, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237781, + "fields": { + "id_car_serie": 8961, + "name": "1.6 D AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237782, + "fields": { + "id_car_serie": 8961, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237783, + "fields": { + "id_car_serie": 8961, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237784, + "fields": { + "id_car_serie": 8959, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237785, + "fields": { + "id_car_serie": 8959, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237786, + "fields": { + "id_car_serie": 8959, + "name": "1.2 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237787, + "fields": { + "id_car_serie": 8959, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237788, + "fields": { + "id_car_serie": 8959, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237789, + "fields": { + "id_car_serie": 8959, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237790, + "fields": { + "id_car_serie": 8959, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237791, + "fields": { + "id_car_serie": 8959, + "name": "1.3 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237792, + "fields": { + "id_car_serie": 8959, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237793, + "fields": { + "id_car_serie": 8959, + "name": "1.6 D AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237794, + "fields": { + "id_car_serie": 8959, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237795, + "fields": { + "id_car_serie": 8959, + "name": "1.6 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237796, + "fields": { + "id_car_serie": 8959, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237797, + "fields": { + "id_car_serie": 14828, + "name": "1.0 TSI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237798, + "fields": { + "id_car_serie": 14828, + "name": "1.0 TSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237799, + "fields": { + "id_car_serie": 14828, + "name": "1.0 TSI DSG (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237800, + "fields": { + "id_car_serie": 14830, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237801, + "fields": { + "id_car_serie": 15063, + "name": "1.6i AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237802, + "fields": { + "id_car_serie": 15063, + "name": "1.6i MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237803, + "fields": { + "id_car_serie": 15063, + "name": "2.0i MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237804, + "fields": { + "id_car_serie": 15064, + "name": "1.3 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237805, + "fields": { + "id_car_serie": 15064, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237806, + "fields": { + "id_car_serie": 15064, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237807, + "fields": { + "id_car_serie": 15064, + "name": "1.3 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237808, + "fields": { + "id_car_serie": 15064, + "name": "1.4 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237809, + "fields": { + "id_car_serie": 15064, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237810, + "fields": { + "id_car_serie": 15064, + "name": "1.6 GT MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237811, + "fields": { + "id_car_serie": 15064, + "name": "1.6 GT MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237812, + "fields": { + "id_car_serie": 15064, + "name": "1.8 GT MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237813, + "fields": { + "id_car_serie": 15064, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237814, + "fields": { + "id_car_serie": 15065, + "name": "1.2 5MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237815, + "fields": { + "id_car_serie": 15065, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237816, + "fields": { + "id_car_serie": 15065, + "name": "1.3 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237817, + "fields": { + "id_car_serie": 15065, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237818, + "fields": { + "id_car_serie": 15065, + "name": "1.3i 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237819, + "fields": { + "id_car_serie": 15065, + "name": "1.3i MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237820, + "fields": { + "id_car_serie": 15065, + "name": "1.4i 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237821, + "fields": { + "id_car_serie": 15065, + "name": "1.4i MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237822, + "fields": { + "id_car_serie": 15065, + "name": "1.6i AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237823, + "fields": { + "id_car_serie": 15065, + "name": "1.6i 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237824, + "fields": { + "id_car_serie": 15065, + "name": "1.8i 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237825, + "fields": { + "id_car_serie": 15065, + "name": "1.8i 5MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237826, + "fields": { + "id_car_serie": 15065, + "name": "2.0i 16V GSi 5MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237827, + "fields": { + "id_car_serie": 15065, + "name": "2.0i 16V GSi 5MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237828, + "fields": { + "id_car_serie": 15065, + "name": "2.0i GSi 5MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237829, + "fields": { + "id_car_serie": 15065, + "name": "2.0i GSi 5MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237830, + "fields": { + "id_car_serie": 15066, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237831, + "fields": { + "id_car_serie": 15066, + "name": "1.2 5MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237832, + "fields": { + "id_car_serie": 15066, + "name": "1.3i 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237833, + "fields": { + "id_car_serie": 15066, + "name": "1.3i MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237834, + "fields": { + "id_car_serie": 15066, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237835, + "fields": { + "id_car_serie": 15066, + "name": "1.4i 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237836, + "fields": { + "id_car_serie": 15066, + "name": "1.4i MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237837, + "fields": { + "id_car_serie": 15066, + "name": "1.5 Turbo D 5MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237838, + "fields": { + "id_car_serie": 15066, + "name": "1.6i AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237839, + "fields": { + "id_car_serie": 15066, + "name": "1.6i 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237840, + "fields": { + "id_car_serie": 15066, + "name": "1.8i 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237841, + "fields": { + "id_car_serie": 15066, + "name": "1.8i 5MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237842, + "fields": { + "id_car_serie": 15066, + "name": "2.0i GSi 5MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237843, + "fields": { + "id_car_serie": 15066, + "name": "2.0i GSi 5MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237844, + "fields": { + "id_car_serie": 15066, + "name": "2.0i 16V GSi 5MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237845, + "fields": { + "id_car_serie": 15066, + "name": "2.0i 16V GSi 5MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237846, + "fields": { + "id_car_serie": 15417, + "name": "1.3 MMT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237847, + "fields": { + "id_car_serie": 15417, + "name": "1.4 D-4D MMT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237848, + "fields": { + "id_car_serie": 15417, + "name": "1.4 D-4D 6MMT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237849, + "fields": { + "id_car_serie": 15418, + "name": "1.3 6MMT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237850, + "fields": { + "id_car_serie": 15418, + "name": "1.4 D-4D MMT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237851, + "fields": { + "id_car_serie": 15418, + "name": "1.4 D-4D 6MMT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237852, + "fields": { + "id_car_serie": 45852, + "name": "1100 S AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237853, + "fields": { + "id_car_serie": 45852, + "name": "1100 S MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237854, + "fields": { + "id_car_serie": 45852, + "name": "1100 SR MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237855, + "fields": { + "id_car_serie": 45852, + "name": "1100 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237856, + "fields": { + "id_car_serie": 45852, + "name": "1100 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237857, + "fields": { + "id_car_serie": 45852, + "name": "1200 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237858, + "fields": { + "id_car_serie": 45852, + "name": "1200 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237859, + "fields": { + "id_car_serie": 45852, + "name": "1700 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237860, + "fields": { + "id_car_serie": 45852, + "name": "1700 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237861, + "fields": { + "id_car_serie": 45853, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237862, + "fields": { + "id_car_serie": 45853, + "name": "1.2 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237863, + "fields": { + "id_car_serie": 45853, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237864, + "fields": { + "id_car_serie": 45853, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237865, + "fields": { + "id_car_serie": 45853, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237866, + "fields": { + "id_car_serie": 45854, + "name": "1100 S AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237867, + "fields": { + "id_car_serie": 45854, + "name": "1100 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237868, + "fields": { + "id_car_serie": 45854, + "name": "1100 S MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237869, + "fields": { + "id_car_serie": 45854, + "name": "1100 SR MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237870, + "fields": { + "id_car_serie": 45854, + "name": "1700 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237871, + "fields": { + "id_car_serie": 45854, + "name": "1700 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237872, + "fields": { + "id_car_serie": 45855, + "name": "1100 S AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237873, + "fields": { + "id_car_serie": 45855, + "name": "1100 S MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237874, + "fields": { + "id_car_serie": 45855, + "name": "1100 SR MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237875, + "fields": { + "id_car_serie": 45855, + "name": "1100 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237876, + "fields": { + "id_car_serie": 45855, + "name": "1100 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237877, + "fields": { + "id_car_serie": 45855, + "name": "1200 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237878, + "fields": { + "id_car_serie": 45855, + "name": "1200 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237879, + "fields": { + "id_car_serie": 45855, + "name": "1700 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237880, + "fields": { + "id_car_serie": 45855, + "name": "1700 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237881, + "fields": { + "id_car_serie": 45856, + "name": "1100 S AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237882, + "fields": { + "id_car_serie": 45856, + "name": "1100 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237883, + "fields": { + "id_car_serie": 45856, + "name": "1100 S MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237884, + "fields": { + "id_car_serie": 45856, + "name": "1100 SR MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237885, + "fields": { + "id_car_serie": 45856, + "name": "1100 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237886, + "fields": { + "id_car_serie": 45856, + "name": "1200 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237887, + "fields": { + "id_car_serie": 45856, + "name": "1200 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237888, + "fields": { + "id_car_serie": 45856, + "name": "1700 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237889, + "fields": { + "id_car_serie": 45856, + "name": "1700 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237890, + "fields": { + "id_car_serie": 45857, + "name": "1000 S MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237891, + "fields": { + "id_car_serie": 45857, + "name": "1000 Sport MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237892, + "fields": { + "id_car_serie": 45858, + "name": "1.2 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237893, + "fields": { + "id_car_serie": 45858, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237894, + "fields": { + "id_car_serie": 45858, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237895, + "fields": { + "id_car_serie": 45858, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237896, + "fields": { + "id_car_serie": 45858, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237897, + "fields": { + "id_car_serie": 45859, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237898, + "fields": { + "id_car_serie": 45859, + "name": "1.2 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237899, + "fields": { + "id_car_serie": 45859, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237900, + "fields": { + "id_car_serie": 45859, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237901, + "fields": { + "id_car_serie": 45859, + "name": "1.2 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237902, + "fields": { + "id_car_serie": 45860, + "name": "1000 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237903, + "fields": { + "id_car_serie": 45860, + "name": "1000 S MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237904, + "fields": { + "id_car_serie": 46061, + "name": "4.0 D AT AWD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237905, + "fields": { + "id_car_serie": 46061, + "name": "4.0 AT AWD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237906, + "fields": { + "id_car_serie": 47036, + "name": "3.9 Pista AMT (720 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237907, + "fields": { + "id_car_serie": 48137, + "name": "2.3 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237908, + "fields": { + "id_car_serie": 48265, + "name": "3.5 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237909, + "fields": { + "id_car_serie": 48856, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237910, + "fields": { + "id_car_serie": 48856, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237911, + "fields": { + "id_car_serie": 48856, + "name": "1.2 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237912, + "fields": { + "id_car_serie": 48856, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237913, + "fields": { + "id_car_serie": 48856, + "name": "1.2 MT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237914, + "fields": { + "id_car_serie": 48856, + "name": "1.2 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237915, + "fields": { + "id_car_serie": 48856, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237916, + "fields": { + "id_car_serie": 48856, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237917, + "fields": { + "id_car_serie": 48856, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237918, + "fields": { + "id_car_serie": 48856, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237919, + "fields": { + "id_car_serie": 48856, + "name": "1.3 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237920, + "fields": { + "id_car_serie": 48856, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237921, + "fields": { + "id_car_serie": 48856, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237922, + "fields": { + "id_car_serie": 48856, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237923, + "fields": { + "id_car_serie": 48856, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237924, + "fields": { + "id_car_serie": 48856, + "name": "1.6 D AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237925, + "fields": { + "id_car_serie": 48856, + "name": "1.6 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237926, + "fields": { + "id_car_serie": 48856, + "name": "1.6 D 5MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237927, + "fields": { + "id_car_serie": 48856, + "name": "1.6 D MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237928, + "fields": { + "id_car_serie": 48856, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237929, + "fields": { + "id_car_serie": 48860, + "name": "1.2 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237930, + "fields": { + "id_car_serie": 48860, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237931, + "fields": { + "id_car_serie": 48860, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237932, + "fields": { + "id_car_serie": 48860, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237933, + "fields": { + "id_car_serie": 48862, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237934, + "fields": { + "id_car_serie": 48862, + "name": "1.0 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237935, + "fields": { + "id_car_serie": 48862, + "name": "1.2 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237936, + "fields": { + "id_car_serie": 48862, + "name": "1.2 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237937, + "fields": { + "id_car_serie": 48862, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237938, + "fields": { + "id_car_serie": 48862, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237939, + "fields": { + "id_car_serie": 48862, + "name": "1.9 GT/E MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237940, + "fields": { + "id_car_serie": 48862, + "name": "1.9 GT/E 5MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237941, + "fields": { + "id_car_serie": 48863, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237942, + "fields": { + "id_car_serie": 48863, + "name": "1.2 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237943, + "fields": { + "id_car_serie": 48863, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237944, + "fields": { + "id_car_serie": 48863, + "name": "1.2 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237945, + "fields": { + "id_car_serie": 48865, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237946, + "fields": { + "id_car_serie": 48865, + "name": "1.2 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237947, + "fields": { + "id_car_serie": 48865, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237948, + "fields": { + "id_car_serie": 48865, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237949, + "fields": { + "id_car_serie": 48865, + "name": "1.2 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237950, + "fields": { + "id_car_serie": 48866, + "name": "1.2 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237951, + "fields": { + "id_car_serie": 48866, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237952, + "fields": { + "id_car_serie": 48867, + "name": "1000 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237953, + "fields": { + "id_car_serie": 48867, + "name": "1000 S MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237954, + "fields": { + "id_car_serie": 48869, + "name": "1100 S AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237955, + "fields": { + "id_car_serie": 48869, + "name": "1100 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237956, + "fields": { + "id_car_serie": 48869, + "name": "1100 S MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237957, + "fields": { + "id_car_serie": 48869, + "name": "1100 SR MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237958, + "fields": { + "id_car_serie": 48869, + "name": "1700 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237959, + "fields": { + "id_car_serie": 48869, + "name": "1700 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237960, + "fields": { + "id_car_serie": 48870, + "name": "1100 S AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237961, + "fields": { + "id_car_serie": 48870, + "name": "1100 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237962, + "fields": { + "id_car_serie": 48870, + "name": "1100 S MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237963, + "fields": { + "id_car_serie": 48870, + "name": "1100 SR MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237964, + "fields": { + "id_car_serie": 48870, + "name": "1100 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237965, + "fields": { + "id_car_serie": 48870, + "name": "1200 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237966, + "fields": { + "id_car_serie": 48870, + "name": "1200 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237967, + "fields": { + "id_car_serie": 48870, + "name": "1700 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237968, + "fields": { + "id_car_serie": 48870, + "name": "1700 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237969, + "fields": { + "id_car_serie": 49117, + "name": "1.4 TDi MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237970, + "fields": { + "id_car_serie": 49119, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237971, + "fields": { + "id_car_serie": 49150, + "name": "2.5 MT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237972, + "fields": { + "id_car_serie": 49152, + "name": "2.5 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237973, + "fields": { + "id_car_serie": 49152, + "name": "2.5 MT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237974, + "fields": { + "id_car_serie": 49152, + "name": "2.5 MT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237975, + "fields": { + "id_car_serie": 49154, + "name": "2.5 MT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237976, + "fields": { + "id_car_serie": 53499, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237977, + "fields": { + "id_car_serie": 53499, + "name": "2.0 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237978, + "fields": { + "id_car_serie": 53515, + "name": "2.0 Turbo MT AWD (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237979, + "fields": { + "id_car_serie": 53515, + "name": "2.0 Lineartronic 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237980, + "fields": { + "id_car_serie": 53515, + "name": "2.0 Turbo Lineartronic AWD (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237981, + "fields": { + "id_car_serie": 53337, + "name": "2.0 T AT AWD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237982, + "fields": { + "id_car_serie": 53337, + "name": "2.0 T AT AWD (247 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237983, + "fields": { + "id_car_serie": 53514, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237984, + "fields": { + "id_car_serie": 53514, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237985, + "fields": { + "id_car_serie": 53514, + "name": "1.6 Lineartronic 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237986, + "fields": { + "id_car_serie": 53514, + "name": "1.6 Lineartronic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237987, + "fields": { + "id_car_serie": 53514, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237988, + "fields": { + "id_car_serie": 53514, + "name": "2.0 Lineartronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237989, + "fields": { + "id_car_serie": 53514, + "name": "2.0 Lineartronic 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237990, + "fields": { + "id_car_serie": 53503, + "name": "1.0 T-GDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237991, + "fields": { + "id_car_serie": 53503, + "name": "1.4 MPI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237992, + "fields": { + "id_car_serie": 53503, + "name": "1.4 T-GDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237993, + "fields": { + "id_car_serie": 53503, + "name": "1.4 T-GDI DCT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237994, + "fields": { + "id_car_serie": 53503, + "name": "1.6 MPI AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237995, + "fields": { + "id_car_serie": 53503, + "name": "1.6 MPI MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237996, + "fields": { + "id_car_serie": 53503, + "name": "1.6 CRDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237997, + "fields": { + "id_car_serie": 53503, + "name": "1.6 CRDi DCT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237998, + "fields": { + "id_car_serie": 53474, + "name": "1.2 TSI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 237999, + "fields": { + "id_car_serie": 53474, + "name": "1.2 TSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238000, + "fields": { + "id_car_serie": 53474, + "name": "1.2 TSI DSG (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238001, + "fields": { + "id_car_serie": 53334, + "name": "2.0 D3 Drive-E AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238002, + "fields": { + "id_car_serie": 53334, + "name": "2.0 D3 Drive-E AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238003, + "fields": { + "id_car_serie": 53334, + "name": "2.0 T4 Drive-E AT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238004, + "fields": { + "id_car_serie": 53500, + "name": "50 TDI tiptronic quattro (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238005, + "fields": { + "id_car_serie": 53522, + "name": "EV400 (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238006, + "fields": { + "id_car_serie": 53510, + "name": "2.2 AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238007, + "fields": { + "id_car_serie": 53510, + "name": "2.2 AT AWD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238008, + "fields": { + "id_car_serie": 53510, + "name": "2.2 MT AWD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238009, + "fields": { + "id_car_serie": 53510, + "name": "2.2 MT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238010, + "fields": { + "id_car_serie": 53428, + "name": "350 d AT 4Matic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238011, + "fields": { + "id_car_serie": 46153, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238012, + "fields": { + "id_car_serie": 46153, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238013, + "fields": { + "id_car_serie": 46153, + "name": "1.6 Lineartronic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238014, + "fields": { + "id_car_serie": 46153, + "name": "1.6 Lineartronic 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238015, + "fields": { + "id_car_serie": 46153, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238016, + "fields": { + "id_car_serie": 46153, + "name": "2.0 Lineartronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238017, + "fields": { + "id_car_serie": 46153, + "name": "2.0 Lineartronic 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238018, + "fields": { + "id_car_serie": 53509, + "name": "1.5 dCI MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238019, + "fields": { + "id_car_serie": 53509, + "name": "1.5 dCI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238020, + "fields": { + "id_car_serie": 53509, + "name": "1.5 dCI EDC (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238021, + "fields": { + "id_car_serie": 53509, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238022, + "fields": { + "id_car_serie": 53509, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238023, + "fields": { + "id_car_serie": 53354, + "name": "300 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238024, + "fields": { + "id_car_serie": 53504, + "name": "1.0 T-GDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238025, + "fields": { + "id_car_serie": 53504, + "name": "1.4 MPI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238026, + "fields": { + "id_car_serie": 53504, + "name": "1.4 T-GDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238027, + "fields": { + "id_car_serie": 53504, + "name": "1.4 T-GDI AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238028, + "fields": { + "id_car_serie": 53504, + "name": "1.6 MPI AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238029, + "fields": { + "id_car_serie": 53504, + "name": "1.6 MPI MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238030, + "fields": { + "id_car_serie": 53504, + "name": "1.6 CRDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238031, + "fields": { + "id_car_serie": 53504, + "name": "1.6 CRDi AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238032, + "fields": { + "id_car_serie": 53528, + "name": "1.0 EcoBoost AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238033, + "fields": { + "id_car_serie": 53528, + "name": "1.0 EcoBoost MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238034, + "fields": { + "id_car_serie": 53528, + "name": "1.0 EcoBoost MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238035, + "fields": { + "id_car_serie": 53528, + "name": "1.0 EcoBoost MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238036, + "fields": { + "id_car_serie": 53528, + "name": "1.5 EcoBoost AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238037, + "fields": { + "id_car_serie": 53528, + "name": "1.5 EcoBlue AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238038, + "fields": { + "id_car_serie": 53528, + "name": "1.5 EcoBoost MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238039, + "fields": { + "id_car_serie": 53528, + "name": "1.5 EcoBlue MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238040, + "fields": { + "id_car_serie": 53528, + "name": "1.5 EcoBlue MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238041, + "fields": { + "id_car_serie": 53528, + "name": "1.5 EcoBoost MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238042, + "fields": { + "id_car_serie": 53528, + "name": "2.0 EcoBlue AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238043, + "fields": { + "id_car_serie": 53528, + "name": "2.0 EcoBlue MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238044, + "fields": { + "id_car_serie": 53529, + "name": "1.0 EcoBoost AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238045, + "fields": { + "id_car_serie": 53529, + "name": "1.0 EcoBoost MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238046, + "fields": { + "id_car_serie": 53529, + "name": "1.0 EcoBoost MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238047, + "fields": { + "id_car_serie": 53529, + "name": "1.0 EcoBoost MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238048, + "fields": { + "id_car_serie": 53529, + "name": "1.5 EcoBlue AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238049, + "fields": { + "id_car_serie": 53529, + "name": "1.5 EcoBoost AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238050, + "fields": { + "id_car_serie": 53529, + "name": "1.5 EcoBoost MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238051, + "fields": { + "id_car_serie": 53529, + "name": "1.5 EcoBoost MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238052, + "fields": { + "id_car_serie": 53529, + "name": "1.5 EcoBlue MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238053, + "fields": { + "id_car_serie": 53529, + "name": "1.5 EcoBlue MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238054, + "fields": { + "id_car_serie": 53529, + "name": "2.0 EcoBlue AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238055, + "fields": { + "id_car_serie": 53529, + "name": "2.0 EcoBlue MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238056, + "fields": { + "id_car_serie": 53531, + "name": "2.4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238057, + "fields": { + "id_car_serie": 53531, + "name": "2.4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238058, + "fields": { + "id_car_serie": 53531, + "name": "3.5 AT (271 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238059, + "fields": { + "id_car_serie": 53531, + "name": "3.5 MT (271 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238060, + "fields": { + "id_car_serie": 53532, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238061, + "fields": { + "id_car_serie": 53532, + "name": "2.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238062, + "fields": { + "id_car_serie": 53532, + "name": "2.4 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238063, + "fields": { + "id_car_serie": 53532, + "name": "2.4 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238064, + "fields": { + "id_car_serie": 53532, + "name": "3.5 AT (271 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238067, + "fields": { + "id_car_serie": 14941, + "name": "2.2 i-DTEC AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238068, + "fields": { + "id_car_serie": 14941, + "name": "2.2 i-DTEC MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238069, + "fields": { + "id_car_serie": 14941, + "name": "Type S 2.4 AT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238070, + "fields": { + "id_car_serie": 14941, + "name": "Type S 2.4 MT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238071, + "fields": { + "id_car_serie": 53534, + "name": "2.4 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238072, + "fields": { + "id_car_serie": 53534, + "name": "2.4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238073, + "fields": { + "id_car_serie": 53534, + "name": "2.4 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238074, + "fields": { + "id_car_serie": 53534, + "name": "2.4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238075, + "fields": { + "id_car_serie": 53534, + "name": "3.5 AT (271 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238076, + "fields": { + "id_car_serie": 53535, + "name": "2.4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238077, + "fields": { + "id_car_serie": 53535, + "name": "2.4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238078, + "fields": { + "id_car_serie": 53535, + "name": "3.5 AT (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238079, + "fields": { + "id_car_serie": 53535, + "name": "3.5 MT (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238080, + "fields": { + "id_car_serie": 53536, + "name": "2.4 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238081, + "fields": { + "id_car_serie": 53536, + "name": "2.4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238082, + "fields": { + "id_car_serie": 53536, + "name": "2.4 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238083, + "fields": { + "id_car_serie": 53536, + "name": "2.4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238084, + "fields": { + "id_car_serie": 53536, + "name": "3.5 AT (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238085, + "fields": { + "id_car_serie": 53537, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238086, + "fields": { + "id_car_serie": 53537, + "name": "2.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238087, + "fields": { + "id_car_serie": 53537, + "name": "2.4 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238088, + "fields": { + "id_car_serie": 53537, + "name": "2.4 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238089, + "fields": { + "id_car_serie": 53537, + "name": "3.5 AT (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238090, + "fields": { + "id_car_serie": 53540, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238091, + "fields": { + "id_car_serie": 53540, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238092, + "fields": { + "id_car_serie": 53540, + "name": "1.0 TSI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238093, + "fields": { + "id_car_serie": 53540, + "name": "1.0 TSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238094, + "fields": { + "id_car_serie": 53540, + "name": "1.0 TSI DSG (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238095, + "fields": { + "id_car_serie": 53542, + "name": "2.0 TSI Tiptronic 4Motion (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238096, + "fields": { + "id_car_serie": 53542, + "name": "3.0 TSI Tiptronic 4Motion (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238097, + "fields": { + "id_car_serie": 53542, + "name": "3.0 V6 TDI Tiptronic 4Motion (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238098, + "fields": { + "id_car_serie": 53542, + "name": "3.0 V6 TDI Tiptronic 4Motion (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238099, + "fields": { + "id_car_serie": 53542, + "name": "3.0 V6 TDI Tiptronic 4Motion (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238100, + "fields": { + "id_car_serie": 53546, + "name": "C 200 9G-TRONIC 4MATIC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238101, + "fields": { + "id_car_serie": 53546, + "name": "C 200 9G-TRONIC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238102, + "fields": { + "id_car_serie": 53546, + "name": "C 220 d 9G-TRONIC (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238103, + "fields": { + "id_car_serie": 53547, + "name": "C 43 SPEEDSHIFT 4MATIC (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238105, + "fields": { + "id_car_serie": 4371, + "name": "1.9 TDI 7DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238106, + "fields": { + "id_car_serie": 6818, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238107, + "fields": { + "id_car_serie": 6819, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238108, + "fields": { + "id_car_serie": 8797, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238109, + "fields": { + "id_car_serie": 8796, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238110, + "fields": { + "id_car_serie": 8796, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238111, + "fields": { + "id_car_serie": 8715, + "name": "1.3 (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238112, + "fields": { + "id_car_serie": 8715, + "name": "1.6 (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238113, + "fields": { + "id_car_serie": 8715, + "name": "1.6 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238114, + "fields": { + "id_car_serie": 8715, + "name": "1.9 Turbo D (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238115, + "fields": { + "id_car_serie": 15015, + "name": "1.8 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238116, + "fields": { + "id_car_serie": 15015, + "name": "1.8 6MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238117, + "fields": { + "id_car_serie": 15015, + "name": "1.8 5MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238118, + "fields": { + "id_car_serie": 15015, + "name": "1.8 MT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238119, + "fields": { + "id_car_serie": 47609, + "name": "1.5 GDI AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238120, + "fields": { + "id_car_serie": 47609, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238121, + "fields": { + "id_car_serie": 50627, + "name": "420 SE AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238122, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT L2H1 (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238123, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT L1H2 (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238124, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT L2H1 (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238125, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT L2H2 (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238126, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT L2H3 (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238127, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT L1H1 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238128, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT L1H2 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238129, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT L2H2 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238130, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT L2H1 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238131, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT L2H3 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238132, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT L1H1 (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238133, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT L1H2 (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238134, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT L1H1 (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238135, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT L2H2 (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238136, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT L2H3 (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238137, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT L1H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238138, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT L1H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238139, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT L2H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238140, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT L2H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238141, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT L2H3 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238142, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT 4Motion L1H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238143, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT 4Motion L1H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238144, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT 4Motion L2H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238145, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT 4Motion L2H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238146, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI MT 4Motion L2H3 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238147, + "fields": { + "id_car_serie": 51504, + "name": "2.0 BiTDI MT L1H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238148, + "fields": { + "id_car_serie": 51504, + "name": "2.0 BiTDI MT L1H2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238149, + "fields": { + "id_car_serie": 51504, + "name": "2.0 BiTDI MT L2H2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238150, + "fields": { + "id_car_serie": 51504, + "name": "2.0 BiTDI MT L2H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238151, + "fields": { + "id_car_serie": 51504, + "name": "2.0 BiTDI MT L2H3 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238152, + "fields": { + "id_car_serie": 51504, + "name": "2.0 BiTDI MT 4Motion L1H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238153, + "fields": { + "id_car_serie": 51504, + "name": "2.0 BiTDI MT 4Motion L1H2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238154, + "fields": { + "id_car_serie": 51504, + "name": "2.0 BiTDI MT 4Motion L2H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238155, + "fields": { + "id_car_serie": 51504, + "name": "2.0 BiTDI MT 4Motion L2H2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238156, + "fields": { + "id_car_serie": 51504, + "name": "2.0 BiTDI MT 4Motion L2H3 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238157, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI DSG L1H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238158, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI DSG L1H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238159, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI DSG L2H1 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238160, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI DSG L2H2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238161, + "fields": { + "id_car_serie": 51504, + "name": "2.0 TDI DSG L2H3 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238162, + "fields": { + "id_car_serie": 51504, + "name": "2.0 BiTDI DSG L1H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238163, + "fields": { + "id_car_serie": 51504, + "name": "2.0 BiTDI DSG L1H2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238164, + "fields": { + "id_car_serie": 51504, + "name": "2.0 BiTDI DSG L2H2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238165, + "fields": { + "id_car_serie": 51504, + "name": "2.0 BiTDI DSG L2H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238166, + "fields": { + "id_car_serie": 51504, + "name": "2.0 BiTDI DSG L2H3 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238167, + "fields": { + "id_car_serie": 51504, + "name": "2.0 BiTDI DSG 4Motion L1H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238168, + "fields": { + "id_car_serie": 51504, + "name": "2.0 BiTDI DSG 4Motion L1H2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238169, + "fields": { + "id_car_serie": 51504, + "name": "2.0 BiTDI DSG 4Motion L2H1 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238170, + "fields": { + "id_car_serie": 51504, + "name": "2.0 BiTDI DSG 4Motion L2H2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238171, + "fields": { + "id_car_serie": 51504, + "name": "2.0 BiTDI DSG 4Motion L2H3 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238173, + "fields": { + "id_car_serie": 53224, + "name": "CS 3.0 DCT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238174, + "fields": { + "id_car_serie": 51516, + "name": "3.0 V6 AT AWD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238175, + "fields": { + "id_car_serie": 51516, + "name": "3.0 TD V6 AT AWD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238176, + "fields": { + "id_car_serie": 53275, + "name": "4.4 Steptronic xDrive Competition (625 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238177, + "fields": { + "id_car_serie": 51505, + "name": "1.4 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238178, + "fields": { + "id_car_serie": 53428, + "name": "350 AT 4Matic (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238179, + "fields": { + "id_car_serie": 53511, + "name": "1.6 Lineartronic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238180, + "fields": { + "id_car_serie": 53511, + "name": "1.6 Lineartronic 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238181, + "fields": { + "id_car_serie": 53511, + "name": "2.0 Lineartronic 4WD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238182, + "fields": { + "id_car_serie": 53511, + "name": "2.0 Lineartronic (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238183, + "fields": { + "id_car_serie": 53550, + "name": "3.7 AT SWB (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238184, + "fields": { + "id_car_serie": 53550, + "name": "3.7 AT LWB (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238185, + "fields": { + "id_car_serie": 53550, + "name": "4.7 AT SWB (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238186, + "fields": { + "id_car_serie": 53550, + "name": "4.7 AT AWD SWB (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238187, + "fields": { + "id_car_serie": 53550, + "name": "4.7 AT LWB (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238188, + "fields": { + "id_car_serie": 53550, + "name": "4.7 AT AWD LWB (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238189, + "fields": { + "id_car_serie": 53550, + "name": "5.7 AT SWB (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238190, + "fields": { + "id_car_serie": 53550, + "name": "5.7 AT AWD SWB (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238191, + "fields": { + "id_car_serie": 53550, + "name": "5.7 AT LWB (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238192, + "fields": { + "id_car_serie": 53550, + "name": "5.7 AT AWD LWB (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238193, + "fields": { + "id_car_serie": 53565, + "name": "3.0 MT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238194, + "fields": { + "id_car_serie": 53565, + "name": "3.0 MT (410 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238195, + "fields": { + "id_car_serie": 53565, + "name": "3.0 DCT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238196, + "fields": { + "id_car_serie": 53565, + "name": "3.0 DCT (410 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238200, + "fields": { + "id_car_serie": 6053, + "name": "1.9 TDI MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238201, + "fields": { + "id_car_serie": 6053, + "name": "1.9 TDI MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238202, + "fields": { + "id_car_serie": 6053, + "name": "1.9 TDI MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238203, + "fields": { + "id_car_serie": 7661, + "name": "2.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238204, + "fields": { + "id_car_serie": 53563, + "name": "2.0 MT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238205, + "fields": { + "id_car_serie": 53563, + "name": "2.0 MT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238206, + "fields": { + "id_car_serie": 53564, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238208, + "fields": { + "id_car_serie": 53564, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238209, + "fields": { + "id_car_serie": 53564, + "name": "1.8 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238210, + "fields": { + "id_car_serie": 53562, + "name": "2.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238211, + "fields": { + "id_car_serie": 53562, + "name": "2.0 MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238212, + "fields": { + "id_car_serie": 53561, + "name": "2.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238213, + "fields": { + "id_car_serie": 53561, + "name": "2.2 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238214, + "fields": { + "id_car_serie": 53560, + "name": "2.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238215, + "fields": { + "id_car_serie": 53560, + "name": "2.0 MT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238216, + "fields": { + "id_car_serie": 53558, + "name": "2.0 AT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238217, + "fields": { + "id_car_serie": 53558, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238218, + "fields": { + "id_car_serie": 53558, + "name": "2.0 MT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238219, + "fields": { + "id_car_serie": 53558, + "name": "2.0 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238220, + "fields": { + "id_car_serie": 53558, + "name": "2.5 MT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238221, + "fields": { + "id_car_serie": 53553, + "name": "1.2 TCe MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238222, + "fields": { + "id_car_serie": 53553, + "name": "1.2 TCe MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238223, + "fields": { + "id_car_serie": 53553, + "name": "1.2 TCe EDC (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238224, + "fields": { + "id_car_serie": 53553, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238225, + "fields": { + "id_car_serie": 53553, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238226, + "fields": { + "id_car_serie": 53553, + "name": "1.5 dCi EDC (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238227, + "fields": { + "id_car_serie": 53553, + "name": "1.6 SCe MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238228, + "fields": { + "id_car_serie": 53553, + "name": "1.6 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238229, + "fields": { + "id_car_serie": 53553, + "name": "1.6 TCe MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238230, + "fields": { + "id_car_serie": 53553, + "name": "1.6 dCi EDC (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238231, + "fields": { + "id_car_serie": 53556, + "name": "1.2 TCe MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238232, + "fields": { + "id_car_serie": 53556, + "name": "1.2 TCe MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238233, + "fields": { + "id_car_serie": 53556, + "name": "1.2 TCe EDC (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238234, + "fields": { + "id_car_serie": 53556, + "name": "1.5 dCi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238235, + "fields": { + "id_car_serie": 53556, + "name": "1.5 dCi MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238236, + "fields": { + "id_car_serie": 53556, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238237, + "fields": { + "id_car_serie": 53556, + "name": "1.5 dCi EDC (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238238, + "fields": { + "id_car_serie": 53556, + "name": "1.5 dCi CVT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238239, + "fields": { + "id_car_serie": 53556, + "name": "1.6 16V MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238240, + "fields": { + "id_car_serie": 53556, + "name": "1.6 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238241, + "fields": { + "id_car_serie": 53556, + "name": "1.6 16V CVT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238242, + "fields": { + "id_car_serie": 53556, + "name": "2.0 dCi MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238243, + "fields": { + "id_car_serie": 53557, + "name": "1.0 MPI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238244, + "fields": { + "id_car_serie": 53557, + "name": "1.0 TSI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238245, + "fields": { + "id_car_serie": 53557, + "name": "1.0 TSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238246, + "fields": { + "id_car_serie": 53557, + "name": "1.0 TSI DSG (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238247, + "fields": { + "id_car_serie": 53554, + "name": "1.2 TCe EDC (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238248, + "fields": { + "id_car_serie": 53554, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238249, + "fields": { + "id_car_serie": 53554, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238250, + "fields": { + "id_car_serie": 53554, + "name": "1.5 dCi EDC (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238251, + "fields": { + "id_car_serie": 53554, + "name": "1.6 SCe MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238252, + "fields": { + "id_car_serie": 53554, + "name": "1.6 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238253, + "fields": { + "id_car_serie": 53554, + "name": "1.6 SCe CVT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238254, + "fields": { + "id_car_serie": 53555, + "name": "1.2 TCe MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238255, + "fields": { + "id_car_serie": 53555, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238256, + "fields": { + "id_car_serie": 53555, + "name": "1.5 dCi EDC (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238257, + "fields": { + "id_car_serie": 53555, + "name": "1.6 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238258, + "fields": { + "id_car_serie": 53555, + "name": "2.0 dCi MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238259, + "fields": { + "id_car_serie": 53555, + "name": "2.0 16V CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238260, + "fields": { + "id_car_serie": 3543, + "name": "6.2 Hemi AT AWD (717 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238261, + "fields": { + "id_car_serie": 4625, + "name": "1.8 T Tiptronic quattro (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238262, + "fields": { + "id_car_serie": 4625, + "name": "1.8 T MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238263, + "fields": { + "id_car_serie": 4625, + "name": "1.8 T MT quattro (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238264, + "fields": { + "id_car_serie": 4625, + "name": "1.8 T multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238265, + "fields": { + "id_car_serie": 4626, + "name": "1.8 T multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238266, + "fields": { + "id_car_serie": 5487, + "name": "2.5 TDI MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238267, + "fields": { + "id_car_serie": 5486, + "name": "2.4 tiptronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238268, + "fields": { + "id_car_serie": 5486, + "name": "2.4 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238269, + "fields": { + "id_car_serie": 5486, + "name": "2.4 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238270, + "fields": { + "id_car_serie": 5486, + "name": "2.7 T tiptronic quattro (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238271, + "fields": { + "id_car_serie": 5486, + "name": "2.7 T MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238272, + "fields": { + "id_car_serie": 5486, + "name": "2.7 T MT quattro (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238273, + "fields": { + "id_car_serie": 5482, + "name": "3.0 tiptronic quattro (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238274, + "fields": { + "id_car_serie": 14715, + "name": "1.8 T multitronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238275, + "fields": { + "id_car_serie": 14786, + "name": "1.0 EcoBoost AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238276, + "fields": { + "id_car_serie": 14786, + "name": "1.5 TDCi MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238277, + "fields": { + "id_car_serie": 14787, + "name": "1.0 EcoBoost AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238278, + "fields": { + "id_car_serie": 14788, + "name": "1.0 EcoBoost AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238279, + "fields": { + "id_car_serie": 15302, + "name": "3.0 AT AWD (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238280, + "fields": { + "id_car_serie": 45685, + "name": "2.0 TFSI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238281, + "fields": { + "id_car_serie": 45685, + "name": "2.0 TDI MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238282, + "fields": { + "id_car_serie": 45685, + "name": "2.0 TFSI S tronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238283, + "fields": { + "id_car_serie": 45685, + "name": "2.0 TDI S tronic (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238284, + "fields": { + "id_car_serie": 45685, + "name": "3.0 TDI S tronic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238285, + "fields": { + "id_car_serie": 45685, + "name": "3.0 TDI S tronic quattro (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238286, + "fields": { + "id_car_serie": 45686, + "name": "2.0 TDI MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238287, + "fields": { + "id_car_serie": 45686, + "name": "2.0 TFSI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238288, + "fields": { + "id_car_serie": 45686, + "name": "2.0 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238289, + "fields": { + "id_car_serie": 45686, + "name": "2.0 TFSI S tronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238290, + "fields": { + "id_car_serie": 45686, + "name": "2.0 TDI S tronic (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238291, + "fields": { + "id_car_serie": 45686, + "name": "3.0 TDI S tronic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238292, + "fields": { + "id_car_serie": 45686, + "name": "3.0 TDI S tronic quattro (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238293, + "fields": { + "id_car_serie": 46820, + "name": "1.5 HDi MT SWB (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238294, + "fields": { + "id_car_serie": 46820, + "name": "1.5 HDi MT SWB (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238295, + "fields": { + "id_car_serie": 46820, + "name": "1.6 HDi MT SWB (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238296, + "fields": { + "id_car_serie": 46820, + "name": "2.0 HDi AT SWB (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238297, + "fields": { + "id_car_serie": 46820, + "name": "2.0 HDi AT LWB (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238298, + "fields": { + "id_car_serie": 47099, + "name": "2.0 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238299, + "fields": { + "id_car_serie": 47099, + "name": "2.0 MT quattro (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238300, + "fields": { + "id_car_serie": 47581, + "name": "3.0 TDI S tronic quattro (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238301, + "fields": { + "id_car_serie": 49754, + "name": "1.4 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238302, + "fields": { + "id_car_serie": 51054, + "name": "SLC 43 9G-TRONIC (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238303, + "fields": { + "id_car_serie": 50566, + "name": "SL 63 AMG SPEEDSHIFT MCT (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238304, + "fields": { + "id_car_serie": 51053, + "name": "E 400 d 4MATIC 9G-TRONIC (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238305, + "fields": { + "id_car_serie": 51436, + "name": "E 53 4MATIC+ 9G-TRONIC (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238306, + "fields": { + "id_car_serie": 51445, + "name": "3.0 SD6 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238307, + "fields": { + "id_car_serie": 53520, + "name": "C 180 9G-TRONIC (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238308, + "fields": { + "id_car_serie": 53520, + "name": "C 160 9G-TRONIC (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238309, + "fields": { + "id_car_serie": 53520, + "name": "C 180 d 9G-TRONIC (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238310, + "fields": { + "id_car_serie": 53520, + "name": "C 200 d MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238311, + "fields": { + "id_car_serie": 53520, + "name": "C 300 9G-TRONIC (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238312, + "fields": { + "id_car_serie": 53520, + "name": "C 220 d 9G-TRONIC 4MATIC (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238313, + "fields": { + "id_car_serie": 53520, + "name": "C 200 d 9G-TRONIC (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238314, + "fields": { + "id_car_serie": 53520, + "name": "C 400 9G-TRONIC 4MATIC (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238315, + "fields": { + "id_car_serie": 51490, + "name": "530i Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238316, + "fields": { + "id_car_serie": 51506, + "name": "2.0 CVT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238319, + "fields": { + "id_car_serie": 53500, + "name": "45 TDI tiptronic quattro (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238320, + "fields": { + "id_car_serie": 53500, + "name": "55 TFSI S tronic quattro (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238321, + "fields": { + "id_car_serie": 53229, + "name": "S 350 d 9G-Tronic 4Matic long base (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238322, + "fields": { + "id_car_serie": 53207, + "name": "P200 AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238323, + "fields": { + "id_car_serie": 53207, + "name": "D180 MT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238324, + "fields": { + "id_car_serie": 53207, + "name": "D150 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238325, + "fields": { + "id_car_serie": 53207, + "name": "D150 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238326, + "fields": { + "id_car_serie": 53236, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238327, + "fields": { + "id_car_serie": 53135, + "name": "2.7 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238328, + "fields": { + "id_car_serie": 53135, + "name": "2.7 MT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238330, + "fields": { + "id_car_serie": 53487, + "name": "A 200 7G-DCT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238331, + "fields": { + "id_car_serie": 53489, + "name": "E 53 9G-TRONIC 4MATIC+ (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238332, + "fields": { + "id_car_serie": 53488, + "name": "E 53 9G-TRONIC 4MATIC+ (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238335, + "fields": { + "id_car_serie": 53525, + "name": "45 TDI tiptronic quattro (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238336, + "fields": { + "id_car_serie": 53525, + "name": "50 TDI tiptronic quattro (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238337, + "fields": { + "id_car_serie": 53525, + "name": "55 TFSI S tronic quattro (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238338, + "fields": { + "id_car_serie": 53545, + "name": "CLS 53 9G-TRONIC 4MATIC+ (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238339, + "fields": { + "id_car_serie": 53546, + "name": "C 180 9G-TRONIC (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238340, + "fields": { + "id_car_serie": 53546, + "name": "C 180 d 9G-TRONIC (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238341, + "fields": { + "id_car_serie": 53546, + "name": "C 180 9G-TRONIC (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238342, + "fields": { + "id_car_serie": 53546, + "name": "C 160 9G-TRONIC (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238343, + "fields": { + "id_car_serie": 53546, + "name": "C 200 d MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238344, + "fields": { + "id_car_serie": 53546, + "name": "C 300 9G-TRONIC (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238345, + "fields": { + "id_car_serie": 53546, + "name": "C 220 d 9G-TRONIC 4MATIC (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238346, + "fields": { + "id_car_serie": 53546, + "name": "C 200 d 9G-TRONIC (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238347, + "fields": { + "id_car_serie": 53546, + "name": "C 400 9G-TRONIC 4MATIC (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238348, + "fields": { + "id_car_serie": 53549, + "name": "2.0 VVT MT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238349, + "fields": { + "id_car_serie": 53606, + "name": "0.7 AT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238350, + "fields": { + "id_car_serie": 53606, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238351, + "fields": { + "id_car_serie": 53606, + "name": "0.7 AT AWD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238352, + "fields": { + "id_car_serie": 53606, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238353, + "fields": { + "id_car_serie": 53584, + "name": "2.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238354, + "fields": { + "id_car_serie": 53584, + "name": "2.0 MT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238355, + "fields": { + "id_car_serie": 53583, + "name": "2.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238356, + "fields": { + "id_car_serie": 53583, + "name": "2.0 MT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238357, + "fields": { + "id_car_serie": 53583, + "name": "2.0 MT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238358, + "fields": { + "id_car_serie": 53575, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238359, + "fields": { + "id_car_serie": 53575, + "name": "1.2 5MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238360, + "fields": { + "id_car_serie": 53575, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238361, + "fields": { + "id_car_serie": 53575, + "name": "1.3 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238362, + "fields": { + "id_car_serie": 53575, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238363, + "fields": { + "id_car_serie": 53575, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238364, + "fields": { + "id_car_serie": 53575, + "name": "1.3 5MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238365, + "fields": { + "id_car_serie": 53575, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238366, + "fields": { + "id_car_serie": 53575, + "name": "1.3 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238367, + "fields": { + "id_car_serie": 53575, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238368, + "fields": { + "id_car_serie": 53575, + "name": "1.3 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238369, + "fields": { + "id_car_serie": 53575, + "name": "1.5 Turbo D 5MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238370, + "fields": { + "id_car_serie": 53575, + "name": "1.6i AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238371, + "fields": { + "id_car_serie": 53575, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238372, + "fields": { + "id_car_serie": 53575, + "name": "1.6 D AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238373, + "fields": { + "id_car_serie": 53575, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238374, + "fields": { + "id_car_serie": 53575, + "name": "1.6 5MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238375, + "fields": { + "id_car_serie": 53575, + "name": "1.6 D 5MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238376, + "fields": { + "id_car_serie": 53575, + "name": "1.6 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238377, + "fields": { + "id_car_serie": 53575, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238378, + "fields": { + "id_car_serie": 53575, + "name": "1.6i 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238379, + "fields": { + "id_car_serie": 53575, + "name": "1.6i MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238380, + "fields": { + "id_car_serie": 53575, + "name": "1.6 5MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238381, + "fields": { + "id_car_serie": 53575, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238382, + "fields": { + "id_car_serie": 53575, + "name": "1.8 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238383, + "fields": { + "id_car_serie": 53575, + "name": "1.8i AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238384, + "fields": { + "id_car_serie": 53575, + "name": "1.8 5MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238385, + "fields": { + "id_car_serie": 53575, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238386, + "fields": { + "id_car_serie": 53575, + "name": "1.8i 5MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238387, + "fields": { + "id_car_serie": 53575, + "name": "1.8i 5MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238388, + "fields": { + "id_car_serie": 53575, + "name": "1.8i MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238389, + "fields": { + "id_car_serie": 53575, + "name": "2.0i AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238390, + "fields": { + "id_car_serie": 53575, + "name": "2.0i 5MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238391, + "fields": { + "id_car_serie": 53570, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238392, + "fields": { + "id_car_serie": 53570, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238393, + "fields": { + "id_car_serie": 53570, + "name": "1.2 TDI MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238394, + "fields": { + "id_car_serie": 53570, + "name": "1.2 CVT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238395, + "fields": { + "id_car_serie": 53570, + "name": "1.2 CVT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238396, + "fields": { + "id_car_serie": 53570, + "name": "1.3 TDI CVT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238397, + "fields": { + "id_car_serie": 53570, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238398, + "fields": { + "id_car_serie": 53570, + "name": "1.4 CVT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238399, + "fields": { + "id_car_serie": 53570, + "name": "1.7 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238400, + "fields": { + "id_car_serie": 53570, + "name": "1.9 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238401, + "fields": { + "id_car_serie": 53570, + "name": "1.9 TDI MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238402, + "fields": { + "id_car_serie": 53570, + "name": "1.9 TDI MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238403, + "fields": { + "id_car_serie": 53570, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238404, + "fields": { + "id_car_serie": 53609, + "name": "1.5 Hybrid AMT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238405, + "fields": { + "id_car_serie": 53609, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238406, + "fields": { + "id_car_serie": 53576, + "name": "1100 S AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238407, + "fields": { + "id_car_serie": 53576, + "name": "1100 S MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238408, + "fields": { + "id_car_serie": 53576, + "name": "1100 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238409, + "fields": { + "id_car_serie": 53576, + "name": "1100 SR MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238410, + "fields": { + "id_car_serie": 53576, + "name": "1100 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238411, + "fields": { + "id_car_serie": 53576, + "name": "1200 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238412, + "fields": { + "id_car_serie": 53576, + "name": "1200 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238413, + "fields": { + "id_car_serie": 53576, + "name": "1700 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238414, + "fields": { + "id_car_serie": 53576, + "name": "1700 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238415, + "fields": { + "id_car_serie": 53572, + "name": "1.0 EcoBoost AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238416, + "fields": { + "id_car_serie": 53572, + "name": "1.0 EcoBoost MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238417, + "fields": { + "id_car_serie": 53572, + "name": "1.0 EcoBoost MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238418, + "fields": { + "id_car_serie": 53572, + "name": "1.5 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238419, + "fields": { + "id_car_serie": 53572, + "name": "1.5 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238420, + "fields": { + "id_car_serie": 53572, + "name": "1.5 TDCi MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238421, + "fields": { + "id_car_serie": 53572, + "name": "1.5 EcoBlue MT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238422, + "fields": { + "id_car_serie": 53572, + "name": "2.0 AT AWD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238423, + "fields": { + "id_car_serie": 53572, + "name": "2.0 AT AWD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238424, + "fields": { + "id_car_serie": 53610, + "name": "1.5 Hybrid AMT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238425, + "fields": { + "id_car_serie": 53610, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238426, + "fields": { + "id_car_serie": 53602, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238427, + "fields": { + "id_car_serie": 53602, + "name": "0.7 AT AWD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238428, + "fields": { + "id_car_serie": 53602, + "name": "0.7 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238429, + "fields": { + "id_car_serie": 53602, + "name": "0.7 MT AWD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238430, + "fields": { + "id_car_serie": 53588, + "name": "1.6 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238431, + "fields": { + "id_car_serie": 53588, + "name": "1.6 CVT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238432, + "fields": { + "id_car_serie": 53571, + "name": "1.2 TDI MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238433, + "fields": { + "id_car_serie": 53571, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238434, + "fields": { + "id_car_serie": 53571, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238435, + "fields": { + "id_car_serie": 53571, + "name": "1.2 CVT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238436, + "fields": { + "id_car_serie": 53571, + "name": "1.2 CVT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238437, + "fields": { + "id_car_serie": 53571, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238438, + "fields": { + "id_car_serie": 53571, + "name": "1.4 CVT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238439, + "fields": { + "id_car_serie": 53571, + "name": "1.7 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238440, + "fields": { + "id_car_serie": 53571, + "name": "1.9 D MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238441, + "fields": { + "id_car_serie": 53571, + "name": "1.9 TDI MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238442, + "fields": { + "id_car_serie": 53571, + "name": "1.9 TDI MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238443, + "fields": { + "id_car_serie": 53590, + "name": "840d Steptronic xDrive (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238444, + "fields": { + "id_car_serie": 53590, + "name": "M850i Steptronic xDrive (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238445, + "fields": { + "id_car_serie": 53603, + "name": "0.7 AT AWD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238446, + "fields": { + "id_car_serie": 53603, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238447, + "fields": { + "id_car_serie": 53603, + "name": "0.7 MT AWD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238448, + "fields": { + "id_car_serie": 53603, + "name": "0.7 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238449, + "fields": { + "id_car_serie": 53566, + "name": "M50d Steptronic xDrive (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238450, + "fields": { + "id_car_serie": 53566, + "name": "xDrive30d Steptronic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238451, + "fields": { + "id_car_serie": 53566, + "name": "xDrive40i Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238452, + "fields": { + "id_car_serie": 53566, + "name": "xDrive50i Steptronic (462 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238453, + "fields": { + "id_car_serie": 53608, + "name": "0.7 AT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238454, + "fields": { + "id_car_serie": 53608, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238455, + "fields": { + "id_car_serie": 53608, + "name": "0.7 AT AWD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238456, + "fields": { + "id_car_serie": 53608, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238457, + "fields": { + "id_car_serie": 53574, + "name": "1.2 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238458, + "fields": { + "id_car_serie": 53574, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238459, + "fields": { + "id_car_serie": 53574, + "name": "1.5 CVT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238460, + "fields": { + "id_car_serie": 53574, + "name": "1.6 AT AWD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238461, + "fields": { + "id_car_serie": 53574, + "name": "1.8 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238462, + "fields": { + "id_car_serie": 53573, + "name": "1.2 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238463, + "fields": { + "id_car_serie": 53573, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238464, + "fields": { + "id_car_serie": 53573, + "name": "1.5 CVT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238465, + "fields": { + "id_car_serie": 53573, + "name": "1.6 AT AWD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238466, + "fields": { + "id_car_serie": 53573, + "name": "1.8 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238467, + "fields": { + "id_car_serie": 53586, + "name": "2.0 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238468, + "fields": { + "id_car_serie": 53586, + "name": "2.0 MT 4WD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238469, + "fields": { + "id_car_serie": 49159, + "name": "2.0 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238470, + "fields": { + "id_car_serie": 49159, + "name": "2.0 MT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238471, + "fields": { + "id_car_serie": 53582, + "name": "2.0 MT AWD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238472, + "fields": { + "id_car_serie": 53582, + "name": "2.0 MT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238473, + "fields": { + "id_car_serie": 53582, + "name": "2.5 MT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238474, + "fields": { + "id_car_serie": 53580, + "name": "2.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238475, + "fields": { + "id_car_serie": 53580, + "name": "2.0 MT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238476, + "fields": { + "id_car_serie": 53580, + "name": "2.5 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238477, + "fields": { + "id_car_serie": 53577, + "name": "1.2 TCe MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238478, + "fields": { + "id_car_serie": 53577, + "name": "1.2 TCe MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238479, + "fields": { + "id_car_serie": 53577, + "name": "1.2 TCe EDC (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238480, + "fields": { + "id_car_serie": 53577, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238481, + "fields": { + "id_car_serie": 53577, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238482, + "fields": { + "id_car_serie": 53577, + "name": "1.5 dCi EDC (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238483, + "fields": { + "id_car_serie": 53577, + "name": "1.6 SCe MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238484, + "fields": { + "id_car_serie": 53577, + "name": "1.6 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238485, + "fields": { + "id_car_serie": 53577, + "name": "1.6 dCi EDC (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238486, + "fields": { + "id_car_serie": 53577, + "name": "1.6 TCe EDC (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238487, + "fields": { + "id_car_serie": 53605, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238488, + "fields": { + "id_car_serie": 53605, + "name": "0.7 AT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238489, + "fields": { + "id_car_serie": 53605, + "name": "0.7 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238490, + "fields": { + "id_car_serie": 53605, + "name": "0.7 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238491, + "fields": { + "id_car_serie": 53604, + "name": "0.7 AT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238492, + "fields": { + "id_car_serie": 53604, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238493, + "fields": { + "id_car_serie": 53604, + "name": "0.7 AT AWD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238494, + "fields": { + "id_car_serie": 53604, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238495, + "fields": { + "id_car_serie": 53589, + "name": "1.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238496, + "fields": { + "id_car_serie": 53589, + "name": "1.5 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238497, + "fields": { + "id_car_serie": 53591, + "name": "C 200 9G-TRONIC 4MATIC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238498, + "fields": { + "id_car_serie": 53591, + "name": "C 200 9G-TRONIC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238499, + "fields": { + "id_car_serie": 53591, + "name": "C 180 9G-TRONIC (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238500, + "fields": { + "id_car_serie": 53591, + "name": "C 180 9G-TRONIC (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238501, + "fields": { + "id_car_serie": 53591, + "name": "C 300 9G-TRONIC (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238502, + "fields": { + "id_car_serie": 53591, + "name": "C 220 d 9G-TRONIC (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238503, + "fields": { + "id_car_serie": 53591, + "name": "C 400 9G-TRONIC 4MATIC (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238504, + "fields": { + "id_car_serie": 53596, + "name": "0.7 CVT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238505, + "fields": { + "id_car_serie": 53596, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238506, + "fields": { + "id_car_serie": 53596, + "name": "0.7 CVT AWD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238507, + "fields": { + "id_car_serie": 53596, + "name": "0.7 CVT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238508, + "fields": { + "id_car_serie": 53595, + "name": "55 TFSI Tiptronic quattro (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238509, + "fields": { + "id_car_serie": 53595, + "name": "50 TDI Tiptronic quattro (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238510, + "fields": { + "id_car_serie": 53594, + "name": "6.7 AT AWD (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238511, + "fields": { + "id_car_serie": 53607, + "name": "0.7 AT AWD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238512, + "fields": { + "id_car_serie": 53607, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238513, + "fields": { + "id_car_serie": 53578, + "name": "2.0 MT 4WD (308 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238514, + "fields": { + "id_car_serie": 53578, + "name": "2.0 MT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238515, + "fields": { + "id_car_serie": 53578, + "name": "2.5 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238516, + "fields": { + "id_car_serie": 53578, + "name": "2.5 MT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238517, + "fields": { + "id_car_serie": 53592, + "name": "C 200 9G-TRONIC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238518, + "fields": { + "id_car_serie": 53592, + "name": "C 200 9G-TRONIC 4MATIC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238519, + "fields": { + "id_car_serie": 53592, + "name": "C 220 d 9G-TRONIC (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238520, + "fields": { + "id_car_serie": 53592, + "name": "C 300 9G-TRONIC (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238521, + "fields": { + "id_car_serie": 53592, + "name": "C 400 9G-TRONIC 4MATIC (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238522, + "fields": { + "id_car_serie": 53593, + "name": "C 43 9G-TRONIC 4MATIC (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238523, + "fields": { + "id_car_serie": 53597, + "name": "0.7 CVT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238524, + "fields": { + "id_car_serie": 53597, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238525, + "fields": { + "id_car_serie": 53597, + "name": "0.7 CVT AWD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238526, + "fields": { + "id_car_serie": 53597, + "name": "0.7 CVT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238527, + "fields": { + "id_car_serie": 53598, + "name": "0.7 CVT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238528, + "fields": { + "id_car_serie": 53598, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238529, + "fields": { + "id_car_serie": 53598, + "name": "0.7 CVT AWD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238530, + "fields": { + "id_car_serie": 53598, + "name": "0.7 CVT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238531, + "fields": { + "id_car_serie": 53599, + "name": "0.7 CVT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238532, + "fields": { + "id_car_serie": 53599, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238533, + "fields": { + "id_car_serie": 53599, + "name": "0.7 CVT AWD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238534, + "fields": { + "id_car_serie": 53599, + "name": "0.7 CVT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238535, + "fields": { + "id_car_serie": 53600, + "name": "0.7 CVT AWD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238536, + "fields": { + "id_car_serie": 53600, + "name": "0.7 CVT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238537, + "fields": { + "id_car_serie": 53601, + "name": "0.7 CVT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238538, + "fields": { + "id_car_serie": 53601, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238539, + "fields": { + "id_car_serie": 53601, + "name": "0.7 CVT AWD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238540, + "fields": { + "id_car_serie": 53601, + "name": "0.7 CVT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238541, + "fields": { + "id_car_serie": 5529, + "name": "3.6 quattro MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238542, + "fields": { + "id_car_serie": 5529, + "name": "4.2 quattro MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238543, + "fields": { + "id_car_serie": 14769, + "name": "2.0 TFSI S tronic quattro (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238544, + "fields": { + "id_car_serie": 14769, + "name": "2.0 TDI S tronic quattro (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238546, + "fields": { + "id_car_serie": 2939, + "name": "2.0 TDI S tronic quattro (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238547, + "fields": { + "id_car_serie": 2939, + "name": "2.0 TFSI S tronic quattro (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238548, + "fields": { + "id_car_serie": 3149, + "name": "0.9 TCe Easy-R (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238549, + "fields": { + "id_car_serie": 3149, + "name": "1.0 SCe MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238550, + "fields": { + "id_car_serie": 5837, + "name": "1.2 16V MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238551, + "fields": { + "id_car_serie": 5837, + "name": "1.2 16V LPG MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238552, + "fields": { + "id_car_serie": 5837, + "name": "1.4 MPI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238553, + "fields": { + "id_car_serie": 5837, + "name": "1.4 MPI LPG MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238554, + "fields": { + "id_car_serie": 5837, + "name": "1.5 dCi MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238555, + "fields": { + "id_car_serie": 5837, + "name": "1.5 dCi MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238556, + "fields": { + "id_car_serie": 5837, + "name": "1.5 dCi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238557, + "fields": { + "id_car_serie": 5837, + "name": "1.6 16V MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238558, + "fields": { + "id_car_serie": 5837, + "name": "1.6 MPI MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238559, + "fields": { + "id_car_serie": 6625, + "name": "2.0 TD MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238560, + "fields": { + "id_car_serie": 6625, + "name": "2.0 TD MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238561, + "fields": { + "id_car_serie": 6628, + "name": "2.0 MRi AT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238562, + "fields": { + "id_car_serie": 6628, + "name": "2.0 MT AWD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238563, + "fields": { + "id_car_serie": 9058, + "name": "6.6 AT Black Badge (632 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238564, + "fields": { + "id_car_serie": 10726, + "name": "1.6 FSI Tiptronic (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238565, + "fields": { + "id_car_serie": 10726, + "name": "1.9 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238566, + "fields": { + "id_car_serie": 14854, + "name": "1.6 D 4MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238567, + "fields": { + "id_car_serie": 14854, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238568, + "fields": { + "id_car_serie": 14854, + "name": "1.6 TD MT Syncro (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238569, + "fields": { + "id_car_serie": 14854, + "name": "1.6 TD 5MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238570, + "fields": { + "id_car_serie": 14854, + "name": "1.6 TD 4MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238571, + "fields": { + "id_car_serie": 14854, + "name": "1.6 D 5MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238572, + "fields": { + "id_car_serie": 14854, + "name": "1.7 D 4MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238573, + "fields": { + "id_car_serie": 14854, + "name": "1.9 AT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238574, + "fields": { + "id_car_serie": 14854, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238575, + "fields": { + "id_car_serie": 14854, + "name": "1.9 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238576, + "fields": { + "id_car_serie": 14854, + "name": "1.9 MT Syncro (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238577, + "fields": { + "id_car_serie": 14854, + "name": "1.9 5MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238578, + "fields": { + "id_car_serie": 14854, + "name": "1.9 4MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238579, + "fields": { + "id_car_serie": 14854, + "name": "1.9 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238580, + "fields": { + "id_car_serie": 14854, + "name": "2.0 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238581, + "fields": { + "id_car_serie": 14854, + "name": "2.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238582, + "fields": { + "id_car_serie": 14854, + "name": "2.1 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238583, + "fields": { + "id_car_serie": 14854, + "name": "2.1 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238584, + "fields": { + "id_car_serie": 14854, + "name": "2.1 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238585, + "fields": { + "id_car_serie": 14854, + "name": "2.1 MT Syncro (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238586, + "fields": { + "id_car_serie": 14854, + "name": "2.1 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238587, + "fields": { + "id_car_serie": 15144, + "name": "1.6 4MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238588, + "fields": { + "id_car_serie": 15144, + "name": "1.6 5MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238589, + "fields": { + "id_car_serie": 15145, + "name": "1.6 4MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238590, + "fields": { + "id_car_serie": 15145, + "name": "1.6 4MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238591, + "fields": { + "id_car_serie": 14601, + "name": "2.0 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238592, + "fields": { + "id_car_serie": 14601, + "name": "2.0 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238593, + "fields": { + "id_car_serie": 45581, + "name": "1.6 TD MT Syncro (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238594, + "fields": { + "id_car_serie": 45581, + "name": "1.6 TD 4MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238595, + "fields": { + "id_car_serie": 45581, + "name": "1.6 d 5MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238596, + "fields": { + "id_car_serie": 45581, + "name": "1.6 d 4MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238597, + "fields": { + "id_car_serie": 45581, + "name": "1.6 TD 5MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238598, + "fields": { + "id_car_serie": 45581, + "name": "1.7 d 5MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238599, + "fields": { + "id_car_serie": 45581, + "name": "1.7 d 4MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238600, + "fields": { + "id_car_serie": 45581, + "name": "1.9 AT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238601, + "fields": { + "id_car_serie": 45581, + "name": "1.9 5MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238602, + "fields": { + "id_car_serie": 45581, + "name": "1.9 4MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238603, + "fields": { + "id_car_serie": 45581, + "name": "1.9 MT Syncro (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238604, + "fields": { + "id_car_serie": 45581, + "name": "2.1 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238605, + "fields": { + "id_car_serie": 45581, + "name": "2.1 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238606, + "fields": { + "id_car_serie": 45581, + "name": "2.1 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238607, + "fields": { + "id_car_serie": 45581, + "name": "2.1 MT Syncro (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238608, + "fields": { + "id_car_serie": 45581, + "name": "2.1 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238609, + "fields": { + "id_car_serie": 45581, + "name": "2.1 MT Syncro (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238610, + "fields": { + "id_car_serie": 45461, + "name": "1.6 THP MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238611, + "fields": { + "id_car_serie": 45415, + "name": "E-perfomance AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238612, + "fields": { + "id_car_serie": 45415, + "name": "25d AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238613, + "fields": { + "id_car_serie": 45415, + "name": "25t AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238614, + "fields": { + "id_car_serie": 45415, + "name": "30t AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238615, + "fields": { + "id_car_serie": 45415, + "name": "20d MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238616, + "fields": { + "id_car_serie": 45415, + "name": "E-perfomance MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238617, + "fields": { + "id_car_serie": 45415, + "name": "30d AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238618, + "fields": { + "id_car_serie": 46160, + "name": "3.6 AT AWD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238619, + "fields": { + "id_car_serie": 46157, + "name": "1.6 HDi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238620, + "fields": { + "id_car_serie": 46157, + "name": "1.6 THP MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238621, + "fields": { + "id_car_serie": 46157, + "name": "2.0 HDi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238622, + "fields": { + "id_car_serie": 46011, + "name": "2.4 GDI AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238623, + "fields": { + "id_car_serie": 46011, + "name": "2.4 GDI AT AWD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238624, + "fields": { + "id_car_serie": 46476, + "name": "2.0 T5 Drive-E Geartronic AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238625, + "fields": { + "id_car_serie": 46476, + "name": "2.0 T5 Geartronic (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238626, + "fields": { + "id_car_serie": 46476, + "name": "2.0 D3 Geartronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238627, + "fields": { + "id_car_serie": 46476, + "name": "2.0 D4 Geartronic AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238628, + "fields": { + "id_car_serie": 46476, + "name": "2.0 T8 Geartronic AWD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238629, + "fields": { + "id_car_serie": 46476, + "name": "2.0 T8 Geartronic AWD (318 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238630, + "fields": { + "id_car_serie": 46476, + "name": "2.0 T5 Geartronic AWD (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238631, + "fields": { + "id_car_serie": 46476, + "name": "2.0 D3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238632, + "fields": { + "id_car_serie": 46476, + "name": "2.0 D3 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238633, + "fields": { + "id_car_serie": 46476, + "name": "2.0 D4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238634, + "fields": { + "id_car_serie": 47015, + "name": "4.0 V8 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238635, + "fields": { + "id_car_serie": 47015, + "name": "5.2 V12 AMR AT (639 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238636, + "fields": { + "id_car_serie": 47080, + "name": "Trofeo 3.8 V8 AT (590 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238637, + "fields": { + "id_car_serie": 47593, + "name": "2.0 TFSI S tronic quattro (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238638, + "fields": { + "id_car_serie": 48307, + "name": "2.4 MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238639, + "fields": { + "id_car_serie": 48307, + "name": "2.5 CRDi AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238640, + "fields": { + "id_car_serie": 48307, + "name": "2.5 CRDi AT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238641, + "fields": { + "id_car_serie": 48307, + "name": "2.5 CRDi AT AWD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238642, + "fields": { + "id_car_serie": 48307, + "name": "2.5 CRDi AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238643, + "fields": { + "id_car_serie": 49860, + "name": "4.7 V8 MT (436 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238644, + "fields": { + "id_car_serie": 49860, + "name": "4.7 V8 Sportshift (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238645, + "fields": { + "id_car_serie": 49860, + "name": "4.7 GT8 Sportshift II (446 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238646, + "fields": { + "id_car_serie": 46896, + "name": "R 300 7G-Tronic 4MATIC long base (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238648, + "fields": { + "id_car_serie": 46896, + "name": "R 350 7G-Tronic long base (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238649, + "fields": { + "id_car_serie": 51386, + "name": "1.0 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238650, + "fields": { + "id_car_serie": 51401, + "name": "2.0 D4 Drive-E Geartronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238651, + "fields": { + "id_car_serie": 51401, + "name": "2.0 D3 Drive-E Geartronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238652, + "fields": { + "id_car_serie": 51401, + "name": "2.0 D4 Drive-E MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238653, + "fields": { + "id_car_serie": 51401, + "name": "2.0 D3 Drive-E MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238654, + "fields": { + "id_car_serie": 51401, + "name": "2.4 D4 Drive-E Geartronic AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238655, + "fields": { + "id_car_serie": 51401, + "name": "2.5 T5 Drive-E Geartronic AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238656, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TSI MT L2 (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238657, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TDI MT 4MOTION L1 (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238658, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TDI MT L1 (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238659, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TDI MT L2 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238660, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TDI MT 4MOTION L2 (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238661, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TDI MT L2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238662, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TDI MT 4MOTION L2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238663, + "fields": { + "id_car_serie": 51429, + "name": "2.0 biTDI DSG 4MOTION L2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238664, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TDI DSG 4MOTION L2 (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238665, + "fields": { + "id_car_serie": 51429, + "name": "2.0 biTDI DSG L2 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238666, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TDI DSG L1 (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238667, + "fields": { + "id_car_serie": 51429, + "name": "2.0 biTDI DSG 4MOTION L2 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238668, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TDI DSG 4MOTION L1 (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238669, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TDI DSG L2 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238670, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TSI DSG L2 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238671, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TSI DSG L2 4MOTION (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238672, + "fields": { + "id_car_serie": 51429, + "name": "2.0 biTDI DSG L2 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238673, + "fields": { + "id_car_serie": 51429, + "name": "2.0 TDI DSG L2 (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238674, + "fields": { + "id_car_serie": 51432, + "name": "1.2 Puretech MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238675, + "fields": { + "id_car_serie": 51432, + "name": "1.6 THP AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238676, + "fields": { + "id_car_serie": 51432, + "name": "1.6 HDi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238677, + "fields": { + "id_car_serie": 51454, + "name": "5.0 GDI AT AWD (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238678, + "fields": { + "id_car_serie": 51454, + "name": "5.0 GDI AT (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238679, + "fields": { + "id_car_serie": 51455, + "name": "6.0 W12 AWD AT (642 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238680, + "fields": { + "id_car_serie": 51464, + "name": "6.0 W12 AWD AT (642 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238681, + "fields": { + "id_car_serie": 51467, + "name": "6.6 AT Black Badge (601 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238682, + "fields": { + "id_car_serie": 51518, + "name": "2.5 TFSI S tronic (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238683, + "fields": { + "id_car_serie": 53132, + "name": "1.6 d MT AWD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238684, + "fields": { + "id_car_serie": 53132, + "name": "1.6 d MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238685, + "fields": { + "id_car_serie": 53132, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238686, + "fields": { + "id_car_serie": 53132, + "name": "2.0 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238687, + "fields": { + "id_car_serie": 53132, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238688, + "fields": { + "id_car_serie": 53132, + "name": "2.3 d AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238689, + "fields": { + "id_car_serie": 53065, + "name": "3.3 AT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238690, + "fields": { + "id_car_serie": 53065, + "name": "3.8 AT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238691, + "fields": { + "id_car_serie": 53065, + "name": "3.8 AT AWD (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238692, + "fields": { + "id_car_serie": 53065, + "name": "5.0 AT (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238693, + "fields": { + "id_car_serie": 53065, + "name": "5.0 AT AWD (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238694, + "fields": { + "id_car_serie": 53223, + "name": "2.2 TDCi MT 300 L1 (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238695, + "fields": { + "id_car_serie": 53223, + "name": "2.2 TDCi MT 300 L2 (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238696, + "fields": { + "id_car_serie": 51530, + "name": "E 450 4MATIC G-TRONIC (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238697, + "fields": { + "id_car_serie": 53148, + "name": "M40d Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238698, + "fields": { + "id_car_serie": 53217, + "name": "1.0 TSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238699, + "fields": { + "id_car_serie": 53217, + "name": "1.0 MPI MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238700, + "fields": { + "id_car_serie": 53217, + "name": "1.0 MPI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238701, + "fields": { + "id_car_serie": 53217, + "name": "1.0 TSI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238702, + "fields": { + "id_car_serie": 53217, + "name": "1.0 TGI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238703, + "fields": { + "id_car_serie": 53217, + "name": "1.0 TSI DSG (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238704, + "fields": { + "id_car_serie": 53217, + "name": "1.0 TSI DSG (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238705, + "fields": { + "id_car_serie": 53217, + "name": "1.5 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238706, + "fields": { + "id_car_serie": 53217, + "name": "1.5 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238707, + "fields": { + "id_car_serie": 53217, + "name": "1.6 TDI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238708, + "fields": { + "id_car_serie": 53217, + "name": "1.6 TDI MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238709, + "fields": { + "id_car_serie": 53217, + "name": "1.6 TDI DSG (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238710, + "fields": { + "id_car_serie": 53217, + "name": "2.0 TSI GTI DSG (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238711, + "fields": { + "id_car_serie": 53462, + "name": "Skyactiv-G 2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238712, + "fields": { + "id_car_serie": 53462, + "name": "Skyactiv-G 2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238713, + "fields": { + "id_car_serie": 53462, + "name": "Skyactiv-G 2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238714, + "fields": { + "id_car_serie": 53462, + "name": "Skyactiv-D 2.2 AT AWD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238715, + "fields": { + "id_car_serie": 53462, + "name": "Skyactiv-D 2.2 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238716, + "fields": { + "id_car_serie": 53462, + "name": "Skyactiv-D 2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238717, + "fields": { + "id_car_serie": 53462, + "name": "Skyactiv-D 2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238718, + "fields": { + "id_car_serie": 53462, + "name": "Skyactiv-D 2.2 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238719, + "fields": { + "id_car_serie": 53462, + "name": "Skyactiv-D 2.2 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238720, + "fields": { + "id_car_serie": 53462, + "name": "Skyactiv-G 2.5 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238721, + "fields": { + "id_car_serie": 53524, + "name": "1.2 PureTech MT L1 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238722, + "fields": { + "id_car_serie": 53524, + "name": "1.2 PureTech MT L2 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238723, + "fields": { + "id_car_serie": 53524, + "name": "1.5 BlueHDi AT L2 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238724, + "fields": { + "id_car_serie": 53524, + "name": "1.5 BlueHDi AT L1 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238725, + "fields": { + "id_car_serie": 53524, + "name": "1.5 BlueHDi MT L1 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238726, + "fields": { + "id_car_serie": 53524, + "name": "1.5 BlueHDi MT L1 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238727, + "fields": { + "id_car_serie": 53524, + "name": "1.5 BlueHDi MT L1 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238728, + "fields": { + "id_car_serie": 53524, + "name": "1.5 BlueHDi MT L2 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238729, + "fields": { + "id_car_serie": 53405, + "name": "2.0 VC-T CVT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238730, + "fields": { + "id_car_serie": 53276, + "name": "620d xDrive Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238731, + "fields": { + "id_car_serie": 53276, + "name": "620d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238732, + "fields": { + "id_car_serie": 53406, + "name": "Skyactiv-G 2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238733, + "fields": { + "id_car_serie": 53406, + "name": "Skyactiv-G 2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238734, + "fields": { + "id_car_serie": 53406, + "name": "Skyactiv-G 2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238735, + "fields": { + "id_car_serie": 53406, + "name": "Skyactiv-D 2.2 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238736, + "fields": { + "id_car_serie": 53406, + "name": "Skyactiv-D 2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238737, + "fields": { + "id_car_serie": 53406, + "name": "Skyactiv-D 2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238738, + "fields": { + "id_car_serie": 53406, + "name": "Skyactiv-D 2.2 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238739, + "fields": { + "id_car_serie": 53406, + "name": "Skyactiv-G 2.5 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238740, + "fields": { + "id_car_serie": 53237, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238741, + "fields": { + "id_car_serie": 53467, + "name": "44kw 30 (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238742, + "fields": { + "id_car_serie": 53443, + "name": "xDrive30d Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238743, + "fields": { + "id_car_serie": 53348, + "name": "25t AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238744, + "fields": { + "id_car_serie": 53348, + "name": "3.0 S AT AWD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238745, + "fields": { + "id_car_serie": 53487, + "name": "A 180 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238746, + "fields": { + "id_car_serie": 53487, + "name": "A 160 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238747, + "fields": { + "id_car_serie": 53487, + "name": "A 220 7G-DCT 4MATIC (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238748, + "fields": { + "id_car_serie": 53487, + "name": "A 250 7G-DCT 4MATIC (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238749, + "fields": { + "id_car_serie": 53615, + "name": "0.9 TCe MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238750, + "fields": { + "id_car_serie": 53615, + "name": "0.9 TCe LPG MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238751, + "fields": { + "id_car_serie": 53615, + "name": "0.9 TCe Easy-R (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238752, + "fields": { + "id_car_serie": 53615, + "name": "1.2 16V MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238753, + "fields": { + "id_car_serie": 53615, + "name": "1.5 dCi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238754, + "fields": { + "id_car_serie": 53615, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238755, + "fields": { + "id_car_serie": 53615, + "name": "1.5 dCi Easy-R (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238756, + "fields": { + "id_car_serie": 53614, + "name": "0.9 TCe MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238757, + "fields": { + "id_car_serie": 53614, + "name": "0.9 TCe LPG MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238758, + "fields": { + "id_car_serie": 53614, + "name": "0.9 TCe Easy-R (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238759, + "fields": { + "id_car_serie": 53614, + "name": "1.0 SCe MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238760, + "fields": { + "id_car_serie": 53614, + "name": "1.5 dCi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238761, + "fields": { + "id_car_serie": 53614, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238762, + "fields": { + "id_car_serie": 53614, + "name": "1.5 dCi Easy-R (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238763, + "fields": { + "id_car_serie": 53625, + "name": "2.0 T8 Geartronic AWD (328 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238764, + "fields": { + "id_car_serie": 53625, + "name": "2.0 T8 Geartronic AWD (318 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238765, + "fields": { + "id_car_serie": 53625, + "name": "2.0 T8 Geartronic AWD (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238766, + "fields": { + "id_car_serie": 53625, + "name": "2.0 T8 Geartronic AWD (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238767, + "fields": { + "id_car_serie": 53625, + "name": "2.0 T6 Geartronic AWD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238768, + "fields": { + "id_car_serie": 53625, + "name": "2.0 T6 Geartronic AWD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238769, + "fields": { + "id_car_serie": 53625, + "name": "2.0 T5 Geartronic (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238770, + "fields": { + "id_car_serie": 53625, + "name": "2.0 T5 Geartronic (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238771, + "fields": { + "id_car_serie": 53628, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238772, + "fields": { + "id_car_serie": 53628, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238773, + "fields": { + "id_car_serie": 53612, + "name": "5.2 V12 AT (725 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238774, + "fields": { + "id_car_serie": 53629, + "name": "1.8 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238775, + "fields": { + "id_car_serie": 53613, + "name": "5.2 FSI quattro plus S tronic (610 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238776, + "fields": { + "id_car_serie": 53613, + "name": "V10 quattro S tronic (548 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238777, + "fields": { + "id_car_serie": 53613, + "name": "5.2 FSI quattro S tronic (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238778, + "fields": { + "id_car_serie": 53620, + "name": "2.5 CVT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238779, + "fields": { + "id_car_serie": 53620, + "name": "3.5 CVT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238780, + "fields": { + "id_car_serie": 53621, + "name": "3.0 MT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238781, + "fields": { + "id_car_serie": 53621, + "name": "3.0 PDK (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238782, + "fields": { + "id_car_serie": 53622, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238783, + "fields": { + "id_car_serie": 53622, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238784, + "fields": { + "id_car_serie": 53622, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238785, + "fields": { + "id_car_serie": 53623, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238786, + "fields": { + "id_car_serie": 53623, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238787, + "fields": { + "id_car_serie": 53623, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238788, + "fields": { + "id_car_serie": 53624, + "name": "1.0 VVT-i MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238789, + "fields": { + "id_car_serie": 53624, + "name": "1.0 VVT-i X-Shift (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238790, + "fields": { + "id_car_serie": 53630, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238791, + "fields": { + "id_car_serie": 53630, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238792, + "fields": { + "id_car_serie": 53630, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238793, + "fields": { + "id_car_serie": 53549, + "name": "2.0 VVT AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238794, + "fields": { + "id_car_serie": 53549, + "name": "3.6 V6 VVT AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238795, + "fields": { + "id_car_serie": 53549, + "name": "3.6 V6 VVT MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238796, + "fields": { + "id_car_serie": 53549, + "name": "6.2 V8 SS VVT AT (461 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238797, + "fields": { + "id_car_serie": 53549, + "name": "6.2 V8 SS VVT MT (461 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238798, + "fields": { + "id_car_serie": 53552, + "name": "200 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238799, + "fields": { + "id_car_serie": 53552, + "name": "250 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238800, + "fields": { + "id_car_serie": 53552, + "name": "350 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238801, + "fields": { + "id_car_serie": 53617, + "name": "0.9 TCe MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238802, + "fields": { + "id_car_serie": 53617, + "name": "0.9 TCe MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238803, + "fields": { + "id_car_serie": 53617, + "name": "0.9 TCe LPG MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238804, + "fields": { + "id_car_serie": 53617, + "name": "0.9 TCe Easy-R (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238805, + "fields": { + "id_car_serie": 53617, + "name": "1.2 16V MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238806, + "fields": { + "id_car_serie": 53617, + "name": "1.2 16V LPG MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238807, + "fields": { + "id_car_serie": 53617, + "name": "1.5 dCi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238808, + "fields": { + "id_car_serie": 53617, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238809, + "fields": { + "id_car_serie": 53617, + "name": "1.5 dCi Easy-R (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238810, + "fields": { + "id_car_serie": 53616, + "name": "0.9 TCe MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238811, + "fields": { + "id_car_serie": 53616, + "name": "0.9 TCe LPG MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238812, + "fields": { + "id_car_serie": 53616, + "name": "0.9 TCe Easy-R (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238813, + "fields": { + "id_car_serie": 53616, + "name": "1.2 16V MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238814, + "fields": { + "id_car_serie": 53616, + "name": "1.5 dCi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238815, + "fields": { + "id_car_serie": 53616, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238816, + "fields": { + "id_car_serie": 53616, + "name": "1.5 dCi Easy-R (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238817, + "fields": { + "id_car_serie": 1131, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238818, + "fields": { + "id_car_serie": 1131, + "name": "1.4 CRDi MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238819, + "fields": { + "id_car_serie": 1131, + "name": "1.6 CRDi MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238820, + "fields": { + "id_car_serie": 9453, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238821, + "fields": { + "id_car_serie": 9453, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238822, + "fields": { + "id_car_serie": 9453, + "name": "1.8 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238823, + "fields": { + "id_car_serie": 9451, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238824, + "fields": { + "id_car_serie": 9451, + "name": "1.8 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238825, + "fields": { + "id_car_serie": 2974, + "name": "sDrive25d Steptronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238826, + "fields": { + "id_car_serie": 2974, + "name": "xDrive25d Steptronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238827, + "fields": { + "id_car_serie": 3191, + "name": "1.0 MT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238828, + "fields": { + "id_car_serie": 3793, + "name": "2.0 AT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238829, + "fields": { + "id_car_serie": 3793, + "name": "2.0 MT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238830, + "fields": { + "id_car_serie": 3794, + "name": "2.0 AT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238831, + "fields": { + "id_car_serie": 3794, + "name": "2.0 MT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238832, + "fields": { + "id_car_serie": 4371, + "name": "1.4 TSI 6DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238833, + "fields": { + "id_car_serie": 4371, + "name": "2.0 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238834, + "fields": { + "id_car_serie": 4371, + "name": "2.0 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238835, + "fields": { + "id_car_serie": 15575, + "name": "3.0 CS DCT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238836, + "fields": { + "id_car_serie": 45559, + "name": "16d sDrive MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238837, + "fields": { + "id_car_serie": 45559, + "name": "18i sDrive MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238838, + "fields": { + "id_car_serie": 45559, + "name": "18i sDrive MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238839, + "fields": { + "id_car_serie": 45559, + "name": "18d sDrive Steptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238840, + "fields": { + "id_car_serie": 45559, + "name": "20i sDrive Steptronic (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238841, + "fields": { + "id_car_serie": 45559, + "name": "20d sDrive Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238842, + "fields": { + "id_car_serie": 45559, + "name": "18d sDrive MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238843, + "fields": { + "id_car_serie": 45559, + "name": "20d sDrive MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238844, + "fields": { + "id_car_serie": 45559, + "name": "18d xDrive MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238845, + "fields": { + "id_car_serie": 45559, + "name": "20i sDrive AMT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238846, + "fields": { + "id_car_serie": 47457, + "name": "1.4 TSI EcoFuel DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238847, + "fields": { + "id_car_serie": 47457, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238848, + "fields": { + "id_car_serie": 47457, + "name": "1.6 TDI DSG (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238851, + "fields": { + "id_car_serie": 47457, + "name": "2.0 TDI DSG (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238853, + "fields": { + "id_car_serie": 49760, + "name": "4.4 MT (568 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238854, + "fields": { + "id_car_serie": 49760, + "name": "4.4 M-DKG (568 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238855, + "fields": { + "id_car_serie": 49928, + "name": "518d Steptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238856, + "fields": { + "id_car_serie": 49928, + "name": "520d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238857, + "fields": { + "id_car_serie": 49928, + "name": "520d xDrive Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238858, + "fields": { + "id_car_serie": 49928, + "name": "520d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238859, + "fields": { + "id_car_serie": 49928, + "name": "518d MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238860, + "fields": { + "id_car_serie": 49948, + "name": "650i Steptronic (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238861, + "fields": { + "id_car_serie": 49948, + "name": "650i xDrive Steptronic (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238862, + "fields": { + "id_car_serie": 49949, + "name": "650i Steptronic (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238863, + "fields": { + "id_car_serie": 49949, + "name": "650i xDrive Steptronic (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238864, + "fields": { + "id_car_serie": 50380, + "name": "B 250 e AT (179 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238865, + "fields": { + "id_car_serie": 50981, + "name": "27527 2.8 TD MT AWD H2 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238866, + "fields": { + "id_car_serie": 50981, + "name": "2752 2.9 MT H2 (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238867, + "fields": { + "id_car_serie": 50981, + "name": "27527 2.9 MT AWD H2 (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238868, + "fields": { + "id_car_serie": 51389, + "name": "318d Steptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238869, + "fields": { + "id_car_serie": 51389, + "name": "330i xDrive Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238870, + "fields": { + "id_car_serie": 51389, + "name": "330i Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238871, + "fields": { + "id_car_serie": 51389, + "name": "320d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238872, + "fields": { + "id_car_serie": 51389, + "name": "325d Steptronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238873, + "fields": { + "id_car_serie": 51389, + "name": "320i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238874, + "fields": { + "id_car_serie": 51389, + "name": "320d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238875, + "fields": { + "id_car_serie": 51389, + "name": "318d MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238876, + "fields": { + "id_car_serie": 51389, + "name": "335d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238877, + "fields": { + "id_car_serie": 51389, + "name": "330d xDrive Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238878, + "fields": { + "id_car_serie": 51389, + "name": "330d Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238879, + "fields": { + "id_car_serie": 51390, + "name": "330e Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238880, + "fields": { + "id_car_serie": 51390, + "name": "316d Steptronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238881, + "fields": { + "id_car_serie": 51390, + "name": "318d Steptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238882, + "fields": { + "id_car_serie": 51390, + "name": "320d EfficientDynamics Steptronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238883, + "fields": { + "id_car_serie": 51390, + "name": "325d Steptronic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238884, + "fields": { + "id_car_serie": 51390, + "name": "325d Steptronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238885, + "fields": { + "id_car_serie": 51390, + "name": "318d xDrive MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238886, + "fields": { + "id_car_serie": 51390, + "name": "320d EfficientDynamics MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238887, + "fields": { + "id_car_serie": 51390, + "name": "318d MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238888, + "fields": { + "id_car_serie": 51390, + "name": "325d MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238889, + "fields": { + "id_car_serie": 51390, + "name": "325d MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238890, + "fields": { + "id_car_serie": 51390, + "name": "316d MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238891, + "fields": { + "id_car_serie": 51390, + "name": "330d xDrive Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238892, + "fields": { + "id_car_serie": 51390, + "name": "335d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238893, + "fields": { + "id_car_serie": 51390, + "name": "330d Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238894, + "fields": { + "id_car_serie": 51403, + "name": "640i Steptronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238895, + "fields": { + "id_car_serie": 51403, + "name": "640d Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238896, + "fields": { + "id_car_serie": 51403, + "name": "650i Steptronic (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238897, + "fields": { + "id_car_serie": 51402, + "name": "640i Steptronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238898, + "fields": { + "id_car_serie": 51402, + "name": "640d Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238899, + "fields": { + "id_car_serie": 51402, + "name": "650i Steptronic (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238900, + "fields": { + "id_car_serie": 51404, + "name": "640d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238901, + "fields": { + "id_car_serie": 51404, + "name": "640d Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238902, + "fields": { + "id_car_serie": 51405, + "name": "740e Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238903, + "fields": { + "id_car_serie": 53384, + "name": "430i xDrive Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238904, + "fields": { + "id_car_serie": 53384, + "name": "430i Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238905, + "fields": { + "id_car_serie": 53384, + "name": "420i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238906, + "fields": { + "id_car_serie": 53384, + "name": "420i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238907, + "fields": { + "id_car_serie": 53384, + "name": "430i MT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238908, + "fields": { + "id_car_serie": 53384, + "name": "420d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238909, + "fields": { + "id_car_serie": 53384, + "name": "435d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238910, + "fields": { + "id_car_serie": 53384, + "name": "440i xDrive Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238911, + "fields": { + "id_car_serie": 53384, + "name": "430d Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238912, + "fields": { + "id_car_serie": 51495, + "name": "2.4 4x4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238913, + "fields": { + "id_car_serie": 51495, + "name": "2.4 4x4 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238914, + "fields": { + "id_car_serie": 53224, + "name": "3.0 Competition Package MT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238915, + "fields": { + "id_car_serie": 53224, + "name": "3.0 Competition Package DCT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238916, + "fields": { + "id_car_serie": 51490, + "name": "525d Steptronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238917, + "fields": { + "id_car_serie": 51490, + "name": "530e iPerformance Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238918, + "fields": { + "id_car_serie": 51490, + "name": "540d xDrive Steptronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238919, + "fields": { + "id_car_serie": 53148, + "name": "xDrive25d Steptronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238920, + "fields": { + "id_car_serie": 53148, + "name": "sDrive20i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238921, + "fields": { + "id_car_serie": 53148, + "name": "xDrive30d Steptronic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238922, + "fields": { + "id_car_serie": 53385, + "name": "430i xDrive Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238923, + "fields": { + "id_car_serie": 53385, + "name": "430i Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238924, + "fields": { + "id_car_serie": 53385, + "name": "430i MT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238925, + "fields": { + "id_car_serie": 53385, + "name": "420d xDrive MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238926, + "fields": { + "id_car_serie": 53385, + "name": "420d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238927, + "fields": { + "id_car_serie": 53385, + "name": "420i xDrive MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238928, + "fields": { + "id_car_serie": 53385, + "name": "420i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238929, + "fields": { + "id_car_serie": 53385, + "name": "440i Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238930, + "fields": { + "id_car_serie": 53385, + "name": "430d Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238931, + "fields": { + "id_car_serie": 53385, + "name": "430d xDrive Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238932, + "fields": { + "id_car_serie": 53385, + "name": "435d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238933, + "fields": { + "id_car_serie": 53385, + "name": "440i MT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238934, + "fields": { + "id_car_serie": 53385, + "name": "440i xDrive MT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238935, + "fields": { + "id_car_serie": 53188, + "name": "E 200 9G-TRONIC 4MATIC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238936, + "fields": { + "id_car_serie": 53503, + "name": "1.6 CRDi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238937, + "fields": { + "id_car_serie": 53378, + "name": "3.0 Competition Package MT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238938, + "fields": { + "id_car_serie": 53378, + "name": "3.0 Competition Package DCT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238939, + "fields": { + "id_car_serie": 53210, + "name": "1.6 HDi MT M (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238940, + "fields": { + "id_car_serie": 53383, + "name": "430i xDrive Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238941, + "fields": { + "id_car_serie": 53383, + "name": "418d Steptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238942, + "fields": { + "id_car_serie": 53383, + "name": "420d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238943, + "fields": { + "id_car_serie": 53383, + "name": "430i Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238944, + "fields": { + "id_car_serie": 53383, + "name": "420d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238945, + "fields": { + "id_car_serie": 53383, + "name": "430i MT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238946, + "fields": { + "id_car_serie": 53383, + "name": "420i xDrive MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238947, + "fields": { + "id_car_serie": 53383, + "name": "420i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238948, + "fields": { + "id_car_serie": 53383, + "name": "420d xDrive MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238949, + "fields": { + "id_car_serie": 53383, + "name": "418d MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238950, + "fields": { + "id_car_serie": 53383, + "name": "435d xDrive Steptronic (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238951, + "fields": { + "id_car_serie": 53383, + "name": "430d xDrive Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238952, + "fields": { + "id_car_serie": 53383, + "name": "430d Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238953, + "fields": { + "id_car_serie": 53383, + "name": "440i Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238954, + "fields": { + "id_car_serie": 53459, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238955, + "fields": { + "id_car_serie": 53459, + "name": "2.0 T-GDI AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238956, + "fields": { + "id_car_serie": 53459, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238957, + "fields": { + "id_car_serie": 53459, + "name": "2.4 GDI AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238958, + "fields": { + "id_car_serie": 53502, + "name": "2.2 CRDi AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238959, + "fields": { + "id_car_serie": 53502, + "name": "2.2 CRDi AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238960, + "fields": { + "id_car_serie": 53502, + "name": "2.2 CRDi MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238961, + "fields": { + "id_car_serie": 53502, + "name": "2.2 CRDi MT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238962, + "fields": { + "id_car_serie": 53502, + "name": "2.4 GDi AT AWD (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238963, + "fields": { + "id_car_serie": 53502, + "name": "2.4 AT AWD (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238964, + "fields": { + "id_car_serie": 53502, + "name": "2.4 MT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238965, + "fields": { + "id_car_serie": 53502, + "name": "2.4 MT AWD (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238966, + "fields": { + "id_car_serie": 53538, + "name": "1.6 T-GDI MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238967, + "fields": { + "id_car_serie": 53538, + "name": "1.6 T-GDI MT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238968, + "fields": { + "id_car_serie": 53538, + "name": "1.6 T-GDI AMT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238969, + "fields": { + "id_car_serie": 53538, + "name": "1.6 T-GDI AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238970, + "fields": { + "id_car_serie": 53538, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238971, + "fields": { + "id_car_serie": 53538, + "name": "2.0 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238972, + "fields": { + "id_car_serie": 53538, + "name": "2.0 CRDi AT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238973, + "fields": { + "id_car_serie": 53538, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238974, + "fields": { + "id_car_serie": 53538, + "name": "2.0 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238975, + "fields": { + "id_car_serie": 53538, + "name": "2.0 CRDi MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238976, + "fields": { + "id_car_serie": 53538, + "name": "2.0 CRDi MT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238977, + "fields": { + "id_car_serie": 53546, + "name": "C 300 9G-TRONIC (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238978, + "fields": { + "id_car_serie": 53628, + "name": "2.0 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238979, + "fields": { + "id_car_serie": 53628, + "name": "2.0 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238980, + "fields": { + "id_car_serie": 53635, + "name": "0.9 TCe MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238981, + "fields": { + "id_car_serie": 53635, + "name": "0.9 TCe LPG MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238982, + "fields": { + "id_car_serie": 53635, + "name": "0.9 TCe Easy-R (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238983, + "fields": { + "id_car_serie": 53635, + "name": "1.0 SCe MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238984, + "fields": { + "id_car_serie": 53635, + "name": "1.5 dCi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238985, + "fields": { + "id_car_serie": 53635, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238986, + "fields": { + "id_car_serie": 53635, + "name": "1.5 dCi Easy-R (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238987, + "fields": { + "id_car_serie": 53636, + "name": "0.9 TCe MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238988, + "fields": { + "id_car_serie": 53636, + "name": "0.9 TCe LPG MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238989, + "fields": { + "id_car_serie": 53636, + "name": "0.9 TCe Easy-R (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238990, + "fields": { + "id_car_serie": 53636, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238991, + "fields": { + "id_car_serie": 53636, + "name": "1.5 dCi Easy-R (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238992, + "fields": { + "id_car_serie": 53637, + "name": "1.5 dCi MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238993, + "fields": { + "id_car_serie": 53637, + "name": "1.5 dCi MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238994, + "fields": { + "id_car_serie": 53637, + "name": "1.6 MPI MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238995, + "fields": { + "id_car_serie": 53637, + "name": "1.6 MPI MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238996, + "fields": { + "id_car_serie": 53637, + "name": "1.6 MPI LPG MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238997, + "fields": { + "id_car_serie": 53642, + "name": "1.8 AT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 238999, + "fields": { + "id_car_serie": 53642, + "name": "1.8 MT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239000, + "fields": { + "id_car_serie": 53645, + "name": "1.2 TSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239001, + "fields": { + "id_car_serie": 53645, + "name": "1.4 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239002, + "fields": { + "id_car_serie": 53645, + "name": "1.4 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239003, + "fields": { + "id_car_serie": 53645, + "name": "1.6 TDI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239004, + "fields": { + "id_car_serie": 53645, + "name": "1.6 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239005, + "fields": { + "id_car_serie": 53645, + "name": "1.6 TDI DSG (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239006, + "fields": { + "id_car_serie": 53645, + "name": "1.6 TDI DSG (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239007, + "fields": { + "id_car_serie": 53645, + "name": "1.8 TSI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239008, + "fields": { + "id_car_serie": 53645, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239009, + "fields": { + "id_car_serie": 53645, + "name": "2.0 TDI DSG (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239010, + "fields": { + "id_car_serie": 53645, + "name": "2.0 TDI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239011, + "fields": { + "id_car_serie": 53650, + "name": "1.5 AMT Hybrid AWD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239012, + "fields": { + "id_car_serie": 53650, + "name": "1.5 AMT Hybrid (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239013, + "fields": { + "id_car_serie": 53650, + "name": "1.5 CVT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239014, + "fields": { + "id_car_serie": 53650, + "name": "1.5 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239015, + "fields": { + "id_car_serie": 46433, + "name": "1.0 CVT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239020, + "fields": { + "id_car_serie": 53638, + "name": "1.0 AT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239021, + "fields": { + "id_car_serie": 53638, + "name": "1.0 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239022, + "fields": { + "id_car_serie": 53638, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239023, + "fields": { + "id_car_serie": 53638, + "name": "1.0 MT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239024, + "fields": { + "id_car_serie": 53638, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239025, + "fields": { + "id_car_serie": 53638, + "name": "1.3 AT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239026, + "fields": { + "id_car_serie": 53638, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239027, + "fields": { + "id_car_serie": 53638, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239028, + "fields": { + "id_car_serie": 53638, + "name": "1.3 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239029, + "fields": { + "id_car_serie": 53639, + "name": "0.7 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239030, + "fields": { + "id_car_serie": 53639, + "name": "1.0 AT 4WD (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239031, + "fields": { + "id_car_serie": 53639, + "name": "1.0 AT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239032, + "fields": { + "id_car_serie": 53639, + "name": "1.0 MT 4WD (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239033, + "fields": { + "id_car_serie": 53639, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239034, + "fields": { + "id_car_serie": 53639, + "name": "1.3 AT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239035, + "fields": { + "id_car_serie": 53639, + "name": "1.3 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239036, + "fields": { + "id_car_serie": 53639, + "name": "1.3 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239037, + "fields": { + "id_car_serie": 53639, + "name": "1.3 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239038, + "fields": { + "id_car_serie": 3793, + "name": "1.8 AT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239039, + "fields": { + "id_car_serie": 3793, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239040, + "fields": { + "id_car_serie": 3793, + "name": "1.8 MT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239041, + "fields": { + "id_car_serie": 53646, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239042, + "fields": { + "id_car_serie": 53646, + "name": "1.4 TSI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239043, + "fields": { + "id_car_serie": 53646, + "name": "1.4 TSI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239044, + "fields": { + "id_car_serie": 53646, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239045, + "fields": { + "id_car_serie": 53646, + "name": "2.0 TDI DSG (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239046, + "fields": { + "id_car_serie": 53646, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239047, + "fields": { + "id_car_serie": 53646, + "name": "2.0 TDI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239048, + "fields": { + "id_car_serie": 53647, + "name": "1.3 CVT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239049, + "fields": { + "id_car_serie": 53647, + "name": "1.5 CVT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239050, + "fields": { + "id_car_serie": 53647, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239051, + "fields": { + "id_car_serie": 53648, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239052, + "fields": { + "id_car_serie": 53648, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239053, + "fields": { + "id_car_serie": 53648, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239054, + "fields": { + "id_car_serie": 53648, + "name": "2.0 d AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239055, + "fields": { + "id_car_serie": 53648, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239056, + "fields": { + "id_car_serie": 53648, + "name": "2.0 AT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239057, + "fields": { + "id_car_serie": 53648, + "name": "2.0 d MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239058, + "fields": { + "id_car_serie": 53648, + "name": "2.0 MT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239059, + "fields": { + "id_car_serie": 53648, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239060, + "fields": { + "id_car_serie": 53648, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239061, + "fields": { + "id_car_serie": 53649, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239062, + "fields": { + "id_car_serie": 53649, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239063, + "fields": { + "id_car_serie": 53649, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239064, + "fields": { + "id_car_serie": 53649, + "name": "2.0 d AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239065, + "fields": { + "id_car_serie": 53649, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239066, + "fields": { + "id_car_serie": 53649, + "name": "2.0 AT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239067, + "fields": { + "id_car_serie": 53649, + "name": "2.0 d MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239068, + "fields": { + "id_car_serie": 53649, + "name": "2.0 MT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239069, + "fields": { + "id_car_serie": 53649, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239070, + "fields": { + "id_car_serie": 53649, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239071, + "fields": { + "id_car_serie": 53651, + "name": "1.5 AMT Hybrid AWD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239072, + "fields": { + "id_car_serie": 53651, + "name": "1.5 AMT Hybrid (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239073, + "fields": { + "id_car_serie": 53651, + "name": "1.5 CVT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239074, + "fields": { + "id_car_serie": 53651, + "name": "1.5 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239075, + "fields": { + "id_car_serie": 53653, + "name": "4.4 MT (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239076, + "fields": { + "id_car_serie": 53653, + "name": "4.4 Competition Package M-DCT (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239077, + "fields": { + "id_car_serie": 53654, + "name": "4.4 MT (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239078, + "fields": { + "id_car_serie": 53654, + "name": "4.4 Competition Package M-DCT (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239079, + "fields": { + "id_car_serie": 53655, + "name": "4.4 MT (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239080, + "fields": { + "id_car_serie": 53655, + "name": "4.4 Competition Package M-DCT (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239081, + "fields": { + "id_car_serie": 53657, + "name": "118i Steptronic (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239082, + "fields": { + "id_car_serie": 53657, + "name": "120i Steptronic (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239083, + "fields": { + "id_car_serie": 53657, + "name": "125i Steptronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239084, + "fields": { + "id_car_serie": 53658, + "name": "530i xDrive Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239085, + "fields": { + "id_car_serie": 53658, + "name": "520i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239086, + "fields": { + "id_car_serie": 53658, + "name": "530i Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239087, + "fields": { + "id_car_serie": 53658, + "name": "520d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239088, + "fields": { + "id_car_serie": 53658, + "name": "525d Steptronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239089, + "fields": { + "id_car_serie": 53658, + "name": "520d xDrive Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239090, + "fields": { + "id_car_serie": 53658, + "name": "520d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239091, + "fields": { + "id_car_serie": 53658, + "name": "540i xDrive Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239092, + "fields": { + "id_car_serie": 53658, + "name": "530d Steptronic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239093, + "fields": { + "id_car_serie": 53658, + "name": "530d xDrive Steptronic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239094, + "fields": { + "id_car_serie": 53658, + "name": "540d xDrive Steptronic (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239095, + "fields": { + "id_car_serie": 53658, + "name": "M550d xDrive Steptronic (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239302, + "fields": { + "id_car_serie": 1224, + "name": "2.0 Turbo DCT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239303, + "fields": { + "id_car_serie": 46416, + "name": "3.6 8AT (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239304, + "fields": { + "id_car_serie": 46416, + "name": "3.6 8AT AWD (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239305, + "fields": { + "id_car_serie": 46416, + "name": "3.6 8AT AWD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239306, + "fields": { + "id_car_serie": 46543, + "name": "225 Six TorqueFlite (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239307, + "fields": { + "id_car_serie": 46543, + "name": "225 Six MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239308, + "fields": { + "id_car_serie": 46543, + "name": "318 V8 TorqueFlite (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239309, + "fields": { + "id_car_serie": 46543, + "name": "318 V8 MT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239310, + "fields": { + "id_car_serie": 46543, + "name": "340 V8 TorqueFlite (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239311, + "fields": { + "id_car_serie": 46543, + "name": "340 V8 MT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239312, + "fields": { + "id_car_serie": 46543, + "name": "383 V8 4bbl TorqueFlite (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239313, + "fields": { + "id_car_serie": 46543, + "name": "383 V8 2bbl TorqueFlite (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239314, + "fields": { + "id_car_serie": 46543, + "name": "383 V8 4bbl MT (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239315, + "fields": { + "id_car_serie": 46543, + "name": "426 V8 Hemi TorqueFlite (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239316, + "fields": { + "id_car_serie": 46543, + "name": "426 V8 Hemi MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239317, + "fields": { + "id_car_serie": 46543, + "name": "440 V8 Magnum TorqueFlite (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239318, + "fields": { + "id_car_serie": 46543, + "name": "440 V8 Magnum Six Pack TorqueFlite (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239319, + "fields": { + "id_car_serie": 46543, + "name": "440 V8 Magnum Six Pack MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239320, + "fields": { + "id_car_serie": 46543, + "name": "440 V8 Magnum MT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239321, + "fields": { + "id_car_serie": 49878, + "name": "116d Steptronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239322, + "fields": { + "id_car_serie": 49878, + "name": "116d EfficientDynamics MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239323, + "fields": { + "id_car_serie": 49878, + "name": "116i MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239324, + "fields": { + "id_car_serie": 49878, + "name": "116d MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239325, + "fields": { + "id_car_serie": 49878, + "name": "120i MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239326, + "fields": { + "id_car_serie": 49878, + "name": "125i Steptronic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239327, + "fields": { + "id_car_serie": 49878, + "name": "118d Steptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239328, + "fields": { + "id_car_serie": 49878, + "name": "125d Steptronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239329, + "fields": { + "id_car_serie": 49878, + "name": "125i Steptronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239330, + "fields": { + "id_car_serie": 49878, + "name": "120i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239331, + "fields": { + "id_car_serie": 49878, + "name": "125i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239332, + "fields": { + "id_car_serie": 49878, + "name": "118d MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239333, + "fields": { + "id_car_serie": 49878, + "name": "120d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239334, + "fields": { + "id_car_serie": 49878, + "name": "118d MT xDrive (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239335, + "fields": { + "id_car_serie": 49878, + "name": "M135i Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239336, + "fields": { + "id_car_serie": 49878, + "name": "M135i MT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239337, + "fields": { + "id_car_serie": 49878, + "name": "M140i MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239338, + "fields": { + "id_car_serie": 51389, + "name": "320i xDrive MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239339, + "fields": { + "id_car_serie": 51389, + "name": "340i Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239340, + "fields": { + "id_car_serie": 51390, + "name": "330i Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239341, + "fields": { + "id_car_serie": 51390, + "name": "330i xDrive Steptronic (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239342, + "fields": { + "id_car_serie": 51390, + "name": "330i xDrive MT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239343, + "fields": { + "id_car_serie": 51390, + "name": "330i MT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239344, + "fields": { + "id_car_serie": 51390, + "name": "340i Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239345, + "fields": { + "id_car_serie": 51390, + "name": "340i MT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239346, + "fields": { + "id_car_serie": 51428, + "name": "1.6 AT 4WD (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239347, + "fields": { + "id_car_serie": 51430, + "name": "2.7 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239348, + "fields": { + "id_car_serie": 51488, + "name": "2.0 BiTDI MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239349, + "fields": { + "id_car_serie": 51488, + "name": "2.0 TDI MT 4Motion (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239350, + "fields": { + "id_car_serie": 51488, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239351, + "fields": { + "id_car_serie": 51488, + "name": "2.0 TDI MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239352, + "fields": { + "id_car_serie": 51488, + "name": "2.0 TDI MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239353, + "fields": { + "id_car_serie": 51488, + "name": "2.0 BiTDI MT 4Motion (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239354, + "fields": { + "id_car_serie": 51488, + "name": "2.0 TDI DSG 4Motion (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239355, + "fields": { + "id_car_serie": 51488, + "name": "2.0 BiTDI DSG 4Motion (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239356, + "fields": { + "id_car_serie": 51488, + "name": "2.0 TDI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239357, + "fields": { + "id_car_serie": 51488, + "name": "2.0 BiTDI DSG (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239358, + "fields": { + "id_car_serie": 53137, + "name": "1.4 TGI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239359, + "fields": { + "id_car_serie": 53137, + "name": "1.4 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239360, + "fields": { + "id_car_serie": 53137, + "name": "1.4 TGI DSG (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239361, + "fields": { + "id_car_serie": 53137, + "name": "1.5 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239362, + "fields": { + "id_car_serie": 53137, + "name": "1.5 TSI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239363, + "fields": { + "id_car_serie": 53137, + "name": "1.5 TSI DSG (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239364, + "fields": { + "id_car_serie": 53137, + "name": "1.5 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239365, + "fields": { + "id_car_serie": 53137, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239366, + "fields": { + "id_car_serie": 53137, + "name": "1.8 TSI AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239367, + "fields": { + "id_car_serie": 53137, + "name": "1.8 TSI MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239368, + "fields": { + "id_car_serie": 53137, + "name": "1.8 TSI DSG 4Motion (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239369, + "fields": { + "id_car_serie": 51507, + "name": "2.0T AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239370, + "fields": { + "id_car_serie": 51507, + "name": "2.0T AMT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239371, + "fields": { + "id_car_serie": 51507, + "name": "2.4 AMT (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239372, + "fields": { + "id_car_serie": 53334, + "name": "1.5 T3 Drive-E MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239374, + "fields": { + "id_car_serie": 53334, + "name": "2.0 D4 Drive-E AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239375, + "fields": { + "id_car_serie": 53517, + "name": "2.0 T5 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239376, + "fields": { + "id_car_serie": 53526, + "name": "2.9 TFSI tiptronic quattro (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239377, + "fields": { + "id_car_serie": 53539, + "name": "2.0 CVT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239378, + "fields": { + "id_car_serie": 53539, + "name": "2.0 CVT AWD (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239379, + "fields": { + "id_car_serie": 53539, + "name": "2.4 CVT AWD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239380, + "fields": { + "id_car_serie": 53698, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239381, + "fields": { + "id_car_serie": 53698, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239382, + "fields": { + "id_car_serie": 53698, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239383, + "fields": { + "id_car_serie": 53698, + "name": "1.6 AMT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239384, + "fields": { + "id_car_serie": 53684, + "name": "1.0 T-GDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239385, + "fields": { + "id_car_serie": 53684, + "name": "1.4 T-GDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239386, + "fields": { + "id_car_serie": 53684, + "name": "1.4 T-GDI DCT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239387, + "fields": { + "id_car_serie": 53684, + "name": "1.6 CRDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239388, + "fields": { + "id_car_serie": 53684, + "name": "1.6 CRDi DCT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239389, + "fields": { + "id_car_serie": 53685, + "name": "1.6 Gamma AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239390, + "fields": { + "id_car_serie": 53685, + "name": "1.6 Gamma MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239391, + "fields": { + "id_car_serie": 53685, + "name": "2.0 Theta AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239392, + "fields": { + "id_car_serie": 53714, + "name": "1.6 Plug-in-Hybrid AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239393, + "fields": { + "id_car_serie": 53714, + "name": "1.6 Hybrid AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239394, + "fields": { + "id_car_serie": 53714, + "name": "88 kW Elektro AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239395, + "fields": { + "id_car_serie": 53704, + "name": "C 43 9G-TRONIC 4MATIC (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239396, + "fields": { + "id_car_serie": 53701, + "name": "116d Steptronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239397, + "fields": { + "id_car_serie": 53701, + "name": "118i Steptronic (136 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239398, + "fields": { + "id_car_serie": 53701, + "name": "118i MT (136 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239399, + "fields": { + "id_car_serie": 53701, + "name": "116i MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239400, + "fields": { + "id_car_serie": 53701, + "name": "116d MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239401, + "fields": { + "id_car_serie": 53701, + "name": "116d EfficientDynamics MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239402, + "fields": { + "id_car_serie": 53701, + "name": "120i Steptronic (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239404, + "fields": { + "id_car_serie": 53701, + "name": "120i MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239406, + "fields": { + "id_car_serie": 53701, + "name": "125i Steptronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239407, + "fields": { + "id_car_serie": 53701, + "name": "118d Steptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239408, + "fields": { + "id_car_serie": 53701, + "name": "120d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239409, + "fields": { + "id_car_serie": 53701, + "name": "120d Steptronic xDrive (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239410, + "fields": { + "id_car_serie": 53701, + "name": "125d Steptronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239411, + "fields": { + "id_car_serie": 53701, + "name": "120i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239412, + "fields": { + "id_car_serie": 53701, + "name": "125i Steptronic (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239413, + "fields": { + "id_car_serie": 53701, + "name": "118d MT xDrive (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239414, + "fields": { + "id_car_serie": 53701, + "name": "120i MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239415, + "fields": { + "id_car_serie": 53701, + "name": "120d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239416, + "fields": { + "id_car_serie": 53701, + "name": "125i MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239417, + "fields": { + "id_car_serie": 53701, + "name": "118d MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239418, + "fields": { + "id_car_serie": 53701, + "name": "M135i Steptronic (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239419, + "fields": { + "id_car_serie": 53701, + "name": "M140i Steptronic xDrive (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239420, + "fields": { + "id_car_serie": 53701, + "name": "M140i Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239421, + "fields": { + "id_car_serie": 53701, + "name": "M135i Steptronic xDrive (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239422, + "fields": { + "id_car_serie": 53701, + "name": "M135i MT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239423, + "fields": { + "id_car_serie": 53701, + "name": "M140i MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239424, + "fields": { + "id_car_serie": 53552, + "name": "300h CVT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239425, + "fields": { + "id_car_serie": 53552, + "name": "350 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239426, + "fields": { + "id_car_serie": 53678, + "name": "0.9 TCe MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239427, + "fields": { + "id_car_serie": 53678, + "name": "0.9 TCe Easy-R (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239428, + "fields": { + "id_car_serie": 53678, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239429, + "fields": { + "id_car_serie": 53589, + "name": "1.6 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239430, + "fields": { + "id_car_serie": 53589, + "name": "1.6 CVT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239431, + "fields": { + "id_car_serie": 53696, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239432, + "fields": { + "id_car_serie": 53696, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239433, + "fields": { + "id_car_serie": 53696, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239434, + "fields": { + "id_car_serie": 53696, + "name": "1.6 AMT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239435, + "fields": { + "id_car_serie": 53695, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239436, + "fields": { + "id_car_serie": 53695, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239437, + "fields": { + "id_car_serie": 53695, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239438, + "fields": { + "id_car_serie": 53695, + "name": "1.6 AMT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239439, + "fields": { + "id_car_serie": 53640, + "name": "1.6 GDI MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239440, + "fields": { + "id_car_serie": 53640, + "name": "1.6 T-GDI MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239441, + "fields": { + "id_car_serie": 53640, + "name": "1.6 T-GDI MT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239442, + "fields": { + "id_car_serie": 53640, + "name": "1.6 CRDi MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239443, + "fields": { + "id_car_serie": 53640, + "name": "1.6 CRDi MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239444, + "fields": { + "id_car_serie": 53640, + "name": "1.6 CRDi MT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239445, + "fields": { + "id_car_serie": 53640, + "name": "1.6 T-GDI DCT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239446, + "fields": { + "id_car_serie": 53640, + "name": "1.6 CRDi DCT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239447, + "fields": { + "id_car_serie": 53640, + "name": "2.0 CRDi AT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239448, + "fields": { + "id_car_serie": 53640, + "name": "2.0 CRDi MT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239449, + "fields": { + "id_car_serie": 53679, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239450, + "fields": { + "id_car_serie": 53679, + "name": "1.2 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239451, + "fields": { + "id_car_serie": 53679, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239452, + "fields": { + "id_car_serie": 53679, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239453, + "fields": { + "id_car_serie": 53679, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239454, + "fields": { + "id_car_serie": 53679, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239455, + "fields": { + "id_car_serie": 53679, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239456, + "fields": { + "id_car_serie": 53679, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239457, + "fields": { + "id_car_serie": 53679, + "name": "1.7 D MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239458, + "fields": { + "id_car_serie": 53679, + "name": "1.9 D MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239459, + "fields": { + "id_car_serie": 53681, + "name": "2.3 AT AWD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239460, + "fields": { + "id_car_serie": 53703, + "name": "C 43 SPEEDSHIFT 4MATIC (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239467, + "fields": { + "id_car_serie": 3292, + "name": "1.7 TD MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239471, + "fields": { + "id_car_serie": 9613, + "name": "1.5 d AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239472, + "fields": { + "id_car_serie": 9613, + "name": "1.5 AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239473, + "fields": { + "id_car_serie": 9613, + "name": "1.5 AT AWD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239474, + "fields": { + "id_car_serie": 9613, + "name": "1.5 MT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239475, + "fields": { + "id_car_serie": 9613, + "name": "1.5 MT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239476, + "fields": { + "id_car_serie": 9613, + "name": "1.5 MT AWD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239478, + "fields": { + "id_car_serie": 49859, + "name": "4.7 V8 MT (436 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239479, + "fields": { + "id_car_serie": 49859, + "name": "4.7 V8 Sportshift (436 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239480, + "fields": { + "id_car_serie": 53737, + "name": "A 200 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239481, + "fields": { + "id_car_serie": 53737, + "name": "A 200 7G-DCT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239482, + "fields": { + "id_car_serie": 53737, + "name": "A 200 7G-DCT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239483, + "fields": { + "id_car_serie": 53737, + "name": "A 180 d 7G-DCT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239484, + "fields": { + "id_car_serie": 53737, + "name": "A 220 7G-DCT 4MATIC (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239485, + "fields": { + "id_car_serie": 53738, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239486, + "fields": { + "id_car_serie": 53739, + "name": "1.6 MT (119 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239487, + "fields": { + "id_car_serie": 53739, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239488, + "fields": { + "id_car_serie": 53740, + "name": "1.8 5MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239489, + "fields": { + "id_car_serie": 1531, + "name": "2.5 D AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239490, + "fields": { + "id_car_serie": 53748, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239491, + "fields": { + "id_car_serie": 53748, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239492, + "fields": { + "id_car_serie": 53748, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239493, + "fields": { + "id_car_serie": 14878, + "name": "60 TFSI tiptronic quattro (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239494, + "fields": { + "id_car_serie": 14878, + "name": "60 TFSI L tiptronic quattro (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239495, + "fields": { + "id_car_serie": 15095, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239496, + "fields": { + "id_car_serie": 15095, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239497, + "fields": { + "id_car_serie": 50944, + "name": "2.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239498, + "fields": { + "id_car_serie": 51053, + "name": "E 450 4MATIC 9G-TRONIC (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239499, + "fields": { + "id_car_serie": 51429, + "name": "2.0 biTDI DSG L1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239500, + "fields": { + "id_car_serie": 51429, + "name": "2.0 biTDI DSG 4MOTION L1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239501, + "fields": { + "id_car_serie": 51462, + "name": "2.7 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239502, + "fields": { + "id_car_serie": 51461, + "name": "GTS 4.0 PDK AWD (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239503, + "fields": { + "id_car_serie": 53152, + "name": "GTS 4.0 PDK AWD (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239504, + "fields": { + "id_car_serie": 51527, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239505, + "fields": { + "id_car_serie": 51527, + "name": "2.0 Xtronic AWD (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239506, + "fields": { + "id_car_serie": 51527, + "name": "2.0 Xtronic (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239507, + "fields": { + "id_car_serie": 53055, + "name": "2.0 N Performance MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239508, + "fields": { + "id_car_serie": 53055, + "name": "2.0 N MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239509, + "fields": { + "id_car_serie": 53523, + "name": "2.0 Hybrid CVT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239510, + "fields": { + "id_car_serie": 53523, + "name": "2.0 CVT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239511, + "fields": { + "id_car_serie": 53523, + "name": "2.0 Hybrid CVT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239512, + "fields": { + "id_car_serie": 53406, + "name": "Skyactiv-G 2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239513, + "fields": { + "id_car_serie": 53541, + "name": "2.0 CVT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239514, + "fields": { + "id_car_serie": 53541, + "name": "2.5 CVT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239515, + "fields": { + "id_car_serie": 53688, + "name": "1.5 AT AWD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239516, + "fields": { + "id_car_serie": 53688, + "name": "1.5 MT AWD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239517, + "fields": { + "id_car_serie": 53756, + "name": "3.0 MT (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239518, + "fields": { + "id_car_serie": 53756, + "name": "3.0 DCT (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239519, + "fields": { + "id_car_serie": 53694, + "name": "2.0 TSI MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239520, + "fields": { + "id_car_serie": 53694, + "name": "2.0 TSI MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239521, + "fields": { + "id_car_serie": 53694, + "name": "2.0 TSI DSG (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239522, + "fields": { + "id_car_serie": 53694, + "name": "2.0 TDI DSG (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239523, + "fields": { + "id_car_serie": 53694, + "name": "2.0 TSI DSG (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239524, + "fields": { + "id_car_serie": 53566, + "name": "xDrive45e iPerformance Steptronic (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239525, + "fields": { + "id_car_serie": 53690, + "name": "1.0 TSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239526, + "fields": { + "id_car_serie": 53690, + "name": "1.0 TSI MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239527, + "fields": { + "id_car_serie": 53690, + "name": "1.0 TSI DSG (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239528, + "fields": { + "id_car_serie": 53690, + "name": "1.4 TSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239529, + "fields": { + "id_car_serie": 53690, + "name": "1.4 TGI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239530, + "fields": { + "id_car_serie": 53690, + "name": "1.4 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239531, + "fields": { + "id_car_serie": 53690, + "name": "1.4 TSI DSG (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239532, + "fields": { + "id_car_serie": 53690, + "name": "1.4 TGI DSG (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239533, + "fields": { + "id_car_serie": 53690, + "name": "1.5 TSI MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239534, + "fields": { + "id_car_serie": 53690, + "name": "1.5 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239535, + "fields": { + "id_car_serie": 53690, + "name": "1.5 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239536, + "fields": { + "id_car_serie": 53690, + "name": "1.5 TSI DSG (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239537, + "fields": { + "id_car_serie": 53690, + "name": "1.6 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239538, + "fields": { + "id_car_serie": 53690, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239539, + "fields": { + "id_car_serie": 53690, + "name": "1.6 TDI DSG (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239540, + "fields": { + "id_car_serie": 53690, + "name": "1.8 TSI AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239541, + "fields": { + "id_car_serie": 53690, + "name": "1.8 TSI MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239542, + "fields": { + "id_car_serie": 53690, + "name": "1.8 TSI DSG 4Motion (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239543, + "fields": { + "id_car_serie": 53690, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239544, + "fields": { + "id_car_serie": 53690, + "name": "2.0 TDI MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239545, + "fields": { + "id_car_serie": 53690, + "name": "2.0 TDI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239546, + "fields": { + "id_car_serie": 53690, + "name": "2.0 TDI DSG (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239547, + "fields": { + "id_car_serie": 53689, + "name": "2.0 TDI DSG 4Motion (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239548, + "fields": { + "id_car_serie": 53689, + "name": "2.0 TDI DSG 4Motion (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239549, + "fields": { + "id_car_serie": 53640, + "name": "2.0 MPI AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239550, + "fields": { + "id_car_serie": 53640, + "name": "2.0 MPI AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239551, + "fields": { + "id_car_serie": 53640, + "name": "2.0 MPI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239552, + "fields": { + "id_car_serie": 53640, + "name": "2.0 MPI MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239553, + "fields": { + "id_car_serie": 53640, + "name": "2.4 Theta GDI AT AWD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239554, + "fields": { + "id_car_serie": 53644, + "name": "2.0 PDK AWD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239555, + "fields": { + "id_car_serie": 53693, + "name": "2.0 TSI MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239556, + "fields": { + "id_car_serie": 53693, + "name": "2.0 TSI MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239557, + "fields": { + "id_car_serie": 53693, + "name": "2.0 TDI DSG (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239558, + "fields": { + "id_car_serie": 53693, + "name": "2.0 TSI DSG (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239559, + "fields": { + "id_car_serie": 53693, + "name": "2.0 TSI DSG (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239560, + "fields": { + "id_car_serie": 53676, + "name": "sDrive20i Steptronic (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239561, + "fields": { + "id_car_serie": 53676, + "name": "sDrive30i Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239562, + "fields": { + "id_car_serie": 53676, + "name": "M40i Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239563, + "fields": { + "id_car_serie": 53750, + "name": "1.0 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239564, + "fields": { + "id_car_serie": 53750, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239565, + "fields": { + "id_car_serie": 53750, + "name": "1.0 DSG (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239566, + "fields": { + "id_car_serie": 53750, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239567, + "fields": { + "id_car_serie": 53750, + "name": "1.5 DSG (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239568, + "fields": { + "id_car_serie": 53750, + "name": "1.5 DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239569, + "fields": { + "id_car_serie": 53745, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239570, + "fields": { + "id_car_serie": 53745, + "name": "1.8 CVT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239571, + "fields": { + "id_car_serie": 53746, + "name": "1.0 T-GDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239572, + "fields": { + "id_car_serie": 53746, + "name": "1.4 T-GDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239573, + "fields": { + "id_car_serie": 53746, + "name": "1.4 T-GDI DCT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239574, + "fields": { + "id_car_serie": 53746, + "name": "2.0 N MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239575, + "fields": { + "id_car_serie": 53746, + "name": "2.0 N Performance MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239579, + "fields": { + "id_car_serie": 53757, + "name": "1.2 PureTech AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239580, + "fields": { + "id_car_serie": 53757, + "name": "1.2 PureTech MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239581, + "fields": { + "id_car_serie": 53757, + "name": "1.2 PureTech MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239582, + "fields": { + "id_car_serie": 53757, + "name": "1.2 PureTech MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239583, + "fields": { + "id_car_serie": 53757, + "name": "1.6 THP MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239584, + "fields": { + "id_car_serie": 53757, + "name": "1.6 BlueHDI MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239585, + "fields": { + "id_car_serie": 53757, + "name": "1.6 BlueHDI MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239586, + "fields": { + "id_car_serie": 53763, + "name": "55 quattro (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239587, + "fields": { + "id_car_serie": 53760, + "name": "A 35 SpeedShift 4Matic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239588, + "fields": { + "id_car_serie": 53764, + "name": "xDrive30d Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239589, + "fields": { + "id_car_serie": 53764, + "name": "xDrive40i Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239590, + "fields": { + "id_car_serie": 53764, + "name": "M50d Steptronic (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239591, + "fields": { + "id_car_serie": 53764, + "name": "xDrive30d Steptronic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239592, + "fields": { + "id_car_serie": 53764, + "name": "xDrive50i Steptronic (462 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239593, + "fields": { + "id_car_serie": 53759, + "name": "320d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239594, + "fields": { + "id_car_serie": 53759, + "name": "320d Steptronic xDrive (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239595, + "fields": { + "id_car_serie": 53759, + "name": "330i Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239596, + "fields": { + "id_car_serie": 53759, + "name": "320d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239597, + "fields": { + "id_car_serie": 53761, + "name": "2.0 BiTDI DSG 4X4 (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239598, + "fields": { + "id_car_serie": 53517, + "name": "2.0 D3 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239599, + "fields": { + "id_car_serie": 53517, + "name": "2.0 D4 AT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239601, + "fields": { + "id_car_serie": 53517, + "name": "2.0 T5 AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239602, + "fields": { + "id_car_serie": 53747, + "name": "1.2 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239603, + "fields": { + "id_car_serie": 53747, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239604, + "fields": { + "id_car_serie": 53747, + "name": "1.5 CVT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239605, + "fields": { + "id_car_serie": 53747, + "name": "1.6 AT AWD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239606, + "fields": { + "id_car_serie": 53747, + "name": "1.8 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239613, + "fields": { + "id_car_serie": 53626, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239614, + "fields": { + "id_car_serie": 53626, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239615, + "fields": { + "id_car_serie": 53626, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239616, + "fields": { + "id_car_serie": 53626, + "name": "1.6 AMT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239617, + "fields": { + "id_car_serie": 53710, + "name": "0.7 CVT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239618, + "fields": { + "id_car_serie": 53710, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239619, + "fields": { + "id_car_serie": 53710, + "name": "0.7 CVT AWD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239620, + "fields": { + "id_car_serie": 53710, + "name": "0.7 CVT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239621, + "fields": { + "id_car_serie": 53711, + "name": "0.7 MT AWD (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239622, + "fields": { + "id_car_serie": 53711, + "name": "0.7 MT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239623, + "fields": { + "id_car_serie": 53711, + "name": "0.7 CVT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239624, + "fields": { + "id_car_serie": 53711, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239625, + "fields": { + "id_car_serie": 53711, + "name": "0.7 CVT AWD (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239626, + "fields": { + "id_car_serie": 53711, + "name": "0.7 CVT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239627, + "fields": { + "id_car_serie": 53800, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239628, + "fields": { + "id_car_serie": 53800, + "name": "1.8 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239629, + "fields": { + "id_car_serie": 53810, + "name": "1.6 MT", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239630, + "fields": { + "id_car_serie": 53811, + "name": "2.0 (220 hp) TDI (177 Hp) BMT 4MOTION DSG", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239632, + "fields": { + "id_car_serie": 53317, + "name": "1.6 TDI BMT", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239633, + "fields": { + "id_car_serie": 53812, + "name": "Cummins ISF 2.8 (163 hp)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239634, + "fields": { + "id_car_serie": 53812, + "name": "turbo motor 2,3 l. (250 h.p.)", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239635, + "fields": { + "id_car_serie": 53813, + "name": "1.5 (113 hp) gasoline automatic transmission", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2018 + } +}, +{ + "model": "inventory.cartrim", + "pk": 239636, + "fields": { + "id_car_serie": 53814, + "name": "1.5 (113 hp) gasoline automatic transmission", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2018 + } +}, +{ + "model": "inventory.cartrim", + "pk": 239637, + "fields": { + "id_car_serie": 53815, + "name": "2.5 (75 hp) petrol manual transmission", + "arabic_name": "-", + "start_production_year": 1964, + "end_production_year": 1987 + } +}, +{ + "model": "inventory.cartrim", + "pk": 239638, + "fields": { + "id_car_serie": 53816, + "name": "136 HP electro", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239639, + "fields": { + "id_car_serie": 53817, + "name": "2.5 (113 HP) gasoline", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 239640, + "fields": { + "id_car_serie": 53818, + "name": "2.4 (130 hp) gasoline manual transmission", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2017 + } +}, +{ + "model": "inventory.cartrim", + "pk": 239641, + "fields": { + "id_car_serie": 53818, + "name": "2.7 (150 hp) gasoline manual transmission", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2017 + } +}, +{ + "model": "inventory.cartrim", + "pk": 239642, + "fields": { + "id_car_serie": 53818, + "name": "3.0 (160 hp) gasoline manual transmission", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2017 + } +}, +{ + "model": "inventory.cartrim", + "pk": 239643, + "fields": { + "id_car_serie": 53818, + "name": "3.4 (185 hp) gasoline automatic transmission", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2017 + } +}, +{ + "model": "inventory.cartrim", + "pk": 239645, + "fields": { + "id_car_serie": 53819, + "name": "1.5 (113 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239646, + "fields": { + "id_car_serie": 53820, + "name": "1.8 (177hp) manual transmission", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239647, + "fields": { + "id_car_serie": 53820, + "name": "2.0 (204 hp) manual transmission", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239648, + "fields": { + "id_car_serie": 53820, + "name": "2.0 (204 hp) automatic transmission", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239649, + "fields": { + "id_car_serie": 53820, + "name": "1.8 (177hp) automatic transmission", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239650, + "fields": { + "id_car_serie": 53822, + "name": "1.3 (102 HP) mechanics 5-speed", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239651, + "fields": { + "id_car_serie": 53822, + "name": "1.5 (116 hp) automatic transmission 4 steps", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239652, + "fields": { + "id_car_serie": 53823, + "name": "1.5 (113 hp) manual transmission", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239653, + "fields": { + "id_car_serie": 53823, + "name": "1.5 (113 hp) variator", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239654, + "fields": { + "id_car_serie": 3218, + "name": "3.7 AT AWD (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239655, + "fields": { + "id_car_serie": 3218, + "name": "6.7 TD MT AWD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239656, + "fields": { + "id_car_serie": 3487, + "name": "2.0 CRDi AT 2WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239657, + "fields": { + "id_car_serie": 3487, + "name": "2.0 AT 2WD (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239658, + "fields": { + "id_car_serie": 3487, + "name": "2.0 CRDi MT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239659, + "fields": { + "id_car_serie": 3846, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239660, + "fields": { + "id_car_serie": 3846, + "name": "1.4 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239661, + "fields": { + "id_car_serie": 3846, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239662, + "fields": { + "id_car_serie": 3846, + "name": "1.5 D MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239663, + "fields": { + "id_car_serie": 3846, + "name": "1.5 D MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239664, + "fields": { + "id_car_serie": 3846, + "name": "1.6 SR MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239665, + "fields": { + "id_car_serie": 5967, + "name": "3.7 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239666, + "fields": { + "id_car_serie": 5967, + "name": "3.7 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239667, + "fields": { + "id_car_serie": 5967, + "name": "4.7 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239668, + "fields": { + "id_car_serie": 5967, + "name": "4.7 AT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239669, + "fields": { + "id_car_serie": 5967, + "name": "4.7 MT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239670, + "fields": { + "id_car_serie": 5967, + "name": "5.7 AT AWD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239671, + "fields": { + "id_car_serie": 5967, + "name": "5.7 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239672, + "fields": { + "id_car_serie": 5967, + "name": "5.7 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239673, + "fields": { + "id_car_serie": 5967, + "name": "5.9 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239674, + "fields": { + "id_car_serie": 5967, + "name": "5.9 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239675, + "fields": { + "id_car_serie": 5967, + "name": "5.9 TD AT AWD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239676, + "fields": { + "id_car_serie": 5967, + "name": "5.9 TD MT AWD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239677, + "fields": { + "id_car_serie": 5967, + "name": "6.7 TD AT AWD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239678, + "fields": { + "id_car_serie": 5967, + "name": "6.7 TD MT AWD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239679, + "fields": { + "id_car_serie": 5967, + "name": "8.3 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239680, + "fields": { + "id_car_serie": 5967, + "name": "8.3 MT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239681, + "fields": { + "id_car_serie": 6686, + "name": "430 AT (283 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239682, + "fields": { + "id_car_serie": 6686, + "name": "430 AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239683, + "fields": { + "id_car_serie": 7228, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239684, + "fields": { + "id_car_serie": 7228, + "name": "1.4 CVT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239685, + "fields": { + "id_car_serie": 7230, + "name": "1.0i AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239686, + "fields": { + "id_car_serie": 7230, + "name": "1.3i 16V AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239687, + "fields": { + "id_car_serie": 7230, + "name": "1.3i 16V MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239688, + "fields": { + "id_car_serie": 14812, + "name": "300h CVT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239689, + "fields": { + "id_car_serie": 14812, + "name": "350 AT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239690, + "fields": { + "id_car_serie": 14812, + "name": "350 AT AWD (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239691, + "fields": { + "id_car_serie": 14812, + "name": "450h CVT (293 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239692, + "fields": { + "id_car_serie": 46012, + "name": "LP 640-4 PERFORMANTE (640 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239693, + "fields": { + "id_car_serie": 46055, + "name": "5.0 AT AWD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239694, + "fields": { + "id_car_serie": 47035, + "name": "3.9 AMT Pista (720 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239695, + "fields": { + "id_car_serie": 48783, + "name": "1.5 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239696, + "fields": { + "id_car_serie": 48784, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239697, + "fields": { + "id_car_serie": 48784, + "name": "1.0 CVT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239698, + "fields": { + "id_car_serie": 48784, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239699, + "fields": { + "id_car_serie": 48784, + "name": "1.3 CVT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239700, + "fields": { + "id_car_serie": 48785, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239701, + "fields": { + "id_car_serie": 48785, + "name": "1.0 CVT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239702, + "fields": { + "id_car_serie": 48785, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239703, + "fields": { + "id_car_serie": 48785, + "name": "1.3 CVT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239704, + "fields": { + "id_car_serie": 48785, + "name": "1.5 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239705, + "fields": { + "id_car_serie": 50185, + "name": "2.2 TDCi MT FWD 280 SWB (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239706, + "fields": { + "id_car_serie": 51053, + "name": "E 200 9G-TRONIC (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239707, + "fields": { + "id_car_serie": 51393, + "name": "2.0 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239708, + "fields": { + "id_car_serie": 51393, + "name": "2.0 MT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239709, + "fields": { + "id_car_serie": 51393, + "name": "3.6 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239710, + "fields": { + "id_car_serie": 51393, + "name": "3.6 MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239711, + "fields": { + "id_car_serie": 51393, + "name": "6.2 AT (461 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239712, + "fields": { + "id_car_serie": 51393, + "name": "6.2 AT (659 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239713, + "fields": { + "id_car_serie": 51393, + "name": "6.2 MT (461 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239714, + "fields": { + "id_car_serie": 51393, + "name": "6.2 MT (659 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239715, + "fields": { + "id_car_serie": 51529, + "name": "E 400 d 4MATIC 9G-Tronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239716, + "fields": { + "id_car_serie": 53152, + "name": "Turbo S E-Hybrid 4.0 PDK AWD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239717, + "fields": { + "id_car_serie": 53236, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239718, + "fields": { + "id_car_serie": 53259, + "name": "E-Hybrid 3.0 Tiptronic AWD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239719, + "fields": { + "id_car_serie": 53380, + "name": "2.0 AT AWD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239720, + "fields": { + "id_car_serie": 53396, + "name": "18d xDrive Steptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239721, + "fields": { + "id_car_serie": 53396, + "name": "M35i xDrive Steptronic (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239722, + "fields": { + "id_car_serie": 53406, + "name": "Skyactiv-G 2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239723, + "fields": { + "id_car_serie": 53406, + "name": "Skyactiv-G 2.5T AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239724, + "fields": { + "id_car_serie": 53434, + "name": "1.2 PureTech MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239725, + "fields": { + "id_car_serie": 53434, + "name": "1.5 BlueHDi AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239726, + "fields": { + "id_car_serie": 53434, + "name": "1.5 BlueHDi MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239727, + "fields": { + "id_car_serie": 53434, + "name": "1.6 PureTech AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239729, + "fields": { + "id_car_serie": 53501, + "name": "1.5 BlueHDi MT M (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239730, + "fields": { + "id_car_serie": 53501, + "name": "1.5 BlueHDi MT M (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239731, + "fields": { + "id_car_serie": 53501, + "name": "1.5 BlueHDi MT XL (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239732, + "fields": { + "id_car_serie": 53518, + "name": "43 4Matic+ Speedshift TCT 9G (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239733, + "fields": { + "id_car_serie": 53518, + "name": "53 4Matic+ Speedshift TCT 9G (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239734, + "fields": { + "id_car_serie": 53518, + "name": "63 4Matic+ Speedshift MCT 9G (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239735, + "fields": { + "id_car_serie": 53518, + "name": "63 S 4Matic+ Speedshift MCT 9G (639 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239736, + "fields": { + "id_car_serie": 53543, + "name": "2.5 AT (206 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239737, + "fields": { + "id_car_serie": 53543, + "name": "2.5 AT AWD (206 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239738, + "fields": { + "id_car_serie": 53543, + "name": "2.5 Hybrid CVT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239739, + "fields": { + "id_car_serie": 53547, + "name": "C 63 S SPEEDSHIFT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239740, + "fields": { + "id_car_serie": 53547, + "name": "C 63 SPEEDSHIFT (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239741, + "fields": { + "id_car_serie": 53550, + "name": "6.7 TD AT AWD LWB (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239742, + "fields": { + "id_car_serie": 53550, + "name": "6.7 TD AT AWD SWB (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239743, + "fields": { + "id_car_serie": 53550, + "name": "6.7 TD MT AWD SWB (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239744, + "fields": { + "id_car_serie": 53550, + "name": "6.7 TD MT AWD LWB (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239745, + "fields": { + "id_car_serie": 53567, + "name": "3.7 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239746, + "fields": { + "id_car_serie": 53567, + "name": "3.7 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239747, + "fields": { + "id_car_serie": 53567, + "name": "4.7 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239748, + "fields": { + "id_car_serie": 53567, + "name": "4.7 AT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239749, + "fields": { + "id_car_serie": 53567, + "name": "4.7 MT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239750, + "fields": { + "id_car_serie": 53567, + "name": "4.7 MT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239751, + "fields": { + "id_car_serie": 53567, + "name": "5.7 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239752, + "fields": { + "id_car_serie": 53567, + "name": "5.7 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239753, + "fields": { + "id_car_serie": 53567, + "name": "5.7 AT AWD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239754, + "fields": { + "id_car_serie": 53567, + "name": "5.7 MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239755, + "fields": { + "id_car_serie": 53567, + "name": "5.9 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239756, + "fields": { + "id_car_serie": 53567, + "name": "5.9 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239757, + "fields": { + "id_car_serie": 53567, + "name": "5.9 TD AT AWD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239758, + "fields": { + "id_car_serie": 53567, + "name": "5.9 TD MT AWD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239759, + "fields": { + "id_car_serie": 53567, + "name": "6.7 TD AT AWD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239760, + "fields": { + "id_car_serie": 53567, + "name": "6.7 TD MT AWD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239761, + "fields": { + "id_car_serie": 53567, + "name": "8.3 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239762, + "fields": { + "id_car_serie": 53567, + "name": "8.3 MT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239763, + "fields": { + "id_car_serie": 53568, + "name": "3.7 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239764, + "fields": { + "id_car_serie": 53568, + "name": "3.7 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239765, + "fields": { + "id_car_serie": 53568, + "name": "4.7 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239766, + "fields": { + "id_car_serie": 53568, + "name": "4.7 AT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239767, + "fields": { + "id_car_serie": 53568, + "name": "4.7 MT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239768, + "fields": { + "id_car_serie": 53568, + "name": "4.7 MT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239769, + "fields": { + "id_car_serie": 53568, + "name": "5.7 AT AWD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239770, + "fields": { + "id_car_serie": 53568, + "name": "5.7 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239771, + "fields": { + "id_car_serie": 53568, + "name": "5.7 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239772, + "fields": { + "id_car_serie": 53568, + "name": "5.7 MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239773, + "fields": { + "id_car_serie": 53568, + "name": "5.9 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239774, + "fields": { + "id_car_serie": 53568, + "name": "5.9 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239775, + "fields": { + "id_car_serie": 53568, + "name": "5.9 TD AT AWD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239776, + "fields": { + "id_car_serie": 53568, + "name": "5.9 TD MT AWD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239777, + "fields": { + "id_car_serie": 53568, + "name": "6.7 TD AT AWD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239778, + "fields": { + "id_car_serie": 53568, + "name": "6.7 TD MT AWD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239779, + "fields": { + "id_car_serie": 53568, + "name": "8.3 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239780, + "fields": { + "id_car_serie": 53568, + "name": "8.3 MT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239781, + "fields": { + "id_car_serie": 53569, + "name": "3.7 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239782, + "fields": { + "id_car_serie": 53569, + "name": "3.7 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239783, + "fields": { + "id_car_serie": 53569, + "name": "4.7 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239784, + "fields": { + "id_car_serie": 53569, + "name": "4.7 AT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239785, + "fields": { + "id_car_serie": 53569, + "name": "4.7 MT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239786, + "fields": { + "id_car_serie": 53569, + "name": "4.7 MT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239787, + "fields": { + "id_car_serie": 53569, + "name": "5.7 AT AWD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239788, + "fields": { + "id_car_serie": 53569, + "name": "5.7 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239789, + "fields": { + "id_car_serie": 53569, + "name": "5.7 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239790, + "fields": { + "id_car_serie": 53569, + "name": "5.7 MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239791, + "fields": { + "id_car_serie": 53569, + "name": "5.9 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239792, + "fields": { + "id_car_serie": 53569, + "name": "5.9 TD AT AWD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239793, + "fields": { + "id_car_serie": 53569, + "name": "5.9 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239794, + "fields": { + "id_car_serie": 53569, + "name": "5.9 TD MT AWD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239795, + "fields": { + "id_car_serie": 53569, + "name": "6.7 TD AT AWD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239796, + "fields": { + "id_car_serie": 53569, + "name": "6.7 TD MT AWD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239797, + "fields": { + "id_car_serie": 53569, + "name": "8.3 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239798, + "fields": { + "id_car_serie": 53569, + "name": "8.3 MT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239799, + "fields": { + "id_car_serie": 53593, + "name": "C 63 S 9G-TRONIC (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239800, + "fields": { + "id_car_serie": 53593, + "name": "C 63 9G-TRONIC (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239801, + "fields": { + "id_car_serie": 53644, + "name": "3.0 S PDK AWD (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239802, + "fields": { + "id_car_serie": 53677, + "name": "2.0 VVT AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239803, + "fields": { + "id_car_serie": 53677, + "name": "2.0 VVT MT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239804, + "fields": { + "id_car_serie": 53677, + "name": "3.6 VVT AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239805, + "fields": { + "id_car_serie": 53677, + "name": "3.6 VVT MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239806, + "fields": { + "id_car_serie": 53677, + "name": "6.2 SS AT (461 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239807, + "fields": { + "id_car_serie": 53677, + "name": "6.2 SS MT (461 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239808, + "fields": { + "id_car_serie": 53686, + "name": "3.3 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239809, + "fields": { + "id_car_serie": 53686, + "name": "3.3 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239810, + "fields": { + "id_car_serie": 53686, + "name": "5.0 AT (413 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239811, + "fields": { + "id_car_serie": 53686, + "name": "5.0 AT AWD (413 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239812, + "fields": { + "id_car_serie": 53691, + "name": "2.0 TSI MT 4Motion (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239813, + "fields": { + "id_car_serie": 53691, + "name": "2.0 TSI DSG 4Motion (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239814, + "fields": { + "id_car_serie": 53692, + "name": "2.0 TSI MT 4Motion (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239815, + "fields": { + "id_car_serie": 53692, + "name": "2.0 TSI DSG 4Motion (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239816, + "fields": { + "id_car_serie": 53699, + "name": "1.4 AT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239817, + "fields": { + "id_car_serie": 53699, + "name": "1.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239818, + "fields": { + "id_car_serie": 53699, + "name": "1.4 MT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239819, + "fields": { + "id_car_serie": 53699, + "name": "1.6 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239820, + "fields": { + "id_car_serie": 53699, + "name": "1.6 AT AWD (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239821, + "fields": { + "id_car_serie": 53699, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239822, + "fields": { + "id_car_serie": 53699, + "name": "1.6 MT AWD (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239823, + "fields": { + "id_car_serie": 53700, + "name": "300d 9G-Tronic 4Matic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239824, + "fields": { + "id_car_serie": 53700, + "name": "450 9G-Tronic 4Matic (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239825, + "fields": { + "id_car_serie": 53752, + "name": "1.7 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239826, + "fields": { + "id_car_serie": 53754, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239827, + "fields": { + "id_car_serie": 53754, + "name": "2.0 MT 4x4 (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239828, + "fields": { + "id_car_serie": 53754, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239829, + "fields": { + "id_car_serie": 53754, + "name": "2.0 MT 4x4 (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239830, + "fields": { + "id_car_serie": 53755, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239831, + "fields": { + "id_car_serie": 53755, + "name": "1.8 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239832, + "fields": { + "id_car_serie": 53755, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239833, + "fields": { + "id_car_serie": 53755, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239834, + "fields": { + "id_car_serie": 53762, + "name": "2.2 MT AWD (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239835, + "fields": { + "id_car_serie": 53767, + "name": "6.0 AWD AMT (635 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239836, + "fields": { + "id_car_serie": 53768, + "name": "2.0 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239837, + "fields": { + "id_car_serie": 53768, + "name": "2.0 MT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239838, + "fields": { + "id_car_serie": 53768, + "name": "3.6 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239839, + "fields": { + "id_car_serie": 53768, + "name": "3.6 MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239840, + "fields": { + "id_car_serie": 53768, + "name": "6.2 AT (659 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239841, + "fields": { + "id_car_serie": 53768, + "name": "6.2 AT (461 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239842, + "fields": { + "id_car_serie": 53768, + "name": "6.2 MT (659 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239843, + "fields": { + "id_car_serie": 53768, + "name": "6.2 MT (461 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239844, + "fields": { + "id_car_serie": 53769, + "name": "3.6 V6 AT (328 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239845, + "fields": { + "id_car_serie": 53769, + "name": "3.6 V6 MT (328 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239846, + "fields": { + "id_car_serie": 53769, + "name": "6.2 V8 AT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239847, + "fields": { + "id_car_serie": 53769, + "name": "6.2 V8 AT (588 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239848, + "fields": { + "id_car_serie": 53769, + "name": "6.2 V8 MT (588 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239849, + "fields": { + "id_car_serie": 53769, + "name": "6.2 V8 MT (432 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239850, + "fields": { + "id_car_serie": 53770, + "name": "3.7 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239851, + "fields": { + "id_car_serie": 53770, + "name": "3.7 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239852, + "fields": { + "id_car_serie": 53770, + "name": "3.9 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239853, + "fields": { + "id_car_serie": 53770, + "name": "3.9 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239854, + "fields": { + "id_car_serie": 53770, + "name": "3.9 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239855, + "fields": { + "id_car_serie": 53770, + "name": "3.9 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239856, + "fields": { + "id_car_serie": 53770, + "name": "5.2 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239857, + "fields": { + "id_car_serie": 53770, + "name": "5.2 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239858, + "fields": { + "id_car_serie": 53770, + "name": "5.2 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239859, + "fields": { + "id_car_serie": 53770, + "name": "5.2 MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239860, + "fields": { + "id_car_serie": 53770, + "name": "5.2 MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239861, + "fields": { + "id_car_serie": 53770, + "name": "5.2 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239862, + "fields": { + "id_car_serie": 53770, + "name": "5.9 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239863, + "fields": { + "id_car_serie": 53770, + "name": "5.9 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239864, + "fields": { + "id_car_serie": 53770, + "name": "5.9 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239865, + "fields": { + "id_car_serie": 53770, + "name": "5.9 D AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239866, + "fields": { + "id_car_serie": 53770, + "name": "5.9 D MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239867, + "fields": { + "id_car_serie": 53770, + "name": "5.9 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239868, + "fields": { + "id_car_serie": 53770, + "name": "5.9 MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239869, + "fields": { + "id_car_serie": 53770, + "name": "5.9 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239870, + "fields": { + "id_car_serie": 53771, + "name": "3.7 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239871, + "fields": { + "id_car_serie": 53771, + "name": "3.7 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239872, + "fields": { + "id_car_serie": 53771, + "name": "3.9 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239873, + "fields": { + "id_car_serie": 53771, + "name": "3.9 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239874, + "fields": { + "id_car_serie": 53771, + "name": "3.9 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239875, + "fields": { + "id_car_serie": 53771, + "name": "3.9 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239876, + "fields": { + "id_car_serie": 53771, + "name": "5.2 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239877, + "fields": { + "id_car_serie": 53771, + "name": "5.2 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239878, + "fields": { + "id_car_serie": 53771, + "name": "5.2 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239879, + "fields": { + "id_car_serie": 53771, + "name": "5.2 MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239880, + "fields": { + "id_car_serie": 53771, + "name": "5.2 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239881, + "fields": { + "id_car_serie": 53771, + "name": "5.2 MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239882, + "fields": { + "id_car_serie": 53771, + "name": "5.9 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239883, + "fields": { + "id_car_serie": 53771, + "name": "5.9 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239884, + "fields": { + "id_car_serie": 53771, + "name": "5.9 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239885, + "fields": { + "id_car_serie": 53771, + "name": "5.9 D AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239886, + "fields": { + "id_car_serie": 53771, + "name": "5.9 MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239887, + "fields": { + "id_car_serie": 53771, + "name": "5.9 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239888, + "fields": { + "id_car_serie": 53771, + "name": "5.9 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239889, + "fields": { + "id_car_serie": 53771, + "name": "5.9 D MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239890, + "fields": { + "id_car_serie": 53772, + "name": "1.5 i-VTEC MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239891, + "fields": { + "id_car_serie": 53772, + "name": "1.5 i-VTEC CVT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239892, + "fields": { + "id_car_serie": 53775, + "name": "6.5 AMT (770 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239893, + "fields": { + "id_car_serie": 53776, + "name": "6.5 AMT (750 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239894, + "fields": { + "id_car_serie": 53777, + "name": "6.5 AMT (750 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239895, + "fields": { + "id_car_serie": 53778, + "name": "D150 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239896, + "fields": { + "id_car_serie": 53778, + "name": "P250 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239897, + "fields": { + "id_car_serie": 53778, + "name": "P300 AT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239898, + "fields": { + "id_car_serie": 53778, + "name": "P200 AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239899, + "fields": { + "id_car_serie": 53778, + "name": "D180 AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239900, + "fields": { + "id_car_serie": 53778, + "name": "D240 AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239901, + "fields": { + "id_car_serie": 53778, + "name": "D150 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239902, + "fields": { + "id_car_serie": 53784, + "name": "1.5 CVT AWD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239903, + "fields": { + "id_car_serie": 53784, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239904, + "fields": { + "id_car_serie": 53787, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239905, + "fields": { + "id_car_serie": 53787, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239906, + "fields": { + "id_car_serie": 53787, + "name": "2.4 TD MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239907, + "fields": { + "id_car_serie": 53787, + "name": "2.4 TD MT AWD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239908, + "fields": { + "id_car_serie": 53787, + "name": "3.3 AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239909, + "fields": { + "id_car_serie": 53787, + "name": "3.3 MT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239910, + "fields": { + "id_car_serie": 53788, + "name": "2.5 AWD MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239911, + "fields": { + "id_car_serie": 53789, + "name": "2.4 MT AWD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239912, + "fields": { + "id_car_serie": 53789, + "name": "2.4 MT AWD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239913, + "fields": { + "id_car_serie": 53789, + "name": "2.5 TDi MT AWD (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239914, + "fields": { + "id_car_serie": 53789, + "name": "2.5 TD MT AWD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239915, + "fields": { + "id_car_serie": 53789, + "name": "2.5 TD MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239916, + "fields": { + "id_car_serie": 53789, + "name": "2.5 TDi MT AWD (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239917, + "fields": { + "id_car_serie": 53789, + "name": "3.0 TDi MT AWD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239918, + "fields": { + "id_car_serie": 53789, + "name": "3.3 AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239919, + "fields": { + "id_car_serie": 53789, + "name": "3.3 MT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239920, + "fields": { + "id_car_serie": 53791, + "name": "S 3.0 PDK (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239921, + "fields": { + "id_car_serie": 53791, + "name": "4S 3.0 PDK AWD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239922, + "fields": { + "id_car_serie": 53793, + "name": "0.7 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239923, + "fields": { + "id_car_serie": 53793, + "name": "0.7 MT AWD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239924, + "fields": { + "id_car_serie": 53793, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239925, + "fields": { + "id_car_serie": 53793, + "name": "0.7 CVT AWD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239926, + "fields": { + "id_car_serie": 53793, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239927, + "fields": { + "id_car_serie": 53793, + "name": "0.7 CVT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239928, + "fields": { + "id_car_serie": 53797, + "name": "2.0 TSI DSG 4Motion (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239930, + "fields": { + "id_car_serie": 53802, + "name": "840d Steptronic xDrive (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239931, + "fields": { + "id_car_serie": 53802, + "name": "M850i Steptronic xDrive (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239932, + "fields": { + "id_car_serie": 53804, + "name": "B 180 7G-DCT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239933, + "fields": { + "id_car_serie": 53804, + "name": "B 200 7G-DCT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239934, + "fields": { + "id_car_serie": 53804, + "name": "B 200 d 8G-DCT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239935, + "fields": { + "id_car_serie": 53804, + "name": "B 220 d 8G-DCT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239936, + "fields": { + "id_car_serie": 53808, + "name": "2.0 CDi MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239937, + "fields": { + "id_car_serie": 53808, + "name": "2.0 CDi MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239938, + "fields": { + "id_car_serie": 53808, + "name": "2.0 CDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239939, + "fields": { + "id_car_serie": 53808, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239940, + "fields": { + "id_car_serie": 53808, + "name": "2.4 CDi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239941, + "fields": { + "id_car_serie": 53808, + "name": "2.4 CDi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239942, + "fields": { + "id_car_serie": 53808, + "name": "2.4 CDi MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239943, + "fields": { + "id_car_serie": 53824, + "name": "3.9 AT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239944, + "fields": { + "id_car_serie": 53824, + "name": "3.9 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239945, + "fields": { + "id_car_serie": 53824, + "name": "3.9 MT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239946, + "fields": { + "id_car_serie": 53824, + "name": "3.9 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239947, + "fields": { + "id_car_serie": 53824, + "name": "5.9 AT AWD (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239948, + "fields": { + "id_car_serie": 53824, + "name": "5.9 TD AT AWD (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239949, + "fields": { + "id_car_serie": 53824, + "name": "5.9 AT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239950, + "fields": { + "id_car_serie": 53824, + "name": "5.9 AT AWD (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239951, + "fields": { + "id_car_serie": 53824, + "name": "5.9 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239952, + "fields": { + "id_car_serie": 53824, + "name": "5.9 TD AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239953, + "fields": { + "id_car_serie": 53824, + "name": "5.9 TD AT AWD (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239954, + "fields": { + "id_car_serie": 53824, + "name": "5.9 TD AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239955, + "fields": { + "id_car_serie": 53824, + "name": "5.9 TD AT AWD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239956, + "fields": { + "id_car_serie": 53824, + "name": "5.9 TD AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239957, + "fields": { + "id_car_serie": 53824, + "name": "5.9 TD AT AWD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239958, + "fields": { + "id_car_serie": 53824, + "name": "5.9 TD AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239959, + "fields": { + "id_car_serie": 53824, + "name": "5.9 TD AT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239960, + "fields": { + "id_car_serie": 53824, + "name": "5.9 TD AT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239961, + "fields": { + "id_car_serie": 53824, + "name": "5.9 TD MT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239962, + "fields": { + "id_car_serie": 53824, + "name": "5.9 TD MT AWD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239963, + "fields": { + "id_car_serie": 53824, + "name": "5.9 TD MT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239964, + "fields": { + "id_car_serie": 53824, + "name": "5.9 TD MT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239965, + "fields": { + "id_car_serie": 53824, + "name": "5.9 TD MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239966, + "fields": { + "id_car_serie": 53824, + "name": "5.9 TD MT AWD (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239967, + "fields": { + "id_car_serie": 53824, + "name": "5.9 TD MT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239968, + "fields": { + "id_car_serie": 53824, + "name": "5.9 TD MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239969, + "fields": { + "id_car_serie": 53824, + "name": "8.0 AT AWD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239970, + "fields": { + "id_car_serie": 53824, + "name": "8.0 AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239971, + "fields": { + "id_car_serie": 53825, + "name": "3.9 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239972, + "fields": { + "id_car_serie": 53825, + "name": "3.9 AT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239973, + "fields": { + "id_car_serie": 53825, + "name": "3.9 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239974, + "fields": { + "id_car_serie": 53825, + "name": "3.9 MT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239975, + "fields": { + "id_car_serie": 53825, + "name": "5.9 AT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239976, + "fields": { + "id_car_serie": 53825, + "name": "5.9 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239977, + "fields": { + "id_car_serie": 53825, + "name": "5.9 AT AWD (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239978, + "fields": { + "id_car_serie": 53825, + "name": "5.9 AT AWD (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239979, + "fields": { + "id_car_serie": 53825, + "name": "5.9 TD AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239980, + "fields": { + "id_car_serie": 53825, + "name": "5.9 TD AT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239981, + "fields": { + "id_car_serie": 53825, + "name": "5.9 TD AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239982, + "fields": { + "id_car_serie": 53825, + "name": "5.9 TD AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239983, + "fields": { + "id_car_serie": 53825, + "name": "5.9 TD AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239984, + "fields": { + "id_car_serie": 53825, + "name": "5.9 TD AT AWD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239985, + "fields": { + "id_car_serie": 53825, + "name": "5.9 TD AT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239986, + "fields": { + "id_car_serie": 53825, + "name": "5.9 TD AT AWD (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239987, + "fields": { + "id_car_serie": 53825, + "name": "5.9 TD AT AWD (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239988, + "fields": { + "id_car_serie": 53825, + "name": "5.9 TD AT AWD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239989, + "fields": { + "id_car_serie": 53825, + "name": "5.9 TD MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239990, + "fields": { + "id_car_serie": 53825, + "name": "5.9 TD MT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239991, + "fields": { + "id_car_serie": 53825, + "name": "5.9 TD MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239992, + "fields": { + "id_car_serie": 53825, + "name": "5.9 TD MT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239993, + "fields": { + "id_car_serie": 53825, + "name": "5.9 TD MT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239994, + "fields": { + "id_car_serie": 53825, + "name": "5.9 TD MT AWD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239995, + "fields": { + "id_car_serie": 53825, + "name": "5.9 TD MT AWD (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239996, + "fields": { + "id_car_serie": 53825, + "name": "5.9 TD MT AWD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239997, + "fields": { + "id_car_serie": 53825, + "name": "8.0 AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239998, + "fields": { + "id_car_serie": 53825, + "name": "8.0 AT AWD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 239999, + "fields": { + "id_car_serie": 53826, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240000, + "fields": { + "id_car_serie": 53826, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240001, + "fields": { + "id_car_serie": 53826, + "name": "2.4 TD MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240002, + "fields": { + "id_car_serie": 53826, + "name": "2.4 TD MT AWD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240003, + "fields": { + "id_car_serie": 53826, + "name": "3.3 AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240004, + "fields": { + "id_car_serie": 53826, + "name": "3.3 MT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240005, + "fields": { + "id_car_serie": 53827, + "name": "2.4 MT AWD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240006, + "fields": { + "id_car_serie": 53827, + "name": "2.4 MT AWD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240007, + "fields": { + "id_car_serie": 53827, + "name": "2.5 TDi MT AWD (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240008, + "fields": { + "id_car_serie": 53827, + "name": "2.5 TDi MT AWD (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240009, + "fields": { + "id_car_serie": 53827, + "name": "2.5 TD MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240010, + "fields": { + "id_car_serie": 53827, + "name": "2.5 TD MT AWD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240011, + "fields": { + "id_car_serie": 53827, + "name": "3.0 TDi MT AWD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240012, + "fields": { + "id_car_serie": 53827, + "name": "3.3 AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240013, + "fields": { + "id_car_serie": 53827, + "name": "3.3 MT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240014, + "fields": { + "id_car_serie": 53828, + "name": "0.7 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240015, + "fields": { + "id_car_serie": 53828, + "name": "0.7 MT AWD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240016, + "fields": { + "id_car_serie": 53828, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240017, + "fields": { + "id_car_serie": 53828, + "name": "0.7 CVT AWD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240018, + "fields": { + "id_car_serie": 53828, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240019, + "fields": { + "id_car_serie": 53828, + "name": "0.7 CVT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240020, + "fields": { + "id_car_serie": 53829, + "name": "0.7 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240021, + "fields": { + "id_car_serie": 53829, + "name": "0.7 MT AWD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240022, + "fields": { + "id_car_serie": 53829, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240023, + "fields": { + "id_car_serie": 53829, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240024, + "fields": { + "id_car_serie": 53829, + "name": "0.7 CVT AWD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240025, + "fields": { + "id_car_serie": 53829, + "name": "0.7 CVT AWD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240026, + "fields": { + "id_car_serie": 53830, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240027, + "fields": { + "id_car_serie": 53830, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240028, + "fields": { + "id_car_serie": 53832, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240029, + "fields": { + "id_car_serie": 53832, + "name": "1.6 BlueHDi AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240030, + "fields": { + "id_car_serie": 53832, + "name": "1.6 HDi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240031, + "fields": { + "id_car_serie": 53833, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240032, + "fields": { + "id_car_serie": 53833, + "name": "1.6 BlueHDi AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240033, + "fields": { + "id_car_serie": 53835, + "name": "80 kWh (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240034, + "fields": { + "id_car_serie": 53539, + "name": "2.4 PHEV CVT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240035, + "fields": { + "id_car_serie": 53842, + "name": "1.5 AT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240036, + "fields": { + "id_car_serie": 53842, + "name": "1.5 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240040, + "fields": { + "id_car_serie": 9082, + "name": "1.9 TDI (105 HP) Diesel", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240041, + "fields": { + "id_car_serie": 9082, + "name": "1.9 TDI (90 HP) Diesel", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240042, + "fields": { + "id_car_serie": 9082, + "name": "2.0 TDI Diesel", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240043, + "fields": { + "id_car_serie": 50116, + "name": "2.0 (133 HP) petrol", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240044, + "fields": { + "id_car_serie": 50116, + "name": "2,4 (151 HP) gasoline", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240045, + "fields": { + "id_car_serie": 50116, + "name": "3.0 (152 HP) gasoline", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240046, + "fields": { + "id_car_serie": 50116, + "name": "At 3.3 (158 HP) gasoline", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240047, + "fields": { + "id_car_serie": 50116, + "name": "3,8 (166 HP) petrol", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240048, + "fields": { + "id_car_serie": 50116, + "name": "2,5 (166 hp) turbodiesel", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2001 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240050, + "fields": { + "id_car_serie": 53844, + "name": "3.0 (144 HP) petrol AT", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240051, + "fields": { + "id_car_serie": 53844, + "name": "2.5 (99 hp) AT", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240052, + "fields": { + "id_car_serie": 53844, + "name": "2.5 (99 hp) MT", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240053, + "fields": { + "id_car_serie": 53844, + "name": "3.3 (152 hp) AT", + "arabic_name": "-", + "start_production_year": 1988, + "end_production_year": 1990 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240054, + "fields": { + "id_car_serie": 53845, + "name": "2.5 (101 hp) AT", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240055, + "fields": { + "id_car_serie": 53845, + "name": "2.5 (98 hp) AT", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240056, + "fields": { + "id_car_serie": 53845, + "name": "2.5 (99 hp) AT", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240057, + "fields": { + "id_car_serie": 53845, + "name": "2.5 (99 hp) MT", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240058, + "fields": { + "id_car_serie": 53845, + "name": "2,5 (101 hp) MT", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240060, + "fields": { + "id_car_serie": 53845, + "name": "2,5 d MT (118 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240061, + "fields": { + "id_car_serie": 53845, + "name": "3?0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240062, + "fields": { + "id_car_serie": 53845, + "name": "3?0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240063, + "fields": { + "id_car_serie": 53845, + "name": "3?3 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240064, + "fields": { + "id_car_serie": 53845, + "name": "3?3 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240065, + "fields": { + "id_car_serie": 53845, + "name": "3?3 AT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240066, + "fields": { + "id_car_serie": 53845, + "name": "3?3 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240067, + "fields": { + "id_car_serie": 50117, + "name": "3,3 AT (163 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240068, + "fields": { + "id_car_serie": 50117, + "name": "3,3 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240069, + "fields": { + "id_car_serie": 50117, + "name": "3,3 AT 4WD (172 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1995 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240070, + "fields": { + "id_car_serie": 50117, + "name": "2,4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240071, + "fields": { + "id_car_serie": 50117, + "name": "3,8 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240072, + "fields": { + "id_car_serie": 50116, + "name": "2,4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240073, + "fields": { + "id_car_serie": 50116, + "name": "2,5 dAT (166 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240074, + "fields": { + "id_car_serie": 50116, + "name": "3,3 AT (158 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240075, + "fields": { + "id_car_serie": 50116, + "name": "A 3.8 AT (166 HP) petrol", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240076, + "fields": { + "id_car_serie": 50116, + "name": "3,8 AT (180 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240077, + "fields": { + "id_car_serie": 50116, + "name": "A 3.8 AT 4WD (166 HP) petrol ", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240078, + "fields": { + "id_car_serie": 50116, + "name": "3,8 AT 4WD(180 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240079, + "fields": { + "id_car_serie": 53847, + "name": "2,4 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240080, + "fields": { + "id_car_serie": 53847, + "name": "2, 4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240081, + "fields": { + "id_car_serie": 53847, + "name": "2,4 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240082, + "fields": { + "id_car_serie": 53847, + "name": "2,4 MT (152 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240083, + "fields": { + "id_car_serie": 53847, + "name": "2,5 d MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240084, + "fields": { + "id_car_serie": 53847, + "name": "3,3 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240085, + "fields": { + "id_car_serie": 53847, + "name": "3,3 AT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240086, + "fields": { + "id_car_serie": 53847, + "name": "3,8 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240087, + "fields": { + "id_car_serie": 53847, + "name": "3,8 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240088, + "fields": { + "id_car_serie": 53846, + "name": "2,4 AT (147 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240089, + "fields": { + "id_car_serie": 53846, + "name": "2,4 MT (147 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240090, + "fields": { + "id_car_serie": 53846, + "name": "2,5 d MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240091, + "fields": { + "id_car_serie": 53846, + "name": "3,3 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240092, + "fields": { + "id_car_serie": 53846, + "name": "3,3 AT 4WD (172 hp4", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240093, + "fields": { + "id_car_serie": 53846, + "name": "3,8 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240094, + "fields": { + "id_car_serie": 53846, + "name": "3,8 AT (218 hp)", + "arabic_name": "-", + "start_production_year": 2001, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240095, + "fields": { + "id_car_serie": 14938, + "name": "2,8 dAT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240096, + "fields": { + "id_car_serie": 47149, + "name": "2,5 d MT (143 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240097, + "fields": { + "id_car_serie": 47149, + "name": "3,8 AT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240098, + "fields": { + "id_car_serie": 47149, + "name": "3,8 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240099, + "fields": { + "id_car_serie": 47149, + "name": "2,8 dAT (150 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240100, + "fields": { + "id_car_serie": 50114, + "name": "3,3 AT (174 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240101, + "fields": { + "id_car_serie": 50114, + "name": "3,6 AT (283 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2019 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240102, + "fields": { + "id_car_serie": 50114, + "name": "3,8 AT (197 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240103, + "fields": { + "id_car_serie": 53848, + "name": "1.6 TD MT (80 hp) diesel", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240104, + "fields": { + "id_car_serie": 53848, + "name": "1.6 MT (75 hp) gasoline", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240105, + "fields": { + "id_car_serie": 53848, + "name": "1.6 MT (70 hp) gasoline", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240106, + "fields": { + "id_car_serie": 53848, + "name": "1.6 D MT (54 hp) diesel", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240107, + "fields": { + "id_car_serie": 53848, + "name": "1.8 MT (113 hp) gasoline", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240108, + "fields": { + "id_car_serie": 53848, + "name": "1.8 S MT (88 hp) gasoline", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240109, + "fields": { + "id_car_serie": 53848, + "name": "1.8 MT (90 hp) gasoline", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240110, + "fields": { + "id_car_serie": 53848, + "name": "1.8 MT (88 hp) gasoline", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240111, + "fields": { + "id_car_serie": 53848, + "name": "1.8 E MT (112 hp) gasoline", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240112, + "fields": { + "id_car_serie": 53848, + "name": "1.8 E MT (112 hp) gasoline, Four-wheel drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240113, + "fields": { + "id_car_serie": 53848, + "name": "1.8 MT (75 hp) gasoline", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240115, + "fields": { + "id_car_serie": 53848, + "name": "1.9 D MT (68 hp) diesel", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240116, + "fields": { + "id_car_serie": 53848, + "name": "2.0 E MT (138 hp) gasoline", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240117, + "fields": { + "id_car_serie": 53848, + "name": "2.0 E MT (113 hp) gasoline", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240118, + "fields": { + "id_car_serie": 53848, + "name": "2.0 MT (160 hp) gasoline", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240119, + "fields": { + "id_car_serie": 53848, + "name": "2.0 MT (112 hp) gasoline", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240120, + "fields": { + "id_car_serie": 53848, + "name": "2.0 E MT (137 hp) gasoline", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240121, + "fields": { + "id_car_serie": 53848, + "name": "2.0 E MT (113 hp) gasoline, Four-wheel drive", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240122, + "fields": { + "id_car_serie": 53848, + "name": "2.0 MT (112 hp) gasoline, Four-wheel drive", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240123, + "fields": { + "id_car_serie": 53848, + "name": "2.0 MT (115 hp) gasoline, Four-wheel drive", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240124, + "fields": { + "id_car_serie": 53848, + "name": "1.6 TD AT (80 hp) diesel", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240125, + "fields": { + "id_car_serie": 53848, + "name": "1.8 AT (113 hp) gasoline", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240126, + "fields": { + "id_car_serie": 53848, + "name": "1.8 AT (90 hp) gasoline", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240127, + "fields": { + "id_car_serie": 53848, + "name": "2.0 AT (160 hp) gasoline", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240128, + "fields": { + "id_car_serie": 9304, + "name": "2.5 AT Syncro (115 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240129, + "fields": { + "id_car_serie": 53850, + "name": "1. 3 (101 hp) gasoline", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240130, + "fields": { + "id_car_serie": 53850, + "name": "1.4 (98 hp) gasoline", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240131, + "fields": { + "id_car_serie": 53850, + "name": "1.5 (101 hp) gasoline", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240132, + "fields": { + "id_car_serie": 53850, + "name": "1.6 (124 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240133, + "fields": { + "id_car_serie": 53850, + "name": "1.8 (132 hp) gasoline", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240134, + "fields": { + "id_car_serie": 53850, + "name": "2.0 (132 hp) diesel", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240135, + "fields": { + "id_car_serie": 53849, + "name": "1. 3 (101 hp) gasoline", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240136, + "fields": { + "id_car_serie": 53849, + "name": "1.4 (98 hp) gasoline", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240137, + "fields": { + "id_car_serie": 53849, + "name": "1.5 (101 hp) gasoline", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240138, + "fields": { + "id_car_serie": 53849, + "name": "1.6 (124 hp) gasoline", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240139, + "fields": { + "id_car_serie": 53849, + "name": "1.8 (132 hp) gasoline", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240140, + "fields": { + "id_car_serie": 53849, + "name": "2.0 (132 hp) diesel", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240141, + "fields": { + "id_car_serie": 53851, + "name": "1.6 (132 hp) MT, gasoline", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240142, + "fields": { + "id_car_serie": 53851, + "name": "1.8 (147 hp) MT gasoline", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240143, + "fields": { + "id_car_serie": 53851, + "name": "1.6 (112 hp) MT diesel", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240144, + "fields": { + "id_car_serie": 53851, + "name": "2.0 (143 hp) MT diesel", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240145, + "fields": { + "id_car_serie": 53851, + "name": "2.0 (152 hp) CVT gasoline", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240146, + "fields": { + "id_car_serie": 53851, + "name": "1.2 (136 HP) hybrid", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240147, + "fields": { + "id_car_serie": 53852, + "name": "1.2 (69 hp) MT", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240148, + "fields": { + "id_car_serie": 53852, + "name": "0.9 (78 hp) MT", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240149, + "fields": { + "id_car_serie": 53852, + "name": "0.9 (85 hp) MT", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240150, + "fields": { + "id_car_serie": 53852, + "name": "1.3 (195 hp) MT", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240151, + "fields": { + "id_car_serie": 7479, + "name": "1.6 (114 HP) manual 5", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240152, + "fields": { + "id_car_serie": 7479, + "name": "1.6 (114 hp) CVT X-Tronic", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240153, + "fields": { + "id_car_serie": 7479, + "name": "2.0 (143 BHP) manual 6", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240154, + "fields": { + "id_car_serie": 7479, + "name": "2.0 (143 HP) automatic transmission 4", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": 2016 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240155, + "fields": { + "id_car_serie": 45582, + "name": "1.6 (85 hp) MT", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240156, + "fields": { + "id_car_serie": 45582, + "name": "1.6 (105 hp) MT", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240157, + "fields": { + "id_car_serie": 45582, + "name": "1.6 (105 hp) AT", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240158, + "fields": { + "id_car_serie": 45582, + "name": "MPI 66 (90 PS) 5 MKP", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240159, + "fields": { + "id_car_serie": 45582, + "name": "MPI 81 (110 HP) 5 MKP", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240160, + "fields": { + "id_car_serie": 45582, + "name": "MPI 81 (110 HP) 6 automatic transmission", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240161, + "fields": { + "id_car_serie": 4363, + "name": "MPI 66 (90 PS) 5 MKP", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240162, + "fields": { + "id_car_serie": 4363, + "name": "MPI 81 (110 HP) 5 MKP", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240163, + "fields": { + "id_car_serie": 4363, + "name": "MPI 81 (110 HP) 6 automatic transmission", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240164, + "fields": { + "id_car_serie": 4361, + "name": "MPI 66 (90 PS) 5 MKP", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240165, + "fields": { + "id_car_serie": 4361, + "name": "MPI 81 (110 HP) 5 MKP", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240166, + "fields": { + "id_car_serie": 4361, + "name": "MPI 81 (110 HP) 6 automatic transmission", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240167, + "fields": { + "id_car_serie": 9312, + "name": "1.4 TSI BlueMotion MT (122 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240168, + "fields": { + "id_car_serie": 9312, + "name": "1.4 TSI BlueMotion DSG robot (122 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240169, + "fields": { + "id_car_serie": 9312, + "name": "1.4 TSI EcoFuel MT (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240170, + "fields": { + "id_car_serie": 9312, + "name": "1.4 TSI DSG EcoFuel (150 hp)", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240171, + "fields": { + "id_car_serie": 9312, + "name": "1.6 (102 hp) MT", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240172, + "fields": { + "id_car_serie": 9312, + "name": "1.6 (115 hp) MT", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240173, + "fields": { + "id_car_serie": 9312, + "name": "1.6 (115 PS) automatic transmission", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240174, + "fields": { + "id_car_serie": 9312, + "name": "1.6 TDI (105 hp) MT", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240175, + "fields": { + "id_car_serie": 9312, + "name": "1.8 TSI (160 hp) MT", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240176, + "fields": { + "id_car_serie": 9312, + "name": "1.8 TSI (160 PS) automatic transmission", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240177, + "fields": { + "id_car_serie": 9312, + "name": "1.8 TSI DSG (160 hp) robot", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240178, + "fields": { + "id_car_serie": 9312, + "name": "2.0 FSI (150 hp) MT", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240179, + "fields": { + "id_car_serie": 9312, + "name": "2.0 FSI 4 WD(150 hp) MT", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240180, + "fields": { + "id_car_serie": 9312, + "name": "2.0 FSI (150 HP) automatic transmission", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240181, + "fields": { + "id_car_serie": 9312, + "name": "4 WD 2.0 FSI (150 HP) automatic transmission all-wheel drive", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240182, + "fields": { + "id_car_serie": 9312, + "name": "2.0 FSI (200 hp) MT", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240183, + "fields": { + "id_car_serie": 9312, + "name": "2.0 FSI DSG (200 hp) MT ", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240184, + "fields": { + "id_car_serie": 9312, + "name": "2.0 TDI (110 hp) diesel MT", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240186, + "fields": { + "id_car_serie": 9312, + "name": "2.0 TDI (140 hp) diesel MT", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240187, + "fields": { + "id_car_serie": 9312, + "name": "2.0 TDI (140 hp) diesel robot", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240188, + "fields": { + "id_car_serie": 9312, + "name": "2.0 TDI (140 hp) diesel Four-wheel drive 4WD", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240189, + "fields": { + "id_car_serie": 9312, + "name": "2.0 TDI DSG (140 hp) diesel robot", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240190, + "fields": { + "id_car_serie": 9312, + "name": "2.0 BlueTDI (143 hp) MT", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240191, + "fields": { + "id_car_serie": 9312, + "name": "2.0 BlueTDI (143 hp) robot", + "arabic_name": "-", + "start_production_year": 2009, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240192, + "fields": { + "id_car_serie": 9312, + "name": "2.0 TDI (170 hp) diesel MT", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240193, + "fields": { + "id_car_serie": 9312, + "name": "2.0 TDI (170 hp) diesel robot", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240194, + "fields": { + "id_car_serie": 9312, + "name": "2.0 TDI (170 hp) diesel Four-wheel drive 4WD", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240195, + "fields": { + "id_car_serie": 9312, + "name": "3.2 FSI DSG (250 hp) gasoline robot Four-wheel drive 4WD", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240196, + "fields": { + "id_car_serie": 9312, + "name": "3.2 FSI DSG (300 hp) gasoline robot Four-wheel drive 4WD", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240197, + "fields": { + "id_car_serie": 4355, + "name": "2,0 TDI BlueMotion (170 hp) ", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240198, + "fields": { + "id_car_serie": 51487, + "name": "1.4 (125 hp) MT", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240199, + "fields": { + "id_car_serie": 51487, + "name": "1.4 (125 hp) AT", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240200, + "fields": { + "id_car_serie": 51487, + "name": "1.6 (190 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240201, + "fields": { + "id_car_serie": 51487, + "name": "1.6 (190 hp) AT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240202, + "fields": { + "id_car_serie": 51487, + "name": "1.4 (150 hp) AMT", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240203, + "fields": { + "id_car_serie": 49390, + "name": "1.4 (125 hp) AT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240204, + "fields": { + "id_car_serie": 49390, + "name": "1.4 (125 hp) MT", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240205, + "fields": { + "id_car_serie": 49390, + "name": "1.4 (150 hp) AMT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240206, + "fields": { + "id_car_serie": 49390, + "name": "1.6 (190 hp) AT", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240207, + "fields": { + "id_car_serie": 49390, + "name": "1.6 (190 hp) MT", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240208, + "fields": { + "id_car_serie": 9573, + "name": "2.0 AT (148 hp) 4WD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240209, + "fields": { + "id_car_serie": 9573, + "name": "2.0 AT (148 hp) 2WD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240210, + "fields": { + "id_car_serie": 9573, + "name": "2.0 AT (170 hp) 4WD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240211, + "fields": { + "id_car_serie": 9573, + "name": "2.0 MT (148 hp) 4WD variator ", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240212, + "fields": { + "id_car_serie": 9573, + "name": "2.0 AT (148 hp) 4WD variator", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240213, + "fields": { + "id_car_serie": 53850, + "name": "3 (101 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 21010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240214, + "fields": { + "id_car_serie": 53850, + "name": "1.4 (97 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240215, + "fields": { + "id_car_serie": 53850, + "name": "1.5 (110 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240220, + "fields": { + "id_car_serie": 53855, + "name": "1.3 MT (99 hp) MT", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240221, + "fields": { + "id_car_serie": 53855, + "name": "1.3 (101 hp) MT", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240222, + "fields": { + "id_car_serie": 53855, + "name": "1.6 (124 HP), automatic transmission", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240223, + "fields": { + "id_car_serie": 53855, + "name": "1.6 (132 hp) MT", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240224, + "fields": { + "id_car_serie": 53855, + "name": "1.6 CVT (132 hp) variator", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240225, + "fields": { + "id_car_serie": 53856, + "name": "1.2 ( 86 hp) MT", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240226, + "fields": { + "id_car_serie": 53856, + "name": "1.2 ( 105 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240227, + "fields": { + "id_car_serie": 53856, + "name": "1.4 (122 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240228, + "fields": { + "id_car_serie": 53856, + "name": "1.4 (140 hp) gasoline", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240229, + "fields": { + "id_car_serie": 53856, + "name": "1.8 (180 hp) MT gasoline", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240230, + "fields": { + "id_car_serie": 53856, + "name": "1.0 (115 hp) MT ", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240231, + "fields": { + "id_car_serie": 53856, + "name": "1.0 (115 hp) AMT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240232, + "fields": { + "id_car_serie": 53856, + "name": "1.4 (150 hp) AMT", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240233, + "fields": { + "id_car_serie": 53856, + "name": "1.8 (180 hp) AMT gasoline", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240234, + "fields": { + "id_car_serie": 53856, + "name": "1.6 (90 HP) MT Diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240235, + "fields": { + "id_car_serie": 53856, + "name": "1.6 (115 HP) MT Diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240236, + "fields": { + "id_car_serie": 53856, + "name": "1.6 (115 HP) Diesel AMT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240237, + "fields": { + "id_car_serie": 53856, + "name": "2.0 (150 HP) MT Diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240238, + "fields": { + "id_car_serie": 53856, + "name": "2.0 (150 HP) Diesel AMT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240239, + "fields": { + "id_car_serie": 9082, + "name": "1.4 TSI (125 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240240, + "fields": { + "id_car_serie": 9082, + "name": "1.6 8V (102 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240241, + "fields": { + "id_car_serie": 9082, + "name": "2.0 TFSI (200 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240242, + "fields": { + "id_car_serie": 9082, + "name": "2.0 FSI (150 hp)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240243, + "fields": { + "id_car_serie": 7590, + "name": "1.0 (75 hp) MT", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240244, + "fields": { + "id_car_serie": 7590, + "name": "1.0 (115 hp) MT ", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240245, + "fields": { + "id_car_serie": 7590, + "name": "1.0 (95 hp) MT", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240246, + "fields": { + "id_car_serie": 7590, + "name": "1.2 (90 hp) ", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240247, + "fields": { + "id_car_serie": 7590, + "name": "1.4 (75 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240248, + "fields": { + "id_car_serie": 7590, + "name": "1.4 (90 hp) gasoline", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240249, + "fields": { + "id_car_serie": 14642, + "name": "1.5 (177 hp) MT gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240250, + "fields": { + "id_car_serie": 14644, + "name": "0.7 (50 hp) robot", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240251, + "fields": { + "id_car_serie": 14644, + "name": "0.7 (61 hp) robot", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240252, + "fields": { + "id_car_serie": 14644, + "name": "0.7 (75 hp) robot", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240253, + "fields": { + "id_car_serie": 53857, + "name": "0.6 (70 hp) robot", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240254, + "fields": { + "id_car_serie": 53858, + "name": "0.6 AMT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240255, + "fields": { + "id_car_serie": 53858, + "name": "0.6 AMT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240256, + "fields": { + "id_car_serie": 53858, + "name": "0.7 AMT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240257, + "fields": { + "id_car_serie": 53858, + "name": "0.7 AMT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240258, + "fields": { + "id_car_serie": 53858, + "name": "0.7 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240259, + "fields": { + "id_car_serie": 53858, + "name": "0.8 d(41hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240260, + "fields": { + "id_car_serie": 14643, + "name": "0.8d (41 hp) diesel", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240261, + "fields": { + "id_car_serie": 4169, + "name": "1.0 (102 hp) robot", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240262, + "fields": { + "id_car_serie": 4170, + "name": "1.0 (102 hp) robot", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240263, + "fields": { + "id_car_serie": 53859, + "name": "1.2d (8) hp diesel", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240264, + "fields": { + "id_car_serie": 53859, + "name": "1.2d (95 hp) diesel", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240265, + "fields": { + "id_car_serie": 53859, + "name": "1.4 lpg (70 HP) MT", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240266, + "fields": { + "id_car_serie": 53859, + "name": "1.4 (77 hp) MT", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240267, + "fields": { + "id_car_serie": 9082, + "name": "1.8 TSI Petrol", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240268, + "fields": { + "id_car_serie": 9082, + "name": "1.9 MT diesel", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240269, + "fields": { + "id_car_serie": 9082, + "name": "2.0 AMT robot diesel", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240270, + "fields": { + "id_car_serie": 10723, + "name": "1.9 TDI MT (90 hp) diesel", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240271, + "fields": { + "id_car_serie": 10723, + "name": "1.9 TDI MT (110 hp) diesel", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240272, + "fields": { + "id_car_serie": 10723, + "name": "1.9 (110 HP) automatic transmission diesel", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240273, + "fields": { + "id_car_serie": 10723, + "name": "2.0 (115 hp) MT gasoline", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240274, + "fields": { + "id_car_serie": 10723, + "name": "2.0 (115 HP) automatic transmission gasoline", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240275, + "fields": { + "id_car_serie": 9304, + "name": "1.9 TD MT (68 hp) diesel", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240276, + "fields": { + "id_car_serie": 9304, + "name": "2.4 D MT (75 hp) diesel", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240277, + "fields": { + "id_car_serie": 9304, + "name": "2.5 TDI (102 hp) MT diesel", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240278, + "fields": { + "id_car_serie": 9304, + "name": "2.5 TDI (102 hp) MT diesel 4WD", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240279, + "fields": { + "id_car_serie": 9304, + "name": "2.8 (140 hp) MT gasoline", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240280, + "fields": { + "id_car_serie": 9304, + "name": "2.8 (140 HP) automatic transmission gasoline", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240281, + "fields": { + "id_car_serie": 9304, + "name": "2.5 (151 hp) MT diesel", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240282, + "fields": { + "id_car_serie": 53860, + "name": "2.8 V6 (110 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240283, + "fields": { + "id_car_serie": 53860, + "name": "2.2 (110 hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240284, + "fields": { + "id_car_serie": 53860, + "name": "2.1 (88 hp) diesel", + "arabic_name": "-", + "start_production_year": 199, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240285, + "fields": { + "id_car_serie": 53860, + "name": "2.1 (92 hp) diesel", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240286, + "fields": { + "id_car_serie": 53861, + "name": "2.0 (170 HP) turbo", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240287, + "fields": { + "id_car_serie": 53861, + "name": "3.5 (245 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240289, + "fields": { + "id_car_serie": 53861, + "name": "2.2 (150 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240290, + "fields": { + "id_car_serie": 53861, + "name": "3.0 (180 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2014 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240291, + "fields": { + "id_car_serie": 1323, + "name": "5.2 Evo AMT (640 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240292, + "fields": { + "id_car_serie": 3506, + "name": "3.0 d AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240293, + "fields": { + "id_car_serie": 7017, + "name": "2.0 AT AWD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240294, + "fields": { + "id_car_serie": 7017, + "name": "2.0 TD AT AWD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240295, + "fields": { + "id_car_serie": 7017, + "name": "2.0 MT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240296, + "fields": { + "id_car_serie": 7017, + "name": "2.0 MT AWD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240297, + "fields": { + "id_car_serie": 7017, + "name": "2.4 AT AWD (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240299, + "fields": { + "id_car_serie": 9500, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240300, + "fields": { + "id_car_serie": 9500, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240301, + "fields": { + "id_car_serie": 9503, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240302, + "fields": { + "id_car_serie": 9503, + "name": "1.3 4MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240303, + "fields": { + "id_car_serie": 9503, + "name": "1.7 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240304, + "fields": { + "id_car_serie": 9504, + "name": "1.5 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240305, + "fields": { + "id_car_serie": 9504, + "name": "1.5 AT AWD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240306, + "fields": { + "id_car_serie": 9504, + "name": "1.5 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240307, + "fields": { + "id_car_serie": 9504, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240308, + "fields": { + "id_car_serie": 9504, + "name": "1.5 AT AWD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240309, + "fields": { + "id_car_serie": 9504, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240310, + "fields": { + "id_car_serie": 9504, + "name": "1.5 AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240311, + "fields": { + "id_car_serie": 9504, + "name": "1.5 MT AWD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240312, + "fields": { + "id_car_serie": 9504, + "name": "1.5 MT AWD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240313, + "fields": { + "id_car_serie": 9504, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240314, + "fields": { + "id_car_serie": 9504, + "name": "1.5 Turbo MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240315, + "fields": { + "id_car_serie": 9504, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240316, + "fields": { + "id_car_serie": 9504, + "name": "1.5 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240317, + "fields": { + "id_car_serie": 9504, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240318, + "fields": { + "id_car_serie": 9504, + "name": "1.6 TwinCam AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240319, + "fields": { + "id_car_serie": 9504, + "name": "1.6 TwinCam MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240320, + "fields": { + "id_car_serie": 9505, + "name": "1.5 Turbo AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240321, + "fields": { + "id_car_serie": 9505, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240322, + "fields": { + "id_car_serie": 9505, + "name": "1.5 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240323, + "fields": { + "id_car_serie": 9505, + "name": "1.5 Turbo MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240324, + "fields": { + "id_car_serie": 9505, + "name": "1.6 TwinCam AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240325, + "fields": { + "id_car_serie": 9505, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240326, + "fields": { + "id_car_serie": 9505, + "name": "1.6 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240327, + "fields": { + "id_car_serie": 9505, + "name": "1.6 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240328, + "fields": { + "id_car_serie": 9505, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240329, + "fields": { + "id_car_serie": 9505, + "name": "1.6 GTI 16V MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240330, + "fields": { + "id_car_serie": 9505, + "name": "1.6 ZX 16V MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240331, + "fields": { + "id_car_serie": 9505, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240332, + "fields": { + "id_car_serie": 9505, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240333, + "fields": { + "id_car_serie": 9505, + "name": "1.6 TwinCam MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240334, + "fields": { + "id_car_serie": 9505, + "name": "1.8 GTI 16V MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240335, + "fields": { + "id_car_serie": 9505, + "name": "1.8 GTI 16V MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240336, + "fields": { + "id_car_serie": 9507, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240337, + "fields": { + "id_car_serie": 9507, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240338, + "fields": { + "id_car_serie": 9507, + "name": "1.3 4MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240339, + "fields": { + "id_car_serie": 9507, + "name": "1.3 5MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240340, + "fields": { + "id_car_serie": 9508, + "name": "1.3 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240341, + "fields": { + "id_car_serie": 9508, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240342, + "fields": { + "id_car_serie": 9508, + "name": "1.5 Turbo AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240343, + "fields": { + "id_car_serie": 9508, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240344, + "fields": { + "id_car_serie": 9508, + "name": "1.5 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240345, + "fields": { + "id_car_serie": 9508, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240346, + "fields": { + "id_car_serie": 9508, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240347, + "fields": { + "id_car_serie": 9508, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240348, + "fields": { + "id_car_serie": 9508, + "name": "1.5 Turbo MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240349, + "fields": { + "id_car_serie": 9508, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240350, + "fields": { + "id_car_serie": 9508, + "name": "1.5 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240351, + "fields": { + "id_car_serie": 9508, + "name": "1.6 TwinCam AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240352, + "fields": { + "id_car_serie": 9508, + "name": "1.6 TwinCam MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240353, + "fields": { + "id_car_serie": 49562, + "name": "1.5 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240354, + "fields": { + "id_car_serie": 49562, + "name": "1.5 AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240355, + "fields": { + "id_car_serie": 49562, + "name": "1.5 AT AWD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240356, + "fields": { + "id_car_serie": 49562, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240357, + "fields": { + "id_car_serie": 49562, + "name": "1.5 AT AWD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240358, + "fields": { + "id_car_serie": 49562, + "name": "1.5 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240359, + "fields": { + "id_car_serie": 49562, + "name": "1.5 MT AWD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240360, + "fields": { + "id_car_serie": 49562, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240361, + "fields": { + "id_car_serie": 49562, + "name": "1.5 MT AWD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240362, + "fields": { + "id_car_serie": 49562, + "name": "1.5 MT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240363, + "fields": { + "id_car_serie": 49562, + "name": "1.6 AT AWD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240364, + "fields": { + "id_car_serie": 49562, + "name": "1.6 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240365, + "fields": { + "id_car_serie": 49562, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240366, + "fields": { + "id_car_serie": 49562, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240367, + "fields": { + "id_car_serie": 49562, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240368, + "fields": { + "id_car_serie": 49562, + "name": "1.7 D AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240369, + "fields": { + "id_car_serie": 49563, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240370, + "fields": { + "id_car_serie": 49563, + "name": "1.5 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240371, + "fields": { + "id_car_serie": 49563, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240372, + "fields": { + "id_car_serie": 49563, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240373, + "fields": { + "id_car_serie": 49563, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240374, + "fields": { + "id_car_serie": 49563, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240375, + "fields": { + "id_car_serie": 49563, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240376, + "fields": { + "id_car_serie": 49563, + "name": "1.5 Turbo MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240377, + "fields": { + "id_car_serie": 49564, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240378, + "fields": { + "id_car_serie": 49564, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240379, + "fields": { + "id_car_serie": 49564, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240380, + "fields": { + "id_car_serie": 49564, + "name": "1.5 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240381, + "fields": { + "id_car_serie": 49564, + "name": "1.5 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240382, + "fields": { + "id_car_serie": 49564, + "name": "1.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240383, + "fields": { + "id_car_serie": 49564, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240384, + "fields": { + "id_car_serie": 49564, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240385, + "fields": { + "id_car_serie": 49564, + "name": "1.7 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240386, + "fields": { + "id_car_serie": 49565, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240387, + "fields": { + "id_car_serie": 49565, + "name": "1.5 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240388, + "fields": { + "id_car_serie": 49565, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240389, + "fields": { + "id_car_serie": 49565, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240390, + "fields": { + "id_car_serie": 49565, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240391, + "fields": { + "id_car_serie": 49565, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240392, + "fields": { + "id_car_serie": 49565, + "name": "1.7 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240393, + "fields": { + "id_car_serie": 51460, + "name": "2.5 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240394, + "fields": { + "id_car_serie": 53312, + "name": "2.0 P400e PHEV AT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240395, + "fields": { + "id_car_serie": 53523, + "name": "200 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240396, + "fields": { + "id_car_serie": 53523, + "name": "250h CVT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240397, + "fields": { + "id_car_serie": 53549, + "name": "2.0 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240398, + "fields": { + "id_car_serie": 53687, + "name": "300 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240399, + "fields": { + "id_car_serie": 53687, + "name": "5.0 AT (477 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240400, + "fields": { + "id_car_serie": 53700, + "name": "400d 9G-Tronic 4Matic (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240401, + "fields": { + "id_car_serie": 53700, + "name": "350d 9G-Tronic 4Matic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240402, + "fields": { + "id_car_serie": 53862, + "name": "1.6 5MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240403, + "fields": { + "id_car_serie": 53862, + "name": "1.6 4MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240404, + "fields": { + "id_car_serie": 53862, + "name": "1.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240405, + "fields": { + "id_car_serie": 53862, + "name": "2.2 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240406, + "fields": { + "id_car_serie": 53862, + "name": "2.2 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240407, + "fields": { + "id_car_serie": 53862, + "name": "2.2 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240408, + "fields": { + "id_car_serie": 53862, + "name": "2.2 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240409, + "fields": { + "id_car_serie": 53862, + "name": "2.2 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240410, + "fields": { + "id_car_serie": 53862, + "name": "2.2 Turbo MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240411, + "fields": { + "id_car_serie": 53863, + "name": "225 Six TorqueFlite (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240412, + "fields": { + "id_car_serie": 53863, + "name": "225 Six MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240413, + "fields": { + "id_car_serie": 53863, + "name": "318 V8 TorqueFlite (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240414, + "fields": { + "id_car_serie": 53863, + "name": "318 V8 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240415, + "fields": { + "id_car_serie": 53863, + "name": "318 V8 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240416, + "fields": { + "id_car_serie": 53863, + "name": "360 V8 TorqueFlite (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240417, + "fields": { + "id_car_serie": 53863, + "name": "360 V8 TorqueFlite (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240418, + "fields": { + "id_car_serie": 53863, + "name": "360 V8 TorqueFlite (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240419, + "fields": { + "id_car_serie": 53863, + "name": "400 V8 TorqueFlite (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240420, + "fields": { + "id_car_serie": 53863, + "name": "400 V8 TorqueFlite (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240421, + "fields": { + "id_car_serie": 53863, + "name": "400 V8 TorqueFlite (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240422, + "fields": { + "id_car_serie": 53863, + "name": "400 V8 dual exhaust TorqueFlite (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240423, + "fields": { + "id_car_serie": 53864, + "name": "225 Six TorqueFlite (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240424, + "fields": { + "id_car_serie": 53864, + "name": "225 Six MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240425, + "fields": { + "id_car_serie": 53864, + "name": "318 V8 TorqueFlite (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240426, + "fields": { + "id_car_serie": 53864, + "name": "318 V8 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240427, + "fields": { + "id_car_serie": 53864, + "name": "340 V8 4bbl TorqueFlite (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240428, + "fields": { + "id_car_serie": 53864, + "name": "340 V8 4bbl MT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240429, + "fields": { + "id_car_serie": 53864, + "name": "360 V8 TorqueFlite (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240430, + "fields": { + "id_car_serie": 53864, + "name": "360 V8 MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240431, + "fields": { + "id_car_serie": 53864, + "name": "400 V8 2bbl TorqueFlite (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240432, + "fields": { + "id_car_serie": 53864, + "name": "400 V8 4bbl TorqueFlite (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240433, + "fields": { + "id_car_serie": 53864, + "name": "400 V8 4bbl MT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240434, + "fields": { + "id_car_serie": 53864, + "name": "440 V8 4bbl TorqueFlite (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240435, + "fields": { + "id_car_serie": 53864, + "name": "440 V8 TorqueFlite (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240436, + "fields": { + "id_car_serie": 53865, + "name": "225 Six TorqueFlite (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240437, + "fields": { + "id_car_serie": 53865, + "name": "225 Six MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240438, + "fields": { + "id_car_serie": 53865, + "name": "318 V8 TorqueFlite (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240439, + "fields": { + "id_car_serie": 53865, + "name": "318 V8 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240440, + "fields": { + "id_car_serie": 53865, + "name": "340 V8 4bbl TorqueFlite (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240441, + "fields": { + "id_car_serie": 53865, + "name": "340 V8 4bbl MT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240442, + "fields": { + "id_car_serie": 53865, + "name": "400 V8 TorqueFlite (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240443, + "fields": { + "id_car_serie": 53865, + "name": "400 V8 4bbl TorqueFlite (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240444, + "fields": { + "id_car_serie": 53865, + "name": "400 V8 4bbl MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240445, + "fields": { + "id_car_serie": 53865, + "name": "440 V8 Magnum Six Pack TorqueFlite (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240446, + "fields": { + "id_car_serie": 53865, + "name": "440 V8 4bbl TorqueFlite (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240447, + "fields": { + "id_car_serie": 53865, + "name": "440 V8 Magnum Six Pack MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240448, + "fields": { + "id_car_serie": 53865, + "name": "440 V8 4bbl MT (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240449, + "fields": { + "id_car_serie": 53866, + "name": "225 Six TorqueFlite (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240450, + "fields": { + "id_car_serie": 53866, + "name": "225 Six MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240451, + "fields": { + "id_car_serie": 53866, + "name": "318 V8 TorqueFlite (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240452, + "fields": { + "id_car_serie": 53866, + "name": "318 V8 MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240453, + "fields": { + "id_car_serie": 53866, + "name": "383 V8 4bbl TorqueFlite (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240454, + "fields": { + "id_car_serie": 53866, + "name": "383 V8 2bbl TorqueFlite (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240455, + "fields": { + "id_car_serie": 53866, + "name": "383 V8 4bbl 3MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240456, + "fields": { + "id_car_serie": 53866, + "name": "383 V8 4bbl 4MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240457, + "fields": { + "id_car_serie": 53866, + "name": "426 V8 Hemi TorqueFlite (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240458, + "fields": { + "id_car_serie": 53866, + "name": "426 V8 Hemi MT (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240459, + "fields": { + "id_car_serie": 53866, + "name": "440 V8 Six Pack TorqueFlite (396 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240460, + "fields": { + "id_car_serie": 53866, + "name": "440 V8 Magnum TorqueFlite (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240461, + "fields": { + "id_car_serie": 53866, + "name": "440 V8 Magnum MT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240462, + "fields": { + "id_car_serie": 53866, + "name": "440 V8 Six Pack MT (396 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240463, + "fields": { + "id_car_serie": 53867, + "name": "225 Six TorqueFlite (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240464, + "fields": { + "id_car_serie": 53867, + "name": "225 Six MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240465, + "fields": { + "id_car_serie": 53867, + "name": "318 V8 TorqueFlite (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240466, + "fields": { + "id_car_serie": 53867, + "name": "318 V8 MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240467, + "fields": { + "id_car_serie": 53867, + "name": "383 V8 2bbl TorqueFlite (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240468, + "fields": { + "id_car_serie": 53867, + "name": "383 V8 4bbl TorqueFlite (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240469, + "fields": { + "id_car_serie": 53867, + "name": "383 V8 2bbl MT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240470, + "fields": { + "id_car_serie": 53867, + "name": "383 V8 4bbl MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240471, + "fields": { + "id_car_serie": 53867, + "name": "426 V8 Hemi TorqueFlite (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240472, + "fields": { + "id_car_serie": 53867, + "name": "426 V8 Hemi MT (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240473, + "fields": { + "id_car_serie": 53867, + "name": "440 V8 Magnum TorqueFlite (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240474, + "fields": { + "id_car_serie": 53867, + "name": "440 V8 Magnum MT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240475, + "fields": { + "id_car_serie": 53868, + "name": "318 V8 TorqueFlite (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240476, + "fields": { + "id_car_serie": 53868, + "name": "318 V8 MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240477, + "fields": { + "id_car_serie": 53868, + "name": "383 V8 4bbl TorqueFlite (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240478, + "fields": { + "id_car_serie": 53868, + "name": "383 V8 2bbl TorqueFlite (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240479, + "fields": { + "id_car_serie": 53868, + "name": "383 V8 4bbl MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240480, + "fields": { + "id_car_serie": 53868, + "name": "383 V8 2bbl MT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240481, + "fields": { + "id_car_serie": 53868, + "name": "426 V8 Hemi TorqueFlite (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240482, + "fields": { + "id_car_serie": 53868, + "name": "426 V8 Hemi MT (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240483, + "fields": { + "id_car_serie": 53868, + "name": "440 V8 Magnum TorqueFlite (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240484, + "fields": { + "id_car_serie": 53868, + "name": "440 V8 Magnum MT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240485, + "fields": { + "id_car_serie": 53869, + "name": "318 V8 TorqueFlite (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240486, + "fields": { + "id_car_serie": 53869, + "name": "318 V8 3MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240487, + "fields": { + "id_car_serie": 53869, + "name": "318 V8 4MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240488, + "fields": { + "id_car_serie": 53869, + "name": "361 V8 TorqueFlite (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240489, + "fields": { + "id_car_serie": 53869, + "name": "361 V8 MT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240490, + "fields": { + "id_car_serie": 53869, + "name": "383 V8 TorqueFlite (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240491, + "fields": { + "id_car_serie": 53869, + "name": "383 V8 2bbl TorqueFlite (274 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240492, + "fields": { + "id_car_serie": 53869, + "name": "383 V8 4bbl TorqueFlite (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240493, + "fields": { + "id_car_serie": 53869, + "name": "383 V8 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240494, + "fields": { + "id_car_serie": 53869, + "name": "383 V8 2bbl MT (274 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240495, + "fields": { + "id_car_serie": 53869, + "name": "383 V8 4bbl MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240496, + "fields": { + "id_car_serie": 53869, + "name": "426 V8 Hemi TorqueFlite (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240497, + "fields": { + "id_car_serie": 53869, + "name": "426 V8 Hemi MT (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240498, + "fields": { + "id_car_serie": 53870, + "name": "2.3 EcoBoost AT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240499, + "fields": { + "id_car_serie": 53870, + "name": "2.3 EcoBoost AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240500, + "fields": { + "id_car_serie": 53870, + "name": "3.0 EcoBoost AT AWD (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240501, + "fields": { + "id_car_serie": 53870, + "name": "3.0 EcoBoost AT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240504, + "fields": { + "id_car_serie": 53875, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240505, + "fields": { + "id_car_serie": 53875, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240506, + "fields": { + "id_car_serie": 53875, + "name": "1.8 Turbo AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240507, + "fields": { + "id_car_serie": 53875, + "name": "1.8 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240508, + "fields": { + "id_car_serie": 53875, + "name": "1.8 Turbo MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240509, + "fields": { + "id_car_serie": 53875, + "name": "1.8 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240510, + "fields": { + "id_car_serie": 53875, + "name": "1.8 TD MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240511, + "fields": { + "id_car_serie": 53875, + "name": "1.8 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240512, + "fields": { + "id_car_serie": 53875, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240513, + "fields": { + "id_car_serie": 53875, + "name": "2.0 5MT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240514, + "fields": { + "id_car_serie": 53875, + "name": "2.0 4MT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240515, + "fields": { + "id_car_serie": 53875, + "name": "2.0 MT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240516, + "fields": { + "id_car_serie": 53875, + "name": "2.0 MT AWD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240517, + "fields": { + "id_car_serie": 53879, + "name": "S 3.0 PDK (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240518, + "fields": { + "id_car_serie": 53894, + "name": "250 7G-DCT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240519, + "fields": { + "id_car_serie": 53896, + "name": "A 1.6 (130 PS) manual gearbox ", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240520, + "fields": { + "id_car_serie": 53896, + "name": "A 1.6 (130 HP) automatic transmission", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240521, + "fields": { + "id_car_serie": 53896, + "name": "1,6 (160 hp) turbodiesel ", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240522, + "fields": { + "id_car_serie": 53896, + "name": "1.6 (200 hp) turbo motor", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240523, + "fields": { + "id_car_serie": 53897, + "name": "2.0 (113 hp) gasoline", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240524, + "fields": { + "id_car_serie": 53897, + "name": "V6 3.0 (194 hp) gasoline", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240525, + "fields": { + "id_car_serie": 53897, + "name": "1.9 (113 hp) turbodiesel", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240526, + "fields": { + "id_car_serie": 53897, + "name": "2.2 (194 hp) turbodiesel", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240527, + "fields": { + "id_car_serie": 53899, + "name": "2.0 (103 hp)", + "arabic_name": "-", + "start_production_year": 1955, + "end_production_year": 1991 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240528, + "fields": { + "id_car_serie": 53899, + "name": "2.8 (153 hp) gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240529, + "fields": { + "id_car_serie": 53899, + "name": "2.1 (88 HP) turbodiesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240530, + "fields": { + "id_car_serie": 53899, + "name": "2,0 (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240531, + "fields": { + "id_car_serie": 53899, + "name": "2,0i\t(120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240532, + "fields": { + "id_car_serie": 53899, + "name": "2,2i\t(110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240533, + "fields": { + "id_car_serie": 53900, + "name": "1.1 (51 hp) gasoline, MT", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240534, + "fields": { + "id_car_serie": 53900, + "name": "1.2 (58 hp) gasoline, MT", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240535, + "fields": { + "id_car_serie": 53900, + "name": "1.3 (63 hp) gasoline, MT", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240536, + "fields": { + "id_car_serie": 53900, + "name": "1.3 (66 hp) gasoline, MT", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240537, + "fields": { + "id_car_serie": 53900, + "name": "0.9 (45 hp) gasoline, MT", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2007 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240538, + "fields": { + "id_car_serie": 8821, + "name": "2.0 (180 hp) gasoline, MT", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240539, + "fields": { + "id_car_serie": 8821, + "name": "2.0 (180bhp) petrol, automatic transmission", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240540, + "fields": { + "id_car_serie": 8821, + "name": "2.0 (192 hp) gasoline, Automatic transmission", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240541, + "fields": { + "id_car_serie": 8821, + "name": "2.0 (88 HP), diesel, automatic transmission", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240542, + "fields": { + "id_car_serie": 8821, + "name": "2.2 l, 95 HP, diesel, automatic transmission", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240543, + "fields": { + "id_car_serie": 8821, + "name": "2.2 l, 102 HP, diesel, automatic transmission", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240544, + "fields": { + "id_car_serie": 53901, + "name": "1.6 (112 hp) MT", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240545, + "fields": { + "id_car_serie": 53901, + "name": "1.4 (103 hp) 5MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240546, + "fields": { + "id_car_serie": 53901, + "name": "1.6 (112 HP) automatic transmission", + "arabic_name": "-", + "start_production_year": 195, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240547, + "fields": { + "id_car_serie": 53901, + "name": "2.0 (86 hp) 5MT", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240548, + "fields": { + "id_car_serie": 53901, + "name": "2.0 (105 hp) 5 MT", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240549, + "fields": { + "id_car_serie": 53902, + "name": "1.6 (112 hp) 5 MT", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240550, + "fields": { + "id_car_serie": 53902, + "name": "1.4 (103 hp) 5 MT", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240551, + "fields": { + "id_car_serie": 53902, + "name": "2.0 (86 hp) 5MT", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240552, + "fields": { + "id_car_serie": 53902, + "name": "2.0 (105 hp) 5 MT", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240553, + "fields": { + "id_car_serie": 53903, + "name": "1.7 (76 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240554, + "fields": { + "id_car_serie": 53903, + "name": "1.7 (81 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240555, + "fields": { + "id_car_serie": 53903, + "name": "1.9 (75 hp) 4WD", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240557, + "fields": { + "id_car_serie": 53904, + "name": "2.7 (112 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240558, + "fields": { + "id_car_serie": 53905, + "name": "1.5 (76hp)", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240559, + "fields": { + "id_car_serie": 53906, + "name": "1.6 (112 hp)", + "arabic_name": "-", + "start_production_year": 19905, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240560, + "fields": { + "id_car_serie": 53906, + "name": "2.0 (136 hp)", + "arabic_name": "-", + "start_production_year": 1990, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240561, + "fields": { + "id_car_serie": 53907, + "name": "1.4 (103 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240562, + "fields": { + "id_car_serie": 53907, + "name": "1.6 (110 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240563, + "fields": { + "id_car_serie": 53907, + "name": "1.6 (115 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240564, + "fields": { + "id_car_serie": 53907, + "name": "2.0 (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240565, + "fields": { + "id_car_serie": 53907, + "name": "2.0 (136 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240566, + "fields": { + "id_car_serie": 53907, + "name": "2.5 (175 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240567, + "fields": { + "id_car_serie": 53908, + "name": "1.4 (103 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240568, + "fields": { + "id_car_serie": 53908, + "name": "1.6 (115 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240569, + "fields": { + "id_car_serie": 53908, + "name": "1.6 (111 HP)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240570, + "fields": { + "id_car_serie": 53908, + "name": "2.0 (136 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240571, + "fields": { + "id_car_serie": 53908, + "name": "2.0 (105 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240572, + "fields": { + "id_car_serie": 53908, + "name": "2.5 (175 hp)", + "arabic_name": "-", + "start_production_year": 1995, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240573, + "fields": { + "id_car_serie": 53909, + "name": "1.4 (103 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240574, + "fields": { + "id_car_serie": 53909, + "name": "1.6 (111 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240575, + "fields": { + "id_car_serie": 53909, + "name": "1.8 (122 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240576, + "fields": { + "id_car_serie": 53909, + "name": "2.0 (200 HP)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240577, + "fields": { + "id_car_serie": 53910, + "name": "1.8 (122 hp)", + "arabic_name": "-", + "start_production_year": 1992, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240578, + "fields": { + "id_car_serie": 53911, + "name": "1.8 (140 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240579, + "fields": { + "id_car_serie": 53911, + "name": "1.8 (145 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240581, + "fields": { + "id_car_serie": 53911, + "name": "1.1 (60 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240582, + "fields": { + "id_car_serie": 53911, + "name": "1.4 (103 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240583, + "fields": { + "id_car_serie": 53911, + "name": "1.4 (75 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240585, + "fields": { + "id_car_serie": 53911, + "name": "1.6 (105 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240586, + "fields": { + "id_car_serie": 53912, + "name": "2.0 (105 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240587, + "fields": { + "id_car_serie": 53912, + "name": "1.6 (111 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1998 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240588, + "fields": { + "id_car_serie": 53912, + "name": "1.4 (103 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240589, + "fields": { + "id_car_serie": 53912, + "name": "1.4 (75 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240590, + "fields": { + "id_car_serie": 53912, + "name": "1.1 (60 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240591, + "fields": { + "id_car_serie": 53912, + "name": "1.8 (140 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240592, + "fields": { + "id_car_serie": 53912, + "name": "1.8 (145 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240594, + "fields": { + "id_car_serie": 7479, + "name": "1.6 (143 hp) MT 5", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240595, + "fields": { + "id_car_serie": 53913, + "name": "1.5 (90 hp) GLS", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240596, + "fields": { + "id_car_serie": 53913, + "name": "1.8 (116 hp) GLS", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240597, + "fields": { + "id_car_serie": 53913, + "name": "2.0 (82 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240598, + "fields": { + "id_car_serie": 53913, + "name": "2.0 (65 hp) TD", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240599, + "fields": { + "id_car_serie": 53914, + "name": "1.5 (87 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240600, + "fields": { + "id_car_serie": 53914, + "name": "1.5 (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240601, + "fields": { + "id_car_serie": 53914, + "name": "1.6 (113 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240602, + "fields": { + "id_car_serie": 53915, + "name": "1.5 (90 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2005 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240603, + "fields": { + "id_car_serie": 15396, + "name": "2.2 (150 hp) 6 Automatic transmission diesel, Four-wheel drive", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240604, + "fields": { + "id_car_serie": 15396, + "name": "2.2 (150 hp) 6 AT", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240605, + "fields": { + "id_car_serie": 15396, + "name": "2.2 (150 hp) 6 AT 2WD. diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240606, + "fields": { + "id_car_serie": 15396, + "name": "2.2 (150 hp) 6 AT 4WD", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240607, + "fields": { + "id_car_serie": 15396, + "name": "2.4 (170 HP) automatic transmission 4", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240608, + "fields": { + "id_car_serie": 53916, + "name": "1.4 (150 hp)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240609, + "fields": { + "id_car_serie": 53917, + "name": "2.4 (140 BHP) automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240610, + "fields": { + "id_car_serie": 53917, + "name": "2.4 (140 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240611, + "fields": { + "id_car_serie": 53917, + "name": "2.0 (127 HP) automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240612, + "fields": { + "id_car_serie": 53917, + "name": "2.0 (127 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240613, + "fields": { + "id_car_serie": 53917, + "name": "2.0 (150 HP) automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240614, + "fields": { + "id_car_serie": 53917, + "name": "2.0 (150 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240615, + "fields": { + "id_car_serie": 53917, + "name": "3.2 V6 (224 HP) automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240616, + "fields": { + "id_car_serie": 53918, + "name": "2.4 (167 HP) automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240617, + "fields": { + "id_car_serie": 53918, + "name": "2.4 (167 HP) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240618, + "fields": { + "id_car_serie": 53918, + "name": "2.2 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240619, + "fields": { + "id_car_serie": 53918, + "name": "2.2 (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240620, + "fields": { + "id_car_serie": 53918, + "name": "V6 3.0 (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240621, + "fields": { + "id_car_serie": 53919, + "name": "2.5 D (75 HP)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240622, + "fields": { + "id_car_serie": 53919, + "name": "1.9 D (60 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240623, + "fields": { + "id_car_serie": 53920, + "name": "1.4 (120 hp) ", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240624, + "fields": { + "id_car_serie": 53920, + "name": "1.4 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240625, + "fields": { + "id_car_serie": 53920, + "name": "1.6 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240626, + "fields": { + "id_car_serie": 53920, + "name": "1,6 (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240627, + "fields": { + "id_car_serie": 53920, + "name": "2.0 (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240628, + "fields": { + "id_car_serie": 53920, + "name": "2.0 (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240629, + "fields": { + "id_car_serie": 53921, + "name": "1.6 ecoTEC (99 hp)", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240630, + "fields": { + "id_car_serie": 53921, + "name": "1.2 ecoTEC Turbo (110 hp)", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240631, + "fields": { + "id_car_serie": 53921, + "name": "1.6 (120 hp)", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240632, + "fields": { + "id_car_serie": 53921, + "name": "1.2 Turbo (130 hp)", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240633, + "fields": { + "id_car_serie": 53921, + "name": "1.2 Turbo (110 HP) automatic transmission", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240634, + "fields": { + "id_car_serie": 53921, + "name": "1.2 (81 hp)", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240635, + "fields": { + "id_car_serie": 53922, + "name": "2.3 (132 HP)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240636, + "fields": { + "id_car_serie": 53922, + "name": "2.3 (111 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1974 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240637, + "fields": { + "id_car_serie": 53922, + "name": "1.8 (78 hp)", + "arabic_name": "-", + "start_production_year": 1972, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240638, + "fields": { + "id_car_serie": 53922, + "name": "1.3 (54)", + "arabic_name": "-", + "start_production_year": 1971, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240639, + "fields": { + "id_car_serie": 53923, + "name": "2.2 DTI (120 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240640, + "fields": { + "id_car_serie": 53923, + "name": "3.2i V6 (205 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240641, + "fields": { + "id_car_serie": 53923, + "name": "2.2i (136 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240642, + "fields": { + "id_car_serie": 53923, + "name": "2.2 DTI (116 hp) diesel", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240644, + "fields": { + "id_car_serie": 53924, + "name": "3.2i V6 24V (205 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240645, + "fields": { + "id_car_serie": 53924, + "name": "2.2 DTI (120 hp) diesel", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240646, + "fields": { + "id_car_serie": 53924, + "name": "2.2 DTI (116 HP) automatic transmission diesel", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240647, + "fields": { + "id_car_serie": 53924, + "name": "2.5 DT (116 hp) diesel", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240649, + "fields": { + "id_car_serie": 53924, + "name": "2.2 16V (136 hp)", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240650, + "fields": { + "id_car_serie": 53924, + "name": "2.0 (116 hp)", + "arabic_name": "-", + "start_production_year": 1997, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240651, + "fields": { + "id_car_serie": 53925, + "name": "2.0 Turbo (260 HP) AWD automatic transmission", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240652, + "fields": { + "id_car_serie": 53925, + "name": "2.0 D Turbo (170 HP) automatic transmission BlueInjection", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240653, + "fields": { + "id_car_serie": 53925, + "name": "2.0 Turbo D (170 hp) BlueInjection MT", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240654, + "fields": { + "id_car_serie": 53925, + "name": "1.6 Turbo D (136 hp)", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240655, + "fields": { + "id_car_serie": 53925, + "name": "1.5 Turbo (165 hp)", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240656, + "fields": { + "id_car_serie": 53925, + "name": "1.5 EcoTEC Turbo (140 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240657, + "fields": { + "id_car_serie": 53926, + "name": "2.0 urbo D BlueInjection (170 hp)", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240658, + "fields": { + "id_car_serie": 53926, + "name": "1.5 EcoTEC Turbo (140 hp)", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240659, + "fields": { + "id_car_serie": 53926, + "name": "2.0 Turbo (260 hp) AWD Automatic", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240660, + "fields": { + "id_car_serie": 53926, + "name": "2.0 Turbo D BlueInjection (170 hp) Automatic", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240661, + "fields": { + "id_car_serie": 53926, + "name": "1.5 Turbo (165 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240662, + "fields": { + "id_car_serie": 53927, + "name": "2.0 Turbo D BlueInjection (170 hp) AWD", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240663, + "fields": { + "id_car_serie": 53927, + "name": "2.0 Turbo D BlueInjection (170 hp) Automatic", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240664, + "fields": { + "id_car_serie": 53927, + "name": "2.0 Turbo D BlueInjection (170 hp)", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240665, + "fields": { + "id_car_serie": 53928, + "name": "2.0 Turbo (260 Hp) AWD Automatic", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240666, + "fields": { + "id_car_serie": 53928, + "name": "2.0 Turbo D BlueInjection (170 Hp) Automatic", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240667, + "fields": { + "id_car_serie": 53928, + "name": "2.0 Turbo D BlueInjection (170 Hp)", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240668, + "fields": { + "id_car_serie": 53928, + "name": "1.6 Turbo D (136 Hp) Automatic", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240669, + "fields": { + "id_car_serie": 53928, + "name": "1.6 EcoTEC Turbo D (136 Hp)", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240670, + "fields": { + "id_car_serie": 53928, + "name": "1.6 EcoTEC Turbo D (110 Hp)", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240672, + "fields": { + "id_car_serie": 53928, + "name": "1.5 EcoTEC Turbo (140 Hp)", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240673, + "fields": { + "id_car_serie": 53929, + "name": "1.4i Turbo ecoTEC (140 hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240674, + "fields": { + "id_car_serie": 53929, + "name": "2.0 CDTi ecoTEC (130 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240675, + "fields": { + "id_car_serie": 53929, + "name": "1.8i ecoTEC (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240676, + "fields": { + "id_car_serie": 53929, + "name": "1.6 i Turbo ecoTEC (170 HP) automatic transmission", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240677, + "fields": { + "id_car_serie": 53929, + "name": "2.0 CDTi ecoTEC (163 hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240678, + "fields": { + "id_car_serie": 53929, + "name": "2.0i Turbo ecoTEC (250 hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240679, + "fields": { + "id_car_serie": 53929, + "name": "2.0 i Turbo ecoTEC (250 HP), automatic transmission", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240680, + "fields": { + "id_car_serie": 53929, + "name": "2.0 CDTi BiTurbo ecoTEC (195 hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240681, + "fields": { + "id_car_serie": 53929, + "name": "2.0 CDTi ecoTEC (163 HP) Automatic", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240682, + "fields": { + "id_car_serie": 53929, + "name": "2.0 CDTi ecoFlex (140 hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240683, + "fields": { + "id_car_serie": 53929, + "name": "2.0 CDTi ecoTEC (130 PS) automatic transmission", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240684, + "fields": { + "id_car_serie": 53929, + "name": "2.0 CDTi ecoFLEX (120 hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240685, + "fields": { + "id_car_serie": 53929, + "name": "1.6i Turbo ecoTEC (170 hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240686, + "fields": { + "id_car_serie": 53929, + "name": "2.0 CDTi BiTurbo ecoTEC (195 hp) Automatic", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240687, + "fields": { + "id_car_serie": 53930, + "name": "1.4i Turbo ecoTEC (140 Hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240688, + "fields": { + "id_car_serie": 53930, + "name": "2.0 CDTi BiTurbo ecoTEC (195 Hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240689, + "fields": { + "id_car_serie": 53930, + "name": "EcoTEC 2.0 CDTi (163 HP) automatic transmission", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240690, + "fields": { + "id_car_serie": 53930, + "name": "1.6i Turbo ecoTEC (170 hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240691, + "fields": { + "id_car_serie": 53930, + "name": "2.0i Turbo ecoTEC (250 hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240692, + "fields": { + "id_car_serie": 53930, + "name": "2.0 i Turbo ecoTEC (250 PS) automatic transmission", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240693, + "fields": { + "id_car_serie": 53930, + "name": "2.0 CDTi ecoFlex (140 hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240694, + "fields": { + "id_car_serie": 53930, + "name": "2.0 CDTi ecoFLEX (120 hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240695, + "fields": { + "id_car_serie": 53930, + "name": "1.8i ecoTEC (140 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240696, + "fields": { + "id_car_serie": 53930, + "name": "1.6 i Turbo ecoTEC (170 HP) automatic transmission", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240697, + "fields": { + "id_car_serie": 53930, + "name": "2.0 CDTi BiTurbo ecoTEC (195 HP) automatic transmission", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240698, + "fields": { + "id_car_serie": 53930, + "name": "2.0 CDTi ecoTEC (163 hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240699, + "fields": { + "id_car_serie": 53930, + "name": "2.0 CDTi ecoTEC (130 PS) automatic transmission", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240700, + "fields": { + "id_car_serie": 53930, + "name": "2.0 CDTi ecoTEC (130 hp) diesel", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240701, + "fields": { + "id_car_serie": 53931, + "name": "1.4i Turbo ecoTEC (140 hp) Start/Stop gasoline", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240702, + "fields": { + "id_car_serie": 53931, + "name": "2.0i Turbo ecoTEC (250 hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240703, + "fields": { + "id_car_serie": 53931, + "name": "1.6i Turbo ecoTEC (170 hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240704, + "fields": { + "id_car_serie": 53931, + "name": "2.0 CDTi ecoFlex (140 hp) Start/Stop diesel", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240705, + "fields": { + "id_car_serie": 53931, + "name": "2.0 CDTi ecoTEC (13 hp) diesel", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240706, + "fields": { + "id_car_serie": 53931, + "name": "2.0 CDTi ecoFLEX (120 hp) Start/Stop diesel", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240707, + "fields": { + "id_car_serie": 53931, + "name": "1.6 i Turbo ecoTEC (170 HP) automatic transmission", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240708, + "fields": { + "id_car_serie": 53931, + "name": "2.0 i Turbo ecoTEC (250 PS) automatic transmission", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240711, + "fields": { + "id_car_serie": 53931, + "name": "2.0 CDTi BiTurbo ecoTEC (195 hp) Automatic transmission diesel", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240712, + "fields": { + "id_car_serie": 53931, + "name": "EcoTEC 2.0 CDTi (163 HP) automatic transmission", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240713, + "fields": { + "id_car_serie": 53931, + "name": "2.0 CDTi ecoTEC (163 hp) Start/Stop diesel", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240714, + "fields": { + "id_car_serie": 53932, + "name": "EcoTEC 2.0 CDTi (163 HP) automatic transmission", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240715, + "fields": { + "id_car_serie": 53932, + "name": "2.0 CDTi BiTurbo ecoTEC (195 hp) 4x4 Automatic transmission", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240716, + "fields": { + "id_car_serie": 53932, + "name": "2.0 CDTi ecoTEC (163 hp) Start/Stop diesel", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240717, + "fields": { + "id_car_serie": 53932, + "name": "2.0 CDTi ecoTEC (163 hp) 4x4 Start/Stop diesel", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240718, + "fields": { + "id_car_serie": 53932, + "name": "2.0 CDTi ecoTEC (163 hp) 4x4 Automatic transmission", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240719, + "fields": { + "id_car_serie": 53933, + "name": "2.0 CDTi ecoTEC (160 hp) diesel", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240720, + "fields": { + "id_car_serie": 53933, + "name": "2.0i Turbo ecoTEC (220 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240721, + "fields": { + "id_car_serie": 53933, + "name": "2.0 CDTi ecoTEC (130 hp) diesel", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240722, + "fields": { + "id_car_serie": 53933, + "name": "1.8i ecoTEC (140 hp) gasoline", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240723, + "fields": { + "id_car_serie": 53933, + "name": "2.0i Turbo ecoTEC (220 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240724, + "fields": { + "id_car_serie": 53933, + "name": "2.0 CDTi ecoTEC (130 PS) automatic transmission", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240725, + "fields": { + "id_car_serie": 53933, + "name": "2.8i Turbo ecoTEC (260 hp) AWD Automatic transmission", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240726, + "fields": { + "id_car_serie": 53933, + "name": "2.0i Turbo ecoTEC (220 hp) AWD Automatic transmission", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240727, + "fields": { + "id_car_serie": 53933, + "name": "2.0i Turbo ecoTEC (220 hp) AWD", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240728, + "fields": { + "id_car_serie": 53933, + "name": "2.0 CDTi ecoTEC (160 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240729, + "fields": { + "id_car_serie": 53934, + "name": "2.0i Turbo ecoTEC (220 hp) AWD Automatic transmission", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240730, + "fields": { + "id_car_serie": 53934, + "name": "2.0 CDTi ecoTEC (130 hp) diesel", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240731, + "fields": { + "id_car_serie": 53934, + "name": "1.8i ecoTEC (140 hp) gasoline", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240732, + "fields": { + "id_car_serie": 53934, + "name": "2.0i Turbo ecoTEC (220 hp) AWD", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240733, + "fields": { + "id_car_serie": 53934, + "name": "2.8i Turbo ecoTEC (260 hp) AWD Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240734, + "fields": { + "id_car_serie": 53934, + "name": "2.0i Turbo ecoTEC (220 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240735, + "fields": { + "id_car_serie": 53934, + "name": "2.0i Turbo ecoTEC (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240736, + "fields": { + "id_car_serie": 53934, + "name": "2.0 CDTi ecoTEC (160 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240737, + "fields": { + "id_car_serie": 53934, + "name": "2.0 CDTi ecoTEC (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240738, + "fields": { + "id_car_serie": 53934, + "name": "2.0 CDTi ecoTEC (130 hp) Automatic transmission diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240739, + "fields": { + "id_car_serie": 53935, + "name": "2.0 CDTi ecoTEC (160 hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240740, + "fields": { + "id_car_serie": 53935, + "name": "2.8i Turbo ecoTEC (260 hp) AWD Automatic transmission", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240741, + "fields": { + "id_car_serie": 53935, + "name": "2.0 CDTi ecoTEC (130 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240742, + "fields": { + "id_car_serie": 53935, + "name": "2.0i Turbo ecoTEC (220 hp) AWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240743, + "fields": { + "id_car_serie": 53935, + "name": "2.0i Turbo ecoTEC (220 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240744, + "fields": { + "id_car_serie": 53935, + "name": "2.0i Turbo ecoTEC (220 hp) AWD Automatic transmission", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240745, + "fields": { + "id_car_serie": 53935, + "name": "2.0i Turbo ecoTEC (220 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240746, + "fields": { + "id_car_serie": 53935, + "name": "2.0 CDTi ecoTEC (160 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240747, + "fields": { + "id_car_serie": 53935, + "name": "2.0 CDTi ecoTEC (130 hp) Automatic", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240748, + "fields": { + "id_car_serie": 53935, + "name": "1.8i ecoTEC (140 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240749, + "fields": { + "id_car_serie": 53936, + "name": "1.6 CDTi ecoTEC (136 hp) Start/Stop 4x4 diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240750, + "fields": { + "id_car_serie": 53936, + "name": "1.6 CDTi ecoTEC (110 hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240751, + "fields": { + "id_car_serie": 53936, + "name": "1.6 CDTi ecoTEC (136 HP) 4x4 Start/Stop diesel", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240752, + "fields": { + "id_car_serie": 53936, + "name": "1.4i Turbo (152 hp) 4x4 Start/Stop Automatic transmission", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240753, + "fields": { + "id_car_serie": 53936, + "name": "1.4i Turbo ecoTEC (140 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240754, + "fields": { + "id_car_serie": 53936, + "name": "1.6i ecoTEC (115 HP) Start/Stop", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240755, + "fields": { + "id_car_serie": 53936, + "name": "1.6 CDTi ecoTEC (136 hp) Start/Stop diesel", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240756, + "fields": { + "id_car_serie": 53936, + "name": "1.6 CDTi ecoTEC (136 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240757, + "fields": { + "id_car_serie": 53936, + "name": "1.4i Turbo ecoTEC (140 hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240758, + "fields": { + "id_car_serie": 53936, + "name": "1.4i Turbo ecoTEC (140 hp) 4x4 Start/Stop", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240759, + "fields": { + "id_car_serie": 53937, + "name": "1.4i Turbo ecoTEC (140 hp) 4x4 Start/Stop", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2016 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240760, + "fields": { + "id_car_serie": 53937, + "name": "1.7 CDTi ecoTEC (130 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2016 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240761, + "fields": { + "id_car_serie": 53937, + "name": "1.4i Turbo ecoTEC (140 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2016 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240762, + "fields": { + "id_car_serie": 53937, + "name": "1.7 CDTi ecoTEC (130 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2016 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240763, + "fields": { + "id_car_serie": 53937, + "name": "1.4i Turbo ecoTEC (140 hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2016 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240764, + "fields": { + "id_car_serie": 53937, + "name": "1.7 CDTi ecoTEC (130 hp) 4x4 diesel", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2016 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240765, + "fields": { + "id_car_serie": 53937, + "name": "1.6i ecoTEC (115 hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2016 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240766, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (146 hp) L2H3", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240767, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (146 hp) L1H2", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240768, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (146 hp) L1H1", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240769, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (146 hp) § L1H2", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240770, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (125 hp) L2H3", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240771, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (125 hp) L2H2", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240772, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (125 hp) L1H2\t", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240773, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (125 hp) DPF L2H3", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240774, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (125 hp) DPF L2H2", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240775, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (100 hp) L2H3", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240776, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (100 hp) L2H2", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240777, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (100 hp) L1H2", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240778, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (100 hp) L1H1", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240779, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (100 hp) DPF L2H2", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240780, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (146 hp) L2H2", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240781, + "fields": { + "id_car_serie": 53938, + "name": ".3 CDTI (146 hp) DPF L2H3", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240782, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (146 hp) DPF L2H2", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240783, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (146 hp) DPF L1H1", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240784, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (125 hp) L1H1", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240785, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (125 hp) DPF L1H2", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240786, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (125 hp) DPF L1H1", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240787, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (100 hp) DPF L2H3", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240788, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (100 hp) DPF L1H2", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240789, + "fields": { + "id_car_serie": 53938, + "name": "2.3 CDTI (100 hp) DPF L1H1", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240790, + "fields": { + "id_car_serie": 53939, + "name": "3500 3.0 CDTI 16V (136 hp) diesel", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240791, + "fields": { + "id_car_serie": 53939, + "name": "3500 2.5 CDTI 16V (115 hp ) Automatic transmission diesel", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240792, + "fields": { + "id_car_serie": 53939, + "name": "3500 2.5 CDTI 16V (115 hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240793, + "fields": { + "id_car_serie": 53939, + "name": "3500 2.5 CDTI 16V (100 hp) Automatic transmission diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240794, + "fields": { + "id_car_serie": 53939, + "name": "3500 2.5 CDTI 16V (100 hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240795, + "fields": { + "id_car_serie": 53939, + "name": "3300 3.0 CDTI 16V (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240796, + "fields": { + "id_car_serie": 53939, + "name": "3300 2.5 CDTI 16V (115 hp) Automatic transmission diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240797, + "fields": { + "id_car_serie": 53939, + "name": "3300 2.5 CDTI 16V (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240798, + "fields": { + "id_car_serie": 53939, + "name": "3300 2.5 CDTI 16V (100 hp) Automatic transmission diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240799, + "fields": { + "id_car_serie": 53939, + "name": "3300 2.5 CDTI 16V (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240800, + "fields": { + "id_car_serie": 53939, + "name": "2800 2.5 CDTI 16V (115 hp) Automatic transmission diesel ", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240801, + "fields": { + "id_car_serie": 53939, + "name": "2800 2.5 CDTI 16V (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240802, + "fields": { + "id_car_serie": 53939, + "name": "2800 2.5 CDTI 16V (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240803, + "fields": { + "id_car_serie": 53939, + "name": "2800 2.5 CDTI 16V (100 hp) Automatic transmission ", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240804, + "fields": { + "id_car_serie": 53939, + "name": "2800 1.9CDTI (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240805, + "fields": { + "id_car_serie": 53940, + "name": "3500 3.0 CDTI 16V (136 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240806, + "fields": { + "id_car_serie": 53940, + "name": "3500 2.5 CDTI 16V (115 hp) Automatic transmission ", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240807, + "fields": { + "id_car_serie": 53940, + "name": "3500 2.5 CDTI 16V (115 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240808, + "fields": { + "id_car_serie": 53940, + "name": "3500 2.5 CDTI 16V (100 hp) Automatic transmission ", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240809, + "fields": { + "id_car_serie": 53940, + "name": "3500 2.5 CDTI 16V (100 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240810, + "fields": { + "id_car_serie": 53940, + "name": "3300 3.0 CDTI 16V (136 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240811, + "fields": { + "id_car_serie": 53940, + "name": "3300 2.5 CDTI 16V (115 hp) Automatic transmission ", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240812, + "fields": { + "id_car_serie": 53940, + "name": "3300 2.5 CDTI 16V (115 hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240813, + "fields": { + "id_car_serie": 53940, + "name": "3300 2.5 CDTI 16V (100 hp) Automatic transmission diesel ", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240814, + "fields": { + "id_car_serie": 53940, + "name": "3300 2.5 CDTI 16V (100 hp) diesel", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240815, + "fields": { + "id_car_serie": 53941, + "name": "3500 3.0 CDTI 16V (136 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2009 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240816, + "fields": { + "id_car_serie": 53941, + "name": "3500 2.5 CDTI 16V (115 hp) Automatic transmission ", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240817, + "fields": { + "id_car_serie": 53941, + "name": "3500 2.5 CDTI 16V (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240818, + "fields": { + "id_car_serie": 53941, + "name": "3500 2.5 CDTI 16V (100 hp) Automatic transmission ", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240819, + "fields": { + "id_car_serie": 53941, + "name": "3500 2.5 CDTI 16V (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240820, + "fields": { + "id_car_serie": 53942, + "name": "5.7 V8 (310 hp) Automatic transmission ", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240821, + "fields": { + "id_car_serie": 53942, + "name": "2.2i (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240822, + "fields": { + "id_car_serie": 53942, + "name": "2.0 DTI 16V (101 HP) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240823, + "fields": { + "id_car_serie": 53942, + "name": "3.0i V6 24V (211 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240824, + "fields": { + "id_car_serie": 53942, + "name": "2.5 TD (130 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240825, + "fields": { + "id_car_serie": 53942, + "name": "2.5i V6 24V (170 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240826, + "fields": { + "id_car_serie": 53942, + "name": "2.0i (116 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240827, + "fields": { + "id_car_serie": 53942, + "name": "2.0i 16V (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240828, + "fields": { + "id_car_serie": 53942, + "name": "3.0i V6 24V (211 hp) Automatic transmission ", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240829, + "fields": { + "id_car_serie": 53942, + "name": "2.5i V6 24V (170 hp) Automatic transmission ", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240830, + "fields": { + "id_car_serie": 53942, + "name": "2.5 TD (130 hp) Automatic transmission diesel ", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240831, + "fields": { + "id_car_serie": 53942, + "name": "2.0i (116 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240832, + "fields": { + "id_car_serie": 53942, + "name": "2.0i 16V (136 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240833, + "fields": { + "id_car_serie": 53943, + "name": "5.7 V8 (310 hp) Automatic transmission ", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240834, + "fields": { + "id_car_serie": 53943, + "name": "2.2i (144 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240835, + "fields": { + "id_car_serie": 53943, + "name": "2.0 DTI 16V (101 hp) diesel", + "arabic_name": "-", + "start_production_year": 1998, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240836, + "fields": { + "id_car_serie": 53943, + "name": "3.0i V6 (211 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240837, + "fields": { + "id_car_serie": 53943, + "name": "2.5 TD (130 hp) diesel", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240838, + "fields": { + "id_car_serie": 53943, + "name": "2.5i V6 (170 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240839, + "fields": { + "id_car_serie": 53943, + "name": "2.0i (116 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 1999 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240840, + "fields": { + "id_car_serie": 53943, + "name": "2.0 16V (136 hp)", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240842, + "fields": { + "id_car_serie": 53943, + "name": "2.5i V6 (170 hp) Automatic transmission ", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240843, + "fields": { + "id_car_serie": 53943, + "name": "2.0i (116 hp) Automatic transmission ", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240844, + "fields": { + "id_car_serie": 53943, + "name": "2.0 16V (136 hp) Automatic transmission ", + "arabic_name": "-", + "start_production_year": 1994, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240845, + "fields": { + "id_car_serie": 4327, + "name": "3.0 V6 (180 hp)", + "arabic_name": "-", + "start_production_year": 1978, + "end_production_year": 1986 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240846, + "fields": { + "id_car_serie": 4326, + "name": "2.2i (115 hp)", + "arabic_name": "-", + "start_production_year": 1986, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240847, + "fields": { + "id_car_serie": 4326, + "name": "2.3 TD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240848, + "fields": { + "id_car_serie": 4326, + "name": "2.0 E (110 hp)", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240849, + "fields": { + "id_car_serie": 4326, + "name": "2.5 E (136 hp)", + "arabic_name": "-", + "start_production_year": 1981, + "end_production_year": 1984 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240850, + "fields": { + "id_car_serie": 4326, + "name": "3.0 E V6 (180 hp) Automatic transmission ", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240851, + "fields": { + "id_car_serie": 4326, + "name": "3.0 E V6 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240852, + "fields": { + "id_car_serie": 4326, + "name": "3.0 V6 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240853, + "fields": { + "id_car_serie": 53944, + "name": "3.0 V6 CDTi 24V ECOTEC (184 hp) Automatic transmission diesel", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240854, + "fields": { + "id_car_serie": 53944, + "name": "3.0 V6 CDTi 24V ECOTEC (184 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240855, + "fields": { + "id_car_serie": 53944, + "name": "2.8i V6 24V Turbo ECOTEC (230 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240856, + "fields": { + "id_car_serie": 53944, + "name": "2.8i V6 24V Turbo ECOTEC (230 hp)", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240857, + "fields": { + "id_car_serie": 53944, + "name": "2.2i 16V Direct ECOTEC (155 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240858, + "fields": { + "id_car_serie": 53944, + "name": "2.2i 16V Direct ECOTEC (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240859, + "fields": { + "id_car_serie": 53944, + "name": "2.0i 16V Turbo ECOTEC (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240860, + "fields": { + "id_car_serie": 53944, + "name": "1.9 CDTi ECOTEC (150 hp) Automatic transmission diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240861, + "fields": { + "id_car_serie": 53944, + "name": "1.9 CDTi ECOTEC (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240862, + "fields": { + "id_car_serie": 53944, + "name": "1.9 CDTi ECOTEC (120 hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240863, + "fields": { + "id_car_serie": 53944, + "name": "1.8i 16V ECOTEC (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240876, + "fields": { + "id_car_serie": 4331, + "name": "2.2i 16V Direct ECOTEC (155 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240877, + "fields": { + "id_car_serie": 4331, + "name": "2.2i 16V Direct ECOTEC (155 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240878, + "fields": { + "id_car_serie": 4330, + "name": "3.0 V6 CDTi 24V ECOTEC (184 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2002, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240879, + "fields": { + "id_car_serie": 4330, + "name": "3.0 V6 CDTi 24V ECOTEC (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240880, + "fields": { + "id_car_serie": 4330, + "name": "1.9 CDTi ECOTEC (150 hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240881, + "fields": { + "id_car_serie": 4329, + "name": "1.9 CDTi ECOTEC (150 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240882, + "fields": { + "id_car_serie": 53947, + "name": "1.6 l (82 hp) MT gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240883, + "fields": { + "id_car_serie": 53947, + "name": "1.6 l (113 hp) MT gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240885, + "fields": { + "id_car_serie": 14696, + "name": "1.6 l (113 HP) CVT gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240886, + "fields": { + "id_car_serie": 53946, + "name": "1.6 l (82 hp) MT gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240887, + "fields": { + "id_car_serie": 53946, + "name": "1.6 l (113 hp) MT gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240888, + "fields": { + "id_car_serie": 53946, + "name": "1.6 l (102 HP) automatic transmission gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240889, + "fields": { + "id_car_serie": 53948, + "name": "1.6 l (113 HP) CVT gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240890, + "fields": { + "id_car_serie": 53748, + "name": "1.6 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240892, + "fields": { + "id_car_serie": 53950, + "name": "2.0 Turbo (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240893, + "fields": { + "id_car_serie": 53951, + "name": "2.0 CDTi (170 hp) Start/Stop Automatic", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240894, + "fields": { + "id_car_serie": 53951, + "name": "2.0 CDTi (170 hp) Start/Stop", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240895, + "fields": { + "id_car_serie": 53951, + "name": "1.6 CDTi (134 hp) Start/Stop ecoFLEX", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240896, + "fields": { + "id_car_serie": 53951, + "name": "1.4 Turbo (140 hp) Automatic", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240897, + "fields": { + "id_car_serie": 53951, + "name": "1.4 Turbo (140 hp )", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240898, + "fields": { + "id_car_serie": 53952, + "name": "1.6 XER (115 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240899, + "fields": { + "id_car_serie": 53952, + "name": "1.7 DTR (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240900, + "fields": { + "id_car_serie": 53952, + "name": "1.8 XER (140 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240901, + "fields": { + "id_car_serie": 53952, + "name": "1.7 DTR (125 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240902, + "fields": { + "id_car_serie": 53953, + "name": "2.0 CDTI (170 hp ) start/stop", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240903, + "fields": { + "id_car_serie": 53953, + "name": "2.0 CDTI (170 hp) Automatic", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240904, + "fields": { + "id_car_serie": 53953, + "name": "1.6 CDTI (136 hp) Ecotec start/stop", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240905, + "fields": { + "id_car_serie": 53953, + "name": "1.4 Turbo (140 hp) Ecotec Automatic", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240906, + "fields": { + "id_car_serie": 53953, + "name": "1.4 Turbo (140 hp) Ecotec", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240907, + "fields": { + "id_car_serie": 53954, + "name": "1.9 CDTI (120 hp)", + "arabic_name": "-", + "start_production_year": 2007, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240908, + "fields": { + "id_car_serie": 53954, + "name": "2.2i 16V (150 hp) Automatic", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240909, + "fields": { + "id_car_serie": 53954, + "name": "2.2i 16V (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240910, + "fields": { + "id_car_serie": 53954, + "name": "2.0i 16V Turbo OPC (240 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240911, + "fields": { + "id_car_serie": 53954, + "name": "2.0i 16V Turbo (200 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240912, + "fields": { + "id_car_serie": 53954, + "name": "1.9 CDTI (150 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240913, + "fields": { + "id_car_serie": 53954, + "name": "1.8i 16V (140 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240914, + "fields": { + "id_car_serie": 53954, + "name": "1.6i 16V (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240915, + "fields": { + "id_car_serie": 53954, + "name": "1.8i 16V (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240916, + "fields": { + "id_car_serie": 53955, + "name": "2.0 DI 16V (82 hp) diesel", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240917, + "fields": { + "id_car_serie": 53955, + "name": "1.8 16V (116.s.)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240918, + "fields": { + "id_car_serie": 53955, + "name": "1.6 16V (101 hp)", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240919, + "fields": { + "id_car_serie": 53955, + "name": "1.8 16V (116 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 1999, + "end_production_year": 2000 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240920, + "fields": { + "id_car_serie": 53956, + "name": "1.8 i (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240921, + "fields": { + "id_car_serie": 53956, + "name": "1.5 i 16V (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240922, + "fields": { + "id_car_serie": 53956, + "name": "1.5 i (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240923, + "fields": { + "id_car_serie": 53956, + "name": "1.5 i 16V (90 hp) Automatic", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240924, + "fields": { + "id_car_serie": 46908, + "name": "2,8 S (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240925, + "fields": { + "id_car_serie": 53707, + "name": "4.4 V8 (598 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240926, + "fields": { + "id_car_serie": 53708, + "name": "4.4 V8 (598 hp) Automatic transmission Four-wheel drive", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240927, + "fields": { + "id_car_serie": 53729, + "name": "1330cc / 81.1 cu-in CC", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240930, + "fields": { + "id_car_serie": 15272, + "name": "2.0 EcoBoost AT Ultra Comfort 2.0 (199 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240931, + "fields": { + "id_car_serie": 15272, + "name": "2.0 EcoBoost AT Titanium 2.0 (199 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240932, + "fields": { + "id_car_serie": 53957, + "name": "1.5 (99 HP)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240933, + "fields": { + "id_car_serie": 47142, + "name": "1.6 (94 hp) MT", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240934, + "fields": { + "id_car_serie": 47142, + "name": "1.6 (88 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2010 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240935, + "fields": { + "id_car_serie": 53960, + "name": "1,6 (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240936, + "fields": { + "id_car_serie": 53961, + "name": "2.7 (163 hp) Automatic transmission, diesel", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240937, + "fields": { + "id_car_serie": 53961, + "name": "2.7 (163 hp) MT, diesel", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240938, + "fields": { + "id_car_serie": 53728, + "name": "3.8 (570 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240939, + "fields": { + "id_car_serie": 2916, + "name": "2.0 TDI MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240940, + "fields": { + "id_car_serie": 3031, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240941, + "fields": { + "id_car_serie": 3031, + "name": "1.4 Turbo (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240942, + "fields": { + "id_car_serie": 3031, + "name": "1,3 (75 hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240943, + "fields": { + "id_car_serie": 3031, + "name": "1,3 (95 hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240944, + "fields": { + "id_car_serie": 3110, + "name": "1.6 (114 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240945, + "fields": { + "id_car_serie": 5809, + "name": "1.6 (155 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240946, + "fields": { + "id_car_serie": 5809, + "name": "1.6 (90 hp) HDi FAP ", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240947, + "fields": { + "id_car_serie": 5809, + "name": "1.6 (110 BHP) manual transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240948, + "fields": { + "id_car_serie": 5809, + "name": "1.6 (150 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240949, + "fields": { + "id_car_serie": 5809, + "name": "1.2 (81 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240950, + "fields": { + "id_car_serie": 5809, + "name": "1.2 (81 hp) PureTech", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240951, + "fields": { + "id_car_serie": 3117, + "name": "1.6 (114 hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240952, + "fields": { + "id_car_serie": 3117, + "name": "1.6 (92 hp) HDi ", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240953, + "fields": { + "id_car_serie": 3117, + "name": "1.6 (82 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240954, + "fields": { + "id_car_serie": 5811, + "name": "1.2 (130 hp) turbo MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240955, + "fields": { + "id_car_serie": 5811, + "name": "1.2 (130 HP) turbo automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240956, + "fields": { + "id_car_serie": 5811, + "name": "1,6 (155 hp) turbo diesel, 5MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240957, + "fields": { + "id_car_serie": 5811, + "name": "1.6 (120 BHP) turbo diesel 6 automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240958, + "fields": { + "id_car_serie": 5811, + "name": "2.0 (150 hp) 6MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240959, + "fields": { + "id_car_serie": 53983, + "name": "1.0 TSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240960, + "fields": { + "id_car_serie": 53983, + "name": "1.5 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240961, + "fields": { + "id_car_serie": 53983, + "name": "1.5 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240962, + "fields": { + "id_car_serie": 53983, + "name": "1.6 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240963, + "fields": { + "id_car_serie": 53983, + "name": "2.0 TDI MT 4Motion (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240964, + "fields": { + "id_car_serie": 53983, + "name": "2.0 TSI DSG 4Motion (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240965, + "fields": { + "id_car_serie": 53983, + "name": "2.0 TDI DSG 4Motion (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240967, + "fields": { + "id_car_serie": 506, + "name": "1.5 dCI 5MT (90 HP)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240968, + "fields": { + "id_car_serie": 53985, + "name": "1.3 TCe (130 hp)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240969, + "fields": { + "id_car_serie": 53985, + "name": "1.3 TCe (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240970, + "fields": { + "id_car_serie": 5835, + "name": "1.4 (85 hp)", + "arabic_name": "-", + "start_production_year": 2004, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240971, + "fields": { + "id_car_serie": 53637, + "name": "1.2 (75 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240972, + "fields": { + "id_car_serie": 53637, + "name": "1.4 (75 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240973, + "fields": { + "id_car_serie": 53986, + "name": "1.6 (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240974, + "fields": { + "id_car_serie": 53986, + "name": "1.6 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240975, + "fields": { + "id_car_serie": 53986, + "name": "1.6 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240976, + "fields": { + "id_car_serie": 3337, + "name": "EcoBoost, 1 5 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240977, + "fields": { + "id_car_serie": 3337, + "name": "1.6 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240978, + "fields": { + "id_car_serie": 3337, + "name": "1.6 (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240979, + "fields": { + "id_car_serie": 45398, + "name": "1.5 EcoBoost (160 hp", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": 2018 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240980, + "fields": { + "id_car_serie": 8682, + "name": "1.4 DOHC CVVT (105 HP)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2012 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240981, + "fields": { + "id_car_serie": 3553, + "name": "1.6 CRDi (110 hp)", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 240982, + "fields": { + "id_car_serie": 16267, + "name": "1.4 CRDI (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240983, + "fields": { + "id_car_serie": 3656, + "name": "1.6 (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240984, + "fields": { + "id_car_serie": 6796, + "name": "1.6 (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240985, + "fields": { + "id_car_serie": 49368, + "name": "1.6 (102 hp) 5MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240986, + "fields": { + "id_car_serie": 2598, + "name": "2.5 Automatic transmission (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240987, + "fields": { + "id_car_serie": 53741, + "name": "1.5 Automatic transmission (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240988, + "fields": { + "id_car_serie": 53741, + "name": "1.6 Automatic transmission (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240989, + "fields": { + "id_car_serie": 53763, + "name": "0.0 (360 HP) electro", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240990, + "fields": { + "id_car_serie": 53987, + "name": "3.0 (480 hp) X3 M Special Edition xDriveAT8", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240991, + "fields": { + "id_car_serie": 53987, + "name": "3.0 (510 hp) X3 M Competition xDrive AT8", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240994, + "fields": { + "id_car_serie": 53989, + "name": "3.3 (249 hp) Luxe AWD AT8", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240995, + "fields": { + "id_car_serie": 53989, + "name": "3.3 (249 hp) Prestige AWD AT8", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240996, + "fields": { + "id_car_serie": 53989, + "name": "3.3 (249 hp) Premium AWD AT8", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240997, + "fields": { + "id_car_serie": 53989, + "name": "5.0 (413 hp) Premium AWD AT8", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240998, + "fields": { + "id_car_serie": 53783, + "name": "1.8 d (116 hp) diesel Automatic transmission", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 240999, + "fields": { + "id_car_serie": 53783, + "name": "1.8 d (116 hp) diesel MT", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241000, + "fields": { + "id_car_serie": 53783, + "name": "2.0 (122 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241001, + "fields": { + "id_car_serie": 53783, + "name": "2.0 (122 hp) MT gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241002, + "fields": { + "id_car_serie": 53782, + "name": "Manual transmission 2.0 (122 HP)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241003, + "fields": { + "id_car_serie": 53782, + "name": "2.0 automatic (122 HP)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241004, + "fields": { + "id_car_serie": 53782, + "name": "Automatic transmission 1.8 (116 HP)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241005, + "fields": { + "id_car_serie": 53782, + "name": "1.8 manual gearbox (116 HP)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241006, + "fields": { + "id_car_serie": 53894, + "name": "1.4 (163 hp) gasoline ", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241007, + "fields": { + "id_car_serie": 53894, + "name": "2.0 (224 hp) Four-wheel drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241008, + "fields": { + "id_car_serie": 53999, + "name": "M260 2.0 (2255 hp) robot", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241009, + "fields": { + "id_car_serie": 53999, + "name": " M282 1.3 (109 hp)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241010, + "fields": { + "id_car_serie": 53999, + "name": "1.3 (161 hp) turbo", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241011, + "fields": { + "id_car_serie": 53999, + "name": "OM 608 1.5 (114 hp) turbodiesel", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241012, + "fields": { + "id_car_serie": 54000, + "name": "OM608 1.5 (116 hp) turbodiesel", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241013, + "fields": { + "id_car_serie": 54000, + "name": " OM654 2.0 (150 hp) turbodiesel", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241014, + "fields": { + "id_car_serie": 54001, + "name": "M264 2.0 (197 hp)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241015, + "fields": { + "id_car_serie": 54001, + "name": "2.0 (258 hp)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241016, + "fields": { + "id_car_serie": 54001, + "name": "2.0 (163 hp) diesel", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241017, + "fields": { + "id_car_serie": 54001, + "name": "2.0 (194 hp) diesel", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241018, + "fields": { + "id_car_serie": 54001, + "name": "2.0 (245 hp) diesel", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241019, + "fields": { + "id_car_serie": 54002, + "name": "2.0 (245 hp), diesel, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241020, + "fields": { + "id_car_serie": 54002, + "name": "2.9 (330 HP), diesel, automatic transmission, all-wheel drive (4WD), hybrid", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241021, + "fields": { + "id_car_serie": 54002, + "name": "3.0 (367 HP) petrol, automatic transmission, all-wheel drive (4WD), hybrid", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241022, + "fields": { + "id_car_serie": 3604, + "name": "2.0 (200 hp) gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241023, + "fields": { + "id_car_serie": 3604, + "name": "2.0 (249 hp) gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241024, + "fields": { + "id_car_serie": 3604, + "name": "2.0 (300 HP) petrol, automatic transmission, all-wheel drive (4WD), hybrid", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241025, + "fields": { + "id_car_serie": 3604, + "name": "2.0 (150 hp) diesel, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241026, + "fields": { + "id_car_serie": 3604, + "name": "2.0 (180 hp) diesel, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241027, + "fields": { + "id_car_serie": 53794, + "name": "1.6 (122 hp) MT", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241028, + "fields": { + "id_car_serie": 53794, + "name": "1.6 (132 HP) manual transmission for Europe", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241029, + "fields": { + "id_car_serie": 53794, + "name": "1.6 (132 HP) CVT (for Europe)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241030, + "fields": { + "id_car_serie": 53794, + "name": "1.6 (122 hp) CVT", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241031, + "fields": { + "id_car_serie": 53758, + "name": "1.2 (110 hp) gasoline", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241032, + "fields": { + "id_car_serie": 53758, + "name": "1.2 (130 hp) gasoline", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241033, + "fields": { + "id_car_serie": 53758, + "name": "1.2 (155 HP) at 6000 Rev/min and 240 Nm available traction at 1400 rpm", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241034, + "fields": { + "id_car_serie": 53758, + "name": "1.5 (100 HP) BlueHDI turbo-supercharging, diesel", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241035, + "fields": { + "id_car_serie": 53758, + "name": "1.5 (130 HP) with the BlueHDI turbo-supercharging, diesel, at 3600 rpm and 270 Nm of torque at 1750 rpm", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241036, + "fields": { + "id_car_serie": 54003, + "name": "2.0 (250 hp) T5 AT AWD ", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241037, + "fields": { + "id_car_serie": 54003, + "name": "2.0 (190 hp) diesel ", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241038, + "fields": { + "id_car_serie": 54003, + "name": "2.0 (250 HP) diesel turbo-supercharging ", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241039, + "fields": { + "id_car_serie": 54003, + "name": "2.0 (250 hp) Automatic transmission gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241040, + "fields": { + "id_car_serie": 45471, + "name": "2.0 (245 hp) T5 AT AWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241041, + "fields": { + "id_car_serie": 45471, + "name": "2.0 (150 hp) D3 AT diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241042, + "fields": { + "id_car_serie": 45471, + "name": "2.4 (190 hp) D4 AT AWD, diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241043, + "fields": { + "id_car_serie": 45471, + "name": "2.5 (249 hp) T5 AT AWD, gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241044, + "fields": { + "id_car_serie": 47377, + "name": "3.0 (450 hp) gasoline, robot, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241045, + "fields": { + "id_car_serie": 47377, + "name": "3.0 (450 hp) gasoline, robot, RWD, (RR)", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241046, + "fields": { + "id_car_serie": 54005, + "name": "1.6 (114 HP) MT", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241047, + "fields": { + "id_car_serie": 54005, + "name": "1.6 (114 hp) Four-wheel drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241048, + "fields": { + "id_car_serie": 54005, + "name": "2.0 (143 hp) MT", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241049, + "fields": { + "id_car_serie": 54005, + "name": "2.0 (143 hp) Automatic transmission 4WD", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241050, + "fields": { + "id_car_serie": 4355, + "name": "Passat 2.0 (140 hp) TDI (103 kW)", + "arabic_name": "-", + "start_production_year": 2011, + "end_production_year": 2015 + } +}, +{ + "model": "inventory.cartrim", + "pk": 241051, + "fields": { + "id_car_serie": 6044, + "name": "1.4 1.6V 185 (hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241052, + "fields": { + "id_car_serie": 6044, + "name": "1.3 Multijet JTD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241053, + "fields": { + "id_car_serie": 6044, + "name": "1.2 Natural Power (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241054, + "fields": { + "id_car_serie": 6044, + "name": "1.2 (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241055, + "fields": { + "id_car_serie": 6044, + "name": "1.3 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241056, + "fields": { + "id_car_serie": 54006, + "name": "1.2 8v 5 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241057, + "fields": { + "id_car_serie": 54006, + "name": "1.3 Multijet 16v 5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241058, + "fields": { + "id_car_serie": 54006, + "name": "1.3 Multijet 16v 6 Automatic transmission (90 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 241059, + "fields": { + "id_car_serie": 54006, + "name": "1.4 16v 6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 241060, + "fields": { + "id_car_serie": 54006, + "name": "1.4 8v 5 MT (77 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 241061, + "fields": { + "id_car_serie": 54006, + "name": "1.9 Multijet 8v 6 Automatic transmission (120 hp)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2008 + } +}, +{ + "model": "inventory.cartrim", + "pk": 241062, + "fields": { + "id_car_serie": 54009, + "name": "1.2 5 MT (65 hp)", + "arabic_name": "-", + "start_production_year": 2008, + "end_production_year": 2011 + } +}, +{ + "model": "inventory.cartrim", + "pk": 241063, + "fields": { + "id_car_serie": 54009, + "name": "1.3 16v 6 Automatic transmission (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241064, + "fields": { + "id_car_serie": 54009, + "name": "1.3 16v 6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241065, + "fields": { + "id_car_serie": 54009, + "name": "1.4 5 Automatic transmission (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241066, + "fields": { + "id_car_serie": 54009, + "name": "1.4 6 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241067, + "fields": { + "id_car_serie": 54009, + "name": "1.4 T-Jet 16v 5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241068, + "fields": { + "id_car_serie": 54009, + "name": "1.6 TD 6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241069, + "fields": { + "id_car_serie": 54009, + "name": "Abarth SS 1.4 T Automatic transmission (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241070, + "fields": { + "id_car_serie": 54007, + "name": "1.2 8v 5 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241071, + "fields": { + "id_car_serie": 54007, + "name": "1.3 Multijet 16v 5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241072, + "fields": { + "id_car_serie": 54007, + "name": "1.3 Multijet 16v 6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241073, + "fields": { + "id_car_serie": 54007, + "name": "1.3 Multijet 16v 6 Automatic transmission (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241074, + "fields": { + "id_car_serie": 54007, + "name": "1.4 16v 6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241075, + "fields": { + "id_car_serie": 54007, + "name": "1.4 8v 5 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241076, + "fields": { + "id_car_serie": 54007, + "name": "1.4 8v 5 Automatic transmission (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241077, + "fields": { + "id_car_serie": 54007, + "name": "1.9 Multijet 8v 6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241078, + "fields": { + "id_car_serie": 54008, + "name": "1.2 8v 5 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241079, + "fields": { + "id_car_serie": 54008, + "name": "1.3 6 Automatic transmission (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241080, + "fields": { + "id_car_serie": 54008, + "name": "1.3 6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241081, + "fields": { + "id_car_serie": 54008, + "name": "1.3 5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241082, + "fields": { + "id_car_serie": 54008, + "name": " 1.4 16v 6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241083, + "fields": { + "id_car_serie": 54008, + "name": "1.4 8v 5 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241084, + "fields": { + "id_car_serie": 54008, + "name": "1.4 T-Jet 16v 5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241085, + "fields": { + "id_car_serie": 54008, + "name": "1.6 TD 6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241086, + "fields": { + "id_car_serie": 3543, + "name": "6.2 Hemi AT AWD (710 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241087, + "fields": { + "id_car_serie": 3543, + "name": "6.4 Hemi AT AWD (468 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241088, + "fields": { + "id_car_serie": 4263, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241089, + "fields": { + "id_car_serie": 4263, + "name": "2.0 d AT AWD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241090, + "fields": { + "id_car_serie": 4263, + "name": "2.0 d AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241091, + "fields": { + "id_car_serie": 4263, + "name": "2.0 AT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241092, + "fields": { + "id_car_serie": 4263, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241093, + "fields": { + "id_car_serie": 4263, + "name": "2.0 AT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241094, + "fields": { + "id_car_serie": 4263, + "name": "2.0 MT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241095, + "fields": { + "id_car_serie": 4263, + "name": "2.0 d MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241096, + "fields": { + "id_car_serie": 4417, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241097, + "fields": { + "id_car_serie": 4417, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241098, + "fields": { + "id_car_serie": 4417, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241099, + "fields": { + "id_car_serie": 4417, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241100, + "fields": { + "id_car_serie": 4417, + "name": "1.5 AT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241101, + "fields": { + "id_car_serie": 4417, + "name": "1.5 MT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241102, + "fields": { + "id_car_serie": 6162, + "name": "2.3i MT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241103, + "fields": { + "id_car_serie": 6468, + "name": "2.2 CRDi AT AWD (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241104, + "fields": { + "id_car_serie": 6468, + "name": "3.3 AT AWD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241105, + "fields": { + "id_car_serie": 8869, + "name": "2.8 TD AT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241106, + "fields": { + "id_car_serie": 8869, + "name": "3.0 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241107, + "fields": { + "id_car_serie": 8870, + "name": "2.4 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241108, + "fields": { + "id_car_serie": 8870, + "name": "2.4 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241109, + "fields": { + "id_car_serie": 8870, + "name": "2.8 TD AT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241110, + "fields": { + "id_car_serie": 8870, + "name": "2.8 TD MT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241111, + "fields": { + "id_car_serie": 8870, + "name": "3.0 AT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241112, + "fields": { + "id_car_serie": 9217, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241113, + "fields": { + "id_car_serie": 9217, + "name": "2.0 AT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241114, + "fields": { + "id_car_serie": 9217, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241115, + "fields": { + "id_car_serie": 9217, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241116, + "fields": { + "id_car_serie": 9217, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241117, + "fields": { + "id_car_serie": 9217, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241118, + "fields": { + "id_car_serie": 9217, + "name": "2.0 MT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241119, + "fields": { + "id_car_serie": 9218, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241120, + "fields": { + "id_car_serie": 62918, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241121, + "fields": { + "id_car_serie": 9495, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241122, + "fields": { + "id_car_serie": 9495, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241123, + "fields": { + "id_car_serie": 9495, + "name": "1.5 AT AWD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241124, + "fields": { + "id_car_serie": 9495, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241125, + "fields": { + "id_car_serie": 9495, + "name": "1.5 MT AWD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241126, + "fields": { + "id_car_serie": 9495, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241127, + "fields": { + "id_car_serie": 9499, + "name": "1.4 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241128, + "fields": { + "id_car_serie": 9499, + "name": "1.4 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241129, + "fields": { + "id_car_serie": 9499, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241130, + "fields": { + "id_car_serie": 9499, + "name": "1.4 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241131, + "fields": { + "id_car_serie": 9499, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241132, + "fields": { + "id_car_serie": 9499, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241133, + "fields": { + "id_car_serie": 9499, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241134, + "fields": { + "id_car_serie": 9499, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241135, + "fields": { + "id_car_serie": 9499, + "name": "2.0 D AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241136, + "fields": { + "id_car_serie": 9501, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241137, + "fields": { + "id_car_serie": 9501, + "name": "1.4 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241138, + "fields": { + "id_car_serie": 9501, + "name": "1.4 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241139, + "fields": { + "id_car_serie": 9501, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241140, + "fields": { + "id_car_serie": 9501, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241141, + "fields": { + "id_car_serie": 9501, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241142, + "fields": { + "id_car_serie": 9501, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241143, + "fields": { + "id_car_serie": 9501, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241144, + "fields": { + "id_car_serie": 9501, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241145, + "fields": { + "id_car_serie": 9503, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241146, + "fields": { + "id_car_serie": 9503, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241147, + "fields": { + "id_car_serie": 9506, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241148, + "fields": { + "id_car_serie": 9506, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241149, + "fields": { + "id_car_serie": 9507, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241150, + "fields": { + "id_car_serie": 9507, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241151, + "fields": { + "id_car_serie": 9585, + "name": "1.6 AT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241152, + "fields": { + "id_car_serie": 9585, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241153, + "fields": { + "id_car_serie": 9585, + "name": "1.6 AT AWD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241154, + "fields": { + "id_car_serie": 9585, + "name": "1.6 MT AWD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241155, + "fields": { + "id_car_serie": 9585, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241156, + "fields": { + "id_car_serie": 9585, + "name": "1.6 MT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241157, + "fields": { + "id_car_serie": 9585, + "name": "1.8 AT AWD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241158, + "fields": { + "id_car_serie": 9585, + "name": "1.8 MT AWD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241159, + "fields": { + "id_car_serie": 9612, + "name": "1.3 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241160, + "fields": { + "id_car_serie": 9612, + "name": "1.3 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241161, + "fields": { + "id_car_serie": 9612, + "name": "1.3 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241162, + "fields": { + "id_car_serie": 9612, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241163, + "fields": { + "id_car_serie": 9612, + "name": "1.5 TD AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241164, + "fields": { + "id_car_serie": 9612, + "name": "1.5 AT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241165, + "fields": { + "id_car_serie": 9612, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241166, + "fields": { + "id_car_serie": 9612, + "name": "1.5 TD MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241167, + "fields": { + "id_car_serie": 10777, + "name": "113 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241168, + "fields": { + "id_car_serie": 10777, + "name": "113 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241169, + "fields": { + "id_car_serie": 10777, + "name": "113 CDI AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241170, + "fields": { + "id_car_serie": 10777, + "name": "112 CDI AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241171, + "fields": { + "id_car_serie": 10777, + "name": "112 CDI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241172, + "fields": { + "id_car_serie": 10777, + "name": "113 CDI MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241173, + "fields": { + "id_car_serie": 10777, + "name": "110 D AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241174, + "fields": { + "id_car_serie": 10777, + "name": "108 D AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241175, + "fields": { + "id_car_serie": 10777, + "name": "114 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241176, + "fields": { + "id_car_serie": 10777, + "name": "108 CDI AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241177, + "fields": { + "id_car_serie": 10777, + "name": "108 CDI MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241178, + "fields": { + "id_car_serie": 10777, + "name": "114 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241179, + "fields": { + "id_car_serie": 10777, + "name": "110 D MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241180, + "fields": { + "id_car_serie": 10777, + "name": "108 D MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241181, + "fields": { + "id_car_serie": 10806, + "name": "2.0 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241182, + "fields": { + "id_car_serie": 10806, + "name": "2.4 MT AWD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241183, + "fields": { + "id_car_serie": 10806, + "name": "2.4 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241184, + "fields": { + "id_car_serie": 10806, + "name": "2.4 D MT AWD (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241185, + "fields": { + "id_car_serie": 10806, + "name": "2.4 D MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241186, + "fields": { + "id_car_serie": 14741, + "name": "1.6 CDTI BiTurbo MT LWB (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241187, + "fields": { + "id_car_serie": 14741, + "name": "1.6 CDTI BiTurbo MT LWB (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241188, + "fields": { + "id_car_serie": 14741, + "name": "1.6 CDTI BiTurbo MT LWB (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241189, + "fields": { + "id_car_serie": 14741, + "name": "1.6 CDTI BiTurbo MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241190, + "fields": { + "id_car_serie": 14741, + "name": "1.6 CDTI BiTurbo MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241191, + "fields": { + "id_car_serie": 14741, + "name": "1.6 CDTI BiTurbo MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241192, + "fields": { + "id_car_serie": 14741, + "name": "1.6 CDTI MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241193, + "fields": { + "id_car_serie": 14741, + "name": "1.6 CDTI MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241194, + "fields": { + "id_car_serie": 14741, + "name": "1.6 CDTI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241195, + "fields": { + "id_car_serie": 14741, + "name": "1.6 CDTI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241196, + "fields": { + "id_car_serie": 14878, + "name": "45 TDI tiptronic quattro (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241197, + "fields": { + "id_car_serie": 14878, + "name": "45 TDI L tiptronic quattro (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241198, + "fields": { + "id_car_serie": 14986, + "name": "3.5 AT AWD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241199, + "fields": { + "id_car_serie": 46061, + "name": "3.0 TFSi Hybrid AT AWD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241200, + "fields": { + "id_car_serie": 46061, + "name": "6.0 AT AWD (635 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241201, + "fields": { + "id_car_serie": 46683, + "name": "1.6 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241202, + "fields": { + "id_car_serie": 46955, + "name": "1.6 MT 16 valves CNG (5 places) (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241203, + "fields": { + "id_car_serie": 48105, + "name": "2.0i AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241204, + "fields": { + "id_car_serie": 48550, + "name": "1.6 D AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241205, + "fields": { + "id_car_serie": 48550, + "name": "1.6 D MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241206, + "fields": { + "id_car_serie": 48551, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241207, + "fields": { + "id_car_serie": 48551, + "name": "1.6 D AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241208, + "fields": { + "id_car_serie": 48551, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241209, + "fields": { + "id_car_serie": 48551, + "name": "1.6 D MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241210, + "fields": { + "id_car_serie": 48552, + "name": "1.4 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241211, + "fields": { + "id_car_serie": 48552, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241212, + "fields": { + "id_car_serie": 49471, + "name": "1.6 MT 16 valves CNG (5 places) (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241213, + "fields": { + "id_car_serie": 49560, + "name": "1.3 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241214, + "fields": { + "id_car_serie": 49560, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241215, + "fields": { + "id_car_serie": 49560, + "name": "1.5 AT AWD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241216, + "fields": { + "id_car_serie": 49560, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241217, + "fields": { + "id_car_serie": 49560, + "name": "1.5 MT AWD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241218, + "fields": { + "id_car_serie": 49560, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241219, + "fields": { + "id_car_serie": 49560, + "name": "1.7 D AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241220, + "fields": { + "id_car_serie": 49560, + "name": "1.7 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241221, + "fields": { + "id_car_serie": 49560, + "name": "1.7 D MT AWD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241222, + "fields": { + "id_car_serie": 49560, + "name": "1.8 GT-S AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241223, + "fields": { + "id_car_serie": 49560, + "name": "1.8 GT-S AT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241224, + "fields": { + "id_car_serie": 49560, + "name": "1.8 GT-S MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241225, + "fields": { + "id_car_serie": 49560, + "name": "1.8 GT-S MT AWD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241226, + "fields": { + "id_car_serie": 49691, + "name": "113 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241227, + "fields": { + "id_car_serie": 49691, + "name": "113 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241228, + "fields": { + "id_car_serie": 49691, + "name": "113 CDI AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241229, + "fields": { + "id_car_serie": 49691, + "name": "112 CDI AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241230, + "fields": { + "id_car_serie": 49691, + "name": "113 CDI MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241231, + "fields": { + "id_car_serie": 49691, + "name": "112 CDI MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241232, + "fields": { + "id_car_serie": 49691, + "name": "108 CDI AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241233, + "fields": { + "id_car_serie": 49691, + "name": "114 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241234, + "fields": { + "id_car_serie": 49691, + "name": "110 D AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241235, + "fields": { + "id_car_serie": 49691, + "name": "108 D AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241236, + "fields": { + "id_car_serie": 49691, + "name": "108 D MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241237, + "fields": { + "id_car_serie": 49691, + "name": "114 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241238, + "fields": { + "id_car_serie": 49691, + "name": "108 CDI MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241239, + "fields": { + "id_car_serie": 49691, + "name": "110 D MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241240, + "fields": { + "id_car_serie": 50230, + "name": "2.0 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241241, + "fields": { + "id_car_serie": 50230, + "name": "2.4 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241242, + "fields": { + "id_car_serie": 50230, + "name": "2.4 MT AWD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241243, + "fields": { + "id_car_serie": 50230, + "name": "2.4 MT AWD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241244, + "fields": { + "id_car_serie": 50230, + "name": "2.4 D MT AWD (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241245, + "fields": { + "id_car_serie": 50230, + "name": "2.4 D MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241246, + "fields": { + "id_car_serie": 50469, + "name": "E 300 7G-Tronic Plus (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241247, + "fields": { + "id_car_serie": 50942, + "name": "2.4 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241249, + "fields": { + "id_car_serie": 51507, + "name": "3.6 V6 AT 4Motion (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241250, + "fields": { + "id_car_serie": 51516, + "name": "5.0 V8 AT AWD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241251, + "fields": { + "id_car_serie": 53055, + "name": "2.0 N MT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241252, + "fields": { + "id_car_serie": 53061, + "name": "S 4.0 AMG Speedshift DCT 7G (522 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241253, + "fields": { + "id_car_serie": 53199, + "name": "1.2 Puretech MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241254, + "fields": { + "id_car_serie": 53199, + "name": "1.5 BlueHDi AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241255, + "fields": { + "id_car_serie": 53199, + "name": "1.5 BlueHDi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241256, + "fields": { + "id_car_serie": 53199, + "name": "1.6 E-Tense AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241257, + "fields": { + "id_car_serie": 53199, + "name": "1.6 Puretech AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241258, + "fields": { + "id_car_serie": 53199, + "name": "1.6 Puretech AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241259, + "fields": { + "id_car_serie": 53229, + "name": "S 560 e 9G-Tronic 4Matic long base (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241260, + "fields": { + "id_car_serie": 53237, + "name": "1.8 T AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241261, + "fields": { + "id_car_serie": 53237, + "name": "1.8 T AT AWD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241262, + "fields": { + "id_car_serie": 53497, + "name": "1.5 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241263, + "fields": { + "id_car_serie": 53497, + "name": "2.0 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241264, + "fields": { + "id_car_serie": 53508, + "name": "1.6 PureTech AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241265, + "fields": { + "id_car_serie": 53508, + "name": "2.0 BlueHDI AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241266, + "fields": { + "id_car_serie": 53566, + "name": "xDrive30d Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241267, + "fields": { + "id_car_serie": 53595, + "name": "45 TDI Tiptronic quattro (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241268, + "fields": { + "id_car_serie": 53595, + "name": "50 TDI Tiptronic quattro (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241269, + "fields": { + "id_car_serie": 53656, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241270, + "fields": { + "id_car_serie": 53656, + "name": "1.8 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241271, + "fields": { + "id_car_serie": 53682, + "name": "1.6 MPI AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241272, + "fields": { + "id_car_serie": 53682, + "name": "1.6 MPI MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241273, + "fields": { + "id_car_serie": 53682, + "name": "2.0 MPI AT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241274, + "fields": { + "id_car_serie": 53682, + "name": "2.0 MPI MT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241275, + "fields": { + "id_car_serie": 53683, + "name": "1.6 T-GDI MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241276, + "fields": { + "id_car_serie": 53683, + "name": "1.6 T-GDI AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241277, + "fields": { + "id_car_serie": 53684, + "name": "1.6 T-GDI DCT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241278, + "fields": { + "id_car_serie": 53693, + "name": "2.0 TSI TCR DSG (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241279, + "fields": { + "id_car_serie": 53694, + "name": "2.0 TSI TCR DSG (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241280, + "fields": { + "id_car_serie": 53709, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241281, + "fields": { + "id_car_serie": 53709, + "name": "1.5 AMT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241282, + "fields": { + "id_car_serie": 53709, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241283, + "fields": { + "id_car_serie": 53709, + "name": "1.5 AMT AWD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241284, + "fields": { + "id_car_serie": 53709, + "name": "2.0 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241285, + "fields": { + "id_car_serie": 53709, + "name": "2.0 AMT AWD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241286, + "fields": { + "id_car_serie": 53709, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241287, + "fields": { + "id_car_serie": 53709, + "name": "2.0 AMT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241288, + "fields": { + "id_car_serie": 53715, + "name": "1.4 TCe CVT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241289, + "fields": { + "id_car_serie": 53715, + "name": "1.4 TCe CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241290, + "fields": { + "id_car_serie": 53715, + "name": "1.6 MT AWD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241291, + "fields": { + "id_car_serie": 53715, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241292, + "fields": { + "id_car_serie": 53715, + "name": "1.6 CVT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241293, + "fields": { + "id_car_serie": 53745, + "name": "1.5 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241294, + "fields": { + "id_car_serie": 53748, + "name": "1.6 CVT X-Tronic (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241295, + "fields": { + "id_car_serie": 53623, + "name": "1.6 CVT X-Tronic (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241296, + "fields": { + "id_car_serie": 53774, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241297, + "fields": { + "id_car_serie": 53774, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241298, + "fields": { + "id_car_serie": 53774, + "name": "1.6 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241299, + "fields": { + "id_car_serie": 53774, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241300, + "fields": { + "id_car_serie": 53782, + "name": "1.8 SkyActiv-D AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241301, + "fields": { + "id_car_serie": 53782, + "name": "1.8 SkyActiv-D MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241302, + "fields": { + "id_car_serie": 53782, + "name": "2.0 SkyActiv-X AT AWD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241303, + "fields": { + "id_car_serie": 53782, + "name": "2.0 SkyActiv-G AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241304, + "fields": { + "id_car_serie": 53782, + "name": "2.0 SkyActiv-X AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241305, + "fields": { + "id_car_serie": 53782, + "name": "2.0 SkyActiv-G MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241306, + "fields": { + "id_car_serie": 53782, + "name": "2.0 SkyActiv-X MT AWD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241307, + "fields": { + "id_car_serie": 53782, + "name": "2.0 SkyActiv-X MT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241308, + "fields": { + "id_car_serie": 53783, + "name": "1.8 SkyActiv-D AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241309, + "fields": { + "id_car_serie": 53783, + "name": "1.8 SkyActiv-D MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241310, + "fields": { + "id_car_serie": 53783, + "name": "2.0 SkyActiv-G AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241311, + "fields": { + "id_car_serie": 53783, + "name": "2.0 SkyActiv-X AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241312, + "fields": { + "id_car_serie": 53783, + "name": "2.0 SkyActiv-G MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241313, + "fields": { + "id_car_serie": 53783, + "name": "2.0 SkyActiv-X MT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241314, + "fields": { + "id_car_serie": 53785, + "name": "2.4 DID AT AWD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241315, + "fields": { + "id_car_serie": 53785, + "name": "2.4 DID AT AWD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241316, + "fields": { + "id_car_serie": 53785, + "name": "2.4 DID MT AWD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241317, + "fields": { + "id_car_serie": 53794, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241318, + "fields": { + "id_car_serie": 53794, + "name": "1.6 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241319, + "fields": { + "id_car_serie": 53795, + "name": "1.2 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241320, + "fields": { + "id_car_serie": 53795, + "name": "1.2 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241321, + "fields": { + "id_car_serie": 53795, + "name": "1.2 CVT AWD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241322, + "fields": { + "id_car_serie": 53795, + "name": "1.8 Hybrid CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241323, + "fields": { + "id_car_serie": 53795, + "name": "2.0 MT (168 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241324, + "fields": { + "id_car_serie": 53795, + "name": "2.0 Hybrid CVT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241325, + "fields": { + "id_car_serie": 53795, + "name": "2.0 CVT (168 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241326, + "fields": { + "id_car_serie": 53796, + "name": "1.8 Hybrid CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241327, + "fields": { + "id_car_serie": 53796, + "name": "2.0 Hybrid CVT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241328, + "fields": { + "id_car_serie": 53838, + "name": "1.0 TSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241329, + "fields": { + "id_car_serie": 53838, + "name": "1.0 TSI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241330, + "fields": { + "id_car_serie": 53838, + "name": "1.0 TSI DSG (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241331, + "fields": { + "id_car_serie": 53838, + "name": "1.6 TDI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241332, + "fields": { + "id_car_serie": 53838, + "name": "1.6 TDI DSG (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241335, + "fields": { + "id_car_serie": 53872, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241336, + "fields": { + "id_car_serie": 53872, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241337, + "fields": { + "id_car_serie": 53873, + "name": "3.0 AT AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241338, + "fields": { + "id_car_serie": 53874, + "name": "2.0 MT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241339, + "fields": { + "id_car_serie": 53874, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241340, + "fields": { + "id_car_serie": 53874, + "name": "2.0 CVT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241341, + "fields": { + "id_car_serie": 53874, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241342, + "fields": { + "id_car_serie": 53877, + "name": "2.0 D AT AWD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241343, + "fields": { + "id_car_serie": 53877, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241344, + "fields": { + "id_car_serie": 53877, + "name": "2.0 D AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241345, + "fields": { + "id_car_serie": 53877, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241346, + "fields": { + "id_car_serie": 53877, + "name": "2.0 D MT AWD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241347, + "fields": { + "id_car_serie": 53877, + "name": "2.0 D MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241348, + "fields": { + "id_car_serie": 53877, + "name": "2.5 D AT AWD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241349, + "fields": { + "id_car_serie": 53877, + "name": "2.5 D AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241350, + "fields": { + "id_car_serie": 53877, + "name": "2.5 D MT AWD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241351, + "fields": { + "id_car_serie": 53877, + "name": "2.5 D MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241352, + "fields": { + "id_car_serie": 53878, + "name": "1.8 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241353, + "fields": { + "id_car_serie": 53878, + "name": "1.8 AT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241354, + "fields": { + "id_car_serie": 53878, + "name": "1.8 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241355, + "fields": { + "id_car_serie": 53878, + "name": "1.8 AT AWD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241356, + "fields": { + "id_car_serie": 53878, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241357, + "fields": { + "id_car_serie": 53878, + "name": "1.8 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241358, + "fields": { + "id_car_serie": 53878, + "name": "1.8 MT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241359, + "fields": { + "id_car_serie": 53878, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241360, + "fields": { + "id_car_serie": 53878, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241361, + "fields": { + "id_car_serie": 53878, + "name": "1.8 MT AWD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241362, + "fields": { + "id_car_serie": 53878, + "name": "2.0 D AT AWD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241363, + "fields": { + "id_car_serie": 53878, + "name": "2.0 D AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241364, + "fields": { + "id_car_serie": 53878, + "name": "2.0 D MT AWD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241365, + "fields": { + "id_car_serie": 53878, + "name": "2.0 D MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241366, + "fields": { + "id_car_serie": 53878, + "name": "2.2 D AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241367, + "fields": { + "id_car_serie": 53878, + "name": "2.2 D AT AWD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241368, + "fields": { + "id_car_serie": 53878, + "name": "2.2 D MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241369, + "fields": { + "id_car_serie": 53878, + "name": "2.2 D MT AWD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241370, + "fields": { + "id_car_serie": 53879, + "name": "4S 3.0 PDK (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241371, + "fields": { + "id_car_serie": 53880, + "name": "2.4 CVT AWD (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241372, + "fields": { + "id_car_serie": 53880, + "name": "2.5 CVT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241373, + "fields": { + "id_car_serie": 53882, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241374, + "fields": { + "id_car_serie": 53882, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241375, + "fields": { + "id_car_serie": 53882, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241376, + "fields": { + "id_car_serie": 53882, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241377, + "fields": { + "id_car_serie": 53882, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241378, + "fields": { + "id_car_serie": 53882, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241379, + "fields": { + "id_car_serie": 53882, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241380, + "fields": { + "id_car_serie": 53882, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241381, + "fields": { + "id_car_serie": 53882, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241382, + "fields": { + "id_car_serie": 53882, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241383, + "fields": { + "id_car_serie": 53882, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241384, + "fields": { + "id_car_serie": 53882, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241385, + "fields": { + "id_car_serie": 53886, + "name": "2.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241386, + "fields": { + "id_car_serie": 53886, + "name": "2.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241387, + "fields": { + "id_car_serie": 53886, + "name": "3.0 GR AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241388, + "fields": { + "id_car_serie": 53887, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241389, + "fields": { + "id_car_serie": 53887, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241390, + "fields": { + "id_car_serie": 53887, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241391, + "fields": { + "id_car_serie": 53887, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241392, + "fields": { + "id_car_serie": 53887, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241393, + "fields": { + "id_car_serie": 53887, + "name": "1.5 TD AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241394, + "fields": { + "id_car_serie": 53887, + "name": "1.5 AT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241395, + "fields": { + "id_car_serie": 53887, + "name": "1.5 TD MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241396, + "fields": { + "id_car_serie": 53887, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241397, + "fields": { + "id_car_serie": 53887, + "name": "1.5 MT AWD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241398, + "fields": { + "id_car_serie": 53888, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241399, + "fields": { + "id_car_serie": 53888, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241400, + "fields": { + "id_car_serie": 53888, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241401, + "fields": { + "id_car_serie": 53888, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241402, + "fields": { + "id_car_serie": 53888, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241403, + "fields": { + "id_car_serie": 53888, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241404, + "fields": { + "id_car_serie": 53889, + "name": "1.5 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241405, + "fields": { + "id_car_serie": 53889, + "name": "1.5 MT AWD (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241406, + "fields": { + "id_car_serie": 53890, + "name": "2.0 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241407, + "fields": { + "id_car_serie": 53890, + "name": "2.4 MT AWD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241408, + "fields": { + "id_car_serie": 53890, + "name": "2.4 MT AWD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241409, + "fields": { + "id_car_serie": 53890, + "name": "2.4 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241410, + "fields": { + "id_car_serie": 53890, + "name": "2.4 D MT AWD (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241411, + "fields": { + "id_car_serie": 53890, + "name": "2.4 D MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241412, + "fields": { + "id_car_serie": 53891, + "name": "730i Steptronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241413, + "fields": { + "id_car_serie": 53891, + "name": "730d Steptronic xDrive (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241414, + "fields": { + "id_car_serie": 53891, + "name": "740d Steptronic xDrive (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241415, + "fields": { + "id_car_serie": 53891, + "name": "730Ld Steptronic xDrive (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241416, + "fields": { + "id_car_serie": 53891, + "name": "740Li Steptronic xDrive (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241417, + "fields": { + "id_car_serie": 53891, + "name": "740Ld Steptronic xDrive (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241418, + "fields": { + "id_car_serie": 53891, + "name": "745Le Steptronic xDrive (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241419, + "fields": { + "id_car_serie": 53891, + "name": "750d Steptronic xDrive (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241420, + "fields": { + "id_car_serie": 53891, + "name": "750Ld Steptronic xDrive (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241421, + "fields": { + "id_car_serie": 53891, + "name": "730Ld Steptronic xDrive (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241422, + "fields": { + "id_car_serie": 53891, + "name": "745e Steptronic (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241423, + "fields": { + "id_car_serie": 53891, + "name": "745Le Steptronic (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241425, + "fields": { + "id_car_serie": 53891, + "name": "730d Steptronic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241426, + "fields": { + "id_car_serie": 53891, + "name": "730d Steptronic xDrive (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241427, + "fields": { + "id_car_serie": 53891, + "name": "730Ld Steptronic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241428, + "fields": { + "id_car_serie": 53891, + "name": "750i Steptronic xDrive (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241429, + "fields": { + "id_car_serie": 53891, + "name": "750Li Steptronic xDrive (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241430, + "fields": { + "id_car_serie": 53891, + "name": "M760Li Steptronic xDrive (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241431, + "fields": { + "id_car_serie": 53892, + "name": "2.0 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241432, + "fields": { + "id_car_serie": 53892, + "name": "2.4 MT AWD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241433, + "fields": { + "id_car_serie": 53892, + "name": "2.4 MT AWD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241434, + "fields": { + "id_car_serie": 53892, + "name": "2.4 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241435, + "fields": { + "id_car_serie": 53892, + "name": "2.4 D MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241436, + "fields": { + "id_car_serie": 53892, + "name": "2.4 D MT AWD (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241437, + "fields": { + "id_car_serie": 53893, + "name": "2.0 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241438, + "fields": { + "id_car_serie": 53893, + "name": "2.4 MT AWD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241439, + "fields": { + "id_car_serie": 53893, + "name": "2.4 MT AWD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241440, + "fields": { + "id_car_serie": 53893, + "name": "2.4 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241441, + "fields": { + "id_car_serie": 53893, + "name": "2.4 D MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241442, + "fields": { + "id_car_serie": 53893, + "name": "2.4 D MT AWD (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241443, + "fields": { + "id_car_serie": 53894, + "name": "200 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241444, + "fields": { + "id_car_serie": 53894, + "name": "180 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241445, + "fields": { + "id_car_serie": 53894, + "name": "200 7G-DCT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241446, + "fields": { + "id_car_serie": 53894, + "name": "180 d 7G-DCT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241447, + "fields": { + "id_car_serie": 53894, + "name": "250 7G-DCT 4MATIC (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241448, + "fields": { + "id_car_serie": 53894, + "name": "220 7G-DCT 4MATIC (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241449, + "fields": { + "id_car_serie": 53894, + "name": "220 7G-DCT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241450, + "fields": { + "id_car_serie": 53964, + "name": "6.5 AMT (770 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241451, + "fields": { + "id_car_serie": 53974, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241452, + "fields": { + "id_car_serie": 53974, + "name": "1.4 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241453, + "fields": { + "id_car_serie": 53974, + "name": "1.4 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241454, + "fields": { + "id_car_serie": 53974, + "name": "1.4 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241455, + "fields": { + "id_car_serie": 53974, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241456, + "fields": { + "id_car_serie": 53974, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241457, + "fields": { + "id_car_serie": 53974, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241458, + "fields": { + "id_car_serie": 53974, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241459, + "fields": { + "id_car_serie": 53974, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241460, + "fields": { + "id_car_serie": 53974, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241461, + "fields": { + "id_car_serie": 53974, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241462, + "fields": { + "id_car_serie": 53974, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241463, + "fields": { + "id_car_serie": 53974, + "name": "2.0 GTI MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241464, + "fields": { + "id_car_serie": 53974, + "name": "2.0 D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241465, + "fields": { + "id_car_serie": 53975, + "name": "1.5 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241466, + "fields": { + "id_car_serie": 53975, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241467, + "fields": { + "id_car_serie": 53975, + "name": "1.8 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241468, + "fields": { + "id_car_serie": 53975, + "name": "1.8 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241469, + "fields": { + "id_car_serie": 53975, + "name": "1.8 AT AWD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241470, + "fields": { + "id_car_serie": 53975, + "name": "1.8 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241471, + "fields": { + "id_car_serie": 53975, + "name": "1.8 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241472, + "fields": { + "id_car_serie": 53975, + "name": "1.8 MT AWD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241473, + "fields": { + "id_car_serie": 53975, + "name": "2.0 D AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241474, + "fields": { + "id_car_serie": 53975, + "name": "2.0 D AT AWD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241475, + "fields": { + "id_car_serie": 53975, + "name": "2.0 D MT AWD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241476, + "fields": { + "id_car_serie": 53975, + "name": "2.0 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241477, + "fields": { + "id_car_serie": 53975, + "name": "2.2 D AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241478, + "fields": { + "id_car_serie": 53975, + "name": "2.2 D MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241479, + "fields": { + "id_car_serie": 53976, + "name": "2.0 AT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241480, + "fields": { + "id_car_serie": 53976, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241481, + "fields": { + "id_car_serie": 53976, + "name": "2.0 MT AWD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241482, + "fields": { + "id_car_serie": 53976, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241483, + "fields": { + "id_car_serie": 53976, + "name": "2.2 TD AT AWD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241484, + "fields": { + "id_car_serie": 53976, + "name": "2.2 TD AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241485, + "fields": { + "id_car_serie": 53976, + "name": "2.2 TD MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241486, + "fields": { + "id_car_serie": 53976, + "name": "2.2 TD MT AWD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241487, + "fields": { + "id_car_serie": 53977, + "name": "1.5 MT AWD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241488, + "fields": { + "id_car_serie": 53979, + "name": "53 Speedshift TCT 9G 4Matic+ (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241489, + "fields": { + "id_car_serie": 53980, + "name": "300d 9G-TRONIC 4MATIC (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241490, + "fields": { + "id_car_serie": 53980, + "name": "220d 9G-TRONIC 4MATIC (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241491, + "fields": { + "id_car_serie": 53980, + "name": "200d 9G-TRONIC 4MATIC (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241492, + "fields": { + "id_car_serie": 53980, + "name": "300 9G-TRONIC 4MATIC (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241493, + "fields": { + "id_car_serie": 53980, + "name": "200 9G-TRONIC 4MATIC (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241494, + "fields": { + "id_car_serie": 53981, + "name": "250 7G-DCT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241495, + "fields": { + "id_car_serie": 53984, + "name": "2.0 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241496, + "fields": { + "id_car_serie": 53993, + "name": "2.4 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241497, + "fields": { + "id_car_serie": 53993, + "name": "2.4 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241498, + "fields": { + "id_car_serie": 53993, + "name": "3.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241499, + "fields": { + "id_car_serie": 53993, + "name": "3.0 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241500, + "fields": { + "id_car_serie": 53994, + "name": "1.5 BlueHDi AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241501, + "fields": { + "id_car_serie": 53994, + "name": "1.5 BlueHDi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241502, + "fields": { + "id_car_serie": 53994, + "name": "1.6 PureTech AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241503, + "fields": { + "id_car_serie": 53994, + "name": "1.6 PureTech AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241504, + "fields": { + "id_car_serie": 53994, + "name": "2.0 BlueHDi AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241505, + "fields": { + "id_car_serie": 53994, + "name": "2.0 BlueHDi AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241506, + "fields": { + "id_car_serie": 53995, + "name": "3.0 Tiptronic S AWD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241507, + "fields": { + "id_car_serie": 53995, + "name": "Turbo 4.0 Tiptronic S AWD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241508, + "fields": { + "id_car_serie": 53996, + "name": "2.0 T8 Twin Engine AT AWD (7 places) (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241509, + "fields": { + "id_car_serie": 53996, + "name": "2.0 T6 Drive-E AT AWD (7 places) (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241510, + "fields": { + "id_car_serie": 53996, + "name": "2.0 T6 Drive-E AT AWD (5 places) (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241511, + "fields": { + "id_car_serie": 53996, + "name": "2.0 T5 Drive-E AT AWD (7 places) (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241512, + "fields": { + "id_car_serie": 53996, + "name": "2.0 T5 Drive-E AT AWD (7 places) (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241513, + "fields": { + "id_car_serie": 53996, + "name": "2.0 T5 Drive-E AT AWD (5 places) (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241514, + "fields": { + "id_car_serie": 53996, + "name": "2.0 T5 Drive-E AT AWD (5 places) (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241515, + "fields": { + "id_car_serie": 53996, + "name": "2.0 D5 Drive-E AT AWD (7 places) (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241516, + "fields": { + "id_car_serie": 53996, + "name": "2.0 D5 Drive-E AT AWD (5 places) (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241517, + "fields": { + "id_car_serie": 53997, + "name": "300 9G-TRONIC 4MATIC (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241518, + "fields": { + "id_car_serie": 53997, + "name": "200 9G-TRONIC 4MATIC (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241519, + "fields": { + "id_car_serie": 53997, + "name": "200d 9G-TRONIC 4MATIC (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241520, + "fields": { + "id_car_serie": 53997, + "name": "300d 9G-TRONIC 4MATIC (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241521, + "fields": { + "id_car_serie": 53997, + "name": "220d 9G-TRONIC 4MATIC (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241522, + "fields": { + "id_car_serie": 53998, + "name": "35 7G-DCT 4MATIC (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241523, + "fields": { + "id_car_serie": 54014, + "name": "3.0 TDI V6 Tiptronic quattro (347 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241524, + "fields": { + "id_car_serie": 54014, + "name": "3.0 TFSI V6 Tiptronic quattro (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241525, + "fields": { + "id_car_serie": 54015, + "name": "3.0 TDI V6 Tiptronic quattro (347 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241526, + "fields": { + "id_car_serie": 54015, + "name": "3.0 TFSI V6 Tiptronic quattro (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241527, + "fields": { + "id_car_serie": 54016, + "name": "3.0 TFSI Tiptronic quattro (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241528, + "fields": { + "id_car_serie": 6151, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241529, + "fields": { + "id_car_serie": 54019, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241530, + "fields": { + "id_car_serie": 54021, + "name": "1.6 T-GDI MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241531, + "fields": { + "id_car_serie": 54021, + "name": "1.6 T-GDI DCT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241532, + "fields": { + "id_car_serie": 54021, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241533, + "fields": { + "id_car_serie": 54021, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241534, + "fields": { + "id_car_serie": 54023, + "name": "1.6 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241535, + "fields": { + "id_car_serie": 54023, + "name": "1.6 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241536, + "fields": { + "id_car_serie": 54024, + "name": "2.0 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241537, + "fields": { + "id_car_serie": 54024, + "name": "2.0 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241538, + "fields": { + "id_car_serie": 54024, + "name": "2.4 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241539, + "fields": { + "id_car_serie": 54024, + "name": "2.4 MT AWD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241540, + "fields": { + "id_car_serie": 54024, + "name": "2.4 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241541, + "fields": { + "id_car_serie": 54024, + "name": "2.5 TD AT AWD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241542, + "fields": { + "id_car_serie": 54024, + "name": "2.5 TD AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241543, + "fields": { + "id_car_serie": 54024, + "name": "2.5 TD MT AWD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241544, + "fields": { + "id_car_serie": 54024, + "name": "2.5 TD MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241545, + "fields": { + "id_car_serie": 54024, + "name": "2.5 D MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241546, + "fields": { + "id_car_serie": 54026, + "name": "2.4 CVT AWD (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241547, + "fields": { + "id_car_serie": 54026, + "name": "2.5 CVT AWD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241548, + "fields": { + "id_car_serie": 54027, + "name": "1.5 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241549, + "fields": { + "id_car_serie": 54027, + "name": "1.5 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241550, + "fields": { + "id_car_serie": 54027, + "name": "2.0 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241551, + "fields": { + "id_car_serie": 54028, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241552, + "fields": { + "id_car_serie": 54028, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241553, + "fields": { + "id_car_serie": 54028, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241554, + "fields": { + "id_car_serie": 54028, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241555, + "fields": { + "id_car_serie": 54028, + "name": "1.6 AT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241556, + "fields": { + "id_car_serie": 54028, + "name": "1.6 MT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241557, + "fields": { + "id_car_serie": 54028, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241558, + "fields": { + "id_car_serie": 54028, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241559, + "fields": { + "id_car_serie": 54028, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241560, + "fields": { + "id_car_serie": 54028, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241561, + "fields": { + "id_car_serie": 54028, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241562, + "fields": { + "id_car_serie": 54028, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241563, + "fields": { + "id_car_serie": 54028, + "name": "2.0 D AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241564, + "fields": { + "id_car_serie": 54028, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241565, + "fields": { + "id_car_serie": 54028, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241566, + "fields": { + "id_car_serie": 54028, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241567, + "fields": { + "id_car_serie": 54028, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241568, + "fields": { + "id_car_serie": 54028, + "name": "2.0 D MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241569, + "fields": { + "id_car_serie": 54028, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241570, + "fields": { + "id_car_serie": 54028, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241571, + "fields": { + "id_car_serie": 54029, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241572, + "fields": { + "id_car_serie": 54029, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241573, + "fields": { + "id_car_serie": 54029, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241574, + "fields": { + "id_car_serie": 54029, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241575, + "fields": { + "id_car_serie": 54029, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241576, + "fields": { + "id_car_serie": 54029, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241577, + "fields": { + "id_car_serie": 54029, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241578, + "fields": { + "id_car_serie": 54029, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241579, + "fields": { + "id_car_serie": 54029, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241580, + "fields": { + "id_car_serie": 54029, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241581, + "fields": { + "id_car_serie": 9221, + "name": "1.5 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241582, + "fields": { + "id_car_serie": 9221, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241583, + "fields": { + "id_car_serie": 9221, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241584, + "fields": { + "id_car_serie": 9221, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241585, + "fields": { + "id_car_serie": 9221, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241586, + "fields": { + "id_car_serie": 9221, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241587, + "fields": { + "id_car_serie": 9221, + "name": "2.0 d AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241588, + "fields": { + "id_car_serie": 9221, + "name": "2.0 d MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241589, + "fields": { + "id_car_serie": 54031, + "name": "1.5 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241590, + "fields": { + "id_car_serie": 54031, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241591, + "fields": { + "id_car_serie": 54031, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241592, + "fields": { + "id_car_serie": 54031, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241593, + "fields": { + "id_car_serie": 54031, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241594, + "fields": { + "id_car_serie": 54031, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241595, + "fields": { + "id_car_serie": 54034, + "name": "2.5 AT AWD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241596, + "fields": { + "id_car_serie": 54034, + "name": "2.5 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241597, + "fields": { + "id_car_serie": 54034, + "name": "3.5 CVT AWD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241598, + "fields": { + "id_car_serie": 54034, + "name": "3.5 CVT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241599, + "fields": { + "id_car_serie": 54035, + "name": "1.5 AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241600, + "fields": { + "id_car_serie": 54035, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241601, + "fields": { + "id_car_serie": 54035, + "name": "1.5 MT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241602, + "fields": { + "id_car_serie": 54035, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241603, + "fields": { + "id_car_serie": 54036, + "name": "1.6 AT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241604, + "fields": { + "id_car_serie": 54036, + "name": "1.6 AT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241605, + "fields": { + "id_car_serie": 54036, + "name": "1.6 MT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241606, + "fields": { + "id_car_serie": 54036, + "name": "1.6 MT AWD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241607, + "fields": { + "id_car_serie": 54037, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241608, + "fields": { + "id_car_serie": 54037, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241609, + "fields": { + "id_car_serie": 54037, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241610, + "fields": { + "id_car_serie": 54037, + "name": "1.5 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241611, + "fields": { + "id_car_serie": 54037, + "name": "1.5 Turbo AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241612, + "fields": { + "id_car_serie": 54037, + "name": "1.5 TD AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241613, + "fields": { + "id_car_serie": 54037, + "name": "1.5 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241614, + "fields": { + "id_car_serie": 54037, + "name": "1.5 TD MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241615, + "fields": { + "id_car_serie": 54037, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241616, + "fields": { + "id_car_serie": 54037, + "name": "1.5 Turbo MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241617, + "fields": { + "id_car_serie": 54038, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241618, + "fields": { + "id_car_serie": 54038, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241619, + "fields": { + "id_car_serie": 54038, + "name": "1.5 TD AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241620, + "fields": { + "id_car_serie": 54038, + "name": "1.5 Turbo AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241621, + "fields": { + "id_car_serie": 54038, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241622, + "fields": { + "id_car_serie": 54038, + "name": "1.5 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241623, + "fields": { + "id_car_serie": 54038, + "name": "1.5 Turbo MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241624, + "fields": { + "id_car_serie": 54038, + "name": "1.5 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241625, + "fields": { + "id_car_serie": 54038, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241626, + "fields": { + "id_car_serie": 54038, + "name": "1.5 TD MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241627, + "fields": { + "id_car_serie": 54039, + "name": "1.3 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241628, + "fields": { + "id_car_serie": 54039, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241629, + "fields": { + "id_car_serie": 54039, + "name": "1.3 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241630, + "fields": { + "id_car_serie": 54039, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241631, + "fields": { + "id_car_serie": 54039, + "name": "1.5 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241632, + "fields": { + "id_car_serie": 54039, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241633, + "fields": { + "id_car_serie": 54039, + "name": "1.5 AT AWD (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241634, + "fields": { + "id_car_serie": 54039, + "name": "1.5 AT AWD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241635, + "fields": { + "id_car_serie": 54039, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241636, + "fields": { + "id_car_serie": 54039, + "name": "1.5 MT AWD (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241637, + "fields": { + "id_car_serie": 54039, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241638, + "fields": { + "id_car_serie": 54039, + "name": "1.5 MT AWD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241639, + "fields": { + "id_car_serie": 54040, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241640, + "fields": { + "id_car_serie": 54040, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241641, + "fields": { + "id_car_serie": 54040, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241642, + "fields": { + "id_car_serie": 54040, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241643, + "fields": { + "id_car_serie": 54040, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241644, + "fields": { + "id_car_serie": 54040, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241645, + "fields": { + "id_car_serie": 54041, + "name": "1.6 CDTI BiTurbo MT LWB (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241646, + "fields": { + "id_car_serie": 54041, + "name": "1.6 CDTI BiTurbo MT LWB (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241647, + "fields": { + "id_car_serie": 54041, + "name": "1.6 CDTI MT LWB (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241648, + "fields": { + "id_car_serie": 54041, + "name": "1.6 CDTI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241649, + "fields": { + "id_car_serie": 54041, + "name": "1.6 CDTI MT LWB (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241650, + "fields": { + "id_car_serie": 54041, + "name": "1.6 CDTI BiTurbo MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241651, + "fields": { + "id_car_serie": 54041, + "name": "1.6 CDTI BiTurbo MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241652, + "fields": { + "id_car_serie": 54041, + "name": "1.6 CDTI MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241653, + "fields": { + "id_car_serie": 54041, + "name": "1.6 CDTI BiTurbo MT LWB (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241654, + "fields": { + "id_car_serie": 54041, + "name": "1.6 CDTI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241655, + "fields": { + "id_car_serie": 54041, + "name": "1.6 CDTI MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241656, + "fields": { + "id_car_serie": 54041, + "name": "1.6 CDTI MT LWB (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241657, + "fields": { + "id_car_serie": 54041, + "name": "1.6 CDTI BiTurbo MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241658, + "fields": { + "id_car_serie": 54041, + "name": "1.6 CDTI MT LWB (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241659, + "fields": { + "id_car_serie": 54042, + "name": "2.0 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241660, + "fields": { + "id_car_serie": 54042, + "name": "2.4 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241661, + "fields": { + "id_car_serie": 54042, + "name": "2.4 MT AWD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241662, + "fields": { + "id_car_serie": 54042, + "name": "2.4 MT AWD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241663, + "fields": { + "id_car_serie": 54042, + "name": "2.4 D MT AWD (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241664, + "fields": { + "id_car_serie": 54042, + "name": "2.4 D MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241665, + "fields": { + "id_car_serie": 54043, + "name": "4.0 AT (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241666, + "fields": { + "id_car_serie": 54043, + "name": "5.6 AT (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241667, + "fields": { + "id_car_serie": 54044, + "name": "1.5 DCI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241668, + "fields": { + "id_car_serie": 54044, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241669, + "fields": { + "id_car_serie": 54045, + "name": "63 S AMG 9G-TRONIC 4MATIC+ (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241670, + "fields": { + "id_car_serie": 54045, + "name": "63 AMG 9G-TRONIC 4MATIC+ (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241671, + "fields": { + "id_car_serie": 54046, + "name": "63 S AMG 9G-TRONIC 4MATIC+ (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241672, + "fields": { + "id_car_serie": 54046, + "name": "63 AMG 9G-TRONIC 4MATIC+ (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241673, + "fields": { + "id_car_serie": 53987, + "name": "3.0 Competition Steptronic xDrive (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241674, + "fields": { + "id_car_serie": 53987, + "name": "3.0 Steptronic xDrive (480 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241675, + "fields": { + "id_car_serie": 54048, + "name": "3.0 Competition Steptronic xDrive (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241676, + "fields": { + "id_car_serie": 54048, + "name": "3.0 Steptronic xDrive (480 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241677, + "fields": { + "id_car_serie": 54050, + "name": "3.9 AMT (720 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241678, + "fields": { + "id_car_serie": 54052, + "name": "3.8 GDI AT AWD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241679, + "fields": { + "id_car_serie": 54052, + "name": "3.8 GDI AT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241680, + "fields": { + "id_car_serie": 54055, + "name": "2.5 Hybrid CVT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241681, + "fields": { + "id_car_serie": 54056, + "name": "1.5 dCi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241682, + "fields": { + "id_car_serie": 54056, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241683, + "fields": { + "id_car_serie": 54057, + "name": "1.5 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241684, + "fields": { + "id_car_serie": 54057, + "name": "1.5 CVT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241685, + "fields": { + "id_car_serie": 54057, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241686, + "fields": { + "id_car_serie": 54057, + "name": "1.6 CVT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241696, + "fields": { + "id_car_serie": 14674, + "name": "2.0 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 241697, + "fields": { + "id_car_serie": 3318, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 241698, + "fields": { + "id_car_serie": 3318, + "name": "2.0 AT (132 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 241699, + "fields": { + "id_car_serie": 54058, + "name": "2.0 MT (112 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 241700, + "fields": { + "id_car_serie": 54058, + "name": "2.0 AT (112 hp)", + "arabic_name": "-", + "start_production_year": 1996, + "end_production_year": 2003 + } +}, +{ + "model": "inventory.cartrim", + "pk": 241701, + "fields": { + "id_car_serie": 54059, + "name": "2.0 TDI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241702, + "fields": { + "id_car_serie": 54059, + "name": "1.4 TDI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241703, + "fields": { + "id_car_serie": 54059, + "name": "1.8 TDI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241704, + "fields": { + "id_car_serie": 54059, + "name": "1.6 TDI (105 hp) 6 MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241705, + "fields": { + "id_car_serie": 54060, + "name": "1.6 i Duratec (95 hp)", + "arabic_name": "-", + "start_production_year": 2003, + "end_production_year": 2006 + } +}, +{ + "model": "inventory.cartrim", + "pk": 241706, + "fields": { + "id_car_serie": 49370, + "name": "1.6 TDI 5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241707, + "fields": { + "id_car_serie": 49367, + "name": "1.6 TDI 5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241708, + "fields": { + "id_car_serie": 47970, + "name": "1.6 (95 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 241709, + "fields": { + "id_car_serie": 47970, + "name": "1.6 (88 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2002 + } +}, +{ + "model": "inventory.cartrim", + "pk": 241710, + "fields": { + "id_car_serie": 47970, + "name": "1.8 (116 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 241711, + "fields": { + "id_car_serie": 47970, + "name": "2.0 HDi (90 hp)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 241712, + "fields": { + "id_car_serie": 47970, + "name": "2.0 HDI (90 hp) MT diesel", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241713, + "fields": { + "id_car_serie": 494, + "name": "1,6 HDi (80 hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241714, + "fields": { + "id_car_serie": 494, + "name": "1,8i (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241715, + "fields": { + "id_car_serie": 494, + "name": "2,0i (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241716, + "fields": { + "id_car_serie": 54062, + "name": "1.4 (150 HP) tronic (version 35 TFSI", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241717, + "fields": { + "id_car_serie": 54062, + "name": "3.0 turbo-diesel V6 (347 HP)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241718, + "fields": { + "id_car_serie": 54062, + "name": "2.0 (249 hp) robot", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241719, + "fields": { + "id_car_serie": 54062, + "name": "2.0 (190 hp) diesel Four-wheel drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241721, + "fields": { + "id_car_serie": 54061, + "name": "1.4 (150 hp) robot", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241722, + "fields": { + "id_car_serie": 54061, + "name": "2.0 (190 hp) diesel Four-wheel drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241723, + "fields": { + "id_car_serie": 54061, + "name": "3.0 TDI (347 hp)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241724, + "fields": { + "id_car_serie": 54062, + "name": "3.5 TDI (163 hp).", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241725, + "fields": { + "id_car_serie": 54063, + "name": "1.5 (116 HP), 116d three-cylinder turbo-diesel", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241726, + "fields": { + "id_car_serie": 54063, + "name": "2.0 (150 HP), 6 MT, front-wheel drive, 118d – 4-cylinder", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241727, + "fields": { + "id_car_serie": 54063, + "name": "2.0 (190 hp) Automatic transmission, Four-wheel drive xDrive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241728, + "fields": { + "id_car_serie": 54063, + "name": "1.5 liters (140 HP) manual gearbox, with an Overboost mode (+10 Nm)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241729, + "fields": { + "id_car_serie": 54063, + "name": "1.5 liters (140 HP) automatic transmission with an Overboost mode (+10 Nm)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241730, + "fields": { + "id_car_serie": 54063, + "name": "2 TwinPower Turbo (306 hp) 8Automatic transmission", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241731, + "fields": { + "id_car_serie": 54064, + "name": "1.5 (140 hp) Automatic transmission, front, motor sDrive 18i AT", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241732, + "fields": { + "id_car_serie": 54064, + "name": "2.0 (150 HP) 4WD diesel automatic transmission, engine xDrive 18d AT", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241733, + "fields": { + "id_car_serie": 54064, + "name": "2.0 (192 HP) automatic transmission, 4WD, engine xDrive 20i AT", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241734, + "fields": { + "id_car_serie": 53984, + "name": "2.0 (122 hp) Comfort CVT", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241735, + "fields": { + "id_car_serie": 54022, + "name": "Aqua 3.0 d (117 hp) MT diesel", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241736, + "fields": { + "id_car_serie": 54022, + "name": "3.0 d (177 hp) Automatic transmission diesel", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241737, + "fields": { + "id_car_serie": 54065, + "name": "2.0 (194 hp) diesel, Automatic transmission, 4WD", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241738, + "fields": { + "id_car_serie": 54065, + "name": "2.0 (245 hp) diesel, Automatic transmission, 4WD", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241739, + "fields": { + "id_car_serie": 54065, + "name": "2.0 (258 HP), petrol, automatic transmission, 4WD, hybrid", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241740, + "fields": { + "id_car_serie": 54065, + "name": "4.0 (510 HP), diesel, robot, 4WD, hybrid", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241741, + "fields": { + "id_car_serie": 53982, + "name": "2.0 (211 hp) gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241742, + "fields": { + "id_car_serie": 53982, + "name": "2.1 (136 hp), diesel, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241743, + "fields": { + "id_car_serie": 53982, + "name": "2.1 (163 hp) diesel, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241744, + "fields": { + "id_car_serie": 53982, + "name": "2.1 (190 hp) diesel, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241745, + "fields": { + "id_car_serie": 54066, + "name": "3.0 (367 hp) gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241746, + "fields": { + "id_car_serie": 54066, + "name": "2.9 (286 hp) diesel", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241747, + "fields": { + "id_car_serie": 54066, + "name": "2.9 (330 hp) diesel", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241748, + "fields": { + "id_car_serie": 54066, + "name": "4.0 (489 hp) turbo, gasoline", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241749, + "fields": { + "id_car_serie": 54067, + "name": "190 kW (258 HP) four-wheel drive, automatic transmission ", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241750, + "fields": { + "id_car_serie": 54067, + "name": "340 kW (462 hp) Four-wheel drive, Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241751, + "fields": { + "id_car_serie": 54067, + "name": "258 kW (351 HP) four-wheel drive, automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241752, + "fields": { + "id_car_serie": 54067, + "name": "340 kW (462 HP.C) four-wheel drive, automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241753, + "fields": { + "id_car_serie": 54069, + "name": "1.8 (132 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2018 + } +}, +{ + "model": "inventory.cartrim", + "pk": 241754, + "fields": { + "id_car_serie": 54069, + "name": "1.8 (132 hp), gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2018 + } +}, +{ + "model": "inventory.cartrim", + "pk": 241755, + "fields": { + "id_car_serie": 54069, + "name": "1.8 (132 hp), gasoline, variator (CVT), front drive", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2018 + } +}, +{ + "model": "inventory.cartrim", + "pk": 241756, + "fields": { + "id_car_serie": 54069, + "name": "1.8 (140 hp), gasoline, variator (CVT), front drive", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2018 + } +}, +{ + "model": "inventory.cartrim", + "pk": 241757, + "fields": { + "id_car_serie": 54070, + "name": "2.9 (245 BHP) Diesel automatic", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241758, + "fields": { + "id_car_serie": 54070, + "name": "2.9 (245 BHP) Diesel automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241759, + "fields": { + "id_car_serie": 54071, + "name": "2.9 (245 BHP) Diesel automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241760, + "fields": { + "id_car_serie": 54071, + "name": "2.9 (245 BHP) Diesel automatic", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241761, + "fields": { + "id_car_serie": 54072, + "name": "2.9 (245 BHP) Diesel automatic", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241762, + "fields": { + "id_car_serie": 54072, + "name": "2.9 (245 BHP) Diesel automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241766, + "fields": { + "id_car_serie": 54083, + "name": "2 l (194 HP), Diesel, Turbo, automatic transmission", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241767, + "fields": { + "id_car_serie": 54085, + "name": "v8 (720 hp)", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241768, + "fields": { + "id_car_serie": 54086, + "name": "4.0 Automatic transmission (620 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241769, + "fields": { + "id_car_serie": 1579, + "name": "Automatic transmission (916 hp)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241770, + "fields": { + "id_car_serie": 54087, + "name": "4.0 Automatic transmission (800 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241771, + "fields": { + "id_car_serie": 7837, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241772, + "fields": { + "id_car_serie": 7837, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241773, + "fields": { + "id_car_serie": 7841, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241774, + "fields": { + "id_car_serie": 7841, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241775, + "fields": { + "id_car_serie": 54098, + "name": "1.6 4WD AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241776, + "fields": { + "id_car_serie": 54098, + "name": "1.6 4WD MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241777, + "fields": { + "id_car_serie": 54098, + "name": "1.8 4WD D AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241778, + "fields": { + "id_car_serie": 54098, + "name": "1.8 4WD D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241779, + "fields": { + "id_car_serie": 54100, + "name": "2.7 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241780, + "fields": { + "id_car_serie": 54100, + "name": "2.7 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241781, + "fields": { + "id_car_serie": 54100, + "name": "2.8 TD AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241782, + "fields": { + "id_car_serie": 54100, + "name": "3.0 TD AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241783, + "fields": { + "id_car_serie": 54100, + "name": "3.0 TD AT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241784, + "fields": { + "id_car_serie": 54100, + "name": "3.0 TD MT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241785, + "fields": { + "id_car_serie": 54100, + "name": "3.0 TD MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241786, + "fields": { + "id_car_serie": 54103, + "name": "1.4 (103 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241787, + "fields": { + "id_car_serie": 54103, + "name": "1.4 (103 hp) MT", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241788, + "fields": { + "id_car_serie": 54103, + "name": "1.6 (120 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241789, + "fields": { + "id_car_serie": 54103, + "name": "1.6 (120 hp) MT", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241790, + "fields": { + "id_car_serie": 46457, + "name": "1.4 (95 hp)", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241791, + "fields": { + "id_car_serie": 46457, + "name": "1.6 (110 hp)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241792, + "fields": { + "id_car_serie": 46457, + "name": "1.4 (120 HP) turbo engine", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241793, + "fields": { + "id_car_serie": 46457, + "name": "1.3 (95 hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241794, + "fields": { + "id_car_serie": 46457, + "name": "1.6 (120 hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241795, + "fields": { + "id_car_serie": 54105, + "name": "1.2 (95 hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241796, + "fields": { + "id_car_serie": 54105, + "name": "1.6 (120 hp) diesel", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241797, + "fields": { + "id_car_serie": 54105, + "name": "1.4 ( 95 hp) gasoline", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241798, + "fields": { + "id_car_serie": 54105, + "name": "1.6 ( 110 hp) gasoline", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241799, + "fields": { + "id_car_serie": 54106, + "name": "0.9 (65 hp) gasoline MT", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241800, + "fields": { + "id_car_serie": 54106, + "name": "0.9 (85 hp) MT gasoline", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241801, + "fields": { + "id_car_serie": 54106, + "name": "1.2 (59hp) MT", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241802, + "fields": { + "id_car_serie": 54106, + "name": "1.2 (69 HP) LPG", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241803, + "fields": { + "id_car_serie": 54106, + "name": "1.2 (75 hp) MT diesel", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241804, + "fields": { + "id_car_serie": 6801, + "name": "1.7 TD MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241805, + "fields": { + "id_car_serie": 54066, + "name": "350d 9G-Tronic 4Matic (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241806, + "fields": { + "id_car_serie": 54066, + "name": "580 9G-Tronic 4Matic (489 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241807, + "fields": { + "id_car_serie": 54118, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241808, + "fields": { + "id_car_serie": 54118, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241809, + "fields": { + "id_car_serie": 54118, + "name": "1.5 dCi MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241810, + "fields": { + "id_car_serie": 54118, + "name": "1.5 dCi MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241811, + "fields": { + "id_car_serie": 54132, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241812, + "fields": { + "id_car_serie": 54132, + "name": "2.0 MT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241813, + "fields": { + "id_car_serie": 54132, + "name": "2.0 CTI 5MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241814, + "fields": { + "id_car_serie": 54132, + "name": "2.0 CTI 6MT AWD (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241815, + "fields": { + "id_car_serie": 54132, + "name": "2.0 CTI 6MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241816, + "fields": { + "id_car_serie": 54132, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241817, + "fields": { + "id_car_serie": 54133, + "name": "1.0 TSI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241818, + "fields": { + "id_car_serie": 54133, + "name": "1.0 TSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241819, + "fields": { + "id_car_serie": 54133, + "name": "1.0 TSI DSG (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241820, + "fields": { + "id_car_serie": 54133, + "name": "1.5 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241821, + "fields": { + "id_car_serie": 54133, + "name": "1.5 TSI DSG (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241822, + "fields": { + "id_car_serie": 54133, + "name": "1.6 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241823, + "fields": { + "id_car_serie": 54133, + "name": "1.6 TDI DSG (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241827, + "fields": { + "id_car_serie": 54140, + "name": "1.0 CVT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241828, + "fields": { + "id_car_serie": 54141, + "name": "1.0 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241829, + "fields": { + "id_car_serie": 54141, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241830, + "fields": { + "id_car_serie": 54142, + "name": "1.0 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241831, + "fields": { + "id_car_serie": 54142, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241832, + "fields": { + "id_car_serie": 54151, + "name": " 4.0 V8 (612 HP), 8 automatic Tiptronic", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241833, + "fields": { + "id_car_serie": 54152, + "name": "4.0 V8 TFSI (600 hp) ", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241834, + "fields": { + "id_car_serie": 54153, + "name": "3.0 l, (249 hp), diesel, Automatic transmission, (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241835, + "fields": { + "id_car_serie": 54153, + "name": "3.0 (400 hp), diesel, Automatic transmission, (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241836, + "fields": { + "id_car_serie": 54153, + "name": "3.0 l, (340 hp), gasoline, Automatic transmission, (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241837, + "fields": { + "id_car_serie": 54153, + "name": "4.4 l, (450 hp), gasoline, Automatic transmission, (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241838, + "fields": { + "id_car_serie": 53590, + "name": "3.0 (340 hp) 840i AT8", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241839, + "fields": { + "id_car_serie": 53590, + "name": "3.0 (340 hp) 840i xDrive AT8", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241840, + "fields": { + "id_car_serie": 53590, + "name": "3.0D (320 hp) 840d xDrive AT8", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241841, + "fields": { + "id_car_serie": 53590, + "name": "4.4 (530 hp) M850i xDrive AT8", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241842, + "fields": { + "id_car_serie": 54155, + "name": "3.6 (314 hp) Automatic transmission, Four-wheel drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241843, + "fields": { + "id_car_serie": 54155, + "name": "3.6 (314 hp) Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241844, + "fields": { + "id_car_serie": 54155, + "name": "2.0 (237 hp) Automatic transmission, Four-wheel drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241845, + "fields": { + "id_car_serie": 54155, + "name": "2.0 (237 hp) Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241846, + "fields": { + "id_car_serie": 53984, + "name": "2.0 (122 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241847, + "fields": { + "id_car_serie": 53984, + "name": "2.0 (122 hp) gasoline, variator (CVT), front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241848, + "fields": { + "id_car_serie": 54157, + "name": "2.0 (200 hp) gasoline, Automatic transmission, 4WD", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241849, + "fields": { + "id_car_serie": 54157, + "name": "2.0 (249 hp) gasoline, Automatic transmission, 4WD", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241850, + "fields": { + "id_car_serie": 54157, + "name": "2.0 (150 hp) diesel, Automatic transmission, 4WD", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241851, + "fields": { + "id_car_serie": 54157, + "name": "2.0 (180 hp) diesel, Automatic transmission, 4WD", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241852, + "fields": { + "id_car_serie": 54158, + "name": "The 2.0 turbo engine (300 HP)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241853, + "fields": { + "id_car_serie": 54158, + "name": "3.0 (400 HP) turbo engine", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241854, + "fields": { + "id_car_serie": 54158, + "name": "hybrid (PHEV) Defender P400e with 404", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241855, + "fields": { + "id_car_serie": 54158, + "name": "2,0 (200 hp) turbo diesel", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241856, + "fields": { + "id_car_serie": 54158, + "name": "2,0 (240 hp) turbo diesel", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241857, + "fields": { + "id_car_serie": 54159, + "name": "4.6 (296 hp) gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241858, + "fields": { + "id_car_serie": 54160, + "name": "1.8 (122 hp)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241859, + "fields": { + "id_car_serie": 54161, + "name": "1.6 (106 HP) manual gearbox 5", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241860, + "fields": { + "id_car_serie": 54161, + "name": "1.6 l 16-valves. (106 HP), 5 automatic transmission", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241861, + "fields": { + "id_car_serie": 54162, + "name": "3.0d (286 l.c.) diesel Automatic transmission", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241862, + "fields": { + "id_car_serie": 54162, + "name": "3.0d (231 l.c.) diesel Automatic transmission", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241863, + "fields": { + "id_car_serie": 54162, + "name": "3.0 l, 340 HP, petrol, automatic, (4WD), hybrid", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241864, + "fields": { + "id_car_serie": 54163, + "name": "3.0 (255 hp) V6, variator", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241865, + "fields": { + "id_car_serie": 54163, + "name": "3.0 (362 HP) twin-turbo V6 engine", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241866, + "fields": { + "id_car_serie": 54163, + "name": "V8 4.7 (449 hp)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241867, + "fields": { + "id_car_serie": 54163, + "name": "V8 5.5 (557 hp)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241868, + "fields": { + "id_car_serie": 54163, + "name": "2.0 (150 hp) gasoline", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241869, + "fields": { + "id_car_serie": 54163, + "name": "2.2 (245 hp) diesel", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241870, + "fields": { + "id_car_serie": 54163, + "name": "1.33 (163 hp) gasoline", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241871, + "fields": { + "id_car_serie": 47632, + "name": "V6 DOHC 3.6 (308 hp)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241872, + "fields": { + "id_car_serie": 49976, + "name": "DOHC MFI 1.2 (84 hp)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241873, + "fields": { + "id_car_serie": 49674, + "name": "Ecotec V6 4.3 (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241874, + "fields": { + "id_car_serie": 53772, + "name": "MT 1.8 (141 hp)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241875, + "fields": { + "id_car_serie": 53772, + "name": " 1.8 (141 hp) variator", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241876, + "fields": { + "id_car_serie": 54164, + "name": "1.2 (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241877, + "fields": { + "id_car_serie": 46686, + "name": "1.6 GDI (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241878, + "fields": { + "id_car_serie": 54165, + "name": "3.3 (276 hp) V6", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241879, + "fields": { + "id_car_serie": 54165, + "name": "3.3 (266 hp) MPI", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241880, + "fields": { + "id_car_serie": 54166, + "name": "1.5 (105 hp)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241881, + "fields": { + "id_car_serie": 54166, + "name": "1,4 (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241882, + "fields": { + "id_car_serie": 54166, + "name": "1.4 (103 hp) VVT", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241883, + "fields": { + "id_car_serie": 54167, + "name": "1.4 (105 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241884, + "fields": { + "id_car_serie": 54167, + "name": "1.4 (105 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241885, + "fields": { + "id_car_serie": 54167, + "name": "1.5 (90 hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241886, + "fields": { + "id_car_serie": 51428, + "name": "1.4 Turbo (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241887, + "fields": { + "id_car_serie": 54168, + "name": "1.2 l (79 hp) gasoline, variator (CVT), front drive", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241888, + "fields": { + "id_car_serie": 54168, + "name": "1.2 (79 hp), gasoline, variator (CVT), Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241889, + "fields": { + "id_car_serie": 54168, + "name": "1.5 (116 hp), gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241890, + "fields": { + "id_car_serie": 54168, + "name": "1.6 (150 hp), gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241891, + "fields": { + "id_car_serie": 53619, + "name": "2.0 (248 hp), gasoline, variator (CVT), front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241892, + "fields": { + "id_car_serie": 53619, + "name": "2.5 (188 hp), gasoline, variator (CVT), front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241893, + "fields": { + "id_car_serie": 53619, + "name": "2.5 (188 hp), gasoline, variator (CVT), Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241894, + "fields": { + "id_car_serie": 54170, + "name": "Of 1.5 (106 HP), an engine H4K", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241895, + "fields": { + "id_car_serie": 54170, + "name": "1.5 (110 HP)turbo diesel engine K9K manual transmission", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241896, + "fields": { + "id_car_serie": 54170, + "name": "1.5 (110 HP) turbo diesel engine K9K automatic transmission", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241897, + "fields": { + "id_car_serie": 53257, + "name": "1.6 (118 hp), variator", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241898, + "fields": { + "id_car_serie": 53257, + "name": "218 HP, electric, Gearbox, Front (FF)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241899, + "fields": { + "id_car_serie": 53359, + "name": "2.0 (140 hp), gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241900, + "fields": { + "id_car_serie": 53359, + "name": "2.0 (140 hp), gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241901, + "fields": { + "id_car_serie": 53359, + "name": "3.0 (200 hp), gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241902, + "fields": { + "id_car_serie": 53359, + "name": "3.0 (200 hp), gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241903, + "fields": { + "id_car_serie": 4508, + "name": "1.6 (122 hp) 5 MT", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 241904, + "fields": { + "id_car_serie": 4508, + "name": "1.6 (122 hp) variator", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249107, + "fields": { + "id_car_serie": 53165, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249108, + "fields": { + "id_car_serie": 53165, + "name": "1.5 CVT FWD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249109, + "fields": { + "id_car_serie": 53165, + "name": "1.5 CVT AWD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249110, + "fields": { + "id_car_serie": 53165, + "name": "1.5 Hybrid CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249111, + "fields": { + "id_car_serie": 53165, + "name": "1.8 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249112, + "fields": { + "id_car_serie": 50862, + "name": "1.3 CVT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249113, + "fields": { + "id_car_serie": 50862, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249114, + "fields": { + "id_car_serie": 50862, + "name": "1.5 CVT FWD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249115, + "fields": { + "id_car_serie": 50862, + "name": "1.5 CVT AWD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249116, + "fields": { + "id_car_serie": 50862, + "name": "1.5 Hybrid CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249117, + "fields": { + "id_car_serie": 47581, + "name": "3.0d (245 hp) AMT", + "arabic_name": "-", + "start_production_year": 2014, + "end_production_year": 2019 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249118, + "fields": { + "id_car_serie": 51391, + "name": "2.0 (249 hp) AMT", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": 2019 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249119, + "fields": { + "id_car_serie": 53343, + "name": "2.0 l, (245 hp), gasoline, robot, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249120, + "fields": { + "id_car_serie": 53343, + "name": "3.0 l, (340 hp), gasoline, robot, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249126, + "fields": { + "id_car_serie": 15249, + "name": "1.6 MULTIJET 120 CROSS PLUS 4*2", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249128, + "fields": { + "id_car_serie": 15249, + "name": "2.0 MULTIJET 140 CROSS PLUS 4*4 AT9", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249129, + "fields": { + "id_car_serie": 15249, + "name": "1.3 MULTIJET 95 LOUNGE 4*2", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249130, + "fields": { + "id_car_serie": 15249, + "name": "1.3 MULTIJET 95 POP 4*2", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249131, + "fields": { + "id_car_serie": 15249, + "name": "1.3 MULTIJET 95 POPSTAR 4*2", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": 2017 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249132, + "fields": { + "id_car_serie": 15249, + "name": "1.3 MULTIJET 95 POPSTAR BUSINESS 4*2", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249133, + "fields": { + "id_car_serie": 15249, + "name": "1.4 MULTIAIR 140 CROSS + 4*2", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249134, + "fields": { + "id_car_serie": 15249, + "name": "1.4 MULTIAIR 140 CROSS PLUS 4*2 DCT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249135, + "fields": { + "id_car_serie": 15249, + "name": "1.4 MULTIAIR 140 LOUNGE 4*2", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249136, + "fields": { + "id_car_serie": 15249, + "name": "1.4 MULTIAIR 140 LOUNGE 4*2 DCT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249137, + "fields": { + "id_car_serie": 15249, + "name": "1.4 MULTIAIR 140 POPSTAR 4*2", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249138, + "fields": { + "id_car_serie": 15249, + "name": "1.4 MULTIAIR 140 POPSTAR 4*2 DCT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249139, + "fields": { + "id_car_serie": 15249, + "name": "1.4 MULTIAIR 140 POPSTAR BUSINESS 4*2 DCT", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249140, + "fields": { + "id_car_serie": 15249, + "name": "1.6 E-TORQ 110 POPSTAR BUSINESS 4*2", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249141, + "fields": { + "id_car_serie": 15249, + "name": "1.6 MULTIJET 120 CROSS 4*2", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249142, + "fields": { + "id_car_serie": 15249, + "name": "1.6 MULTIJET 120 LOUNGE DCT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249143, + "fields": { + "id_car_serie": 15249, + "name": "1.6 MULTIJET 120 POPSTAR 4*2", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249144, + "fields": { + "id_car_serie": 15249, + "name": "2.0 MULTIJET 140 CROSS + 4*4 AT9", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249145, + "fields": { + "id_car_serie": 15249, + "name": "1.0 FIREFLY T T3 120 CITY CROSS", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249146, + "fields": { + "id_car_serie": 7146, + "name": "1.5 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249147, + "fields": { + "id_car_serie": 62763, + "name": "1.6 (102 hp) gasoline, Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249148, + "fields": { + "id_car_serie": 62763, + "name": "1.6 (102 hp) gasoline, MT", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249149, + "fields": { + "id_car_serie": 47417, + "name": "2.0 TDI", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249153, + "fields": { + "id_car_serie": 62765, + "name": "1.4 (150 hp) robot, front drive, gasoline", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249154, + "fields": { + "id_car_serie": 62765, + "name": "2.0 (180 hp) gasoline, robot, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249155, + "fields": { + "id_car_serie": 62766, + "name": "2.0 (230 l.c.) gasoline, robot", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249156, + "fields": { + "id_car_serie": 62766, + "name": "2.0 (190 hp) robot, gasoline", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249157, + "fields": { + "id_car_serie": 62766, + "name": "2.0d (190 l.c),\tfront drive, diesel, robot", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249158, + "fields": { + "id_car_serie": 62766, + "name": "2.0d (190 l.c), MT, diesel, Four-wheel drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249159, + "fields": { + "id_car_serie": 62767, + "name": "2.5 (400 hp) gasoline, robot, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249160, + "fields": { + "id_car_serie": 53566, + "name": "4.4 (625 hp) gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249163, + "fields": { + "id_car_serie": 62769, + "name": "2,0 (190 hp AMT, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249164, + "fields": { + "id_car_serie": 62769, + "name": "2,0 (190 hp AMT, Four-wheel drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249165, + "fields": { + "id_car_serie": 53962, + "name": "2.5 (180 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249170, + "fields": { + "id_car_serie": 62782, + "name": "1.2 (70 hp) gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249171, + "fields": { + "id_car_serie": 62782, + "name": "1.2 (73 hp) gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249172, + "fields": { + "id_car_serie": 62782, + "name": "1.4 (85 hp) gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249173, + "fields": { + "id_car_serie": 62782, + "name": "1.4 (92 hp) gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249174, + "fields": { + "id_car_serie": 62782, + "name": "1.6 (100 hp) gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249175, + "fields": { + "id_car_serie": 62782, + "name": "1.6 (110 hp) gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249176, + "fields": { + "id_car_serie": 62783, + "name": "1.2 (73 hp) gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249181, + "fields": { + "id_car_serie": 62783, + "name": "1.2 (73 hp) MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249182, + "fields": { + "id_car_serie": 62783, + "name": "1.4 (80 hp,) gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249183, + "fields": { + "id_car_serie": 62783, + "name": "1.4 (82 hp) gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249184, + "fields": { + "id_car_serie": 62783, + "name": "1.4 (82 hp) gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249185, + "fields": { + "id_car_serie": 62783, + "name": "1.4 (85 hp) gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249186, + "fields": { + "id_car_serie": 62783, + "name": "1.4 (85 hp) gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249187, + "fields": { + "id_car_serie": 62783, + "name": "1.6 (86 hp) gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249188, + "fields": { + "id_car_serie": 62783, + "name": "1.6 ( 92 hp) gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249189, + "fields": { + "id_car_serie": 62784, + "name": "1.2 (72 hp) gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249190, + "fields": { + "id_car_serie": 62784, + "name": "1.4 (80 hp) gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249191, + "fields": { + "id_car_serie": 62784, + "name": "1.4 (80 hp) gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249192, + "fields": { + "id_car_serie": 62784, + "name": "1.4 (82 hp) gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249193, + "fields": { + "id_car_serie": 62784, + "name": "1.4 (82 hp) gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249194, + "fields": { + "id_car_serie": 62784, + "name": "1.6 (86 hp) gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249195, + "fields": { + "id_car_serie": 62784, + "name": "1.6 (86 hp) gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249196, + "fields": { + "id_car_serie": 62784, + "name": "1.6 (88 hp) gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249197, + "fields": { + "id_car_serie": 62784, + "name": "1.6 (88 hp) gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249198, + "fields": { + "id_car_serie": 62784, + "name": "1.8 (100 hp) gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249199, + "fields": { + "id_car_serie": 62784, + "name": "1.8 (100 hp) gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249200, + "fields": { + "id_car_serie": 62785, + "name": "1.2 (72 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249201, + "fields": { + "id_car_serie": 62785, + "name": "1.4 (82 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249202, + "fields": { + "id_car_serie": 62785, + "name": "1.4 (82 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249203, + "fields": { + "id_car_serie": 62785, + "name": "1.4 (105 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249204, + "fields": { + "id_car_serie": 62786, + "name": "1.3 (67 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249205, + "fields": { + "id_car_serie": 62786, + "name": "1.3 (67 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249206, + "fields": { + "id_car_serie": 62786, + "name": "1.3 (77 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249207, + "fields": { + "id_car_serie": 62786, + "name": "1.3 (77 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249208, + "fields": { + "id_car_serie": 62786, + "name": "1.5 (73 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249209, + "fields": { + "id_car_serie": 62786, + "name": "1.5 (73 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249210, + "fields": { + "id_car_serie": 62786, + "name": "1.5 (87 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249211, + "fields": { + "id_car_serie": 62786, + "name": "1.5 (87 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249212, + "fields": { + "id_car_serie": 62786, + "name": "1.5 l(82 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249213, + "fields": { + "id_car_serie": 62786, + "name": "1.5 (82 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249214, + "fields": { + "id_car_serie": 62786, + "name": "1.6 (120 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249215, + "fields": { + "id_car_serie": 62786, + "name": "1.6 (120 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249216, + "fields": { + "id_car_serie": 62786, + "name": "1.8 (65 hp) diesel, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249217, + "fields": { + "id_car_serie": 62787, + "name": "1.3 (67 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249218, + "fields": { + "id_car_serie": 62787, + "name": "1.3 (79 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249219, + "fields": { + "id_car_serie": 62787, + "name": "1.3 (79 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249220, + "fields": { + "id_car_serie": 62787, + "name": "1.5 (73 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249221, + "fields": { + "id_car_serie": 62787, + "name": "1.5 (73 hp) gasoline, MT, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249222, + "fields": { + "id_car_serie": 62787, + "name": "1.5 (73 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249223, + "fields": { + "id_car_serie": 62787, + "name": "1.5 (82 hp,) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249224, + "fields": { + "id_car_serie": 62787, + "name": "1.5 (82 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249225, + "fields": { + "id_car_serie": 62787, + "name": "1.5 (85 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249226, + "fields": { + "id_car_serie": 62787, + "name": "1.5 (85 hp) gasoline, MT, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249227, + "fields": { + "id_car_serie": 62787, + "name": "1.5 (100 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249228, + "fields": { + "id_car_serie": 62787, + "name": "1.5 (85 hp) gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249229, + "fields": { + "id_car_serie": 62787, + "name": "1.5 (100 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249230, + "fields": { + "id_car_serie": 62787, + "name": "1.6 (125 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249231, + "fields": { + "id_car_serie": 62787, + "name": "1.6 (125 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249232, + "fields": { + "id_car_serie": 62787, + "name": "1.6 (130 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249233, + "fields": { + "id_car_serie": 62787, + "name": "1.6 ( 130 hp) gasoline, MT, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249234, + "fields": { + "id_car_serie": 62787, + "name": "1.6 (130 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249235, + "fields": { + "id_car_serie": 62787, + "name": "1.6 (130 hp) gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249236, + "fields": { + "id_car_serie": 62787, + "name": "1.6 (145 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249237, + "fields": { + "id_car_serie": 62787, + "name": "1.6 (145 hp) gasoline, MT, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249238, + "fields": { + "id_car_serie": 62787, + "name": "1.6 (160 hp) gasoline, MT, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249239, + "fields": { + "id_car_serie": 62787, + "name": "1.8 (61 hp) diesel, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249240, + "fields": { + "id_car_serie": 62787, + "name": "1.8 ( 61 hp) diesel, MT, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249241, + "fields": { + "id_car_serie": 62787, + "name": "1.8 ( 61 hp) diesel, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249242, + "fields": { + "id_car_serie": 62787, + "name": "1.8 (76 hp) diesel, MT, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249243, + "fields": { + "id_car_serie": 62788, + "name": "1.3 (79 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249244, + "fields": { + "id_car_serie": 62788, + "name": "1.3 (79 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249245, + "fields": { + "id_car_serie": 62788, + "name": "1.5 (91 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249246, + "fields": { + "id_car_serie": 62788, + "name": "1.5 (91 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249247, + "fields": { + "id_car_serie": 62788, + "name": "1.5 ( 97 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249248, + "fields": { + "id_car_serie": 62788, + "name": "1.5 (97 hp) gasoline, MT, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249249, + "fields": { + "id_car_serie": 62788, + "name": "1.5(97 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249250, + "fields": { + "id_car_serie": 62788, + "name": "1.5 (97 hp) gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249251, + "fields": { + "id_car_serie": 62788, + "name": "1.5 (115 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249252, + "fields": { + "id_car_serie": 62788, + "name": "1.5 (115 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249253, + "fields": { + "id_car_serie": 62788, + "name": "1.6 (140 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249254, + "fields": { + "id_car_serie": 62788, + "name": "1.6 (140 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249255, + "fields": { + "id_car_serie": 62788, + "name": "1.6 (175 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249256, + "fields": { + "id_car_serie": 62788, + "name": "1.6 (175 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249257, + "fields": { + "id_car_serie": 62788, + "name": "1.8 (205 hp) gasoline, MT, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249258, + "fields": { + "id_car_serie": 62788, + "name": "1.8 (205 hp) gasoline, Automatic transmission, Four-wheel drive (4WD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249259, + "fields": { + "id_car_serie": 62788, + "name": "2.0 (88 hp) diesel, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249260, + "fields": { + "id_car_serie": 62788, + "name": "2.0 ( 88 hp) diesel, MT, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249261, + "fields": { + "id_car_serie": 62788, + "name": "2.0 (88 hp) diesel, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249262, + "fields": { + "id_car_serie": 62788, + "name": "2.0 ( 88 hp) diesel, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249263, + "fields": { + "id_car_serie": 62789, + "name": "1.3 l, 88 hp, gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249264, + "fields": { + "id_car_serie": 62789, + "name": "1.3 l, 88 hp, gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249265, + "fields": { + "id_car_serie": 62789, + "name": "1.5 l, 94 hp, gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249266, + "fields": { + "id_car_serie": 62789, + "name": "1.5 l, 94 hp, gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249267, + "fields": { + "id_car_serie": 62789, + "name": "1.5 l, 110 hp, gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249268, + "fields": { + "id_car_serie": 62789, + "name": "1.5 l, 110 hp, gasoline, MT, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249269, + "fields": { + "id_car_serie": 62789, + "name": "1.5 l, 110 hp, gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249270, + "fields": { + "id_car_serie": 62789, + "name": "1.5 l, 110 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249271, + "fields": { + "id_car_serie": 62789, + "name": "1.6 l, 175 hp, gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249272, + "fields": { + "id_car_serie": 62789, + "name": "1.6 l, 175 hp, gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249273, + "fields": { + "id_car_serie": 62789, + "name": "1.8 l, 135 hp, gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249274, + "fields": { + "id_car_serie": 62789, + "name": "1.8 l, 205 hp, gasoline, MT, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249275, + "fields": { + "id_car_serie": 62789, + "name": "1.8 l, 205 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249276, + "fields": { + "id_car_serie": 62789, + "name": "2.0 l, 88 hp, diesel, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249277, + "fields": { + "id_car_serie": 62789, + "name": "2.0 l, 88 hp, diesel, MT, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249278, + "fields": { + "id_car_serie": 62789, + "name": "2.0 l, 88 hp, diesel, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249279, + "fields": { + "id_car_serie": 62789, + "name": "2.0 l, 88 hp, diesel, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249280, + "fields": { + "id_car_serie": 62790, + "name": "1.5 l, 90 hp, gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249281, + "fields": { + "id_car_serie": 62790, + "name": "1.5 l, 90 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249282, + "fields": { + "id_car_serie": 62790, + "name": "1.5 l, 90 hp, gasoline, variator (CVT), front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249283, + "fields": { + "id_car_serie": 62791, + "name": "1.2 l, 90 hp, gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249284, + "fields": { + "id_car_serie": 62791, + "name": "1.5 l, 109 hp, gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249285, + "fields": { + "id_car_serie": 62791, + "name": "1.5 l, 111 hp, gasoline, variator (CVT), front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249286, + "fields": { + "id_car_serie": 62791, + "name": "1.6 l, 109 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249287, + "fields": { + "id_car_serie": 62791, + "name": "1.8 l, 124 hp, gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249288, + "fields": { + "id_car_serie": 62791, + "name": "1.8 l, 143 hp, gasoline, variator (CVT), front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249289, + "fields": { + "id_car_serie": 62791, + "name": "2.0 l, 150 hp, gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249290, + "fields": { + "id_car_serie": 62791, + "name": "2.0 l, 150 hp, gasoline, MT, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249291, + "fields": { + "id_car_serie": 62791, + "name": "2.0 l, 150 hp, gasoline, variator (CVT), front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249292, + "fields": { + "id_car_serie": 62791, + "name": "2.0 l, 150 hp, gasoline, variator (CVT), Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249293, + "fields": { + "id_car_serie": 62791, + "name": "2.0 l, 241 hp, gasoline, robot, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249294, + "fields": { + "id_car_serie": 2847, + "name": "3.7 AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249295, + "fields": { + "id_car_serie": 46896, + "name": "R 350 CDI 4MATIC 7G-Tronic long base (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249296, + "fields": { + "id_car_serie": 49859, + "name": "4.7 V8 MT (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249300, + "fields": { + "id_car_serie": 62793, + "name": "1.0 60 l.c. gasoline\tMK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249301, + "fields": { + "id_car_serie": 62793, + "name": "1.2 (80 hp) MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249302, + "fields": { + "id_car_serie": 62793, + "name": "1.3d 90 l.c. diesel\t", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249303, + "fields": { + "id_car_serie": 62793, + "name": "1.3d 75 l.c. diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249304, + "fields": { + "id_car_serie": 62793, + "name": "1.75 d 125 l.c. diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249305, + "fields": { + "id_car_serie": 62793, + "name": "1.4 90 hp gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249306, + "fields": { + "id_car_serie": 62793, + "name": "1.6 150 hp", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249307, + "fields": { + "id_car_serie": 62794, + "name": "1.0 60 l.c. gasoline MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249308, + "fields": { + "id_car_serie": 62794, + "name": "1.2 (80 hp) MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249309, + "fields": { + "id_car_serie": 62794, + "name": "1.3d 75 l.c. diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249310, + "fields": { + "id_car_serie": 62794, + "name": "1.3d 90 l.c. diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249311, + "fields": { + "id_car_serie": 62794, + "name": "1.4 90 hp gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249312, + "fields": { + "id_car_serie": 62794, + "name": "1.6 150 hp", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249313, + "fields": { + "id_car_serie": 62794, + "name": "1.7 d 125 l.c. diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249314, + "fields": { + "id_car_serie": 62795, + "name": "1.0 (60 l.c.) gasoline MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249315, + "fields": { + "id_car_serie": 62795, + "name": "1.2 (80 hp) MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249316, + "fields": { + "id_car_serie": 62795, + "name": "1.3d (75 l.c.) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249317, + "fields": { + "id_car_serie": 62795, + "name": "1.3d (90 l.c.) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249318, + "fields": { + "id_car_serie": 62795, + "name": "1.4 (90 hp) gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249319, + "fields": { + "id_car_serie": 62795, + "name": "1.6 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249320, + "fields": { + "id_car_serie": 62795, + "name": "1.7 d (125 l.c.) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249321, + "fields": { + "id_car_serie": 62796, + "name": "1.0 (65 l.c). gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249322, + "fields": { + "id_car_serie": 62796, + "name": "1.2 (85 hp) gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249323, + "fields": { + "id_car_serie": 62796, + "name": "1.2 (85 hp) gasoline, robot", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249324, + "fields": { + "id_car_serie": 62796, + "name": "1.3d (75 l.c.) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249325, + "fields": { + "id_car_serie": 62796, + "name": "1.3d (90 l.c.) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249326, + "fields": { + "id_car_serie": 62796, + "name": "1.4 (120 hp) gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249327, + "fields": { + "id_car_serie": 62796, + "name": "1.4 (100 hp) gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249328, + "fields": { + "id_car_serie": 62796, + "name": "1.7d (130 l.c.) diesel MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249329, + "fields": { + "id_car_serie": 62797, + "name": "(136 HP) electro machine", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249330, + "fields": { + "id_car_serie": 62797, + "name": "1.2 (75 hp) gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249331, + "fields": { + "id_car_serie": 62797, + "name": "1.2 (100 hp) gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249332, + "fields": { + "id_car_serie": 62797, + "name": "1.5d (102 l.c.) diesel, MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249333, + "fields": { + "id_car_serie": 62798, + "name": "1.0 (80 l.c). gasoline , MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249334, + "fields": { + "id_car_serie": 62798, + "name": "1.0 (115 l.c). gasoline, MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249335, + "fields": { + "id_car_serie": 62798, + "name": "1.2 (70 hp) gasoline, MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249336, + "fields": { + "id_car_serie": 62798, + "name": "1.3d (75 l.c.) diesel, MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249337, + "fields": { + "id_car_serie": 62798, + "name": "1.3d (95 l.c.) diesel, robot", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249338, + "fields": { + "id_car_serie": 62798, + "name": "1.4 (100 hp) gasoline, MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249339, + "fields": { + "id_car_serie": 62798, + "name": "1.4 (150 hp) gasoline , MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249340, + "fields": { + "id_car_serie": 62798, + "name": "1.4 (75 hp) gasoline, MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249341, + "fields": { + "id_car_serie": 62798, + "name": "1.4 (90 hp) gasoline, MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249342, + "fields": { + "id_car_serie": 62798, + "name": "1.4 (90 hp) gasoline, robot", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249343, + "fields": { + "id_car_serie": 62798, + "name": "1.4 (90 hp) gasoline, automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249344, + "fields": { + "id_car_serie": 62799, + "name": "1.0 (115 l.c). gasoline, MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249345, + "fields": { + "id_car_serie": 62799, + "name": "1.0 (80 l.c). gasoline , MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249346, + "fields": { + "id_car_serie": 62799, + "name": "1.2 (70 hp) gasoline, MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249347, + "fields": { + "id_car_serie": 62799, + "name": "1.3d (75 l.c.) diesel, MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249348, + "fields": { + "id_car_serie": 62799, + "name": "1.3d (95 l.c.) diesel, robot", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249349, + "fields": { + "id_car_serie": 62799, + "name": "1.4 (100 hp) gasoline, MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249350, + "fields": { + "id_car_serie": 62799, + "name": "1.4 (150 hp) gasoline , MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249351, + "fields": { + "id_car_serie": 62799, + "name": "1.4 (75 hp) gasoline, MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249352, + "fields": { + "id_car_serie": 62799, + "name": "1.4 (90 hp) gasoline, automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249353, + "fields": { + "id_car_serie": 62799, + "name": "1.4 (90 hp) gasoline, MK", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249354, + "fields": { + "id_car_serie": 62799, + "name": "1.4 (90 hp) gasoline, robot", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249355, + "fields": { + "id_car_serie": 62800, + "name": "1.0 l, 60 hp, gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249356, + "fields": { + "id_car_serie": 62800, + "name": "1.0 l, 60 hp, gasoline, robot, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249357, + "fields": { + "id_car_serie": 62800, + "name": "1.2 l, 75 hp, gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249358, + "fields": { + "id_car_serie": 62800, + "name": "1.2 l, 75 hp, gasoline, robot, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249359, + "fields": { + "id_car_serie": 62800, + "name": "1.2 l, 80 hp, gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249360, + "fields": { + "id_car_serie": 62800, + "name": "1.2 l, 80 hp, gasoline, robot, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249361, + "fields": { + "id_car_serie": 62800, + "name": "1.4 l, 90 hp, gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249362, + "fields": { + "id_car_serie": 62800, + "name": "1.4 l, 90 hp, gasoline, robot, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249363, + "fields": { + "id_car_serie": 62801, + "name": "1.8 l, 105 hp, gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249364, + "fields": { + "id_car_serie": 62801, + "name": "1.8 l, 105 hp, gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249365, + "fields": { + "id_car_serie": 62801, + "name": "2.0 l, 135 hp, gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249366, + "fields": { + "id_car_serie": 62801, + "name": "2.0 l, 135 hp, gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249367, + "fields": { + "id_car_serie": 62801, + "name": "2.0 l, 150 hp, gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249368, + "fields": { + "id_car_serie": 62801, + "name": "2.0 l, 150 hp, gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249369, + "fields": { + "id_car_serie": 62801, + "name": "2.0 l, 170 hp, gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249370, + "fields": { + "id_car_serie": 62801, + "name": "2.0 l, 210 hp, gasoline, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249371, + "fields": { + "id_car_serie": 62801, + "name": "2.0 l, 210 hp, gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249372, + "fields": { + "id_car_serie": 62801, + "name": "2.4 l, 85 hp, diesel, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249373, + "fields": { + "id_car_serie": 62801, + "name": "2.4 l, 94 hp, diesel, MT, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249374, + "fields": { + "id_car_serie": 62801, + "name": "2.4 l, 94 hp, diesel, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249375, + "fields": { + "id_car_serie": 62801, + "name": "3.0 l, 200 hp, gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249376, + "fields": { + "id_car_serie": 62802, + "name": "1,4 TSI 150 hp DSG-7", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249377, + "fields": { + "id_car_serie": 62802, + "name": "1.6 (110 hp) MT5", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249378, + "fields": { + "id_car_serie": 62802, + "name": "1.6 (110 hp) AT6", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249379, + "fields": { + "id_car_serie": 62802, + "name": "1.4 (150 hp) MT6", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249383, + "fields": { + "id_car_serie": 62802, + "name": "1.8 (180 hp) DSG7", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249388, + "fields": { + "id_car_serie": 62764, + "name": "2.0 (258 hp) Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249389, + "fields": { + "id_car_serie": 8490, + "name": "1.6 (102 hp)MT LPG", + "arabic_name": "-", + "start_production_year": 2010, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249394, + "fields": { + "id_car_serie": 62803, + "name": "2.5 l, 400 hp, gasoline, robot, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249395, + "fields": { + "id_car_serie": 62804, + "name": "4.0 l, 507 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2019 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249396, + "fields": { + "id_car_serie": 62804, + "name": "4.0 l, 528 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249397, + "fields": { + "id_car_serie": 62804, + "name": "6.0 l, 625 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249398, + "fields": { + "id_car_serie": 62804, + "name": "6.0 l, 635 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249399, + "fields": { + "id_car_serie": 62805, + "name": "3.0 l, 249 hp, diesel, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249400, + "fields": { + "id_car_serie": 62805, + "name": "3.0 l, 400 hp, diesel, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249401, + "fields": { + "id_car_serie": 62805, + "name": "3.0 l, 340 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249402, + "fields": { + "id_car_serie": 62805, + "name": "4.4 l, 462 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249403, + "fields": { + "id_car_serie": 62805, + "name": "4.4 l, 530 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249404, + "fields": { + "id_car_serie": 62805, + "name": "4.4 l, 600 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249405, + "fields": { + "id_car_serie": 62805, + "name": "4.4 l, 625 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249406, + "fields": { + "id_car_serie": 62806, + "name": "2.0 l, 245 HP, petrol, automatic transmission, all-wheel drive (4WD), hybrid", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": 2018 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249407, + "fields": { + "id_car_serie": 62806, + "name": "3.0 l, 306 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2018 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249408, + "fields": { + "id_car_serie": 62806, + "name": "3.0 l, 218 hp, diesel, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2018 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249409, + "fields": { + "id_car_serie": 62806, + "name": "3.0 l, 249 hp, diesel, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2018 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249410, + "fields": { + "id_car_serie": 62806, + "name": "3.0 l, 313 hp, diesel, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2018 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249411, + "fields": { + "id_car_serie": 62806, + "name": "3.0 l, 381 hp, diesel, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2018 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249412, + "fields": { + "id_car_serie": 62806, + "name": "4.4 l, 450 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2018 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249416, + "fields": { + "id_car_serie": 62806, + "name": "4.4 l, 575 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249417, + "fields": { + "id_car_serie": 62807, + "name": "3.0 l, 249 hp, diesel, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249418, + "fields": { + "id_car_serie": 62807, + "name": "3.0 l, 400 hp, diesel, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249419, + "fields": { + "id_car_serie": 62807, + "name": "3.0 l, 340 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249420, + "fields": { + "id_car_serie": 62807, + "name": "4.4 l, 450 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249421, + "fields": { + "id_car_serie": 62807, + "name": "4.4 l, 600 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249422, + "fields": { + "id_car_serie": 62807, + "name": "4.4 l, 625 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249423, + "fields": { + "id_car_serie": 62808, + "name": "1.6 l, 128 hp, gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249424, + "fields": { + "id_car_serie": 62808, + "name": "1.6 l, 128 hp, gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249425, + "fields": { + "id_car_serie": 62809, + "name": "1.5 l, 143 hp, gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249426, + "fields": { + "id_car_serie": 62809, + "name": "1.5 l, 143 hp, gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249427, + "fields": { + "id_car_serie": 62810, + "name": "6.2 l, 409 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249428, + "fields": { + "id_car_serie": 62810, + "name": "6.2 l, 426 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249429, + "fields": { + "id_car_serie": 62811, + "name": "2.0 l, 300 hp, gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249430, + "fields": { + "id_car_serie": 62811, + "name": "3.0 l, 380 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249431, + "fields": { + "id_car_serie": 62811, + "name": "3.0 l, 380 hp, gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249432, + "fields": { + "id_car_serie": 62811, + "name": "5.0 l, 575 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249433, + "fields": { + "id_car_serie": 62812, + "name": "2.0 l, 249 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249434, + "fields": { + "id_car_serie": 62812, + "name": "2.0 l, 300 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249435, + "fields": { + "id_car_serie": 62812, + "name": "2.0 l, 180 hp, diesel, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249436, + "fields": { + "id_car_serie": 62812, + "name": "2.0 l, 180 hp, diesel, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249437, + "fields": { + "id_car_serie": 62813, + "name": "3.5 l, 300 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249438, + "fields": { + "id_car_serie": 62814, + "name": "2.9d 330 l.c. diesel\t", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249439, + "fields": { + "id_car_serie": 62814, + "name": "2.0h 320 l.c. Hybrid\tautomatic transmission", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249440, + "fields": { + "id_car_serie": 62814, + "name": "2.9d 272 l.c. diesel\tautomatic transmission", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249441, + "fields": { + "id_car_serie": 62815, + "name": "3.0 l, 367 HP, petrol, automatic transmission, all-wheel drive (4WD), hybrid", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249442, + "fields": { + "id_car_serie": 62815, + "name": "3.0 l, 435 HP, petrol, automatic transmission, all-wheel drive (4WD), hybrid", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249443, + "fields": { + "id_car_serie": 62815, + "name": "4.0 l, 585 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249444, + "fields": { + "id_car_serie": 62815, + "name": "4.0 l, 639 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249445, + "fields": { + "id_car_serie": 62816, + "name": "1.6 CVT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249446, + "fields": { + "id_car_serie": 62817, + "name": "2.0 l, 150 hp, diesel, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249447, + "fields": { + "id_car_serie": 62818, + "name": "80 kW/h", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249448, + "fields": { + "id_car_serie": 62818, + "name": "95 kWh", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249449, + "fields": { + "id_car_serie": 62819, + "name": "2.8 l, 150 hp, diesel, MT, RWD", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249450, + "fields": { + "id_car_serie": 62819, + "name": "2.8 l, 150 hp, diesel, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249451, + "fields": { + "id_car_serie": 51430, + "name": "2.7 l, 150 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249452, + "fields": { + "id_car_serie": 14731, + "name": "2.7 l, 150 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249453, + "fields": { + "id_car_serie": 62820, + "name": "2.4 l, 168 hp, gasoline, variator (CVT), front drive", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249454, + "fields": { + "id_car_serie": 62820, + "name": "2.4 l, 168 hp, gasoline, variator (CVT), Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249455, + "fields": { + "id_car_serie": 62820, + "name": "3.0 l, 230 hp, gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249456, + "fields": { + "id_car_serie": 62820, + "name": "3.0 l, 230 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249457, + "fields": { + "id_car_serie": 62821, + "name": "2.4 l, 170 hp, Gasoline, MT, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249458, + "fields": { + "id_car_serie": 62821, + "name": "2.4 l, 170 hp, Gasoline, variator, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249459, + "fields": { + "id_car_serie": 62821, + "name": "3.0 l, 220 hp, Gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249460, + "fields": { + "id_car_serie": 62822, + "name": "6.7 l, 460 hp, gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249516, + "fields": { + "id_car_serie": 62873, + "name": "1.6 l (117 hp) Gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249517, + "fields": { + "id_car_serie": 62873, + "name": "1.4 l (140 hp) gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249542, + "fields": { + "id_car_serie": 54150, + "name": "3.0 (401 l.c.) gasoline, automatic transmission", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249543, + "fields": { + "id_car_serie": 54150, + "name": "3.0 (435 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249544, + "fields": { + "id_car_serie": 54150, + "name": "4.0 (571 hp) Automatic transmission, Four-wheel drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249545, + "fields": { + "id_car_serie": 54150, + "name": "4.0 (612 hp) Automatic transmission, Four-wheel drive", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249547, + "fields": { + "id_car_serie": 48288, + "name": " 2.5d 95 l.c. diesel\tautomatic transmission", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249548, + "fields": { + "id_car_serie": 48288, + "name": "3.0 141 l.c. gasoline, MT", + "arabic_name": "-", + "start_production_year": 1991, + "end_production_year": 1997 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249549, + "fields": { + "id_car_serie": 54074, + "name": "4.0 l, 507 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2019 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249550, + "fields": { + "id_car_serie": 54074, + "name": "4.0 l, 528 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249551, + "fields": { + "id_car_serie": 54074, + "name": "6.0 l, 625 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249552, + "fields": { + "id_car_serie": 54074, + "name": "6.0 l, 635 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2013, + "end_production_year": 2019 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249553, + "fields": { + "id_car_serie": 54076, + "name": "2.5 MT (163 hp) diesel, 2.5 l., manual transmission, Four-wheel drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249554, + "fields": { + "id_car_serie": 54102, + "name": "3.0 (340 hp), Four-wheel drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249555, + "fields": { + "id_car_serie": 54102, + "name": "diesel 3.0 l.( 320 hp) AT, 4x4", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249556, + "fields": { + "id_car_serie": 54102, + "name": "gasoline 3.0 l.(340 hp), AT, 4x4", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249557, + "fields": { + "id_car_serie": 54102, + "name": "4.4 l (530 hp) AT 4x4 gasoline", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249558, + "fields": { + "id_car_serie": 54113, + "name": "1.3 l, 92 hp, gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249559, + "fields": { + "id_car_serie": 54113, + "name": "1.3 l, 92 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249560, + "fields": { + "id_car_serie": 54113, + "name": "1.5 l, 109 hp, gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2006, + "end_production_year": 2013 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249561, + "fields": { + "id_car_serie": 62770, + "name": "1.5 l (112 hp), Hybrid, variator", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249562, + "fields": { + "id_car_serie": 62770, + "name": "1.5 l (112 PS), Hybrid, Mechanic", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249563, + "fields": { + "id_car_serie": 54148, + "name": "2.4 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249564, + "fields": { + "id_car_serie": 54148, + "name": "2.4 AT AWD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249565, + "fields": { + "id_car_serie": 54148, + "name": "2.4 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249566, + "fields": { + "id_car_serie": 62898, + "name": "2.0 l, 190 hp, gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249567, + "fields": { + "id_car_serie": 62898, + "name": "2.0 l, 190 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249581, + "fields": { + "id_car_serie": 62912, + "name": "2.5 l, 400 hp, gasoline, robot, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249582, + "fields": { + "id_car_serie": 62913, + "name": "1.5 l, 140 hp, gasoline, robot, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249583, + "fields": { + "id_car_serie": 62913, + "name": "2.0 l, 306 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249584, + "fields": { + "id_car_serie": 62914, + "name": "4.4 l, 600 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249585, + "fields": { + "id_car_serie": 62914, + "name": "4.4 l, 625 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249586, + "fields": { + "id_car_serie": 62915, + "name": "3.0 l, 320 hp, diesel, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249587, + "fields": { + "id_car_serie": 62915, + "name": "3.0 l, 340 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249588, + "fields": { + "id_car_serie": 62915, + "name": "3.0 l, 340 hp, gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249589, + "fields": { + "id_car_serie": 62915, + "name": "4.4 l, 530 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249590, + "fields": { + "id_car_serie": 62916, + "name": "3.0 l, 340 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249591, + "fields": { + "id_car_serie": 62916, + "name": "3.0 l, 340 hp, gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249592, + "fields": { + "id_car_serie": 62916, + "name": "4.4 l, 530 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249593, + "fields": { + "id_car_serie": 62917, + "name": "3.0 l, 320 hp, diesel, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249594, + "fields": { + "id_car_serie": 62917, + "name": "3.0 l, 340 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249595, + "fields": { + "id_car_serie": 62917, + "name": "3.0 l, 340 hp, gasoline, Automatic transmission, RWD", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249596, + "fields": { + "id_car_serie": 62917, + "name": "4.4 l, 530 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249600, + "fields": { + "id_car_serie": 62921, + "name": "2.0 l, 170 hp, gasoline, variator (CVT), front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249601, + "fields": { + "id_car_serie": 62922, + "name": "1.6 l, 87 hp, gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249602, + "fields": { + "id_car_serie": 62922, + "name": "1.6 l, 87 hp, gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249603, + "fields": { + "id_car_serie": 62922, + "name": "1.6 l, 106 hp, gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249604, + "fields": { + "id_car_serie": 62923, + "name": "3.9 l, 620 hp, gasoline, robot, RWD", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249605, + "fields": { + "id_car_serie": 62924, + "name": "(2.0) 149 hp ,gasoline, MT", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249606, + "fields": { + "id_car_serie": 62924, + "name": "2.0 l (149 hp) gasoline, Automatic transmission", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249607, + "fields": { + "id_car_serie": 62924, + "name": "2.0 CVT (149 hp) 4WD", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249608, + "fields": { + "id_car_serie": 62925, + "name": "2.0 T-GDi (240 hp),", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249609, + "fields": { + "id_car_serie": 62925, + "name": " R2.2 E-VGT (202 hp)", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249610, + "fields": { + "id_car_serie": 62925, + "name": "R2.0 E-VGT (186 hp)", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249611, + "fields": { + "id_car_serie": 62925, + "name": "V6 3.5 MPI (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249612, + "fields": { + "id_car_serie": 62929, + "name": "3.0 (390 hp) Four-wheel drive, ", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249613, + "fields": { + "id_car_serie": 62930, + "name": "1.0 TSI (110 hp)", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249614, + "fields": { + "id_car_serie": 62930, + "name": "1.5 TSI (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249615, + "fields": { + "id_car_serie": 62930, + "name": "2.0 TSI (190 hp)", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249616, + "fields": { + "id_car_serie": 62931, + "name": "2.0 (190 hp)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249617, + "fields": { + "id_car_serie": 62932, + "name": "1.4 l, (125 hp), gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249618, + "fields": { + "id_car_serie": 62932, + "name": "1.4 l, (125 hp), gasoline, robot, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249619, + "fields": { + "id_car_serie": 62932, + "name": "1.6 l, (110 hp), gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249620, + "fields": { + "id_car_serie": 62932, + "name": "1.6 l, (110 hp), gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249621, + "fields": { + "id_car_serie": 62933, + "name": "V8 6.2 LT2 (502 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249622, + "fields": { + "id_car_serie": 62934, + "name": "3.5 l (284 hp) gasoline, Four-wheel drive, variator", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249623, + "fields": { + "id_car_serie": 53836, + "name": "1.0 (90 l.c.) MT", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249624, + "fields": { + "id_car_serie": 53836, + "name": "1.0 (95 hp) MT", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249625, + "fields": { + "id_car_serie": 53836, + "name": "1.0 (115 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249626, + "fields": { + "id_car_serie": 53836, + "name": "1.0 (115 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249627, + "fields": { + "id_car_serie": 53836, + "name": "1.5 (150 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249628, + "fields": { + "id_car_serie": 53836, + "name": "1.5 (95 hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249629, + "fields": { + "id_car_serie": 53836, + "name": "1.6 (115 hp) diesel ", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249630, + "fields": { + "id_car_serie": 62935, + "name": "1.2 (105 hp), gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249631, + "fields": { + "id_car_serie": 62935, + "name": "1.2 (105 hp), gasoline, robot, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249632, + "fields": { + "id_car_serie": 62935, + "name": "1.2 (70 hp), gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249633, + "fields": { + "id_car_serie": 62935, + "name": "1.4 (85 hp), gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249634, + "fields": { + "id_car_serie": 62935, + "name": "1.4 (150 hp), gasoline, robot, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249635, + "fields": { + "id_car_serie": 62935, + "name": "1.6 (105 hp), gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249636, + "fields": { + "id_car_serie": 62935, + "name": "1.6 (105 hp), gasoline, robot, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249637, + "fields": { + "id_car_serie": 54095, + "name": "1.0 (75 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249638, + "fields": { + "id_car_serie": 54095, + "name": "1.0 (95 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249639, + "fields": { + "id_car_serie": 54095, + "name": "1.0 (110 hp) robot", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249640, + "fields": { + "id_car_serie": 54095, + "name": "1.4 (75 hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249641, + "fields": { + "id_car_serie": 54095, + "name": "1.4 (90 hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249642, + "fields": { + "id_car_serie": 54095, + "name": "1.4 (105 hp) diesel MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249643, + "fields": { + "id_car_serie": 62937, + "name": "1.0 (65 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249644, + "fields": { + "id_car_serie": 62937, + "name": "1.0 (75 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249645, + "fields": { + "id_car_serie": 62937, + "name": "1.0 (115 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249646, + "fields": { + "id_car_serie": 62937, + "name": "1.5 (150 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249647, + "fields": { + "id_car_serie": 62937, + "name": "1.6 (80 hp) diesel MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249648, + "fields": { + "id_car_serie": 62937, + "name": "1.6 (115 hp) diesel MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249649, + "fields": { + "id_car_serie": 62938, + "name": "1.0 (86 hp) MT", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249650, + "fields": { + "id_car_serie": 62938, + "name": "1.0 (115 hp) MT", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249651, + "fields": { + "id_car_serie": 62938, + "name": "1.2 (86 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249652, + "fields": { + "id_car_serie": 62938, + "name": "1.0 (115 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249653, + "fields": { + "id_car_serie": 62938, + "name": "1.2 (110 hp) MT", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249654, + "fields": { + "id_car_serie": 62938, + "name": "1.4 (125 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249655, + "fields": { + "id_car_serie": 62938, + "name": "1.2 (150 hp) MT", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249656, + "fields": { + "id_car_serie": 62938, + "name": "1.4 (150 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249657, + "fields": { + "id_car_serie": 62938, + "name": "1.8 (180 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249658, + "fields": { + "id_car_serie": 62938, + "name": "1.8 (180 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249659, + "fields": { + "id_car_serie": 62938, + "name": "2.0 (190 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249660, + "fields": { + "id_car_serie": 62938, + "name": "1.6 (90 hp) MT, diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249661, + "fields": { + "id_car_serie": 62938, + "name": "1.6 (115 hp) Automatic transmission, diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249662, + "fields": { + "id_car_serie": 62938, + "name": "2.0 (110 hp) MT, diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249663, + "fields": { + "id_car_serie": 62938, + "name": "2.0 (150 hp) Automatic transmission, diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249664, + "fields": { + "id_car_serie": 62938, + "name": "2.0 (184 hp) MT, diesel", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249667, + "fields": { + "id_car_serie": 62938, + "name": "2.0 (184 hp) Automatic transmission, diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249668, + "fields": { + "id_car_serie": 62939, + "name": "1.5 (130 hp) MT", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249669, + "fields": { + "id_car_serie": 62939, + "name": "1.5 (150 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249670, + "fields": { + "id_car_serie": 62939, + "name": "2.0 (150 hp) Automatic transmission, diesel", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249671, + "fields": { + "id_car_serie": 62940, + "name": "1.5 (130 hp) MT", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249672, + "fields": { + "id_car_serie": 62940, + "name": "1.5 (150 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249673, + "fields": { + "id_car_serie": 62940, + "name": "2.0 (150 hp) Automatic transmission, diesel", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249674, + "fields": { + "id_car_serie": 62941, + "name": "2.0 (300 hp) gasoline, Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249675, + "fields": { + "id_car_serie": 62941, + "name": "2.0 (13 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249676, + "fields": { + "id_car_serie": 62942, + "name": "2.0 (290 hp) MT, gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249677, + "fields": { + "id_car_serie": 62942, + "name": "2.0 (300 hp) MT, gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249678, + "fields": { + "id_car_serie": 62942, + "name": "2.0 (300 hp) Automatic transmission, gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249679, + "fields": { + "id_car_serie": 62942, + "name": "2.0 (310 hp) MT, gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249680, + "fields": { + "id_car_serie": 62943, + "name": "2.0 (290 hp) Automatic transmission, gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249681, + "fields": { + "id_car_serie": 62943, + "name": "2.0 (300 hp) MT, gasoline, Four-wheel drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249682, + "fields": { + "id_car_serie": 62943, + "name": "2.0 (300 hp) MT, gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249683, + "fields": { + "id_car_serie": 62943, + "name": "2.0 (300 hp) Automatic transmission, gasoline, Four-wheel drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249684, + "fields": { + "id_car_serie": 62943, + "name": "2.0 (300 hp) Automatic transmission, gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249685, + "fields": { + "id_car_serie": 62944, + "name": "2.0 (290 hp) Automatic transmission, gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249686, + "fields": { + "id_car_serie": 62944, + "name": "2.0 (300 hp) Automatic transmission, gasoline", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249687, + "fields": { + "id_car_serie": 62944, + "name": "2.0 (300 hp) Automatic transmission, gasoline, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249688, + "fields": { + "id_car_serie": 62944, + "name": "2.0 (300 hp) gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249689, + "fields": { + "id_car_serie": 62951, + "name": "3.8 (600 l.c.) gasoline, Automatic transmission", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249695, + "fields": { + "id_car_serie": 53759, + "name": "330e Automatic transmission 2.0 (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249696, + "fields": { + "id_car_serie": 53759, + "name": "330e (68 hp), electromotor ", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249697, + "fields": { + "id_car_serie": 51458, + "name": "1.5 (150 hp), gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249698, + "fields": { + "id_car_serie": 51458, + "name": "1.5 (182 hp), gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249699, + "fields": { + "id_car_serie": 51458, + "name": "2.5 (150 hp), gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249700, + "fields": { + "id_car_serie": 62964, + "name": "1.5 (120 hp), gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249701, + "fields": { + "id_car_serie": 62964, + "name": "1.5 (150 hp), gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249702, + "fields": { + "id_car_serie": 62964, + "name": "1.5d (120 hp), diesel, MT, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249703, + "fields": { + "id_car_serie": 62964, + "name": "1.5d (120 hp), diesel, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249704, + "fields": { + "id_car_serie": 62964, + "name": "2.0d (150 hp), diesel, MT, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249705, + "fields": { + "id_car_serie": 62964, + "name": "2.0d (190 hp), diesel, Automatic transmission, Four-wheel drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249706, + "fields": { + "id_car_serie": 62964, + "name": "2.5h 9225 l.c.), variator, front drive", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249707, + "fields": { + "id_car_serie": 49949, + "name": "3.0 (320 hp) xDrive, Automatic transmission, Four-wheel drive", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249718, + "fields": { + "id_car_serie": 4390, + "name": "2.0 (103 hp) MT", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249719, + "fields": { + "id_car_serie": 4390, + "name": "2.0 (112 hp) MT", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249720, + "fields": { + "id_car_serie": 4390, + "name": "2.0 (160 hp) MT", + "arabic_name": "-", + "start_production_year": 1983, + "end_production_year": 1992 + } +}, +{ + "model": "inventory.cartrim", + "pk": 249721, + "fields": { + "id_car_serie": 54067, + "name": "262 hp Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249722, + "fields": { + "id_car_serie": 54067, + "name": "AT (341 kW) 4WD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249723, + "fields": { + "id_car_serie": 62971, + "name": "1.8 (120 hp) Automatic transmission, gasoline", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249724, + "fields": { + "id_car_serie": 62971, + "name": "2.0 (150 hp) variator", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249725, + "fields": { + "id_car_serie": 62971, + "name": "1.5 (109 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249726, + "fields": { + "id_car_serie": 62972, + "name": "1.5 (109 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249727, + "fields": { + "id_car_serie": 62972, + "name": "2.0 (133 hp) variator", + "arabic_name": "-", + "start_production_year": 2005, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249728, + "fields": { + "id_car_serie": 62973, + "name": "1.8 (131 hp) variator", + "arabic_name": "-", + "start_production_year": 2012, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249729, + "fields": { + "id_car_serie": 62974, + "name": "3.5 (279 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249730, + "fields": { + "id_car_serie": 62974, + "name": "3.5 (279 hp) gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249731, + "fields": { + "id_car_serie": 62975, + "name": "2.0 (272 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249732, + "fields": { + "id_car_serie": 62975, + "name": "2.0 (272 hp) gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249733, + "fields": { + "id_car_serie": 62976, + "name": "1.0 (120 hp) 172 H*m", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249734, + "fields": { + "id_car_serie": 62976, + "name": "1,6 (177 hp) robot", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249735, + "fields": { + "id_car_serie": 62976, + "name": "2.0 (149 hp) turbo-diesel, robot", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249736, + "fields": { + "id_car_serie": 62976, + "name": "135 (39 kWh) electro", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249737, + "fields": { + "id_car_serie": 62976, + "name": "204 hp (64 kWh)", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249738, + "fields": { + "id_car_serie": 62977, + "name": "1,6 (105 hp) MT", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249739, + "fields": { + "id_car_serie": 5465, + "name": "1.6 TD AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249740, + "fields": { + "id_car_serie": 5465, + "name": "1.6 D AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249741, + "fields": { + "id_car_serie": 5465, + "name": "1.8 S AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249742, + "fields": { + "id_car_serie": 5465, + "name": "1.8 MT quattro (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249743, + "fields": { + "id_car_serie": 5465, + "name": "1.8 MT quattro (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249744, + "fields": { + "id_car_serie": 5465, + "name": "1.8 MT quattro (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249745, + "fields": { + "id_car_serie": 5465, + "name": "1.8 E MT quattro (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249746, + "fields": { + "id_car_serie": 5465, + "name": "2.0 E AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249747, + "fields": { + "id_car_serie": 5465, + "name": "2.0 AT quattro (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249748, + "fields": { + "id_car_serie": 5465, + "name": "2.0 E AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249749, + "fields": { + "id_car_serie": 5465, + "name": "2.0 MT quattro (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249750, + "fields": { + "id_car_serie": 5465, + "name": "2.0 E MT quattro (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249751, + "fields": { + "id_car_serie": 53675, + "name": "30 TFSI MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249752, + "fields": { + "id_car_serie": 53675, + "name": "25 TFSI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249753, + "fields": { + "id_car_serie": 53675, + "name": "30 TFSI S tronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249754, + "fields": { + "id_car_serie": 53675, + "name": "35 TFSI S tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249755, + "fields": { + "id_car_serie": 53675, + "name": "40 TFSI S tronic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249756, + "fields": { + "id_car_serie": 14872, + "name": "1.8 T tiptronic quattro (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249757, + "fields": { + "id_car_serie": 14872, + "name": "1.8 T tiptronic (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249758, + "fields": { + "id_car_serie": 14872, + "name": "1.8 T MT quattro (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249759, + "fields": { + "id_car_serie": 14872, + "name": "1.8 T MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249760, + "fields": { + "id_car_serie": 53500, + "name": "45 TFSI S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249761, + "fields": { + "id_car_serie": 53500, + "name": "40 TDI S tronic quattro (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249762, + "fields": { + "id_car_serie": 53500, + "name": "40 TDI S tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249763, + "fields": { + "id_car_serie": 53500, + "name": "40 L TFSI S tronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249764, + "fields": { + "id_car_serie": 53500, + "name": "45 TFSI S tronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249765, + "fields": { + "id_car_serie": 53500, + "name": "35 TDI S tronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249766, + "fields": { + "id_car_serie": 53500, + "name": "45 L TFSI S tronic quattro (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249767, + "fields": { + "id_car_serie": 53500, + "name": "45 L TFSI S tronic (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249768, + "fields": { + "id_car_serie": 53500, + "name": "55 L TFSI S tronic quattro (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249769, + "fields": { + "id_car_serie": 54088, + "name": "45 TDI tiptronic quattro (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249770, + "fields": { + "id_car_serie": 54088, + "name": "50 TDI tiptronic quattro (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249771, + "fields": { + "id_car_serie": 54088, + "name": "55 TDI tiptronic quattro (349 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249772, + "fields": { + "id_car_serie": 53525, + "name": "35 TDI S tronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249773, + "fields": { + "id_car_serie": 53525, + "name": "45 TFSI S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249774, + "fields": { + "id_car_serie": 53525, + "name": "40 TDI S tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249775, + "fields": { + "id_car_serie": 53525, + "name": "40 TDI S tronic quattro (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249776, + "fields": { + "id_car_serie": 53525, + "name": "45 TFSI S tronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249777, + "fields": { + "id_car_serie": 54134, + "name": "40 TDI S tronic quattro (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249778, + "fields": { + "id_car_serie": 54134, + "name": "40 TDI S tronic (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249779, + "fields": { + "id_car_serie": 54134, + "name": "45 TFSI S tronic (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249780, + "fields": { + "id_car_serie": 54134, + "name": "45 TFSI S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249781, + "fields": { + "id_car_serie": 54134, + "name": "45 TDI V6 Tiptronic quattro (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249782, + "fields": { + "id_car_serie": 54134, + "name": "50 TDI V6 Tiptronic quattro (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249783, + "fields": { + "id_car_serie": 54134, + "name": "55 TFSI S tronic quattro (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249784, + "fields": { + "id_car_serie": 14877, + "name": "4.2 L FSI tiptronic quattro (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249785, + "fields": { + "id_car_serie": 14877, + "name": "4.2 FSI tiptronic quattro (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249786, + "fields": { + "id_car_serie": 54108, + "name": "35 TFSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249787, + "fields": { + "id_car_serie": 54108, + "name": "35 TFSI S tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249788, + "fields": { + "id_car_serie": 54108, + "name": "35 TDI MT quattro (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249789, + "fields": { + "id_car_serie": 54108, + "name": "40 TFSI S tronic quattro (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249790, + "fields": { + "id_car_serie": 54108, + "name": "45 TFSI S tronic quattro (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249791, + "fields": { + "id_car_serie": 54108, + "name": "40 TDI S tronic quattro (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249792, + "fields": { + "id_car_serie": 54108, + "name": "35 TDI S tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249793, + "fields": { + "id_car_serie": 51491, + "name": "2.0 TDI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249794, + "fields": { + "id_car_serie": 51491, + "name": "40 TDI MT quattro (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249795, + "fields": { + "id_car_serie": 51491, + "name": "45 TFSI S tronic quattro (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249796, + "fields": { + "id_car_serie": 51491, + "name": "2.0 TFSI S tronic quattro (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249797, + "fields": { + "id_car_serie": 51491, + "name": "35 TDI S tronic quattro (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249798, + "fields": { + "id_car_serie": 51491, + "name": "40 TDI S tronic quattro (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249799, + "fields": { + "id_car_serie": 51491, + "name": "55 TFSI e S tronic quattro (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249800, + "fields": { + "id_car_serie": 51491, + "name": "45 TFSI S tronic quattro (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249801, + "fields": { + "id_car_serie": 51491, + "name": "45 TDI Tiptronic quattro (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249802, + "fields": { + "id_car_serie": 51491, + "name": "50 TDI Tiptronic quattro (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249803, + "fields": { + "id_car_serie": 47596, + "name": "2.0 TFSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249804, + "fields": { + "id_car_serie": 47596, + "name": "2.0 TFSI S tronic quattro (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249805, + "fields": { + "id_car_serie": 47596, + "name": "3.2 MT quattro (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249806, + "fields": { + "id_car_serie": 47596, + "name": "3.2 S tronic quattro (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249807, + "fields": { + "id_car_serie": 54073, + "name": "2.0 TFSI MT quattro (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249808, + "fields": { + "id_car_serie": 47600, + "name": "2.0 TFSI MT quattro (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249809, + "fields": { + "id_car_serie": 47597, + "name": "2.5 TFSI MT quattro (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249810, + "fields": { + "id_car_serie": 47599, + "name": "2.5 TFSI MT quattro (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249811, + "fields": { + "id_car_serie": 47598, + "name": "1.8 TFSI MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249812, + "fields": { + "id_car_serie": 47598, + "name": "2.0 TFSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249813, + "fields": { + "id_car_serie": 47598, + "name": "2.0 TDI MT quattro (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249814, + "fields": { + "id_car_serie": 47598, + "name": "2.0 TFSI S tronic (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249815, + "fields": { + "id_car_serie": 47598, + "name": "2.0 TFSI S tronic quattro (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249816, + "fields": { + "id_car_serie": 47598, + "name": "3.2 MT quattro (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249817, + "fields": { + "id_car_serie": 47598, + "name": "3.2 S tronic quattro (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249818, + "fields": { + "id_car_serie": 62968, + "name": "6.0 AT (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249819, + "fields": { + "id_car_serie": 62968, + "name": "6.0 Speed AT (610 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249820, + "fields": { + "id_car_serie": 54126, + "name": "118i MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249821, + "fields": { + "id_car_serie": 54126, + "name": "116d MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249822, + "fields": { + "id_car_serie": 54126, + "name": "116d Steptronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249823, + "fields": { + "id_car_serie": 54126, + "name": "118i Steptronic (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249824, + "fields": { + "id_car_serie": 54126, + "name": "M135i Steptronic xDrive (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249825, + "fields": { + "id_car_serie": 54126, + "name": "118d Steptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249826, + "fields": { + "id_car_serie": 54126, + "name": "120d Steptronic xDrive (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249827, + "fields": { + "id_car_serie": 54126, + "name": "118d MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249828, + "fields": { + "id_car_serie": 54127, + "name": "318d Steptronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249829, + "fields": { + "id_car_serie": 54127, + "name": "320i Steptronic (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249830, + "fields": { + "id_car_serie": 54127, + "name": "320d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249831, + "fields": { + "id_car_serie": 54127, + "name": "320i Steptronic xDrive (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249832, + "fields": { + "id_car_serie": 54127, + "name": "320d Steptronic xDrive (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249833, + "fields": { + "id_car_serie": 54127, + "name": "330i Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249834, + "fields": { + "id_car_serie": 54127, + "name": "330i Steptronic xDrive (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249835, + "fields": { + "id_car_serie": 54127, + "name": "318d MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249836, + "fields": { + "id_car_serie": 54127, + "name": "320d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249837, + "fields": { + "id_car_serie": 54127, + "name": "330d Steptronic xDrive (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249838, + "fields": { + "id_car_serie": 54127, + "name": "M340i Steptronic xDrive (374 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249839, + "fields": { + "id_car_serie": 54127, + "name": "330d Steptronic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249840, + "fields": { + "id_car_serie": 54101, + "name": "330i Steptronic (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249841, + "fields": { + "id_car_serie": 54101, + "name": "330i Steptronic xDrive (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249842, + "fields": { + "id_car_serie": 54101, + "name": "320d Steptronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249843, + "fields": { + "id_car_serie": 54101, + "name": "320d Steptronic xDrive (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249844, + "fields": { + "id_car_serie": 54101, + "name": "320d MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249845, + "fields": { + "id_car_serie": 54101, + "name": "330d Steptronic xDrive (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249846, + "fields": { + "id_car_serie": 62955, + "name": "840i Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249847, + "fields": { + "id_car_serie": 62955, + "name": "840d Steptronic xDrive (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249848, + "fields": { + "id_car_serie": 62955, + "name": "840i Steptronic xDrive (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249849, + "fields": { + "id_car_serie": 62955, + "name": "M850i Steptronic xDrive (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249850, + "fields": { + "id_car_serie": 54128, + "name": "840i Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249851, + "fields": { + "id_car_serie": 54128, + "name": "840i Steptronic xDrive (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249852, + "fields": { + "id_car_serie": 54128, + "name": "840d Steptronic xDrive (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249853, + "fields": { + "id_car_serie": 54128, + "name": "M850i Steptronic xDrive (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249854, + "fields": { + "id_car_serie": 54129, + "name": "840i Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249855, + "fields": { + "id_car_serie": 54129, + "name": "840i Steptronic xDrive (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249856, + "fields": { + "id_car_serie": 54129, + "name": "840d Steptronic xDrive (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249857, + "fields": { + "id_car_serie": 54129, + "name": "M850i Steptronic xDrive (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249858, + "fields": { + "id_car_serie": 62969, + "name": "4.4 Steptronic xDrive (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249859, + "fields": { + "id_car_serie": 62969, + "name": "4.4 Competition Steptronic xDrive (625 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249860, + "fields": { + "id_car_serie": 62970, + "name": "4.4 Steptronic xDrive (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249861, + "fields": { + "id_car_serie": 62970, + "name": "4.4 Competition Steptronic xDrive (625 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249862, + "fields": { + "id_car_serie": 54075, + "name": "sDrive16d MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249863, + "fields": { + "id_car_serie": 54075, + "name": "sDrive16d Steptronic (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249864, + "fields": { + "id_car_serie": 54075, + "name": "xDrive25d Steptronic (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249865, + "fields": { + "id_car_serie": 53566, + "name": "M50i Steptronic xDrive (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249866, + "fields": { + "id_car_serie": 54089, + "name": "xDrive30d Steptronic (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249867, + "fields": { + "id_car_serie": 54089, + "name": "xDrive40i Steptronic (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249868, + "fields": { + "id_car_serie": 54089, + "name": "M50d Steptronic xDrive (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249869, + "fields": { + "id_car_serie": 54089, + "name": "M50i Steptronic xDrive (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249870, + "fields": { + "id_car_serie": 53439, + "name": "1.5 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249871, + "fields": { + "id_car_serie": 53439, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249872, + "fields": { + "id_car_serie": 53801, + "name": "3.6 AT AWD (334 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249873, + "fields": { + "id_car_serie": 8416, + "name": "1.6 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249874, + "fields": { + "id_car_serie": 8416, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249875, + "fields": { + "id_car_serie": 53984, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249876, + "fields": { + "id_car_serie": 3031, + "name": "1.3D MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249877, + "fields": { + "id_car_serie": 3031, + "name": "1.3D MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249878, + "fields": { + "id_car_serie": 53434, + "name": "1.6 THP AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249879, + "fields": { + "id_car_serie": 53434, + "name": "2.0 BlueHDi AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249880, + "fields": { + "id_car_serie": 54112, + "name": "1.0 CVT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249881, + "fields": { + "id_car_serie": 54112, + "name": "1.0 CVT AWD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249882, + "fields": { + "id_car_serie": 560, + "name": "1.0 CVT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249883, + "fields": { + "id_car_serie": 560, + "name": "1.0 CVT AWD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249884, + "fields": { + "id_car_serie": 560, + "name": "1.3 CVT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249885, + "fields": { + "id_car_serie": 47991, + "name": "0.9 MT AWD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249886, + "fields": { + "id_car_serie": 47991, + "name": "1.3 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249887, + "fields": { + "id_car_serie": 54113, + "name": "1.3 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249888, + "fields": { + "id_car_serie": 54113, + "name": "1.3 AT AWD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249889, + "fields": { + "id_car_serie": 54113, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249890, + "fields": { + "id_car_serie": 53840, + "name": "1.6 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249891, + "fields": { + "id_car_serie": 53840, + "name": "1.6 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249892, + "fields": { + "id_car_serie": 62978, + "name": "4.0 AMT (780 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249893, + "fields": { + "id_car_serie": 6135, + "name": "1.6 TDCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249894, + "fields": { + "id_car_serie": 6134, + "name": "1.6 TDCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249895, + "fields": { + "id_car_serie": 6137, + "name": "1.25 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249896, + "fields": { + "id_car_serie": 6137, + "name": "1.4 TDCi Durashift (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249897, + "fields": { + "id_car_serie": 6136, + "name": "1.25 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249898, + "fields": { + "id_car_serie": 6136, + "name": "1.4 TDCi Durashift (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249899, + "fields": { + "id_car_serie": 6136, + "name": "1.4 Durashift (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249900, + "fields": { + "id_car_serie": 53706, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249901, + "fields": { + "id_car_serie": 53706, + "name": "1.8 AMT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249902, + "fields": { + "id_car_serie": 53806, + "name": "3.3 T-GDI AT AWD (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249903, + "fields": { + "id_car_serie": 53806, + "name": "3.8 GDI AT AWD (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249904, + "fields": { + "id_car_serie": 53806, + "name": "5.0 GDI AT AWD (413 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249905, + "fields": { + "id_car_serie": 53806, + "name": "5.0 GDI L AT AWD (413 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249906, + "fields": { + "id_car_serie": 62770, + "name": "1.5 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249907, + "fields": { + "id_car_serie": 62770, + "name": "1.5 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249908, + "fields": { + "id_car_serie": 62770, + "name": "1.5 CVT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249909, + "fields": { + "id_car_serie": 62770, + "name": "1.5 CVT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249910, + "fields": { + "id_car_serie": 6415, + "name": "2.0 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249911, + "fields": { + "id_car_serie": 6415, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249912, + "fields": { + "id_car_serie": 6415, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249913, + "fields": { + "id_car_serie": 6415, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249924, + "fields": { + "id_car_serie": 62959, + "name": "2.5 d AT AWD (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249925, + "fields": { + "id_car_serie": 62959, + "name": "2.5 d AT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249926, + "fields": { + "id_car_serie": 62959, + "name": "2.5 d MT AWD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249927, + "fields": { + "id_car_serie": 62959, + "name": "2.5 d MT AWD (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249928, + "fields": { + "id_car_serie": 62959, + "name": "2.5 d MT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249929, + "fields": { + "id_car_serie": 62959, + "name": "3.0 AT AWD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249930, + "fields": { + "id_car_serie": 62959, + "name": "3.0 MT AWD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249931, + "fields": { + "id_car_serie": 62959, + "name": "3.0 MT AWD (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249932, + "fields": { + "id_car_serie": 62958, + "name": "2.5 d AT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249933, + "fields": { + "id_car_serie": 62958, + "name": "2.5 d AT AWD (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249934, + "fields": { + "id_car_serie": 62958, + "name": "2.5 d MT AWD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249935, + "fields": { + "id_car_serie": 62958, + "name": "2.5 d MT AWD (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249936, + "fields": { + "id_car_serie": 62958, + "name": "2.5 d MT AWD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249937, + "fields": { + "id_car_serie": 62958, + "name": "3.0 AT AWD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249938, + "fields": { + "id_car_serie": 62958, + "name": "3.0 MT AWD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249939, + "fields": { + "id_car_serie": 62958, + "name": "3.0 MT AWD (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249940, + "fields": { + "id_car_serie": 47240, + "name": "1.4 16V AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249941, + "fields": { + "id_car_serie": 47240, + "name": "1.4 16V MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249942, + "fields": { + "id_car_serie": 47240, + "name": "1.5 CRDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249943, + "fields": { + "id_car_serie": 47239, + "name": "1.4 16V AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249944, + "fields": { + "id_car_serie": 47239, + "name": "1.4 16V MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249945, + "fields": { + "id_car_serie": 47239, + "name": "1.5 CRDi MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249946, + "fields": { + "id_car_serie": 6475, + "name": "1.8 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249947, + "fields": { + "id_car_serie": 6475, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249948, + "fields": { + "id_car_serie": 6475, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249949, + "fields": { + "id_car_serie": 6475, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249950, + "fields": { + "id_car_serie": 6475, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249951, + "fields": { + "id_car_serie": 6475, + "name": "2.5 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249952, + "fields": { + "id_car_serie": 6475, + "name": "2.5 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249953, + "fields": { + "id_car_serie": 6476, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249954, + "fields": { + "id_car_serie": 6476, + "name": "1.8 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249955, + "fields": { + "id_car_serie": 6476, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249956, + "fields": { + "id_car_serie": 6476, + "name": "2.0 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249957, + "fields": { + "id_car_serie": 6476, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249958, + "fields": { + "id_car_serie": 6476, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249959, + "fields": { + "id_car_serie": 6476, + "name": "2.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249960, + "fields": { + "id_car_serie": 54114, + "name": "2.5 AT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249961, + "fields": { + "id_car_serie": 54114, + "name": "2.5 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249962, + "fields": { + "id_car_serie": 54114, + "name": "2.9 AT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249963, + "fields": { + "id_car_serie": 54114, + "name": "2.9 CRDi AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249964, + "fields": { + "id_car_serie": 54114, + "name": "2.9 MT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249965, + "fields": { + "id_car_serie": 54114, + "name": "2.9 CRDi MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249966, + "fields": { + "id_car_serie": 53538, + "name": "2.4 AT AWD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249967, + "fields": { + "id_car_serie": 62979, + "name": "QX35 AT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249968, + "fields": { + "id_car_serie": 62979, + "name": "QX35 AT AWD (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249969, + "fields": { + "id_car_serie": 47538, + "name": "QX33 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249970, + "fields": { + "id_car_serie": 3497, + "name": "QX56 AT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249971, + "fields": { + "id_car_serie": 6508, + "name": "QX56 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249972, + "fields": { + "id_car_serie": 62960, + "name": "3.0 D MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249973, + "fields": { + "id_car_serie": 54022, + "name": "3.0 D AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249974, + "fields": { + "id_car_serie": 54022, + "name": "3.0 D MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249975, + "fields": { + "id_car_serie": 54132, + "name": "2.0 MT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249976, + "fields": { + "id_car_serie": 54132, + "name": "2.0 d MT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249977, + "fields": { + "id_car_serie": 62982, + "name": "D180 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249978, + "fields": { + "id_car_serie": 62982, + "name": "D180 AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249979, + "fields": { + "id_car_serie": 62982, + "name": "P250 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249980, + "fields": { + "id_car_serie": 62982, + "name": "P250 AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249981, + "fields": { + "id_car_serie": 62982, + "name": "P300 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249982, + "fields": { + "id_car_serie": 62982, + "name": "P300 AT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249983, + "fields": { + "id_car_serie": 8694, + "name": "2.0 CVVT AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249984, + "fields": { + "id_car_serie": 8694, + "name": "2.0 CRDi MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249985, + "fields": { + "id_car_serie": 8694, + "name": "2.0 CVVT MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249986, + "fields": { + "id_car_serie": 8695, + "name": "2.0 CRDi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249987, + "fields": { + "id_car_serie": 8695, + "name": "2.0 CVVT MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249988, + "fields": { + "id_car_serie": 3569, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249989, + "fields": { + "id_car_serie": 3569, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249990, + "fields": { + "id_car_serie": 14991, + "name": "1.5 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249991, + "fields": { + "id_car_serie": 14991, + "name": "1.5 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249992, + "fields": { + "id_car_serie": 14991, + "name": "1.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249993, + "fields": { + "id_car_serie": 14991, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249994, + "fields": { + "id_car_serie": 14991, + "name": "1.8 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249995, + "fields": { + "id_car_serie": 14991, + "name": "1.8 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249996, + "fields": { + "id_car_serie": 54079, + "name": "2.0 D150 AT AWD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249997, + "fields": { + "id_car_serie": 54079, + "name": "2.0 D180 AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249998, + "fields": { + "id_car_serie": 54079, + "name": "2.0 D240 AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 249999, + "fields": { + "id_car_serie": 54079, + "name": "2.0 P200 AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250000, + "fields": { + "id_car_serie": 54079, + "name": "2.0 P250 AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250001, + "fields": { + "id_car_serie": 54079, + "name": "2.0 D150 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250002, + "fields": { + "id_car_serie": 6687, + "name": "400 AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250003, + "fields": { + "id_car_serie": 48415, + "name": "600h CVT AWD (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250004, + "fields": { + "id_car_serie": 47270, + "name": "600h CVT AWD (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250005, + "fields": { + "id_car_serie": 47270, + "name": "600h L CVT AWD (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250006, + "fields": { + "id_car_serie": 53782, + "name": "1.5 SkyActiv-G AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250007, + "fields": { + "id_car_serie": 53782, + "name": "1.5 SkyActiv-G MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250008, + "fields": { + "id_car_serie": 53782, + "name": "2.0 SkyActiv-G AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250009, + "fields": { + "id_car_serie": 53783, + "name": "1.5 SkyActiv-G AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250010, + "fields": { + "id_car_serie": 6803, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250011, + "fields": { + "id_car_serie": 6803, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250012, + "fields": { + "id_car_serie": 6803, + "name": "2.0 d MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250013, + "fields": { + "id_car_serie": 62773, + "name": "2.5 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250014, + "fields": { + "id_car_serie": 62773, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250015, + "fields": { + "id_car_serie": 62773, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250016, + "fields": { + "id_car_serie": 62774, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250017, + "fields": { + "id_car_serie": 62774, + "name": "2.5 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250018, + "fields": { + "id_car_serie": 62774, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250019, + "fields": { + "id_car_serie": 62774, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250020, + "fields": { + "id_car_serie": 62775, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250021, + "fields": { + "id_car_serie": 62775, + "name": "2.3 AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250022, + "fields": { + "id_car_serie": 62775, + "name": "2.3 MT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250023, + "fields": { + "id_car_serie": 62776, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250024, + "fields": { + "id_car_serie": 62776, + "name": "2.3 AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250025, + "fields": { + "id_car_serie": 62776, + "name": "2.3 MT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250026, + "fields": { + "id_car_serie": 8801, + "name": "2.5 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250027, + "fields": { + "id_car_serie": 8801, + "name": "3.0 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250028, + "fields": { + "id_car_serie": 53894, + "name": "200 7G-DCT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250029, + "fields": { + "id_car_serie": 53894, + "name": "200 d 8G-DCT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250030, + "fields": { + "id_car_serie": 53894, + "name": "220 d 8G-DCT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250031, + "fields": { + "id_car_serie": 54130, + "name": "35 7G-DCT 4MATIC (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250032, + "fields": { + "id_car_serie": 53998, + "name": "45 S 8G-DCT 4MATIC+ (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250033, + "fields": { + "id_car_serie": 53998, + "name": "45 8G-DCT 4MATIC+ (387 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250034, + "fields": { + "id_car_serie": 53981, + "name": "180 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250035, + "fields": { + "id_car_serie": 53981, + "name": "200 7G-DCT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250036, + "fields": { + "id_car_serie": 53981, + "name": "200 7G-DCT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250037, + "fields": { + "id_car_serie": 53981, + "name": "180 d MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250038, + "fields": { + "id_car_serie": 53981, + "name": "200 d 8G-DCT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250039, + "fields": { + "id_car_serie": 53981, + "name": "220 d 8G-DCT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250040, + "fields": { + "id_car_serie": 53981, + "name": "220 7G-DCT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250041, + "fields": { + "id_car_serie": 53981, + "name": "250 7G-DCT 4MATIC (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250042, + "fields": { + "id_car_serie": 53592, + "name": "C 200 9G-TRONIC 4MATIC (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250043, + "fields": { + "id_car_serie": 53592, + "name": "C 200 9G-TRONIC (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250044, + "fields": { + "id_car_serie": 53592, + "name": "C 180 9G-TRONIC (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250045, + "fields": { + "id_car_serie": 53592, + "name": "C 200 d MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250046, + "fields": { + "id_car_serie": 53592, + "name": "C 220 d 9G-TRONIC 4MATIC (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250047, + "fields": { + "id_car_serie": 53592, + "name": "C 300 d 9G-TRONIC (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250048, + "fields": { + "id_car_serie": 53520, + "name": "C 200 9G-TRONIC (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250049, + "fields": { + "id_car_serie": 53520, + "name": "C 200 9G-TRONIC 4MATIC (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250050, + "fields": { + "id_car_serie": 53520, + "name": "C 300 d 9G-TRONIC 4MATIC (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250051, + "fields": { + "id_car_serie": 53520, + "name": "C 300 d 9G-TRONIC (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250052, + "fields": { + "id_car_serie": 53546, + "name": "C 200 9G-TRONIC 4MATIC (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250053, + "fields": { + "id_car_serie": 53546, + "name": "C 200 9G-TRONIC (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250054, + "fields": { + "id_car_serie": 53546, + "name": "C 200 9G-TRONIC 4MATIC (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250055, + "fields": { + "id_car_serie": 53546, + "name": "C 300 d 9G-TRONIC 4MATIC (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250056, + "fields": { + "id_car_serie": 53546, + "name": "C 300 d 9G-TRONIC (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250057, + "fields": { + "id_car_serie": 53591, + "name": "C 200 9G-TRONIC 4MATIC (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250058, + "fields": { + "id_car_serie": 53591, + "name": "C 200 9G-TRONIC (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250059, + "fields": { + "id_car_serie": 53591, + "name": "C 200 d MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250060, + "fields": { + "id_car_serie": 53591, + "name": "C 200 9G-TRONIC 4MATIC (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250061, + "fields": { + "id_car_serie": 53591, + "name": "C 300 d 9G-TRONIC (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250062, + "fields": { + "id_car_serie": 53591, + "name": "C 220 d 9G-TRONIC 4MATIC (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250063, + "fields": { + "id_car_serie": 53704, + "name": "C 63 SPEEDSHIFT MCT (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250064, + "fields": { + "id_car_serie": 53704, + "name": "C 63 S SPEEDSHIFT MCT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250065, + "fields": { + "id_car_serie": 54150, + "name": "E 43 4MATIC G-TRONIC (401 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250066, + "fields": { + "id_car_serie": 54150, + "name": "E 53 4MATIC+ SPEEDSHIFT (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250067, + "fields": { + "id_car_serie": 54150, + "name": "E 63 4MATIC+ G-TRONIC (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250068, + "fields": { + "id_car_serie": 54150, + "name": "E 63 S 4MATIC+ G-TRONIC (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250069, + "fields": { + "id_car_serie": 51530, + "name": "E 200 G-TRONIC (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250070, + "fields": { + "id_car_serie": 51530, + "name": "E 200 4MATIC G-TRONIC (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250071, + "fields": { + "id_car_serie": 51530, + "name": "E 300 G-TRONIC (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250072, + "fields": { + "id_car_serie": 51530, + "name": "E 350 G-TRONIC EQ Boost (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250073, + "fields": { + "id_car_serie": 51530, + "name": "E 220d 4MATIC G-TRONIC (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250074, + "fields": { + "id_car_serie": 51530, + "name": "E 300d G-TRONIC (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250075, + "fields": { + "id_car_serie": 51530, + "name": "E 220d G-TRONIC (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250076, + "fields": { + "id_car_serie": 51530, + "name": "E 400d 4MATIC G-TRONIC (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250077, + "fields": { + "id_car_serie": 51530, + "name": "E 350d 4MATIC G-TRONIC (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250078, + "fields": { + "id_car_serie": 51053, + "name": "E 200 4MATIC 9G-TRONIC (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250079, + "fields": { + "id_car_serie": 51053, + "name": "E 300 e 9G-TRONIC (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250080, + "fields": { + "id_car_serie": 51053, + "name": "E 250 9G-TRONIC (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250081, + "fields": { + "id_car_serie": 51053, + "name": "E 300de 9G-TRONIC (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250082, + "fields": { + "id_car_serie": 51053, + "name": "E 200 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250083, + "fields": { + "id_car_serie": 51053, + "name": "E 350 d 9G-TRONIC (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250084, + "fields": { + "id_car_serie": 51053, + "name": "E 350 d 4MATIC 9G-TRONIC (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250085, + "fields": { + "id_car_serie": 51531, + "name": "E 200 d 9G-TRONIC (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250086, + "fields": { + "id_car_serie": 51531, + "name": "E 220 d 9G-TRONIC (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250087, + "fields": { + "id_car_serie": 51531, + "name": "E 220 d 4MATIC 9G-TRONIC (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250088, + "fields": { + "id_car_serie": 51531, + "name": "E 250 9G-TRONIC (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250089, + "fields": { + "id_car_serie": 51531, + "name": "E 400 d 4MATIC 9G-TRONIC (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250090, + "fields": { + "id_car_serie": 51531, + "name": "E 350 d 4MATIC 9G-TRONIC (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250091, + "fields": { + "id_car_serie": 51531, + "name": "E 350 d 9G-TRONIC (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250092, + "fields": { + "id_car_serie": 51531, + "name": "E 400 9G-TRONIC (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250093, + "fields": { + "id_car_serie": 53188, + "name": "E 300 9G-TRONIC (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250094, + "fields": { + "id_car_serie": 53188, + "name": "E 220 d 9G-TRONIC 4MATIC (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250095, + "fields": { + "id_car_serie": 53188, + "name": "E 300 d 9G-TRONIC (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250096, + "fields": { + "id_car_serie": 53188, + "name": "E 300 9G-TRONIC EQ Boost (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250097, + "fields": { + "id_car_serie": 53188, + "name": "E 400 d 4MATIC 9G-TRONIC (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250098, + "fields": { + "id_car_serie": 53188, + "name": "E 450 9G-TRONIC EQ Boost (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250099, + "fields": { + "id_car_serie": 50469, + "name": "E 220 CDI 7G-Tronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250100, + "fields": { + "id_car_serie": 50469, + "name": "E 220 CDI 5G-Tronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250101, + "fields": { + "id_car_serie": 50469, + "name": "E 220 CDI MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250102, + "fields": { + "id_car_serie": 50469, + "name": "E 300 7G-Tronic Plus (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250103, + "fields": { + "id_car_serie": 54066, + "name": "400d 9G-Tronic 4Matic (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250104, + "fields": { + "id_car_serie": 54066, + "name": "450 9G-Tronic 4Matic (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250105, + "fields": { + "id_car_serie": 50542, + "name": "ML 350 7G-Tronic 4Matic (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250106, + "fields": { + "id_car_serie": 7020, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250107, + "fields": { + "id_car_serie": 7020, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250108, + "fields": { + "id_car_serie": 7020, + "name": "1.8 GTi AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250109, + "fields": { + "id_car_serie": 7020, + "name": "1.8 GTi MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250110, + "fields": { + "id_car_serie": 54115, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250111, + "fields": { + "id_car_serie": 54115, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250112, + "fields": { + "id_car_serie": 54115, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250113, + "fields": { + "id_car_serie": 54115, + "name": "3.0 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250114, + "fields": { + "id_car_serie": 54115, + "name": "3.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250115, + "fields": { + "id_car_serie": 3773, + "name": "2.5 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250116, + "fields": { + "id_car_serie": 3773, + "name": "3.0 AT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250117, + "fields": { + "id_car_serie": 3773, + "name": "3.0 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250118, + "fields": { + "id_car_serie": 54116, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250119, + "fields": { + "id_car_serie": 7027, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250120, + "fields": { + "id_car_serie": 7027, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250121, + "fields": { + "id_car_serie": 7027, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250122, + "fields": { + "id_car_serie": 7027, + "name": "2.5 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250123, + "fields": { + "id_car_serie": 7027, + "name": "2.5 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250124, + "fields": { + "id_car_serie": 7027, + "name": "3.0 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250125, + "fields": { + "id_car_serie": 15052, + "name": "2.4 CVT AWD (168 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250126, + "fields": { + "id_car_serie": 54091, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250127, + "fields": { + "id_car_serie": 54091, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250128, + "fields": { + "id_car_serie": 54091, + "name": "1.5 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250129, + "fields": { + "id_car_serie": 53539, + "name": "3.0 AT AWD (227 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250130, + "fields": { + "id_car_serie": 3792, + "name": "2.5 D AT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250131, + "fields": { + "id_car_serie": 3792, + "name": "2.5 D AT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250132, + "fields": { + "id_car_serie": 3792, + "name": "2.5 D AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250133, + "fields": { + "id_car_serie": 3792, + "name": "2.5 D AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250134, + "fields": { + "id_car_serie": 3792, + "name": "2.5 D MT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250135, + "fields": { + "id_car_serie": 3792, + "name": "3.0 AT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250136, + "fields": { + "id_car_serie": 3792, + "name": "3.0 AT AWD (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250137, + "fields": { + "id_car_serie": 3792, + "name": "3.0 MT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250138, + "fields": { + "id_car_serie": 3792, + "name": "3.2 D AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250139, + "fields": { + "id_car_serie": 3792, + "name": "3.2 D AT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250140, + "fields": { + "id_car_serie": 3792, + "name": "3.2 D AT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250141, + "fields": { + "id_car_serie": 3792, + "name": "3.2 D MT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250142, + "fields": { + "id_car_serie": 3792, + "name": "3.2 D MT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250143, + "fields": { + "id_car_serie": 3792, + "name": "3.2 D MT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250144, + "fields": { + "id_car_serie": 3792, + "name": "3.5 AT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250145, + "fields": { + "id_car_serie": 3792, + "name": "3.5 MT AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250146, + "fields": { + "id_car_serie": 3792, + "name": "3.8 AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250147, + "fields": { + "id_car_serie": 3791, + "name": "3.0 AT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250148, + "fields": { + "id_car_serie": 3791, + "name": "3.0 MT AWD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250149, + "fields": { + "id_car_serie": 3791, + "name": "3.2 D AT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250150, + "fields": { + "id_car_serie": 3791, + "name": "3.2 D MT AWD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250151, + "fields": { + "id_car_serie": 3791, + "name": "3.2 D MT AWD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250152, + "fields": { + "id_car_serie": 3791, + "name": "3.2 D MT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250153, + "fields": { + "id_car_serie": 3791, + "name": "3.5 AT AWD (189 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250154, + "fields": { + "id_car_serie": 3791, + "name": "3.8 AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250155, + "fields": { + "id_car_serie": 54138, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250156, + "fields": { + "id_car_serie": 54138, + "name": "1.2 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250157, + "fields": { + "id_car_serie": 54138, + "name": "1.2 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250158, + "fields": { + "id_car_serie": 54138, + "name": "1.2 CVT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250159, + "fields": { + "id_car_serie": 54139, + "name": "1.2 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250160, + "fields": { + "id_car_serie": 54139, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250161, + "fields": { + "id_car_serie": 54139, + "name": "1.4 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250162, + "fields": { + "id_car_serie": 54139, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250163, + "fields": { + "id_car_serie": 54139, + "name": "1.4 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250164, + "fields": { + "id_car_serie": 54139, + "name": "1.5 D MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250165, + "fields": { + "id_car_serie": 54139, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250166, + "fields": { + "id_car_serie": 7215, + "name": "1.2 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250167, + "fields": { + "id_car_serie": 7215, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250168, + "fields": { + "id_car_serie": 7215, + "name": "1.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250169, + "fields": { + "id_car_serie": 7215, + "name": "1.4 AT AWD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250170, + "fields": { + "id_car_serie": 7215, + "name": "1.4 MT AWD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250171, + "fields": { + "id_car_serie": 7215, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250172, + "fields": { + "id_car_serie": 7214, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250173, + "fields": { + "id_car_serie": 7214, + "name": "1.2 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250174, + "fields": { + "id_car_serie": 7214, + "name": "1.2 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250175, + "fields": { + "id_car_serie": 7214, + "name": "1.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250176, + "fields": { + "id_car_serie": 7214, + "name": "1.4 AT AWD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250177, + "fields": { + "id_car_serie": 7214, + "name": "1.4 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250178, + "fields": { + "id_car_serie": 54140, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250179, + "fields": { + "id_car_serie": 54140, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250180, + "fields": { + "id_car_serie": 54140, + "name": "1.3 CVT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250181, + "fields": { + "id_car_serie": 54140, + "name": "1.5 D MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250182, + "fields": { + "id_car_serie": 54141, + "name": "1.0i AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250183, + "fields": { + "id_car_serie": 54141, + "name": "1.0i MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250184, + "fields": { + "id_car_serie": 54141, + "name": "1.2 AT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250185, + "fields": { + "id_car_serie": 54141, + "name": "1.2 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250186, + "fields": { + "id_car_serie": 54141, + "name": "1.3i 16V AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250187, + "fields": { + "id_car_serie": 54141, + "name": "1.3i 16V MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250188, + "fields": { + "id_car_serie": 54142, + "name": "1.0i AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250189, + "fields": { + "id_car_serie": 54142, + "name": "1.0i MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250190, + "fields": { + "id_car_serie": 54142, + "name": "1.2 AT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250191, + "fields": { + "id_car_serie": 54142, + "name": "1.2 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250192, + "fields": { + "id_car_serie": 54142, + "name": "1.3i 16V AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250193, + "fields": { + "id_car_serie": 54142, + "name": "1.3i 16V MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250194, + "fields": { + "id_car_serie": 7217, + "name": "1.0i AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250195, + "fields": { + "id_car_serie": 7217, + "name": "1.0 Turbo AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250196, + "fields": { + "id_car_serie": 7217, + "name": "1.0i MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250197, + "fields": { + "id_car_serie": 7217, + "name": "1.0 Turbo MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250198, + "fields": { + "id_car_serie": 7217, + "name": "1.2 AT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250199, + "fields": { + "id_car_serie": 7217, + "name": "1.2 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250200, + "fields": { + "id_car_serie": 7217, + "name": "1.3i 16V AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250201, + "fields": { + "id_car_serie": 7217, + "name": "1.3i 16V MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250202, + "fields": { + "id_car_serie": 54143, + "name": "1.0 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250203, + "fields": { + "id_car_serie": 54143, + "name": "1.0 Turbo AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250204, + "fields": { + "id_car_serie": 54143, + "name": "1.0i AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250205, + "fields": { + "id_car_serie": 54143, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250206, + "fields": { + "id_car_serie": 54143, + "name": "1.0 Turbo MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250207, + "fields": { + "id_car_serie": 54143, + "name": "1.0i MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250208, + "fields": { + "id_car_serie": 54143, + "name": "1.2 AT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250209, + "fields": { + "id_car_serie": 54143, + "name": "1.2 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250210, + "fields": { + "id_car_serie": 54143, + "name": "1.3i 16V AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250211, + "fields": { + "id_car_serie": 54143, + "name": "1.3i 16V MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250212, + "fields": { + "id_car_serie": 7251, + "name": "4.2 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250213, + "fields": { + "id_car_serie": 7251, + "name": "4.2 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250214, + "fields": { + "id_car_serie": 7251, + "name": "4.2 D MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250215, + "fields": { + "id_car_serie": 7252, + "name": "4.2 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250216, + "fields": { + "id_car_serie": 7252, + "name": "4.2 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250217, + "fields": { + "id_car_serie": 7252, + "name": "4.2 D MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250218, + "fields": { + "id_car_serie": 7253, + "name": "2.8 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250219, + "fields": { + "id_car_serie": 7253, + "name": "3.3 TD MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250220, + "fields": { + "id_car_serie": 7254, + "name": "2.8 TD MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250221, + "fields": { + "id_car_serie": 9520, + "name": "2.4 MT AWD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250222, + "fields": { + "id_car_serie": 9520, + "name": "2.7 TD MT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250223, + "fields": { + "id_car_serie": 9520, + "name": "3.0 TD AT AWD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250224, + "fields": { + "id_car_serie": 9520, + "name": "3.0 TD MT AWD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250225, + "fields": { + "id_car_serie": 9519, + "name": "2.4 MT AWD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250226, + "fields": { + "id_car_serie": 9519, + "name": "2.7 TD MT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250227, + "fields": { + "id_car_serie": 9519, + "name": "3.0 TD AT AWD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250228, + "fields": { + "id_car_serie": 9519, + "name": "3.0 TD MT AWD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250229, + "fields": { + "id_car_serie": 49581, + "name": "2.4 MT AWD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250230, + "fields": { + "id_car_serie": 49581, + "name": "2.4 MT AWD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250231, + "fields": { + "id_car_serie": 49581, + "name": "2.7 TD AT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250232, + "fields": { + "id_car_serie": 49581, + "name": "2.7 TD MT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250233, + "fields": { + "id_car_serie": 49580, + "name": "2.4 MT AWD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250234, + "fields": { + "id_car_serie": 49580, + "name": "2.7 TD AT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250235, + "fields": { + "id_car_serie": 49580, + "name": "2.7 TD MT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250236, + "fields": { + "id_car_serie": 9517, + "name": "2.4 MT AWD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250237, + "fields": { + "id_car_serie": 9517, + "name": "2.4 MT AWD (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250238, + "fields": { + "id_car_serie": 9517, + "name": "2.7 TD AT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250239, + "fields": { + "id_car_serie": 9517, + "name": "2.7 TD MT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250240, + "fields": { + "id_car_serie": 9518, + "name": "2.4 MT AWD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250241, + "fields": { + "id_car_serie": 9518, + "name": "2.4 MT AWD (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250242, + "fields": { + "id_car_serie": 9518, + "name": "2.7 TD AT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250243, + "fields": { + "id_car_serie": 9518, + "name": "2.7 TD MT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250244, + "fields": { + "id_car_serie": 7310, + "name": "2.2 MT AWD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250245, + "fields": { + "id_car_serie": 7310, + "name": "2.4 MT AWD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250246, + "fields": { + "id_car_serie": 7310, + "name": "2.8 TDI AWD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250247, + "fields": { + "id_car_serie": 7309, + "name": "2.0 MT AWD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250248, + "fields": { + "id_car_serie": 8969, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250249, + "fields": { + "id_car_serie": 8969, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250250, + "fields": { + "id_car_serie": 8969, + "name": "1.8 MT AWD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250251, + "fields": { + "id_car_serie": 8969, + "name": "2.0 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250252, + "fields": { + "id_car_serie": 8969, + "name": "2.0 MT AWD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250253, + "fields": { + "id_car_serie": 8969, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250254, + "fields": { + "id_car_serie": 48894, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250255, + "fields": { + "id_car_serie": 48894, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250256, + "fields": { + "id_car_serie": 48894, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250257, + "fields": { + "id_car_serie": 48894, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250258, + "fields": { + "id_car_serie": 48894, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250259, + "fields": { + "id_car_serie": 48894, + "name": "1.8 MT AWD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250260, + "fields": { + "id_car_serie": 48894, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250261, + "fields": { + "id_car_serie": 48894, + "name": "2.0 GT MT AWD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250262, + "fields": { + "id_car_serie": 48894, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250263, + "fields": { + "id_car_serie": 48894, + "name": "2.0 MT AWD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250264, + "fields": { + "id_car_serie": 48894, + "name": "2.0 GT MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250265, + "fields": { + "id_car_serie": 3925, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250266, + "fields": { + "id_car_serie": 54117, + "name": "1.4 VTi MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250267, + "fields": { + "id_car_serie": 54117, + "name": "1.6 HDi AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250268, + "fields": { + "id_car_serie": 54117, + "name": "1.6 THP AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250269, + "fields": { + "id_car_serie": 54117, + "name": "1.6 VTi AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250270, + "fields": { + "id_car_serie": 54117, + "name": "1.6 VTi MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250271, + "fields": { + "id_car_serie": 54117, + "name": "1.6 HDi MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250272, + "fields": { + "id_car_serie": 54117, + "name": "1.6 HDi MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250273, + "fields": { + "id_car_serie": 54117, + "name": "1.6 HDi MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250274, + "fields": { + "id_car_serie": 54117, + "name": "1.6 THP MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250275, + "fields": { + "id_car_serie": 54025, + "name": "4.0 MT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250276, + "fields": { + "id_car_serie": 53995, + "name": "2.9 Tiptronic S AWD (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250277, + "fields": { + "id_car_serie": 46466, + "name": "1.6 dCi MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250278, + "fields": { + "id_car_serie": 46466, + "name": "1.6 dCi EDC (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250279, + "fields": { + "id_car_serie": 46466, + "name": "1.6 TCe EDC (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250280, + "fields": { + "id_car_serie": 46466, + "name": "1.6 dCi EDC (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250281, + "fields": { + "id_car_serie": 46466, + "name": "1.8 TCe EDC (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250282, + "fields": { + "id_car_serie": 46466, + "name": "2.0 dCi EDC (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250283, + "fields": { + "id_car_serie": 46466, + "name": "2.0 dCi EDC (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250284, + "fields": { + "id_car_serie": 54077, + "name": "1.7 dCi X-Tronic (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250285, + "fields": { + "id_car_serie": 54077, + "name": "2.0 dCi X-Tronic AWD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250286, + "fields": { + "id_car_serie": 15109, + "name": "1.0 SCe MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250287, + "fields": { + "id_car_serie": 15109, + "name": "1.2 16V MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250288, + "fields": { + "id_car_serie": 15109, + "name": "1.5 dCi AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250289, + "fields": { + "id_car_serie": 15109, + "name": "1.5 dCi MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250294, + "fields": { + "id_car_serie": 9070, + "name": "2.0 Turbo MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250295, + "fields": { + "id_car_serie": 9070, + "name": "2.0 Turbo MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250296, + "fields": { + "id_car_serie": 9070, + "name": "2.0 Turbo MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250297, + "fields": { + "id_car_serie": 9070, + "name": "2.0 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250298, + "fields": { + "id_car_serie": 54122, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250301, + "fields": { + "id_car_serie": 54122, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250303, + "fields": { + "id_car_serie": 54122, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250305, + "fields": { + "id_car_serie": 54120, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250306, + "fields": { + "id_car_serie": 54120, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250307, + "fields": { + "id_car_serie": 54120, + "name": "2.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250308, + "fields": { + "id_car_serie": 54120, + "name": "2.0 AT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250309, + "fields": { + "id_car_serie": 54120, + "name": "2.0 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250310, + "fields": { + "id_car_serie": 54120, + "name": "2.0 MT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250311, + "fields": { + "id_car_serie": 54120, + "name": "2.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250312, + "fields": { + "id_car_serie": 54120, + "name": "2.0 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250313, + "fields": { + "id_car_serie": 54120, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250314, + "fields": { + "id_car_serie": 54120, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250315, + "fields": { + "id_car_serie": 54120, + "name": "2.2 TD AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250316, + "fields": { + "id_car_serie": 54120, + "name": "2.2 TD MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250317, + "fields": { + "id_car_serie": 54120, + "name": "2.2 TD MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250318, + "fields": { + "id_car_serie": 54120, + "name": "2.3 MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250319, + "fields": { + "id_car_serie": 54120, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250320, + "fields": { + "id_car_serie": 62937, + "name": "1.0 TSI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250321, + "fields": { + "id_car_serie": 62937, + "name": "1.0 TSI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250322, + "fields": { + "id_car_serie": 62937, + "name": "1.0 MPI MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250323, + "fields": { + "id_car_serie": 62937, + "name": "1.0 MPI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250324, + "fields": { + "id_car_serie": 62937, + "name": "1.0 MPI MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250325, + "fields": { + "id_car_serie": 62937, + "name": "1.0 TGI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250326, + "fields": { + "id_car_serie": 62937, + "name": "1.0 TSI DSG (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250327, + "fields": { + "id_car_serie": 62937, + "name": "1.5 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250328, + "fields": { + "id_car_serie": 62937, + "name": "1.6 TDI MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250329, + "fields": { + "id_car_serie": 62937, + "name": "1.6 TDI MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250330, + "fields": { + "id_car_serie": 62937, + "name": "1.6 TDI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250331, + "fields": { + "id_car_serie": 62937, + "name": "1.6 TDI DSG (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250332, + "fields": { + "id_car_serie": 54093, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250333, + "fields": { + "id_car_serie": 54093, + "name": "1.0 TSI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250334, + "fields": { + "id_car_serie": 54093, + "name": "1.0 TSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250335, + "fields": { + "id_car_serie": 54093, + "name": "1.0 TSI DSG (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250336, + "fields": { + "id_car_serie": 54093, + "name": "1.2 TSI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250337, + "fields": { + "id_car_serie": 54093, + "name": "1.4 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250338, + "fields": { + "id_car_serie": 54093, + "name": "1.4 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250339, + "fields": { + "id_car_serie": 54093, + "name": "1.4 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250340, + "fields": { + "id_car_serie": 54093, + "name": "1.4 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250341, + "fields": { + "id_car_serie": 54093, + "name": "1.4 TDI DSG (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250342, + "fields": { + "id_car_serie": 54093, + "name": "1.8 TSI MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250343, + "fields": { + "id_car_serie": 54095, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250344, + "fields": { + "id_car_serie": 54095, + "name": "1.0 TSI MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250345, + "fields": { + "id_car_serie": 54095, + "name": "1.0 TSI MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250346, + "fields": { + "id_car_serie": 54095, + "name": "1.0 TSI DSG (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250347, + "fields": { + "id_car_serie": 54095, + "name": "1.2 TSI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250348, + "fields": { + "id_car_serie": 54095, + "name": "1.4 TSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250349, + "fields": { + "id_car_serie": 54095, + "name": "1.4 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250350, + "fields": { + "id_car_serie": 54095, + "name": "1.4 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250351, + "fields": { + "id_car_serie": 54095, + "name": "1.4 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250352, + "fields": { + "id_car_serie": 54095, + "name": "1.4 TDI DSG (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250353, + "fields": { + "id_car_serie": 45440, + "name": "1.4 TSI DSG (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250354, + "fields": { + "id_car_serie": 49095, + "name": "1.2 12V MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250355, + "fields": { + "id_car_serie": 49095, + "name": "1.2 TSI MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250356, + "fields": { + "id_car_serie": 49095, + "name": "1.2 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250357, + "fields": { + "id_car_serie": 49095, + "name": "1.2 12V MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250358, + "fields": { + "id_car_serie": 49095, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250359, + "fields": { + "id_car_serie": 49095, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250360, + "fields": { + "id_car_serie": 49095, + "name": "1.6 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250361, + "fields": { + "id_car_serie": 49095, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250362, + "fields": { + "id_car_serie": 49095, + "name": "1.6 TDI DSG (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250363, + "fields": { + "id_car_serie": 49095, + "name": "2.0 TDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250364, + "fields": { + "id_car_serie": 4145, + "name": "1.2 12V MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250365, + "fields": { + "id_car_serie": 4145, + "name": "1.2 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250366, + "fields": { + "id_car_serie": 4145, + "name": "1.2 TSI MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250367, + "fields": { + "id_car_serie": 4145, + "name": "1.2 12V MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250368, + "fields": { + "id_car_serie": 4145, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250369, + "fields": { + "id_car_serie": 4145, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250370, + "fields": { + "id_car_serie": 4145, + "name": "1.6 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250371, + "fields": { + "id_car_serie": 4145, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250372, + "fields": { + "id_car_serie": 4145, + "name": "1.6 TDI DSG (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250373, + "fields": { + "id_car_serie": 4145, + "name": "2.0 TDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250374, + "fields": { + "id_car_serie": 45441, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250375, + "fields": { + "id_car_serie": 45441, + "name": "1.2 TSI MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250376, + "fields": { + "id_car_serie": 45441, + "name": "1.2 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250377, + "fields": { + "id_car_serie": 45441, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250378, + "fields": { + "id_car_serie": 45441, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250379, + "fields": { + "id_car_serie": 45441, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250380, + "fields": { + "id_car_serie": 45441, + "name": "1.6 TDI MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250381, + "fields": { + "id_car_serie": 45441, + "name": "1.6 TDI DSG (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250382, + "fields": { + "id_car_serie": 49098, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250383, + "fields": { + "id_car_serie": 7590, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250384, + "fields": { + "id_car_serie": 7590, + "name": "1.6 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250385, + "fields": { + "id_car_serie": 7590, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250386, + "fields": { + "id_car_serie": 47408, + "name": "1.2 TDI MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250387, + "fields": { + "id_car_serie": 47408, + "name": "1.4 TDI MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250388, + "fields": { + "id_car_serie": 47408, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250389, + "fields": { + "id_car_serie": 47408, + "name": "2.0 TDI MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250390, + "fields": { + "id_car_serie": 9082, + "name": "1.4 MPI MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250391, + "fields": { + "id_car_serie": 9082, + "name": "1.4 TSI MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250392, + "fields": { + "id_car_serie": 9082, + "name": "1.6 MPI MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250393, + "fields": { + "id_car_serie": 9082, + "name": "1.9 TDI MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250394, + "fields": { + "id_car_serie": 9082, + "name": "2.0 FSI AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250395, + "fields": { + "id_car_serie": 9082, + "name": "2.0 TFSI MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250396, + "fields": { + "id_car_serie": 9082, + "name": "2.0 FSI MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250397, + "fields": { + "id_car_serie": 9082, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250398, + "fields": { + "id_car_serie": 54124, + "name": "2.0 TFSI AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250399, + "fields": { + "id_car_serie": 54124, + "name": "2.0 TDI AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250400, + "fields": { + "id_car_serie": 54124, + "name": "2.0 TFSI MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250401, + "fields": { + "id_car_serie": 54124, + "name": "2.0 TDI MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250402, + "fields": { + "id_car_serie": 54125, + "name": "2.0 TFSI MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250403, + "fields": { + "id_car_serie": 9124, + "name": "2.0 AT 4WD (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250404, + "fields": { + "id_car_serie": 9124, + "name": "2.0 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250405, + "fields": { + "id_car_serie": 9124, + "name": "2.0 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250406, + "fields": { + "id_car_serie": 9124, + "name": "2.0 MT 4WD (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250407, + "fields": { + "id_car_serie": 9124, + "name": "2.5 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250408, + "fields": { + "id_car_serie": 9124, + "name": "2.5 GT AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250409, + "fields": { + "id_car_serie": 9124, + "name": "2.5 GT MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250410, + "fields": { + "id_car_serie": 9124, + "name": "2.5 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250411, + "fields": { + "id_car_serie": 9125, + "name": "2.0 AT 4WD (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250412, + "fields": { + "id_car_serie": 9125, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250413, + "fields": { + "id_car_serie": 9125, + "name": "2.0 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250414, + "fields": { + "id_car_serie": 9125, + "name": "2.0 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250415, + "fields": { + "id_car_serie": 9125, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250416, + "fields": { + "id_car_serie": 9125, + "name": "2.0 d MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250417, + "fields": { + "id_car_serie": 9125, + "name": "2.5 AT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250418, + "fields": { + "id_car_serie": 9125, + "name": "2.5 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250419, + "fields": { + "id_car_serie": 9125, + "name": "2.5 MT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250420, + "fields": { + "id_car_serie": 9125, + "name": "3.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250421, + "fields": { + "id_car_serie": 9126, + "name": "2.0 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250422, + "fields": { + "id_car_serie": 9126, + "name": "2.5 AT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250423, + "fields": { + "id_car_serie": 9128, + "name": "1.8 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250424, + "fields": { + "id_car_serie": 9128, + "name": "1.8 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250425, + "fields": { + "id_car_serie": 9128, + "name": "1.8 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250426, + "fields": { + "id_car_serie": 9128, + "name": "1.8 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250427, + "fields": { + "id_car_serie": 9128, + "name": "2.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250428, + "fields": { + "id_car_serie": 9128, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250429, + "fields": { + "id_car_serie": 9128, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250430, + "fields": { + "id_car_serie": 9128, + "name": "2.0 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250431, + "fields": { + "id_car_serie": 9128, + "name": "2.0 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250432, + "fields": { + "id_car_serie": 9128, + "name": "2.0 Turbo AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250433, + "fields": { + "id_car_serie": 9128, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250434, + "fields": { + "id_car_serie": 9128, + "name": "2.0 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250435, + "fields": { + "id_car_serie": 9128, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250436, + "fields": { + "id_car_serie": 9128, + "name": "2.0 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250437, + "fields": { + "id_car_serie": 9128, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250438, + "fields": { + "id_car_serie": 9128, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250439, + "fields": { + "id_car_serie": 9128, + "name": "2.0 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250440, + "fields": { + "id_car_serie": 9128, + "name": "2.0 MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250441, + "fields": { + "id_car_serie": 9128, + "name": "2.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250442, + "fields": { + "id_car_serie": 9128, + "name": "2.2 AT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250443, + "fields": { + "id_car_serie": 9129, + "name": "1.8 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250444, + "fields": { + "id_car_serie": 9129, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250445, + "fields": { + "id_car_serie": 9129, + "name": "1.8 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250446, + "fields": { + "id_car_serie": 9129, + "name": "1.8 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250447, + "fields": { + "id_car_serie": 9129, + "name": "1.8 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250448, + "fields": { + "id_car_serie": 9129, + "name": "2.0 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250449, + "fields": { + "id_car_serie": 9129, + "name": "2.0 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250450, + "fields": { + "id_car_serie": 9129, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250451, + "fields": { + "id_car_serie": 9129, + "name": "2.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250452, + "fields": { + "id_car_serie": 9129, + "name": "2.0 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250453, + "fields": { + "id_car_serie": 9129, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250454, + "fields": { + "id_car_serie": 9129, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250455, + "fields": { + "id_car_serie": 9129, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250456, + "fields": { + "id_car_serie": 9129, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250457, + "fields": { + "id_car_serie": 9129, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250458, + "fields": { + "id_car_serie": 9129, + "name": "2.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250459, + "fields": { + "id_car_serie": 9129, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250460, + "fields": { + "id_car_serie": 9129, + "name": "2.0 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250461, + "fields": { + "id_car_serie": 9129, + "name": "2.0 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250462, + "fields": { + "id_car_serie": 9129, + "name": "2.0 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250463, + "fields": { + "id_car_serie": 9129, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250464, + "fields": { + "id_car_serie": 9129, + "name": "2.0 MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250465, + "fields": { + "id_car_serie": 9129, + "name": "2.0 MT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250466, + "fields": { + "id_car_serie": 9129, + "name": "2.2 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250467, + "fields": { + "id_car_serie": 9129, + "name": "2.2 AT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250468, + "fields": { + "id_car_serie": 9129, + "name": "2.5 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250469, + "fields": { + "id_car_serie": 62779, + "name": "2.4 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250470, + "fields": { + "id_car_serie": 7760, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250471, + "fields": { + "id_car_serie": 7760, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250472, + "fields": { + "id_car_serie": 7760, + "name": "2.0 D MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250473, + "fields": { + "id_car_serie": 7761, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250474, + "fields": { + "id_car_serie": 54096, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250475, + "fields": { + "id_car_serie": 54096, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250476, + "fields": { + "id_car_serie": 54096, + "name": "2.0DT AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250477, + "fields": { + "id_car_serie": 54096, + "name": "2.0 AT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250478, + "fields": { + "id_car_serie": 54096, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250479, + "fields": { + "id_car_serie": 54096, + "name": "2.0 MT AWD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250480, + "fields": { + "id_car_serie": 54096, + "name": "2.0DT MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250481, + "fields": { + "id_car_serie": 54096, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250482, + "fields": { + "id_car_serie": 62984, + "name": "1.33 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250483, + "fields": { + "id_car_serie": 62984, + "name": "1.4 D-4D MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250484, + "fields": { + "id_car_serie": 62984, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250485, + "fields": { + "id_car_serie": 62984, + "name": "1.6 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250486, + "fields": { + "id_car_serie": 62984, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250487, + "fields": { + "id_car_serie": 62984, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250488, + "fields": { + "id_car_serie": 62984, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250489, + "fields": { + "id_car_serie": 62984, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250490, + "fields": { + "id_car_serie": 62984, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250491, + "fields": { + "id_car_serie": 62984, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250492, + "fields": { + "id_car_serie": 62984, + "name": "1.8 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250493, + "fields": { + "id_car_serie": 62984, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250494, + "fields": { + "id_car_serie": 62984, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250495, + "fields": { + "id_car_serie": 62984, + "name": "2.0 D-4D MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250496, + "fields": { + "id_car_serie": 62985, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250497, + "fields": { + "id_car_serie": 62985, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250498, + "fields": { + "id_car_serie": 62985, + "name": "1.5 CVT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250499, + "fields": { + "id_car_serie": 62985, + "name": "1.8 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250500, + "fields": { + "id_car_serie": 62985, + "name": "1.8 CVT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250501, + "fields": { + "id_car_serie": 62986, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250502, + "fields": { + "id_car_serie": 62986, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250503, + "fields": { + "id_car_serie": 62986, + "name": "1.5 CVT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250504, + "fields": { + "id_car_serie": 62986, + "name": "1.8 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250505, + "fields": { + "id_car_serie": 62986, + "name": "1.8 CVT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250506, + "fields": { + "id_car_serie": 47432, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250507, + "fields": { + "id_car_serie": 47432, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250508, + "fields": { + "id_car_serie": 47432, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250509, + "fields": { + "id_car_serie": 47432, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250510, + "fields": { + "id_car_serie": 47432, + "name": "1.8 MT AWD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250511, + "fields": { + "id_car_serie": 47432, + "name": "1.9D MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250512, + "fields": { + "id_car_serie": 47432, + "name": "2.0D MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250513, + "fields": { + "id_car_serie": 54099, + "name": "2.8D AT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250514, + "fields": { + "id_car_serie": 54099, + "name": "2.8D MT AWD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250515, + "fields": { + "id_car_serie": 9577, + "name": "2.0 MT AWD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250516, + "fields": { + "id_car_serie": 9577, + "name": "2.0 MT AWD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250517, + "fields": { + "id_car_serie": 9577, + "name": "2.0 CVT AWD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250518, + "fields": { + "id_car_serie": 9577, + "name": "2.0 CVT AWD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250519, + "fields": { + "id_car_serie": 9577, + "name": "2.0 CVT FWD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250520, + "fields": { + "id_car_serie": 9577, + "name": "2.4 AT AWD Long (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250521, + "fields": { + "id_car_serie": 49624, + "name": "2.0 MT FWD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250522, + "fields": { + "id_car_serie": 49624, + "name": "2.0 MT AWD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250523, + "fields": { + "id_car_serie": 49624, + "name": "2.0 CVT FWD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250524, + "fields": { + "id_car_serie": 49624, + "name": "2.0 CVT AWD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250525, + "fields": { + "id_car_serie": 9573, + "name": "2.0 AT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250526, + "fields": { + "id_car_serie": 9573, + "name": "2.0 MT AWD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250527, + "fields": { + "id_car_serie": 9573, + "name": "2.4 AT AWD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250528, + "fields": { + "id_car_serie": 62781, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250529, + "fields": { + "id_car_serie": 62781, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250530, + "fields": { + "id_car_serie": 62781, + "name": "1.8 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250531, + "fields": { + "id_car_serie": 62781, + "name": "1.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250532, + "fields": { + "id_car_serie": 46045, + "name": "2.0 TDI BMT DSG L1 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250533, + "fields": { + "id_car_serie": 46045, + "name": "2.0 BiTDI BMT DSG L2 4Motion (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250534, + "fields": { + "id_car_serie": 46045, + "name": "2.0 TDI BMT DSG L2 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250535, + "fields": { + "id_car_serie": 46045, + "name": "2.0 TDI BMT DSG L1 4Motion (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250536, + "fields": { + "id_car_serie": 46045, + "name": "2.0 TDI BMT DSG L2 4Motion (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250537, + "fields": { + "id_car_serie": 46045, + "name": "2.0 BiTDI BMT DSG L1 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250538, + "fields": { + "id_car_serie": 46045, + "name": "2.0 BiTDI BMT DSG L2 (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250539, + "fields": { + "id_car_serie": 46045, + "name": "2.0 BiTDI BMT DSG L1 4Motion (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250540, + "fields": { + "id_car_serie": 49434, + "name": "3.2 MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250541, + "fields": { + "id_car_serie": 53970, + "name": "1.6 TDI DSG (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250542, + "fields": { + "id_car_serie": 53970, + "name": "2.0 TSI DSG (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250543, + "fields": { + "id_car_serie": 53970, + "name": "2.0 TSI DSG 4Motion (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250544, + "fields": { + "id_car_serie": 53970, + "name": "2.0 TDI DSG (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250545, + "fields": { + "id_car_serie": 53970, + "name": "2.0 TDI DSG 4Motion (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250546, + "fields": { + "id_car_serie": 53970, + "name": "2.0 TDI DSG 4Motion (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250547, + "fields": { + "id_car_serie": 53971, + "name": "1.6 TDI DSG (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250548, + "fields": { + "id_car_serie": 53971, + "name": "2.0 TDI DSG (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250549, + "fields": { + "id_car_serie": 53971, + "name": "2.0 TDI DSG 4Motion (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250550, + "fields": { + "id_car_serie": 53971, + "name": "2.0 TDI DSG 4Motion (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250551, + "fields": { + "id_car_serie": 53971, + "name": "2.0 TSI DSG (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250552, + "fields": { + "id_car_serie": 53971, + "name": "2.0 TSI DSG 4Motion (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250556, + "fields": { + "id_car_serie": 53542, + "name": "4.0 V8 TDI Tiptronic 4Motion (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250557, + "fields": { + "id_car_serie": 53625, + "name": "2.0 T4 Geartronic (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250558, + "fields": { + "id_car_serie": 53625, + "name": "2.0 T5 Geartronic AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250559, + "fields": { + "id_car_serie": 53625, + "name": "2.0 T5 Geartronic (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250560, + "fields": { + "id_car_serie": 53625, + "name": "2.0 T5 Geartronic AWD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250561, + "fields": { + "id_car_serie": 49469, + "name": "1.7 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250562, + "fields": { + "id_car_serie": 49469, + "name": "1.7 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250563, + "fields": { + "id_car_serie": 53697, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250564, + "fields": { + "id_car_serie": 53697, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250565, + "fields": { + "id_car_serie": 53697, + "name": "1.6 AMT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250566, + "fields": { + "id_car_serie": 53800, + "name": "1.6 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250567, + "fields": { + "id_car_serie": 63007, + "name": "2.0 (148 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250568, + "fields": { + "id_car_serie": 63007, + "name": "2.0 (148 hp) gasoline, MT, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250569, + "fields": { + "id_car_serie": 63007, + "name": "2.0 (148 hp) gasoline, variator (CVT), Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250570, + "fields": { + "id_car_serie": 63007, + "name": "2.0 (153 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250571, + "fields": { + "id_car_serie": 63007, + "name": "2.0 (153 hp) gasoline, MT, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250572, + "fields": { + "id_car_serie": 63007, + "name": "2.0 l(158 hp) gasoline, variator (CVT), Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250573, + "fields": { + "id_car_serie": 63007, + "name": "2.4 (170 hp) gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250574, + "fields": { + "id_car_serie": 63054, + "name": "2.3 (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250575, + "fields": { + "id_car_serie": 63054, + "name": "2.3 (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250576, + "fields": { + "id_car_serie": 63568, + "name": "2.0 D AT AWD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250577, + "fields": { + "id_car_serie": 63568, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250578, + "fields": { + "id_car_serie": 63568, + "name": "2.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250579, + "fields": { + "id_car_serie": 63568, + "name": "2.0 AT AWD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250580, + "fields": { + "id_car_serie": 63568, + "name": "2.0 D AT AWD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250581, + "fields": { + "id_car_serie": 63568, + "name": "2.0 AT AWD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250582, + "fields": { + "id_car_serie": 63568, + "name": "2.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250583, + "fields": { + "id_car_serie": 63568, + "name": "2.0 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250584, + "fields": { + "id_car_serie": 63568, + "name": "2.0 D AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250585, + "fields": { + "id_car_serie": 63568, + "name": "2.0 D AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250586, + "fields": { + "id_car_serie": 63568, + "name": "2.0 D MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250587, + "fields": { + "id_car_serie": 63568, + "name": "2.0 D MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250588, + "fields": { + "id_car_serie": 63568, + "name": "3.0 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250589, + "fields": { + "id_car_serie": 63568, + "name": "3.0 AT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250590, + "fields": { + "id_car_serie": 63568, + "name": "5.0 V8 SV AT AWD (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250592, + "fields": { + "id_car_serie": 63731, + "name": "1.2 (82 hp) ", + "arabic_name": "-", + "start_production_year": 2018, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250593, + "fields": { + "id_car_serie": 63732, + "name": "2.2. (140 hp) turbo-diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250594, + "fields": { + "id_car_serie": 63732, + "name": "2.2. (140 hp) Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250595, + "fields": { + "id_car_serie": 63732, + "name": "2.2 (140 hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250596, + "fields": { + "id_car_serie": 53367, + "name": "Z. E. 21,3 kW/h (82 HP)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250597, + "fields": { + "id_car_serie": 53367, + "name": "Z. E. 17,6 kW/h (82 HP)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250599, + "fields": { + "id_car_serie": 63375, + "name": "1.8 AMT (252 hp)", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250600, + "fields": { + "id_car_serie": 63375, + "name": "1.8 (252 hp) MT", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250601, + "fields": { + "id_car_serie": 63375, + "name": "1.1 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 250602, + "fields": { + "id_car_serie": 63375, + "name": "1.3 MT (103 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 250603, + "fields": { + "id_car_serie": 63375, + "name": "1.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": 1968, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 250604, + "fields": { + "id_car_serie": 63375, + "name": "1.3 MT (132 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1972 + } +}, +{ + "model": "inventory.cartrim", + "pk": 250605, + "fields": { + "id_car_serie": 63375, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 250606, + "fields": { + "id_car_serie": 63375, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": 1974, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 250607, + "fields": { + "id_car_serie": 63375, + "name": "1.3 MT (81 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 250608, + "fields": { + "id_car_serie": 63375, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": 1966, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 250609, + "fields": { + "id_car_serie": 63375, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": 1966, + "end_production_year": 1970 + } +}, +{ + "model": "inventory.cartrim", + "pk": 250610, + "fields": { + "id_car_serie": 63375, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": 1970, + "end_production_year": 1971 + } +}, +{ + "model": "inventory.cartrim", + "pk": 250611, + "fields": { + "id_car_serie": 63375, + "name": "1.6 MT (127 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 250612, + "fields": { + "id_car_serie": 63375, + "name": "1.6 MT (138 hp)", + "arabic_name": "-", + "start_production_year": 1969, + "end_production_year": 1973 + } +}, +{ + "model": "inventory.cartrim", + "pk": 250613, + "fields": { + "id_car_serie": 63375, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": 1973, + "end_production_year": 1975 + } +}, +{ + "model": "inventory.cartrim", + "pk": 250614, + "fields": { + "id_car_serie": 63375, + "name": "\t1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": 1976, + "end_production_year": 1977 + } +}, +{ + "model": "inventory.cartrim", + "pk": 250615, + "fields": { + "id_car_serie": 63739, + "name": "1.6 (109 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250616, + "fields": { + "id_car_serie": 63739, + "name": "1.6 (109 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2015, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250617, + "fields": { + "id_car_serie": 63232, + "name": "4.0 (500 hp) MT", + "arabic_name": "-", + "start_production_year": 2016, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250618, + "fields": { + "id_car_serie": 63230, + "name": "3.8 (700 hp) robot", + "arabic_name": "-", + "start_production_year": 2017, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250619, + "fields": { + "id_car_serie": 63230, + "name": "3.6 (530 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250620, + "fields": { + "id_car_serie": 15613, + "name": "3.8 (700 hp) robot", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250621, + "fields": { + "id_car_serie": 63516, + "name": "3.0 (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250622, + "fields": { + "id_car_serie": 63740, + "name": "2.9 (400 hp)", + "arabic_name": "-", + "start_production_year": 1984, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250623, + "fields": { + "id_car_serie": 63741, + "name": "2.8 (255 HP)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250624, + "fields": { + "id_car_serie": 63229, + "name": "2.7 (150 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250625, + "fields": { + "id_car_serie": 63229, + "name": "2.7 (165 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250626, + "fields": { + "id_car_serie": 63229, + "name": "3.0 (180 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250627, + "fields": { + "id_car_serie": 63229, + "name": "3.2 (218 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250628, + "fields": { + "id_car_serie": 63229, + "name": "3.0 (204 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250629, + "fields": { + "id_car_serie": 63229, + "name": "3.3 (300 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250630, + "fields": { + "id_car_serie": 63229, + "name": "3.3 (330 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250631, + "fields": { + "id_car_serie": 63742, + "name": "2.7 (150 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250632, + "fields": { + "id_car_serie": 63742, + "name": "2.7 (165hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250633, + "fields": { + "id_car_serie": 63742, + "name": "2.7 (175 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250634, + "fields": { + "id_car_serie": 63742, + "name": "2.7 (209 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250635, + "fields": { + "id_car_serie": 63742, + "name": "3.0 (188 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250636, + "fields": { + "id_car_serie": 63742, + "name": "3.0 (200 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250637, + "fields": { + "id_car_serie": 63742, + "name": "3.0 (260 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250638, + "fields": { + "id_car_serie": 63742, + "name": "3.2 (230 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250639, + "fields": { + "id_car_serie": 63742, + "name": "3.3 (300 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250640, + "fields": { + "id_car_serie": 63742, + "name": "3.3 (330 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250641, + "fields": { + "id_car_serie": 63743, + "name": "2.0 (165 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250642, + "fields": { + "id_car_serie": 63743, + "name": "3.0 (180 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250643, + "fields": { + "id_car_serie": 63743, + "name": "3.0 (188 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250644, + "fields": { + "id_car_serie": 63743, + "name": "3.0 (200 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250645, + "fields": { + "id_car_serie": 63743, + "name": "3.2 (230 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250646, + "fields": { + "id_car_serie": 63743, + "name": "3.3 (300 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250647, + "fields": { + "id_car_serie": 63743, + "name": "3.3 (330 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250656, + "fields": { + "id_car_serie": 63746, + "name": "2.2 (200 hp) Automatic transmission, Four-wheel drive, diesel", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250657, + "fields": { + "id_car_serie": 63746, + "name": "3.5 (249 hp) Automatic transmission, Four-wheel drive", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250658, + "fields": { + "id_car_serie": 63746, + "name": "2.4 (188 hp)\tAutomatic transmission, front drive", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250659, + "fields": { + "id_car_serie": 63746, + "name": "2.4\t(188 hp) Automatic transmission, Four-wheel drive", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250660, + "fields": { + "id_car_serie": 63746, + "name": "3.5 (249 hp) MT, Gasoline", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250661, + "fields": { + "id_car_serie": 63747, + "name": "2.0 (190 hp) TFSI S tronic, Automatic transmission, front drive\t", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250662, + "fields": { + "id_car_serie": 63747, + "name": "2.0 (190 hp) TDI S tronic Quattro, Automatic transmission, Four-wheel drive, diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250663, + "fields": { + "id_car_serie": 63747, + "name": "2.0 (249 hp) TFSI S tronic Quattro, robot, Four-wheel drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250664, + "fields": { + "id_car_serie": 63748, + "name": "2.0 (180 hp) TFSI MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250665, + "fields": { + "id_car_serie": 63748, + "name": "2.0 (211 hp) TFSI quattro MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250666, + "fields": { + "id_car_serie": 63748, + "name": "2.0 (211 hp) TFSI quattro Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250667, + "fields": { + "id_car_serie": 63748, + "name": "3.2 (265 hp) FSI quattro Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250668, + "fields": { + "id_car_serie": 63748, + "name": "3.0 (240 hp) TDI quattro Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250669, + "fields": { + "id_car_serie": 63748, + "name": "1.8 (160 HP) TFSI MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250670, + "fields": { + "id_car_serie": 63748, + "name": "1.8 (160 hp) TFSI CVT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250671, + "fields": { + "id_car_serie": 63748, + "name": "2.0 (180 hp) TFSI CVT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250672, + "fields": { + "id_car_serie": 63748, + "name": "2.0 (211 hp) TFSI CVT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250673, + "fields": { + "id_car_serie": 63749, + "name": "3.0 (245 hp) TDI quattro Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250674, + "fields": { + "id_car_serie": 63749, + "name": "3.0 (272 hp) TFSI quattro Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250675, + "fields": { + "id_car_serie": 63749, + "name": "1.8 (170 hp) TFSI MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250676, + "fields": { + "id_car_serie": 63749, + "name": "1.8 (170 hp) TFSI CVT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250677, + "fields": { + "id_car_serie": 63749, + "name": "2.0 (230 hp) TFSI MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250678, + "fields": { + "id_car_serie": 63749, + "name": "2.0 (225 hp) TFSI CVT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250679, + "fields": { + "id_car_serie": 63749, + "name": "2.0 (225 hp) TFSI quattro MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250680, + "fields": { + "id_car_serie": 63749, + "name": "2.0 (225 hp) TFSI quattro Automatic transmission", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250681, + "fields": { + "id_car_serie": 63750, + "name": "4.0 (550 hp) gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2019, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250682, + "fields": { + "id_car_serie": 63751, + "name": "1.5 (150 hp) gasoline, robot, front drive", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250683, + "fields": { + "id_car_serie": 63752, + "name": "2.0 (252 hp) T-GDI", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250684, + "fields": { + "id_car_serie": 63752, + "name": "3.3 (370 hp) V6 Twin-Turbo GDI", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250685, + "fields": { + "id_car_serie": 63752, + "name": "2,2 (252 HP) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250686, + "fields": { + "id_car_serie": 63752, + "name": "3,0 (370 hp) diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250687, + "fields": { + "id_car_serie": 63753, + "name": "2,5 (304 HP)", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250688, + "fields": { + "id_car_serie": 63753, + "name": "3,5 (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250689, + "fields": { + "id_car_serie": 63753, + "name": "2,2 (210 hp) turbo-diesel", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250690, + "fields": { + "id_car_serie": 63754, + "name": "2.0 (150 hp) gasoline, MT, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250691, + "fields": { + "id_car_serie": 63754, + "name": "2.0 (177 hp) gasoline, MT, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250692, + "fields": { + "id_car_serie": 63755, + "name": "1.6 (121 hp) gasoline, MT, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250693, + "fields": { + "id_car_serie": 63755, + "name": "1.6 (121 hp) gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250694, + "fields": { + "id_car_serie": 63755, + "name": "1.6 (123 hp) gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250695, + "fields": { + "id_car_serie": 63755, + "name": "1.6 (123 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250696, + "fields": { + "id_car_serie": 63755, + "name": "2.0 (149 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250697, + "fields": { + "id_car_serie": 63755, + "name": "2.0 (149 hp) gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250698, + "fields": { + "id_car_serie": 63756, + "name": "1.4 (140 hp) gasoline, robot, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250699, + "fields": { + "id_car_serie": 63756, + "name": "1.6 (200 hp) gasoline, robot, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250700, + "fields": { + "id_car_serie": 63757, + "name": "1.3 (163 hp) gasoline, robot, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250701, + "fields": { + "id_car_serie": 63757, + "name": "2.0 (224 hp) gasoline, robot, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250702, + "fields": { + "id_car_serie": 63758, + "name": "3.0 (435 hp) Automatic transmission, Four-wheel drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250703, + "fields": { + "id_car_serie": 63758, + "name": "3.0 (367 HP) petrol, automatic transmission, all-wheel drive (4WD), hybrid", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250704, + "fields": { + "id_car_serie": 63758, + "name": "2.9 (330 hp) diesel, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250705, + "fields": { + "id_car_serie": 63758, + "name": "2.9 (249 hp) diesel, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250706, + "fields": { + "id_car_serie": 63759, + "name": "1.6 (117 hp) MT 2WD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250707, + "fields": { + "id_car_serie": 63759, + "name": "2.0 (150 hp) CVT 4WD", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250709, + "fields": { + "id_car_serie": 63761, + "name": "1.6 CVT (114 hp)", + "arabic_name": "-", + "start_production_year": 2020, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250710, + "fields": { + "id_car_serie": 63761, + "name": "1.6 (114 hp) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250711, + "fields": { + "id_car_serie": 63761, + "name": "1.3 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250712, + "fields": { + "id_car_serie": 63761, + "name": "1.3 CVT (150 hp) Four-wheel drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250715, + "fields": { + "id_car_serie": 64175, + "name": "1.3 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250716, + "fields": { + "id_car_serie": 64175, + "name": "2.0 AMT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250717, + "fields": { + "id_car_serie": 64175, + "name": "2.0 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250718, + "fields": { + "id_car_serie": 64175, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250719, + "fields": { + "id_car_serie": 64175, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250720, + "fields": { + "id_car_serie": 64175, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250721, + "fields": { + "id_car_serie": 64175, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250722, + "fields": { + "id_car_serie": 50628, + "name": "4.2 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250723, + "fields": { + "id_car_serie": 50628, + "name": "4.2 (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250724, + "fields": { + "id_car_serie": 50628, + "name": "4.2 (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250725, + "fields": { + "id_car_serie": 50628, + "name": "5.0 (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250726, + "fields": { + "id_car_serie": 50628, + "name": "5.0 (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250727, + "fields": { + "id_car_serie": 50628, + "name": "5.0 (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250728, + "fields": { + "id_car_serie": 50628, + "name": "5.0 (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250729, + "fields": { + "id_car_serie": 50628, + "name": "5.6 (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250730, + "fields": { + "id_car_serie": 50628, + "name": "5.6 (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250731, + "fields": { + "id_car_serie": 50628, + "name": "5.6 (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250732, + "fields": { + "id_car_serie": 50628, + "name": "5.6 (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250733, + "fields": { + "id_car_serie": 63155, + "name": "4.0 AT 4WD (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250734, + "fields": { + "id_car_serie": 63155, + "name": "6.0 (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250735, + "fields": { + "id_car_serie": 64183, + "name": "4.0 AT 4WD (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250736, + "fields": { + "id_car_serie": 64183, + "name": "6.0 AT (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250737, + "fields": { + "id_car_serie": 64184, + "name": "4.0 AT 4WD (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250738, + "fields": { + "id_car_serie": 64184, + "name": "6.0 AT (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250739, + "fields": { + "id_car_serie": 63160, + "name": "5.3 MT (32 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250740, + "fields": { + "id_car_serie": 50583, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250741, + "fields": { + "id_car_serie": 50583, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250742, + "fields": { + "id_car_serie": 50583, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250743, + "fields": { + "id_car_serie": 50583, + "name": "2.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250744, + "fields": { + "id_car_serie": 50583, + "name": "2.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250745, + "fields": { + "id_car_serie": 50583, + "name": "2.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250746, + "fields": { + "id_car_serie": 63161, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250747, + "fields": { + "id_car_serie": 50584, + "name": "3.0 MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250748, + "fields": { + "id_car_serie": 50585, + "name": "3.0 MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250749, + "fields": { + "id_car_serie": 50585, + "name": "3.0 MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250750, + "fields": { + "id_car_serie": 63162, + "name": "6.0 AT (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250751, + "fields": { + "id_car_serie": 63162, + "name": "6.2 AT (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250752, + "fields": { + "id_car_serie": 63162, + "name": "6.0 AT (670 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250753, + "fields": { + "id_car_serie": 64172, + "name": "3.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250754, + "fields": { + "id_car_serie": 64182, + "name": "6.0 AT (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250755, + "fields": { + "id_car_serie": 63163, + "name": "2.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250756, + "fields": { + "id_car_serie": 63163, + "name": "2.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250757, + "fields": { + "id_car_serie": 63163, + "name": "2.2 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250758, + "fields": { + "id_car_serie": 64185, + "name": "2.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250759, + "fields": { + "id_car_serie": 64185, + "name": "2.4 AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250760, + "fields": { + "id_car_serie": 64185, + "name": "2.4 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250761, + "fields": { + "id_car_serie": 64185, + "name": "2.4 AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250762, + "fields": { + "id_car_serie": 64185, + "name": "2.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250763, + "fields": { + "id_car_serie": 64185, + "name": "2.4 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250764, + "fields": { + "id_car_serie": 64185, + "name": "3.0 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250765, + "fields": { + "id_car_serie": 64185, + "name": "3.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250766, + "fields": { + "id_car_serie": 64185, + "name": "3.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250767, + "fields": { + "id_car_serie": 64185, + "name": "3.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250768, + "fields": { + "id_car_serie": 64185, + "name": "3.0 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250769, + "fields": { + "id_car_serie": 64185, + "name": "3.0 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250770, + "fields": { + "id_car_serie": 64185, + "name": "2.5 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250771, + "fields": { + "id_car_serie": 64185, + "name": "2.5 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250772, + "fields": { + "id_car_serie": 64185, + "name": "2.5 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250773, + "fields": { + "id_car_serie": 64185, + "name": "2.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250774, + "fields": { + "id_car_serie": 64186, + "name": "2.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250775, + "fields": { + "id_car_serie": 64186, + "name": "2.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250776, + "fields": { + "id_car_serie": 64186, + "name": "2.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250777, + "fields": { + "id_car_serie": 64186, + "name": "2.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250778, + "fields": { + "id_car_serie": 64186, + "name": "2.8 MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250779, + "fields": { + "id_car_serie": 64186, + "name": "2.8 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250780, + "fields": { + "id_car_serie": 63164, + "name": "3.2 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250781, + "fields": { + "id_car_serie": 63164, + "name": "3.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250782, + "fields": { + "id_car_serie": 64188, + "name": "3.2 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250783, + "fields": { + "id_car_serie": 64188, + "name": "3.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250784, + "fields": { + "id_car_serie": 64189, + "name": "3.2 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250785, + "fields": { + "id_car_serie": 64189, + "name": "3.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250786, + "fields": { + "id_car_serie": 63165, + "name": "3.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250787, + "fields": { + "id_car_serie": 63165, + "name": "3.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250788, + "fields": { + "id_car_serie": 63165, + "name": "3.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250789, + "fields": { + "id_car_serie": 64190, + "name": "3.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250790, + "fields": { + "id_car_serie": 64190, + "name": "3.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250791, + "fields": { + "id_car_serie": 64190, + "name": "3.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250792, + "fields": { + "id_car_serie": 64191, + "name": "3.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250793, + "fields": { + "id_car_serie": 64191, + "name": "3.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250794, + "fields": { + "id_car_serie": 64191, + "name": "3.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250795, + "fields": { + "id_car_serie": 63166, + "name": "1.8 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250796, + "fields": { + "id_car_serie": 63167, + "name": "5.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250797, + "fields": { + "id_car_serie": 63167, + "name": "5.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250801, + "fields": { + "id_car_serie": 8863, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250803, + "fields": { + "id_car_serie": 8863, + "name": "1.8 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250804, + "fields": { + "id_car_serie": 8863, + "name": "2.3 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250805, + "fields": { + "id_car_serie": 64193, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250806, + "fields": { + "id_car_serie": 64193, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250807, + "fields": { + "id_car_serie": 64193, + "name": "1.6 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250808, + "fields": { + "id_car_serie": 64193, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250809, + "fields": { + "id_car_serie": 64193, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250810, + "fields": { + "id_car_serie": 64193, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250811, + "fields": { + "id_car_serie": 64193, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250812, + "fields": { + "id_car_serie": 64193, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250813, + "fields": { + "id_car_serie": 64193, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250814, + "fields": { + "id_car_serie": 64193, + "name": "1.9 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250815, + "fields": { + "id_car_serie": 64193, + "name": "1.9 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250816, + "fields": { + "id_car_serie": 64194, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250817, + "fields": { + "id_car_serie": 64194, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250818, + "fields": { + "id_car_serie": 64194, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250819, + "fields": { + "id_car_serie": 64194, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250820, + "fields": { + "id_car_serie": 64194, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250821, + "fields": { + "id_car_serie": 64194, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250822, + "fields": { + "id_car_serie": 64194, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250823, + "fields": { + "id_car_serie": 64194, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250824, + "fields": { + "id_car_serie": 64194, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250825, + "fields": { + "id_car_serie": 64194, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250826, + "fields": { + "id_car_serie": 64195, + "name": "1.3 CVT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250827, + "fields": { + "id_car_serie": 64195, + "name": "1.3 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250828, + "fields": { + "id_car_serie": 64195, + "name": "1.5 CVT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250829, + "fields": { + "id_car_serie": 64195, + "name": "1.5 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250830, + "fields": { + "id_car_serie": 64195, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250831, + "fields": { + "id_car_serie": 64195, + "name": "1.5 CVT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250832, + "fields": { + "id_car_serie": 64195, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250833, + "fields": { + "id_car_serie": 64195, + "name": "1.5 CVT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250834, + "fields": { + "id_car_serie": 64196, + "name": "1.1 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250835, + "fields": { + "id_car_serie": 64196, + "name": "1.3 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250836, + "fields": { + "id_car_serie": 64196, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250837, + "fields": { + "id_car_serie": 64196, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250838, + "fields": { + "id_car_serie": 64196, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250839, + "fields": { + "id_car_serie": 64196, + "name": "1.5 AMT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250840, + "fields": { + "id_car_serie": 64196, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250841, + "fields": { + "id_car_serie": 64196, + "name": "1.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250842, + "fields": { + "id_car_serie": 64196, + "name": "1.5 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250843, + "fields": { + "id_car_serie": 64196, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250844, + "fields": { + "id_car_serie": 64197, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250845, + "fields": { + "id_car_serie": 64197, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250846, + "fields": { + "id_car_serie": 64197, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250847, + "fields": { + "id_car_serie": 64197, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250848, + "fields": { + "id_car_serie": 64198, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250849, + "fields": { + "id_car_serie": 64198, + "name": "1.3 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250850, + "fields": { + "id_car_serie": 64198, + "name": "1.5 AMT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250851, + "fields": { + "id_car_serie": 64198, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250852, + "fields": { + "id_car_serie": 64198, + "name": "1.1 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250853, + "fields": { + "id_car_serie": 64198, + "name": "1.3 CVT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250854, + "fields": { + "id_car_serie": 64198, + "name": "1.3 CVT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250855, + "fields": { + "id_car_serie": 64198, + "name": "1.3 CVT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250856, + "fields": { + "id_car_serie": 64198, + "name": "1.5 CVT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250857, + "fields": { + "id_car_serie": 64198, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250858, + "fields": { + "id_car_serie": 64198, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250859, + "fields": { + "id_car_serie": 64198, + "name": "1.5 CVT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250860, + "fields": { + "id_car_serie": 64198, + "name": "1.5 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250861, + "fields": { + "id_car_serie": 64198, + "name": "1.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250862, + "fields": { + "id_car_serie": 64198, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250863, + "fields": { + "id_car_serie": 64198, + "name": "1.5 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250864, + "fields": { + "id_car_serie": 64199, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250865, + "fields": { + "id_car_serie": 64199, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250866, + "fields": { + "id_car_serie": 64199, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250867, + "fields": { + "id_car_serie": 64199, + "name": "1.3 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250868, + "fields": { + "id_car_serie": 64199, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250869, + "fields": { + "id_car_serie": 64199, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250870, + "fields": { + "id_car_serie": 64199, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250871, + "fields": { + "id_car_serie": 64199, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250872, + "fields": { + "id_car_serie": 64200, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250873, + "fields": { + "id_car_serie": 64200, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250874, + "fields": { + "id_car_serie": 64200, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250875, + "fields": { + "id_car_serie": 64200, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250876, + "fields": { + "id_car_serie": 64200, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250877, + "fields": { + "id_car_serie": 64200, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250878, + "fields": { + "id_car_serie": 64200, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250879, + "fields": { + "id_car_serie": 64201, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250880, + "fields": { + "id_car_serie": 64201, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250881, + "fields": { + "id_car_serie": 64201, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250882, + "fields": { + "id_car_serie": 64201, + "name": "1.5 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250883, + "fields": { + "id_car_serie": 64201, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250884, + "fields": { + "id_car_serie": 64201, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250885, + "fields": { + "id_car_serie": 64201, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250886, + "fields": { + "id_car_serie": 64201, + "name": "1.8 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250887, + "fields": { + "id_car_serie": 64201, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250888, + "fields": { + "id_car_serie": 64201, + "name": "1.8 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250889, + "fields": { + "id_car_serie": 64202, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250890, + "fields": { + "id_car_serie": 64202, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250891, + "fields": { + "id_car_serie": 64202, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250892, + "fields": { + "id_car_serie": 64202, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250893, + "fields": { + "id_car_serie": 64202, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250894, + "fields": { + "id_car_serie": 64202, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250895, + "fields": { + "id_car_serie": 64202, + "name": "1.8 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250896, + "fields": { + "id_car_serie": 64202, + "name": "1.8 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250897, + "fields": { + "id_car_serie": 64203, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250898, + "fields": { + "id_car_serie": 64203, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250899, + "fields": { + "id_car_serie": 64203, + "name": "1.4 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250900, + "fields": { + "id_car_serie": 64204, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250901, + "fields": { + "id_car_serie": 64204, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250902, + "fields": { + "id_car_serie": 64204, + "name": "1.4 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250904, + "fields": { + "id_car_serie": 64206, + "name": "1.3 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250905, + "fields": { + "id_car_serie": 64206, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250906, + "fields": { + "id_car_serie": 64206, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250907, + "fields": { + "id_car_serie": 64206, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250908, + "fields": { + "id_car_serie": 63178, + "name": "1.8 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250909, + "fields": { + "id_car_serie": 63178, + "name": "1.8 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250910, + "fields": { + "id_car_serie": 63178, + "name": "2.0 CVT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250911, + "fields": { + "id_car_serie": 63178, + "name": "2.0 CVT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250912, + "fields": { + "id_car_serie": 64207, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250913, + "fields": { + "id_car_serie": 64207, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250914, + "fields": { + "id_car_serie": 64207, + "name": "2.4 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250915, + "fields": { + "id_car_serie": 64207, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250916, + "fields": { + "id_car_serie": 64207, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250917, + "fields": { + "id_car_serie": 64207, + "name": "2.5 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250918, + "fields": { + "id_car_serie": 64207, + "name": "2.5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250919, + "fields": { + "id_car_serie": 64207, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250920, + "fields": { + "id_car_serie": 64208, + "name": "2.5 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250921, + "fields": { + "id_car_serie": 64208, + "name": "2.5 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250922, + "fields": { + "id_car_serie": 64209, + "name": "2.4 MT 4WD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250923, + "fields": { + "id_car_serie": 64209, + "name": "2.5 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250924, + "fields": { + "id_car_serie": 64209, + "name": "2.5 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250925, + "fields": { + "id_car_serie": 64210, + "name": "2.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250926, + "fields": { + "id_car_serie": 64210, + "name": "2.4 MT 4WD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250927, + "fields": { + "id_car_serie": 64210, + "name": "2.5 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250928, + "fields": { + "id_car_serie": 64210, + "name": "2.5 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250929, + "fields": { + "id_car_serie": 64210, + "name": "2.5 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250930, + "fields": { + "id_car_serie": 64210, + "name": "2.5 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250931, + "fields": { + "id_car_serie": 64210, + "name": "2.5 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250932, + "fields": { + "id_car_serie": 64210, + "name": "2.5 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250933, + "fields": { + "id_car_serie": 64211, + "name": "2.0 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250934, + "fields": { + "id_car_serie": 64211, + "name": "2.4 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250935, + "fields": { + "id_car_serie": 64211, + "name": "2.6 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250936, + "fields": { + "id_car_serie": 64211, + "name": "3.0 MT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250937, + "fields": { + "id_car_serie": 64211, + "name": "2.5 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250938, + "fields": { + "id_car_serie": 64211, + "name": "2.5 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250939, + "fields": { + "id_car_serie": 64212, + "name": "2.0 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250940, + "fields": { + "id_car_serie": 64212, + "name": "2.4 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250941, + "fields": { + "id_car_serie": 64212, + "name": "2.6 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250942, + "fields": { + "id_car_serie": 64212, + "name": "3.0 MT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250943, + "fields": { + "id_car_serie": 64212, + "name": "2.5 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250944, + "fields": { + "id_car_serie": 64212, + "name": "2.5 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250945, + "fields": { + "id_car_serie": 64213, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250946, + "fields": { + "id_car_serie": 64213, + "name": "1.6 MT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250947, + "fields": { + "id_car_serie": 64213, + "name": "1.6 AT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250948, + "fields": { + "id_car_serie": 64213, + "name": "2.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250949, + "fields": { + "id_car_serie": 64214, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250950, + "fields": { + "id_car_serie": 64214, + "name": "1.3 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250951, + "fields": { + "id_car_serie": 64214, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250952, + "fields": { + "id_car_serie": 64214, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250953, + "fields": { + "id_car_serie": 64214, + "name": "1.5 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250954, + "fields": { + "id_car_serie": 64214, + "name": "1.5 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250955, + "fields": { + "id_car_serie": 64214, + "name": "1.5 MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250956, + "fields": { + "id_car_serie": 64214, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250957, + "fields": { + "id_car_serie": 64214, + "name": "1.5 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250958, + "fields": { + "id_car_serie": 64214, + "name": "1.5 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250959, + "fields": { + "id_car_serie": 64214, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250960, + "fields": { + "id_car_serie": 64214, + "name": "1.5 AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250961, + "fields": { + "id_car_serie": 64214, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250962, + "fields": { + "id_car_serie": 64214, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250963, + "fields": { + "id_car_serie": 64214, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250964, + "fields": { + "id_car_serie": 64214, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250965, + "fields": { + "id_car_serie": 64214, + "name": "1.6 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250966, + "fields": { + "id_car_serie": 64214, + "name": "1.6 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250967, + "fields": { + "id_car_serie": 64214, + "name": "1.6 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250968, + "fields": { + "id_car_serie": 64214, + "name": "1.6 MT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250969, + "fields": { + "id_car_serie": 64214, + "name": "1.6 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250970, + "fields": { + "id_car_serie": 64214, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250971, + "fields": { + "id_car_serie": 64214, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250972, + "fields": { + "id_car_serie": 64214, + "name": "1.8 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250973, + "fields": { + "id_car_serie": 64214, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250974, + "fields": { + "id_car_serie": 64214, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250975, + "fields": { + "id_car_serie": 64214, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250976, + "fields": { + "id_car_serie": 64214, + "name": "1.8 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250977, + "fields": { + "id_car_serie": 64214, + "name": "1.8 AT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250978, + "fields": { + "id_car_serie": 64214, + "name": "1.8 MT 4WD (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250979, + "fields": { + "id_car_serie": 64214, + "name": "1.8 MT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250980, + "fields": { + "id_car_serie": 64215, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250981, + "fields": { + "id_car_serie": 64215, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250982, + "fields": { + "id_car_serie": 64215, + "name": "1.3 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250983, + "fields": { + "id_car_serie": 64215, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250984, + "fields": { + "id_car_serie": 64215, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250985, + "fields": { + "id_car_serie": 64215, + "name": "1.5 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250986, + "fields": { + "id_car_serie": 64215, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250987, + "fields": { + "id_car_serie": 64215, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250988, + "fields": { + "id_car_serie": 64215, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250989, + "fields": { + "id_car_serie": 64215, + "name": "1.8 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250990, + "fields": { + "id_car_serie": 64216, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250991, + "fields": { + "id_car_serie": 64216, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250992, + "fields": { + "id_car_serie": 64216, + "name": "1.5 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250993, + "fields": { + "id_car_serie": 64216, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250994, + "fields": { + "id_car_serie": 64216, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250995, + "fields": { + "id_car_serie": 64216, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250996, + "fields": { + "id_car_serie": 64216, + "name": "1.5 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250997, + "fields": { + "id_car_serie": 64216, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250998, + "fields": { + "id_car_serie": 64216, + "name": "1.8 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 250999, + "fields": { + "id_car_serie": 64216, + "name": "1.8 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251000, + "fields": { + "id_car_serie": 64216, + "name": "1.8 AT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251001, + "fields": { + "id_car_serie": 64216, + "name": "1.8 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251002, + "fields": { + "id_car_serie": 64216, + "name": "1.8 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251003, + "fields": { + "id_car_serie": 64216, + "name": "1.8 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251004, + "fields": { + "id_car_serie": 64217, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251005, + "fields": { + "id_car_serie": 64217, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251006, + "fields": { + "id_car_serie": 64217, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251007, + "fields": { + "id_car_serie": 64217, + "name": "1.5 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251008, + "fields": { + "id_car_serie": 64217, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251009, + "fields": { + "id_car_serie": 64217, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251010, + "fields": { + "id_car_serie": 64217, + "name": "1.8 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251011, + "fields": { + "id_car_serie": 64217, + "name": "1.8 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251012, + "fields": { + "id_car_serie": 64218, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251013, + "fields": { + "id_car_serie": 64218, + "name": "1.2 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251014, + "fields": { + "id_car_serie": 64218, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251015, + "fields": { + "id_car_serie": 64218, + "name": "1.4 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251016, + "fields": { + "id_car_serie": 64218, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251017, + "fields": { + "id_car_serie": 64218, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251018, + "fields": { + "id_car_serie": 64218, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251019, + "fields": { + "id_car_serie": 64218, + "name": "1.6 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251020, + "fields": { + "id_car_serie": 64218, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251021, + "fields": { + "id_car_serie": 64218, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251022, + "fields": { + "id_car_serie": 64219, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251023, + "fields": { + "id_car_serie": 64219, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251024, + "fields": { + "id_car_serie": 64219, + "name": "1.4 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251025, + "fields": { + "id_car_serie": 64220, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251026, + "fields": { + "id_car_serie": 64220, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251027, + "fields": { + "id_car_serie": 64221, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251028, + "fields": { + "id_car_serie": 64221, + "name": "1.2 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251029, + "fields": { + "id_car_serie": 64221, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251030, + "fields": { + "id_car_serie": 64221, + "name": "1.4 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251031, + "fields": { + "id_car_serie": 64221, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251032, + "fields": { + "id_car_serie": 64221, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251033, + "fields": { + "id_car_serie": 64222, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251034, + "fields": { + "id_car_serie": 64222, + "name": "1.3 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251035, + "fields": { + "id_car_serie": 64222, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251036, + "fields": { + "id_car_serie": 64222, + "name": "1.3 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251037, + "fields": { + "id_car_serie": 64222, + "name": "1.5 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251038, + "fields": { + "id_car_serie": 64222, + "name": "1.5 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251039, + "fields": { + "id_car_serie": 64222, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251040, + "fields": { + "id_car_serie": 64222, + "name": "1.5 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251041, + "fields": { + "id_car_serie": 64222, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251042, + "fields": { + "id_car_serie": 64222, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251043, + "fields": { + "id_car_serie": 64222, + "name": "1.5 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251044, + "fields": { + "id_car_serie": 64222, + "name": "1.5 AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251045, + "fields": { + "id_car_serie": 64222, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251046, + "fields": { + "id_car_serie": 64222, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251047, + "fields": { + "id_car_serie": 64222, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251048, + "fields": { + "id_car_serie": 64222, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251049, + "fields": { + "id_car_serie": 64222, + "name": "1.6 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251050, + "fields": { + "id_car_serie": 64222, + "name": "1.6 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251051, + "fields": { + "id_car_serie": 64222, + "name": "1.6 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251052, + "fields": { + "id_car_serie": 64222, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251053, + "fields": { + "id_car_serie": 64222, + "name": "1.6 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251054, + "fields": { + "id_car_serie": 64223, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251055, + "fields": { + "id_car_serie": 64223, + "name": "1.3 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251056, + "fields": { + "id_car_serie": 64223, + "name": "1.3 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251057, + "fields": { + "id_car_serie": 64223, + "name": "1.3 AT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251058, + "fields": { + "id_car_serie": 64223, + "name": "1.5 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251059, + "fields": { + "id_car_serie": 64223, + "name": "1.5 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251060, + "fields": { + "id_car_serie": 64223, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251061, + "fields": { + "id_car_serie": 64223, + "name": "1.5 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251062, + "fields": { + "id_car_serie": 64223, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251063, + "fields": { + "id_car_serie": 64223, + "name": "1.5 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251064, + "fields": { + "id_car_serie": 64223, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251065, + "fields": { + "id_car_serie": 64223, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251066, + "fields": { + "id_car_serie": 64223, + "name": "1.8 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251067, + "fields": { + "id_car_serie": 64224, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251068, + "fields": { + "id_car_serie": 64224, + "name": "1.3 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251069, + "fields": { + "id_car_serie": 64224, + "name": "1.3 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251070, + "fields": { + "id_car_serie": 64224, + "name": "1.3 AT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251071, + "fields": { + "id_car_serie": 64224, + "name": "1.5 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251072, + "fields": { + "id_car_serie": 64224, + "name": "1.5 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251073, + "fields": { + "id_car_serie": 64224, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251074, + "fields": { + "id_car_serie": 64224, + "name": "1.5 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251075, + "fields": { + "id_car_serie": 64224, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251076, + "fields": { + "id_car_serie": 64224, + "name": "1.5 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251077, + "fields": { + "id_car_serie": 64224, + "name": "1.8 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251078, + "fields": { + "id_car_serie": 64224, + "name": "1.8 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251079, + "fields": { + "id_car_serie": 64225, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251080, + "fields": { + "id_car_serie": 64225, + "name": "1.3 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251081, + "fields": { + "id_car_serie": 64225, + "name": "1.3 AT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251082, + "fields": { + "id_car_serie": 64225, + "name": "1.5 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251083, + "fields": { + "id_car_serie": 64225, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251084, + "fields": { + "id_car_serie": 64225, + "name": "1.5 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251085, + "fields": { + "id_car_serie": 64225, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251086, + "fields": { + "id_car_serie": 64225, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251087, + "fields": { + "id_car_serie": 64225, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251088, + "fields": { + "id_car_serie": 64226, + "name": "1.2 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251089, + "fields": { + "id_car_serie": 64226, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251090, + "fields": { + "id_car_serie": 64226, + "name": "1.4 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251091, + "fields": { + "id_car_serie": 64226, + "name": "1.4 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251092, + "fields": { + "id_car_serie": 64227, + "name": "1.2 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251093, + "fields": { + "id_car_serie": 64227, + "name": "1.2 AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251094, + "fields": { + "id_car_serie": 64227, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251095, + "fields": { + "id_car_serie": 64227, + "name": "1.4 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251096, + "fields": { + "id_car_serie": 64227, + "name": "1.4 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251097, + "fields": { + "id_car_serie": 64227, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251098, + "fields": { + "id_car_serie": 64228, + "name": "1.2 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251099, + "fields": { + "id_car_serie": 64228, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251100, + "fields": { + "id_car_serie": 64228, + "name": "1.4 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251101, + "fields": { + "id_car_serie": 64228, + "name": "1.4 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251102, + "fields": { + "id_car_serie": 64228, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251103, + "fields": { + "id_car_serie": 64229, + "name": "3.2 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251104, + "fields": { + "id_car_serie": 64229, + "name": "3.2 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251105, + "fields": { + "id_car_serie": 64229, + "name": "3.2 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251106, + "fields": { + "id_car_serie": 64229, + "name": "3.2 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251107, + "fields": { + "id_car_serie": 64229, + "name": "3.5 AT 4WD (189 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251108, + "fields": { + "id_car_serie": 64229, + "name": "3.8 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251109, + "fields": { + "id_car_serie": 64230, + "name": "3.0 AT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251110, + "fields": { + "id_car_serie": 64230, + "name": "3.0 MT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251111, + "fields": { + "id_car_serie": 64230, + "name": "3.8 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251112, + "fields": { + "id_car_serie": 64230, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251113, + "fields": { + "id_car_serie": 64230, + "name": "3.5 AT 4WD (189 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251114, + "fields": { + "id_car_serie": 64230, + "name": "3.5 MT 4WD (189 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251115, + "fields": { + "id_car_serie": 64230, + "name": "3.2 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251116, + "fields": { + "id_car_serie": 64230, + "name": "2.5 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251117, + "fields": { + "id_car_serie": 64230, + "name": "2.5 AT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251118, + "fields": { + "id_car_serie": 64230, + "name": "2.5 MT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251119, + "fields": { + "id_car_serie": 64230, + "name": "3.2 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251120, + "fields": { + "id_car_serie": 64230, + "name": "3.2 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251121, + "fields": { + "id_car_serie": 64230, + "name": "3.2 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251122, + "fields": { + "id_car_serie": 48618, + "name": "2.3 MT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251123, + "fields": { + "id_car_serie": 48618, + "name": "2.5 MT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251124, + "fields": { + "id_car_serie": 48618, + "name": "2.5 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251125, + "fields": { + "id_car_serie": 48618, + "name": "2.5 AT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251126, + "fields": { + "id_car_serie": 48618, + "name": "2.5 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251127, + "fields": { + "id_car_serie": 48618, + "name": "2.5 AT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251128, + "fields": { + "id_car_serie": 48618, + "name": "2.5 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251129, + "fields": { + "id_car_serie": 48618, + "name": "2.5 AT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251130, + "fields": { + "id_car_serie": 48618, + "name": "3.0 MT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251131, + "fields": { + "id_car_serie": 48618, + "name": "3.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251132, + "fields": { + "id_car_serie": 64232, + "name": "2.4 AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251133, + "fields": { + "id_car_serie": 64232, + "name": "2.4 AT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251134, + "fields": { + "id_car_serie": 64232, + "name": "2.4 MT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251135, + "fields": { + "id_car_serie": 64233, + "name": "1.8 CVT 4WD (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251136, + "fields": { + "id_car_serie": 64234, + "name": "1.8 CVT 4WD (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251137, + "fields": { + "id_car_serie": 64235, + "name": "1.8 CVT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251138, + "fields": { + "id_car_serie": 64235, + "name": "1.8 CVT 4WD (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251139, + "fields": { + "id_car_serie": 64236, + "name": "2.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251140, + "fields": { + "id_car_serie": 64236, + "name": "2.0 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251141, + "fields": { + "id_car_serie": 64237, + "name": "1.0 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251142, + "fields": { + "id_car_serie": 64237, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251143, + "fields": { + "id_car_serie": 64237, + "name": "1.2 CVT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251147, + "fields": { + "id_car_serie": 63168, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251148, + "fields": { + "id_car_serie": 63168, + "name": "2.4 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251149, + "fields": { + "id_car_serie": 63168, + "name": "2.4 MT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251150, + "fields": { + "id_car_serie": 63168, + "name": "2.4 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251151, + "fields": { + "id_car_serie": 63168, + "name": "2.4 AT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251152, + "fields": { + "id_car_serie": 63168, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251153, + "fields": { + "id_car_serie": 63168, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251154, + "fields": { + "id_car_serie": 63168, + "name": "2.4 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251155, + "fields": { + "id_car_serie": 63168, + "name": "2.4 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251156, + "fields": { + "id_car_serie": 63168, + "name": "3.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251157, + "fields": { + "id_car_serie": 63168, + "name": "3.0 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251158, + "fields": { + "id_car_serie": 63169, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251159, + "fields": { + "id_car_serie": 63169, + "name": "2.0 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251160, + "fields": { + "id_car_serie": 63169, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251161, + "fields": { + "id_car_serie": 63169, + "name": "1.8 MT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251162, + "fields": { + "id_car_serie": 63169, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251163, + "fields": { + "id_car_serie": 63169, + "name": "1.8 AT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251164, + "fields": { + "id_car_serie": 63169, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251165, + "fields": { + "id_car_serie": 63169, + "name": "2.0 MT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251166, + "fields": { + "id_car_serie": 63169, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251167, + "fields": { + "id_car_serie": 63169, + "name": "2.0 AT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251168, + "fields": { + "id_car_serie": 63170, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251169, + "fields": { + "id_car_serie": 63170, + "name": "1.8 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251170, + "fields": { + "id_car_serie": 63170, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251171, + "fields": { + "id_car_serie": 63170, + "name": "1.8 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251172, + "fields": { + "id_car_serie": 63170, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251173, + "fields": { + "id_car_serie": 63170, + "name": "1.8 MT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251174, + "fields": { + "id_car_serie": 63170, + "name": "1.8 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251175, + "fields": { + "id_car_serie": 63170, + "name": "1.8 AT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251176, + "fields": { + "id_car_serie": 63170, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251177, + "fields": { + "id_car_serie": 63170, + "name": "2.0 MT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251178, + "fields": { + "id_car_serie": 63170, + "name": "2.0 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251179, + "fields": { + "id_car_serie": 63170, + "name": "2.0 AT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251180, + "fields": { + "id_car_serie": 63170, + "name": "2.0 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251181, + "fields": { + "id_car_serie": 63170, + "name": "2.0 AT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251182, + "fields": { + "id_car_serie": 63170, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251183, + "fields": { + "id_car_serie": 63171, + "name": "3.0 MT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251184, + "fields": { + "id_car_serie": 63171, + "name": "3.0 MT 4WD (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251185, + "fields": { + "id_car_serie": 64238, + "name": "0.5 MT (21 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251186, + "fields": { + "id_car_serie": 63172, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251187, + "fields": { + "id_car_serie": 63172, + "name": "0.7 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251188, + "fields": { + "id_car_serie": 63172, + "name": "0.7 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251189, + "fields": { + "id_car_serie": 63173, + "name": "1.2 CVT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251190, + "fields": { + "id_car_serie": 63174, + "name": "1.2 CVT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251191, + "fields": { + "id_car_serie": 63174, + "name": "1.2 CVT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251192, + "fields": { + "id_car_serie": 63175, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251193, + "fields": { + "id_car_serie": 63176, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251194, + "fields": { + "id_car_serie": 63176, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251195, + "fields": { + "id_car_serie": 63176, + "name": "2.4 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251196, + "fields": { + "id_car_serie": 63176, + "name": "2.4 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251197, + "fields": { + "id_car_serie": 63176, + "name": "2.3 AT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251198, + "fields": { + "id_car_serie": 63177, + "name": "3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251199, + "fields": { + "id_car_serie": 63179, + "name": "0.7 AT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251200, + "fields": { + "id_car_serie": 63179, + "name": "0.7 (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251201, + "fields": { + "id_car_serie": 64239, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251202, + "fields": { + "id_car_serie": 64239, + "name": "0.7 AT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251203, + "fields": { + "id_car_serie": 64240, + "name": "0.7 CVT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251204, + "fields": { + "id_car_serie": 64240, + "name": "0.7 CVT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251205, + "fields": { + "id_car_serie": 64240, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251206, + "fields": { + "id_car_serie": 64240, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251207, + "fields": { + "id_car_serie": 64241, + "name": "0.7 CVT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251208, + "fields": { + "id_car_serie": 64241, + "name": "0.7 CVT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251209, + "fields": { + "id_car_serie": 64241, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251210, + "fields": { + "id_car_serie": 64241, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251211, + "fields": { + "id_car_serie": 64242, + "name": "0.7 CVT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251212, + "fields": { + "id_car_serie": 64242, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251213, + "fields": { + "id_car_serie": 64243, + "name": "0.7 CVT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251214, + "fields": { + "id_car_serie": 64243, + "name": "0.7 CVT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251215, + "fields": { + "id_car_serie": 64243, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251216, + "fields": { + "id_car_serie": 64243, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251217, + "fields": { + "id_car_serie": 64244, + "name": "0.7 AT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251218, + "fields": { + "id_car_serie": 64244, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251219, + "fields": { + "id_car_serie": 64245, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251220, + "fields": { + "id_car_serie": 64245, + "name": "0.7 AT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251221, + "fields": { + "id_car_serie": 64245, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251222, + "fields": { + "id_car_serie": 64245, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251223, + "fields": { + "id_car_serie": 63806, + "name": "0.7 CVT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251224, + "fields": { + "id_car_serie": 63806, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251225, + "fields": { + "id_car_serie": 63807, + "name": "0.7 CVT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251226, + "fields": { + "id_car_serie": 63807, + "name": "0.7 CVT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251227, + "fields": { + "id_car_serie": 63808, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251228, + "fields": { + "id_car_serie": 63808, + "name": "0.7 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251229, + "fields": { + "id_car_serie": 63808, + "name": "0.7 AT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251230, + "fields": { + "id_car_serie": 64246, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251231, + "fields": { + "id_car_serie": 64246, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251232, + "fields": { + "id_car_serie": 64246, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251233, + "fields": { + "id_car_serie": 64246, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251234, + "fields": { + "id_car_serie": 64246, + "name": "2.0 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251235, + "fields": { + "id_car_serie": 64246, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251236, + "fields": { + "id_car_serie": 64246, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251237, + "fields": { + "id_car_serie": 64246, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251238, + "fields": { + "id_car_serie": 64246, + "name": "2.4 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251239, + "fields": { + "id_car_serie": 64246, + "name": "2.4 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251240, + "fields": { + "id_car_serie": 64246, + "name": "1.8 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251241, + "fields": { + "id_car_serie": 64246, + "name": "1.8 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251242, + "fields": { + "id_car_serie": 63180, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251243, + "fields": { + "id_car_serie": 63180, + "name": "2.0 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251244, + "fields": { + "id_car_serie": 63180, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251245, + "fields": { + "id_car_serie": 63180, + "name": "2.5 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251246, + "fields": { + "id_car_serie": 63181, + "name": "1.8 CVT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251247, + "fields": { + "id_car_serie": 63181, + "name": "2.0 (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251248, + "fields": { + "id_car_serie": 63181, + "name": "2.0 (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251249, + "fields": { + "id_car_serie": 63182, + "name": "2.0 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251250, + "fields": { + "id_car_serie": 63182, + "name": "2.4 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251251, + "fields": { + "id_car_serie": 63182, + "name": "2.5 (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251252, + "fields": { + "id_car_serie": 63182, + "name": "2.5 (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251253, + "fields": { + "id_car_serie": 63183, + "name": "2.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251254, + "fields": { + "id_car_serie": 63184, + "name": "2.4 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251255, + "fields": { + "id_car_serie": 63184, + "name": "2.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251256, + "fields": { + "id_car_serie": 63184, + "name": "2.5 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251257, + "fields": { + "id_car_serie": 63185, + "name": "2.5 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251258, + "fields": { + "id_car_serie": 63185, + "name": "3.7 (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251259, + "fields": { + "id_car_serie": 63186, + "name": "2.4 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251260, + "fields": { + "id_car_serie": 64247, + "name": "2.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251261, + "fields": { + "id_car_serie": 64247, + "name": "2.5 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251262, + "fields": { + "id_car_serie": 64247, + "name": "2.5 AT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251263, + "fields": { + "id_car_serie": 64248, + "name": "3.5 AT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251264, + "fields": { + "id_car_serie": 64248, + "name": "3.5 AT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251265, + "fields": { + "id_car_serie": 64249, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251266, + "fields": { + "id_car_serie": 64249, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251267, + "fields": { + "id_car_serie": 63790, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251268, + "fields": { + "id_car_serie": 63790, + "name": "1.3 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251269, + "fields": { + "id_car_serie": 63790, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251270, + "fields": { + "id_car_serie": 63790, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251271, + "fields": { + "id_car_serie": 63790, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251272, + "fields": { + "id_car_serie": 63790, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251273, + "fields": { + "id_car_serie": 63790, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251274, + "fields": { + "id_car_serie": 63790, + "name": "1.8 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251275, + "fields": { + "id_car_serie": 63790, + "name": "1.8 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251276, + "fields": { + "id_car_serie": 63790, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251277, + "fields": { + "id_car_serie": 63790, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251278, + "fields": { + "id_car_serie": 63790, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251279, + "fields": { + "id_car_serie": 63790, + "name": "2.0 CVT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251280, + "fields": { + "id_car_serie": 63790, + "name": "1.7 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251281, + "fields": { + "id_car_serie": 63790, + "name": "1.7 MT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251282, + "fields": { + "id_car_serie": 63790, + "name": "1.7 AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251283, + "fields": { + "id_car_serie": 63790, + "name": "2.0 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251284, + "fields": { + "id_car_serie": 63790, + "name": "2.0 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251285, + "fields": { + "id_car_serie": 63790, + "name": "2.0 MT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251286, + "fields": { + "id_car_serie": 63791, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251287, + "fields": { + "id_car_serie": 63791, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251288, + "fields": { + "id_car_serie": 63792, + "name": "1.3 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251289, + "fields": { + "id_car_serie": 63792, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251290, + "fields": { + "id_car_serie": 63792, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251291, + "fields": { + "id_car_serie": 63792, + "name": "1.5 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251292, + "fields": { + "id_car_serie": 63792, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251293, + "fields": { + "id_car_serie": 63792, + "name": "1.5 AT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251294, + "fields": { + "id_car_serie": 63792, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251295, + "fields": { + "id_car_serie": 63792, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251296, + "fields": { + "id_car_serie": 63792, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251297, + "fields": { + "id_car_serie": 63792, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251298, + "fields": { + "id_car_serie": 63792, + "name": "1.7 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251299, + "fields": { + "id_car_serie": 63792, + "name": "1.7 AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251300, + "fields": { + "id_car_serie": 63792, + "name": "2.0 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251301, + "fields": { + "id_car_serie": 63792, + "name": "2.0 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251302, + "fields": { + "id_car_serie": 63793, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251303, + "fields": { + "id_car_serie": 63793, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251304, + "fields": { + "id_car_serie": 63793, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251305, + "fields": { + "id_car_serie": 63793, + "name": "1.7 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251306, + "fields": { + "id_car_serie": 64250, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251307, + "fields": { + "id_car_serie": 64250, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251308, + "fields": { + "id_car_serie": 63187, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251309, + "fields": { + "id_car_serie": 63187, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251310, + "fields": { + "id_car_serie": 63187, + "name": "2.4 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251311, + "fields": { + "id_car_serie": 63187, + "name": "2.5 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251312, + "fields": { + "id_car_serie": 64251, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251313, + "fields": { + "id_car_serie": 64251, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251314, + "fields": { + "id_car_serie": 64251, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251315, + "fields": { + "id_car_serie": 63188, + "name": "1.3 CVT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251316, + "fields": { + "id_car_serie": 63188, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251317, + "fields": { + "id_car_serie": 63188, + "name": "1.4 CVT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251318, + "fields": { + "id_car_serie": 64252, + "name": "1.2 CVT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251319, + "fields": { + "id_car_serie": 64252, + "name": "1.2 CVT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251320, + "fields": { + "id_car_serie": 64252, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251321, + "fields": { + "id_car_serie": 64252, + "name": "1.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251322, + "fields": { + "id_car_serie": 64253, + "name": "1.0 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251323, + "fields": { + "id_car_serie": 64253, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251324, + "fields": { + "id_car_serie": 64253, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251325, + "fields": { + "id_car_serie": 64253, + "name": "1.2 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251326, + "fields": { + "id_car_serie": 64253, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251327, + "fields": { + "id_car_serie": 64253, + "name": "1.2 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251328, + "fields": { + "id_car_serie": 64253, + "name": "1.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251329, + "fields": { + "id_car_serie": 64253, + "name": "1.2 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251330, + "fields": { + "id_car_serie": 64253, + "name": "1.2 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251331, + "fields": { + "id_car_serie": 64253, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251332, + "fields": { + "id_car_serie": 64253, + "name": "1.4 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251333, + "fields": { + "id_car_serie": 64253, + "name": "1.4 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251334, + "fields": { + "id_car_serie": 64253, + "name": "1.4 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251335, + "fields": { + "id_car_serie": 64253, + "name": "1.4 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251336, + "fields": { + "id_car_serie": 64253, + "name": "1.4 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251337, + "fields": { + "id_car_serie": 64253, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251338, + "fields": { + "id_car_serie": 64253, + "name": "1.5 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251339, + "fields": { + "id_car_serie": 64254, + "name": "1.0 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251340, + "fields": { + "id_car_serie": 64254, + "name": "1.0 CVT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251341, + "fields": { + "id_car_serie": 64254, + "name": "1.4 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251342, + "fields": { + "id_car_serie": 64254, + "name": "1.4 CVT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251343, + "fields": { + "id_car_serie": 63189, + "name": "2.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251344, + "fields": { + "id_car_serie": 63189, + "name": "2.0 AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251345, + "fields": { + "id_car_serie": 63189, + "name": "2.4 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251346, + "fields": { + "id_car_serie": 63189, + "name": "2.4 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251347, + "fields": { + "id_car_serie": 64255, + "name": "1.2 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251348, + "fields": { + "id_car_serie": 64255, + "name": "1.2 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251349, + "fields": { + "id_car_serie": 64255, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251350, + "fields": { + "id_car_serie": 64255, + "name": "1.2 CVT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251351, + "fields": { + "id_car_serie": 64255, + "name": "1.2 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251352, + "fields": { + "id_car_serie": 64255, + "name": "1.2 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251353, + "fields": { + "id_car_serie": 64256, + "name": "1.0 CVT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251354, + "fields": { + "id_car_serie": 64256, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251355, + "fields": { + "id_car_serie": 64256, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251356, + "fields": { + "id_car_serie": 64256, + "name": "1.0 CVT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251357, + "fields": { + "id_car_serie": 64256, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251358, + "fields": { + "id_car_serie": 64256, + "name": "1.3 CVT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251359, + "fields": { + "id_car_serie": 64256, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251360, + "fields": { + "id_car_serie": 64256, + "name": "1.4 CVT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251361, + "fields": { + "id_car_serie": 64256, + "name": "1.5 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251362, + "fields": { + "id_car_serie": 64257, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251363, + "fields": { + "id_car_serie": 64257, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251364, + "fields": { + "id_car_serie": 64257, + "name": "1.0 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251365, + "fields": { + "id_car_serie": 64257, + "name": "1.2 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251366, + "fields": { + "id_car_serie": 64257, + "name": "1.2 AT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251367, + "fields": { + "id_car_serie": 64257, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251368, + "fields": { + "id_car_serie": 64257, + "name": "1.2 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251369, + "fields": { + "id_car_serie": 64258, + "name": "3.5 CVT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251370, + "fields": { + "id_car_serie": 64259, + "name": "3.5 CVT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251371, + "fields": { + "id_car_serie": 64259, + "name": "2.5 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251372, + "fields": { + "id_car_serie": 64259, + "name": "2.5 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251373, + "fields": { + "id_car_serie": 64259, + "name": "3.5 CVT 4WD (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251374, + "fields": { + "id_car_serie": 64259, + "name": "3.5 CVT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251375, + "fields": { + "id_car_serie": 64259, + "name": "2.5 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251376, + "fields": { + "id_car_serie": 64260, + "name": "2.0 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251377, + "fields": { + "id_car_serie": 64260, + "name": "2.7 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251378, + "fields": { + "id_car_serie": 64261, + "name": "1.2 CVT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251379, + "fields": { + "id_car_serie": 64261, + "name": "1.2 CVT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251380, + "fields": { + "id_car_serie": 64261, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251381, + "fields": { + "id_car_serie": 64261, + "name": "1.2 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251382, + "fields": { + "id_car_serie": 64261, + "name": "1.2 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251383, + "fields": { + "id_car_serie": 64261, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251384, + "fields": { + "id_car_serie": 64261, + "name": "1.6 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251385, + "fields": { + "id_car_serie": 64261, + "name": "1.2 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251386, + "fields": { + "id_car_serie": 64261, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251387, + "fields": { + "id_car_serie": 64262, + "name": "2.8 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251388, + "fields": { + "id_car_serie": 64262, + "name": "2.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251389, + "fields": { + "id_car_serie": 64262, + "name": "2.8 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251390, + "fields": { + "id_car_serie": 64262, + "name": "3.3 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251391, + "fields": { + "id_car_serie": 64262, + "name": "3.3 AT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251392, + "fields": { + "id_car_serie": 64262, + "name": "3.3 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251393, + "fields": { + "id_car_serie": 64262, + "name": "3.3 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251394, + "fields": { + "id_car_serie": 64262, + "name": "2.8 MT 4WD (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251395, + "fields": { + "id_car_serie": 64262, + "name": "2.8 AT 4WD (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251396, + "fields": { + "id_car_serie": 64263, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251397, + "fields": { + "id_car_serie": 64263, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251398, + "fields": { + "id_car_serie": 64263, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251399, + "fields": { + "id_car_serie": 64263, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251400, + "fields": { + "id_car_serie": 64263, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251401, + "fields": { + "id_car_serie": 64263, + "name": "2.5 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251402, + "fields": { + "id_car_serie": 64263, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251403, + "fields": { + "id_car_serie": 64263, + "name": "2.2 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251404, + "fields": { + "id_car_serie": 64263, + "name": "2.2 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251405, + "fields": { + "id_car_serie": 64264, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251406, + "fields": { + "id_car_serie": 64264, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251407, + "fields": { + "id_car_serie": 64264, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251408, + "fields": { + "id_car_serie": 64264, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251409, + "fields": { + "id_car_serie": 64264, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251410, + "fields": { + "id_car_serie": 64264, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251411, + "fields": { + "id_car_serie": 64264, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251412, + "fields": { + "id_car_serie": 64265, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251413, + "fields": { + "id_car_serie": 64265, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251414, + "fields": { + "id_car_serie": 64265, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251415, + "fields": { + "id_car_serie": 64265, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251416, + "fields": { + "id_car_serie": 64265, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251417, + "fields": { + "id_car_serie": 64265, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251418, + "fields": { + "id_car_serie": 64266, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251419, + "fields": { + "id_car_serie": 64266, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251420, + "fields": { + "id_car_serie": 64266, + "name": "2.0 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251421, + "fields": { + "id_car_serie": 64266, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251422, + "fields": { + "id_car_serie": 64266, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251423, + "fields": { + "id_car_serie": 64266, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251424, + "fields": { + "id_car_serie": 64266, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251425, + "fields": { + "id_car_serie": 64266, + "name": "2.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251426, + "fields": { + "id_car_serie": 64267, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251427, + "fields": { + "id_car_serie": 64267, + "name": "2.0 CVT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251428, + "fields": { + "id_car_serie": 64267, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251429, + "fields": { + "id_car_serie": 64267, + "name": "2.0 MT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251430, + "fields": { + "id_car_serie": 64267, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251431, + "fields": { + "id_car_serie": 64267, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251432, + "fields": { + "id_car_serie": 64267, + "name": "1.6 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251433, + "fields": { + "id_car_serie": 64267, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251434, + "fields": { + "id_car_serie": 64267, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251435, + "fields": { + "id_car_serie": 64268, + "name": "1.5 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251436, + "fields": { + "id_car_serie": 64268, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251437, + "fields": { + "id_car_serie": 64268, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251438, + "fields": { + "id_car_serie": 64268, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251439, + "fields": { + "id_car_serie": 64268, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251440, + "fields": { + "id_car_serie": 64268, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251441, + "fields": { + "id_car_serie": 64268, + "name": "2.0 MT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251442, + "fields": { + "id_car_serie": 64268, + "name": "2.0 CVT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251443, + "fields": { + "id_car_serie": 63190, + "name": "2.0 CVT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251444, + "fields": { + "id_car_serie": 63191, + "name": "1.6 MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251445, + "fields": { + "id_car_serie": 63191, + "name": "1.6 CVT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251446, + "fields": { + "id_car_serie": 63191, + "name": "1.8 CVT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251447, + "fields": { + "id_car_serie": 63191, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251448, + "fields": { + "id_car_serie": 63191, + "name": "1.8 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251449, + "fields": { + "id_car_serie": 64269, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251450, + "fields": { + "id_car_serie": 64269, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251451, + "fields": { + "id_car_serie": 64270, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251452, + "fields": { + "id_car_serie": 64270, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251453, + "fields": { + "id_car_serie": 64271, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251454, + "fields": { + "id_car_serie": 64271, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251455, + "fields": { + "id_car_serie": 64272, + "name": "3.0 AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251456, + "fields": { + "id_car_serie": 64272, + "name": "3.0 AT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251457, + "fields": { + "id_car_serie": 64272, + "name": "3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251458, + "fields": { + "id_car_serie": 64272, + "name": "3.5 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251459, + "fields": { + "id_car_serie": 64273, + "name": "2.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251460, + "fields": { + "id_car_serie": 64273, + "name": "3.5 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251461, + "fields": { + "id_car_serie": 64274, + "name": "3.7 MT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251462, + "fields": { + "id_car_serie": 64274, + "name": "3.7 AT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251463, + "fields": { + "id_car_serie": 64275, + "name": "1.8 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251464, + "fields": { + "id_car_serie": 64275, + "name": "1.8 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251465, + "fields": { + "id_car_serie": 64275, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251466, + "fields": { + "id_car_serie": 64275, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251467, + "fields": { + "id_car_serie": 64276, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251468, + "fields": { + "id_car_serie": 64276, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251469, + "fields": { + "id_car_serie": 64276, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251470, + "fields": { + "id_car_serie": 64276, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251471, + "fields": { + "id_car_serie": 64276, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251472, + "fields": { + "id_car_serie": 64276, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251473, + "fields": { + "id_car_serie": 64276, + "name": "2.0 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251474, + "fields": { + "id_car_serie": 64277, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251475, + "fields": { + "id_car_serie": 64277, + "name": "1.6 MT 4WD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251476, + "fields": { + "id_car_serie": 64277, + "name": "2.0 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251477, + "fields": { + "id_car_serie": 64277, + "name": "2.0 AT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251478, + "fields": { + "id_car_serie": 64277, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251479, + "fields": { + "id_car_serie": 64277, + "name": "1.6 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251480, + "fields": { + "id_car_serie": 64277, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251481, + "fields": { + "id_car_serie": 64277, + "name": "2.0 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251482, + "fields": { + "id_car_serie": 64278, + "name": "2.4 MT 4WD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251483, + "fields": { + "id_car_serie": 64278, + "name": "3.3 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251484, + "fields": { + "id_car_serie": 64278, + "name": "3.5 AT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251485, + "fields": { + "id_car_serie": 64278, + "name": "3.5 MT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251486, + "fields": { + "id_car_serie": 64278, + "name": "2.7 MT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251487, + "fields": { + "id_car_serie": 64278, + "name": "2.7 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251488, + "fields": { + "id_car_serie": 64278, + "name": "2.7 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251489, + "fields": { + "id_car_serie": 64278, + "name": "3.0 MT 4WD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251490, + "fields": { + "id_car_serie": 64278, + "name": "3.0 AT 4WD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251491, + "fields": { + "id_car_serie": 64279, + "name": "2.4 MT 4WD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251492, + "fields": { + "id_car_serie": 64279, + "name": "2.7 MT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251493, + "fields": { + "id_car_serie": 64279, + "name": "2.7 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251494, + "fields": { + "id_car_serie": 64279, + "name": "3.0 AT 4WD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251495, + "fields": { + "id_car_serie": 64279, + "name": "3.0 MT 4WD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251496, + "fields": { + "id_car_serie": 64279, + "name": "3.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251497, + "fields": { + "id_car_serie": 64280, + "name": "2.4 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251498, + "fields": { + "id_car_serie": 64280, + "name": "2.4 MT 4WD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251499, + "fields": { + "id_car_serie": 64280, + "name": "2.7 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251500, + "fields": { + "id_car_serie": 64280, + "name": "2.7 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251501, + "fields": { + "id_car_serie": 64280, + "name": "3.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251502, + "fields": { + "id_car_serie": 64281, + "name": "2.4 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251503, + "fields": { + "id_car_serie": 64281, + "name": "2.4 MT 4WD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251504, + "fields": { + "id_car_serie": 64281, + "name": "3.3 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251505, + "fields": { + "id_car_serie": 64281, + "name": "3.3 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251506, + "fields": { + "id_car_serie": 64281, + "name": "2.7 MT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251507, + "fields": { + "id_car_serie": 64281, + "name": "2.7 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251508, + "fields": { + "id_car_serie": 64281, + "name": "2.7 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251509, + "fields": { + "id_car_serie": 64281, + "name": "3.2 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251510, + "fields": { + "id_car_serie": 49578, + "name": "2.7 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251511, + "fields": { + "id_car_serie": 49578, + "name": "2.7 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251512, + "fields": { + "id_car_serie": 49578, + "name": "3.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251513, + "fields": { + "id_car_serie": 49578, + "name": "3.2 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251514, + "fields": { + "id_car_serie": 49578, + "name": "3.3 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251515, + "fields": { + "id_car_serie": 64282, + "name": "2.4 MT 4WD (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251516, + "fields": { + "id_car_serie": 64282, + "name": "3.3 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251517, + "fields": { + "id_car_serie": 64282, + "name": "3.3 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251518, + "fields": { + "id_car_serie": 64282, + "name": "3.5 AT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251519, + "fields": { + "id_car_serie": 64282, + "name": "3.5 MT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251520, + "fields": { + "id_car_serie": 64282, + "name": "2.7 MT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251521, + "fields": { + "id_car_serie": 64282, + "name": "3.2 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251522, + "fields": { + "id_car_serie": 64283, + "name": "2.4 MT 4WD (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251523, + "fields": { + "id_car_serie": 64283, + "name": "2.7 MT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251524, + "fields": { + "id_car_serie": 64284, + "name": "2.4 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251525, + "fields": { + "id_car_serie": 64284, + "name": "2.4 MT 4WD (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251526, + "fields": { + "id_car_serie": 64284, + "name": "3.0 MT 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251527, + "fields": { + "id_car_serie": 64284, + "name": "3.0 AT 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251528, + "fields": { + "id_car_serie": 64284, + "name": "3.0 MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251529, + "fields": { + "id_car_serie": 64284, + "name": "3.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251530, + "fields": { + "id_car_serie": 64284, + "name": "2.7 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251531, + "fields": { + "id_car_serie": 64284, + "name": "2.7 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251532, + "fields": { + "id_car_serie": 64284, + "name": "2.7 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251533, + "fields": { + "id_car_serie": 64285, + "name": "2.4 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251534, + "fields": { + "id_car_serie": 64285, + "name": "2.4 MT 4WD (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251535, + "fields": { + "id_car_serie": 64285, + "name": "3.0 MT 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251536, + "fields": { + "id_car_serie": 64285, + "name": "3.0 AT 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251537, + "fields": { + "id_car_serie": 64285, + "name": "3.0 MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251538, + "fields": { + "id_car_serie": 64285, + "name": "3.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251539, + "fields": { + "id_car_serie": 64285, + "name": "2.7 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251540, + "fields": { + "id_car_serie": 64285, + "name": "2.7 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251541, + "fields": { + "id_car_serie": 64285, + "name": "2.7 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251542, + "fields": { + "id_car_serie": 63192, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251543, + "fields": { + "id_car_serie": 63192, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251544, + "fields": { + "id_car_serie": 63192, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251545, + "fields": { + "id_car_serie": 63192, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251546, + "fields": { + "id_car_serie": 63192, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251547, + "fields": { + "id_car_serie": 63192, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251548, + "fields": { + "id_car_serie": 63192, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251549, + "fields": { + "id_car_serie": 64286, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251550, + "fields": { + "id_car_serie": 64286, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251551, + "fields": { + "id_car_serie": 64286, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251552, + "fields": { + "id_car_serie": 64286, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251553, + "fields": { + "id_car_serie": 64286, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251554, + "fields": { + "id_car_serie": 64286, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251555, + "fields": { + "id_car_serie": 64286, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251556, + "fields": { + "id_car_serie": 63193, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251557, + "fields": { + "id_car_serie": 63193, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251558, + "fields": { + "id_car_serie": 63193, + "name": "2.0 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251559, + "fields": { + "id_car_serie": 63193, + "name": "2.0 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251560, + "fields": { + "id_car_serie": 64287, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251561, + "fields": { + "id_car_serie": 64287, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251562, + "fields": { + "id_car_serie": 64287, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251563, + "fields": { + "id_car_serie": 64287, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251564, + "fields": { + "id_car_serie": 64287, + "name": "2.0 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251565, + "fields": { + "id_car_serie": 64287, + "name": "2.0 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251566, + "fields": { + "id_car_serie": 64287, + "name": "3.0 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251567, + "fields": { + "id_car_serie": 64287, + "name": "3.0 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251568, + "fields": { + "id_car_serie": 64287, + "name": "3.0 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251569, + "fields": { + "id_car_serie": 64287, + "name": "3.0 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251570, + "fields": { + "id_car_serie": 64288, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251571, + "fields": { + "id_car_serie": 64288, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251572, + "fields": { + "id_car_serie": 64288, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251573, + "fields": { + "id_car_serie": 64288, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251574, + "fields": { + "id_car_serie": 64288, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251575, + "fields": { + "id_car_serie": 64288, + "name": "2.8 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251576, + "fields": { + "id_car_serie": 64288, + "name": "2.8 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251577, + "fields": { + "id_car_serie": 63194, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251578, + "fields": { + "id_car_serie": 63194, + "name": "3.5 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251579, + "fields": { + "id_car_serie": 63195, + "name": "3.7 MT (331 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251580, + "fields": { + "id_car_serie": 63195, + "name": "3.7 AT (331 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251581, + "fields": { + "id_car_serie": 64289, + "name": "3.7 MT (331 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251582, + "fields": { + "id_car_serie": 64289, + "name": "3.7 AT (331 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251583, + "fields": { + "id_car_serie": 64290, + "name": "3.7 MT (328 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251584, + "fields": { + "id_car_serie": 64290, + "name": "3.7 AT (328 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251585, + "fields": { + "id_car_serie": 50658, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251586, + "fields": { + "id_car_serie": 50658, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251587, + "fields": { + "id_car_serie": 50658, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251588, + "fields": { + "id_car_serie": 50658, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251589, + "fields": { + "id_car_serie": 50658, + "name": "1.8 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251590, + "fields": { + "id_car_serie": 50658, + "name": "1.8 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251591, + "fields": { + "id_car_serie": 50659, + "name": "1.6 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251592, + "fields": { + "id_car_serie": 50659, + "name": "1.6 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251593, + "fields": { + "id_car_serie": 50659, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251594, + "fields": { + "id_car_serie": 50659, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251595, + "fields": { + "id_car_serie": 50659, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251596, + "fields": { + "id_car_serie": 50659, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251597, + "fields": { + "id_car_serie": 50659, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251598, + "fields": { + "id_car_serie": 50659, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251599, + "fields": { + "id_car_serie": 50659, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251600, + "fields": { + "id_car_serie": 50659, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251601, + "fields": { + "id_car_serie": 50659, + "name": "1.8 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251602, + "fields": { + "id_car_serie": 50659, + "name": "1.8 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251603, + "fields": { + "id_car_serie": 50659, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251604, + "fields": { + "id_car_serie": 63826, + "name": "1.0 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251605, + "fields": { + "id_car_serie": 63826, + "name": "1.0 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251606, + "fields": { + "id_car_serie": 63196, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251607, + "fields": { + "id_car_serie": 63196, + "name": "2.0 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251608, + "fields": { + "id_car_serie": 63197, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251609, + "fields": { + "id_car_serie": 63197, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251610, + "fields": { + "id_car_serie": 63198, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251611, + "fields": { + "id_car_serie": 63198, + "name": "2.4 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251612, + "fields": { + "id_car_serie": 63198, + "name": "3.0 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251613, + "fields": { + "id_car_serie": 63198, + "name": "3.0 (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251614, + "fields": { + "id_car_serie": 63198, + "name": "3.0 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251615, + "fields": { + "id_car_serie": 63199, + "name": "2.5 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251616, + "fields": { + "id_car_serie": 63199, + "name": "2.5 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251617, + "fields": { + "id_car_serie": 63199, + "name": "2.5 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251618, + "fields": { + "id_car_serie": 63199, + "name": "3.0 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251619, + "fields": { + "id_car_serie": 63199, + "name": "3.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251620, + "fields": { + "id_car_serie": 64292, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251621, + "fields": { + "id_car_serie": 64292, + "name": "3.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251622, + "fields": { + "id_car_serie": 64292, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251623, + "fields": { + "id_car_serie": 64292, + "name": "3.0 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251624, + "fields": { + "id_car_serie": 64292, + "name": "2.8 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251625, + "fields": { + "id_car_serie": 64292, + "name": "2.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251626, + "fields": { + "id_car_serie": 63200, + "name": "3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251627, + "fields": { + "id_car_serie": 63201, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251628, + "fields": { + "id_car_serie": 63201, + "name": "0.7 AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251629, + "fields": { + "id_car_serie": 63201, + "name": "0.7 AT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251630, + "fields": { + "id_car_serie": 63201, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251631, + "fields": { + "id_car_serie": 63201, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251632, + "fields": { + "id_car_serie": 63202, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251633, + "fields": { + "id_car_serie": 63202, + "name": "0.7 AT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251634, + "fields": { + "id_car_serie": 63203, + "name": "1.6 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251635, + "fields": { + "id_car_serie": 63203, + "name": "1.6 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251636, + "fields": { + "id_car_serie": 63203, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251637, + "fields": { + "id_car_serie": 63203, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251638, + "fields": { + "id_car_serie": 63203, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251639, + "fields": { + "id_car_serie": 63203, + "name": "1.8 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251640, + "fields": { + "id_car_serie": 64293, + "name": "3.7 MT (336 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251641, + "fields": { + "id_car_serie": 64293, + "name": "3.7 AT (336 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251642, + "fields": { + "id_car_serie": 64294, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251643, + "fields": { + "id_car_serie": 64294, + "name": "3.5 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251644, + "fields": { + "id_car_serie": 64294, + "name": "3.5 MT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251645, + "fields": { + "id_car_serie": 64295, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251646, + "fields": { + "id_car_serie": 64295, + "name": "3.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251647, + "fields": { + "id_car_serie": 64295, + "name": "3.0 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251648, + "fields": { + "id_car_serie": 64295, + "name": "3.0 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251649, + "fields": { + "id_car_serie": 64296, + "name": "3.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251650, + "fields": { + "id_car_serie": 64296, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251651, + "fields": { + "id_car_serie": 64296, + "name": "3.0 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251652, + "fields": { + "id_car_serie": 64296, + "name": "3.0 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251653, + "fields": { + "id_car_serie": 64297, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251654, + "fields": { + "id_car_serie": 64297, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251655, + "fields": { + "id_car_serie": 64297, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251656, + "fields": { + "id_car_serie": 64297, + "name": "2.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251657, + "fields": { + "id_car_serie": 64297, + "name": "3.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251658, + "fields": { + "id_car_serie": 64297, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251659, + "fields": { + "id_car_serie": 64297, + "name": "3.0 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251660, + "fields": { + "id_car_serie": 64297, + "name": "3.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251661, + "fields": { + "id_car_serie": 64297, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251662, + "fields": { + "id_car_serie": 64298, + "name": "2.4 MT (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251663, + "fields": { + "id_car_serie": 64299, + "name": "1.0 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251664, + "fields": { + "id_car_serie": 64300, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251665, + "fields": { + "id_car_serie": 64300, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251666, + "fields": { + "id_car_serie": 64300, + "name": "2.5 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251667, + "fields": { + "id_car_serie": 64300, + "name": "3.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251668, + "fields": { + "id_car_serie": 64300, + "name": "3.0 AT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251669, + "fields": { + "id_car_serie": 64300, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251670, + "fields": { + "id_car_serie": 64300, + "name": "2.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251671, + "fields": { + "id_car_serie": 64301, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251672, + "fields": { + "id_car_serie": 64301, + "name": "3.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251673, + "fields": { + "id_car_serie": 64301, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251674, + "fields": { + "id_car_serie": 64301, + "name": "3.0 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251675, + "fields": { + "id_car_serie": 64301, + "name": "2.8 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251676, + "fields": { + "id_car_serie": 64302, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251677, + "fields": { + "id_car_serie": 64302, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251678, + "fields": { + "id_car_serie": 64302, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251679, + "fields": { + "id_car_serie": 64302, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251680, + "fields": { + "id_car_serie": 64302, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251681, + "fields": { + "id_car_serie": 64302, + "name": "2.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251682, + "fields": { + "id_car_serie": 64302, + "name": "3.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251683, + "fields": { + "id_car_serie": 64302, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251684, + "fields": { + "id_car_serie": 64302, + "name": "2.8 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251685, + "fields": { + "id_car_serie": 64302, + "name": "2.8 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251686, + "fields": { + "id_car_serie": 64302, + "name": "2.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251687, + "fields": { + "id_car_serie": 64303, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251688, + "fields": { + "id_car_serie": 64303, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251689, + "fields": { + "id_car_serie": 64303, + "name": "2.8 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251690, + "fields": { + "id_car_serie": 64303, + "name": "2.8 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251691, + "fields": { + "id_car_serie": 64304, + "name": "2.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251692, + "fields": { + "id_car_serie": 64304, + "name": "2.0 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251693, + "fields": { + "id_car_serie": 64304, + "name": "2.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251694, + "fields": { + "id_car_serie": 64304, + "name": "2.2 AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251695, + "fields": { + "id_car_serie": 64304, + "name": "2.8 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251696, + "fields": { + "id_car_serie": 64304, + "name": "2.8 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251697, + "fields": { + "id_car_serie": 64304, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251698, + "fields": { + "id_car_serie": 64304, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251699, + "fields": { + "id_car_serie": 64304, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251700, + "fields": { + "id_car_serie": 64304, + "name": "2.0 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251701, + "fields": { + "id_car_serie": 64304, + "name": "2.0 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251702, + "fields": { + "id_car_serie": 64304, + "name": "2.0 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251703, + "fields": { + "id_car_serie": 63204, + "name": "2.0 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251704, + "fields": { + "id_car_serie": 63204, + "name": "2.0 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251705, + "fields": { + "id_car_serie": 63204, + "name": "3.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251706, + "fields": { + "id_car_serie": 63204, + "name": "2.7 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251707, + "fields": { + "id_car_serie": 63204, + "name": "2.7 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251708, + "fields": { + "id_car_serie": 63204, + "name": "2.7 AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251709, + "fields": { + "id_car_serie": 63204, + "name": "2.7 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251710, + "fields": { + "id_car_serie": 63204, + "name": "2.7 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251711, + "fields": { + "id_car_serie": 63204, + "name": "2.7 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251712, + "fields": { + "id_car_serie": 63204, + "name": "2.7 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251713, + "fields": { + "id_car_serie": 63205, + "name": "2.0 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251714, + "fields": { + "id_car_serie": 63205, + "name": "2.0 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251715, + "fields": { + "id_car_serie": 63205, + "name": "2.7 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251716, + "fields": { + "id_car_serie": 63205, + "name": "2.7 AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251717, + "fields": { + "id_car_serie": 63205, + "name": "2.7 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251718, + "fields": { + "id_car_serie": 63205, + "name": "2.0 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251719, + "fields": { + "id_car_serie": 63205, + "name": "2.0 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251720, + "fields": { + "id_car_serie": 63205, + "name": "3.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251721, + "fields": { + "id_car_serie": 63206, + "name": "1.8 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251722, + "fields": { + "id_car_serie": 63206, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251723, + "fields": { + "id_car_serie": 63206, + "name": "1.8 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251724, + "fields": { + "id_car_serie": 63206, + "name": "2.0 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251725, + "fields": { + "id_car_serie": 63206, + "name": "2.0 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251726, + "fields": { + "id_car_serie": 63206, + "name": "2.0 AT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251727, + "fields": { + "id_car_serie": 63206, + "name": "2.0 MT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251728, + "fields": { + "id_car_serie": 63206, + "name": "2.0 AT 4WD (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251729, + "fields": { + "id_car_serie": 63206, + "name": "2.0 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251730, + "fields": { + "id_car_serie": 63206, + "name": "2.0 MT 4WD (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251731, + "fields": { + "id_car_serie": 63207, + "name": "1.2 CVT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251732, + "fields": { + "id_car_serie": 64306, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251733, + "fields": { + "id_car_serie": 64306, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251734, + "fields": { + "id_car_serie": 64306, + "name": "2.5 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251735, + "fields": { + "id_car_serie": 64306, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251736, + "fields": { + "id_car_serie": 64306, + "name": "2.5 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251737, + "fields": { + "id_car_serie": 64306, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251738, + "fields": { + "id_car_serie": 64306, + "name": "2.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251739, + "fields": { + "id_car_serie": 64306, + "name": "2.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251740, + "fields": { + "id_car_serie": 64307, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251741, + "fields": { + "id_car_serie": 64307, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251742, + "fields": { + "id_car_serie": 64307, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251743, + "fields": { + "id_car_serie": 64307, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251744, + "fields": { + "id_car_serie": 64307, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251745, + "fields": { + "id_car_serie": 64307, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251746, + "fields": { + "id_car_serie": 64307, + "name": "2.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251747, + "fields": { + "id_car_serie": 64307, + "name": "2.5 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251748, + "fields": { + "id_car_serie": 64307, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251749, + "fields": { + "id_car_serie": 64307, + "name": "2.8 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251750, + "fields": { + "id_car_serie": 64307, + "name": "2.8 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251751, + "fields": { + "id_car_serie": 64308, + "name": "1.5 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251752, + "fields": { + "id_car_serie": 64308, + "name": "1.5 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251753, + "fields": { + "id_car_serie": 64308, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251754, + "fields": { + "id_car_serie": 64308, + "name": "1.5 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251755, + "fields": { + "id_car_serie": 64308, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251756, + "fields": { + "id_car_serie": 64308, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251757, + "fields": { + "id_car_serie": 64308, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251758, + "fields": { + "id_car_serie": 64308, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251759, + "fields": { + "id_car_serie": 64308, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251760, + "fields": { + "id_car_serie": 64308, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251761, + "fields": { + "id_car_serie": 64309, + "name": "1.5 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251762, + "fields": { + "id_car_serie": 64309, + "name": "1.5 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251763, + "fields": { + "id_car_serie": 64309, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251764, + "fields": { + "id_car_serie": 64309, + "name": "1.5 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251765, + "fields": { + "id_car_serie": 64309, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251766, + "fields": { + "id_car_serie": 64309, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251767, + "fields": { + "id_car_serie": 64309, + "name": "1.5 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251768, + "fields": { + "id_car_serie": 64309, + "name": "1.5 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251769, + "fields": { + "id_car_serie": 64309, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251770, + "fields": { + "id_car_serie": 64309, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251771, + "fields": { + "id_car_serie": 64309, + "name": "1.7 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251772, + "fields": { + "id_car_serie": 64309, + "name": "1.7 AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251773, + "fields": { + "id_car_serie": 64310, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251774, + "fields": { + "id_car_serie": 64310, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251775, + "fields": { + "id_car_serie": 64310, + "name": "1.5 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251776, + "fields": { + "id_car_serie": 64310, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251777, + "fields": { + "id_car_serie": 64310, + "name": "1.5 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251778, + "fields": { + "id_car_serie": 64310, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251779, + "fields": { + "id_car_serie": 64310, + "name": "1.7 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251780, + "fields": { + "id_car_serie": 64310, + "name": "1.7 AT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251781, + "fields": { + "id_car_serie": 63208, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251782, + "fields": { + "id_car_serie": 63209, + "name": "0.7 AT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251783, + "fields": { + "id_car_serie": 63209, + "name": "0.7 (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251784, + "fields": { + "id_car_serie": 63210, + "name": "0.7 AT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251785, + "fields": { + "id_car_serie": 63210, + "name": "0.7 MT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251786, + "fields": { + "id_car_serie": 63210, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251787, + "fields": { + "id_car_serie": 63211, + "name": "0.7 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251788, + "fields": { + "id_car_serie": 63211, + "name": "0.7 AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251789, + "fields": { + "id_car_serie": 63211, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251790, + "fields": { + "id_car_serie": 63211, + "name": "0.7 AT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251791, + "fields": { + "id_car_serie": 63211, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251792, + "fields": { + "id_car_serie": 63211, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251793, + "fields": { + "id_car_serie": 63212, + "name": "0.7 AT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251794, + "fields": { + "id_car_serie": 63212, + "name": "0.7 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251795, + "fields": { + "id_car_serie": 63212, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251796, + "fields": { + "id_car_serie": 63212, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251797, + "fields": { + "id_car_serie": 63213, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251798, + "fields": { + "id_car_serie": 63213, + "name": "0.7 AT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251799, + "fields": { + "id_car_serie": 63214, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251800, + "fields": { + "id_car_serie": 63214, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251801, + "fields": { + "id_car_serie": 63214, + "name": "2.5 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251802, + "fields": { + "id_car_serie": 63214, + "name": "2.5 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251803, + "fields": { + "id_car_serie": 63214, + "name": "2.5 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251804, + "fields": { + "id_car_serie": 63214, + "name": "2.5 AT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251805, + "fields": { + "id_car_serie": 63215, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251806, + "fields": { + "id_car_serie": 63215, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251807, + "fields": { + "id_car_serie": 63215, + "name": "2.5 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251808, + "fields": { + "id_car_serie": 63215, + "name": "2.5 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251809, + "fields": { + "id_car_serie": 63215, + "name": "2.5 AT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251810, + "fields": { + "id_car_serie": 64311, + "name": "1.5 AT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251811, + "fields": { + "id_car_serie": 64311, + "name": "1.5 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251812, + "fields": { + "id_car_serie": 64311, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251813, + "fields": { + "id_car_serie": 64311, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251814, + "fields": { + "id_car_serie": 64311, + "name": "1.8 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251815, + "fields": { + "id_car_serie": 64311, + "name": "1.8 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251816, + "fields": { + "id_car_serie": 64312, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251817, + "fields": { + "id_car_serie": 64312, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251818, + "fields": { + "id_car_serie": 64312, + "name": "2.0 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251819, + "fields": { + "id_car_serie": 64313, + "name": "0.7 CVT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251820, + "fields": { + "id_car_serie": 64313, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251821, + "fields": { + "id_car_serie": 64314, + "name": "2.8 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251822, + "fields": { + "id_car_serie": 64314, + "name": "2.8 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251823, + "fields": { + "id_car_serie": 64314, + "name": "3.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251824, + "fields": { + "id_car_serie": 64314, + "name": "3.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251825, + "fields": { + "id_car_serie": 64315, + "name": "2.8 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251826, + "fields": { + "id_car_serie": 64315, + "name": "2.8 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251827, + "fields": { + "id_car_serie": 64315, + "name": "3.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251828, + "fields": { + "id_car_serie": 64315, + "name": "4.2 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251829, + "fields": { + "id_car_serie": 64315, + "name": "4.2 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251830, + "fields": { + "id_car_serie": 64315, + "name": "4.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251831, + "fields": { + "id_car_serie": 64315, + "name": "4.8 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251832, + "fields": { + "id_car_serie": 64316, + "name": "2.8 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251833, + "fields": { + "id_car_serie": 64316, + "name": "2.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251834, + "fields": { + "id_car_serie": 64316, + "name": "4.2 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251835, + "fields": { + "id_car_serie": 64316, + "name": "4.2 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251836, + "fields": { + "id_car_serie": 64316, + "name": "4.2 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251837, + "fields": { + "id_car_serie": 64316, + "name": "4.2 MT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251838, + "fields": { + "id_car_serie": 64317, + "name": "4.2 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251839, + "fields": { + "id_car_serie": 64317, + "name": "4.2 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251840, + "fields": { + "id_car_serie": 64317, + "name": "4.2 MT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251841, + "fields": { + "id_car_serie": 64317, + "name": "4.2 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251842, + "fields": { + "id_car_serie": 64317, + "name": "4.2 MT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251843, + "fields": { + "id_car_serie": 64317, + "name": "4.2 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251844, + "fields": { + "id_car_serie": 63216, + "name": "2.0 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251845, + "fields": { + "id_car_serie": 63217, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251846, + "fields": { + "id_car_serie": 63217, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251847, + "fields": { + "id_car_serie": 63217, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251848, + "fields": { + "id_car_serie": 63217, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251849, + "fields": { + "id_car_serie": 64318, + "name": "5.6 AT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251850, + "fields": { + "id_car_serie": 64318, + "name": "5.6 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251851, + "fields": { + "id_car_serie": 64319, + "name": "5.6 AT (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251852, + "fields": { + "id_car_serie": 64319, + "name": "5.6 AT 4WD (317 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251853, + "fields": { + "id_car_serie": 64320, + "name": "5.6 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251854, + "fields": { + "id_car_serie": 63218, + "name": "1.8 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251855, + "fields": { + "id_car_serie": 63218, + "name": "1.8 AT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251856, + "fields": { + "id_car_serie": 63218, + "name": "1.8 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251857, + "fields": { + "id_car_serie": 63218, + "name": "1.8 AT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251858, + "fields": { + "id_car_serie": 63218, + "name": "2.0 AT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251859, + "fields": { + "id_car_serie": 63218, + "name": "2.0 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251860, + "fields": { + "id_car_serie": 63218, + "name": "2.0 MT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251861, + "fields": { + "id_car_serie": 63218, + "name": "2.2 AT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251862, + "fields": { + "id_car_serie": 63218, + "name": "2.2 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251863, + "fields": { + "id_car_serie": 63218, + "name": "2.2 MT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251864, + "fields": { + "id_car_serie": 63219, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251865, + "fields": { + "id_car_serie": 63219, + "name": "1.2 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251866, + "fields": { + "id_car_serie": 63219, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251867, + "fields": { + "id_car_serie": 63219, + "name": "1.4 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251868, + "fields": { + "id_car_serie": 63219, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251869, + "fields": { + "id_car_serie": 63219, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251870, + "fields": { + "id_car_serie": 63219, + "name": "2.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251871, + "fields": { + "id_car_serie": 63219, + "name": "2.0 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251872, + "fields": { + "id_car_serie": 63220, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251873, + "fields": { + "id_car_serie": 63220, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251874, + "fields": { + "id_car_serie": 63220, + "name": "1.6 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251875, + "fields": { + "id_car_serie": 48811, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251876, + "fields": { + "id_car_serie": 48811, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251877, + "fields": { + "id_car_serie": 48811, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251878, + "fields": { + "id_car_serie": 48811, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251879, + "fields": { + "id_car_serie": 48811, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251880, + "fields": { + "id_car_serie": 48811, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251881, + "fields": { + "id_car_serie": 48811, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251882, + "fields": { + "id_car_serie": 48811, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251883, + "fields": { + "id_car_serie": 48811, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251884, + "fields": { + "id_car_serie": 48811, + "name": "1.8 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251885, + "fields": { + "id_car_serie": 48811, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251886, + "fields": { + "id_car_serie": 48811, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251887, + "fields": { + "id_car_serie": 48811, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251888, + "fields": { + "id_car_serie": 48811, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251889, + "fields": { + "id_car_serie": 48811, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251890, + "fields": { + "id_car_serie": 48811, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251891, + "fields": { + "id_car_serie": 63809, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251892, + "fields": { + "id_car_serie": 63809, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251893, + "fields": { + "id_car_serie": 63809, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251894, + "fields": { + "id_car_serie": 63809, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251895, + "fields": { + "id_car_serie": 63809, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251896, + "fields": { + "id_car_serie": 63809, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251897, + "fields": { + "id_car_serie": 63809, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251898, + "fields": { + "id_car_serie": 63809, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251899, + "fields": { + "id_car_serie": 63810, + "name": "1.6 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251900, + "fields": { + "id_car_serie": 64321, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251901, + "fields": { + "id_car_serie": 64321, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251902, + "fields": { + "id_car_serie": 64321, + "name": "1.2 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251903, + "fields": { + "id_car_serie": 64321, + "name": "1.3 CVT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251904, + "fields": { + "id_car_serie": 64321, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251905, + "fields": { + "id_car_serie": 64321, + "name": "1.5 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251906, + "fields": { + "id_car_serie": 64321, + "name": "1.5 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251907, + "fields": { + "id_car_serie": 64322, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251908, + "fields": { + "id_car_serie": 64322, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251909, + "fields": { + "id_car_serie": 64322, + "name": "1.2 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251910, + "fields": { + "id_car_serie": 64322, + "name": "1.3 CVT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251911, + "fields": { + "id_car_serie": 64322, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251912, + "fields": { + "id_car_serie": 64322, + "name": "1.5 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251913, + "fields": { + "id_car_serie": 64322, + "name": "1.5 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251914, + "fields": { + "id_car_serie": 64323, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251915, + "fields": { + "id_car_serie": 64323, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251916, + "fields": { + "id_car_serie": 64323, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251917, + "fields": { + "id_car_serie": 64323, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251918, + "fields": { + "id_car_serie": 64323, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251919, + "fields": { + "id_car_serie": 64323, + "name": "1.7 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251920, + "fields": { + "id_car_serie": 64323, + "name": "1.7 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251921, + "fields": { + "id_car_serie": 64324, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251922, + "fields": { + "id_car_serie": 64324, + "name": "1.3 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251923, + "fields": { + "id_car_serie": 64324, + "name": "1.7 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251924, + "fields": { + "id_car_serie": 64324, + "name": "1.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251925, + "fields": { + "id_car_serie": 64324, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251926, + "fields": { + "id_car_serie": 64324, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251927, + "fields": { + "id_car_serie": 64324, + "name": "1.9 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251928, + "fields": { + "id_car_serie": 64324, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251929, + "fields": { + "id_car_serie": 64324, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251930, + "fields": { + "id_car_serie": 64324, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251931, + "fields": { + "id_car_serie": 64324, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251932, + "fields": { + "id_car_serie": 64324, + "name": "1.6 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251933, + "fields": { + "id_car_serie": 64324, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251934, + "fields": { + "id_car_serie": 64324, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251935, + "fields": { + "id_car_serie": 64324, + "name": "1.6 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251936, + "fields": { + "id_car_serie": 64324, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251937, + "fields": { + "id_car_serie": 64324, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251938, + "fields": { + "id_car_serie": 64324, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251939, + "fields": { + "id_car_serie": 64325, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251940, + "fields": { + "id_car_serie": 64325, + "name": "1.6 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251941, + "fields": { + "id_car_serie": 64325, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251942, + "fields": { + "id_car_serie": 64325, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251943, + "fields": { + "id_car_serie": 64325, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251944, + "fields": { + "id_car_serie": 64325, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251945, + "fields": { + "id_car_serie": 64326, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251946, + "fields": { + "id_car_serie": 64326, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251947, + "fields": { + "id_car_serie": 64326, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251948, + "fields": { + "id_car_serie": 64326, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251949, + "fields": { + "id_car_serie": 64326, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251950, + "fields": { + "id_car_serie": 64326, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251951, + "fields": { + "id_car_serie": 64326, + "name": "1.6 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251952, + "fields": { + "id_car_serie": 64326, + "name": "1.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251953, + "fields": { + "id_car_serie": 64326, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251954, + "fields": { + "id_car_serie": 64326, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251955, + "fields": { + "id_car_serie": 64326, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251956, + "fields": { + "id_car_serie": 64326, + "name": "1.3 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251957, + "fields": { + "id_car_serie": 64326, + "name": "1.7 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251958, + "fields": { + "id_car_serie": 64326, + "name": "1.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251959, + "fields": { + "id_car_serie": 64326, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251960, + "fields": { + "id_car_serie": 64326, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251961, + "fields": { + "id_car_serie": 64326, + "name": "1.9 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251962, + "fields": { + "id_car_serie": 64326, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251963, + "fields": { + "id_car_serie": 64327, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251964, + "fields": { + "id_car_serie": 64327, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251965, + "fields": { + "id_car_serie": 64327, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251966, + "fields": { + "id_car_serie": 64327, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251967, + "fields": { + "id_car_serie": 64327, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251968, + "fields": { + "id_car_serie": 64327, + "name": "1.6 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251969, + "fields": { + "id_car_serie": 64327, + "name": "1.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251970, + "fields": { + "id_car_serie": 64327, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251971, + "fields": { + "id_car_serie": 64327, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251972, + "fields": { + "id_car_serie": 64327, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251973, + "fields": { + "id_car_serie": 64327, + "name": "1.7 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251974, + "fields": { + "id_car_serie": 64327, + "name": "1.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251975, + "fields": { + "id_car_serie": 64327, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251976, + "fields": { + "id_car_serie": 64327, + "name": "1.9 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251977, + "fields": { + "id_car_serie": 64327, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251978, + "fields": { + "id_car_serie": 64327, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251979, + "fields": { + "id_car_serie": 64327, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251980, + "fields": { + "id_car_serie": 64327, + "name": "1.6 AMT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251981, + "fields": { + "id_car_serie": 64328, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251982, + "fields": { + "id_car_serie": 64328, + "name": "1.7 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251983, + "fields": { + "id_car_serie": 64328, + "name": "1.7 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251984, + "fields": { + "id_car_serie": 64328, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251985, + "fields": { + "id_car_serie": 64328, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251986, + "fields": { + "id_car_serie": 64328, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251987, + "fields": { + "id_car_serie": 64328, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251988, + "fields": { + "id_car_serie": 64328, + "name": "1.6 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251989, + "fields": { + "id_car_serie": 64328, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251990, + "fields": { + "id_car_serie": 64328, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251991, + "fields": { + "id_car_serie": 64328, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251992, + "fields": { + "id_car_serie": 64328, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251993, + "fields": { + "id_car_serie": 64328, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251994, + "fields": { + "id_car_serie": 64328, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251995, + "fields": { + "id_car_serie": 64328, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251996, + "fields": { + "id_car_serie": 64328, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251997, + "fields": { + "id_car_serie": 64328, + "name": "1.6 AMT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251998, + "fields": { + "id_car_serie": 64329, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 251999, + "fields": { + "id_car_serie": 64329, + "name": "1.6 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252000, + "fields": { + "id_car_serie": 64329, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252001, + "fields": { + "id_car_serie": 64329, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252002, + "fields": { + "id_car_serie": 64329, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252003, + "fields": { + "id_car_serie": 64329, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252004, + "fields": { + "id_car_serie": 64329, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252005, + "fields": { + "id_car_serie": 64329, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252006, + "fields": { + "id_car_serie": 64330, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252007, + "fields": { + "id_car_serie": 64330, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252008, + "fields": { + "id_car_serie": 64330, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252009, + "fields": { + "id_car_serie": 64330, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252010, + "fields": { + "id_car_serie": 64330, + "name": "1.6 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252011, + "fields": { + "id_car_serie": 64330, + "name": "1.6 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252012, + "fields": { + "id_car_serie": 64330, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252013, + "fields": { + "id_car_serie": 64330, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252014, + "fields": { + "id_car_serie": 64330, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252015, + "fields": { + "id_car_serie": 64330, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252016, + "fields": { + "id_car_serie": 64330, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252017, + "fields": { + "id_car_serie": 64330, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252018, + "fields": { + "id_car_serie": 64330, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252019, + "fields": { + "id_car_serie": 64330, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252020, + "fields": { + "id_car_serie": 64330, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252021, + "fields": { + "id_car_serie": 64330, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252022, + "fields": { + "id_car_serie": 64330, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252023, + "fields": { + "id_car_serie": 64330, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252024, + "fields": { + "id_car_serie": 64330, + "name": "1.7 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252025, + "fields": { + "id_car_serie": 64330, + "name": "1.7 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252026, + "fields": { + "id_car_serie": 64330, + "name": "1.7 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252027, + "fields": { + "id_car_serie": 63222, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252028, + "fields": { + "id_car_serie": 63222, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252029, + "fields": { + "id_car_serie": 63222, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252030, + "fields": { + "id_car_serie": 63222, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252031, + "fields": { + "id_car_serie": 63222, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252032, + "fields": { + "id_car_serie": 64331, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252033, + "fields": { + "id_car_serie": 64331, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252034, + "fields": { + "id_car_serie": 64331, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252035, + "fields": { + "id_car_serie": 64331, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252036, + "fields": { + "id_car_serie": 64333, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252037, + "fields": { + "id_car_serie": 64333, + "name": "1.2 AMT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252038, + "fields": { + "id_car_serie": 64333, + "name": "1.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252039, + "fields": { + "id_car_serie": 64333, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252040, + "fields": { + "id_car_serie": 64333, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252041, + "fields": { + "id_car_serie": 64333, + "name": "1.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252042, + "fields": { + "id_car_serie": 64333, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252043, + "fields": { + "id_car_serie": 64333, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252044, + "fields": { + "id_car_serie": 64333, + "name": "1.4 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252045, + "fields": { + "id_car_serie": 64333, + "name": "1.2 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252046, + "fields": { + "id_car_serie": 64333, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252047, + "fields": { + "id_car_serie": 64333, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252048, + "fields": { + "id_car_serie": 64333, + "name": "1.7 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252049, + "fields": { + "id_car_serie": 64334, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252050, + "fields": { + "id_car_serie": 64334, + "name": "1.2 AMT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252051, + "fields": { + "id_car_serie": 64334, + "name": "1.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252052, + "fields": { + "id_car_serie": 64334, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252053, + "fields": { + "id_car_serie": 64334, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252054, + "fields": { + "id_car_serie": 64334, + "name": "1.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252055, + "fields": { + "id_car_serie": 64334, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252056, + "fields": { + "id_car_serie": 64334, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252057, + "fields": { + "id_car_serie": 64334, + "name": "1.4 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252058, + "fields": { + "id_car_serie": 64334, + "name": "1.2 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252059, + "fields": { + "id_car_serie": 64334, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252060, + "fields": { + "id_car_serie": 64334, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252061, + "fields": { + "id_car_serie": 64334, + "name": "1.7 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252062, + "fields": { + "id_car_serie": 64335, + "name": "1.6 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252063, + "fields": { + "id_car_serie": 64335, + "name": "1.6 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252064, + "fields": { + "id_car_serie": 64336, + "name": "1.5 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252065, + "fields": { + "id_car_serie": 64336, + "name": "1.5 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252066, + "fields": { + "id_car_serie": 64336, + "name": "2.0 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252067, + "fields": { + "id_car_serie": 64336, + "name": "2.0 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252068, + "fields": { + "id_car_serie": 64336, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252069, + "fields": { + "id_car_serie": 64336, + "name": "2.0 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252070, + "fields": { + "id_car_serie": 64337, + "name": "1.5 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252071, + "fields": { + "id_car_serie": 64337, + "name": "1.5 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252072, + "fields": { + "id_car_serie": 64337, + "name": "2.0 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252073, + "fields": { + "id_car_serie": 64337, + "name": "2.0 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252074, + "fields": { + "id_car_serie": 64337, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252075, + "fields": { + "id_car_serie": 64337, + "name": "2.0 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252076, + "fields": { + "id_car_serie": 64338, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252077, + "fields": { + "id_car_serie": 64338, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252078, + "fields": { + "id_car_serie": 64338, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252079, + "fields": { + "id_car_serie": 64338, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252080, + "fields": { + "id_car_serie": 64338, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252081, + "fields": { + "id_car_serie": 64338, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252082, + "fields": { + "id_car_serie": 64338, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252083, + "fields": { + "id_car_serie": 64338, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252084, + "fields": { + "id_car_serie": 64338, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252085, + "fields": { + "id_car_serie": 64338, + "name": "1.7 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252086, + "fields": { + "id_car_serie": 64339, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252087, + "fields": { + "id_car_serie": 64339, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252088, + "fields": { + "id_car_serie": 64339, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252089, + "fields": { + "id_car_serie": 64339, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252090, + "fields": { + "id_car_serie": 64339, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252091, + "fields": { + "id_car_serie": 64339, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252092, + "fields": { + "id_car_serie": 64339, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252093, + "fields": { + "id_car_serie": 64339, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252094, + "fields": { + "id_car_serie": 64339, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252095, + "fields": { + "id_car_serie": 64340, + "name": "1.2 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252096, + "fields": { + "id_car_serie": 64340, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252097, + "fields": { + "id_car_serie": 64340, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252098, + "fields": { + "id_car_serie": 64340, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252099, + "fields": { + "id_car_serie": 64340, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252100, + "fields": { + "id_car_serie": 64341, + "name": "1.1 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252101, + "fields": { + "id_car_serie": 64341, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252102, + "fields": { + "id_car_serie": 64341, + "name": "1.1 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252103, + "fields": { + "id_car_serie": 64341, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252104, + "fields": { + "id_car_serie": 64341, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252105, + "fields": { + "id_car_serie": 64341, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252106, + "fields": { + "id_car_serie": 64341, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252107, + "fields": { + "id_car_serie": 48868, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252108, + "fields": { + "id_car_serie": 48868, + "name": "1.0 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252109, + "fields": { + "id_car_serie": 64342, + "name": "1.1 MT (23 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252110, + "fields": { + "id_car_serie": 64343, + "name": "1.9 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252111, + "fields": { + "id_car_serie": 64343, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252112, + "fields": { + "id_car_serie": 64343, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252113, + "fields": { + "id_car_serie": 64343, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252114, + "fields": { + "id_car_serie": 64343, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252115, + "fields": { + "id_car_serie": 64343, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252116, + "fields": { + "id_car_serie": 64343, + "name": "2.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252117, + "fields": { + "id_car_serie": 48880, + "name": "1.5 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252118, + "fields": { + "id_car_serie": 48880, + "name": "1.7 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252119, + "fields": { + "id_car_serie": 48880, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252120, + "fields": { + "id_car_serie": 48880, + "name": "1.9 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252121, + "fields": { + "id_car_serie": 48880, + "name": "2.2 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252122, + "fields": { + "id_car_serie": 48879, + "name": "1.5 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252123, + "fields": { + "id_car_serie": 48879, + "name": "1.7 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252124, + "fields": { + "id_car_serie": 48879, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252125, + "fields": { + "id_car_serie": 48879, + "name": "1.9 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252126, + "fields": { + "id_car_serie": 48879, + "name": "2.2 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252127, + "fields": { + "id_car_serie": 48881, + "name": "1.5 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252128, + "fields": { + "id_car_serie": 48881, + "name": "1.7 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252129, + "fields": { + "id_car_serie": 48881, + "name": "2.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252130, + "fields": { + "id_car_serie": 64344, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252131, + "fields": { + "id_car_serie": 64344, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252132, + "fields": { + "id_car_serie": 64344, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252133, + "fields": { + "id_car_serie": 64344, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252134, + "fields": { + "id_car_serie": 64345, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252135, + "fields": { + "id_car_serie": 64345, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252136, + "fields": { + "id_car_serie": 64345, + "name": "1.8 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252137, + "fields": { + "id_car_serie": 64345, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252138, + "fields": { + "id_car_serie": 64345, + "name": "2.2 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252139, + "fields": { + "id_car_serie": 64345, + "name": "2.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252140, + "fields": { + "id_car_serie": 64345, + "name": "2.8 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252141, + "fields": { + "id_car_serie": 64345, + "name": "2.2 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252142, + "fields": { + "id_car_serie": 64345, + "name": "2.8 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252143, + "fields": { + "id_car_serie": 64345, + "name": "2.8 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252144, + "fields": { + "id_car_serie": 64345, + "name": "1.9 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252145, + "fields": { + "id_car_serie": 64345, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252146, + "fields": { + "id_car_serie": 64345, + "name": "1.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252147, + "fields": { + "id_car_serie": 64345, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252148, + "fields": { + "id_car_serie": 64345, + "name": "2.2 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252149, + "fields": { + "id_car_serie": 64345, + "name": "2.2 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252150, + "fields": { + "id_car_serie": 64345, + "name": "3.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252151, + "fields": { + "id_car_serie": 64345, + "name": "3.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252152, + "fields": { + "id_car_serie": 64346, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252153, + "fields": { + "id_car_serie": 64346, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252154, + "fields": { + "id_car_serie": 64346, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252155, + "fields": { + "id_car_serie": 64346, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252156, + "fields": { + "id_car_serie": 64346, + "name": "2.2 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252157, + "fields": { + "id_car_serie": 64346, + "name": "2.2 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252158, + "fields": { + "id_car_serie": 64346, + "name": "3.2 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252159, + "fields": { + "id_car_serie": 64346, + "name": "3.2 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252160, + "fields": { + "id_car_serie": 64346, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252161, + "fields": { + "id_car_serie": 64346, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252162, + "fields": { + "id_car_serie": 64346, + "name": "1.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252163, + "fields": { + "id_car_serie": 64346, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252164, + "fields": { + "id_car_serie": 64346, + "name": "2.2 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252165, + "fields": { + "id_car_serie": 64346, + "name": "2.2 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252166, + "fields": { + "id_car_serie": 64346, + "name": "3.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252167, + "fields": { + "id_car_serie": 64346, + "name": "3.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252168, + "fields": { + "id_car_serie": 64347, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252169, + "fields": { + "id_car_serie": 64347, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252170, + "fields": { + "id_car_serie": 64347, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252171, + "fields": { + "id_car_serie": 64347, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252172, + "fields": { + "id_car_serie": 64347, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252173, + "fields": { + "id_car_serie": 64347, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252174, + "fields": { + "id_car_serie": 64347, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252175, + "fields": { + "id_car_serie": 64347, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252176, + "fields": { + "id_car_serie": 64347, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252177, + "fields": { + "id_car_serie": 64347, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252178, + "fields": { + "id_car_serie": 64347, + "name": "2.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252179, + "fields": { + "id_car_serie": 64347, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252180, + "fields": { + "id_car_serie": 64347, + "name": "2.2 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252181, + "fields": { + "id_car_serie": 64348, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252182, + "fields": { + "id_car_serie": 64348, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252183, + "fields": { + "id_car_serie": 64348, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252184, + "fields": { + "id_car_serie": 64348, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252185, + "fields": { + "id_car_serie": 64348, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252186, + "fields": { + "id_car_serie": 64348, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252187, + "fields": { + "id_car_serie": 64348, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252188, + "fields": { + "id_car_serie": 64348, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252189, + "fields": { + "id_car_serie": 64348, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252190, + "fields": { + "id_car_serie": 64348, + "name": "1.7 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252191, + "fields": { + "id_car_serie": 64348, + "name": "2.0 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252192, + "fields": { + "id_car_serie": 64348, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252193, + "fields": { + "id_car_serie": 64349, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252194, + "fields": { + "id_car_serie": 64349, + "name": "1.6 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252195, + "fields": { + "id_car_serie": 64349, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252196, + "fields": { + "id_car_serie": 64349, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252197, + "fields": { + "id_car_serie": 64349, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252198, + "fields": { + "id_car_serie": 64349, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252199, + "fields": { + "id_car_serie": 64349, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252200, + "fields": { + "id_car_serie": 64349, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252201, + "fields": { + "id_car_serie": 64349, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252202, + "fields": { + "id_car_serie": 64349, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252203, + "fields": { + "id_car_serie": 64349, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252204, + "fields": { + "id_car_serie": 64349, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252205, + "fields": { + "id_car_serie": 64349, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252206, + "fields": { + "id_car_serie": 64349, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252207, + "fields": { + "id_car_serie": 64349, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252208, + "fields": { + "id_car_serie": 64349, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252209, + "fields": { + "id_car_serie": 64349, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252210, + "fields": { + "id_car_serie": 64349, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252211, + "fields": { + "id_car_serie": 64349, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252212, + "fields": { + "id_car_serie": 64349, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252213, + "fields": { + "id_car_serie": 64349, + "name": "1.7 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252214, + "fields": { + "id_car_serie": 64349, + "name": "1.7 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252215, + "fields": { + "id_car_serie": 63224, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252216, + "fields": { + "id_car_serie": 63224, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252217, + "fields": { + "id_car_serie": 63224, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252218, + "fields": { + "id_car_serie": 63224, + "name": "1.8 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252219, + "fields": { + "id_car_serie": 63224, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252220, + "fields": { + "id_car_serie": 63224, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252221, + "fields": { + "id_car_serie": 63224, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252222, + "fields": { + "id_car_serie": 63224, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252223, + "fields": { + "id_car_serie": 63224, + "name": "1.7 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252224, + "fields": { + "id_car_serie": 63224, + "name": "1.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252225, + "fields": { + "id_car_serie": 63224, + "name": "1.9 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252226, + "fields": { + "id_car_serie": 63224, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252227, + "fields": { + "id_car_serie": 63224, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252228, + "fields": { + "id_car_serie": 63224, + "name": "1.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252229, + "fields": { + "id_car_serie": 63221, + "name": "3.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252230, + "fields": { + "id_car_serie": 64350, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252231, + "fields": { + "id_car_serie": 64350, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252232, + "fields": { + "id_car_serie": 64350, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252233, + "fields": { + "id_car_serie": 64351, + "name": "1.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252234, + "fields": { + "id_car_serie": 64351, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252235, + "fields": { + "id_car_serie": 64351, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252236, + "fields": { + "id_car_serie": 64351, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252237, + "fields": { + "id_car_serie": 64351, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252238, + "fields": { + "id_car_serie": 63225, + "name": "2.5 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252239, + "fields": { + "id_car_serie": 63223, + "name": "1.5 MT (37 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252240, + "fields": { + "id_car_serie": 63226, + "name": "2.5 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252241, + "fields": { + "id_car_serie": 64352, + "name": "2.5 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252242, + "fields": { + "id_car_serie": 64353, + "name": "1.4 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252243, + "fields": { + "id_car_serie": 64353, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252244, + "fields": { + "id_car_serie": 64353, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252245, + "fields": { + "id_car_serie": 64353, + "name": "1.6 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252246, + "fields": { + "id_car_serie": 64353, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252247, + "fields": { + "id_car_serie": 64353, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252248, + "fields": { + "id_car_serie": 64353, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252249, + "fields": { + "id_car_serie": 64355, + "name": "1.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252250, + "fields": { + "id_car_serie": 64355, + "name": "1.2 (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252251, + "fields": { + "id_car_serie": 64355, + "name": "1.2 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252252, + "fields": { + "id_car_serie": 64355, + "name": "1.6 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252253, + "fields": { + "id_car_serie": 64355, + "name": "1.6 (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252254, + "fields": { + "id_car_serie": 64355, + "name": "1.6 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252255, + "fields": { + "id_car_serie": 64356, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252256, + "fields": { + "id_car_serie": 64356, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252257, + "fields": { + "id_car_serie": 64356, + "name": "1.2 AMT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252258, + "fields": { + "id_car_serie": 64356, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252259, + "fields": { + "id_car_serie": 64356, + "name": "1.2 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252260, + "fields": { + "id_car_serie": 64356, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252261, + "fields": { + "id_car_serie": 64356, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252262, + "fields": { + "id_car_serie": 64356, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252263, + "fields": { + "id_car_serie": 64356, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252264, + "fields": { + "id_car_serie": 64356, + "name": "1.6 AMT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252265, + "fields": { + "id_car_serie": 64356, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252266, + "fields": { + "id_car_serie": 64356, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252267, + "fields": { + "id_car_serie": 64357, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252268, + "fields": { + "id_car_serie": 64357, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252269, + "fields": { + "id_car_serie": 64357, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252270, + "fields": { + "id_car_serie": 64357, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252271, + "fields": { + "id_car_serie": 64358, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252272, + "fields": { + "id_car_serie": 64358, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252273, + "fields": { + "id_car_serie": 64358, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252274, + "fields": { + "id_car_serie": 64358, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252275, + "fields": { + "id_car_serie": 64358, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252276, + "fields": { + "id_car_serie": 64358, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252277, + "fields": { + "id_car_serie": 64358, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252278, + "fields": { + "id_car_serie": 64358, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252279, + "fields": { + "id_car_serie": 64358, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252280, + "fields": { + "id_car_serie": 64359, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252281, + "fields": { + "id_car_serie": 64359, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252282, + "fields": { + "id_car_serie": 64359, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252283, + "fields": { + "id_car_serie": 64360, + "name": "1.6 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252284, + "fields": { + "id_car_serie": 64360, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252285, + "fields": { + "id_car_serie": 64360, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252286, + "fields": { + "id_car_serie": 64360, + "name": "1.8 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252287, + "fields": { + "id_car_serie": 64360, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252288, + "fields": { + "id_car_serie": 64360, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252289, + "fields": { + "id_car_serie": 64360, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252290, + "fields": { + "id_car_serie": 64361, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252291, + "fields": { + "id_car_serie": 64361, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252292, + "fields": { + "id_car_serie": 64361, + "name": "1.6 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252293, + "fields": { + "id_car_serie": 64361, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252294, + "fields": { + "id_car_serie": 64361, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252295, + "fields": { + "id_car_serie": 64361, + "name": "1.8 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252296, + "fields": { + "id_car_serie": 64361, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252297, + "fields": { + "id_car_serie": 64361, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252298, + "fields": { + "id_car_serie": 64361, + "name": "2.0 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252299, + "fields": { + "id_car_serie": 64361, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252300, + "fields": { + "id_car_serie": 64361, + "name": "1.9 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252301, + "fields": { + "id_car_serie": 64361, + "name": "1.9 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252302, + "fields": { + "id_car_serie": 64361, + "name": "1.9 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252303, + "fields": { + "id_car_serie": 64361, + "name": "1.9 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252304, + "fields": { + "id_car_serie": 64361, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252305, + "fields": { + "id_car_serie": 64361, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252306, + "fields": { + "id_car_serie": 64362, + "name": "2.2 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252307, + "fields": { + "id_car_serie": 64362, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252308, + "fields": { + "id_car_serie": 64362, + "name": "3.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252309, + "fields": { + "id_car_serie": 64362, + "name": "2.7 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252310, + "fields": { + "id_car_serie": 64363, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252311, + "fields": { + "id_car_serie": 64363, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252312, + "fields": { + "id_car_serie": 64363, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252313, + "fields": { + "id_car_serie": 64363, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252314, + "fields": { + "id_car_serie": 64363, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252315, + "fields": { + "id_car_serie": 64363, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252316, + "fields": { + "id_car_serie": 64363, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252317, + "fields": { + "id_car_serie": 64363, + "name": "2.2 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252318, + "fields": { + "id_car_serie": 64363, + "name": "2.2 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252319, + "fields": { + "id_car_serie": 64363, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252322, + "fields": { + "id_car_serie": 10783, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252326, + "fields": { + "id_car_serie": 63227, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252327, + "fields": { + "id_car_serie": 63227, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252328, + "fields": { + "id_car_serie": 63227, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252329, + "fields": { + "id_car_serie": 63227, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252330, + "fields": { + "id_car_serie": 63227, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252331, + "fields": { + "id_car_serie": 63227, + "name": "1.9 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252332, + "fields": { + "id_car_serie": 63227, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252333, + "fields": { + "id_car_serie": 63772, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252334, + "fields": { + "id_car_serie": 63772, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252335, + "fields": { + "id_car_serie": 63772, + "name": "1.4 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252336, + "fields": { + "id_car_serie": 63772, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252337, + "fields": { + "id_car_serie": 63772, + "name": "1.4 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252338, + "fields": { + "id_car_serie": 63772, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252339, + "fields": { + "id_car_serie": 63772, + "name": "1.6 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252340, + "fields": { + "id_car_serie": 63772, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252341, + "fields": { + "id_car_serie": 63772, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252342, + "fields": { + "id_car_serie": 63772, + "name": "1.9 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252343, + "fields": { + "id_car_serie": 63772, + "name": "1.9 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252344, + "fields": { + "id_car_serie": 63773, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252345, + "fields": { + "id_car_serie": 63773, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252346, + "fields": { + "id_car_serie": 63773, + "name": "1.1 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252347, + "fields": { + "id_car_serie": 63773, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252348, + "fields": { + "id_car_serie": 63773, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252349, + "fields": { + "id_car_serie": 63773, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252350, + "fields": { + "id_car_serie": 63773, + "name": "1.1 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252351, + "fields": { + "id_car_serie": 63773, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252352, + "fields": { + "id_car_serie": 63773, + "name": "1.4 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252353, + "fields": { + "id_car_serie": 63773, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252354, + "fields": { + "id_car_serie": 63773, + "name": "1.4 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252355, + "fields": { + "id_car_serie": 63773, + "name": "1.4 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252356, + "fields": { + "id_car_serie": 63773, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252357, + "fields": { + "id_car_serie": 63773, + "name": "1.6 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252358, + "fields": { + "id_car_serie": 63773, + "name": "1.6 AT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252359, + "fields": { + "id_car_serie": 63773, + "name": "1.8 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252360, + "fields": { + "id_car_serie": 63773, + "name": "1.9 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252361, + "fields": { + "id_car_serie": 63228, + "name": "4.0 MT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252362, + "fields": { + "id_car_serie": 64365, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252363, + "fields": { + "id_car_serie": 64365, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252364, + "fields": { + "id_car_serie": 64365, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252365, + "fields": { + "id_car_serie": 64365, + "name": "2.2 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252366, + "fields": { + "id_car_serie": 64365, + "name": "2.3 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252367, + "fields": { + "id_car_serie": 64365, + "name": "2.3 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252368, + "fields": { + "id_car_serie": 64366, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252369, + "fields": { + "id_car_serie": 64366, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252370, + "fields": { + "id_car_serie": 64366, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252371, + "fields": { + "id_car_serie": 64366, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252372, + "fields": { + "id_car_serie": 64366, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252373, + "fields": { + "id_car_serie": 64366, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252374, + "fields": { + "id_car_serie": 64366, + "name": "2.2 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252375, + "fields": { + "id_car_serie": 64366, + "name": "2.2 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252376, + "fields": { + "id_car_serie": 64366, + "name": "2.2 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252377, + "fields": { + "id_car_serie": 64366, + "name": "2.3 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252378, + "fields": { + "id_car_serie": 64366, + "name": "2.3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252379, + "fields": { + "id_car_serie": 64366, + "name": "2.3 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252380, + "fields": { + "id_car_serie": 64366, + "name": "2.3 MT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252381, + "fields": { + "id_car_serie": 64366, + "name": "2.3 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252382, + "fields": { + "id_car_serie": 64366, + "name": "2.3 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252383, + "fields": { + "id_car_serie": 64366, + "name": "2.3 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252384, + "fields": { + "id_car_serie": 64366, + "name": "2.7 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252385, + "fields": { + "id_car_serie": 64366, + "name": "2.7 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252386, + "fields": { + "id_car_serie": 64366, + "name": "2.7 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252387, + "fields": { + "id_car_serie": 63231, + "name": "4.0 AMT (520 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252388, + "fields": { + "id_car_serie": 63233, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252389, + "fields": { + "id_car_serie": 63234, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252390, + "fields": { + "id_car_serie": 64367, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252391, + "fields": { + "id_car_serie": 63235, + "name": "2.9 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252392, + "fields": { + "id_car_serie": 63235, + "name": "2.9 AMT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252393, + "fields": { + "id_car_serie": 63235, + "name": "3.4 AMT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252394, + "fields": { + "id_car_serie": 63235, + "name": "3.4 MT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252395, + "fields": { + "id_car_serie": 63235, + "name": "3.4 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252396, + "fields": { + "id_car_serie": 63235, + "name": "3.4 AMT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252397, + "fields": { + "id_car_serie": 64368, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252398, + "fields": { + "id_car_serie": 64368, + "name": "2.9 AT 4WD (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252399, + "fields": { + "id_car_serie": 64368, + "name": "4.0 AT 4WD (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252400, + "fields": { + "id_car_serie": 64368, + "name": "4.0 AT 4WD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252401, + "fields": { + "id_car_serie": 64369, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252402, + "fields": { + "id_car_serie": 64369, + "name": "2.9 AT 4WD (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252403, + "fields": { + "id_car_serie": 64369, + "name": "4.0 AT 4WD (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252404, + "fields": { + "id_car_serie": 64369, + "name": "4.0 AT 4WD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252405, + "fields": { + "id_car_serie": 63236, + "name": "2.9 AMT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252406, + "fields": { + "id_car_serie": 63236, + "name": "2.9 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252407, + "fields": { + "id_car_serie": 63236, + "name": "3.4 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252408, + "fields": { + "id_car_serie": 63236, + "name": "3.4 AMT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252409, + "fields": { + "id_car_serie": 63236, + "name": "3.4 AMT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252410, + "fields": { + "id_car_serie": 63236, + "name": "3.4 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252411, + "fields": { + "id_car_serie": 63237, + "name": "2.7 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252412, + "fields": { + "id_car_serie": 63237, + "name": "3.4 MT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252413, + "fields": { + "id_car_serie": 63237, + "name": "3.4 AT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252414, + "fields": { + "id_car_serie": 63237, + "name": "2.7 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252415, + "fields": { + "id_car_serie": 63237, + "name": "3.4 AT (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252416, + "fields": { + "id_car_serie": 63237, + "name": "3.4 MT (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252417, + "fields": { + "id_car_serie": 63238, + "name": "4.0 MT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252418, + "fields": { + "id_car_serie": 64370, + "name": "3.0 AMT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252419, + "fields": { + "id_car_serie": 64370, + "name": "3.0 AMT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252420, + "fields": { + "id_car_serie": 64370, + "name": "2.9 AMT 4WD (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252421, + "fields": { + "id_car_serie": 64370, + "name": "4.0 AMT 4WD (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252422, + "fields": { + "id_car_serie": 64370, + "name": "4.0 AMT 4WD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252423, + "fields": { + "id_car_serie": 64370, + "name": "2.9 AMT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252424, + "fields": { + "id_car_serie": 64370, + "name": "4.0 AMT 4WD (422 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252425, + "fields": { + "id_car_serie": 64371, + "name": "3.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252426, + "fields": { + "id_car_serie": 64371, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252427, + "fields": { + "id_car_serie": 64371, + "name": "3.0 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252428, + "fields": { + "id_car_serie": 64371, + "name": "3.0 AMT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252429, + "fields": { + "id_car_serie": 64371, + "name": "3.0 AMT 4WD (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252430, + "fields": { + "id_car_serie": 64371, + "name": "3.6 AMT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252431, + "fields": { + "id_car_serie": 64371, + "name": "3.6 AMT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252432, + "fields": { + "id_car_serie": 64371, + "name": "4.8 AMT 4WD (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252433, + "fields": { + "id_car_serie": 64371, + "name": "4.8 AMT 4WD (520 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252434, + "fields": { + "id_car_serie": 64371, + "name": "4.8 AMT 4WD (570 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252435, + "fields": { + "id_car_serie": 64371, + "name": "3.0 MT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252436, + "fields": { + "id_car_serie": 64371, + "name": "3.6 MT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252437, + "fields": { + "id_car_serie": 64371, + "name": "4.8 AMT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252438, + "fields": { + "id_car_serie": 64372, + "name": "3.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252439, + "fields": { + "id_car_serie": 64372, + "name": "3.0 AMT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252440, + "fields": { + "id_car_serie": 64372, + "name": "3.6 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252441, + "fields": { + "id_car_serie": 64372, + "name": "3.6 AMT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252442, + "fields": { + "id_car_serie": 64372, + "name": "3.6 AMT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252443, + "fields": { + "id_car_serie": 64372, + "name": "4.8 AMT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252444, + "fields": { + "id_car_serie": 64372, + "name": "4.8 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252445, + "fields": { + "id_car_serie": 64372, + "name": "4.8 AMT 4WD (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252446, + "fields": { + "id_car_serie": 64372, + "name": "4.8 AMT 4WD (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252447, + "fields": { + "id_car_serie": 64372, + "name": "4.8 AMT 4WD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252450, + "fields": { + "id_car_serie": 7468, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252453, + "fields": { + "id_car_serie": 53965, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252454, + "fields": { + "id_car_serie": 53965, + "name": "1.0 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252455, + "fields": { + "id_car_serie": 53965, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252456, + "fields": { + "id_car_serie": 53965, + "name": "1.3 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252457, + "fields": { + "id_car_serie": 53965, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252458, + "fields": { + "id_car_serie": 53965, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252459, + "fields": { + "id_car_serie": 64375, + "name": "0.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252460, + "fields": { + "id_car_serie": 64375, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252461, + "fields": { + "id_car_serie": 64375, + "name": "1.2 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252462, + "fields": { + "id_car_serie": 64375, + "name": "1.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252463, + "fields": { + "id_car_serie": 64375, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252464, + "fields": { + "id_car_serie": 64375, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252465, + "fields": { + "id_car_serie": 64375, + "name": "1.5 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252466, + "fields": { + "id_car_serie": 64375, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252467, + "fields": { + "id_car_serie": 64376, + "name": "0.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252468, + "fields": { + "id_car_serie": 64376, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252469, + "fields": { + "id_car_serie": 64376, + "name": "1.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252470, + "fields": { + "id_car_serie": 64376, + "name": "1.2 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252471, + "fields": { + "id_car_serie": 64376, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252472, + "fields": { + "id_car_serie": 64376, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252473, + "fields": { + "id_car_serie": 64376, + "name": "1.5 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252474, + "fields": { + "id_car_serie": 64376, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252475, + "fields": { + "id_car_serie": 64377, + "name": "0.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252476, + "fields": { + "id_car_serie": 64377, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252477, + "fields": { + "id_car_serie": 64377, + "name": "1.2 AMT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252478, + "fields": { + "id_car_serie": 64377, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252479, + "fields": { + "id_car_serie": 64377, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252480, + "fields": { + "id_car_serie": 64377, + "name": "1.5 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252481, + "fields": { + "id_car_serie": 64378, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252482, + "fields": { + "id_car_serie": 64378, + "name": "1.2 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252483, + "fields": { + "id_car_serie": 64378, + "name": "1.2 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252484, + "fields": { + "id_car_serie": 64378, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252485, + "fields": { + "id_car_serie": 64378, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252486, + "fields": { + "id_car_serie": 64378, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252487, + "fields": { + "id_car_serie": 64378, + "name": "1.5 AMT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252488, + "fields": { + "id_car_serie": 64378, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252489, + "fields": { + "id_car_serie": 64378, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252490, + "fields": { + "id_car_serie": 64379, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252491, + "fields": { + "id_car_serie": 64379, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252492, + "fields": { + "id_car_serie": 64379, + "name": "1.2 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252493, + "fields": { + "id_car_serie": 64379, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252494, + "fields": { + "id_car_serie": 64379, + "name": "1.4 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252495, + "fields": { + "id_car_serie": 64379, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252496, + "fields": { + "id_car_serie": 64379, + "name": "1.5 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252497, + "fields": { + "id_car_serie": 64379, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252498, + "fields": { + "id_car_serie": 64379, + "name": "1.9 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252499, + "fields": { + "id_car_serie": 64380, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252500, + "fields": { + "id_car_serie": 64380, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252501, + "fields": { + "id_car_serie": 64380, + "name": "1.2 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252502, + "fields": { + "id_car_serie": 64380, + "name": "1.4 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252503, + "fields": { + "id_car_serie": 64380, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252504, + "fields": { + "id_car_serie": 64380, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252505, + "fields": { + "id_car_serie": 64380, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252506, + "fields": { + "id_car_serie": 64380, + "name": "1.5 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252507, + "fields": { + "id_car_serie": 64380, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252508, + "fields": { + "id_car_serie": 64380, + "name": "1.9 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252509, + "fields": { + "id_car_serie": 64381, + "name": "1.6 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252510, + "fields": { + "id_car_serie": 64381, + "name": "1.6 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252511, + "fields": { + "id_car_serie": 63239, + "name": "1.8 AMT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252512, + "fields": { + "id_car_serie": 63239, + "name": "2.0 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252513, + "fields": { + "id_car_serie": 63239, + "name": "2.0 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252514, + "fields": { + "id_car_serie": 64382, + "name": "1.3 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252515, + "fields": { + "id_car_serie": 64382, + "name": "1.3 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252516, + "fields": { + "id_car_serie": 64382, + "name": "1.3 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252517, + "fields": { + "id_car_serie": 64382, + "name": "1.3 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252518, + "fields": { + "id_car_serie": 64382, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252519, + "fields": { + "id_car_serie": 64382, + "name": "1.5 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252520, + "fields": { + "id_car_serie": 64382, + "name": "1.8 MT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252521, + "fields": { + "id_car_serie": 64382, + "name": "1.8 MT 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252522, + "fields": { + "id_car_serie": 64383, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252523, + "fields": { + "id_car_serie": 64383, + "name": "1.6 CVT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252524, + "fields": { + "id_car_serie": 64383, + "name": "1.3 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252525, + "fields": { + "id_car_serie": 64383, + "name": "1.3 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252526, + "fields": { + "id_car_serie": 49065, + "name": "1.2 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252527, + "fields": { + "id_car_serie": 49065, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252528, + "fields": { + "id_car_serie": 49065, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252529, + "fields": { + "id_car_serie": 49065, + "name": "2.0 CVT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252530, + "fields": { + "id_car_serie": 49065, + "name": "2.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252531, + "fields": { + "id_car_serie": 49065, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252532, + "fields": { + "id_car_serie": 49065, + "name": "1.5 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252533, + "fields": { + "id_car_serie": 49065, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252534, + "fields": { + "id_car_serie": 49065, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252535, + "fields": { + "id_car_serie": 49065, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252536, + "fields": { + "id_car_serie": 64384, + "name": "1.8 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252537, + "fields": { + "id_car_serie": 64384, + "name": "1.8 AMT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252538, + "fields": { + "id_car_serie": 64384, + "name": "1.8 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252539, + "fields": { + "id_car_serie": 64384, + "name": "1.8 AMT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252540, + "fields": { + "id_car_serie": 63240, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252541, + "fields": { + "id_car_serie": 63240, + "name": "1.2 AMT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252542, + "fields": { + "id_car_serie": 63240, + "name": "1.2 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252543, + "fields": { + "id_car_serie": 63240, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252544, + "fields": { + "id_car_serie": 63240, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252545, + "fields": { + "id_car_serie": 63240, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252546, + "fields": { + "id_car_serie": 63240, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252547, + "fields": { + "id_car_serie": 63240, + "name": "1.5 AMT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252548, + "fields": { + "id_car_serie": 63240, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252549, + "fields": { + "id_car_serie": 63240, + "name": "1.5 AMT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252550, + "fields": { + "id_car_serie": 63240, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252553, + "fields": { + "id_car_serie": 9051, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252554, + "fields": { + "id_car_serie": 9051, + "name": "2.0 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252555, + "fields": { + "id_car_serie": 9051, + "name": "2.2 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252556, + "fields": { + "id_car_serie": 9051, + "name": "2.2 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252557, + "fields": { + "id_car_serie": 9051, + "name": "2.2 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252559, + "fields": { + "id_car_serie": 9051, + "name": "3.0 MT 4WD (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252560, + "fields": { + "id_car_serie": 9051, + "name": "3.0 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252561, + "fields": { + "id_car_serie": 9051, + "name": "3.0 MT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252562, + "fields": { + "id_car_serie": 9051, + "name": "2.1 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252563, + "fields": { + "id_car_serie": 9051, + "name": "2.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252564, + "fields": { + "id_car_serie": 9051, + "name": "2.5 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252565, + "fields": { + "id_car_serie": 64386, + "name": "0.9 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252566, + "fields": { + "id_car_serie": 64386, + "name": "0.9 AMT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252567, + "fields": { + "id_car_serie": 64386, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252568, + "fields": { + "id_car_serie": 64386, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252569, + "fields": { + "id_car_serie": 64387, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252570, + "fields": { + "id_car_serie": 64387, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252571, + "fields": { + "id_car_serie": 64387, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252572, + "fields": { + "id_car_serie": 64387, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252573, + "fields": { + "id_car_serie": 64388, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252574, + "fields": { + "id_car_serie": 64388, + "name": "1.7 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252575, + "fields": { + "id_car_serie": 64389, + "name": "1.0 MT (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252576, + "fields": { + "id_car_serie": 64389, + "name": "1.1 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252577, + "fields": { + "id_car_serie": 64389, + "name": "1.1 AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252578, + "fields": { + "id_car_serie": 64389, + "name": "1.4 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252579, + "fields": { + "id_car_serie": 64389, + "name": "1.4 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252580, + "fields": { + "id_car_serie": 64389, + "name": "1.4 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252581, + "fields": { + "id_car_serie": 64389, + "name": "1.4 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252582, + "fields": { + "id_car_serie": 64389, + "name": "1.4 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252583, + "fields": { + "id_car_serie": 64389, + "name": "1.7 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252584, + "fields": { + "id_car_serie": 64389, + "name": "1.6 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252585, + "fields": { + "id_car_serie": 64390, + "name": "1.0 MT (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252586, + "fields": { + "id_car_serie": 64390, + "name": "1.1 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252587, + "fields": { + "id_car_serie": 64390, + "name": "1.1 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252588, + "fields": { + "id_car_serie": 64390, + "name": "1.1 AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252589, + "fields": { + "id_car_serie": 64390, + "name": "1.4 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252590, + "fields": { + "id_car_serie": 64390, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252591, + "fields": { + "id_car_serie": 64390, + "name": "1.4 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252592, + "fields": { + "id_car_serie": 64390, + "name": "1.4 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252593, + "fields": { + "id_car_serie": 64390, + "name": "1.4 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252594, + "fields": { + "id_car_serie": 64390, + "name": "1.4 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252595, + "fields": { + "id_car_serie": 64390, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252596, + "fields": { + "id_car_serie": 64390, + "name": "1.4 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252597, + "fields": { + "id_car_serie": 64390, + "name": "1.7 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252598, + "fields": { + "id_car_serie": 64390, + "name": "1.7 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252599, + "fields": { + "id_car_serie": 64390, + "name": "1.6 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252600, + "fields": { + "id_car_serie": 4064, + "name": "0.8 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252602, + "fields": { + "id_car_serie": 4064, + "name": "1.1 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252603, + "fields": { + "id_car_serie": 4064, + "name": "1.3 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252604, + "fields": { + "id_car_serie": 4064, + "name": "1.3 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252605, + "fields": { + "id_car_serie": 4064, + "name": "1.3 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252607, + "fields": { + "id_car_serie": 4064, + "name": "1.4 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252608, + "fields": { + "id_car_serie": 4064, + "name": "1.6 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252609, + "fields": { + "id_car_serie": 64392, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252610, + "fields": { + "id_car_serie": 64392, + "name": "1.3 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252611, + "fields": { + "id_car_serie": 64392, + "name": "1.3 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252612, + "fields": { + "id_car_serie": 64392, + "name": "1.3 AMT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252613, + "fields": { + "id_car_serie": 64392, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252614, + "fields": { + "id_car_serie": 64392, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252615, + "fields": { + "id_car_serie": 64392, + "name": "1.5 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252616, + "fields": { + "id_car_serie": 64393, + "name": "0.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252617, + "fields": { + "id_car_serie": 64393, + "name": "1.2 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252618, + "fields": { + "id_car_serie": 64393, + "name": "1.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252619, + "fields": { + "id_car_serie": 64393, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252620, + "fields": { + "id_car_serie": 64393, + "name": "1.5 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252621, + "fields": { + "id_car_serie": 64393, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252622, + "fields": { + "id_car_serie": 64395, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252623, + "fields": { + "id_car_serie": 64395, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252624, + "fields": { + "id_car_serie": 64395, + "name": "1.3 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252625, + "fields": { + "id_car_serie": 64396, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252626, + "fields": { + "id_car_serie": 64396, + "name": "1.2 MT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252627, + "fields": { + "id_car_serie": 64396, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252628, + "fields": { + "id_car_serie": 64396, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252629, + "fields": { + "id_car_serie": 64396, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252630, + "fields": { + "id_car_serie": 64397, + "name": "1.2 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252631, + "fields": { + "id_car_serie": 64398, + "name": "1.0 MT (39 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252632, + "fields": { + "id_car_serie": 64398, + "name": "1.0 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252633, + "fields": { + "id_car_serie": 64398, + "name": "1.1 AT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252634, + "fields": { + "id_car_serie": 64398, + "name": "1.1 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252635, + "fields": { + "id_car_serie": 64398, + "name": "1.2 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252636, + "fields": { + "id_car_serie": 63241, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252637, + "fields": { + "id_car_serie": 63242, + "name": "1.2 MT (36 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252638, + "fields": { + "id_car_serie": 64399, + "name": "1.2 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252639, + "fields": { + "id_car_serie": 64400, + "name": "1.2 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252640, + "fields": { + "id_car_serie": 64401, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252641, + "fields": { + "id_car_serie": 64401, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252642, + "fields": { + "id_car_serie": 64401, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252643, + "fields": { + "id_car_serie": 64401, + "name": "1.0 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252644, + "fields": { + "id_car_serie": 64402, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252645, + "fields": { + "id_car_serie": 64402, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252646, + "fields": { + "id_car_serie": 64402, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252647, + "fields": { + "id_car_serie": 64402, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252648, + "fields": { + "id_car_serie": 64402, + "name": "1.0 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252649, + "fields": { + "id_car_serie": 64403, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252650, + "fields": { + "id_car_serie": 64403, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252651, + "fields": { + "id_car_serie": 64403, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252652, + "fields": { + "id_car_serie": 64403, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252653, + "fields": { + "id_car_serie": 64403, + "name": "1.0 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252654, + "fields": { + "id_car_serie": 64403, + "name": "1.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252655, + "fields": { + "id_car_serie": 64403, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252656, + "fields": { + "id_car_serie": 64403, + "name": "1.2 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252657, + "fields": { + "id_car_serie": 64403, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252658, + "fields": { + "id_car_serie": 64403, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252659, + "fields": { + "id_car_serie": 64403, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252660, + "fields": { + "id_car_serie": 64403, + "name": "1.4 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252661, + "fields": { + "id_car_serie": 64404, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252662, + "fields": { + "id_car_serie": 64404, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252663, + "fields": { + "id_car_serie": 64404, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252664, + "fields": { + "id_car_serie": 64404, + "name": "1.0 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252665, + "fields": { + "id_car_serie": 64404, + "name": "1.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252666, + "fields": { + "id_car_serie": 64404, + "name": "1.2 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252667, + "fields": { + "id_car_serie": 64404, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252668, + "fields": { + "id_car_serie": 64404, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252669, + "fields": { + "id_car_serie": 64404, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252670, + "fields": { + "id_car_serie": 64404, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252671, + "fields": { + "id_car_serie": 64404, + "name": "1.4 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252672, + "fields": { + "id_car_serie": 64405, + "name": "1.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252673, + "fields": { + "id_car_serie": 64405, + "name": "1.2 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252674, + "fields": { + "id_car_serie": 64405, + "name": "1.2 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252675, + "fields": { + "id_car_serie": 64405, + "name": "1.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252676, + "fields": { + "id_car_serie": 64405, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252677, + "fields": { + "id_car_serie": 64405, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252678, + "fields": { + "id_car_serie": 64406, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252679, + "fields": { + "id_car_serie": 64406, + "name": "1.4 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252680, + "fields": { + "id_car_serie": 64406, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252681, + "fields": { + "id_car_serie": 64406, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252682, + "fields": { + "id_car_serie": 64406, + "name": "1.2 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252683, + "fields": { + "id_car_serie": 64406, + "name": "1.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252684, + "fields": { + "id_car_serie": 64406, + "name": "1.2 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252685, + "fields": { + "id_car_serie": 64406, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252686, + "fields": { + "id_car_serie": 64406, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252687, + "fields": { + "id_car_serie": 64406, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252688, + "fields": { + "id_car_serie": 64406, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252689, + "fields": { + "id_car_serie": 64407, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252690, + "fields": { + "id_car_serie": 64407, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252691, + "fields": { + "id_car_serie": 64407, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252692, + "fields": { + "id_car_serie": 64407, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252693, + "fields": { + "id_car_serie": 64407, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252694, + "fields": { + "id_car_serie": 64407, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252695, + "fields": { + "id_car_serie": 64407, + "name": "1.9 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252696, + "fields": { + "id_car_serie": 64407, + "name": "1.9 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252697, + "fields": { + "id_car_serie": 64408, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252698, + "fields": { + "id_car_serie": 64408, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252699, + "fields": { + "id_car_serie": 64408, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252700, + "fields": { + "id_car_serie": 64408, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252701, + "fields": { + "id_car_serie": 64408, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252702, + "fields": { + "id_car_serie": 64408, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252703, + "fields": { + "id_car_serie": 64408, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252704, + "fields": { + "id_car_serie": 64408, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252705, + "fields": { + "id_car_serie": 64408, + "name": "1.9 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252706, + "fields": { + "id_car_serie": 64408, + "name": "1.9 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252707, + "fields": { + "id_car_serie": 64409, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252708, + "fields": { + "id_car_serie": 64409, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252709, + "fields": { + "id_car_serie": 64409, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252710, + "fields": { + "id_car_serie": 64409, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252711, + "fields": { + "id_car_serie": 64409, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252712, + "fields": { + "id_car_serie": 64409, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252713, + "fields": { + "id_car_serie": 64409, + "name": "1.9 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252714, + "fields": { + "id_car_serie": 64409, + "name": "1.9 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252715, + "fields": { + "id_car_serie": 64410, + "name": "1.3 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252716, + "fields": { + "id_car_serie": 64410, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252717, + "fields": { + "id_car_serie": 64411, + "name": "2.0 AMT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252718, + "fields": { + "id_car_serie": 64412, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252719, + "fields": { + "id_car_serie": 64412, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252720, + "fields": { + "id_car_serie": 64412, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252721, + "fields": { + "id_car_serie": 64413, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252722, + "fields": { + "id_car_serie": 64413, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252723, + "fields": { + "id_car_serie": 64413, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252724, + "fields": { + "id_car_serie": 64414, + "name": "1.8 AMT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252725, + "fields": { + "id_car_serie": 64414, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252726, + "fields": { + "id_car_serie": 64414, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252727, + "fields": { + "id_car_serie": 64414, + "name": "2.0 AMT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252728, + "fields": { + "id_car_serie": 64415, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252729, + "fields": { + "id_car_serie": 64415, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252730, + "fields": { + "id_car_serie": 64415, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252731, + "fields": { + "id_car_serie": 64415, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252732, + "fields": { + "id_car_serie": 64415, + "name": "1.8 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252733, + "fields": { + "id_car_serie": 64415, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252734, + "fields": { + "id_car_serie": 64415, + "name": "1.8 AMT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252735, + "fields": { + "id_car_serie": 64415, + "name": "1.0 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252736, + "fields": { + "id_car_serie": 64415, + "name": "1.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252737, + "fields": { + "id_car_serie": 64415, + "name": "1.2 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252738, + "fields": { + "id_car_serie": 64415, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252739, + "fields": { + "id_car_serie": 64415, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252740, + "fields": { + "id_car_serie": 64415, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252741, + "fields": { + "id_car_serie": 64415, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252742, + "fields": { + "id_car_serie": 64415, + "name": "1.4 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252743, + "fields": { + "id_car_serie": 64415, + "name": "1.4 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252744, + "fields": { + "id_car_serie": 64415, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252745, + "fields": { + "id_car_serie": 64415, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252746, + "fields": { + "id_car_serie": 64415, + "name": "1.6 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252747, + "fields": { + "id_car_serie": 64415, + "name": "1.6 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252748, + "fields": { + "id_car_serie": 64415, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252749, + "fields": { + "id_car_serie": 64415, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252750, + "fields": { + "id_car_serie": 64415, + "name": "2.0 AMT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252751, + "fields": { + "id_car_serie": 64416, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252752, + "fields": { + "id_car_serie": 64416, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252753, + "fields": { + "id_car_serie": 64416, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252754, + "fields": { + "id_car_serie": 64416, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252755, + "fields": { + "id_car_serie": 64416, + "name": "1.8 AMT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252756, + "fields": { + "id_car_serie": 64416, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252757, + "fields": { + "id_car_serie": 64416, + "name": "1.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252758, + "fields": { + "id_car_serie": 64416, + "name": "1.0 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252759, + "fields": { + "id_car_serie": 64416, + "name": "1.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252760, + "fields": { + "id_car_serie": 64416, + "name": "1.2 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252761, + "fields": { + "id_car_serie": 64416, + "name": "1.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252762, + "fields": { + "id_car_serie": 64416, + "name": "1.2 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252763, + "fields": { + "id_car_serie": 64416, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252764, + "fields": { + "id_car_serie": 64416, + "name": "1.2 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252765, + "fields": { + "id_car_serie": 64416, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252766, + "fields": { + "id_car_serie": 64416, + "name": "1.4 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252767, + "fields": { + "id_car_serie": 64416, + "name": "1.8 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252768, + "fields": { + "id_car_serie": 64416, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252769, + "fields": { + "id_car_serie": 64416, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252770, + "fields": { + "id_car_serie": 64416, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252771, + "fields": { + "id_car_serie": 64416, + "name": "1.6 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252772, + "fields": { + "id_car_serie": 64416, + "name": "1.6 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252773, + "fields": { + "id_car_serie": 64416, + "name": "1.6 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252774, + "fields": { + "id_car_serie": 64416, + "name": "1.6 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252775, + "fields": { + "id_car_serie": 64416, + "name": "2.0 AMT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252776, + "fields": { + "id_car_serie": 64416, + "name": "2.0 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252777, + "fields": { + "id_car_serie": 64416, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252778, + "fields": { + "id_car_serie": 64416, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252779, + "fields": { + "id_car_serie": 64416, + "name": "2.0 AMT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252780, + "fields": { + "id_car_serie": 64416, + "name": "1.4 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252781, + "fields": { + "id_car_serie": 64416, + "name": "1.4 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252782, + "fields": { + "id_car_serie": 64417, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252783, + "fields": { + "id_car_serie": 64417, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252784, + "fields": { + "id_car_serie": 64417, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252785, + "fields": { + "id_car_serie": 64417, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252786, + "fields": { + "id_car_serie": 64417, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252787, + "fields": { + "id_car_serie": 64417, + "name": "1.8 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252788, + "fields": { + "id_car_serie": 64417, + "name": "1.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252789, + "fields": { + "id_car_serie": 64417, + "name": "1.0 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252790, + "fields": { + "id_car_serie": 64417, + "name": "1.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252791, + "fields": { + "id_car_serie": 64417, + "name": "1.2 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252792, + "fields": { + "id_car_serie": 64417, + "name": "1.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252793, + "fields": { + "id_car_serie": 64417, + "name": "1.2 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252794, + "fields": { + "id_car_serie": 64417, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252795, + "fields": { + "id_car_serie": 64417, + "name": "1.2 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252796, + "fields": { + "id_car_serie": 64417, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252797, + "fields": { + "id_car_serie": 64417, + "name": "1.4 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252798, + "fields": { + "id_car_serie": 64417, + "name": "1.8 AMT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252799, + "fields": { + "id_car_serie": 64417, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252800, + "fields": { + "id_car_serie": 64417, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252801, + "fields": { + "id_car_serie": 64417, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252802, + "fields": { + "id_car_serie": 64417, + "name": "1.6 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252803, + "fields": { + "id_car_serie": 64417, + "name": "1.6 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252804, + "fields": { + "id_car_serie": 64417, + "name": "1.6 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252805, + "fields": { + "id_car_serie": 64417, + "name": "2.0 AMT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252806, + "fields": { + "id_car_serie": 64417, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252807, + "fields": { + "id_car_serie": 64417, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252808, + "fields": { + "id_car_serie": 64417, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252809, + "fields": { + "id_car_serie": 64417, + "name": "2.0 AMT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252810, + "fields": { + "id_car_serie": 64417, + "name": "1.4 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252811, + "fields": { + "id_car_serie": 64417, + "name": "1.4 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252812, + "fields": { + "id_car_serie": 64418, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252813, + "fields": { + "id_car_serie": 64418, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252814, + "fields": { + "id_car_serie": 64418, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252815, + "fields": { + "id_car_serie": 64418, + "name": "1.4 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252816, + "fields": { + "id_car_serie": 64418, + "name": "1.4 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252817, + "fields": { + "id_car_serie": 64418, + "name": "1.8 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252818, + "fields": { + "id_car_serie": 64418, + "name": "1.8 AMT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252819, + "fields": { + "id_car_serie": 64418, + "name": "1.8 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252820, + "fields": { + "id_car_serie": 64418, + "name": "1.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252821, + "fields": { + "id_car_serie": 64418, + "name": "1.2 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252822, + "fields": { + "id_car_serie": 64418, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252823, + "fields": { + "id_car_serie": 64418, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252824, + "fields": { + "id_car_serie": 64418, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252825, + "fields": { + "id_car_serie": 64418, + "name": "1.8 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252826, + "fields": { + "id_car_serie": 64418, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252827, + "fields": { + "id_car_serie": 64418, + "name": "1.6 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252828, + "fields": { + "id_car_serie": 64418, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252829, + "fields": { + "id_car_serie": 64418, + "name": "1.9 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252830, + "fields": { + "id_car_serie": 64418, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252831, + "fields": { + "id_car_serie": 64418, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252832, + "fields": { + "id_car_serie": 64418, + "name": "2.0 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252833, + "fields": { + "id_car_serie": 64419, + "name": "1.8 MT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252834, + "fields": { + "id_car_serie": 64419, + "name": "1.8 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252835, + "fields": { + "id_car_serie": 64419, + "name": "2.0 AMT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252836, + "fields": { + "id_car_serie": 64419, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252837, + "fields": { + "id_car_serie": 64420, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252838, + "fields": { + "id_car_serie": 64420, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252839, + "fields": { + "id_car_serie": 64421, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252840, + "fields": { + "id_car_serie": 64421, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252841, + "fields": { + "id_car_serie": 64421, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252842, + "fields": { + "id_car_serie": 64421, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252843, + "fields": { + "id_car_serie": 64421, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252844, + "fields": { + "id_car_serie": 64421, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252845, + "fields": { + "id_car_serie": 64421, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252846, + "fields": { + "id_car_serie": 64421, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252847, + "fields": { + "id_car_serie": 64421, + "name": "1.8 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252848, + "fields": { + "id_car_serie": 64421, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252849, + "fields": { + "id_car_serie": 64421, + "name": "1.9 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252850, + "fields": { + "id_car_serie": 64421, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252851, + "fields": { + "id_car_serie": 64421, + "name": "2.0 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252852, + "fields": { + "id_car_serie": 64421, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252853, + "fields": { + "id_car_serie": 64422, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252854, + "fields": { + "id_car_serie": 64422, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252855, + "fields": { + "id_car_serie": 64422, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252856, + "fields": { + "id_car_serie": 64422, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252857, + "fields": { + "id_car_serie": 64422, + "name": "1.8 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252858, + "fields": { + "id_car_serie": 64422, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252859, + "fields": { + "id_car_serie": 64422, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252860, + "fields": { + "id_car_serie": 64422, + "name": "2.0 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252861, + "fields": { + "id_car_serie": 64422, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252862, + "fields": { + "id_car_serie": 64422, + "name": "1.9 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252863, + "fields": { + "id_car_serie": 64422, + "name": "1.9 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252864, + "fields": { + "id_car_serie": 64422, + "name": "1.9 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252865, + "fields": { + "id_car_serie": 64422, + "name": "1.9 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252866, + "fields": { + "id_car_serie": 64422, + "name": "1.9 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252867, + "fields": { + "id_car_serie": 64422, + "name": "1.9 MT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252868, + "fields": { + "id_car_serie": 64422, + "name": "1.9 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252869, + "fields": { + "id_car_serie": 64422, + "name": "1.9 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252870, + "fields": { + "id_car_serie": 64423, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252871, + "fields": { + "id_car_serie": 64423, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252872, + "fields": { + "id_car_serie": 64423, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252873, + "fields": { + "id_car_serie": 64423, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252874, + "fields": { + "id_car_serie": 64423, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252875, + "fields": { + "id_car_serie": 64423, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252876, + "fields": { + "id_car_serie": 64423, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252877, + "fields": { + "id_car_serie": 64423, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252878, + "fields": { + "id_car_serie": 64423, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252879, + "fields": { + "id_car_serie": 64423, + "name": "1.8 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252880, + "fields": { + "id_car_serie": 64423, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252881, + "fields": { + "id_car_serie": 64423, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252882, + "fields": { + "id_car_serie": 64423, + "name": "1.9 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252883, + "fields": { + "id_car_serie": 64423, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252884, + "fields": { + "id_car_serie": 64423, + "name": "1.9 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252885, + "fields": { + "id_car_serie": 64423, + "name": "1.9 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252886, + "fields": { + "id_car_serie": 64423, + "name": "1.9 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252887, + "fields": { + "id_car_serie": 64424, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252888, + "fields": { + "id_car_serie": 64424, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252889, + "fields": { + "id_car_serie": 64424, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252890, + "fields": { + "id_car_serie": 64424, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252891, + "fields": { + "id_car_serie": 64424, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252892, + "fields": { + "id_car_serie": 64424, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252893, + "fields": { + "id_car_serie": 64424, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252894, + "fields": { + "id_car_serie": 64424, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252895, + "fields": { + "id_car_serie": 64424, + "name": "1.9 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252896, + "fields": { + "id_car_serie": 64424, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252897, + "fields": { + "id_car_serie": 64424, + "name": "1.9 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252898, + "fields": { + "id_car_serie": 64424, + "name": "1.9 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252899, + "fields": { + "id_car_serie": 64424, + "name": "1.9 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252900, + "fields": { + "id_car_serie": 64425, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252901, + "fields": { + "id_car_serie": 64425, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252902, + "fields": { + "id_car_serie": 64425, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252903, + "fields": { + "id_car_serie": 64425, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252904, + "fields": { + "id_car_serie": 64425, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252905, + "fields": { + "id_car_serie": 64425, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252906, + "fields": { + "id_car_serie": 64425, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252907, + "fields": { + "id_car_serie": 64425, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252908, + "fields": { + "id_car_serie": 64425, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252909, + "fields": { + "id_car_serie": 64425, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252910, + "fields": { + "id_car_serie": 64425, + "name": "1.9 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252911, + "fields": { + "id_car_serie": 64425, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252912, + "fields": { + "id_car_serie": 64425, + "name": "1.9 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252913, + "fields": { + "id_car_serie": 64425, + "name": "1.9 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252914, + "fields": { + "id_car_serie": 64425, + "name": "1.9 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252915, + "fields": { + "id_car_serie": 64426, + "name": "1.1 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252916, + "fields": { + "id_car_serie": 64426, + "name": "1.2 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252917, + "fields": { + "id_car_serie": 63243, + "name": "2.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252918, + "fields": { + "id_car_serie": 63243, + "name": "2.0 AMT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252919, + "fields": { + "id_car_serie": 63243, + "name": "2.0 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252920, + "fields": { + "id_car_serie": 63243, + "name": "2.0 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252921, + "fields": { + "id_car_serie": 63243, + "name": "2.0 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252922, + "fields": { + "id_car_serie": 63243, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252923, + "fields": { + "id_car_serie": 63243, + "name": "2.0 AMT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252924, + "fields": { + "id_car_serie": 64427, + "name": "2.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252925, + "fields": { + "id_car_serie": 64427, + "name": "2.0 AMT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252926, + "fields": { + "id_car_serie": 64427, + "name": "2.0 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252927, + "fields": { + "id_car_serie": 64427, + "name": "2.0 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252928, + "fields": { + "id_car_serie": 64427, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252929, + "fields": { + "id_car_serie": 64427, + "name": "2.0 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252930, + "fields": { + "id_car_serie": 64427, + "name": "2.0 AMT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252931, + "fields": { + "id_car_serie": 64428, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252932, + "fields": { + "id_car_serie": 64428, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252933, + "fields": { + "id_car_serie": 64428, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252934, + "fields": { + "id_car_serie": 64428, + "name": "1.4 AMT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252935, + "fields": { + "id_car_serie": 64429, + "name": "1.0 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252936, + "fields": { + "id_car_serie": 64429, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252937, + "fields": { + "id_car_serie": 64429, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252938, + "fields": { + "id_car_serie": 64429, + "name": "1.4 AMT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252939, + "fields": { + "id_car_serie": 64429, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252940, + "fields": { + "id_car_serie": 64429, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252941, + "fields": { + "id_car_serie": 64429, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252942, + "fields": { + "id_car_serie": 64430, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252943, + "fields": { + "id_car_serie": 64430, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252944, + "fields": { + "id_car_serie": 64430, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252945, + "fields": { + "id_car_serie": 64430, + "name": "1.4 AMT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252946, + "fields": { + "id_car_serie": 64430, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252947, + "fields": { + "id_car_serie": 64430, + "name": "1.0 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252948, + "fields": { + "id_car_serie": 64430, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252949, + "fields": { + "id_car_serie": 64430, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252950, + "fields": { + "id_car_serie": 64430, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252951, + "fields": { + "id_car_serie": 64430, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252952, + "fields": { + "id_car_serie": 64431, + "name": "1.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252953, + "fields": { + "id_car_serie": 64431, + "name": "1.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252954, + "fields": { + "id_car_serie": 64431, + "name": "1.2 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252955, + "fields": { + "id_car_serie": 64431, + "name": "1.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252956, + "fields": { + "id_car_serie": 64431, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252957, + "fields": { + "id_car_serie": 64431, + "name": "1.4 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252958, + "fields": { + "id_car_serie": 64431, + "name": "1.4 AMT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252959, + "fields": { + "id_car_serie": 64431, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252960, + "fields": { + "id_car_serie": 64431, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252961, + "fields": { + "id_car_serie": 64431, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252962, + "fields": { + "id_car_serie": 64431, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252963, + "fields": { + "id_car_serie": 64431, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252964, + "fields": { + "id_car_serie": 64431, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252965, + "fields": { + "id_car_serie": 64431, + "name": "1.6 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252966, + "fields": { + "id_car_serie": 64432, + "name": "1.4 AMT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252967, + "fields": { + "id_car_serie": 64432, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252968, + "fields": { + "id_car_serie": 64432, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252969, + "fields": { + "id_car_serie": 64432, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252970, + "fields": { + "id_car_serie": 64432, + "name": "1.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252971, + "fields": { + "id_car_serie": 64432, + "name": "1.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252972, + "fields": { + "id_car_serie": 64432, + "name": "1.2 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252973, + "fields": { + "id_car_serie": 64432, + "name": "1.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252974, + "fields": { + "id_car_serie": 64432, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252975, + "fields": { + "id_car_serie": 64432, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252976, + "fields": { + "id_car_serie": 64432, + "name": "1.4 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252977, + "fields": { + "id_car_serie": 64432, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252978, + "fields": { + "id_car_serie": 64432, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252979, + "fields": { + "id_car_serie": 64432, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252980, + "fields": { + "id_car_serie": 64432, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252981, + "fields": { + "id_car_serie": 64432, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252982, + "fields": { + "id_car_serie": 64432, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252991, + "fields": { + "id_car_serie": 64433, + "name": "1.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252992, + "fields": { + "id_car_serie": 64433, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252993, + "fields": { + "id_car_serie": 64433, + "name": "1.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252994, + "fields": { + "id_car_serie": 64433, + "name": "1.0 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252995, + "fields": { + "id_car_serie": 64433, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252996, + "fields": { + "id_car_serie": 64433, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252997, + "fields": { + "id_car_serie": 64433, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252998, + "fields": { + "id_car_serie": 64433, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 252999, + "fields": { + "id_car_serie": 64434, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253000, + "fields": { + "id_car_serie": 64434, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253001, + "fields": { + "id_car_serie": 64434, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253002, + "fields": { + "id_car_serie": 64434, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253003, + "fields": { + "id_car_serie": 64434, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253004, + "fields": { + "id_car_serie": 64434, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253005, + "fields": { + "id_car_serie": 64434, + "name": "2.0 AMT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253006, + "fields": { + "id_car_serie": 64434, + "name": "2.0 AMT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253007, + "fields": { + "id_car_serie": 64434, + "name": "1.6 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253008, + "fields": { + "id_car_serie": 64434, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253009, + "fields": { + "id_car_serie": 64434, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253010, + "fields": { + "id_car_serie": 64434, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253011, + "fields": { + "id_car_serie": 63245, + "name": "3.2 AT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253012, + "fields": { + "id_car_serie": 63245, + "name": "3.6 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253013, + "fields": { + "id_car_serie": 63245, + "name": "5.0 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253014, + "fields": { + "id_car_serie": 64435, + "name": "2.2 MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253015, + "fields": { + "id_car_serie": 63246, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253016, + "fields": { + "id_car_serie": 63246, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253017, + "fields": { + "id_car_serie": 63246, + "name": "2.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253018, + "fields": { + "id_car_serie": 64436, + "name": "2.0 MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253019, + "fields": { + "id_car_serie": 64436, + "name": "2.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253020, + "fields": { + "id_car_serie": 64436, + "name": "2.7 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253021, + "fields": { + "id_car_serie": 64436, + "name": "2.7 AT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253022, + "fields": { + "id_car_serie": 64436, + "name": "2.7 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253023, + "fields": { + "id_car_serie": 64436, + "name": "3.2 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253024, + "fields": { + "id_car_serie": 64437, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253025, + "fields": { + "id_car_serie": 64437, + "name": "1.6 AT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253026, + "fields": { + "id_car_serie": 64437, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253027, + "fields": { + "id_car_serie": 64437, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253028, + "fields": { + "id_car_serie": 64437, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253029, + "fields": { + "id_car_serie": 64437, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253030, + "fields": { + "id_car_serie": 64437, + "name": "1.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253031, + "fields": { + "id_car_serie": 64438, + "name": "2.5 CVT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253032, + "fields": { + "id_car_serie": 63795, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253033, + "fields": { + "id_car_serie": 63795, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253034, + "fields": { + "id_car_serie": 63795, + "name": "2.0 CVT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253035, + "fields": { + "id_car_serie": 63795, + "name": "2.5 CVT 4WD (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253036, + "fields": { + "id_car_serie": 63795, + "name": "2.5 MT 4WD (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253037, + "fields": { + "id_car_serie": 63795, + "name": "2.0 MT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253038, + "fields": { + "id_car_serie": 63795, + "name": "2.0 CVT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253039, + "fields": { + "id_car_serie": 63796, + "name": "2.0 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253040, + "fields": { + "id_car_serie": 63796, + "name": "2.0 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253041, + "fields": { + "id_car_serie": 63796, + "name": "2.0 MT 4WD (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253042, + "fields": { + "id_car_serie": 63796, + "name": "2.0 AT 4WD (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253043, + "fields": { + "id_car_serie": 63796, + "name": "2.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253044, + "fields": { + "id_car_serie": 63796, + "name": "2.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253045, + "fields": { + "id_car_serie": 63796, + "name": "2.0 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253046, + "fields": { + "id_car_serie": 63796, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253047, + "fields": { + "id_car_serie": 63796, + "name": "2.0 MT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253048, + "fields": { + "id_car_serie": 63796, + "name": "2.0 AT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253049, + "fields": { + "id_car_serie": 63796, + "name": "2.5 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253050, + "fields": { + "id_car_serie": 63796, + "name": "2.5 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253051, + "fields": { + "id_car_serie": 63796, + "name": "2.5 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253052, + "fields": { + "id_car_serie": 63796, + "name": "2.5 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253053, + "fields": { + "id_car_serie": 63797, + "name": "2.0 MT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253054, + "fields": { + "id_car_serie": 63797, + "name": "2.0 AT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253055, + "fields": { + "id_car_serie": 63797, + "name": "2.0 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253056, + "fields": { + "id_car_serie": 63797, + "name": "2.0 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253057, + "fields": { + "id_car_serie": 63797, + "name": "2.0 MT 4WD (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253058, + "fields": { + "id_car_serie": 63797, + "name": "2.0 AT 4WD (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253059, + "fields": { + "id_car_serie": 63797, + "name": "2.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253060, + "fields": { + "id_car_serie": 63797, + "name": "2.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253061, + "fields": { + "id_car_serie": 63797, + "name": "2.0 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253062, + "fields": { + "id_car_serie": 63797, + "name": "2.0 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253063, + "fields": { + "id_car_serie": 63797, + "name": "2.0 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253064, + "fields": { + "id_car_serie": 63797, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253065, + "fields": { + "id_car_serie": 63797, + "name": "2.0 MT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253066, + "fields": { + "id_car_serie": 63797, + "name": "2.0 AT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253067, + "fields": { + "id_car_serie": 63797, + "name": "2.5 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253068, + "fields": { + "id_car_serie": 63797, + "name": "2.5 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253069, + "fields": { + "id_car_serie": 63797, + "name": "2.5 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253070, + "fields": { + "id_car_serie": 63797, + "name": "2.5 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253071, + "fields": { + "id_car_serie": 64439, + "name": "1.6 CVT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253072, + "fields": { + "id_car_serie": 64439, + "name": "1.6 CVT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253073, + "fields": { + "id_car_serie": 64439, + "name": "2.0 CVT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253074, + "fields": { + "id_car_serie": 64439, + "name": "2.0 CVT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253075, + "fields": { + "id_car_serie": 64440, + "name": "2.5 MT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253076, + "fields": { + "id_car_serie": 64441, + "name": "2.5 MT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253079, + "fields": { + "id_car_serie": 64442, + "name": "2.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253080, + "fields": { + "id_car_serie": 64442, + "name": "2.5 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253081, + "fields": { + "id_car_serie": 64443, + "name": "2.0 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253082, + "fields": { + "id_car_serie": 64443, + "name": "2.0 MT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253083, + "fields": { + "id_car_serie": 64443, + "name": "2.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253084, + "fields": { + "id_car_serie": 64444, + "name": "2.0 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253085, + "fields": { + "id_car_serie": 64444, + "name": "2.0 MT 4WD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253086, + "fields": { + "id_car_serie": 64444, + "name": "2.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253087, + "fields": { + "id_car_serie": 63811, + "name": "1.0 CVT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253088, + "fields": { + "id_car_serie": 63811, + "name": "1.0 CVT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253089, + "fields": { + "id_car_serie": 63811, + "name": "1.0 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253090, + "fields": { + "id_car_serie": 63812, + "name": "1.3 MT 4WD (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253091, + "fields": { + "id_car_serie": 63812, + "name": "1.3 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253092, + "fields": { + "id_car_serie": 63813, + "name": "1.3 MT 4WD (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253093, + "fields": { + "id_car_serie": 63813, + "name": "1.3 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253094, + "fields": { + "id_car_serie": 63814, + "name": "1.0 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253095, + "fields": { + "id_car_serie": 63814, + "name": "1.2 MT 4WD (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253096, + "fields": { + "id_car_serie": 63815, + "name": "1.0 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253097, + "fields": { + "id_car_serie": 63815, + "name": "1.2 MT 4WD (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253098, + "fields": { + "id_car_serie": 63815, + "name": "1.2 MT 4WD (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253099, + "fields": { + "id_car_serie": 64445, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253100, + "fields": { + "id_car_serie": 64445, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253101, + "fields": { + "id_car_serie": 64445, + "name": "2.5 MT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253102, + "fields": { + "id_car_serie": 64445, + "name": "2.5 AT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253103, + "fields": { + "id_car_serie": 64445, + "name": "3.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253104, + "fields": { + "id_car_serie": 64445, + "name": "3.0 MT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253105, + "fields": { + "id_car_serie": 64445, + "name": "2.0 AT 4WD (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253106, + "fields": { + "id_car_serie": 64445, + "name": "2.0 MT 4WD (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253107, + "fields": { + "id_car_serie": 64445, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253108, + "fields": { + "id_car_serie": 64445, + "name": "2.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253109, + "fields": { + "id_car_serie": 64445, + "name": "2.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253110, + "fields": { + "id_car_serie": 64445, + "name": "2.0 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253111, + "fields": { + "id_car_serie": 64445, + "name": "2.0 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253112, + "fields": { + "id_car_serie": 64445, + "name": "2.0 MT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253113, + "fields": { + "id_car_serie": 64445, + "name": "2.5 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253114, + "fields": { + "id_car_serie": 64445, + "name": "2.5 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253115, + "fields": { + "id_car_serie": 64446, + "name": "2.0 AT 4WD (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253116, + "fields": { + "id_car_serie": 64446, + "name": "2.0 MT 4WD (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253117, + "fields": { + "id_car_serie": 64446, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253118, + "fields": { + "id_car_serie": 64446, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253119, + "fields": { + "id_car_serie": 64446, + "name": "2.0 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253120, + "fields": { + "id_car_serie": 64446, + "name": "2.0 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253121, + "fields": { + "id_car_serie": 64446, + "name": "2.0 MT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253122, + "fields": { + "id_car_serie": 64446, + "name": "2.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253123, + "fields": { + "id_car_serie": 64446, + "name": "2.5 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253124, + "fields": { + "id_car_serie": 64446, + "name": "2.5 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253125, + "fields": { + "id_car_serie": 64446, + "name": "2.5 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253126, + "fields": { + "id_car_serie": 64446, + "name": "2.5 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253127, + "fields": { + "id_car_serie": 64446, + "name": "3.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253128, + "fields": { + "id_car_serie": 64446, + "name": "3.0 MT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253129, + "fields": { + "id_car_serie": 64447, + "name": "1.8 AT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253130, + "fields": { + "id_car_serie": 64447, + "name": "1.8 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253131, + "fields": { + "id_car_serie": 64447, + "name": "1.8 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253132, + "fields": { + "id_car_serie": 64447, + "name": "1.8 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253133, + "fields": { + "id_car_serie": 64447, + "name": "2.0 AT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253134, + "fields": { + "id_car_serie": 64447, + "name": "2.0 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253135, + "fields": { + "id_car_serie": 64447, + "name": "2.0 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253136, + "fields": { + "id_car_serie": 64447, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253137, + "fields": { + "id_car_serie": 64447, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253138, + "fields": { + "id_car_serie": 64447, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253139, + "fields": { + "id_car_serie": 64447, + "name": "2.0 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253140, + "fields": { + "id_car_serie": 64447, + "name": "2.0 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253141, + "fields": { + "id_car_serie": 64447, + "name": "2.0 MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253142, + "fields": { + "id_car_serie": 64447, + "name": "2.2 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253143, + "fields": { + "id_car_serie": 64447, + "name": "2.2 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253144, + "fields": { + "id_car_serie": 64448, + "name": "2.5 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253145, + "fields": { + "id_car_serie": 64448, + "name": "2.5 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253146, + "fields": { + "id_car_serie": 64448, + "name": "3.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253147, + "fields": { + "id_car_serie": 64449, + "name": "2.5 MT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253148, + "fields": { + "id_car_serie": 64449, + "name": "2.5 AT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253149, + "fields": { + "id_car_serie": 64449, + "name": "3.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253150, + "fields": { + "id_car_serie": 64450, + "name": "2.5 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253151, + "fields": { + "id_car_serie": 64450, + "name": "2.5 MT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253152, + "fields": { + "id_car_serie": 64450, + "name": "2.5 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253153, + "fields": { + "id_car_serie": 64451, + "name": "1.8 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253154, + "fields": { + "id_car_serie": 64451, + "name": "1.8 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253155, + "fields": { + "id_car_serie": 64451, + "name": "1.8 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253156, + "fields": { + "id_car_serie": 64451, + "name": "1.8 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253157, + "fields": { + "id_car_serie": 64451, + "name": "1.8 AT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253158, + "fields": { + "id_car_serie": 64451, + "name": "1.8 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253159, + "fields": { + "id_car_serie": 64451, + "name": "1.8 MT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253160, + "fields": { + "id_car_serie": 64451, + "name": "1.8 AT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253161, + "fields": { + "id_car_serie": 64451, + "name": "1.8 AT 4WD (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253162, + "fields": { + "id_car_serie": 64451, + "name": "1.8 MT 4WD (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253163, + "fields": { + "id_car_serie": 64451, + "name": "1.8 AT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253164, + "fields": { + "id_car_serie": 64451, + "name": "1.8 MT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253165, + "fields": { + "id_car_serie": 64451, + "name": "1.8 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253166, + "fields": { + "id_car_serie": 64451, + "name": "1.8 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253167, + "fields": { + "id_car_serie": 9136, + "name": "2.5 MT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253168, + "fields": { + "id_car_serie": 9136, + "name": "2.5 AT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253169, + "fields": { + "id_car_serie": 64453, + "name": "0.7 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253170, + "fields": { + "id_car_serie": 64453, + "name": "0.7 CVT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253171, + "fields": { + "id_car_serie": 64453, + "name": "0.7 MT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253172, + "fields": { + "id_car_serie": 64453, + "name": "0.7 CVT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253173, + "fields": { + "id_car_serie": 64454, + "name": "0.7 CVT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253174, + "fields": { + "id_car_serie": 64454, + "name": "0.7 MT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253175, + "fields": { + "id_car_serie": 64454, + "name": "0.7 CVT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253176, + "fields": { + "id_car_serie": 64454, + "name": "0.7 MT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253177, + "fields": { + "id_car_serie": 64454, + "name": "0.7 CVT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253178, + "fields": { + "id_car_serie": 64454, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253179, + "fields": { + "id_car_serie": 64454, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253180, + "fields": { + "id_car_serie": 64454, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253181, + "fields": { + "id_car_serie": 63247, + "name": "0.7 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253182, + "fields": { + "id_car_serie": 63247, + "name": "0.7 MT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253183, + "fields": { + "id_car_serie": 63247, + "name": "0.7 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253184, + "fields": { + "id_car_serie": 63247, + "name": "0.7 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253185, + "fields": { + "id_car_serie": 63247, + "name": "0.7 AT 4WD (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253186, + "fields": { + "id_car_serie": 63247, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253187, + "fields": { + "id_car_serie": 63247, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253188, + "fields": { + "id_car_serie": 63248, + "name": "0.7 AT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253189, + "fields": { + "id_car_serie": 63248, + "name": "0.7 MT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253190, + "fields": { + "id_car_serie": 63248, + "name": "0.7 AT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253191, + "fields": { + "id_car_serie": 63248, + "name": "0.7 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253192, + "fields": { + "id_car_serie": 63248, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253193, + "fields": { + "id_car_serie": 63248, + "name": "0.7 AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253194, + "fields": { + "id_car_serie": 63248, + "name": "0.7 AT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253195, + "fields": { + "id_car_serie": 63248, + "name": "0.7 AT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253196, + "fields": { + "id_car_serie": 63248, + "name": "0.7 MT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253197, + "fields": { + "id_car_serie": 63248, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253198, + "fields": { + "id_car_serie": 63248, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253199, + "fields": { + "id_car_serie": 63249, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253200, + "fields": { + "id_car_serie": 63249, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253201, + "fields": { + "id_car_serie": 63249, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253202, + "fields": { + "id_car_serie": 63250, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253203, + "fields": { + "id_car_serie": 63250, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253204, + "fields": { + "id_car_serie": 63251, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253205, + "fields": { + "id_car_serie": 63251, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253206, + "fields": { + "id_car_serie": 63252, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253207, + "fields": { + "id_car_serie": 63252, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253208, + "fields": { + "id_car_serie": 63252, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253209, + "fields": { + "id_car_serie": 63252, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253210, + "fields": { + "id_car_serie": 64455, + "name": "2.0 MT 4WD (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253211, + "fields": { + "id_car_serie": 64455, + "name": "2.0 CVT 4WD (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253212, + "fields": { + "id_car_serie": 64455, + "name": "2.0 CVT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253213, + "fields": { + "id_car_serie": 63253, + "name": "2.0 MT 4WD (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253214, + "fields": { + "id_car_serie": 63253, + "name": "2.0 CVT 4WD (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253215, + "fields": { + "id_car_serie": 63253, + "name": "2.0 CVT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253216, + "fields": { + "id_car_serie": 64456, + "name": "2.5 MT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253217, + "fields": { + "id_car_serie": 64456, + "name": "2.0 MT 4WD (308 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253218, + "fields": { + "id_car_serie": 64456, + "name": "2.0 MT 4WD (329 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253219, + "fields": { + "id_car_serie": 64457, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253220, + "fields": { + "id_car_serie": 64458, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253221, + "fields": { + "id_car_serie": 63254, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253222, + "fields": { + "id_car_serie": 63255, + "name": "0.7 AT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253223, + "fields": { + "id_car_serie": 63255, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253224, + "fields": { + "id_car_serie": 63255, + "name": "0.7 AT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253225, + "fields": { + "id_car_serie": 63255, + "name": "0.7 MT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253226, + "fields": { + "id_car_serie": 63256, + "name": "0.7 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253227, + "fields": { + "id_car_serie": 63257, + "name": "0.7 MT 4WD (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253228, + "fields": { + "id_car_serie": 63257, + "name": "0.7 MT 4WD (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253229, + "fields": { + "id_car_serie": 63257, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253230, + "fields": { + "id_car_serie": 63257, + "name": "1.0 MT 4WD (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253231, + "fields": { + "id_car_serie": 63257, + "name": "1.0 AT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253232, + "fields": { + "id_car_serie": 64459, + "name": "0.7 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253233, + "fields": { + "id_car_serie": 64459, + "name": "0.7 AT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253234, + "fields": { + "id_car_serie": 64459, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253235, + "fields": { + "id_car_serie": 64459, + "name": "0.7 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253236, + "fields": { + "id_car_serie": 64459, + "name": "0.7 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253237, + "fields": { + "id_car_serie": 64459, + "name": "0.7 AT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253238, + "fields": { + "id_car_serie": 64460, + "name": "0.7 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253239, + "fields": { + "id_car_serie": 64460, + "name": "0.7 AT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253240, + "fields": { + "id_car_serie": 64460, + "name": "0.7 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253241, + "fields": { + "id_car_serie": 64460, + "name": "0.7 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253242, + "fields": { + "id_car_serie": 64460, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253243, + "fields": { + "id_car_serie": 64460, + "name": "0.7 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253244, + "fields": { + "id_car_serie": 64460, + "name": "0.7 AT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253245, + "fields": { + "id_car_serie": 64460, + "name": "0.7 MT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253246, + "fields": { + "id_car_serie": 64460, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253247, + "fields": { + "id_car_serie": 64460, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253248, + "fields": { + "id_car_serie": 64461, + "name": "0.7 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253249, + "fields": { + "id_car_serie": 64461, + "name": "0.7 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253250, + "fields": { + "id_car_serie": 64461, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253251, + "fields": { + "id_car_serie": 64461, + "name": "0.7 AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253252, + "fields": { + "id_car_serie": 64461, + "name": "0.7 AT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253253, + "fields": { + "id_car_serie": 64461, + "name": "0.7 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253254, + "fields": { + "id_car_serie": 64461, + "name": "0.7 MT 4WD (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253255, + "fields": { + "id_car_serie": 64461, + "name": "0.7 AT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253256, + "fields": { + "id_car_serie": 64461, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253257, + "fields": { + "id_car_serie": 64462, + "name": "0.6 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253258, + "fields": { + "id_car_serie": 64462, + "name": "0.6 MT 4WD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253259, + "fields": { + "id_car_serie": 64462, + "name": "0.6 AT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253260, + "fields": { + "id_car_serie": 64463, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253261, + "fields": { + "id_car_serie": 64463, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253262, + "fields": { + "id_car_serie": 64463, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253263, + "fields": { + "id_car_serie": 64463, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253264, + "fields": { + "id_car_serie": 64463, + "name": "1.5 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253265, + "fields": { + "id_car_serie": 64463, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253266, + "fields": { + "id_car_serie": 64463, + "name": "1.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253267, + "fields": { + "id_car_serie": 63258, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253268, + "fields": { + "id_car_serie": 63258, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253269, + "fields": { + "id_car_serie": 63258, + "name": "1.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253270, + "fields": { + "id_car_serie": 63258, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253271, + "fields": { + "id_car_serie": 64464, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253272, + "fields": { + "id_car_serie": 64464, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253273, + "fields": { + "id_car_serie": 64464, + "name": "1.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253274, + "fields": { + "id_car_serie": 64464, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253275, + "fields": { + "id_car_serie": 64464, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253276, + "fields": { + "id_car_serie": 64464, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253277, + "fields": { + "id_car_serie": 64465, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253278, + "fields": { + "id_car_serie": 64465, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253279, + "fields": { + "id_car_serie": 64465, + "name": "1.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253280, + "fields": { + "id_car_serie": 64465, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253281, + "fields": { + "id_car_serie": 64465, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253282, + "fields": { + "id_car_serie": 64465, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253283, + "fields": { + "id_car_serie": 64466, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253284, + "fields": { + "id_car_serie": 64466, + "name": "1.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253285, + "fields": { + "id_car_serie": 64466, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253286, + "fields": { + "id_car_serie": 64467, + "name": "1.3 CVT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253287, + "fields": { + "id_car_serie": 64467, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253288, + "fields": { + "id_car_serie": 64467, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253289, + "fields": { + "id_car_serie": 64467, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253290, + "fields": { + "id_car_serie": 64467, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253291, + "fields": { + "id_car_serie": 64467, + "name": "1.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253292, + "fields": { + "id_car_serie": 64467, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253293, + "fields": { + "id_car_serie": 64468, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253294, + "fields": { + "id_car_serie": 64468, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253295, + "fields": { + "id_car_serie": 64468, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253296, + "fields": { + "id_car_serie": 64468, + "name": "1.3 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253297, + "fields": { + "id_car_serie": 64468, + "name": "1.5 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253298, + "fields": { + "id_car_serie": 64468, + "name": "1.5 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253299, + "fields": { + "id_car_serie": 64468, + "name": "1.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253300, + "fields": { + "id_car_serie": 64468, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253301, + "fields": { + "id_car_serie": 64468, + "name": "1.6 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253302, + "fields": { + "id_car_serie": 64468, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253303, + "fields": { + "id_car_serie": 64469, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253304, + "fields": { + "id_car_serie": 64469, + "name": "1.3 CVT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253305, + "fields": { + "id_car_serie": 64470, + "name": "1.0 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253306, + "fields": { + "id_car_serie": 63259, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253307, + "fields": { + "id_car_serie": 63259, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253308, + "fields": { + "id_car_serie": 63259, + "name": "1.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253309, + "fields": { + "id_car_serie": 63259, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253310, + "fields": { + "id_car_serie": 63260, + "name": "0.7 MT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253311, + "fields": { + "id_car_serie": 63260, + "name": "0.7 AT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253312, + "fields": { + "id_car_serie": 63260, + "name": "0.7 AMT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253313, + "fields": { + "id_car_serie": 63260, + "name": "0.7 AT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253314, + "fields": { + "id_car_serie": 63260, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253315, + "fields": { + "id_car_serie": 63260, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253316, + "fields": { + "id_car_serie": 63261, + "name": "0.7 AT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253317, + "fields": { + "id_car_serie": 63261, + "name": "0.7 MT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253318, + "fields": { + "id_car_serie": 63261, + "name": "0.7 MT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253319, + "fields": { + "id_car_serie": 63261, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253320, + "fields": { + "id_car_serie": 63261, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253321, + "fields": { + "id_car_serie": 63261, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253322, + "fields": { + "id_car_serie": 63261, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253323, + "fields": { + "id_car_serie": 63262, + "name": "0.7 MT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253324, + "fields": { + "id_car_serie": 63262, + "name": "0.7 AT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253325, + "fields": { + "id_car_serie": 63262, + "name": "0.7 MT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253326, + "fields": { + "id_car_serie": 63262, + "name": "0.7 AT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253327, + "fields": { + "id_car_serie": 63262, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253328, + "fields": { + "id_car_serie": 63262, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253329, + "fields": { + "id_car_serie": 63262, + "name": "1.3 AT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253330, + "fields": { + "id_car_serie": 64471, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253331, + "fields": { + "id_car_serie": 64471, + "name": "2.4 AT 4WD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253332, + "fields": { + "id_car_serie": 64471, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253333, + "fields": { + "id_car_serie": 64471, + "name": "2.4 MT 4WD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253334, + "fields": { + "id_car_serie": 64471, + "name": "1.9 MT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253335, + "fields": { + "id_car_serie": 64472, + "name": "1.6 MT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253336, + "fields": { + "id_car_serie": 64472, + "name": "2.4 AT 4WD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253337, + "fields": { + "id_car_serie": 64472, + "name": "2.4 MT 4WD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253338, + "fields": { + "id_car_serie": 64472, + "name": "1.9 MT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253339, + "fields": { + "id_car_serie": 64473, + "name": "0.7 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253340, + "fields": { + "id_car_serie": 64473, + "name": "0.7 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253341, + "fields": { + "id_car_serie": 64473, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253342, + "fields": { + "id_car_serie": 64473, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253343, + "fields": { + "id_car_serie": 64473, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253344, + "fields": { + "id_car_serie": 64473, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253345, + "fields": { + "id_car_serie": 64474, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253346, + "fields": { + "id_car_serie": 64474, + "name": "1.3 MT 4WD (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253347, + "fields": { + "id_car_serie": 64474, + "name": "1.5 MT 4WD (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253348, + "fields": { + "id_car_serie": 64474, + "name": "1.5 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253349, + "fields": { + "id_car_serie": 64475, + "name": "1.3 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253350, + "fields": { + "id_car_serie": 64475, + "name": "1.3 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253351, + "fields": { + "id_car_serie": 64475, + "name": "1.3 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253352, + "fields": { + "id_car_serie": 64475, + "name": "1.3 AT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253353, + "fields": { + "id_car_serie": 64475, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253354, + "fields": { + "id_car_serie": 64476, + "name": "1.3 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253355, + "fields": { + "id_car_serie": 64477, + "name": "1.3 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253356, + "fields": { + "id_car_serie": 64477, + "name": "1.3 AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253357, + "fields": { + "id_car_serie": 64477, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253358, + "fields": { + "id_car_serie": 64477, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253359, + "fields": { + "id_car_serie": 64477, + "name": "1.3 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253360, + "fields": { + "id_car_serie": 64477, + "name": "1.3 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253361, + "fields": { + "id_car_serie": 64477, + "name": "1.5 MT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253362, + "fields": { + "id_car_serie": 64478, + "name": "0.7 MT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253363, + "fields": { + "id_car_serie": 64478, + "name": "0.7 AT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253364, + "fields": { + "id_car_serie": 64478, + "name": "1.0 MT 4WD (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253365, + "fields": { + "id_car_serie": 64478, + "name": "1.3 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253366, + "fields": { + "id_car_serie": 64478, + "name": "1.3 MT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253367, + "fields": { + "id_car_serie": 64478, + "name": "1.3 AT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253368, + "fields": { + "id_car_serie": 64478, + "name": "1.3 MT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253369, + "fields": { + "id_car_serie": 64478, + "name": "1.9 MT 4WD (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253370, + "fields": { + "id_car_serie": 64479, + "name": "0.4 MT 4WD (25 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253371, + "fields": { + "id_car_serie": 64479, + "name": "0.4 MT 4WD (28 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253372, + "fields": { + "id_car_serie": 64479, + "name": "0.5 MT 4WD (26 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253373, + "fields": { + "id_car_serie": 64479, + "name": "0.5 MT 4WD (33 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253374, + "fields": { + "id_car_serie": 64479, + "name": "0.8 MT 4WD (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253375, + "fields": { + "id_car_serie": 63263, + "name": "2.4 CVT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253376, + "fields": { + "id_car_serie": 63263, + "name": "2.4 MT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253377, + "fields": { + "id_car_serie": 63264, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253378, + "fields": { + "id_car_serie": 63264, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253379, + "fields": { + "id_car_serie": 63265, + "name": "2.0 CVT 4WD (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253380, + "fields": { + "id_car_serie": 63265, + "name": "2.0 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253392, + "fields": { + "id_car_serie": 64482, + "name": "1.6 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253393, + "fields": { + "id_car_serie": 64482, + "name": "1.6 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253394, + "fields": { + "id_car_serie": 64482, + "name": "1.8 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253395, + "fields": { + "id_car_serie": 64482, + "name": "1.8 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253396, + "fields": { + "id_car_serie": 64482, + "name": "2.0 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253397, + "fields": { + "id_car_serie": 64482, + "name": "2.0 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253398, + "fields": { + "id_car_serie": 63266, + "name": "1.2 CVT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253399, + "fields": { + "id_car_serie": 63266, + "name": "1.2 AMT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253400, + "fields": { + "id_car_serie": 63267, + "name": "1.2 CVT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253401, + "fields": { + "id_car_serie": 63267, + "name": "1.2 CVT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253402, + "fields": { + "id_car_serie": 64483, + "name": "1.0 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253403, + "fields": { + "id_car_serie": 64483, + "name": "1.2 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253404, + "fields": { + "id_car_serie": 64483, + "name": "1.2 CVT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253405, + "fields": { + "id_car_serie": 64483, + "name": "1.2 CVT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253406, + "fields": { + "id_car_serie": 64483, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253407, + "fields": { + "id_car_serie": 64483, + "name": "1.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253408, + "fields": { + "id_car_serie": 64483, + "name": "1.2 AMT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253409, + "fields": { + "id_car_serie": 64484, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253410, + "fields": { + "id_car_serie": 64484, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253411, + "fields": { + "id_car_serie": 64484, + "name": "1.3 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253412, + "fields": { + "id_car_serie": 64484, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253413, + "fields": { + "id_car_serie": 64484, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253414, + "fields": { + "id_car_serie": 64484, + "name": "1.6 MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253427, + "fields": { + "id_car_serie": 49178, + "name": "1.0 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253428, + "fields": { + "id_car_serie": 49178, + "name": "1.0 AT 4WD (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253429, + "fields": { + "id_car_serie": 49178, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253430, + "fields": { + "id_car_serie": 49178, + "name": "1.3 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253431, + "fields": { + "id_car_serie": 63268, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253432, + "fields": { + "id_car_serie": 63268, + "name": "1.6 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253433, + "fields": { + "id_car_serie": 63269, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253434, + "fields": { + "id_car_serie": 63270, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253435, + "fields": { + "id_car_serie": 63271, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253436, + "fields": { + "id_car_serie": 63271, + "name": "2.5 AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253437, + "fields": { + "id_car_serie": 63271, + "name": "3.5 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253438, + "fields": { + "id_car_serie": 64486, + "name": "1.8 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253439, + "fields": { + "id_car_serie": 64486, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253440, + "fields": { + "id_car_serie": 64486, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253441, + "fields": { + "id_car_serie": 64486, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253442, + "fields": { + "id_car_serie": 64486, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253443, + "fields": { + "id_car_serie": 64486, + "name": "2.0 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253444, + "fields": { + "id_car_serie": 64486, + "name": "2.0 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253445, + "fields": { + "id_car_serie": 64487, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253446, + "fields": { + "id_car_serie": 64487, + "name": "1.6 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253447, + "fields": { + "id_car_serie": 64487, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253448, + "fields": { + "id_car_serie": 64487, + "name": "1.8 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253449, + "fields": { + "id_car_serie": 64487, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253450, + "fields": { + "id_car_serie": 64487, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253451, + "fields": { + "id_car_serie": 64488, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253452, + "fields": { + "id_car_serie": 64488, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253453, + "fields": { + "id_car_serie": 64488, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253454, + "fields": { + "id_car_serie": 64488, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253455, + "fields": { + "id_car_serie": 64488, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253456, + "fields": { + "id_car_serie": 64488, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253457, + "fields": { + "id_car_serie": 64488, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253458, + "fields": { + "id_car_serie": 64488, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253459, + "fields": { + "id_car_serie": 64488, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253460, + "fields": { + "id_car_serie": 64488, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253461, + "fields": { + "id_car_serie": 64488, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253462, + "fields": { + "id_car_serie": 64488, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253463, + "fields": { + "id_car_serie": 64488, + "name": "2.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253464, + "fields": { + "id_car_serie": 64488, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253465, + "fields": { + "id_car_serie": 64488, + "name": "2.0 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253466, + "fields": { + "id_car_serie": 64488, + "name": "2.0 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253467, + "fields": { + "id_car_serie": 64489, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253468, + "fields": { + "id_car_serie": 64489, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253469, + "fields": { + "id_car_serie": 64489, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253470, + "fields": { + "id_car_serie": 64489, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253471, + "fields": { + "id_car_serie": 64489, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253472, + "fields": { + "id_car_serie": 64489, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253473, + "fields": { + "id_car_serie": 64489, + "name": "2.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253474, + "fields": { + "id_car_serie": 64489, + "name": "2.0 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253475, + "fields": { + "id_car_serie": 64490, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253476, + "fields": { + "id_car_serie": 64490, + "name": "1.6 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253477, + "fields": { + "id_car_serie": 64490, + "name": "1.8 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253478, + "fields": { + "id_car_serie": 64490, + "name": "2.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253479, + "fields": { + "id_car_serie": 64491, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253480, + "fields": { + "id_car_serie": 64491, + "name": "1.5 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253481, + "fields": { + "id_car_serie": 64491, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253482, + "fields": { + "id_car_serie": 64491, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253483, + "fields": { + "id_car_serie": 64491, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253484, + "fields": { + "id_car_serie": 64491, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253485, + "fields": { + "id_car_serie": 64491, + "name": "1.8 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253486, + "fields": { + "id_car_serie": 64491, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253487, + "fields": { + "id_car_serie": 64491, + "name": "1.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253488, + "fields": { + "id_car_serie": 64491, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253489, + "fields": { + "id_car_serie": 64492, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253490, + "fields": { + "id_car_serie": 64493, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253491, + "fields": { + "id_car_serie": 64493, + "name": "1.5 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253492, + "fields": { + "id_car_serie": 64493, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253493, + "fields": { + "id_car_serie": 64493, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253494, + "fields": { + "id_car_serie": 64493, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253495, + "fields": { + "id_car_serie": 64493, + "name": "1.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253496, + "fields": { + "id_car_serie": 64493, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253497, + "fields": { + "id_car_serie": 64493, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253498, + "fields": { + "id_car_serie": 64494, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253499, + "fields": { + "id_car_serie": 64494, + "name": "1.8 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253500, + "fields": { + "id_car_serie": 64495, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253501, + "fields": { + "id_car_serie": 64495, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253502, + "fields": { + "id_car_serie": 64495, + "name": "1.8 AT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253503, + "fields": { + "id_car_serie": 64496, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253504, + "fields": { + "id_car_serie": 64497, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253505, + "fields": { + "id_car_serie": 64497, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253506, + "fields": { + "id_car_serie": 64497, + "name": "1.8 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253507, + "fields": { + "id_car_serie": 64497, + "name": "1.8 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253508, + "fields": { + "id_car_serie": 64497, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253509, + "fields": { + "id_car_serie": 64497, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253510, + "fields": { + "id_car_serie": 64497, + "name": "2.0 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253511, + "fields": { + "id_car_serie": 64498, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253512, + "fields": { + "id_car_serie": 64498, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253513, + "fields": { + "id_car_serie": 64498, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253514, + "fields": { + "id_car_serie": 64498, + "name": "1.6 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253515, + "fields": { + "id_car_serie": 64498, + "name": "1.8 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253516, + "fields": { + "id_car_serie": 64498, + "name": "1.8 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253517, + "fields": { + "id_car_serie": 64498, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253518, + "fields": { + "id_car_serie": 64498, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253519, + "fields": { + "id_car_serie": 64498, + "name": "2.0 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253520, + "fields": { + "id_car_serie": 64498, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253521, + "fields": { + "id_car_serie": 64498, + "name": "2.0 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253522, + "fields": { + "id_car_serie": 64498, + "name": "2.0 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253523, + "fields": { + "id_car_serie": 64498, + "name": "2.0 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253524, + "fields": { + "id_car_serie": 64499, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253525, + "fields": { + "id_car_serie": 64499, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253526, + "fields": { + "id_car_serie": 64499, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253527, + "fields": { + "id_car_serie": 64499, + "name": "1.8 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253528, + "fields": { + "id_car_serie": 64499, + "name": "1.8 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253529, + "fields": { + "id_car_serie": 64499, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253530, + "fields": { + "id_car_serie": 64499, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253531, + "fields": { + "id_car_serie": 64499, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253532, + "fields": { + "id_car_serie": 64499, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253533, + "fields": { + "id_car_serie": 64499, + "name": "2.0 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253534, + "fields": { + "id_car_serie": 64499, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253535, + "fields": { + "id_car_serie": 64499, + "name": "2.0 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253536, + "fields": { + "id_car_serie": 64500, + "name": "1.8 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253537, + "fields": { + "id_car_serie": 64500, + "name": "1.8 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253538, + "fields": { + "id_car_serie": 64500, + "name": "1.8 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253539, + "fields": { + "id_car_serie": 64500, + "name": "1.8 MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253540, + "fields": { + "id_car_serie": 64500, + "name": "1.8 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253541, + "fields": { + "id_car_serie": 64500, + "name": "1.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253542, + "fields": { + "id_car_serie": 64501, + "name": "1.8 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253543, + "fields": { + "id_car_serie": 64501, + "name": "1.8 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253544, + "fields": { + "id_car_serie": 64501, + "name": "1.8 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253545, + "fields": { + "id_car_serie": 64501, + "name": "1.8 MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253546, + "fields": { + "id_car_serie": 64501, + "name": "1.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253547, + "fields": { + "id_car_serie": 64501, + "name": "1.8 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253548, + "fields": { + "id_car_serie": 64502, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253549, + "fields": { + "id_car_serie": 64502, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253550, + "fields": { + "id_car_serie": 64502, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253551, + "fields": { + "id_car_serie": 64502, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253552, + "fields": { + "id_car_serie": 64502, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253553, + "fields": { + "id_car_serie": 64502, + "name": "2.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253554, + "fields": { + "id_car_serie": 64502, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253555, + "fields": { + "id_car_serie": 64502, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253556, + "fields": { + "id_car_serie": 64502, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253557, + "fields": { + "id_car_serie": 64502, + "name": "2.0 MT 4WD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253558, + "fields": { + "id_car_serie": 64502, + "name": "2.0 MT 4WD (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253559, + "fields": { + "id_car_serie": 64502, + "name": "2.2 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253560, + "fields": { + "id_car_serie": 64502, + "name": "2.2 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253561, + "fields": { + "id_car_serie": 64503, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253562, + "fields": { + "id_car_serie": 64503, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253563, + "fields": { + "id_car_serie": 64503, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253564, + "fields": { + "id_car_serie": 64503, + "name": "2.0 MT 4WD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253565, + "fields": { + "id_car_serie": 64503, + "name": "2.2 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253566, + "fields": { + "id_car_serie": 64503, + "name": "2.2 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253567, + "fields": { + "id_car_serie": 64504, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253568, + "fields": { + "id_car_serie": 64504, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253569, + "fields": { + "id_car_serie": 64504, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253570, + "fields": { + "id_car_serie": 64504, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253571, + "fields": { + "id_car_serie": 64504, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253572, + "fields": { + "id_car_serie": 64504, + "name": "2.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253573, + "fields": { + "id_car_serie": 64504, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253574, + "fields": { + "id_car_serie": 64504, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253575, + "fields": { + "id_car_serie": 64504, + "name": "2.0 MT 4WD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253576, + "fields": { + "id_car_serie": 64504, + "name": "2.0 MT 4WD (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253577, + "fields": { + "id_car_serie": 64504, + "name": "2.2 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253578, + "fields": { + "id_car_serie": 64504, + "name": "2.2 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253579, + "fields": { + "id_car_serie": 64505, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253580, + "fields": { + "id_car_serie": 64505, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253581, + "fields": { + "id_car_serie": 64505, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253582, + "fields": { + "id_car_serie": 64505, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253583, + "fields": { + "id_car_serie": 64505, + "name": "2.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253584, + "fields": { + "id_car_serie": 64505, + "name": "2.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253585, + "fields": { + "id_car_serie": 64505, + "name": "2.5 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253586, + "fields": { + "id_car_serie": 64505, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253587, + "fields": { + "id_car_serie": 64505, + "name": "2.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253588, + "fields": { + "id_car_serie": 64505, + "name": "2.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253589, + "fields": { + "id_car_serie": 64506, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253590, + "fields": { + "id_car_serie": 64506, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253591, + "fields": { + "id_car_serie": 64506, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253592, + "fields": { + "id_car_serie": 64506, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253593, + "fields": { + "id_car_serie": 64506, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253594, + "fields": { + "id_car_serie": 64506, + "name": "2.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253595, + "fields": { + "id_car_serie": 64506, + "name": "2.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253596, + "fields": { + "id_car_serie": 64506, + "name": "2.5 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253597, + "fields": { + "id_car_serie": 64506, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253598, + "fields": { + "id_car_serie": 64506, + "name": "2.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253599, + "fields": { + "id_car_serie": 64506, + "name": "2.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253600, + "fields": { + "id_car_serie": 64507, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253601, + "fields": { + "id_car_serie": 64507, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253602, + "fields": { + "id_car_serie": 64507, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253603, + "fields": { + "id_car_serie": 64507, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253604, + "fields": { + "id_car_serie": 64507, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253605, + "fields": { + "id_car_serie": 64507, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253606, + "fields": { + "id_car_serie": 64507, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253607, + "fields": { + "id_car_serie": 64507, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253608, + "fields": { + "id_car_serie": 64507, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253609, + "fields": { + "id_car_serie": 64507, + "name": "2.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253610, + "fields": { + "id_car_serie": 64507, + "name": "2.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253611, + "fields": { + "id_car_serie": 64507, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253612, + "fields": { + "id_car_serie": 64507, + "name": "2.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253613, + "fields": { + "id_car_serie": 64507, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253614, + "fields": { + "id_car_serie": 64507, + "name": "2.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253615, + "fields": { + "id_car_serie": 64507, + "name": "2.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253616, + "fields": { + "id_car_serie": 64507, + "name": "2.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253617, + "fields": { + "id_car_serie": 64507, + "name": "2.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253618, + "fields": { + "id_car_serie": 64508, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253619, + "fields": { + "id_car_serie": 64508, + "name": "1.8 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253620, + "fields": { + "id_car_serie": 64508, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253621, + "fields": { + "id_car_serie": 64508, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253622, + "fields": { + "id_car_serie": 64508, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253623, + "fields": { + "id_car_serie": 64508, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253624, + "fields": { + "id_car_serie": 64508, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253625, + "fields": { + "id_car_serie": 64508, + "name": "2.2 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253626, + "fields": { + "id_car_serie": 64508, + "name": "2.2 AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253627, + "fields": { + "id_car_serie": 64509, + "name": "1.3 CVT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253628, + "fields": { + "id_car_serie": 64509, + "name": "1.5 CVT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253629, + "fields": { + "id_car_serie": 64509, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253630, + "fields": { + "id_car_serie": 64509, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253631, + "fields": { + "id_car_serie": 64509, + "name": "1.5 CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253632, + "fields": { + "id_car_serie": 64510, + "name": "1.3 CVT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253633, + "fields": { + "id_car_serie": 64510, + "name": "1.5 CVT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253634, + "fields": { + "id_car_serie": 64510, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253635, + "fields": { + "id_car_serie": 64510, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253636, + "fields": { + "id_car_serie": 64510, + "name": "1.5 CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253637, + "fields": { + "id_car_serie": 64511, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253638, + "fields": { + "id_car_serie": 64511, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253639, + "fields": { + "id_car_serie": 64511, + "name": "1.5 CVT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253640, + "fields": { + "id_car_serie": 64511, + "name": "1.8 CVT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253641, + "fields": { + "id_car_serie": 64511, + "name": "1.8 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253642, + "fields": { + "id_car_serie": 64512, + "name": "1.3 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253643, + "fields": { + "id_car_serie": 64512, + "name": "1.6 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253644, + "fields": { + "id_car_serie": 64512, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253645, + "fields": { + "id_car_serie": 64512, + "name": "1.5 CVT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253646, + "fields": { + "id_car_serie": 64512, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253647, + "fields": { + "id_car_serie": 64512, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253648, + "fields": { + "id_car_serie": 64512, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253649, + "fields": { + "id_car_serie": 64512, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253650, + "fields": { + "id_car_serie": 64512, + "name": "1.8 CVT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253651, + "fields": { + "id_car_serie": 64512, + "name": "1.8 CVT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253652, + "fields": { + "id_car_serie": 64512, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253653, + "fields": { + "id_car_serie": 64512, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253654, + "fields": { + "id_car_serie": 64512, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253655, + "fields": { + "id_car_serie": 64513, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253656, + "fields": { + "id_car_serie": 64513, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253657, + "fields": { + "id_car_serie": 64513, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253658, + "fields": { + "id_car_serie": 64513, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253659, + "fields": { + "id_car_serie": 64513, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253660, + "fields": { + "id_car_serie": 64513, + "name": "1.8 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253661, + "fields": { + "id_car_serie": 64513, + "name": "1.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253662, + "fields": { + "id_car_serie": 64513, + "name": "1.8 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253663, + "fields": { + "id_car_serie": 64514, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253664, + "fields": { + "id_car_serie": 64514, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253665, + "fields": { + "id_car_serie": 64514, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253666, + "fields": { + "id_car_serie": 64514, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253667, + "fields": { + "id_car_serie": 64514, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253668, + "fields": { + "id_car_serie": 64514, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253669, + "fields": { + "id_car_serie": 64514, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253670, + "fields": { + "id_car_serie": 64514, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253671, + "fields": { + "id_car_serie": 64514, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253672, + "fields": { + "id_car_serie": 64514, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253673, + "fields": { + "id_car_serie": 64515, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253674, + "fields": { + "id_car_serie": 64515, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253675, + "fields": { + "id_car_serie": 64515, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253676, + "fields": { + "id_car_serie": 64515, + "name": "1.4 AMT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253677, + "fields": { + "id_car_serie": 64515, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253678, + "fields": { + "id_car_serie": 64515, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253679, + "fields": { + "id_car_serie": 64515, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253680, + "fields": { + "id_car_serie": 64515, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253681, + "fields": { + "id_car_serie": 64515, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253682, + "fields": { + "id_car_serie": 64515, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253683, + "fields": { + "id_car_serie": 64515, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253684, + "fields": { + "id_car_serie": 64515, + "name": "1.6 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253685, + "fields": { + "id_car_serie": 64515, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253686, + "fields": { + "id_car_serie": 64515, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253687, + "fields": { + "id_car_serie": 64515, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253688, + "fields": { + "id_car_serie": 64515, + "name": "1.8 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253689, + "fields": { + "id_car_serie": 64515, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253690, + "fields": { + "id_car_serie": 64515, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253691, + "fields": { + "id_car_serie": 64515, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253692, + "fields": { + "id_car_serie": 64515, + "name": "2.2 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253693, + "fields": { + "id_car_serie": 64516, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253694, + "fields": { + "id_car_serie": 64516, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253695, + "fields": { + "id_car_serie": 64516, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253696, + "fields": { + "id_car_serie": 64516, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253697, + "fields": { + "id_car_serie": 64516, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253698, + "fields": { + "id_car_serie": 64516, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253699, + "fields": { + "id_car_serie": 64516, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253700, + "fields": { + "id_car_serie": 64516, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253701, + "fields": { + "id_car_serie": 64516, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253702, + "fields": { + "id_car_serie": 64516, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253703, + "fields": { + "id_car_serie": 64516, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253704, + "fields": { + "id_car_serie": 64516, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253705, + "fields": { + "id_car_serie": 64516, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253706, + "fields": { + "id_car_serie": 64516, + "name": "1.8 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253707, + "fields": { + "id_car_serie": 64516, + "name": "1.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253708, + "fields": { + "id_car_serie": 64516, + "name": "1.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253709, + "fields": { + "id_car_serie": 64516, + "name": "1.8 MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253710, + "fields": { + "id_car_serie": 64517, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253711, + "fields": { + "id_car_serie": 64517, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253712, + "fields": { + "id_car_serie": 64517, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253713, + "fields": { + "id_car_serie": 64517, + "name": "1.4 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253714, + "fields": { + "id_car_serie": 64517, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253715, + "fields": { + "id_car_serie": 64517, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253716, + "fields": { + "id_car_serie": 64517, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253717, + "fields": { + "id_car_serie": 64517, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253718, + "fields": { + "id_car_serie": 64517, + "name": "1.9 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253719, + "fields": { + "id_car_serie": 64517, + "name": "2.0 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253720, + "fields": { + "id_car_serie": 64517, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253721, + "fields": { + "id_car_serie": 64518, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253722, + "fields": { + "id_car_serie": 64518, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253723, + "fields": { + "id_car_serie": 64518, + "name": "1.8 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253724, + "fields": { + "id_car_serie": 64519, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253725, + "fields": { + "id_car_serie": 64519, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253726, + "fields": { + "id_car_serie": 64519, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253727, + "fields": { + "id_car_serie": 64519, + "name": "1.6 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253728, + "fields": { + "id_car_serie": 64520, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253729, + "fields": { + "id_car_serie": 64521, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253730, + "fields": { + "id_car_serie": 64521, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253731, + "fields": { + "id_car_serie": 64521, + "name": "1.2 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253732, + "fields": { + "id_car_serie": 63272, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253733, + "fields": { + "id_car_serie": 63272, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253734, + "fields": { + "id_car_serie": 63272, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253735, + "fields": { + "id_car_serie": 63272, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253736, + "fields": { + "id_car_serie": 63272, + "name": "2.0 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253737, + "fields": { + "id_car_serie": 63272, + "name": "2.0 AT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253738, + "fields": { + "id_car_serie": 63272, + "name": "2.0 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253739, + "fields": { + "id_car_serie": 63272, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253740, + "fields": { + "id_car_serie": 63272, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253741, + "fields": { + "id_car_serie": 63272, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253742, + "fields": { + "id_car_serie": 63272, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253743, + "fields": { + "id_car_serie": 63272, + "name": "2.0 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253744, + "fields": { + "id_car_serie": 63272, + "name": "2.0 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253745, + "fields": { + "id_car_serie": 63272, + "name": "2.0 MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253746, + "fields": { + "id_car_serie": 64522, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253747, + "fields": { + "id_car_serie": 64522, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253748, + "fields": { + "id_car_serie": 64522, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253749, + "fields": { + "id_car_serie": 64523, + "name": "1.5 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253750, + "fields": { + "id_car_serie": 64523, + "name": "1.5 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253751, + "fields": { + "id_car_serie": 64523, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253752, + "fields": { + "id_car_serie": 64523, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253753, + "fields": { + "id_car_serie": 64523, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253754, + "fields": { + "id_car_serie": 64523, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253755, + "fields": { + "id_car_serie": 64523, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253756, + "fields": { + "id_car_serie": 64523, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253757, + "fields": { + "id_car_serie": 64523, + "name": "2.0 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253758, + "fields": { + "id_car_serie": 64524, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253759, + "fields": { + "id_car_serie": 64524, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253760, + "fields": { + "id_car_serie": 64524, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253761, + "fields": { + "id_car_serie": 64524, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253762, + "fields": { + "id_car_serie": 64524, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253763, + "fields": { + "id_car_serie": 64524, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253764, + "fields": { + "id_car_serie": 64525, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253765, + "fields": { + "id_car_serie": 64525, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253766, + "fields": { + "id_car_serie": 64525, + "name": "1.6 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253767, + "fields": { + "id_car_serie": 64525, + "name": "1.6 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253768, + "fields": { + "id_car_serie": 64525, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253769, + "fields": { + "id_car_serie": 64525, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253770, + "fields": { + "id_car_serie": 64525, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253771, + "fields": { + "id_car_serie": 64525, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253772, + "fields": { + "id_car_serie": 64525, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253773, + "fields": { + "id_car_serie": 64525, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253774, + "fields": { + "id_car_serie": 64525, + "name": "2.0 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253775, + "fields": { + "id_car_serie": 64525, + "name": "2.0 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253776, + "fields": { + "id_car_serie": 64526, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253777, + "fields": { + "id_car_serie": 64526, + "name": "1.5 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253778, + "fields": { + "id_car_serie": 64526, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253779, + "fields": { + "id_car_serie": 64526, + "name": "1.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253780, + "fields": { + "id_car_serie": 64526, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253781, + "fields": { + "id_car_serie": 64526, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253782, + "fields": { + "id_car_serie": 64526, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253783, + "fields": { + "id_car_serie": 64526, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253784, + "fields": { + "id_car_serie": 53883, + "name": "1.8 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253785, + "fields": { + "id_car_serie": 53883, + "name": "1.8 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253786, + "fields": { + "id_car_serie": 64527, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253787, + "fields": { + "id_car_serie": 64527, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253788, + "fields": { + "id_car_serie": 64528, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253789, + "fields": { + "id_car_serie": 64528, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253790, + "fields": { + "id_car_serie": 64529, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253791, + "fields": { + "id_car_serie": 64529, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253792, + "fields": { + "id_car_serie": 63273, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253793, + "fields": { + "id_car_serie": 63273, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253794, + "fields": { + "id_car_serie": 63273, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253795, + "fields": { + "id_car_serie": 63273, + "name": "2.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253796, + "fields": { + "id_car_serie": 63273, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253797, + "fields": { + "id_car_serie": 63273, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253798, + "fields": { + "id_car_serie": 63273, + "name": "2.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253799, + "fields": { + "id_car_serie": 63273, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253800, + "fields": { + "id_car_serie": 63273, + "name": "2.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253801, + "fields": { + "id_car_serie": 63274, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253802, + "fields": { + "id_car_serie": 63274, + "name": "2.5 CVT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253803, + "fields": { + "id_car_serie": 63274, + "name": "3.5 CVT (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253804, + "fields": { + "id_car_serie": 64530, + "name": "2.5 AT 4WD (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253805, + "fields": { + "id_car_serie": 64530, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253806, + "fields": { + "id_car_serie": 64531, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253807, + "fields": { + "id_car_serie": 64531, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253808, + "fields": { + "id_car_serie": 64531, + "name": "2.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253809, + "fields": { + "id_car_serie": 64532, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253810, + "fields": { + "id_car_serie": 64532, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253811, + "fields": { + "id_car_serie": 64532, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253812, + "fields": { + "id_car_serie": 64532, + "name": "2.5 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253813, + "fields": { + "id_car_serie": 64532, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253814, + "fields": { + "id_car_serie": 64532, + "name": "4.0 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253815, + "fields": { + "id_car_serie": 64532, + "name": "2.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253816, + "fields": { + "id_car_serie": 64532, + "name": "2.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253817, + "fields": { + "id_car_serie": 64533, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253818, + "fields": { + "id_car_serie": 64533, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253819, + "fields": { + "id_car_serie": 64533, + "name": "2.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253820, + "fields": { + "id_car_serie": 64533, + "name": "2.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253821, + "fields": { + "id_car_serie": 64534, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253822, + "fields": { + "id_car_serie": 64534, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253823, + "fields": { + "id_car_serie": 64534, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253824, + "fields": { + "id_car_serie": 64534, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253825, + "fields": { + "id_car_serie": 64534, + "name": "2.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253826, + "fields": { + "id_car_serie": 64534, + "name": "2.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253827, + "fields": { + "id_car_serie": 64534, + "name": "2.5 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253828, + "fields": { + "id_car_serie": 64534, + "name": "2.5 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253829, + "fields": { + "id_car_serie": 64534, + "name": "2.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253830, + "fields": { + "id_car_serie": 64534, + "name": "2.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253831, + "fields": { + "id_car_serie": 64535, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253832, + "fields": { + "id_car_serie": 64535, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253833, + "fields": { + "id_car_serie": 64535, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253834, + "fields": { + "id_car_serie": 64535, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253835, + "fields": { + "id_car_serie": 64535, + "name": "2.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253836, + "fields": { + "id_car_serie": 64535, + "name": "2.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253837, + "fields": { + "id_car_serie": 64535, + "name": "2.5 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253838, + "fields": { + "id_car_serie": 64535, + "name": "2.5 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253839, + "fields": { + "id_car_serie": 64535, + "name": "2.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253840, + "fields": { + "id_car_serie": 64535, + "name": "2.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253841, + "fields": { + "id_car_serie": 64536, + "name": "2.8 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253842, + "fields": { + "id_car_serie": 64536, + "name": "2.8 AT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253843, + "fields": { + "id_car_serie": 64537, + "name": "2.0 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253844, + "fields": { + "id_car_serie": 64537, + "name": "2.3 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253845, + "fields": { + "id_car_serie": 63299, + "name": "2.4 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253846, + "fields": { + "id_car_serie": 63299, + "name": "2.4 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253847, + "fields": { + "id_car_serie": 63300, + "name": "2.4 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253848, + "fields": { + "id_car_serie": 63300, + "name": "2.4 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253849, + "fields": { + "id_car_serie": 63300, + "name": "2.4 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253850, + "fields": { + "id_car_serie": 63300, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253851, + "fields": { + "id_car_serie": 63300, + "name": "3.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253852, + "fields": { + "id_car_serie": 63301, + "name": "2.4 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253853, + "fields": { + "id_car_serie": 63301, + "name": "2.4 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253854, + "fields": { + "id_car_serie": 63301, + "name": "2.4 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253855, + "fields": { + "id_car_serie": 63301, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253856, + "fields": { + "id_car_serie": 63301, + "name": "3.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253857, + "fields": { + "id_car_serie": 63302, + "name": "2.4 CVT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253858, + "fields": { + "id_car_serie": 63302, + "name": "2.4 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253859, + "fields": { + "id_car_serie": 63302, + "name": "3.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253860, + "fields": { + "id_car_serie": 64538, + "name": "2.2 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253861, + "fields": { + "id_car_serie": 64538, + "name": "2.2 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253862, + "fields": { + "id_car_serie": 64538, + "name": "2.4 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253863, + "fields": { + "id_car_serie": 64538, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253864, + "fields": { + "id_car_serie": 64538, + "name": "3.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253865, + "fields": { + "id_car_serie": 51503, + "name": "2.7 MT (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253866, + "fields": { + "id_car_serie": 51503, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253867, + "fields": { + "id_car_serie": 51503, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253868, + "fields": { + "id_car_serie": 51503, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253869, + "fields": { + "id_car_serie": 51503, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253870, + "fields": { + "id_car_serie": 51503, + "name": "2.7 AT 4WD (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253871, + "fields": { + "id_car_serie": 51503, + "name": "2.7 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253872, + "fields": { + "id_car_serie": 51503, + "name": "3.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253873, + "fields": { + "id_car_serie": 51503, + "name": "2.8 AT 4WD (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253874, + "fields": { + "id_car_serie": 51503, + "name": "3.0 MT 4WD (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253875, + "fields": { + "id_car_serie": 51503, + "name": "3.0 AT 4WD (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253876, + "fields": { + "id_car_serie": 63275, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253877, + "fields": { + "id_car_serie": 63275, + "name": "2.0 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253878, + "fields": { + "id_car_serie": 63275, + "name": "2.0 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253879, + "fields": { + "id_car_serie": 63275, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253880, + "fields": { + "id_car_serie": 63275, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253881, + "fields": { + "id_car_serie": 63275, + "name": "2.0 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253882, + "fields": { + "id_car_serie": 63275, + "name": "2.0 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253883, + "fields": { + "id_car_serie": 63275, + "name": "2.2 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253884, + "fields": { + "id_car_serie": 63275, + "name": "2.2 MT 4WD (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253885, + "fields": { + "id_car_serie": 63275, + "name": "2.8 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253886, + "fields": { + "id_car_serie": 64539, + "name": "3.5 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253887, + "fields": { + "id_car_serie": 64540, + "name": "2.4 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253888, + "fields": { + "id_car_serie": 64540, + "name": "2.8 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253889, + "fields": { + "id_car_serie": 64541, + "name": "2.4 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253890, + "fields": { + "id_car_serie": 64541, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253891, + "fields": { + "id_car_serie": 64541, + "name": "2.4 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253892, + "fields": { + "id_car_serie": 64541, + "name": "2.5 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253893, + "fields": { + "id_car_serie": 64541, + "name": "2.8 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253894, + "fields": { + "id_car_serie": 64541, + "name": "2.7 MT 4WD (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253895, + "fields": { + "id_car_serie": 64541, + "name": "2.7 AT 4WD (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253896, + "fields": { + "id_car_serie": 64541, + "name": "4.0 MT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253897, + "fields": { + "id_car_serie": 64541, + "name": "4.0 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253898, + "fields": { + "id_car_serie": 64542, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253899, + "fields": { + "id_car_serie": 64542, + "name": "2.5 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253900, + "fields": { + "id_car_serie": 64543, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253901, + "fields": { + "id_car_serie": 64543, + "name": "2.0 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253902, + "fields": { + "id_car_serie": 64543, + "name": "2.2 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253903, + "fields": { + "id_car_serie": 64543, + "name": "2.4 MT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253904, + "fields": { + "id_car_serie": 64543, + "name": "2.2 MT 4WD (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253905, + "fields": { + "id_car_serie": 49317, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253906, + "fields": { + "id_car_serie": 49317, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253907, + "fields": { + "id_car_serie": 49317, + "name": "2.0 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253908, + "fields": { + "id_car_serie": 49317, + "name": "2.2 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253909, + "fields": { + "id_car_serie": 49317, + "name": "2.2 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253910, + "fields": { + "id_car_serie": 49317, + "name": "2.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253911, + "fields": { + "id_car_serie": 49317, + "name": "2.4 MT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253912, + "fields": { + "id_car_serie": 49317, + "name": "2.2 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253913, + "fields": { + "id_car_serie": 49317, + "name": "2.2 MT 4WD (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253914, + "fields": { + "id_car_serie": 49318, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253915, + "fields": { + "id_car_serie": 49318, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253916, + "fields": { + "id_car_serie": 49318, + "name": "2.2 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253917, + "fields": { + "id_car_serie": 49319, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253918, + "fields": { + "id_car_serie": 49319, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253919, + "fields": { + "id_car_serie": 49319, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253920, + "fields": { + "id_car_serie": 64544, + "name": "4.6 AT 4WD (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253921, + "fields": { + "id_car_serie": 64544, + "name": "4.0 AT 4WD (271 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253922, + "fields": { + "id_car_serie": 64544, + "name": "5.7 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253923, + "fields": { + "id_car_serie": 64544, + "name": "4.5 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253924, + "fields": { + "id_car_serie": 64545, + "name": "4.5 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253925, + "fields": { + "id_car_serie": 64545, + "name": "4.6 AT 4WD (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253926, + "fields": { + "id_car_serie": 64546, + "name": "4.5 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253927, + "fields": { + "id_car_serie": 64546, + "name": "4.5 MT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253928, + "fields": { + "id_car_serie": 64546, + "name": "4.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253929, + "fields": { + "id_car_serie": 64546, + "name": "4.5 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253930, + "fields": { + "id_car_serie": 64546, + "name": "4.7 AT 4WD (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253931, + "fields": { + "id_car_serie": 64546, + "name": "4.0 AT 4WD (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253932, + "fields": { + "id_car_serie": 64546, + "name": "4.0 MT 4WD (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253933, + "fields": { + "id_car_serie": 64546, + "name": "4.0 AT 4WD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253934, + "fields": { + "id_car_serie": 64546, + "name": "4.6 AT 4WD (318 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253935, + "fields": { + "id_car_serie": 64546, + "name": "5.7 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253936, + "fields": { + "id_car_serie": 64547, + "name": "4.0 MT 4WD (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253937, + "fields": { + "id_car_serie": 64547, + "name": "4.2 AT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253938, + "fields": { + "id_car_serie": 64547, + "name": "4.2 MT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253939, + "fields": { + "id_car_serie": 64547, + "name": "4.2 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253940, + "fields": { + "id_car_serie": 64547, + "name": "4.2 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253941, + "fields": { + "id_car_serie": 64547, + "name": "4.2 MT 4WD (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253942, + "fields": { + "id_car_serie": 64547, + "name": "4.5 AT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253943, + "fields": { + "id_car_serie": 64547, + "name": "4.5 MT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253944, + "fields": { + "id_car_serie": 64548, + "name": "4.0 MT 4WD (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253945, + "fields": { + "id_car_serie": 64548, + "name": "4.2 AT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253946, + "fields": { + "id_car_serie": 64548, + "name": "4.2 MT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253947, + "fields": { + "id_car_serie": 64548, + "name": "4.5 MT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253948, + "fields": { + "id_car_serie": 64548, + "name": "4.5 AT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253949, + "fields": { + "id_car_serie": 64549, + "name": "4.0 MT 4WD (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253950, + "fields": { + "id_car_serie": 64549, + "name": "4.2 AT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253951, + "fields": { + "id_car_serie": 64549, + "name": "4.2 MT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253952, + "fields": { + "id_car_serie": 64549, + "name": "4.5 AT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253953, + "fields": { + "id_car_serie": 64549, + "name": "4.5 MT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253954, + "fields": { + "id_car_serie": 64550, + "name": "4.0 MT 4WD (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253955, + "fields": { + "id_car_serie": 64550, + "name": "4.2 MT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253956, + "fields": { + "id_car_serie": 64550, + "name": "4.5 MT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253957, + "fields": { + "id_car_serie": 64551, + "name": "4.2 MT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253958, + "fields": { + "id_car_serie": 64551, + "name": "4.2 AT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253959, + "fields": { + "id_car_serie": 64551, + "name": "4.2 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253960, + "fields": { + "id_car_serie": 64551, + "name": "4.2 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253961, + "fields": { + "id_car_serie": 64551, + "name": "4.2 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253962, + "fields": { + "id_car_serie": 64551, + "name": "4.5 MT 4WD (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253963, + "fields": { + "id_car_serie": 64551, + "name": "4.5 AT 4WD (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253964, + "fields": { + "id_car_serie": 64551, + "name": "4.7 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253965, + "fields": { + "id_car_serie": 64551, + "name": "4.7 MT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253966, + "fields": { + "id_car_serie": 64552, + "name": "4.2 MT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253967, + "fields": { + "id_car_serie": 64552, + "name": "4.2 AT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253968, + "fields": { + "id_car_serie": 64552, + "name": "4.2 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253969, + "fields": { + "id_car_serie": 64552, + "name": "4.2 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253970, + "fields": { + "id_car_serie": 64552, + "name": "4.5 MT 4WD (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253971, + "fields": { + "id_car_serie": 64552, + "name": "4.5 AT 4WD (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253972, + "fields": { + "id_car_serie": 64552, + "name": "4.5 MT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253973, + "fields": { + "id_car_serie": 64552, + "name": "4.5 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253974, + "fields": { + "id_car_serie": 64552, + "name": "4.7 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253975, + "fields": { + "id_car_serie": 64552, + "name": "4.7 MT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253976, + "fields": { + "id_car_serie": 64553, + "name": "4.2 MT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253977, + "fields": { + "id_car_serie": 64553, + "name": "4.2 AT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253978, + "fields": { + "id_car_serie": 64553, + "name": "4.2 MT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253979, + "fields": { + "id_car_serie": 64553, + "name": "4.2 AT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253980, + "fields": { + "id_car_serie": 64553, + "name": "4.2 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253981, + "fields": { + "id_car_serie": 64553, + "name": "4.2 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253982, + "fields": { + "id_car_serie": 64553, + "name": "4.5 AT 4WD (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253983, + "fields": { + "id_car_serie": 64553, + "name": "4.5 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253984, + "fields": { + "id_car_serie": 64553, + "name": "4.5 MT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253985, + "fields": { + "id_car_serie": 64553, + "name": "4.5 MT 4WD (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253986, + "fields": { + "id_car_serie": 64553, + "name": "4.7 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253987, + "fields": { + "id_car_serie": 64553, + "name": "4.7 MT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253988, + "fields": { + "id_car_serie": 64554, + "name": "4.2 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253989, + "fields": { + "id_car_serie": 64554, + "name": "4.2 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253990, + "fields": { + "id_car_serie": 64554, + "name": "4.2 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253991, + "fields": { + "id_car_serie": 64554, + "name": "4.2 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253992, + "fields": { + "id_car_serie": 64554, + "name": "4.2 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253993, + "fields": { + "id_car_serie": 64554, + "name": "4.2 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253994, + "fields": { + "id_car_serie": 64554, + "name": "4.2 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253995, + "fields": { + "id_car_serie": 64554, + "name": "4.2 MT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253996, + "fields": { + "id_car_serie": 64554, + "name": "4.5 MT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253997, + "fields": { + "id_car_serie": 64554, + "name": "4.5 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253998, + "fields": { + "id_car_serie": 64554, + "name": "4.5 MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 253999, + "fields": { + "id_car_serie": 64554, + "name": "4.5 AT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254000, + "fields": { + "id_car_serie": 64555, + "name": "4.0 AT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254001, + "fields": { + "id_car_serie": 64555, + "name": "4.5 MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254002, + "fields": { + "id_car_serie": 64555, + "name": "4.5 AT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254003, + "fields": { + "id_car_serie": 64555, + "name": "4.5 MT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254004, + "fields": { + "id_car_serie": 64555, + "name": "4.5 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254005, + "fields": { + "id_car_serie": 64555, + "name": "4.2 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254006, + "fields": { + "id_car_serie": 64555, + "name": "4.2 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254007, + "fields": { + "id_car_serie": 64555, + "name": "4.2 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254008, + "fields": { + "id_car_serie": 64555, + "name": "4.2 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254009, + "fields": { + "id_car_serie": 64555, + "name": "4.2 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254010, + "fields": { + "id_car_serie": 64555, + "name": "4.2 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254011, + "fields": { + "id_car_serie": 64555, + "name": "4.2 MT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254012, + "fields": { + "id_car_serie": 64556, + "name": "2.4 MT 4WD (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254013, + "fields": { + "id_car_serie": 64556, + "name": "2.4 MT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254014, + "fields": { + "id_car_serie": 64556, + "name": "4.0 MT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254015, + "fields": { + "id_car_serie": 64556, + "name": "4.5 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254016, + "fields": { + "id_car_serie": 64556, + "name": "4.5 MT 4WD (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254017, + "fields": { + "id_car_serie": 64556, + "name": "2.5 MT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254018, + "fields": { + "id_car_serie": 64556, + "name": "2.5 AT 4WD (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254019, + "fields": { + "id_car_serie": 64556, + "name": "2.5 MT 4WD (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254020, + "fields": { + "id_car_serie": 64556, + "name": "2.8 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254021, + "fields": { + "id_car_serie": 64556, + "name": "3.0 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254022, + "fields": { + "id_car_serie": 64556, + "name": "3.0 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254023, + "fields": { + "id_car_serie": 64556, + "name": "3.4 MT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254024, + "fields": { + "id_car_serie": 64556, + "name": "3.4 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254025, + "fields": { + "id_car_serie": 64556, + "name": "3.4 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254026, + "fields": { + "id_car_serie": 64556, + "name": "3.5 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254027, + "fields": { + "id_car_serie": 64556, + "name": "4.0 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254028, + "fields": { + "id_car_serie": 64556, + "name": "4.2 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254029, + "fields": { + "id_car_serie": 64556, + "name": "4.2 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254030, + "fields": { + "id_car_serie": 64556, + "name": "4.2 MT 4WD (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254031, + "fields": { + "id_car_serie": 64557, + "name": "2.4 MT 4WD (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254032, + "fields": { + "id_car_serie": 64557, + "name": "2.4 MT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254033, + "fields": { + "id_car_serie": 64557, + "name": "4.0 MT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254034, + "fields": { + "id_car_serie": 64557, + "name": "4.5 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254035, + "fields": { + "id_car_serie": 64557, + "name": "4.5 MT 4WD (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254036, + "fields": { + "id_car_serie": 64557, + "name": "2.5 MT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254037, + "fields": { + "id_car_serie": 64557, + "name": "2.5 AT 4WD (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254038, + "fields": { + "id_car_serie": 64557, + "name": "2.5 MT 4WD (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254039, + "fields": { + "id_car_serie": 64557, + "name": "2.8 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254040, + "fields": { + "id_car_serie": 64557, + "name": "3.0 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254041, + "fields": { + "id_car_serie": 64557, + "name": "3.0 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254042, + "fields": { + "id_car_serie": 64557, + "name": "3.4 MT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254043, + "fields": { + "id_car_serie": 64557, + "name": "3.4 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254044, + "fields": { + "id_car_serie": 64557, + "name": "3.4 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254045, + "fields": { + "id_car_serie": 64557, + "name": "3.5 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254046, + "fields": { + "id_car_serie": 64557, + "name": "4.0 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254047, + "fields": { + "id_car_serie": 64557, + "name": "4.2 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254048, + "fields": { + "id_car_serie": 64557, + "name": "4.2 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254049, + "fields": { + "id_car_serie": 64557, + "name": "4.2 MT 4WD (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254050, + "fields": { + "id_car_serie": 64558, + "name": "3.4 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254051, + "fields": { + "id_car_serie": 64558, + "name": "3.4 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254052, + "fields": { + "id_car_serie": 64558, + "name": "3.4 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254053, + "fields": { + "id_car_serie": 64558, + "name": "3.4 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254054, + "fields": { + "id_car_serie": 64558, + "name": "4.0 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254055, + "fields": { + "id_car_serie": 64558, + "name": "4.0 AT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254056, + "fields": { + "id_car_serie": 64558, + "name": "4.0 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254057, + "fields": { + "id_car_serie": 64558, + "name": "4.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254058, + "fields": { + "id_car_serie": 64558, + "name": "4.2 MT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254059, + "fields": { + "id_car_serie": 64558, + "name": "4.2 AT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254060, + "fields": { + "id_car_serie": 64558, + "name": "4.2 MT 4WD (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254061, + "fields": { + "id_car_serie": 64558, + "name": "4.2 AT 4WD (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254062, + "fields": { + "id_car_serie": 64558, + "name": "4.0 MT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254063, + "fields": { + "id_car_serie": 64558, + "name": "4.0 AT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254064, + "fields": { + "id_car_serie": 64558, + "name": "4.2 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254065, + "fields": { + "id_car_serie": 64558, + "name": "4.2 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254066, + "fields": { + "id_car_serie": 64559, + "name": "3.0 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254067, + "fields": { + "id_car_serie": 64559, + "name": "3.2 MT 4WD (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254068, + "fields": { + "id_car_serie": 64559, + "name": "3.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254069, + "fields": { + "id_car_serie": 64559, + "name": "3.6 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254070, + "fields": { + "id_car_serie": 64559, + "name": "3.9 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254071, + "fields": { + "id_car_serie": 64559, + "name": "3.9 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254072, + "fields": { + "id_car_serie": 64559, + "name": "4.2 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254073, + "fields": { + "id_car_serie": 64560, + "name": "2.7 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254074, + "fields": { + "id_car_serie": 64560, + "name": "2.7 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254075, + "fields": { + "id_car_serie": 64560, + "name": "4.0 AT 4WD (282 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254076, + "fields": { + "id_car_serie": 64560, + "name": "2.8 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254077, + "fields": { + "id_car_serie": 64560, + "name": "3.0 AT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254078, + "fields": { + "id_car_serie": 64561, + "name": "2.7 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254079, + "fields": { + "id_car_serie": 64561, + "name": "2.7 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254080, + "fields": { + "id_car_serie": 64561, + "name": "4.0 AT 4WD (282 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254081, + "fields": { + "id_car_serie": 64561, + "name": "4.0 AT 4WD (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254082, + "fields": { + "id_car_serie": 64561, + "name": "3.0 AT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254083, + "fields": { + "id_car_serie": 64561, + "name": "3.0 MT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254084, + "fields": { + "id_car_serie": 64561, + "name": "3.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254085, + "fields": { + "id_car_serie": 64561, + "name": "3.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254086, + "fields": { + "id_car_serie": 64562, + "name": "2.7 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254087, + "fields": { + "id_car_serie": 64562, + "name": "2.7 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254088, + "fields": { + "id_car_serie": 64562, + "name": "2.7 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254089, + "fields": { + "id_car_serie": 64562, + "name": "2.7 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254090, + "fields": { + "id_car_serie": 64562, + "name": "3.4 AT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254091, + "fields": { + "id_car_serie": 64562, + "name": "4.0 MT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254092, + "fields": { + "id_car_serie": 64562, + "name": "4.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254093, + "fields": { + "id_car_serie": 64562, + "name": "3.0 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254094, + "fields": { + "id_car_serie": 64562, + "name": "3.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254095, + "fields": { + "id_car_serie": 64562, + "name": "3.0 MT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254096, + "fields": { + "id_car_serie": 64562, + "name": "3.0 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254097, + "fields": { + "id_car_serie": 64562, + "name": "3.0 AT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254098, + "fields": { + "id_car_serie": 64563, + "name": "4.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254099, + "fields": { + "id_car_serie": 64563, + "name": "2.7 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254100, + "fields": { + "id_car_serie": 64563, + "name": "2.7 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254101, + "fields": { + "id_car_serie": 64563, + "name": "2.7 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254102, + "fields": { + "id_car_serie": 64563, + "name": "2.7 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254103, + "fields": { + "id_car_serie": 64563, + "name": "3.4 AT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254104, + "fields": { + "id_car_serie": 64563, + "name": "3.0 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254105, + "fields": { + "id_car_serie": 64563, + "name": "3.0 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254106, + "fields": { + "id_car_serie": 64563, + "name": "3.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254107, + "fields": { + "id_car_serie": 64563, + "name": "3.0 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254108, + "fields": { + "id_car_serie": 64563, + "name": "3.0 MT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254109, + "fields": { + "id_car_serie": 64563, + "name": "3.0 AT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254110, + "fields": { + "id_car_serie": 64563, + "name": "3.0 MT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254111, + "fields": { + "id_car_serie": 64564, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254112, + "fields": { + "id_car_serie": 64564, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254113, + "fields": { + "id_car_serie": 64565, + "name": "1.5 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254114, + "fields": { + "id_car_serie": 64565, + "name": "1.5 AT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254115, + "fields": { + "id_car_serie": 64565, + "name": "1.5 AT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254116, + "fields": { + "id_car_serie": 64566, + "name": "1.5 AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254117, + "fields": { + "id_car_serie": 64567, + "name": "1.3 CVT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254118, + "fields": { + "id_car_serie": 64567, + "name": "1.5 CVT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254119, + "fields": { + "id_car_serie": 64567, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254120, + "fields": { + "id_car_serie": 64568, + "name": "2.0 MT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254121, + "fields": { + "id_car_serie": 64568, + "name": "2.0 CVT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254122, + "fields": { + "id_car_serie": 64568, + "name": "2.0 CVT 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254123, + "fields": { + "id_car_serie": 64568, + "name": "2.5 AT 4WD (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254124, + "fields": { + "id_car_serie": 64568, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254125, + "fields": { + "id_car_serie": 64568, + "name": "2.0 CVT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254126, + "fields": { + "id_car_serie": 64568, + "name": "2.0 MT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254127, + "fields": { + "id_car_serie": 64568, + "name": "2.0 CVT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254128, + "fields": { + "id_car_serie": 64568, + "name": "2.5 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254129, + "fields": { + "id_car_serie": 64568, + "name": "2.5 AT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254130, + "fields": { + "id_car_serie": 64568, + "name": "2.5 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254131, + "fields": { + "id_car_serie": 64568, + "name": "2.5 AT 4WD (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254132, + "fields": { + "id_car_serie": 64569, + "name": "2.0 CVT 4WD (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254133, + "fields": { + "id_car_serie": 64569, + "name": "2.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254134, + "fields": { + "id_car_serie": 64569, + "name": "2.0 MT 4WD (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254135, + "fields": { + "id_car_serie": 64569, + "name": "2.0 MT 4WD (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254136, + "fields": { + "id_car_serie": 64569, + "name": "2.0 CVT 4WD (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254137, + "fields": { + "id_car_serie": 64569, + "name": "2.2 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254138, + "fields": { + "id_car_serie": 64569, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254139, + "fields": { + "id_car_serie": 64569, + "name": "2.5 CVT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254140, + "fields": { + "id_car_serie": 64570, + "name": "2.0 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254141, + "fields": { + "id_car_serie": 64570, + "name": "2.0 MT 4WD (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254142, + "fields": { + "id_car_serie": 64570, + "name": "2.0 CVT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254143, + "fields": { + "id_car_serie": 64570, + "name": "2.0 CVT 4WD (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254144, + "fields": { + "id_car_serie": 64570, + "name": "2.5 AT 4WD (179 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254145, + "fields": { + "id_car_serie": 64570, + "name": "2.0 MT 4WD (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254146, + "fields": { + "id_car_serie": 64570, + "name": "2.0 CVT 4WD (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254147, + "fields": { + "id_car_serie": 64570, + "name": "2.2 AT 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254148, + "fields": { + "id_car_serie": 64570, + "name": "2.0 MT 4WD (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254149, + "fields": { + "id_car_serie": 64570, + "name": "2.2 MT 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254150, + "fields": { + "id_car_serie": 64571, + "name": "2.4 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254151, + "fields": { + "id_car_serie": 64571, + "name": "2.5 AT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254152, + "fields": { + "id_car_serie": 64572, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254153, + "fields": { + "id_car_serie": 64572, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254154, + "fields": { + "id_car_serie": 64572, + "name": "1.8 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254155, + "fields": { + "id_car_serie": 64572, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254156, + "fields": { + "id_car_serie": 64572, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254157, + "fields": { + "id_car_serie": 64572, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254158, + "fields": { + "id_car_serie": 64572, + "name": "2.0 AT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254159, + "fields": { + "id_car_serie": 64572, + "name": "2.0 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254160, + "fields": { + "id_car_serie": 64573, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254161, + "fields": { + "id_car_serie": 64573, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254162, + "fields": { + "id_car_serie": 64573, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254163, + "fields": { + "id_car_serie": 64573, + "name": "1.8 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254164, + "fields": { + "id_car_serie": 64573, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254165, + "fields": { + "id_car_serie": 64573, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254166, + "fields": { + "id_car_serie": 64573, + "name": "2.4 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254167, + "fields": { + "id_car_serie": 64573, + "name": "2.4 AT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254168, + "fields": { + "id_car_serie": 64573, + "name": "2.4 AT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254169, + "fields": { + "id_car_serie": 64573, + "name": "2.4 MT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254170, + "fields": { + "id_car_serie": 64573, + "name": "2.4 MT 4WD (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254171, + "fields": { + "id_car_serie": 64573, + "name": "2.4 AT 4WD (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254172, + "fields": { + "id_car_serie": 64573, + "name": "2.4 AT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254173, + "fields": { + "id_car_serie": 64573, + "name": "2.4 MT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254174, + "fields": { + "id_car_serie": 64573, + "name": "2.4 CVT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254175, + "fields": { + "id_car_serie": 64573, + "name": "2.0 AT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254176, + "fields": { + "id_car_serie": 64573, + "name": "2.0 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254177, + "fields": { + "id_car_serie": 64574, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254178, + "fields": { + "id_car_serie": 64574, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254179, + "fields": { + "id_car_serie": 64574, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254180, + "fields": { + "id_car_serie": 64574, + "name": "1.8 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254181, + "fields": { + "id_car_serie": 64574, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254182, + "fields": { + "id_car_serie": 64574, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254183, + "fields": { + "id_car_serie": 64574, + "name": "2.0 MT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254184, + "fields": { + "id_car_serie": 64574, + "name": "2.0 AT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254185, + "fields": { + "id_car_serie": 64574, + "name": "2.0 AT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254186, + "fields": { + "id_car_serie": 64574, + "name": "2.0 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254187, + "fields": { + "id_car_serie": 64575, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254188, + "fields": { + "id_car_serie": 64575, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254189, + "fields": { + "id_car_serie": 64575, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254190, + "fields": { + "id_car_serie": 64575, + "name": "1.8 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254191, + "fields": { + "id_car_serie": 64575, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254192, + "fields": { + "id_car_serie": 64575, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254193, + "fields": { + "id_car_serie": 64575, + "name": "2.0 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254194, + "fields": { + "id_car_serie": 64575, + "name": "2.0 AT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254195, + "fields": { + "id_car_serie": 64576, + "name": "2.0 MT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254196, + "fields": { + "id_car_serie": 64576, + "name": "2.0 AT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254197, + "fields": { + "id_car_serie": 64577, + "name": "2.0 MT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254198, + "fields": { + "id_car_serie": 64577, + "name": "2.0 AT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254199, + "fields": { + "id_car_serie": 64577, + "name": "2.0 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254200, + "fields": { + "id_car_serie": 64577, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254201, + "fields": { + "id_car_serie": 64577, + "name": "2.0 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254202, + "fields": { + "id_car_serie": 64577, + "name": "2.0 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254203, + "fields": { + "id_car_serie": 63276, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254204, + "fields": { + "id_car_serie": 63276, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254205, + "fields": { + "id_car_serie": 63276, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254206, + "fields": { + "id_car_serie": 63276, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254207, + "fields": { + "id_car_serie": 63276, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254208, + "fields": { + "id_car_serie": 63276, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254209, + "fields": { + "id_car_serie": 63276, + "name": "1.6 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254210, + "fields": { + "id_car_serie": 63276, + "name": "1.6 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254211, + "fields": { + "id_car_serie": 63276, + "name": "1.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254212, + "fields": { + "id_car_serie": 63276, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254213, + "fields": { + "id_car_serie": 63276, + "name": "1.6 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254214, + "fields": { + "id_car_serie": 63276, + "name": "1.6 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254215, + "fields": { + "id_car_serie": 63276, + "name": "2.0 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254216, + "fields": { + "id_car_serie": 63276, + "name": "2.0 MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254217, + "fields": { + "id_car_serie": 63276, + "name": "2.0 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254218, + "fields": { + "id_car_serie": 63276, + "name": "2.2 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254219, + "fields": { + "id_car_serie": 63276, + "name": "2.2 MT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254220, + "fields": { + "id_car_serie": 64578, + "name": "1.5 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254221, + "fields": { + "id_car_serie": 64578, + "name": "1.5 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254222, + "fields": { + "id_car_serie": 64578, + "name": "1.5 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254223, + "fields": { + "id_car_serie": 64578, + "name": "1.5 AT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254224, + "fields": { + "id_car_serie": 64578, + "name": "1.5 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254225, + "fields": { + "id_car_serie": 64578, + "name": "1.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254226, + "fields": { + "id_car_serie": 64578, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254227, + "fields": { + "id_car_serie": 64578, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254228, + "fields": { + "id_car_serie": 64578, + "name": "2.0 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254229, + "fields": { + "id_car_serie": 64578, + "name": "2.0 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254230, + "fields": { + "id_car_serie": 64578, + "name": "2.2 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254231, + "fields": { + "id_car_serie": 64578, + "name": "2.2 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254232, + "fields": { + "id_car_serie": 64579, + "name": "1.3 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254233, + "fields": { + "id_car_serie": 64579, + "name": "1.3 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254234, + "fields": { + "id_car_serie": 64579, + "name": "1.3 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254235, + "fields": { + "id_car_serie": 64579, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254236, + "fields": { + "id_car_serie": 64579, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254237, + "fields": { + "id_car_serie": 64579, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254238, + "fields": { + "id_car_serie": 64579, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254239, + "fields": { + "id_car_serie": 64579, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254240, + "fields": { + "id_car_serie": 64579, + "name": "1.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254241, + "fields": { + "id_car_serie": 64579, + "name": "1.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254242, + "fields": { + "id_car_serie": 64579, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254243, + "fields": { + "id_car_serie": 64579, + "name": "2.0 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254244, + "fields": { + "id_car_serie": 64579, + "name": "2.0 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254245, + "fields": { + "id_car_serie": 64579, + "name": "2.0 MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254246, + "fields": { + "id_car_serie": 64580, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254247, + "fields": { + "id_car_serie": 64580, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254248, + "fields": { + "id_car_serie": 64580, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254249, + "fields": { + "id_car_serie": 64580, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254250, + "fields": { + "id_car_serie": 64580, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254251, + "fields": { + "id_car_serie": 64580, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254252, + "fields": { + "id_car_serie": 64580, + "name": "1.6 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254253, + "fields": { + "id_car_serie": 64580, + "name": "1.6 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254254, + "fields": { + "id_car_serie": 64580, + "name": "1.6 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254255, + "fields": { + "id_car_serie": 64580, + "name": "1.6 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254256, + "fields": { + "id_car_serie": 64580, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254257, + "fields": { + "id_car_serie": 64580, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254258, + "fields": { + "id_car_serie": 64580, + "name": "1.8 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254259, + "fields": { + "id_car_serie": 64580, + "name": "1.8 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254260, + "fields": { + "id_car_serie": 64580, + "name": "2.0 MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254261, + "fields": { + "id_car_serie": 64581, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254262, + "fields": { + "id_car_serie": 64581, + "name": "1.5 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254263, + "fields": { + "id_car_serie": 64581, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254264, + "fields": { + "id_car_serie": 64581, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254265, + "fields": { + "id_car_serie": 64581, + "name": "1.8 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254266, + "fields": { + "id_car_serie": 64581, + "name": "1.8 AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254267, + "fields": { + "id_car_serie": 64582, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254268, + "fields": { + "id_car_serie": 64582, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254269, + "fields": { + "id_car_serie": 64582, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254270, + "fields": { + "id_car_serie": 64582, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254271, + "fields": { + "id_car_serie": 64582, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254272, + "fields": { + "id_car_serie": 64582, + "name": "1.5 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254273, + "fields": { + "id_car_serie": 64582, + "name": "1.8 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254274, + "fields": { + "id_car_serie": 64582, + "name": "1.8 AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254275, + "fields": { + "id_car_serie": 63277, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254276, + "fields": { + "id_car_serie": 63277, + "name": "1.5 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254277, + "fields": { + "id_car_serie": 63277, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254278, + "fields": { + "id_car_serie": 63277, + "name": "1.5 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254279, + "fields": { + "id_car_serie": 63278, + "name": "1.8 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254280, + "fields": { + "id_car_serie": 63278, + "name": "1.8 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254281, + "fields": { + "id_car_serie": 63278, + "name": "2.0 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254282, + "fields": { + "id_car_serie": 63278, + "name": "2.0 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254283, + "fields": { + "id_car_serie": 63278, + "name": "2.0 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254284, + "fields": { + "id_car_serie": 63278, + "name": "2.0 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254285, + "fields": { + "id_car_serie": 63278, + "name": "2.0 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254286, + "fields": { + "id_car_serie": 63278, + "name": "2.0 AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254287, + "fields": { + "id_car_serie": 63278, + "name": "2.0 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254288, + "fields": { + "id_car_serie": 63278, + "name": "2.0 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254289, + "fields": { + "id_car_serie": 63278, + "name": "2.2 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254290, + "fields": { + "id_car_serie": 63278, + "name": "2.2 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254291, + "fields": { + "id_car_serie": 63278, + "name": "2.2 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254292, + "fields": { + "id_car_serie": 63278, + "name": "2.2 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254293, + "fields": { + "id_car_serie": 63278, + "name": "2.2 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254294, + "fields": { + "id_car_serie": 63278, + "name": "2.2 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254295, + "fields": { + "id_car_serie": 63278, + "name": "2.2 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254296, + "fields": { + "id_car_serie": 64583, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254297, + "fields": { + "id_car_serie": 64583, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254298, + "fields": { + "id_car_serie": 64583, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254299, + "fields": { + "id_car_serie": 64583, + "name": "2.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254300, + "fields": { + "id_car_serie": 64584, + "name": "1.0 CVT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254301, + "fields": { + "id_car_serie": 64584, + "name": "1.3 CVT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254302, + "fields": { + "id_car_serie": 64584, + "name": "1.3 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254303, + "fields": { + "id_car_serie": 64584, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254304, + "fields": { + "id_car_serie": 64584, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254305, + "fields": { + "id_car_serie": 64584, + "name": "1.5 CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254306, + "fields": { + "id_car_serie": 63279, + "name": "1.5 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254307, + "fields": { + "id_car_serie": 64585, + "name": "1.3 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254308, + "fields": { + "id_car_serie": 64585, + "name": "1.5 CVT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254309, + "fields": { + "id_car_serie": 64586, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254310, + "fields": { + "id_car_serie": 64586, + "name": "1.5 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254311, + "fields": { + "id_car_serie": 64586, + "name": "1.5 CVT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254312, + "fields": { + "id_car_serie": 64586, + "name": "1.5 CVT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254313, + "fields": { + "id_car_serie": 64587, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254314, + "fields": { + "id_car_serie": 64587, + "name": "1.3 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254315, + "fields": { + "id_car_serie": 64587, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254316, + "fields": { + "id_car_serie": 64587, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254317, + "fields": { + "id_car_serie": 64587, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254318, + "fields": { + "id_car_serie": 64588, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254319, + "fields": { + "id_car_serie": 64588, + "name": "1.3 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254320, + "fields": { + "id_car_serie": 64588, + "name": "1.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254321, + "fields": { + "id_car_serie": 64588, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254322, + "fields": { + "id_car_serie": 64588, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254323, + "fields": { + "id_car_serie": 64588, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254324, + "fields": { + "id_car_serie": 64588, + "name": "1.5 CVT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254325, + "fields": { + "id_car_serie": 64589, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254326, + "fields": { + "id_car_serie": 64589, + "name": "1.3 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254327, + "fields": { + "id_car_serie": 64589, + "name": "1.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254328, + "fields": { + "id_car_serie": 64589, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254329, + "fields": { + "id_car_serie": 64589, + "name": "1.5 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254330, + "fields": { + "id_car_serie": 64589, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254331, + "fields": { + "id_car_serie": 64589, + "name": "1.5 CVT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254332, + "fields": { + "id_car_serie": 64590, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254333, + "fields": { + "id_car_serie": 64590, + "name": "1.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254334, + "fields": { + "id_car_serie": 64590, + "name": "1.3 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254335, + "fields": { + "id_car_serie": 64590, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254336, + "fields": { + "id_car_serie": 64591, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254337, + "fields": { + "id_car_serie": 64591, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254338, + "fields": { + "id_car_serie": 64592, + "name": "1.3 AMT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254339, + "fields": { + "id_car_serie": 64592, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254340, + "fields": { + "id_car_serie": 64592, + "name": "1.0 AT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254341, + "fields": { + "id_car_serie": 64592, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254342, + "fields": { + "id_car_serie": 64592, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254343, + "fields": { + "id_car_serie": 64592, + "name": "1.3 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254344, + "fields": { + "id_car_serie": 64592, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254345, + "fields": { + "id_car_serie": 64592, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254346, + "fields": { + "id_car_serie": 64592, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254347, + "fields": { + "id_car_serie": 64592, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254348, + "fields": { + "id_car_serie": 64593, + "name": "1.3 AMT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254349, + "fields": { + "id_car_serie": 64593, + "name": "1.3 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254350, + "fields": { + "id_car_serie": 64593, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254351, + "fields": { + "id_car_serie": 64593, + "name": "1.0 AT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254352, + "fields": { + "id_car_serie": 64593, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254353, + "fields": { + "id_car_serie": 64593, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254354, + "fields": { + "id_car_serie": 64593, + "name": "1.3 AMT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254355, + "fields": { + "id_car_serie": 64593, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254356, + "fields": { + "id_car_serie": 64593, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254357, + "fields": { + "id_car_serie": 64593, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254358, + "fields": { + "id_car_serie": 64593, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254359, + "fields": { + "id_car_serie": 64594, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254360, + "fields": { + "id_car_serie": 64594, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254361, + "fields": { + "id_car_serie": 64594, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254362, + "fields": { + "id_car_serie": 64594, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254363, + "fields": { + "id_car_serie": 64595, + "name": "1.3 AMT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254364, + "fields": { + "id_car_serie": 64595, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254365, + "fields": { + "id_car_serie": 64595, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254366, + "fields": { + "id_car_serie": 64595, + "name": "1.0 AT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254367, + "fields": { + "id_car_serie": 64595, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254368, + "fields": { + "id_car_serie": 64595, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254369, + "fields": { + "id_car_serie": 64595, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254370, + "fields": { + "id_car_serie": 64595, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254371, + "fields": { + "id_car_serie": 64595, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254372, + "fields": { + "id_car_serie": 64596, + "name": "1.3 AMT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254373, + "fields": { + "id_car_serie": 64596, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254374, + "fields": { + "id_car_serie": 64596, + "name": "1.0 AT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254375, + "fields": { + "id_car_serie": 64596, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254376, + "fields": { + "id_car_serie": 64596, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254377, + "fields": { + "id_car_serie": 64596, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254378, + "fields": { + "id_car_serie": 64596, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254379, + "fields": { + "id_car_serie": 64596, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254380, + "fields": { + "id_car_serie": 64596, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254381, + "fields": { + "id_car_serie": 64597, + "name": "1.0 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254382, + "fields": { + "id_car_serie": 64597, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254383, + "fields": { + "id_car_serie": 64597, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254384, + "fields": { + "id_car_serie": 64597, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254385, + "fields": { + "id_car_serie": 64597, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254386, + "fields": { + "id_car_serie": 64597, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254387, + "fields": { + "id_car_serie": 64597, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254388, + "fields": { + "id_car_serie": 64597, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254389, + "fields": { + "id_car_serie": 64598, + "name": "1.0 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254390, + "fields": { + "id_car_serie": 64598, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254391, + "fields": { + "id_car_serie": 64598, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254392, + "fields": { + "id_car_serie": 64598, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254393, + "fields": { + "id_car_serie": 64598, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254394, + "fields": { + "id_car_serie": 64598, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254395, + "fields": { + "id_car_serie": 64598, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254396, + "fields": { + "id_car_serie": 64598, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254397, + "fields": { + "id_car_serie": 64599, + "name": "1.0 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254398, + "fields": { + "id_car_serie": 64599, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254399, + "fields": { + "id_car_serie": 64599, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254400, + "fields": { + "id_car_serie": 64599, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254401, + "fields": { + "id_car_serie": 64599, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254402, + "fields": { + "id_car_serie": 64599, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254403, + "fields": { + "id_car_serie": 64599, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254404, + "fields": { + "id_car_serie": 64600, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254405, + "fields": { + "id_car_serie": 64600, + "name": "1.0 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254406, + "fields": { + "id_car_serie": 64600, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254407, + "fields": { + "id_car_serie": 64600, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254408, + "fields": { + "id_car_serie": 64600, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254409, + "fields": { + "id_car_serie": 64600, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254410, + "fields": { + "id_car_serie": 64600, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254411, + "fields": { + "id_car_serie": 63280, + "name": "3.0 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254412, + "fields": { + "id_car_serie": 63280, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254413, + "fields": { + "id_car_serie": 63280, + "name": "3.0 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254414, + "fields": { + "id_car_serie": 63281, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254415, + "fields": { + "id_car_serie": 63281, + "name": "3.0 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254416, + "fields": { + "id_car_serie": 63281, + "name": "3.0 AT (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254417, + "fields": { + "id_car_serie": 63281, + "name": "4.0 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254418, + "fields": { + "id_car_serie": 63282, + "name": "2.5 CVT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254419, + "fields": { + "id_car_serie": 63282, + "name": "3.5 (301 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254420, + "fields": { + "id_car_serie": 63283, + "name": "2.5 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254421, + "fields": { + "id_car_serie": 63283, + "name": "3.5 AT (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254422, + "fields": { + "id_car_serie": 64601, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254423, + "fields": { + "id_car_serie": 64601, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254424, + "fields": { + "id_car_serie": 64602, + "name": "2.0 CVT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254425, + "fields": { + "id_car_serie": 64602, + "name": "1.2 CVT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254426, + "fields": { + "id_car_serie": 64602, + "name": "1.2 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254427, + "fields": { + "id_car_serie": 64602, + "name": "1.8 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254428, + "fields": { + "id_car_serie": 64602, + "name": "2.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254429, + "fields": { + "id_car_serie": 63284, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254430, + "fields": { + "id_car_serie": 63284, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254431, + "fields": { + "id_car_serie": 64603, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254432, + "fields": { + "id_car_serie": 64603, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254433, + "fields": { + "id_car_serie": 63285, + "name": "4.0 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254434, + "fields": { + "id_car_serie": 63286, + "name": "5.0 CVT (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254435, + "fields": { + "id_car_serie": 63287, + "name": "5.0 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254436, + "fields": { + "id_car_serie": 63288, + "name": "3.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254437, + "fields": { + "id_car_serie": 63288, + "name": "4.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254438, + "fields": { + "id_car_serie": 63289, + "name": "2.0 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254439, + "fields": { + "id_car_serie": 63291, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254440, + "fields": { + "id_car_serie": 63291, + "name": "1.6 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254441, + "fields": { + "id_car_serie": 63291, + "name": "1.6 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254442, + "fields": { + "id_car_serie": 63291, + "name": "1.6 (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254443, + "fields": { + "id_car_serie": 63291, + "name": "1.6 (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254444, + "fields": { + "id_car_serie": 63292, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254445, + "fields": { + "id_car_serie": 63292, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254446, + "fields": { + "id_car_serie": 63292, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254447, + "fields": { + "id_car_serie": 63292, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254448, + "fields": { + "id_car_serie": 63292, + "name": "1.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254449, + "fields": { + "id_car_serie": 63292, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254450, + "fields": { + "id_car_serie": 63292, + "name": "1.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254451, + "fields": { + "id_car_serie": 63292, + "name": "1.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254452, + "fields": { + "id_car_serie": 63293, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254453, + "fields": { + "id_car_serie": 63293, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254454, + "fields": { + "id_car_serie": 63293, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254455, + "fields": { + "id_car_serie": 63293, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254456, + "fields": { + "id_car_serie": 63293, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254457, + "fields": { + "id_car_serie": 63293, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254458, + "fields": { + "id_car_serie": 63293, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254459, + "fields": { + "id_car_serie": 63293, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254460, + "fields": { + "id_car_serie": 63293, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254461, + "fields": { + "id_car_serie": 63293, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254462, + "fields": { + "id_car_serie": 63293, + "name": "1.6 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254463, + "fields": { + "id_car_serie": 63293, + "name": "1.6 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254464, + "fields": { + "id_car_serie": 63294, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254465, + "fields": { + "id_car_serie": 63294, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254466, + "fields": { + "id_car_serie": 63294, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254467, + "fields": { + "id_car_serie": 63294, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254468, + "fields": { + "id_car_serie": 63295, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254469, + "fields": { + "id_car_serie": 63295, + "name": "1.8 AMT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254470, + "fields": { + "id_car_serie": 63295, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254471, + "fields": { + "id_car_serie": 63295, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254472, + "fields": { + "id_car_serie": 63295, + "name": "2.2 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254473, + "fields": { + "id_car_serie": 63295, + "name": "2.2 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254474, + "fields": { + "id_car_serie": 63296, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254475, + "fields": { + "id_car_serie": 63296, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254476, + "fields": { + "id_car_serie": 63296, + "name": "1.8 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254477, + "fields": { + "id_car_serie": 63296, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254478, + "fields": { + "id_car_serie": 63296, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254479, + "fields": { + "id_car_serie": 63296, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254480, + "fields": { + "id_car_serie": 63297, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254481, + "fields": { + "id_car_serie": 63297, + "name": "2.0 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254482, + "fields": { + "id_car_serie": 63297, + "name": "2.0 (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254483, + "fields": { + "id_car_serie": 63297, + "name": "2.0 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254484, + "fields": { + "id_car_serie": 63297, + "name": "2.0 (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254485, + "fields": { + "id_car_serie": 63297, + "name": "2.0 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254486, + "fields": { + "id_car_serie": 63298, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254487, + "fields": { + "id_car_serie": 63298, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254488, + "fields": { + "id_car_serie": 63298, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254489, + "fields": { + "id_car_serie": 63298, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254490, + "fields": { + "id_car_serie": 63298, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254491, + "fields": { + "id_car_serie": 63298, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254492, + "fields": { + "id_car_serie": 63298, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254493, + "fields": { + "id_car_serie": 63298, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254494, + "fields": { + "id_car_serie": 63298, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254495, + "fields": { + "id_car_serie": 63298, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254496, + "fields": { + "id_car_serie": 64604, + "name": "1.3 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254497, + "fields": { + "id_car_serie": 64604, + "name": "1.3 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254498, + "fields": { + "id_car_serie": 64604, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254499, + "fields": { + "id_car_serie": 64604, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254500, + "fields": { + "id_car_serie": 64604, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254501, + "fields": { + "id_car_serie": 64604, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254502, + "fields": { + "id_car_serie": 64604, + "name": "1.5 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254503, + "fields": { + "id_car_serie": 64604, + "name": "1.5 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254504, + "fields": { + "id_car_serie": 64605, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254505, + "fields": { + "id_car_serie": 64605, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254506, + "fields": { + "id_car_serie": 64605, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254507, + "fields": { + "id_car_serie": 64605, + "name": "1.5 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254508, + "fields": { + "id_car_serie": 64605, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254509, + "fields": { + "id_car_serie": 64606, + "name": "1.3 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254510, + "fields": { + "id_car_serie": 64606, + "name": "1.3 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254511, + "fields": { + "id_car_serie": 64606, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254512, + "fields": { + "id_car_serie": 64606, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254513, + "fields": { + "id_car_serie": 64606, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254514, + "fields": { + "id_car_serie": 64606, + "name": "1.5 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254515, + "fields": { + "id_car_serie": 64606, + "name": "1.5 MT 4WD (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254516, + "fields": { + "id_car_serie": 64606, + "name": "1.5 AT 4WD (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254517, + "fields": { + "id_car_serie": 64606, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254518, + "fields": { + "id_car_serie": 64606, + "name": "1.5 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254519, + "fields": { + "id_car_serie": 64606, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254520, + "fields": { + "id_car_serie": 64607, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254521, + "fields": { + "id_car_serie": 64607, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254522, + "fields": { + "id_car_serie": 63303, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254523, + "fields": { + "id_car_serie": 63303, + "name": "1.5 (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254524, + "fields": { + "id_car_serie": 63303, + "name": "1.4 (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254525, + "fields": { + "id_car_serie": 63304, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254526, + "fields": { + "id_car_serie": 63304, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254527, + "fields": { + "id_car_serie": 63304, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254528, + "fields": { + "id_car_serie": 63304, + "name": "1.5 AT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254529, + "fields": { + "id_car_serie": 63304, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254530, + "fields": { + "id_car_serie": 63304, + "name": "1.5 MT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254531, + "fields": { + "id_car_serie": 63305, + "name": "3.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254532, + "fields": { + "id_car_serie": 63305, + "name": "3.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254533, + "fields": { + "id_car_serie": 63305, + "name": "3.4 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254534, + "fields": { + "id_car_serie": 63305, + "name": "3.4 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254535, + "fields": { + "id_car_serie": 63305, + "name": "3.4 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254536, + "fields": { + "id_car_serie": 63306, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254537, + "fields": { + "id_car_serie": 63306, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254538, + "fields": { + "id_car_serie": 63307, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254539, + "fields": { + "id_car_serie": 63307, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254540, + "fields": { + "id_car_serie": 64608, + "name": "2.7 AT (187 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254541, + "fields": { + "id_car_serie": 64608, + "name": "3.5 AT 4WD (273 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254542, + "fields": { + "id_car_serie": 64608, + "name": "3.3 CVT 4WD (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254543, + "fields": { + "id_car_serie": 64609, + "name": "2.4 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254544, + "fields": { + "id_car_serie": 64609, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254545, + "fields": { + "id_car_serie": 64609, + "name": "3.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254546, + "fields": { + "id_car_serie": 64609, + "name": "3.3 CVT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254547, + "fields": { + "id_car_serie": 64610, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254548, + "fields": { + "id_car_serie": 64610, + "name": "2.4 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254549, + "fields": { + "id_car_serie": 64610, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254550, + "fields": { + "id_car_serie": 64610, + "name": "3.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254551, + "fields": { + "id_car_serie": 63308, + "name": "1.8 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254552, + "fields": { + "id_car_serie": 63308, + "name": "1.8 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254553, + "fields": { + "id_car_serie": 63308, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254554, + "fields": { + "id_car_serie": 63309, + "name": "2.0 MT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254555, + "fields": { + "id_car_serie": 63309, + "name": "2.0 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254556, + "fields": { + "id_car_serie": 63309, + "name": "2.0 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254557, + "fields": { + "id_car_serie": 63309, + "name": "2.0 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254558, + "fields": { + "id_car_serie": 63309, + "name": "2.0 AT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254559, + "fields": { + "id_car_serie": 63309, + "name": "2.0 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254560, + "fields": { + "id_car_serie": 63310, + "name": "1.8 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254561, + "fields": { + "id_car_serie": 63310, + "name": "1.8 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254562, + "fields": { + "id_car_serie": 63310, + "name": "2.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254563, + "fields": { + "id_car_serie": 64611, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254564, + "fields": { + "id_car_serie": 64611, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254565, + "fields": { + "id_car_serie": 64611, + "name": "2.0 CVT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254566, + "fields": { + "id_car_serie": 64612, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254567, + "fields": { + "id_car_serie": 64612, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254568, + "fields": { + "id_car_serie": 64612, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254569, + "fields": { + "id_car_serie": 64612, + "name": "2.0 CVT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254570, + "fields": { + "id_car_serie": 63311, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254571, + "fields": { + "id_car_serie": 63311, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254572, + "fields": { + "id_car_serie": 64613, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254573, + "fields": { + "id_car_serie": 64614, + "name": "1.5 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254574, + "fields": { + "id_car_serie": 64614, + "name": "1.5 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254575, + "fields": { + "id_car_serie": 64615, + "name": "1.0 CVT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254576, + "fields": { + "id_car_serie": 64615, + "name": "1.0 CVT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254577, + "fields": { + "id_car_serie": 64616, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254578, + "fields": { + "id_car_serie": 64616, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254579, + "fields": { + "id_car_serie": 64616, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254580, + "fields": { + "id_car_serie": 64616, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254581, + "fields": { + "id_car_serie": 63312, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254582, + "fields": { + "id_car_serie": 63312, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254583, + "fields": { + "id_car_serie": 63312, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254584, + "fields": { + "id_car_serie": 63312, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254585, + "fields": { + "id_car_serie": 63313, + "name": "0.7 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254586, + "fields": { + "id_car_serie": 63313, + "name": "0.7 MT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254587, + "fields": { + "id_car_serie": 63313, + "name": "0.7 AT 4WD (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254588, + "fields": { + "id_car_serie": 63313, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254589, + "fields": { + "id_car_serie": 63313, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254590, + "fields": { + "id_car_serie": 63313, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254591, + "fields": { + "id_car_serie": 63314, + "name": "0.7 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254592, + "fields": { + "id_car_serie": 63314, + "name": "0.7 MT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254593, + "fields": { + "id_car_serie": 63314, + "name": "0.7 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254594, + "fields": { + "id_car_serie": 63314, + "name": "0.7 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254595, + "fields": { + "id_car_serie": 63314, + "name": "0.7 AT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254596, + "fields": { + "id_car_serie": 63314, + "name": "0.7 AT 4WD (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254597, + "fields": { + "id_car_serie": 63314, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254598, + "fields": { + "id_car_serie": 63314, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254599, + "fields": { + "id_car_serie": 63314, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254600, + "fields": { + "id_car_serie": 63315, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254601, + "fields": { + "id_car_serie": 63315, + "name": "1.8 CVT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254602, + "fields": { + "id_car_serie": 63315, + "name": "1.8 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254603, + "fields": { + "id_car_serie": 63315, + "name": "2.0 CVT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254604, + "fields": { + "id_car_serie": 63316, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254605, + "fields": { + "id_car_serie": 63316, + "name": "1.8 CVT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254606, + "fields": { + "id_car_serie": 63316, + "name": "1.8 CVT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254607, + "fields": { + "id_car_serie": 63316, + "name": "2.0 CVT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254608, + "fields": { + "id_car_serie": 63316, + "name": "2.0 CVT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254609, + "fields": { + "id_car_serie": 63317, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254610, + "fields": { + "id_car_serie": 63317, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254611, + "fields": { + "id_car_serie": 63317, + "name": "1.8 AT 4WD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254612, + "fields": { + "id_car_serie": 63317, + "name": "2.0 CVT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254613, + "fields": { + "id_car_serie": 63318, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254614, + "fields": { + "id_car_serie": 63318, + "name": "1.6 (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254615, + "fields": { + "id_car_serie": 63318, + "name": "1.6 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254616, + "fields": { + "id_car_serie": 63318, + "name": "2.0 (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254617, + "fields": { + "id_car_serie": 63318, + "name": "2.0 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254618, + "fields": { + "id_car_serie": 63318, + "name": "2.0 (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254619, + "fields": { + "id_car_serie": 63319, + "name": "1.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254620, + "fields": { + "id_car_serie": 63319, + "name": "1.1 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254621, + "fields": { + "id_car_serie": 63320, + "name": "0.8 MT (36 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254622, + "fields": { + "id_car_serie": 63320, + "name": "0.8 AT (36 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254623, + "fields": { + "id_car_serie": 63321, + "name": "0.7 MT (28 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254624, + "fields": { + "id_car_serie": 63321, + "name": "0.7 AT (28 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254625, + "fields": { + "id_car_serie": 64617, + "name": "1.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254626, + "fields": { + "id_car_serie": 64617, + "name": "1.3 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254627, + "fields": { + "id_car_serie": 64617, + "name": "1.5 CVT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254628, + "fields": { + "id_car_serie": 64617, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254629, + "fields": { + "id_car_serie": 64617, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254630, + "fields": { + "id_car_serie": 64617, + "name": "1.4 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254631, + "fields": { + "id_car_serie": 64618, + "name": "1.3 CVT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254632, + "fields": { + "id_car_serie": 64618, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254633, + "fields": { + "id_car_serie": 64618, + "name": "1.5 CVT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254634, + "fields": { + "id_car_serie": 64619, + "name": "1.0 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254635, + "fields": { + "id_car_serie": 64619, + "name": "1.0 CVT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254636, + "fields": { + "id_car_serie": 63322, + "name": "1.0 CVT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254637, + "fields": { + "id_car_serie": 63322, + "name": "1.0 CVT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254638, + "fields": { + "id_car_serie": 63322, + "name": "1.0 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254639, + "fields": { + "id_car_serie": 64620, + "name": "1.5 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254640, + "fields": { + "id_car_serie": 64620, + "name": "1.5 AT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254641, + "fields": { + "id_car_serie": 63323, + "name": "1.5 CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254642, + "fields": { + "id_car_serie": 63323, + "name": "1.5 CVT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254643, + "fields": { + "id_car_serie": 63323, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254648, + "fields": { + "id_car_serie": 64621, + "name": "4.3 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254649, + "fields": { + "id_car_serie": 63325, + "name": "1.3 CVT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254650, + "fields": { + "id_car_serie": 63325, + "name": "1.5 CVT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254651, + "fields": { + "id_car_serie": 63325, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254652, + "fields": { + "id_car_serie": 64622, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254653, + "fields": { + "id_car_serie": 64622, + "name": "1.3 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254654, + "fields": { + "id_car_serie": 64622, + "name": "1.3 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254655, + "fields": { + "id_car_serie": 64622, + "name": "1.3 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254656, + "fields": { + "id_car_serie": 64622, + "name": "1.3 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254657, + "fields": { + "id_car_serie": 64622, + "name": "1.3 MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254658, + "fields": { + "id_car_serie": 64622, + "name": "1.3 AT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254659, + "fields": { + "id_car_serie": 63326, + "name": "0.8 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254660, + "fields": { + "id_car_serie": 63327, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254661, + "fields": { + "id_car_serie": 63327, + "name": "1.6 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254662, + "fields": { + "id_car_serie": 63327, + "name": "1.6 (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254663, + "fields": { + "id_car_serie": 63328, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254664, + "fields": { + "id_car_serie": 63328, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254665, + "fields": { + "id_car_serie": 63328, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254666, + "fields": { + "id_car_serie": 63328, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254667, + "fields": { + "id_car_serie": 63328, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254668, + "fields": { + "id_car_serie": 63328, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254669, + "fields": { + "id_car_serie": 63328, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254670, + "fields": { + "id_car_serie": 63328, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254671, + "fields": { + "id_car_serie": 63328, + "name": "1.6 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254672, + "fields": { + "id_car_serie": 63329, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254673, + "fields": { + "id_car_serie": 63329, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254674, + "fields": { + "id_car_serie": 63329, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254675, + "fields": { + "id_car_serie": 63329, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254676, + "fields": { + "id_car_serie": 64623, + "name": "1.5 CVT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254677, + "fields": { + "id_car_serie": 64623, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254678, + "fields": { + "id_car_serie": 64624, + "name": "2.4 MT 4WD (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254679, + "fields": { + "id_car_serie": 64624, + "name": "2.4 AT 4WD (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254680, + "fields": { + "id_car_serie": 64624, + "name": "2.7 MT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254681, + "fields": { + "id_car_serie": 64624, + "name": "2.7 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254682, + "fields": { + "id_car_serie": 64624, + "name": "2.7 AT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254683, + "fields": { + "id_car_serie": 64624, + "name": "3.4 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254684, + "fields": { + "id_car_serie": 64624, + "name": "3.4 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254685, + "fields": { + "id_car_serie": 63330, + "name": "1.0 CVT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254686, + "fields": { + "id_car_serie": 63330, + "name": "1.0 CVT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254687, + "fields": { + "id_car_serie": 63330, + "name": "1.0 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254688, + "fields": { + "id_car_serie": 64625, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254689, + "fields": { + "id_car_serie": 64625, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254690, + "fields": { + "id_car_serie": 64625, + "name": "1.5 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254691, + "fields": { + "id_car_serie": 64625, + "name": "1.5 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254692, + "fields": { + "id_car_serie": 64625, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254693, + "fields": { + "id_car_serie": 64625, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254694, + "fields": { + "id_car_serie": 64625, + "name": "1.5 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254695, + "fields": { + "id_car_serie": 64625, + "name": "1.5 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254696, + "fields": { + "id_car_serie": 64626, + "name": "1.5 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254697, + "fields": { + "id_car_serie": 63331, + "name": "2.7 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254698, + "fields": { + "id_car_serie": 63331, + "name": "3.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254699, + "fields": { + "id_car_serie": 64627, + "name": "2.5 CVT 4WD (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254700, + "fields": { + "id_car_serie": 64628, + "name": "1.3 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254701, + "fields": { + "id_car_serie": 64628, + "name": "1.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254702, + "fields": { + "id_car_serie": 64628, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254703, + "fields": { + "id_car_serie": 64628, + "name": "1.4 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254704, + "fields": { + "id_car_serie": 64629, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254705, + "fields": { + "id_car_serie": 64629, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254706, + "fields": { + "id_car_serie": 64629, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254707, + "fields": { + "id_car_serie": 64629, + "name": "1.8 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254708, + "fields": { + "id_car_serie": 64629, + "name": "1.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254709, + "fields": { + "id_car_serie": 64630, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254710, + "fields": { + "id_car_serie": 64631, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254711, + "fields": { + "id_car_serie": 64631, + "name": "2.0 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254712, + "fields": { + "id_car_serie": 64631, + "name": "2.0 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254713, + "fields": { + "id_car_serie": 64631, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254714, + "fields": { + "id_car_serie": 64631, + "name": "2.0 MT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254715, + "fields": { + "id_car_serie": 64632, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254716, + "fields": { + "id_car_serie": 64632, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254717, + "fields": { + "id_car_serie": 64632, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254718, + "fields": { + "id_car_serie": 64632, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254719, + "fields": { + "id_car_serie": 64632, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254720, + "fields": { + "id_car_serie": 64632, + "name": "1.9 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254721, + "fields": { + "id_car_serie": 64632, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254722, + "fields": { + "id_car_serie": 64633, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254723, + "fields": { + "id_car_serie": 64633, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254724, + "fields": { + "id_car_serie": 64633, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254725, + "fields": { + "id_car_serie": 64633, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254726, + "fields": { + "id_car_serie": 64633, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254727, + "fields": { + "id_car_serie": 64633, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254728, + "fields": { + "id_car_serie": 64633, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254729, + "fields": { + "id_car_serie": 64633, + "name": "2.3 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254730, + "fields": { + "id_car_serie": 64633, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254731, + "fields": { + "id_car_serie": 64633, + "name": "2.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254732, + "fields": { + "id_car_serie": 64633, + "name": "1.9 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254733, + "fields": { + "id_car_serie": 64633, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254734, + "fields": { + "id_car_serie": 64633, + "name": "1.9 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254735, + "fields": { + "id_car_serie": 64634, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254736, + "fields": { + "id_car_serie": 64634, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254737, + "fields": { + "id_car_serie": 64634, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254738, + "fields": { + "id_car_serie": 64634, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254739, + "fields": { + "id_car_serie": 64634, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254740, + "fields": { + "id_car_serie": 64634, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254741, + "fields": { + "id_car_serie": 64634, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254742, + "fields": { + "id_car_serie": 64634, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254743, + "fields": { + "id_car_serie": 64634, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254744, + "fields": { + "id_car_serie": 64634, + "name": "2.3 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254745, + "fields": { + "id_car_serie": 64634, + "name": "3.2 MT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254746, + "fields": { + "id_car_serie": 64634, + "name": "1.9 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254747, + "fields": { + "id_car_serie": 64634, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254748, + "fields": { + "id_car_serie": 64634, + "name": "1.9 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254749, + "fields": { + "id_car_serie": 64634, + "name": "1.9 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254750, + "fields": { + "id_car_serie": 64634, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254751, + "fields": { + "id_car_serie": 64635, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254752, + "fields": { + "id_car_serie": 64635, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254753, + "fields": { + "id_car_serie": 64635, + "name": "1.9 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254754, + "fields": { + "id_car_serie": 64635, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254755, + "fields": { + "id_car_serie": 63332, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254756, + "fields": { + "id_car_serie": 63332, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254757, + "fields": { + "id_car_serie": 63332, + "name": "2.0 AMT 4WD (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254758, + "fields": { + "id_car_serie": 63332, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254759, + "fields": { + "id_car_serie": 64636, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254760, + "fields": { + "id_car_serie": 64636, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254761, + "fields": { + "id_car_serie": 64637, + "name": "1.0 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254762, + "fields": { + "id_car_serie": 64638, + "name": "1.0 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254763, + "fields": { + "id_car_serie": 64638, + "name": "1.0 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254764, + "fields": { + "id_car_serie": 64638, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254765, + "fields": { + "id_car_serie": 64638, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254766, + "fields": { + "id_car_serie": 64638, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254767, + "fields": { + "id_car_serie": 64638, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254768, + "fields": { + "id_car_serie": 64639, + "name": "2.0 AMT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254769, + "fields": { + "id_car_serie": 64639, + "name": "2.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254770, + "fields": { + "id_car_serie": 64639, + "name": "2.0 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254771, + "fields": { + "id_car_serie": 64639, + "name": "2.0 AMT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254772, + "fields": { + "id_car_serie": 64640, + "name": "2.0 AMT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254773, + "fields": { + "id_car_serie": 64640, + "name": "2.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254774, + "fields": { + "id_car_serie": 64640, + "name": "2.0 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254775, + "fields": { + "id_car_serie": 64640, + "name": "2.0 AMT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254776, + "fields": { + "id_car_serie": 64641, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254777, + "fields": { + "id_car_serie": 64641, + "name": "2.0 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254778, + "fields": { + "id_car_serie": 64641, + "name": "2.0 AMT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254779, + "fields": { + "id_car_serie": 64641, + "name": "2.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254780, + "fields": { + "id_car_serie": 64642, + "name": "2.0 AMT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254781, + "fields": { + "id_car_serie": 64643, + "name": "2.0 AMT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254782, + "fields": { + "id_car_serie": 64643, + "name": "2.0 MT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254783, + "fields": { + "id_car_serie": 64643, + "name": "2.0 AMT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254784, + "fields": { + "id_car_serie": 64644, + "name": "2.0 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254785, + "fields": { + "id_car_serie": 64644, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254786, + "fields": { + "id_car_serie": 64644, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254787, + "fields": { + "id_car_serie": 64644, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254788, + "fields": { + "id_car_serie": 63333, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254789, + "fields": { + "id_car_serie": 63333, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254790, + "fields": { + "id_car_serie": 63333, + "name": "2.0 AMT 4WD (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254791, + "fields": { + "id_car_serie": 63333, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254792, + "fields": { + "id_car_serie": 64645, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254793, + "fields": { + "id_car_serie": 64645, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254794, + "fields": { + "id_car_serie": 64645, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254795, + "fields": { + "id_car_serie": 64645, + "name": "1.4 AMT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254796, + "fields": { + "id_car_serie": 64646, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254797, + "fields": { + "id_car_serie": 64646, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254798, + "fields": { + "id_car_serie": 64646, + "name": "1.0 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254799, + "fields": { + "id_car_serie": 64646, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254800, + "fields": { + "id_car_serie": 64646, + "name": "1.0 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254801, + "fields": { + "id_car_serie": 64646, + "name": "1.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254802, + "fields": { + "id_car_serie": 64646, + "name": "1.0 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254803, + "fields": { + "id_car_serie": 64646, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254804, + "fields": { + "id_car_serie": 64646, + "name": "1.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254805, + "fields": { + "id_car_serie": 64646, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254806, + "fields": { + "id_car_serie": 64646, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254807, + "fields": { + "id_car_serie": 64646, + "name": "1.6 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254808, + "fields": { + "id_car_serie": 64647, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254809, + "fields": { + "id_car_serie": 64647, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254810, + "fields": { + "id_car_serie": 64647, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254811, + "fields": { + "id_car_serie": 64647, + "name": "1.0 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254812, + "fields": { + "id_car_serie": 64647, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254813, + "fields": { + "id_car_serie": 64647, + "name": "1.0 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254814, + "fields": { + "id_car_serie": 64647, + "name": "1.2 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254815, + "fields": { + "id_car_serie": 64647, + "name": "1.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254816, + "fields": { + "id_car_serie": 64647, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254817, + "fields": { + "id_car_serie": 64647, + "name": "1.2 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254818, + "fields": { + "id_car_serie": 64647, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254819, + "fields": { + "id_car_serie": 64647, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254820, + "fields": { + "id_car_serie": 64647, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254821, + "fields": { + "id_car_serie": 64647, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254822, + "fields": { + "id_car_serie": 64647, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254823, + "fields": { + "id_car_serie": 64647, + "name": "1.4 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254824, + "fields": { + "id_car_serie": 64648, + "name": "1.4 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254825, + "fields": { + "id_car_serie": 64648, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254826, + "fields": { + "id_car_serie": 64648, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254827, + "fields": { + "id_car_serie": 64648, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254828, + "fields": { + "id_car_serie": 64648, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254829, + "fields": { + "id_car_serie": 64648, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254830, + "fields": { + "id_car_serie": 64648, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254831, + "fields": { + "id_car_serie": 64648, + "name": "1.7 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254832, + "fields": { + "id_car_serie": 64648, + "name": "1.9 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254833, + "fields": { + "id_car_serie": 64648, + "name": "1.9 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254834, + "fields": { + "id_car_serie": 64648, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254835, + "fields": { + "id_car_serie": 64648, + "name": "1.9 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254836, + "fields": { + "id_car_serie": 64649, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254837, + "fields": { + "id_car_serie": 64649, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254838, + "fields": { + "id_car_serie": 64649, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254839, + "fields": { + "id_car_serie": 64649, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254840, + "fields": { + "id_car_serie": 64649, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254841, + "fields": { + "id_car_serie": 64649, + "name": "1.3 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254842, + "fields": { + "id_car_serie": 64649, + "name": "1.3 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254843, + "fields": { + "id_car_serie": 64649, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254844, + "fields": { + "id_car_serie": 64649, + "name": "1.3 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254845, + "fields": { + "id_car_serie": 64649, + "name": "1.4 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254850, + "fields": { + "id_car_serie": 63334, + "name": "1.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254851, + "fields": { + "id_car_serie": 63334, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254852, + "fields": { + "id_car_serie": 63334, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254853, + "fields": { + "id_car_serie": 63334, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254854, + "fields": { + "id_car_serie": 63334, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254855, + "fields": { + "id_car_serie": 63334, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254856, + "fields": { + "id_car_serie": 63334, + "name": "1.8 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254857, + "fields": { + "id_car_serie": 63334, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254858, + "fields": { + "id_car_serie": 63334, + "name": "1.6 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254859, + "fields": { + "id_car_serie": 63334, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254860, + "fields": { + "id_car_serie": 63334, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254861, + "fields": { + "id_car_serie": 63334, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254862, + "fields": { + "id_car_serie": 63334, + "name": "2.0 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254863, + "fields": { + "id_car_serie": 63334, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254864, + "fields": { + "id_car_serie": 63334, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254865, + "fields": { + "id_car_serie": 63334, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254866, + "fields": { + "id_car_serie": 63335, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254867, + "fields": { + "id_car_serie": 63335, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254868, + "fields": { + "id_car_serie": 63335, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254869, + "fields": { + "id_car_serie": 63335, + "name": "2.0 AMT 4WD (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254870, + "fields": { + "id_car_serie": 63335, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254871, + "fields": { + "id_car_serie": 64651, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254872, + "fields": { + "id_car_serie": 64651, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254873, + "fields": { + "id_car_serie": 64651, + "name": "2.0 AMT 4WD (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254874, + "fields": { + "id_car_serie": 64651, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254875, + "fields": { + "id_car_serie": 64652, + "name": "1.9 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254876, + "fields": { + "id_car_serie": 64652, + "name": "1.9 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254877, + "fields": { + "id_car_serie": 64652, + "name": "2.5 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254878, + "fields": { + "id_car_serie": 64652, + "name": "2.5 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254879, + "fields": { + "id_car_serie": 64652, + "name": "2.5 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254880, + "fields": { + "id_car_serie": 64652, + "name": "2.5 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254881, + "fields": { + "id_car_serie": 64652, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254882, + "fields": { + "id_car_serie": 64652, + "name": "3.2 MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254883, + "fields": { + "id_car_serie": 64652, + "name": "3.2 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254884, + "fields": { + "id_car_serie": 64652, + "name": "3.2 MT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254885, + "fields": { + "id_car_serie": 63336, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254886, + "fields": { + "id_car_serie": 63336, + "name": "2.0 (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254887, + "fields": { + "id_car_serie": 63336, + "name": "2.0 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254888, + "fields": { + "id_car_serie": 63337, + "name": "2.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254889, + "fields": { + "id_car_serie": 63337, + "name": "2.5 (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254890, + "fields": { + "id_car_serie": 63337, + "name": "2.8 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254891, + "fields": { + "id_car_serie": 63337, + "name": "2.8 (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254892, + "fields": { + "id_car_serie": 63338, + "name": "2.5 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254893, + "fields": { + "id_car_serie": 63338, + "name": "2.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254894, + "fields": { + "id_car_serie": 63338, + "name": "2.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254895, + "fields": { + "id_car_serie": 63339, + "name": "1.0 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254896, + "fields": { + "id_car_serie": 63339, + "name": "1.0 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254897, + "fields": { + "id_car_serie": 63339, + "name": "1.0 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254898, + "fields": { + "id_car_serie": 63339, + "name": "1.5 (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254899, + "fields": { + "id_car_serie": 63339, + "name": "1.5 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254900, + "fields": { + "id_car_serie": 63339, + "name": "1.6 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254901, + "fields": { + "id_car_serie": 63339, + "name": "2.0 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254902, + "fields": { + "id_car_serie": 63340, + "name": "1.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254903, + "fields": { + "id_car_serie": 63340, + "name": "1.0 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254904, + "fields": { + "id_car_serie": 63340, + "name": "1.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254905, + "fields": { + "id_car_serie": 63340, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254906, + "fields": { + "id_car_serie": 63340, + "name": "1.2 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254907, + "fields": { + "id_car_serie": 63340, + "name": "1.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254908, + "fields": { + "id_car_serie": 63340, + "name": "1.4 AMT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254909, + "fields": { + "id_car_serie": 63340, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254910, + "fields": { + "id_car_serie": 63340, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254911, + "fields": { + "id_car_serie": 63340, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254912, + "fields": { + "id_car_serie": 63340, + "name": "1.6 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254913, + "fields": { + "id_car_serie": 63340, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254914, + "fields": { + "id_car_serie": 63340, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254915, + "fields": { + "id_car_serie": 63341, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254916, + "fields": { + "id_car_serie": 63341, + "name": "1.6 (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254917, + "fields": { + "id_car_serie": 63341, + "name": "1.8 (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254918, + "fields": { + "id_car_serie": 63342, + "name": "1.5 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254919, + "fields": { + "id_car_serie": 63342, + "name": "1.6 MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254920, + "fields": { + "id_car_serie": 63343, + "name": "1.2 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254921, + "fields": { + "id_car_serie": 63343, + "name": "1.3 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254922, + "fields": { + "id_car_serie": 63343, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254923, + "fields": { + "id_car_serie": 63343, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254924, + "fields": { + "id_car_serie": 64654, + "name": "1.2 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254925, + "fields": { + "id_car_serie": 64654, + "name": "1.3 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254926, + "fields": { + "id_car_serie": 64654, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254927, + "fields": { + "id_car_serie": 64654, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254928, + "fields": { + "id_car_serie": 63344, + "name": "1.5 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254929, + "fields": { + "id_car_serie": 63344, + "name": "1.5 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254930, + "fields": { + "id_car_serie": 63344, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254931, + "fields": { + "id_car_serie": 63344, + "name": "1.6 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254932, + "fields": { + "id_car_serie": 64655, + "name": "1.5 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254933, + "fields": { + "id_car_serie": 64655, + "name": "1.5 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254934, + "fields": { + "id_car_serie": 64655, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254935, + "fields": { + "id_car_serie": 64655, + "name": "1.6 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254936, + "fields": { + "id_car_serie": 64656, + "name": "1.5 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254937, + "fields": { + "id_car_serie": 64656, + "name": "1.5 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254938, + "fields": { + "id_car_serie": 64656, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254939, + "fields": { + "id_car_serie": 64656, + "name": "1.6 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254940, + "fields": { + "id_car_serie": 64657, + "name": "1.5 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254941, + "fields": { + "id_car_serie": 64658, + "name": "1.5 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254942, + "fields": { + "id_car_serie": 64658, + "name": "1.5 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254943, + "fields": { + "id_car_serie": 64658, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254944, + "fields": { + "id_car_serie": 64658, + "name": "1.6 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254945, + "fields": { + "id_car_serie": 64660, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254946, + "fields": { + "id_car_serie": 64660, + "name": "1.0 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254947, + "fields": { + "id_car_serie": 64660, + "name": "1.0 (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254948, + "fields": { + "id_car_serie": 64660, + "name": "1.0 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254949, + "fields": { + "id_car_serie": 64660, + "name": "1.0 (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254950, + "fields": { + "id_car_serie": 64661, + "name": "2.0 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254951, + "fields": { + "id_car_serie": 64661, + "name": "2.0 (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254952, + "fields": { + "id_car_serie": 64661, + "name": "2.0 (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254953, + "fields": { + "id_car_serie": 64661, + "name": "2.0 (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254954, + "fields": { + "id_car_serie": 64662, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254955, + "fields": { + "id_car_serie": 64662, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254956, + "fields": { + "id_car_serie": 64662, + "name": "2.0 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254957, + "fields": { + "id_car_serie": 64662, + "name": "2.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254958, + "fields": { + "id_car_serie": 64662, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254959, + "fields": { + "id_car_serie": 64662, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254960, + "fields": { + "id_car_serie": 64663, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254961, + "fields": { + "id_car_serie": 64663, + "name": "2.0 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254962, + "fields": { + "id_car_serie": 64663, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254963, + "fields": { + "id_car_serie": 64663, + "name": "2.0 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254964, + "fields": { + "id_car_serie": 64663, + "name": "2.0 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254965, + "fields": { + "id_car_serie": 64663, + "name": "2.0 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254966, + "fields": { + "id_car_serie": 64663, + "name": "2.1 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254967, + "fields": { + "id_car_serie": 64663, + "name": "2.1 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254968, + "fields": { + "id_car_serie": 64663, + "name": "2.1 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254969, + "fields": { + "id_car_serie": 64663, + "name": "2.1 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254970, + "fields": { + "id_car_serie": 64663, + "name": "2.1 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254971, + "fields": { + "id_car_serie": 64663, + "name": "2.1 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254972, + "fields": { + "id_car_serie": 64663, + "name": "2.1 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254973, + "fields": { + "id_car_serie": 64663, + "name": "2.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254974, + "fields": { + "id_car_serie": 64663, + "name": "2.3 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254975, + "fields": { + "id_car_serie": 64663, + "name": "2.3 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254976, + "fields": { + "id_car_serie": 64663, + "name": "2.3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254977, + "fields": { + "id_car_serie": 64663, + "name": "2.3 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254978, + "fields": { + "id_car_serie": 64663, + "name": "2.3 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254979, + "fields": { + "id_car_serie": 64663, + "name": "2.3 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254980, + "fields": { + "id_car_serie": 64663, + "name": "2.3 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254981, + "fields": { + "id_car_serie": 64663, + "name": "2.3 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254982, + "fields": { + "id_car_serie": 64663, + "name": "2.3 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254983, + "fields": { + "id_car_serie": 64663, + "name": "2.7 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254984, + "fields": { + "id_car_serie": 64663, + "name": "2.7 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254985, + "fields": { + "id_car_serie": 64663, + "name": "2.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254986, + "fields": { + "id_car_serie": 64663, + "name": "2.4 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254987, + "fields": { + "id_car_serie": 64664, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254988, + "fields": { + "id_car_serie": 64664, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254989, + "fields": { + "id_car_serie": 64664, + "name": "2.0 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254990, + "fields": { + "id_car_serie": 64664, + "name": "2.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254991, + "fields": { + "id_car_serie": 64664, + "name": "2.1 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254992, + "fields": { + "id_car_serie": 64664, + "name": "2.1 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254993, + "fields": { + "id_car_serie": 64664, + "name": "2.1 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254994, + "fields": { + "id_car_serie": 64664, + "name": "2.1 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254995, + "fields": { + "id_car_serie": 64664, + "name": "2.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254996, + "fields": { + "id_car_serie": 64664, + "name": "2.3 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254997, + "fields": { + "id_car_serie": 64664, + "name": "2.3 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254998, + "fields": { + "id_car_serie": 64664, + "name": "2.3 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 254999, + "fields": { + "id_car_serie": 64664, + "name": "2.3 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255000, + "fields": { + "id_car_serie": 64664, + "name": "2.3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255001, + "fields": { + "id_car_serie": 64664, + "name": "2.3 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255002, + "fields": { + "id_car_serie": 64664, + "name": "2.3 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255003, + "fields": { + "id_car_serie": 64664, + "name": "2.3 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255004, + "fields": { + "id_car_serie": 64664, + "name": "2.3 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255005, + "fields": { + "id_car_serie": 64664, + "name": "2.3 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255006, + "fields": { + "id_car_serie": 64664, + "name": "2.7 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255007, + "fields": { + "id_car_serie": 64664, + "name": "2.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255008, + "fields": { + "id_car_serie": 64665, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255009, + "fields": { + "id_car_serie": 64665, + "name": "2.0 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255010, + "fields": { + "id_car_serie": 64665, + "name": "2.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255011, + "fields": { + "id_car_serie": 64665, + "name": "2.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255012, + "fields": { + "id_car_serie": 64665, + "name": "2.0 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255013, + "fields": { + "id_car_serie": 64665, + "name": "2.0 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255014, + "fields": { + "id_car_serie": 64665, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255015, + "fields": { + "id_car_serie": 64665, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255016, + "fields": { + "id_car_serie": 64665, + "name": "2.0 AT 4WD (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255017, + "fields": { + "id_car_serie": 64666, + "name": "2.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255018, + "fields": { + "id_car_serie": 64666, + "name": "2.0 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255019, + "fields": { + "id_car_serie": 64666, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255020, + "fields": { + "id_car_serie": 64666, + "name": "2.0 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255021, + "fields": { + "id_car_serie": 64666, + "name": "2.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255022, + "fields": { + "id_car_serie": 64667, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255023, + "fields": { + "id_car_serie": 64667, + "name": "2.0 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255024, + "fields": { + "id_car_serie": 64667, + "name": "2.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255025, + "fields": { + "id_car_serie": 64667, + "name": "2.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255026, + "fields": { + "id_car_serie": 64667, + "name": "2.0 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255027, + "fields": { + "id_car_serie": 64667, + "name": "2.0 AT 4WD (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255028, + "fields": { + "id_car_serie": 64667, + "name": "2.0 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255029, + "fields": { + "id_car_serie": 64668, + "name": "2.4 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255030, + "fields": { + "id_car_serie": 64668, + "name": "2.4 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255031, + "fields": { + "id_car_serie": 64668, + "name": "2.4 MT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255032, + "fields": { + "id_car_serie": 64668, + "name": "2.4 AT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255033, + "fields": { + "id_car_serie": 64668, + "name": "2.5 MT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255034, + "fields": { + "id_car_serie": 64668, + "name": "2.5 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255035, + "fields": { + "id_car_serie": 63346, + "name": "1.6 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255036, + "fields": { + "id_car_serie": 63346, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255037, + "fields": { + "id_car_serie": 64669, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255038, + "fields": { + "id_car_serie": 64669, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255039, + "fields": { + "id_car_serie": 64670, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255040, + "fields": { + "id_car_serie": 64670, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255041, + "fields": { + "id_car_serie": 64670, + "name": "1.8 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255042, + "fields": { + "id_car_serie": 64670, + "name": "2.0 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255043, + "fields": { + "id_car_serie": 64670, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255044, + "fields": { + "id_car_serie": 63345, + "name": "2.0 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255045, + "fields": { + "id_car_serie": 63345, + "name": "2.0 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255046, + "fields": { + "id_car_serie": 63347, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255047, + "fields": { + "id_car_serie": 63347, + "name": "2.0 (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255048, + "fields": { + "id_car_serie": 63348, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255049, + "fields": { + "id_car_serie": 63349, + "name": "0.6 AT (10 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255050, + "fields": { + "id_car_serie": 64671, + "name": "2.3 MT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255051, + "fields": { + "id_car_serie": 64671, + "name": "2.5 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255052, + "fields": { + "id_car_serie": 63350, + "name": "2.1 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255053, + "fields": { + "id_car_serie": 63350, + "name": "2.3 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255054, + "fields": { + "id_car_serie": 63350, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255055, + "fields": { + "id_car_serie": 63350, + "name": "2.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255056, + "fields": { + "id_car_serie": 63350, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255057, + "fields": { + "id_car_serie": 63351, + "name": "2.1 MT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255058, + "fields": { + "id_car_serie": 63352, + "name": "3.5 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255059, + "fields": { + "id_car_serie": 63353, + "name": "3.3 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255060, + "fields": { + "id_car_serie": 64672, + "name": "2.1 MT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255061, + "fields": { + "id_car_serie": 64673, + "name": "2.1 MT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255062, + "fields": { + "id_car_serie": 63354, + "name": "2.4 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255063, + "fields": { + "id_car_serie": 63354, + "name": "2.4 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255064, + "fields": { + "id_car_serie": 63354, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255065, + "fields": { + "id_car_serie": 64674, + "name": "3.3 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255066, + "fields": { + "id_car_serie": 63355, + "name": "2.1 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255067, + "fields": { + "id_car_serie": 64675, + "name": "2.1 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255068, + "fields": { + "id_car_serie": 64676, + "name": "2.7 MT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255069, + "fields": { + "id_car_serie": 4607, + "name": "2.5 MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255070, + "fields": { + "id_car_serie": 4607, + "name": "2.7 MT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255071, + "fields": { + "id_car_serie": 64677, + "name": "2.7 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255072, + "fields": { + "id_car_serie": 64677, + "name": "2.7 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255073, + "fields": { + "id_car_serie": 64677, + "name": "2.7 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255074, + "fields": { + "id_car_serie": 64678, + "name": "2.7 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255075, + "fields": { + "id_car_serie": 64678, + "name": "2.7 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255076, + "fields": { + "id_car_serie": 64678, + "name": "2.7 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255077, + "fields": { + "id_car_serie": 64679, + "name": "2.3 MT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255078, + "fields": { + "id_car_serie": 64679, + "name": "2.9 MT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255079, + "fields": { + "id_car_serie": 64680, + "name": "2.9 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255080, + "fields": { + "id_car_serie": 64680, + "name": "2.9 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255081, + "fields": { + "id_car_serie": 64680, + "name": "3.0 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255082, + "fields": { + "id_car_serie": 64680, + "name": "3.5 MT (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255083, + "fields": { + "id_car_serie": 64680, + "name": "4.6 MT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255084, + "fields": { + "id_car_serie": 64680, + "name": "4.9 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255085, + "fields": { + "id_car_serie": 63356, + "name": "4.9 MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255086, + "fields": { + "id_car_serie": 63356, + "name": "4.9 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255087, + "fields": { + "id_car_serie": 63356, + "name": "4.9 MT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255088, + "fields": { + "id_car_serie": 63356, + "name": "4.9 MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255089, + "fields": { + "id_car_serie": 63356, + "name": "4.9 MT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255090, + "fields": { + "id_car_serie": 63357, + "name": "2.4 AMT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255091, + "fields": { + "id_car_serie": 64681, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255092, + "fields": { + "id_car_serie": 64681, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255093, + "fields": { + "id_car_serie": 64681, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255094, + "fields": { + "id_car_serie": 64681, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255095, + "fields": { + "id_car_serie": 64682, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255096, + "fields": { + "id_car_serie": 64682, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255097, + "fields": { + "id_car_serie": 64682, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255098, + "fields": { + "id_car_serie": 64682, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255099, + "fields": { + "id_car_serie": 64683, + "name": "3.0 AMT 4WD (321 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255100, + "fields": { + "id_car_serie": 64683, + "name": "3.5 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255101, + "fields": { + "id_car_serie": 64683, + "name": "3.5 AT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255106, + "fields": { + "id_car_serie": 64685, + "name": "3.0 AT (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255107, + "fields": { + "id_car_serie": 64685, + "name": "3.0 MT (274 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255108, + "fields": { + "id_car_serie": 64685, + "name": "3.2 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255109, + "fields": { + "id_car_serie": 63358, + "name": "3.7 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255110, + "fields": { + "id_car_serie": 63359, + "name": "3.5 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255111, + "fields": { + "id_car_serie": 63359, + "name": "3.5 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255112, + "fields": { + "id_car_serie": 63360, + "name": "3.5 AT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255113, + "fields": { + "id_car_serie": 63360, + "name": "3.5 AMT 4WD (377 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255114, + "fields": { + "id_car_serie": 63361, + "name": "2.4 AMT (209 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255115, + "fields": { + "id_car_serie": 63361, + "name": "3.5 AT 4WD (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255116, + "fields": { + "id_car_serie": 63362, + "name": "2.9 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255117, + "fields": { + "id_car_serie": 63362, + "name": "2.9 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255118, + "fields": { + "id_car_serie": 64686, + "name": "1.0 MT (25 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255119, + "fields": { + "id_car_serie": 64687, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255120, + "fields": { + "id_car_serie": 64687, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255121, + "fields": { + "id_car_serie": 64687, + "name": "1.8 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255122, + "fields": { + "id_car_serie": 64687, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255123, + "fields": { + "id_car_serie": 64687, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255124, + "fields": { + "id_car_serie": 64687, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255125, + "fields": { + "id_car_serie": 64688, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255126, + "fields": { + "id_car_serie": 64688, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255127, + "fields": { + "id_car_serie": 64688, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255128, + "fields": { + "id_car_serie": 64688, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255129, + "fields": { + "id_car_serie": 64688, + "name": "1.7 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255130, + "fields": { + "id_car_serie": 64688, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255131, + "fields": { + "id_car_serie": 64688, + "name": "1.8 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255132, + "fields": { + "id_car_serie": 64688, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255133, + "fields": { + "id_car_serie": 64688, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255134, + "fields": { + "id_car_serie": 64688, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255135, + "fields": { + "id_car_serie": 64689, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255136, + "fields": { + "id_car_serie": 64689, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255137, + "fields": { + "id_car_serie": 64689, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255138, + "fields": { + "id_car_serie": 64689, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255139, + "fields": { + "id_car_serie": 64689, + "name": "1.7 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255140, + "fields": { + "id_car_serie": 64689, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255141, + "fields": { + "id_car_serie": 64689, + "name": "1.8 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255142, + "fields": { + "id_car_serie": 64689, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255143, + "fields": { + "id_car_serie": 64689, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255144, + "fields": { + "id_car_serie": 64689, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255145, + "fields": { + "id_car_serie": 64689, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255146, + "fields": { + "id_car_serie": 64690, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255147, + "fields": { + "id_car_serie": 64690, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255148, + "fields": { + "id_car_serie": 64690, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255149, + "fields": { + "id_car_serie": 64690, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255150, + "fields": { + "id_car_serie": 64690, + "name": "1.9 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255151, + "fields": { + "id_car_serie": 64690, + "name": "1.9 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255152, + "fields": { + "id_car_serie": 64690, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255153, + "fields": { + "id_car_serie": 64690, + "name": "1.9 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255154, + "fields": { + "id_car_serie": 64690, + "name": "1.9 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255155, + "fields": { + "id_car_serie": 64690, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255156, + "fields": { + "id_car_serie": 64690, + "name": "1.9 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255157, + "fields": { + "id_car_serie": 64691, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255158, + "fields": { + "id_car_serie": 64691, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255159, + "fields": { + "id_car_serie": 64691, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255160, + "fields": { + "id_car_serie": 64691, + "name": "3.2 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255161, + "fields": { + "id_car_serie": 64691, + "name": "1.9 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255162, + "fields": { + "id_car_serie": 64691, + "name": "1.9 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255163, + "fields": { + "id_car_serie": 64691, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255164, + "fields": { + "id_car_serie": 64691, + "name": "1.9 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255165, + "fields": { + "id_car_serie": 64691, + "name": "1.9 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255166, + "fields": { + "id_car_serie": 64691, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255167, + "fields": { + "id_car_serie": 64691, + "name": "1.9 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255168, + "fields": { + "id_car_serie": 63363, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255169, + "fields": { + "id_car_serie": 63363, + "name": "1.7 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255170, + "fields": { + "id_car_serie": 63363, + "name": "1.7 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255171, + "fields": { + "id_car_serie": 63363, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255172, + "fields": { + "id_car_serie": 63363, + "name": "1.8 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255173, + "fields": { + "id_car_serie": 63363, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255174, + "fields": { + "id_car_serie": 63363, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255175, + "fields": { + "id_car_serie": 63363, + "name": "2.0 MT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255176, + "fields": { + "id_car_serie": 63363, + "name": "2.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255177, + "fields": { + "id_car_serie": 63363, + "name": "2.5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255178, + "fields": { + "id_car_serie": 63363, + "name": "2.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255179, + "fields": { + "id_car_serie": 63363, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255180, + "fields": { + "id_car_serie": 63363, + "name": "2.5 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255181, + "fields": { + "id_car_serie": 63364, + "name": "1.7 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255182, + "fields": { + "id_car_serie": 63364, + "name": "1.7 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255183, + "fields": { + "id_car_serie": 63364, + "name": "1.8 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255184, + "fields": { + "id_car_serie": 63364, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255185, + "fields": { + "id_car_serie": 63364, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255186, + "fields": { + "id_car_serie": 63364, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255187, + "fields": { + "id_car_serie": 63364, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255188, + "fields": { + "id_car_serie": 63364, + "name": "2.0 MT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255189, + "fields": { + "id_car_serie": 63364, + "name": "2.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255190, + "fields": { + "id_car_serie": 63364, + "name": "2.5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255191, + "fields": { + "id_car_serie": 63364, + "name": "2.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255192, + "fields": { + "id_car_serie": 63364, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255193, + "fields": { + "id_car_serie": 63364, + "name": "2.5 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255194, + "fields": { + "id_car_serie": 63365, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255195, + "fields": { + "id_car_serie": 63365, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255196, + "fields": { + "id_car_serie": 63365, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255197, + "fields": { + "id_car_serie": 63365, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255198, + "fields": { + "id_car_serie": 63365, + "name": "2.0 AMT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255199, + "fields": { + "id_car_serie": 63365, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255200, + "fields": { + "id_car_serie": 63365, + "name": "2.5 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255201, + "fields": { + "id_car_serie": 63365, + "name": "2.5 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255202, + "fields": { + "id_car_serie": 63365, + "name": "3.2 AMT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255203, + "fields": { + "id_car_serie": 63365, + "name": "3.2 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255204, + "fields": { + "id_car_serie": 63365, + "name": "1.9 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255205, + "fields": { + "id_car_serie": 63365, + "name": "1.9 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255206, + "fields": { + "id_car_serie": 63365, + "name": "1.9 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255207, + "fields": { + "id_car_serie": 63365, + "name": "1.9 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255208, + "fields": { + "id_car_serie": 63365, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255209, + "fields": { + "id_car_serie": 63365, + "name": "2.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255210, + "fields": { + "id_car_serie": 63365, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255211, + "fields": { + "id_car_serie": 63365, + "name": "2.4 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255212, + "fields": { + "id_car_serie": 63365, + "name": "2.4 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255213, + "fields": { + "id_car_serie": 64692, + "name": "1.9 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255214, + "fields": { + "id_car_serie": 63366, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255215, + "fields": { + "id_car_serie": 63366, + "name": "2.5 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255216, + "fields": { + "id_car_serie": 63366, + "name": "2.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255217, + "fields": { + "id_car_serie": 63366, + "name": "2.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255218, + "fields": { + "id_car_serie": 64693, + "name": "4.7 AT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255219, + "fields": { + "id_car_serie": 64694, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255220, + "fields": { + "id_car_serie": 64694, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255221, + "fields": { + "id_car_serie": 64694, + "name": "1.4 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255222, + "fields": { + "id_car_serie": 64694, + "name": "1.7 AMT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255223, + "fields": { + "id_car_serie": 64694, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255224, + "fields": { + "id_car_serie": 64694, + "name": "1.6 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255225, + "fields": { + "id_car_serie": 64694, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255226, + "fields": { + "id_car_serie": 64694, + "name": "2.0 AMT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255227, + "fields": { + "id_car_serie": 64695, + "name": "0.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255228, + "fields": { + "id_car_serie": 64695, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255229, + "fields": { + "id_car_serie": 64695, + "name": "1.4 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255230, + "fields": { + "id_car_serie": 64695, + "name": "1.4 AMT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255231, + "fields": { + "id_car_serie": 64695, + "name": "1.4 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255232, + "fields": { + "id_car_serie": 64695, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255233, + "fields": { + "id_car_serie": 64695, + "name": "1.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255234, + "fields": { + "id_car_serie": 64695, + "name": "1.4 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255235, + "fields": { + "id_car_serie": 64695, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255236, + "fields": { + "id_car_serie": 64696, + "name": "2.2 AMT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255237, + "fields": { + "id_car_serie": 64696, + "name": "2.2 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255238, + "fields": { + "id_car_serie": 64696, + "name": "3.2 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255239, + "fields": { + "id_car_serie": 64696, + "name": "3.2 MT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255240, + "fields": { + "id_car_serie": 64696, + "name": "1.8 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255241, + "fields": { + "id_car_serie": 64696, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255242, + "fields": { + "id_car_serie": 64696, + "name": "2.4 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255243, + "fields": { + "id_car_serie": 64696, + "name": "2.4 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255244, + "fields": { + "id_car_serie": 64696, + "name": "2.4 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255245, + "fields": { + "id_car_serie": 64697, + "name": "1.8 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255246, + "fields": { + "id_car_serie": 64697, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255247, + "fields": { + "id_car_serie": 64697, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255248, + "fields": { + "id_car_serie": 64697, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255249, + "fields": { + "id_car_serie": 64697, + "name": "2.0 MT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255250, + "fields": { + "id_car_serie": 64697, + "name": "3.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255251, + "fields": { + "id_car_serie": 64697, + "name": "3.0 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255252, + "fields": { + "id_car_serie": 64697, + "name": "3.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255253, + "fields": { + "id_car_serie": 64697, + "name": "3.2 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255254, + "fields": { + "id_car_serie": 64698, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255255, + "fields": { + "id_car_serie": 64698, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255256, + "fields": { + "id_car_serie": 64698, + "name": "1.8 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255257, + "fields": { + "id_car_serie": 64698, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255258, + "fields": { + "id_car_serie": 64698, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255259, + "fields": { + "id_car_serie": 64698, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255260, + "fields": { + "id_car_serie": 64698, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255261, + "fields": { + "id_car_serie": 64698, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255262, + "fields": { + "id_car_serie": 64698, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255263, + "fields": { + "id_car_serie": 64699, + "name": "3.0 AT 4WD (462 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255264, + "fields": { + "id_car_serie": 64700, + "name": "3.0 AT 4WD (462 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255265, + "fields": { + "id_car_serie": 64701, + "name": "3.0 AT (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255266, + "fields": { + "id_car_serie": 64701, + "name": "3.0 AT 4WD (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255267, + "fields": { + "id_car_serie": 64702, + "name": "3.0 AT (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255268, + "fields": { + "id_car_serie": 64702, + "name": "3.0 AT 4WD (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255269, + "fields": { + "id_car_serie": 64703, + "name": "3.0 AT 4WD (410 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255270, + "fields": { + "id_car_serie": 64704, + "name": "3.0 AT (410 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255271, + "fields": { + "id_car_serie": 64704, + "name": "3.0 AT 4WD (410 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255272, + "fields": { + "id_car_serie": 64705, + "name": "3.3 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255273, + "fields": { + "id_car_serie": 64705, + "name": "3.3 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255274, + "fields": { + "id_car_serie": 64705, + "name": "3.4 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255275, + "fields": { + "id_car_serie": 64705, + "name": "3.4 MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255276, + "fields": { + "id_car_serie": 64706, + "name": "3.3 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255277, + "fields": { + "id_car_serie": 64706, + "name": "3.3 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255278, + "fields": { + "id_car_serie": 64706, + "name": "3.3 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255279, + "fields": { + "id_car_serie": 64706, + "name": "3.4 MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255280, + "fields": { + "id_car_serie": 64706, + "name": "3.4 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255281, + "fields": { + "id_car_serie": 64707, + "name": "3.0 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255282, + "fields": { + "id_car_serie": 64707, + "name": "3.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255283, + "fields": { + "id_car_serie": 64707, + "name": "3.2 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255284, + "fields": { + "id_car_serie": 64707, + "name": "3.2 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255285, + "fields": { + "id_car_serie": 63367, + "name": "3.0 AT (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255286, + "fields": { + "id_car_serie": 64708, + "name": "3.0 AT (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255287, + "fields": { + "id_car_serie": 64708, + "name": "3.0 AT 4WD (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255288, + "fields": { + "id_car_serie": 64709, + "name": "3.0 AT (410 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255289, + "fields": { + "id_car_serie": 63368, + "name": "4.4 AT 4WD (608 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255290, + "fields": { + "id_car_serie": 64710, + "name": "4.4 AT 4WD (608 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255291, + "fields": { + "id_car_serie": 64711, + "name": "4.4 AT (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255292, + "fields": { + "id_car_serie": 64711, + "name": "4.4 AT (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255293, + "fields": { + "id_car_serie": 64712, + "name": "4.4 AT (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255294, + "fields": { + "id_car_serie": 64712, + "name": "4.4 AT (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255295, + "fields": { + "id_car_serie": 64713, + "name": "4.4 AT (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255296, + "fields": { + "id_car_serie": 64714, + "name": "4.4 AT (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255297, + "fields": { + "id_car_serie": 64715, + "name": "4.4 AT (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255298, + "fields": { + "id_car_serie": 63369, + "name": "4.4 AT 4WD (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255299, + "fields": { + "id_car_serie": 64716, + "name": "4.4 AT (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255300, + "fields": { + "id_car_serie": 64717, + "name": "4.4 AT (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255301, + "fields": { + "id_car_serie": 64718, + "name": "4.4 AT (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255302, + "fields": { + "id_car_serie": 64719, + "name": "4.4 AT (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255303, + "fields": { + "id_car_serie": 64720, + "name": "4.4 AT 4WD (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255304, + "fields": { + "id_car_serie": 64721, + "name": "3.0 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255305, + "fields": { + "id_car_serie": 64721, + "name": "3.0 AT 4WD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255306, + "fields": { + "id_car_serie": 64722, + "name": "3.0 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255307, + "fields": { + "id_car_serie": 63370, + "name": "3.0 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255308, + "fields": { + "id_car_serie": 64723, + "name": "3.0 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255309, + "fields": { + "id_car_serie": 64724, + "name": "3.0 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255310, + "fields": { + "id_car_serie": 64725, + "name": "3.0 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255311, + "fields": { + "id_car_serie": 63371, + "name": "3.0 AT 4WD (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255312, + "fields": { + "id_car_serie": 64726, + "name": "3.0 AT 4WD (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255313, + "fields": { + "id_car_serie": 63372, + "name": "3.4 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255314, + "fields": { + "id_car_serie": 63373, + "name": "4.8 AT (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255315, + "fields": { + "id_car_serie": 63374, + "name": "2.7 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255316, + "fields": { + "id_car_serie": 64727, + "name": "3.0 AT 4WD (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255317, + "fields": { + "id_car_serie": 64728, + "name": "3.0 AT 4WD (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255318, + "fields": { + "id_car_serie": 63376, + "name": "2.5 MT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255319, + "fields": { + "id_car_serie": 63376, + "name": "2.5 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255320, + "fields": { + "id_car_serie": 63376, + "name": "2.5 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255321, + "fields": { + "id_car_serie": 63376, + "name": "4.2 AT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255322, + "fields": { + "id_car_serie": 63376, + "name": "4.2 MT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255323, + "fields": { + "id_car_serie": 63376, + "name": "4.2 MT 4WD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255324, + "fields": { + "id_car_serie": 63376, + "name": "4.2 AT 4WD (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255325, + "fields": { + "id_car_serie": 64729, + "name": "2.5 MT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255326, + "fields": { + "id_car_serie": 64729, + "name": "2.5 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255327, + "fields": { + "id_car_serie": 64729, + "name": "2.5 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255328, + "fields": { + "id_car_serie": 64729, + "name": "4.2 AT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255329, + "fields": { + "id_car_serie": 64729, + "name": "4.2 MT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255330, + "fields": { + "id_car_serie": 64729, + "name": "4.2 MT 4WD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255331, + "fields": { + "id_car_serie": 64729, + "name": "4.2 AT 4WD (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255332, + "fields": { + "id_car_serie": 64730, + "name": "5.9 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255333, + "fields": { + "id_car_serie": 64731, + "name": "1.7 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255334, + "fields": { + "id_car_serie": 64732, + "name": "2.1 MT 4WD (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255335, + "fields": { + "id_car_serie": 64732, + "name": "2.4 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255336, + "fields": { + "id_car_serie": 64732, + "name": "2.5 MT 4WD (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255337, + "fields": { + "id_car_serie": 64732, + "name": "2.5 MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255338, + "fields": { + "id_car_serie": 64732, + "name": "2.5 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255339, + "fields": { + "id_car_serie": 64732, + "name": "2.5 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255340, + "fields": { + "id_car_serie": 64732, + "name": "2.7 MT 4WD (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255341, + "fields": { + "id_car_serie": 64732, + "name": "2.7 MT 4WD (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255342, + "fields": { + "id_car_serie": 64732, + "name": "3.1 MT 4WD (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255343, + "fields": { + "id_car_serie": 64732, + "name": "3.1 MT 4WD (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255344, + "fields": { + "id_car_serie": 64732, + "name": "2.5 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255345, + "fields": { + "id_car_serie": 64732, + "name": "2.5 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255346, + "fields": { + "id_car_serie": 64732, + "name": "2.5 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255347, + "fields": { + "id_car_serie": 64732, + "name": "3.0 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255348, + "fields": { + "id_car_serie": 63377, + "name": "2.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255349, + "fields": { + "id_car_serie": 63378, + "name": "5.9 MT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255350, + "fields": { + "id_car_serie": 63379, + "name": "5.9 MT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255351, + "fields": { + "id_car_serie": 63379, + "name": "5.9 AT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255352, + "fields": { + "id_car_serie": 64733, + "name": "5.9 AT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255353, + "fields": { + "id_car_serie": 64733, + "name": "5.9 MT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255354, + "fields": { + "id_car_serie": 64733, + "name": "5.9 AT (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255355, + "fields": { + "id_car_serie": 64733, + "name": "5.9 MT (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255356, + "fields": { + "id_car_serie": 64734, + "name": "3.2 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255357, + "fields": { + "id_car_serie": 64734, + "name": "3.2 MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255358, + "fields": { + "id_car_serie": 64734, + "name": "5.9 AT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255359, + "fields": { + "id_car_serie": 64734, + "name": "5.9 MT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255365, + "fields": { + "id_car_serie": 63382, + "name": "4.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255366, + "fields": { + "id_car_serie": 64736, + "name": "5.9 AT (603 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255367, + "fields": { + "id_car_serie": 64736, + "name": "5.9 AT (588 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255368, + "fields": { + "id_car_serie": 64737, + "name": "5.3 MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255369, + "fields": { + "id_car_serie": 64737, + "name": "5.3 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255370, + "fields": { + "id_car_serie": 64737, + "name": "6.3 MT (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255371, + "fields": { + "id_car_serie": 64737, + "name": "6.3 AT (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255372, + "fields": { + "id_car_serie": 63762, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255373, + "fields": { + "id_car_serie": 63762, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255374, + "fields": { + "id_car_serie": 63762, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255375, + "fields": { + "id_car_serie": 63762, + "name": "2.1 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255376, + "fields": { + "id_car_serie": 63762, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255377, + "fields": { + "id_car_serie": 63762, + "name": "2.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255378, + "fields": { + "id_car_serie": 63763, + "name": "1.9 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255379, + "fields": { + "id_car_serie": 63763, + "name": "1.9 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255380, + "fields": { + "id_car_serie": 47568, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255381, + "fields": { + "id_car_serie": 47568, + "name": "1.7 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255382, + "fields": { + "id_car_serie": 47568, + "name": "1.7 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255383, + "fields": { + "id_car_serie": 47568, + "name": "1.7 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255384, + "fields": { + "id_car_serie": 47568, + "name": "1.7 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255385, + "fields": { + "id_car_serie": 47568, + "name": "1.9 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255386, + "fields": { + "id_car_serie": 63830, + "name": "2.2 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255387, + "fields": { + "id_car_serie": 63830, + "name": "2.2 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255388, + "fields": { + "id_car_serie": 63830, + "name": "2.2 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255389, + "fields": { + "id_car_serie": 63830, + "name": "2.2 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255390, + "fields": { + "id_car_serie": 63830, + "name": "2.2 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255391, + "fields": { + "id_car_serie": 63830, + "name": "2.2 MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255392, + "fields": { + "id_car_serie": 63830, + "name": "2.2 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255393, + "fields": { + "id_car_serie": 63831, + "name": "2.2 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255394, + "fields": { + "id_car_serie": 63831, + "name": "2.2 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255395, + "fields": { + "id_car_serie": 63831, + "name": "2.2 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255396, + "fields": { + "id_car_serie": 63831, + "name": "2.2 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255397, + "fields": { + "id_car_serie": 63831, + "name": "2.2 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255398, + "fields": { + "id_car_serie": 63831, + "name": "2.2 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255399, + "fields": { + "id_car_serie": 63831, + "name": "2.2 MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255400, + "fields": { + "id_car_serie": 63831, + "name": "2.2 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255401, + "fields": { + "id_car_serie": 63832, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255402, + "fields": { + "id_car_serie": 63832, + "name": "2.1 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255403, + "fields": { + "id_car_serie": 63832, + "name": "2.1 MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255404, + "fields": { + "id_car_serie": 63832, + "name": "2.1 MT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255405, + "fields": { + "id_car_serie": 63832, + "name": "2.1 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255406, + "fields": { + "id_car_serie": 63832, + "name": "2.1 AT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255407, + "fields": { + "id_car_serie": 63832, + "name": "2.2 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255408, + "fields": { + "id_car_serie": 63832, + "name": "2.2 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255409, + "fields": { + "id_car_serie": 63832, + "name": "2.2 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255410, + "fields": { + "id_car_serie": 63832, + "name": "2.2 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255411, + "fields": { + "id_car_serie": 63833, + "name": "2.1 AT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255412, + "fields": { + "id_car_serie": 63833, + "name": "2.1 MT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255413, + "fields": { + "id_car_serie": 63833, + "name": "2.2 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255414, + "fields": { + "id_car_serie": 63833, + "name": "2.2 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255415, + "fields": { + "id_car_serie": 63833, + "name": "2.2 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255416, + "fields": { + "id_car_serie": 63834, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255417, + "fields": { + "id_car_serie": 63834, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255418, + "fields": { + "id_car_serie": 63834, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255419, + "fields": { + "id_car_serie": 63834, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255420, + "fields": { + "id_car_serie": 63834, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255421, + "fields": { + "id_car_serie": 63834, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255422, + "fields": { + "id_car_serie": 63834, + "name": "2.0 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255423, + "fields": { + "id_car_serie": 63834, + "name": "2.0 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255424, + "fields": { + "id_car_serie": 63834, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255425, + "fields": { + "id_car_serie": 63834, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255426, + "fields": { + "id_car_serie": 63834, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255427, + "fields": { + "id_car_serie": 63834, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255428, + "fields": { + "id_car_serie": 63834, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255429, + "fields": { + "id_car_serie": 63834, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255430, + "fields": { + "id_car_serie": 63834, + "name": "2.3 MT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255431, + "fields": { + "id_car_serie": 63834, + "name": "2.3 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255432, + "fields": { + "id_car_serie": 63834, + "name": "2.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255433, + "fields": { + "id_car_serie": 63834, + "name": "2.6 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255434, + "fields": { + "id_car_serie": 63834, + "name": "2.8 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255435, + "fields": { + "id_car_serie": 63834, + "name": "2.8 MT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255436, + "fields": { + "id_car_serie": 63834, + "name": "1.9 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255437, + "fields": { + "id_car_serie": 63834, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255438, + "fields": { + "id_car_serie": 63834, + "name": "1.9 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255439, + "fields": { + "id_car_serie": 63835, + "name": "1.6 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255440, + "fields": { + "id_car_serie": 63835, + "name": "1.6 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255441, + "fields": { + "id_car_serie": 63835, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255442, + "fields": { + "id_car_serie": 63835, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255443, + "fields": { + "id_car_serie": 63835, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255444, + "fields": { + "id_car_serie": 63835, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255445, + "fields": { + "id_car_serie": 63835, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255446, + "fields": { + "id_car_serie": 63835, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255447, + "fields": { + "id_car_serie": 63835, + "name": "2.0 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255448, + "fields": { + "id_car_serie": 63835, + "name": "2.0 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255449, + "fields": { + "id_car_serie": 63835, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255450, + "fields": { + "id_car_serie": 63835, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255451, + "fields": { + "id_car_serie": 63835, + "name": "2.0 MT 4WD (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255452, + "fields": { + "id_car_serie": 63835, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255453, + "fields": { + "id_car_serie": 63835, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255454, + "fields": { + "id_car_serie": 63835, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255455, + "fields": { + "id_car_serie": 63835, + "name": "2.3 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255456, + "fields": { + "id_car_serie": 63835, + "name": "2.3 MT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255457, + "fields": { + "id_car_serie": 63835, + "name": "2.3 AT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255458, + "fields": { + "id_car_serie": 63835, + "name": "2.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255459, + "fields": { + "id_car_serie": 63835, + "name": "2.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255460, + "fields": { + "id_car_serie": 63835, + "name": "2.6 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255461, + "fields": { + "id_car_serie": 63835, + "name": "2.8 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255462, + "fields": { + "id_car_serie": 63835, + "name": "2.8 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255463, + "fields": { + "id_car_serie": 63835, + "name": "2.8 MT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255464, + "fields": { + "id_car_serie": 63835, + "name": "1.9 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255465, + "fields": { + "id_car_serie": 63835, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255466, + "fields": { + "id_car_serie": 63835, + "name": "1.9 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255467, + "fields": { + "id_car_serie": 62755, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255468, + "fields": { + "id_car_serie": 62755, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255469, + "fields": { + "id_car_serie": 62755, + "name": "1.6 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255470, + "fields": { + "id_car_serie": 62755, + "name": "1.6 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255471, + "fields": { + "id_car_serie": 62755, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255472, + "fields": { + "id_car_serie": 62755, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255473, + "fields": { + "id_car_serie": 62755, + "name": "1.6 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255474, + "fields": { + "id_car_serie": 62755, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255475, + "fields": { + "id_car_serie": 62755, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255476, + "fields": { + "id_car_serie": 62755, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255477, + "fields": { + "id_car_serie": 62755, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255478, + "fields": { + "id_car_serie": 62755, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255479, + "fields": { + "id_car_serie": 62755, + "name": "1.8 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255480, + "fields": { + "id_car_serie": 62755, + "name": "1.8 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255481, + "fields": { + "id_car_serie": 62755, + "name": "1.8 AT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255482, + "fields": { + "id_car_serie": 62755, + "name": "1.8 MT 4WD (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255483, + "fields": { + "id_car_serie": 62755, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255484, + "fields": { + "id_car_serie": 62755, + "name": "1.8 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255485, + "fields": { + "id_car_serie": 62755, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255486, + "fields": { + "id_car_serie": 62755, + "name": "1.8 MT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255487, + "fields": { + "id_car_serie": 62755, + "name": "1.9 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255488, + "fields": { + "id_car_serie": 62755, + "name": "1.9 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255489, + "fields": { + "id_car_serie": 62755, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255490, + "fields": { + "id_car_serie": 62755, + "name": "2.0 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255491, + "fields": { + "id_car_serie": 62755, + "name": "2.1 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255492, + "fields": { + "id_car_serie": 62755, + "name": "2.2 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255493, + "fields": { + "id_car_serie": 62755, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255494, + "fields": { + "id_car_serie": 62755, + "name": "1.6 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255495, + "fields": { + "id_car_serie": 63836, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255496, + "fields": { + "id_car_serie": 63836, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255497, + "fields": { + "id_car_serie": 63836, + "name": "1.6 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255498, + "fields": { + "id_car_serie": 63836, + "name": "1.6 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255499, + "fields": { + "id_car_serie": 63836, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255500, + "fields": { + "id_car_serie": 63836, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255501, + "fields": { + "id_car_serie": 63836, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255502, + "fields": { + "id_car_serie": 63836, + "name": "1.6 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255503, + "fields": { + "id_car_serie": 63836, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255504, + "fields": { + "id_car_serie": 63836, + "name": "1.7 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255505, + "fields": { + "id_car_serie": 63836, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255506, + "fields": { + "id_car_serie": 63836, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255507, + "fields": { + "id_car_serie": 63836, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255508, + "fields": { + "id_car_serie": 63836, + "name": "1.9 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255509, + "fields": { + "id_car_serie": 63836, + "name": "1.9 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255510, + "fields": { + "id_car_serie": 63836, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255511, + "fields": { + "id_car_serie": 63836, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255512, + "fields": { + "id_car_serie": 63836, + "name": "2.1 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255513, + "fields": { + "id_car_serie": 63836, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255514, + "fields": { + "id_car_serie": 63836, + "name": "1.6 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255515, + "fields": { + "id_car_serie": 62756, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255516, + "fields": { + "id_car_serie": 62756, + "name": "1.3 AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255517, + "fields": { + "id_car_serie": 62756, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255518, + "fields": { + "id_car_serie": 62756, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255519, + "fields": { + "id_car_serie": 62756, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255520, + "fields": { + "id_car_serie": 62756, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255521, + "fields": { + "id_car_serie": 62756, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255522, + "fields": { + "id_car_serie": 62756, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255523, + "fields": { + "id_car_serie": 62756, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255524, + "fields": { + "id_car_serie": 62756, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255525, + "fields": { + "id_car_serie": 62756, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255526, + "fields": { + "id_car_serie": 62756, + "name": "1.6 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255527, + "fields": { + "id_car_serie": 62756, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255528, + "fields": { + "id_car_serie": 62756, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255529, + "fields": { + "id_car_serie": 62756, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255530, + "fields": { + "id_car_serie": 63008, + "name": "2.8 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255531, + "fields": { + "id_car_serie": 63008, + "name": "2.8 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255532, + "fields": { + "id_car_serie": 63008, + "name": "2.8 MT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255533, + "fields": { + "id_car_serie": 63837, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255534, + "fields": { + "id_car_serie": 63837, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255535, + "fields": { + "id_car_serie": 63837, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255536, + "fields": { + "id_car_serie": 63837, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255537, + "fields": { + "id_car_serie": 63838, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255538, + "fields": { + "id_car_serie": 63838, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255539, + "fields": { + "id_car_serie": 63838, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255540, + "fields": { + "id_car_serie": 63839, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255541, + "fields": { + "id_car_serie": 63839, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255542, + "fields": { + "id_car_serie": 63839, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255543, + "fields": { + "id_car_serie": 63839, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255544, + "fields": { + "id_car_serie": 63839, + "name": "1.8 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255545, + "fields": { + "id_car_serie": 63839, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255546, + "fields": { + "id_car_serie": 63839, + "name": "1.8 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255547, + "fields": { + "id_car_serie": 63839, + "name": "1.8 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255548, + "fields": { + "id_car_serie": 63839, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255549, + "fields": { + "id_car_serie": 63839, + "name": "1.9 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255550, + "fields": { + "id_car_serie": 63839, + "name": "1.9 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255551, + "fields": { + "id_car_serie": 63839, + "name": "1.9 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255552, + "fields": { + "id_car_serie": 62721, + "name": "2.0 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255553, + "fields": { + "id_car_serie": 62721, + "name": "2.0 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255554, + "fields": { + "id_car_serie": 62721, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255555, + "fields": { + "id_car_serie": 62721, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255556, + "fields": { + "id_car_serie": 62721, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255557, + "fields": { + "id_car_serie": 62721, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255558, + "fields": { + "id_car_serie": 62721, + "name": "2.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255559, + "fields": { + "id_car_serie": 62721, + "name": "2.0 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255560, + "fields": { + "id_car_serie": 54010, + "name": "2.0 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255561, + "fields": { + "id_car_serie": 54010, + "name": "2.0 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255562, + "fields": { + "id_car_serie": 54010, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255563, + "fields": { + "id_car_serie": 54010, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255564, + "fields": { + "id_car_serie": 54010, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255565, + "fields": { + "id_car_serie": 54010, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255566, + "fields": { + "id_car_serie": 54010, + "name": "2.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255567, + "fields": { + "id_car_serie": 62722, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255568, + "fields": { + "id_car_serie": 62722, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255569, + "fields": { + "id_car_serie": 62722, + "name": "2.0 AMT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255570, + "fields": { + "id_car_serie": 62722, + "name": "2.0 AMT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255571, + "fields": { + "id_car_serie": 62722, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255572, + "fields": { + "id_car_serie": 62722, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255573, + "fields": { + "id_car_serie": 62722, + "name": "2.0 AMT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255574, + "fields": { + "id_car_serie": 62722, + "name": "2.0 MT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255575, + "fields": { + "id_car_serie": 62722, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255576, + "fields": { + "id_car_serie": 62722, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255577, + "fields": { + "id_car_serie": 62722, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255578, + "fields": { + "id_car_serie": 62722, + "name": "2.0 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255579, + "fields": { + "id_car_serie": 62722, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255580, + "fields": { + "id_car_serie": 62722, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255581, + "fields": { + "id_car_serie": 62722, + "name": "2.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255582, + "fields": { + "id_car_serie": 62722, + "name": "3.0 AMT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255583, + "fields": { + "id_car_serie": 62722, + "name": "3.0 AMT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255584, + "fields": { + "id_car_serie": 62722, + "name": "3.0 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255585, + "fields": { + "id_car_serie": 62722, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255586, + "fields": { + "id_car_serie": 62722, + "name": "2.0 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255587, + "fields": { + "id_car_serie": 63840, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255588, + "fields": { + "id_car_serie": 63840, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255589, + "fields": { + "id_car_serie": 63840, + "name": "2.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255590, + "fields": { + "id_car_serie": 53742, + "name": "2.0 AMT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255591, + "fields": { + "id_car_serie": 53742, + "name": "2.0 MT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255592, + "fields": { + "id_car_serie": 53742, + "name": "2.0 MT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255593, + "fields": { + "id_car_serie": 53742, + "name": "2.0 AMT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255594, + "fields": { + "id_car_serie": 53742, + "name": "2.0 AT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255595, + "fields": { + "id_car_serie": 53742, + "name": "2.0 AT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255596, + "fields": { + "id_car_serie": 53742, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255597, + "fields": { + "id_car_serie": 53742, + "name": "2.0 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255598, + "fields": { + "id_car_serie": 53742, + "name": "2.0 AMT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255599, + "fields": { + "id_car_serie": 53742, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255600, + "fields": { + "id_car_serie": 53742, + "name": "2.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255601, + "fields": { + "id_car_serie": 53742, + "name": "3.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255602, + "fields": { + "id_car_serie": 63009, + "name": "2.0 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255603, + "fields": { + "id_car_serie": 63009, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255604, + "fields": { + "id_car_serie": 63009, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255605, + "fields": { + "id_car_serie": 63009, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255606, + "fields": { + "id_car_serie": 63009, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255607, + "fields": { + "id_car_serie": 63841, + "name": "2.0 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255608, + "fields": { + "id_car_serie": 63841, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255609, + "fields": { + "id_car_serie": 63841, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255610, + "fields": { + "id_car_serie": 63842, + "name": "2.0 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255611, + "fields": { + "id_car_serie": 63842, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255612, + "fields": { + "id_car_serie": 63842, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255613, + "fields": { + "id_car_serie": 63842, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255614, + "fields": { + "id_car_serie": 63842, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255615, + "fields": { + "id_car_serie": 63842, + "name": "2.0 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255616, + "fields": { + "id_car_serie": 63843, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255617, + "fields": { + "id_car_serie": 63843, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255618, + "fields": { + "id_car_serie": 63843, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255619, + "fields": { + "id_car_serie": 63843, + "name": "3.0 AT 4WD (349 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255620, + "fields": { + "id_car_serie": 63843, + "name": "3.0 AMT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255621, + "fields": { + "id_car_serie": 63844, + "name": "3.0 AMT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255622, + "fields": { + "id_car_serie": 63844, + "name": "3.0 AMT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255623, + "fields": { + "id_car_serie": 63844, + "name": "3.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255624, + "fields": { + "id_car_serie": 63844, + "name": "3.0 AMT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255625, + "fields": { + "id_car_serie": 63844, + "name": "3.0 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255626, + "fields": { + "id_car_serie": 63845, + "name": "3.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255627, + "fields": { + "id_car_serie": 63845, + "name": "3.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255628, + "fields": { + "id_car_serie": 63845, + "name": "3.0 AT 4WD (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255629, + "fields": { + "id_car_serie": 63845, + "name": "3.0 AMT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255630, + "fields": { + "id_car_serie": 63846, + "name": "3.0 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255631, + "fields": { + "id_car_serie": 63846, + "name": "2.7 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255632, + "fields": { + "id_car_serie": 63846, + "name": "3.0 MT 4WD (239 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255633, + "fields": { + "id_car_serie": 63846, + "name": "3.0 AT 4WD (239 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255634, + "fields": { + "id_car_serie": 63846, + "name": "3.0 MT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255635, + "fields": { + "id_car_serie": 63846, + "name": "3.0 AT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255636, + "fields": { + "id_car_serie": 63846, + "name": "4.2 AT 4WD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255637, + "fields": { + "id_car_serie": 63847, + "name": "2.7 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255638, + "fields": { + "id_car_serie": 63847, + "name": "3.0 MT 4WD (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255639, + "fields": { + "id_car_serie": 63847, + "name": "3.0 AT 4WD (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255640, + "fields": { + "id_car_serie": 63847, + "name": "3.1 MT 4WD (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255641, + "fields": { + "id_car_serie": 63847, + "name": "3.1 AT 4WD (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255642, + "fields": { + "id_car_serie": 63847, + "name": "4.2 AT 4WD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255643, + "fields": { + "id_car_serie": 63848, + "name": "2.5 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255644, + "fields": { + "id_car_serie": 63848, + "name": "2.5 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255645, + "fields": { + "id_car_serie": 63848, + "name": "2.5 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255646, + "fields": { + "id_car_serie": 63848, + "name": "2.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255647, + "fields": { + "id_car_serie": 63848, + "name": "2.7 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255648, + "fields": { + "id_car_serie": 63848, + "name": "2.7 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255649, + "fields": { + "id_car_serie": 63848, + "name": "4.2 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255650, + "fields": { + "id_car_serie": 63848, + "name": "4.2 MT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255651, + "fields": { + "id_car_serie": 63010, + "name": "2.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255652, + "fields": { + "id_car_serie": 63010, + "name": "3.0 AMT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255653, + "fields": { + "id_car_serie": 63010, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255654, + "fields": { + "id_car_serie": 63010, + "name": "2.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255655, + "fields": { + "id_car_serie": 63010, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255656, + "fields": { + "id_car_serie": 63010, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255657, + "fields": { + "id_car_serie": 63010, + "name": "2.0 AMT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255658, + "fields": { + "id_car_serie": 63011, + "name": "3.0 AT 4WD (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255659, + "fields": { + "id_car_serie": 63011, + "name": "3.9 AT 4WD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255660, + "fields": { + "id_car_serie": 63011, + "name": "3.0 CVT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255661, + "fields": { + "id_car_serie": 63011, + "name": "3.7 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255662, + "fields": { + "id_car_serie": 63011, + "name": "4.2 AT 4WD (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255663, + "fields": { + "id_car_serie": 63011, + "name": "6.0 AT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255664, + "fields": { + "id_car_serie": 62726, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255665, + "fields": { + "id_car_serie": 62726, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255666, + "fields": { + "id_car_serie": 62726, + "name": "2.0 AMT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255667, + "fields": { + "id_car_serie": 62726, + "name": "2.0 AMT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255668, + "fields": { + "id_car_serie": 62726, + "name": "2.0 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255669, + "fields": { + "id_car_serie": 62726, + "name": "2.0 AMT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255670, + "fields": { + "id_car_serie": 62726, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255671, + "fields": { + "id_car_serie": 62726, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255672, + "fields": { + "id_car_serie": 62726, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255673, + "fields": { + "id_car_serie": 62726, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255674, + "fields": { + "id_car_serie": 62726, + "name": "2.0 MT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255675, + "fields": { + "id_car_serie": 62727, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255676, + "fields": { + "id_car_serie": 62727, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255677, + "fields": { + "id_car_serie": 62727, + "name": "2.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255678, + "fields": { + "id_car_serie": 62727, + "name": "2.0 AMT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255679, + "fields": { + "id_car_serie": 62727, + "name": "2.0 AMT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255680, + "fields": { + "id_car_serie": 62727, + "name": "2.0 AMT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255681, + "fields": { + "id_car_serie": 62727, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255682, + "fields": { + "id_car_serie": 62727, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255683, + "fields": { + "id_car_serie": 62727, + "name": "2.0 AMT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255684, + "fields": { + "id_car_serie": 62727, + "name": "2.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255685, + "fields": { + "id_car_serie": 62727, + "name": "2.0 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255686, + "fields": { + "id_car_serie": 63849, + "name": "2.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255687, + "fields": { + "id_car_serie": 54109, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255688, + "fields": { + "id_car_serie": 54109, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255689, + "fields": { + "id_car_serie": 54109, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255690, + "fields": { + "id_car_serie": 54109, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255691, + "fields": { + "id_car_serie": 53766, + "name": "5.2 AMT (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255692, + "fields": { + "id_car_serie": 53766, + "name": "5.2 AMT 4WD (570 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255693, + "fields": { + "id_car_serie": 53766, + "name": "5.2 AMT 4WD (620 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255694, + "fields": { + "id_car_serie": 53765, + "name": "5.2 AMT (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255695, + "fields": { + "id_car_serie": 53765, + "name": "5.2 AMT 4WD (570 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255696, + "fields": { + "id_car_serie": 53765, + "name": "5.2 AMT 4WD (620 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255697, + "fields": { + "id_car_serie": 63850, + "name": "4.2 AMT 4WD (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255698, + "fields": { + "id_car_serie": 63850, + "name": "4.2 MT 4WD (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255699, + "fields": { + "id_car_serie": 63850, + "name": "5.2 AMT 4WD (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255700, + "fields": { + "id_car_serie": 63850, + "name": "5.2 MT 4WD (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255701, + "fields": { + "id_car_serie": 63014, + "name": "2.9 AT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255702, + "fields": { + "id_car_serie": 63851, + "name": "2.9 AT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255703, + "fields": { + "id_car_serie": 63852, + "name": "4.2 AMT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255704, + "fields": { + "id_car_serie": 63853, + "name": "4.0 AT 4WD (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255705, + "fields": { + "id_car_serie": 63854, + "name": "4.2 AT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255706, + "fields": { + "id_car_serie": 53734, + "name": "3.0 AT 4WD (347 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255707, + "fields": { + "id_car_serie": 53736, + "name": "3.0 AMT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255708, + "fields": { + "id_car_serie": 53736, + "name": "3.0 MT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255709, + "fields": { + "id_car_serie": 63016, + "name": "3.0 AT 4WD (347 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255710, + "fields": { + "id_car_serie": 63855, + "name": "3.0 AT 4WD (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255711, + "fields": { + "id_car_serie": 63856, + "name": "3.0 AT 4WD (347 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255712, + "fields": { + "id_car_serie": 53990, + "name": "3.0 AT 4WD (349 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255713, + "fields": { + "id_car_serie": 53991, + "name": "3.0 AT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255714, + "fields": { + "id_car_serie": 53991, + "name": "3.0 AT 4WD (349 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255715, + "fields": { + "id_car_serie": 63017, + "name": "4.0 AT 4WD (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255716, + "fields": { + "id_car_serie": 62728, + "name": "2.0 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255717, + "fields": { + "id_car_serie": 62728, + "name": "2.0 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255718, + "fields": { + "id_car_serie": 62728, + "name": "2.0 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255719, + "fields": { + "id_car_serie": 62728, + "name": "2.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255720, + "fields": { + "id_car_serie": 62729, + "name": "2.0 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255721, + "fields": { + "id_car_serie": 62729, + "name": "2.0 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255722, + "fields": { + "id_car_serie": 62729, + "name": "2.0 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255723, + "fields": { + "id_car_serie": 62729, + "name": "2.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255724, + "fields": { + "id_car_serie": 62730, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255725, + "fields": { + "id_car_serie": 62730, + "name": "1.8 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255726, + "fields": { + "id_car_serie": 62730, + "name": "2.0 AMT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255727, + "fields": { + "id_car_serie": 62730, + "name": "2.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255728, + "fields": { + "id_car_serie": 62730, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255729, + "fields": { + "id_car_serie": 62731, + "name": "1.8 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255730, + "fields": { + "id_car_serie": 62731, + "name": "2.0 AMT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255731, + "fields": { + "id_car_serie": 62731, + "name": "2.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255732, + "fields": { + "id_car_serie": 62731, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255733, + "fields": { + "id_car_serie": 62731, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255734, + "fields": { + "id_car_serie": 62732, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255735, + "fields": { + "id_car_serie": 62732, + "name": "1.8 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255736, + "fields": { + "id_car_serie": 62732, + "name": "2.0 AMT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255737, + "fields": { + "id_car_serie": 62732, + "name": "2.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255738, + "fields": { + "id_car_serie": 62732, + "name": "2.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255739, + "fields": { + "id_car_serie": 62732, + "name": "2.0 AMT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255740, + "fields": { + "id_car_serie": 62733, + "name": "1.8 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255741, + "fields": { + "id_car_serie": 62733, + "name": "2.0 AMT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255742, + "fields": { + "id_car_serie": 62733, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255743, + "fields": { + "id_car_serie": 62733, + "name": "2.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255744, + "fields": { + "id_car_serie": 62733, + "name": "2.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255745, + "fields": { + "id_car_serie": 62733, + "name": "2.0 AMT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255746, + "fields": { + "id_car_serie": 62734, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255747, + "fields": { + "id_car_serie": 62734, + "name": "2.0 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255748, + "fields": { + "id_car_serie": 62734, + "name": "3.2 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255749, + "fields": { + "id_car_serie": 62734, + "name": "3.2 AMT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255750, + "fields": { + "id_car_serie": 62734, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255751, + "fields": { + "id_car_serie": 62734, + "name": "1.8 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255752, + "fields": { + "id_car_serie": 62734, + "name": "2.0 AMT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255753, + "fields": { + "id_car_serie": 62734, + "name": "2.0 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255754, + "fields": { + "id_car_serie": 62734, + "name": "2.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255755, + "fields": { + "id_car_serie": 62734, + "name": "2.0 AMT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255756, + "fields": { + "id_car_serie": 62734, + "name": "2.0 AMT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255757, + "fields": { + "id_car_serie": 62734, + "name": "2.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255758, + "fields": { + "id_car_serie": 62734, + "name": "2.0 AMT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255759, + "fields": { + "id_car_serie": 62735, + "name": "2.0 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255760, + "fields": { + "id_car_serie": 62735, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255761, + "fields": { + "id_car_serie": 62735, + "name": "3.2 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255762, + "fields": { + "id_car_serie": 62735, + "name": "3.2 AMT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255763, + "fields": { + "id_car_serie": 62735, + "name": "1.8 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255764, + "fields": { + "id_car_serie": 62735, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255765, + "fields": { + "id_car_serie": 62735, + "name": "2.0 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255766, + "fields": { + "id_car_serie": 62735, + "name": "2.0 AMT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255767, + "fields": { + "id_car_serie": 62735, + "name": "2.0 AMT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255768, + "fields": { + "id_car_serie": 62735, + "name": "2.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255769, + "fields": { + "id_car_serie": 62735, + "name": "2.0 AMT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255770, + "fields": { + "id_car_serie": 62735, + "name": "2.0 AMT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255771, + "fields": { + "id_car_serie": 62735, + "name": "2.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255772, + "fields": { + "id_car_serie": 62736, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255773, + "fields": { + "id_car_serie": 62736, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255774, + "fields": { + "id_car_serie": 62736, + "name": "1.8 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255775, + "fields": { + "id_car_serie": 62736, + "name": "1.8 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255776, + "fields": { + "id_car_serie": 62736, + "name": "1.8 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255777, + "fields": { + "id_car_serie": 62736, + "name": "1.8 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255778, + "fields": { + "id_car_serie": 62736, + "name": "1.8 MT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255779, + "fields": { + "id_car_serie": 62736, + "name": "1.8 AT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255780, + "fields": { + "id_car_serie": 62736, + "name": "1.8 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255781, + "fields": { + "id_car_serie": 62736, + "name": "3.2 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255782, + "fields": { + "id_car_serie": 62736, + "name": "3.2 AMT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255783, + "fields": { + "id_car_serie": 62737, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255784, + "fields": { + "id_car_serie": 62737, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255785, + "fields": { + "id_car_serie": 62737, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255786, + "fields": { + "id_car_serie": 62737, + "name": "1.8 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255787, + "fields": { + "id_car_serie": 62737, + "name": "1.8 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255788, + "fields": { + "id_car_serie": 62737, + "name": "1.8 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255789, + "fields": { + "id_car_serie": 62737, + "name": "1.8 MT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255790, + "fields": { + "id_car_serie": 62737, + "name": "1.8 AT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255791, + "fields": { + "id_car_serie": 63012, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255792, + "fields": { + "id_car_serie": 63012, + "name": "1.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255793, + "fields": { + "id_car_serie": 63012, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255794, + "fields": { + "id_car_serie": 63012, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255795, + "fields": { + "id_car_serie": 63012, + "name": "2.0 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255796, + "fields": { + "id_car_serie": 63012, + "name": "2.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255797, + "fields": { + "id_car_serie": 63012, + "name": "2.2 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255798, + "fields": { + "id_car_serie": 63012, + "name": "2.2 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255799, + "fields": { + "id_car_serie": 63012, + "name": "2.2 MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255800, + "fields": { + "id_car_serie": 63012, + "name": "2.2 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255801, + "fields": { + "id_car_serie": 63012, + "name": "2.3 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255802, + "fields": { + "id_car_serie": 63012, + "name": "2.3 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255803, + "fields": { + "id_car_serie": 63012, + "name": "2.3 MT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255804, + "fields": { + "id_car_serie": 63012, + "name": "2.3 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255805, + "fields": { + "id_car_serie": 63012, + "name": "2.3 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255806, + "fields": { + "id_car_serie": 63012, + "name": "2.3 MT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255807, + "fields": { + "id_car_serie": 63012, + "name": "2.3 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255808, + "fields": { + "id_car_serie": 63012, + "name": "2.3 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255809, + "fields": { + "id_car_serie": 63012, + "name": "2.3 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255810, + "fields": { + "id_car_serie": 63012, + "name": "2.3 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255811, + "fields": { + "id_car_serie": 63012, + "name": "2.4 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255812, + "fields": { + "id_car_serie": 63012, + "name": "2.4 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255813, + "fields": { + "id_car_serie": 63012, + "name": "2.4 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255814, + "fields": { + "id_car_serie": 63013, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255815, + "fields": { + "id_car_serie": 63013, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255816, + "fields": { + "id_car_serie": 63013, + "name": "1.8 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255817, + "fields": { + "id_car_serie": 63013, + "name": "1.8 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255818, + "fields": { + "id_car_serie": 63013, + "name": "1.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255819, + "fields": { + "id_car_serie": 63013, + "name": "1.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255820, + "fields": { + "id_car_serie": 63013, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255821, + "fields": { + "id_car_serie": 63013, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255822, + "fields": { + "id_car_serie": 63013, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255823, + "fields": { + "id_car_serie": 63013, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255824, + "fields": { + "id_car_serie": 63013, + "name": "2.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255825, + "fields": { + "id_car_serie": 63013, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255826, + "fields": { + "id_car_serie": 63013, + "name": "2.2 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255827, + "fields": { + "id_car_serie": 63013, + "name": "2.2 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255828, + "fields": { + "id_car_serie": 63013, + "name": "2.2 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255829, + "fields": { + "id_car_serie": 63013, + "name": "2.2 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255830, + "fields": { + "id_car_serie": 63013, + "name": "2.2 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255831, + "fields": { + "id_car_serie": 63013, + "name": "2.4 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255832, + "fields": { + "id_car_serie": 63013, + "name": "2.4 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255833, + "fields": { + "id_car_serie": 63013, + "name": "2.4 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255834, + "fields": { + "id_car_serie": 63013, + "name": "2.4 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255835, + "fields": { + "id_car_serie": 63724, + "name": "3.6 AMT (520 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255836, + "fields": { + "id_car_serie": 63857, + "name": "2.5 AMT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255837, + "fields": { + "id_car_serie": 63858, + "name": "2.5 AMT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255838, + "fields": { + "id_car_serie": 63859, + "name": "2.5 AMT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255839, + "fields": { + "id_car_serie": 63860, + "name": "2.5 AMT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255840, + "fields": { + "id_car_serie": 63861, + "name": "2.9 AT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255841, + "fields": { + "id_car_serie": 63015, + "name": "4.0 AT 4WD (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255842, + "fields": { + "id_car_serie": 63862, + "name": "4.0 AT 4WD (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255843, + "fields": { + "id_car_serie": 63863, + "name": "2.2 MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255844, + "fields": { + "id_car_serie": 63863, + "name": "2.2 MT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255845, + "fields": { + "id_car_serie": 63864, + "name": "2.0 MT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255846, + "fields": { + "id_car_serie": 63864, + "name": "2.0 AMT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255847, + "fields": { + "id_car_serie": 63865, + "name": "2.0 AMT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255848, + "fields": { + "id_car_serie": 63865, + "name": "2.0 MT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255849, + "fields": { + "id_car_serie": 63866, + "name": "2.0 AMT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255850, + "fields": { + "id_car_serie": 63867, + "name": "2.0 MT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255851, + "fields": { + "id_car_serie": 63867, + "name": "2.0 AMT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255852, + "fields": { + "id_car_serie": 53992, + "name": "3.0 AT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255853, + "fields": { + "id_car_serie": 53992, + "name": "3.0 (349 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255854, + "fields": { + "id_car_serie": 63725, + "name": "2.5 AMT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255855, + "fields": { + "id_car_serie": 63726, + "name": "2.0 AMT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255856, + "fields": { + "id_car_serie": 63383, + "name": "2.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255857, + "fields": { + "id_car_serie": 63383, + "name": "2.2 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255858, + "fields": { + "id_car_serie": 64738, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255859, + "fields": { + "id_car_serie": 64738, + "name": "1.0 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255860, + "fields": { + "id_car_serie": 64738, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255861, + "fields": { + "id_car_serie": 64739, + "name": "1.0 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255862, + "fields": { + "id_car_serie": 64739, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255863, + "fields": { + "id_car_serie": 64739, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255864, + "fields": { + "id_car_serie": 64739, + "name": "1.3 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255865, + "fields": { + "id_car_serie": 64739, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255866, + "fields": { + "id_car_serie": 63384, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255867, + "fields": { + "id_car_serie": 63385, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255868, + "fields": { + "id_car_serie": 63386, + "name": "1.0 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255869, + "fields": { + "id_car_serie": 63386, + "name": "1.1 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255870, + "fields": { + "id_car_serie": 63387, + "name": "1.0 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255871, + "fields": { + "id_car_serie": 64740, + "name": "2.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255872, + "fields": { + "id_car_serie": 64740, + "name": "2.6 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255873, + "fields": { + "id_car_serie": 64741, + "name": "2.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255874, + "fields": { + "id_car_serie": 64742, + "name": "2.9 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255875, + "fields": { + "id_car_serie": 51010, + "name": "2.9 MT (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255876, + "fields": { + "id_car_serie": 51011, + "name": "2.9 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255877, + "fields": { + "id_car_serie": 64743, + "name": "0.9 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255878, + "fields": { + "id_car_serie": 64743, + "name": "0.9 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255879, + "fields": { + "id_car_serie": 64743, + "name": "0.9 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255880, + "fields": { + "id_car_serie": 64743, + "name": "0.9 MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255881, + "fields": { + "id_car_serie": 64743, + "name": "1.0 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255882, + "fields": { + "id_car_serie": 64743, + "name": "1.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255883, + "fields": { + "id_car_serie": 64743, + "name": "1.1 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255884, + "fields": { + "id_car_serie": 63388, + "name": "2.5 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255885, + "fields": { + "id_car_serie": 63388, + "name": "2.5 MT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255886, + "fields": { + "id_car_serie": 64744, + "name": "2.5 MT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255887, + "fields": { + "id_car_serie": 64745, + "name": "2.4 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255888, + "fields": { + "id_car_serie": 64745, + "name": "2.7 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255889, + "fields": { + "id_car_serie": 64745, + "name": "3.0 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255890, + "fields": { + "id_car_serie": 64745, + "name": "3.4 AT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255891, + "fields": { + "id_car_serie": 64746, + "name": "0.2 AMT (13 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255892, + "fields": { + "id_car_serie": 63389, + "name": "7.5 AT (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255893, + "fields": { + "id_car_serie": 63390, + "name": "5.0 AT (502 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255894, + "fields": { + "id_car_serie": 63391, + "name": "6.8 AT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255895, + "fields": { + "id_car_serie": 63391, + "name": "6.8 AT (457 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255896, + "fields": { + "id_car_serie": 64747, + "name": "4.0 AT 4WD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255897, + "fields": { + "id_car_serie": 64748, + "name": "6.8 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255898, + "fields": { + "id_car_serie": 63392, + "name": "6.2 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255899, + "fields": { + "id_car_serie": 64749, + "name": "6.2 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255900, + "fields": { + "id_car_serie": 64750, + "name": "6.2 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255901, + "fields": { + "id_car_serie": 64751, + "name": "6.2 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255902, + "fields": { + "id_car_serie": 64752, + "name": "6.2 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255903, + "fields": { + "id_car_serie": 64753, + "name": "4.9 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255904, + "fields": { + "id_car_serie": 64754, + "name": "4.9 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255905, + "fields": { + "id_car_serie": 63393, + "name": "3.0 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255906, + "fields": { + "id_car_serie": 64756, + "name": "5.4 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255907, + "fields": { + "id_car_serie": 63868, + "name": "1.5 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255908, + "fields": { + "id_car_serie": 63868, + "name": "2.0 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255909, + "fields": { + "id_car_serie": 63868, + "name": "2.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255910, + "fields": { + "id_car_serie": 63869, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255911, + "fields": { + "id_car_serie": 63869, + "name": "1.5 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255912, + "fields": { + "id_car_serie": 63869, + "name": "3.0 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255913, + "fields": { + "id_car_serie": 63869, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255914, + "fields": { + "id_car_serie": 63869, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255915, + "fields": { + "id_car_serie": 63869, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255916, + "fields": { + "id_car_serie": 63869, + "name": "1.6 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255917, + "fields": { + "id_car_serie": 63869, + "name": "1.6 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255918, + "fields": { + "id_car_serie": 63869, + "name": "1.6 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255919, + "fields": { + "id_car_serie": 63869, + "name": "2.0 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255920, + "fields": { + "id_car_serie": 63869, + "name": "2.0 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255921, + "fields": { + "id_car_serie": 63869, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255922, + "fields": { + "id_car_serie": 63869, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255923, + "fields": { + "id_car_serie": 63869, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255924, + "fields": { + "id_car_serie": 63869, + "name": "3.0 AT 4WD (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255925, + "fields": { + "id_car_serie": 63869, + "name": "3.0 MT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255926, + "fields": { + "id_car_serie": 63869, + "name": "3.0 MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255927, + "fields": { + "id_car_serie": 63869, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255928, + "fields": { + "id_car_serie": 63869, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255929, + "fields": { + "id_car_serie": 63869, + "name": "1.5 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255930, + "fields": { + "id_car_serie": 63869, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255931, + "fields": { + "id_car_serie": 63869, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255932, + "fields": { + "id_car_serie": 63869, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255933, + "fields": { + "id_car_serie": 63869, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255934, + "fields": { + "id_car_serie": 63869, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255935, + "fields": { + "id_car_serie": 63870, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255936, + "fields": { + "id_car_serie": 63870, + "name": "1.5 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255937, + "fields": { + "id_car_serie": 63870, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255938, + "fields": { + "id_car_serie": 63870, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255939, + "fields": { + "id_car_serie": 63870, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255940, + "fields": { + "id_car_serie": 63870, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255941, + "fields": { + "id_car_serie": 63870, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255942, + "fields": { + "id_car_serie": 63870, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255943, + "fields": { + "id_car_serie": 63870, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255944, + "fields": { + "id_car_serie": 63870, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255945, + "fields": { + "id_car_serie": 63870, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255946, + "fields": { + "id_car_serie": 63870, + "name": "1.5 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255947, + "fields": { + "id_car_serie": 63870, + "name": "1.6 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255948, + "fields": { + "id_car_serie": 63870, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255949, + "fields": { + "id_car_serie": 63870, + "name": "1.6 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255950, + "fields": { + "id_car_serie": 63870, + "name": "1.6 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255951, + "fields": { + "id_car_serie": 63870, + "name": "2.0 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255952, + "fields": { + "id_car_serie": 63870, + "name": "2.0 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255953, + "fields": { + "id_car_serie": 63870, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255954, + "fields": { + "id_car_serie": 63870, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255955, + "fields": { + "id_car_serie": 63870, + "name": "3.0 MT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255956, + "fields": { + "id_car_serie": 63870, + "name": "3.0 AT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255957, + "fields": { + "id_car_serie": 63870, + "name": "3.0 AT 4WD (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255958, + "fields": { + "id_car_serie": 63870, + "name": "3.0 MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255959, + "fields": { + "id_car_serie": 63870, + "name": "3.0 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255960, + "fields": { + "id_car_serie": 63870, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255961, + "fields": { + "id_car_serie": 63871, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255962, + "fields": { + "id_car_serie": 63871, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255963, + "fields": { + "id_car_serie": 63871, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255964, + "fields": { + "id_car_serie": 63871, + "name": "2.0 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255965, + "fields": { + "id_car_serie": 63871, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255966, + "fields": { + "id_car_serie": 63871, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255967, + "fields": { + "id_car_serie": 63871, + "name": "3.0 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255968, + "fields": { + "id_car_serie": 63871, + "name": "3.0 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255969, + "fields": { + "id_car_serie": 63871, + "name": "2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255970, + "fields": { + "id_car_serie": 63871, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255971, + "fields": { + "id_car_serie": 63871, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255972, + "fields": { + "id_car_serie": 63871, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255973, + "fields": { + "id_car_serie": 63727, + "name": "1.5 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255974, + "fields": { + "id_car_serie": 63727, + "name": "2.0 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255975, + "fields": { + "id_car_serie": 63727, + "name": "1.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255976, + "fields": { + "id_car_serie": 63727, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255977, + "fields": { + "id_car_serie": 63018, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255978, + "fields": { + "id_car_serie": 63018, + "name": "1.5 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255979, + "fields": { + "id_car_serie": 63018, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255980, + "fields": { + "id_car_serie": 63018, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255981, + "fields": { + "id_car_serie": 63018, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255982, + "fields": { + "id_car_serie": 63018, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255983, + "fields": { + "id_car_serie": 63018, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255984, + "fields": { + "id_car_serie": 63018, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255985, + "fields": { + "id_car_serie": 63018, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255986, + "fields": { + "id_car_serie": 63018, + "name": "1.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255987, + "fields": { + "id_car_serie": 63018, + "name": "1.5 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255988, + "fields": { + "id_car_serie": 63018, + "name": "2.0 AMT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255989, + "fields": { + "id_car_serie": 63872, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255990, + "fields": { + "id_car_serie": 63872, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255991, + "fields": { + "id_car_serie": 63872, + "name": "1.5 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255992, + "fields": { + "id_car_serie": 63872, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255993, + "fields": { + "id_car_serie": 63872, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255994, + "fields": { + "id_car_serie": 63872, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255995, + "fields": { + "id_car_serie": 63872, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255996, + "fields": { + "id_car_serie": 63872, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255997, + "fields": { + "id_car_serie": 63872, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255998, + "fields": { + "id_car_serie": 63872, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 255999, + "fields": { + "id_car_serie": 63872, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256000, + "fields": { + "id_car_serie": 63872, + "name": "1.5 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256001, + "fields": { + "id_car_serie": 63872, + "name": "2.0 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256002, + "fields": { + "id_car_serie": 63872, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256003, + "fields": { + "id_car_serie": 63873, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256004, + "fields": { + "id_car_serie": 63873, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256005, + "fields": { + "id_car_serie": 63873, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256006, + "fields": { + "id_car_serie": 63873, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256007, + "fields": { + "id_car_serie": 63873, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256008, + "fields": { + "id_car_serie": 63873, + "name": "3.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256009, + "fields": { + "id_car_serie": 63873, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256010, + "fields": { + "id_car_serie": 63873, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256011, + "fields": { + "id_car_serie": 63873, + "name": "2.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256012, + "fields": { + "id_car_serie": 63873, + "name": "2.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256013, + "fields": { + "id_car_serie": 63873, + "name": "3.0 AT 4WD (374 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256014, + "fields": { + "id_car_serie": 63874, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256015, + "fields": { + "id_car_serie": 63874, + "name": "1.5 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256016, + "fields": { + "id_car_serie": 63874, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256017, + "fields": { + "id_car_serie": 63874, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256018, + "fields": { + "id_car_serie": 63874, + "name": "2.0 MT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256019, + "fields": { + "id_car_serie": 63874, + "name": "2.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256020, + "fields": { + "id_car_serie": 63874, + "name": "2.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256021, + "fields": { + "id_car_serie": 63874, + "name": "3.0 AT 4WD (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256022, + "fields": { + "id_car_serie": 63874, + "name": "2.0 MT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256023, + "fields": { + "id_car_serie": 63874, + "name": "2.0 MT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256024, + "fields": { + "id_car_serie": 63874, + "name": "2.0 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256025, + "fields": { + "id_car_serie": 63874, + "name": "2.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256026, + "fields": { + "id_car_serie": 63874, + "name": "3.0 MT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256027, + "fields": { + "id_car_serie": 63874, + "name": "3.0 MT 4WD (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256028, + "fields": { + "id_car_serie": 63874, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256029, + "fields": { + "id_car_serie": 63874, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256030, + "fields": { + "id_car_serie": 63874, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256031, + "fields": { + "id_car_serie": 63874, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256032, + "fields": { + "id_car_serie": 63874, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256033, + "fields": { + "id_car_serie": 63874, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256034, + "fields": { + "id_car_serie": 63874, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256035, + "fields": { + "id_car_serie": 63874, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256036, + "fields": { + "id_car_serie": 63874, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256037, + "fields": { + "id_car_serie": 63874, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256038, + "fields": { + "id_car_serie": 63874, + "name": "2.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256039, + "fields": { + "id_car_serie": 63874, + "name": "2.0 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256040, + "fields": { + "id_car_serie": 63874, + "name": "2.0 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256041, + "fields": { + "id_car_serie": 63874, + "name": "2.0 MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256042, + "fields": { + "id_car_serie": 63874, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256043, + "fields": { + "id_car_serie": 63874, + "name": "3.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256044, + "fields": { + "id_car_serie": 63874, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256045, + "fields": { + "id_car_serie": 63874, + "name": "3.0 AT 4WD (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256046, + "fields": { + "id_car_serie": 63875, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256047, + "fields": { + "id_car_serie": 63875, + "name": "1.5 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256048, + "fields": { + "id_car_serie": 63875, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256049, + "fields": { + "id_car_serie": 63875, + "name": "2.0 MT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256050, + "fields": { + "id_car_serie": 63875, + "name": "2.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256051, + "fields": { + "id_car_serie": 63875, + "name": "2.0 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256052, + "fields": { + "id_car_serie": 63875, + "name": "2.0 MT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256053, + "fields": { + "id_car_serie": 63875, + "name": "2.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256054, + "fields": { + "id_car_serie": 63875, + "name": "3.0 AT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256055, + "fields": { + "id_car_serie": 63875, + "name": "3.0 AT 4WD (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256056, + "fields": { + "id_car_serie": 63875, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256057, + "fields": { + "id_car_serie": 63875, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256058, + "fields": { + "id_car_serie": 63875, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256059, + "fields": { + "id_car_serie": 63875, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256060, + "fields": { + "id_car_serie": 63875, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256061, + "fields": { + "id_car_serie": 63875, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256062, + "fields": { + "id_car_serie": 63875, + "name": "2.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256063, + "fields": { + "id_car_serie": 63875, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256064, + "fields": { + "id_car_serie": 63875, + "name": "2.0 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256065, + "fields": { + "id_car_serie": 63875, + "name": "2.0 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256066, + "fields": { + "id_car_serie": 63875, + "name": "2.0 MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256067, + "fields": { + "id_car_serie": 63875, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256068, + "fields": { + "id_car_serie": 63875, + "name": "3.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256069, + "fields": { + "id_car_serie": 63875, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256070, + "fields": { + "id_car_serie": 63875, + "name": "3.0 AT 4WD (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256071, + "fields": { + "id_car_serie": 63876, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256072, + "fields": { + "id_car_serie": 63876, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256073, + "fields": { + "id_car_serie": 63876, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256074, + "fields": { + "id_car_serie": 63876, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256075, + "fields": { + "id_car_serie": 63876, + "name": "2.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256076, + "fields": { + "id_car_serie": 63876, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256077, + "fields": { + "id_car_serie": 63876, + "name": "3.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256078, + "fields": { + "id_car_serie": 63876, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256079, + "fields": { + "id_car_serie": 63876, + "name": "3.0 AT 4WD (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256080, + "fields": { + "id_car_serie": 63876, + "name": "2.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256081, + "fields": { + "id_car_serie": 63876, + "name": "2.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256082, + "fields": { + "id_car_serie": 63876, + "name": "3.0 AT 4WD (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256083, + "fields": { + "id_car_serie": 63876, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256084, + "fields": { + "id_car_serie": 63876, + "name": "2.0 MT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256085, + "fields": { + "id_car_serie": 63876, + "name": "2.0 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256086, + "fields": { + "id_car_serie": 63876, + "name": "2.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256087, + "fields": { + "id_car_serie": 63877, + "name": "2.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256088, + "fields": { + "id_car_serie": 63877, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256089, + "fields": { + "id_car_serie": 63877, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256090, + "fields": { + "id_car_serie": 63877, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256091, + "fields": { + "id_car_serie": 63877, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256092, + "fields": { + "id_car_serie": 63877, + "name": "2.0 MT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256093, + "fields": { + "id_car_serie": 63877, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256094, + "fields": { + "id_car_serie": 63877, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256095, + "fields": { + "id_car_serie": 63877, + "name": "2.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256096, + "fields": { + "id_car_serie": 63877, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256097, + "fields": { + "id_car_serie": 63877, + "name": "2.0 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256098, + "fields": { + "id_car_serie": 63877, + "name": "2.0 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256099, + "fields": { + "id_car_serie": 63877, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256100, + "fields": { + "id_car_serie": 63877, + "name": "3.0 AT 4WD (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256101, + "fields": { + "id_car_serie": 63877, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256102, + "fields": { + "id_car_serie": 63877, + "name": "3.0 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256103, + "fields": { + "id_car_serie": 63877, + "name": "2.0 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256104, + "fields": { + "id_car_serie": 63877, + "name": "3.0 MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256105, + "fields": { + "id_car_serie": 63878, + "name": "1.6 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256106, + "fields": { + "id_car_serie": 63878, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256107, + "fields": { + "id_car_serie": 63878, + "name": "2.0 MT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256108, + "fields": { + "id_car_serie": 63878, + "name": "2.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256109, + "fields": { + "id_car_serie": 63878, + "name": "2.0 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256110, + "fields": { + "id_car_serie": 63878, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256111, + "fields": { + "id_car_serie": 63878, + "name": "2.0 MT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256112, + "fields": { + "id_car_serie": 63878, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256113, + "fields": { + "id_car_serie": 63878, + "name": "3.0 MT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256114, + "fields": { + "id_car_serie": 63878, + "name": "3.0 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256115, + "fields": { + "id_car_serie": 63878, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256116, + "fields": { + "id_car_serie": 63878, + "name": "1.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256117, + "fields": { + "id_car_serie": 63878, + "name": "1.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256118, + "fields": { + "id_car_serie": 63878, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256119, + "fields": { + "id_car_serie": 63878, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256120, + "fields": { + "id_car_serie": 63878, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256121, + "fields": { + "id_car_serie": 63878, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256122, + "fields": { + "id_car_serie": 63878, + "name": "2.0 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256123, + "fields": { + "id_car_serie": 63878, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256124, + "fields": { + "id_car_serie": 63878, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256125, + "fields": { + "id_car_serie": 63878, + "name": "2.0 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256126, + "fields": { + "id_car_serie": 63878, + "name": "2.0 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256127, + "fields": { + "id_car_serie": 63878, + "name": "3.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256128, + "fields": { + "id_car_serie": 63878, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256129, + "fields": { + "id_car_serie": 63878, + "name": "3.0 AT 4WD (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256130, + "fields": { + "id_car_serie": 63878, + "name": "3.0 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256131, + "fields": { + "id_car_serie": 63879, + "name": "2.0 MT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256132, + "fields": { + "id_car_serie": 63879, + "name": "2.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256133, + "fields": { + "id_car_serie": 63879, + "name": "2.0 MT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256134, + "fields": { + "id_car_serie": 63879, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256135, + "fields": { + "id_car_serie": 63879, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256136, + "fields": { + "id_car_serie": 63879, + "name": "1.6 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256137, + "fields": { + "id_car_serie": 63879, + "name": "3.0 MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256138, + "fields": { + "id_car_serie": 63879, + "name": "3.0 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256139, + "fields": { + "id_car_serie": 63879, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256140, + "fields": { + "id_car_serie": 63879, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256141, + "fields": { + "id_car_serie": 63879, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256142, + "fields": { + "id_car_serie": 63879, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256143, + "fields": { + "id_car_serie": 63879, + "name": "2.0 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256144, + "fields": { + "id_car_serie": 63879, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256145, + "fields": { + "id_car_serie": 63879, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256146, + "fields": { + "id_car_serie": 63879, + "name": "2.0 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256147, + "fields": { + "id_car_serie": 63879, + "name": "2.0 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256148, + "fields": { + "id_car_serie": 63879, + "name": "3.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256149, + "fields": { + "id_car_serie": 63879, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256150, + "fields": { + "id_car_serie": 63880, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256151, + "fields": { + "id_car_serie": 63880, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256152, + "fields": { + "id_car_serie": 63880, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256153, + "fields": { + "id_car_serie": 63880, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256154, + "fields": { + "id_car_serie": 63880, + "name": "1.8 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256155, + "fields": { + "id_car_serie": 63880, + "name": "1.8 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256156, + "fields": { + "id_car_serie": 63880, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256157, + "fields": { + "id_car_serie": 63880, + "name": "2.0 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256158, + "fields": { + "id_car_serie": 63880, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256159, + "fields": { + "id_car_serie": 63880, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256160, + "fields": { + "id_car_serie": 63880, + "name": "2.5 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256161, + "fields": { + "id_car_serie": 63880, + "name": "2.5 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256162, + "fields": { + "id_car_serie": 63880, + "name": "2.4 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256163, + "fields": { + "id_car_serie": 63880, + "name": "2.4 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256164, + "fields": { + "id_car_serie": 63881, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256165, + "fields": { + "id_car_serie": 63881, + "name": "3.0 AT 4WD (387 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256166, + "fields": { + "id_car_serie": 63881, + "name": "2.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256167, + "fields": { + "id_car_serie": 63881, + "name": "3.0 AT 4WD (374 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256168, + "fields": { + "id_car_serie": 63881, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256169, + "fields": { + "id_car_serie": 63881, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256170, + "fields": { + "id_car_serie": 63798, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256171, + "fields": { + "id_car_serie": 63798, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256172, + "fields": { + "id_car_serie": 63798, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256173, + "fields": { + "id_car_serie": 63798, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256174, + "fields": { + "id_car_serie": 63798, + "name": "2.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256175, + "fields": { + "id_car_serie": 63798, + "name": "3.0 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256176, + "fields": { + "id_car_serie": 63799, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256177, + "fields": { + "id_car_serie": 63799, + "name": "2.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256178, + "fields": { + "id_car_serie": 63799, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256179, + "fields": { + "id_car_serie": 63799, + "name": "4.4 AT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256180, + "fields": { + "id_car_serie": 63799, + "name": "2.0 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256181, + "fields": { + "id_car_serie": 63799, + "name": "2.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256182, + "fields": { + "id_car_serie": 63799, + "name": "3.0 AT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256183, + "fields": { + "id_car_serie": 63799, + "name": "3.0 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256184, + "fields": { + "id_car_serie": 63799, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256185, + "fields": { + "id_car_serie": 63799, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256186, + "fields": { + "id_car_serie": 63799, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256187, + "fields": { + "id_car_serie": 63799, + "name": "3.0 AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256188, + "fields": { + "id_car_serie": 63799, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256189, + "fields": { + "id_car_serie": 63799, + "name": "2.0 AT (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256190, + "fields": { + "id_car_serie": 63882, + "name": "2.0 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256191, + "fields": { + "id_car_serie": 63882, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256192, + "fields": { + "id_car_serie": 63882, + "name": "2.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256193, + "fields": { + "id_car_serie": 63882, + "name": "3.0 AT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256194, + "fields": { + "id_car_serie": 63882, + "name": "3.0 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256195, + "fields": { + "id_car_serie": 63882, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256196, + "fields": { + "id_car_serie": 63882, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256197, + "fields": { + "id_car_serie": 63882, + "name": "3.0 AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256198, + "fields": { + "id_car_serie": 63882, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256199, + "fields": { + "id_car_serie": 63883, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256200, + "fields": { + "id_car_serie": 63883, + "name": "2.3 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256201, + "fields": { + "id_car_serie": 63883, + "name": "2.3 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256202, + "fields": { + "id_car_serie": 63883, + "name": "2.3 MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256203, + "fields": { + "id_car_serie": 63883, + "name": "2.3 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256204, + "fields": { + "id_car_serie": 63883, + "name": "2.3 MT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256205, + "fields": { + "id_car_serie": 63884, + "name": "4.4 AT 4WD (625 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256206, + "fields": { + "id_car_serie": 63884, + "name": "4.4 AT 4WD (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256207, + "fields": { + "id_car_serie": 63885, + "name": "5.0 AMT (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256208, + "fields": { + "id_car_serie": 63885, + "name": "5.0 MT (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256209, + "fields": { + "id_car_serie": 63886, + "name": "4.4 AT 4WD (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256210, + "fields": { + "id_car_serie": 63886, + "name": "4.4 AT 4WD (625 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256211, + "fields": { + "id_car_serie": 63887, + "name": "4.4 AT 4WD (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256212, + "fields": { + "id_car_serie": 63887, + "name": "4.4 AT 4WD (625 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256213, + "fields": { + "id_car_serie": 63888, + "name": "1.5 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256214, + "fields": { + "id_car_serie": 63888, + "name": "2.0 AT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256215, + "fields": { + "id_car_serie": 63888, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256216, + "fields": { + "id_car_serie": 63888, + "name": "1.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256217, + "fields": { + "id_car_serie": 63888, + "name": "2.0 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256218, + "fields": { + "id_car_serie": 63888, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256219, + "fields": { + "id_car_serie": 63888, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256220, + "fields": { + "id_car_serie": 63888, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256221, + "fields": { + "id_car_serie": 63888, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256222, + "fields": { + "id_car_serie": 63888, + "name": "2.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256223, + "fields": { + "id_car_serie": 63888, + "name": "1.5 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256224, + "fields": { + "id_car_serie": 63728, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256225, + "fields": { + "id_car_serie": 63728, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256226, + "fields": { + "id_car_serie": 63728, + "name": "2.0 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256227, + "fields": { + "id_car_serie": 63728, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256228, + "fields": { + "id_car_serie": 63728, + "name": "3.0 MT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256229, + "fields": { + "id_car_serie": 63728, + "name": "3.0 AMT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256230, + "fields": { + "id_car_serie": 63728, + "name": "3.0 AMT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256231, + "fields": { + "id_car_serie": 63728, + "name": "2.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256232, + "fields": { + "id_car_serie": 63728, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256233, + "fields": { + "id_car_serie": 63019, + "name": "3.3 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256234, + "fields": { + "id_car_serie": 63889, + "name": "3.3 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256235, + "fields": { + "id_car_serie": 63890, + "name": "4.9 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256236, + "fields": { + "id_car_serie": 63394, + "name": "1.1 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256237, + "fields": { + "id_car_serie": 64757, + "name": "6.2 AT 4WD (650 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256238, + "fields": { + "id_car_serie": 64758, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256239, + "fields": { + "id_car_serie": 64758, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256240, + "fields": { + "id_car_serie": 63395, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256241, + "fields": { + "id_car_serie": 63395, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256242, + "fields": { + "id_car_serie": 63396, + "name": "1.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256243, + "fields": { + "id_car_serie": 63396, + "name": "1.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256244, + "fields": { + "id_car_serie": 63396, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256245, + "fields": { + "id_car_serie": 63397, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256246, + "fields": { + "id_car_serie": 63397, + "name": "2.0 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256247, + "fields": { + "id_car_serie": 63397, + "name": "2.4 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256248, + "fields": { + "id_car_serie": 63397, + "name": "2.4 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256249, + "fields": { + "id_car_serie": 63398, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256250, + "fields": { + "id_car_serie": 63398, + "name": "1.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256251, + "fields": { + "id_car_serie": 63398, + "name": "1.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256252, + "fields": { + "id_car_serie": 63398, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256253, + "fields": { + "id_car_serie": 63398, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256254, + "fields": { + "id_car_serie": 63399, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256255, + "fields": { + "id_car_serie": 63399, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256256, + "fields": { + "id_car_serie": 63399, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256257, + "fields": { + "id_car_serie": 63399, + "name": "1.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256258, + "fields": { + "id_car_serie": 63399, + "name": "1.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256259, + "fields": { + "id_car_serie": 63399, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256260, + "fields": { + "id_car_serie": 63399, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256261, + "fields": { + "id_car_serie": 63399, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256262, + "fields": { + "id_car_serie": 64759, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256263, + "fields": { + "id_car_serie": 64759, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256264, + "fields": { + "id_car_serie": 64759, + "name": "1.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256265, + "fields": { + "id_car_serie": 64759, + "name": "1.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256266, + "fields": { + "id_car_serie": 64759, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256267, + "fields": { + "id_car_serie": 64759, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256268, + "fields": { + "id_car_serie": 64759, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256269, + "fields": { + "id_car_serie": 64759, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256270, + "fields": { + "id_car_serie": 63400, + "name": "1.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256271, + "fields": { + "id_car_serie": 63400, + "name": "1.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256272, + "fields": { + "id_car_serie": 63400, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256273, + "fields": { + "id_car_serie": 63401, + "name": "5.9 AT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256274, + "fields": { + "id_car_serie": 63402, + "name": "8.0 AMT 4WD (1001 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256275, + "fields": { + "id_car_serie": 63402, + "name": "8.0 AMT 4WD (1200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256276, + "fields": { + "id_car_serie": 64760, + "name": "8.0 AMT 4WD (1001 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256277, + "fields": { + "id_car_serie": 63403, + "name": "2.3 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256278, + "fields": { + "id_car_serie": 64761, + "name": "3.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256279, + "fields": { + "id_car_serie": 64761, + "name": "3.8 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256280, + "fields": { + "id_car_serie": 64761, + "name": "4.3 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256281, + "fields": { + "id_car_serie": 64761, + "name": "4.9 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256282, + "fields": { + "id_car_serie": 64761, + "name": "5.0 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256283, + "fields": { + "id_car_serie": 64761, + "name": "5.7 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256284, + "fields": { + "id_car_serie": 64762, + "name": "3.7 AT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256285, + "fields": { + "id_car_serie": 64762, + "name": "3.7 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256286, + "fields": { + "id_car_serie": 64763, + "name": "1.4 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256287, + "fields": { + "id_car_serie": 64763, + "name": "1.4 AT 4WD (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256288, + "fields": { + "id_car_serie": 64763, + "name": "1.4 AT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256289, + "fields": { + "id_car_serie": 64763, + "name": "1.4 AT 4WD (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256290, + "fields": { + "id_car_serie": 64764, + "name": "1.5 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256291, + "fields": { + "id_car_serie": 64764, + "name": "1.5 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256292, + "fields": { + "id_car_serie": 64765, + "name": "1.5 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256293, + "fields": { + "id_car_serie": 64765, + "name": "1.5 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256294, + "fields": { + "id_car_serie": 63404, + "name": "2.0 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256295, + "fields": { + "id_car_serie": 63405, + "name": "7.5 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256296, + "fields": { + "id_car_serie": 63405, + "name": "7.5 MT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256297, + "fields": { + "id_car_serie": 63406, + "name": "2.4 AT (168 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256298, + "fields": { + "id_car_serie": 63406, + "name": "3.0 AT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256299, + "fields": { + "id_car_serie": 63407, + "name": "3.8 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256300, + "fields": { + "id_car_serie": 63408, + "name": "3.8 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256301, + "fields": { + "id_car_serie": 63409, + "name": "3.8 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256302, + "fields": { + "id_car_serie": 63409, + "name": "3.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256303, + "fields": { + "id_car_serie": 63410, + "name": "3.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256304, + "fields": { + "id_car_serie": 63410, + "name": "3.8 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256305, + "fields": { + "id_car_serie": 63410, + "name": "4.1 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256306, + "fields": { + "id_car_serie": 63410, + "name": "4.9 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256307, + "fields": { + "id_car_serie": 63410, + "name": "5.0 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256308, + "fields": { + "id_car_serie": 63410, + "name": "5.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256309, + "fields": { + "id_car_serie": 63410, + "name": "5.7 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256310, + "fields": { + "id_car_serie": 63410, + "name": "5.7 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256311, + "fields": { + "id_car_serie": 63410, + "name": "5.7 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256312, + "fields": { + "id_car_serie": 63411, + "name": "6.6 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256313, + "fields": { + "id_car_serie": 63411, + "name": "6.6 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256314, + "fields": { + "id_car_serie": 64766, + "name": "6.6 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256315, + "fields": { + "id_car_serie": 64766, + "name": "6.6 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256316, + "fields": { + "id_car_serie": 64767, + "name": "6.6 AT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256317, + "fields": { + "id_car_serie": 63412, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256318, + "fields": { + "id_car_serie": 63412, + "name": "3.7 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256319, + "fields": { + "id_car_serie": 64768, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256320, + "fields": { + "id_car_serie": 64769, + "name": "3.2 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256321, + "fields": { + "id_car_serie": 64769, + "name": "3.2 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256322, + "fields": { + "id_car_serie": 64769, + "name": "3.2 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256323, + "fields": { + "id_car_serie": 64769, + "name": "3.2 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256324, + "fields": { + "id_car_serie": 64769, + "name": "3.8 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256325, + "fields": { + "id_car_serie": 64769, + "name": "3.8 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256326, + "fields": { + "id_car_serie": 64769, + "name": "3.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256327, + "fields": { + "id_car_serie": 64769, + "name": "3.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256328, + "fields": { + "id_car_serie": 64769, + "name": "3.8 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256329, + "fields": { + "id_car_serie": 64769, + "name": "3.8 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256330, + "fields": { + "id_car_serie": 64769, + "name": "3.8 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256331, + "fields": { + "id_car_serie": 64769, + "name": "3.8 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256332, + "fields": { + "id_car_serie": 64769, + "name": "3.8 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256333, + "fields": { + "id_car_serie": 64769, + "name": "3.8 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256334, + "fields": { + "id_car_serie": 64769, + "name": "3.8 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256335, + "fields": { + "id_car_serie": 64769, + "name": "3.8 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256336, + "fields": { + "id_car_serie": 64769, + "name": "3.8 AT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256337, + "fields": { + "id_car_serie": 64769, + "name": "3.8 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256338, + "fields": { + "id_car_serie": 64769, + "name": "4.1 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256339, + "fields": { + "id_car_serie": 64769, + "name": "4.3 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256340, + "fields": { + "id_car_serie": 64769, + "name": "4.9 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256341, + "fields": { + "id_car_serie": 64769, + "name": "4.9 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256342, + "fields": { + "id_car_serie": 64769, + "name": "5.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256343, + "fields": { + "id_car_serie": 64769, + "name": "5.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256344, + "fields": { + "id_car_serie": 64769, + "name": "5.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256345, + "fields": { + "id_car_serie": 64769, + "name": "5.0 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256346, + "fields": { + "id_car_serie": 64769, + "name": "5.0 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256347, + "fields": { + "id_car_serie": 64769, + "name": "5.0 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256348, + "fields": { + "id_car_serie": 64769, + "name": "4.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256349, + "fields": { + "id_car_serie": 64769, + "name": "5.7 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256350, + "fields": { + "id_car_serie": 64770, + "name": "3.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256351, + "fields": { + "id_car_serie": 64770, + "name": "4.1 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256352, + "fields": { + "id_car_serie": 64770, + "name": "5.7 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256353, + "fields": { + "id_car_serie": 64771, + "name": "3.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256354, + "fields": { + "id_car_serie": 64771, + "name": "4.1 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256355, + "fields": { + "id_car_serie": 64771, + "name": "4.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256356, + "fields": { + "id_car_serie": 64771, + "name": "5.7 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256357, + "fields": { + "id_car_serie": 64772, + "name": "3.8 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256358, + "fields": { + "id_car_serie": 64772, + "name": "3.8 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256359, + "fields": { + "id_car_serie": 64772, + "name": "3.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256360, + "fields": { + "id_car_serie": 64772, + "name": "3.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256361, + "fields": { + "id_car_serie": 64772, + "name": "5.7 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256362, + "fields": { + "id_car_serie": 64772, + "name": "5.7 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256363, + "fields": { + "id_car_serie": 64772, + "name": "5.7 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256364, + "fields": { + "id_car_serie": 64772, + "name": "5.7 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256365, + "fields": { + "id_car_serie": 64772, + "name": "5.7 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256366, + "fields": { + "id_car_serie": 64772, + "name": "5.7 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256367, + "fields": { + "id_car_serie": 64772, + "name": "5.7 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256368, + "fields": { + "id_car_serie": 64772, + "name": "5.7 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256369, + "fields": { + "id_car_serie": 64772, + "name": "5.7 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256370, + "fields": { + "id_car_serie": 64772, + "name": "5.7 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256371, + "fields": { + "id_car_serie": 64772, + "name": "7.5 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256372, + "fields": { + "id_car_serie": 64772, + "name": "7.5 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256373, + "fields": { + "id_car_serie": 64772, + "name": "7.5 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256374, + "fields": { + "id_car_serie": 64773, + "name": "3.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256375, + "fields": { + "id_car_serie": 64773, + "name": "3.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256376, + "fields": { + "id_car_serie": 64773, + "name": "5.7 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256377, + "fields": { + "id_car_serie": 64773, + "name": "5.7 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256378, + "fields": { + "id_car_serie": 64773, + "name": "5.7 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256379, + "fields": { + "id_car_serie": 64773, + "name": "5.7 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256380, + "fields": { + "id_car_serie": 64773, + "name": "5.7 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256381, + "fields": { + "id_car_serie": 64773, + "name": "5.7 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256382, + "fields": { + "id_car_serie": 64773, + "name": "5.7 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256383, + "fields": { + "id_car_serie": 64773, + "name": "5.7 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256384, + "fields": { + "id_car_serie": 64773, + "name": "7.5 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256385, + "fields": { + "id_car_serie": 64773, + "name": "7.5 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256386, + "fields": { + "id_car_serie": 63413, + "name": "3.8 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256387, + "fields": { + "id_car_serie": 63413, + "name": "3.8 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256388, + "fields": { + "id_car_serie": 63413, + "name": "3.8 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256389, + "fields": { + "id_car_serie": 63413, + "name": "3.8 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256390, + "fields": { + "id_car_serie": 63414, + "name": "1.5 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256391, + "fields": { + "id_car_serie": 63414, + "name": "1.5 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256392, + "fields": { + "id_car_serie": 63415, + "name": "6.6 MT (319 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256393, + "fields": { + "id_car_serie": 63415, + "name": "6.6 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256394, + "fields": { + "id_car_serie": 63415, + "name": "6.6 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256395, + "fields": { + "id_car_serie": 63415, + "name": "7.0 MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256396, + "fields": { + "id_car_serie": 63415, + "name": "7.0 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256397, + "fields": { + "id_car_serie": 63415, + "name": "7.0 MT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256398, + "fields": { + "id_car_serie": 63415, + "name": "7.0 AT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256399, + "fields": { + "id_car_serie": 64774, + "name": "6.6 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256400, + "fields": { + "id_car_serie": 64774, + "name": "6.6 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256401, + "fields": { + "id_car_serie": 64774, + "name": "7.0 MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256402, + "fields": { + "id_car_serie": 64774, + "name": "7.0 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256403, + "fields": { + "id_car_serie": 64774, + "name": "7.0 MT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256404, + "fields": { + "id_car_serie": 64774, + "name": "7.0 AT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256405, + "fields": { + "id_car_serie": 64775, + "name": "6.6 MT (319 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256406, + "fields": { + "id_car_serie": 64775, + "name": "6.6 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256407, + "fields": { + "id_car_serie": 64775, + "name": "6.6 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256408, + "fields": { + "id_car_serie": 64775, + "name": "7.0 MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256409, + "fields": { + "id_car_serie": 64775, + "name": "7.0 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256410, + "fields": { + "id_car_serie": 64775, + "name": "7.0 MT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256411, + "fields": { + "id_car_serie": 64775, + "name": "7.0 AT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256412, + "fields": { + "id_car_serie": 64776, + "name": "7.0 AT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256413, + "fields": { + "id_car_serie": 64776, + "name": "7.0 MT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256414, + "fields": { + "id_car_serie": 64777, + "name": "7.0 AT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256415, + "fields": { + "id_car_serie": 64777, + "name": "7.0 MT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256416, + "fields": { + "id_car_serie": 64778, + "name": "7.0 MT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256417, + "fields": { + "id_car_serie": 64778, + "name": "7.0 AT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256418, + "fields": { + "id_car_serie": 63416, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256419, + "fields": { + "id_car_serie": 64779, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256420, + "fields": { + "id_car_serie": 64779, + "name": "1.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256421, + "fields": { + "id_car_serie": 64779, + "name": "1.9 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256422, + "fields": { + "id_car_serie": 64779, + "name": "1.9 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256423, + "fields": { + "id_car_serie": 64779, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256424, + "fields": { + "id_car_serie": 64779, + "name": "2.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256425, + "fields": { + "id_car_serie": 64779, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256426, + "fields": { + "id_car_serie": 64779, + "name": "2.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256427, + "fields": { + "id_car_serie": 64779, + "name": "2.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256428, + "fields": { + "id_car_serie": 64779, + "name": "2.0 MT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256429, + "fields": { + "id_car_serie": 64779, + "name": "2.0 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256430, + "fields": { + "id_car_serie": 64779, + "name": "2.8 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256431, + "fields": { + "id_car_serie": 64779, + "name": "2.8 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256432, + "fields": { + "id_car_serie": 63417, + "name": "2.0 AT (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256433, + "fields": { + "id_car_serie": 63417, + "name": "2.0 AT 4WD (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256434, + "fields": { + "id_car_serie": 63417, + "name": "2.7 AT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256435, + "fields": { + "id_car_serie": 63417, + "name": "2.7 AT 4WD (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256436, + "fields": { + "id_car_serie": 63418, + "name": "2.7 AT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256437, + "fields": { + "id_car_serie": 63418, + "name": "2.7 AT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256438, + "fields": { + "id_car_serie": 54054, + "name": "2.0 AT (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256439, + "fields": { + "id_car_serie": 54054, + "name": "2.0 AT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256440, + "fields": { + "id_car_serie": 54054, + "name": "3.0 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256441, + "fields": { + "id_car_serie": 54054, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256442, + "fields": { + "id_car_serie": 63419, + "name": "3.0 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256443, + "fields": { + "id_car_serie": 63419, + "name": "3.0 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256444, + "fields": { + "id_car_serie": 63420, + "name": "3.7 AT 4WD (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256445, + "fields": { + "id_car_serie": 64780, + "name": "3.0 AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256446, + "fields": { + "id_car_serie": 64780, + "name": "3.0 AT 4WD (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256447, + "fields": { + "id_car_serie": 64780, + "name": "3.6 AT (311 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256448, + "fields": { + "id_car_serie": 64780, + "name": "3.6 AT 4WD (311 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256449, + "fields": { + "id_car_serie": 63421, + "name": "4.6 AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256450, + "fields": { + "id_car_serie": 63421, + "name": "4.6 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256451, + "fields": { + "id_car_serie": 63421, + "name": "4.6 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256452, + "fields": { + "id_car_serie": 63422, + "name": "4.6 AT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256453, + "fields": { + "id_car_serie": 63422, + "name": "4.6 AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256454, + "fields": { + "id_car_serie": 63422, + "name": "4.6 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256455, + "fields": { + "id_car_serie": 63422, + "name": "4.9 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256456, + "fields": { + "id_car_serie": 63423, + "name": "4.1 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256457, + "fields": { + "id_car_serie": 63423, + "name": "4.5 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256458, + "fields": { + "id_car_serie": 63423, + "name": "4.9 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256459, + "fields": { + "id_car_serie": 63423, + "name": "4.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256460, + "fields": { + "id_car_serie": 63424, + "name": "4.1 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256461, + "fields": { + "id_car_serie": 63425, + "name": "7.7 AT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256462, + "fields": { + "id_car_serie": 64781, + "name": "7.7 AT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256463, + "fields": { + "id_car_serie": 64782, + "name": "7.0 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256464, + "fields": { + "id_car_serie": 64782, + "name": "7.7 AT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256465, + "fields": { + "id_car_serie": 64783, + "name": "7.0 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256466, + "fields": { + "id_car_serie": 64783, + "name": "7.7 AT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256467, + "fields": { + "id_car_serie": 64784, + "name": "7.0 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256468, + "fields": { + "id_car_serie": 64784, + "name": "7.7 AT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256469, + "fields": { + "id_car_serie": 64785, + "name": "6.4 AT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256470, + "fields": { + "id_car_serie": 64785, + "name": "7.0 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256471, + "fields": { + "id_car_serie": 64786, + "name": "6.4 AT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256472, + "fields": { + "id_car_serie": 64786, + "name": "7.0 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256473, + "fields": { + "id_car_serie": 64787, + "name": "6.4 AT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256474, + "fields": { + "id_car_serie": 64788, + "name": "6.4 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256475, + "fields": { + "id_car_serie": 64789, + "name": "1.4 CVT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256476, + "fields": { + "id_car_serie": 63426, + "name": "7.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256477, + "fields": { + "id_car_serie": 63426, + "name": "8.2 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256478, + "fields": { + "id_car_serie": 64790, + "name": "7.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256479, + "fields": { + "id_car_serie": 64790, + "name": "8.2 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256480, + "fields": { + "id_car_serie": 45806, + "name": "5.4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256481, + "fields": { + "id_car_serie": 64792, + "name": "3.0 AT (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256482, + "fields": { + "id_car_serie": 64792, + "name": "3.0 AT 4WD (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256483, + "fields": { + "id_car_serie": 64792, + "name": "6.2 AT 4WD (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256487, + "fields": { + "id_car_serie": 63428, + "name": "5.4 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256488, + "fields": { + "id_car_serie": 63428, + "name": "5.4 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256489, + "fields": { + "id_car_serie": 63428, + "name": "5.4 AT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256490, + "fields": { + "id_car_serie": 63428, + "name": "5.4 AT (273 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256491, + "fields": { + "id_car_serie": 63428, + "name": "6.0 AT (289 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256492, + "fields": { + "id_car_serie": 63428, + "name": "6.0 AT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256493, + "fields": { + "id_car_serie": 53548, + "name": "2.0 AT (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256494, + "fields": { + "id_car_serie": 53548, + "name": "2.0 AT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256495, + "fields": { + "id_car_serie": 64793, + "name": "2.0 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256496, + "fields": { + "id_car_serie": 64793, + "name": "2.0 AT 4WD (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256497, + "fields": { + "id_car_serie": 64793, + "name": "3.7 AT 4WD (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256498, + "fields": { + "id_car_serie": 63816, + "name": "5.7 MT (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256499, + "fields": { + "id_car_serie": 63429, + "name": "2.3 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256500, + "fields": { + "id_car_serie": 63429, + "name": "2.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256501, + "fields": { + "id_car_serie": 63429, + "name": "2.7 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256502, + "fields": { + "id_car_serie": 64794, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256503, + "fields": { + "id_car_serie": 63430, + "name": "1.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256504, + "fields": { + "id_car_serie": 63430, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256505, + "fields": { + "id_car_serie": 63430, + "name": "1.6 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256506, + "fields": { + "id_car_serie": 64795, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256507, + "fields": { + "id_car_serie": 64796, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256508, + "fields": { + "id_car_serie": 64796, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256509, + "fields": { + "id_car_serie": 64797, + "name": "2.2 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256510, + "fields": { + "id_car_serie": 64798, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256511, + "fields": { + "id_car_serie": 63431, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256512, + "fields": { + "id_car_serie": 63432, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256513, + "fields": { + "id_car_serie": 63433, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256514, + "fields": { + "id_car_serie": 64799, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256515, + "fields": { + "id_car_serie": 64799, + "name": "2.4 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256516, + "fields": { + "id_car_serie": 64800, + "name": "1.3 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256517, + "fields": { + "id_car_serie": 64800, + "name": "1.3 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256518, + "fields": { + "id_car_serie": 64801, + "name": "0.8 AMT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256519, + "fields": { + "id_car_serie": 64801, + "name": "0.8 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256520, + "fields": { + "id_car_serie": 64801, + "name": "1.1 AMT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256521, + "fields": { + "id_car_serie": 64801, + "name": "1.1 MT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256522, + "fields": { + "id_car_serie": 64801, + "name": "1.1 AMT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256523, + "fields": { + "id_car_serie": 64801, + "name": "1.1 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256524, + "fields": { + "id_car_serie": 64802, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256525, + "fields": { + "id_car_serie": 64802, + "name": "1.6 CVT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256526, + "fields": { + "id_car_serie": 64802, + "name": "1.9 AMT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256527, + "fields": { + "id_car_serie": 64802, + "name": "1.9 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256528, + "fields": { + "id_car_serie": 64802, + "name": "2.0 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256529, + "fields": { + "id_car_serie": 64803, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256530, + "fields": { + "id_car_serie": 64803, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256531, + "fields": { + "id_car_serie": 64804, + "name": "1.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256532, + "fields": { + "id_car_serie": 64804, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256533, + "fields": { + "id_car_serie": 64804, + "name": "2.0 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256534, + "fields": { + "id_car_serie": 64804, + "name": "1.5 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256535, + "fields": { + "id_car_serie": 64804, + "name": "1.5 AMT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256536, + "fields": { + "id_car_serie": 64804, + "name": "1.5 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256537, + "fields": { + "id_car_serie": 64805, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256538, + "fields": { + "id_car_serie": 64805, + "name": "2.0 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256539, + "fields": { + "id_car_serie": 63434, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256540, + "fields": { + "id_car_serie": 63434, + "name": "1.6 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256541, + "fields": { + "id_car_serie": 63891, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256542, + "fields": { + "id_car_serie": 63891, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256543, + "fields": { + "id_car_serie": 63892, + "name": "4.3 MT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256544, + "fields": { + "id_car_serie": 63892, + "name": "4.3 AT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256545, + "fields": { + "id_car_serie": 63893, + "name": "4.3 MT 4WD (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256546, + "fields": { + "id_car_serie": 63893, + "name": "4.3 AT 4WD (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256547, + "fields": { + "id_car_serie": 63893, + "name": "4.3 MT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256548, + "fields": { + "id_car_serie": 63893, + "name": "4.3 AT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256549, + "fields": { + "id_car_serie": 63894, + "name": "4.3 MT 4WD (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256550, + "fields": { + "id_car_serie": 63894, + "name": "4.3 AT 4WD (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256551, + "fields": { + "id_car_serie": 63894, + "name": "4.3 AT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256552, + "fields": { + "id_car_serie": 63894, + "name": "4.3 MT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256553, + "fields": { + "id_car_serie": 63895, + "name": "2.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256554, + "fields": { + "id_car_serie": 63895, + "name": "2.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256555, + "fields": { + "id_car_serie": 63895, + "name": "2.8 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256556, + "fields": { + "id_car_serie": 63895, + "name": "4.3 AT 4WD (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256557, + "fields": { + "id_car_serie": 63895, + "name": "4.3 MT 4WD (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256558, + "fields": { + "id_car_serie": 63896, + "name": "6.6 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256559, + "fields": { + "id_car_serie": 63896, + "name": "6.6 AT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256560, + "fields": { + "id_car_serie": 63897, + "name": "6.5 AT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256572, + "fields": { + "id_car_serie": 63899, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256573, + "fields": { + "id_car_serie": 63899, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256574, + "fields": { + "id_car_serie": 63900, + "name": "6.2 AMT (495 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256575, + "fields": { + "id_car_serie": 63901, + "name": "6.2 AT (466 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256576, + "fields": { + "id_car_serie": 63901, + "name": "6.2 MT (466 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256577, + "fields": { + "id_car_serie": 63901, + "name": "6.2 AT (659 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256578, + "fields": { + "id_car_serie": 63901, + "name": "6.2 MT (659 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256579, + "fields": { + "id_car_serie": 63901, + "name": "6.2 MT (461 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256580, + "fields": { + "id_car_serie": 63901, + "name": "6.2 AT (461 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256581, + "fields": { + "id_car_serie": 63902, + "name": "6.2 AT (461 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256582, + "fields": { + "id_car_serie": 63902, + "name": "6.2 MT (461 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256583, + "fields": { + "id_car_serie": 63902, + "name": "6.2 MT (466 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256584, + "fields": { + "id_car_serie": 63902, + "name": "6.2 AT (466 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256585, + "fields": { + "id_car_serie": 63902, + "name": "6.2 MT (659 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256586, + "fields": { + "id_car_serie": 63902, + "name": "6.2 AT (659 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256587, + "fields": { + "id_car_serie": 63903, + "name": "6.0 MT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256588, + "fields": { + "id_car_serie": 63903, + "name": "6.0 AT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256589, + "fields": { + "id_car_serie": 63903, + "name": "6.2 AT (437 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256590, + "fields": { + "id_car_serie": 63903, + "name": "6.2 MT (437 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256591, + "fields": { + "id_car_serie": 63903, + "name": "6.2 MT (620 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256592, + "fields": { + "id_car_serie": 63903, + "name": "6.2 MT (647 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256593, + "fields": { + "id_car_serie": 63903, + "name": "6.2 MT (767 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256594, + "fields": { + "id_car_serie": 63903, + "name": "7.0 MT (513 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256595, + "fields": { + "id_car_serie": 63904, + "name": "5.7 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256596, + "fields": { + "id_car_serie": 63904, + "name": "5.7 MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256597, + "fields": { + "id_car_serie": 63904, + "name": "5.7 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256598, + "fields": { + "id_car_serie": 63904, + "name": "5.7 MT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256599, + "fields": { + "id_car_serie": 63905, + "name": "5.7 MT (411 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256600, + "fields": { + "id_car_serie": 63905, + "name": "5.7 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256601, + "fields": { + "id_car_serie": 63905, + "name": "5.7 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256602, + "fields": { + "id_car_serie": 63905, + "name": "5.7 MT (282 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256603, + "fields": { + "id_car_serie": 63905, + "name": "5.7 AT (282 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256604, + "fields": { + "id_car_serie": 63906, + "name": "5.4 MT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256605, + "fields": { + "id_car_serie": 63906, + "name": "5.4 MT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256606, + "fields": { + "id_car_serie": 63906, + "name": "5.7 MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256607, + "fields": { + "id_car_serie": 63906, + "name": "5.7 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256608, + "fields": { + "id_car_serie": 63906, + "name": "5.7 MT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256609, + "fields": { + "id_car_serie": 63906, + "name": "5.7 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256610, + "fields": { + "id_car_serie": 63906, + "name": "5.7 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256611, + "fields": { + "id_car_serie": 63906, + "name": "5.7 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256612, + "fields": { + "id_car_serie": 63906, + "name": "7.0 MT (396 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256613, + "fields": { + "id_car_serie": 63906, + "name": "7.0 AT (396 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256614, + "fields": { + "id_car_serie": 63906, + "name": "7.0 MT (441 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256615, + "fields": { + "id_car_serie": 63906, + "name": "7.0 AT (441 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256616, + "fields": { + "id_car_serie": 63906, + "name": "7.0 MT (537 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256617, + "fields": { + "id_car_serie": 63906, + "name": "7.0 MT (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256618, + "fields": { + "id_car_serie": 63906, + "name": "7.4 MT (466 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256619, + "fields": { + "id_car_serie": 63907, + "name": "5.4 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256620, + "fields": { + "id_car_serie": 63907, + "name": "5.4 MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256621, + "fields": { + "id_car_serie": 63907, + "name": "6.5 MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256622, + "fields": { + "id_car_serie": 63907, + "name": "7.0 MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256623, + "fields": { + "id_car_serie": 63907, + "name": "7.0 MT (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256624, + "fields": { + "id_car_serie": 63908, + "name": "3.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256625, + "fields": { + "id_car_serie": 63908, + "name": "3.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256626, + "fields": { + "id_car_serie": 63908, + "name": "4.6 MT (287 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256627, + "fields": { + "id_car_serie": 63908, + "name": "5.4 MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256628, + "fields": { + "id_car_serie": 63908, + "name": "5.4 MT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256629, + "fields": { + "id_car_serie": 63909, + "name": "1.4 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256630, + "fields": { + "id_car_serie": 63909, + "name": "1.4 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256631, + "fields": { + "id_car_serie": 63910, + "name": "1.4 MT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256632, + "fields": { + "id_car_serie": 63910, + "name": "1.4 AT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256633, + "fields": { + "id_car_serie": 63911, + "name": "1.5 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256634, + "fields": { + "id_car_serie": 63911, + "name": "2.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256635, + "fields": { + "id_car_serie": 63911, + "name": "1.6 AT 4WD (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256636, + "fields": { + "id_car_serie": 63020, + "name": "1.5 CVT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256637, + "fields": { + "id_car_serie": 63020, + "name": "2.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256638, + "fields": { + "id_car_serie": 63020, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256639, + "fields": { + "id_car_serie": 63021, + "name": "1.5 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256640, + "fields": { + "id_car_serie": 63021, + "name": "2.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256641, + "fields": { + "id_car_serie": 63021, + "name": "1.8 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256642, + "fields": { + "id_car_serie": 63022, + "name": "2.0 AT (259 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256643, + "fields": { + "id_car_serie": 63022, + "name": "2.5 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256644, + "fields": { + "id_car_serie": 63023, + "name": "2.4 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256645, + "fields": { + "id_car_serie": 63023, + "name": "2.0 AT (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256646, + "fields": { + "id_car_serie": 63023, + "name": "2.4 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256647, + "fields": { + "id_car_serie": 63023, + "name": "2.5 AT (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256648, + "fields": { + "id_car_serie": 63023, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256649, + "fields": { + "id_car_serie": 63023, + "name": "3.0 AT (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256650, + "fields": { + "id_car_serie": 63023, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256651, + "fields": { + "id_car_serie": 63023, + "name": "2.4 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256652, + "fields": { + "id_car_serie": 63024, + "name": "2.4 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256653, + "fields": { + "id_car_serie": 63024, + "name": "2.4 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256654, + "fields": { + "id_car_serie": 63024, + "name": "3.6 AT (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256655, + "fields": { + "id_car_serie": 63025, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256656, + "fields": { + "id_car_serie": 63025, + "name": "3.5 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256657, + "fields": { + "id_car_serie": 63025, + "name": "3.5 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256658, + "fields": { + "id_car_serie": 63025, + "name": "3.9 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256659, + "fields": { + "id_car_serie": 63912, + "name": "3.5 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256660, + "fields": { + "id_car_serie": 63912, + "name": "3.8 AT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256661, + "fields": { + "id_car_serie": 63913, + "name": "3.5 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256662, + "fields": { + "id_car_serie": 63913, + "name": "3.8 AT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256663, + "fields": { + "id_car_serie": 63914, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256664, + "fields": { + "id_car_serie": 63914, + "name": "3.5 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256665, + "fields": { + "id_car_serie": 63914, + "name": "3.9 AT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256666, + "fields": { + "id_car_serie": 63915, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256667, + "fields": { + "id_car_serie": 63915, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256668, + "fields": { + "id_car_serie": 63916, + "name": "2.7 AT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256669, + "fields": { + "id_car_serie": 63916, + "name": "2.7 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256670, + "fields": { + "id_car_serie": 63916, + "name": "4.3 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256671, + "fields": { + "id_car_serie": 63916, + "name": "5.3 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256672, + "fields": { + "id_car_serie": 63916, + "name": "6.2 AT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256673, + "fields": { + "id_car_serie": 63916, + "name": "6.2 AT 4WD (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256674, + "fields": { + "id_car_serie": 63916, + "name": "3.0 AT (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256675, + "fields": { + "id_car_serie": 63916, + "name": "3.0 AT 4WD (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256676, + "fields": { + "id_car_serie": 63917, + "name": "2.7 AT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256677, + "fields": { + "id_car_serie": 63917, + "name": "2.7 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256678, + "fields": { + "id_car_serie": 63917, + "name": "4.3 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256679, + "fields": { + "id_car_serie": 63917, + "name": "5.3 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256680, + "fields": { + "id_car_serie": 63917, + "name": "5.3 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256681, + "fields": { + "id_car_serie": 63917, + "name": "6.2 AT 4WD (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256682, + "fields": { + "id_car_serie": 63917, + "name": "3.0 AT (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256683, + "fields": { + "id_car_serie": 63917, + "name": "3.0 AT 4WD (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256684, + "fields": { + "id_car_serie": 63918, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256685, + "fields": { + "id_car_serie": 63919, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256686, + "fields": { + "id_car_serie": 63919, + "name": "1.0 CVT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256687, + "fields": { + "id_car_serie": 63919, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256688, + "fields": { + "id_car_serie": 63919, + "name": "1.4 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256689, + "fields": { + "id_car_serie": 63920, + "name": "5.3 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256690, + "fields": { + "id_car_serie": 63920, + "name": "5.3 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256691, + "fields": { + "id_car_serie": 63920, + "name": "5.3 AT 4WD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256692, + "fields": { + "id_car_serie": 63921, + "name": "5.3 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256693, + "fields": { + "id_car_serie": 63921, + "name": "5.3 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256694, + "fields": { + "id_car_serie": 63921, + "name": "5.3 AT (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256695, + "fields": { + "id_car_serie": 63921, + "name": "5.3 AT 4WD (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256696, + "fields": { + "id_car_serie": 63921, + "name": "6.0 AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256697, + "fields": { + "id_car_serie": 63921, + "name": "6.0 AT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256698, + "fields": { + "id_car_serie": 63921, + "name": "6.0 AT 4WD (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256699, + "fields": { + "id_car_serie": 63921, + "name": "6.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256700, + "fields": { + "id_car_serie": 63921, + "name": "8.1 AT 4WD (329 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256701, + "fields": { + "id_car_serie": 63921, + "name": "8.1 AT 4WD (344 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256702, + "fields": { + "id_car_serie": 63922, + "name": "5.7 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256703, + "fields": { + "id_car_serie": 63922, + "name": "5.7 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256704, + "fields": { + "id_car_serie": 63922, + "name": "5.7 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256705, + "fields": { + "id_car_serie": 63922, + "name": "5.7 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256706, + "fields": { + "id_car_serie": 63922, + "name": "5.7 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256707, + "fields": { + "id_car_serie": 63922, + "name": "5.7 AT 4WD (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256708, + "fields": { + "id_car_serie": 63922, + "name": "7.4 AT 4WD (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256709, + "fields": { + "id_car_serie": 63922, + "name": "7.5 AT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256710, + "fields": { + "id_car_serie": 63922, + "name": "6.5 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256711, + "fields": { + "id_car_serie": 63922, + "name": "6.5 AT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256712, + "fields": { + "id_car_serie": 63922, + "name": "6.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256713, + "fields": { + "id_car_serie": 63923, + "name": "5.7 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256714, + "fields": { + "id_car_serie": 63923, + "name": "5.7 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256715, + "fields": { + "id_car_serie": 63923, + "name": "5.7 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256716, + "fields": { + "id_car_serie": 63923, + "name": "5.7 AT 4WD (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256717, + "fields": { + "id_car_serie": 63923, + "name": "5.7 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256718, + "fields": { + "id_car_serie": 63923, + "name": "5.7 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256719, + "fields": { + "id_car_serie": 63923, + "name": "6.5 AT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256720, + "fields": { + "id_car_serie": 63923, + "name": "6.5 MT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256721, + "fields": { + "id_car_serie": 63923, + "name": "6.5 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256722, + "fields": { + "id_car_serie": 63923, + "name": "6.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256723, + "fields": { + "id_car_serie": 63924, + "name": "5.7 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256724, + "fields": { + "id_car_serie": 63924, + "name": "5.7 AT 4WD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256725, + "fields": { + "id_car_serie": 63924, + "name": "5.7 AT 4WD (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256726, + "fields": { + "id_car_serie": 63924, + "name": "5.7 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256727, + "fields": { + "id_car_serie": 63924, + "name": "5.7 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256728, + "fields": { + "id_car_serie": 63924, + "name": "6.5 AT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256729, + "fields": { + "id_car_serie": 63924, + "name": "6.5 MT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256730, + "fields": { + "id_car_serie": 63925, + "name": "1.6 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256731, + "fields": { + "id_car_serie": 63925, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256732, + "fields": { + "id_car_serie": 63925, + "name": "1.6 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256733, + "fields": { + "id_car_serie": 63926, + "name": "1.6 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256734, + "fields": { + "id_car_serie": 63926, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256735, + "fields": { + "id_car_serie": 63926, + "name": "1.6 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256736, + "fields": { + "id_car_serie": 63926, + "name": "1.6 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256737, + "fields": { + "id_car_serie": 63927, + "name": "3.9 AT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256738, + "fields": { + "id_car_serie": 63927, + "name": "5.3 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256739, + "fields": { + "id_car_serie": 63928, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256740, + "fields": { + "id_car_serie": 63928, + "name": "2.0 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256741, + "fields": { + "id_car_serie": 63928, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256742, + "fields": { + "id_car_serie": 63928, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256743, + "fields": { + "id_car_serie": 63928, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256744, + "fields": { + "id_car_serie": 63929, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256745, + "fields": { + "id_car_serie": 63929, + "name": "2.0 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256746, + "fields": { + "id_car_serie": 63929, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256747, + "fields": { + "id_car_serie": 63929, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256748, + "fields": { + "id_car_serie": 63930, + "name": "4.3 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256749, + "fields": { + "id_car_serie": 63930, + "name": "4.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256750, + "fields": { + "id_car_serie": 63930, + "name": "5.7 AT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256751, + "fields": { + "id_car_serie": 63930, + "name": "5.7 MT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256752, + "fields": { + "id_car_serie": 63930, + "name": "5.7 AT (187 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256753, + "fields": { + "id_car_serie": 63930, + "name": "5.7 AT 4WD (187 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256754, + "fields": { + "id_car_serie": 63930, + "name": "6.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256755, + "fields": { + "id_car_serie": 63930, + "name": "6.2 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256756, + "fields": { + "id_car_serie": 63930, + "name": "6.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256757, + "fields": { + "id_car_serie": 63931, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256758, + "fields": { + "id_car_serie": 63931, + "name": "4.6 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256759, + "fields": { + "id_car_serie": 63931, + "name": "4.8 MT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256760, + "fields": { + "id_car_serie": 63931, + "name": "5.4 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256761, + "fields": { + "id_car_serie": 63931, + "name": "5.7 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256762, + "fields": { + "id_car_serie": 63931, + "name": "5.7 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256763, + "fields": { + "id_car_serie": 63931, + "name": "6.6 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256764, + "fields": { + "id_car_serie": 63932, + "name": "2.7 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256765, + "fields": { + "id_car_serie": 63932, + "name": "2.7 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256766, + "fields": { + "id_car_serie": 63932, + "name": "2.7 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256767, + "fields": { + "id_car_serie": 63932, + "name": "2.7 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256768, + "fields": { + "id_car_serie": 63932, + "name": "2.7 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256769, + "fields": { + "id_car_serie": 63932, + "name": "2.7 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256770, + "fields": { + "id_car_serie": 63933, + "name": "2.3 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256771, + "fields": { + "id_car_serie": 63933, + "name": "2.3 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256772, + "fields": { + "id_car_serie": 63933, + "name": "2.3 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256773, + "fields": { + "id_car_serie": 63933, + "name": "2.4 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256774, + "fields": { + "id_car_serie": 63933, + "name": "2.4 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256775, + "fields": { + "id_car_serie": 63933, + "name": "2.7 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256776, + "fields": { + "id_car_serie": 63933, + "name": "2.7 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256777, + "fields": { + "id_car_serie": 63933, + "name": "2.7 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256778, + "fields": { + "id_car_serie": 63933, + "name": "2.7 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256779, + "fields": { + "id_car_serie": 63934, + "name": "2.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256780, + "fields": { + "id_car_serie": 63934, + "name": "2.4 AT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256781, + "fields": { + "id_car_serie": 63934, + "name": "2.4 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256782, + "fields": { + "id_car_serie": 63934, + "name": "2.4 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256783, + "fields": { + "id_car_serie": 63934, + "name": "2.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256784, + "fields": { + "id_car_serie": 63026, + "name": "6.0 MT (417 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256785, + "fields": { + "id_car_serie": 63026, + "name": "6.2 (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256786, + "fields": { + "id_car_serie": 63935, + "name": "3.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256787, + "fields": { + "id_car_serie": 63935, + "name": "3.9 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256788, + "fields": { + "id_car_serie": 63027, + "name": "3.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256789, + "fields": { + "id_car_serie": 63936, + "name": "1.8 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256790, + "fields": { + "id_car_serie": 63936, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256791, + "fields": { + "id_car_serie": 63937, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256792, + "fields": { + "id_car_serie": 63028, + "name": "6.2 AT (415 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256793, + "fields": { + "id_car_serie": 63028, + "name": "6.2 MT (415 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256794, + "fields": { + "id_car_serie": 63029, + "name": "6.2 AT (415 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256795, + "fields": { + "id_car_serie": 49485, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256796, + "fields": { + "id_car_serie": 63435, + "name": "6.4 AT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256797, + "fields": { + "id_car_serie": 63435, + "name": "6.4 AT (396 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256798, + "fields": { + "id_car_serie": 64806, + "name": "6.4 AT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256799, + "fields": { + "id_car_serie": 64806, + "name": "6.4 AT (396 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256800, + "fields": { + "id_car_serie": 64807, + "name": "5.4 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256801, + "fields": { + "id_car_serie": 63436, + "name": "3.6 AT (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256802, + "fields": { + "id_car_serie": 63436, + "name": "3.6 AT 4WD (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256803, + "fields": { + "id_car_serie": 63436, + "name": "3.6 AT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256804, + "fields": { + "id_car_serie": 63436, + "name": "5.7 AT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256805, + "fields": { + "id_car_serie": 63437, + "name": "5.2 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256806, + "fields": { + "id_car_serie": 63437, + "name": "5.9 AT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256807, + "fields": { + "id_car_serie": 63437, + "name": "6.6 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256808, + "fields": { + "id_car_serie": 64808, + "name": "2.2 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256809, + "fields": { + "id_car_serie": 64808, + "name": "2.2 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256810, + "fields": { + "id_car_serie": 64808, + "name": "2.5 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256811, + "fields": { + "id_car_serie": 64808, + "name": "2.5 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256812, + "fields": { + "id_car_serie": 64808, + "name": "2.5 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256813, + "fields": { + "id_car_serie": 64808, + "name": "2.5 AT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256814, + "fields": { + "id_car_serie": 63438, + "name": "3.3 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256815, + "fields": { + "id_car_serie": 63438, + "name": "3.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256816, + "fields": { + "id_car_serie": 63439, + "name": "5.4 AT (183 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256817, + "fields": { + "id_car_serie": 63439, + "name": "5.4 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256818, + "fields": { + "id_car_serie": 64809, + "name": "5.4 AT (183 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256819, + "fields": { + "id_car_serie": 64809, + "name": "5.4 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256820, + "fields": { + "id_car_serie": 64810, + "name": "5.4 AT (183 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256821, + "fields": { + "id_car_serie": 64810, + "name": "5.4 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256822, + "fields": { + "id_car_serie": 64811, + "name": "5.3 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256823, + "fields": { + "id_car_serie": 64811, + "name": "5.3 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256824, + "fields": { + "id_car_serie": 64811, + "name": "5.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256825, + "fields": { + "id_car_serie": 64812, + "name": "4.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256826, + "fields": { + "id_car_serie": 64812, + "name": "4.5 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256827, + "fields": { + "id_car_serie": 64812, + "name": "5.3 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256828, + "fields": { + "id_car_serie": 64813, + "name": "4.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256829, + "fields": { + "id_car_serie": 64813, + "name": "4.5 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256830, + "fields": { + "id_car_serie": 64813, + "name": "5.3 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256831, + "fields": { + "id_car_serie": 64814, + "name": "4.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256832, + "fields": { + "id_car_serie": 64814, + "name": "4.5 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256833, + "fields": { + "id_car_serie": 64814, + "name": "5.3 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256834, + "fields": { + "id_car_serie": 64814, + "name": "5.3 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256835, + "fields": { + "id_car_serie": 64815, + "name": "5.3 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256836, + "fields": { + "id_car_serie": 64816, + "name": "5.3 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256837, + "fields": { + "id_car_serie": 64817, + "name": "6.3 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256838, + "fields": { + "id_car_serie": 64818, + "name": "6.3 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256839, + "fields": { + "id_car_serie": 64819, + "name": "4.7 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256840, + "fields": { + "id_car_serie": 64819, + "name": "5.1 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256841, + "fields": { + "id_car_serie": 64819, + "name": "5.1 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256842, + "fields": { + "id_car_serie": 64820, + "name": "4.7 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256843, + "fields": { + "id_car_serie": 64820, + "name": "5.1 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256844, + "fields": { + "id_car_serie": 64820, + "name": "5.1 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256845, + "fields": { + "id_car_serie": 63440, + "name": "2.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256846, + "fields": { + "id_car_serie": 63440, + "name": "3.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256847, + "fields": { + "id_car_serie": 63440, + "name": "3.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256848, + "fields": { + "id_car_serie": 63440, + "name": "3.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256849, + "fields": { + "id_car_serie": 63441, + "name": "3.7 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256850, + "fields": { + "id_car_serie": 63441, + "name": "5.2 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256851, + "fields": { + "id_car_serie": 63441, + "name": "5.2 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256852, + "fields": { + "id_car_serie": 64821, + "name": "3.7 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256853, + "fields": { + "id_car_serie": 64821, + "name": "5.2 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256854, + "fields": { + "id_car_serie": 64821, + "name": "5.2 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256855, + "fields": { + "id_car_serie": 64822, + "name": "3.7 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256856, + "fields": { + "id_car_serie": 64822, + "name": "5.2 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256857, + "fields": { + "id_car_serie": 64822, + "name": "5.2 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256858, + "fields": { + "id_car_serie": 63442, + "name": "3.5 AT (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256859, + "fields": { + "id_car_serie": 63443, + "name": "3.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256860, + "fields": { + "id_car_serie": 63443, + "name": "3.8 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256861, + "fields": { + "id_car_serie": 63444, + "name": "2.2 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256862, + "fields": { + "id_car_serie": 63444, + "name": "2.2 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256863, + "fields": { + "id_car_serie": 63444, + "name": "2.2 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256864, + "fields": { + "id_car_serie": 63444, + "name": "2.2 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256865, + "fields": { + "id_car_serie": 63444, + "name": "2.2 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256866, + "fields": { + "id_car_serie": 63444, + "name": "2.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256867, + "fields": { + "id_car_serie": 63444, + "name": "2.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256868, + "fields": { + "id_car_serie": 63444, + "name": "2.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256869, + "fields": { + "id_car_serie": 64823, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256870, + "fields": { + "id_car_serie": 64823, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256871, + "fields": { + "id_car_serie": 64823, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256872, + "fields": { + "id_car_serie": 64823, + "name": "2.4 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256873, + "fields": { + "id_car_serie": 64823, + "name": "2.4 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256874, + "fields": { + "id_car_serie": 64823, + "name": "2.4 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256875, + "fields": { + "id_car_serie": 64823, + "name": "2.4 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256876, + "fields": { + "id_car_serie": 64823, + "name": "2.4 MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256877, + "fields": { + "id_car_serie": 64823, + "name": "2.4 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256878, + "fields": { + "id_car_serie": 64823, + "name": "2.4 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256879, + "fields": { + "id_car_serie": 64823, + "name": "2.4 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256880, + "fields": { + "id_car_serie": 64823, + "name": "2.4 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256881, + "fields": { + "id_car_serie": 64823, + "name": "2.4 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256882, + "fields": { + "id_car_serie": 64823, + "name": "2.4 MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256883, + "fields": { + "id_car_serie": 64823, + "name": "2.4 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256884, + "fields": { + "id_car_serie": 64823, + "name": "2.2 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256885, + "fields": { + "id_car_serie": 64823, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256886, + "fields": { + "id_car_serie": 64824, + "name": "3.5 AT (257 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256887, + "fields": { + "id_car_serie": 63445, + "name": "3.6 AT (287 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256888, + "fields": { + "id_car_serie": 63446, + "name": "3.3 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256889, + "fields": { + "id_car_serie": 63446, + "name": "3.8 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256890, + "fields": { + "id_car_serie": 63446, + "name": "4.0 AT (251 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256891, + "fields": { + "id_car_serie": 63447, + "name": "3.3 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256892, + "fields": { + "id_car_serie": 63447, + "name": "3.3 AT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256893, + "fields": { + "id_car_serie": 63447, + "name": "3.8 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256894, + "fields": { + "id_car_serie": 63447, + "name": "3.8 AT (209 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256895, + "fields": { + "id_car_serie": 63447, + "name": "3.8 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256896, + "fields": { + "id_car_serie": 63447, + "name": "3.8 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256897, + "fields": { + "id_car_serie": 63448, + "name": "3.3 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256898, + "fields": { + "id_car_serie": 63448, + "name": "3.3 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256899, + "fields": { + "id_car_serie": 63449, + "name": "3.3 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256900, + "fields": { + "id_car_serie": 63449, + "name": "3.8 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256901, + "fields": { + "id_car_serie": 63449, + "name": "3.8 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256902, + "fields": { + "id_car_serie": 63449, + "name": "3.8 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256903, + "fields": { + "id_car_serie": 63449, + "name": "3.8 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256904, + "fields": { + "id_car_serie": 63450, + "name": "3.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256905, + "fields": { + "id_car_serie": 63451, + "name": "5.9 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256906, + "fields": { + "id_car_serie": 63451, + "name": "5.9 (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256907, + "fields": { + "id_car_serie": 63451, + "name": "5.9 (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256908, + "fields": { + "id_car_serie": 63451, + "name": "5.9 (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256909, + "fields": { + "id_car_serie": 63451, + "name": "6.6 (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256910, + "fields": { + "id_car_serie": 63451, + "name": "6.6 (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256911, + "fields": { + "id_car_serie": 63451, + "name": "6.6 (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256912, + "fields": { + "id_car_serie": 63451, + "name": "6.6 (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256913, + "fields": { + "id_car_serie": 63451, + "name": "7.2 (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256914, + "fields": { + "id_car_serie": 63451, + "name": "7.2 (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256915, + "fields": { + "id_car_serie": 63451, + "name": "7.2 (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256916, + "fields": { + "id_car_serie": 63451, + "name": "7.2 (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256917, + "fields": { + "id_car_serie": 63452, + "name": "6.3 MT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256918, + "fields": { + "id_car_serie": 63452, + "name": "6.3 AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256919, + "fields": { + "id_car_serie": 63452, + "name": "6.3 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256920, + "fields": { + "id_car_serie": 63452, + "name": "7.2 AT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256921, + "fields": { + "id_car_serie": 63453, + "name": "2.2 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256922, + "fields": { + "id_car_serie": 63453, + "name": "2.2 (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256923, + "fields": { + "id_car_serie": 63453, + "name": "2.2 (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256924, + "fields": { + "id_car_serie": 63453, + "name": "3.0 (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256925, + "fields": { + "id_car_serie": 63938, + "name": "0.4 MT (9 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256926, + "fields": { + "id_car_serie": 63938, + "name": "0.4 MT (12 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256927, + "fields": { + "id_car_serie": 63938, + "name": "0.4 MT (18 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256928, + "fields": { + "id_car_serie": 63938, + "name": "0.6 MT (29 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256929, + "fields": { + "id_car_serie": 63939, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256930, + "fields": { + "id_car_serie": 63939, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256931, + "fields": { + "id_car_serie": 63939, + "name": "1.1 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256932, + "fields": { + "id_car_serie": 63939, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256933, + "fields": { + "id_car_serie": 63939, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256934, + "fields": { + "id_car_serie": 63939, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256935, + "fields": { + "id_car_serie": 63939, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256936, + "fields": { + "id_car_serie": 63939, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256937, + "fields": { + "id_car_serie": 63939, + "name": "1.6 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256938, + "fields": { + "id_car_serie": 63939, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256939, + "fields": { + "id_car_serie": 63939, + "name": "1.4 AMT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256940, + "fields": { + "id_car_serie": 63939, + "name": "1.4 AMT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256941, + "fields": { + "id_car_serie": 63939, + "name": "1.4 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256942, + "fields": { + "id_car_serie": 63939, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256943, + "fields": { + "id_car_serie": 63939, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256944, + "fields": { + "id_car_serie": 63939, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256945, + "fields": { + "id_car_serie": 63939, + "name": "1.6 AMT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256946, + "fields": { + "id_car_serie": 63940, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256947, + "fields": { + "id_car_serie": 63940, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256948, + "fields": { + "id_car_serie": 63940, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256949, + "fields": { + "id_car_serie": 63940, + "name": "1.6 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256950, + "fields": { + "id_car_serie": 63940, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256951, + "fields": { + "id_car_serie": 63940, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256952, + "fields": { + "id_car_serie": 63941, + "name": "1.1 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256953, + "fields": { + "id_car_serie": 63941, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256954, + "fields": { + "id_car_serie": 63941, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256955, + "fields": { + "id_car_serie": 63941, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256956, + "fields": { + "id_car_serie": 63941, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256957, + "fields": { + "id_car_serie": 63941, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256958, + "fields": { + "id_car_serie": 63941, + "name": "1.6 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256959, + "fields": { + "id_car_serie": 63941, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256960, + "fields": { + "id_car_serie": 63941, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256961, + "fields": { + "id_car_serie": 63941, + "name": "1.4 AMT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256962, + "fields": { + "id_car_serie": 63941, + "name": "1.4 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256963, + "fields": { + "id_car_serie": 63941, + "name": "1.4 AMT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256964, + "fields": { + "id_car_serie": 63942, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256965, + "fields": { + "id_car_serie": 63942, + "name": "1.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256966, + "fields": { + "id_car_serie": 63942, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256967, + "fields": { + "id_car_serie": 63942, + "name": "1.2 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256968, + "fields": { + "id_car_serie": 63942, + "name": "1.2 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256969, + "fields": { + "id_car_serie": 63942, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256970, + "fields": { + "id_car_serie": 63942, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256971, + "fields": { + "id_car_serie": 63942, + "name": "1.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256972, + "fields": { + "id_car_serie": 63942, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256973, + "fields": { + "id_car_serie": 63942, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256974, + "fields": { + "id_car_serie": 63943, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256975, + "fields": { + "id_car_serie": 63943, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256976, + "fields": { + "id_car_serie": 63943, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256977, + "fields": { + "id_car_serie": 63943, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256978, + "fields": { + "id_car_serie": 63943, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256979, + "fields": { + "id_car_serie": 63943, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256980, + "fields": { + "id_car_serie": 63943, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256981, + "fields": { + "id_car_serie": 63943, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256982, + "fields": { + "id_car_serie": 63943, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256983, + "fields": { + "id_car_serie": 63944, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256984, + "fields": { + "id_car_serie": 63945, + "name": "1.4 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256985, + "fields": { + "id_car_serie": 63945, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256986, + "fields": { + "id_car_serie": 63945, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256987, + "fields": { + "id_car_serie": 63945, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256988, + "fields": { + "id_car_serie": 63945, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256989, + "fields": { + "id_car_serie": 63945, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256990, + "fields": { + "id_car_serie": 63945, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256991, + "fields": { + "id_car_serie": 63945, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256992, + "fields": { + "id_car_serie": 63945, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256993, + "fields": { + "id_car_serie": 63945, + "name": "1.6 AMT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256994, + "fields": { + "id_car_serie": 63945, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256995, + "fields": { + "id_car_serie": 63946, + "name": "3.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256996, + "fields": { + "id_car_serie": 63946, + "name": "2.2 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256997, + "fields": { + "id_car_serie": 63946, + "name": "2.2 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256998, + "fields": { + "id_car_serie": 63946, + "name": "2.7 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 256999, + "fields": { + "id_car_serie": 63946, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257000, + "fields": { + "id_car_serie": 63031, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257001, + "fields": { + "id_car_serie": 63031, + "name": "2.0 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257002, + "fields": { + "id_car_serie": 63031, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257003, + "fields": { + "id_car_serie": 63031, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257004, + "fields": { + "id_car_serie": 63031, + "name": "2.2 MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257005, + "fields": { + "id_car_serie": 63031, + "name": "2.2 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257006, + "fields": { + "id_car_serie": 63031, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257007, + "fields": { + "id_car_serie": 63031, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257008, + "fields": { + "id_car_serie": 63031, + "name": "3.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257009, + "fields": { + "id_car_serie": 63031, + "name": "3.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257023, + "fields": { + "id_car_serie": 63033, + "name": "2.0 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257024, + "fields": { + "id_car_serie": 63033, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257025, + "fields": { + "id_car_serie": 63033, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257026, + "fields": { + "id_car_serie": 63033, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257027, + "fields": { + "id_car_serie": 63034, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257028, + "fields": { + "id_car_serie": 63034, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257029, + "fields": { + "id_car_serie": 63034, + "name": "1.9 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257030, + "fields": { + "id_car_serie": 63034, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257031, + "fields": { + "id_car_serie": 63034, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257032, + "fields": { + "id_car_serie": 63035, + "name": "1.3 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257033, + "fields": { + "id_car_serie": 63035, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257034, + "fields": { + "id_car_serie": 63035, + "name": "1.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257035, + "fields": { + "id_car_serie": 63035, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257036, + "fields": { + "id_car_serie": 63035, + "name": "1.4 AMT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257037, + "fields": { + "id_car_serie": 63035, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257038, + "fields": { + "id_car_serie": 63947, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257039, + "fields": { + "id_car_serie": 63947, + "name": "2.0 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257040, + "fields": { + "id_car_serie": 63947, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257041, + "fields": { + "id_car_serie": 63947, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257042, + "fields": { + "id_car_serie": 63947, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257043, + "fields": { + "id_car_serie": 63947, + "name": "3.0 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257044, + "fields": { + "id_car_serie": 63947, + "name": "3.0 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257045, + "fields": { + "id_car_serie": 63947, + "name": "2.1 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257046, + "fields": { + "id_car_serie": 63947, + "name": "2.1 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257047, + "fields": { + "id_car_serie": 63947, + "name": "2.5 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257048, + "fields": { + "id_car_serie": 63948, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257049, + "fields": { + "id_car_serie": 63948, + "name": "2.0 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257050, + "fields": { + "id_car_serie": 63948, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257051, + "fields": { + "id_car_serie": 63948, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257052, + "fields": { + "id_car_serie": 63948, + "name": "3.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257053, + "fields": { + "id_car_serie": 63948, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257054, + "fields": { + "id_car_serie": 63948, + "name": "3.0 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257055, + "fields": { + "id_car_serie": 63948, + "name": "3.0 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257056, + "fields": { + "id_car_serie": 63948, + "name": "3.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257057, + "fields": { + "id_car_serie": 63948, + "name": "2.1 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257058, + "fields": { + "id_car_serie": 63948, + "name": "2.1 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257059, + "fields": { + "id_car_serie": 63948, + "name": "2.5 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257060, + "fields": { + "id_car_serie": 63949, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257061, + "fields": { + "id_car_serie": 63949, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257062, + "fields": { + "id_car_serie": 63949, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257063, + "fields": { + "id_car_serie": 63949, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257064, + "fields": { + "id_car_serie": 63949, + "name": "2.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257065, + "fields": { + "id_car_serie": 63949, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257066, + "fields": { + "id_car_serie": 63949, + "name": "2.0 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257067, + "fields": { + "id_car_serie": 63949, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257068, + "fields": { + "id_car_serie": 63949, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257069, + "fields": { + "id_car_serie": 63949, + "name": "2.1 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257070, + "fields": { + "id_car_serie": 63950, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257071, + "fields": { + "id_car_serie": 63950, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257072, + "fields": { + "id_car_serie": 63950, + "name": "1.8 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257073, + "fields": { + "id_car_serie": 63950, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257074, + "fields": { + "id_car_serie": 63950, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257075, + "fields": { + "id_car_serie": 63950, + "name": "2.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257076, + "fields": { + "id_car_serie": 63950, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257077, + "fields": { + "id_car_serie": 63950, + "name": "2.0 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257078, + "fields": { + "id_car_serie": 63950, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257079, + "fields": { + "id_car_serie": 63950, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257080, + "fields": { + "id_car_serie": 63950, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257081, + "fields": { + "id_car_serie": 63950, + "name": "3.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257082, + "fields": { + "id_car_serie": 63950, + "name": "1.9 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257083, + "fields": { + "id_car_serie": 63950, + "name": "1.9 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257084, + "fields": { + "id_car_serie": 63950, + "name": "1.9 AT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257085, + "fields": { + "id_car_serie": 63950, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257086, + "fields": { + "id_car_serie": 63950, + "name": "2.1 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257087, + "fields": { + "id_car_serie": 63951, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257088, + "fields": { + "id_car_serie": 63951, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257089, + "fields": { + "id_car_serie": 63951, + "name": "1.6 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257090, + "fields": { + "id_car_serie": 63951, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257091, + "fields": { + "id_car_serie": 63951, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257092, + "fields": { + "id_car_serie": 63951, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257093, + "fields": { + "id_car_serie": 63951, + "name": "1.8 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257094, + "fields": { + "id_car_serie": 63951, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257095, + "fields": { + "id_car_serie": 63951, + "name": "2.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257096, + "fields": { + "id_car_serie": 63951, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257097, + "fields": { + "id_car_serie": 63951, + "name": "1.9 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257098, + "fields": { + "id_car_serie": 63951, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257099, + "fields": { + "id_car_serie": 63951, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257100, + "fields": { + "id_car_serie": 63036, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257101, + "fields": { + "id_car_serie": 63036, + "name": "2.0 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257102, + "fields": { + "id_car_serie": 63037, + "name": "2.0 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257103, + "fields": { + "id_car_serie": 63037, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257104, + "fields": { + "id_car_serie": 63037, + "name": "2.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257105, + "fields": { + "id_car_serie": 63037, + "name": "2.4 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257106, + "fields": { + "id_car_serie": 63037, + "name": "2.4 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257107, + "fields": { + "id_car_serie": 63037, + "name": "2.4 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257108, + "fields": { + "id_car_serie": 63952, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257109, + "fields": { + "id_car_serie": 63952, + "name": "2.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257110, + "fields": { + "id_car_serie": 63952, + "name": "2.2 AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257111, + "fields": { + "id_car_serie": 63953, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257112, + "fields": { + "id_car_serie": 63953, + "name": "2.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257113, + "fields": { + "id_car_serie": 63953, + "name": "2.4 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257114, + "fields": { + "id_car_serie": 63953, + "name": "2.4 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257115, + "fields": { + "id_car_serie": 63953, + "name": "2.4 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257125, + "fields": { + "id_car_serie": 64825, + "name": "6.5 AT 4WD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257126, + "fields": { + "id_car_serie": 63454, + "name": "4.9 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257127, + "fields": { + "id_car_serie": 64826, + "name": "4.9 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257128, + "fields": { + "id_car_serie": 64827, + "name": "1.4 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257129, + "fields": { + "id_car_serie": 64827, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257130, + "fields": { + "id_car_serie": 64827, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257131, + "fields": { + "id_car_serie": 64828, + "name": "1.4 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257132, + "fields": { + "id_car_serie": 64828, + "name": "1.4 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257133, + "fields": { + "id_car_serie": 64828, + "name": "1.4 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257134, + "fields": { + "id_car_serie": 64828, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257135, + "fields": { + "id_car_serie": 47975, + "name": "1.4 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257136, + "fields": { + "id_car_serie": 47975, + "name": "1.4 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257137, + "fields": { + "id_car_serie": 47975, + "name": "1.4 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257138, + "fields": { + "id_car_serie": 47975, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257139, + "fields": { + "id_car_serie": 64829, + "name": "1.4 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257140, + "fields": { + "id_car_serie": 64829, + "name": "1.4 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257141, + "fields": { + "id_car_serie": 64829, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257142, + "fields": { + "id_car_serie": 64829, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257143, + "fields": { + "id_car_serie": 63455, + "name": "1.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257144, + "fields": { + "id_car_serie": 63455, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257145, + "fields": { + "id_car_serie": 63455, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257146, + "fields": { + "id_car_serie": 64830, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257147, + "fields": { + "id_car_serie": 64830, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257148, + "fields": { + "id_car_serie": 63817, + "name": "1.4 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257149, + "fields": { + "id_car_serie": 63817, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257150, + "fields": { + "id_car_serie": 63818, + "name": "1.4 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257151, + "fields": { + "id_car_serie": 63818, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257152, + "fields": { + "id_car_serie": 64831, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257153, + "fields": { + "id_car_serie": 64831, + "name": "1.9 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257154, + "fields": { + "id_car_serie": 63456, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257155, + "fields": { + "id_car_serie": 63039, + "name": "2.4 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257156, + "fields": { + "id_car_serie": 63039, + "name": "3.0 AT (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257157, + "fields": { + "id_car_serie": 63040, + "name": "0.8 MT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257158, + "fields": { + "id_car_serie": 63957, + "name": "0.8 MT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257159, + "fields": { + "id_car_serie": 63958, + "name": "1.2 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257160, + "fields": { + "id_car_serie": 63958, + "name": "1.4 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257161, + "fields": { + "id_car_serie": 63958, + "name": "1.4 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257162, + "fields": { + "id_car_serie": 63958, + "name": "1.4 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257163, + "fields": { + "id_car_serie": 63958, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257164, + "fields": { + "id_car_serie": 63959, + "name": "1.4 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257165, + "fields": { + "id_car_serie": 63959, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257166, + "fields": { + "id_car_serie": 63959, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257167, + "fields": { + "id_car_serie": 63959, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257168, + "fields": { + "id_car_serie": 63959, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257169, + "fields": { + "id_car_serie": 63959, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257170, + "fields": { + "id_car_serie": 63959, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257171, + "fields": { + "id_car_serie": 63959, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257172, + "fields": { + "id_car_serie": 63959, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257173, + "fields": { + "id_car_serie": 63959, + "name": "2.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257174, + "fields": { + "id_car_serie": 63042, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257175, + "fields": { + "id_car_serie": 63042, + "name": "1.6 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257176, + "fields": { + "id_car_serie": 63042, + "name": "1.8 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257177, + "fields": { + "id_car_serie": 63042, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257178, + "fields": { + "id_car_serie": 63042, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257179, + "fields": { + "id_car_serie": 63960, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257180, + "fields": { + "id_car_serie": 63960, + "name": "1.5 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257181, + "fields": { + "id_car_serie": 63960, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257182, + "fields": { + "id_car_serie": 63960, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257183, + "fields": { + "id_car_serie": 63960, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257184, + "fields": { + "id_car_serie": 63961, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257185, + "fields": { + "id_car_serie": 63961, + "name": "1.0 AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257186, + "fields": { + "id_car_serie": 63961, + "name": "1.0 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257187, + "fields": { + "id_car_serie": 63961, + "name": "1.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257188, + "fields": { + "id_car_serie": 63043, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257189, + "fields": { + "id_car_serie": 63043, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257190, + "fields": { + "id_car_serie": 63962, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257191, + "fields": { + "id_car_serie": 63962, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257192, + "fields": { + "id_car_serie": 63962, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257193, + "fields": { + "id_car_serie": 63962, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257194, + "fields": { + "id_car_serie": 63962, + "name": "1.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257195, + "fields": { + "id_car_serie": 63044, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257196, + "fields": { + "id_car_serie": 63044, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257197, + "fields": { + "id_car_serie": 63044, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257198, + "fields": { + "id_car_serie": 63044, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257199, + "fields": { + "id_car_serie": 63044, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257200, + "fields": { + "id_car_serie": 63044, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257201, + "fields": { + "id_car_serie": 63044, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257202, + "fields": { + "id_car_serie": 63044, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257203, + "fields": { + "id_car_serie": 63044, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257204, + "fields": { + "id_car_serie": 63044, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257205, + "fields": { + "id_car_serie": 63963, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257206, + "fields": { + "id_car_serie": 63963, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257207, + "fields": { + "id_car_serie": 63963, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257208, + "fields": { + "id_car_serie": 63963, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257209, + "fields": { + "id_car_serie": 63963, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257210, + "fields": { + "id_car_serie": 63963, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257211, + "fields": { + "id_car_serie": 63963, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257212, + "fields": { + "id_car_serie": 63963, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257213, + "fields": { + "id_car_serie": 63963, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257214, + "fields": { + "id_car_serie": 63963, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257215, + "fields": { + "id_car_serie": 63964, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257216, + "fields": { + "id_car_serie": 63964, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257217, + "fields": { + "id_car_serie": 63964, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257218, + "fields": { + "id_car_serie": 63964, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257219, + "fields": { + "id_car_serie": 63964, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257220, + "fields": { + "id_car_serie": 63964, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257221, + "fields": { + "id_car_serie": 63964, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257222, + "fields": { + "id_car_serie": 63964, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257223, + "fields": { + "id_car_serie": 63964, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257224, + "fields": { + "id_car_serie": 63045, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257225, + "fields": { + "id_car_serie": 63045, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257226, + "fields": { + "id_car_serie": 63462, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257227, + "fields": { + "id_car_serie": 63462, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257228, + "fields": { + "id_car_serie": 63463, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257229, + "fields": { + "id_car_serie": 63463, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257230, + "fields": { + "id_car_serie": 63464, + "name": "1.3 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257231, + "fields": { + "id_car_serie": 63464, + "name": "1.3 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257232, + "fields": { + "id_car_serie": 63464, + "name": "1.3 AT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257233, + "fields": { + "id_car_serie": 63464, + "name": "1.3 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257234, + "fields": { + "id_car_serie": 63464, + "name": "1.3 MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257235, + "fields": { + "id_car_serie": 64832, + "name": "0.7 AT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257236, + "fields": { + "id_car_serie": 64832, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257237, + "fields": { + "id_car_serie": 64832, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257238, + "fields": { + "id_car_serie": 64832, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257239, + "fields": { + "id_car_serie": 64833, + "name": "1.0 CVT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257240, + "fields": { + "id_car_serie": 64833, + "name": "1.0 CVT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257241, + "fields": { + "id_car_serie": 63465, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257242, + "fields": { + "id_car_serie": 63465, + "name": "1.5 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257243, + "fields": { + "id_car_serie": 64834, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257244, + "fields": { + "id_car_serie": 64834, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257245, + "fields": { + "id_car_serie": 64835, + "name": "1.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257246, + "fields": { + "id_car_serie": 64835, + "name": "1.0 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257247, + "fields": { + "id_car_serie": 64836, + "name": "1.0 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257248, + "fields": { + "id_car_serie": 64836, + "name": "1.0 AT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257249, + "fields": { + "id_car_serie": 63466, + "name": "1.8 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257250, + "fields": { + "id_car_serie": 63466, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257251, + "fields": { + "id_car_serie": 63466, + "name": "2.0 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257252, + "fields": { + "id_car_serie": 63466, + "name": "2.2 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257253, + "fields": { + "id_car_serie": 63466, + "name": "2.2 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257254, + "fields": { + "id_car_serie": 63466, + "name": "2.2 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257255, + "fields": { + "id_car_serie": 63466, + "name": "2.2 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257256, + "fields": { + "id_car_serie": 63466, + "name": "2.2 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257257, + "fields": { + "id_car_serie": 63466, + "name": "2.2 AT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257258, + "fields": { + "id_car_serie": 63467, + "name": "1.8 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257259, + "fields": { + "id_car_serie": 63467, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257260, + "fields": { + "id_car_serie": 63467, + "name": "2.0 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257261, + "fields": { + "id_car_serie": 63467, + "name": "2.0 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257262, + "fields": { + "id_car_serie": 63467, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257263, + "fields": { + "id_car_serie": 63467, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257264, + "fields": { + "id_car_serie": 63467, + "name": "2.0 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257265, + "fields": { + "id_car_serie": 63467, + "name": "2.0 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257266, + "fields": { + "id_car_serie": 63467, + "name": "2.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257267, + "fields": { + "id_car_serie": 63467, + "name": "2.0 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257268, + "fields": { + "id_car_serie": 63467, + "name": "2.2 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257269, + "fields": { + "id_car_serie": 63467, + "name": "2.2 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257270, + "fields": { + "id_car_serie": 63467, + "name": "2.2 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257271, + "fields": { + "id_car_serie": 63467, + "name": "2.2 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257272, + "fields": { + "id_car_serie": 63467, + "name": "2.2 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257273, + "fields": { + "id_car_serie": 63468, + "name": "0.7 AT 4WD (39 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257274, + "fields": { + "id_car_serie": 63468, + "name": "0.7 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257275, + "fields": { + "id_car_serie": 63468, + "name": "0.7 MT 4WD (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257276, + "fields": { + "id_car_serie": 63468, + "name": "0.7 AT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257277, + "fields": { + "id_car_serie": 63468, + "name": "0.7 MT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257278, + "fields": { + "id_car_serie": 63468, + "name": "0.7 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257279, + "fields": { + "id_car_serie": 63468, + "name": "0.7 AT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257280, + "fields": { + "id_car_serie": 63468, + "name": "0.7 AT 4WD (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257281, + "fields": { + "id_car_serie": 63468, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257282, + "fields": { + "id_car_serie": 63468, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257283, + "fields": { + "id_car_serie": 63469, + "name": "0.7 MT 4WD (43 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257284, + "fields": { + "id_car_serie": 63469, + "name": "0.7 AT (43 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257285, + "fields": { + "id_car_serie": 63469, + "name": "0.7 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257286, + "fields": { + "id_car_serie": 63469, + "name": "0.7 MT 4WD (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257287, + "fields": { + "id_car_serie": 63469, + "name": "0.7 AT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257288, + "fields": { + "id_car_serie": 63469, + "name": "0.7 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257289, + "fields": { + "id_car_serie": 63469, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257290, + "fields": { + "id_car_serie": 63469, + "name": "0.7 AT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257291, + "fields": { + "id_car_serie": 63469, + "name": "0.7 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257292, + "fields": { + "id_car_serie": 63469, + "name": "0.7 AT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257293, + "fields": { + "id_car_serie": 63469, + "name": "0.7 AT 4WD (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257294, + "fields": { + "id_car_serie": 63469, + "name": "0.7 AT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257295, + "fields": { + "id_car_serie": 63469, + "name": "0.7 AT 4WD (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257296, + "fields": { + "id_car_serie": 63469, + "name": "0.7 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257297, + "fields": { + "id_car_serie": 63469, + "name": "0.7 MT 4WD (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257298, + "fields": { + "id_car_serie": 63469, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257299, + "fields": { + "id_car_serie": 63469, + "name": "1.3 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257300, + "fields": { + "id_car_serie": 63469, + "name": "1.3 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257301, + "fields": { + "id_car_serie": 63469, + "name": "1.3 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257302, + "fields": { + "id_car_serie": 63469, + "name": "1.3 AT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257303, + "fields": { + "id_car_serie": 63469, + "name": "1.3 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257304, + "fields": { + "id_car_serie": 63469, + "name": "1.3 MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257305, + "fields": { + "id_car_serie": 63470, + "name": "0.7 MT 4WD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257306, + "fields": { + "id_car_serie": 63470, + "name": "0.7 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257307, + "fields": { + "id_car_serie": 63470, + "name": "0.7 MT 4WD (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257308, + "fields": { + "id_car_serie": 63470, + "name": "0.7 AT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257309, + "fields": { + "id_car_serie": 63470, + "name": "0.7 AT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257310, + "fields": { + "id_car_serie": 63470, + "name": "0.7 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257311, + "fields": { + "id_car_serie": 63470, + "name": "0.7 MT 4WD (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257312, + "fields": { + "id_car_serie": 63470, + "name": "0.7 AT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257313, + "fields": { + "id_car_serie": 64837, + "name": "0.7 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257314, + "fields": { + "id_car_serie": 64837, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257315, + "fields": { + "id_car_serie": 64837, + "name": "0.7 AT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257316, + "fields": { + "id_car_serie": 64837, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257317, + "fields": { + "id_car_serie": 64837, + "name": "0.7 AT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257318, + "fields": { + "id_car_serie": 64837, + "name": "0.7 MT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257319, + "fields": { + "id_car_serie": 64837, + "name": "0.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257320, + "fields": { + "id_car_serie": 64837, + "name": "1.0 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257321, + "fields": { + "id_car_serie": 64837, + "name": "1.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257322, + "fields": { + "id_car_serie": 64837, + "name": "1.0 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257323, + "fields": { + "id_car_serie": 64837, + "name": "1.0 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257324, + "fields": { + "id_car_serie": 64838, + "name": "0.7 CVT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257325, + "fields": { + "id_car_serie": 64838, + "name": "0.7 CVT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257326, + "fields": { + "id_car_serie": 64839, + "name": "0.7 CVT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257327, + "fields": { + "id_car_serie": 64839, + "name": "0.7 CVT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257328, + "fields": { + "id_car_serie": 64839, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257329, + "fields": { + "id_car_serie": 64840, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257330, + "fields": { + "id_car_serie": 64840, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257331, + "fields": { + "id_car_serie": 63471, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257332, + "fields": { + "id_car_serie": 63471, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257333, + "fields": { + "id_car_serie": 63471, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257334, + "fields": { + "id_car_serie": 63471, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257335, + "fields": { + "id_car_serie": 63472, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257336, + "fields": { + "id_car_serie": 63472, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257337, + "fields": { + "id_car_serie": 63472, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257338, + "fields": { + "id_car_serie": 63472, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257339, + "fields": { + "id_car_serie": 63473, + "name": "0.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257340, + "fields": { + "id_car_serie": 63473, + "name": "0.7 MT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257341, + "fields": { + "id_car_serie": 63473, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257342, + "fields": { + "id_car_serie": 63473, + "name": "0.7 AT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257343, + "fields": { + "id_car_serie": 63473, + "name": "0.7 CVT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257344, + "fields": { + "id_car_serie": 63473, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257345, + "fields": { + "id_car_serie": 63473, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257346, + "fields": { + "id_car_serie": 63473, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257347, + "fields": { + "id_car_serie": 63473, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257348, + "fields": { + "id_car_serie": 64841, + "name": "0.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257349, + "fields": { + "id_car_serie": 64841, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257350, + "fields": { + "id_car_serie": 64841, + "name": "0.9 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257351, + "fields": { + "id_car_serie": 64841, + "name": "0.9 AT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257352, + "fields": { + "id_car_serie": 64841, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257353, + "fields": { + "id_car_serie": 64841, + "name": "1.0 AT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257354, + "fields": { + "id_car_serie": 64842, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257355, + "fields": { + "id_car_serie": 64842, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257356, + "fields": { + "id_car_serie": 64842, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257357, + "fields": { + "id_car_serie": 64843, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257358, + "fields": { + "id_car_serie": 64843, + "name": "0.7 AT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257359, + "fields": { + "id_car_serie": 64843, + "name": "0.7 CVT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257360, + "fields": { + "id_car_serie": 64843, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257361, + "fields": { + "id_car_serie": 64843, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257362, + "fields": { + "id_car_serie": 64844, + "name": "2.8 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257363, + "fields": { + "id_car_serie": 63474, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257364, + "fields": { + "id_car_serie": 63474, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257365, + "fields": { + "id_car_serie": 63474, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257366, + "fields": { + "id_car_serie": 63474, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257367, + "fields": { + "id_car_serie": 63475, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257368, + "fields": { + "id_car_serie": 63475, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257369, + "fields": { + "id_car_serie": 63475, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257370, + "fields": { + "id_car_serie": 63475, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257371, + "fields": { + "id_car_serie": 63476, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257372, + "fields": { + "id_car_serie": 63476, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257373, + "fields": { + "id_car_serie": 63476, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257374, + "fields": { + "id_car_serie": 64845, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257375, + "fields": { + "id_car_serie": 64845, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257376, + "fields": { + "id_car_serie": 64845, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257377, + "fields": { + "id_car_serie": 64845, + "name": "0.7 AT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257378, + "fields": { + "id_car_serie": 64845, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257379, + "fields": { + "id_car_serie": 64845, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257380, + "fields": { + "id_car_serie": 64846, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257381, + "fields": { + "id_car_serie": 64846, + "name": "0.7 AT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257382, + "fields": { + "id_car_serie": 64846, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257383, + "fields": { + "id_car_serie": 63457, + "name": "2.5 CVT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257384, + "fields": { + "id_car_serie": 63458, + "name": "2.5 CVT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257385, + "fields": { + "id_car_serie": 63459, + "name": "2.5 CVT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257386, + "fields": { + "id_car_serie": 63460, + "name": "2.4 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257387, + "fields": { + "id_car_serie": 63460, + "name": "2.4 AT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257388, + "fields": { + "id_car_serie": 63461, + "name": "2.4 AT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257389, + "fields": { + "id_car_serie": 63461, + "name": "2.4 AT 4WD (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257390, + "fields": { + "id_car_serie": 63477, + "name": "0.5 MT (18 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257391, + "fields": { + "id_car_serie": 63774, + "name": "1.8 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257392, + "fields": { + "id_car_serie": 63775, + "name": "1.8 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257393, + "fields": { + "id_car_serie": 63478, + "name": "0.7 MT (31 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257394, + "fields": { + "id_car_serie": 63478, + "name": "0.7 AT (31 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257395, + "fields": { + "id_car_serie": 63478, + "name": "0.7 MT (33 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257396, + "fields": { + "id_car_serie": 63478, + "name": "0.7 AT (33 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257397, + "fields": { + "id_car_serie": 63479, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257398, + "fields": { + "id_car_serie": 64847, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257399, + "fields": { + "id_car_serie": 63480, + "name": "0.7 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257400, + "fields": { + "id_car_serie": 63480, + "name": "0.7 AT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257401, + "fields": { + "id_car_serie": 63480, + "name": "0.7 MT 4WD (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257402, + "fields": { + "id_car_serie": 63480, + "name": "0.7 AT 4WD (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257403, + "fields": { + "id_car_serie": 63480, + "name": "0.7 AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257404, + "fields": { + "id_car_serie": 63480, + "name": "0.7 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257405, + "fields": { + "id_car_serie": 63480, + "name": "0.7 AT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257406, + "fields": { + "id_car_serie": 63480, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257407, + "fields": { + "id_car_serie": 63480, + "name": "0.7 AT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257408, + "fields": { + "id_car_serie": 63480, + "name": "0.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257409, + "fields": { + "id_car_serie": 63480, + "name": "0.7 MT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257410, + "fields": { + "id_car_serie": 63480, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257411, + "fields": { + "id_car_serie": 63480, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257412, + "fields": { + "id_car_serie": 63480, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257413, + "fields": { + "id_car_serie": 63480, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257414, + "fields": { + "id_car_serie": 63480, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257415, + "fields": { + "id_car_serie": 63481, + "name": "1.0 CVT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257416, + "fields": { + "id_car_serie": 63481, + "name": "1.0 (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257417, + "fields": { + "id_car_serie": 63482, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257418, + "fields": { + "id_car_serie": 63482, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257419, + "fields": { + "id_car_serie": 63482, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257420, + "fields": { + "id_car_serie": 63482, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257421, + "fields": { + "id_car_serie": 63483, + "name": "2.6 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257422, + "fields": { + "id_car_serie": 63483, + "name": "2.6 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257423, + "fields": { + "id_car_serie": 63484, + "name": "2.3 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257424, + "fields": { + "id_car_serie": 63484, + "name": "2.3 AMT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257425, + "fields": { + "id_car_serie": 63485, + "name": "2.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257426, + "fields": { + "id_car_serie": 63485, + "name": "2.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257427, + "fields": { + "id_car_serie": 63485, + "name": "2.4 MT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257428, + "fields": { + "id_car_serie": 63485, + "name": "2.4 AT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257429, + "fields": { + "id_car_serie": 63485, + "name": "2.4 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257430, + "fields": { + "id_car_serie": 63486, + "name": "1.2 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257431, + "fields": { + "id_car_serie": 63487, + "name": "2.0 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257432, + "fields": { + "id_car_serie": 63487, + "name": "2.0 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257433, + "fields": { + "id_car_serie": 63487, + "name": "2.4 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257434, + "fields": { + "id_car_serie": 63487, + "name": "2.4 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257435, + "fields": { + "id_car_serie": 63487, + "name": "2.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257436, + "fields": { + "id_car_serie": 63487, + "name": "2.4 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257437, + "fields": { + "id_car_serie": 63487, + "name": "2.8 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257438, + "fields": { + "id_car_serie": 63487, + "name": "2.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257439, + "fields": { + "id_car_serie": 63488, + "name": "2.0 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257440, + "fields": { + "id_car_serie": 63488, + "name": "2.0 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257441, + "fields": { + "id_car_serie": 63488, + "name": "2.4 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257442, + "fields": { + "id_car_serie": 63488, + "name": "2.4 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257443, + "fields": { + "id_car_serie": 64848, + "name": "2.0 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257444, + "fields": { + "id_car_serie": 64848, + "name": "2.0 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257445, + "fields": { + "id_car_serie": 63489, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257446, + "fields": { + "id_car_serie": 63489, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257447, + "fields": { + "id_car_serie": 63489, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257448, + "fields": { + "id_car_serie": 63489, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257449, + "fields": { + "id_car_serie": 63489, + "name": "1.7 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257450, + "fields": { + "id_car_serie": 64849, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257451, + "fields": { + "id_car_serie": 64849, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257452, + "fields": { + "id_car_serie": 64849, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257453, + "fields": { + "id_car_serie": 64849, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257454, + "fields": { + "id_car_serie": 64849, + "name": "1.7 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257455, + "fields": { + "id_car_serie": 64850, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257456, + "fields": { + "id_car_serie": 64850, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257457, + "fields": { + "id_car_serie": 64850, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257458, + "fields": { + "id_car_serie": 64850, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257459, + "fields": { + "id_car_serie": 64850, + "name": "1.7 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257460, + "fields": { + "id_car_serie": 63490, + "name": "2.0 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257461, + "fields": { + "id_car_serie": 63490, + "name": "2.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257462, + "fields": { + "id_car_serie": 64851, + "name": "4.0 MT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257463, + "fields": { + "id_car_serie": 63491, + "name": "5.8 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257464, + "fields": { + "id_car_serie": 63491, + "name": "5.8 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257465, + "fields": { + "id_car_serie": 64852, + "name": "5.3 MT (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257466, + "fields": { + "id_car_serie": 63492, + "name": "2.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257467, + "fields": { + "id_car_serie": 63492, + "name": "2.3 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257468, + "fields": { + "id_car_serie": 63492, + "name": "2.5 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257469, + "fields": { + "id_car_serie": 63492, + "name": "2.7 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257470, + "fields": { + "id_car_serie": 63492, + "name": "2.7 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257471, + "fields": { + "id_car_serie": 63492, + "name": "3.1 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257472, + "fields": { + "id_car_serie": 63492, + "name": "3.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257473, + "fields": { + "id_car_serie": 64853, + "name": "2.0 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257474, + "fields": { + "id_car_serie": 64853, + "name": "2.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257475, + "fields": { + "id_car_serie": 64853, + "name": "2.3 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257476, + "fields": { + "id_car_serie": 64853, + "name": "2.5 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257477, + "fields": { + "id_car_serie": 64853, + "name": "2.7 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257478, + "fields": { + "id_car_serie": 64853, + "name": "2.7 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257479, + "fields": { + "id_car_serie": 64853, + "name": "2.7 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257480, + "fields": { + "id_car_serie": 64853, + "name": "3.1 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257481, + "fields": { + "id_car_serie": 64853, + "name": "3.2 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257482, + "fields": { + "id_car_serie": 64853, + "name": "3.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257483, + "fields": { + "id_car_serie": 63493, + "name": "3.9 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257484, + "fields": { + "id_car_serie": 63493, + "name": "4.1 AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257485, + "fields": { + "id_car_serie": 64854, + "name": "0.9 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257486, + "fields": { + "id_car_serie": 64855, + "name": "2.0 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257487, + "fields": { + "id_car_serie": 64855, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257488, + "fields": { + "id_car_serie": 64855, + "name": "2.4 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257500, + "fields": { + "id_car_serie": 63495, + "name": "6.8 MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257501, + "fields": { + "id_car_serie": 63495, + "name": "6.8 AT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257502, + "fields": { + "id_car_serie": 63495, + "name": "7.2 MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257503, + "fields": { + "id_car_serie": 63495, + "name": "7.2 AT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257504, + "fields": { + "id_car_serie": 63496, + "name": "1.5 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257505, + "fields": { + "id_car_serie": 63496, + "name": "1.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257506, + "fields": { + "id_car_serie": 64856, + "name": "1.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257507, + "fields": { + "id_car_serie": 64856, + "name": "1.5 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257508, + "fields": { + "id_car_serie": 63497, + "name": "5.9 AT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257509, + "fields": { + "id_car_serie": 63497, + "name": "6.3 AT (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257510, + "fields": { + "id_car_serie": 63497, + "name": "6.3 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257511, + "fields": { + "id_car_serie": 64857, + "name": "5.3 MT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257512, + "fields": { + "id_car_serie": 64857, + "name": "5.3 AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257513, + "fields": { + "id_car_serie": 64857, + "name": "5.3 MT (289 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257514, + "fields": { + "id_car_serie": 64857, + "name": "5.3 AT (289 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257515, + "fields": { + "id_car_serie": 64857, + "name": "5.3 MT (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257516, + "fields": { + "id_car_serie": 64857, + "name": "5.3 AT (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257517, + "fields": { + "id_car_serie": 64857, + "name": "5.7 MT (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257518, + "fields": { + "id_car_serie": 64857, + "name": "5.7 AT (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257519, + "fields": { + "id_car_serie": 64857, + "name": "5.9 MT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257520, + "fields": { + "id_car_serie": 64857, + "name": "5.9 AT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257521, + "fields": { + "id_car_serie": 64857, + "name": "5.9 MT (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257522, + "fields": { + "id_car_serie": 64857, + "name": "5.9 AT (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257523, + "fields": { + "id_car_serie": 64857, + "name": "5.9 AT (338 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257524, + "fields": { + "id_car_serie": 64857, + "name": "6.3 AT (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257525, + "fields": { + "id_car_serie": 64857, + "name": "6.3 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257526, + "fields": { + "id_car_serie": 64858, + "name": "5.9 AT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257527, + "fields": { + "id_car_serie": 64858, + "name": "6.3 AT (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257528, + "fields": { + "id_car_serie": 64858, + "name": "6.3 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257529, + "fields": { + "id_car_serie": 64859, + "name": "3.7 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257530, + "fields": { + "id_car_serie": 64859, + "name": "3.7 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257531, + "fields": { + "id_car_serie": 64859, + "name": "3.7 MT 4WD (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257532, + "fields": { + "id_car_serie": 64859, + "name": "5.2 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257533, + "fields": { + "id_car_serie": 64859, + "name": "5.2 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257534, + "fields": { + "id_car_serie": 64859, + "name": "5.2 MT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257535, + "fields": { + "id_car_serie": 64859, + "name": "5.9 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257536, + "fields": { + "id_car_serie": 64859, + "name": "5.9 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257537, + "fields": { + "id_car_serie": 64859, + "name": "5.9 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257538, + "fields": { + "id_car_serie": 63498, + "name": "3.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257539, + "fields": { + "id_car_serie": 64860, + "name": "2.2 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257540, + "fields": { + "id_car_serie": 64860, + "name": "2.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257541, + "fields": { + "id_car_serie": 64860, + "name": "2.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257542, + "fields": { + "id_car_serie": 64860, + "name": "3.9 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257543, + "fields": { + "id_car_serie": 64860, + "name": "3.9 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257544, + "fields": { + "id_car_serie": 64860, + "name": "3.9 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257545, + "fields": { + "id_car_serie": 64860, + "name": "3.9 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257546, + "fields": { + "id_car_serie": 64860, + "name": "3.9 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257547, + "fields": { + "id_car_serie": 64860, + "name": "5.2 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257548, + "fields": { + "id_car_serie": 64860, + "name": "5.2 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257549, + "fields": { + "id_car_serie": 64860, + "name": "5.2 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257550, + "fields": { + "id_car_serie": 64860, + "name": "5.2 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257551, + "fields": { + "id_car_serie": 64860, + "name": "5.2 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257552, + "fields": { + "id_car_serie": 63499, + "name": "3.7 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257553, + "fields": { + "id_car_serie": 63499, + "name": "3.7 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257554, + "fields": { + "id_car_serie": 63499, + "name": "3.7 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257555, + "fields": { + "id_car_serie": 63499, + "name": "3.7 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257556, + "fields": { + "id_car_serie": 63499, + "name": "3.7 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257557, + "fields": { + "id_car_serie": 63499, + "name": "3.7 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257558, + "fields": { + "id_car_serie": 63499, + "name": "5.2 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257559, + "fields": { + "id_car_serie": 63499, + "name": "5.2 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257560, + "fields": { + "id_car_serie": 63499, + "name": "5.2 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257561, + "fields": { + "id_car_serie": 63499, + "name": "5.2 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257562, + "fields": { + "id_car_serie": 63499, + "name": "5.2 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257563, + "fields": { + "id_car_serie": 63499, + "name": "5.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257564, + "fields": { + "id_car_serie": 63499, + "name": "5.2 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257565, + "fields": { + "id_car_serie": 63499, + "name": "5.2 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257566, + "fields": { + "id_car_serie": 63499, + "name": "5.9 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257567, + "fields": { + "id_car_serie": 63499, + "name": "5.9 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257568, + "fields": { + "id_car_serie": 63499, + "name": "5.9 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257569, + "fields": { + "id_car_serie": 63499, + "name": "5.9 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257570, + "fields": { + "id_car_serie": 63499, + "name": "5.9 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257571, + "fields": { + "id_car_serie": 64861, + "name": "3.7 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257572, + "fields": { + "id_car_serie": 64861, + "name": "3.7 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257573, + "fields": { + "id_car_serie": 64861, + "name": "3.7 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257574, + "fields": { + "id_car_serie": 64861, + "name": "3.7 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257575, + "fields": { + "id_car_serie": 64861, + "name": "3.7 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257576, + "fields": { + "id_car_serie": 64861, + "name": "3.7 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257577, + "fields": { + "id_car_serie": 64861, + "name": "5.2 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257578, + "fields": { + "id_car_serie": 64861, + "name": "5.2 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257579, + "fields": { + "id_car_serie": 64861, + "name": "5.2 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257580, + "fields": { + "id_car_serie": 64861, + "name": "5.2 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257581, + "fields": { + "id_car_serie": 64861, + "name": "5.2 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257582, + "fields": { + "id_car_serie": 64861, + "name": "5.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257583, + "fields": { + "id_car_serie": 64861, + "name": "5.2 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257584, + "fields": { + "id_car_serie": 64861, + "name": "5.2 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257585, + "fields": { + "id_car_serie": 64861, + "name": "5.2 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257586, + "fields": { + "id_car_serie": 64861, + "name": "5.9 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257587, + "fields": { + "id_car_serie": 64861, + "name": "5.9 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257588, + "fields": { + "id_car_serie": 64861, + "name": "5.9 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257589, + "fields": { + "id_car_serie": 64861, + "name": "5.9 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257590, + "fields": { + "id_car_serie": 64861, + "name": "5.9 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257591, + "fields": { + "id_car_serie": 64862, + "name": "3.7 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257592, + "fields": { + "id_car_serie": 64862, + "name": "3.7 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257593, + "fields": { + "id_car_serie": 64862, + "name": "3.7 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257594, + "fields": { + "id_car_serie": 64862, + "name": "5.2 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257595, + "fields": { + "id_car_serie": 64862, + "name": "5.2 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257596, + "fields": { + "id_car_serie": 63500, + "name": "3.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257597, + "fields": { + "id_car_serie": 64863, + "name": "3.0 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257598, + "fields": { + "id_car_serie": 64863, + "name": "3.0 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257599, + "fields": { + "id_car_serie": 64863, + "name": "3.6 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257600, + "fields": { + "id_car_serie": 64863, + "name": "3.6 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257601, + "fields": { + "id_car_serie": 64863, + "name": "5.7 AT (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257602, + "fields": { + "id_car_serie": 64863, + "name": "5.7 AT 4WD (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257603, + "fields": { + "id_car_serie": 64864, + "name": "3.7 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257604, + "fields": { + "id_car_serie": 64864, + "name": "3.7 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257605, + "fields": { + "id_car_serie": 64864, + "name": "4.7 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257606, + "fields": { + "id_car_serie": 64864, + "name": "4.7 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257607, + "fields": { + "id_car_serie": 64864, + "name": "4.7 MT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257608, + "fields": { + "id_car_serie": 64864, + "name": "5.7 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257609, + "fields": { + "id_car_serie": 64864, + "name": "5.7 AT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257610, + "fields": { + "id_car_serie": 64864, + "name": "5.7 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257611, + "fields": { + "id_car_serie": 64864, + "name": "5.7 MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257612, + "fields": { + "id_car_serie": 64864, + "name": "5.7 AT 4WD (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257613, + "fields": { + "id_car_serie": 64864, + "name": "5.7 MT 4WD (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257614, + "fields": { + "id_car_serie": 64864, + "name": "5.9 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257615, + "fields": { + "id_car_serie": 64864, + "name": "8.3 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257616, + "fields": { + "id_car_serie": 64864, + "name": "8.3 MT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257617, + "fields": { + "id_car_serie": 64864, + "name": "5.9 AT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257618, + "fields": { + "id_car_serie": 64864, + "name": "5.9 MT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257619, + "fields": { + "id_car_serie": 64864, + "name": "6.7 AT 4WD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257620, + "fields": { + "id_car_serie": 64864, + "name": "6.7 MT 4WD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257621, + "fields": { + "id_car_serie": 64865, + "name": "2.2 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257622, + "fields": { + "id_car_serie": 64865, + "name": "2.2 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257623, + "fields": { + "id_car_serie": 64865, + "name": "2.2 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257624, + "fields": { + "id_car_serie": 64865, + "name": "2.2 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257625, + "fields": { + "id_car_serie": 64865, + "name": "2.2 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257626, + "fields": { + "id_car_serie": 64865, + "name": "2.2 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257627, + "fields": { + "id_car_serie": 64865, + "name": "2.2 MT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257628, + "fields": { + "id_car_serie": 64865, + "name": "2.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257629, + "fields": { + "id_car_serie": 64865, + "name": "2.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257630, + "fields": { + "id_car_serie": 64865, + "name": "2.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257631, + "fields": { + "id_car_serie": 64865, + "name": "2.5 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257632, + "fields": { + "id_car_serie": 64865, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257633, + "fields": { + "id_car_serie": 64865, + "name": "2.5 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257634, + "fields": { + "id_car_serie": 64865, + "name": "2.5 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257635, + "fields": { + "id_car_serie": 64865, + "name": "2.5 AT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257636, + "fields": { + "id_car_serie": 64865, + "name": "3.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257637, + "fields": { + "id_car_serie": 64865, + "name": "3.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257638, + "fields": { + "id_car_serie": 64866, + "name": "8.0 MT (456 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257639, + "fields": { + "id_car_serie": 64867, + "name": "2.3 MT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257640, + "fields": { + "id_car_serie": 64867, + "name": "2.5 AT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257641, + "fields": { + "id_car_serie": 64867, + "name": "2.5 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257642, + "fields": { + "id_car_serie": 63501, + "name": "3.8 MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257643, + "fields": { + "id_car_serie": 63502, + "name": "3.6 MT 4WD (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257644, + "fields": { + "id_car_serie": 64868, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257645, + "fields": { + "id_car_serie": 63503, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257646, + "fields": { + "id_car_serie": 63503, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257647, + "fields": { + "id_car_serie": 63504, + "name": "1.8 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257648, + "fields": { + "id_car_serie": 64869, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257649, + "fields": { + "id_car_serie": 64869, + "name": "1.6 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257650, + "fields": { + "id_car_serie": 64869, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257651, + "fields": { + "id_car_serie": 64869, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257652, + "fields": { + "id_car_serie": 64870, + "name": "2.4 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257653, + "fields": { + "id_car_serie": 64870, + "name": "2.5 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257654, + "fields": { + "id_car_serie": 64870, + "name": "3.0 MT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257655, + "fields": { + "id_car_serie": 63505, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257656, + "fields": { + "id_car_serie": 63505, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257657, + "fields": { + "id_car_serie": 64871, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257658, + "fields": { + "id_car_serie": 64871, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257659, + "fields": { + "id_car_serie": 64871, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257660, + "fields": { + "id_car_serie": 64871, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257661, + "fields": { + "id_car_serie": 63506, + "name": "2.0 MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257662, + "fields": { + "id_car_serie": 63507, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257663, + "fields": { + "id_car_serie": 63507, + "name": "1.8 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257664, + "fields": { + "id_car_serie": 63507, + "name": "1.8 MT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257665, + "fields": { + "id_car_serie": 63508, + "name": "2.5 MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257666, + "fields": { + "id_car_serie": 63508, + "name": "2.5 MT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257667, + "fields": { + "id_car_serie": 63509, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257668, + "fields": { + "id_car_serie": 64873, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257669, + "fields": { + "id_car_serie": 64873, + "name": "1.6 AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257670, + "fields": { + "id_car_serie": 64873, + "name": "1.6 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257671, + "fields": { + "id_car_serie": 64873, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257672, + "fields": { + "id_car_serie": 64873, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257673, + "fields": { + "id_car_serie": 64873, + "name": "2.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257674, + "fields": { + "id_car_serie": 64873, + "name": "1.6 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257675, + "fields": { + "id_car_serie": 64874, + "name": "2.0 MT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257676, + "fields": { + "id_car_serie": 64874, + "name": "2.0 MT 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257677, + "fields": { + "id_car_serie": 64875, + "name": "2.0 MT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257678, + "fields": { + "id_car_serie": 64875, + "name": "2.0 MT 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257679, + "fields": { + "id_car_serie": 64876, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257680, + "fields": { + "id_car_serie": 64876, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257681, + "fields": { + "id_car_serie": 64876, + "name": "2.4 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257682, + "fields": { + "id_car_serie": 64876, + "name": "2.4 AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257683, + "fields": { + "id_car_serie": 64876, + "name": "2.4 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257684, + "fields": { + "id_car_serie": 64876, + "name": "2.4 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257685, + "fields": { + "id_car_serie": 63510, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257686, + "fields": { + "id_car_serie": 63510, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257687, + "fields": { + "id_car_serie": 63510, + "name": "2.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257688, + "fields": { + "id_car_serie": 63510, + "name": "2.0 AT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257689, + "fields": { + "id_car_serie": 63510, + "name": "2.0 MT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257690, + "fields": { + "id_car_serie": 63511, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257691, + "fields": { + "id_car_serie": 63511, + "name": "2.0 MT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257692, + "fields": { + "id_car_serie": 63511, + "name": "2.0 AT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257693, + "fields": { + "id_car_serie": 63512, + "name": "5.0 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257694, + "fields": { + "id_car_serie": 63512, + "name": "5.0 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257695, + "fields": { + "id_car_serie": 64877, + "name": "5.0 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257696, + "fields": { + "id_car_serie": 64877, + "name": "5.0 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257697, + "fields": { + "id_car_serie": 63513, + "name": "5.0 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257698, + "fields": { + "id_car_serie": 63513, + "name": "5.0 AT (183 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257699, + "fields": { + "id_car_serie": 63513, + "name": "5.0 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257700, + "fields": { + "id_car_serie": 63513, + "name": "5.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257701, + "fields": { + "id_car_serie": 63513, + "name": "5.0 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257702, + "fields": { + "id_car_serie": 63513, + "name": "5.7 AT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257703, + "fields": { + "id_car_serie": 63513, + "name": "5.7 AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257704, + "fields": { + "id_car_serie": 63513, + "name": "7.4 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257705, + "fields": { + "id_car_serie": 64878, + "name": "5.0 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257706, + "fields": { + "id_car_serie": 64878, + "name": "5.0 AT (183 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257707, + "fields": { + "id_car_serie": 64878, + "name": "5.0 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257708, + "fields": { + "id_car_serie": 64879, + "name": "5.0 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257709, + "fields": { + "id_car_serie": 64879, + "name": "5.0 AT (183 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257710, + "fields": { + "id_car_serie": 64879, + "name": "5.0 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257711, + "fields": { + "id_car_serie": 64880, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257714, + "fields": { + "id_car_serie": 63515, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257715, + "fields": { + "id_car_serie": 63515, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257716, + "fields": { + "id_car_serie": 63515, + "name": "2.3 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257717, + "fields": { + "id_car_serie": 64881, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257718, + "fields": { + "id_car_serie": 63776, + "name": "3.4 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257719, + "fields": { + "id_car_serie": 64882, + "name": "3.6 AMT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257720, + "fields": { + "id_car_serie": 64883, + "name": "4.5 AMT (570 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257721, + "fields": { + "id_car_serie": 64884, + "name": "5.5 MT (485 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257722, + "fields": { + "id_car_serie": 63517, + "name": "5.8 MT (515 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257723, + "fields": { + "id_car_serie": 63517, + "name": "5.8 AT (515 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257724, + "fields": { + "id_car_serie": 64885, + "name": "5.8 MT (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257725, + "fields": { + "id_car_serie": 64885, + "name": "5.8 AT (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257726, + "fields": { + "id_car_serie": 64886, + "name": "6.0 AMT (670 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257727, + "fields": { + "id_car_serie": 63518, + "name": "5.8 MT (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257728, + "fields": { + "id_car_serie": 63518, + "name": "5.8 AT (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257729, + "fields": { + "id_car_serie": 63519, + "name": "6.5 AMT (800 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257730, + "fields": { + "id_car_serie": 64887, + "name": "6.5 AMT (800 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257731, + "fields": { + "id_car_serie": 63520, + "name": "3.9 AMT (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257732, + "fields": { + "id_car_serie": 63521, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257733, + "fields": { + "id_car_serie": 63522, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257734, + "fields": { + "id_car_serie": 63522, + "name": "2.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257735, + "fields": { + "id_car_serie": 63522, + "name": "2.9 MT (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257736, + "fields": { + "id_car_serie": 63522, + "name": "2.9 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257737, + "fields": { + "id_car_serie": 63522, + "name": "2.9 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257738, + "fields": { + "id_car_serie": 64888, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257739, + "fields": { + "id_car_serie": 64888, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257740, + "fields": { + "id_car_serie": 64888, + "name": "2.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257741, + "fields": { + "id_car_serie": 64888, + "name": "2.9 MT (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257742, + "fields": { + "id_car_serie": 64888, + "name": "2.9 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257743, + "fields": { + "id_car_serie": 64888, + "name": "2.9 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257744, + "fields": { + "id_car_serie": 63523, + "name": "2.4 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257745, + "fields": { + "id_car_serie": 64889, + "name": "3.9 AMT (720 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257746, + "fields": { + "id_car_serie": 64890, + "name": "6.3 AMT 4WD (660 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257747, + "fields": { + "id_car_serie": 64891, + "name": "3.9 AMT (610 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257748, + "fields": { + "id_car_serie": 64891, + "name": "6.3 AMT 4WD (690 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257749, + "fields": { + "id_car_serie": 63524, + "name": "6.5 AMT (810 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257750, + "fields": { + "id_car_serie": 63525, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257751, + "fields": { + "id_car_serie": 63525, + "name": "1.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257752, + "fields": { + "id_car_serie": 63525, + "name": "1.4 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257753, + "fields": { + "id_car_serie": 63525, + "name": "1.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257754, + "fields": { + "id_car_serie": 64892, + "name": "1.4 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257755, + "fields": { + "id_car_serie": 64892, + "name": "1.4 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257756, + "fields": { + "id_car_serie": 64892, + "name": "1.4 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257757, + "fields": { + "id_car_serie": 64892, + "name": "1.4 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257758, + "fields": { + "id_car_serie": 64892, + "name": "1.4 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257759, + "fields": { + "id_car_serie": 64892, + "name": "1.4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257760, + "fields": { + "id_car_serie": 63526, + "name": "0.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257761, + "fields": { + "id_car_serie": 63526, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257762, + "fields": { + "id_car_serie": 63526, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257763, + "fields": { + "id_car_serie": 63526, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257764, + "fields": { + "id_car_serie": 63526, + "name": "1.3 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257765, + "fields": { + "id_car_serie": 63526, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257778, + "fields": { + "id_car_serie": 64894, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257779, + "fields": { + "id_car_serie": 64894, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257780, + "fields": { + "id_car_serie": 64894, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257781, + "fields": { + "id_car_serie": 64894, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257782, + "fields": { + "id_car_serie": 64894, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257783, + "fields": { + "id_car_serie": 64894, + "name": "1.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257784, + "fields": { + "id_car_serie": 64894, + "name": "2.4 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257785, + "fields": { + "id_car_serie": 64895, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257786, + "fields": { + "id_car_serie": 64895, + "name": "3.6 AT 4WD (283 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257787, + "fields": { + "id_car_serie": 64895, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257788, + "fields": { + "id_car_serie": 64895, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257789, + "fields": { + "id_car_serie": 64895, + "name": "2.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257790, + "fields": { + "id_car_serie": 64896, + "name": "2.4 MT 4WD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257791, + "fields": { + "id_car_serie": 64896, + "name": "2.4 AT 4WD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257792, + "fields": { + "id_car_serie": 64896, + "name": "2.4 AT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257793, + "fields": { + "id_car_serie": 64896, + "name": "2.4 MT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257794, + "fields": { + "id_car_serie": 63777, + "name": "1.0 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257795, + "fields": { + "id_car_serie": 63777, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257797, + "fields": { + "id_car_serie": 47196, + "name": "0.9 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257798, + "fields": { + "id_car_serie": 47196, + "name": "0.9 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257799, + "fields": { + "id_car_serie": 47196, + "name": "1.0 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257801, + "fields": { + "id_car_serie": 47196, + "name": "1.0 MT 4WD (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257802, + "fields": { + "id_car_serie": 47196, + "name": "1.0 MT 4WD (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257804, + "fields": { + "id_car_serie": 47196, + "name": "1.1 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257805, + "fields": { + "id_car_serie": 47196, + "name": "1.1 MT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257806, + "fields": { + "id_car_serie": 47196, + "name": "1.1 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257807, + "fields": { + "id_car_serie": 47196, + "name": "1.3 MT (37 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257808, + "fields": { + "id_car_serie": 64898, + "name": "0.8 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257809, + "fields": { + "id_car_serie": 64898, + "name": "1.0 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257810, + "fields": { + "id_car_serie": 64898, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257811, + "fields": { + "id_car_serie": 64899, + "name": "0.9 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257812, + "fields": { + "id_car_serie": 64899, + "name": "0.9 AMT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257813, + "fields": { + "id_car_serie": 64899, + "name": "1.2 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257814, + "fields": { + "id_car_serie": 64899, + "name": "1.4 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257815, + "fields": { + "id_car_serie": 64899, + "name": "1.4 AMT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257816, + "fields": { + "id_car_serie": 64899, + "name": "1.4 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257817, + "fields": { + "id_car_serie": 64899, + "name": "1.4 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257818, + "fields": { + "id_car_serie": 64899, + "name": "1.3 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257819, + "fields": { + "id_car_serie": 64899, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257820, + "fields": { + "id_car_serie": 64899, + "name": "1.3 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257821, + "fields": { + "id_car_serie": 64899, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257822, + "fields": { + "id_car_serie": 64899, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257823, + "fields": { + "id_car_serie": 64899, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257824, + "fields": { + "id_car_serie": 64900, + "name": "1.4 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257825, + "fields": { + "id_car_serie": 64900, + "name": "1.4 AMT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257826, + "fields": { + "id_car_serie": 64900, + "name": "1.4 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257827, + "fields": { + "id_car_serie": 64900, + "name": "0.9 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257828, + "fields": { + "id_car_serie": 64900, + "name": "0.9 AMT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257829, + "fields": { + "id_car_serie": 64900, + "name": "1.2 AMT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257830, + "fields": { + "id_car_serie": 64900, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257831, + "fields": { + "id_car_serie": 64900, + "name": "1.2 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257832, + "fields": { + "id_car_serie": 64900, + "name": "1.4 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257833, + "fields": { + "id_car_serie": 64900, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257834, + "fields": { + "id_car_serie": 64900, + "name": "1.3 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257835, + "fields": { + "id_car_serie": 64900, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257836, + "fields": { + "id_car_serie": 64900, + "name": "1.3 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257837, + "fields": { + "id_car_serie": 64900, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257838, + "fields": { + "id_car_serie": 64900, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257839, + "fields": { + "id_car_serie": 64900, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257840, + "fields": { + "id_car_serie": 64901, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257841, + "fields": { + "id_car_serie": 64901, + "name": "1.4 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257842, + "fields": { + "id_car_serie": 64901, + "name": "1.4 AMT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257843, + "fields": { + "id_car_serie": 64901, + "name": "1.4 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257844, + "fields": { + "id_car_serie": 64901, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257845, + "fields": { + "id_car_serie": 64901, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257846, + "fields": { + "id_car_serie": 64901, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257847, + "fields": { + "id_car_serie": 64901, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257848, + "fields": { + "id_car_serie": 64902, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257849, + "fields": { + "id_car_serie": 64902, + "name": "1.4 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257850, + "fields": { + "id_car_serie": 64902, + "name": "1.4 AMT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257851, + "fields": { + "id_car_serie": 64902, + "name": "1.4 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257852, + "fields": { + "id_car_serie": 64902, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257853, + "fields": { + "id_car_serie": 64902, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257854, + "fields": { + "id_car_serie": 64902, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257855, + "fields": { + "id_car_serie": 64902, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257856, + "fields": { + "id_car_serie": 64903, + "name": "1.4 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257857, + "fields": { + "id_car_serie": 64903, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257858, + "fields": { + "id_car_serie": 64903, + "name": "1.4 AMT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257859, + "fields": { + "id_car_serie": 64903, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257860, + "fields": { + "id_car_serie": 64903, + "name": "1.4 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257861, + "fields": { + "id_car_serie": 64903, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257862, + "fields": { + "id_car_serie": 64903, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257863, + "fields": { + "id_car_serie": 64903, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257864, + "fields": { + "id_car_serie": 64903, + "name": "1.3 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257865, + "fields": { + "id_car_serie": 64903, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257866, + "fields": { + "id_car_serie": 64903, + "name": "1.9 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257867, + "fields": { + "id_car_serie": 64904, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257868, + "fields": { + "id_car_serie": 64904, + "name": "1.4 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257869, + "fields": { + "id_car_serie": 64904, + "name": "1.4 AMT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257870, + "fields": { + "id_car_serie": 64904, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257871, + "fields": { + "id_car_serie": 64904, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257872, + "fields": { + "id_car_serie": 64904, + "name": "1.4 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257873, + "fields": { + "id_car_serie": 64904, + "name": "1.6 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257874, + "fields": { + "id_car_serie": 64904, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257875, + "fields": { + "id_car_serie": 64904, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257876, + "fields": { + "id_car_serie": 64904, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257877, + "fields": { + "id_car_serie": 64904, + "name": "1.3 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257878, + "fields": { + "id_car_serie": 64904, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257879, + "fields": { + "id_car_serie": 64904, + "name": "1.9 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257880, + "fields": { + "id_car_serie": 64905, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257881, + "fields": { + "id_car_serie": 64905, + "name": "1.2 CVT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257882, + "fields": { + "id_car_serie": 64905, + "name": "1.2 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257883, + "fields": { + "id_car_serie": 64905, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257887, + "fields": { + "id_car_serie": 64906, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257888, + "fields": { + "id_car_serie": 64906, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257889, + "fields": { + "id_car_serie": 64906, + "name": "1.6 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257890, + "fields": { + "id_car_serie": 64906, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257891, + "fields": { + "id_car_serie": 64906, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257892, + "fields": { + "id_car_serie": 64906, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257893, + "fields": { + "id_car_serie": 64907, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257894, + "fields": { + "id_car_serie": 64907, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257895, + "fields": { + "id_car_serie": 64907, + "name": "1.6 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257896, + "fields": { + "id_car_serie": 64907, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257897, + "fields": { + "id_car_serie": 64907, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257898, + "fields": { + "id_car_serie": 64907, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257899, + "fields": { + "id_car_serie": 63528, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257900, + "fields": { + "id_car_serie": 63528, + "name": "1.6 (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257901, + "fields": { + "id_car_serie": 63528, + "name": "1.6 (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257902, + "fields": { + "id_car_serie": 63528, + "name": "1.6 (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257903, + "fields": { + "id_car_serie": 63528, + "name": "1.8 (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257904, + "fields": { + "id_car_serie": 63528, + "name": "1.8 (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257905, + "fields": { + "id_car_serie": 63528, + "name": "1.8 (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257906, + "fields": { + "id_car_serie": 63528, + "name": "1.8 (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257907, + "fields": { + "id_car_serie": 63528, + "name": "2.0 (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257908, + "fields": { + "id_car_serie": 63528, + "name": "2.0 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257909, + "fields": { + "id_car_serie": 63528, + "name": "2.0 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257910, + "fields": { + "id_car_serie": 63528, + "name": "1.6 (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257911, + "fields": { + "id_car_serie": 63529, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257912, + "fields": { + "id_car_serie": 63529, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257913, + "fields": { + "id_car_serie": 63529, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257914, + "fields": { + "id_car_serie": 63529, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257915, + "fields": { + "id_car_serie": 64908, + "name": "0.6 MT (23 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257916, + "fields": { + "id_car_serie": 64908, + "name": "0.7 MT (24 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257917, + "fields": { + "id_car_serie": 64908, + "name": "0.7 MT (26 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257918, + "fields": { + "id_car_serie": 63530, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257919, + "fields": { + "id_car_serie": 63530, + "name": "1.3 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257920, + "fields": { + "id_car_serie": 63530, + "name": "1.5 (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257921, + "fields": { + "id_car_serie": 63530, + "name": "1.5 (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257922, + "fields": { + "id_car_serie": 63531, + "name": "7.0 MT (800 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257923, + "fields": { + "id_car_serie": 62997, + "name": "4.2 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257924, + "fields": { + "id_car_serie": 62997, + "name": "4.2 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257925, + "fields": { + "id_car_serie": 62997, + "name": "4.2 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257926, + "fields": { + "id_car_serie": 62997, + "name": "4.6 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257927, + "fields": { + "id_car_serie": 62997, + "name": "4.6 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257928, + "fields": { + "id_car_serie": 62997, + "name": "4.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257929, + "fields": { + "id_car_serie": 62997, + "name": "4.9 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257930, + "fields": { + "id_car_serie": 62997, + "name": "5.4 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257931, + "fields": { + "id_car_serie": 62997, + "name": "5.4 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257932, + "fields": { + "id_car_serie": 62997, + "name": "5.8 AT (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257933, + "fields": { + "id_car_serie": 62997, + "name": "7.3 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257934, + "fields": { + "id_car_serie": 62998, + "name": "4.9 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257935, + "fields": { + "id_car_serie": 62999, + "name": "4.9 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257936, + "fields": { + "id_car_serie": 62999, + "name": "4.9 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257937, + "fields": { + "id_car_serie": 63000, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257938, + "fields": { + "id_car_serie": 63000, + "name": "2.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257939, + "fields": { + "id_car_serie": 63000, + "name": "2.0 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257940, + "fields": { + "id_car_serie": 63000, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257941, + "fields": { + "id_car_serie": 63000, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257942, + "fields": { + "id_car_serie": 63000, + "name": "2.7 AT 4WD (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257943, + "fields": { + "id_car_serie": 63001, + "name": "2.3 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257944, + "fields": { + "id_car_serie": 63001, + "name": "2.3 MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257945, + "fields": { + "id_car_serie": 63001, + "name": "2.3 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257946, + "fields": { + "id_car_serie": 63001, + "name": "2.3 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257947, + "fields": { + "id_car_serie": 63965, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257948, + "fields": { + "id_car_serie": 63965, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257949, + "fields": { + "id_car_serie": 63965, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257950, + "fields": { + "id_car_serie": 63965, + "name": "1.6 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257951, + "fields": { + "id_car_serie": 63965, + "name": "1.6 CVT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257952, + "fields": { + "id_car_serie": 63965, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257953, + "fields": { + "id_car_serie": 63965, + "name": "1.8 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257954, + "fields": { + "id_car_serie": 63965, + "name": "1.8 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257955, + "fields": { + "id_car_serie": 63965, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257956, + "fields": { + "id_car_serie": 63966, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257957, + "fields": { + "id_car_serie": 63966, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257958, + "fields": { + "id_car_serie": 63966, + "name": "1.6 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257959, + "fields": { + "id_car_serie": 63966, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257960, + "fields": { + "id_car_serie": 63966, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257961, + "fields": { + "id_car_serie": 63966, + "name": "1.8 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257962, + "fields": { + "id_car_serie": 63966, + "name": "1.8 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257963, + "fields": { + "id_car_serie": 63966, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257964, + "fields": { + "id_car_serie": 63967, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257965, + "fields": { + "id_car_serie": 63967, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257966, + "fields": { + "id_car_serie": 63967, + "name": "1.6 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257967, + "fields": { + "id_car_serie": 63967, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257968, + "fields": { + "id_car_serie": 63967, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257969, + "fields": { + "id_car_serie": 63967, + "name": "1.8 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257970, + "fields": { + "id_car_serie": 63967, + "name": "1.8 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257971, + "fields": { + "id_car_serie": 63967, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257972, + "fields": { + "id_car_serie": 63968, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257973, + "fields": { + "id_car_serie": 63968, + "name": "1.6 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257974, + "fields": { + "id_car_serie": 63968, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257975, + "fields": { + "id_car_serie": 63968, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257976, + "fields": { + "id_car_serie": 63969, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257977, + "fields": { + "id_car_serie": 63969, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257978, + "fields": { + "id_car_serie": 63969, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257979, + "fields": { + "id_car_serie": 63969, + "name": "1.6 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257980, + "fields": { + "id_car_serie": 63969, + "name": "1.6 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257981, + "fields": { + "id_car_serie": 63969, + "name": "1.6 CVT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257982, + "fields": { + "id_car_serie": 63969, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257983, + "fields": { + "id_car_serie": 63969, + "name": "1.8 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257984, + "fields": { + "id_car_serie": 63969, + "name": "1.8 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257985, + "fields": { + "id_car_serie": 63969, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257986, + "fields": { + "id_car_serie": 63970, + "name": "1.1 MT (39 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257987, + "fields": { + "id_car_serie": 63970, + "name": "1.1 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257988, + "fields": { + "id_car_serie": 63970, + "name": "1.1 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257989, + "fields": { + "id_car_serie": 63970, + "name": "1.3 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257990, + "fields": { + "id_car_serie": 63971, + "name": "1.1 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257991, + "fields": { + "id_car_serie": 63971, + "name": "1.3 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257992, + "fields": { + "id_car_serie": 63971, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257993, + "fields": { + "id_car_serie": 63971, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257994, + "fields": { + "id_car_serie": 63002, + "name": "3.5 AT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257995, + "fields": { + "id_car_serie": 63002, + "name": "3.5 AT 4WD (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257996, + "fields": { + "id_car_serie": 63003, + "name": "4.6 AT 4WD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257997, + "fields": { + "id_car_serie": 62987, + "name": "3.5 AT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257998, + "fields": { + "id_car_serie": 62988, + "name": "4.9 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 257999, + "fields": { + "id_car_serie": 62988, + "name": "4.9 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258000, + "fields": { + "id_car_serie": 62988, + "name": "4.9 MT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258001, + "fields": { + "id_car_serie": 62988, + "name": "4.9 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258002, + "fields": { + "id_car_serie": 62988, + "name": "4.9 AT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258003, + "fields": { + "id_car_serie": 62988, + "name": "4.9 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258004, + "fields": { + "id_car_serie": 62988, + "name": "4.9 MT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258005, + "fields": { + "id_car_serie": 62988, + "name": "5.8 MT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258006, + "fields": { + "id_car_serie": 62988, + "name": "5.8 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258007, + "fields": { + "id_car_serie": 62988, + "name": "5.8 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258008, + "fields": { + "id_car_serie": 62989, + "name": "4.9 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258009, + "fields": { + "id_car_serie": 62989, + "name": "4.9 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258010, + "fields": { + "id_car_serie": 62989, + "name": "5.8 MT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258011, + "fields": { + "id_car_serie": 62989, + "name": "5.8 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258012, + "fields": { + "id_car_serie": 53530, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258013, + "fields": { + "id_car_serie": 53530, + "name": "1.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258014, + "fields": { + "id_car_serie": 53530, + "name": "1.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258015, + "fields": { + "id_car_serie": 53530, + "name": "1.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258016, + "fields": { + "id_car_serie": 53530, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258017, + "fields": { + "id_car_serie": 53530, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258018, + "fields": { + "id_car_serie": 53530, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258019, + "fields": { + "id_car_serie": 53530, + "name": "1.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258020, + "fields": { + "id_car_serie": 62990, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258021, + "fields": { + "id_car_serie": 62990, + "name": "2.3 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258022, + "fields": { + "id_car_serie": 63972, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258023, + "fields": { + "id_car_serie": 63972, + "name": "2.3 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258024, + "fields": { + "id_car_serie": 63778, + "name": "1.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258025, + "fields": { + "id_car_serie": 63778, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258026, + "fields": { + "id_car_serie": 54020, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258027, + "fields": { + "id_car_serie": 54020, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258028, + "fields": { + "id_car_serie": 54020, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258029, + "fields": { + "id_car_serie": 54020, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258030, + "fields": { + "id_car_serie": 54020, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258031, + "fields": { + "id_car_serie": 54020, + "name": "2.0 CVT (187 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258032, + "fields": { + "id_car_serie": 63819, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258033, + "fields": { + "id_car_serie": 63819, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258034, + "fields": { + "id_car_serie": 63819, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258035, + "fields": { + "id_car_serie": 63819, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258036, + "fields": { + "id_car_serie": 63819, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258037, + "fields": { + "id_car_serie": 63820, + "name": "2.0 CVT (187 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258038, + "fields": { + "id_car_serie": 63046, + "name": "3.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258039, + "fields": { + "id_car_serie": 63046, + "name": "3.8 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258040, + "fields": { + "id_car_serie": 63046, + "name": "4.6 AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258041, + "fields": { + "id_car_serie": 63046, + "name": "4.6 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258042, + "fields": { + "id_car_serie": 63046, + "name": "4.6 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258043, + "fields": { + "id_car_serie": 63046, + "name": "4.6 MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258044, + "fields": { + "id_car_serie": 63046, + "name": "4.6 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258045, + "fields": { + "id_car_serie": 63046, + "name": "4.6 MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258046, + "fields": { + "id_car_serie": 63046, + "name": "5.4 MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258047, + "fields": { + "id_car_serie": 63973, + "name": "3.8 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258048, + "fields": { + "id_car_serie": 63973, + "name": "3.8 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258049, + "fields": { + "id_car_serie": 63973, + "name": "3.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258050, + "fields": { + "id_car_serie": 63973, + "name": "4.6 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258051, + "fields": { + "id_car_serie": 63973, + "name": "4.6 MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258052, + "fields": { + "id_car_serie": 63973, + "name": "4.6 AT (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258053, + "fields": { + "id_car_serie": 63973, + "name": "4.6 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258054, + "fields": { + "id_car_serie": 63973, + "name": "4.6 MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258055, + "fields": { + "id_car_serie": 63974, + "name": "2.3 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258056, + "fields": { + "id_car_serie": 63974, + "name": "2.3 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258057, + "fields": { + "id_car_serie": 63974, + "name": "4.9 MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258058, + "fields": { + "id_car_serie": 63975, + "name": "2.3 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258059, + "fields": { + "id_car_serie": 63975, + "name": "4.9 MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258060, + "fields": { + "id_car_serie": 63975, + "name": "4.9 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258067, + "fields": { + "id_car_serie": 47206, + "name": "4.9 MT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258068, + "fields": { + "id_car_serie": 47206, + "name": "5.8 MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258069, + "fields": { + "id_car_serie": 47206, + "name": "7.0 MT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258070, + "fields": { + "id_car_serie": 63764, + "name": "2.2 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258071, + "fields": { + "id_car_serie": 63764, + "name": "2.2 AT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258072, + "fields": { + "id_car_serie": 63764, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258073, + "fields": { + "id_car_serie": 63764, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258074, + "fields": { + "id_car_serie": 63764, + "name": "3.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258075, + "fields": { + "id_car_serie": 63764, + "name": "3.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258076, + "fields": { + "id_car_serie": 63977, + "name": "1.3 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258077, + "fields": { + "id_car_serie": 63977, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258078, + "fields": { + "id_car_serie": 63977, + "name": "1.6 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258079, + "fields": { + "id_car_serie": 63977, + "name": "1.6 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258080, + "fields": { + "id_car_serie": 63977, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258081, + "fields": { + "id_car_serie": 63977, + "name": "1.6 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258082, + "fields": { + "id_car_serie": 63977, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258083, + "fields": { + "id_car_serie": 63977, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258084, + "fields": { + "id_car_serie": 63977, + "name": "2.0 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258085, + "fields": { + "id_car_serie": 63977, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258086, + "fields": { + "id_car_serie": 63977, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258087, + "fields": { + "id_car_serie": 63977, + "name": "2.3 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258088, + "fields": { + "id_car_serie": 63977, + "name": "2.3 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258089, + "fields": { + "id_car_serie": 63978, + "name": "1.5 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258090, + "fields": { + "id_car_serie": 63978, + "name": "1.7 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258091, + "fields": { + "id_car_serie": 63978, + "name": "1.7 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258092, + "fields": { + "id_car_serie": 63978, + "name": "1.7 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258093, + "fields": { + "id_car_serie": 63978, + "name": "2.0 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258094, + "fields": { + "id_car_serie": 63978, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258095, + "fields": { + "id_car_serie": 63979, + "name": "1.5 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258096, + "fields": { + "id_car_serie": 63979, + "name": "1.7 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258097, + "fields": { + "id_car_serie": 63979, + "name": "1.7 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258098, + "fields": { + "id_car_serie": 63979, + "name": "2.0 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258099, + "fields": { + "id_car_serie": 63980, + "name": "1.7 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258100, + "fields": { + "id_car_serie": 63980, + "name": "1.7 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258101, + "fields": { + "id_car_serie": 63980, + "name": "2.0 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258102, + "fields": { + "id_car_serie": 63980, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258103, + "fields": { + "id_car_serie": 62991, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258104, + "fields": { + "id_car_serie": 62991, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258105, + "fields": { + "id_car_serie": 62991, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258106, + "fields": { + "id_car_serie": 62991, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258107, + "fields": { + "id_car_serie": 62991, + "name": "1.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258108, + "fields": { + "id_car_serie": 62991, + "name": "2.5 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258109, + "fields": { + "id_car_serie": 63981, + "name": "1.3 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258110, + "fields": { + "id_car_serie": 63981, + "name": "1.3 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258111, + "fields": { + "id_car_serie": 63982, + "name": "2.3 AT 4WD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258112, + "fields": { + "id_car_serie": 63982, + "name": "2.3 MT 4WD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258113, + "fields": { + "id_car_serie": 63982, + "name": "2.7 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258114, + "fields": { + "id_car_serie": 63983, + "name": "2.3 MT 4WD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258115, + "fields": { + "id_car_serie": 63983, + "name": "2.3 AT 4WD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258116, + "fields": { + "id_car_serie": 63983, + "name": "2.7 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258117, + "fields": { + "id_car_serie": 63984, + "name": "1.5 AT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258118, + "fields": { + "id_car_serie": 63984, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258119, + "fields": { + "id_car_serie": 62993, + "name": "2.4 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258120, + "fields": { + "id_car_serie": 62993, + "name": "2.8 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258121, + "fields": { + "id_car_serie": 62993, + "name": "2.8 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258122, + "fields": { + "id_car_serie": 62993, + "name": "2.9 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258123, + "fields": { + "id_car_serie": 62993, + "name": "2.9 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258124, + "fields": { + "id_car_serie": 62994, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258125, + "fields": { + "id_car_serie": 62994, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258126, + "fields": { + "id_car_serie": 62994, + "name": "2.5 MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258127, + "fields": { + "id_car_serie": 62994, + "name": "2.5 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258128, + "fields": { + "id_car_serie": 62994, + "name": "2.5 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258129, + "fields": { + "id_car_serie": 62994, + "name": "2.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258130, + "fields": { + "id_car_serie": 62995, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258131, + "fields": { + "id_car_serie": 62995, + "name": "1.3 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258132, + "fields": { + "id_car_serie": 62995, + "name": "1.6 AT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258133, + "fields": { + "id_car_serie": 62995, + "name": "1.6 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258134, + "fields": { + "id_car_serie": 62995, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258135, + "fields": { + "id_car_serie": 62995, + "name": "2.0 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258136, + "fields": { + "id_car_serie": 62996, + "name": "3.7 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258137, + "fields": { + "id_car_serie": 62996, + "name": "3.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258138, + "fields": { + "id_car_serie": 63005, + "name": "3.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258139, + "fields": { + "id_car_serie": 63005, + "name": "3.6 (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258140, + "fields": { + "id_car_serie": 63005, + "name": "4.8 (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258141, + "fields": { + "id_car_serie": 63005, + "name": "4.8 (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258142, + "fields": { + "id_car_serie": 63006, + "name": "4.8 MT (209 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258143, + "fields": { + "id_car_serie": 63047, + "name": "3.3 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258144, + "fields": { + "id_car_serie": 63047, + "name": "4.1 MT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258145, + "fields": { + "id_car_serie": 63047, + "name": "4.9 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258146, + "fields": { + "id_car_serie": 63047, + "name": "5.8 MT (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258147, + "fields": { + "id_car_serie": 63048, + "name": "2.8 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258148, + "fields": { + "id_car_serie": 63049, + "name": "2.4 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258149, + "fields": { + "id_car_serie": 63049, + "name": "2.8 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258150, + "fields": { + "id_car_serie": 63985, + "name": "1.3 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258151, + "fields": { + "id_car_serie": 63985, + "name": "1.3 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258152, + "fields": { + "id_car_serie": 63985, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258153, + "fields": { + "id_car_serie": 63050, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258154, + "fields": { + "id_car_serie": 63050, + "name": "2.5 (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258155, + "fields": { + "id_car_serie": 63051, + "name": "3.9 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258156, + "fields": { + "id_car_serie": 63051, + "name": "4.9 (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258157, + "fields": { + "id_car_serie": 63051, + "name": "6.4 (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258158, + "fields": { + "id_car_serie": 63051, + "name": "7.0 (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258159, + "fields": { + "id_car_serie": 63051, + "name": "7.0 (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258160, + "fields": { + "id_car_serie": 63052, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258161, + "fields": { + "id_car_serie": 63053, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258162, + "fields": { + "id_car_serie": 63053, + "name": "1.3 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258163, + "fields": { + "id_car_serie": 63053, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258164, + "fields": { + "id_car_serie": 63053, + "name": "1.3 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258165, + "fields": { + "id_car_serie": 63053, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258166, + "fields": { + "id_car_serie": 63053, + "name": "1.8 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258167, + "fields": { + "id_car_serie": 63055, + "name": "3.9 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258168, + "fields": { + "id_car_serie": 63986, + "name": "1.8 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258169, + "fields": { + "id_car_serie": 63986, + "name": "1.8 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258170, + "fields": { + "id_car_serie": 63986, + "name": "1.8 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258171, + "fields": { + "id_car_serie": 63986, + "name": "2.0 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258172, + "fields": { + "id_car_serie": 63986, + "name": "2.0 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258173, + "fields": { + "id_car_serie": 63986, + "name": "2.0 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258174, + "fields": { + "id_car_serie": 63986, + "name": "2.0 AT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258175, + "fields": { + "id_car_serie": 63987, + "name": "2.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258176, + "fields": { + "id_car_serie": 63987, + "name": "2.3 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258177, + "fields": { + "id_car_serie": 63987, + "name": "2.3 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258178, + "fields": { + "id_car_serie": 63987, + "name": "2.3 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258179, + "fields": { + "id_car_serie": 63987, + "name": "2.3 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258180, + "fields": { + "id_car_serie": 63987, + "name": "2.3 AT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258181, + "fields": { + "id_car_serie": 63987, + "name": "3.0 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258182, + "fields": { + "id_car_serie": 63988, + "name": "4.0 AT (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258183, + "fields": { + "id_car_serie": 63989, + "name": "4.0 AT (244 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258184, + "fields": { + "id_car_serie": 63989, + "name": "4.0 AT 4WD (244 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258185, + "fields": { + "id_car_serie": 63056, + "name": "7.0 MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258186, + "fields": { + "id_car_serie": 63056, + "name": "7.0 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258187, + "fields": { + "id_car_serie": 63057, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258188, + "fields": { + "id_car_serie": 63057, + "name": "1.5 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258189, + "fields": { + "id_car_serie": 63057, + "name": "1.5 (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258190, + "fields": { + "id_car_serie": 63058, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258191, + "fields": { + "id_car_serie": 63058, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258192, + "fields": { + "id_car_serie": 63058, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258193, + "fields": { + "id_car_serie": 53544, + "name": "2.8 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258194, + "fields": { + "id_car_serie": 64909, + "name": "1.3 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258195, + "fields": { + "id_car_serie": 64909, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258201, + "fields": { + "id_car_serie": 64911, + "name": "3.0 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258202, + "fields": { + "id_car_serie": 64911, + "name": "3.2 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258203, + "fields": { + "id_car_serie": 64912, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258204, + "fields": { + "id_car_serie": 64913, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258205, + "fields": { + "id_car_serie": 64913, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258206, + "fields": { + "id_car_serie": 64913, + "name": "2.0 AT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258207, + "fields": { + "id_car_serie": 64913, + "name": "2.0 AT 4WD (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258208, + "fields": { + "id_car_serie": 63532, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258209, + "fields": { + "id_car_serie": 63532, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258210, + "fields": { + "id_car_serie": 63533, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258211, + "fields": { + "id_car_serie": 63533, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258212, + "fields": { + "id_car_serie": 64914, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258213, + "fields": { + "id_car_serie": 63534, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258214, + "fields": { + "id_car_serie": 63534, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258215, + "fields": { + "id_car_serie": 64915, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258216, + "fields": { + "id_car_serie": 64915, + "name": "1.8 AMT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258217, + "fields": { + "id_car_serie": 64916, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258218, + "fields": { + "id_car_serie": 64916, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258219, + "fields": { + "id_car_serie": 64916, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258220, + "fields": { + "id_car_serie": 64916, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258221, + "fields": { + "id_car_serie": 64917, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258222, + "fields": { + "id_car_serie": 64917, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258223, + "fields": { + "id_car_serie": 64917, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258224, + "fields": { + "id_car_serie": 64918, + "name": "2.4 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258225, + "fields": { + "id_car_serie": 64918, + "name": "2.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258226, + "fields": { + "id_car_serie": 64919, + "name": "3.0 AT (278 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258227, + "fields": { + "id_car_serie": 64919, + "name": "3.0 AT 4WD (278 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258228, + "fields": { + "id_car_serie": 64920, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258229, + "fields": { + "id_car_serie": 64920, + "name": "1.0 AT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258230, + "fields": { + "id_car_serie": 64920, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258231, + "fields": { + "id_car_serie": 64920, + "name": "1.3 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258232, + "fields": { + "id_car_serie": 64921, + "name": "1.0 AT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258233, + "fields": { + "id_car_serie": 64921, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258234, + "fields": { + "id_car_serie": 64921, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258235, + "fields": { + "id_car_serie": 64921, + "name": "1.3 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258236, + "fields": { + "id_car_serie": 63535, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258237, + "fields": { + "id_car_serie": 63535, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258238, + "fields": { + "id_car_serie": 63535, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258239, + "fields": { + "id_car_serie": 63535, + "name": "1.8 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258240, + "fields": { + "id_car_serie": 64922, + "name": "4.4 MT (206 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258241, + "fields": { + "id_car_serie": 63536, + "name": "4.8 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258242, + "fields": { + "id_car_serie": 63536, + "name": "5.3 AT (301 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258243, + "fields": { + "id_car_serie": 63536, + "name": "5.3 AT 4WD (301 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258244, + "fields": { + "id_car_serie": 63536, + "name": "6.0 AT (323 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258245, + "fields": { + "id_car_serie": 63536, + "name": "6.0 AT 4WD (323 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258246, + "fields": { + "id_car_serie": 63536, + "name": "6.6 AT (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258247, + "fields": { + "id_car_serie": 63536, + "name": "6.6 AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258248, + "fields": { + "id_car_serie": 64923, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258249, + "fields": { + "id_car_serie": 64923, + "name": "2.2 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258250, + "fields": { + "id_car_serie": 64923, + "name": "4.3 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258251, + "fields": { + "id_car_serie": 64923, + "name": "4.3 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258252, + "fields": { + "id_car_serie": 64923, + "name": "4.3 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258253, + "fields": { + "id_car_serie": 64923, + "name": "4.3 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258254, + "fields": { + "id_car_serie": 64924, + "name": "2.2 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258255, + "fields": { + "id_car_serie": 64924, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258256, + "fields": { + "id_car_serie": 64924, + "name": "4.3 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258257, + "fields": { + "id_car_serie": 64924, + "name": "4.3 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258258, + "fields": { + "id_car_serie": 64924, + "name": "4.3 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258259, + "fields": { + "id_car_serie": 64924, + "name": "4.3 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258263, + "fields": { + "id_car_serie": 64926, + "name": "5.3 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258264, + "fields": { + "id_car_serie": 64926, + "name": "5.3 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258265, + "fields": { + "id_car_serie": 64926, + "name": "6.2 AT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258266, + "fields": { + "id_car_serie": 64926, + "name": "6.2 AT 4WD (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258267, + "fields": { + "id_car_serie": 63537, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258268, + "fields": { + "id_car_serie": 63537, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258269, + "fields": { + "id_car_serie": 63537, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258270, + "fields": { + "id_car_serie": 64927, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258271, + "fields": { + "id_car_serie": 63538, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258272, + "fields": { + "id_car_serie": 64928, + "name": "2.2 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258273, + "fields": { + "id_car_serie": 64929, + "name": "2.0 MT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258274, + "fields": { + "id_car_serie": 64929, + "name": "2.4 MT 4WD (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258275, + "fields": { + "id_car_serie": 64929, + "name": "2.4 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258276, + "fields": { + "id_car_serie": 64929, + "name": "2.4 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258277, + "fields": { + "id_car_serie": 64929, + "name": "2.8 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258278, + "fields": { + "id_car_serie": 64930, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258279, + "fields": { + "id_car_serie": 64930, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258280, + "fields": { + "id_car_serie": 64930, + "name": "1.5 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258281, + "fields": { + "id_car_serie": 63539, + "name": "2.4 MT 4WD (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258282, + "fields": { + "id_car_serie": 64931, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258283, + "fields": { + "id_car_serie": 64931, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258284, + "fields": { + "id_car_serie": 64931, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258285, + "fields": { + "id_car_serie": 64931, + "name": "1.5 CVT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258286, + "fields": { + "id_car_serie": 64932, + "name": "2.2 MT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258287, + "fields": { + "id_car_serie": 64932, + "name": "2.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258288, + "fields": { + "id_car_serie": 64932, + "name": "2.2 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258289, + "fields": { + "id_car_serie": 64932, + "name": "2.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258290, + "fields": { + "id_car_serie": 64932, + "name": "2.8 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258291, + "fields": { + "id_car_serie": 64933, + "name": "2.2 MT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258292, + "fields": { + "id_car_serie": 64933, + "name": "2.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258293, + "fields": { + "id_car_serie": 64933, + "name": "2.2 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258294, + "fields": { + "id_car_serie": 64933, + "name": "2.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258295, + "fields": { + "id_car_serie": 64933, + "name": "2.8 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258296, + "fields": { + "id_car_serie": 63540, + "name": "1.6 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258297, + "fields": { + "id_car_serie": 63540, + "name": "1.6 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258298, + "fields": { + "id_car_serie": 63541, + "name": "1.6 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258299, + "fields": { + "id_car_serie": 63541, + "name": "1.6 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258300, + "fields": { + "id_car_serie": 63542, + "name": "1.6 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258301, + "fields": { + "id_car_serie": 63542, + "name": "1.6 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258302, + "fields": { + "id_car_serie": 63543, + "name": "1.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258303, + "fields": { + "id_car_serie": 63543, + "name": "1.5 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258304, + "fields": { + "id_car_serie": 63544, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258305, + "fields": { + "id_car_serie": 63544, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258306, + "fields": { + "id_car_serie": 63544, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258307, + "fields": { + "id_car_serie": 63545, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258308, + "fields": { + "id_car_serie": 63545, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258309, + "fields": { + "id_car_serie": 63546, + "name": "1.5 MT (32 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258310, + "fields": { + "id_car_serie": 63546, + "name": "1.5 MT (35 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258311, + "fields": { + "id_car_serie": 63546, + "name": "1.9 MT (35 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258312, + "fields": { + "id_car_serie": 64934, + "name": "1.3 MT (32 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258313, + "fields": { + "id_car_serie": 64935, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258314, + "fields": { + "id_car_serie": 63547, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258315, + "fields": { + "id_car_serie": 63547, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258316, + "fields": { + "id_car_serie": 63548, + "name": "0.2 MT (10 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258317, + "fields": { + "id_car_serie": 63549, + "name": "5.2 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258318, + "fields": { + "id_car_serie": 64936, + "name": "3.8 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258319, + "fields": { + "id_car_serie": 64936, + "name": "3.8 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258320, + "fields": { + "id_car_serie": 64936, + "name": "3.8 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258321, + "fields": { + "id_car_serie": 64936, + "name": "3.8 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258322, + "fields": { + "id_car_serie": 64936, + "name": "5.0 MT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258323, + "fields": { + "id_car_serie": 64936, + "name": "5.0 AT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258324, + "fields": { + "id_car_serie": 64936, + "name": "5.0 MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258325, + "fields": { + "id_car_serie": 64937, + "name": "3.8 MT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258326, + "fields": { + "id_car_serie": 64937, + "name": "3.8 AT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258327, + "fields": { + "id_car_serie": 64937, + "name": "3.8 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258328, + "fields": { + "id_car_serie": 64937, + "name": "3.8 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258329, + "fields": { + "id_car_serie": 64938, + "name": "3.6 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258330, + "fields": { + "id_car_serie": 64938, + "name": "3.6 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258331, + "fields": { + "id_car_serie": 64938, + "name": "3.6 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258332, + "fields": { + "id_car_serie": 64938, + "name": "6.0 MT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258333, + "fields": { + "id_car_serie": 64938, + "name": "6.0 AT (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258334, + "fields": { + "id_car_serie": 64939, + "name": "3.6 MT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258335, + "fields": { + "id_car_serie": 64939, + "name": "3.8 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258336, + "fields": { + "id_car_serie": 64939, + "name": "3.8 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258337, + "fields": { + "id_car_serie": 64939, + "name": "3.8 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258338, + "fields": { + "id_car_serie": 64939, + "name": "5.0 MT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258339, + "fields": { + "id_car_serie": 64939, + "name": "5.0 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258340, + "fields": { + "id_car_serie": 64939, + "name": "5.7 MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258341, + "fields": { + "id_car_serie": 63060, + "name": "1.5 CVT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258342, + "fields": { + "id_car_serie": 63060, + "name": "1.5 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258343, + "fields": { + "id_car_serie": 63060, + "name": "2.0 MT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258344, + "fields": { + "id_car_serie": 63060, + "name": "2.0 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258345, + "fields": { + "id_car_serie": 63060, + "name": "2.0 CVT (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258346, + "fields": { + "id_car_serie": 63061, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258347, + "fields": { + "id_car_serie": 63061, + "name": "2.4 CVT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258348, + "fields": { + "id_car_serie": 63061, + "name": "3.0 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258349, + "fields": { + "id_car_serie": 63990, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258350, + "fields": { + "id_car_serie": 63990, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258351, + "fields": { + "id_car_serie": 63990, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258352, + "fields": { + "id_car_serie": 63990, + "name": "2.4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258353, + "fields": { + "id_car_serie": 63990, + "name": "2.4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258354, + "fields": { + "id_car_serie": 63990, + "name": "2.2 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258355, + "fields": { + "id_car_serie": 63991, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258356, + "fields": { + "id_car_serie": 63991, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258357, + "fields": { + "id_car_serie": 63991, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258358, + "fields": { + "id_car_serie": 63991, + "name": "2.4 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258359, + "fields": { + "id_car_serie": 63991, + "name": "2.4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258360, + "fields": { + "id_car_serie": 63991, + "name": "2.4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258361, + "fields": { + "id_car_serie": 63991, + "name": "2.4 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258362, + "fields": { + "id_car_serie": 63991, + "name": "2.4 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258363, + "fields": { + "id_car_serie": 63991, + "name": "2.2 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258364, + "fields": { + "id_car_serie": 63992, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258365, + "fields": { + "id_car_serie": 63992, + "name": "1.9 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258366, + "fields": { + "id_car_serie": 63992, + "name": "1.9 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258367, + "fields": { + "id_car_serie": 63992, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258368, + "fields": { + "id_car_serie": 63992, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258369, + "fields": { + "id_car_serie": 63992, + "name": "2.2 MT (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258370, + "fields": { + "id_car_serie": 63992, + "name": "2.3 MT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258371, + "fields": { + "id_car_serie": 63992, + "name": "2.3 AT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258372, + "fields": { + "id_car_serie": 63992, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258373, + "fields": { + "id_car_serie": 48144, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258374, + "fields": { + "id_car_serie": 48144, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258375, + "fields": { + "id_car_serie": 48144, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258376, + "fields": { + "id_car_serie": 48144, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258377, + "fields": { + "id_car_serie": 48144, + "name": "2.0 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258378, + "fields": { + "id_car_serie": 48144, + "name": "2.0 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258379, + "fields": { + "id_car_serie": 48144, + "name": "2.0 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258380, + "fields": { + "id_car_serie": 48144, + "name": "2.0 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258381, + "fields": { + "id_car_serie": 48144, + "name": "2.0 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258382, + "fields": { + "id_car_serie": 48144, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258383, + "fields": { + "id_car_serie": 48144, + "name": "2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258384, + "fields": { + "id_car_serie": 48150, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258385, + "fields": { + "id_car_serie": 48150, + "name": "1.6 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258386, + "fields": { + "id_car_serie": 63993, + "name": "1.5 CVT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258387, + "fields": { + "id_car_serie": 63993, + "name": "2.0 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258388, + "fields": { + "id_car_serie": 63993, + "name": "2.0 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258389, + "fields": { + "id_car_serie": 63779, + "name": "1.5 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258390, + "fields": { + "id_car_serie": 63779, + "name": "1.5 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258391, + "fields": { + "id_car_serie": 63779, + "name": "1.5 CVT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258392, + "fields": { + "id_car_serie": 63994, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258393, + "fields": { + "id_car_serie": 63994, + "name": "1.8 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258394, + "fields": { + "id_car_serie": 63994, + "name": "1.8 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258395, + "fields": { + "id_car_serie": 63995, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258396, + "fields": { + "id_car_serie": 63995, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258397, + "fields": { + "id_car_serie": 63995, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258398, + "fields": { + "id_car_serie": 63995, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258399, + "fields": { + "id_car_serie": 63995, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258400, + "fields": { + "id_car_serie": 63995, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258401, + "fields": { + "id_car_serie": 63995, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258402, + "fields": { + "id_car_serie": 63995, + "name": "1.6 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258403, + "fields": { + "id_car_serie": 63995, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258404, + "fields": { + "id_car_serie": 63995, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258405, + "fields": { + "id_car_serie": 63995, + "name": "1.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258406, + "fields": { + "id_car_serie": 63995, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258407, + "fields": { + "id_car_serie": 63995, + "name": "1.8 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258408, + "fields": { + "id_car_serie": 63995, + "name": "1.8 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258409, + "fields": { + "id_car_serie": 63995, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258410, + "fields": { + "id_car_serie": 63995, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258411, + "fields": { + "id_car_serie": 63996, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258412, + "fields": { + "id_car_serie": 63996, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258413, + "fields": { + "id_car_serie": 63996, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258414, + "fields": { + "id_car_serie": 63996, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258415, + "fields": { + "id_car_serie": 63996, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258416, + "fields": { + "id_car_serie": 63996, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258417, + "fields": { + "id_car_serie": 63997, + "name": "1.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258418, + "fields": { + "id_car_serie": 63997, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258419, + "fields": { + "id_car_serie": 63997, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258420, + "fields": { + "id_car_serie": 63997, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258421, + "fields": { + "id_car_serie": 63997, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258422, + "fields": { + "id_car_serie": 63997, + "name": "1.5 AT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258423, + "fields": { + "id_car_serie": 63997, + "name": "1.5 MT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258424, + "fields": { + "id_car_serie": 48184, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258425, + "fields": { + "id_car_serie": 48184, + "name": "1.3 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258426, + "fields": { + "id_car_serie": 48184, + "name": "1.3 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258427, + "fields": { + "id_car_serie": 48184, + "name": "1.5 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258428, + "fields": { + "id_car_serie": 48184, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258429, + "fields": { + "id_car_serie": 48184, + "name": "1.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258430, + "fields": { + "id_car_serie": 48184, + "name": "1.5 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258431, + "fields": { + "id_car_serie": 48184, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258432, + "fields": { + "id_car_serie": 48186, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258433, + "fields": { + "id_car_serie": 48186, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258434, + "fields": { + "id_car_serie": 6357, + "name": "1.2 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258448, + "fields": { + "id_car_serie": 63063, + "name": "1.5 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258449, + "fields": { + "id_car_serie": 63063, + "name": "1.5 AMT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258450, + "fields": { + "id_car_serie": 63063, + "name": "1.5 CVT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258451, + "fields": { + "id_car_serie": 63063, + "name": "1.5 CVT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258452, + "fields": { + "id_car_serie": 64000, + "name": "1.6 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258453, + "fields": { + "id_car_serie": 64000, + "name": "1.6 CVT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258454, + "fields": { + "id_car_serie": 64000, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258455, + "fields": { + "id_car_serie": 64000, + "name": "1.6 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258456, + "fields": { + "id_car_serie": 64000, + "name": "1.6 CVT 4WD (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258457, + "fields": { + "id_car_serie": 64000, + "name": "1.6 MT 4WD (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258458, + "fields": { + "id_car_serie": 63064, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258459, + "fields": { + "id_car_serie": 64001, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258460, + "fields": { + "id_car_serie": 64001, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258461, + "fields": { + "id_car_serie": 64001, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258462, + "fields": { + "id_car_serie": 64001, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258463, + "fields": { + "id_car_serie": 64001, + "name": "1.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258464, + "fields": { + "id_car_serie": 64001, + "name": "1.6 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258465, + "fields": { + "id_car_serie": 64001, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258466, + "fields": { + "id_car_serie": 64001, + "name": "1.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258467, + "fields": { + "id_car_serie": 64001, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258468, + "fields": { + "id_car_serie": 64002, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258469, + "fields": { + "id_car_serie": 64002, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258470, + "fields": { + "id_car_serie": 64002, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258471, + "fields": { + "id_car_serie": 64002, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258472, + "fields": { + "id_car_serie": 64002, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258473, + "fields": { + "id_car_serie": 64002, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258474, + "fields": { + "id_car_serie": 64002, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258475, + "fields": { + "id_car_serie": 64002, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258476, + "fields": { + "id_car_serie": 64002, + "name": "1.6 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258477, + "fields": { + "id_car_serie": 64002, + "name": "1.6 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258478, + "fields": { + "id_car_serie": 64003, + "name": "1.3 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258479, + "fields": { + "id_car_serie": 64003, + "name": "1.3 CVT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258480, + "fields": { + "id_car_serie": 64003, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258481, + "fields": { + "id_car_serie": 64003, + "name": "1.5 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258487, + "fields": { + "id_car_serie": 64005, + "name": "1.2 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258488, + "fields": { + "id_car_serie": 64005, + "name": "1.2 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258489, + "fields": { + "id_car_serie": 63065, + "name": "3.5 AMT 4WD (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258490, + "fields": { + "id_car_serie": 63066, + "name": "3.5 AMT 4WD (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258491, + "fields": { + "id_car_serie": 64006, + "name": "2.7 AT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258492, + "fields": { + "id_car_serie": 64006, + "name": "2.7 MT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258493, + "fields": { + "id_car_serie": 63067, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258494, + "fields": { + "id_car_serie": 63067, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258495, + "fields": { + "id_car_serie": 63067, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258496, + "fields": { + "id_car_serie": 63068, + "name": "3.5 AT (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258497, + "fields": { + "id_car_serie": 64007, + "name": "1.5 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258498, + "fields": { + "id_car_serie": 64007, + "name": "1.5 AMT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258499, + "fields": { + "id_car_serie": 64007, + "name": "1.5 CVT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258500, + "fields": { + "id_car_serie": 64007, + "name": "1.5 CVT 4WD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258501, + "fields": { + "id_car_serie": 63069, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258502, + "fields": { + "id_car_serie": 63069, + "name": "1.5 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258503, + "fields": { + "id_car_serie": 63069, + "name": "2.0 CVT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258504, + "fields": { + "id_car_serie": 63070, + "name": "1.5 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258505, + "fields": { + "id_car_serie": 14964, + "name": "2.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258506, + "fields": { + "id_car_serie": 14964, + "name": "2.4 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258507, + "fields": { + "id_car_serie": 14964, + "name": "2.4 AT 4WD (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258508, + "fields": { + "id_car_serie": 63071, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258509, + "fields": { + "id_car_serie": 63071, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258510, + "fields": { + "id_car_serie": 63071, + "name": "2.0 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258511, + "fields": { + "id_car_serie": 63072, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258512, + "fields": { + "id_car_serie": 64008, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258513, + "fields": { + "id_car_serie": 63073, + "name": "0.7 MT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258514, + "fields": { + "id_car_serie": 63073, + "name": "0.7 (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258515, + "fields": { + "id_car_serie": 64009, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258516, + "fields": { + "id_car_serie": 64009, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258517, + "fields": { + "id_car_serie": 64009, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258518, + "fields": { + "id_car_serie": 64009, + "name": "2.3 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258519, + "fields": { + "id_car_serie": 63074, + "name": "1.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258520, + "fields": { + "id_car_serie": 63074, + "name": "1.2 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258521, + "fields": { + "id_car_serie": 64010, + "name": "1.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258522, + "fields": { + "id_car_serie": 64010, + "name": "1.2 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258523, + "fields": { + "id_car_serie": 63075, + "name": "1.3 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258524, + "fields": { + "id_car_serie": 63075, + "name": "1.3 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258525, + "fields": { + "id_car_serie": 63075, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258526, + "fields": { + "id_car_serie": 63075, + "name": "1.5 CVT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258527, + "fields": { + "id_car_serie": 63075, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258528, + "fields": { + "id_car_serie": 63075, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258529, + "fields": { + "id_car_serie": 63076, + "name": "1.3 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258530, + "fields": { + "id_car_serie": 63076, + "name": "1.3 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258531, + "fields": { + "id_car_serie": 63076, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258532, + "fields": { + "id_car_serie": 63076, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258533, + "fields": { + "id_car_serie": 63076, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258534, + "fields": { + "id_car_serie": 63076, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258535, + "fields": { + "id_car_serie": 63078, + "name": "1.5 AMT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258536, + "fields": { + "id_car_serie": 63078, + "name": "1.5 (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258537, + "fields": { + "id_car_serie": 63079, + "name": "1.5 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258538, + "fields": { + "id_car_serie": 63079, + "name": "1.5 AMT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258539, + "fields": { + "id_car_serie": 63079, + "name": "1.5 CVT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258540, + "fields": { + "id_car_serie": 63079, + "name": "1.5 CVT 4WD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258541, + "fields": { + "id_car_serie": 64011, + "name": "3.0 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258542, + "fields": { + "id_car_serie": 64011, + "name": "3.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258543, + "fields": { + "id_car_serie": 64011, + "name": "3.1 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258544, + "fields": { + "id_car_serie": 64011, + "name": "3.1 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258545, + "fields": { + "id_car_serie": 64011, + "name": "3.1 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258546, + "fields": { + "id_car_serie": 64011, + "name": "3.1 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258547, + "fields": { + "id_car_serie": 64011, + "name": "3.2 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258548, + "fields": { + "id_car_serie": 64011, + "name": "3.5 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258549, + "fields": { + "id_car_serie": 64012, + "name": "1.5 AMT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258550, + "fields": { + "id_car_serie": 64012, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258551, + "fields": { + "id_car_serie": 63080, + "name": "3.5 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258552, + "fields": { + "id_car_serie": 63080, + "name": "3.5 (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258553, + "fields": { + "id_car_serie": 63081, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258554, + "fields": { + "id_car_serie": 63082, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258555, + "fields": { + "id_car_serie": 63082, + "name": "1.5 CVT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258556, + "fields": { + "id_car_serie": 64013, + "name": "0.7 CVT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258557, + "fields": { + "id_car_serie": 64013, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258558, + "fields": { + "id_car_serie": 64013, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258559, + "fields": { + "id_car_serie": 64013, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258560, + "fields": { + "id_car_serie": 64014, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258561, + "fields": { + "id_car_serie": 64014, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258562, + "fields": { + "id_car_serie": 64014, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258563, + "fields": { + "id_car_serie": 64015, + "name": "0.7 CVT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258564, + "fields": { + "id_car_serie": 64015, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258565, + "fields": { + "id_car_serie": 64015, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258566, + "fields": { + "id_car_serie": 64015, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258567, + "fields": { + "id_car_serie": 64016, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258568, + "fields": { + "id_car_serie": 64016, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258569, + "fields": { + "id_car_serie": 64017, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258570, + "fields": { + "id_car_serie": 64017, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258571, + "fields": { + "id_car_serie": 64018, + "name": "0.7 CVT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258572, + "fields": { + "id_car_serie": 64018, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258573, + "fields": { + "id_car_serie": 64018, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258574, + "fields": { + "id_car_serie": 64018, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258575, + "fields": { + "id_car_serie": 64019, + "name": "0.7 CVT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258576, + "fields": { + "id_car_serie": 64019, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258577, + "fields": { + "id_car_serie": 64019, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258578, + "fields": { + "id_car_serie": 64019, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258579, + "fields": { + "id_car_serie": 64020, + "name": "0.4 MT (27 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258580, + "fields": { + "id_car_serie": 64020, + "name": "0.4 AT (27 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258581, + "fields": { + "id_car_serie": 63083, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258582, + "fields": { + "id_car_serie": 64021, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258583, + "fields": { + "id_car_serie": 64021, + "name": "3.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258584, + "fields": { + "id_car_serie": 64022, + "name": "2.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258585, + "fields": { + "id_car_serie": 64022, + "name": "2.0 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258586, + "fields": { + "id_car_serie": 64022, + "name": "2.2 MT (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258587, + "fields": { + "id_car_serie": 64022, + "name": "2.2 MT (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258588, + "fields": { + "id_car_serie": 64023, + "name": "2.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258589, + "fields": { + "id_car_serie": 64023, + "name": "2.0 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258590, + "fields": { + "id_car_serie": 64023, + "name": "2.2 MT (239 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258591, + "fields": { + "id_car_serie": 63084, + "name": "0.5 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258592, + "fields": { + "id_car_serie": 63085, + "name": "0.6 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258593, + "fields": { + "id_car_serie": 63086, + "name": "0.7 MT 4WD (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258594, + "fields": { + "id_car_serie": 63086, + "name": "0.7 (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258595, + "fields": { + "id_car_serie": 63087, + "name": "0.6 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258596, + "fields": { + "id_car_serie": 63087, + "name": "0.6 AT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258597, + "fields": { + "id_car_serie": 63087, + "name": "0.6 MT 4WD (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258598, + "fields": { + "id_car_serie": 63087, + "name": "0.7 AT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258599, + "fields": { + "id_car_serie": 63087, + "name": "0.7 MT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258600, + "fields": { + "id_car_serie": 63087, + "name": "0.7 MT 4WD (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258601, + "fields": { + "id_car_serie": 64024, + "name": "0.7 AT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258602, + "fields": { + "id_car_serie": 64024, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258603, + "fields": { + "id_car_serie": 64024, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258604, + "fields": { + "id_car_serie": 64025, + "name": "0.7 AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258605, + "fields": { + "id_car_serie": 64025, + "name": "0.7 AT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258606, + "fields": { + "id_car_serie": 64025, + "name": "0.7 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258607, + "fields": { + "id_car_serie": 64025, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258608, + "fields": { + "id_car_serie": 64025, + "name": "0.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258609, + "fields": { + "id_car_serie": 64025, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258610, + "fields": { + "id_car_serie": 64026, + "name": "0.7 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258611, + "fields": { + "id_car_serie": 64026, + "name": "0.7 AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258612, + "fields": { + "id_car_serie": 64026, + "name": "0.7 AT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258613, + "fields": { + "id_car_serie": 64026, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258614, + "fields": { + "id_car_serie": 64026, + "name": "0.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258615, + "fields": { + "id_car_serie": 64026, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258616, + "fields": { + "id_car_serie": 64027, + "name": "0.7 MT 4WD (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258617, + "fields": { + "id_car_serie": 64027, + "name": "0.7 AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258618, + "fields": { + "id_car_serie": 64027, + "name": "0.7 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258619, + "fields": { + "id_car_serie": 64027, + "name": "0.7 AT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258620, + "fields": { + "id_car_serie": 64027, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258621, + "fields": { + "id_car_serie": 64027, + "name": "0.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258622, + "fields": { + "id_car_serie": 64027, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258623, + "fields": { + "id_car_serie": 64028, + "name": "0.7 AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258624, + "fields": { + "id_car_serie": 64028, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258625, + "fields": { + "id_car_serie": 64028, + "name": "0.7 AT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258626, + "fields": { + "id_car_serie": 64029, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258627, + "fields": { + "id_car_serie": 64029, + "name": "0.7 AT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258628, + "fields": { + "id_car_serie": 64029, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258629, + "fields": { + "id_car_serie": 64029, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258630, + "fields": { + "id_car_serie": 63550, + "name": "3.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258631, + "fields": { + "id_car_serie": 63550, + "name": "3.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258632, + "fields": { + "id_car_serie": 63551, + "name": "4.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258633, + "fields": { + "id_car_serie": 63551, + "name": "4.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258634, + "fields": { + "id_car_serie": 63552, + "name": "4.7 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258635, + "fields": { + "id_car_serie": 64940, + "name": "3.7 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258636, + "fields": { + "id_car_serie": 64940, + "name": "3.7 MT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258637, + "fields": { + "id_car_serie": 64940, + "name": "5.3 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258638, + "fields": { + "id_car_serie": 63088, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258639, + "fields": { + "id_car_serie": 63088, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258640, + "fields": { + "id_car_serie": 63800, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258641, + "fields": { + "id_car_serie": 63800, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258642, + "fields": { + "id_car_serie": 63800, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258643, + "fields": { + "id_car_serie": 63800, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258644, + "fields": { + "id_car_serie": 63800, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258645, + "fields": { + "id_car_serie": 63800, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258646, + "fields": { + "id_car_serie": 63800, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258647, + "fields": { + "id_car_serie": 63800, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258648, + "fields": { + "id_car_serie": 63800, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258649, + "fields": { + "id_car_serie": 63800, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258650, + "fields": { + "id_car_serie": 63801, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258651, + "fields": { + "id_car_serie": 63801, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258652, + "fields": { + "id_car_serie": 63801, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258653, + "fields": { + "id_car_serie": 63801, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258654, + "fields": { + "id_car_serie": 63801, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258655, + "fields": { + "id_car_serie": 63801, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258656, + "fields": { + "id_car_serie": 63801, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258657, + "fields": { + "id_car_serie": 63801, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258658, + "fields": { + "id_car_serie": 63801, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258659, + "fields": { + "id_car_serie": 63802, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258660, + "fields": { + "id_car_serie": 63802, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258661, + "fields": { + "id_car_serie": 63802, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258662, + "fields": { + "id_car_serie": 63802, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258663, + "fields": { + "id_car_serie": 63802, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258664, + "fields": { + "id_car_serie": 63802, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258665, + "fields": { + "id_car_serie": 63802, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258666, + "fields": { + "id_car_serie": 63802, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258667, + "fields": { + "id_car_serie": 63802, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258668, + "fields": { + "id_car_serie": 63802, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258669, + "fields": { + "id_car_serie": 63802, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258670, + "fields": { + "id_car_serie": 63803, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258671, + "fields": { + "id_car_serie": 63803, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258672, + "fields": { + "id_car_serie": 63803, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258673, + "fields": { + "id_car_serie": 63803, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258674, + "fields": { + "id_car_serie": 63803, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258675, + "fields": { + "id_car_serie": 63803, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258676, + "fields": { + "id_car_serie": 63803, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258677, + "fields": { + "id_car_serie": 63803, + "name": "1.5 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258678, + "fields": { + "id_car_serie": 63804, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258679, + "fields": { + "id_car_serie": 63804, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258680, + "fields": { + "id_car_serie": 63804, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258681, + "fields": { + "id_car_serie": 63804, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258682, + "fields": { + "id_car_serie": 63804, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258683, + "fields": { + "id_car_serie": 63804, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258684, + "fields": { + "id_car_serie": 63804, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258685, + "fields": { + "id_car_serie": 63804, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258686, + "fields": { + "id_car_serie": 63804, + "name": "1.5 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258687, + "fields": { + "id_car_serie": 63089, + "name": "1.5 AT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258688, + "fields": { + "id_car_serie": 63089, + "name": "1.5 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258689, + "fields": { + "id_car_serie": 63089, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258690, + "fields": { + "id_car_serie": 63089, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258691, + "fields": { + "id_car_serie": 63089, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258692, + "fields": { + "id_car_serie": 63089, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258693, + "fields": { + "id_car_serie": 63089, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258694, + "fields": { + "id_car_serie": 63089, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258695, + "fields": { + "id_car_serie": 63089, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258696, + "fields": { + "id_car_serie": 63089, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258697, + "fields": { + "id_car_serie": 64030, + "name": "1.5 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258698, + "fields": { + "id_car_serie": 64030, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258699, + "fields": { + "id_car_serie": 64030, + "name": "1.8 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258700, + "fields": { + "id_car_serie": 63090, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258701, + "fields": { + "id_car_serie": 63090, + "name": "1.6 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258702, + "fields": { + "id_car_serie": 63090, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258703, + "fields": { + "id_car_serie": 63090, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258704, + "fields": { + "id_car_serie": 63090, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258705, + "fields": { + "id_car_serie": 63090, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258706, + "fields": { + "id_car_serie": 63090, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258707, + "fields": { + "id_car_serie": 63090, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258708, + "fields": { + "id_car_serie": 64031, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258709, + "fields": { + "id_car_serie": 64031, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258710, + "fields": { + "id_car_serie": 64031, + "name": "1.6 MT 4WD (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258711, + "fields": { + "id_car_serie": 64031, + "name": "1.6 AT 4WD (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258712, + "fields": { + "id_car_serie": 64031, + "name": "2.0 AT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258713, + "fields": { + "id_car_serie": 64031, + "name": "2.0 AT 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258714, + "fields": { + "id_car_serie": 48288, + "name": "2.5 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258715, + "fields": { + "id_car_serie": 48288, + "name": "2.5 AT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258716, + "fields": { + "id_car_serie": 48288, + "name": "2.5 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258717, + "fields": { + "id_car_serie": 48288, + "name": "3.0 MT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258718, + "fields": { + "id_car_serie": 48288, + "name": "3.0 AT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258719, + "fields": { + "id_car_serie": 48288, + "name": "3.0 MT 4WD (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258720, + "fields": { + "id_car_serie": 48287, + "name": "2.5 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258721, + "fields": { + "id_car_serie": 48287, + "name": "2.5 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258722, + "fields": { + "id_car_serie": 48287, + "name": "2.5 AT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258723, + "fields": { + "id_car_serie": 48287, + "name": "3.0 AT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258724, + "fields": { + "id_car_serie": 48287, + "name": "3.0 MT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258725, + "fields": { + "id_car_serie": 48287, + "name": "3.0 MT 4WD (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258726, + "fields": { + "id_car_serie": 63091, + "name": "2.4 AT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258727, + "fields": { + "id_car_serie": 63091, + "name": "2.5 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258728, + "fields": { + "id_car_serie": 63091, + "name": "2.5 MT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258729, + "fields": { + "id_car_serie": 63091, + "name": "2.5 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258730, + "fields": { + "id_car_serie": 63091, + "name": "2.5 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258731, + "fields": { + "id_car_serie": 63092, + "name": "2.4 AT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258732, + "fields": { + "id_car_serie": 63092, + "name": "2.5 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258733, + "fields": { + "id_car_serie": 63092, + "name": "2.5 MT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258734, + "fields": { + "id_car_serie": 63092, + "name": "2.5 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258735, + "fields": { + "id_car_serie": 63092, + "name": "2.5 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258736, + "fields": { + "id_car_serie": 63093, + "name": "2.4 AT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258737, + "fields": { + "id_car_serie": 63093, + "name": "2.4 MT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258738, + "fields": { + "id_car_serie": 63093, + "name": "2.5 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258739, + "fields": { + "id_car_serie": 63093, + "name": "2.5 MT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258740, + "fields": { + "id_car_serie": 63093, + "name": "2.5 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258741, + "fields": { + "id_car_serie": 63093, + "name": "2.5 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258742, + "fields": { + "id_car_serie": 63093, + "name": "2.5 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258743, + "fields": { + "id_car_serie": 63094, + "name": "2.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258744, + "fields": { + "id_car_serie": 63094, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258745, + "fields": { + "id_car_serie": 63094, + "name": "2.5 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258746, + "fields": { + "id_car_serie": 63094, + "name": "2.5 MT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258747, + "fields": { + "id_car_serie": 63094, + "name": "2.5 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258748, + "fields": { + "id_car_serie": 63094, + "name": "2.5 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258749, + "fields": { + "id_car_serie": 63094, + "name": "2.5 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258750, + "fields": { + "id_car_serie": 63094, + "name": "2.4 AT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258751, + "fields": { + "id_car_serie": 63095, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258752, + "fields": { + "id_car_serie": 63095, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258753, + "fields": { + "id_car_serie": 63095, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258754, + "fields": { + "id_car_serie": 63095, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258755, + "fields": { + "id_car_serie": 63096, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258756, + "fields": { + "id_car_serie": 63096, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258757, + "fields": { + "id_car_serie": 63096, + "name": "2.7 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258758, + "fields": { + "id_car_serie": 63096, + "name": "2.7 MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258759, + "fields": { + "id_car_serie": 63096, + "name": "1.8 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258760, + "fields": { + "id_car_serie": 63096, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258761, + "fields": { + "id_car_serie": 63096, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258762, + "fields": { + "id_car_serie": 63096, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258763, + "fields": { + "id_car_serie": 63096, + "name": "2.4 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258764, + "fields": { + "id_car_serie": 63096, + "name": "2.4 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258765, + "fields": { + "id_car_serie": 63096, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258766, + "fields": { + "id_car_serie": 63096, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258767, + "fields": { + "id_car_serie": 63096, + "name": "2.7 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258768, + "fields": { + "id_car_serie": 63096, + "name": "2.7 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258769, + "fields": { + "id_car_serie": 63097, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258770, + "fields": { + "id_car_serie": 63097, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258771, + "fields": { + "id_car_serie": 63097, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258772, + "fields": { + "id_car_serie": 63097, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258773, + "fields": { + "id_car_serie": 63097, + "name": "2.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258774, + "fields": { + "id_car_serie": 63097, + "name": "2.0 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258775, + "fields": { + "id_car_serie": 63097, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258776, + "fields": { + "id_car_serie": 63097, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258777, + "fields": { + "id_car_serie": 63097, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258778, + "fields": { + "id_car_serie": 63097, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258779, + "fields": { + "id_car_serie": 63097, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258780, + "fields": { + "id_car_serie": 63097, + "name": "2.0 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258781, + "fields": { + "id_car_serie": 63097, + "name": "3.0 AT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258782, + "fields": { + "id_car_serie": 63097, + "name": "2.0 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258783, + "fields": { + "id_car_serie": 63098, + "name": "2.4 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258784, + "fields": { + "id_car_serie": 63098, + "name": "2.4 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258785, + "fields": { + "id_car_serie": 63098, + "name": "2.4 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258786, + "fields": { + "id_car_serie": 63098, + "name": "2.5 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258787, + "fields": { + "id_car_serie": 63098, + "name": "2.5 AT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258788, + "fields": { + "id_car_serie": 63098, + "name": "2.5 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258789, + "fields": { + "id_car_serie": 63098, + "name": "2.5 MT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258790, + "fields": { + "id_car_serie": 63098, + "name": "2.5 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258791, + "fields": { + "id_car_serie": 63098, + "name": "2.5 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258792, + "fields": { + "id_car_serie": 63098, + "name": "2.5 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258793, + "fields": { + "id_car_serie": 63098, + "name": "2.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258794, + "fields": { + "id_car_serie": 63098, + "name": "2.5 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258795, + "fields": { + "id_car_serie": 63098, + "name": "2.5 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258796, + "fields": { + "id_car_serie": 63098, + "name": "2.5 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258797, + "fields": { + "id_car_serie": 63098, + "name": "2.5 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258798, + "fields": { + "id_car_serie": 64032, + "name": "2.4 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258799, + "fields": { + "id_car_serie": 64032, + "name": "2.4 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258800, + "fields": { + "id_car_serie": 64032, + "name": "2.4 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258801, + "fields": { + "id_car_serie": 64032, + "name": "2.5 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258802, + "fields": { + "id_car_serie": 64032, + "name": "2.5 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258803, + "fields": { + "id_car_serie": 64032, + "name": "2.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258804, + "fields": { + "id_car_serie": 64032, + "name": "2.5 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258805, + "fields": { + "id_car_serie": 64032, + "name": "2.5 MT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258806, + "fields": { + "id_car_serie": 64032, + "name": "2.5 AT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258807, + "fields": { + "id_car_serie": 64032, + "name": "2.5 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258808, + "fields": { + "id_car_serie": 64032, + "name": "2.5 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258809, + "fields": { + "id_car_serie": 64033, + "name": "2.4 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258810, + "fields": { + "id_car_serie": 64033, + "name": "2.4 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258811, + "fields": { + "id_car_serie": 64033, + "name": "2.4 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258812, + "fields": { + "id_car_serie": 64033, + "name": "2.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258813, + "fields": { + "id_car_serie": 64033, + "name": "2.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258814, + "fields": { + "id_car_serie": 64033, + "name": "2.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258815, + "fields": { + "id_car_serie": 64033, + "name": "2.5 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258816, + "fields": { + "id_car_serie": 64033, + "name": "2.5 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258817, + "fields": { + "id_car_serie": 64033, + "name": "2.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258818, + "fields": { + "id_car_serie": 64033, + "name": "2.5 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258819, + "fields": { + "id_car_serie": 64033, + "name": "2.5 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258820, + "fields": { + "id_car_serie": 64033, + "name": "2.5 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258821, + "fields": { + "id_car_serie": 64033, + "name": "2.5 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258822, + "fields": { + "id_car_serie": 64033, + "name": "2.6 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258823, + "fields": { + "id_car_serie": 64033, + "name": "2.6 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258824, + "fields": { + "id_car_serie": 63099, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258825, + "fields": { + "id_car_serie": 63099, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258826, + "fields": { + "id_car_serie": 63099, + "name": "2.7 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258827, + "fields": { + "id_car_serie": 63099, + "name": "2.7 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258828, + "fields": { + "id_car_serie": 63099, + "name": "2.7 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258829, + "fields": { + "id_car_serie": 63099, + "name": "2.7 MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258830, + "fields": { + "id_car_serie": 63100, + "name": "1.6 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258831, + "fields": { + "id_car_serie": 63100, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258832, + "fields": { + "id_car_serie": 63100, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258833, + "fields": { + "id_car_serie": 63100, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258834, + "fields": { + "id_car_serie": 63100, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258835, + "fields": { + "id_car_serie": 63100, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258836, + "fields": { + "id_car_serie": 64034, + "name": "1.6 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258837, + "fields": { + "id_car_serie": 64034, + "name": "1.6 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258838, + "fields": { + "id_car_serie": 64034, + "name": "2.0 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258839, + "fields": { + "id_car_serie": 64034, + "name": "2.0 MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258840, + "fields": { + "id_car_serie": 64034, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258841, + "fields": { + "id_car_serie": 64034, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258842, + "fields": { + "id_car_serie": 64035, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258843, + "fields": { + "id_car_serie": 64035, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258844, + "fields": { + "id_car_serie": 64035, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258845, + "fields": { + "id_car_serie": 64035, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258846, + "fields": { + "id_car_serie": 64036, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258847, + "fields": { + "id_car_serie": 64036, + "name": "1.4 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258848, + "fields": { + "id_car_serie": 64036, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258849, + "fields": { + "id_car_serie": 64036, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258850, + "fields": { + "id_car_serie": 64036, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258851, + "fields": { + "id_car_serie": 64036, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258852, + "fields": { + "id_car_serie": 64037, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258853, + "fields": { + "id_car_serie": 64037, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258854, + "fields": { + "id_car_serie": 64037, + "name": "1.5 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258855, + "fields": { + "id_car_serie": 64037, + "name": "1.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258856, + "fields": { + "id_car_serie": 64038, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258857, + "fields": { + "id_car_serie": 64038, + "name": "1.3 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258858, + "fields": { + "id_car_serie": 64038, + "name": "1.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258859, + "fields": { + "id_car_serie": 64038, + "name": "1.5 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258860, + "fields": { + "id_car_serie": 64038, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258861, + "fields": { + "id_car_serie": 64038, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258862, + "fields": { + "id_car_serie": 64039, + "name": "1.0 AMT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258863, + "fields": { + "id_car_serie": 64039, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258864, + "fields": { + "id_car_serie": 64039, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258865, + "fields": { + "id_car_serie": 64039, + "name": "1.0 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258866, + "fields": { + "id_car_serie": 64039, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258867, + "fields": { + "id_car_serie": 64040, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258868, + "fields": { + "id_car_serie": 64040, + "name": "1.0 AMT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258869, + "fields": { + "id_car_serie": 64040, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258870, + "fields": { + "id_car_serie": 64040, + "name": "1.0 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258871, + "fields": { + "id_car_serie": 64040, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258872, + "fields": { + "id_car_serie": 64041, + "name": "1.1 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258873, + "fields": { + "id_car_serie": 64041, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258874, + "fields": { + "id_car_serie": 64041, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258875, + "fields": { + "id_car_serie": 64041, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258876, + "fields": { + "id_car_serie": 64041, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258877, + "fields": { + "id_car_serie": 64042, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258878, + "fields": { + "id_car_serie": 64042, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258879, + "fields": { + "id_car_serie": 64042, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258880, + "fields": { + "id_car_serie": 64042, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258881, + "fields": { + "id_car_serie": 64043, + "name": "1.0 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258882, + "fields": { + "id_car_serie": 64043, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258883, + "fields": { + "id_car_serie": 64043, + "name": "1.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258884, + "fields": { + "id_car_serie": 64043, + "name": "1.5 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258885, + "fields": { + "id_car_serie": 64043, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258886, + "fields": { + "id_car_serie": 64043, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258887, + "fields": { + "id_car_serie": 64043, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258888, + "fields": { + "id_car_serie": 64043, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258889, + "fields": { + "id_car_serie": 64043, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258890, + "fields": { + "id_car_serie": 64044, + "name": "1.0 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258891, + "fields": { + "id_car_serie": 64044, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258892, + "fields": { + "id_car_serie": 64044, + "name": "1.5 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258893, + "fields": { + "id_car_serie": 64044, + "name": "1.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258894, + "fields": { + "id_car_serie": 64044, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258895, + "fields": { + "id_car_serie": 64044, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258896, + "fields": { + "id_car_serie": 64044, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258897, + "fields": { + "id_car_serie": 64044, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258898, + "fields": { + "id_car_serie": 64045, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258899, + "fields": { + "id_car_serie": 64045, + "name": "1.0 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258900, + "fields": { + "id_car_serie": 64045, + "name": "1.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258901, + "fields": { + "id_car_serie": 64045, + "name": "1.5 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258902, + "fields": { + "id_car_serie": 64045, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258903, + "fields": { + "id_car_serie": 64045, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258904, + "fields": { + "id_car_serie": 64045, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258905, + "fields": { + "id_car_serie": 64045, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258906, + "fields": { + "id_car_serie": 64045, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258907, + "fields": { + "id_car_serie": 64046, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258908, + "fields": { + "id_car_serie": 64046, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258909, + "fields": { + "id_car_serie": 64046, + "name": "1.4 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258910, + "fields": { + "id_car_serie": 64046, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258911, + "fields": { + "id_car_serie": 64046, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258912, + "fields": { + "id_car_serie": 64046, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258913, + "fields": { + "id_car_serie": 64046, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258914, + "fields": { + "id_car_serie": 64046, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258915, + "fields": { + "id_car_serie": 64047, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258916, + "fields": { + "id_car_serie": 64047, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258917, + "fields": { + "id_car_serie": 64047, + "name": "1.4 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258918, + "fields": { + "id_car_serie": 64047, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258919, + "fields": { + "id_car_serie": 64047, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258920, + "fields": { + "id_car_serie": 64047, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258921, + "fields": { + "id_car_serie": 64047, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258922, + "fields": { + "id_car_serie": 64047, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258923, + "fields": { + "id_car_serie": 64063, + "name": "2.5 AT 4WD (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258924, + "fields": { + "id_car_serie": 64063, + "name": "3.5 AT 4WD (302 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258925, + "fields": { + "id_car_serie": 64063, + "name": "3.5 AT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258926, + "fields": { + "id_car_serie": 64063, + "name": "3.5 AT 4WD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258927, + "fields": { + "id_car_serie": 64063, + "name": "3.7 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258928, + "fields": { + "id_car_serie": 64063, + "name": "3.7 AT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258929, + "fields": { + "id_car_serie": 64063, + "name": "3.0 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258930, + "fields": { + "id_car_serie": 64064, + "name": "3.0 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258931, + "fields": { + "id_car_serie": 64064, + "name": "3.7 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258932, + "fields": { + "id_car_serie": 64064, + "name": "5.0 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258933, + "fields": { + "id_car_serie": 64064, + "name": "5.0 AT 4WD (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258934, + "fields": { + "id_car_serie": 64065, + "name": "3.0 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258935, + "fields": { + "id_car_serie": 64065, + "name": "3.7 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258936, + "fields": { + "id_car_serie": 64065, + "name": "5.0 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258937, + "fields": { + "id_car_serie": 64065, + "name": "3.5 AT 4WD (307 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258938, + "fields": { + "id_car_serie": 64065, + "name": "5.0 AT 4WD (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258939, + "fields": { + "id_car_serie": 64066, + "name": "3.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258940, + "fields": { + "id_car_serie": 64066, + "name": "4.5 AT 4WD (328 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258941, + "fields": { + "id_car_serie": 64067, + "name": "3.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258942, + "fields": { + "id_car_serie": 64067, + "name": "4.5 AT 4WD (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258943, + "fields": { + "id_car_serie": 63103, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258944, + "fields": { + "id_car_serie": 63103, + "name": "3.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258945, + "fields": { + "id_car_serie": 63103, + "name": "3.5 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258946, + "fields": { + "id_car_serie": 63104, + "name": "3.0 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258947, + "fields": { + "id_car_serie": 63104, + "name": "3.0 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258948, + "fields": { + "id_car_serie": 63105, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258949, + "fields": { + "id_car_serie": 63105, + "name": "3.0 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258950, + "fields": { + "id_car_serie": 64068, + "name": "3.5 CVT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258951, + "fields": { + "id_car_serie": 63106, + "name": "2.5 AT (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258952, + "fields": { + "id_car_serie": 63106, + "name": "3.7 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258953, + "fields": { + "id_car_serie": 63106, + "name": "5.6 AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258954, + "fields": { + "id_car_serie": 63106, + "name": "3.0 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258955, + "fields": { + "id_car_serie": 63107, + "name": "3.5 AT (307 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258956, + "fields": { + "id_car_serie": 63107, + "name": "3.5 AT 4WD (307 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258957, + "fields": { + "id_car_serie": 63107, + "name": "4.5 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258958, + "fields": { + "id_car_serie": 63107, + "name": "3.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258959, + "fields": { + "id_car_serie": 63107, + "name": "3.5 AT 4WD (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258960, + "fields": { + "id_car_serie": 63107, + "name": "4.5 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258961, + "fields": { + "id_car_serie": 63108, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258962, + "fields": { + "id_car_serie": 63108, + "name": "3.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258963, + "fields": { + "id_car_serie": 63108, + "name": "4.5 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258964, + "fields": { + "id_car_serie": 63109, + "name": "4.5 AT (344 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258965, + "fields": { + "id_car_serie": 63110, + "name": "3.0 AT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258966, + "fields": { + "id_car_serie": 64069, + "name": "3.0 AT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258967, + "fields": { + "id_car_serie": 63111, + "name": "4.5 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258968, + "fields": { + "id_car_serie": 63112, + "name": "4.5 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258969, + "fields": { + "id_car_serie": 63113, + "name": "4.1 AT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258970, + "fields": { + "id_car_serie": 63114, + "name": "4.5 AT (278 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258971, + "fields": { + "id_car_serie": 63115, + "name": "3.0 AT 4WD (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258972, + "fields": { + "id_car_serie": 63115, + "name": "2.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258973, + "fields": { + "id_car_serie": 63115, + "name": "2.0 AT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258974, + "fields": { + "id_car_serie": 63115, + "name": "3.0 AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258975, + "fields": { + "id_car_serie": 63115, + "name": "3.0 AT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258976, + "fields": { + "id_car_serie": 64070, + "name": "3.7 AT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258977, + "fields": { + "id_car_serie": 64070, + "name": "3.7 MT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258978, + "fields": { + "id_car_serie": 64070, + "name": "3.7 AT (348 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258979, + "fields": { + "id_car_serie": 63553, + "name": "1.7 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258980, + "fields": { + "id_car_serie": 63553, + "name": "1.7 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258981, + "fields": { + "id_car_serie": 63553, + "name": "1.7 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258982, + "fields": { + "id_car_serie": 63554, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258983, + "fields": { + "id_car_serie": 64941, + "name": "2.3 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258984, + "fields": { + "id_car_serie": 63555, + "name": "5.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258985, + "fields": { + "id_car_serie": 63555, + "name": "5.5 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258986, + "fields": { + "id_car_serie": 63555, + "name": "5.5 MT (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258987, + "fields": { + "id_car_serie": 63555, + "name": "6.0 MT (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258988, + "fields": { + "id_car_serie": 63556, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258989, + "fields": { + "id_car_serie": 63556, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258990, + "fields": { + "id_car_serie": 63556, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258991, + "fields": { + "id_car_serie": 63556, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258992, + "fields": { + "id_car_serie": 63556, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258993, + "fields": { + "id_car_serie": 63556, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258994, + "fields": { + "id_car_serie": 63556, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258995, + "fields": { + "id_car_serie": 63556, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258996, + "fields": { + "id_car_serie": 63556, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258997, + "fields": { + "id_car_serie": 63556, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258998, + "fields": { + "id_car_serie": 63556, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 258999, + "fields": { + "id_car_serie": 63556, + "name": "2.0 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259000, + "fields": { + "id_car_serie": 63556, + "name": "2.2 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259001, + "fields": { + "id_car_serie": 63556, + "name": "2.2 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259002, + "fields": { + "id_car_serie": 63557, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259003, + "fields": { + "id_car_serie": 63557, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259004, + "fields": { + "id_car_serie": 63557, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259005, + "fields": { + "id_car_serie": 63557, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259006, + "fields": { + "id_car_serie": 63557, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259007, + "fields": { + "id_car_serie": 63557, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259008, + "fields": { + "id_car_serie": 63557, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259009, + "fields": { + "id_car_serie": 63557, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259010, + "fields": { + "id_car_serie": 63557, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259011, + "fields": { + "id_car_serie": 63557, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259012, + "fields": { + "id_car_serie": 63558, + "name": "1.9 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259013, + "fields": { + "id_car_serie": 63558, + "name": "1.9 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259014, + "fields": { + "id_car_serie": 63558, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259015, + "fields": { + "id_car_serie": 63558, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259016, + "fields": { + "id_car_serie": 63559, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259017, + "fields": { + "id_car_serie": 63559, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259018, + "fields": { + "id_car_serie": 63559, + "name": "1.5 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259019, + "fields": { + "id_car_serie": 63559, + "name": "1.5 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259020, + "fields": { + "id_car_serie": 63559, + "name": "1.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259021, + "fields": { + "id_car_serie": 63559, + "name": "1.5 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259022, + "fields": { + "id_car_serie": 63559, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259023, + "fields": { + "id_car_serie": 63559, + "name": "1.5 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259024, + "fields": { + "id_car_serie": 63559, + "name": "1.5 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259025, + "fields": { + "id_car_serie": 63559, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259026, + "fields": { + "id_car_serie": 63559, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259027, + "fields": { + "id_car_serie": 63559, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259028, + "fields": { + "id_car_serie": 63559, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259029, + "fields": { + "id_car_serie": 63559, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259030, + "fields": { + "id_car_serie": 63559, + "name": "1.8 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259031, + "fields": { + "id_car_serie": 63559, + "name": "1.8 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259032, + "fields": { + "id_car_serie": 64942, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259033, + "fields": { + "id_car_serie": 64942, + "name": "1.8 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259034, + "fields": { + "id_car_serie": 64943, + "name": "1.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259035, + "fields": { + "id_car_serie": 64943, + "name": "1.5 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259036, + "fields": { + "id_car_serie": 64943, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259037, + "fields": { + "id_car_serie": 64943, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259038, + "fields": { + "id_car_serie": 64943, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259039, + "fields": { + "id_car_serie": 64943, + "name": "1.6 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259040, + "fields": { + "id_car_serie": 64943, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259041, + "fields": { + "id_car_serie": 64943, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259042, + "fields": { + "id_car_serie": 64943, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259043, + "fields": { + "id_car_serie": 64943, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259044, + "fields": { + "id_car_serie": 64944, + "name": "2.5 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259045, + "fields": { + "id_car_serie": 64944, + "name": "2.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259046, + "fields": { + "id_car_serie": 64944, + "name": "3.0 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259047, + "fields": { + "id_car_serie": 64944, + "name": "3.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259048, + "fields": { + "id_car_serie": 64945, + "name": "2.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259049, + "fields": { + "id_car_serie": 64945, + "name": "2.5 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259050, + "fields": { + "id_car_serie": 64945, + "name": "3.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259051, + "fields": { + "id_car_serie": 64945, + "name": "3.0 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259052, + "fields": { + "id_car_serie": 64945, + "name": "3.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259053, + "fields": { + "id_car_serie": 64945, + "name": "3.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259054, + "fields": { + "id_car_serie": 63560, + "name": "3.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259055, + "fields": { + "id_car_serie": 63560, + "name": "3.0 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259056, + "fields": { + "id_car_serie": 63560, + "name": "3.0 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259057, + "fields": { + "id_car_serie": 63561, + "name": "3.2 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259058, + "fields": { + "id_car_serie": 63561, + "name": "3.3 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259059, + "fields": { + "id_car_serie": 63561, + "name": "3.3 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259060, + "fields": { + "id_car_serie": 63562, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259061, + "fields": { + "id_car_serie": 63562, + "name": "2.0 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259062, + "fields": { + "id_car_serie": 63563, + "name": "1.6 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259063, + "fields": { + "id_car_serie": 63563, + "name": "1.6 AT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259064, + "fields": { + "id_car_serie": 63563, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259065, + "fields": { + "id_car_serie": 63563, + "name": "1.6 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259066, + "fields": { + "id_car_serie": 63563, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259067, + "fields": { + "id_car_serie": 63563, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259068, + "fields": { + "id_car_serie": 63563, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259069, + "fields": { + "id_car_serie": 63563, + "name": "1.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259070, + "fields": { + "id_car_serie": 63563, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259071, + "fields": { + "id_car_serie": 63563, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259072, + "fields": { + "id_car_serie": 63563, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259073, + "fields": { + "id_car_serie": 64946, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259074, + "fields": { + "id_car_serie": 64946, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259075, + "fields": { + "id_car_serie": 64946, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259076, + "fields": { + "id_car_serie": 64946, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259077, + "fields": { + "id_car_serie": 64946, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259078, + "fields": { + "id_car_serie": 64946, + "name": "1.8 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259079, + "fields": { + "id_car_serie": 64946, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259080, + "fields": { + "id_car_serie": 64946, + "name": "1.8 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259081, + "fields": { + "id_car_serie": 64947, + "name": "2.2 AT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259082, + "fields": { + "id_car_serie": 64947, + "name": "2.2 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259083, + "fields": { + "id_car_serie": 64947, + "name": "2.8 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259084, + "fields": { + "id_car_serie": 64947, + "name": "2.8 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259085, + "fields": { + "id_car_serie": 64947, + "name": "3.0 MT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259086, + "fields": { + "id_car_serie": 64947, + "name": "3.0 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259087, + "fields": { + "id_car_serie": 64947, + "name": "2.3 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259088, + "fields": { + "id_car_serie": 64947, + "name": "2.3 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259089, + "fields": { + "id_car_serie": 64947, + "name": "2.3 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259090, + "fields": { + "id_car_serie": 64947, + "name": "2.3 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259091, + "fields": { + "id_car_serie": 64948, + "name": "2.0 MT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259092, + "fields": { + "id_car_serie": 64948, + "name": "2.3 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259093, + "fields": { + "id_car_serie": 64948, + "name": "2.2 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259094, + "fields": { + "id_car_serie": 64948, + "name": "2.2 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259095, + "fields": { + "id_car_serie": 64949, + "name": "2.0 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259096, + "fields": { + "id_car_serie": 64949, + "name": "2.0 MT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259097, + "fields": { + "id_car_serie": 64949, + "name": "2.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259098, + "fields": { + "id_car_serie": 64949, + "name": "2.3 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259099, + "fields": { + "id_car_serie": 64949, + "name": "2.2 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259100, + "fields": { + "id_car_serie": 64950, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259101, + "fields": { + "id_car_serie": 64950, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259102, + "fields": { + "id_car_serie": 64950, + "name": "1.1 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259103, + "fields": { + "id_car_serie": 63564, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259104, + "fields": { + "id_car_serie": 63564, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259105, + "fields": { + "id_car_serie": 63564, + "name": "1.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259106, + "fields": { + "id_car_serie": 63564, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259107, + "fields": { + "id_car_serie": 63564, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259108, + "fields": { + "id_car_serie": 63564, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259109, + "fields": { + "id_car_serie": 63564, + "name": "1.8 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259110, + "fields": { + "id_car_serie": 63565, + "name": "2.4 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259111, + "fields": { + "id_car_serie": 64951, + "name": "2.0 MT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259112, + "fields": { + "id_car_serie": 64951, + "name": "2.4 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259113, + "fields": { + "id_car_serie": 64952, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259114, + "fields": { + "id_car_serie": 64952, + "name": "2.4 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259115, + "fields": { + "id_car_serie": 64953, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259116, + "fields": { + "id_car_serie": 64953, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259117, + "fields": { + "id_car_serie": 64953, + "name": "2.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259118, + "fields": { + "id_car_serie": 64954, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259119, + "fields": { + "id_car_serie": 64954, + "name": "2.0 MT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259120, + "fields": { + "id_car_serie": 64954, + "name": "2.0 MT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259121, + "fields": { + "id_car_serie": 64954, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259122, + "fields": { + "id_car_serie": 64954, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259123, + "fields": { + "id_car_serie": 64956, + "name": "2.0 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259124, + "fields": { + "id_car_serie": 64956, + "name": "3.0 AT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259125, + "fields": { + "id_car_serie": 64956, + "name": "3.0 AT 4WD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259126, + "fields": { + "id_car_serie": 64956, + "name": "5.0 AT 4WD (575 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259127, + "fields": { + "id_car_serie": 64956, + "name": "5.0 AT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259128, + "fields": { + "id_car_serie": 64957, + "name": "2.0 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259129, + "fields": { + "id_car_serie": 64957, + "name": "3.0 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259130, + "fields": { + "id_car_serie": 64957, + "name": "3.0 AT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259131, + "fields": { + "id_car_serie": 64957, + "name": "3.0 AT 4WD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259132, + "fields": { + "id_car_serie": 64957, + "name": "5.0 AT 4WD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259133, + "fields": { + "id_car_serie": 64957, + "name": "5.0 AT 4WD (575 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259134, + "fields": { + "id_car_serie": 64957, + "name": "3.0 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259135, + "fields": { + "id_car_serie": 64958, + "name": "3.0 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259136, + "fields": { + "id_car_serie": 64958, + "name": "3.0 AT 4WD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259137, + "fields": { + "id_car_serie": 64958, + "name": "5.0 AT 4WD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259138, + "fields": { + "id_car_serie": 64958, + "name": "5.0 AT (495 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259139, + "fields": { + "id_car_serie": 64958, + "name": "5.0 AT 4WD (575 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259140, + "fields": { + "id_car_serie": 63566, + "name": "3.4 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259141, + "fields": { + "id_car_serie": 63567, + "name": "3.8 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259142, + "fields": { + "id_car_serie": 63567, + "name": "3.8 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259143, + "fields": { + "id_car_serie": 64959, + "name": "2.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259144, + "fields": { + "id_car_serie": 64959, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259145, + "fields": { + "id_car_serie": 64959, + "name": "3.0 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259146, + "fields": { + "id_car_serie": 64959, + "name": "5.0 AT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259147, + "fields": { + "id_car_serie": 64959, + "name": "5.0 AT (470 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259148, + "fields": { + "id_car_serie": 64959, + "name": "3.0 AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259149, + "fields": { + "id_car_serie": 64959, + "name": "2.2 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259150, + "fields": { + "id_car_serie": 64959, + "name": "2.2 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259151, + "fields": { + "id_car_serie": 64959, + "name": "3.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259152, + "fields": { + "id_car_serie": 64960, + "name": "2.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259153, + "fields": { + "id_car_serie": 64960, + "name": "3.0 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259154, + "fields": { + "id_car_serie": 64960, + "name": "2.2 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259155, + "fields": { + "id_car_serie": 64960, + "name": "2.2 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259156, + "fields": { + "id_car_serie": 64960, + "name": "3.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259157, + "fields": { + "id_car_serie": 64960, + "name": "3.0 AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259158, + "fields": { + "id_car_serie": 63569, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259159, + "fields": { + "id_car_serie": 63569, + "name": "2.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259160, + "fields": { + "id_car_serie": 63569, + "name": "5.0 AT (470 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259161, + "fields": { + "id_car_serie": 63569, + "name": "5.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259162, + "fields": { + "id_car_serie": 63569, + "name": "3.0 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259163, + "fields": { + "id_car_serie": 63570, + "name": "3.3 AT (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259164, + "fields": { + "id_car_serie": 63570, + "name": "4.0 AT (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259165, + "fields": { + "id_car_serie": 63571, + "name": "2.9 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259166, + "fields": { + "id_car_serie": 63571, + "name": "2.9 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259167, + "fields": { + "id_car_serie": 63571, + "name": "2.9 MT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259168, + "fields": { + "id_car_serie": 63571, + "name": "2.9 AT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259169, + "fields": { + "id_car_serie": 63571, + "name": "2.9 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259170, + "fields": { + "id_car_serie": 63571, + "name": "2.9 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259171, + "fields": { + "id_car_serie": 63571, + "name": "3.2 MT (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259172, + "fields": { + "id_car_serie": 63571, + "name": "3.2 AT (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259173, + "fields": { + "id_car_serie": 63571, + "name": "3.6 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259174, + "fields": { + "id_car_serie": 63571, + "name": "3.6 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259175, + "fields": { + "id_car_serie": 63571, + "name": "3.6 MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259176, + "fields": { + "id_car_serie": 63571, + "name": "3.6 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259177, + "fields": { + "id_car_serie": 63571, + "name": "3.6 MT (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259178, + "fields": { + "id_car_serie": 63571, + "name": "3.6 AT (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259179, + "fields": { + "id_car_serie": 63571, + "name": "4.0 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259180, + "fields": { + "id_car_serie": 63571, + "name": "4.0 MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259181, + "fields": { + "id_car_serie": 63571, + "name": "4.0 MT (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259182, + "fields": { + "id_car_serie": 63571, + "name": "4.0 AT (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259183, + "fields": { + "id_car_serie": 63571, + "name": "6.0 MT (311 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259184, + "fields": { + "id_car_serie": 63571, + "name": "6.0 AT (311 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259185, + "fields": { + "id_car_serie": 63572, + "name": "4.0 MT (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259186, + "fields": { + "id_car_serie": 63572, + "name": "4.0 AT (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259187, + "fields": { + "id_car_serie": 63572, + "name": "4.0 MT (226 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259188, + "fields": { + "id_car_serie": 63572, + "name": "4.0 MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259189, + "fields": { + "id_car_serie": 63572, + "name": "4.0 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259190, + "fields": { + "id_car_serie": 63572, + "name": "5.3 AT (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259191, + "fields": { + "id_car_serie": 63572, + "name": "6.0 AT (302 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259192, + "fields": { + "id_car_serie": 63572, + "name": "6.0 AT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259193, + "fields": { + "id_car_serie": 63572, + "name": "6.0 AT (318 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259194, + "fields": { + "id_car_serie": 64961, + "name": "4.0 MT (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259195, + "fields": { + "id_car_serie": 64961, + "name": "4.0 MT (226 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259196, + "fields": { + "id_car_serie": 64961, + "name": "4.0 MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259197, + "fields": { + "id_car_serie": 64961, + "name": "4.0 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259198, + "fields": { + "id_car_serie": 64961, + "name": "4.0 AT (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259199, + "fields": { + "id_car_serie": 64961, + "name": "5.3 AT (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259200, + "fields": { + "id_car_serie": 64961, + "name": "6.0 AT (302 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259201, + "fields": { + "id_car_serie": 64961, + "name": "6.0 AT (318 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259202, + "fields": { + "id_car_serie": 63573, + "name": "5.0 AT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259203, + "fields": { + "id_car_serie": 63780, + "name": "5.0 AT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259204, + "fields": { + "id_car_serie": 63781, + "name": "4.2 AT (298 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259205, + "fields": { + "id_car_serie": 63782, + "name": "4.2 AT (298 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259206, + "fields": { + "id_car_serie": 63783, + "name": "3.4 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259207, + "fields": { + "id_car_serie": 63783, + "name": "3.4 MT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259208, + "fields": { + "id_car_serie": 63783, + "name": "3.4 MT (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259209, + "fields": { + "id_car_serie": 63783, + "name": "3.8 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259210, + "fields": { + "id_car_serie": 63783, + "name": "3.8 MT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259211, + "fields": { + "id_car_serie": 63784, + "name": "3.4 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259212, + "fields": { + "id_car_serie": 63784, + "name": "3.4 MT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259213, + "fields": { + "id_car_serie": 63784, + "name": "3.4 MT (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259214, + "fields": { + "id_car_serie": 63784, + "name": "3.8 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259215, + "fields": { + "id_car_serie": 63784, + "name": "3.8 MT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259216, + "fields": { + "id_car_serie": 63785, + "name": "3.4 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259217, + "fields": { + "id_car_serie": 63785, + "name": "3.4 MT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259218, + "fields": { + "id_car_serie": 63785, + "name": "3.4 MT (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259219, + "fields": { + "id_car_serie": 63785, + "name": "3.8 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259220, + "fields": { + "id_car_serie": 63785, + "name": "3.8 MT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259221, + "fields": { + "id_car_serie": 63786, + "name": "3.4 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259222, + "fields": { + "id_car_serie": 63786, + "name": "3.4 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259223, + "fields": { + "id_car_serie": 63786, + "name": "3.4 MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259224, + "fields": { + "id_car_serie": 63787, + "name": "3.4 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259225, + "fields": { + "id_car_serie": 63787, + "name": "3.4 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259226, + "fields": { + "id_car_serie": 63787, + "name": "3.4 MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259227, + "fields": { + "id_car_serie": 63787, + "name": "3.4 MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259228, + "fields": { + "id_car_serie": 63574, + "name": "5.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259229, + "fields": { + "id_car_serie": 64962, + "name": "5.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259241, + "fields": { + "id_car_serie": 64966, + "name": "3.6 MT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259242, + "fields": { + "id_car_serie": 64966, + "name": "3.6 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259243, + "fields": { + "id_car_serie": 64967, + "name": "5.9 AT 4WD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259244, + "fields": { + "id_car_serie": 63821, + "name": "2.8 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259245, + "fields": { + "id_car_serie": 63821, + "name": "2.8 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259246, + "fields": { + "id_car_serie": 63821, + "name": "2.8 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259247, + "fields": { + "id_car_serie": 63821, + "name": "3.7 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259248, + "fields": { + "id_car_serie": 63821, + "name": "3.7 MT 4WD (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259249, + "fields": { + "id_car_serie": 63821, + "name": "3.7 AT 4WD (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259250, + "fields": { + "id_car_serie": 63822, + "name": "2.4 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259251, + "fields": { + "id_car_serie": 63822, + "name": "2.4 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259252, + "fields": { + "id_car_serie": 63822, + "name": "3.7 MT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259253, + "fields": { + "id_car_serie": 63822, + "name": "3.7 MT 4WD (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259254, + "fields": { + "id_car_serie": 63822, + "name": "3.7 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259255, + "fields": { + "id_car_serie": 63822, + "name": "3.7 AT 4WD (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259256, + "fields": { + "id_car_serie": 63822, + "name": "2.8 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259257, + "fields": { + "id_car_serie": 63822, + "name": "2.8 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259258, + "fields": { + "id_car_serie": 63822, + "name": "2.8 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259259, + "fields": { + "id_car_serie": 63822, + "name": "2.8 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259260, + "fields": { + "id_car_serie": 63822, + "name": "2.8 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259261, + "fields": { + "id_car_serie": 64968, + "name": "2.4 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259262, + "fields": { + "id_car_serie": 64968, + "name": "2.0 CVT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259263, + "fields": { + "id_car_serie": 64968, + "name": "2.0 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259264, + "fields": { + "id_car_serie": 64968, + "name": "2.0 MT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259265, + "fields": { + "id_car_serie": 64968, + "name": "2.0 CVT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259266, + "fields": { + "id_car_serie": 64968, + "name": "2.4 CVT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259267, + "fields": { + "id_car_serie": 64968, + "name": "2.4 MT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259268, + "fields": { + "id_car_serie": 64968, + "name": "2.4 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259269, + "fields": { + "id_car_serie": 64968, + "name": "2.4 AT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259270, + "fields": { + "id_car_serie": 64968, + "name": "2.4 CVT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259271, + "fields": { + "id_car_serie": 64968, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259272, + "fields": { + "id_car_serie": 64968, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259273, + "fields": { + "id_car_serie": 64968, + "name": "2.1 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259274, + "fields": { + "id_car_serie": 53627, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259275, + "fields": { + "id_car_serie": 53627, + "name": "1.4 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259276, + "fields": { + "id_car_serie": 53627, + "name": "1.4 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259277, + "fields": { + "id_car_serie": 53627, + "name": "2.4 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259278, + "fields": { + "id_car_serie": 53627, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259279, + "fields": { + "id_car_serie": 53627, + "name": "1.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259280, + "fields": { + "id_car_serie": 53627, + "name": "1.3 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259281, + "fields": { + "id_car_serie": 53627, + "name": "1.6 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259282, + "fields": { + "id_car_serie": 53627, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259283, + "fields": { + "id_car_serie": 53627, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259284, + "fields": { + "id_car_serie": 53627, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259285, + "fields": { + "id_car_serie": 53627, + "name": "2.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259286, + "fields": { + "id_car_serie": 64969, + "name": "2.8 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259287, + "fields": { + "id_car_serie": 64969, + "name": "2.8 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259288, + "fields": { + "id_car_serie": 64969, + "name": "2.8 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259289, + "fields": { + "id_car_serie": 64969, + "name": "2.8 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259290, + "fields": { + "id_car_serie": 64969, + "name": "3.6 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259291, + "fields": { + "id_car_serie": 64969, + "name": "3.6 MT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259292, + "fields": { + "id_car_serie": 64969, + "name": "3.8 AT 4WD (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259293, + "fields": { + "id_car_serie": 64969, + "name": "3.8 MT 4WD (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259294, + "fields": { + "id_car_serie": 64970, + "name": "6.3 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259295, + "fields": { + "id_car_serie": 64970, + "name": "6.3 AT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259296, + "fields": { + "id_car_serie": 64970, + "name": "7.2 MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259297, + "fields": { + "id_car_serie": 64970, + "name": "7.2 AT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259298, + "fields": { + "id_car_serie": 64971, + "name": "7.2 AT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259299, + "fields": { + "id_car_serie": 64971, + "name": "7.2 MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259300, + "fields": { + "id_car_serie": 63575, + "name": "2.2 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259301, + "fields": { + "id_car_serie": 63575, + "name": "2.4 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259302, + "fields": { + "id_car_serie": 63575, + "name": "2.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259303, + "fields": { + "id_car_serie": 3549, + "name": "1.3 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259304, + "fields": { + "id_car_serie": 3549, + "name": "1.3 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259305, + "fields": { + "id_car_serie": 63116, + "name": "1.6 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259306, + "fields": { + "id_car_serie": 63116, + "name": "2.0 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259307, + "fields": { + "id_car_serie": 63116, + "name": "2.0 MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259308, + "fields": { + "id_car_serie": 63116, + "name": "1.7 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259309, + "fields": { + "id_car_serie": 63116, + "name": "1.7 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259310, + "fields": { + "id_car_serie": 63116, + "name": "1.7 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259311, + "fields": { + "id_car_serie": 63117, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259312, + "fields": { + "id_car_serie": 63117, + "name": "1.8 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259313, + "fields": { + "id_car_serie": 63117, + "name": "1.8 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259314, + "fields": { + "id_car_serie": 63117, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259315, + "fields": { + "id_car_serie": 63117, + "name": "1.8 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259316, + "fields": { + "id_car_serie": 63117, + "name": "2.0 AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259317, + "fields": { + "id_car_serie": 63117, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259318, + "fields": { + "id_car_serie": 63117, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259319, + "fields": { + "id_car_serie": 63117, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259320, + "fields": { + "id_car_serie": 63117, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259321, + "fields": { + "id_car_serie": 63118, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259322, + "fields": { + "id_car_serie": 63118, + "name": "2.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259323, + "fields": { + "id_car_serie": 63118, + "name": "2.5 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259324, + "fields": { + "id_car_serie": 63118, + "name": "2.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259325, + "fields": { + "id_car_serie": 63118, + "name": "2.9 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259326, + "fields": { + "id_car_serie": 63118, + "name": "2.9 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259327, + "fields": { + "id_car_serie": 64072, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259328, + "fields": { + "id_car_serie": 64072, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259329, + "fields": { + "id_car_serie": 64072, + "name": "1.4 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259330, + "fields": { + "id_car_serie": 64072, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259331, + "fields": { + "id_car_serie": 64072, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259332, + "fields": { + "id_car_serie": 64072, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259333, + "fields": { + "id_car_serie": 64072, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259334, + "fields": { + "id_car_serie": 64072, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259335, + "fields": { + "id_car_serie": 64072, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259336, + "fields": { + "id_car_serie": 64072, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259337, + "fields": { + "id_car_serie": 64073, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259338, + "fields": { + "id_car_serie": 64073, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259339, + "fields": { + "id_car_serie": 64073, + "name": "1.4 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259340, + "fields": { + "id_car_serie": 64073, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259341, + "fields": { + "id_car_serie": 64073, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259342, + "fields": { + "id_car_serie": 64073, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259343, + "fields": { + "id_car_serie": 64073, + "name": "1.6 AMT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259344, + "fields": { + "id_car_serie": 64073, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259345, + "fields": { + "id_car_serie": 64073, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259346, + "fields": { + "id_car_serie": 64073, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259347, + "fields": { + "id_car_serie": 64073, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259348, + "fields": { + "id_car_serie": 64074, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259349, + "fields": { + "id_car_serie": 64074, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259350, + "fields": { + "id_car_serie": 64074, + "name": "1.6 AMT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259351, + "fields": { + "id_car_serie": 64074, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259352, + "fields": { + "id_car_serie": 64074, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259353, + "fields": { + "id_car_serie": 64074, + "name": "1.6 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259354, + "fields": { + "id_car_serie": 64074, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259355, + "fields": { + "id_car_serie": 64075, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259356, + "fields": { + "id_car_serie": 64075, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259357, + "fields": { + "id_car_serie": 64075, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259358, + "fields": { + "id_car_serie": 64075, + "name": "1.6 AMT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259359, + "fields": { + "id_car_serie": 64075, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259360, + "fields": { + "id_car_serie": 64075, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259361, + "fields": { + "id_car_serie": 64075, + "name": "1.6 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259362, + "fields": { + "id_car_serie": 64075, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259363, + "fields": { + "id_car_serie": 64075, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259364, + "fields": { + "id_car_serie": 64075, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259365, + "fields": { + "id_car_serie": 64075, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259366, + "fields": { + "id_car_serie": 64076, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259367, + "fields": { + "id_car_serie": 64076, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259368, + "fields": { + "id_car_serie": 64076, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259369, + "fields": { + "id_car_serie": 64076, + "name": "1.6 AMT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259370, + "fields": { + "id_car_serie": 64076, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259371, + "fields": { + "id_car_serie": 64076, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259372, + "fields": { + "id_car_serie": 64076, + "name": "1.6 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259373, + "fields": { + "id_car_serie": 64076, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259374, + "fields": { + "id_car_serie": 64076, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259375, + "fields": { + "id_car_serie": 64076, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259376, + "fields": { + "id_car_serie": 64076, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259377, + "fields": { + "id_car_serie": 64077, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259378, + "fields": { + "id_car_serie": 64077, + "name": "1.6 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259379, + "fields": { + "id_car_serie": 64077, + "name": "1.6 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259380, + "fields": { + "id_car_serie": 64077, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259381, + "fields": { + "id_car_serie": 64077, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259382, + "fields": { + "id_car_serie": 64078, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259383, + "fields": { + "id_car_serie": 64078, + "name": "1.6 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259384, + "fields": { + "id_car_serie": 64078, + "name": "1.6 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259385, + "fields": { + "id_car_serie": 64078, + "name": "1.6 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259386, + "fields": { + "id_car_serie": 64078, + "name": "1.6 AMT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259387, + "fields": { + "id_car_serie": 64078, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259388, + "fields": { + "id_car_serie": 64078, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259389, + "fields": { + "id_car_serie": 64078, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259390, + "fields": { + "id_car_serie": 64079, + "name": "1.6 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259391, + "fields": { + "id_car_serie": 64079, + "name": "1.6 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259392, + "fields": { + "id_car_serie": 64079, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259393, + "fields": { + "id_car_serie": 64080, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259394, + "fields": { + "id_car_serie": 64080, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259395, + "fields": { + "id_car_serie": 64080, + "name": "1.4 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259396, + "fields": { + "id_car_serie": 64080, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259397, + "fields": { + "id_car_serie": 64081, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259398, + "fields": { + "id_car_serie": 64081, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259399, + "fields": { + "id_car_serie": 64081, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259400, + "fields": { + "id_car_serie": 64081, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259401, + "fields": { + "id_car_serie": 64081, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259402, + "fields": { + "id_car_serie": 64081, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259403, + "fields": { + "id_car_serie": 64081, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259404, + "fields": { + "id_car_serie": 64081, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259405, + "fields": { + "id_car_serie": 64081, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259406, + "fields": { + "id_car_serie": 64081, + "name": "1.6 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259407, + "fields": { + "id_car_serie": 64081, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259408, + "fields": { + "id_car_serie": 64081, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259409, + "fields": { + "id_car_serie": 64082, + "name": "1.4 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259410, + "fields": { + "id_car_serie": 64082, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259411, + "fields": { + "id_car_serie": 64082, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259412, + "fields": { + "id_car_serie": 64082, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259413, + "fields": { + "id_car_serie": 64082, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259414, + "fields": { + "id_car_serie": 64082, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259415, + "fields": { + "id_car_serie": 64082, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259416, + "fields": { + "id_car_serie": 64082, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259417, + "fields": { + "id_car_serie": 64082, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259418, + "fields": { + "id_car_serie": 64083, + "name": "1.4 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259419, + "fields": { + "id_car_serie": 64083, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259420, + "fields": { + "id_car_serie": 64083, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259421, + "fields": { + "id_car_serie": 64083, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259422, + "fields": { + "id_car_serie": 64083, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259423, + "fields": { + "id_car_serie": 64083, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259424, + "fields": { + "id_car_serie": 64083, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259425, + "fields": { + "id_car_serie": 64083, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259426, + "fields": { + "id_car_serie": 64083, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259427, + "fields": { + "id_car_serie": 64084, + "name": "1.4 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259428, + "fields": { + "id_car_serie": 64084, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259429, + "fields": { + "id_car_serie": 64084, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259430, + "fields": { + "id_car_serie": 64084, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259431, + "fields": { + "id_car_serie": 64084, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259432, + "fields": { + "id_car_serie": 64084, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259433, + "fields": { + "id_car_serie": 64084, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259434, + "fields": { + "id_car_serie": 64084, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259435, + "fields": { + "id_car_serie": 64084, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259436, + "fields": { + "id_car_serie": 64085, + "name": "1.4 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259437, + "fields": { + "id_car_serie": 64085, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259438, + "fields": { + "id_car_serie": 64085, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259439, + "fields": { + "id_car_serie": 64085, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259440, + "fields": { + "id_car_serie": 64085, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259441, + "fields": { + "id_car_serie": 64085, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259442, + "fields": { + "id_car_serie": 64085, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259443, + "fields": { + "id_car_serie": 64085, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259444, + "fields": { + "id_car_serie": 64086, + "name": "1.6 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259445, + "fields": { + "id_car_serie": 64086, + "name": "1.6 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259446, + "fields": { + "id_car_serie": 64087, + "name": "1.6 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259447, + "fields": { + "id_car_serie": 64088, + "name": "1.6 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259448, + "fields": { + "id_car_serie": 64089, + "name": "1.6 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259449, + "fields": { + "id_car_serie": 64090, + "name": "1.6 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259450, + "fields": { + "id_car_serie": 64091, + "name": "1.6 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259451, + "fields": { + "id_car_serie": 64091, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259452, + "fields": { + "id_car_serie": 64091, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259453, + "fields": { + "id_car_serie": 64091, + "name": "2.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259468, + "fields": { + "id_car_serie": 63119, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259469, + "fields": { + "id_car_serie": 63119, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259470, + "fields": { + "id_car_serie": 63119, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259471, + "fields": { + "id_car_serie": 63119, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259472, + "fields": { + "id_car_serie": 64094, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259473, + "fields": { + "id_car_serie": 64094, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259474, + "fields": { + "id_car_serie": 64094, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259475, + "fields": { + "id_car_serie": 64094, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259476, + "fields": { + "id_car_serie": 63120, + "name": "1.6 MT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259477, + "fields": { + "id_car_serie": 63120, + "name": "1.6 AMT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259478, + "fields": { + "id_car_serie": 63120, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259479, + "fields": { + "id_car_serie": 63120, + "name": "2.0 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259480, + "fields": { + "id_car_serie": 63121, + "name": "2.0 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259481, + "fields": { + "id_car_serie": 63121, + "name": "2.0 MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259482, + "fields": { + "id_car_serie": 63121, + "name": "2.0 MT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259483, + "fields": { + "id_car_serie": 63121, + "name": "2.0 AT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259484, + "fields": { + "id_car_serie": 64095, + "name": "2.0 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259485, + "fields": { + "id_car_serie": 64095, + "name": "2.0 MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259486, + "fields": { + "id_car_serie": 64096, + "name": "1.6 AT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259487, + "fields": { + "id_car_serie": 64096, + "name": "1.6 MT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259488, + "fields": { + "id_car_serie": 64096, + "name": "2.0 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259489, + "fields": { + "id_car_serie": 64096, + "name": "2.0 MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259490, + "fields": { + "id_car_serie": 64097, + "name": "1.8 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259491, + "fields": { + "id_car_serie": 64097, + "name": "1.8 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259492, + "fields": { + "id_car_serie": 64097, + "name": "2.0 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259493, + "fields": { + "id_car_serie": 64097, + "name": "2.0 MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259494, + "fields": { + "id_car_serie": 64098, + "name": "1.6 AT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259495, + "fields": { + "id_car_serie": 64098, + "name": "1.6 MT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259496, + "fields": { + "id_car_serie": 64098, + "name": "2.0 MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259497, + "fields": { + "id_car_serie": 64098, + "name": "2.0 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259498, + "fields": { + "id_car_serie": 64099, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259499, + "fields": { + "id_car_serie": 64099, + "name": "2.5 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259500, + "fields": { + "id_car_serie": 63122, + "name": "1.6 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259501, + "fields": { + "id_car_serie": 63122, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259502, + "fields": { + "id_car_serie": 63122, + "name": "2.0 AT (168 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259503, + "fields": { + "id_car_serie": 63122, + "name": "1.7 AMT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259504, + "fields": { + "id_car_serie": 63122, + "name": "2.0 AT (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259505, + "fields": { + "id_car_serie": 63122, + "name": "2.0 MT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259506, + "fields": { + "id_car_serie": 63122, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259507, + "fields": { + "id_car_serie": 63123, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259508, + "fields": { + "id_car_serie": 63123, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259509, + "fields": { + "id_car_serie": 63123, + "name": "2.0 MT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259510, + "fields": { + "id_car_serie": 63123, + "name": "2.0 MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259511, + "fields": { + "id_car_serie": 63123, + "name": "2.0 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259512, + "fields": { + "id_car_serie": 63123, + "name": "2.0 AT (278 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259513, + "fields": { + "id_car_serie": 63124, + "name": "2.0 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259514, + "fields": { + "id_car_serie": 63124, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259515, + "fields": { + "id_car_serie": 63124, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259516, + "fields": { + "id_car_serie": 63124, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259517, + "fields": { + "id_car_serie": 63124, + "name": "2.0 AT (278 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259518, + "fields": { + "id_car_serie": 63124, + "name": "2.4 AT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259519, + "fields": { + "id_car_serie": 64100, + "name": "3.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259520, + "fields": { + "id_car_serie": 53387, + "name": "3.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259521, + "fields": { + "id_car_serie": 50327, + "name": "3.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259522, + "fields": { + "id_car_serie": 50327, + "name": "3.8 AT 4WD (274 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259523, + "fields": { + "id_car_serie": 50327, + "name": "4.6 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259529, + "fields": { + "id_car_serie": 53505, + "name": "1.6 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259530, + "fields": { + "id_car_serie": 53505, + "name": "2.0 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259531, + "fields": { + "id_car_serie": 53505, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259532, + "fields": { + "id_car_serie": 53505, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259533, + "fields": { + "id_car_serie": 53505, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259534, + "fields": { + "id_car_serie": 53505, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259535, + "fields": { + "id_car_serie": 53505, + "name": "2.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259536, + "fields": { + "id_car_serie": 64103, + "name": "2.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259537, + "fields": { + "id_car_serie": 64103, + "name": "2.7 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259538, + "fields": { + "id_car_serie": 64103, + "name": "2.7 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259539, + "fields": { + "id_car_serie": 64103, + "name": "3.0 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259540, + "fields": { + "id_car_serie": 64104, + "name": "1.4 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259541, + "fields": { + "id_car_serie": 64104, + "name": "1.4 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259542, + "fields": { + "id_car_serie": 64104, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259543, + "fields": { + "id_car_serie": 64104, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259544, + "fields": { + "id_car_serie": 64105, + "name": "1.4 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259545, + "fields": { + "id_car_serie": 64105, + "name": "1.4 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259546, + "fields": { + "id_car_serie": 64105, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259547, + "fields": { + "id_car_serie": 64105, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259548, + "fields": { + "id_car_serie": 64106, + "name": "1.4 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259549, + "fields": { + "id_car_serie": 64106, + "name": "1.4 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259550, + "fields": { + "id_car_serie": 64106, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259551, + "fields": { + "id_car_serie": 64106, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259552, + "fields": { + "id_car_serie": 64107, + "name": "1.4 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259553, + "fields": { + "id_car_serie": 64107, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259554, + "fields": { + "id_car_serie": 64107, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259555, + "fields": { + "id_car_serie": 64107, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259556, + "fields": { + "id_car_serie": 64107, + "name": "1.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259557, + "fields": { + "id_car_serie": 64107, + "name": "1.5 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259558, + "fields": { + "id_car_serie": 64108, + "name": "1.4 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259559, + "fields": { + "id_car_serie": 64108, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259560, + "fields": { + "id_car_serie": 64108, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259561, + "fields": { + "id_car_serie": 64108, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259562, + "fields": { + "id_car_serie": 64108, + "name": "1.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259563, + "fields": { + "id_car_serie": 64108, + "name": "1.5 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259564, + "fields": { + "id_car_serie": 64109, + "name": "2.0 AT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259565, + "fields": { + "id_car_serie": 64109, + "name": "2.0 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259566, + "fields": { + "id_car_serie": 64109, + "name": "2.0 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259567, + "fields": { + "id_car_serie": 64109, + "name": "2.0 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259568, + "fields": { + "id_car_serie": 64110, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259569, + "fields": { + "id_car_serie": 64110, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259570, + "fields": { + "id_car_serie": 64111, + "name": "2.4 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259571, + "fields": { + "id_car_serie": 64111, + "name": "2.4 AT 4WD (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259572, + "fields": { + "id_car_serie": 64111, + "name": "3.5 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259573, + "fields": { + "id_car_serie": 64111, + "name": "2.2 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259574, + "fields": { + "id_car_serie": 64111, + "name": "2.0 AT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259581, + "fields": { + "id_car_serie": 48386, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259582, + "fields": { + "id_car_serie": 48386, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259583, + "fields": { + "id_car_serie": 48386, + "name": "1.8 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259584, + "fields": { + "id_car_serie": 48386, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259585, + "fields": { + "id_car_serie": 48386, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259586, + "fields": { + "id_car_serie": 48386, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259587, + "fields": { + "id_car_serie": 64113, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259588, + "fields": { + "id_car_serie": 64114, + "name": "1.4 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259589, + "fields": { + "id_car_serie": 64114, + "name": "1.6 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259590, + "fields": { + "id_car_serie": 64114, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259591, + "fields": { + "id_car_serie": 64114, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259592, + "fields": { + "id_car_serie": 64114, + "name": "1.6 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259593, + "fields": { + "id_car_serie": 64114, + "name": "1.6 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259594, + "fields": { + "id_car_serie": 64114, + "name": "1.6 AMT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259595, + "fields": { + "id_car_serie": 64114, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259596, + "fields": { + "id_car_serie": 64114, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259597, + "fields": { + "id_car_serie": 64114, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259598, + "fields": { + "id_car_serie": 64114, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259599, + "fields": { + "id_car_serie": 63733, + "name": "3.3 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259600, + "fields": { + "id_car_serie": 63805, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259601, + "fields": { + "id_car_serie": 63805, + "name": "1.8 MT (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259602, + "fields": { + "id_car_serie": 64115, + "name": "1.6 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259603, + "fields": { + "id_car_serie": 64116, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259604, + "fields": { + "id_car_serie": 64116, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259605, + "fields": { + "id_car_serie": 64117, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259606, + "fields": { + "id_car_serie": 64117, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259607, + "fields": { + "id_car_serie": 64117, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259608, + "fields": { + "id_car_serie": 64117, + "name": "1.6 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259609, + "fields": { + "id_car_serie": 63127, + "name": "2.2 AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259610, + "fields": { + "id_car_serie": 63127, + "name": "2.4 (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259611, + "fields": { + "id_car_serie": 63127, + "name": "2.4 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259612, + "fields": { + "id_car_serie": 63127, + "name": "3.3 (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259613, + "fields": { + "id_car_serie": 63127, + "name": "3.0 (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259614, + "fields": { + "id_car_serie": 63128, + "name": "2.4 AT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259615, + "fields": { + "id_car_serie": 63128, + "name": "2.4 AT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259616, + "fields": { + "id_car_serie": 63128, + "name": "3.0 AT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259617, + "fields": { + "id_car_serie": 63128, + "name": "3.3 AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259618, + "fields": { + "id_car_serie": 63128, + "name": "3.0 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259619, + "fields": { + "id_car_serie": 63129, + "name": "2.4 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259620, + "fields": { + "id_car_serie": 63129, + "name": "2.4 AT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259621, + "fields": { + "id_car_serie": 63129, + "name": "2.6 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259622, + "fields": { + "id_car_serie": 63129, + "name": "3.0 AT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259623, + "fields": { + "id_car_serie": 63129, + "name": "3.3 AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259624, + "fields": { + "id_car_serie": 63129, + "name": "3.5 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259625, + "fields": { + "id_car_serie": 63129, + "name": "2.6 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259626, + "fields": { + "id_car_serie": 63129, + "name": "3.0 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259627, + "fields": { + "id_car_serie": 63130, + "name": "3.3 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259628, + "fields": { + "id_car_serie": 63130, + "name": "3.8 AT (334 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259629, + "fields": { + "id_car_serie": 63130, + "name": "5.0 AT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259630, + "fields": { + "id_car_serie": 63131, + "name": "3.3 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259631, + "fields": { + "id_car_serie": 63131, + "name": "3.8 AT (334 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259632, + "fields": { + "id_car_serie": 63132, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259633, + "fields": { + "id_car_serie": 63132, + "name": "2.0 (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259634, + "fields": { + "id_car_serie": 63132, + "name": "2.4 (179 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259635, + "fields": { + "id_car_serie": 63133, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259636, + "fields": { + "id_car_serie": 63134, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259637, + "fields": { + "id_car_serie": 63134, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259638, + "fields": { + "id_car_serie": 63134, + "name": "1.6 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259639, + "fields": { + "id_car_serie": 63135, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259640, + "fields": { + "id_car_serie": 63135, + "name": "1.3 (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259641, + "fields": { + "id_car_serie": 63135, + "name": "1.5 (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259642, + "fields": { + "id_car_serie": 63135, + "name": "1.5 (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259643, + "fields": { + "id_car_serie": 63576, + "name": "2.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259644, + "fields": { + "id_car_serie": 64118, + "name": "1.7 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259645, + "fields": { + "id_car_serie": 64118, + "name": "1.8 MT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259646, + "fields": { + "id_car_serie": 64118, + "name": "1.9 MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259647, + "fields": { + "id_car_serie": 64119, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259648, + "fields": { + "id_car_serie": 64119, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259649, + "fields": { + "id_car_serie": 64120, + "name": "1.7 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259650, + "fields": { + "id_car_serie": 64120, + "name": "1.8 MT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259651, + "fields": { + "id_car_serie": 64120, + "name": "1.9 MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259652, + "fields": { + "id_car_serie": 64121, + "name": "1.7 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259653, + "fields": { + "id_car_serie": 64122, + "name": "1.7 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259654, + "fields": { + "id_car_serie": 64123, + "name": "1.6 MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259655, + "fields": { + "id_car_serie": 64124, + "name": "1.7 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259656, + "fields": { + "id_car_serie": 64125, + "name": "1.7 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259657, + "fields": { + "id_car_serie": 64125, + "name": "1.7 MT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259658, + "fields": { + "id_car_serie": 64125, + "name": "1.7 MT 4WD (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259659, + "fields": { + "id_car_serie": 64125, + "name": "1.8 MT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259660, + "fields": { + "id_car_serie": 64125, + "name": "1.8 MT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259661, + "fields": { + "id_car_serie": 64125, + "name": "1.9 MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259663, + "fields": { + "id_car_serie": 9374, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259666, + "fields": { + "id_car_serie": 9374, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259667, + "fields": { + "id_car_serie": 64127, + "name": "1.7 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259668, + "fields": { + "id_car_serie": 63577, + "name": "3.9 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259669, + "fields": { + "id_car_serie": 63578, + "name": "5.2 MT 4WD (608 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259670, + "fields": { + "id_car_serie": 64972, + "name": "5.2 MT 4WD (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259671, + "fields": { + "id_car_serie": 64972, + "name": "5.2 MT 4WD (570 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259672, + "fields": { + "id_car_serie": 64972, + "name": "5.2 AMT 4WD (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259673, + "fields": { + "id_car_serie": 64972, + "name": "5.2 MT (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259674, + "fields": { + "id_car_serie": 64972, + "name": "5.2 AMT (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259675, + "fields": { + "id_car_serie": 64972, + "name": "5.2 AMT 4WD (570 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259676, + "fields": { + "id_car_serie": 63579, + "name": "3.9 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259677, + "fields": { + "id_car_serie": 63579, + "name": "3.9 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259678, + "fields": { + "id_car_serie": 63580, + "name": "3.9 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259679, + "fields": { + "id_car_serie": 63580, + "name": "3.9 MT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259680, + "fields": { + "id_car_serie": 63580, + "name": "3.9 MT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259681, + "fields": { + "id_car_serie": 63581, + "name": "6.5 MT 4WD (640 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259682, + "fields": { + "id_car_serie": 63581, + "name": "6.5 AMT 4WD (640 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259683, + "fields": { + "id_car_serie": 64973, + "name": "6.5 MT 4WD (640 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259684, + "fields": { + "id_car_serie": 64973, + "name": "6.5 AMT 4WD (640 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259685, + "fields": { + "id_car_serie": 64973, + "name": "6.5 AMT 4WD (670 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259686, + "fields": { + "id_car_serie": 63582, + "name": "3.0 MT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259687, + "fields": { + "id_car_serie": 64974, + "name": "0.9 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259688, + "fields": { + "id_car_serie": 64974, + "name": "1.0 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259689, + "fields": { + "id_car_serie": 64974, + "name": "1.1 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259690, + "fields": { + "id_car_serie": 63583, + "name": "1.1 MT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259691, + "fields": { + "id_car_serie": 63583, + "name": "1.1 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259692, + "fields": { + "id_car_serie": 63583, + "name": "1.1 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259693, + "fields": { + "id_car_serie": 63584, + "name": "2.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259694, + "fields": { + "id_car_serie": 64975, + "name": "1.8 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259695, + "fields": { + "id_car_serie": 64975, + "name": "2.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259696, + "fields": { + "id_car_serie": 64976, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259697, + "fields": { + "id_car_serie": 64976, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259698, + "fields": { + "id_car_serie": 64976, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259699, + "fields": { + "id_car_serie": 64977, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259700, + "fields": { + "id_car_serie": 64977, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259701, + "fields": { + "id_car_serie": 64977, + "name": "1.7 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259702, + "fields": { + "id_car_serie": 64977, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259703, + "fields": { + "id_car_serie": 64977, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259704, + "fields": { + "id_car_serie": 64977, + "name": "1.6 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259705, + "fields": { + "id_car_serie": 64977, + "name": "1.9 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259706, + "fields": { + "id_car_serie": 64977, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259707, + "fields": { + "id_car_serie": 63585, + "name": "2.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259708, + "fields": { + "id_car_serie": 63585, + "name": "2.8 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259709, + "fields": { + "id_car_serie": 64978, + "name": "2.5 MT (119 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259710, + "fields": { + "id_car_serie": 64978, + "name": "2.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259711, + "fields": { + "id_car_serie": 64978, + "name": "2.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259712, + "fields": { + "id_car_serie": 64979, + "name": "2.5 MT (119 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259713, + "fields": { + "id_car_serie": 64979, + "name": "2.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259714, + "fields": { + "id_car_serie": 64979, + "name": "2.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259715, + "fields": { + "id_car_serie": 63586, + "name": "2.1 MT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259716, + "fields": { + "id_car_serie": 63586, + "name": "2.4 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259717, + "fields": { + "id_car_serie": 63586, + "name": "2.6 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259718, + "fields": { + "id_car_serie": 63587, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259719, + "fields": { + "id_car_serie": 63588, + "name": "2.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259720, + "fields": { + "id_car_serie": 63589, + "name": "2.4 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259721, + "fields": { + "id_car_serie": 64980, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259722, + "fields": { + "id_car_serie": 64980, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259723, + "fields": { + "id_car_serie": 64980, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259724, + "fields": { + "id_car_serie": 64980, + "name": "1.4 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259725, + "fields": { + "id_car_serie": 64980, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259726, + "fields": { + "id_car_serie": 64980, + "name": "1.3 AMT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259727, + "fields": { + "id_car_serie": 64981, + "name": "2.0 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259728, + "fields": { + "id_car_serie": 64981, + "name": "3.0 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259729, + "fields": { + "id_car_serie": 64981, + "name": "2.0 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259730, + "fields": { + "id_car_serie": 64981, + "name": "2.0 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259731, + "fields": { + "id_car_serie": 64982, + "name": "2.4 MT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259732, + "fields": { + "id_car_serie": 64982, + "name": "2.2 MT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259733, + "fields": { + "id_car_serie": 64128, + "name": "2.3 MT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259734, + "fields": { + "id_car_serie": 64128, + "name": "2.3 MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259735, + "fields": { + "id_car_serie": 64128, + "name": "2.3 MT 4WD (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259736, + "fields": { + "id_car_serie": 64983, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259737, + "fields": { + "id_car_serie": 64983, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259738, + "fields": { + "id_car_serie": 63136, + "name": "3.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259739, + "fields": { + "id_car_serie": 63136, + "name": "3.3 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259740, + "fields": { + "id_car_serie": 63137, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259741, + "fields": { + "id_car_serie": 63137, + "name": "3.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259742, + "fields": { + "id_car_serie": 63734, + "name": "3.0 AT (219 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259743, + "fields": { + "id_car_serie": 63734, + "name": "3.0 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259744, + "fields": { + "id_car_serie": 63734, + "name": "4.3 AT (283 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259745, + "fields": { + "id_car_serie": 63734, + "name": "4.3 AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259746, + "fields": { + "id_car_serie": 64129, + "name": "4.6 AT 4WD (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259747, + "fields": { + "id_car_serie": 64130, + "name": "2.0 AT (244 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259748, + "fields": { + "id_car_serie": 64130, + "name": "3.5 AT 4WD (262 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259749, + "fields": { + "id_car_serie": 64130, + "name": "3.5 AT 4WD (311 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259750, + "fields": { + "id_car_serie": 64130, + "name": "3.5 AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259751, + "fields": { + "id_car_serie": 63735, + "name": "2.2 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259752, + "fields": { + "id_car_serie": 63735, + "name": "2.2 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259753, + "fields": { + "id_car_serie": 63735, + "name": "2.5 MT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259754, + "fields": { + "id_car_serie": 63735, + "name": "2.5 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259755, + "fields": { + "id_car_serie": 63735, + "name": "2.5 AT 4WD (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259756, + "fields": { + "id_car_serie": 63735, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259757, + "fields": { + "id_car_serie": 63735, + "name": "3.5 AT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259758, + "fields": { + "id_car_serie": 64131, + "name": "2.5 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259759, + "fields": { + "id_car_serie": 64131, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259760, + "fields": { + "id_car_serie": 64131, + "name": "3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259761, + "fields": { + "id_car_serie": 63736, + "name": "5.0 AT (464 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259762, + "fields": { + "id_car_serie": 63736, + "name": "5.0 AT (474 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259763, + "fields": { + "id_car_serie": 63736, + "name": "5.0 AT (481 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259764, + "fields": { + "id_car_serie": 63590, + "name": "1.3 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259765, + "fields": { + "id_car_serie": 63590, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259766, + "fields": { + "id_car_serie": 63590, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259767, + "fields": { + "id_car_serie": 63591, + "name": "1.8 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259768, + "fields": { + "id_car_serie": 63592, + "name": "1.5 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259769, + "fields": { + "id_car_serie": 63592, + "name": "1.5 CVT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259770, + "fields": { + "id_car_serie": 63593, + "name": "1.8 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259771, + "fields": { + "id_car_serie": 63593, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259772, + "fields": { + "id_car_serie": 63593, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259773, + "fields": { + "id_car_serie": 63593, + "name": "2.4 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259774, + "fields": { + "id_car_serie": 64984, + "name": "1.5 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259775, + "fields": { + "id_car_serie": 64984, + "name": "1.5 CVT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259776, + "fields": { + "id_car_serie": 63594, + "name": "2.0 AMT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259777, + "fields": { + "id_car_serie": 64985, + "name": "3.0 AT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259778, + "fields": { + "id_car_serie": 64985, + "name": "3.0 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259779, + "fields": { + "id_car_serie": 64985, + "name": "3.0 AT 4WD (494 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259780, + "fields": { + "id_car_serie": 64986, + "name": "5.9 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259781, + "fields": { + "id_car_serie": 63595, + "name": "5.2 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259782, + "fields": { + "id_car_serie": 63595, + "name": "5.6 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259783, + "fields": { + "id_car_serie": 63596, + "name": "2.7 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259784, + "fields": { + "id_car_serie": 63596, + "name": "2.7 AT 4WD (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259785, + "fields": { + "id_car_serie": 63596, + "name": "3.0 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259786, + "fields": { + "id_car_serie": 63596, + "name": "3.7 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259787, + "fields": { + "id_car_serie": 63596, + "name": "3.7 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259788, + "fields": { + "id_car_serie": 63597, + "name": "2.4 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259789, + "fields": { + "id_car_serie": 63597, + "name": "3.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259790, + "fields": { + "id_car_serie": 63597, + "name": "3.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259791, + "fields": { + "id_car_serie": 63597, + "name": "4.9 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259792, + "fields": { + "id_car_serie": 63597, + "name": "4.9 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259793, + "fields": { + "id_car_serie": 63597, + "name": "4.9 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259794, + "fields": { + "id_car_serie": 63597, + "name": "4.9 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259795, + "fields": { + "id_car_serie": 63598, + "name": "7.0 AT (319 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259796, + "fields": { + "id_car_serie": 63598, + "name": "7.0 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259797, + "fields": { + "id_car_serie": 64987, + "name": "7.0 AT (319 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259798, + "fields": { + "id_car_serie": 64988, + "name": "7.0 AT (319 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259799, + "fields": { + "id_car_serie": 64989, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259800, + "fields": { + "id_car_serie": 64989, + "name": "2.3 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259801, + "fields": { + "id_car_serie": 64989, + "name": "2.3 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259802, + "fields": { + "id_car_serie": 64990, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259803, + "fields": { + "id_car_serie": 64990, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259804, + "fields": { + "id_car_serie": 64990, + "name": "2.3 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259805, + "fields": { + "id_car_serie": 63599, + "name": "2.0 CVT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259806, + "fields": { + "id_car_serie": 63599, + "name": "2.0 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259807, + "fields": { + "id_car_serie": 63599, + "name": "2.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259808, + "fields": { + "id_car_serie": 63599, + "name": "3.0 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259809, + "fields": { + "id_car_serie": 63599, + "name": "3.0 AT 4WD (406 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259810, + "fields": { + "id_car_serie": 63600, + "name": "7.5 AT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259811, + "fields": { + "id_car_serie": 63601, + "name": "7.5 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259812, + "fields": { + "id_car_serie": 63601, + "name": "7.5 AT (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259813, + "fields": { + "id_car_serie": 63601, + "name": "7.5 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259814, + "fields": { + "id_car_serie": 63601, + "name": "7.5 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259815, + "fields": { + "id_car_serie": 64991, + "name": "2.0 AT 4WD (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259816, + "fields": { + "id_car_serie": 64991, + "name": "2.7 AT (339 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259817, + "fields": { + "id_car_serie": 64991, + "name": "2.7 AT 4WD (339 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259818, + "fields": { + "id_car_serie": 64992, + "name": "3.5 AT 4WD (456 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259819, + "fields": { + "id_car_serie": 64993, + "name": "3.5 AT 4WD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259820, + "fields": { + "id_car_serie": 63602, + "name": "6.0 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259821, + "fields": { + "id_car_serie": 63602, + "name": "7.0 AT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259822, + "fields": { + "id_car_serie": 64994, + "name": "6.0 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259823, + "fields": { + "id_car_serie": 64994, + "name": "7.0 AT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259824, + "fields": { + "id_car_serie": 63603, + "name": "4.6 AT (227 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259825, + "fields": { + "id_car_serie": 63603, + "name": "4.6 AT (239 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259826, + "fields": { + "id_car_serie": 63603, + "name": "4.6 AT (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259827, + "fields": { + "id_car_serie": 64995, + "name": "4.4 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259828, + "fields": { + "id_car_serie": 64996, + "name": "4.4 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259829, + "fields": { + "id_car_serie": 64997, + "name": "4.4 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259830, + "fields": { + "id_car_serie": 63605, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259831, + "fields": { + "id_car_serie": 63605, + "name": "1.8 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259832, + "fields": { + "id_car_serie": 63605, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259833, + "fields": { + "id_car_serie": 63605, + "name": "1.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259834, + "fields": { + "id_car_serie": 64998, + "name": "2.0 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259835, + "fields": { + "id_car_serie": 64998, + "name": "2.0 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259836, + "fields": { + "id_car_serie": 64998, + "name": "2.2 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259837, + "fields": { + "id_car_serie": 64998, + "name": "2.2 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259838, + "fields": { + "id_car_serie": 63606, + "name": "1.8 MT (179 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259839, + "fields": { + "id_car_serie": 63606, + "name": "1.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259840, + "fields": { + "id_car_serie": 64999, + "name": "2.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259841, + "fields": { + "id_car_serie": 64999, + "name": "2.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259842, + "fields": { + "id_car_serie": 65000, + "name": "2.7 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259843, + "fields": { + "id_car_serie": 65000, + "name": "2.7 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259844, + "fields": { + "id_car_serie": 63608, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259845, + "fields": { + "id_car_serie": 63608, + "name": "2.0 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259846, + "fields": { + "id_car_serie": 65001, + "name": "2.2 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259847, + "fields": { + "id_car_serie": 65002, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259848, + "fields": { + "id_car_serie": 65002, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259849, + "fields": { + "id_car_serie": 63609, + "name": "2.1 AT 4WD (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259850, + "fields": { + "id_car_serie": 63609, + "name": "2.5 MT 4WD (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259851, + "fields": { + "id_car_serie": 63609, + "name": "2.1 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259852, + "fields": { + "id_car_serie": 65003, + "name": "2.5 MT 4WD (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259853, + "fields": { + "id_car_serie": 63610, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259854, + "fields": { + "id_car_serie": 65004, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259855, + "fields": { + "id_car_serie": 65004, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259856, + "fields": { + "id_car_serie": 65004, + "name": "1.8 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259857, + "fields": { + "id_car_serie": 65004, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259858, + "fields": { + "id_car_serie": 65004, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259859, + "fields": { + "id_car_serie": 65005, + "name": "1.0 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259860, + "fields": { + "id_car_serie": 65005, + "name": "1.1 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259861, + "fields": { + "id_car_serie": 65006, + "name": "4.7 AT (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259862, + "fields": { + "id_car_serie": 65006, + "name": "4.7 AT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259863, + "fields": { + "id_car_serie": 65006, + "name": "4.7 AT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259864, + "fields": { + "id_car_serie": 63611, + "name": "4.2 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259865, + "fields": { + "id_car_serie": 63611, + "name": "4.2 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259866, + "fields": { + "id_car_serie": 63611, + "name": "4.9 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259867, + "fields": { + "id_car_serie": 63611, + "name": "4.9 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259868, + "fields": { + "id_car_serie": 63612, + "name": "6.0 AT 4WD (700 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259869, + "fields": { + "id_car_serie": 64132, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259870, + "fields": { + "id_car_serie": 64132, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259871, + "fields": { + "id_car_serie": 64132, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259872, + "fields": { + "id_car_serie": 64132, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259873, + "fields": { + "id_car_serie": 64132, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259874, + "fields": { + "id_car_serie": 64132, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259875, + "fields": { + "id_car_serie": 64132, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259876, + "fields": { + "id_car_serie": 64132, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259877, + "fields": { + "id_car_serie": 64132, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259878, + "fields": { + "id_car_serie": 64133, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259879, + "fields": { + "id_car_serie": 64133, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259880, + "fields": { + "id_car_serie": 64133, + "name": "2.0 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259881, + "fields": { + "id_car_serie": 64134, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259882, + "fields": { + "id_car_serie": 64134, + "name": "1.5 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259883, + "fields": { + "id_car_serie": 64134, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259884, + "fields": { + "id_car_serie": 64134, + "name": "1.6 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259885, + "fields": { + "id_car_serie": 64134, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259886, + "fields": { + "id_car_serie": 64134, + "name": "1.6 MT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259887, + "fields": { + "id_car_serie": 64134, + "name": "1.6 AT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259888, + "fields": { + "id_car_serie": 64134, + "name": "1.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259889, + "fields": { + "id_car_serie": 64134, + "name": "1.7 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259890, + "fields": { + "id_car_serie": 64134, + "name": "1.7 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259891, + "fields": { + "id_car_serie": 64135, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259892, + "fields": { + "id_car_serie": 64135, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259893, + "fields": { + "id_car_serie": 64135, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259894, + "fields": { + "id_car_serie": 64135, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259895, + "fields": { + "id_car_serie": 64135, + "name": "1.5 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259896, + "fields": { + "id_car_serie": 64135, + "name": "1.5 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259897, + "fields": { + "id_car_serie": 64135, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259898, + "fields": { + "id_car_serie": 64135, + "name": "1.5 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259899, + "fields": { + "id_car_serie": 64135, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259900, + "fields": { + "id_car_serie": 64135, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259901, + "fields": { + "id_car_serie": 64135, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259902, + "fields": { + "id_car_serie": 64135, + "name": "1.6 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259903, + "fields": { + "id_car_serie": 64135, + "name": "1.6 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259904, + "fields": { + "id_car_serie": 64135, + "name": "1.6 AT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259905, + "fields": { + "id_car_serie": 64135, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259906, + "fields": { + "id_car_serie": 64135, + "name": "1.6 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259907, + "fields": { + "id_car_serie": 64135, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259908, + "fields": { + "id_car_serie": 64135, + "name": "1.6 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259909, + "fields": { + "id_car_serie": 64135, + "name": "1.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259910, + "fields": { + "id_car_serie": 64135, + "name": "1.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259911, + "fields": { + "id_car_serie": 48437, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259912, + "fields": { + "id_car_serie": 48437, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259913, + "fields": { + "id_car_serie": 48437, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259914, + "fields": { + "id_car_serie": 48437, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259915, + "fields": { + "id_car_serie": 48437, + "name": "1.4 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259916, + "fields": { + "id_car_serie": 48436, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259917, + "fields": { + "id_car_serie": 48436, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259918, + "fields": { + "id_car_serie": 48436, + "name": "1.4 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259919, + "fields": { + "id_car_serie": 48436, + "name": "1.4 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259920, + "fields": { + "id_car_serie": 48436, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259921, + "fields": { + "id_car_serie": 63766, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259922, + "fields": { + "id_car_serie": 63766, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259923, + "fields": { + "id_car_serie": 63766, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259924, + "fields": { + "id_car_serie": 63766, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259925, + "fields": { + "id_car_serie": 63766, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259926, + "fields": { + "id_car_serie": 63766, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259927, + "fields": { + "id_car_serie": 63766, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259928, + "fields": { + "id_car_serie": 63766, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259929, + "fields": { + "id_car_serie": 63767, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259930, + "fields": { + "id_car_serie": 63767, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259931, + "fields": { + "id_car_serie": 63767, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259932, + "fields": { + "id_car_serie": 63767, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259933, + "fields": { + "id_car_serie": 63767, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259934, + "fields": { + "id_car_serie": 63767, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259935, + "fields": { + "id_car_serie": 63767, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259936, + "fields": { + "id_car_serie": 63767, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259937, + "fields": { + "id_car_serie": 63768, + "name": "2.0 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259938, + "fields": { + "id_car_serie": 63768, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259939, + "fields": { + "id_car_serie": 63768, + "name": "2.0 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259940, + "fields": { + "id_car_serie": 63768, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259941, + "fields": { + "id_car_serie": 63768, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259942, + "fields": { + "id_car_serie": 63768, + "name": "2.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259943, + "fields": { + "id_car_serie": 63769, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259944, + "fields": { + "id_car_serie": 63769, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259945, + "fields": { + "id_car_serie": 63769, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259946, + "fields": { + "id_car_serie": 63769, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259947, + "fields": { + "id_car_serie": 63769, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259948, + "fields": { + "id_car_serie": 63769, + "name": "2.0 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259949, + "fields": { + "id_car_serie": 63769, + "name": "2.0 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259950, + "fields": { + "id_car_serie": 63769, + "name": "2.5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259951, + "fields": { + "id_car_serie": 63769, + "name": "2.5 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259952, + "fields": { + "id_car_serie": 63769, + "name": "2.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259953, + "fields": { + "id_car_serie": 63769, + "name": "2.5 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259954, + "fields": { + "id_car_serie": 63769, + "name": "2.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259955, + "fields": { + "id_car_serie": 63770, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259956, + "fields": { + "id_car_serie": 63770, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259957, + "fields": { + "id_car_serie": 63770, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259958, + "fields": { + "id_car_serie": 63770, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259959, + "fields": { + "id_car_serie": 63770, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259960, + "fields": { + "id_car_serie": 63770, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259961, + "fields": { + "id_car_serie": 63770, + "name": "2.0 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259962, + "fields": { + "id_car_serie": 63770, + "name": "2.0 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259963, + "fields": { + "id_car_serie": 63770, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259964, + "fields": { + "id_car_serie": 63770, + "name": "2.2 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259965, + "fields": { + "id_car_serie": 63770, + "name": "2.2 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259966, + "fields": { + "id_car_serie": 63770, + "name": "2.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259967, + "fields": { + "id_car_serie": 48448, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259968, + "fields": { + "id_car_serie": 48448, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259969, + "fields": { + "id_car_serie": 48448, + "name": "2.0 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259970, + "fields": { + "id_car_serie": 48448, + "name": "2.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259971, + "fields": { + "id_car_serie": 48448, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259972, + "fields": { + "id_car_serie": 48448, + "name": "2.0 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259973, + "fields": { + "id_car_serie": 48448, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259974, + "fields": { + "id_car_serie": 63771, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259975, + "fields": { + "id_car_serie": 63771, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259976, + "fields": { + "id_car_serie": 63771, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259977, + "fields": { + "id_car_serie": 63771, + "name": "1.6 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259978, + "fields": { + "id_car_serie": 63771, + "name": "2.0 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259979, + "fields": { + "id_car_serie": 63771, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259980, + "fields": { + "id_car_serie": 63771, + "name": "2.0 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259981, + "fields": { + "id_car_serie": 63771, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259982, + "fields": { + "id_car_serie": 63771, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259983, + "fields": { + "id_car_serie": 63771, + "name": "2.0 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259984, + "fields": { + "id_car_serie": 48451, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259985, + "fields": { + "id_car_serie": 48451, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259986, + "fields": { + "id_car_serie": 48451, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259987, + "fields": { + "id_car_serie": 48451, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259988, + "fields": { + "id_car_serie": 63788, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259989, + "fields": { + "id_car_serie": 63788, + "name": "2.5 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259990, + "fields": { + "id_car_serie": 63788, + "name": "2.2 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259991, + "fields": { + "id_car_serie": 63788, + "name": "2.2 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259992, + "fields": { + "id_car_serie": 63788, + "name": "2.2 MT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259993, + "fields": { + "id_car_serie": 63789, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259994, + "fields": { + "id_car_serie": 63789, + "name": "2.5 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259995, + "fields": { + "id_car_serie": 63789, + "name": "2.2 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259996, + "fields": { + "id_car_serie": 63789, + "name": "2.2 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259997, + "fields": { + "id_car_serie": 63789, + "name": "2.2 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259998, + "fields": { + "id_car_serie": 63789, + "name": "2.2 MT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 259999, + "fields": { + "id_car_serie": 64136, + "name": "1.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260000, + "fields": { + "id_car_serie": 64136, + "name": "1.5 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260001, + "fields": { + "id_car_serie": 64136, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260002, + "fields": { + "id_car_serie": 64136, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260003, + "fields": { + "id_car_serie": 64136, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260004, + "fields": { + "id_car_serie": 64136, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260005, + "fields": { + "id_car_serie": 64137, + "name": "1.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260006, + "fields": { + "id_car_serie": 64137, + "name": "1.5 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260007, + "fields": { + "id_car_serie": 64137, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260008, + "fields": { + "id_car_serie": 64137, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260009, + "fields": { + "id_car_serie": 64137, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260010, + "fields": { + "id_car_serie": 64137, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260011, + "fields": { + "id_car_serie": 64138, + "name": "3.2 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260012, + "fields": { + "id_car_serie": 64138, + "name": "3.2 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260013, + "fields": { + "id_car_serie": 64138, + "name": "3.2 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260014, + "fields": { + "id_car_serie": 64139, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260015, + "fields": { + "id_car_serie": 64139, + "name": "1.3 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260016, + "fields": { + "id_car_serie": 64139, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260017, + "fields": { + "id_car_serie": 64139, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260018, + "fields": { + "id_car_serie": 64139, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260019, + "fields": { + "id_car_serie": 64139, + "name": "2.2 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260020, + "fields": { + "id_car_serie": 48477, + "name": "0.8 MT (36 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260021, + "fields": { + "id_car_serie": 48477, + "name": "1.0 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260022, + "fields": { + "id_car_serie": 48477, + "name": "1.0 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260023, + "fields": { + "id_car_serie": 64140, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260024, + "fields": { + "id_car_serie": 64140, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260025, + "fields": { + "id_car_serie": 64140, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260026, + "fields": { + "id_car_serie": 64140, + "name": "2.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260027, + "fields": { + "id_car_serie": 64140, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260028, + "fields": { + "id_car_serie": 64140, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260029, + "fields": { + "id_car_serie": 64140, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260030, + "fields": { + "id_car_serie": 64141, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260031, + "fields": { + "id_car_serie": 64141, + "name": "1.8 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260032, + "fields": { + "id_car_serie": 64141, + "name": "1.8 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260033, + "fields": { + "id_car_serie": 64141, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260034, + "fields": { + "id_car_serie": 64141, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260035, + "fields": { + "id_car_serie": 64141, + "name": "1.8 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260036, + "fields": { + "id_car_serie": 64141, + "name": "1.8 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260037, + "fields": { + "id_car_serie": 64141, + "name": "2.0 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260038, + "fields": { + "id_car_serie": 64141, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260039, + "fields": { + "id_car_serie": 64141, + "name": "2.0 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260040, + "fields": { + "id_car_serie": 64141, + "name": "2.0 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260041, + "fields": { + "id_car_serie": 64141, + "name": "2.2 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260042, + "fields": { + "id_car_serie": 64141, + "name": "2.0 AT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260043, + "fields": { + "id_car_serie": 64141, + "name": "2.0 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260044, + "fields": { + "id_car_serie": 64141, + "name": "2.0 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260045, + "fields": { + "id_car_serie": 64141, + "name": "2.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260046, + "fields": { + "id_car_serie": 64142, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260047, + "fields": { + "id_car_serie": 64142, + "name": "1.8 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260048, + "fields": { + "id_car_serie": 64142, + "name": "1.8 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260049, + "fields": { + "id_car_serie": 64142, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260050, + "fields": { + "id_car_serie": 64142, + "name": "1.8 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260051, + "fields": { + "id_car_serie": 64142, + "name": "1.8 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260052, + "fields": { + "id_car_serie": 64142, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260053, + "fields": { + "id_car_serie": 64142, + "name": "2.0 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260054, + "fields": { + "id_car_serie": 64142, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260055, + "fields": { + "id_car_serie": 64142, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260056, + "fields": { + "id_car_serie": 64142, + "name": "2.0 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260057, + "fields": { + "id_car_serie": 64142, + "name": "2.0 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260058, + "fields": { + "id_car_serie": 64142, + "name": "2.2 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260059, + "fields": { + "id_car_serie": 64142, + "name": "2.0 AT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260060, + "fields": { + "id_car_serie": 64142, + "name": "2.0 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260061, + "fields": { + "id_car_serie": 64142, + "name": "2.0 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260062, + "fields": { + "id_car_serie": 64142, + "name": "2.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260063, + "fields": { + "id_car_serie": 48487, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260064, + "fields": { + "id_car_serie": 48487, + "name": "1.8 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260065, + "fields": { + "id_car_serie": 48487, + "name": "1.8 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260066, + "fields": { + "id_car_serie": 48487, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260067, + "fields": { + "id_car_serie": 48487, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260068, + "fields": { + "id_car_serie": 48487, + "name": "1.8 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260069, + "fields": { + "id_car_serie": 48487, + "name": "1.8 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260070, + "fields": { + "id_car_serie": 48487, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260071, + "fields": { + "id_car_serie": 48487, + "name": "2.0 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260072, + "fields": { + "id_car_serie": 48487, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260073, + "fields": { + "id_car_serie": 48487, + "name": "2.0 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260074, + "fields": { + "id_car_serie": 48487, + "name": "2.0 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260075, + "fields": { + "id_car_serie": 48487, + "name": "2.2 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260076, + "fields": { + "id_car_serie": 48487, + "name": "2.0 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260077, + "fields": { + "id_car_serie": 48487, + "name": "2.0 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260078, + "fields": { + "id_car_serie": 48487, + "name": "2.0 AT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260079, + "fields": { + "id_car_serie": 48487, + "name": "2.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260080, + "fields": { + "id_car_serie": 48487, + "name": "2.0 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260081, + "fields": { + "id_car_serie": 64143, + "name": "1.3 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260082, + "fields": { + "id_car_serie": 64143, + "name": "1.3 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260083, + "fields": { + "id_car_serie": 64143, + "name": "1.3 AT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260084, + "fields": { + "id_car_serie": 64143, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260085, + "fields": { + "id_car_serie": 64143, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260086, + "fields": { + "id_car_serie": 64143, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260087, + "fields": { + "id_car_serie": 64143, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260088, + "fields": { + "id_car_serie": 64143, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260089, + "fields": { + "id_car_serie": 64143, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260090, + "fields": { + "id_car_serie": 64143, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260091, + "fields": { + "id_car_serie": 64144, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260092, + "fields": { + "id_car_serie": 64144, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260093, + "fields": { + "id_car_serie": 64144, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260094, + "fields": { + "id_car_serie": 64144, + "name": "1.3 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260095, + "fields": { + "id_car_serie": 64144, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260096, + "fields": { + "id_car_serie": 64144, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260097, + "fields": { + "id_car_serie": 64144, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260098, + "fields": { + "id_car_serie": 64144, + "name": "1.8 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260099, + "fields": { + "id_car_serie": 64144, + "name": "1.8 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260100, + "fields": { + "id_car_serie": 64144, + "name": "1.8 MT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260101, + "fields": { + "id_car_serie": 64144, + "name": "1.8 AT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260102, + "fields": { + "id_car_serie": 64144, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260103, + "fields": { + "id_car_serie": 64144, + "name": "2.2 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260104, + "fields": { + "id_car_serie": 64144, + "name": "2.2 MT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260105, + "fields": { + "id_car_serie": 64144, + "name": "2.2 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260106, + "fields": { + "id_car_serie": 64145, + "name": "1.9 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260107, + "fields": { + "id_car_serie": 64145, + "name": "1.9 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260108, + "fields": { + "id_car_serie": 64145, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260109, + "fields": { + "id_car_serie": 64145, + "name": "2.0 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260110, + "fields": { + "id_car_serie": 64145, + "name": "2.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260111, + "fields": { + "id_car_serie": 64146, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260112, + "fields": { + "id_car_serie": 64146, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260113, + "fields": { + "id_car_serie": 64146, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260114, + "fields": { + "id_car_serie": 64146, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260115, + "fields": { + "id_car_serie": 64146, + "name": "1.9 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260116, + "fields": { + "id_car_serie": 64146, + "name": "1.9 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260117, + "fields": { + "id_car_serie": 64147, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260118, + "fields": { + "id_car_serie": 64147, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260119, + "fields": { + "id_car_serie": 64147, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260120, + "fields": { + "id_car_serie": 64147, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260121, + "fields": { + "id_car_serie": 64148, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260122, + "fields": { + "id_car_serie": 64148, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260123, + "fields": { + "id_car_serie": 64148, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260124, + "fields": { + "id_car_serie": 64148, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260125, + "fields": { + "id_car_serie": 64148, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260126, + "fields": { + "id_car_serie": 64148, + "name": "2.0 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260127, + "fields": { + "id_car_serie": 64148, + "name": "2.0 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260128, + "fields": { + "id_car_serie": 64149, + "name": "1.3 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260129, + "fields": { + "id_car_serie": 64149, + "name": "1.3 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260130, + "fields": { + "id_car_serie": 64149, + "name": "1.5 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260131, + "fields": { + "id_car_serie": 64149, + "name": "1.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260132, + "fields": { + "id_car_serie": 64149, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260133, + "fields": { + "id_car_serie": 64149, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260134, + "fields": { + "id_car_serie": 64149, + "name": "1.6 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260135, + "fields": { + "id_car_serie": 64149, + "name": "1.6 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260136, + "fields": { + "id_car_serie": 64149, + "name": "1.8 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260137, + "fields": { + "id_car_serie": 64150, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260138, + "fields": { + "id_car_serie": 64150, + "name": "1.3 AT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260139, + "fields": { + "id_car_serie": 64150, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260140, + "fields": { + "id_car_serie": 64150, + "name": "1.5 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260141, + "fields": { + "id_car_serie": 64150, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260142, + "fields": { + "id_car_serie": 64150, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260143, + "fields": { + "id_car_serie": 64150, + "name": "1.6 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260144, + "fields": { + "id_car_serie": 64150, + "name": "1.6 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260145, + "fields": { + "id_car_serie": 64151, + "name": "1.3 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260146, + "fields": { + "id_car_serie": 64151, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260147, + "fields": { + "id_car_serie": 64151, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260148, + "fields": { + "id_car_serie": 64151, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260149, + "fields": { + "id_car_serie": 64151, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260150, + "fields": { + "id_car_serie": 64151, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260151, + "fields": { + "id_car_serie": 64151, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260152, + "fields": { + "id_car_serie": 64151, + "name": "1.5 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260153, + "fields": { + "id_car_serie": 64151, + "name": "1.6 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260154, + "fields": { + "id_car_serie": 64151, + "name": "1.6 AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260155, + "fields": { + "id_car_serie": 64151, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260156, + "fields": { + "id_car_serie": 64151, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260157, + "fields": { + "id_car_serie": 64151, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260158, + "fields": { + "id_car_serie": 64151, + "name": "1.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260159, + "fields": { + "id_car_serie": 64151, + "name": "1.7 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260160, + "fields": { + "id_car_serie": 48499, + "name": "1.3 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260161, + "fields": { + "id_car_serie": 48499, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260162, + "fields": { + "id_car_serie": 48499, + "name": "1.5 MT 4WD (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260163, + "fields": { + "id_car_serie": 48499, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260164, + "fields": { + "id_car_serie": 48499, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260165, + "fields": { + "id_car_serie": 48499, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260166, + "fields": { + "id_car_serie": 48499, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260167, + "fields": { + "id_car_serie": 48499, + "name": "1.5 MT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260168, + "fields": { + "id_car_serie": 48499, + "name": "1.5 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260169, + "fields": { + "id_car_serie": 48499, + "name": "1.6 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260170, + "fields": { + "id_car_serie": 48499, + "name": "1.6 AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260171, + "fields": { + "id_car_serie": 48499, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260172, + "fields": { + "id_car_serie": 48499, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260173, + "fields": { + "id_car_serie": 48499, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260174, + "fields": { + "id_car_serie": 48499, + "name": "1.6 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260175, + "fields": { + "id_car_serie": 48499, + "name": "1.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260176, + "fields": { + "id_car_serie": 48499, + "name": "1.7 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260177, + "fields": { + "id_car_serie": 64152, + "name": "1.3 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260178, + "fields": { + "id_car_serie": 64152, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260179, + "fields": { + "id_car_serie": 64152, + "name": "1.5 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260180, + "fields": { + "id_car_serie": 64152, + "name": "1.5 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260181, + "fields": { + "id_car_serie": 64152, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260182, + "fields": { + "id_car_serie": 64152, + "name": "1.5 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260183, + "fields": { + "id_car_serie": 64152, + "name": "1.6 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260184, + "fields": { + "id_car_serie": 64152, + "name": "1.6 AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260185, + "fields": { + "id_car_serie": 64152, + "name": "1.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260186, + "fields": { + "id_car_serie": 64153, + "name": "1.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260187, + "fields": { + "id_car_serie": 64153, + "name": "1.5 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260188, + "fields": { + "id_car_serie": 64153, + "name": "1.9 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260189, + "fields": { + "id_car_serie": 64153, + "name": "1.9 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260190, + "fields": { + "id_car_serie": 64153, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260191, + "fields": { + "id_car_serie": 64153, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260192, + "fields": { + "id_car_serie": 64153, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260193, + "fields": { + "id_car_serie": 64153, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260194, + "fields": { + "id_car_serie": 64154, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260195, + "fields": { + "id_car_serie": 64154, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260196, + "fields": { + "id_car_serie": 64154, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260197, + "fields": { + "id_car_serie": 64154, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260198, + "fields": { + "id_car_serie": 63138, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260199, + "fields": { + "id_car_serie": 63138, + "name": "2.0 (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260200, + "fields": { + "id_car_serie": 63138, + "name": "2.0 (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260201, + "fields": { + "id_car_serie": 63138, + "name": "2.2 (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260202, + "fields": { + "id_car_serie": 63138, + "name": "2.2 (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260203, + "fields": { + "id_car_serie": 63138, + "name": "2.2 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260204, + "fields": { + "id_car_serie": 63138, + "name": "3.0 (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260205, + "fields": { + "id_car_serie": 63138, + "name": "3.0 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260206, + "fields": { + "id_car_serie": 63138, + "name": "3.0 (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260207, + "fields": { + "id_car_serie": 63138, + "name": "3.0 (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260208, + "fields": { + "id_car_serie": 63737, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260209, + "fields": { + "id_car_serie": 63737, + "name": "1.5 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260210, + "fields": { + "id_car_serie": 63737, + "name": "1.8 (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260211, + "fields": { + "id_car_serie": 64155, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260212, + "fields": { + "id_car_serie": 64155, + "name": "0.7 MT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260213, + "fields": { + "id_car_serie": 64155, + "name": "0.7 CVT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260214, + "fields": { + "id_car_serie": 64155, + "name": "0.7 CVT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260215, + "fields": { + "id_car_serie": 64155, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260216, + "fields": { + "id_car_serie": 64156, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260217, + "fields": { + "id_car_serie": 64156, + "name": "0.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260218, + "fields": { + "id_car_serie": 64156, + "name": "0.7 MT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260219, + "fields": { + "id_car_serie": 64156, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260220, + "fields": { + "id_car_serie": 64156, + "name": "0.7 AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260221, + "fields": { + "id_car_serie": 64156, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260222, + "fields": { + "id_car_serie": 64157, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260223, + "fields": { + "id_car_serie": 64157, + "name": "0.7 MT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260224, + "fields": { + "id_car_serie": 64157, + "name": "0.7 AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260225, + "fields": { + "id_car_serie": 64157, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260226, + "fields": { + "id_car_serie": 64157, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260227, + "fields": { + "id_car_serie": 64158, + "name": "0.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260228, + "fields": { + "id_car_serie": 64158, + "name": "0.7 MT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260229, + "fields": { + "id_car_serie": 64158, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260230, + "fields": { + "id_car_serie": 64158, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260231, + "fields": { + "id_car_serie": 64158, + "name": "0.7 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260232, + "fields": { + "id_car_serie": 64158, + "name": "0.7 AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260233, + "fields": { + "id_car_serie": 64158, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260234, + "fields": { + "id_car_serie": 64158, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260235, + "fields": { + "id_car_serie": 64159, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260236, + "fields": { + "id_car_serie": 64159, + "name": "0.7 AT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260237, + "fields": { + "id_car_serie": 64159, + "name": "0.7 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260238, + "fields": { + "id_car_serie": 64159, + "name": "0.7 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260239, + "fields": { + "id_car_serie": 64159, + "name": "0.7 MT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260240, + "fields": { + "id_car_serie": 64159, + "name": "0.7 AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260241, + "fields": { + "id_car_serie": 64159, + "name": "0.7 AT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260242, + "fields": { + "id_car_serie": 64159, + "name": "0.7 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260243, + "fields": { + "id_car_serie": 64159, + "name": "0.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260244, + "fields": { + "id_car_serie": 64159, + "name": "0.7 AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260245, + "fields": { + "id_car_serie": 64159, + "name": "0.7 MT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260246, + "fields": { + "id_car_serie": 64159, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260247, + "fields": { + "id_car_serie": 64159, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260248, + "fields": { + "id_car_serie": 64159, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260249, + "fields": { + "id_car_serie": 64160, + "name": "0.7 MT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260250, + "fields": { + "id_car_serie": 64160, + "name": "0.7 AT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260251, + "fields": { + "id_car_serie": 64160, + "name": "0.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260252, + "fields": { + "id_car_serie": 64160, + "name": "0.7 MT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260253, + "fields": { + "id_car_serie": 64160, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260254, + "fields": { + "id_car_serie": 64160, + "name": "0.7 AT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260255, + "fields": { + "id_car_serie": 64160, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260256, + "fields": { + "id_car_serie": 64160, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260257, + "fields": { + "id_car_serie": 64160, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260258, + "fields": { + "id_car_serie": 64161, + "name": "0.7 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260259, + "fields": { + "id_car_serie": 64161, + "name": "0.7 MT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260260, + "fields": { + "id_car_serie": 64161, + "name": "0.7 AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260261, + "fields": { + "id_car_serie": 64161, + "name": "0.7 AT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260262, + "fields": { + "id_car_serie": 64161, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260263, + "fields": { + "id_car_serie": 64161, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260264, + "fields": { + "id_car_serie": 64161, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260265, + "fields": { + "id_car_serie": 64161, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260266, + "fields": { + "id_car_serie": 64162, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260267, + "fields": { + "id_car_serie": 64162, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260268, + "fields": { + "id_car_serie": 64162, + "name": "1.8 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260269, + "fields": { + "id_car_serie": 64162, + "name": "1.8 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260270, + "fields": { + "id_car_serie": 64162, + "name": "2.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260271, + "fields": { + "id_car_serie": 64162, + "name": "2.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260272, + "fields": { + "id_car_serie": 64162, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260273, + "fields": { + "id_car_serie": 64162, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260274, + "fields": { + "id_car_serie": 54051, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260275, + "fields": { + "id_car_serie": 54051, + "name": "1.8 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260276, + "fields": { + "id_car_serie": 54051, + "name": "1.8 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260277, + "fields": { + "id_car_serie": 54051, + "name": "1.8 AT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260278, + "fields": { + "id_car_serie": 54051, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260279, + "fields": { + "id_car_serie": 54051, + "name": "2.0 MT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260280, + "fields": { + "id_car_serie": 54051, + "name": "2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260281, + "fields": { + "id_car_serie": 54051, + "name": "2.0 AT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260282, + "fields": { + "id_car_serie": 54051, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260283, + "fields": { + "id_car_serie": 54051, + "name": "2.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260284, + "fields": { + "id_car_serie": 54051, + "name": "2.0 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260285, + "fields": { + "id_car_serie": 54051, + "name": "2.0 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260286, + "fields": { + "id_car_serie": 63738, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260287, + "fields": { + "id_car_serie": 63738, + "name": "2.5 (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260288, + "fields": { + "id_car_serie": 64163, + "name": "1.5 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260289, + "fields": { + "id_car_serie": 64163, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260290, + "fields": { + "id_car_serie": 64163, + "name": "1.5 MT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260291, + "fields": { + "id_car_serie": 64163, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260292, + "fields": { + "id_car_serie": 64163, + "name": "1.6 AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260293, + "fields": { + "id_car_serie": 64163, + "name": "1.6 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260294, + "fields": { + "id_car_serie": 64163, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260295, + "fields": { + "id_car_serie": 64163, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260296, + "fields": { + "id_car_serie": 64163, + "name": "1.6 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260297, + "fields": { + "id_car_serie": 63139, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260298, + "fields": { + "id_car_serie": 63140, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260299, + "fields": { + "id_car_serie": 63140, + "name": "0.7 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260300, + "fields": { + "id_car_serie": 63140, + "name": "0.7 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260301, + "fields": { + "id_car_serie": 63140, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260302, + "fields": { + "id_car_serie": 63140, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260303, + "fields": { + "id_car_serie": 63141, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260304, + "fields": { + "id_car_serie": 63141, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260305, + "fields": { + "id_car_serie": 63141, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260306, + "fields": { + "id_car_serie": 63141, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260307, + "fields": { + "id_car_serie": 63142, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260308, + "fields": { + "id_car_serie": 63142, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260309, + "fields": { + "id_car_serie": 63143, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260310, + "fields": { + "id_car_serie": 63143, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260311, + "fields": { + "id_car_serie": 63143, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260312, + "fields": { + "id_car_serie": 63143, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260313, + "fields": { + "id_car_serie": 63144, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260314, + "fields": { + "id_car_serie": 63144, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260315, + "fields": { + "id_car_serie": 63144, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260316, + "fields": { + "id_car_serie": 63145, + "name": "0.7 CVT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260317, + "fields": { + "id_car_serie": 63145, + "name": "0.7 CVT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260318, + "fields": { + "id_car_serie": 63145, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260319, + "fields": { + "id_car_serie": 63145, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260320, + "fields": { + "id_car_serie": 63146, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260321, + "fields": { + "id_car_serie": 63146, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260322, + "fields": { + "id_car_serie": 63146, + "name": "1.2 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260323, + "fields": { + "id_car_serie": 63146, + "name": "1.2 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260324, + "fields": { + "id_car_serie": 63146, + "name": "1.2 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260325, + "fields": { + "id_car_serie": 63146, + "name": "1.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260326, + "fields": { + "id_car_serie": 63146, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260327, + "fields": { + "id_car_serie": 63146, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260328, + "fields": { + "id_car_serie": 63146, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260329, + "fields": { + "id_car_serie": 63146, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260330, + "fields": { + "id_car_serie": 63146, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260331, + "fields": { + "id_car_serie": 63146, + "name": "2.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260332, + "fields": { + "id_car_serie": 63147, + "name": "1.5 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260333, + "fields": { + "id_car_serie": 63147, + "name": "2.0 (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260334, + "fields": { + "id_car_serie": 63148, + "name": "0.4 MT (16 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260335, + "fields": { + "id_car_serie": 63149, + "name": "1.5 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260336, + "fields": { + "id_car_serie": 63149, + "name": "1.5 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260337, + "fields": { + "id_car_serie": 48537, + "name": "1.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260338, + "fields": { + "id_car_serie": 48537, + "name": "1.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260339, + "fields": { + "id_car_serie": 48537, + "name": "1.3 MT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260340, + "fields": { + "id_car_serie": 48537, + "name": "1.3 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260341, + "fields": { + "id_car_serie": 48539, + "name": "1.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260342, + "fields": { + "id_car_serie": 48539, + "name": "1.2 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260343, + "fields": { + "id_car_serie": 48539, + "name": "1.2 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260344, + "fields": { + "id_car_serie": 48539, + "name": "1.2 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260345, + "fields": { + "id_car_serie": 48539, + "name": "1.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260346, + "fields": { + "id_car_serie": 48539, + "name": "1.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260347, + "fields": { + "id_car_serie": 48539, + "name": "1.3 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260348, + "fields": { + "id_car_serie": 48539, + "name": "1.3 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260349, + "fields": { + "id_car_serie": 63150, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260350, + "fields": { + "id_car_serie": 63151, + "name": "0.7 AT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260351, + "fields": { + "id_car_serie": 63151, + "name": "0.7 AT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260352, + "fields": { + "id_car_serie": 63151, + "name": "0.7 MT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260353, + "fields": { + "id_car_serie": 63151, + "name": "0.7 MT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260354, + "fields": { + "id_car_serie": 63151, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260355, + "fields": { + "id_car_serie": 63152, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260356, + "fields": { + "id_car_serie": 63152, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260357, + "fields": { + "id_car_serie": 63152, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260358, + "fields": { + "id_car_serie": 63152, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260359, + "fields": { + "id_car_serie": 63152, + "name": "0.7 MT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260360, + "fields": { + "id_car_serie": 63152, + "name": "0.7 AT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260361, + "fields": { + "id_car_serie": 63152, + "name": "0.7 MT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260362, + "fields": { + "id_car_serie": 63152, + "name": "0.7 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260363, + "fields": { + "id_car_serie": 63152, + "name": "0.7 AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260364, + "fields": { + "id_car_serie": 63153, + "name": "0.7 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260365, + "fields": { + "id_car_serie": 63153, + "name": "0.7 AT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260366, + "fields": { + "id_car_serie": 63153, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260367, + "fields": { + "id_car_serie": 63153, + "name": "0.7 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260368, + "fields": { + "id_car_serie": 63153, + "name": "0.7 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260369, + "fields": { + "id_car_serie": 63153, + "name": "0.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260370, + "fields": { + "id_car_serie": 63153, + "name": "0.7 AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260371, + "fields": { + "id_car_serie": 63153, + "name": "0.7 MT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260372, + "fields": { + "id_car_serie": 65007, + "name": "1.1 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260373, + "fields": { + "id_car_serie": 65007, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260374, + "fields": { + "id_car_serie": 65007, + "name": "1.4 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260375, + "fields": { + "id_car_serie": 65007, + "name": "1.5 MT 4WD (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260376, + "fields": { + "id_car_serie": 64165, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260377, + "fields": { + "id_car_serie": 64165, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260378, + "fields": { + "id_car_serie": 64165, + "name": "1.8 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260379, + "fields": { + "id_car_serie": 64165, + "name": "1.8 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260380, + "fields": { + "id_car_serie": 64165, + "name": "1.8 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260381, + "fields": { + "id_car_serie": 64165, + "name": "1.8 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260382, + "fields": { + "id_car_serie": 64165, + "name": "1.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260383, + "fields": { + "id_car_serie": 64165, + "name": "1.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260384, + "fields": { + "id_car_serie": 64165, + "name": "1.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260385, + "fields": { + "id_car_serie": 64165, + "name": "1.8 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260386, + "fields": { + "id_car_serie": 64165, + "name": "2.5 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260387, + "fields": { + "id_car_serie": 64165, + "name": "2.5 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260388, + "fields": { + "id_car_serie": 64165, + "name": "3.2 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260389, + "fields": { + "id_car_serie": 64165, + "name": "3.2 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260390, + "fields": { + "id_car_serie": 64165, + "name": "3.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260391, + "fields": { + "id_car_serie": 64165, + "name": "3.5 MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260392, + "fields": { + "id_car_serie": 64165, + "name": "2.2 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260393, + "fields": { + "id_car_serie": 64165, + "name": "2.2 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260394, + "fields": { + "id_car_serie": 64165, + "name": "2.2 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260395, + "fields": { + "id_car_serie": 64165, + "name": "2.2 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260396, + "fields": { + "id_car_serie": 64165, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260397, + "fields": { + "id_car_serie": 64165, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260398, + "fields": { + "id_car_serie": 64166, + "name": "1.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260399, + "fields": { + "id_car_serie": 64166, + "name": "2.0 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260400, + "fields": { + "id_car_serie": 64166, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260401, + "fields": { + "id_car_serie": 64166, + "name": "2.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260402, + "fields": { + "id_car_serie": 64166, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260403, + "fields": { + "id_car_serie": 64166, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260404, + "fields": { + "id_car_serie": 64166, + "name": "2.0 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260405, + "fields": { + "id_car_serie": 64167, + "name": "2.0 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260406, + "fields": { + "id_car_serie": 64168, + "name": "2.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260407, + "fields": { + "id_car_serie": 64168, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260408, + "fields": { + "id_car_serie": 64168, + "name": "2.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260409, + "fields": { + "id_car_serie": 64168, + "name": "2.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260410, + "fields": { + "id_car_serie": 64168, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260411, + "fields": { + "id_car_serie": 64168, + "name": "3.5 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260412, + "fields": { + "id_car_serie": 64168, + "name": "1.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260413, + "fields": { + "id_car_serie": 64168, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260414, + "fields": { + "id_car_serie": 64168, + "name": "2.0 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260415, + "fields": { + "id_car_serie": 64168, + "name": "2.0 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260416, + "fields": { + "id_car_serie": 64168, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260417, + "fields": { + "id_car_serie": 64168, + "name": "2.9 AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260418, + "fields": { + "id_car_serie": 64168, + "name": "2.9 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260419, + "fields": { + "id_car_serie": 64168, + "name": "3.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260420, + "fields": { + "id_car_serie": 64168, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260421, + "fields": { + "id_car_serie": 64169, + "name": "2.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260422, + "fields": { + "id_car_serie": 64169, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260423, + "fields": { + "id_car_serie": 64169, + "name": "2.0 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260424, + "fields": { + "id_car_serie": 64169, + "name": "2.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260425, + "fields": { + "id_car_serie": 64169, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260426, + "fields": { + "id_car_serie": 64169, + "name": "2.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260427, + "fields": { + "id_car_serie": 64169, + "name": "2.0 AT (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260428, + "fields": { + "id_car_serie": 64169, + "name": "3.0 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260429, + "fields": { + "id_car_serie": 64169, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260430, + "fields": { + "id_car_serie": 64169, + "name": "2.0 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260431, + "fields": { + "id_car_serie": 64169, + "name": "2.0 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260432, + "fields": { + "id_car_serie": 64169, + "name": "2.9 AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260433, + "fields": { + "id_car_serie": 64169, + "name": "2.9 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260434, + "fields": { + "id_car_serie": 64169, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260435, + "fields": { + "id_car_serie": 64170, + "name": "2.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260436, + "fields": { + "id_car_serie": 64170, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260437, + "fields": { + "id_car_serie": 64170, + "name": "2.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260438, + "fields": { + "id_car_serie": 64170, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260439, + "fields": { + "id_car_serie": 64170, + "name": "2.0 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260440, + "fields": { + "id_car_serie": 64170, + "name": "3.0 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260441, + "fields": { + "id_car_serie": 64170, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260442, + "fields": { + "id_car_serie": 64170, + "name": "3.5 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260443, + "fields": { + "id_car_serie": 64170, + "name": "2.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260444, + "fields": { + "id_car_serie": 64170, + "name": "2.0 AT (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260445, + "fields": { + "id_car_serie": 64170, + "name": "3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260446, + "fields": { + "id_car_serie": 64170, + "name": "2.0 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260447, + "fields": { + "id_car_serie": 64170, + "name": "2.0 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260448, + "fields": { + "id_car_serie": 64170, + "name": "2.9 AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260449, + "fields": { + "id_car_serie": 64170, + "name": "2.9 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260450, + "fields": { + "id_car_serie": 64170, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260451, + "fields": { + "id_car_serie": 64171, + "name": "2.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260452, + "fields": { + "id_car_serie": 64171, + "name": "2.5 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260453, + "fields": { + "id_car_serie": 64171, + "name": "2.8 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260454, + "fields": { + "id_car_serie": 64171, + "name": "2.8 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260455, + "fields": { + "id_car_serie": 63823, + "name": "4.0 AT 4WD (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260456, + "fields": { + "id_car_serie": 63823, + "name": "4.0 AT 4WD (700 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260457, + "fields": { + "id_car_serie": 63823, + "name": "4.0 AT 4WD (800 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260458, + "fields": { + "id_car_serie": 63824, + "name": "5.5 AT 4WD (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260459, + "fields": { + "id_car_serie": 63824, + "name": "6.0 AT 4WD (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260460, + "fields": { + "id_car_serie": 63824, + "name": "5.5 AT 4WD (700 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260461, + "fields": { + "id_car_serie": 63825, + "name": "5.5 AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260462, + "fields": { + "id_car_serie": 63825, + "name": "6.0 AT 4WD (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260463, + "fields": { + "id_car_serie": 63825, + "name": "5.5 AT 4WD (700 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260465, + "fields": { + "id_car_serie": 64176, + "name": "2.0 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260466, + "fields": { + "id_car_serie": 64176, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260467, + "fields": { + "id_car_serie": 64176, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260468, + "fields": { + "id_car_serie": 64176, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260469, + "fields": { + "id_car_serie": 64176, + "name": "2.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260470, + "fields": { + "id_car_serie": 64176, + "name": "2.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260471, + "fields": { + "id_car_serie": 64176, + "name": "2.0 AT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260472, + "fields": { + "id_car_serie": 64177, + "name": "2.0 AT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260473, + "fields": { + "id_car_serie": 64177, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260474, + "fields": { + "id_car_serie": 64177, + "name": "2.1 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260475, + "fields": { + "id_car_serie": 64177, + "name": "2.1 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260476, + "fields": { + "id_car_serie": 64177, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260477, + "fields": { + "id_car_serie": 64178, + "name": "2.0 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260478, + "fields": { + "id_car_serie": 64178, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260479, + "fields": { + "id_car_serie": 64178, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260480, + "fields": { + "id_car_serie": 64178, + "name": "2.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260481, + "fields": { + "id_car_serie": 64178, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260482, + "fields": { + "id_car_serie": 64178, + "name": "2.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260483, + "fields": { + "id_car_serie": 64179, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260484, + "fields": { + "id_car_serie": 64179, + "name": "2.9 AT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260485, + "fields": { + "id_car_serie": 64179, + "name": "2.9 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260486, + "fields": { + "id_car_serie": 64179, + "name": "2.0 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260487, + "fields": { + "id_car_serie": 64179, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260488, + "fields": { + "id_car_serie": 64179, + "name": "2.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260489, + "fields": { + "id_car_serie": 64179, + "name": "2.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260490, + "fields": { + "id_car_serie": 64179, + "name": "4.0 AT 4WD (489 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260491, + "fields": { + "id_car_serie": 64180, + "name": "2.1 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260492, + "fields": { + "id_car_serie": 64180, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260493, + "fields": { + "id_car_serie": 64180, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260494, + "fields": { + "id_car_serie": 64180, + "name": "3.0 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260495, + "fields": { + "id_car_serie": 64180, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260496, + "fields": { + "id_car_serie": 64180, + "name": "3.5 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260497, + "fields": { + "id_car_serie": 64180, + "name": "3.5 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260498, + "fields": { + "id_car_serie": 64180, + "name": "4.7 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260499, + "fields": { + "id_car_serie": 64180, + "name": "4.7 AT 4WD (456 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260500, + "fields": { + "id_car_serie": 64181, + "name": "2.9 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260501, + "fields": { + "id_car_serie": 64181, + "name": "2.9 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260502, + "fields": { + "id_car_serie": 64181, + "name": "2.9 AT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260503, + "fields": { + "id_car_serie": 64181, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260504, + "fields": { + "id_car_serie": 64181, + "name": "2.0 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260505, + "fields": { + "id_car_serie": 63154, + "name": "5.5 AT 4WD (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260506, + "fields": { + "id_car_serie": 63154, + "name": "3.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260507, + "fields": { + "id_car_serie": 63154, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260508, + "fields": { + "id_car_serie": 63154, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260509, + "fields": { + "id_car_serie": 63154, + "name": "3.0 AT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260510, + "fields": { + "id_car_serie": 63154, + "name": "3.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260511, + "fields": { + "id_car_serie": 63154, + "name": "3.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260512, + "fields": { + "id_car_serie": 63156, + "name": "3.0 AT 4WD (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260513, + "fields": { + "id_car_serie": 63156, + "name": "4.0 (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260514, + "fields": { + "id_car_serie": 63156, + "name": "4.0 (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260515, + "fields": { + "id_car_serie": 63157, + "name": "3.0 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260516, + "fields": { + "id_car_serie": 63159, + "name": "6.0 AT 4WD (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260517, + "fields": { + "id_car_serie": 64187, + "name": "4.0 AT 4WD (558 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260518, + "fields": { + "id_car_serie": 65008, + "name": "5.8 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260519, + "fields": { + "id_car_serie": 65008, + "name": "6.6 AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260520, + "fields": { + "id_car_serie": 65008, + "name": "7.5 AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260521, + "fields": { + "id_car_serie": 65008, + "name": "7.5 AT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260522, + "fields": { + "id_car_serie": 65009, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260523, + "fields": { + "id_car_serie": 65009, + "name": "2.5 MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260524, + "fields": { + "id_car_serie": 65009, + "name": "2.5 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260525, + "fields": { + "id_car_serie": 65009, + "name": "2.5 MT (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260526, + "fields": { + "id_car_serie": 65009, + "name": "2.5 AT (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260527, + "fields": { + "id_car_serie": 63613, + "name": "4.6 AT (227 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260528, + "fields": { + "id_car_serie": 63613, + "name": "4.6 AT (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260529, + "fields": { + "id_car_serie": 65010, + "name": "3.3 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260530, + "fields": { + "id_car_serie": 65010, + "name": "3.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260531, + "fields": { + "id_car_serie": 63614, + "name": "3.7 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260532, + "fields": { + "id_car_serie": 63614, + "name": "3.7 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260533, + "fields": { + "id_car_serie": 63614, + "name": "4.8 MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260534, + "fields": { + "id_car_serie": 63614, + "name": "4.8 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260535, + "fields": { + "id_car_serie": 63614, + "name": "5.8 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260536, + "fields": { + "id_car_serie": 63614, + "name": "5.8 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260537, + "fields": { + "id_car_serie": 63614, + "name": "6.4 MT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260538, + "fields": { + "id_car_serie": 63614, + "name": "6.4 AT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260539, + "fields": { + "id_car_serie": 63614, + "name": "6.4 AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260540, + "fields": { + "id_car_serie": 63614, + "name": "6.4 MT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260541, + "fields": { + "id_car_serie": 63614, + "name": "6.4 MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260542, + "fields": { + "id_car_serie": 63614, + "name": "6.4 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260543, + "fields": { + "id_car_serie": 63614, + "name": "6.6 MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260544, + "fields": { + "id_car_serie": 63614, + "name": "6.6 MT (411 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260545, + "fields": { + "id_car_serie": 63614, + "name": "7.0 MT (416 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260546, + "fields": { + "id_car_serie": 63614, + "name": "7.0 MT (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260547, + "fields": { + "id_car_serie": 65011, + "name": "4.0 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260548, + "fields": { + "id_car_serie": 65011, + "name": "4.0 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260549, + "fields": { + "id_car_serie": 65011, + "name": "4.0 AT 4WD (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260550, + "fields": { + "id_car_serie": 65011, + "name": "4.9 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260551, + "fields": { + "id_car_serie": 65011, + "name": "4.9 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260552, + "fields": { + "id_car_serie": 65012, + "name": "3.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260553, + "fields": { + "id_car_serie": 65012, + "name": "3.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260554, + "fields": { + "id_car_serie": 65013, + "name": "2.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260555, + "fields": { + "id_car_serie": 65013, + "name": "3.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260556, + "fields": { + "id_car_serie": 65013, + "name": "3.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260557, + "fields": { + "id_car_serie": 63615, + "name": "2.3 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260558, + "fields": { + "id_car_serie": 63615, + "name": "2.3 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260559, + "fields": { + "id_car_serie": 63615, + "name": "3.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260560, + "fields": { + "id_car_serie": 65014, + "name": "2.3 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260561, + "fields": { + "id_car_serie": 65014, + "name": "2.3 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260562, + "fields": { + "id_car_serie": 65014, + "name": "3.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260563, + "fields": { + "id_car_serie": 65014, + "name": "3.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260564, + "fields": { + "id_car_serie": 65015, + "name": "2.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260565, + "fields": { + "id_car_serie": 65015, + "name": "2.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260566, + "fields": { + "id_car_serie": 50636, + "name": "1.8 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260567, + "fields": { + "id_car_serie": 50636, + "name": "2.5 AT (183 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260568, + "fields": { + "id_car_serie": 63616, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260569, + "fields": { + "id_car_serie": 63616, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260570, + "fields": { + "id_car_serie": 63616, + "name": "1.6 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260571, + "fields": { + "id_car_serie": 65016, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260572, + "fields": { + "id_car_serie": 65016, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260573, + "fields": { + "id_car_serie": 65016, + "name": "1.6 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260574, + "fields": { + "id_car_serie": 63617, + "name": "1.8 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260575, + "fields": { + "id_car_serie": 63617, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260576, + "fields": { + "id_car_serie": 65017, + "name": "1.8 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260577, + "fields": { + "id_car_serie": 65017, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260578, + "fields": { + "id_car_serie": 65017, + "name": "3.5 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260579, + "fields": { + "id_car_serie": 65018, + "name": "4.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260580, + "fields": { + "id_car_serie": 63618, + "name": "1.3 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260581, + "fields": { + "id_car_serie": 65019, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260582, + "fields": { + "id_car_serie": 65019, + "name": "1.8 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260583, + "fields": { + "id_car_serie": 65019, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260584, + "fields": { + "id_car_serie": 65019, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260585, + "fields": { + "id_car_serie": 65021, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260586, + "fields": { + "id_car_serie": 65022, + "name": "2.0 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260587, + "fields": { + "id_car_serie": 65023, + "name": "1.6 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260588, + "fields": { + "id_car_serie": 65023, + "name": "1.6 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260589, + "fields": { + "id_car_serie": 65024, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260590, + "fields": { + "id_car_serie": 65024, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260591, + "fields": { + "id_car_serie": 65024, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260592, + "fields": { + "id_car_serie": 65024, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260593, + "fields": { + "id_car_serie": 65024, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260594, + "fields": { + "id_car_serie": 65024, + "name": "1.4 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260595, + "fields": { + "id_car_serie": 65024, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260596, + "fields": { + "id_car_serie": 65024, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260597, + "fields": { + "id_car_serie": 65025, + "name": "2.0 AT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260598, + "fields": { + "id_car_serie": 65025, + "name": "2.0 AMT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260599, + "fields": { + "id_car_serie": 65025, + "name": "2.0 AT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260600, + "fields": { + "id_car_serie": 65025, + "name": "2.0 MT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260601, + "fields": { + "id_car_serie": 65025, + "name": "1.5 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260602, + "fields": { + "id_car_serie": 65025, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260605, + "fields": { + "id_car_serie": 65026, + "name": "2.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260606, + "fields": { + "id_car_serie": 65026, + "name": "2.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260607, + "fields": { + "id_car_serie": 65026, + "name": "2.0 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260608, + "fields": { + "id_car_serie": 65027, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260609, + "fields": { + "id_car_serie": 65027, + "name": "1.5 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260610, + "fields": { + "id_car_serie": 65027, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260611, + "fields": { + "id_car_serie": 65027, + "name": "1.5 AMT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260612, + "fields": { + "id_car_serie": 65027, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260613, + "fields": { + "id_car_serie": 65027, + "name": "2.0 AMT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260614, + "fields": { + "id_car_serie": 65027, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260615, + "fields": { + "id_car_serie": 65027, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260616, + "fields": { + "id_car_serie": 65027, + "name": "1.5 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260617, + "fields": { + "id_car_serie": 65027, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260618, + "fields": { + "id_car_serie": 65027, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260619, + "fields": { + "id_car_serie": 65028, + "name": "1.6 MT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260620, + "fields": { + "id_car_serie": 65028, + "name": "1.6 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260621, + "fields": { + "id_car_serie": 65028, + "name": "1.6 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260622, + "fields": { + "id_car_serie": 65028, + "name": "1.6 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260627, + "fields": { + "id_car_serie": 63621, + "name": "0.1 CVT (6 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260631, + "fields": { + "id_car_serie": 63622, + "name": "1.5 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260632, + "fields": { + "id_car_serie": 63622, + "name": "1.5 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260633, + "fields": { + "id_car_serie": 63623, + "name": "1.5 CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260634, + "fields": { + "id_car_serie": 63623, + "name": "1.5 CVT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260635, + "fields": { + "id_car_serie": 63623, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260636, + "fields": { + "id_car_serie": 63623, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260637, + "fields": { + "id_car_serie": 65030, + "name": "4.4 MT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260638, + "fields": { + "id_car_serie": 65030, + "name": "4.8 MT (368 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260639, + "fields": { + "id_car_serie": 65031, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260640, + "fields": { + "id_car_serie": 65031, + "name": "2.0 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260641, + "fields": { + "id_car_serie": 65031, + "name": "2.0 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260642, + "fields": { + "id_car_serie": 65031, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260643, + "fields": { + "id_car_serie": 65031, + "name": "2.0 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260644, + "fields": { + "id_car_serie": 65031, + "name": "2.0 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260645, + "fields": { + "id_car_serie": 65031, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260646, + "fields": { + "id_car_serie": 65031, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260647, + "fields": { + "id_car_serie": 65031, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260648, + "fields": { + "id_car_serie": 65031, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260649, + "fields": { + "id_car_serie": 65031, + "name": "2.1 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260650, + "fields": { + "id_car_serie": 65031, + "name": "2.1 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260651, + "fields": { + "id_car_serie": 65031, + "name": "2.1 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260652, + "fields": { + "id_car_serie": 65032, + "name": "3.6 MT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260653, + "fields": { + "id_car_serie": 65032, + "name": "3.6 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260654, + "fields": { + "id_car_serie": 65032, + "name": "4.0 MT (189 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260655, + "fields": { + "id_car_serie": 63624, + "name": "5.3 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260656, + "fields": { + "id_car_serie": 63625, + "name": "3.0 MT (461 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260657, + "fields": { + "id_car_serie": 65033, + "name": "3.8 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260658, + "fields": { + "id_car_serie": 65033, + "name": "3.8 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260659, + "fields": { + "id_car_serie": 65033, + "name": "3.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260660, + "fields": { + "id_car_serie": 65033, + "name": "3.8 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260661, + "fields": { + "id_car_serie": 65033, + "name": "4.3 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260662, + "fields": { + "id_car_serie": 65033, + "name": "4.3 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260663, + "fields": { + "id_car_serie": 65033, + "name": "4.3 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260664, + "fields": { + "id_car_serie": 65033, + "name": "4.3 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260665, + "fields": { + "id_car_serie": 65033, + "name": "5.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260666, + "fields": { + "id_car_serie": 65033, + "name": "5.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260667, + "fields": { + "id_car_serie": 65033, + "name": "5.0 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260668, + "fields": { + "id_car_serie": 65033, + "name": "4.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260669, + "fields": { + "id_car_serie": 65033, + "name": "4.3 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260670, + "fields": { + "id_car_serie": 65034, + "name": "5.7 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260671, + "fields": { + "id_car_serie": 65034, + "name": "5.7 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260672, + "fields": { + "id_car_serie": 65034, + "name": "5.7 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260673, + "fields": { + "id_car_serie": 65034, + "name": "5.7 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260674, + "fields": { + "id_car_serie": 65034, + "name": "7.5 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260675, + "fields": { + "id_car_serie": 65034, + "name": "7.5 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260676, + "fields": { + "id_car_serie": 65034, + "name": "7.5 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260677, + "fields": { + "id_car_serie": 65034, + "name": "7.5 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260678, + "fields": { + "id_car_serie": 65034, + "name": "7.5 AT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260679, + "fields": { + "id_car_serie": 65035, + "name": "6.1 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260680, + "fields": { + "id_car_serie": 65035, + "name": "6.1 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260681, + "fields": { + "id_car_serie": 65035, + "name": "6.1 MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260682, + "fields": { + "id_car_serie": 65035, + "name": "6.1 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260683, + "fields": { + "id_car_serie": 65035, + "name": "6.1 MT (312 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260684, + "fields": { + "id_car_serie": 65035, + "name": "6.1 AT (312 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260685, + "fields": { + "id_car_serie": 65036, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260686, + "fields": { + "id_car_serie": 65036, + "name": "1.8 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260687, + "fields": { + "id_car_serie": 65036, + "name": "2.0 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260688, + "fields": { + "id_car_serie": 65036, + "name": "2.0 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260689, + "fields": { + "id_car_serie": 65036, + "name": "2.0 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260690, + "fields": { + "id_car_serie": 65036, + "name": "2.0 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260691, + "fields": { + "id_car_serie": 65036, + "name": "2.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260692, + "fields": { + "id_car_serie": 65036, + "name": "2.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260693, + "fields": { + "id_car_serie": 65037, + "name": "1.8 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260694, + "fields": { + "id_car_serie": 65037, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260695, + "fields": { + "id_car_serie": 65037, + "name": "2.0 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260696, + "fields": { + "id_car_serie": 65037, + "name": "2.0 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260697, + "fields": { + "id_car_serie": 65037, + "name": "2.0 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260698, + "fields": { + "id_car_serie": 65037, + "name": "2.0 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260699, + "fields": { + "id_car_serie": 65037, + "name": "2.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260700, + "fields": { + "id_car_serie": 65037, + "name": "2.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260701, + "fields": { + "id_car_serie": 65038, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260702, + "fields": { + "id_car_serie": 65038, + "name": "1.8 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260703, + "fields": { + "id_car_serie": 65038, + "name": "2.0 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260704, + "fields": { + "id_car_serie": 65038, + "name": "2.0 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260705, + "fields": { + "id_car_serie": 65038, + "name": "2.0 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260706, + "fields": { + "id_car_serie": 65038, + "name": "2.0 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260707, + "fields": { + "id_car_serie": 65038, + "name": "2.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260708, + "fields": { + "id_car_serie": 65038, + "name": "2.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260709, + "fields": { + "id_car_serie": 65039, + "name": "3.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260710, + "fields": { + "id_car_serie": 65040, + "name": "3.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260711, + "fields": { + "id_car_serie": 65041, + "name": "4.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260712, + "fields": { + "id_car_serie": 65042, + "name": "3.8 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260713, + "fields": { + "id_car_serie": 65043, + "name": "3.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260714, + "fields": { + "id_car_serie": 65044, + "name": "2.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260715, + "fields": { + "id_car_serie": 65045, + "name": "7.0 MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260716, + "fields": { + "id_car_serie": 63626, + "name": "7.5 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260717, + "fields": { + "id_car_serie": 63627, + "name": "7.0 AT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260718, + "fields": { + "id_car_serie": 65046, + "name": "5.7 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260719, + "fields": { + "id_car_serie": 65047, + "name": "5.7 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260720, + "fields": { + "id_car_serie": 65048, + "name": "5.4 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260721, + "fields": { + "id_car_serie": 63628, + "name": "4.7 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260722, + "fields": { + "id_car_serie": 63628, + "name": "4.7 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260723, + "fields": { + "id_car_serie": 63629, + "name": "5.8 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260724, + "fields": { + "id_car_serie": 65049, + "name": "5.8 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260725, + "fields": { + "id_car_serie": 65049, + "name": "5.8 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260726, + "fields": { + "id_car_serie": 63630, + "name": "4.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260727, + "fields": { + "id_car_serie": 63631, + "name": "6.0 MT (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260728, + "fields": { + "id_car_serie": 63631, + "name": "6.0 MT (750 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260729, + "fields": { + "id_car_serie": 63631, + "name": "6.0 MT (800 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260730, + "fields": { + "id_car_serie": 63631, + "name": "7.3 MT (555 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260731, + "fields": { + "id_car_serie": 63631, + "name": "7.3 MT (602 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260732, + "fields": { + "id_car_serie": 63631, + "name": "7.3 MT (670 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260733, + "fields": { + "id_car_serie": 63631, + "name": "7.3 MT (678 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260734, + "fields": { + "id_car_serie": 65050, + "name": "7.3 MT (555 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260735, + "fields": { + "id_car_serie": 65050, + "name": "7.3 MT (650 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260736, + "fields": { + "id_car_serie": 65050, + "name": "7.3 MT (678 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260737, + "fields": { + "id_car_serie": 65051, + "name": "1.0 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260738, + "fields": { + "id_car_serie": 65051, + "name": "1.0 AT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260739, + "fields": { + "id_car_serie": 63632, + "name": "3.7 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260740, + "fields": { + "id_car_serie": 63632, + "name": "3.7 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260741, + "fields": { + "id_car_serie": 63632, + "name": "5.2 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260742, + "fields": { + "id_car_serie": 63632, + "name": "5.2 MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260743, + "fields": { + "id_car_serie": 63632, + "name": "5.9 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260744, + "fields": { + "id_car_serie": 63632, + "name": "5.9 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260745, + "fields": { + "id_car_serie": 63632, + "name": "6.3 MT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260746, + "fields": { + "id_car_serie": 63632, + "name": "6.3 AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260747, + "fields": { + "id_car_serie": 63632, + "name": "6.3 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260748, + "fields": { + "id_car_serie": 63632, + "name": "6.6 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260749, + "fields": { + "id_car_serie": 63632, + "name": "7.2 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260750, + "fields": { + "id_car_serie": 65052, + "name": "3.7 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260751, + "fields": { + "id_car_serie": 65052, + "name": "3.7 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260752, + "fields": { + "id_car_serie": 65052, + "name": "5.2 MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260753, + "fields": { + "id_car_serie": 65052, + "name": "5.2 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260754, + "fields": { + "id_car_serie": 65052, + "name": "6.3 AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260755, + "fields": { + "id_car_serie": 65052, + "name": "6.3 MT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260756, + "fields": { + "id_car_serie": 65052, + "name": "6.3 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260757, + "fields": { + "id_car_serie": 65052, + "name": "7.2 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260758, + "fields": { + "id_car_serie": 65053, + "name": "3.7 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260759, + "fields": { + "id_car_serie": 65053, + "name": "3.7 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260760, + "fields": { + "id_car_serie": 65053, + "name": "5.2 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260761, + "fields": { + "id_car_serie": 65053, + "name": "5.2 MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260762, + "fields": { + "id_car_serie": 65053, + "name": "6.3 MT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260763, + "fields": { + "id_car_serie": 65053, + "name": "6.3 AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260764, + "fields": { + "id_car_serie": 65053, + "name": "6.3 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260765, + "fields": { + "id_car_serie": 65053, + "name": "7.2 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260766, + "fields": { + "id_car_serie": 65054, + "name": "2.2 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260767, + "fields": { + "id_car_serie": 65054, + "name": "2.2 AT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260768, + "fields": { + "id_car_serie": 63633, + "name": "2.6 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260769, + "fields": { + "id_car_serie": 63633, + "name": "2.6 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260770, + "fields": { + "id_car_serie": 65055, + "name": "2.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260771, + "fields": { + "id_car_serie": 65055, + "name": "2.2 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260772, + "fields": { + "id_car_serie": 65055, + "name": "2.2 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260773, + "fields": { + "id_car_serie": 65055, + "name": "2.2 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260774, + "fields": { + "id_car_serie": 65055, + "name": "2.2 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260775, + "fields": { + "id_car_serie": 65055, + "name": "2.2 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260776, + "fields": { + "id_car_serie": 65055, + "name": "2.2 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260777, + "fields": { + "id_car_serie": 65055, + "name": "2.2 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260778, + "fields": { + "id_car_serie": 65055, + "name": "2.2 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260779, + "fields": { + "id_car_serie": 65055, + "name": "2.2 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260780, + "fields": { + "id_car_serie": 65055, + "name": "2.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260781, + "fields": { + "id_car_serie": 65055, + "name": "2.6 AT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260782, + "fields": { + "id_car_serie": 65055, + "name": "2.6 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260783, + "fields": { + "id_car_serie": 65055, + "name": "2.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260784, + "fields": { + "id_car_serie": 65056, + "name": "2.6 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260785, + "fields": { + "id_car_serie": 65056, + "name": "2.6 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260786, + "fields": { + "id_car_serie": 63634, + "name": "3.7 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260787, + "fields": { + "id_car_serie": 63634, + "name": "3.7 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260788, + "fields": { + "id_car_serie": 63634, + "name": "3.7 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260789, + "fields": { + "id_car_serie": 63634, + "name": "3.7 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260790, + "fields": { + "id_car_serie": 63634, + "name": "3.7 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260791, + "fields": { + "id_car_serie": 63634, + "name": "3.7 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260792, + "fields": { + "id_car_serie": 63634, + "name": "5.2 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260793, + "fields": { + "id_car_serie": 63634, + "name": "5.2 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260794, + "fields": { + "id_car_serie": 63634, + "name": "5.9 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260795, + "fields": { + "id_car_serie": 63634, + "name": "6.6 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260796, + "fields": { + "id_car_serie": 63634, + "name": "6.6 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260797, + "fields": { + "id_car_serie": 63634, + "name": "6.6 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260798, + "fields": { + "id_car_serie": 63634, + "name": "6.6 MT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260799, + "fields": { + "id_car_serie": 63634, + "name": "6.6 AT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260800, + "fields": { + "id_car_serie": 63634, + "name": "6.6 MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260801, + "fields": { + "id_car_serie": 63634, + "name": "6.6 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260802, + "fields": { + "id_car_serie": 63634, + "name": "6.6 MT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260803, + "fields": { + "id_car_serie": 63634, + "name": "6.6 AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260804, + "fields": { + "id_car_serie": 63635, + "name": "3.7 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260805, + "fields": { + "id_car_serie": 63635, + "name": "3.7 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260806, + "fields": { + "id_car_serie": 63635, + "name": "3.7 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260807, + "fields": { + "id_car_serie": 63635, + "name": "3.7 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260808, + "fields": { + "id_car_serie": 63635, + "name": "3.7 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260809, + "fields": { + "id_car_serie": 63635, + "name": "5.2 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260810, + "fields": { + "id_car_serie": 63635, + "name": "5.2 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260811, + "fields": { + "id_car_serie": 63635, + "name": "5.2 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260812, + "fields": { + "id_car_serie": 63635, + "name": "5.9 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260813, + "fields": { + "id_car_serie": 63635, + "name": "5.9 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260814, + "fields": { + "id_car_serie": 65057, + "name": "2.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260815, + "fields": { + "id_car_serie": 65057, + "name": "2.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260816, + "fields": { + "id_car_serie": 65057, + "name": "3.1 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260817, + "fields": { + "id_car_serie": 65058, + "name": "2.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260818, + "fields": { + "id_car_serie": 65058, + "name": "2.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260819, + "fields": { + "id_car_serie": 65058, + "name": "3.1 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260820, + "fields": { + "id_car_serie": 63636, + "name": "3.8 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260821, + "fields": { + "id_car_serie": 63636, + "name": "3.8 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260822, + "fields": { + "id_car_serie": 63636, + "name": "4.6 AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260823, + "fields": { + "id_car_serie": 65059, + "name": "3.4 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260824, + "fields": { + "id_car_serie": 65059, + "name": "3.4 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260825, + "fields": { + "id_car_serie": 65059, + "name": "3.4 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260826, + "fields": { + "id_car_serie": 65059, + "name": "3.4 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260827, + "fields": { + "id_car_serie": 65059, + "name": "3.8 AT (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260828, + "fields": { + "id_car_serie": 65059, + "name": "3.8 MT (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260829, + "fields": { + "id_car_serie": 65059, + "name": "3.8 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260830, + "fields": { + "id_car_serie": 65059, + "name": "3.8 MT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260831, + "fields": { + "id_car_serie": 65059, + "name": "3.8 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260832, + "fields": { + "id_car_serie": 65059, + "name": "5.7 MT (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260833, + "fields": { + "id_car_serie": 65059, + "name": "5.7 AT (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260834, + "fields": { + "id_car_serie": 65059, + "name": "5.7 AT (329 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260835, + "fields": { + "id_car_serie": 65059, + "name": "5.7 MT (329 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260836, + "fields": { + "id_car_serie": 65059, + "name": "5.7 AT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260837, + "fields": { + "id_car_serie": 65059, + "name": "5.7 MT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260838, + "fields": { + "id_car_serie": 65059, + "name": "5.7 MT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260839, + "fields": { + "id_car_serie": 65059, + "name": "5.7 AT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260840, + "fields": { + "id_car_serie": 65059, + "name": "5.7 MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260841, + "fields": { + "id_car_serie": 65059, + "name": "5.7 AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260842, + "fields": { + "id_car_serie": 65059, + "name": "5.7 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260843, + "fields": { + "id_car_serie": 65060, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260844, + "fields": { + "id_car_serie": 65060, + "name": "2.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260845, + "fields": { + "id_car_serie": 65060, + "name": "2.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260846, + "fields": { + "id_car_serie": 65060, + "name": "2.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260847, + "fields": { + "id_car_serie": 65060, + "name": "3.1 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260848, + "fields": { + "id_car_serie": 65060, + "name": "3.1 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260849, + "fields": { + "id_car_serie": 65060, + "name": "3.8 AT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260850, + "fields": { + "id_car_serie": 65060, + "name": "3.8 MT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260851, + "fields": { + "id_car_serie": 65060, + "name": "5.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260852, + "fields": { + "id_car_serie": 65060, + "name": "5.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260853, + "fields": { + "id_car_serie": 65060, + "name": "5.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260854, + "fields": { + "id_car_serie": 65060, + "name": "5.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260855, + "fields": { + "id_car_serie": 65060, + "name": "5.7 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260856, + "fields": { + "id_car_serie": 65060, + "name": "5.7 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260857, + "fields": { + "id_car_serie": 65061, + "name": "5.7 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260858, + "fields": { + "id_car_serie": 65061, + "name": "5.7 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260859, + "fields": { + "id_car_serie": 65061, + "name": "6.0 AT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260860, + "fields": { + "id_car_serie": 65061, + "name": "6.0 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260861, + "fields": { + "id_car_serie": 65062, + "name": "5.7 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260862, + "fields": { + "id_car_serie": 65062, + "name": "5.7 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260863, + "fields": { + "id_car_serie": 65063, + "name": "6.4 AT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260864, + "fields": { + "id_car_serie": 65063, + "name": "6.6 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260865, + "fields": { + "id_car_serie": 65064, + "name": "6.4 AT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260866, + "fields": { + "id_car_serie": 65064, + "name": "6.6 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260867, + "fields": { + "id_car_serie": 63637, + "name": "3.9 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260868, + "fields": { + "id_car_serie": 63637, + "name": "3.9 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260869, + "fields": { + "id_car_serie": 63637, + "name": "4.3 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260870, + "fields": { + "id_car_serie": 63637, + "name": "4.3 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260871, + "fields": { + "id_car_serie": 63637, + "name": "4.6 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260872, + "fields": { + "id_car_serie": 63637, + "name": "4.6 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260875, + "fields": { + "id_car_serie": 63639, + "name": "3.9 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260876, + "fields": { + "id_car_serie": 63639, + "name": "4.1 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260877, + "fields": { + "id_car_serie": 65065, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260878, + "fields": { + "id_car_serie": 65065, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260879, + "fields": { + "id_car_serie": 65065, + "name": "2.4 AT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260880, + "fields": { + "id_car_serie": 65066, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260881, + "fields": { + "id_car_serie": 65066, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260882, + "fields": { + "id_car_serie": 65067, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260883, + "fields": { + "id_car_serie": 65067, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260884, + "fields": { + "id_car_serie": 65068, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260885, + "fields": { + "id_car_serie": 65068, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260886, + "fields": { + "id_car_serie": 65069, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260887, + "fields": { + "id_car_serie": 65069, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260888, + "fields": { + "id_car_serie": 65070, + "name": "1.5 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260889, + "fields": { + "id_car_serie": 65071, + "name": "1.1 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260890, + "fields": { + "id_car_serie": 63640, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260891, + "fields": { + "id_car_serie": 63640, + "name": "1.6 CVT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260892, + "fields": { + "id_car_serie": 63641, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260893, + "fields": { + "id_car_serie": 63641, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260894, + "fields": { + "id_car_serie": 65072, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260895, + "fields": { + "id_car_serie": 63642, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260896, + "fields": { + "id_car_serie": 63642, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260897, + "fields": { + "id_car_serie": 65073, + "name": "1.2 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260898, + "fields": { + "id_car_serie": 65074, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260899, + "fields": { + "id_car_serie": 65074, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260900, + "fields": { + "id_car_serie": 63643, + "name": "3.8 MT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260901, + "fields": { + "id_car_serie": 63643, + "name": "4.7 MT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260902, + "fields": { + "id_car_serie": 63643, + "name": "5.4 MT (274 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260903, + "fields": { + "id_car_serie": 63644, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260904, + "fields": { + "id_car_serie": 63644, + "name": "1.5 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260905, + "fields": { + "id_car_serie": 63645, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260906, + "fields": { + "id_car_serie": 63645, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260907, + "fields": { + "id_car_serie": 63647, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260908, + "fields": { + "id_car_serie": 63647, + "name": "2.0 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260909, + "fields": { + "id_car_serie": 63648, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260910, + "fields": { + "id_car_serie": 63648, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260911, + "fields": { + "id_car_serie": 63649, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260912, + "fields": { + "id_car_serie": 63649, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260913, + "fields": { + "id_car_serie": 63650, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260914, + "fields": { + "id_car_serie": 63651, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260915, + "fields": { + "id_car_serie": 63651, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260916, + "fields": { + "id_car_serie": 63651, + "name": "2.0 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260917, + "fields": { + "id_car_serie": 63651, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260918, + "fields": { + "id_car_serie": 63651, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260919, + "fields": { + "id_car_serie": 63651, + "name": "2.5 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260920, + "fields": { + "id_car_serie": 63652, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260921, + "fields": { + "id_car_serie": 63652, + "name": "3.5 CVT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260922, + "fields": { + "id_car_serie": 65075, + "name": "2.4 MT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260923, + "fields": { + "id_car_serie": 65076, + "name": "3.0 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260924, + "fields": { + "id_car_serie": 65076, + "name": "3.0 MT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260925, + "fields": { + "id_car_serie": 65076, + "name": "3.6 MT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260926, + "fields": { + "id_car_serie": 65076, + "name": "3.6 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260927, + "fields": { + "id_car_serie": 65076, + "name": "6.2 AT 4WD (1014 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260928, + "fields": { + "id_car_serie": 65076, + "name": "6.4 MT 4WD (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260929, + "fields": { + "id_car_serie": 65076, + "name": "6.4 AT 4WD (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260930, + "fields": { + "id_car_serie": 65077, + "name": "3.6 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260931, + "fields": { + "id_car_serie": 65077, + "name": "6.2 AT 4WD (717 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260932, + "fields": { + "id_car_serie": 65077, + "name": "6.4 AT 4WD (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260933, + "fields": { + "id_car_serie": 65078, + "name": "4.5 AT 4WD (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260934, + "fields": { + "id_car_serie": 63654, + "name": "3.7 MT (25 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260935, + "fields": { + "id_car_serie": 65079, + "name": "6.8 AT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260936, + "fields": { + "id_car_serie": 65080, + "name": "6.8 AT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260937, + "fields": { + "id_car_serie": 63655, + "name": "6.8 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260938, + "fields": { + "id_car_serie": 63656, + "name": "6.8 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260939, + "fields": { + "id_car_serie": 63657, + "name": "6.8 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260940, + "fields": { + "id_car_serie": 63658, + "name": "6.8 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260941, + "fields": { + "id_car_serie": 63658, + "name": "6.8 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260942, + "fields": { + "id_car_serie": 65081, + "name": "4.6 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260943, + "fields": { + "id_car_serie": 63659, + "name": "1.6 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260944, + "fields": { + "id_car_serie": 65082, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260945, + "fields": { + "id_car_serie": 65082, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260946, + "fields": { + "id_car_serie": 65082, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260947, + "fields": { + "id_car_serie": 65082, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260948, + "fields": { + "id_car_serie": 65082, + "name": "1.6 CVT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260949, + "fields": { + "id_car_serie": 65082, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260950, + "fields": { + "id_car_serie": 65082, + "name": "1.8 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260951, + "fields": { + "id_car_serie": 65082, + "name": "2.0 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260952, + "fields": { + "id_car_serie": 65082, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260953, + "fields": { + "id_car_serie": 65083, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260954, + "fields": { + "id_car_serie": 65083, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260955, + "fields": { + "id_car_serie": 65083, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260956, + "fields": { + "id_car_serie": 65083, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260957, + "fields": { + "id_car_serie": 65083, + "name": "1.6 CVT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260958, + "fields": { + "id_car_serie": 65083, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260959, + "fields": { + "id_car_serie": 65083, + "name": "2.0 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260960, + "fields": { + "id_car_serie": 65083, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260961, + "fields": { + "id_car_serie": 65084, + "name": "1.6 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260962, + "fields": { + "id_car_serie": 65084, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260963, + "fields": { + "id_car_serie": 65084, + "name": "1.8 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260964, + "fields": { + "id_car_serie": 65084, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260965, + "fields": { + "id_car_serie": 65084, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260966, + "fields": { + "id_car_serie": 65085, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260967, + "fields": { + "id_car_serie": 65085, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260968, + "fields": { + "id_car_serie": 65085, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260969, + "fields": { + "id_car_serie": 65085, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260970, + "fields": { + "id_car_serie": 65085, + "name": "1.8 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260971, + "fields": { + "id_car_serie": 65085, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260972, + "fields": { + "id_car_serie": 65085, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260973, + "fields": { + "id_car_serie": 65086, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260974, + "fields": { + "id_car_serie": 65086, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260975, + "fields": { + "id_car_serie": 65086, + "name": "1.6 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260976, + "fields": { + "id_car_serie": 65087, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260977, + "fields": { + "id_car_serie": 65087, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260978, + "fields": { + "id_car_serie": 65087, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260979, + "fields": { + "id_car_serie": 65087, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260980, + "fields": { + "id_car_serie": 65087, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260981, + "fields": { + "id_car_serie": 65087, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260982, + "fields": { + "id_car_serie": 65087, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260983, + "fields": { + "id_car_serie": 65087, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260984, + "fields": { + "id_car_serie": 65087, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260985, + "fields": { + "id_car_serie": 65088, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260986, + "fields": { + "id_car_serie": 65088, + "name": "1.3 AT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260987, + "fields": { + "id_car_serie": 65088, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260988, + "fields": { + "id_car_serie": 65088, + "name": "1.6 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260989, + "fields": { + "id_car_serie": 65088, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260990, + "fields": { + "id_car_serie": 65088, + "name": "1.6 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260991, + "fields": { + "id_car_serie": 63660, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260992, + "fields": { + "id_car_serie": 63660, + "name": "1.6 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260993, + "fields": { + "id_car_serie": 63660, + "name": "1.6 AT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260994, + "fields": { + "id_car_serie": 63660, + "name": "1.6 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260995, + "fields": { + "id_car_serie": 63660, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260996, + "fields": { + "id_car_serie": 63660, + "name": "2.5 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260997, + "fields": { + "id_car_serie": 63660, + "name": "2.0 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260998, + "fields": { + "id_car_serie": 63660, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 260999, + "fields": { + "id_car_serie": 65089, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261000, + "fields": { + "id_car_serie": 65089, + "name": "1.6 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261001, + "fields": { + "id_car_serie": 65089, + "name": "1.6 AT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261002, + "fields": { + "id_car_serie": 65089, + "name": "1.6 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261003, + "fields": { + "id_car_serie": 65089, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261004, + "fields": { + "id_car_serie": 65089, + "name": "2.0 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261005, + "fields": { + "id_car_serie": 65089, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261006, + "fields": { + "id_car_serie": 65090, + "name": "1.6 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261007, + "fields": { + "id_car_serie": 65090, + "name": "1.6 AT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261008, + "fields": { + "id_car_serie": 65090, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261009, + "fields": { + "id_car_serie": 65090, + "name": "1.8 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261010, + "fields": { + "id_car_serie": 65090, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261011, + "fields": { + "id_car_serie": 65090, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261012, + "fields": { + "id_car_serie": 65091, + "name": "1.4 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261013, + "fields": { + "id_car_serie": 65091, + "name": "1.6 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261014, + "fields": { + "id_car_serie": 65091, + "name": "1.6 AT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261015, + "fields": { + "id_car_serie": 65091, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261016, + "fields": { + "id_car_serie": 65091, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261017, + "fields": { + "id_car_serie": 65091, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261018, + "fields": { + "id_car_serie": 65091, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261019, + "fields": { + "id_car_serie": 65091, + "name": "1.9 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261020, + "fields": { + "id_car_serie": 63661, + "name": "1.9 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261021, + "fields": { + "id_car_serie": 63661, + "name": "1.9 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261022, + "fields": { + "id_car_serie": 63661, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261023, + "fields": { + "id_car_serie": 63661, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261024, + "fields": { + "id_car_serie": 63661, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261025, + "fields": { + "id_car_serie": 63661, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261026, + "fields": { + "id_car_serie": 63661, + "name": "2.3 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261027, + "fields": { + "id_car_serie": 63661, + "name": "2.3 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261028, + "fields": { + "id_car_serie": 63661, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261029, + "fields": { + "id_car_serie": 63662, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261030, + "fields": { + "id_car_serie": 63662, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261031, + "fields": { + "id_car_serie": 63662, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261032, + "fields": { + "id_car_serie": 63662, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261033, + "fields": { + "id_car_serie": 63662, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261034, + "fields": { + "id_car_serie": 63662, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261035, + "fields": { + "id_car_serie": 63662, + "name": "2.5 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261036, + "fields": { + "id_car_serie": 63662, + "name": "2.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261037, + "fields": { + "id_car_serie": 63662, + "name": "4.6 MT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261038, + "fields": { + "id_car_serie": 63662, + "name": "4.6 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261039, + "fields": { + "id_car_serie": 63662, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261040, + "fields": { + "id_car_serie": 63662, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261041, + "fields": { + "id_car_serie": 63662, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261042, + "fields": { + "id_car_serie": 63662, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261043, + "fields": { + "id_car_serie": 65092, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261044, + "fields": { + "id_car_serie": 65092, + "name": "1.8 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261045, + "fields": { + "id_car_serie": 65092, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261046, + "fields": { + "id_car_serie": 65092, + "name": "1.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261047, + "fields": { + "id_car_serie": 65092, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261048, + "fields": { + "id_car_serie": 65092, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261049, + "fields": { + "id_car_serie": 65092, + "name": "2.5 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261050, + "fields": { + "id_car_serie": 65092, + "name": "2.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261051, + "fields": { + "id_car_serie": 65092, + "name": "4.6 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261052, + "fields": { + "id_car_serie": 65092, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261053, + "fields": { + "id_car_serie": 65092, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261054, + "fields": { + "id_car_serie": 65092, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261055, + "fields": { + "id_car_serie": 65092, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261056, + "fields": { + "id_car_serie": 65093, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261057, + "fields": { + "id_car_serie": 65093, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261058, + "fields": { + "id_car_serie": 65093, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261059, + "fields": { + "id_car_serie": 65093, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261060, + "fields": { + "id_car_serie": 65093, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261061, + "fields": { + "id_car_serie": 65093, + "name": "2.5 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261062, + "fields": { + "id_car_serie": 65093, + "name": "2.7 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261063, + "fields": { + "id_car_serie": 65093, + "name": "2.7 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261064, + "fields": { + "id_car_serie": 65093, + "name": "2.7 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261065, + "fields": { + "id_car_serie": 65093, + "name": "2.5 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261066, + "fields": { + "id_car_serie": 65094, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261067, + "fields": { + "id_car_serie": 65094, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261068, + "fields": { + "id_car_serie": 65094, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261069, + "fields": { + "id_car_serie": 65094, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261070, + "fields": { + "id_car_serie": 65094, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261071, + "fields": { + "id_car_serie": 65094, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261072, + "fields": { + "id_car_serie": 65094, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261073, + "fields": { + "id_car_serie": 65094, + "name": "2.0 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261074, + "fields": { + "id_car_serie": 65094, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261075, + "fields": { + "id_car_serie": 65094, + "name": "2.5 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261076, + "fields": { + "id_car_serie": 65094, + "name": "2.5 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261077, + "fields": { + "id_car_serie": 65094, + "name": "2.7 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261078, + "fields": { + "id_car_serie": 65094, + "name": "2.7 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261079, + "fields": { + "id_car_serie": 65094, + "name": "2.7 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261080, + "fields": { + "id_car_serie": 65094, + "name": "2.7 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261081, + "fields": { + "id_car_serie": 65094, + "name": "2.5 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261082, + "fields": { + "id_car_serie": 65095, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261083, + "fields": { + "id_car_serie": 65095, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261084, + "fields": { + "id_car_serie": 65095, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261085, + "fields": { + "id_car_serie": 65095, + "name": "2.5 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261086, + "fields": { + "id_car_serie": 65095, + "name": "2.5 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261087, + "fields": { + "id_car_serie": 65095, + "name": "2.7 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261088, + "fields": { + "id_car_serie": 65095, + "name": "2.5 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261089, + "fields": { + "id_car_serie": 65096, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261090, + "fields": { + "id_car_serie": 65096, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261091, + "fields": { + "id_car_serie": 65096, + "name": "2.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261092, + "fields": { + "id_car_serie": 63663, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261093, + "fields": { + "id_car_serie": 65097, + "name": "1.0 MT (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261094, + "fields": { + "id_car_serie": 65097, + "name": "1.3 MT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261095, + "fields": { + "id_car_serie": 65097, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261096, + "fields": { + "id_car_serie": 65097, + "name": "1.3 AT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261097, + "fields": { + "id_car_serie": 65097, + "name": "1.3 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261098, + "fields": { + "id_car_serie": 65097, + "name": "1.3 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261099, + "fields": { + "id_car_serie": 65097, + "name": "1.3 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261100, + "fields": { + "id_car_serie": 63664, + "name": "1.6 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261101, + "fields": { + "id_car_serie": 63664, + "name": "2.1 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261102, + "fields": { + "id_car_serie": 65098, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261103, + "fields": { + "id_car_serie": 65098, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261104, + "fields": { + "id_car_serie": 65099, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261105, + "fields": { + "id_car_serie": 65099, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261106, + "fields": { + "id_car_serie": 65099, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261107, + "fields": { + "id_car_serie": 65099, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261108, + "fields": { + "id_car_serie": 65099, + "name": "2.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261109, + "fields": { + "id_car_serie": 65099, + "name": "2.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261110, + "fields": { + "id_car_serie": 65099, + "name": "2.0 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261111, + "fields": { + "id_car_serie": 65099, + "name": "2.8 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261112, + "fields": { + "id_car_serie": 65099, + "name": "2.8 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261113, + "fields": { + "id_car_serie": 65099, + "name": "2.0 MT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261114, + "fields": { + "id_car_serie": 65099, + "name": "2.0 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261115, + "fields": { + "id_car_serie": 65099, + "name": "2.8 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261116, + "fields": { + "id_car_serie": 65099, + "name": "2.8 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261117, + "fields": { + "id_car_serie": 65099, + "name": "2.8 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261118, + "fields": { + "id_car_serie": 65099, + "name": "2.8 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261119, + "fields": { + "id_car_serie": 65099, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261120, + "fields": { + "id_car_serie": 65099, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261121, + "fields": { + "id_car_serie": 65099, + "name": "1.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261122, + "fields": { + "id_car_serie": 65099, + "name": "1.9 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261123, + "fields": { + "id_car_serie": 65099, + "name": "1.9 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261135, + "fields": { + "id_car_serie": 9065, + "name": "2.3 MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261136, + "fields": { + "id_car_serie": 9065, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261137, + "fields": { + "id_car_serie": 9065, + "name": "2.2 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261138, + "fields": { + "id_car_serie": 65101, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261139, + "fields": { + "id_car_serie": 65101, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261140, + "fields": { + "id_car_serie": 65101, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261141, + "fields": { + "id_car_serie": 65101, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261142, + "fields": { + "id_car_serie": 65101, + "name": "2.0 MT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261143, + "fields": { + "id_car_serie": 65101, + "name": "2.0 AT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261144, + "fields": { + "id_car_serie": 65101, + "name": "2.0 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261145, + "fields": { + "id_car_serie": 65101, + "name": "2.0 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261146, + "fields": { + "id_car_serie": 65101, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261147, + "fields": { + "id_car_serie": 65101, + "name": "2.0 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261148, + "fields": { + "id_car_serie": 65101, + "name": "2.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261149, + "fields": { + "id_car_serie": 65101, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261150, + "fields": { + "id_car_serie": 65101, + "name": "2.3 MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261151, + "fields": { + "id_car_serie": 65101, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261152, + "fields": { + "id_car_serie": 65101, + "name": "2.2 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261153, + "fields": { + "id_car_serie": 65102, + "name": "1.6 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261154, + "fields": { + "id_car_serie": 65102, + "name": "2.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261155, + "fields": { + "id_car_serie": 65102, + "name": "2.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261156, + "fields": { + "id_car_serie": 65102, + "name": "2.0 MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261157, + "fields": { + "id_car_serie": 65102, + "name": "2.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261158, + "fields": { + "id_car_serie": 65102, + "name": "2.8 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261159, + "fields": { + "id_car_serie": 65102, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261160, + "fields": { + "id_car_serie": 65102, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261161, + "fields": { + "id_car_serie": 65102, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261162, + "fields": { + "id_car_serie": 65102, + "name": "2.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261163, + "fields": { + "id_car_serie": 65103, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261164, + "fields": { + "id_car_serie": 65103, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261165, + "fields": { + "id_car_serie": 65103, + "name": "2.3 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261166, + "fields": { + "id_car_serie": 65103, + "name": "2.3 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261167, + "fields": { + "id_car_serie": 65103, + "name": "2.3 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261168, + "fields": { + "id_car_serie": 65103, + "name": "2.3 MT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261169, + "fields": { + "id_car_serie": 65103, + "name": "2.0 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261170, + "fields": { + "id_car_serie": 65103, + "name": "2.0 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261171, + "fields": { + "id_car_serie": 65103, + "name": "2.3 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261172, + "fields": { + "id_car_serie": 65103, + "name": "2.3 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261173, + "fields": { + "id_car_serie": 65103, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261174, + "fields": { + "id_car_serie": 65103, + "name": "1.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261175, + "fields": { + "id_car_serie": 65103, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261176, + "fields": { + "id_car_serie": 65103, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261177, + "fields": { + "id_car_serie": 65103, + "name": "2.2 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261178, + "fields": { + "id_car_serie": 65103, + "name": "3.0 MT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261179, + "fields": { + "id_car_serie": 65104, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261180, + "fields": { + "id_car_serie": 65104, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261181, + "fields": { + "id_car_serie": 65104, + "name": "2.3 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261182, + "fields": { + "id_car_serie": 65104, + "name": "2.3 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261183, + "fields": { + "id_car_serie": 65104, + "name": "2.3 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261184, + "fields": { + "id_car_serie": 65104, + "name": "2.3 MT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261185, + "fields": { + "id_car_serie": 65104, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261186, + "fields": { + "id_car_serie": 65104, + "name": "2.3 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261187, + "fields": { + "id_car_serie": 65104, + "name": "2.3 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261188, + "fields": { + "id_car_serie": 65104, + "name": "2.3 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261189, + "fields": { + "id_car_serie": 65104, + "name": "2.3 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261190, + "fields": { + "id_car_serie": 65104, + "name": "2.3 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261191, + "fields": { + "id_car_serie": 65104, + "name": "3.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261192, + "fields": { + "id_car_serie": 65104, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261193, + "fields": { + "id_car_serie": 65104, + "name": "1.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261194, + "fields": { + "id_car_serie": 65104, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261195, + "fields": { + "id_car_serie": 65104, + "name": "2.2 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261196, + "fields": { + "id_car_serie": 65104, + "name": "3.0 MT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261197, + "fields": { + "id_car_serie": 65105, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261198, + "fields": { + "id_car_serie": 65106, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261199, + "fields": { + "id_car_serie": 65106, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261200, + "fields": { + "id_car_serie": 65106, + "name": "2.0 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261201, + "fields": { + "id_car_serie": 65106, + "name": "2.0 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261202, + "fields": { + "id_car_serie": 65106, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261203, + "fields": { + "id_car_serie": 65106, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261204, + "fields": { + "id_car_serie": 65106, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261205, + "fields": { + "id_car_serie": 65106, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261206, + "fields": { + "id_car_serie": 65107, + "name": "2.0 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261207, + "fields": { + "id_car_serie": 65107, + "name": "2.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261208, + "fields": { + "id_car_serie": 65107, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261209, + "fields": { + "id_car_serie": 65107, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261210, + "fields": { + "id_car_serie": 63692, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261211, + "fields": { + "id_car_serie": 63692, + "name": "2.0 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261212, + "fields": { + "id_car_serie": 63692, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261213, + "fields": { + "id_car_serie": 63692, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261214, + "fields": { + "id_car_serie": 63692, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261215, + "fields": { + "id_car_serie": 63692, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261216, + "fields": { + "id_car_serie": 63692, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261217, + "fields": { + "id_car_serie": 63692, + "name": "2.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261218, + "fields": { + "id_car_serie": 63692, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261219, + "fields": { + "id_car_serie": 63692, + "name": "2.0 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261220, + "fields": { + "id_car_serie": 63692, + "name": "2.0 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261221, + "fields": { + "id_car_serie": 63692, + "name": "2.3 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261222, + "fields": { + "id_car_serie": 63692, + "name": "2.3 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261223, + "fields": { + "id_car_serie": 63692, + "name": "2.3 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261224, + "fields": { + "id_car_serie": 63692, + "name": "2.3 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261225, + "fields": { + "id_car_serie": 63692, + "name": "2.3 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261226, + "fields": { + "id_car_serie": 63692, + "name": "2.3 MT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261227, + "fields": { + "id_car_serie": 63692, + "name": "2.3 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261228, + "fields": { + "id_car_serie": 63692, + "name": "2.3 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261229, + "fields": { + "id_car_serie": 63692, + "name": "2.3 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261230, + "fields": { + "id_car_serie": 63692, + "name": "2.3 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261231, + "fields": { + "id_car_serie": 63692, + "name": "2.3 MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261232, + "fields": { + "id_car_serie": 63692, + "name": "2.3 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261233, + "fields": { + "id_car_serie": 63692, + "name": "3.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261234, + "fields": { + "id_car_serie": 63692, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261235, + "fields": { + "id_car_serie": 65108, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261236, + "fields": { + "id_car_serie": 65108, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261237, + "fields": { + "id_car_serie": 65108, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261238, + "fields": { + "id_car_serie": 65108, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261239, + "fields": { + "id_car_serie": 65108, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261240, + "fields": { + "id_car_serie": 65108, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261241, + "fields": { + "id_car_serie": 65108, + "name": "2.3 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261242, + "fields": { + "id_car_serie": 65108, + "name": "2.3 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261243, + "fields": { + "id_car_serie": 65108, + "name": "2.3 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261244, + "fields": { + "id_car_serie": 65108, + "name": "2.3 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261245, + "fields": { + "id_car_serie": 65108, + "name": "2.3 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261246, + "fields": { + "id_car_serie": 65108, + "name": "2.3 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261247, + "fields": { + "id_car_serie": 65108, + "name": "3.0 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261248, + "fields": { + "id_car_serie": 65108, + "name": "3.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261249, + "fields": { + "id_car_serie": 65109, + "name": "0.8 MT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261250, + "fields": { + "id_car_serie": 65109, + "name": "1.5 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261251, + "fields": { + "id_car_serie": 65109, + "name": "1.5 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261252, + "fields": { + "id_car_serie": 65109, + "name": "1.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261253, + "fields": { + "id_car_serie": 65110, + "name": "1.7 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261254, + "fields": { + "id_car_serie": 65110, + "name": "1.9 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261255, + "fields": { + "id_car_serie": 65110, + "name": "1.9 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261256, + "fields": { + "id_car_serie": 65110, + "name": "1.9 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261257, + "fields": { + "id_car_serie": 65110, + "name": "2.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261258, + "fields": { + "id_car_serie": 65110, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261259, + "fields": { + "id_car_serie": 65110, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261260, + "fields": { + "id_car_serie": 65110, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261261, + "fields": { + "id_car_serie": 65110, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261262, + "fields": { + "id_car_serie": 65110, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261263, + "fields": { + "id_car_serie": 65110, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261264, + "fields": { + "id_car_serie": 65110, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261265, + "fields": { + "id_car_serie": 63693, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261266, + "fields": { + "id_car_serie": 63693, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261267, + "fields": { + "id_car_serie": 65111, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261268, + "fields": { + "id_car_serie": 65112, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261269, + "fields": { + "id_car_serie": 65113, + "name": "2.8 MT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261270, + "fields": { + "id_car_serie": 65113, + "name": "3.0 MT 4WD (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261271, + "fields": { + "id_car_serie": 65113, + "name": "3.0 MT 4WD (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261272, + "fields": { + "id_car_serie": 65114, + "name": "2.8 MT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261273, + "fields": { + "id_car_serie": 65114, + "name": "3.0 MT 4WD (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261274, + "fields": { + "id_car_serie": 65114, + "name": "3.0 MT 4WD (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261275, + "fields": { + "id_car_serie": 65115, + "name": "2.8 MT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261276, + "fields": { + "id_car_serie": 65115, + "name": "3.0 MT 4WD (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261277, + "fields": { + "id_car_serie": 65115, + "name": "3.0 MT 4WD (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261278, + "fields": { + "id_car_serie": 65116, + "name": "0.8 MT (14 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261279, + "fields": { + "id_car_serie": 65117, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261280, + "fields": { + "id_car_serie": 65117, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261281, + "fields": { + "id_car_serie": 65117, + "name": "1.4 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261282, + "fields": { + "id_car_serie": 65117, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261283, + "fields": { + "id_car_serie": 65117, + "name": "1.2 AT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261284, + "fields": { + "id_car_serie": 65117, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261285, + "fields": { + "id_car_serie": 65117, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261286, + "fields": { + "id_car_serie": 65118, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261287, + "fields": { + "id_car_serie": 65118, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261288, + "fields": { + "id_car_serie": 65118, + "name": "1.4 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261289, + "fields": { + "id_car_serie": 65118, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261290, + "fields": { + "id_car_serie": 63694, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261291, + "fields": { + "id_car_serie": 63694, + "name": "1.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261292, + "fields": { + "id_car_serie": 63694, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261293, + "fields": { + "id_car_serie": 63694, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261294, + "fields": { + "id_car_serie": 63694, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261295, + "fields": { + "id_car_serie": 63694, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261296, + "fields": { + "id_car_serie": 63694, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261297, + "fields": { + "id_car_serie": 63694, + "name": "1.8 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261298, + "fields": { + "id_car_serie": 63694, + "name": "1.9 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261299, + "fields": { + "id_car_serie": 63694, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261300, + "fields": { + "id_car_serie": 63694, + "name": "1.9 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261301, + "fields": { + "id_car_serie": 65119, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261302, + "fields": { + "id_car_serie": 65119, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261303, + "fields": { + "id_car_serie": 65119, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261304, + "fields": { + "id_car_serie": 65119, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261305, + "fields": { + "id_car_serie": 65119, + "name": "1.9 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261306, + "fields": { + "id_car_serie": 65119, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261307, + "fields": { + "id_car_serie": 65119, + "name": "1.9 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261308, + "fields": { + "id_car_serie": 65120, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261309, + "fields": { + "id_car_serie": 65120, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261310, + "fields": { + "id_car_serie": 65120, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261311, + "fields": { + "id_car_serie": 65120, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261312, + "fields": { + "id_car_serie": 65120, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261313, + "fields": { + "id_car_serie": 65120, + "name": "1.9 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261314, + "fields": { + "id_car_serie": 65120, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261315, + "fields": { + "id_car_serie": 65120, + "name": "1.9 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261316, + "fields": { + "id_car_serie": 65121, + "name": "1.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261317, + "fields": { + "id_car_serie": 65121, + "name": "1.8 AMT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261319, + "fields": { + "id_car_serie": 65122, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261320, + "fields": { + "id_car_serie": 65122, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261321, + "fields": { + "id_car_serie": 65122, + "name": "1.9 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261322, + "fields": { + "id_car_serie": 65123, + "name": "1.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261323, + "fields": { + "id_car_serie": 65123, + "name": "1.0 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261324, + "fields": { + "id_car_serie": 65123, + "name": "1.2 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261325, + "fields": { + "id_car_serie": 65123, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261326, + "fields": { + "id_car_serie": 65123, + "name": "1.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261327, + "fields": { + "id_car_serie": 65123, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261328, + "fields": { + "id_car_serie": 65123, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261329, + "fields": { + "id_car_serie": 65123, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261330, + "fields": { + "id_car_serie": 65123, + "name": "1.8 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261331, + "fields": { + "id_car_serie": 65123, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261332, + "fields": { + "id_car_serie": 65123, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261333, + "fields": { + "id_car_serie": 65123, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261334, + "fields": { + "id_car_serie": 65123, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261335, + "fields": { + "id_car_serie": 65123, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261336, + "fields": { + "id_car_serie": 65123, + "name": "2.0 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261337, + "fields": { + "id_car_serie": 65123, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261338, + "fields": { + "id_car_serie": 65124, + "name": "1.0 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261339, + "fields": { + "id_car_serie": 65124, + "name": "1.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261340, + "fields": { + "id_car_serie": 65124, + "name": "1.0 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261341, + "fields": { + "id_car_serie": 65124, + "name": "1.2 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261342, + "fields": { + "id_car_serie": 65124, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261343, + "fields": { + "id_car_serie": 65124, + "name": "1.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261344, + "fields": { + "id_car_serie": 65124, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261345, + "fields": { + "id_car_serie": 65124, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261346, + "fields": { + "id_car_serie": 65124, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261347, + "fields": { + "id_car_serie": 65124, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261348, + "fields": { + "id_car_serie": 65124, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261349, + "fields": { + "id_car_serie": 65124, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261350, + "fields": { + "id_car_serie": 65124, + "name": "1.8 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261351, + "fields": { + "id_car_serie": 65124, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261352, + "fields": { + "id_car_serie": 65124, + "name": "1.4 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261353, + "fields": { + "id_car_serie": 65124, + "name": "1.4 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261354, + "fields": { + "id_car_serie": 65124, + "name": "1.5 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261355, + "fields": { + "id_car_serie": 65124, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261356, + "fields": { + "id_car_serie": 65124, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261357, + "fields": { + "id_car_serie": 65124, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261358, + "fields": { + "id_car_serie": 65124, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261359, + "fields": { + "id_car_serie": 65124, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261360, + "fields": { + "id_car_serie": 65124, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261361, + "fields": { + "id_car_serie": 65124, + "name": "2.0 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261362, + "fields": { + "id_car_serie": 65125, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261363, + "fields": { + "id_car_serie": 65125, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261364, + "fields": { + "id_car_serie": 65125, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261365, + "fields": { + "id_car_serie": 65125, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261366, + "fields": { + "id_car_serie": 63794, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261367, + "fields": { + "id_car_serie": 63695, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261368, + "fields": { + "id_car_serie": 63696, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261369, + "fields": { + "id_car_serie": 63697, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261370, + "fields": { + "id_car_serie": 63698, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261371, + "fields": { + "id_car_serie": 63699, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261372, + "fields": { + "id_car_serie": 63700, + "name": "1.3 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261373, + "fields": { + "id_car_serie": 63700, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261374, + "fields": { + "id_car_serie": 63700, + "name": "1.5 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261375, + "fields": { + "id_car_serie": 63700, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261376, + "fields": { + "id_car_serie": 65126, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261377, + "fields": { + "id_car_serie": 65126, + "name": "1.3 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261378, + "fields": { + "id_car_serie": 65126, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261379, + "fields": { + "id_car_serie": 65127, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261380, + "fields": { + "id_car_serie": 65127, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261381, + "fields": { + "id_car_serie": 65128, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261382, + "fields": { + "id_car_serie": 63827, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261383, + "fields": { + "id_car_serie": 63827, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261384, + "fields": { + "id_car_serie": 63827, + "name": "1.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261385, + "fields": { + "id_car_serie": 63701, + "name": "4.6 MT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261386, + "fields": { + "id_car_serie": 63702, + "name": "3.5 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261387, + "fields": { + "id_car_serie": 63703, + "name": "4.7 MT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261388, + "fields": { + "id_car_serie": 63703, + "name": "5.8 MT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261389, + "fields": { + "id_car_serie": 63703, + "name": "5.8 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261397, + "fields": { + "id_car_serie": 65131, + "name": "0.6 MT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261398, + "fields": { + "id_car_serie": 65131, + "name": "0.6 AMT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261399, + "fields": { + "id_car_serie": 65132, + "name": "2.2 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261400, + "fields": { + "id_car_serie": 65133, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261401, + "fields": { + "id_car_serie": 65133, + "name": "2.2 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261402, + "fields": { + "id_car_serie": 65134, + "name": "2.0 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261403, + "fields": { + "id_car_serie": 63704, + "name": "3.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261404, + "fields": { + "id_car_serie": 63704, + "name": "3.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261405, + "fields": { + "id_car_serie": 63705, + "name": "6.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261406, + "fields": { + "id_car_serie": 63706, + "name": "3.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261407, + "fields": { + "id_car_serie": 63707, + "name": "2.5 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261408, + "fields": { + "id_car_serie": 63707, + "name": "2.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261409, + "fields": { + "id_car_serie": 63708, + "name": "2.5 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261410, + "fields": { + "id_car_serie": 63708, + "name": "2.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261411, + "fields": { + "id_car_serie": 65137, + "name": "2.2 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261412, + "fields": { + "id_car_serie": 63710, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261413, + "fields": { + "id_car_serie": 63711, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261414, + "fields": { + "id_car_serie": 63711, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261415, + "fields": { + "id_car_serie": 63711, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261416, + "fields": { + "id_car_serie": 63711, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261417, + "fields": { + "id_car_serie": 63711, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261418, + "fields": { + "id_car_serie": 63665, + "name": "1.3 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261419, + "fields": { + "id_car_serie": 63665, + "name": "1.3 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261420, + "fields": { + "id_car_serie": 63666, + "name": "1.3 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261421, + "fields": { + "id_car_serie": 63667, + "name": "1.2 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261424, + "fields": { + "id_car_serie": 65138, + "name": "4.0 MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261425, + "fields": { + "id_car_serie": 65139, + "name": "4.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261426, + "fields": { + "id_car_serie": 65139, + "name": "4.3 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261427, + "fields": { + "id_car_serie": 65139, + "name": "4.6 MT (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261428, + "fields": { + "id_car_serie": 65139, + "name": "5.0 MT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261429, + "fields": { + "id_car_serie": 65139, + "name": "5.0 MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261430, + "fields": { + "id_car_serie": 65140, + "name": "4.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261431, + "fields": { + "id_car_serie": 65140, + "name": "4.3 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261432, + "fields": { + "id_car_serie": 65140, + "name": "5.0 MT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261433, + "fields": { + "id_car_serie": 65140, + "name": "5.0 MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261434, + "fields": { + "id_car_serie": 63670, + "name": "2.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261435, + "fields": { + "id_car_serie": 63670, + "name": "2.9 MT (168 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261436, + "fields": { + "id_car_serie": 63670, + "name": "4.0 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261437, + "fields": { + "id_car_serie": 63671, + "name": "3.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261438, + "fields": { + "id_car_serie": 63671, + "name": "3.0 MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261439, + "fields": { + "id_car_serie": 65141, + "name": "3.6 MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261440, + "fields": { + "id_car_serie": 63672, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261441, + "fields": { + "id_car_serie": 63672, + "name": "2.8 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261442, + "fields": { + "id_car_serie": 63672, + "name": "2.8 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261443, + "fields": { + "id_car_serie": 65142, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261444, + "fields": { + "id_car_serie": 65142, + "name": "2.8 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261445, + "fields": { + "id_car_serie": 65142, + "name": "2.8 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261446, + "fields": { + "id_car_serie": 65143, + "name": "1.4 CVT (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261447, + "fields": { + "id_car_serie": 63673, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261448, + "fields": { + "id_car_serie": 63673, + "name": "1.6 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261449, + "fields": { + "id_car_serie": 63673, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261450, + "fields": { + "id_car_serie": 63673, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261451, + "fields": { + "id_car_serie": 63673, + "name": "1.9 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261452, + "fields": { + "id_car_serie": 63673, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261453, + "fields": { + "id_car_serie": 63673, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261454, + "fields": { + "id_car_serie": 63828, + "name": "1.6 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261455, + "fields": { + "id_car_serie": 63828, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261456, + "fields": { + "id_car_serie": 63828, + "name": "1.9 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261457, + "fields": { + "id_car_serie": 63828, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261458, + "fields": { + "id_car_serie": 63828, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261459, + "fields": { + "id_car_serie": 63828, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261460, + "fields": { + "id_car_serie": 63829, + "name": "1.6 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261461, + "fields": { + "id_car_serie": 63829, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261462, + "fields": { + "id_car_serie": 63829, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261463, + "fields": { + "id_car_serie": 63829, + "name": "1.9 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261464, + "fields": { + "id_car_serie": 63829, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261465, + "fields": { + "id_car_serie": 63829, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261466, + "fields": { + "id_car_serie": 65144, + "name": "1.0 AMT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261467, + "fields": { + "id_car_serie": 65144, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261468, + "fields": { + "id_car_serie": 65144, + "name": "1.2 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261469, + "fields": { + "id_car_serie": 65144, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261470, + "fields": { + "id_car_serie": 65144, + "name": "1.2 AMT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261471, + "fields": { + "id_car_serie": 65144, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261472, + "fields": { + "id_car_serie": 65144, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261473, + "fields": { + "id_car_serie": 65144, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261474, + "fields": { + "id_car_serie": 65144, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261475, + "fields": { + "id_car_serie": 65144, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261476, + "fields": { + "id_car_serie": 65144, + "name": "1.3 AMT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261477, + "fields": { + "id_car_serie": 65144, + "name": "1.7 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261478, + "fields": { + "id_car_serie": 65145, + "name": "2.2 AT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261479, + "fields": { + "id_car_serie": 65145, + "name": "2.2 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261480, + "fields": { + "id_car_serie": 65145, + "name": "2.2 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261481, + "fields": { + "id_car_serie": 65145, + "name": "2.2 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261482, + "fields": { + "id_car_serie": 65145, + "name": "3.2 MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261483, + "fields": { + "id_car_serie": 65145, + "name": "3.2 AT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261484, + "fields": { + "id_car_serie": 65146, + "name": "2.2 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261485, + "fields": { + "id_car_serie": 65146, + "name": "2.2 AT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261486, + "fields": { + "id_car_serie": 65146, + "name": "2.2 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261487, + "fields": { + "id_car_serie": 65146, + "name": "2.2 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261488, + "fields": { + "id_car_serie": 65146, + "name": "2.2 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261489, + "fields": { + "id_car_serie": 65146, + "name": "3.2 AT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261490, + "fields": { + "id_car_serie": 65146, + "name": "3.2 MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261491, + "fields": { + "id_car_serie": 65147, + "name": "2.2 AT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261492, + "fields": { + "id_car_serie": 65147, + "name": "2.2 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261493, + "fields": { + "id_car_serie": 65147, + "name": "2.2 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261494, + "fields": { + "id_car_serie": 65147, + "name": "2.2 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261495, + "fields": { + "id_car_serie": 65147, + "name": "3.2 AT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261496, + "fields": { + "id_car_serie": 65147, + "name": "3.2 MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261497, + "fields": { + "id_car_serie": 65148, + "name": "2.0 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261498, + "fields": { + "id_car_serie": 65148, + "name": "2.2 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261499, + "fields": { + "id_car_serie": 65148, + "name": "2.2 AT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261500, + "fields": { + "id_car_serie": 65148, + "name": "2.2 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261501, + "fields": { + "id_car_serie": 65149, + "name": "2.0 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261502, + "fields": { + "id_car_serie": 65149, + "name": "2.5 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261503, + "fields": { + "id_car_serie": 65149, + "name": "2.8 MT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261504, + "fields": { + "id_car_serie": 65150, + "name": "2.2 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261505, + "fields": { + "id_car_serie": 65150, + "name": "2.4 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261506, + "fields": { + "id_car_serie": 65150, + "name": "2.3 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261507, + "fields": { + "id_car_serie": 65150, + "name": "2.5 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261508, + "fields": { + "id_car_serie": 65151, + "name": "1.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261509, + "fields": { + "id_car_serie": 65151, + "name": "1.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261510, + "fields": { + "id_car_serie": 65151, + "name": "1.5 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261511, + "fields": { + "id_car_serie": 65151, + "name": "2.0 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261512, + "fields": { + "id_car_serie": 65151, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261513, + "fields": { + "id_car_serie": 65151, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261514, + "fields": { + "id_car_serie": 65152, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261515, + "fields": { + "id_car_serie": 65152, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261516, + "fields": { + "id_car_serie": 65152, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261517, + "fields": { + "id_car_serie": 65152, + "name": "2.0 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261518, + "fields": { + "id_car_serie": 65152, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261519, + "fields": { + "id_car_serie": 65152, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261520, + "fields": { + "id_car_serie": 65152, + "name": "2.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261521, + "fields": { + "id_car_serie": 65152, + "name": "2.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261522, + "fields": { + "id_car_serie": 65152, + "name": "2.0 AT 4WD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261523, + "fields": { + "id_car_serie": 65152, + "name": "2.0 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261524, + "fields": { + "id_car_serie": 65152, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261525, + "fields": { + "id_car_serie": 65153, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261526, + "fields": { + "id_car_serie": 65153, + "name": "1.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261527, + "fields": { + "id_car_serie": 65153, + "name": "1.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261528, + "fields": { + "id_car_serie": 65153, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261529, + "fields": { + "id_car_serie": 65153, + "name": "2.0 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261530, + "fields": { + "id_car_serie": 65153, + "name": "2.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261531, + "fields": { + "id_car_serie": 65153, + "name": "2.0 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261532, + "fields": { + "id_car_serie": 65153, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261533, + "fields": { + "id_car_serie": 65153, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261534, + "fields": { + "id_car_serie": 65153, + "name": "1.6 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261535, + "fields": { + "id_car_serie": 65153, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261536, + "fields": { + "id_car_serie": 65153, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261537, + "fields": { + "id_car_serie": 65153, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261538, + "fields": { + "id_car_serie": 65153, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261539, + "fields": { + "id_car_serie": 65153, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261540, + "fields": { + "id_car_serie": 65153, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261541, + "fields": { + "id_car_serie": 65153, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261542, + "fields": { + "id_car_serie": 65153, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261543, + "fields": { + "id_car_serie": 65153, + "name": "2.0 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261544, + "fields": { + "id_car_serie": 65153, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261545, + "fields": { + "id_car_serie": 65153, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261546, + "fields": { + "id_car_serie": 65153, + "name": "2.0 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261547, + "fields": { + "id_car_serie": 65153, + "name": "2.0 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261548, + "fields": { + "id_car_serie": 65153, + "name": "2.0 MT 4WD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261549, + "fields": { + "id_car_serie": 65153, + "name": "2.0 AT 4WD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261550, + "fields": { + "id_car_serie": 65154, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261551, + "fields": { + "id_car_serie": 65154, + "name": "1.6 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261552, + "fields": { + "id_car_serie": 65154, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261553, + "fields": { + "id_car_serie": 65154, + "name": "2.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261554, + "fields": { + "id_car_serie": 65154, + "name": "2.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261555, + "fields": { + "id_car_serie": 65154, + "name": "2.0 MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261556, + "fields": { + "id_car_serie": 65154, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261557, + "fields": { + "id_car_serie": 65154, + "name": "2.0 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261558, + "fields": { + "id_car_serie": 65154, + "name": "2.8 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261559, + "fields": { + "id_car_serie": 65154, + "name": "2.8 MT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261560, + "fields": { + "id_car_serie": 65154, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261561, + "fields": { + "id_car_serie": 65154, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261562, + "fields": { + "id_car_serie": 65154, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261563, + "fields": { + "id_car_serie": 65154, + "name": "2.0 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261564, + "fields": { + "id_car_serie": 65154, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261565, + "fields": { + "id_car_serie": 65154, + "name": "2.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261566, + "fields": { + "id_car_serie": 65154, + "name": "2.0 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261567, + "fields": { + "id_car_serie": 65154, + "name": "2.0 MT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261568, + "fields": { + "id_car_serie": 65154, + "name": "2.0 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261569, + "fields": { + "id_car_serie": 65155, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261570, + "fields": { + "id_car_serie": 65155, + "name": "1.6 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261571, + "fields": { + "id_car_serie": 65155, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261572, + "fields": { + "id_car_serie": 65155, + "name": "2.0 MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261573, + "fields": { + "id_car_serie": 65155, + "name": "2.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261574, + "fields": { + "id_car_serie": 65155, + "name": "2.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261575, + "fields": { + "id_car_serie": 65155, + "name": "2.0 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261576, + "fields": { + "id_car_serie": 65155, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261577, + "fields": { + "id_car_serie": 65155, + "name": "2.8 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261578, + "fields": { + "id_car_serie": 65155, + "name": "2.8 MT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261579, + "fields": { + "id_car_serie": 65155, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261580, + "fields": { + "id_car_serie": 65155, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261581, + "fields": { + "id_car_serie": 65155, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261582, + "fields": { + "id_car_serie": 65155, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261583, + "fields": { + "id_car_serie": 65155, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261584, + "fields": { + "id_car_serie": 65155, + "name": "2.0 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261585, + "fields": { + "id_car_serie": 65155, + "name": "2.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261586, + "fields": { + "id_car_serie": 65155, + "name": "2.0 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261587, + "fields": { + "id_car_serie": 65155, + "name": "2.0 MT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261588, + "fields": { + "id_car_serie": 65156, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261589, + "fields": { + "id_car_serie": 65156, + "name": "1.6 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261590, + "fields": { + "id_car_serie": 65156, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261591, + "fields": { + "id_car_serie": 65156, + "name": "2.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261592, + "fields": { + "id_car_serie": 65156, + "name": "2.0 MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261593, + "fields": { + "id_car_serie": 65156, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261594, + "fields": { + "id_car_serie": 65156, + "name": "2.0 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261595, + "fields": { + "id_car_serie": 65156, + "name": "2.8 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261596, + "fields": { + "id_car_serie": 65156, + "name": "2.8 MT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261597, + "fields": { + "id_car_serie": 65156, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261598, + "fields": { + "id_car_serie": 65156, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261599, + "fields": { + "id_car_serie": 65156, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261600, + "fields": { + "id_car_serie": 65156, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261601, + "fields": { + "id_car_serie": 65156, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261602, + "fields": { + "id_car_serie": 65156, + "name": "2.0 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261603, + "fields": { + "id_car_serie": 65156, + "name": "2.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261604, + "fields": { + "id_car_serie": 65156, + "name": "2.0 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261605, + "fields": { + "id_car_serie": 65156, + "name": "2.0 MT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261606, + "fields": { + "id_car_serie": 65156, + "name": "2.0 MT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261607, + "fields": { + "id_car_serie": 63674, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261608, + "fields": { + "id_car_serie": 63674, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261609, + "fields": { + "id_car_serie": 63674, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261610, + "fields": { + "id_car_serie": 63674, + "name": "1.7 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261611, + "fields": { + "id_car_serie": 63674, + "name": "1.7 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261612, + "fields": { + "id_car_serie": 63674, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261613, + "fields": { + "id_car_serie": 63674, + "name": "1.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261614, + "fields": { + "id_car_serie": 63674, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261615, + "fields": { + "id_car_serie": 63674, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261616, + "fields": { + "id_car_serie": 63675, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261617, + "fields": { + "id_car_serie": 63675, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261618, + "fields": { + "id_car_serie": 63675, + "name": "1.7 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261619, + "fields": { + "id_car_serie": 63675, + "name": "1.7 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261620, + "fields": { + "id_car_serie": 63675, + "name": "1.7 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261621, + "fields": { + "id_car_serie": 63675, + "name": "1.7 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261622, + "fields": { + "id_car_serie": 63675, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261623, + "fields": { + "id_car_serie": 63675, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261624, + "fields": { + "id_car_serie": 63675, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261625, + "fields": { + "id_car_serie": 63676, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261626, + "fields": { + "id_car_serie": 63676, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261627, + "fields": { + "id_car_serie": 63676, + "name": "1.7 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261628, + "fields": { + "id_car_serie": 63676, + "name": "1.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261629, + "fields": { + "id_car_serie": 63676, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261630, + "fields": { + "id_car_serie": 63676, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261631, + "fields": { + "id_car_serie": 63676, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261632, + "fields": { + "id_car_serie": 63676, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261633, + "fields": { + "id_car_serie": 63676, + "name": "1.6 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261634, + "fields": { + "id_car_serie": 63676, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261635, + "fields": { + "id_car_serie": 63677, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261636, + "fields": { + "id_car_serie": 63677, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261637, + "fields": { + "id_car_serie": 63677, + "name": "1.7 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261638, + "fields": { + "id_car_serie": 63677, + "name": "1.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261639, + "fields": { + "id_car_serie": 63677, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261640, + "fields": { + "id_car_serie": 63677, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261641, + "fields": { + "id_car_serie": 63677, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261642, + "fields": { + "id_car_serie": 63677, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261643, + "fields": { + "id_car_serie": 63677, + "name": "1.6 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261644, + "fields": { + "id_car_serie": 63677, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261645, + "fields": { + "id_car_serie": 65157, + "name": "1.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261646, + "fields": { + "id_car_serie": 65157, + "name": "1.4 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261647, + "fields": { + "id_car_serie": 65157, + "name": "1.4 AT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261648, + "fields": { + "id_car_serie": 65157, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261649, + "fields": { + "id_car_serie": 65157, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261650, + "fields": { + "id_car_serie": 65157, + "name": "1.6 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261651, + "fields": { + "id_car_serie": 65157, + "name": "1.6 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261652, + "fields": { + "id_car_serie": 63678, + "name": "5.7 MT (387 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261653, + "fields": { + "id_car_serie": 63678, + "name": "6.0 MT (404 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261654, + "fields": { + "id_car_serie": 65158, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261655, + "fields": { + "id_car_serie": 65158, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261656, + "fields": { + "id_car_serie": 65158, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261657, + "fields": { + "id_car_serie": 65158, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261658, + "fields": { + "id_car_serie": 63679, + "name": "2.7 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261659, + "fields": { + "id_car_serie": 63679, + "name": "3.3 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261660, + "fields": { + "id_car_serie": 63680, + "name": "2.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261661, + "fields": { + "id_car_serie": 63680, + "name": "2.7 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261662, + "fields": { + "id_car_serie": 65159, + "name": "2.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261663, + "fields": { + "id_car_serie": 65159, + "name": "2.7 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261664, + "fields": { + "id_car_serie": 65160, + "name": "2.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261665, + "fields": { + "id_car_serie": 65160, + "name": "2.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261666, + "fields": { + "id_car_serie": 65160, + "name": "2.3 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261667, + "fields": { + "id_car_serie": 65161, + "name": "2.3 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261668, + "fields": { + "id_car_serie": 65162, + "name": "1.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261669, + "fields": { + "id_car_serie": 65162, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261670, + "fields": { + "id_car_serie": 65162, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261671, + "fields": { + "id_car_serie": 65162, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261672, + "fields": { + "id_car_serie": 65162, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261673, + "fields": { + "id_car_serie": 65163, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261674, + "fields": { + "id_car_serie": 65163, + "name": "1.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261675, + "fields": { + "id_car_serie": 65163, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261676, + "fields": { + "id_car_serie": 65163, + "name": "1.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261677, + "fields": { + "id_car_serie": 65163, + "name": "1.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261678, + "fields": { + "id_car_serie": 65163, + "name": "1.6 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261679, + "fields": { + "id_car_serie": 65163, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261680, + "fields": { + "id_car_serie": 65163, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261681, + "fields": { + "id_car_serie": 65163, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261682, + "fields": { + "id_car_serie": 65163, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261683, + "fields": { + "id_car_serie": 65163, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261684, + "fields": { + "id_car_serie": 65163, + "name": "2.0 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261685, + "fields": { + "id_car_serie": 65164, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261686, + "fields": { + "id_car_serie": 65164, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261687, + "fields": { + "id_car_serie": 65164, + "name": "1.7 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261688, + "fields": { + "id_car_serie": 65164, + "name": "1.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261689, + "fields": { + "id_car_serie": 65165, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261690, + "fields": { + "id_car_serie": 65165, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261691, + "fields": { + "id_car_serie": 65165, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261692, + "fields": { + "id_car_serie": 65165, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261693, + "fields": { + "id_car_serie": 65165, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261694, + "fields": { + "id_car_serie": 65165, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261695, + "fields": { + "id_car_serie": 65165, + "name": "2.2 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261696, + "fields": { + "id_car_serie": 65165, + "name": "2.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261697, + "fields": { + "id_car_serie": 65165, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261698, + "fields": { + "id_car_serie": 65165, + "name": "2.0 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261699, + "fields": { + "id_car_serie": 65165, + "name": "2.2 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261700, + "fields": { + "id_car_serie": 65165, + "name": "2.2 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261701, + "fields": { + "id_car_serie": 63681, + "name": "6.0 AT (634 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261702, + "fields": { + "id_car_serie": 63682, + "name": "3.0 MT (282 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261703, + "fields": { + "id_car_serie": 63683, + "name": "3.0 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261704, + "fields": { + "id_car_serie": 63683, + "name": "3.0 MT (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261705, + "fields": { + "id_car_serie": 63684, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261708, + "fields": { + "id_car_serie": 63685, + "name": "2.7 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261709, + "fields": { + "id_car_serie": 63686, + "name": "2.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261710, + "fields": { + "id_car_serie": 65167, + "name": "2.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261711, + "fields": { + "id_car_serie": 65168, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261712, + "fields": { + "id_car_serie": 63687, + "name": "4.4 AT (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261713, + "fields": { + "id_car_serie": 63687, + "name": "4.4 AT (555 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261714, + "fields": { + "id_car_serie": 63688, + "name": "2.2 MT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261715, + "fields": { + "id_car_serie": 63688, + "name": "2.2 MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261716, + "fields": { + "id_car_serie": 63689, + "name": "2.2 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261717, + "fields": { + "id_car_serie": 63690, + "name": "3.1 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261718, + "fields": { + "id_car_serie": 63691, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261719, + "fields": { + "id_car_serie": 63691, + "name": "1.8 (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261720, + "fields": { + "id_car_serie": 65170, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261721, + "fields": { + "id_car_serie": 65170, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261722, + "fields": { + "id_car_serie": 65170, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261723, + "fields": { + "id_car_serie": 65170, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261724, + "fields": { + "id_car_serie": 63712, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261725, + "fields": { + "id_car_serie": 63712, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261726, + "fields": { + "id_car_serie": 63712, + "name": "1.1 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261727, + "fields": { + "id_car_serie": 63712, + "name": "1.1 MT (56 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261728, + "fields": { + "id_car_serie": 63712, + "name": "1.1 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261729, + "fields": { + "id_car_serie": 63712, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261730, + "fields": { + "id_car_serie": 65171, + "name": "0.9 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261731, + "fields": { + "id_car_serie": 65171, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261732, + "fields": { + "id_car_serie": 65171, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261733, + "fields": { + "id_car_serie": 65171, + "name": "1.1 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261734, + "fields": { + "id_car_serie": 65171, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261735, + "fields": { + "id_car_serie": 65171, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261736, + "fields": { + "id_car_serie": 65172, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261737, + "fields": { + "id_car_serie": 65172, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261738, + "fields": { + "id_car_serie": 65172, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261739, + "fields": { + "id_car_serie": 65173, + "name": "6.2 AT 4WD (409 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261740, + "fields": { + "id_car_serie": 65174, + "name": "1.5 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261741, + "fields": { + "id_car_serie": 65174, + "name": "1.5 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261742, + "fields": { + "id_car_serie": 65175, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261743, + "fields": { + "id_car_serie": 65175, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261744, + "fields": { + "id_car_serie": 65175, + "name": "1.5 CVT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261745, + "fields": { + "id_car_serie": 65175, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261746, + "fields": { + "id_car_serie": 65175, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261747, + "fields": { + "id_car_serie": 65176, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261748, + "fields": { + "id_car_serie": 65176, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261749, + "fields": { + "id_car_serie": 65177, + "name": "2.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261750, + "fields": { + "id_car_serie": 65177, + "name": "2.8 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261751, + "fields": { + "id_car_serie": 65178, + "name": "2.4 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261752, + "fields": { + "id_car_serie": 65178, + "name": "2.4 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261753, + "fields": { + "id_car_serie": 65178, + "name": "2.4 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261754, + "fields": { + "id_car_serie": 65178, + "name": "2.4 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261755, + "fields": { + "id_car_serie": 65178, + "name": "3.2 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261756, + "fields": { + "id_car_serie": 65178, + "name": "3.2 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261757, + "fields": { + "id_car_serie": 63713, + "name": "2.0 MT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261758, + "fields": { + "id_car_serie": 63714, + "name": "3.0 AMT (950 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261759, + "fields": { + "id_car_serie": 65179, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261760, + "fields": { + "id_car_serie": 65179, + "name": "1.1 MT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261761, + "fields": { + "id_car_serie": 65179, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261762, + "fields": { + "id_car_serie": 65179, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261763, + "fields": { + "id_car_serie": 63715, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261764, + "fields": { + "id_car_serie": 63715, + "name": "1.2 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261765, + "fields": { + "id_car_serie": 63715, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261766, + "fields": { + "id_car_serie": 63715, + "name": "1.3 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261767, + "fields": { + "id_car_serie": 63715, + "name": "1.3 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261768, + "fields": { + "id_car_serie": 65180, + "name": "1.1 MT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261769, + "fields": { + "id_car_serie": 65180, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261770, + "fields": { + "id_car_serie": 65181, + "name": "1.4 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261771, + "fields": { + "id_car_serie": 65181, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261772, + "fields": { + "id_car_serie": 65182, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261773, + "fields": { + "id_car_serie": 65182, + "name": "1.4 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261774, + "fields": { + "id_car_serie": 65182, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261775, + "fields": { + "id_car_serie": 63716, + "name": "6.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261776, + "fields": { + "id_car_serie": 63717, + "name": "5.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261777, + "fields": { + "id_car_serie": 63717, + "name": "5.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261778, + "fields": { + "id_car_serie": 65183, + "name": "1.5 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261779, + "fields": { + "id_car_serie": 63718, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261780, + "fields": { + "id_car_serie": 63719, + "name": "1.1 MT 4WD (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261781, + "fields": { + "id_car_serie": 63720, + "name": "1.6 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261782, + "fields": { + "id_car_serie": 63720, + "name": "1.7 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261783, + "fields": { + "id_car_serie": 63720, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261784, + "fields": { + "id_car_serie": 63721, + "name": "1.4 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261785, + "fields": { + "id_car_serie": 65184, + "name": "1.6 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261786, + "fields": { + "id_car_serie": 65184, + "name": "1.7 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261787, + "fields": { + "id_car_serie": 65184, + "name": "2.0 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261788, + "fields": { + "id_car_serie": 65184, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261789, + "fields": { + "id_car_serie": 63722, + "name": "0.4 MT (10 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261790, + "fields": { + "id_car_serie": 65185, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261791, + "fields": { + "id_car_serie": 63723, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261792, + "fields": { + "id_car_serie": 63723, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261793, + "fields": { + "id_car_serie": 65186, + "name": "1.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261794, + "fields": { + "id_car_serie": 65186, + "name": "1.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261795, + "fields": { + "id_car_serie": 65187, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261796, + "fields": { + "id_car_serie": 65187, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261797, + "fields": { + "id_car_serie": 65187, + "name": "1.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261801, + "fields": { + "id_car_serie": 46824, + "name": "3.2 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261802, + "fields": { + "id_car_serie": 47607, + "name": "0.8 AT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261803, + "fields": { + "id_car_serie": 47607, + "name": "0.8 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261804, + "fields": { + "id_car_serie": 47607, + "name": "1.1 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261805, + "fields": { + "id_car_serie": 47607, + "name": "1.1 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261806, + "fields": { + "id_car_serie": 47948, + "name": "2.5 TD MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261807, + "fields": { + "id_car_serie": 49486, + "name": "3.4 AT LWB (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261808, + "fields": { + "id_car_serie": 49486, + "name": "3.4 AT SWB (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261809, + "fields": { + "id_car_serie": 48009, + "name": "2.4 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261810, + "fields": { + "id_car_serie": 6050, + "name": "1.4 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261811, + "fields": { + "id_car_serie": 5369, + "name": "2.2 TD AT 4x4 (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261812, + "fields": { + "id_car_serie": 5369, + "name": "2.5 MT 4x4 (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261813, + "fields": { + "id_car_serie": 48130, + "name": "2.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261814, + "fields": { + "id_car_serie": 48132, + "name": "1.0 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261815, + "fields": { + "id_car_serie": 48132, + "name": "1.1 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261816, + "fields": { + "id_car_serie": 48133, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261817, + "fields": { + "id_car_serie": 48133, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261818, + "fields": { + "id_car_serie": 48133, + "name": "2.0 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261819, + "fields": { + "id_car_serie": 48275, + "name": "3.5 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261820, + "fields": { + "id_car_serie": 48312, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261821, + "fields": { + "id_car_serie": 48312, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261822, + "fields": { + "id_car_serie": 6602, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261823, + "fields": { + "id_car_serie": 6602, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261824, + "fields": { + "id_car_serie": 6602, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261825, + "fields": { + "id_car_serie": 6602, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261826, + "fields": { + "id_car_serie": 48374, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261827, + "fields": { + "id_car_serie": 48493, + "name": "3.7 AT AWD (273 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261828, + "fields": { + "id_car_serie": 48493, + "name": "3.7 AT (273 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261829, + "fields": { + "id_car_serie": 48574, + "name": "2.4 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261830, + "fields": { + "id_car_serie": 48574, + "name": "3.8 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261831, + "fields": { + "id_car_serie": 53411, + "name": "2.4 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261832, + "fields": { + "id_car_serie": 53411, + "name": "3.0 AT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261833, + "fields": { + "id_car_serie": 53411, + "name": "3.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261834, + "fields": { + "id_car_serie": 53411, + "name": "3.0 MT AWD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261835, + "fields": { + "id_car_serie": 53411, + "name": "3.5 AT AWD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261836, + "fields": { + "id_car_serie": 53411, + "name": "3.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261837, + "fields": { + "id_car_serie": 15301, + "name": "2.2 DI-D DPF AT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261838, + "fields": { + "id_car_serie": 15301, + "name": "2.2 DI-D DPF MT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261839, + "fields": { + "id_car_serie": 15301, + "name": "2.4 MT 2WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261840, + "fields": { + "id_car_serie": 15301, + "name": "2.4 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261841, + "fields": { + "id_car_serie": 15301, + "name": "2.4 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261842, + "fields": { + "id_car_serie": 53642, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261843, + "fields": { + "id_car_serie": 9506, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261844, + "fields": { + "id_car_serie": 9506, + "name": "1.6 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261845, + "fields": { + "id_car_serie": 9506, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261846, + "fields": { + "id_car_serie": 9506, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261847, + "fields": { + "id_car_serie": 9506, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261848, + "fields": { + "id_car_serie": 9506, + "name": "1.7 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261849, + "fields": { + "id_car_serie": 49012, + "name": "1.6 D MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261850, + "fields": { + "id_car_serie": 49017, + "name": "1.2 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261851, + "fields": { + "id_car_serie": 49024, + "name": "1.7 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261852, + "fields": { + "id_car_serie": 49024, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261853, + "fields": { + "id_car_serie": 49023, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261854, + "fields": { + "id_car_serie": 49023, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261855, + "fields": { + "id_car_serie": 49023, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261856, + "fields": { + "id_car_serie": 49023, + "name": "2.1 Td MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261857, + "fields": { + "id_car_serie": 49023, + "name": "2.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261858, + "fields": { + "id_car_serie": 49025, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261859, + "fields": { + "id_car_serie": 49025, + "name": "2.1 Td MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261860, + "fields": { + "id_car_serie": 49025, + "name": "2.5 T MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261861, + "fields": { + "id_car_serie": 49044, + "name": "0.8 MT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261862, + "fields": { + "id_car_serie": 49044, + "name": "1.1 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261863, + "fields": { + "id_car_serie": 49044, + "name": "1.1 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261864, + "fields": { + "id_car_serie": 49045, + "name": "1.1 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261865, + "fields": { + "id_car_serie": 49045, + "name": "1.4 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261866, + "fields": { + "id_car_serie": 49045, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261867, + "fields": { + "id_car_serie": 49045, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261868, + "fields": { + "id_car_serie": 49045, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261869, + "fields": { + "id_car_serie": 15082, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261870, + "fields": { + "id_car_serie": 15082, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261871, + "fields": { + "id_car_serie": 15082, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261872, + "fields": { + "id_car_serie": 15082, + "name": "2.1 D MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261873, + "fields": { + "id_car_serie": 15082, + "name": "2.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261874, + "fields": { + "id_car_serie": 49060, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261875, + "fields": { + "id_car_serie": 49060, + "name": "3.0 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261876, + "fields": { + "id_car_serie": 49061, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261877, + "fields": { + "id_car_serie": 9046, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261878, + "fields": { + "id_car_serie": 9046, + "name": "1.5 dCi MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261879, + "fields": { + "id_car_serie": 9046, + "name": "1.5 dCi MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261880, + "fields": { + "id_car_serie": 9046, + "name": "1.5 dCi MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261881, + "fields": { + "id_car_serie": 9046, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261882, + "fields": { + "id_car_serie": 9046, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261883, + "fields": { + "id_car_serie": 49093, + "name": "2.3 AT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261884, + "fields": { + "id_car_serie": 49093, + "name": "2.3 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261885, + "fields": { + "id_car_serie": 54122, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261886, + "fields": { + "id_car_serie": 54122, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261887, + "fields": { + "id_car_serie": 54122, + "name": "2.3 Turbo AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261888, + "fields": { + "id_car_serie": 54122, + "name": "2.3 Turbo MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261889, + "fields": { + "id_car_serie": 53470, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261890, + "fields": { + "id_car_serie": 53470, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261891, + "fields": { + "id_car_serie": 47403, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261892, + "fields": { + "id_car_serie": 47403, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261893, + "fields": { + "id_car_serie": 47403, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261894, + "fields": { + "id_car_serie": 47403, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261895, + "fields": { + "id_car_serie": 47403, + "name": "1.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261896, + "fields": { + "id_car_serie": 47403, + "name": "1.9 D MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261897, + "fields": { + "id_car_serie": 49109, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261898, + "fields": { + "id_car_serie": 49109, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261899, + "fields": { + "id_car_serie": 49109, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261900, + "fields": { + "id_car_serie": 49109, + "name": "1.9 TD MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261901, + "fields": { + "id_car_serie": 49109, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261902, + "fields": { + "id_car_serie": 53153, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261903, + "fields": { + "id_car_serie": 49161, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261904, + "fields": { + "id_car_serie": 49161, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261905, + "fields": { + "id_car_serie": 49161, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261906, + "fields": { + "id_car_serie": 49161, + "name": "1.5 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261907, + "fields": { + "id_car_serie": 49160, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261908, + "fields": { + "id_car_serie": 49160, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261909, + "fields": { + "id_car_serie": 49160, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261910, + "fields": { + "id_car_serie": 49160, + "name": "1.5 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261911, + "fields": { + "id_car_serie": 49629, + "name": "1.5 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261912, + "fields": { + "id_car_serie": 49629, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261913, + "fields": { + "id_car_serie": 49629, + "name": "1.5 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261914, + "fields": { + "id_car_serie": 53273, + "name": "2.4 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261915, + "fields": { + "id_car_serie": 49430, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261916, + "fields": { + "id_car_serie": 49430, + "name": "1.6 TD MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261917, + "fields": { + "id_car_serie": 9329, + "name": "1.4 16V MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261918, + "fields": { + "id_car_serie": 49452, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261919, + "fields": { + "id_car_serie": 49452, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261920, + "fields": { + "id_car_serie": 49452, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261921, + "fields": { + "id_car_serie": 49452, + "name": "1.6 GTi MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261922, + "fields": { + "id_car_serie": 47457, + "name": "1.4 TSI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261923, + "fields": { + "id_car_serie": 47457, + "name": "2.0 TDI MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261924, + "fields": { + "id_car_serie": 47457, + "name": "2.0 TDI DSG (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261925, + "fields": { + "id_car_serie": 47457, + "name": "2.0 TDI DSG (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261926, + "fields": { + "id_car_serie": 49456, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261927, + "fields": { + "id_car_serie": 49456, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261928, + "fields": { + "id_car_serie": 49456, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261929, + "fields": { + "id_car_serie": 49456, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261930, + "fields": { + "id_car_serie": 49456, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261931, + "fields": { + "id_car_serie": 15161, + "name": "2.0 D4 Geartronic (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261932, + "fields": { + "id_car_serie": 15161, + "name": "2.0 D4 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261933, + "fields": { + "id_car_serie": 15161, + "name": "2.4 D4 Geartronic AWD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261934, + "fields": { + "id_car_serie": 15161, + "name": "2.4 D5 Geartronic AWD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261935, + "fields": { + "id_car_serie": 15161, + "name": "2.4 D5 MT AWD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261936, + "fields": { + "id_car_serie": 15161, + "name": "3.0 T6 Geartronic AWD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261937, + "fields": { + "id_car_serie": 2893, + "name": "2.0 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261938, + "fields": { + "id_car_serie": 2893, + "name": "2.2 MT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261939, + "fields": { + "id_car_serie": 2893, + "name": "2.2 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261940, + "fields": { + "id_car_serie": 2893, + "name": "2.3 MT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261941, + "fields": { + "id_car_serie": 2893, + "name": "2.6 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261942, + "fields": { + "id_car_serie": 2893, + "name": "2.6 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261943, + "fields": { + "id_car_serie": 2893, + "name": "2.8 MT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261944, + "fields": { + "id_car_serie": 2893, + "name": "2.8 AT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261945, + "fields": { + "id_car_serie": 2893, + "name": "4.2 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261946, + "fields": { + "id_car_serie": 2893, + "name": "4.2 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261947, + "fields": { + "id_car_serie": 2893, + "name": "4.2 AT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261948, + "fields": { + "id_car_serie": 2893, + "name": "4.2 MT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261949, + "fields": { + "id_car_serie": 5468, + "name": "2.2 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261950, + "fields": { + "id_car_serie": 5468, + "name": "2.2 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261951, + "fields": { + "id_car_serie": 5468, + "name": "2.2 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261952, + "fields": { + "id_car_serie": 5468, + "name": "2.2 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261953, + "fields": { + "id_car_serie": 2899, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261954, + "fields": { + "id_car_serie": 2899, + "name": "1.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261955, + "fields": { + "id_car_serie": 2899, + "name": "1.0 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261956, + "fields": { + "id_car_serie": 2899, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261957, + "fields": { + "id_car_serie": 2899, + "name": "2.0 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261958, + "fields": { + "id_car_serie": 4624, + "name": "1.8 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261959, + "fields": { + "id_car_serie": 4624, + "name": "2.0 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261960, + "fields": { + "id_car_serie": 4624, + "name": "2.0 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261961, + "fields": { + "id_car_serie": 4624, + "name": "2.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261962, + "fields": { + "id_car_serie": 4624, + "name": "3.0 CVT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261963, + "fields": { + "id_car_serie": 4624, + "name": "3.0 MT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261964, + "fields": { + "id_car_serie": 4624, + "name": "3.1 MT 4WD (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261965, + "fields": { + "id_car_serie": 4624, + "name": "3.1 AT 4WD (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261966, + "fields": { + "id_car_serie": 4624, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261967, + "fields": { + "id_car_serie": 4624, + "name": "2.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261968, + "fields": { + "id_car_serie": 4624, + "name": "2.7 CVT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261969, + "fields": { + "id_car_serie": 4624, + "name": "3.0 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261970, + "fields": { + "id_car_serie": 4624, + "name": "3.0 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261971, + "fields": { + "id_car_serie": 4624, + "name": "3.0 MT 4WD (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261972, + "fields": { + "id_car_serie": 4624, + "name": "3.0 AT 4WD (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261973, + "fields": { + "id_car_serie": 4627, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261974, + "fields": { + "id_car_serie": 4627, + "name": "1.8 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261975, + "fields": { + "id_car_serie": 4627, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261976, + "fields": { + "id_car_serie": 4627, + "name": "1.8 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261977, + "fields": { + "id_car_serie": 4627, + "name": "1.8 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261978, + "fields": { + "id_car_serie": 4627, + "name": "1.8 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261979, + "fields": { + "id_car_serie": 4627, + "name": "1.8 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261980, + "fields": { + "id_car_serie": 4627, + "name": "2.4 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261981, + "fields": { + "id_car_serie": 4627, + "name": "2.8 MT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261982, + "fields": { + "id_car_serie": 4627, + "name": "2.8 AT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261983, + "fields": { + "id_car_serie": 4627, + "name": "1.9 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261984, + "fields": { + "id_car_serie": 4627, + "name": "1.9 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261985, + "fields": { + "id_car_serie": 46540, + "name": "2.0 AMT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261986, + "fields": { + "id_car_serie": 46540, + "name": "2.0 AMT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261987, + "fields": { + "id_car_serie": 46540, + "name": "2.0 AMT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261988, + "fields": { + "id_car_serie": 46540, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261989, + "fields": { + "id_car_serie": 46540, + "name": "3.0 AMT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261990, + "fields": { + "id_car_serie": 46540, + "name": "3.0 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261991, + "fields": { + "id_car_serie": 8334, + "name": "2.0 MT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261992, + "fields": { + "id_car_serie": 8334, + "name": "2.0 AMT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261993, + "fields": { + "id_car_serie": 8334, + "name": "2.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261994, + "fields": { + "id_car_serie": 8334, + "name": "3.0 AMT 4WD (239 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261995, + "fields": { + "id_car_serie": 47105, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261996, + "fields": { + "id_car_serie": 47105, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261997, + "fields": { + "id_car_serie": 47105, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261998, + "fields": { + "id_car_serie": 47105, + "name": "4.0 AT 4WD (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 261999, + "fields": { + "id_car_serie": 47100, + "name": "3.0 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262000, + "fields": { + "id_car_serie": 47100, + "name": "4.0 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262001, + "fields": { + "id_car_serie": 47100, + "name": "6.3 AT 4WD (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262002, + "fields": { + "id_car_serie": 47100, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262003, + "fields": { + "id_car_serie": 47100, + "name": "3.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262004, + "fields": { + "id_car_serie": 47100, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262005, + "fields": { + "id_car_serie": 47100, + "name": "4.1 AT 4WD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262006, + "fields": { + "id_car_serie": 47102, + "name": "4.2 AT 4WD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262007, + "fields": { + "id_car_serie": 47102, + "name": "3.1 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262008, + "fields": { + "id_car_serie": 47102, + "name": "6.0 AT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262009, + "fields": { + "id_car_serie": 47102, + "name": "3.0 AT 4WD (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262010, + "fields": { + "id_car_serie": 47102, + "name": "4.1 AT 4WD (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262011, + "fields": { + "id_car_serie": 47104, + "name": "4.2 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262012, + "fields": { + "id_car_serie": 47104, + "name": "6.0 AT 4WD (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262013, + "fields": { + "id_car_serie": 14879, + "name": "2.2 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262014, + "fields": { + "id_car_serie": 14879, + "name": "2.2 MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262015, + "fields": { + "id_car_serie": 14879, + "name": "2.2 MT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262016, + "fields": { + "id_car_serie": 14879, + "name": "2.3 MT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262017, + "fields": { + "id_car_serie": 14879, + "name": "2.3 MT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262018, + "fields": { + "id_car_serie": 14879, + "name": "2.4 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262019, + "fields": { + "id_car_serie": 14879, + "name": "2.4 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262020, + "fields": { + "id_car_serie": 14879, + "name": "2.6 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262021, + "fields": { + "id_car_serie": 14879, + "name": "2.8 MT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262022, + "fields": { + "id_car_serie": 66837, + "name": "1.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262023, + "fields": { + "id_car_serie": 66837, + "name": "1.0 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262024, + "fields": { + "id_car_serie": 66837, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262025, + "fields": { + "id_car_serie": 66837, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262026, + "fields": { + "id_car_serie": 66837, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262027, + "fields": { + "id_car_serie": 66837, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262028, + "fields": { + "id_car_serie": 66837, + "name": "1.6 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262029, + "fields": { + "id_car_serie": 66837, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262030, + "fields": { + "id_car_serie": 66837, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262031, + "fields": { + "id_car_serie": 8338, + "name": "2.0 AMT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262032, + "fields": { + "id_car_serie": 8338, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262033, + "fields": { + "id_car_serie": 8338, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262034, + "fields": { + "id_car_serie": 8338, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262035, + "fields": { + "id_car_serie": 8338, + "name": "2.0 AMT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262036, + "fields": { + "id_car_serie": 8338, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262037, + "fields": { + "id_car_serie": 8338, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262038, + "fields": { + "id_car_serie": 5497, + "name": "2.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262039, + "fields": { + "id_car_serie": 5497, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262040, + "fields": { + "id_car_serie": 5497, + "name": "3.0 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262041, + "fields": { + "id_car_serie": 5498, + "name": "2.2 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262042, + "fields": { + "id_car_serie": 5498, + "name": "2.2 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262043, + "fields": { + "id_car_serie": 5498, + "name": "2.2 MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262044, + "fields": { + "id_car_serie": 5518, + "name": "4.2 MT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262045, + "fields": { + "id_car_serie": 5518, + "name": "4.2 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262046, + "fields": { + "id_car_serie": 2918, + "name": "5.2 AMT 4WD (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262047, + "fields": { + "id_car_serie": 2918, + "name": "5.2 AMT 4WD (610 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262048, + "fields": { + "id_car_serie": 14767, + "name": "2.5 AMT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262049, + "fields": { + "id_car_serie": 14767, + "name": "2.5 AMT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262050, + "fields": { + "id_car_serie": 5500, + "name": "2.5 AMT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262051, + "fields": { + "id_car_serie": 47111, + "name": "2.2 MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262052, + "fields": { + "id_car_serie": 47111, + "name": "2.2 MT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262053, + "fields": { + "id_car_serie": 66839, + "name": "2.0 AMT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262054, + "fields": { + "id_car_serie": 66840, + "name": "2.0 AMT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262055, + "fields": { + "id_car_serie": 66841, + "name": "2.0 AMT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262056, + "fields": { + "id_car_serie": 66842, + "name": "4.0 AT 4WD (422 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262057, + "fields": { + "id_car_serie": 66842, + "name": "4.0 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262058, + "fields": { + "id_car_serie": 66843, + "name": "4.0 AT 4WD (422 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262059, + "fields": { + "id_car_serie": 66843, + "name": "4.0 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262060, + "fields": { + "id_car_serie": 66844, + "name": "2.5 AMT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262061, + "fields": { + "id_car_serie": 66845, + "name": "3.0 MT (480 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262062, + "fields": { + "id_car_serie": 66845, + "name": "3.0 AT 4WD (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262063, + "fields": { + "id_car_serie": 66846, + "name": "3.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262064, + "fields": { + "id_car_serie": 66846, + "name": "3.0 MT (480 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262065, + "fields": { + "id_car_serie": 66846, + "name": "3.0 AT 4WD (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262066, + "fields": { + "id_car_serie": 66847, + "name": "2.0 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262067, + "fields": { + "id_car_serie": 66847, + "name": "2.0 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262068, + "fields": { + "id_car_serie": 66847, + "name": "2.2 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262069, + "fields": { + "id_car_serie": 66847, + "name": "2.2 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262070, + "fields": { + "id_car_serie": 66847, + "name": "2.2 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262071, + "fields": { + "id_car_serie": 66847, + "name": "2.2 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262072, + "fields": { + "id_car_serie": 66847, + "name": "2.8 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262073, + "fields": { + "id_car_serie": 66847, + "name": "2.8 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262074, + "fields": { + "id_car_serie": 66847, + "name": "2.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262075, + "fields": { + "id_car_serie": 66847, + "name": "2.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262076, + "fields": { + "id_car_serie": 66847, + "name": "3.1 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262077, + "fields": { + "id_car_serie": 66847, + "name": "3.1 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262078, + "fields": { + "id_car_serie": 66847, + "name": "3.1 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262079, + "fields": { + "id_car_serie": 486, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262080, + "fields": { + "id_car_serie": 14783, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262081, + "fields": { + "id_car_serie": 14783, + "name": "3.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262082, + "fields": { + "id_car_serie": 14783, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262083, + "fields": { + "id_car_serie": 14782, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262084, + "fields": { + "id_car_serie": 14782, + "name": "3.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262085, + "fields": { + "id_car_serie": 5376, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262086, + "fields": { + "id_car_serie": 5376, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262087, + "fields": { + "id_car_serie": 5376, + "name": "2.3 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262088, + "fields": { + "id_car_serie": 5376, + "name": "2.3 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262089, + "fields": { + "id_car_serie": 5376, + "name": "2.9 AT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262090, + "fields": { + "id_car_serie": 5376, + "name": "2.9 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262091, + "fields": { + "id_car_serie": 5376, + "name": "2.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262092, + "fields": { + "id_car_serie": 5376, + "name": "2.5 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262093, + "fields": { + "id_car_serie": 14970, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262094, + "fields": { + "id_car_serie": 14970, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262095, + "fields": { + "id_car_serie": 14970, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262096, + "fields": { + "id_car_serie": 63765, + "name": "2.4 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262097, + "fields": { + "id_car_serie": 63765, + "name": "2.4 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262098, + "fields": { + "id_car_serie": 63765, + "name": "2.5 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262099, + "fields": { + "id_car_serie": 63765, + "name": "2.5 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262100, + "fields": { + "id_car_serie": 63765, + "name": "2.5 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262101, + "fields": { + "id_car_serie": 63765, + "name": "2.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262102, + "fields": { + "id_car_serie": 63765, + "name": "2.5 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262103, + "fields": { + "id_car_serie": 63765, + "name": "2.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262104, + "fields": { + "id_car_serie": 63765, + "name": "2.5 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262105, + "fields": { + "id_car_serie": 63765, + "name": "2.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262106, + "fields": { + "id_car_serie": 66849, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262107, + "fields": { + "id_car_serie": 66849, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262108, + "fields": { + "id_car_serie": 66849, + "name": "1.6 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262109, + "fields": { + "id_car_serie": 66849, + "name": "1.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262110, + "fields": { + "id_car_serie": 66849, + "name": "1.6 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262111, + "fields": { + "id_car_serie": 66849, + "name": "1.6 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262112, + "fields": { + "id_car_serie": 66849, + "name": "1.6 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262113, + "fields": { + "id_car_serie": 66849, + "name": "1.6 AMT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262114, + "fields": { + "id_car_serie": 66849, + "name": "1.6 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262115, + "fields": { + "id_car_serie": 64048, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262116, + "fields": { + "id_car_serie": 64048, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262117, + "fields": { + "id_car_serie": 64048, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262118, + "fields": { + "id_car_serie": 64048, + "name": "1.6 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262119, + "fields": { + "id_car_serie": 64048, + "name": "1.6 AMT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262120, + "fields": { + "id_car_serie": 64048, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262121, + "fields": { + "id_car_serie": 64048, + "name": "1.6 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262122, + "fields": { + "id_car_serie": 64048, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262123, + "fields": { + "id_car_serie": 64048, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262124, + "fields": { + "id_car_serie": 64049, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262125, + "fields": { + "id_car_serie": 64049, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262126, + "fields": { + "id_car_serie": 64049, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262127, + "fields": { + "id_car_serie": 64049, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262128, + "fields": { + "id_car_serie": 64049, + "name": "1.6 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262129, + "fields": { + "id_car_serie": 64049, + "name": "1.6 AMT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262130, + "fields": { + "id_car_serie": 64049, + "name": "1.6 MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262131, + "fields": { + "id_car_serie": 64049, + "name": "1.8 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262132, + "fields": { + "id_car_serie": 64049, + "name": "1.8 AT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262133, + "fields": { + "id_car_serie": 64049, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262134, + "fields": { + "id_car_serie": 64049, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262135, + "fields": { + "id_car_serie": 64049, + "name": "1.6 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262136, + "fields": { + "id_car_serie": 64049, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262137, + "fields": { + "id_car_serie": 64049, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262138, + "fields": { + "id_car_serie": 64050, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262139, + "fields": { + "id_car_serie": 64050, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262140, + "fields": { + "id_car_serie": 64050, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262141, + "fields": { + "id_car_serie": 64050, + "name": "1.6 AMT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262142, + "fields": { + "id_car_serie": 64050, + "name": "1.6 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262143, + "fields": { + "id_car_serie": 64050, + "name": "1.6 MT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262144, + "fields": { + "id_car_serie": 64050, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262145, + "fields": { + "id_car_serie": 64050, + "name": "1.6 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262146, + "fields": { + "id_car_serie": 64050, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262147, + "fields": { + "id_car_serie": 64050, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262148, + "fields": { + "id_car_serie": 64051, + "name": "1.4 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262149, + "fields": { + "id_car_serie": 64051, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262150, + "fields": { + "id_car_serie": 64051, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262151, + "fields": { + "id_car_serie": 64051, + "name": "1.6 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262152, + "fields": { + "id_car_serie": 64051, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262153, + "fields": { + "id_car_serie": 64051, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262154, + "fields": { + "id_car_serie": 64051, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262155, + "fields": { + "id_car_serie": 64051, + "name": "1.6 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262156, + "fields": { + "id_car_serie": 64051, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262157, + "fields": { + "id_car_serie": 64051, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262158, + "fields": { + "id_car_serie": 64052, + "name": "1.4 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262159, + "fields": { + "id_car_serie": 64052, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262160, + "fields": { + "id_car_serie": 64052, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262161, + "fields": { + "id_car_serie": 64052, + "name": "1.6 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262162, + "fields": { + "id_car_serie": 64052, + "name": "1.6 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262163, + "fields": { + "id_car_serie": 64052, + "name": "1.6 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262164, + "fields": { + "id_car_serie": 64052, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262165, + "fields": { + "id_car_serie": 1369, + "name": "1.6 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262166, + "fields": { + "id_car_serie": 1369, + "name": "2.0 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262167, + "fields": { + "id_car_serie": 1370, + "name": "2.0 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262168, + "fields": { + "id_car_serie": 1382, + "name": "4.8 AMT (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262169, + "fields": { + "id_car_serie": 8727, + "name": "4.6 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262170, + "fields": { + "id_car_serie": 8727, + "name": "4.6 AT 4WD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262171, + "fields": { + "id_car_serie": 8727, + "name": "5.0 CVT 4WD (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262172, + "fields": { + "id_car_serie": 3613, + "name": "4.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262173, + "fields": { + "id_car_serie": 15508, + "name": "5.0 AT (464 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262174, + "fields": { + "id_car_serie": 15508, + "name": "5.0 AT (474 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262175, + "fields": { + "id_car_serie": 3615, + "name": "3.5 AT 4WD (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262176, + "fields": { + "id_car_serie": 3615, + "name": "3.5 CVT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262177, + "fields": { + "id_car_serie": 6808, + "name": "1.6 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262178, + "fields": { + "id_car_serie": 6808, + "name": "1.6 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262179, + "fields": { + "id_car_serie": 6808, + "name": "1.6 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262180, + "fields": { + "id_car_serie": 15462, + "name": "2.3 MT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262181, + "fields": { + "id_car_serie": 66851, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262182, + "fields": { + "id_car_serie": 66851, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262183, + "fields": { + "id_car_serie": 66852, + "name": "1.8 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262184, + "fields": { + "id_car_serie": 46136, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262185, + "fields": { + "id_car_serie": 45841, + "name": "3.2 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262186, + "fields": { + "id_car_serie": 45841, + "name": "3.2 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262187, + "fields": { + "id_car_serie": 3676, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262188, + "fields": { + "id_car_serie": 3676, + "name": "1.8 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262189, + "fields": { + "id_car_serie": 3676, + "name": "1.8 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262190, + "fields": { + "id_car_serie": 3676, + "name": "1.8 AT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262191, + "fields": { + "id_car_serie": 3676, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262192, + "fields": { + "id_car_serie": 3676, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262193, + "fields": { + "id_car_serie": 3676, + "name": "2.0 MT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262194, + "fields": { + "id_car_serie": 3676, + "name": "2.0 AT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262195, + "fields": { + "id_car_serie": 3676, + "name": "2.5 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262196, + "fields": { + "id_car_serie": 3676, + "name": "2.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262197, + "fields": { + "id_car_serie": 3676, + "name": "2.5 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262198, + "fields": { + "id_car_serie": 8798, + "name": "1.3 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262199, + "fields": { + "id_car_serie": 8798, + "name": "1.3 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262200, + "fields": { + "id_car_serie": 8798, + "name": "1.5 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262201, + "fields": { + "id_car_serie": 8798, + "name": "1.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262202, + "fields": { + "id_car_serie": 8798, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262203, + "fields": { + "id_car_serie": 8798, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262204, + "fields": { + "id_car_serie": 8798, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262205, + "fields": { + "id_car_serie": 8798, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262206, + "fields": { + "id_car_serie": 8798, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262207, + "fields": { + "id_car_serie": 8798, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262208, + "fields": { + "id_car_serie": 8798, + "name": "1.6 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262209, + "fields": { + "id_car_serie": 8798, + "name": "1.6 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262210, + "fields": { + "id_car_serie": 8798, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262211, + "fields": { + "id_car_serie": 8798, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262212, + "fields": { + "id_car_serie": 8798, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262213, + "fields": { + "id_car_serie": 8798, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262214, + "fields": { + "id_car_serie": 8798, + "name": "1.8 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262215, + "fields": { + "id_car_serie": 8798, + "name": "1.8 MT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262216, + "fields": { + "id_car_serie": 14679, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262217, + "fields": { + "id_car_serie": 14679, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262218, + "fields": { + "id_car_serie": 8807, + "name": "2.3 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262219, + "fields": { + "id_car_serie": 8807, + "name": "2.3 AT 4WD (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262220, + "fields": { + "id_car_serie": 8807, + "name": "2.3 MT 4WD (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262221, + "fields": { + "id_car_serie": 8807, + "name": "3.0 AT 4WD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262222, + "fields": { + "id_car_serie": 8807, + "name": "3.7 AT 4WD (273 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262223, + "fields": { + "id_car_serie": 3673, + "name": "2.3 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262224, + "fields": { + "id_car_serie": 3673, + "name": "2.3 AT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262225, + "fields": { + "id_car_serie": 3673, + "name": "3.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262226, + "fields": { + "id_car_serie": 3673, + "name": "3.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262227, + "fields": { + "id_car_serie": 3673, + "name": "4.0 MT 4WD (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262228, + "fields": { + "id_car_serie": 3673, + "name": "4.0 AT 4WD (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262229, + "fields": { + "id_car_serie": 3673, + "name": "2.5 MT 4WD (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262230, + "fields": { + "id_car_serie": 3673, + "name": "2.5 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262231, + "fields": { + "id_car_serie": 3674, + "name": "2.3 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262232, + "fields": { + "id_car_serie": 3674, + "name": "2.3 AT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262233, + "fields": { + "id_car_serie": 3674, + "name": "4.0 MT 4WD (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262234, + "fields": { + "id_car_serie": 3674, + "name": "4.0 AT 4WD (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262235, + "fields": { + "id_car_serie": 3674, + "name": "2.5 MT 4WD (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262236, + "fields": { + "id_car_serie": 3674, + "name": "2.5 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262237, + "fields": { + "id_car_serie": 6841, + "name": "2.0 MT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262238, + "fields": { + "id_car_serie": 6841, + "name": "2.6 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262239, + "fields": { + "id_car_serie": 6841, + "name": "2.6 AT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262240, + "fields": { + "id_car_serie": 6841, + "name": "2.6 MT 4WD (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262241, + "fields": { + "id_car_serie": 6841, + "name": "2.6 AT 4WD (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262242, + "fields": { + "id_car_serie": 15735, + "name": "1.6 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262243, + "fields": { + "id_car_serie": 15735, + "name": "2.0 AMT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262244, + "fields": { + "id_car_serie": 15735, + "name": "2.0 AMT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262245, + "fields": { + "id_car_serie": 15735, + "name": "2.0 AMT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262246, + "fields": { + "id_car_serie": 15735, + "name": "2.1 AMT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262247, + "fields": { + "id_car_serie": 15735, + "name": "2.1 AMT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262248, + "fields": { + "id_car_serie": 6918, + "name": "2.0 AMT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262249, + "fields": { + "id_car_serie": 6918, + "name": "1.6 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262250, + "fields": { + "id_car_serie": 6918, + "name": "2.0 AMT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262251, + "fields": { + "id_car_serie": 6918, + "name": "2.0 AMT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262252, + "fields": { + "id_car_serie": 6918, + "name": "2.1 AMT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262253, + "fields": { + "id_car_serie": 6918, + "name": "2.1 AMT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262254, + "fields": { + "id_car_serie": 46892, + "name": "2.0 AMT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262255, + "fields": { + "id_car_serie": 46892, + "name": "2.0 AMT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262256, + "fields": { + "id_car_serie": 46892, + "name": "2.1 AMT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262257, + "fields": { + "id_car_serie": 46892, + "name": "2.1 AMT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262258, + "fields": { + "id_car_serie": 46891, + "name": "2.0 AMT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262259, + "fields": { + "id_car_serie": 46891, + "name": "1.6 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262260, + "fields": { + "id_car_serie": 46891, + "name": "2.0 AMT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262261, + "fields": { + "id_car_serie": 46891, + "name": "2.1 AMT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262262, + "fields": { + "id_car_serie": 46891, + "name": "2.1 AMT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262263, + "fields": { + "id_car_serie": 46891, + "name": "2.1 AMT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262264, + "fields": { + "id_car_serie": 3705, + "name": "3.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262265, + "fields": { + "id_car_serie": 3705, + "name": "4.7 AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262266, + "fields": { + "id_car_serie": 3704, + "name": "3.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262267, + "fields": { + "id_car_serie": 3704, + "name": "3.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262268, + "fields": { + "id_car_serie": 3704, + "name": "4.7 AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262269, + "fields": { + "id_car_serie": 3704, + "name": "4.7 AT 4WD (402 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262270, + "fields": { + "id_car_serie": 15512, + "name": "5.5 AT 4WD (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262271, + "fields": { + "id_car_serie": 15512, + "name": "5.5 AT 4WD (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262272, + "fields": { + "id_car_serie": 15509, + "name": "5.5 AT 4WD (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262273, + "fields": { + "id_car_serie": 46973, + "name": "5.5 AT 4WD (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262274, + "fields": { + "id_car_serie": 46973, + "name": "5.5 AT 4WD (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262275, + "fields": { + "id_car_serie": 46973, + "name": "5.5 AT 4WD (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262276, + "fields": { + "id_car_serie": 46974, + "name": "5.5 AT 4WD (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262277, + "fields": { + "id_car_serie": 46974, + "name": "5.5 AT 4WD (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262278, + "fields": { + "id_car_serie": 46974, + "name": "5.5 AT 4WD (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262279, + "fields": { + "id_car_serie": 66853, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262280, + "fields": { + "id_car_serie": 66853, + "name": "2.0 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262281, + "fields": { + "id_car_serie": 66853, + "name": "2.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262282, + "fields": { + "id_car_serie": 66853, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262283, + "fields": { + "id_car_serie": 66853, + "name": "2.0 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262284, + "fields": { + "id_car_serie": 66853, + "name": "2.0 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262285, + "fields": { + "id_car_serie": 66853, + "name": "2.9 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262286, + "fields": { + "id_car_serie": 66854, + "name": "2.0 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262287, + "fields": { + "id_car_serie": 66854, + "name": "2.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262288, + "fields": { + "id_car_serie": 66854, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262289, + "fields": { + "id_car_serie": 66854, + "name": "2.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262290, + "fields": { + "id_car_serie": 66854, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262291, + "fields": { + "id_car_serie": 66854, + "name": "2.0 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262292, + "fields": { + "id_car_serie": 66854, + "name": "2.0 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262293, + "fields": { + "id_car_serie": 66854, + "name": "2.9 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262294, + "fields": { + "id_car_serie": 46554, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262295, + "fields": { + "id_car_serie": 46554, + "name": "2.0 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262296, + "fields": { + "id_car_serie": 46554, + "name": "2.9 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262297, + "fields": { + "id_car_serie": 46554, + "name": "1.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262298, + "fields": { + "id_car_serie": 46554, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262299, + "fields": { + "id_car_serie": 46554, + "name": "2.9 AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262300, + "fields": { + "id_car_serie": 46554, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262301, + "fields": { + "id_car_serie": 46554, + "name": "2.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262302, + "fields": { + "id_car_serie": 46554, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262303, + "fields": { + "id_car_serie": 46554, + "name": "3.0 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262304, + "fields": { + "id_car_serie": 46554, + "name": "3.5 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262305, + "fields": { + "id_car_serie": 46554, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262306, + "fields": { + "id_car_serie": 46554, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262307, + "fields": { + "id_car_serie": 46554, + "name": "2.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262308, + "fields": { + "id_car_serie": 46554, + "name": "2.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262309, + "fields": { + "id_car_serie": 46554, + "name": "2.0 AT (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262310, + "fields": { + "id_car_serie": 3706, + "name": "3.5 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262311, + "fields": { + "id_car_serie": 3706, + "name": "3.5 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262312, + "fields": { + "id_car_serie": 8825, + "name": "3.0 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262313, + "fields": { + "id_car_serie": 8825, + "name": "3.5 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262314, + "fields": { + "id_car_serie": 8825, + "name": "3.5 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262315, + "fields": { + "id_car_serie": 8825, + "name": "3.5 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262316, + "fields": { + "id_car_serie": 8825, + "name": "4.7 AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262317, + "fields": { + "id_car_serie": 8825, + "name": "2.1 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262318, + "fields": { + "id_car_serie": 8825, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262319, + "fields": { + "id_car_serie": 3708, + "name": "3.0 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262320, + "fields": { + "id_car_serie": 3708, + "name": "3.5 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262321, + "fields": { + "id_car_serie": 3708, + "name": "3.5 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262322, + "fields": { + "id_car_serie": 3708, + "name": "4.7 AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262323, + "fields": { + "id_car_serie": 3708, + "name": "2.1 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262324, + "fields": { + "id_car_serie": 3708, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262325, + "fields": { + "id_car_serie": 3708, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262326, + "fields": { + "id_car_serie": 8816, + "name": "2.1 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262327, + "fields": { + "id_car_serie": 8816, + "name": "2.1 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262328, + "fields": { + "id_car_serie": 8816, + "name": "2.1 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262329, + "fields": { + "id_car_serie": 8815, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262330, + "fields": { + "id_car_serie": 8815, + "name": "3.5 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262331, + "fields": { + "id_car_serie": 8815, + "name": "4.7 AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262332, + "fields": { + "id_car_serie": 8815, + "name": "3.5 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262333, + "fields": { + "id_car_serie": 8815, + "name": "3.5 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262334, + "fields": { + "id_car_serie": 8815, + "name": "3.5 AT 4WD (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262335, + "fields": { + "id_car_serie": 8815, + "name": "5.5 AT 4WD (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262336, + "fields": { + "id_car_serie": 8815, + "name": "2.1 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262337, + "fields": { + "id_car_serie": 8815, + "name": "2.1 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262338, + "fields": { + "id_car_serie": 8815, + "name": "2.1 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262339, + "fields": { + "id_car_serie": 8815, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262340, + "fields": { + "id_car_serie": 8815, + "name": "3.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262341, + "fields": { + "id_car_serie": 8817, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262342, + "fields": { + "id_car_serie": 8817, + "name": "3.5 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262343, + "fields": { + "id_car_serie": 8817, + "name": "3.5 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262344, + "fields": { + "id_car_serie": 8817, + "name": "4.7 AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262345, + "fields": { + "id_car_serie": 8817, + "name": "5.5 AT (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262346, + "fields": { + "id_car_serie": 8817, + "name": "2.1 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262347, + "fields": { + "id_car_serie": 8817, + "name": "2.1 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262348, + "fields": { + "id_car_serie": 8817, + "name": "2.1 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262349, + "fields": { + "id_car_serie": 8817, + "name": "3.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262350, + "fields": { + "id_car_serie": 8814, + "name": "2.1 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262351, + "fields": { + "id_car_serie": 8814, + "name": "2.1 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262352, + "fields": { + "id_car_serie": 8814, + "name": "3.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262353, + "fields": { + "id_car_serie": 15031, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262354, + "fields": { + "id_car_serie": 15031, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262355, + "fields": { + "id_car_serie": 15031, + "name": "5.5 AT 4WD (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262356, + "fields": { + "id_car_serie": 15031, + "name": "2.6 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262357, + "fields": { + "id_car_serie": 15031, + "name": "2.6 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262358, + "fields": { + "id_car_serie": 15031, + "name": "3.0 MT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262359, + "fields": { + "id_car_serie": 15031, + "name": "3.2 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262360, + "fields": { + "id_car_serie": 15031, + "name": "5.0 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262361, + "fields": { + "id_car_serie": 15031, + "name": "2.2 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262362, + "fields": { + "id_car_serie": 15031, + "name": "2.2 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262363, + "fields": { + "id_car_serie": 15031, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262364, + "fields": { + "id_car_serie": 15031, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262365, + "fields": { + "id_car_serie": 15031, + "name": "2.2 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262366, + "fields": { + "id_car_serie": 15031, + "name": "2.2 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262367, + "fields": { + "id_car_serie": 15031, + "name": "3.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262368, + "fields": { + "id_car_serie": 15031, + "name": "3.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262369, + "fields": { + "id_car_serie": 15032, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262370, + "fields": { + "id_car_serie": 15032, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262371, + "fields": { + "id_car_serie": 15032, + "name": "5.5 AT 4WD (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262372, + "fields": { + "id_car_serie": 15032, + "name": "2.6 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262373, + "fields": { + "id_car_serie": 15032, + "name": "2.6 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262374, + "fields": { + "id_car_serie": 15032, + "name": "3.0 MT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262375, + "fields": { + "id_car_serie": 15032, + "name": "3.5 AT 4WD (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262376, + "fields": { + "id_car_serie": 15032, + "name": "2.2 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262377, + "fields": { + "id_car_serie": 15032, + "name": "2.2 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262378, + "fields": { + "id_car_serie": 15032, + "name": "2.2 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262379, + "fields": { + "id_car_serie": 15032, + "name": "2.2 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262380, + "fields": { + "id_car_serie": 15032, + "name": "3.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262381, + "fields": { + "id_car_serie": 15032, + "name": "3.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262382, + "fields": { + "id_car_serie": 8819, + "name": "2.6 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262383, + "fields": { + "id_car_serie": 8819, + "name": "2.6 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262384, + "fields": { + "id_car_serie": 8819, + "name": "3.2 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262385, + "fields": { + "id_car_serie": 8819, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262386, + "fields": { + "id_car_serie": 8819, + "name": "5.0 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262387, + "fields": { + "id_car_serie": 8819, + "name": "2.2 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262388, + "fields": { + "id_car_serie": 8819, + "name": "2.2 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262389, + "fields": { + "id_car_serie": 8819, + "name": "2.2 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262390, + "fields": { + "id_car_serie": 8819, + "name": "2.2 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262391, + "fields": { + "id_car_serie": 8819, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262392, + "fields": { + "id_car_serie": 8819, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262393, + "fields": { + "id_car_serie": 8819, + "name": "3.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262394, + "fields": { + "id_car_serie": 8818, + "name": "2.6 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262395, + "fields": { + "id_car_serie": 8818, + "name": "2.6 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262396, + "fields": { + "id_car_serie": 8818, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262397, + "fields": { + "id_car_serie": 8818, + "name": "3.2 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262398, + "fields": { + "id_car_serie": 8818, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262399, + "fields": { + "id_car_serie": 8818, + "name": "3.5 AT 4WD (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262400, + "fields": { + "id_car_serie": 8818, + "name": "5.0 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262401, + "fields": { + "id_car_serie": 8818, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262402, + "fields": { + "id_car_serie": 8818, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262403, + "fields": { + "id_car_serie": 8818, + "name": "3.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262404, + "fields": { + "id_car_serie": 8818, + "name": "3.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262405, + "fields": { + "id_car_serie": 15034, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262406, + "fields": { + "id_car_serie": 15034, + "name": "2.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262407, + "fields": { + "id_car_serie": 15034, + "name": "2.2 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262408, + "fields": { + "id_car_serie": 15034, + "name": "2.2 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262409, + "fields": { + "id_car_serie": 15034, + "name": "2.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262410, + "fields": { + "id_car_serie": 15034, + "name": "2.8 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262411, + "fields": { + "id_car_serie": 15034, + "name": "2.8 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262412, + "fields": { + "id_car_serie": 15034, + "name": "3.2 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262413, + "fields": { + "id_car_serie": 15034, + "name": "4.3 AT 4WD (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262414, + "fields": { + "id_car_serie": 15033, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262415, + "fields": { + "id_car_serie": 15033, + "name": "2.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262416, + "fields": { + "id_car_serie": 15033, + "name": "2.0 MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262417, + "fields": { + "id_car_serie": 15033, + "name": "2.8 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262418, + "fields": { + "id_car_serie": 15033, + "name": "3.2 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262419, + "fields": { + "id_car_serie": 15033, + "name": "4.3 AT 4WD (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262420, + "fields": { + "id_car_serie": 15033, + "name": "2.2 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262421, + "fields": { + "id_car_serie": 15033, + "name": "2.2 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262422, + "fields": { + "id_car_serie": 8820, + "name": "2.8 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262423, + "fields": { + "id_car_serie": 8820, + "name": "3.2 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262424, + "fields": { + "id_car_serie": 46893, + "name": "3.0 AT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262425, + "fields": { + "id_car_serie": 46893, + "name": "3.0 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262426, + "fields": { + "id_car_serie": 8823, + "name": "3.0 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262427, + "fields": { + "id_car_serie": 8823, + "name": "3.0 AT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262428, + "fields": { + "id_car_serie": 6926, + "name": "3.2 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262429, + "fields": { + "id_car_serie": 6926, + "name": "5.0 AT 4WD (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262430, + "fields": { + "id_car_serie": 64173, + "name": "2.3 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262431, + "fields": { + "id_car_serie": 64173, + "name": "2.3 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262432, + "fields": { + "id_car_serie": 64173, + "name": "3.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262433, + "fields": { + "id_car_serie": 64173, + "name": "3.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262434, + "fields": { + "id_car_serie": 64173, + "name": "3.2 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262435, + "fields": { + "id_car_serie": 64173, + "name": "3.2 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262436, + "fields": { + "id_car_serie": 64173, + "name": "5.0 AT 4WD (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262437, + "fields": { + "id_car_serie": 64173, + "name": "2.5 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262438, + "fields": { + "id_car_serie": 64173, + "name": "2.7 AT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262439, + "fields": { + "id_car_serie": 64173, + "name": "3.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262440, + "fields": { + "id_car_serie": 64173, + "name": "3.0 MT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262441, + "fields": { + "id_car_serie": 64173, + "name": "3.0 AT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262442, + "fields": { + "id_car_serie": 64173, + "name": "3.0 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262443, + "fields": { + "id_car_serie": 64173, + "name": "3.0 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262444, + "fields": { + "id_car_serie": 64173, + "name": "3.5 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262445, + "fields": { + "id_car_serie": 64173, + "name": "4.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262446, + "fields": { + "id_car_serie": 64174, + "name": "2.3 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262447, + "fields": { + "id_car_serie": 64174, + "name": "2.3 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262448, + "fields": { + "id_car_serie": 64174, + "name": "3.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262449, + "fields": { + "id_car_serie": 64174, + "name": "3.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262450, + "fields": { + "id_car_serie": 64174, + "name": "3.2 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262451, + "fields": { + "id_car_serie": 64174, + "name": "3.2 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262452, + "fields": { + "id_car_serie": 64174, + "name": "5.0 AT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262453, + "fields": { + "id_car_serie": 64174, + "name": "5.0 AT 4WD (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262454, + "fields": { + "id_car_serie": 64174, + "name": "2.5 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262455, + "fields": { + "id_car_serie": 64174, + "name": "2.7 AT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262456, + "fields": { + "id_car_serie": 64174, + "name": "2.9 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262457, + "fields": { + "id_car_serie": 64174, + "name": "2.9 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262458, + "fields": { + "id_car_serie": 64174, + "name": "3.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262459, + "fields": { + "id_car_serie": 64174, + "name": "3.0 MT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262460, + "fields": { + "id_car_serie": 64174, + "name": "3.0 AT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262461, + "fields": { + "id_car_serie": 64174, + "name": "3.0 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262462, + "fields": { + "id_car_serie": 64174, + "name": "3.0 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262463, + "fields": { + "id_car_serie": 64174, + "name": "3.5 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262464, + "fields": { + "id_car_serie": 64174, + "name": "4.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262465, + "fields": { + "id_car_serie": 6929, + "name": "2.3 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262466, + "fields": { + "id_car_serie": 6929, + "name": "2.3 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262467, + "fields": { + "id_car_serie": 6929, + "name": "3.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262468, + "fields": { + "id_car_serie": 6929, + "name": "3.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262469, + "fields": { + "id_car_serie": 6929, + "name": "3.2 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262470, + "fields": { + "id_car_serie": 6929, + "name": "3.2 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262471, + "fields": { + "id_car_serie": 6929, + "name": "5.0 AT 4WD (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262472, + "fields": { + "id_car_serie": 6929, + "name": "3.0 AT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262473, + "fields": { + "id_car_serie": 6929, + "name": "3.0 MT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262474, + "fields": { + "id_car_serie": 6929, + "name": "3.0 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262475, + "fields": { + "id_car_serie": 6929, + "name": "4.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262476, + "fields": { + "id_car_serie": 6930, + "name": "2.0 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262477, + "fields": { + "id_car_serie": 6930, + "name": "2.3 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262478, + "fields": { + "id_car_serie": 6930, + "name": "2.3 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262479, + "fields": { + "id_car_serie": 6930, + "name": "2.3 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262480, + "fields": { + "id_car_serie": 6930, + "name": "2.3 MT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262481, + "fields": { + "id_car_serie": 6930, + "name": "2.3 AT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262482, + "fields": { + "id_car_serie": 6930, + "name": "2.3 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262483, + "fields": { + "id_car_serie": 6930, + "name": "2.3 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262484, + "fields": { + "id_car_serie": 6930, + "name": "2.8 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262485, + "fields": { + "id_car_serie": 6930, + "name": "2.8 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262486, + "fields": { + "id_car_serie": 6930, + "name": "2.8 MT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262487, + "fields": { + "id_car_serie": 6930, + "name": "2.8 AT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262488, + "fields": { + "id_car_serie": 6930, + "name": "2.4 MT 4WD (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262489, + "fields": { + "id_car_serie": 6930, + "name": "2.5 MT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262490, + "fields": { + "id_car_serie": 6930, + "name": "2.5 AT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262491, + "fields": { + "id_car_serie": 6930, + "name": "2.5 MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262492, + "fields": { + "id_car_serie": 6930, + "name": "2.9 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262493, + "fields": { + "id_car_serie": 6930, + "name": "2.9 AT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262494, + "fields": { + "id_car_serie": 6930, + "name": "2.9 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262495, + "fields": { + "id_car_serie": 6930, + "name": "3.0 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262496, + "fields": { + "id_car_serie": 6930, + "name": "3.0 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262497, + "fields": { + "id_car_serie": 6930, + "name": "3.0 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262498, + "fields": { + "id_car_serie": 50538, + "name": "2.0 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262499, + "fields": { + "id_car_serie": 50538, + "name": "2.3 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262500, + "fields": { + "id_car_serie": 50538, + "name": "2.3 MT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262501, + "fields": { + "id_car_serie": 50538, + "name": "2.3 AT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262502, + "fields": { + "id_car_serie": 50538, + "name": "2.3 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262503, + "fields": { + "id_car_serie": 50538, + "name": "2.3 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262504, + "fields": { + "id_car_serie": 50538, + "name": "2.3 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262505, + "fields": { + "id_car_serie": 50538, + "name": "2.3 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262506, + "fields": { + "id_car_serie": 50538, + "name": "2.8 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262507, + "fields": { + "id_car_serie": 50538, + "name": "2.8 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262508, + "fields": { + "id_car_serie": 50538, + "name": "2.8 MT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262509, + "fields": { + "id_car_serie": 50538, + "name": "2.8 AT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262510, + "fields": { + "id_car_serie": 50538, + "name": "2.4 MT 4WD (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262511, + "fields": { + "id_car_serie": 50538, + "name": "2.5 MT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262512, + "fields": { + "id_car_serie": 50538, + "name": "2.5 AT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262513, + "fields": { + "id_car_serie": 50538, + "name": "2.5 MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262514, + "fields": { + "id_car_serie": 50538, + "name": "2.9 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262515, + "fields": { + "id_car_serie": 50538, + "name": "2.9 AT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262516, + "fields": { + "id_car_serie": 50538, + "name": "2.9 MT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262517, + "fields": { + "id_car_serie": 50538, + "name": "2.9 AT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262518, + "fields": { + "id_car_serie": 50538, + "name": "3.0 MT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262519, + "fields": { + "id_car_serie": 50538, + "name": "3.0 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262520, + "fields": { + "id_car_serie": 50538, + "name": "3.0 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262521, + "fields": { + "id_car_serie": 50538, + "name": "3.0 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262522, + "fields": { + "id_car_serie": 15645, + "name": "3.6 AT 4WD (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262523, + "fields": { + "id_car_serie": 15645, + "name": "5.4 AT 4WD (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262524, + "fields": { + "id_car_serie": 15645, + "name": "5.4 AT 4WD (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262525, + "fields": { + "id_car_serie": 15645, + "name": "5.4 AT 4WD (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262526, + "fields": { + "id_car_serie": 15645, + "name": "6.3 AT 4WD (444 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262527, + "fields": { + "id_car_serie": 6933, + "name": "4.0 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262528, + "fields": { + "id_car_serie": 6933, + "name": "4.7 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262529, + "fields": { + "id_car_serie": 6933, + "name": "5.5 AT 4WD (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262530, + "fields": { + "id_car_serie": 6933, + "name": "5.5 AT 4WD (382 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262531, + "fields": { + "id_car_serie": 45006, + "name": "5.5 AT 4WD (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262532, + "fields": { + "id_car_serie": 6934, + "name": "2.0 AMT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262533, + "fields": { + "id_car_serie": 6934, + "name": "2.1 AMT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262534, + "fields": { + "id_car_serie": 6934, + "name": "2.1 AMT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262535, + "fields": { + "id_car_serie": 6934, + "name": "2.1 AMT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262536, + "fields": { + "id_car_serie": 45218, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262537, + "fields": { + "id_car_serie": 45218, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262538, + "fields": { + "id_car_serie": 45218, + "name": "3.0 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262539, + "fields": { + "id_car_serie": 45218, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262540, + "fields": { + "id_car_serie": 45218, + "name": "4.7 AT 4WD (456 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262541, + "fields": { + "id_car_serie": 3714, + "name": "2.0 AT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262542, + "fields": { + "id_car_serie": 3714, + "name": "3.5 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262543, + "fields": { + "id_car_serie": 3714, + "name": "3.5 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262544, + "fields": { + "id_car_serie": 3714, + "name": "3.5 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262545, + "fields": { + "id_car_serie": 3714, + "name": "2.1 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262546, + "fields": { + "id_car_serie": 3714, + "name": "2.1 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262547, + "fields": { + "id_car_serie": 3714, + "name": "3.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262548, + "fields": { + "id_car_serie": 6935, + "name": "2.1 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262549, + "fields": { + "id_car_serie": 6935, + "name": "3.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262550, + "fields": { + "id_car_serie": 6935, + "name": "2.1 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262551, + "fields": { + "id_car_serie": 6935, + "name": "2.1 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262552, + "fields": { + "id_car_serie": 6935, + "name": "2.1 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262553, + "fields": { + "id_car_serie": 6935, + "name": "2.1 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262554, + "fields": { + "id_car_serie": 6935, + "name": "2.1 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262555, + "fields": { + "id_car_serie": 6935, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262556, + "fields": { + "id_car_serie": 6935, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262557, + "fields": { + "id_car_serie": 3715, + "name": "2.1 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262558, + "fields": { + "id_car_serie": 3715, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262559, + "fields": { + "id_car_serie": 3715, + "name": "3.0 AT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262560, + "fields": { + "id_car_serie": 3715, + "name": "3.0 AT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262561, + "fields": { + "id_car_serie": 3715, + "name": "3.0 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262562, + "fields": { + "id_car_serie": 3715, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262563, + "fields": { + "id_car_serie": 3715, + "name": "3.0 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262564, + "fields": { + "id_car_serie": 3715, + "name": "3.5 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262565, + "fields": { + "id_car_serie": 3715, + "name": "4.7 AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262566, + "fields": { + "id_car_serie": 3715, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262567, + "fields": { + "id_car_serie": 3715, + "name": "3.5 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262568, + "fields": { + "id_car_serie": 15036, + "name": "3.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262569, + "fields": { + "id_car_serie": 15036, + "name": "3.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262570, + "fields": { + "id_car_serie": 15036, + "name": "3.0 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262571, + "fields": { + "id_car_serie": 15036, + "name": "3.0 AT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262572, + "fields": { + "id_car_serie": 15036, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262573, + "fields": { + "id_car_serie": 15036, + "name": "4.0 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262574, + "fields": { + "id_car_serie": 15036, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262575, + "fields": { + "id_car_serie": 15036, + "name": "5.5 AT 4WD (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262576, + "fields": { + "id_car_serie": 6936, + "name": "3.0 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262577, + "fields": { + "id_car_serie": 6936, + "name": "4.0 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262578, + "fields": { + "id_car_serie": 6936, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262579, + "fields": { + "id_car_serie": 6936, + "name": "5.0 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262580, + "fields": { + "id_car_serie": 6936, + "name": "5.5 AT 4WD (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262581, + "fields": { + "id_car_serie": 15037, + "name": "2.7 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262582, + "fields": { + "id_car_serie": 15037, + "name": "2.7 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262583, + "fields": { + "id_car_serie": 15037, + "name": "4.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262584, + "fields": { + "id_car_serie": 15037, + "name": "3.2 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262585, + "fields": { + "id_car_serie": 15037, + "name": "3.7 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262586, + "fields": { + "id_car_serie": 15037, + "name": "5.0 AT 4WD (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262587, + "fields": { + "id_car_serie": 6937, + "name": "2.3 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262588, + "fields": { + "id_car_serie": 6937, + "name": "3.2 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262589, + "fields": { + "id_car_serie": 6937, + "name": "4.3 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262590, + "fields": { + "id_car_serie": 15038, + "name": "3.0 AT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262591, + "fields": { + "id_car_serie": 15038, + "name": "3.0 AT 4WD (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262592, + "fields": { + "id_car_serie": 15038, + "name": "3.0 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262593, + "fields": { + "id_car_serie": 15038, + "name": "3.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262594, + "fields": { + "id_car_serie": 15038, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262595, + "fields": { + "id_car_serie": 15038, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262596, + "fields": { + "id_car_serie": 15038, + "name": "5.0 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262597, + "fields": { + "id_car_serie": 15038, + "name": "5.5 AT 4WD (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262598, + "fields": { + "id_car_serie": 8829, + "name": "3.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262599, + "fields": { + "id_car_serie": 46898, + "name": "3.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262600, + "fields": { + "id_car_serie": 46898, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262601, + "fields": { + "id_car_serie": 46898, + "name": "5.0 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262602, + "fields": { + "id_car_serie": 66855, + "name": "2.9 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262603, + "fields": { + "id_car_serie": 66855, + "name": "2.9 AT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262604, + "fields": { + "id_car_serie": 66855, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262605, + "fields": { + "id_car_serie": 66855, + "name": "3.0 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262606, + "fields": { + "id_car_serie": 66855, + "name": "4.0 AT 4WD (489 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262607, + "fields": { + "id_car_serie": 66855, + "name": "3.0 AT 4WD (489 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262608, + "fields": { + "id_car_serie": 8833, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262609, + "fields": { + "id_car_serie": 8833, + "name": "3.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262610, + "fields": { + "id_car_serie": 8833, + "name": "4.7 AT 4WD (455 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262611, + "fields": { + "id_car_serie": 3717, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262612, + "fields": { + "id_car_serie": 3717, + "name": "4.7 AT 4WD (455 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262613, + "fields": { + "id_car_serie": 3718, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262614, + "fields": { + "id_car_serie": 3718, + "name": "3.0 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262615, + "fields": { + "id_car_serie": 3718, + "name": "4.7 AT 4WD (455 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262616, + "fields": { + "id_car_serie": 8840, + "name": "3.5 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262617, + "fields": { + "id_car_serie": 8840, + "name": "4.7 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262618, + "fields": { + "id_car_serie": 8840, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262619, + "fields": { + "id_car_serie": 8840, + "name": "4.7 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262620, + "fields": { + "id_car_serie": 8840, + "name": "5.5 AT 4WD (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262621, + "fields": { + "id_car_serie": 8840, + "name": "3.0 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262622, + "fields": { + "id_car_serie": 8840, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262623, + "fields": { + "id_car_serie": 8840, + "name": "3.5 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262624, + "fields": { + "id_car_serie": 8830, + "name": "5.5 AT 4WD (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262625, + "fields": { + "id_car_serie": 46899, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262626, + "fields": { + "id_car_serie": 46899, + "name": "4.7 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262627, + "fields": { + "id_car_serie": 46899, + "name": "5.5 AT 4WD (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262628, + "fields": { + "id_car_serie": 46899, + "name": "3.0 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262629, + "fields": { + "id_car_serie": 8834, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262630, + "fields": { + "id_car_serie": 8834, + "name": "4.7 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262631, + "fields": { + "id_car_serie": 8834, + "name": "5.5 AT 4WD (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262632, + "fields": { + "id_car_serie": 8834, + "name": "3.0 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262633, + "fields": { + "id_car_serie": 8838, + "name": "3.7 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262634, + "fields": { + "id_car_serie": 8838, + "name": "4.3 AT 4WD (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262635, + "fields": { + "id_car_serie": 8838, + "name": "5.0 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262636, + "fields": { + "id_car_serie": 46902, + "name": "5.5 AT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262637, + "fields": { + "id_car_serie": 46904, + "name": "3.2 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262638, + "fields": { + "id_car_serie": 46904, + "name": "3.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262639, + "fields": { + "id_car_serie": 46906, + "name": "3.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262640, + "fields": { + "id_car_serie": 8841, + "name": "2.8 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262641, + "fields": { + "id_car_serie": 8841, + "name": "2.8 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262642, + "fields": { + "id_car_serie": 8841, + "name": "2.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262643, + "fields": { + "id_car_serie": 8841, + "name": "2.8 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262644, + "fields": { + "id_car_serie": 8841, + "name": "2.8 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262645, + "fields": { + "id_car_serie": 8841, + "name": "2.8 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262646, + "fields": { + "id_car_serie": 8841, + "name": "2.8 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262647, + "fields": { + "id_car_serie": 8841, + "name": "2.8 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262648, + "fields": { + "id_car_serie": 8841, + "name": "3.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262649, + "fields": { + "id_car_serie": 8841, + "name": "3.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262650, + "fields": { + "id_car_serie": 8841, + "name": "3.0 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262651, + "fields": { + "id_car_serie": 46985, + "name": "5.5 AT 4WD (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262652, + "fields": { + "id_car_serie": 15660, + "name": "5.5 AT 4WD (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262653, + "fields": { + "id_car_serie": 6941, + "name": "5.4 AT (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262654, + "fields": { + "id_car_serie": 6943, + "name": "2.8 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262655, + "fields": { + "id_car_serie": 6943, + "name": "2.8 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262656, + "fields": { + "id_car_serie": 6943, + "name": "2.8 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262657, + "fields": { + "id_car_serie": 6943, + "name": "2.8 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262658, + "fields": { + "id_car_serie": 6944, + "name": "2.8 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262659, + "fields": { + "id_car_serie": 6944, + "name": "2.8 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262660, + "fields": { + "id_car_serie": 6944, + "name": "2.8 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262661, + "fields": { + "id_car_serie": 6944, + "name": "2.8 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262662, + "fields": { + "id_car_serie": 44996, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262663, + "fields": { + "id_car_serie": 44996, + "name": "2.2 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262664, + "fields": { + "id_car_serie": 44996, + "name": "2.2 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262665, + "fields": { + "id_car_serie": 44996, + "name": "2.2 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262666, + "fields": { + "id_car_serie": 44996, + "name": "2.2 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262667, + "fields": { + "id_car_serie": 47282, + "name": "2.1 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262668, + "fields": { + "id_car_serie": 47282, + "name": "2.1 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262669, + "fields": { + "id_car_serie": 3730, + "name": "2.8 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262670, + "fields": { + "id_car_serie": 3731, + "name": "2.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262671, + "fields": { + "id_car_serie": 3731, + "name": "2.4 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262672, + "fields": { + "id_car_serie": 3731, + "name": "2.8 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262673, + "fields": { + "id_car_serie": 3731, + "name": "2.8 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262674, + "fields": { + "id_car_serie": 3731, + "name": "2.8 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262675, + "fields": { + "id_car_serie": 3731, + "name": "2.8 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262676, + "fields": { + "id_car_serie": 3731, + "name": "2.8 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262677, + "fields": { + "id_car_serie": 3734, + "name": "3.0 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262678, + "fields": { + "id_car_serie": 3734, + "name": "3.0 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262679, + "fields": { + "id_car_serie": 3734, + "name": "3.0 MT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262680, + "fields": { + "id_car_serie": 3734, + "name": "3.0 AT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262681, + "fields": { + "id_car_serie": 3734, + "name": "3.0 AT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262682, + "fields": { + "id_car_serie": 3734, + "name": "3.0 MT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262683, + "fields": { + "id_car_serie": 3734, + "name": "3.0 AT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262684, + "fields": { + "id_car_serie": 3734, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262685, + "fields": { + "id_car_serie": 3734, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262686, + "fields": { + "id_car_serie": 3734, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262687, + "fields": { + "id_car_serie": 3734, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262688, + "fields": { + "id_car_serie": 3734, + "name": "2.6 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262689, + "fields": { + "id_car_serie": 3734, + "name": "2.6 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262690, + "fields": { + "id_car_serie": 3734, + "name": "2.6 MT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262691, + "fields": { + "id_car_serie": 3734, + "name": "2.6 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262692, + "fields": { + "id_car_serie": 3734, + "name": "3.0 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262693, + "fields": { + "id_car_serie": 3734, + "name": "3.0 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262694, + "fields": { + "id_car_serie": 3734, + "name": "3.0 AT 4WD (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262695, + "fields": { + "id_car_serie": 3734, + "name": "3.0 MT 4WD (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262696, + "fields": { + "id_car_serie": 3734, + "name": "3.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262697, + "fields": { + "id_car_serie": 3734, + "name": "3.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262698, + "fields": { + "id_car_serie": 3734, + "name": "3.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262699, + "fields": { + "id_car_serie": 3734, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262700, + "fields": { + "id_car_serie": 3734, + "name": "3.2 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262701, + "fields": { + "id_car_serie": 3734, + "name": "3.2 MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262702, + "fields": { + "id_car_serie": 3734, + "name": "4.2 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262703, + "fields": { + "id_car_serie": 3734, + "name": "4.2 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262704, + "fields": { + "id_car_serie": 3735, + "name": "2.6 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262705, + "fields": { + "id_car_serie": 3735, + "name": "2.6 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262706, + "fields": { + "id_car_serie": 3735, + "name": "2.6 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262707, + "fields": { + "id_car_serie": 3735, + "name": "2.6 MT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262708, + "fields": { + "id_car_serie": 3735, + "name": "3.0 AT 4WD (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262709, + "fields": { + "id_car_serie": 3735, + "name": "3.0 MT 4WD (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262710, + "fields": { + "id_car_serie": 3735, + "name": "3.0 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262711, + "fields": { + "id_car_serie": 3735, + "name": "3.0 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262712, + "fields": { + "id_car_serie": 3735, + "name": "3.2 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262713, + "fields": { + "id_car_serie": 3735, + "name": "3.2 MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262714, + "fields": { + "id_car_serie": 3735, + "name": "3.0 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262715, + "fields": { + "id_car_serie": 3735, + "name": "3.0 AT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262716, + "fields": { + "id_car_serie": 3735, + "name": "3.0 MT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262717, + "fields": { + "id_car_serie": 3735, + "name": "3.0 AT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262718, + "fields": { + "id_car_serie": 1583, + "name": "2.0 AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262719, + "fields": { + "id_car_serie": 15019, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262720, + "fields": { + "id_car_serie": 66856, + "name": "2.0 AMT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262721, + "fields": { + "id_car_serie": 66856, + "name": "2.0 AMT 4WD (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262722, + "fields": { + "id_car_serie": 66856, + "name": "2.0 AMT 4WD (387 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262723, + "fields": { + "id_car_serie": 66857, + "name": "2.0 AMT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262724, + "fields": { + "id_car_serie": 3772, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262725, + "fields": { + "id_car_serie": 3772, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262726, + "fields": { + "id_car_serie": 8866, + "name": "2.4 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262727, + "fields": { + "id_car_serie": 8866, + "name": "2.4 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262728, + "fields": { + "id_car_serie": 8866, + "name": "3.8 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262729, + "fields": { + "id_car_serie": 8866, + "name": "3.8 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262730, + "fields": { + "id_car_serie": 45434, + "name": "2.4 MT 4WD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262731, + "fields": { + "id_car_serie": 45434, + "name": "2.4 AT 4WD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262732, + "fields": { + "id_car_serie": 45434, + "name": "2.4 AT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262733, + "fields": { + "id_car_serie": 45432, + "name": "2.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262734, + "fields": { + "id_car_serie": 45432, + "name": "2.5 MT 4WD (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262735, + "fields": { + "id_car_serie": 15053, + "name": "1.5 CVT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262736, + "fields": { + "id_car_serie": 15053, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262737, + "fields": { + "id_car_serie": 15053, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262738, + "fields": { + "id_car_serie": 15053, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262739, + "fields": { + "id_car_serie": 15053, + "name": "2.4 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262740, + "fields": { + "id_car_serie": 15054, + "name": "1.8 CVT 4WD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262741, + "fields": { + "id_car_serie": 1739, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262742, + "fields": { + "id_car_serie": 1739, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262743, + "fields": { + "id_car_serie": 1739, + "name": "1.5 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262744, + "fields": { + "id_car_serie": 1739, + "name": "1.8 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262745, + "fields": { + "id_car_serie": 1739, + "name": "1.8 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262746, + "fields": { + "id_car_serie": 1739, + "name": "1.8 MT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262747, + "fields": { + "id_car_serie": 1739, + "name": "1.8 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262748, + "fields": { + "id_car_serie": 1739, + "name": "2.0 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262749, + "fields": { + "id_car_serie": 1739, + "name": "2.0 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262750, + "fields": { + "id_car_serie": 7075, + "name": "1.6 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262751, + "fields": { + "id_car_serie": 7073, + "name": "2.0 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262752, + "fields": { + "id_car_serie": 7076, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262753, + "fields": { + "id_car_serie": 7076, + "name": "1.3 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262754, + "fields": { + "id_car_serie": 7076, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262755, + "fields": { + "id_car_serie": 7076, + "name": "1.3 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262756, + "fields": { + "id_car_serie": 7076, + "name": "1.5 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262757, + "fields": { + "id_car_serie": 7076, + "name": "1.5 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262758, + "fields": { + "id_car_serie": 7076, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262759, + "fields": { + "id_car_serie": 7076, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262760, + "fields": { + "id_car_serie": 7076, + "name": "1.5 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262761, + "fields": { + "id_car_serie": 7076, + "name": "1.5 AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262762, + "fields": { + "id_car_serie": 7076, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262763, + "fields": { + "id_car_serie": 7076, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262764, + "fields": { + "id_car_serie": 7076, + "name": "1.6 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262765, + "fields": { + "id_car_serie": 7076, + "name": "1.6 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262766, + "fields": { + "id_car_serie": 7076, + "name": "1.6 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262767, + "fields": { + "id_car_serie": 7076, + "name": "1.8 MT 4WD (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262768, + "fields": { + "id_car_serie": 7076, + "name": "1.8 AT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262769, + "fields": { + "id_car_serie": 15303, + "name": "3.0 AT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262770, + "fields": { + "id_car_serie": 15303, + "name": "3.0 MT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262771, + "fields": { + "id_car_serie": 15303, + "name": "3.0 AT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262772, + "fields": { + "id_car_serie": 15303, + "name": "3.5 AT 4WD (189 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262773, + "fields": { + "id_car_serie": 15303, + "name": "3.5 MT 4WD (189 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262774, + "fields": { + "id_car_serie": 15303, + "name": "3.8 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262775, + "fields": { + "id_car_serie": 15303, + "name": "2.5 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262776, + "fields": { + "id_car_serie": 15303, + "name": "2.5 AT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262777, + "fields": { + "id_car_serie": 15303, + "name": "2.5 MT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262778, + "fields": { + "id_car_serie": 15303, + "name": "3.2 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262779, + "fields": { + "id_car_serie": 15303, + "name": "3.2 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262780, + "fields": { + "id_car_serie": 15303, + "name": "3.2 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262781, + "fields": { + "id_car_serie": 15303, + "name": "3.2 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262782, + "fields": { + "id_car_serie": 7090, + "name": "2.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262783, + "fields": { + "id_car_serie": 7090, + "name": "2.6 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262784, + "fields": { + "id_car_serie": 3799, + "name": "1.8 CVT 4WD (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262785, + "fields": { + "id_car_serie": 7031, + "name": "0.7 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262786, + "fields": { + "id_car_serie": 7031, + "name": "0.7 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262787, + "fields": { + "id_car_serie": 45437, + "name": "3.0 MT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262788, + "fields": { + "id_car_serie": 45437, + "name": "3.0 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262789, + "fields": { + "id_car_serie": 45172, + "name": "2.5 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262790, + "fields": { + "id_car_serie": 45172, + "name": "3.5 CVT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262791, + "fields": { + "id_car_serie": 45172, + "name": "3.5 CVT 4WD (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262792, + "fields": { + "id_car_serie": 45172, + "name": "3.5 CVT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262793, + "fields": { + "id_car_serie": 45172, + "name": "2.5 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262794, + "fields": { + "id_car_serie": 3851, + "name": "2.5 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262795, + "fields": { + "id_car_serie": 3851, + "name": "3.5 CVT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262796, + "fields": { + "id_car_serie": 46021, + "name": "2.3 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262797, + "fields": { + "id_car_serie": 46022, + "name": "2.3 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262798, + "fields": { + "id_car_serie": 46022, + "name": "2.3 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262799, + "fields": { + "id_car_serie": 46022, + "name": "2.3 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262800, + "fields": { + "id_car_serie": 46022, + "name": "2.5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262801, + "fields": { + "id_car_serie": 46022, + "name": "2.5 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262802, + "fields": { + "id_car_serie": 46022, + "name": "2.5 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262803, + "fields": { + "id_car_serie": 46022, + "name": "2.5 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262804, + "fields": { + "id_car_serie": 46022, + "name": "2.5 MT (168 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262805, + "fields": { + "id_car_serie": 46022, + "name": "2.5 AT (168 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262806, + "fields": { + "id_car_serie": 46022, + "name": "2.5 MT 4WD (168 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262807, + "fields": { + "id_car_serie": 46022, + "name": "2.5 AT 4WD (168 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262808, + "fields": { + "id_car_serie": 3853, + "name": "4.0 MT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262809, + "fields": { + "id_car_serie": 3853, + "name": "4.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262810, + "fields": { + "id_car_serie": 3853, + "name": "2.5 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262811, + "fields": { + "id_car_serie": 3853, + "name": "2.5 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262812, + "fields": { + "id_car_serie": 3853, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262813, + "fields": { + "id_car_serie": 3854, + "name": "2.5 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262814, + "fields": { + "id_car_serie": 3854, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262815, + "fields": { + "id_car_serie": 3854, + "name": "2.5 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262816, + "fields": { + "id_car_serie": 3854, + "name": "4.0 MT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262817, + "fields": { + "id_car_serie": 3854, + "name": "4.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262818, + "fields": { + "id_car_serie": 7235, + "name": "2.5 AT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262819, + "fields": { + "id_car_serie": 7235, + "name": "2.5 MT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262820, + "fields": { + "id_car_serie": 7235, + "name": "4.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262821, + "fields": { + "id_car_serie": 7235, + "name": "4.0 MT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262822, + "fields": { + "id_car_serie": 7237, + "name": "2.4 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262823, + "fields": { + "id_car_serie": 7237, + "name": "2.4 MT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262824, + "fields": { + "id_car_serie": 7237, + "name": "3.3 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262825, + "fields": { + "id_car_serie": 7237, + "name": "3.3 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262826, + "fields": { + "id_car_serie": 7237, + "name": "2.5 MT 4WD (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262827, + "fields": { + "id_car_serie": 7237, + "name": "2.5 MT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262828, + "fields": { + "id_car_serie": 7237, + "name": "2.5 MT 4WD (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262829, + "fields": { + "id_car_serie": 7237, + "name": "3.0 MT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262830, + "fields": { + "id_car_serie": 7236, + "name": "3.3 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262831, + "fields": { + "id_car_serie": 7236, + "name": "3.3 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262832, + "fields": { + "id_car_serie": 7236, + "name": "2.5 MT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262833, + "fields": { + "id_car_serie": 7238, + "name": "2.4 MT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262834, + "fields": { + "id_car_serie": 7238, + "name": "2.4 AT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262835, + "fields": { + "id_car_serie": 7238, + "name": "2.4 MT 4WD (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262836, + "fields": { + "id_car_serie": 7238, + "name": "2.4 AT 4WD (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262837, + "fields": { + "id_car_serie": 7238, + "name": "3.0 MT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262838, + "fields": { + "id_car_serie": 7238, + "name": "3.0 AT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262839, + "fields": { + "id_car_serie": 7238, + "name": "2.5 MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262840, + "fields": { + "id_car_serie": 7238, + "name": "2.5 AT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262841, + "fields": { + "id_car_serie": 7238, + "name": "2.5 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262842, + "fields": { + "id_car_serie": 7238, + "name": "2.5 AT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262843, + "fields": { + "id_car_serie": 7238, + "name": "2.7 MT 4WD (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262844, + "fields": { + "id_car_serie": 7238, + "name": "2.7 AT 4WD (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262845, + "fields": { + "id_car_serie": 9474, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262846, + "fields": { + "id_car_serie": 9474, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262847, + "fields": { + "id_car_serie": 9474, + "name": "2.0 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262848, + "fields": { + "id_car_serie": 9474, + "name": "2.0 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262849, + "fields": { + "id_car_serie": 9474, + "name": "2.0 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262850, + "fields": { + "id_car_serie": 9474, + "name": "2.0 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262851, + "fields": { + "id_car_serie": 9474, + "name": "2.3 MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262852, + "fields": { + "id_car_serie": 45189, + "name": "2.5 CVT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262853, + "fields": { + "id_car_serie": 45189, + "name": "2.5 CVT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262854, + "fields": { + "id_car_serie": 45190, + "name": "2.4 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262855, + "fields": { + "id_car_serie": 45190, + "name": "3.5 CVT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262856, + "fields": { + "id_car_serie": 9511, + "name": "1.5 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262857, + "fields": { + "id_car_serie": 3858, + "name": "2.5 MT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262858, + "fields": { + "id_car_serie": 3857, + "name": "2.5 MT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262859, + "fields": { + "id_car_serie": 8940, + "name": "1.5 AT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262860, + "fields": { + "id_car_serie": 8940, + "name": "1.5 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262861, + "fields": { + "id_car_serie": 8940, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262862, + "fields": { + "id_car_serie": 8940, + "name": "1.8 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262863, + "fields": { + "id_car_serie": 8940, + "name": "1.8 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262864, + "fields": { + "id_car_serie": 66858, + "name": "2.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262865, + "fields": { + "id_car_serie": 66858, + "name": "2.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262866, + "fields": { + "id_car_serie": 66858, + "name": "2.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262867, + "fields": { + "id_car_serie": 66858, + "name": "2.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262868, + "fields": { + "id_car_serie": 66858, + "name": "2.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262869, + "fields": { + "id_car_serie": 66858, + "name": "2.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262870, + "fields": { + "id_car_serie": 66858, + "name": "2.8 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262871, + "fields": { + "id_car_serie": 66858, + "name": "2.8 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262872, + "fields": { + "id_car_serie": 66858, + "name": "2.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262873, + "fields": { + "id_car_serie": 66858, + "name": "2.8 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262874, + "fields": { + "id_car_serie": 3897, + "name": "5.4 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262875, + "fields": { + "id_car_serie": 15060, + "name": "2.2 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262876, + "fields": { + "id_car_serie": 15060, + "name": "2.2 AT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262877, + "fields": { + "id_car_serie": 15060, + "name": "2.2 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262878, + "fields": { + "id_car_serie": 15060, + "name": "2.2 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262879, + "fields": { + "id_car_serie": 15060, + "name": "3.2 MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262880, + "fields": { + "id_car_serie": 15060, + "name": "3.2 AT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262881, + "fields": { + "id_car_serie": 15061, + "name": "2.2 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262882, + "fields": { + "id_car_serie": 15061, + "name": "2.2 AT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262883, + "fields": { + "id_car_serie": 15061, + "name": "2.2 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262884, + "fields": { + "id_car_serie": 15061, + "name": "2.2 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262885, + "fields": { + "id_car_serie": 15061, + "name": "2.2 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262886, + "fields": { + "id_car_serie": 15061, + "name": "3.2 MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262887, + "fields": { + "id_car_serie": 15061, + "name": "3.2 AT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262888, + "fields": { + "id_car_serie": 66859, + "name": "1.5 MT (37 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262889, + "fields": { + "id_car_serie": 7358, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262890, + "fields": { + "id_car_serie": 7358, + "name": "1.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262891, + "fields": { + "id_car_serie": 7358, + "name": "1.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262892, + "fields": { + "id_car_serie": 7358, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262893, + "fields": { + "id_car_serie": 7358, + "name": "1.6 AMT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262894, + "fields": { + "id_car_serie": 14690, + "name": "2.0 AMT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262895, + "fields": { + "id_car_serie": 66860, + "name": "1.4 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262896, + "fields": { + "id_car_serie": 66860, + "name": "1.4 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262897, + "fields": { + "id_car_serie": 66860, + "name": "1.7 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262898, + "fields": { + "id_car_serie": 66860, + "name": "1.7 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262899, + "fields": { + "id_car_serie": 66860, + "name": "1.7 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262900, + "fields": { + "id_car_serie": 66860, + "name": "1.7 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262901, + "fields": { + "id_car_serie": 66860, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262902, + "fields": { + "id_car_serie": 66860, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262903, + "fields": { + "id_car_serie": 66860, + "name": "2.1 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262904, + "fields": { + "id_car_serie": 66860, + "name": "2.1 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262905, + "fields": { + "id_car_serie": 7486, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262906, + "fields": { + "id_car_serie": 7486, + "name": "1.6 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262907, + "fields": { + "id_car_serie": 7486, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262908, + "fields": { + "id_car_serie": 15084, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262909, + "fields": { + "id_car_serie": 15084, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262910, + "fields": { + "id_car_serie": 15084, + "name": "1.6 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262911, + "fields": { + "id_car_serie": 15084, + "name": "1.5 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262912, + "fields": { + "id_car_serie": 15084, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262913, + "fields": { + "id_car_serie": 15084, + "name": "1.9 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262914, + "fields": { + "id_car_serie": 15317, + "name": "1.2 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262915, + "fields": { + "id_car_serie": 15317, + "name": "1.2 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262916, + "fields": { + "id_car_serie": 4077, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262917, + "fields": { + "id_car_serie": 4077, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262918, + "fields": { + "id_car_serie": 4077, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262919, + "fields": { + "id_car_serie": 4077, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262920, + "fields": { + "id_car_serie": 4077, + "name": "1.8 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262921, + "fields": { + "id_car_serie": 4077, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262922, + "fields": { + "id_car_serie": 4077, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262923, + "fields": { + "id_car_serie": 4077, + "name": "1.9 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262924, + "fields": { + "id_car_serie": 4077, + "name": "1.9 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262925, + "fields": { + "id_car_serie": 4077, + "name": "1.9 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262926, + "fields": { + "id_car_serie": 4077, + "name": "1.9 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262927, + "fields": { + "id_car_serie": 4077, + "name": "1.9 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262928, + "fields": { + "id_car_serie": 49035, + "name": "0.8 MT (26 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262929, + "fields": { + "id_car_serie": 49035, + "name": "0.8 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262930, + "fields": { + "id_car_serie": 49035, + "name": "1.0 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262931, + "fields": { + "id_car_serie": 49035, + "name": "1.1 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262932, + "fields": { + "id_car_serie": 15677, + "name": "2.0 AMT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262933, + "fields": { + "id_car_serie": 15676, + "name": "2.0 AMT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262934, + "fields": { + "id_car_serie": 4176, + "name": "2.0 AT 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262935, + "fields": { + "id_car_serie": 4176, + "name": "2.0 MT 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262936, + "fields": { + "id_car_serie": 4176, + "name": "2.3 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262937, + "fields": { + "id_car_serie": 7631, + "name": "2.0 MT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262938, + "fields": { + "id_car_serie": 7631, + "name": "2.0 AT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262939, + "fields": { + "id_car_serie": 7631, + "name": "2.3 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262940, + "fields": { + "id_car_serie": 53967, + "name": "1.5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262941, + "fields": { + "id_car_serie": 53967, + "name": "1.5 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262942, + "fields": { + "id_car_serie": 53967, + "name": "1.5 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262943, + "fields": { + "id_car_serie": 53967, + "name": "1.5 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262944, + "fields": { + "id_car_serie": 53967, + "name": "2.0 AT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262945, + "fields": { + "id_car_serie": 53967, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262946, + "fields": { + "id_car_serie": 53967, + "name": "1.6 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262947, + "fields": { + "id_car_serie": 53967, + "name": "1.6 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262948, + "fields": { + "id_car_serie": 53967, + "name": "1.6 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262949, + "fields": { + "id_car_serie": 14743, + "name": "2.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262950, + "fields": { + "id_car_serie": 14743, + "name": "2.0 MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262951, + "fields": { + "id_car_serie": 66861, + "name": "0.7 MT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262952, + "fields": { + "id_car_serie": 66861, + "name": "0.7 MT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262953, + "fields": { + "id_car_serie": 66861, + "name": "0.7 AMT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262954, + "fields": { + "id_car_serie": 66861, + "name": "0.7 AMT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262955, + "fields": { + "id_car_serie": 66861, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262956, + "fields": { + "id_car_serie": 66861, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262957, + "fields": { + "id_car_serie": 66861, + "name": "0.7 AMT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262958, + "fields": { + "id_car_serie": 66861, + "name": "0.7 AMT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262959, + "fields": { + "id_car_serie": 66861, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262960, + "fields": { + "id_car_serie": 66861, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262961, + "fields": { + "id_car_serie": 66861, + "name": "0.7 AMT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262962, + "fields": { + "id_car_serie": 66861, + "name": "0.7 AMT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262963, + "fields": { + "id_car_serie": 66862, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262964, + "fields": { + "id_car_serie": 66862, + "name": "0.7 MT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262965, + "fields": { + "id_car_serie": 66862, + "name": "0.7 CVT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262966, + "fields": { + "id_car_serie": 66862, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262967, + "fields": { + "id_car_serie": 66862, + "name": "0.7 CVT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262968, + "fields": { + "id_car_serie": 66862, + "name": "1.0 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262969, + "fields": { + "id_car_serie": 66862, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262970, + "fields": { + "id_car_serie": 9142, + "name": "0.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262971, + "fields": { + "id_car_serie": 9142, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262972, + "fields": { + "id_car_serie": 9142, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262973, + "fields": { + "id_car_serie": 9142, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262974, + "fields": { + "id_car_serie": 9142, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262975, + "fields": { + "id_car_serie": 9142, + "name": "1.0 MT 4WD (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262976, + "fields": { + "id_car_serie": 9142, + "name": "1.0 AT 4WD (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262977, + "fields": { + "id_car_serie": 66863, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262978, + "fields": { + "id_car_serie": 66863, + "name": "0.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262979, + "fields": { + "id_car_serie": 66863, + "name": "0.7 MT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262980, + "fields": { + "id_car_serie": 66863, + "name": "1.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262981, + "fields": { + "id_car_serie": 66863, + "name": "1.0 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262982, + "fields": { + "id_car_serie": 9145, + "name": "0.7 MT 4WD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262983, + "fields": { + "id_car_serie": 9145, + "name": "0.7 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262984, + "fields": { + "id_car_serie": 9145, + "name": "0.7 AT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262985, + "fields": { + "id_car_serie": 9146, + "name": "0.6 AT (32 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262986, + "fields": { + "id_car_serie": 9146, + "name": "0.6 MT (32 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262987, + "fields": { + "id_car_serie": 9146, + "name": "0.6 AT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262988, + "fields": { + "id_car_serie": 9146, + "name": "0.6 AT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262989, + "fields": { + "id_car_serie": 9146, + "name": "0.6 AT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262990, + "fields": { + "id_car_serie": 9146, + "name": "0.6 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262991, + "fields": { + "id_car_serie": 9146, + "name": "0.6 AT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262992, + "fields": { + "id_car_serie": 9146, + "name": "0.6 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262993, + "fields": { + "id_car_serie": 9146, + "name": "0.6 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262994, + "fields": { + "id_car_serie": 9146, + "name": "0.7 MT 4WD (36 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262995, + "fields": { + "id_car_serie": 9146, + "name": "0.7 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262996, + "fields": { + "id_car_serie": 9146, + "name": "0.7 AT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262997, + "fields": { + "id_car_serie": 9146, + "name": "0.7 MT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262998, + "fields": { + "id_car_serie": 9146, + "name": "0.7 MT 4WD (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 262999, + "fields": { + "id_car_serie": 66864, + "name": "0.7 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263000, + "fields": { + "id_car_serie": 66864, + "name": "0.7 AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263001, + "fields": { + "id_car_serie": 66865, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263002, + "fields": { + "id_car_serie": 66865, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263003, + "fields": { + "id_car_serie": 66865, + "name": "0.7 AMT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263004, + "fields": { + "id_car_serie": 66865, + "name": "0.7 AMT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263005, + "fields": { + "id_car_serie": 66866, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263006, + "fields": { + "id_car_serie": 66866, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263007, + "fields": { + "id_car_serie": 66866, + "name": "0.7 CVT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263008, + "fields": { + "id_car_serie": 66866, + "name": "0.7 CVT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263009, + "fields": { + "id_car_serie": 66866, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263010, + "fields": { + "id_car_serie": 66866, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263011, + "fields": { + "id_car_serie": 66867, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263012, + "fields": { + "id_car_serie": 66867, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263013, + "fields": { + "id_car_serie": 66867, + "name": "0.7 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263014, + "fields": { + "id_car_serie": 66867, + "name": "0.7 AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263015, + "fields": { + "id_car_serie": 66867, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263016, + "fields": { + "id_car_serie": 66867, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263017, + "fields": { + "id_car_serie": 66867, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263018, + "fields": { + "id_car_serie": 66867, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263019, + "fields": { + "id_car_serie": 66868, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263020, + "fields": { + "id_car_serie": 66868, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263021, + "fields": { + "id_car_serie": 4204, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263022, + "fields": { + "id_car_serie": 4204, + "name": "0.7 AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263023, + "fields": { + "id_car_serie": 4204, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263024, + "fields": { + "id_car_serie": 7686, + "name": "0.6 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263025, + "fields": { + "id_car_serie": 66869, + "name": "2.5 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263026, + "fields": { + "id_car_serie": 66869, + "name": "2.5 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263027, + "fields": { + "id_car_serie": 66869, + "name": "4.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263028, + "fields": { + "id_car_serie": 66870, + "name": "2.5 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263029, + "fields": { + "id_car_serie": 66870, + "name": "2.5 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263030, + "fields": { + "id_car_serie": 66870, + "name": "4.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263031, + "fields": { + "id_car_serie": 66871, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263032, + "fields": { + "id_car_serie": 66871, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263033, + "fields": { + "id_car_serie": 66871, + "name": "1.8 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263034, + "fields": { + "id_car_serie": 66871, + "name": "1.8 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263035, + "fields": { + "id_car_serie": 66872, + "name": "0.5 MT (31 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263036, + "fields": { + "id_car_serie": 66872, + "name": "0.5 AT (31 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263037, + "fields": { + "id_car_serie": 66872, + "name": "0.5 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263038, + "fields": { + "id_car_serie": 66872, + "name": "0.8 MT (39 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263039, + "fields": { + "id_car_serie": 9162, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263040, + "fields": { + "id_car_serie": 9162, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263041, + "fields": { + "id_car_serie": 9162, + "name": "2.4 AT 4WD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263042, + "fields": { + "id_car_serie": 9162, + "name": "2.4 MT 4WD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263043, + "fields": { + "id_car_serie": 9162, + "name": "3.2 AT 4WD (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263044, + "fields": { + "id_car_serie": 9162, + "name": "1.9 MT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263045, + "fields": { + "id_car_serie": 9163, + "name": "1.6 MT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263046, + "fields": { + "id_car_serie": 9163, + "name": "2.4 AT 4WD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263047, + "fields": { + "id_car_serie": 9163, + "name": "2.4 MT 4WD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263048, + "fields": { + "id_car_serie": 9163, + "name": "1.9 MT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263049, + "fields": { + "id_car_serie": 46932, + "name": "1.9 MT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263050, + "fields": { + "id_car_serie": 46932, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263051, + "fields": { + "id_car_serie": 46932, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263052, + "fields": { + "id_car_serie": 46932, + "name": "2.4 AT 4WD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263053, + "fields": { + "id_car_serie": 46932, + "name": "2.4 MT 4WD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263054, + "fields": { + "id_car_serie": 46932, + "name": "2.7 AT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263055, + "fields": { + "id_car_serie": 46932, + "name": "2.7 MT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263056, + "fields": { + "id_car_serie": 46934, + "name": "1.6 MT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263057, + "fields": { + "id_car_serie": 46934, + "name": "2.4 AT 4WD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263058, + "fields": { + "id_car_serie": 46934, + "name": "2.4 MT 4WD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263059, + "fields": { + "id_car_serie": 46934, + "name": "1.9 MT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263060, + "fields": { + "id_car_serie": 4209, + "name": "2.0 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263061, + "fields": { + "id_car_serie": 4209, + "name": "2.0 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263062, + "fields": { + "id_car_serie": 4209, + "name": "2.7 AT 4WD (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263063, + "fields": { + "id_car_serie": 4209, + "name": "2.7 MT 4WD (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263064, + "fields": { + "id_car_serie": 4209, + "name": "2.7 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263065, + "fields": { + "id_car_serie": 4209, + "name": "2.7 MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263066, + "fields": { + "id_car_serie": 4209, + "name": "2.7 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263067, + "fields": { + "id_car_serie": 4209, + "name": "2.7 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263068, + "fields": { + "id_car_serie": 4209, + "name": "2.7 MT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263069, + "fields": { + "id_car_serie": 4209, + "name": "2.7 AT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263070, + "fields": { + "id_car_serie": 4208, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263071, + "fields": { + "id_car_serie": 4208, + "name": "1.6 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263072, + "fields": { + "id_car_serie": 4208, + "name": "2.0 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263073, + "fields": { + "id_car_serie": 4208, + "name": "2.0 AT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263074, + "fields": { + "id_car_serie": 15128, + "name": "1.6 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263075, + "fields": { + "id_car_serie": 15128, + "name": "1.6 AT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263076, + "fields": { + "id_car_serie": 15128, + "name": "1.6 MT 4WD (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263077, + "fields": { + "id_car_serie": 15128, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263078, + "fields": { + "id_car_serie": 15128, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263079, + "fields": { + "id_car_serie": 15128, + "name": "2.0 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263080, + "fields": { + "id_car_serie": 15128, + "name": "2.0 MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263081, + "fields": { + "id_car_serie": 9161, + "name": "1.6 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263082, + "fields": { + "id_car_serie": 9161, + "name": "2.0 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263083, + "fields": { + "id_car_serie": 9161, + "name": "2.0 AT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263084, + "fields": { + "id_car_serie": 4210, + "name": "1.2 CVT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263085, + "fields": { + "id_car_serie": 9158, + "name": "1.5 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263086, + "fields": { + "id_car_serie": 9158, + "name": "1.5 AT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263087, + "fields": { + "id_car_serie": 4217, + "name": "1.2 CVT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263088, + "fields": { + "id_car_serie": 9170, + "name": "1.3 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263089, + "fields": { + "id_car_serie": 45199, + "name": "1.4 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263090, + "fields": { + "id_car_serie": 45199, + "name": "1.6 AT 4WD (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263091, + "fields": { + "id_car_serie": 45199, + "name": "1.6 MT 4WD (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263092, + "fields": { + "id_car_serie": 45199, + "name": "1.4 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263093, + "fields": { + "id_car_serie": 14833, + "name": "4.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263094, + "fields": { + "id_car_serie": 14833, + "name": "4.7 (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263095, + "fields": { + "id_car_serie": 45879, + "name": "1.2 (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263096, + "fields": { + "id_car_serie": 45879, + "name": "1.3 (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263097, + "fields": { + "id_car_serie": 45879, + "name": "1.6 (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263098, + "fields": { + "id_car_serie": 45879, + "name": "1.4 (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263099, + "fields": { + "id_car_serie": 45879, + "name": "1.6 (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263100, + "fields": { + "id_car_serie": 45879, + "name": "1.8 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263101, + "fields": { + "id_car_serie": 45878, + "name": "1.2 (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263102, + "fields": { + "id_car_serie": 45878, + "name": "1.3 (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263103, + "fields": { + "id_car_serie": 45878, + "name": "1.6 (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263104, + "fields": { + "id_car_serie": 45878, + "name": "1.4 (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263105, + "fields": { + "id_car_serie": 45878, + "name": "1.6 (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263106, + "fields": { + "id_car_serie": 45878, + "name": "1.8 (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263107, + "fields": { + "id_car_serie": 15349, + "name": "1.5 (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263108, + "fields": { + "id_car_serie": 15349, + "name": "1.8 (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263109, + "fields": { + "id_car_serie": 15349, + "name": "2.0 (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263110, + "fields": { + "id_car_serie": 15349, + "name": "2.0 (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263111, + "fields": { + "id_car_serie": 15349, + "name": "2.0 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263112, + "fields": { + "id_car_serie": 15349, + "name": "2.0 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263113, + "fields": { + "id_car_serie": 15349, + "name": "2.0 (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263114, + "fields": { + "id_car_serie": 15349, + "name": "2.0 (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263115, + "fields": { + "id_car_serie": 15349, + "name": "2.0 (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263116, + "fields": { + "id_car_serie": 15349, + "name": "2.0 (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263117, + "fields": { + "id_car_serie": 15349, + "name": "2.2 (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263118, + "fields": { + "id_car_serie": 14701, + "name": "2.2 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263119, + "fields": { + "id_car_serie": 14701, + "name": "2.5 (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263120, + "fields": { + "id_car_serie": 4253, + "name": "1.8 (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263121, + "fields": { + "id_car_serie": 4253, + "name": "1.8 (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263122, + "fields": { + "id_car_serie": 4253, + "name": "2.0 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263123, + "fields": { + "id_car_serie": 4253, + "name": "2.0 (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263124, + "fields": { + "id_car_serie": 4253, + "name": "2.0 (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263125, + "fields": { + "id_car_serie": 4253, + "name": "2.0 (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263126, + "fields": { + "id_car_serie": 4253, + "name": "2.0 (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263127, + "fields": { + "id_car_serie": 9208, + "name": "1.8 (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263128, + "fields": { + "id_car_serie": 9208, + "name": "1.8 (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263129, + "fields": { + "id_car_serie": 9208, + "name": "2.0 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263130, + "fields": { + "id_car_serie": 9209, + "name": "1.8 (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263131, + "fields": { + "id_car_serie": 9209, + "name": "2.0 (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263132, + "fields": { + "id_car_serie": 9212, + "name": "2.0 (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263133, + "fields": { + "id_car_serie": 7818, + "name": "1.3 CVT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263134, + "fields": { + "id_car_serie": 7818, + "name": "1.5 CVT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263135, + "fields": { + "id_car_serie": 7818, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263136, + "fields": { + "id_car_serie": 7818, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263137, + "fields": { + "id_car_serie": 7818, + "name": "1.8 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263138, + "fields": { + "id_car_serie": 7818, + "name": "1.5 CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263139, + "fields": { + "id_car_serie": 15360, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263140, + "fields": { + "id_car_serie": 15360, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263141, + "fields": { + "id_car_serie": 15360, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263142, + "fields": { + "id_car_serie": 15360, + "name": "1.4 AMT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263143, + "fields": { + "id_car_serie": 15360, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263144, + "fields": { + "id_car_serie": 15360, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263145, + "fields": { + "id_car_serie": 15360, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263146, + "fields": { + "id_car_serie": 15360, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263147, + "fields": { + "id_car_serie": 15360, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263148, + "fields": { + "id_car_serie": 15360, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263149, + "fields": { + "id_car_serie": 15360, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263150, + "fields": { + "id_car_serie": 15360, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263151, + "fields": { + "id_car_serie": 15360, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263152, + "fields": { + "id_car_serie": 15360, + "name": "1.8 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263153, + "fields": { + "id_car_serie": 15360, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263154, + "fields": { + "id_car_serie": 15360, + "name": "2.2 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263155, + "fields": { + "id_car_serie": 15360, + "name": "2.2 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263156, + "fields": { + "id_car_serie": 49239, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263157, + "fields": { + "id_car_serie": 49239, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263158, + "fields": { + "id_car_serie": 49239, + "name": "1.3 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263159, + "fields": { + "id_car_serie": 49239, + "name": "1.3 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263160, + "fields": { + "id_car_serie": 49239, + "name": "1.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263161, + "fields": { + "id_car_serie": 49239, + "name": "1.3 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263162, + "fields": { + "id_car_serie": 49239, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263163, + "fields": { + "id_car_serie": 49239, + "name": "1.3 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263164, + "fields": { + "id_car_serie": 49239, + "name": "1.3 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263165, + "fields": { + "id_car_serie": 49239, + "name": "1.5 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263166, + "fields": { + "id_car_serie": 49239, + "name": "1.5 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263167, + "fields": { + "id_car_serie": 49239, + "name": "1.5 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263168, + "fields": { + "id_car_serie": 49239, + "name": "1.5 AT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263169, + "fields": { + "id_car_serie": 49239, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263170, + "fields": { + "id_car_serie": 49239, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263171, + "fields": { + "id_car_serie": 49239, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263172, + "fields": { + "id_car_serie": 49239, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263173, + "fields": { + "id_car_serie": 49239, + "name": "1.6 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263174, + "fields": { + "id_car_serie": 49239, + "name": "1.6 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263175, + "fields": { + "id_car_serie": 49239, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263176, + "fields": { + "id_car_serie": 49239, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263177, + "fields": { + "id_car_serie": 49239, + "name": "1.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263178, + "fields": { + "id_car_serie": 49239, + "name": "1.6 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263179, + "fields": { + "id_car_serie": 49239, + "name": "1.6 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263180, + "fields": { + "id_car_serie": 49239, + "name": "2.0 AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263181, + "fields": { + "id_car_serie": 49239, + "name": "2.0 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263182, + "fields": { + "id_car_serie": 49239, + "name": "2.0 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263183, + "fields": { + "id_car_serie": 49239, + "name": "2.0 MT 4WD (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263184, + "fields": { + "id_car_serie": 49239, + "name": "2.0 AT 4WD (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263185, + "fields": { + "id_car_serie": 49239, + "name": "2.2 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263186, + "fields": { + "id_car_serie": 49239, + "name": "2.2 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263187, + "fields": { + "id_car_serie": 7840, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263188, + "fields": { + "id_car_serie": 7840, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263189, + "fields": { + "id_car_serie": 7840, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263190, + "fields": { + "id_car_serie": 7842, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263191, + "fields": { + "id_car_serie": 7842, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263192, + "fields": { + "id_car_serie": 7842, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263193, + "fields": { + "id_car_serie": 7842, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263194, + "fields": { + "id_car_serie": 7842, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263195, + "fields": { + "id_car_serie": 7842, + "name": "1.8 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263196, + "fields": { + "id_car_serie": 7842, + "name": "1.8 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263197, + "fields": { + "id_car_serie": 66873, + "name": "1.8 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263198, + "fields": { + "id_car_serie": 66873, + "name": "1.8 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263199, + "fields": { + "id_car_serie": 66874, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263200, + "fields": { + "id_car_serie": 66874, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263201, + "fields": { + "id_car_serie": 66874, + "name": "1.5 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263202, + "fields": { + "id_car_serie": 66874, + "name": "1.5 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263203, + "fields": { + "id_car_serie": 66874, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263204, + "fields": { + "id_car_serie": 66874, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263205, + "fields": { + "id_car_serie": 66874, + "name": "1.5 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263206, + "fields": { + "id_car_serie": 66874, + "name": "1.5 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263207, + "fields": { + "id_car_serie": 66875, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263208, + "fields": { + "id_car_serie": 66875, + "name": "1.3 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263209, + "fields": { + "id_car_serie": 66875, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263210, + "fields": { + "id_car_serie": 66875, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263211, + "fields": { + "id_car_serie": 66875, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263212, + "fields": { + "id_car_serie": 66875, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263213, + "fields": { + "id_car_serie": 66875, + "name": "1.5 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263214, + "fields": { + "id_car_serie": 66875, + "name": "1.5 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263215, + "fields": { + "id_car_serie": 66876, + "name": "1.3 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263216, + "fields": { + "id_car_serie": 66876, + "name": "1.3 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263217, + "fields": { + "id_car_serie": 66876, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263218, + "fields": { + "id_car_serie": 66876, + "name": "1.3 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263219, + "fields": { + "id_car_serie": 66876, + "name": "1.5 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263220, + "fields": { + "id_car_serie": 66876, + "name": "1.5 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263221, + "fields": { + "id_car_serie": 66876, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263222, + "fields": { + "id_car_serie": 66876, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263223, + "fields": { + "id_car_serie": 66876, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263224, + "fields": { + "id_car_serie": 66876, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263225, + "fields": { + "id_car_serie": 66876, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263226, + "fields": { + "id_car_serie": 66876, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263227, + "fields": { + "id_car_serie": 66876, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263228, + "fields": { + "id_car_serie": 66876, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263229, + "fields": { + "id_car_serie": 66876, + "name": "1.5 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263230, + "fields": { + "id_car_serie": 66876, + "name": "1.5 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263231, + "fields": { + "id_car_serie": 66877, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263232, + "fields": { + "id_car_serie": 66877, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263233, + "fields": { + "id_car_serie": 66877, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263234, + "fields": { + "id_car_serie": 66877, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263235, + "fields": { + "id_car_serie": 66877, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263236, + "fields": { + "id_car_serie": 66877, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263237, + "fields": { + "id_car_serie": 66878, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263238, + "fields": { + "id_car_serie": 66878, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263239, + "fields": { + "id_car_serie": 66878, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263240, + "fields": { + "id_car_serie": 66878, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263241, + "fields": { + "id_car_serie": 66878, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263242, + "fields": { + "id_car_serie": 66878, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263243, + "fields": { + "id_car_serie": 66879, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263244, + "fields": { + "id_car_serie": 66879, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263245, + "fields": { + "id_car_serie": 66879, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263246, + "fields": { + "id_car_serie": 66879, + "name": "1.5 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263247, + "fields": { + "id_car_serie": 66880, + "name": "1.5 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263248, + "fields": { + "id_car_serie": 66880, + "name": "1.5 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263249, + "fields": { + "id_car_serie": 66881, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263250, + "fields": { + "id_car_serie": 66881, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263251, + "fields": { + "id_car_serie": 66881, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263252, + "fields": { + "id_car_serie": 66881, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263253, + "fields": { + "id_car_serie": 66882, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263254, + "fields": { + "id_car_serie": 66883, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263255, + "fields": { + "id_car_serie": 66883, + "name": "1.8 CVT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263256, + "fields": { + "id_car_serie": 66883, + "name": "1.8 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263257, + "fields": { + "id_car_serie": 66883, + "name": "1.8 CVT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263258, + "fields": { + "id_car_serie": 66883, + "name": "1.8 CVT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263259, + "fields": { + "id_car_serie": 15370, + "name": "1.5 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263260, + "fields": { + "id_car_serie": 15370, + "name": "1.5 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263261, + "fields": { + "id_car_serie": 15371, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263262, + "fields": { + "id_car_serie": 15371, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263263, + "fields": { + "id_car_serie": 15371, + "name": "1.5 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263264, + "fields": { + "id_car_serie": 15371, + "name": "1.5 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263265, + "fields": { + "id_car_serie": 15374, + "name": "2.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263266, + "fields": { + "id_car_serie": 15374, + "name": "2.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263267, + "fields": { + "id_car_serie": 15374, + "name": "2.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263268, + "fields": { + "id_car_serie": 7861, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263269, + "fields": { + "id_car_serie": 7861, + "name": "1.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263270, + "fields": { + "id_car_serie": 7861, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263271, + "fields": { + "id_car_serie": 7861, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263272, + "fields": { + "id_car_serie": 7861, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263273, + "fields": { + "id_car_serie": 7861, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263274, + "fields": { + "id_car_serie": 7861, + "name": "2.0 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263275, + "fields": { + "id_car_serie": 7861, + "name": "2.0 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263276, + "fields": { + "id_car_serie": 7861, + "name": "2.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263277, + "fields": { + "id_car_serie": 7861, + "name": "2.5 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263278, + "fields": { + "id_car_serie": 7861, + "name": "2.5 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263279, + "fields": { + "id_car_serie": 7862, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263280, + "fields": { + "id_car_serie": 7862, + "name": "1.8 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263281, + "fields": { + "id_car_serie": 7862, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263282, + "fields": { + "id_car_serie": 7862, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263283, + "fields": { + "id_car_serie": 66884, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263284, + "fields": { + "id_car_serie": 66884, + "name": "4.0 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263285, + "fields": { + "id_car_serie": 66884, + "name": "4.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263286, + "fields": { + "id_car_serie": 66884, + "name": "4.0 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263287, + "fields": { + "id_car_serie": 66885, + "name": "1.8 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263288, + "fields": { + "id_car_serie": 45610, + "name": "1.8 CVT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263289, + "fields": { + "id_car_serie": 66886, + "name": "2.0 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263290, + "fields": { + "id_car_serie": 66886, + "name": "3.6 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263291, + "fields": { + "id_car_serie": 45450, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263292, + "fields": { + "id_car_serie": 45450, + "name": "2.0 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263293, + "fields": { + "id_car_serie": 45450, + "name": "2.0 AMT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263294, + "fields": { + "id_car_serie": 66887, + "name": "1.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263295, + "fields": { + "id_car_serie": 66887, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263296, + "fields": { + "id_car_serie": 66887, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263297, + "fields": { + "id_car_serie": 66887, + "name": "1.5 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263298, + "fields": { + "id_car_serie": 66887, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263299, + "fields": { + "id_car_serie": 66887, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263300, + "fields": { + "id_car_serie": 66887, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263301, + "fields": { + "id_car_serie": 66887, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263302, + "fields": { + "id_car_serie": 66887, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263303, + "fields": { + "id_car_serie": 66887, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263304, + "fields": { + "id_car_serie": 66887, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263305, + "fields": { + "id_car_serie": 66888, + "name": "2.0 AMT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263306, + "fields": { + "id_car_serie": 4366, + "name": "2.4 MT 4WD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263307, + "fields": { + "id_car_serie": 4366, + "name": "2.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263308, + "fields": { + "id_car_serie": 4366, + "name": "2.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263309, + "fields": { + "id_car_serie": 4368, + "name": "2.4 MT 4WD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263310, + "fields": { + "id_car_serie": 4368, + "name": "2.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263311, + "fields": { + "id_car_serie": 4368, + "name": "2.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263312, + "fields": { + "id_car_serie": 4367, + "name": "2.4 MT 4WD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263313, + "fields": { + "id_car_serie": 4367, + "name": "2.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263314, + "fields": { + "id_car_serie": 4367, + "name": "2.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263315, + "fields": { + "id_car_serie": 2738, + "name": "2.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263316, + "fields": { + "id_car_serie": 2738, + "name": "2.5 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263317, + "fields": { + "id_car_serie": 9372, + "name": "2.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263318, + "fields": { + "id_car_serie": 9375, + "name": "5.9 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263319, + "fields": { + "id_car_serie": 9375, + "name": "5.9 MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263320, + "fields": { + "id_car_serie": 4571, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263321, + "fields": { + "id_car_serie": 4573, + "name": "2.4 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263322, + "fields": { + "id_car_serie": 4573, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263323, + "fields": { + "id_car_serie": 4573, + "name": "2.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263324, + "fields": { + "id_car_serie": 4573, + "name": "2.5 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263325, + "fields": { + "id_car_serie": 4573, + "name": "3.4 MT (179 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263326, + "fields": { + "id_car_serie": 4572, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263327, + "fields": { + "id_car_serie": 4575, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263328, + "fields": { + "id_car_serie": 4575, + "name": "2.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263329, + "fields": { + "id_car_serie": 4574, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263330, + "fields": { + "id_car_serie": 4574, + "name": "2.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263331, + "fields": { + "id_car_serie": 9377, + "name": "3.4 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263332, + "fields": { + "id_car_serie": 4577, + "name": "2.5 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263333, + "fields": { + "id_car_serie": 4577, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263334, + "fields": { + "id_car_serie": 4577, + "name": "2.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263335, + "fields": { + "id_car_serie": 4576, + "name": "2.4 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263336, + "fields": { + "id_car_serie": 47466, + "name": "2.1 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263337, + "fields": { + "id_car_serie": 47466, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263338, + "fields": { + "id_car_serie": 47466, + "name": "2.5 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263339, + "fields": { + "id_car_serie": 47466, + "name": "2.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263340, + "fields": { + "id_car_serie": 47466, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263341, + "fields": { + "id_car_serie": 46167, + "name": "3.3 MT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263342, + "fields": { + "id_car_serie": 45958, + "name": "2.1 MT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263343, + "fields": { + "id_car_serie": 4606, + "name": "2.2 MT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263344, + "fields": { + "id_car_serie": 4606, + "name": "2.5 MT 4WD (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263345, + "fields": { + "id_car_serie": 4606, + "name": "2.5 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263346, + "fields": { + "id_car_serie": 4606, + "name": "2.9 MT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263347, + "fields": { + "id_car_serie": 4606, + "name": "2.9 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263348, + "fields": { + "id_car_serie": 4606, + "name": "2.9 MT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263349, + "fields": { + "id_car_serie": 4606, + "name": "2.9 MT 4WD (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263350, + "fields": { + "id_car_serie": 9430, + "name": "2.7 MT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263351, + "fields": { + "id_car_serie": 9430, + "name": "2.9 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263352, + "fields": { + "id_car_serie": 4608, + "name": "2.7 MT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263353, + "fields": { + "id_car_serie": 2886, + "name": "4.7 MT (446 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263354, + "fields": { + "id_car_serie": 2886, + "name": "4.7 AMT (446 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263355, + "fields": { + "id_car_serie": 5455, + "name": "5.3 MT (608 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263356, + "fields": { + "id_car_serie": 66890, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263357, + "fields": { + "id_car_serie": 66890, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263358, + "fields": { + "id_car_serie": 66890, + "name": "2.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263359, + "fields": { + "id_car_serie": 5538, + "name": "2.4 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263360, + "fields": { + "id_car_serie": 5538, + "name": "2.7 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263361, + "fields": { + "id_car_serie": 8360, + "name": "6.0 AT 4WD (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263362, + "fields": { + "id_car_serie": 8360, + "name": "6.0 AT 4WD (610 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263363, + "fields": { + "id_car_serie": 5546, + "name": "6.8 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263364, + "fields": { + "id_car_serie": 2955, + "name": "1.6 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263365, + "fields": { + "id_car_serie": 8367, + "name": "2.0 MT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263366, + "fields": { + "id_car_serie": 8367, + "name": "2.7 MT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263367, + "fields": { + "id_car_serie": 8367, + "name": "2.4 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263368, + "fields": { + "id_car_serie": 66892, + "name": "1.6 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263369, + "fields": { + "id_car_serie": 4894, + "name": "3.6 AT 4WD (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263370, + "fields": { + "id_car_serie": 46602, + "name": "2.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263371, + "fields": { + "id_car_serie": 46411, + "name": "3.7 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263372, + "fields": { + "id_car_serie": 46411, + "name": "3.7 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263373, + "fields": { + "id_car_serie": 45381, + "name": "3.6 AT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263374, + "fields": { + "id_car_serie": 45381, + "name": "2.4 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263375, + "fields": { + "id_car_serie": 2998, + "name": "3.6 AT 4WD (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263376, + "fields": { + "id_car_serie": 2998, + "name": "2.4 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263377, + "fields": { + "id_car_serie": 8397, + "name": "4.2 AT 4WD (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263378, + "fields": { + "id_car_serie": 8397, + "name": "4.2 AT 4WD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263379, + "fields": { + "id_car_serie": 8397, + "name": "5.3 AT 4WD (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263380, + "fields": { + "id_car_serie": 8397, + "name": "5.3 AT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263381, + "fields": { + "id_car_serie": 45597, + "name": "2.0 AT 4WD (259 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263382, + "fields": { + "id_car_serie": 45793, + "name": "5.3 AT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263383, + "fields": { + "id_car_serie": 45794, + "name": "5.3 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263384, + "fields": { + "id_car_serie": 3013, + "name": "2.0 AT 4WD (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263385, + "fields": { + "id_car_serie": 3013, + "name": "3.6 AT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263386, + "fields": { + "id_car_serie": 45490, + "name": "3.6 MT (461 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263387, + "fields": { + "id_car_serie": 45490, + "name": "3.6 AT (461 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263388, + "fields": { + "id_car_serie": 45807, + "name": "7.0 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263389, + "fields": { + "id_car_serie": 45807, + "name": "7.7 AT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263390, + "fields": { + "id_car_serie": 45807, + "name": "8.2 AT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263391, + "fields": { + "id_car_serie": 5652, + "name": "6.2 AT 4WD (409 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263392, + "fields": { + "id_car_serie": 45814, + "name": "7.0 AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263393, + "fields": { + "id_car_serie": 8412, + "name": "3.6 AT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263394, + "fields": { + "id_car_serie": 8412, + "name": "3.6 AT 4WD (410 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263395, + "fields": { + "id_car_serie": 66893, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263396, + "fields": { + "id_car_serie": 66894, + "name": "1.6 AMT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263397, + "fields": { + "id_car_serie": 5754, + "name": "5.3 MT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263398, + "fields": { + "id_car_serie": 5754, + "name": "5.3 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263399, + "fields": { + "id_car_serie": 5754, + "name": "6.5 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263400, + "fields": { + "id_car_serie": 5754, + "name": "6.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263401, + "fields": { + "id_car_serie": 3173, + "name": "2.4 AT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263402, + "fields": { + "id_car_serie": 5871, + "name": "2.2 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263403, + "fields": { + "id_car_serie": 15753, + "name": "0.7 AT 4WD (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263404, + "fields": { + "id_car_serie": 15753, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263405, + "fields": { + "id_car_serie": 561, + "name": "0.9 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263406, + "fields": { + "id_car_serie": 15265, + "name": "1.3 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263407, + "fields": { + "id_car_serie": 15265, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263408, + "fields": { + "id_car_serie": 15265, + "name": "1.5 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263409, + "fields": { + "id_car_serie": 15265, + "name": "1.5 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263410, + "fields": { + "id_car_serie": 15265, + "name": "1.5 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263411, + "fields": { + "id_car_serie": 15265, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263412, + "fields": { + "id_car_serie": 15265, + "name": "1.5 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263413, + "fields": { + "id_car_serie": 15265, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263414, + "fields": { + "id_car_serie": 15265, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263415, + "fields": { + "id_car_serie": 3177, + "name": "1.3 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263416, + "fields": { + "id_car_serie": 3177, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263417, + "fields": { + "id_car_serie": 3177, + "name": "1.5 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263418, + "fields": { + "id_car_serie": 3177, + "name": "1.5 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263419, + "fields": { + "id_car_serie": 3177, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263420, + "fields": { + "id_car_serie": 3177, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263421, + "fields": { + "id_car_serie": 8501, + "name": "1.3 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263422, + "fields": { + "id_car_serie": 8500, + "name": "1.3 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263423, + "fields": { + "id_car_serie": 8502, + "name": "1.3 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263424, + "fields": { + "id_car_serie": 3178, + "name": "1.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263425, + "fields": { + "id_car_serie": 3178, + "name": "1.0 AT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263426, + "fields": { + "id_car_serie": 8515, + "name": "0.9 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263427, + "fields": { + "id_car_serie": 8515, + "name": "0.9 AT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263428, + "fields": { + "id_car_serie": 8515, + "name": "0.9 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263429, + "fields": { + "id_car_serie": 8515, + "name": "0.9 AT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263430, + "fields": { + "id_car_serie": 8514, + "name": "0.9 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263431, + "fields": { + "id_car_serie": 8514, + "name": "0.9 AT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263432, + "fields": { + "id_car_serie": 8514, + "name": "0.9 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263433, + "fields": { + "id_car_serie": 8514, + "name": "0.9 AT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263434, + "fields": { + "id_car_serie": 8516, + "name": "0.9 MT (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263435, + "fields": { + "id_car_serie": 8517, + "name": "0.9 MT (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263436, + "fields": { + "id_car_serie": 8519, + "name": "0.9 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263437, + "fields": { + "id_car_serie": 8519, + "name": "0.9 MT 4WD (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263438, + "fields": { + "id_car_serie": 8518, + "name": "0.9 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263439, + "fields": { + "id_car_serie": 8518, + "name": "0.9 MT 4WD (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263440, + "fields": { + "id_car_serie": 66895, + "name": "0.4 MT (31 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263441, + "fields": { + "id_car_serie": 66895, + "name": "0.4 MT (33 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263442, + "fields": { + "id_car_serie": 66895, + "name": "0.4 MT (37 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263443, + "fields": { + "id_car_serie": 66895, + "name": "0.4 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263444, + "fields": { + "id_car_serie": 66896, + "name": "0.4 MT (31 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263445, + "fields": { + "id_car_serie": 66896, + "name": "0.4 MT (33 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263446, + "fields": { + "id_car_serie": 66896, + "name": "0.4 MT (37 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263447, + "fields": { + "id_car_serie": 66896, + "name": "0.4 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263448, + "fields": { + "id_car_serie": 66897, + "name": "0.4 MT (23 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263449, + "fields": { + "id_car_serie": 66897, + "name": "0.4 MT (26 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263450, + "fields": { + "id_car_serie": 66897, + "name": "0.4 MT (32 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263451, + "fields": { + "id_car_serie": 46413, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263452, + "fields": { + "id_car_serie": 46413, + "name": "0.7 MT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263453, + "fields": { + "id_car_serie": 46413, + "name": "0.7 AT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263454, + "fields": { + "id_car_serie": 46413, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263455, + "fields": { + "id_car_serie": 46413, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263456, + "fields": { + "id_car_serie": 5891, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263457, + "fields": { + "id_car_serie": 5891, + "name": "0.7 MT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263458, + "fields": { + "id_car_serie": 5891, + "name": "0.7 AT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263459, + "fields": { + "id_car_serie": 5891, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263460, + "fields": { + "id_car_serie": 5891, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263461, + "fields": { + "id_car_serie": 5891, + "name": "1.0 AT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263462, + "fields": { + "id_car_serie": 5891, + "name": "1.0 AT 4WD (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263463, + "fields": { + "id_car_serie": 3183, + "name": "0.7 AT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263464, + "fields": { + "id_car_serie": 3207, + "name": "2.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263465, + "fields": { + "id_car_serie": 3207, + "name": "2.2 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263466, + "fields": { + "id_car_serie": 3207, + "name": "2.2 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263467, + "fields": { + "id_car_serie": 3207, + "name": "2.2 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263468, + "fields": { + "id_car_serie": 3207, + "name": "2.6 AT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263469, + "fields": { + "id_car_serie": 46418, + "name": "3.7 AT 4WD (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263470, + "fields": { + "id_car_serie": 46418, + "name": "3.7 MT 4WD (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263471, + "fields": { + "id_car_serie": 46418, + "name": "4.7 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263472, + "fields": { + "id_car_serie": 46418, + "name": "4.7 MT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263473, + "fields": { + "id_car_serie": 46419, + "name": "3.7 MT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263474, + "fields": { + "id_car_serie": 46419, + "name": "4.7 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263475, + "fields": { + "id_car_serie": 3213, + "name": "3.7 AT 4WD (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263476, + "fields": { + "id_car_serie": 3213, + "name": "3.7 MT 4WD (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263477, + "fields": { + "id_car_serie": 3213, + "name": "4.7 MT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263478, + "fields": { + "id_car_serie": 3213, + "name": "4.7 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263479, + "fields": { + "id_car_serie": 46420, + "name": "3.7 MT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263480, + "fields": { + "id_car_serie": 46420, + "name": "3.7 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263481, + "fields": { + "id_car_serie": 46420, + "name": "3.7 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263482, + "fields": { + "id_car_serie": 46420, + "name": "4.7 MT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263483, + "fields": { + "id_car_serie": 46420, + "name": "4.7 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263484, + "fields": { + "id_car_serie": 46420, + "name": "4.7 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263485, + "fields": { + "id_car_serie": 671, + "name": "1.4 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263486, + "fields": { + "id_car_serie": 45390, + "name": "4.7 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263487, + "fields": { + "id_car_serie": 45390, + "name": "5.7 AT 4WD (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263488, + "fields": { + "id_car_serie": 45390, + "name": "5.7 AT 4WD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263489, + "fields": { + "id_car_serie": 678, + "name": "3.5 AT 4WD (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263490, + "fields": { + "id_car_serie": 678, + "name": "5.7 AT 4WD (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263491, + "fields": { + "id_car_serie": 66898, + "name": "5.2 MT (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263492, + "fields": { + "id_car_serie": 66898, + "name": "5.2 AT (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263493, + "fields": { + "id_car_serie": 66898, + "name": "6.3 MT (298 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263494, + "fields": { + "id_car_serie": 66898, + "name": "6.3 AT (298 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263495, + "fields": { + "id_car_serie": 66898, + "name": "7.2 AT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263496, + "fields": { + "id_car_serie": 66898, + "name": "7.2 MT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263497, + "fields": { + "id_car_serie": 978, + "name": "4.3 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263498, + "fields": { + "id_car_serie": 978, + "name": "4.3 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263499, + "fields": { + "id_car_serie": 978, + "name": "5.0 MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263500, + "fields": { + "id_car_serie": 978, + "name": "5.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263501, + "fields": { + "id_car_serie": 978, + "name": "5.7 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263502, + "fields": { + "id_car_serie": 978, + "name": "5.7 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263503, + "fields": { + "id_car_serie": 978, + "name": "6.2 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263504, + "fields": { + "id_car_serie": 978, + "name": "6.2 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263505, + "fields": { + "id_car_serie": 978, + "name": "6.5 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263506, + "fields": { + "id_car_serie": 978, + "name": "6.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263507, + "fields": { + "id_car_serie": 6251, + "name": "4.8 AT 4WD (278 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263508, + "fields": { + "id_car_serie": 6251, + "name": "5.3 AT 4WD (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263509, + "fields": { + "id_car_serie": 6251, + "name": "8.1 AT 4WD (344 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263510, + "fields": { + "id_car_serie": 6252, + "name": "5.7 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263511, + "fields": { + "id_car_serie": 6252, + "name": "5.7 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263512, + "fields": { + "id_car_serie": 6252, + "name": "5.7 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263513, + "fields": { + "id_car_serie": 6252, + "name": "6.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263514, + "fields": { + "id_car_serie": 47218, + "name": "5.7 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263515, + "fields": { + "id_car_serie": 47218, + "name": "5.7 AT 4WD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263516, + "fields": { + "id_car_serie": 47218, + "name": "5.7 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263517, + "fields": { + "id_car_serie": 47218, + "name": "7.5 AT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263518, + "fields": { + "id_car_serie": 8587, + "name": "2.2 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263519, + "fields": { + "id_car_serie": 6259, + "name": "1.3 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263520, + "fields": { + "id_car_serie": 66899, + "name": "2.0 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263521, + "fields": { + "id_car_serie": 3528, + "name": "5.3 MT (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263522, + "fields": { + "id_car_serie": 3528, + "name": "5.3 AT (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263523, + "fields": { + "id_car_serie": 3536, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263524, + "fields": { + "id_car_serie": 3536, + "name": "3.0 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263525, + "fields": { + "id_car_serie": 8670, + "name": "4.2 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263526, + "fields": { + "id_car_serie": 8670, + "name": "5.4 AT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263527, + "fields": { + "id_car_serie": 46483, + "name": "5.0 AT (575 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263528, + "fields": { + "id_car_serie": 45010, + "name": "4.0 AT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263529, + "fields": { + "id_car_serie": 1242, + "name": "2.0 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263530, + "fields": { + "id_car_serie": 1242, + "name": "2.5 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263531, + "fields": { + "id_car_serie": 1242, + "name": "2.5 MT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263532, + "fields": { + "id_car_serie": 1242, + "name": "3.7 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263533, + "fields": { + "id_car_serie": 1242, + "name": "3.8 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263534, + "fields": { + "id_car_serie": 1242, + "name": "4.2 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263535, + "fields": { + "id_car_serie": 1242, + "name": "5.0 MT 4WD (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263536, + "fields": { + "id_car_serie": 1242, + "name": "2.1 MT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263537, + "fields": { + "id_car_serie": 1242, + "name": "2.4 MT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263538, + "fields": { + "id_car_serie": 14793, + "name": "2.4 MT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263539, + "fields": { + "id_car_serie": 14793, + "name": "2.4 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263540, + "fields": { + "id_car_serie": 14793, + "name": "3.7 MT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263541, + "fields": { + "id_car_serie": 14793, + "name": "3.7 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263542, + "fields": { + "id_car_serie": 14793, + "name": "3.7 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263543, + "fields": { + "id_car_serie": 14793, + "name": "2.5 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263544, + "fields": { + "id_car_serie": 14793, + "name": "2.8 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263545, + "fields": { + "id_car_serie": 14793, + "name": "2.8 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263546, + "fields": { + "id_car_serie": 14793, + "name": "2.8 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263547, + "fields": { + "id_car_serie": 14794, + "name": "2.5 MT 4WD (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263548, + "fields": { + "id_car_serie": 14794, + "name": "2.5 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263549, + "fields": { + "id_car_serie": 14794, + "name": "4.0 AT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263550, + "fields": { + "id_car_serie": 14794, + "name": "4.0 MT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263551, + "fields": { + "id_car_serie": 14794, + "name": "2.5 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263552, + "fields": { + "id_car_serie": 14795, + "name": "2.5 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263553, + "fields": { + "id_car_serie": 14795, + "name": "2.5 MT 4WD (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263554, + "fields": { + "id_car_serie": 14795, + "name": "2.5 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263555, + "fields": { + "id_car_serie": 14795, + "name": "2.5 MT 4WD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263556, + "fields": { + "id_car_serie": 14795, + "name": "4.0 AT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263557, + "fields": { + "id_car_serie": 14795, + "name": "4.0 MT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263558, + "fields": { + "id_car_serie": 14795, + "name": "4.0 AT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263559, + "fields": { + "id_car_serie": 14795, + "name": "2.5 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263560, + "fields": { + "id_car_serie": 14797, + "name": "2.5 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263561, + "fields": { + "id_car_serie": 14797, + "name": "2.5 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263562, + "fields": { + "id_car_serie": 14797, + "name": "4.0 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263563, + "fields": { + "id_car_serie": 14797, + "name": "4.0 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263564, + "fields": { + "id_car_serie": 14797, + "name": "4.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263565, + "fields": { + "id_car_serie": 14797, + "name": "4.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263566, + "fields": { + "id_car_serie": 14797, + "name": "5.2 AT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263567, + "fields": { + "id_car_serie": 14797, + "name": "5.2 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263568, + "fields": { + "id_car_serie": 14797, + "name": "5.2 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263569, + "fields": { + "id_car_serie": 14797, + "name": "5.9 AT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263570, + "fields": { + "id_car_serie": 14797, + "name": "5.9 MT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263571, + "fields": { + "id_car_serie": 14797, + "name": "5.9 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263572, + "fields": { + "id_car_serie": 1252, + "name": "2.8 MT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263573, + "fields": { + "id_car_serie": 1252, + "name": "2.8 MT 4WD (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263574, + "fields": { + "id_car_serie": 1252, + "name": "2.0 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263575, + "fields": { + "id_car_serie": 1252, + "name": "2.4 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263576, + "fields": { + "id_car_serie": 4560, + "name": "1.7 MT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263577, + "fields": { + "id_car_serie": 4560, + "name": "1.8 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263581, + "fields": { + "id_car_serie": 14845, + "name": "1.6 AMT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263582, + "fields": { + "id_car_serie": 14844, + "name": "1.6 AMT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263583, + "fields": { + "id_car_serie": 7534, + "name": "6.8 AT (329 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263584, + "fields": { + "id_car_serie": 45944, + "name": "4.3 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263585, + "fields": { + "id_car_serie": 45944, + "name": "4.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263586, + "fields": { + "id_car_serie": 45944, + "name": "4.9 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263587, + "fields": { + "id_car_serie": 2229, + "name": "2.8 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263588, + "fields": { + "id_car_serie": 2229, + "name": "3.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263589, + "fields": { + "id_car_serie": 47043, + "name": "0.8 MT (33 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263590, + "fields": { + "id_car_serie": 45439, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263591, + "fields": { + "id_car_serie": 45439, + "name": "2.0 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263592, + "fields": { + "id_car_serie": 45439, + "name": "2.0 AMT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263593, + "fields": { + "id_car_serie": 47400, + "name": "2.0 MT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263594, + "fields": { + "id_car_serie": 47400, + "name": "2.0 AMT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263595, + "fields": { + "id_car_serie": 47400, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263596, + "fields": { + "id_car_serie": 47400, + "name": "2.0 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263597, + "fields": { + "id_car_serie": 47400, + "name": "2.0 AMT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263598, + "fields": { + "id_car_serie": 47400, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263599, + "fields": { + "id_car_serie": 47400, + "name": "2.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263600, + "fields": { + "id_car_serie": 7587, + "name": "1.2 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263601, + "fields": { + "id_car_serie": 7587, + "name": "1.6 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263602, + "fields": { + "id_car_serie": 7587, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263603, + "fields": { + "id_car_serie": 7587, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263604, + "fields": { + "id_car_serie": 7587, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263605, + "fields": { + "id_car_serie": 7587, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263606, + "fields": { + "id_car_serie": 7587, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263607, + "fields": { + "id_car_serie": 15670, + "name": "1.8 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263608, + "fields": { + "id_car_serie": 15670, + "name": "2.8 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263609, + "fields": { + "id_car_serie": 2346, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263610, + "fields": { + "id_car_serie": 2346, + "name": "0.7 AT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263611, + "fields": { + "id_car_serie": 2346, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263612, + "fields": { + "id_car_serie": 4228, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263613, + "fields": { + "id_car_serie": 47019, + "name": "2.2 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263614, + "fields": { + "id_car_serie": 4274, + "name": "2.4 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263615, + "fields": { + "id_car_serie": 4274, + "name": "2.4 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263616, + "fields": { + "id_car_serie": 4274, + "name": "3.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263617, + "fields": { + "id_car_serie": 66901, + "name": "2.7 MT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263618, + "fields": { + "id_car_serie": 66901, + "name": "2.7 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263619, + "fields": { + "id_car_serie": 66901, + "name": "2.8 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263620, + "fields": { + "id_car_serie": 15385, + "name": "3.5 AT 4WD (273 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263621, + "fields": { + "id_car_serie": 15385, + "name": "3.3 CVT 4WD (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263622, + "fields": { + "id_car_serie": 66902, + "name": "2.7 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263623, + "fields": { + "id_car_serie": 66902, + "name": "2.7 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263624, + "fields": { + "id_car_serie": 66902, + "name": "4.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263625, + "fields": { + "id_car_serie": 66902, + "name": "2.8 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263626, + "fields": { + "id_car_serie": 2515, + "name": "4.0 MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263627, + "fields": { + "id_car_serie": 9289, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263628, + "fields": { + "id_car_serie": 9287, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263629, + "fields": { + "id_car_serie": 9287, + "name": "1.4 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263630, + "fields": { + "id_car_serie": 9287, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263631, + "fields": { + "id_car_serie": 9287, + "name": "1.5 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263632, + "fields": { + "id_car_serie": 9287, + "name": "1.5 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263633, + "fields": { + "id_car_serie": 66903, + "name": "1.7 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263634, + "fields": { + "id_car_serie": 66903, + "name": "1.7 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263635, + "fields": { + "id_car_serie": 66903, + "name": "1.7 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263636, + "fields": { + "id_car_serie": 66903, + "name": "1.7 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263637, + "fields": { + "id_car_serie": 66903, + "name": "1.7 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263638, + "fields": { + "id_car_serie": 66903, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263639, + "fields": { + "id_car_serie": 66903, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263640, + "fields": { + "id_car_serie": 66903, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263641, + "fields": { + "id_car_serie": 66903, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263642, + "fields": { + "id_car_serie": 10749, + "name": "2.4 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263643, + "fields": { + "id_car_serie": 10749, + "name": "2.4 AT 4WD (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263644, + "fields": { + "id_car_serie": 10749, + "name": "2.4 MT 4WD (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263645, + "fields": { + "id_car_serie": 2694, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263646, + "fields": { + "id_car_serie": 9395, + "name": "2.9 MT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263647, + "fields": { + "id_car_serie": 45969, + "name": "6.6 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263648, + "fields": { + "id_car_serie": 45969, + "name": "8.1 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263649, + "fields": { + "id_car_serie": 9394, + "name": "0.9 MT 4WD (27 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263650, + "fields": { + "id_car_serie": 9394, + "name": "1.2 MT 4WD (37 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263651, + "fields": { + "id_car_serie": 9410, + "name": "1.2 MT 4WD (35 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263652, + "fields": { + "id_car_serie": 9410, + "name": "1.4 MT 4WD (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263653, + "fields": { + "id_car_serie": 9411, + "name": "1.4 MT 4WD (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263654, + "fields": { + "id_car_serie": 9441, + "name": "0.4 MT (12 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263655, + "fields": { + "id_car_serie": 66904, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263656, + "fields": { + "id_car_serie": 66904, + "name": "3.0 AT 4WD (387 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263657, + "fields": { + "id_car_serie": 66904, + "name": "2.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263658, + "fields": { + "id_car_serie": 66904, + "name": "3.0 AT 4WD (374 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263659, + "fields": { + "id_car_serie": 66904, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263660, + "fields": { + "id_car_serie": 14777, + "name": "1.2 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263661, + "fields": { + "id_car_serie": 14777, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263662, + "fields": { + "id_car_serie": 14777, + "name": "1.2 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263663, + "fields": { + "id_car_serie": 14777, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263664, + "fields": { + "id_car_serie": 14777, + "name": "1.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263665, + "fields": { + "id_car_serie": 14777, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263666, + "fields": { + "id_car_serie": 14777, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263667, + "fields": { + "id_car_serie": 14777, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263668, + "fields": { + "id_car_serie": 66907, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263669, + "fields": { + "id_car_serie": 66907, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263670, + "fields": { + "id_car_serie": 66907, + "name": "1.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263671, + "fields": { + "id_car_serie": 66907, + "name": "1.2 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263672, + "fields": { + "id_car_serie": 66907, + "name": "1.2 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263673, + "fields": { + "id_car_serie": 66907, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263674, + "fields": { + "id_car_serie": 66907, + "name": "1.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263675, + "fields": { + "id_car_serie": 66907, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263676, + "fields": { + "id_car_serie": 3334, + "name": "3.5 AT 4WD (287 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263677, + "fields": { + "id_car_serie": 3334, + "name": "3.5 AT 4WD (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263678, + "fields": { + "id_car_serie": 3431, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263679, + "fields": { + "id_car_serie": 3431, + "name": "1.5 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263680, + "fields": { + "id_car_serie": 3431, + "name": "1.5 MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263681, + "fields": { + "id_car_serie": 3431, + "name": "1.5 CVT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263682, + "fields": { + "id_car_serie": 3431, + "name": "1.8 CVT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263683, + "fields": { + "id_car_serie": 3431, + "name": "1.8 CVT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263684, + "fields": { + "id_car_serie": 3431, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263685, + "fields": { + "id_car_serie": 45401, + "name": "1.8 CVT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263687, + "fields": { + "id_car_serie": 47192, + "name": "1.3 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263688, + "fields": { + "id_car_serie": 47192, + "name": "1.3 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263689, + "fields": { + "id_car_serie": 66908, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263690, + "fields": { + "id_car_serie": 66908, + "name": "1.3 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263691, + "fields": { + "id_car_serie": 66908, + "name": "1.3 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263692, + "fields": { + "id_car_serie": 66908, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263693, + "fields": { + "id_car_serie": 66908, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263694, + "fields": { + "id_car_serie": 66908, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263695, + "fields": { + "id_car_serie": 66908, + "name": "1.6 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263696, + "fields": { + "id_car_serie": 66908, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263697, + "fields": { + "id_car_serie": 66909, + "name": "1.0 MT (36 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263698, + "fields": { + "id_car_serie": 789, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263699, + "fields": { + "id_car_serie": 6030, + "name": "2.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263700, + "fields": { + "id_car_serie": 46455, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263701, + "fields": { + "id_car_serie": 6054, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263702, + "fields": { + "id_car_serie": 66910, + "name": "1.1 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263703, + "fields": { + "id_car_serie": 66910, + "name": "1.1 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263704, + "fields": { + "id_car_serie": 66910, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263705, + "fields": { + "id_car_serie": 66910, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263706, + "fields": { + "id_car_serie": 66910, + "name": "1.5 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263707, + "fields": { + "id_car_serie": 66910, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263708, + "fields": { + "id_car_serie": 66910, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263709, + "fields": { + "id_car_serie": 66910, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263710, + "fields": { + "id_car_serie": 66910, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263711, + "fields": { + "id_car_serie": 66910, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263712, + "fields": { + "id_car_serie": 66910, + "name": "1.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263713, + "fields": { + "id_car_serie": 66910, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263714, + "fields": { + "id_car_serie": 66910, + "name": "1.9 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263715, + "fields": { + "id_car_serie": 3299, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263716, + "fields": { + "id_car_serie": 3299, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263717, + "fields": { + "id_car_serie": 3299, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263718, + "fields": { + "id_car_serie": 3299, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263719, + "fields": { + "id_car_serie": 3299, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263720, + "fields": { + "id_car_serie": 3299, + "name": "1.7 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263721, + "fields": { + "id_car_serie": 66911, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263722, + "fields": { + "id_car_serie": 66911, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263723, + "fields": { + "id_car_serie": 66911, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263724, + "fields": { + "id_car_serie": 66911, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263725, + "fields": { + "id_car_serie": 66911, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263726, + "fields": { + "id_car_serie": 3309, + "name": "0.9 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263727, + "fields": { + "id_car_serie": 3309, + "name": "1.0 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263728, + "fields": { + "id_car_serie": 3309, + "name": "1.0 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263729, + "fields": { + "id_car_serie": 3309, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263730, + "fields": { + "id_car_serie": 3309, + "name": "1.1 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263731, + "fields": { + "id_car_serie": 3309, + "name": "1.1 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263732, + "fields": { + "id_car_serie": 3309, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263733, + "fields": { + "id_car_serie": 3309, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263734, + "fields": { + "id_car_serie": 3309, + "name": "1.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263735, + "fields": { + "id_car_serie": 3309, + "name": "1.3 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263736, + "fields": { + "id_car_serie": 3309, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263737, + "fields": { + "id_car_serie": 3309, + "name": "1.3 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263738, + "fields": { + "id_car_serie": 3309, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263739, + "fields": { + "id_car_serie": 3309, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263740, + "fields": { + "id_car_serie": 3308, + "name": "0.9 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263741, + "fields": { + "id_car_serie": 3308, + "name": "1.0 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263742, + "fields": { + "id_car_serie": 3308, + "name": "1.0 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263743, + "fields": { + "id_car_serie": 3308, + "name": "1.1 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263744, + "fields": { + "id_car_serie": 3308, + "name": "1.1 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263745, + "fields": { + "id_car_serie": 3308, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263746, + "fields": { + "id_car_serie": 3308, + "name": "1.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263747, + "fields": { + "id_car_serie": 3308, + "name": "1.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263748, + "fields": { + "id_car_serie": 3308, + "name": "1.3 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263749, + "fields": { + "id_car_serie": 3308, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263750, + "fields": { + "id_car_serie": 3308, + "name": "1.3 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263751, + "fields": { + "id_car_serie": 3308, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263752, + "fields": { + "id_car_serie": 3308, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263753, + "fields": { + "id_car_serie": 66912, + "name": "1.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263754, + "fields": { + "id_car_serie": 66912, + "name": "1.3 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263755, + "fields": { + "id_car_serie": 66912, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263756, + "fields": { + "id_car_serie": 66913, + "name": "1.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263757, + "fields": { + "id_car_serie": 66913, + "name": "1.3 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263758, + "fields": { + "id_car_serie": 66913, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263759, + "fields": { + "id_car_serie": 66914, + "name": "1.3 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263760, + "fields": { + "id_car_serie": 66914, + "name": "1.3 AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263761, + "fields": { + "id_car_serie": 66914, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263762, + "fields": { + "id_car_serie": 66914, + "name": "1.5 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263763, + "fields": { + "id_car_serie": 6525, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263764, + "fields": { + "id_car_serie": 6525, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263765, + "fields": { + "id_car_serie": 6525, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263766, + "fields": { + "id_car_serie": 3504, + "name": "3.0 AT 4WD (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263767, + "fields": { + "id_car_serie": 3504, + "name": "3.0 MT 4WD (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263768, + "fields": { + "id_car_serie": 3504, + "name": "3.1 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263769, + "fields": { + "id_car_serie": 3504, + "name": "3.1 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263770, + "fields": { + "id_car_serie": 3504, + "name": "3.2 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263771, + "fields": { + "id_car_serie": 3504, + "name": "3.2 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263772, + "fields": { + "id_car_serie": 3504, + "name": "3.2 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263773, + "fields": { + "id_car_serie": 3504, + "name": "3.2 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263774, + "fields": { + "id_car_serie": 3504, + "name": "3.5 MT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263775, + "fields": { + "id_car_serie": 3504, + "name": "3.5 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263776, + "fields": { + "id_car_serie": 3505, + "name": "3.0 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263777, + "fields": { + "id_car_serie": 3505, + "name": "3.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263778, + "fields": { + "id_car_serie": 3505, + "name": "3.1 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263779, + "fields": { + "id_car_serie": 3505, + "name": "3.1 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263780, + "fields": { + "id_car_serie": 3505, + "name": "3.1 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263781, + "fields": { + "id_car_serie": 3505, + "name": "3.1 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263782, + "fields": { + "id_car_serie": 3505, + "name": "3.2 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263783, + "fields": { + "id_car_serie": 3505, + "name": "3.2 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263784, + "fields": { + "id_car_serie": 3505, + "name": "3.2 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263785, + "fields": { + "id_car_serie": 3505, + "name": "3.2 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263786, + "fields": { + "id_car_serie": 3505, + "name": "3.2 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263787, + "fields": { + "id_car_serie": 3505, + "name": "3.2 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263788, + "fields": { + "id_car_serie": 3505, + "name": "3.5 MT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263789, + "fields": { + "id_car_serie": 3505, + "name": "3.5 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263790, + "fields": { + "id_car_serie": 3505, + "name": "3.5 MT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263791, + "fields": { + "id_car_serie": 3505, + "name": "3.5 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263792, + "fields": { + "id_car_serie": 6528, + "name": "2.2 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263793, + "fields": { + "id_car_serie": 6530, + "name": "2.3 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263794, + "fields": { + "id_car_serie": 6530, + "name": "2.3 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263795, + "fields": { + "id_car_serie": 6530, + "name": "2.6 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263796, + "fields": { + "id_car_serie": 6530, + "name": "2.6 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263797, + "fields": { + "id_car_serie": 6530, + "name": "2.8 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263798, + "fields": { + "id_car_serie": 6530, + "name": "2.8 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263799, + "fields": { + "id_car_serie": 6530, + "name": "2.2 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263800, + "fields": { + "id_car_serie": 6530, + "name": "2.2 AT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263801, + "fields": { + "id_car_serie": 6530, + "name": "2.8 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263802, + "fields": { + "id_car_serie": 6530, + "name": "2.8 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263803, + "fields": { + "id_car_serie": 47248, + "name": "2.0 MT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263804, + "fields": { + "id_car_serie": 47248, + "name": "2.0 AT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263805, + "fields": { + "id_car_serie": 47248, + "name": "2.3 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263806, + "fields": { + "id_car_serie": 47248, + "name": "2.3 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263807, + "fields": { + "id_car_serie": 47248, + "name": "2.6 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263808, + "fields": { + "id_car_serie": 47248, + "name": "2.6 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263809, + "fields": { + "id_car_serie": 47248, + "name": "2.8 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263810, + "fields": { + "id_car_serie": 47248, + "name": "2.8 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263811, + "fields": { + "id_car_serie": 47248, + "name": "2.2 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263812, + "fields": { + "id_car_serie": 47248, + "name": "2.2 AT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263813, + "fields": { + "id_car_serie": 47248, + "name": "2.8 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263814, + "fields": { + "id_car_serie": 47248, + "name": "2.8 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263815, + "fields": { + "id_car_serie": 6533, + "name": "3.0 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263816, + "fields": { + "id_car_serie": 6533, + "name": "3.0 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263817, + "fields": { + "id_car_serie": 6534, + "name": "3.0 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263818, + "fields": { + "id_car_serie": 6534, + "name": "3.0 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263819, + "fields": { + "id_car_serie": 3507, + "name": "2.5 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263820, + "fields": { + "id_car_serie": 3507, + "name": "2.5 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263821, + "fields": { + "id_car_serie": 3507, + "name": "3.0 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263822, + "fields": { + "id_car_serie": 3507, + "name": "3.0 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263823, + "fields": { + "id_car_serie": 3508, + "name": "2.5 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263824, + "fields": { + "id_car_serie": 3508, + "name": "2.5 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263825, + "fields": { + "id_car_serie": 3508, + "name": "2.5 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263826, + "fields": { + "id_car_serie": 3508, + "name": "3.0 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263827, + "fields": { + "id_car_serie": 3508, + "name": "3.0 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263828, + "fields": { + "id_car_serie": 6535, + "name": "3.0 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263829, + "fields": { + "id_car_serie": 6535, + "name": "3.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263830, + "fields": { + "id_car_serie": 6537, + "name": "3.0 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263831, + "fields": { + "id_car_serie": 6537, + "name": "3.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263832, + "fields": { + "id_car_serie": 6539, + "name": "1.5 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263833, + "fields": { + "id_car_serie": 6539, + "name": "1.5 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263834, + "fields": { + "id_car_serie": 6539, + "name": "1.8 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263835, + "fields": { + "id_car_serie": 6539, + "name": "1.8 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263836, + "fields": { + "id_car_serie": 6539, + "name": "1.7 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263837, + "fields": { + "id_car_serie": 6539, + "name": "1.7 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263838, + "fields": { + "id_car_serie": 6541, + "name": "1.5 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263839, + "fields": { + "id_car_serie": 6541, + "name": "1.5 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263840, + "fields": { + "id_car_serie": 6541, + "name": "1.8 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263841, + "fields": { + "id_car_serie": 6541, + "name": "1.8 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263842, + "fields": { + "id_car_serie": 6541, + "name": "1.7 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263843, + "fields": { + "id_car_serie": 6541, + "name": "1.7 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263844, + "fields": { + "id_car_serie": 6540, + "name": "1.5 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263845, + "fields": { + "id_car_serie": 6540, + "name": "1.5 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263846, + "fields": { + "id_car_serie": 6540, + "name": "1.6 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263847, + "fields": { + "id_car_serie": 6540, + "name": "1.8 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263848, + "fields": { + "id_car_serie": 6540, + "name": "1.8 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263849, + "fields": { + "id_car_serie": 6540, + "name": "1.7 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263850, + "fields": { + "id_car_serie": 6540, + "name": "1.7 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263851, + "fields": { + "id_car_serie": 47011, + "name": "4.3 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263852, + "fields": { + "id_car_serie": 47011, + "name": "4.3 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263853, + "fields": { + "id_car_serie": 47012, + "name": "4.3 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263854, + "fields": { + "id_car_serie": 45153, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263855, + "fields": { + "id_car_serie": 45153, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263856, + "fields": { + "id_car_serie": 45153, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263857, + "fields": { + "id_car_serie": 45153, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263858, + "fields": { + "id_car_serie": 45153, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263859, + "fields": { + "id_car_serie": 45153, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263860, + "fields": { + "id_car_serie": 45153, + "name": "2.3 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263861, + "fields": { + "id_car_serie": 45153, + "name": "2.3 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263862, + "fields": { + "id_car_serie": 8657, + "name": "2.6 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263863, + "fields": { + "id_car_serie": 8657, + "name": "2.6 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263864, + "fields": { + "id_car_serie": 8657, + "name": "2.8 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263865, + "fields": { + "id_car_serie": 8657, + "name": "2.8 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263866, + "fields": { + "id_car_serie": 1203, + "name": "3.0 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263867, + "fields": { + "id_car_serie": 1203, + "name": "3.0 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263868, + "fields": { + "id_car_serie": 45002, + "name": "3.0 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263869, + "fields": { + "id_car_serie": 45002, + "name": "3.0 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263870, + "fields": { + "id_car_serie": 3517, + "name": "3.2 AT 4WD (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263871, + "fields": { + "id_car_serie": 3517, + "name": "3.2 MT 4WD (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263872, + "fields": { + "id_car_serie": 3516, + "name": "3.2 AT 4WD (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263873, + "fields": { + "id_car_serie": 3516, + "name": "3.2 MT 4WD (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263874, + "fields": { + "id_car_serie": 1207, + "name": "1.5 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263875, + "fields": { + "id_car_serie": 1207, + "name": "1.5 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263876, + "fields": { + "id_car_serie": 1207, + "name": "1.6 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263877, + "fields": { + "id_car_serie": 1207, + "name": "1.6 AT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263878, + "fields": { + "id_car_serie": 1207, + "name": "1.8 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263879, + "fields": { + "id_car_serie": 1207, + "name": "1.8 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263880, + "fields": { + "id_car_serie": 1207, + "name": "1.7 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263881, + "fields": { + "id_car_serie": 1207, + "name": "1.7 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263882, + "fields": { + "id_car_serie": 8659, + "name": "2.3 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263883, + "fields": { + "id_car_serie": 8659, + "name": "2.3 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263884, + "fields": { + "id_car_serie": 8659, + "name": "2.6 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263885, + "fields": { + "id_car_serie": 8659, + "name": "2.6 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263886, + "fields": { + "id_car_serie": 8659, + "name": "2.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263887, + "fields": { + "id_car_serie": 8659, + "name": "2.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263888, + "fields": { + "id_car_serie": 8659, + "name": "2.8 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263889, + "fields": { + "id_car_serie": 8659, + "name": "2.8 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263890, + "fields": { + "id_car_serie": 8659, + "name": "2.2 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263891, + "fields": { + "id_car_serie": 8659, + "name": "2.2 AT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263892, + "fields": { + "id_car_serie": 8659, + "name": "2.8 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263893, + "fields": { + "id_car_serie": 8659, + "name": "2.8 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263894, + "fields": { + "id_car_serie": 8660, + "name": "2.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263895, + "fields": { + "id_car_serie": 8660, + "name": "2.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263896, + "fields": { + "id_car_serie": 3523, + "name": "3.0 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263897, + "fields": { + "id_car_serie": 3523, + "name": "3.0 MT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263898, + "fields": { + "id_car_serie": 3523, + "name": "3.2 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263899, + "fields": { + "id_car_serie": 3523, + "name": "3.2 MT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263900, + "fields": { + "id_car_serie": 6555, + "name": "2.3 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263901, + "fields": { + "id_car_serie": 6555, + "name": "2.3 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263902, + "fields": { + "id_car_serie": 6555, + "name": "2.6 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263903, + "fields": { + "id_car_serie": 6555, + "name": "2.6 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263904, + "fields": { + "id_car_serie": 6555, + "name": "3.2 MT 4WD (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263905, + "fields": { + "id_car_serie": 6555, + "name": "3.2 AT 4WD (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263906, + "fields": { + "id_car_serie": 6555, + "name": "2.8 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263907, + "fields": { + "id_car_serie": 6555, + "name": "2.8 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263908, + "fields": { + "id_car_serie": 6555, + "name": "3.0 MT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263909, + "fields": { + "id_car_serie": 6555, + "name": "3.0 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263910, + "fields": { + "id_car_serie": 1215, + "name": "3.0 MT 4WD (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263911, + "fields": { + "id_car_serie": 1215, + "name": "3.0 MT 4WD (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263912, + "fields": { + "id_car_serie": 66915, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263913, + "fields": { + "id_car_serie": 66915, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263914, + "fields": { + "id_car_serie": 66915, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263915, + "fields": { + "id_car_serie": 66915, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263916, + "fields": { + "id_car_serie": 4026, + "name": "3.4 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263917, + "fields": { + "id_car_serie": 46919, + "name": "3.4 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263918, + "fields": { + "id_car_serie": 4028, + "name": "3.0 AMT 4WD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263919, + "fields": { + "id_car_serie": 4028, + "name": "3.0 AMT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263920, + "fields": { + "id_car_serie": 4028, + "name": "3.0 MT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263921, + "fields": { + "id_car_serie": 2098, + "name": "2.9 MT (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263922, + "fields": { + "id_car_serie": 66916, + "name": "2.9 AMT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263923, + "fields": { + "id_car_serie": 66916, + "name": "2.9 AMT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263924, + "fields": { + "id_car_serie": 66916, + "name": "4.0 AMT 4WD (480 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263925, + "fields": { + "id_car_serie": 66916, + "name": "4.0 AMT 4WD (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263926, + "fields": { + "id_car_serie": 66916, + "name": "4.0 AMT 4WD (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263927, + "fields": { + "id_car_serie": 66917, + "name": "2.9 AMT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263928, + "fields": { + "id_car_serie": 66917, + "name": "2.9 AMT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263929, + "fields": { + "id_car_serie": 66917, + "name": "4.0 AMT 4WD (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263930, + "fields": { + "id_car_serie": 66917, + "name": "4.0 AMT 4WD (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263931, + "fields": { + "id_car_serie": 66918, + "name": "3.0 AMT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263932, + "fields": { + "id_car_serie": 66918, + "name": "2.9 AMT 4WD (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263933, + "fields": { + "id_car_serie": 66918, + "name": "4.0 AMT 4WD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263934, + "fields": { + "id_car_serie": 66918, + "name": "2.9 AMT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263935, + "fields": { + "id_car_serie": 4045, + "name": "2.3 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263936, + "fields": { + "id_car_serie": 4045, + "name": "2.3 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263937, + "fields": { + "id_car_serie": 4045, + "name": "2.9 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263938, + "fields": { + "id_car_serie": 4045, + "name": "2.9 AT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263939, + "fields": { + "id_car_serie": 4045, + "name": "2.9 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263940, + "fields": { + "id_car_serie": 4045, + "name": "2.9 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263941, + "fields": { + "id_car_serie": 4044, + "name": "2.3 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263942, + "fields": { + "id_car_serie": 4044, + "name": "2.3 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263943, + "fields": { + "id_car_serie": 4044, + "name": "2.9 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263944, + "fields": { + "id_car_serie": 4044, + "name": "2.9 AT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263945, + "fields": { + "id_car_serie": 4044, + "name": "2.9 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263946, + "fields": { + "id_car_serie": 4044, + "name": "2.9 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263947, + "fields": { + "id_car_serie": 4046, + "name": "2.3 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263948, + "fields": { + "id_car_serie": 4046, + "name": "2.3 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263949, + "fields": { + "id_car_serie": 4046, + "name": "2.9 AT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263950, + "fields": { + "id_car_serie": 4046, + "name": "2.9 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263951, + "fields": { + "id_car_serie": 4046, + "name": "2.9 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263952, + "fields": { + "id_car_serie": 4046, + "name": "2.9 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263953, + "fields": { + "id_car_serie": 7446, + "name": "2.3 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263954, + "fields": { + "id_car_serie": 7446, + "name": "3.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263955, + "fields": { + "id_car_serie": 7446, + "name": "3.2 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263956, + "fields": { + "id_car_serie": 7446, + "name": "3.2 AT 4WD (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263957, + "fields": { + "id_car_serie": 7446, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263958, + "fields": { + "id_car_serie": 7446, + "name": "5.4 AT 4WD (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263959, + "fields": { + "id_car_serie": 7446, + "name": "3.0 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263960, + "fields": { + "id_car_serie": 7446, + "name": "3.0 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263961, + "fields": { + "id_car_serie": 7446, + "name": "3.5 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263962, + "fields": { + "id_car_serie": 7445, + "name": "2.3 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263963, + "fields": { + "id_car_serie": 7445, + "name": "3.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263964, + "fields": { + "id_car_serie": 7445, + "name": "3.2 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263965, + "fields": { + "id_car_serie": 7445, + "name": "3.2 AT 4WD (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263966, + "fields": { + "id_car_serie": 7445, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263967, + "fields": { + "id_car_serie": 7445, + "name": "5.4 AT 4WD (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263968, + "fields": { + "id_car_serie": 7445, + "name": "3.0 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263969, + "fields": { + "id_car_serie": 7445, + "name": "3.0 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263970, + "fields": { + "id_car_serie": 7445, + "name": "3.5 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263971, + "fields": { + "id_car_serie": 7447, + "name": "2.3 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263972, + "fields": { + "id_car_serie": 7447, + "name": "3.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263973, + "fields": { + "id_car_serie": 7447, + "name": "3.2 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263974, + "fields": { + "id_car_serie": 7447, + "name": "3.2 AT 4WD (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263975, + "fields": { + "id_car_serie": 7447, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263976, + "fields": { + "id_car_serie": 7447, + "name": "5.4 AT 4WD (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263977, + "fields": { + "id_car_serie": 7447, + "name": "3.0 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263978, + "fields": { + "id_car_serie": 7447, + "name": "3.0 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263979, + "fields": { + "id_car_serie": 7447, + "name": "3.5 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263980, + "fields": { + "id_car_serie": 7449, + "name": "2.3 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263981, + "fields": { + "id_car_serie": 7449, + "name": "2.3 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263982, + "fields": { + "id_car_serie": 7449, + "name": "2.8 MT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263983, + "fields": { + "id_car_serie": 7449, + "name": "2.4 MT 4WD (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263984, + "fields": { + "id_car_serie": 7449, + "name": "2.5 MT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263985, + "fields": { + "id_car_serie": 7449, + "name": "3.0 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263986, + "fields": { + "id_car_serie": 7450, + "name": "2.3 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263987, + "fields": { + "id_car_serie": 7450, + "name": "2.3 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263988, + "fields": { + "id_car_serie": 7450, + "name": "2.8 MT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263989, + "fields": { + "id_car_serie": 7450, + "name": "2.4 MT 4WD (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263990, + "fields": { + "id_car_serie": 7450, + "name": "2.5 MT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263991, + "fields": { + "id_car_serie": 7450, + "name": "3.0 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263992, + "fields": { + "id_car_serie": 7448, + "name": "2.3 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263993, + "fields": { + "id_car_serie": 7448, + "name": "2.3 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263994, + "fields": { + "id_car_serie": 7448, + "name": "2.8 MT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263995, + "fields": { + "id_car_serie": 7448, + "name": "2.4 MT 4WD (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263996, + "fields": { + "id_car_serie": 7448, + "name": "2.5 MT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263997, + "fields": { + "id_car_serie": 7448, + "name": "3.0 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263998, + "fields": { + "id_car_serie": 47378, + "name": "2.4 MT 4WD (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 263999, + "fields": { + "id_car_serie": 47378, + "name": "2.4 AT 4WD (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264000, + "fields": { + "id_car_serie": 9024, + "name": "2.5 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264001, + "fields": { + "id_car_serie": 9024, + "name": "2.5 MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264002, + "fields": { + "id_car_serie": 9025, + "name": "2.5 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264003, + "fields": { + "id_car_serie": 9025, + "name": "2.5 MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264004, + "fields": { + "id_car_serie": 66920, + "name": "3.0 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264005, + "fields": { + "id_car_serie": 66920, + "name": "6.7 AT 4WD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264006, + "fields": { + "id_car_serie": 66920, + "name": "6.7 MT 4WD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264007, + "fields": { + "id_car_serie": 66920, + "name": "3.6 MT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264008, + "fields": { + "id_car_serie": 66920, + "name": "3.6 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264009, + "fields": { + "id_car_serie": 66920, + "name": "3.6 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264010, + "fields": { + "id_car_serie": 66920, + "name": "3.7 AT 4WD (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264011, + "fields": { + "id_car_serie": 66920, + "name": "3.7 MT 4WD (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264012, + "fields": { + "id_car_serie": 66920, + "name": "4.7 AT (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264013, + "fields": { + "id_car_serie": 66920, + "name": "4.7 AT 4WD (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264014, + "fields": { + "id_car_serie": 66920, + "name": "5.7 AT (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264015, + "fields": { + "id_car_serie": 66920, + "name": "5.7 AT 4WD (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264016, + "fields": { + "id_car_serie": 66920, + "name": "5.7 AT (396 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264017, + "fields": { + "id_car_serie": 66920, + "name": "5.7 AT 4WD (396 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264018, + "fields": { + "id_car_serie": 66920, + "name": "6.4 AT 4WD (470 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264019, + "fields": { + "id_car_serie": 66921, + "name": "3.0 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264020, + "fields": { + "id_car_serie": 66921, + "name": "6.7 MT 4WD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264021, + "fields": { + "id_car_serie": 66921, + "name": "6.7 AT 4WD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264022, + "fields": { + "id_car_serie": 66921, + "name": "3.6 MT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264023, + "fields": { + "id_car_serie": 66921, + "name": "3.6 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264024, + "fields": { + "id_car_serie": 66921, + "name": "4.7 AT 4WD (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264025, + "fields": { + "id_car_serie": 66921, + "name": "5.7 AT 4WD (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264026, + "fields": { + "id_car_serie": 66921, + "name": "5.7 AT 4WD (396 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264027, + "fields": { + "id_car_serie": 66921, + "name": "6.4 AT 4WD (470 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264028, + "fields": { + "id_car_serie": 66919, + "name": "3.0 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264029, + "fields": { + "id_car_serie": 66919, + "name": "3.6 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264030, + "fields": { + "id_car_serie": 66919, + "name": "3.6 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264031, + "fields": { + "id_car_serie": 66919, + "name": "5.7 AT (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264032, + "fields": { + "id_car_serie": 66919, + "name": "5.7 AT 4WD (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264035, + "fields": { + "id_car_serie": 66922, + "name": "2.0 AMT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264036, + "fields": { + "id_car_serie": 66923, + "name": "3.0 AT 4WD (341 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264037, + "fields": { + "id_car_serie": 66924, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264038, + "fields": { + "id_car_serie": 66925, + "name": "3.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264039, + "fields": { + "id_car_serie": 66926, + "name": "3.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264040, + "fields": { + "id_car_serie": 66927, + "name": "3.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264041, + "fields": { + "id_car_serie": 45483, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264042, + "fields": { + "id_car_serie": 45484, + "name": "2.0 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264043, + "fields": { + "id_car_serie": 45484, + "name": "2.0 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264044, + "fields": { + "id_car_serie": 45485, + "name": "1.8 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264045, + "fields": { + "id_car_serie": 45485, + "name": "2.0 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264046, + "fields": { + "id_car_serie": 47212, + "name": "4.8 MT (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264047, + "fields": { + "id_car_serie": 47212, + "name": "5.1 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264048, + "fields": { + "id_car_serie": 47212, + "name": "5.1 MT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264049, + "fields": { + "id_car_serie": 47212, + "name": "5.1 MT (274 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264050, + "fields": { + "id_car_serie": 66928, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264051, + "fields": { + "id_car_serie": 66929, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264052, + "fields": { + "id_car_serie": 66929, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264053, + "fields": { + "id_car_serie": 66929, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264054, + "fields": { + "id_car_serie": 66929, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264055, + "fields": { + "id_car_serie": 47078, + "name": "2.0 AT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264056, + "fields": { + "id_car_serie": 47078, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264057, + "fields": { + "id_car_serie": 47078, + "name": "2.1 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264058, + "fields": { + "id_car_serie": 47078, + "name": "2.1 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264059, + "fields": { + "id_car_serie": 47078, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264060, + "fields": { + "id_car_serie": 47078, + "name": "2.0 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264061, + "fields": { + "id_car_serie": 66930, + "name": "3.0 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264062, + "fields": { + "id_car_serie": 66930, + "name": "4.0 AT 4WD (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264063, + "fields": { + "id_car_serie": 66930, + "name": "4.0 AT 4WD (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264064, + "fields": { + "id_car_serie": 66931, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264065, + "fields": { + "id_car_serie": 66931, + "name": "3.0 AT 4WD (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264066, + "fields": { + "id_car_serie": 66931, + "name": "5.5 AT 4WD (558 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264067, + "fields": { + "id_car_serie": 66931, + "name": "5.5 AT 4WD (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264068, + "fields": { + "id_car_serie": 15651, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264069, + "fields": { + "id_car_serie": 15651, + "name": "4.0 AT 4WD (469 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264070, + "fields": { + "id_car_serie": 15651, + "name": "6.0 AT (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264071, + "fields": { + "id_car_serie": 66932, + "name": "1.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264072, + "fields": { + "id_car_serie": 66932, + "name": "1.2 CVT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264073, + "fields": { + "id_car_serie": 66932, + "name": "1.6 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264074, + "fields": { + "id_car_serie": 66932, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264075, + "fields": { + "id_car_serie": 49510, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264076, + "fields": { + "id_car_serie": 49510, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264077, + "fields": { + "id_car_serie": 49510, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264078, + "fields": { + "id_car_serie": 4491, + "name": "2.5 CVT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264079, + "fields": { + "id_car_serie": 66933, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264080, + "fields": { + "id_car_serie": 66933, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264081, + "fields": { + "id_car_serie": 66934, + "name": "2.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264082, + "fields": { + "id_car_serie": 66934, + "name": "2.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264083, + "fields": { + "id_car_serie": 66935, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264084, + "fields": { + "id_car_serie": 66935, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264085, + "fields": { + "id_car_serie": 66935, + "name": "1.8 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264086, + "fields": { + "id_car_serie": 66935, + "name": "1.8 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264087, + "fields": { + "id_car_serie": 66935, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264088, + "fields": { + "id_car_serie": 66935, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264089, + "fields": { + "id_car_serie": 9521, + "name": "2.3 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264090, + "fields": { + "id_car_serie": 9521, + "name": "2.3 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264091, + "fields": { + "id_car_serie": 9521, + "name": "2.5 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264092, + "fields": { + "id_car_serie": 9521, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264093, + "fields": { + "id_car_serie": 9521, + "name": "2.5 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264094, + "fields": { + "id_car_serie": 9521, + "name": "2.5 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264095, + "fields": { + "id_car_serie": 9521, + "name": "2.5 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264096, + "fields": { + "id_car_serie": 9521, + "name": "2.5 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264097, + "fields": { + "id_car_serie": 66936, + "name": "3.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264098, + "fields": { + "id_car_serie": 66936, + "name": "3.2 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264099, + "fields": { + "id_car_serie": 66936, + "name": "3.3 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264100, + "fields": { + "id_car_serie": 9514, + "name": "2.0 MT 4WD (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264101, + "fields": { + "id_car_serie": 9514, + "name": "2.3 MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264102, + "fields": { + "id_car_serie": 9515, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264103, + "fields": { + "id_car_serie": 9515, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264104, + "fields": { + "id_car_serie": 9515, + "name": "2.0 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264105, + "fields": { + "id_car_serie": 9515, + "name": "2.0 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264106, + "fields": { + "id_car_serie": 9515, + "name": "2.0 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264107, + "fields": { + "id_car_serie": 9515, + "name": "2.0 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264108, + "fields": { + "id_car_serie": 9515, + "name": "2.0 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264109, + "fields": { + "id_car_serie": 9515, + "name": "2.0 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264110, + "fields": { + "id_car_serie": 9515, + "name": "2.4 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264111, + "fields": { + "id_car_serie": 9515, + "name": "2.4 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264112, + "fields": { + "id_car_serie": 9515, + "name": "2.0 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264113, + "fields": { + "id_car_serie": 9515, + "name": "2.0 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264114, + "fields": { + "id_car_serie": 9515, + "name": "2.0 MT 4WD (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264115, + "fields": { + "id_car_serie": 9515, + "name": "2.0 AT 4WD (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264116, + "fields": { + "id_car_serie": 66937, + "name": "4.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264117, + "fields": { + "id_car_serie": 66937, + "name": "4.0 MT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264118, + "fields": { + "id_car_serie": 66938, + "name": "4.0 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264119, + "fields": { + "id_car_serie": 66938, + "name": "4.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264120, + "fields": { + "id_car_serie": 66938, + "name": "4.0 MT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264121, + "fields": { + "id_car_serie": 3953, + "name": "1.2 AMT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264122, + "fields": { + "id_car_serie": 3953, + "name": "1.4 AMT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264123, + "fields": { + "id_car_serie": 3953, + "name": "1.6 AMT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264124, + "fields": { + "id_car_serie": 3952, + "name": "1.2 AMT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264125, + "fields": { + "id_car_serie": 3952, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264126, + "fields": { + "id_car_serie": 3952, + "name": "1.4 AMT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264127, + "fields": { + "id_car_serie": 3952, + "name": "1.6 AMT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264128, + "fields": { + "id_car_serie": 66939, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264129, + "fields": { + "id_car_serie": 66939, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264130, + "fields": { + "id_car_serie": 66939, + "name": "1.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264131, + "fields": { + "id_car_serie": 66939, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264132, + "fields": { + "id_car_serie": 66939, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264133, + "fields": { + "id_car_serie": 66939, + "name": "1.6 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264134, + "fields": { + "id_car_serie": 66939, + "name": "1.6 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264135, + "fields": { + "id_car_serie": 14693, + "name": "2.0 AMT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264136, + "fields": { + "id_car_serie": 46473, + "name": "3.3 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264137, + "fields": { + "id_car_serie": 2331, + "name": "1.8 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264138, + "fields": { + "id_car_serie": 2331, + "name": "1.8 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264139, + "fields": { + "id_car_serie": 2331, + "name": "1.8 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264140, + "fields": { + "id_car_serie": 2331, + "name": "1.8 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264141, + "fields": { + "id_car_serie": 2331, + "name": "2.7 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264142, + "fields": { + "id_car_serie": 53895, + "name": "2.4 CVT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264143, + "fields": { + "id_car_serie": 66940, + "name": "2.4 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264144, + "fields": { + "id_car_serie": 66940, + "name": "2.4 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264145, + "fields": { + "id_car_serie": 66941, + "name": "2.8 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264146, + "fields": { + "id_car_serie": 66941, + "name": "2.8 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264147, + "fields": { + "id_car_serie": 66942, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264148, + "fields": { + "id_car_serie": 66942, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264149, + "fields": { + "id_car_serie": 66943, + "name": "1.6 MT 4WD (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264150, + "fields": { + "id_car_serie": 66943, + "name": "1.6 AT 4WD (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264151, + "fields": { + "id_car_serie": 66943, + "name": "1.8 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264152, + "fields": { + "id_car_serie": 66943, + "name": "1.8 AT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264153, + "fields": { + "id_car_serie": 4185, + "name": "1.2 CVT 4WD (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264154, + "fields": { + "id_car_serie": 4185, + "name": "1.2 MT 4WD (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264155, + "fields": { + "id_car_serie": 9114, + "name": "1.2 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264156, + "fields": { + "id_car_serie": 46152, + "name": "1.6 CVT 4WD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264157, + "fields": { + "id_car_serie": 46152, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264158, + "fields": { + "id_car_serie": 46152, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264159, + "fields": { + "id_car_serie": 45196, + "name": "2.5 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264160, + "fields": { + "id_car_serie": 45196, + "name": "2.5 MT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264161, + "fields": { + "id_car_serie": 45196, + "name": "2.5 MT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264162, + "fields": { + "id_car_serie": 45196, + "name": "2.5 MT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264163, + "fields": { + "id_car_serie": 45195, + "name": "2.5 MT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264164, + "fields": { + "id_car_serie": 45195, + "name": "2.5 MT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264165, + "fields": { + "id_car_serie": 15422, + "name": "2.5 MT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264166, + "fields": { + "id_car_serie": 15422, + "name": "2.5 MT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264167, + "fields": { + "id_car_serie": 15421, + "name": "2.5 MT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264168, + "fields": { + "id_car_serie": 15421, + "name": "2.5 MT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264169, + "fields": { + "id_car_serie": 15425, + "name": "2.0 MT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264170, + "fields": { + "id_car_serie": 15425, + "name": "2.0 AT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264171, + "fields": { + "id_car_serie": 15425, + "name": "2.0 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264172, + "fields": { + "id_car_serie": 15425, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264173, + "fields": { + "id_car_serie": 15428, + "name": "2.0 MT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264174, + "fields": { + "id_car_serie": 15428, + "name": "2.0 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264175, + "fields": { + "id_car_serie": 15428, + "name": "2.0 AT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264176, + "fields": { + "id_car_serie": 15428, + "name": "2.0 MT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264177, + "fields": { + "id_car_serie": 15428, + "name": "2.0 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264178, + "fields": { + "id_car_serie": 15428, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264179, + "fields": { + "id_car_serie": 15427, + "name": "2.0 MT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264180, + "fields": { + "id_car_serie": 15427, + "name": "2.0 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264181, + "fields": { + "id_car_serie": 15427, + "name": "2.0 MT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264182, + "fields": { + "id_car_serie": 15427, + "name": "2.0 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264183, + "fields": { + "id_car_serie": 15429, + "name": "2.0 MT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264184, + "fields": { + "id_car_serie": 15429, + "name": "2.0 MT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264185, + "fields": { + "id_car_serie": 15429, + "name": "2.0 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264186, + "fields": { + "id_car_serie": 15429, + "name": "2.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264187, + "fields": { + "id_car_serie": 15431, + "name": "2.0 MT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264188, + "fields": { + "id_car_serie": 15431, + "name": "2.0 MT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264189, + "fields": { + "id_car_serie": 15431, + "name": "2.0 MT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264190, + "fields": { + "id_car_serie": 15431, + "name": "2.0 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264191, + "fields": { + "id_car_serie": 15431, + "name": "2.0 MT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264192, + "fields": { + "id_car_serie": 15431, + "name": "2.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264193, + "fields": { + "id_car_serie": 15430, + "name": "2.0 MT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264194, + "fields": { + "id_car_serie": 15430, + "name": "2.0 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264195, + "fields": { + "id_car_serie": 15430, + "name": "2.0 MT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264196, + "fields": { + "id_car_serie": 15430, + "name": "2.0 MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264197, + "fields": { + "id_car_serie": 15430, + "name": "2.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264198, + "fields": { + "id_car_serie": 15430, + "name": "2.0 MT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264199, + "fields": { + "id_car_serie": 15430, + "name": "2.0 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264200, + "fields": { + "id_car_serie": 15430, + "name": "2.0 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264201, + "fields": { + "id_car_serie": 15430, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264202, + "fields": { + "id_car_serie": 16981, + "name": "2.0 MT 4WD (308 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264203, + "fields": { + "id_car_serie": 16981, + "name": "2.5 MT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264204, + "fields": { + "id_car_serie": 16981, + "name": "2.5 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264205, + "fields": { + "id_car_serie": 16981, + "name": "2.5 MT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264206, + "fields": { + "id_car_serie": 16981, + "name": "2.5 MT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264207, + "fields": { + "id_car_serie": 16980, + "name": "2.5 MT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264208, + "fields": { + "id_car_serie": 16980, + "name": "2.0 MT 4WD (308 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264209, + "fields": { + "id_car_serie": 16980, + "name": "2.5 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264210, + "fields": { + "id_car_serie": 16982, + "name": "2.0 MT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264211, + "fields": { + "id_car_serie": 16982, + "name": "2.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264212, + "fields": { + "id_car_serie": 16982, + "name": "2.5 MT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264213, + "fields": { + "id_car_serie": 16984, + "name": "2.0 MT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264214, + "fields": { + "id_car_serie": 16984, + "name": "2.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264215, + "fields": { + "id_car_serie": 45209, + "name": "2.0 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264216, + "fields": { + "id_car_serie": 45209, + "name": "2.0 MT 4WD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264217, + "fields": { + "id_car_serie": 45209, + "name": "2.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264218, + "fields": { + "id_car_serie": 45209, + "name": "2.0 MT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264219, + "fields": { + "id_car_serie": 15116, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264220, + "fields": { + "id_car_serie": 15116, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264221, + "fields": { + "id_car_serie": 15116, + "name": "2.0 CVT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264222, + "fields": { + "id_car_serie": 15116, + "name": "2.5 CVT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264223, + "fields": { + "id_car_serie": 15116, + "name": "2.5 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264224, + "fields": { + "id_car_serie": 15116, + "name": "2.5 MT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264225, + "fields": { + "id_car_serie": 15116, + "name": "2.5 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264226, + "fields": { + "id_car_serie": 15116, + "name": "2.5 CVT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264227, + "fields": { + "id_car_serie": 4191, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264228, + "fields": { + "id_car_serie": 4191, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264229, + "fields": { + "id_car_serie": 4191, + "name": "2.5 CVT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264230, + "fields": { + "id_car_serie": 4191, + "name": "2.5 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264231, + "fields": { + "id_car_serie": 4191, + "name": "2.5 MT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264232, + "fields": { + "id_car_serie": 4191, + "name": "2.5 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264233, + "fields": { + "id_car_serie": 4192, + "name": "1.8 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264234, + "fields": { + "id_car_serie": 4192, + "name": "1.8 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264235, + "fields": { + "id_car_serie": 4192, + "name": "1.8 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264236, + "fields": { + "id_car_serie": 4192, + "name": "1.8 AT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264237, + "fields": { + "id_car_serie": 4192, + "name": "1.8 MT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264238, + "fields": { + "id_car_serie": 4192, + "name": "1.8 AT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264239, + "fields": { + "id_car_serie": 4192, + "name": "1.8 MT 4WD (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264240, + "fields": { + "id_car_serie": 4192, + "name": "1.8 AT 4WD (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264241, + "fields": { + "id_car_serie": 4192, + "name": "1.8 MT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264242, + "fields": { + "id_car_serie": 4192, + "name": "1.8 AT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264243, + "fields": { + "id_car_serie": 4192, + "name": "1.8 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264244, + "fields": { + "id_car_serie": 4192, + "name": "1.8 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264245, + "fields": { + "id_car_serie": 4193, + "name": "1.8 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264246, + "fields": { + "id_car_serie": 4193, + "name": "1.8 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264247, + "fields": { + "id_car_serie": 4193, + "name": "1.8 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264248, + "fields": { + "id_car_serie": 4193, + "name": "1.8 AT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264249, + "fields": { + "id_car_serie": 4193, + "name": "1.8 MT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264250, + "fields": { + "id_car_serie": 4193, + "name": "1.8 AT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264251, + "fields": { + "id_car_serie": 4193, + "name": "1.8 AT 4WD (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264252, + "fields": { + "id_car_serie": 4193, + "name": "1.8 MT 4WD (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264253, + "fields": { + "id_car_serie": 4193, + "name": "1.8 AT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264254, + "fields": { + "id_car_serie": 4193, + "name": "1.8 MT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264255, + "fields": { + "id_car_serie": 4193, + "name": "1.8 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264256, + "fields": { + "id_car_serie": 7665, + "name": "1.6 MT 4WD (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264257, + "fields": { + "id_car_serie": 7665, + "name": "1.8 AT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264258, + "fields": { + "id_car_serie": 7665, + "name": "1.8 MT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264259, + "fields": { + "id_car_serie": 7667, + "name": "1.8 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264260, + "fields": { + "id_car_serie": 7667, + "name": "1.8 MT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264261, + "fields": { + "id_car_serie": 7666, + "name": "1.6 MT 4WD (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264262, + "fields": { + "id_car_serie": 7666, + "name": "1.8 AT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264263, + "fields": { + "id_car_serie": 7666, + "name": "1.8 MT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264264, + "fields": { + "id_car_serie": 7664, + "name": "1.8 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264265, + "fields": { + "id_car_serie": 7664, + "name": "1.8 MT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264266, + "fields": { + "id_car_serie": 4213, + "name": "2.0 CVT 4WD (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264267, + "fields": { + "id_car_serie": 7697, + "name": "2.0 CVT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264268, + "fields": { + "id_car_serie": 4216, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264269, + "fields": { + "id_car_serie": 4216, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264270, + "fields": { + "id_car_serie": 7699, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264271, + "fields": { + "id_car_serie": 2385, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264272, + "fields": { + "id_car_serie": 15571, + "name": "0.7 MT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264273, + "fields": { + "id_car_serie": 15571, + "name": "0.7 AT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264274, + "fields": { + "id_car_serie": 15571, + "name": "1.0 MT 4WD (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264275, + "fields": { + "id_car_serie": 15571, + "name": "1.3 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264276, + "fields": { + "id_car_serie": 15571, + "name": "1.3 MT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264277, + "fields": { + "id_car_serie": 15571, + "name": "1.3 AT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264278, + "fields": { + "id_car_serie": 15571, + "name": "1.3 MT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264279, + "fields": { + "id_car_serie": 15571, + "name": "1.9 MT 4WD (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264280, + "fields": { + "id_car_serie": 15571, + "name": "1.9 MT 4WD (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264281, + "fields": { + "id_car_serie": 2388, + "name": "0.7 CVT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264282, + "fields": { + "id_car_serie": 2388, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264283, + "fields": { + "id_car_serie": 4222, + "name": "1.0 AT 4WD (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264284, + "fields": { + "id_car_serie": 4222, + "name": "1.0 AT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264285, + "fields": { + "id_car_serie": 4222, + "name": "1.3 MT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264286, + "fields": { + "id_car_serie": 4222, + "name": "1.3 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264287, + "fields": { + "id_car_serie": 4222, + "name": "1.3 MT 4WD (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264288, + "fields": { + "id_car_serie": 4222, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264289, + "fields": { + "id_car_serie": 7719, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264290, + "fields": { + "id_car_serie": 7719, + "name": "1.2 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264291, + "fields": { + "id_car_serie": 7719, + "name": "1.2 AT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264292, + "fields": { + "id_car_serie": 7719, + "name": "1.2 MT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264293, + "fields": { + "id_car_serie": 66944, + "name": "1.6 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264294, + "fields": { + "id_car_serie": 66944, + "name": "1.6 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264295, + "fields": { + "id_car_serie": 66945, + "name": "1.0 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264296, + "fields": { + "id_car_serie": 66945, + "name": "1.0 AT 4WD (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264297, + "fields": { + "id_car_serie": 66946, + "name": "2.0 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264298, + "fields": { + "id_car_serie": 66946, + "name": "2.0 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264299, + "fields": { + "id_car_serie": 66946, + "name": "3.6 AT (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264300, + "fields": { + "id_car_serie": 66946, + "name": "3.6 AT 4WD (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264301, + "fields": { + "id_car_serie": 66947, + "name": "2.0 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264302, + "fields": { + "id_car_serie": 66947, + "name": "2.0 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264303, + "fields": { + "id_car_serie": 66947, + "name": "3.6 AT (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264304, + "fields": { + "id_car_serie": 66947, + "name": "3.6 AT 4WD (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264305, + "fields": { + "id_car_serie": 10727, + "name": "0.8 AMT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264306, + "fields": { + "id_car_serie": 66948, + "name": "2.7 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264307, + "fields": { + "id_car_serie": 66948, + "name": "2.7 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264308, + "fields": { + "id_car_serie": 66949, + "name": "2.7 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264309, + "fields": { + "id_car_serie": 66949, + "name": "2.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264310, + "fields": { + "id_car_serie": 66949, + "name": "2.7 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264311, + "fields": { + "id_car_serie": 66949, + "name": "2.7 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264312, + "fields": { + "id_car_serie": 66949, + "name": "2.7 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264313, + "fields": { + "id_car_serie": 66949, + "name": "2.7 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264314, + "fields": { + "id_car_serie": 66949, + "name": "2.8 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264315, + "fields": { + "id_car_serie": 66949, + "name": "2.8 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264316, + "fields": { + "id_car_serie": 4385, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264317, + "fields": { + "id_car_serie": 4385, + "name": "1.4 CVT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264318, + "fields": { + "id_car_serie": 4385, + "name": "1.4 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264319, + "fields": { + "id_car_serie": 4385, + "name": "1.4 CVT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264320, + "fields": { + "id_car_serie": 4385, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264321, + "fields": { + "id_car_serie": 4385, + "name": "1.4 CVT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264322, + "fields": { + "id_car_serie": 4385, + "name": "1.7 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264323, + "fields": { + "id_car_serie": 4385, + "name": "2.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264324, + "fields": { + "id_car_serie": 4385, + "name": "1.6 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264325, + "fields": { + "id_car_serie": 4386, + "name": "1.4 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264326, + "fields": { + "id_car_serie": 4386, + "name": "1.4 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264327, + "fields": { + "id_car_serie": 4386, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264328, + "fields": { + "id_car_serie": 4386, + "name": "1.4 CVT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264329, + "fields": { + "id_car_serie": 4386, + "name": "1.4 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264330, + "fields": { + "id_car_serie": 4386, + "name": "1.4 CVT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264331, + "fields": { + "id_car_serie": 4386, + "name": "1.4 CVT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264332, + "fields": { + "id_car_serie": 4386, + "name": "1.4 CVT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264333, + "fields": { + "id_car_serie": 4386, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264334, + "fields": { + "id_car_serie": 4386, + "name": "1.7 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264335, + "fields": { + "id_car_serie": 4386, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264336, + "fields": { + "id_car_serie": 4386, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264337, + "fields": { + "id_car_serie": 4386, + "name": "1.6 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264338, + "fields": { + "id_car_serie": 4384, + "name": "1.4 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264339, + "fields": { + "id_car_serie": 4384, + "name": "1.4 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264340, + "fields": { + "id_car_serie": 4384, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264341, + "fields": { + "id_car_serie": 4384, + "name": "1.4 CVT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264342, + "fields": { + "id_car_serie": 4384, + "name": "1.4 CVT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264343, + "fields": { + "id_car_serie": 4384, + "name": "1.4 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264344, + "fields": { + "id_car_serie": 4384, + "name": "1.4 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264345, + "fields": { + "id_car_serie": 4384, + "name": "1.4 CVT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264346, + "fields": { + "id_car_serie": 4384, + "name": "1.7 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264347, + "fields": { + "id_car_serie": 4384, + "name": "2.0 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264348, + "fields": { + "id_car_serie": 4384, + "name": "2.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264349, + "fields": { + "id_car_serie": 4384, + "name": "1.6 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264350, + "fields": { + "id_car_serie": 66950, + "name": "1.3 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264351, + "fields": { + "id_car_serie": 66950, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264352, + "fields": { + "id_car_serie": 66950, + "name": "1.3 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264353, + "fields": { + "id_car_serie": 66950, + "name": "1.3 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264354, + "fields": { + "id_car_serie": 66950, + "name": "1.3 AT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264355, + "fields": { + "id_car_serie": 66950, + "name": "1.3 MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264356, + "fields": { + "id_car_serie": 8532, + "name": "2.9 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264357, + "fields": { + "id_car_serie": 8532, + "name": "2.9 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264358, + "fields": { + "id_car_serie": 8532, + "name": "2.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264359, + "fields": { + "id_car_serie": 8532, + "name": "2.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264360, + "fields": { + "id_car_serie": 847, + "name": "2.0 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264361, + "fields": { + "id_car_serie": 847, + "name": "2.0 AMT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264362, + "fields": { + "id_car_serie": 847, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264363, + "fields": { + "id_car_serie": 847, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264364, + "fields": { + "id_car_serie": 847, + "name": "2.7 AT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264365, + "fields": { + "id_car_serie": 847, + "name": "2.7 AT 4WD (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264366, + "fields": { + "id_car_serie": 847, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264367, + "fields": { + "id_car_serie": 847, + "name": "3.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264368, + "fields": { + "id_car_serie": 66951, + "name": "1.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264369, + "fields": { + "id_car_serie": 66951, + "name": "1.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264370, + "fields": { + "id_car_serie": 66951, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264371, + "fields": { + "id_car_serie": 66951, + "name": "2.5 CVT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264372, + "fields": { + "id_car_serie": 66951, + "name": "2.5 CVT 4WD (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264373, + "fields": { + "id_car_serie": 66951, + "name": "2.5 CVT (209 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264374, + "fields": { + "id_car_serie": 3324, + "name": "3.0 MT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264375, + "fields": { + "id_car_serie": 3324, + "name": "3.0 AT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264376, + "fields": { + "id_car_serie": 45397, + "name": "3.5 AT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264377, + "fields": { + "id_car_serie": 46861, + "name": "2.7 AT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264378, + "fields": { + "id_car_serie": 46861, + "name": "3.5 AT 4WD (282 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264379, + "fields": { + "id_car_serie": 46861, + "name": "3.5 AT 4WD (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264380, + "fields": { + "id_car_serie": 46861, + "name": "5.0 AT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264381, + "fields": { + "id_car_serie": 46861, + "name": "5.0 AT 4WD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264382, + "fields": { + "id_car_serie": 46860, + "name": "2.7 AT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264383, + "fields": { + "id_car_serie": 46860, + "name": "3.5 AT 4WD (282 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264384, + "fields": { + "id_car_serie": 46860, + "name": "3.5 AT 4WD (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264385, + "fields": { + "id_car_serie": 46860, + "name": "5.0 AT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264386, + "fields": { + "id_car_serie": 46860, + "name": "5.0 AT 4WD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264387, + "fields": { + "id_car_serie": 6123, + "name": "3.5 AT 4WD (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264388, + "fields": { + "id_car_serie": 6123, + "name": "3.7 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264389, + "fields": { + "id_car_serie": 6123, + "name": "4.6 AT 4WD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264390, + "fields": { + "id_car_serie": 6123, + "name": "4.6 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264391, + "fields": { + "id_car_serie": 6123, + "name": "4.6 AT 4WD (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264392, + "fields": { + "id_car_serie": 6123, + "name": "5.0 AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264393, + "fields": { + "id_car_serie": 6123, + "name": "5.4 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264394, + "fields": { + "id_car_serie": 6123, + "name": "6.1 AT 4WD (411 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264395, + "fields": { + "id_car_serie": 3327, + "name": "5.4 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264396, + "fields": { + "id_car_serie": 3329, + "name": "5.4 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264397, + "fields": { + "id_car_serie": 3328, + "name": "3.5 AT 4WD (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264398, + "fields": { + "id_car_serie": 3328, + "name": "3.7 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264399, + "fields": { + "id_car_serie": 3328, + "name": "4.6 AT 4WD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264400, + "fields": { + "id_car_serie": 3328, + "name": "4.6 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264401, + "fields": { + "id_car_serie": 3328, + "name": "4.6 AT (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264402, + "fields": { + "id_car_serie": 3328, + "name": "4.6 AT 4WD (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264403, + "fields": { + "id_car_serie": 3328, + "name": "5.0 AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264404, + "fields": { + "id_car_serie": 3328, + "name": "5.4 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264405, + "fields": { + "id_car_serie": 3328, + "name": "5.4 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264406, + "fields": { + "id_car_serie": 46862, + "name": "3.5 AT 4WD (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264407, + "fields": { + "id_car_serie": 46862, + "name": "3.7 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264408, + "fields": { + "id_car_serie": 46862, + "name": "4.6 AT 4WD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264409, + "fields": { + "id_car_serie": 46862, + "name": "4.6 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264410, + "fields": { + "id_car_serie": 46862, + "name": "4.6 AT 4WD (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264411, + "fields": { + "id_car_serie": 46862, + "name": "5.0 AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264412, + "fields": { + "id_car_serie": 46862, + "name": "5.0 AT 4WD (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264413, + "fields": { + "id_car_serie": 46862, + "name": "5.4 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264414, + "fields": { + "id_car_serie": 46862, + "name": "6.1 AT 4WD (411 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264415, + "fields": { + "id_car_serie": 6124, + "name": "4.2 AT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264416, + "fields": { + "id_car_serie": 6124, + "name": "4.6 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264417, + "fields": { + "id_car_serie": 6124, + "name": "5.4 AT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264418, + "fields": { + "id_car_serie": 6125, + "name": "4.2 AT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264419, + "fields": { + "id_car_serie": 6125, + "name": "4.6 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264420, + "fields": { + "id_car_serie": 6125, + "name": "5.4 AT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264421, + "fields": { + "id_car_serie": 6126, + "name": "4.2 AT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264422, + "fields": { + "id_car_serie": 6126, + "name": "4.6 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264423, + "fields": { + "id_car_serie": 6126, + "name": "5.4 AT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264424, + "fields": { + "id_car_serie": 6129, + "name": "4.2 MT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264425, + "fields": { + "id_car_serie": 6129, + "name": "4.2 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264426, + "fields": { + "id_car_serie": 6129, + "name": "4.2 MT 4WD (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264427, + "fields": { + "id_car_serie": 6129, + "name": "4.2 AT 4WD (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264428, + "fields": { + "id_car_serie": 6129, + "name": "4.6 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264429, + "fields": { + "id_car_serie": 6129, + "name": "5.4 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264430, + "fields": { + "id_car_serie": 6127, + "name": "4.6 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264431, + "fields": { + "id_car_serie": 6127, + "name": "5.4 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264432, + "fields": { + "id_car_serie": 6128, + "name": "4.6 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264433, + "fields": { + "id_car_serie": 6128, + "name": "5.4 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264434, + "fields": { + "id_car_serie": 6128, + "name": "5.4 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264435, + "fields": { + "id_car_serie": 6130, + "name": "4.2 AT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264436, + "fields": { + "id_car_serie": 6130, + "name": "4.2 MT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264437, + "fields": { + "id_car_serie": 46863, + "name": "4.2 MT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264438, + "fields": { + "id_car_serie": 46863, + "name": "4.2 AT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264439, + "fields": { + "id_car_serie": 6131, + "name": "4.2 MT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264440, + "fields": { + "id_car_serie": 6131, + "name": "4.2 AT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264441, + "fields": { + "id_car_serie": 66952, + "name": "1.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264442, + "fields": { + "id_car_serie": 66953, + "name": "1.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264443, + "fields": { + "id_car_serie": 66954, + "name": "2.0 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264444, + "fields": { + "id_car_serie": 6232, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264445, + "fields": { + "id_car_serie": 6232, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264446, + "fields": { + "id_car_serie": 6232, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264447, + "fields": { + "id_car_serie": 6232, + "name": "1.8 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264448, + "fields": { + "id_car_serie": 6232, + "name": "1.8 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264449, + "fields": { + "id_car_serie": 6232, + "name": "1.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264450, + "fields": { + "id_car_serie": 6232, + "name": "1.8 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264451, + "fields": { + "id_car_serie": 3380, + "name": "1.6 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264452, + "fields": { + "id_car_serie": 3380, + "name": "1.6 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264453, + "fields": { + "id_car_serie": 3379, + "name": "1.6 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264454, + "fields": { + "id_car_serie": 3379, + "name": "1.6 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264455, + "fields": { + "id_car_serie": 46547, + "name": "2.5 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264456, + "fields": { + "id_car_serie": 46547, + "name": "3.7 AT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264457, + "fields": { + "id_car_serie": 46547, + "name": "3.7 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264458, + "fields": { + "id_car_serie": 45693, + "name": "3.6 AT 4WD (281 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264459, + "fields": { + "id_car_serie": 45693, + "name": "3.6 AT 4WD (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264460, + "fields": { + "id_car_serie": 45829, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264461, + "fields": { + "id_car_serie": 45829, + "name": "3.6 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264462, + "fields": { + "id_car_serie": 45830, + "name": "3.6 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264463, + "fields": { + "id_car_serie": 46871, + "name": "3.6 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264464, + "fields": { + "id_car_serie": 66955, + "name": "2.0 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264465, + "fields": { + "id_car_serie": 66955, + "name": "2.0 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264466, + "fields": { + "id_car_serie": 66955, + "name": "2.0 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264467, + "fields": { + "id_car_serie": 66955, + "name": "2.0 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264468, + "fields": { + "id_car_serie": 66955, + "name": "2.0 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264469, + "fields": { + "id_car_serie": 66955, + "name": "2.0 MT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264470, + "fields": { + "id_car_serie": 66955, + "name": "2.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264471, + "fields": { + "id_car_serie": 66955, + "name": "2.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264472, + "fields": { + "id_car_serie": 66955, + "name": "2.8 MT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264473, + "fields": { + "id_car_serie": 66955, + "name": "2.8 AT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264474, + "fields": { + "id_car_serie": 66955, + "name": "2.8 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264475, + "fields": { + "id_car_serie": 66955, + "name": "2.8 MT 4WD (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264476, + "fields": { + "id_car_serie": 66955, + "name": "4.3 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264477, + "fields": { + "id_car_serie": 66955, + "name": "4.3 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264478, + "fields": { + "id_car_serie": 66955, + "name": "2.2 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264479, + "fields": { + "id_car_serie": 8583, + "name": "4.3 AT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264480, + "fields": { + "id_car_serie": 8584, + "name": "4.3 AT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264481, + "fields": { + "id_car_serie": 8584, + "name": "4.3 MT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264482, + "fields": { + "id_car_serie": 47215, + "name": "4.3 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264483, + "fields": { + "id_car_serie": 47215, + "name": "5.3 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264484, + "fields": { + "id_car_serie": 47215, + "name": "6.2 AT 4WD (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264485, + "fields": { + "id_car_serie": 46430, + "name": "4.3 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264486, + "fields": { + "id_car_serie": 46430, + "name": "5.3 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264487, + "fields": { + "id_car_serie": 46430, + "name": "6.2 AT 4WD (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264488, + "fields": { + "id_car_serie": 10800, + "name": "4.3 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264489, + "fields": { + "id_car_serie": 10800, + "name": "5.3 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264490, + "fields": { + "id_car_serie": 10800, + "name": "6.2 AT 4WD (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264491, + "fields": { + "id_car_serie": 10798, + "name": "4.3 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264492, + "fields": { + "id_car_serie": 10798, + "name": "5.3 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264493, + "fields": { + "id_car_serie": 3392, + "name": "4.8 AT 4WD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264494, + "fields": { + "id_car_serie": 3392, + "name": "5.3 AT 4WD (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264495, + "fields": { + "id_car_serie": 3390, + "name": "4.8 AT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264496, + "fields": { + "id_car_serie": 3390, + "name": "4.8 AT 4WD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264497, + "fields": { + "id_car_serie": 3390, + "name": "5.3 AT 4WD (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264498, + "fields": { + "id_car_serie": 3391, + "name": "4.8 AT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264499, + "fields": { + "id_car_serie": 3391, + "name": "4.8 AT 4WD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264500, + "fields": { + "id_car_serie": 3391, + "name": "5.3 AT 4WD (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264501, + "fields": { + "id_car_serie": 6239, + "name": "4.3 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264502, + "fields": { + "id_car_serie": 6239, + "name": "4.3 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264503, + "fields": { + "id_car_serie": 6239, + "name": "5.3 AT 4WD (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264504, + "fields": { + "id_car_serie": 6239, + "name": "5.3 MT 4WD (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264505, + "fields": { + "id_car_serie": 6241, + "name": "5.3 MT 4WD (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264506, + "fields": { + "id_car_serie": 6241, + "name": "5.3 AT 4WD (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264507, + "fields": { + "id_car_serie": 6241, + "name": "6.0 MT 4WD (323 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264508, + "fields": { + "id_car_serie": 6241, + "name": "6.0 AT 4WD (323 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264509, + "fields": { + "id_car_serie": 6240, + "name": "4.3 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264510, + "fields": { + "id_car_serie": 6240, + "name": "4.3 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264511, + "fields": { + "id_car_serie": 6240, + "name": "5.3 MT 4WD (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264512, + "fields": { + "id_car_serie": 6240, + "name": "5.3 AT 4WD (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264513, + "fields": { + "id_car_serie": 975, + "name": "4.3 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264514, + "fields": { + "id_car_serie": 66956, + "name": "1.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264515, + "fields": { + "id_car_serie": 66956, + "name": "1.5 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264516, + "fields": { + "id_car_serie": 66956, + "name": "2.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264517, + "fields": { + "id_car_serie": 45695, + "name": "2.4 AT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264518, + "fields": { + "id_car_serie": 45695, + "name": "3.6 AT 4WD (301 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264519, + "fields": { + "id_car_serie": 45696, + "name": "2.4 AT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264520, + "fields": { + "id_car_serie": 45696, + "name": "3.0 AT 4WD (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264521, + "fields": { + "id_car_serie": 45696, + "name": "3.6 AT 4WD (301 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264522, + "fields": { + "id_car_serie": 977, + "name": "4.3 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264523, + "fields": { + "id_car_serie": 53841, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264524, + "fields": { + "id_car_serie": 66957, + "name": "1.5 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264525, + "fields": { + "id_car_serie": 66957, + "name": "2.0 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264526, + "fields": { + "id_car_serie": 66957, + "name": "2.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264527, + "fields": { + "id_car_serie": 66957, + "name": "2.0 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264528, + "fields": { + "id_car_serie": 66957, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264529, + "fields": { + "id_car_serie": 66957, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264530, + "fields": { + "id_car_serie": 66957, + "name": "2.0 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264531, + "fields": { + "id_car_serie": 66957, + "name": "2.0 AT 4WD (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264532, + "fields": { + "id_car_serie": 66958, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264533, + "fields": { + "id_car_serie": 66958, + "name": "2.0 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264534, + "fields": { + "id_car_serie": 66958, + "name": "3.0 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264535, + "fields": { + "id_car_serie": 66958, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264536, + "fields": { + "id_car_serie": 66958, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264537, + "fields": { + "id_car_serie": 66958, + "name": "3.0 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264538, + "fields": { + "id_car_serie": 66958, + "name": "5.0 AT 4WD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264539, + "fields": { + "id_car_serie": 66958, + "name": "2.0 AT 4WD (404 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264540, + "fields": { + "id_car_serie": 66959, + "name": "2.0 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264541, + "fields": { + "id_car_serie": 66959, + "name": "2.0 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264542, + "fields": { + "id_car_serie": 66959, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264543, + "fields": { + "id_car_serie": 66959, + "name": "2.0 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264544, + "fields": { + "id_car_serie": 66960, + "name": "2.0 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264545, + "fields": { + "id_car_serie": 66960, + "name": "2.0 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264546, + "fields": { + "id_car_serie": 66960, + "name": "2.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264547, + "fields": { + "id_car_serie": 66960, + "name": "2.0 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264548, + "fields": { + "id_car_serie": 66961, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264549, + "fields": { + "id_car_serie": 66961, + "name": "2.0 AMT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264550, + "fields": { + "id_car_serie": 4552, + "name": "2.2 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264551, + "fields": { + "id_car_serie": 66962, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264552, + "fields": { + "id_car_serie": 2899, + "name": "1.0 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264553, + "fields": { + "id_car_serie": 2899, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264554, + "fields": { + "id_car_serie": 2899, + "name": "1.0 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264555, + "fields": { + "id_car_serie": 63837, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264556, + "fields": { + "id_car_serie": 63837, + "name": "1.0 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264557, + "fields": { + "id_car_serie": 63837, + "name": "1.4 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264558, + "fields": { + "id_car_serie": 63837, + "name": "1.4 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264559, + "fields": { + "id_car_serie": 63837, + "name": "1.5 AMT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264560, + "fields": { + "id_car_serie": 63837, + "name": "2.0 AMT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264561, + "fields": { + "id_car_serie": 63838, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264562, + "fields": { + "id_car_serie": 63838, + "name": "1.0 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264563, + "fields": { + "id_car_serie": 63838, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264564, + "fields": { + "id_car_serie": 63838, + "name": "2.0 AMT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264565, + "fields": { + "id_car_serie": 62721, + "name": "2.0 AMT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264566, + "fields": { + "id_car_serie": 62721, + "name": "2.0 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264567, + "fields": { + "id_car_serie": 62721, + "name": "2.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264568, + "fields": { + "id_car_serie": 62721, + "name": "2.0 AMT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264569, + "fields": { + "id_car_serie": 62721, + "name": "2.0 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264570, + "fields": { + "id_car_serie": 54010, + "name": "2.0 AMT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264571, + "fields": { + "id_car_serie": 54010, + "name": "2.0 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264572, + "fields": { + "id_car_serie": 54010, + "name": "2.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264573, + "fields": { + "id_car_serie": 54010, + "name": "2.0 AMT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264574, + "fields": { + "id_car_serie": 54010, + "name": "2.0 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264575, + "fields": { + "id_car_serie": 62722, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264576, + "fields": { + "id_car_serie": 62722, + "name": "1.8 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264577, + "fields": { + "id_car_serie": 62722, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264578, + "fields": { + "id_car_serie": 62722, + "name": "1.8 CVT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264579, + "fields": { + "id_car_serie": 62722, + "name": "1.8 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264580, + "fields": { + "id_car_serie": 62722, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264581, + "fields": { + "id_car_serie": 62722, + "name": "2.0 CVT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264582, + "fields": { + "id_car_serie": 62722, + "name": "2.0 AMT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264583, + "fields": { + "id_car_serie": 62722, + "name": "2.0 MT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264584, + "fields": { + "id_car_serie": 62722, + "name": "2.0 CVT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264585, + "fields": { + "id_car_serie": 62722, + "name": "3.2 CVT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264586, + "fields": { + "id_car_serie": 62722, + "name": "3.2 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264587, + "fields": { + "id_car_serie": 62722, + "name": "3.2 MT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264588, + "fields": { + "id_car_serie": 62722, + "name": "3.0 CVT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264589, + "fields": { + "id_car_serie": 62722, + "name": "3.0 MT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264590, + "fields": { + "id_car_serie": 62722, + "name": "2.0 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264591, + "fields": { + "id_car_serie": 62722, + "name": "3.0 AT 4WD (239 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264592, + "fields": { + "id_car_serie": 62722, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264593, + "fields": { + "id_car_serie": 62722, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264594, + "fields": { + "id_car_serie": 62722, + "name": "2.0 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264595, + "fields": { + "id_car_serie": 62722, + "name": "2.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264596, + "fields": { + "id_car_serie": 62722, + "name": "2.7 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264597, + "fields": { + "id_car_serie": 62722, + "name": "2.7 CVT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264598, + "fields": { + "id_car_serie": 62722, + "name": "3.0 MT 4WD (239 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264599, + "fields": { + "id_car_serie": 63840, + "name": "2.0 AMT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264600, + "fields": { + "id_car_serie": 63009, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264601, + "fields": { + "id_car_serie": 63009, + "name": "2.0 AMT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264602, + "fields": { + "id_car_serie": 63009, + "name": "2.0 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264603, + "fields": { + "id_car_serie": 63009, + "name": "2.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264604, + "fields": { + "id_car_serie": 63009, + "name": "2.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264605, + "fields": { + "id_car_serie": 63009, + "name": "2.0 AMT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264606, + "fields": { + "id_car_serie": 63841, + "name": "2.0 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264607, + "fields": { + "id_car_serie": 63841, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264608, + "fields": { + "id_car_serie": 63841, + "name": "2.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264609, + "fields": { + "id_car_serie": 63841, + "name": "2.0 AMT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264610, + "fields": { + "id_car_serie": 63842, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264611, + "fields": { + "id_car_serie": 63842, + "name": "2.0 AMT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264612, + "fields": { + "id_car_serie": 63842, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264613, + "fields": { + "id_car_serie": 63842, + "name": "2.0 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264614, + "fields": { + "id_car_serie": 63842, + "name": "2.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264615, + "fields": { + "id_car_serie": 63842, + "name": "2.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264616, + "fields": { + "id_car_serie": 63842, + "name": "2.0 AMT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264617, + "fields": { + "id_car_serie": 63849, + "name": "2.0 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264618, + "fields": { + "id_car_serie": 63849, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264619, + "fields": { + "id_car_serie": 63849, + "name": "2.0 AMT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264620, + "fields": { + "id_car_serie": 54109, + "name": "3.0 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264621, + "fields": { + "id_car_serie": 54109, + "name": "3.0 AT 4WD (456 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264622, + "fields": { + "id_car_serie": 54109, + "name": "3.0 AT 4WD (462 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264623, + "fields": { + "id_car_serie": 66965, + "name": "2.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264624, + "fields": { + "id_car_serie": 66965, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264625, + "fields": { + "id_car_serie": 66965, + "name": "2.0 AMT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264626, + "fields": { + "id_car_serie": 66966, + "name": "3.0 AT 4WD (341 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264627, + "fields": { + "id_car_serie": 63873, + "name": "3.0 AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264628, + "fields": { + "id_car_serie": 63873, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264629, + "fields": { + "id_car_serie": 63873, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264630, + "fields": { + "id_car_serie": 63873, + "name": "2.0 AT (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264631, + "fields": { + "id_car_serie": 63873, + "name": "2.0 AT 4WD (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264632, + "fields": { + "id_car_serie": 46587, + "name": "0.8 MT (15 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264633, + "fields": { + "id_car_serie": 46588, + "name": "0.8 MT (15 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264634, + "fields": { + "id_car_serie": 46589, + "name": "0.8 MT (15 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264635, + "fields": { + "id_car_serie": 46438, + "name": "4.3 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264636, + "fields": { + "id_car_serie": 46438, + "name": "5.3 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264637, + "fields": { + "id_car_serie": 46439, + "name": "4.3 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264638, + "fields": { + "id_car_serie": 46439, + "name": "5.3 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264639, + "fields": { + "id_car_serie": 46439, + "name": "6.2 AT 4WD (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264640, + "fields": { + "id_car_serie": 10762, + "name": "4.8 AT 4WD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264641, + "fields": { + "id_car_serie": 10762, + "name": "5.3 AT 4WD (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264642, + "fields": { + "id_car_serie": 10762, + "name": "6.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264643, + "fields": { + "id_car_serie": 10762, + "name": "6.2 AT 4WD (403 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264644, + "fields": { + "id_car_serie": 10762, + "name": "6.0 AT (332 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264645, + "fields": { + "id_car_serie": 10762, + "name": "6.0 AT 4WD (332 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264646, + "fields": { + "id_car_serie": 10762, + "name": "6.6 AT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264647, + "fields": { + "id_car_serie": 10762, + "name": "6.6 AT 4WD (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264648, + "fields": { + "id_car_serie": 15164, + "name": "4.3 AT 4WD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264649, + "fields": { + "id_car_serie": 15164, + "name": "4.3 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264650, + "fields": { + "id_car_serie": 15164, + "name": "4.8 AT 4WD (278 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264651, + "fields": { + "id_car_serie": 15164, + "name": "4.8 MT 4WD (278 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264652, + "fields": { + "id_car_serie": 15164, + "name": "5.3 MT 4WD (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264653, + "fields": { + "id_car_serie": 15164, + "name": "5.3 AT 4WD (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264654, + "fields": { + "id_car_serie": 66967, + "name": "1.4 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264655, + "fields": { + "id_car_serie": 66967, + "name": "1.4 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264656, + "fields": { + "id_car_serie": 66968, + "name": "1.4 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264657, + "fields": { + "id_car_serie": 66968, + "name": "1.4 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264658, + "fields": { + "id_car_serie": 66969, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264659, + "fields": { + "id_car_serie": 66969, + "name": "2.4 CVT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264660, + "fields": { + "id_car_serie": 66969, + "name": "1.5 CVT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264661, + "fields": { + "id_car_serie": 66969, + "name": "1.5 CVT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264662, + "fields": { + "id_car_serie": 66969, + "name": "2.0 MT 4WD (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264663, + "fields": { + "id_car_serie": 48184, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264664, + "fields": { + "id_car_serie": 10774, + "name": "1.5 CVT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264665, + "fields": { + "id_car_serie": 10774, + "name": "1.5 AMT 4WD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264666, + "fields": { + "id_car_serie": 64100, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264667, + "fields": { + "id_car_serie": 64883, + "name": "4.5 AMT (605 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264668, + "fields": { + "id_car_serie": 782, + "name": "2.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264669, + "fields": { + "id_car_serie": 66970, + "name": "2.3 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264670, + "fields": { + "id_car_serie": 66970, + "name": "2.3 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264671, + "fields": { + "id_car_serie": 66970, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264672, + "fields": { + "id_car_serie": 64892, + "name": "1.4 AMT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264673, + "fields": { + "id_car_serie": 64892, + "name": "1.4 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264674, + "fields": { + "id_car_serie": 64892, + "name": "1.4 AMT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264675, + "fields": { + "id_car_serie": 64892, + "name": "0.9 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264676, + "fields": { + "id_car_serie": 64892, + "name": "0.9 AMT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264677, + "fields": { + "id_car_serie": 64892, + "name": "0.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264678, + "fields": { + "id_car_serie": 64892, + "name": "1.2 AMT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264679, + "fields": { + "id_car_serie": 64892, + "name": "1.2 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264680, + "fields": { + "id_car_serie": 64892, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264681, + "fields": { + "id_car_serie": 63526, + "name": "0.9 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264682, + "fields": { + "id_car_serie": 62987, + "name": "2.7 AT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264683, + "fields": { + "id_car_serie": 62987, + "name": "2.7 AT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264684, + "fields": { + "id_car_serie": 62987, + "name": "3.3 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264685, + "fields": { + "id_car_serie": 62987, + "name": "3.3 AT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264686, + "fields": { + "id_car_serie": 62987, + "name": "3.5 AT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264687, + "fields": { + "id_car_serie": 62987, + "name": "3.5 AT 4WD (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264688, + "fields": { + "id_car_serie": 62987, + "name": "5.0 AT (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264689, + "fields": { + "id_car_serie": 62987, + "name": "5.0 AT 4WD (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264690, + "fields": { + "id_car_serie": 62987, + "name": "3.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264691, + "fields": { + "id_car_serie": 62987, + "name": "3.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264692, + "fields": { + "id_car_serie": 45397, + "name": "2.7 AT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264693, + "fields": { + "id_car_serie": 45397, + "name": "3.5 AT 4WD (282 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264694, + "fields": { + "id_car_serie": 45397, + "name": "3.5 AT 4WD (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264695, + "fields": { + "id_car_serie": 45397, + "name": "5.0 AT 4WD (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264696, + "fields": { + "id_car_serie": 66971, + "name": "2.2 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264697, + "fields": { + "id_car_serie": 66971, + "name": "2.2 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264698, + "fields": { + "id_car_serie": 66971, + "name": "2.5 AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264699, + "fields": { + "id_car_serie": 66971, + "name": "2.5 AT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264700, + "fields": { + "id_car_serie": 66971, + "name": "3.5 AT 4WD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264701, + "fields": { + "id_car_serie": 64919, + "name": "2.5 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264702, + "fields": { + "id_car_serie": 64919, + "name": "3.5 AT 4WD (379 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264703, + "fields": { + "id_car_serie": 64919, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264704, + "fields": { + "id_car_serie": 66972, + "name": "6.6 AMT (1817 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264705, + "fields": { + "id_car_serie": 1036, + "name": "2.3 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264706, + "fields": { + "id_car_serie": 1036, + "name": "3.0 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264707, + "fields": { + "id_car_serie": 66973, + "name": "0.7 MT 4WD (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264708, + "fields": { + "id_car_serie": 66973, + "name": "0.7 AT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264709, + "fields": { + "id_car_serie": 66973, + "name": "0.7 MT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264710, + "fields": { + "id_car_serie": 66973, + "name": "0.7 AT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264711, + "fields": { + "id_car_serie": 66973, + "name": "0.7 AT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264712, + "fields": { + "id_car_serie": 66973, + "name": "0.7 AT 4WD (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264713, + "fields": { + "id_car_serie": 66973, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264714, + "fields": { + "id_car_serie": 66973, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264715, + "fields": { + "id_car_serie": 66974, + "name": "3.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264716, + "fields": { + "id_car_serie": 66974, + "name": "3.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264717, + "fields": { + "id_car_serie": 63550, + "name": "3.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264718, + "fields": { + "id_car_serie": 63550, + "name": "3.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264719, + "fields": { + "id_car_serie": 63550, + "name": "3.8 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264720, + "fields": { + "id_car_serie": 3450, + "name": "5.7 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264721, + "fields": { + "id_car_serie": 3450, + "name": "6.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264722, + "fields": { + "id_car_serie": 3450, + "name": "6.5 AT 4WD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264723, + "fields": { + "id_car_serie": 3450, + "name": "6.6 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264724, + "fields": { + "id_car_serie": 3453, + "name": "5.7 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264725, + "fields": { + "id_car_serie": 3453, + "name": "6.2 AT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264726, + "fields": { + "id_car_serie": 3453, + "name": "6.5 AT 4WD (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264727, + "fields": { + "id_car_serie": 3453, + "name": "6.5 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264728, + "fields": { + "id_car_serie": 3453, + "name": "6.5 AT 4WD (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264729, + "fields": { + "id_car_serie": 3453, + "name": "6.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264730, + "fields": { + "id_car_serie": 3453, + "name": "6.6 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264731, + "fields": { + "id_car_serie": 66975, + "name": "6.2 AT 4WD (393 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264732, + "fields": { + "id_car_serie": 66975, + "name": "6.2 AT 4WD (409 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264733, + "fields": { + "id_car_serie": 66976, + "name": "6.2 AT 4WD (393 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264734, + "fields": { + "id_car_serie": 66976, + "name": "6.2 AT 4WD (409 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264735, + "fields": { + "id_car_serie": 66977, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264736, + "fields": { + "id_car_serie": 66977, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264737, + "fields": { + "id_car_serie": 66977, + "name": "1.6 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264738, + "fields": { + "id_car_serie": 66977, + "name": "1.6 CVT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264739, + "fields": { + "id_car_serie": 3493, + "name": "3.7 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264740, + "fields": { + "id_car_serie": 3493, + "name": "2.5 AT 4WD (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264741, + "fields": { + "id_car_serie": 3493, + "name": "3.5 AT 4WD (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264742, + "fields": { + "id_car_serie": 3493, + "name": "3.5 AT 4WD (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264743, + "fields": { + "id_car_serie": 3491, + "name": "3.7 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264744, + "fields": { + "id_car_serie": 3491, + "name": "3.7 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264745, + "fields": { + "id_car_serie": 3492, + "name": "3.7 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264746, + "fields": { + "id_car_serie": 3492, + "name": "3.7 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264747, + "fields": { + "id_car_serie": 3492, + "name": "3.7 AT 4WD (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264748, + "fields": { + "id_car_serie": 6493, + "name": "3.5 AT (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264749, + "fields": { + "id_car_serie": 6493, + "name": "3.5 MT (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264750, + "fields": { + "id_car_serie": 6494, + "name": "3.5 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264751, + "fields": { + "id_car_serie": 6494, + "name": "3.5 AT (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264752, + "fields": { + "id_car_serie": 6494, + "name": "3.5 AT 4WD (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264753, + "fields": { + "id_car_serie": 6494, + "name": "3.5 AT 4WD (302 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264754, + "fields": { + "id_car_serie": 10827, + "name": "3.7 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264755, + "fields": { + "id_car_serie": 47246, + "name": "2.5 CVT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264756, + "fields": { + "id_car_serie": 47246, + "name": "3.5 CVT 4WD (262 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264757, + "fields": { + "id_car_serie": 66978, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264758, + "fields": { + "id_car_serie": 66979, + "name": "5.0 MT 4WD (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264759, + "fields": { + "id_car_serie": 3504, + "name": "3.2 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264760, + "fields": { + "id_car_serie": 3504, + "name": "3.2 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264761, + "fields": { + "id_car_serie": 6537, + "name": "2.5 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264762, + "fields": { + "id_car_serie": 45155, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264763, + "fields": { + "id_car_serie": 45155, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264764, + "fields": { + "id_car_serie": 66980, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264765, + "fields": { + "id_car_serie": 66980, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264766, + "fields": { + "id_car_serie": 66958, + "name": "2.0 AT 4WD (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264767, + "fields": { + "id_car_serie": 66958, + "name": "2.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264768, + "fields": { + "id_car_serie": 63570, + "name": "3.3 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264769, + "fields": { + "id_car_serie": 63574, + "name": "5.0 AT (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264770, + "fields": { + "id_car_serie": 64962, + "name": "5.0 AT (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264771, + "fields": { + "id_car_serie": 66981, + "name": "5.0 AMT (940 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264772, + "fields": { + "id_car_serie": 66981, + "name": "5.0 AMT (1115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264773, + "fields": { + "id_car_serie": 66981, + "name": "5.0 AMT (1160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264774, + "fields": { + "id_car_serie": 64122, + "name": "1.6 MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264775, + "fields": { + "id_car_serie": 64122, + "name": "1.7 MT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264776, + "fields": { + "id_car_serie": 64122, + "name": "1.7 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264777, + "fields": { + "id_car_serie": 64122, + "name": "1.9 MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264778, + "fields": { + "id_car_serie": 64125, + "name": "1.7 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264779, + "fields": { + "id_car_serie": 15593, + "name": "2.8 AT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264780, + "fields": { + "id_car_serie": 15593, + "name": "2.8 MT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264781, + "fields": { + "id_car_serie": 15594, + "name": "2.8 AT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264782, + "fields": { + "id_car_serie": 15594, + "name": "2.8 MT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264783, + "fields": { + "id_car_serie": 15595, + "name": "2.8 AT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264784, + "fields": { + "id_car_serie": 15595, + "name": "2.8 MT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264785, + "fields": { + "id_car_serie": 15596, + "name": "2.8 AT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264786, + "fields": { + "id_car_serie": 15596, + "name": "2.8 MT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264787, + "fields": { + "id_car_serie": 15597, + "name": "2.8 MT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264788, + "fields": { + "id_car_serie": 15597, + "name": "2.8 AT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264789, + "fields": { + "id_car_serie": 15598, + "name": "2.8 MT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264790, + "fields": { + "id_car_serie": 15598, + "name": "2.8 AT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264791, + "fields": { + "id_car_serie": 64346, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264792, + "fields": { + "id_car_serie": 66939, + "name": "1.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264793, + "fields": { + "id_car_serie": 66939, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264794, + "fields": { + "id_car_serie": 14690, + "name": "1.6 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264795, + "fields": { + "id_car_serie": 14690, + "name": "1.6 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264796, + "fields": { + "id_car_serie": 47369, + "name": "3.5 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264797, + "fields": { + "id_car_serie": 63231, + "name": "4.0 AMT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264798, + "fields": { + "id_car_serie": 63231, + "name": "4.0 MT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264799, + "fields": { + "id_car_serie": 66917, + "name": "4.0 AMT 4WD (480 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264800, + "fields": { + "id_car_serie": 66982, + "name": "3.9 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264801, + "fields": { + "id_car_serie": 66982, + "name": "3.9 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264802, + "fields": { + "id_car_serie": 66982, + "name": "3.9 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264803, + "fields": { + "id_car_serie": 66982, + "name": "3.9 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264804, + "fields": { + "id_car_serie": 66982, + "name": "4.9 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264805, + "fields": { + "id_car_serie": 66982, + "name": "4.9 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264806, + "fields": { + "id_car_serie": 66982, + "name": "5.8 MT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264807, + "fields": { + "id_car_serie": 66982, + "name": "5.8 AT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264808, + "fields": { + "id_car_serie": 66982, + "name": "5.8 MT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264809, + "fields": { + "id_car_serie": 66982, + "name": "5.8 AT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264810, + "fields": { + "id_car_serie": 66982, + "name": "6.4 MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264811, + "fields": { + "id_car_serie": 66982, + "name": "6.4 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264812, + "fields": { + "id_car_serie": 66982, + "name": "6.4 MT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264813, + "fields": { + "id_car_serie": 66982, + "name": "6.4 AT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264814, + "fields": { + "id_car_serie": 66982, + "name": "6.6 AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264815, + "fields": { + "id_car_serie": 66982, + "name": "7.0 AT (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264816, + "fields": { + "id_car_serie": 66982, + "name": "7.0 MT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264817, + "fields": { + "id_car_serie": 66982, + "name": "7.0 AT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264818, + "fields": { + "id_car_serie": 66983, + "name": "3.9 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264819, + "fields": { + "id_car_serie": 66983, + "name": "3.9 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264820, + "fields": { + "id_car_serie": 66983, + "name": "3.9 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264821, + "fields": { + "id_car_serie": 66983, + "name": "3.9 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264822, + "fields": { + "id_car_serie": 66983, + "name": "4.9 MT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264823, + "fields": { + "id_car_serie": 66983, + "name": "4.9 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264824, + "fields": { + "id_car_serie": 66983, + "name": "5.8 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264825, + "fields": { + "id_car_serie": 66983, + "name": "5.8 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264826, + "fields": { + "id_car_serie": 66983, + "name": "5.8 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264827, + "fields": { + "id_car_serie": 66983, + "name": "5.8 MT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264828, + "fields": { + "id_car_serie": 66983, + "name": "5.8 AT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264829, + "fields": { + "id_car_serie": 66983, + "name": "5.8 MT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264830, + "fields": { + "id_car_serie": 66983, + "name": "5.8 AT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264831, + "fields": { + "id_car_serie": 66983, + "name": "6.4 MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264832, + "fields": { + "id_car_serie": 66983, + "name": "6.4 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264833, + "fields": { + "id_car_serie": 66983, + "name": "6.4 MT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264834, + "fields": { + "id_car_serie": 66983, + "name": "6.4 AT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264835, + "fields": { + "id_car_serie": 66983, + "name": "6.6 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264836, + "fields": { + "id_car_serie": 66983, + "name": "6.6 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264837, + "fields": { + "id_car_serie": 66983, + "name": "6.6 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264838, + "fields": { + "id_car_serie": 66983, + "name": "6.6 AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264839, + "fields": { + "id_car_serie": 66983, + "name": "7.0 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264840, + "fields": { + "id_car_serie": 66983, + "name": "7.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264841, + "fields": { + "id_car_serie": 66983, + "name": "7.0 AT (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264842, + "fields": { + "id_car_serie": 66983, + "name": "7.0 AT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264843, + "fields": { + "id_car_serie": 66983, + "name": "7.0 MT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264844, + "fields": { + "id_car_serie": 66983, + "name": "7.5 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264845, + "fields": { + "id_car_serie": 66984, + "name": "3.7 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264846, + "fields": { + "id_car_serie": 66984, + "name": "3.7 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264847, + "fields": { + "id_car_serie": 66984, + "name": "3.7 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264848, + "fields": { + "id_car_serie": 66984, + "name": "3.7 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264849, + "fields": { + "id_car_serie": 66984, + "name": "4.3 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264850, + "fields": { + "id_car_serie": 66984, + "name": "4.3 MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264851, + "fields": { + "id_car_serie": 66984, + "name": "4.7 MT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264852, + "fields": { + "id_car_serie": 66984, + "name": "4.7 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264853, + "fields": { + "id_car_serie": 66984, + "name": "4.8 MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264854, + "fields": { + "id_car_serie": 66984, + "name": "4.8 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264855, + "fields": { + "id_car_serie": 66984, + "name": "5.8 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264856, + "fields": { + "id_car_serie": 66984, + "name": "5.8 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264857, + "fields": { + "id_car_serie": 66984, + "name": "5.8 MT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264858, + "fields": { + "id_car_serie": 66984, + "name": "5.8 AT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264859, + "fields": { + "id_car_serie": 66984, + "name": "6.4 AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264860, + "fields": { + "id_car_serie": 66984, + "name": "6.4 MT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264861, + "fields": { + "id_car_serie": 66984, + "name": "6.4 MT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264862, + "fields": { + "id_car_serie": 66984, + "name": "6.4 MT (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264863, + "fields": { + "id_car_serie": 66984, + "name": "6.6 AT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264864, + "fields": { + "id_car_serie": 66984, + "name": "6.6 MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264865, + "fields": { + "id_car_serie": 66984, + "name": "6.6 AT (411 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264866, + "fields": { + "id_car_serie": 66984, + "name": "6.6 MT (411 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264867, + "fields": { + "id_car_serie": 66984, + "name": "7.0 MT (416 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264868, + "fields": { + "id_car_serie": 66984, + "name": "7.0 MT (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264869, + "fields": { + "id_car_serie": 66985, + "name": "5.8 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264870, + "fields": { + "id_car_serie": 66985, + "name": "5.8 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264871, + "fields": { + "id_car_serie": 66986, + "name": "3.7 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264872, + "fields": { + "id_car_serie": 66986, + "name": "3.7 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264873, + "fields": { + "id_car_serie": 66986, + "name": "4.3 MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264874, + "fields": { + "id_car_serie": 66986, + "name": "4.3 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264875, + "fields": { + "id_car_serie": 66986, + "name": "4.7 MT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264876, + "fields": { + "id_car_serie": 66986, + "name": "4.7 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264877, + "fields": { + "id_car_serie": 66986, + "name": "4.8 MT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264878, + "fields": { + "id_car_serie": 66986, + "name": "4.8 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264879, + "fields": { + "id_car_serie": 66986, + "name": "5.8 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264880, + "fields": { + "id_car_serie": 66986, + "name": "5.8 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264881, + "fields": { + "id_car_serie": 66986, + "name": "5.8 MT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264882, + "fields": { + "id_car_serie": 66986, + "name": "5.8 AT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264883, + "fields": { + "id_car_serie": 66986, + "name": "6.4 MT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264884, + "fields": { + "id_car_serie": 66986, + "name": "6.4 AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264885, + "fields": { + "id_car_serie": 66986, + "name": "6.4 MT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264886, + "fields": { + "id_car_serie": 66986, + "name": "6.4 MT (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264887, + "fields": { + "id_car_serie": 66986, + "name": "6.6 MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264888, + "fields": { + "id_car_serie": 66986, + "name": "6.6 AT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264889, + "fields": { + "id_car_serie": 66986, + "name": "6.6 MT (411 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264890, + "fields": { + "id_car_serie": 66986, + "name": "6.6 AT (411 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264891, + "fields": { + "id_car_serie": 66986, + "name": "7.0 MT (416 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264892, + "fields": { + "id_car_serie": 66986, + "name": "7.0 MT (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264893, + "fields": { + "id_car_serie": 45692, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264894, + "fields": { + "id_car_serie": 45692, + "name": "2.0 AMT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264895, + "fields": { + "id_car_serie": 47005, + "name": "2.2 MT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264896, + "fields": { + "id_car_serie": 3341, + "name": "2.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264897, + "fields": { + "id_car_serie": 3341, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264898, + "fields": { + "id_car_serie": 3341, + "name": "1.7 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264899, + "fields": { + "id_car_serie": 3341, + "name": "2.5 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264900, + "fields": { + "id_car_serie": 3341, + "name": "3.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264901, + "fields": { + "id_car_serie": 3342, + "name": "1.7 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264902, + "fields": { + "id_car_serie": 3342, + "name": "3.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264903, + "fields": { + "id_car_serie": 63778, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264904, + "fields": { + "id_car_serie": 66988, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264905, + "fields": { + "id_car_serie": 66988, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264906, + "fields": { + "id_car_serie": 48287, + "name": "2.5 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264907, + "fields": { + "id_car_serie": 64055, + "name": "1.0 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264908, + "fields": { + "id_car_serie": 64055, + "name": "1.0 AMT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264909, + "fields": { + "id_car_serie": 64055, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264910, + "fields": { + "id_car_serie": 64055, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264911, + "fields": { + "id_car_serie": 64055, + "name": "1.3 AMT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264912, + "fields": { + "id_car_serie": 64056, + "name": "1.0 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264913, + "fields": { + "id_car_serie": 64056, + "name": "1.0 AT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264914, + "fields": { + "id_car_serie": 64056, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264915, + "fields": { + "id_car_serie": 64056, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264916, + "fields": { + "id_car_serie": 64056, + "name": "1.0 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264917, + "fields": { + "id_car_serie": 64057, + "name": "1.0 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264918, + "fields": { + "id_car_serie": 64057, + "name": "1.0 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264919, + "fields": { + "id_car_serie": 64057, + "name": "1.3 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264920, + "fields": { + "id_car_serie": 64057, + "name": "1.3 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264921, + "fields": { + "id_car_serie": 64040, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264922, + "fields": { + "id_car_serie": 64040, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264923, + "fields": { + "id_car_serie": 64042, + "name": "1.1 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264924, + "fields": { + "id_car_serie": 64042, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264925, + "fields": { + "id_car_serie": 64042, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264926, + "fields": { + "id_car_serie": 64042, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264927, + "fields": { + "id_car_serie": 66989, + "name": "2.0 MT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264928, + "fields": { + "id_car_serie": 66989, + "name": "2.0 MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264929, + "fields": { + "id_car_serie": 66990, + "name": "2.0 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264930, + "fields": { + "id_car_serie": 66990, + "name": "2.0 MT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264932, + "fields": { + "id_car_serie": 66992, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264933, + "fields": { + "id_car_serie": 66992, + "name": "1.6 AMT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264934, + "fields": { + "id_car_serie": 66992, + "name": "1.6 AMT 4WD (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264935, + "fields": { + "id_car_serie": 66992, + "name": "1.6 AMT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264936, + "fields": { + "id_car_serie": 66992, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264937, + "fields": { + "id_car_serie": 66992, + "name": "1.6 AMT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264938, + "fields": { + "id_car_serie": 1139, + "name": "2.2 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264939, + "fields": { + "id_car_serie": 1139, + "name": "3.3 AT 4WD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264940, + "fields": { + "id_car_serie": 64058, + "name": "2.2 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264941, + "fields": { + "id_car_serie": 64058, + "name": "3.5 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264942, + "fields": { + "id_car_serie": 64058, + "name": "3.5 AT (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264943, + "fields": { + "id_car_serie": 64058, + "name": "3.5 AT 4WD (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264944, + "fields": { + "id_car_serie": 64058, + "name": "3.8 AT 4WD (291 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264945, + "fields": { + "id_car_serie": 64059, + "name": "1.3 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264946, + "fields": { + "id_car_serie": 64059, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264947, + "fields": { + "id_car_serie": 64059, + "name": "1.3 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264948, + "fields": { + "id_car_serie": 64059, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264949, + "fields": { + "id_car_serie": 64059, + "name": "1.5 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264950, + "fields": { + "id_car_serie": 64059, + "name": "1.5 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264951, + "fields": { + "id_car_serie": 64060, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264952, + "fields": { + "id_car_serie": 64060, + "name": "1.3 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264953, + "fields": { + "id_car_serie": 64060, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264954, + "fields": { + "id_car_serie": 64060, + "name": "1.5 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264955, + "fields": { + "id_car_serie": 64060, + "name": "1.5 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264956, + "fields": { + "id_car_serie": 64060, + "name": "1.5 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264957, + "fields": { + "id_car_serie": 64061, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264958, + "fields": { + "id_car_serie": 64061, + "name": "1.5 AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264959, + "fields": { + "id_car_serie": 64061, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264963, + "fields": { + "id_car_serie": 64033, + "name": "2.5 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264964, + "fields": { + "id_car_serie": 64033, + "name": "2.5 AT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264965, + "fields": { + "id_car_serie": 64166, + "name": "2.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264966, + "fields": { + "id_car_serie": 64166, + "name": "2.9 AT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264967, + "fields": { + "id_car_serie": 64166, + "name": "2.0 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264968, + "fields": { + "id_car_serie": 64166, + "name": "2.0 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264969, + "fields": { + "id_car_serie": 64167, + "name": "2.9 AT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264970, + "fields": { + "id_car_serie": 64167, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264971, + "fields": { + "id_car_serie": 64167, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264972, + "fields": { + "id_car_serie": 66993, + "name": "1.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264973, + "fields": { + "id_car_serie": 66993, + "name": "2.0 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264974, + "fields": { + "id_car_serie": 66993, + "name": "2.0 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264975, + "fields": { + "id_car_serie": 66993, + "name": "2.9 AT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264976, + "fields": { + "id_car_serie": 66993, + "name": "2.0 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264977, + "fields": { + "id_car_serie": 66993, + "name": "2.0 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264978, + "fields": { + "id_car_serie": 66993, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264979, + "fields": { + "id_car_serie": 66993, + "name": "2.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264980, + "fields": { + "id_car_serie": 66993, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264981, + "fields": { + "id_car_serie": 64168, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264982, + "fields": { + "id_car_serie": 66994, + "name": "3.0 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264983, + "fields": { + "id_car_serie": 66995, + "name": "3.0 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264984, + "fields": { + "id_car_serie": 66996, + "name": "3.0 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264985, + "fields": { + "id_car_serie": 66996, + "name": "4.0 AT 4WD (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264986, + "fields": { + "id_car_serie": 66996, + "name": "4.0 AT 4WD (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264987, + "fields": { + "id_car_serie": 66997, + "name": "3.0 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264988, + "fields": { + "id_car_serie": 66997, + "name": "4.0 AT 4WD (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264989, + "fields": { + "id_car_serie": 66997, + "name": "4.0 AT 4WD (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264990, + "fields": { + "id_car_serie": 63158, + "name": "3.0 AT 4WD (401 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264991, + "fields": { + "id_car_serie": 63158, + "name": "3.0 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264992, + "fields": { + "id_car_serie": 63158, + "name": "4.0 AT 4WD (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264993, + "fields": { + "id_car_serie": 63158, + "name": "4.0 AT 4WD (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264994, + "fields": { + "id_car_serie": 66998, + "name": "3.0 AT 4WD (401 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264995, + "fields": { + "id_car_serie": 66998, + "name": "3.0 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264996, + "fields": { + "id_car_serie": 66998, + "name": "4.0 AT 4WD (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264997, + "fields": { + "id_car_serie": 66998, + "name": "4.0 AT 4WD (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264998, + "fields": { + "id_car_serie": 66999, + "name": "3.0 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 264999, + "fields": { + "id_car_serie": 67000, + "name": "3.0 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265000, + "fields": { + "id_car_serie": 15493, + "name": "5.5 AT 4WD (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265001, + "fields": { + "id_car_serie": 15493, + "name": "5.5 AT 4WD (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265002, + "fields": { + "id_car_serie": 15492, + "name": "5.5 AT 4WD (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265003, + "fields": { + "id_car_serie": 15492, + "name": "5.5 AT 4WD (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265004, + "fields": { + "id_car_serie": 15498, + "name": "6.2 AT (514 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265005, + "fields": { + "id_car_serie": 15499, + "name": "6.2 AT (514 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265006, + "fields": { + "id_car_serie": 67001, + "name": "5.4 AT (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265007, + "fields": { + "id_car_serie": 67002, + "name": "5.4 AT (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265008, + "fields": { + "id_car_serie": 67002, + "name": "5.4 AT 4WD (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265009, + "fields": { + "id_car_serie": 15502, + "name": "5.4 AT 4WD (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265010, + "fields": { + "id_car_serie": 67003, + "name": "5.4 AT (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265011, + "fields": { + "id_car_serie": 15506, + "name": "3.6 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265012, + "fields": { + "id_car_serie": 64172, + "name": "4.0 AT 4WD (422 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265013, + "fields": { + "id_car_serie": 15484, + "name": "5.5 AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265014, + "fields": { + "id_car_serie": 64175, + "name": "1.3 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265015, + "fields": { + "id_car_serie": 64175, + "name": "1.3 AMT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265016, + "fields": { + "id_car_serie": 64175, + "name": "1.3 AMT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265017, + "fields": { + "id_car_serie": 67004, + "name": "2.0 AMT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265018, + "fields": { + "id_car_serie": 67004, + "name": "2.0 AMT 4WD (387 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265019, + "fields": { + "id_car_serie": 67004, + "name": "2.0 AMT 4WD (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265020, + "fields": { + "id_car_serie": 67005, + "name": "2.0 AMT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265021, + "fields": { + "id_car_serie": 15528, + "name": "2.0 AMT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265022, + "fields": { + "id_car_serie": 15528, + "name": "2.0 AMT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265023, + "fields": { + "id_car_serie": 67006, + "name": "2.0 AMT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265024, + "fields": { + "id_car_serie": 67007, + "name": "3.0 AT 4WD (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265025, + "fields": { + "id_car_serie": 67007, + "name": "4.0 AT 4WD (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265026, + "fields": { + "id_car_serie": 67007, + "name": "4.0 AT 4WD (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265027, + "fields": { + "id_car_serie": 67008, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265028, + "fields": { + "id_car_serie": 67008, + "name": "4.0 AT 4WD (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265029, + "fields": { + "id_car_serie": 67008, + "name": "4.0 AT 4WD (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265030, + "fields": { + "id_car_serie": 67009, + "name": "3.0 AT 4WD (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265031, + "fields": { + "id_car_serie": 67009, + "name": "4.0 AT 4WD (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265032, + "fields": { + "id_car_serie": 67009, + "name": "4.0 AT 4WD (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265033, + "fields": { + "id_car_serie": 67010, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265034, + "fields": { + "id_car_serie": 67010, + "name": "4.0 AT 4WD (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265035, + "fields": { + "id_car_serie": 67010, + "name": "4.0 AT 4WD (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265036, + "fields": { + "id_car_serie": 67011, + "name": "3.0 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265037, + "fields": { + "id_car_serie": 67011, + "name": "4.0 AT 4WD (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265038, + "fields": { + "id_car_serie": 67011, + "name": "4.0 AT 4WD (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265039, + "fields": { + "id_car_serie": 67012, + "name": "5.5 AT 4WD (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265040, + "fields": { + "id_car_serie": 67012, + "name": "5.5 AT 4WD (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265041, + "fields": { + "id_car_serie": 67012, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265042, + "fields": { + "id_car_serie": 67012, + "name": "3.0 AT 4WD (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265043, + "fields": { + "id_car_serie": 67013, + "name": "4.0 AT 4WD (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265044, + "fields": { + "id_car_serie": 46333, + "name": "5.5 AT 4WD (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265045, + "fields": { + "id_car_serie": 15646, + "name": "5.5 AT 4WD (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265046, + "fields": { + "id_car_serie": 15646, + "name": "5.5 AT 4WD (558 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265047, + "fields": { + "id_car_serie": 15647, + "name": "6.2 AT 4WD (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265048, + "fields": { + "id_car_serie": 15648, + "name": "6.2 AT 4WD (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265049, + "fields": { + "id_car_serie": 15649, + "name": "5.4 AT 4WD (347 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265050, + "fields": { + "id_car_serie": 15650, + "name": "5.4 AT 4WD (347 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265051, + "fields": { + "id_car_serie": 15651, + "name": "3.0 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265052, + "fields": { + "id_car_serie": 15651, + "name": "4.7 AT 4WD (455 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265053, + "fields": { + "id_car_serie": 67014, + "name": "2.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265054, + "fields": { + "id_car_serie": 63154, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265055, + "fields": { + "id_car_serie": 63154, + "name": "3.5 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265056, + "fields": { + "id_car_serie": 46984, + "name": "6.2 AT 4WD (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265057, + "fields": { + "id_car_serie": 66855, + "name": "2.9 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265058, + "fields": { + "id_car_serie": 46440, + "name": "5.5 AT (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265059, + "fields": { + "id_car_serie": 15529, + "name": "5.5 AT (564 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265060, + "fields": { + "id_car_serie": 15533, + "name": "7.1 AT (496 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265061, + "fields": { + "id_car_serie": 46574, + "name": "3.0 AT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265062, + "fields": { + "id_car_serie": 14738, + "name": "2.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265063, + "fields": { + "id_car_serie": 46328, + "name": "2.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265064, + "fields": { + "id_car_serie": 46606, + "name": "3.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265065, + "fields": { + "id_car_serie": 46606, + "name": "3.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265066, + "fields": { + "id_car_serie": 46606, + "name": "3.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265067, + "fields": { + "id_car_serie": 67015, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265068, + "fields": { + "id_car_serie": 67015, + "name": "2.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265069, + "fields": { + "id_car_serie": 67015, + "name": "2.8 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265070, + "fields": { + "id_car_serie": 67015, + "name": "3.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265071, + "fields": { + "id_car_serie": 67015, + "name": "3.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265072, + "fields": { + "id_car_serie": 67015, + "name": "3.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265073, + "fields": { + "id_car_serie": 3728, + "name": "2.3 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265074, + "fields": { + "id_car_serie": 3728, + "name": "2.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265075, + "fields": { + "id_car_serie": 3728, + "name": "2.8 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265076, + "fields": { + "id_car_serie": 3728, + "name": "2.8 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265077, + "fields": { + "id_car_serie": 3728, + "name": "2.8 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265078, + "fields": { + "id_car_serie": 3727, + "name": "2.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265079, + "fields": { + "id_car_serie": 3727, + "name": "2.8 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265080, + "fields": { + "id_car_serie": 1620, + "name": "2.4 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265081, + "fields": { + "id_car_serie": 45884, + "name": "1.7 MT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265082, + "fields": { + "id_car_serie": 63195, + "name": "3.7 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265083, + "fields": { + "id_car_serie": 63195, + "name": "3.7 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265084, + "fields": { + "id_car_serie": 64290, + "name": "3.7 MT (336 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265085, + "fields": { + "id_car_serie": 64290, + "name": "3.7 AT (336 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265086, + "fields": { + "id_car_serie": 63242, + "name": "1.2 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265087, + "fields": { + "id_car_serie": 64405, + "name": "1.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265088, + "fields": { + "id_car_serie": 64405, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265089, + "fields": { + "id_car_serie": 64405, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265090, + "fields": { + "id_car_serie": 64405, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265091, + "fields": { + "id_car_serie": 64405, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265092, + "fields": { + "id_car_serie": 64412, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265093, + "fields": { + "id_car_serie": 64412, + "name": "1.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265094, + "fields": { + "id_car_serie": 64412, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265095, + "fields": { + "id_car_serie": 64412, + "name": "1.0 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265096, + "fields": { + "id_car_serie": 64412, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265097, + "fields": { + "id_car_serie": 64412, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265098, + "fields": { + "id_car_serie": 64412, + "name": "1.4 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265099, + "fields": { + "id_car_serie": 64412, + "name": "1.5 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265100, + "fields": { + "id_car_serie": 64412, + "name": "2.0 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265101, + "fields": { + "id_car_serie": 64412, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265102, + "fields": { + "id_car_serie": 64412, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265103, + "fields": { + "id_car_serie": 64412, + "name": "2.0 AMT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265104, + "fields": { + "id_car_serie": 66961, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265105, + "fields": { + "id_car_serie": 64413, + "name": "1.0 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265106, + "fields": { + "id_car_serie": 64413, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265107, + "fields": { + "id_car_serie": 64413, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265108, + "fields": { + "id_car_serie": 64413, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265109, + "fields": { + "id_car_serie": 64413, + "name": "1.4 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265110, + "fields": { + "id_car_serie": 64413, + "name": "1.5 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265111, + "fields": { + "id_car_serie": 64413, + "name": "2.0 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265112, + "fields": { + "id_car_serie": 64413, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265113, + "fields": { + "id_car_serie": 64413, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265114, + "fields": { + "id_car_serie": 64413, + "name": "2.0 AMT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265115, + "fields": { + "id_car_serie": 64414, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265116, + "fields": { + "id_car_serie": 64414, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265117, + "fields": { + "id_car_serie": 64414, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265118, + "fields": { + "id_car_serie": 64414, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265119, + "fields": { + "id_car_serie": 64414, + "name": "1.8 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265120, + "fields": { + "id_car_serie": 64414, + "name": "1.0 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265121, + "fields": { + "id_car_serie": 64414, + "name": "1.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265122, + "fields": { + "id_car_serie": 64414, + "name": "1.2 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265123, + "fields": { + "id_car_serie": 64414, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265124, + "fields": { + "id_car_serie": 64414, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265125, + "fields": { + "id_car_serie": 64414, + "name": "1.4 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265126, + "fields": { + "id_car_serie": 64414, + "name": "1.4 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265127, + "fields": { + "id_car_serie": 64414, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265128, + "fields": { + "id_car_serie": 64414, + "name": "1.6 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265129, + "fields": { + "id_car_serie": 64414, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265130, + "fields": { + "id_car_serie": 64414, + "name": "1.6 MT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265131, + "fields": { + "id_car_serie": 64414, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265132, + "fields": { + "id_car_serie": 64414, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265133, + "fields": { + "id_car_serie": 64416, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265134, + "fields": { + "id_car_serie": 64419, + "name": "1.4 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265135, + "fields": { + "id_car_serie": 64419, + "name": "1.4 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265136, + "fields": { + "id_car_serie": 64419, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265137, + "fields": { + "id_car_serie": 64419, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265138, + "fields": { + "id_car_serie": 64419, + "name": "1.8 AMT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265139, + "fields": { + "id_car_serie": 64419, + "name": "1.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265140, + "fields": { + "id_car_serie": 64419, + "name": "1.2 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265141, + "fields": { + "id_car_serie": 64419, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265142, + "fields": { + "id_car_serie": 64419, + "name": "1.8 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265143, + "fields": { + "id_car_serie": 64419, + "name": "1.8 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265144, + "fields": { + "id_car_serie": 64419, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265145, + "fields": { + "id_car_serie": 64419, + "name": "1.6 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265146, + "fields": { + "id_car_serie": 64419, + "name": "1.6 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265147, + "fields": { + "id_car_serie": 64419, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265148, + "fields": { + "id_car_serie": 64419, + "name": "1.9 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265149, + "fields": { + "id_car_serie": 64419, + "name": "1.9 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265150, + "fields": { + "id_car_serie": 64419, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265151, + "fields": { + "id_car_serie": 64419, + "name": "2.0 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265152, + "fields": { + "id_car_serie": 64420, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265153, + "fields": { + "id_car_serie": 64420, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265154, + "fields": { + "id_car_serie": 64420, + "name": "1.6 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265155, + "fields": { + "id_car_serie": 64420, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265156, + "fields": { + "id_car_serie": 64420, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265157, + "fields": { + "id_car_serie": 64420, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265158, + "fields": { + "id_car_serie": 64420, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265159, + "fields": { + "id_car_serie": 64420, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265160, + "fields": { + "id_car_serie": 64420, + "name": "1.8 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265161, + "fields": { + "id_car_serie": 64420, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265162, + "fields": { + "id_car_serie": 64420, + "name": "1.9 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265163, + "fields": { + "id_car_serie": 64420, + "name": "1.9 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265164, + "fields": { + "id_car_serie": 64420, + "name": "2.0 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265165, + "fields": { + "id_car_serie": 67017, + "name": "1.4 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265166, + "fields": { + "id_car_serie": 67017, + "name": "2.0 AMT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265167, + "fields": { + "id_car_serie": 67017, + "name": "2.0 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265168, + "fields": { + "id_car_serie": 67017, + "name": "2.0 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265169, + "fields": { + "id_car_serie": 67018, + "name": "1.4 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265170, + "fields": { + "id_car_serie": 67018, + "name": "2.0 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265171, + "fields": { + "id_car_serie": 67018, + "name": "2.0 AMT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265172, + "fields": { + "id_car_serie": 67018, + "name": "2.0 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265173, + "fields": { + "id_car_serie": 67018, + "name": "2.0 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265174, + "fields": { + "id_car_serie": 64438, + "name": "2.0 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265175, + "fields": { + "id_car_serie": 64438, + "name": "2.0 AT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265176, + "fields": { + "id_car_serie": 64438, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265177, + "fields": { + "id_car_serie": 64438, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265178, + "fields": { + "id_car_serie": 64438, + "name": "2.0 AT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265179, + "fields": { + "id_car_serie": 64438, + "name": "2.5 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265180, + "fields": { + "id_car_serie": 63259, + "name": "1.8 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265181, + "fields": { + "id_car_serie": 63259, + "name": "1.8 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265182, + "fields": { + "id_car_serie": 67019, + "name": "0.7 MT 4WD (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265183, + "fields": { + "id_car_serie": 67019, + "name": "0.7 MT 4WD (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265184, + "fields": { + "id_car_serie": 67019, + "name": "1.0 AT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265185, + "fields": { + "id_car_serie": 67019, + "name": "1.0 MT 4WD (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265186, + "fields": { + "id_car_serie": 4209, + "name": "1.6 MT 4WD (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265187, + "fields": { + "id_car_serie": 4209, + "name": "1.6 AT 4WD (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265188, + "fields": { + "id_car_serie": 4209, + "name": "2.0 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265189, + "fields": { + "id_car_serie": 4209, + "name": "2.0 AT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265190, + "fields": { + "id_car_serie": 4209, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265191, + "fields": { + "id_car_serie": 4209, + "name": "2.5 MT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265192, + "fields": { + "id_car_serie": 4209, + "name": "2.5 AT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265193, + "fields": { + "id_car_serie": 4209, + "name": "2.5 AT 4WD (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265194, + "fields": { + "id_car_serie": 4209, + "name": "2.5 MT 4WD (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265195, + "fields": { + "id_car_serie": 4209, + "name": "2.0 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265196, + "fields": { + "id_car_serie": 4209, + "name": "2.0 AT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265197, + "fields": { + "id_car_serie": 64476, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265198, + "fields": { + "id_car_serie": 64477, + "name": "1.3 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265199, + "fields": { + "id_car_serie": 64477, + "name": "1.3 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265200, + "fields": { + "id_car_serie": 64477, + "name": "1.3 AT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265201, + "fields": { + "id_car_serie": 67020, + "name": "1.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265202, + "fields": { + "id_car_serie": 67020, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265203, + "fields": { + "id_car_serie": 67020, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265204, + "fields": { + "id_car_serie": 67020, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265205, + "fields": { + "id_car_serie": 67020, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265206, + "fields": { + "id_car_serie": 67021, + "name": "0.9 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265207, + "fields": { + "id_car_serie": 67021, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265208, + "fields": { + "id_car_serie": 67021, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265209, + "fields": { + "id_car_serie": 67022, + "name": "1.0 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265210, + "fields": { + "id_car_serie": 67022, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265211, + "fields": { + "id_car_serie": 67022, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265212, + "fields": { + "id_car_serie": 67022, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265213, + "fields": { + "id_car_serie": 67022, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265214, + "fields": { + "id_car_serie": 67023, + "name": "1.0 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265215, + "fields": { + "id_car_serie": 67023, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265216, + "fields": { + "id_car_serie": 67023, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265217, + "fields": { + "id_car_serie": 67023, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265218, + "fields": { + "id_car_serie": 67023, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265219, + "fields": { + "id_car_serie": 67024, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265220, + "fields": { + "id_car_serie": 67024, + "name": "1.0 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265221, + "fields": { + "id_car_serie": 67024, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265222, + "fields": { + "id_car_serie": 67024, + "name": "1.5 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265223, + "fields": { + "id_car_serie": 67024, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265224, + "fields": { + "id_car_serie": 67024, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265225, + "fields": { + "id_car_serie": 67024, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265226, + "fields": { + "id_car_serie": 67024, + "name": "2.0 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265227, + "fields": { + "id_car_serie": 67024, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265228, + "fields": { + "id_car_serie": 67024, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265229, + "fields": { + "id_car_serie": 67024, + "name": "2.0 AMT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265230, + "fields": { + "id_car_serie": 9300, + "name": "1.8 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265231, + "fields": { + "id_car_serie": 9300, + "name": "1.8 MT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265232, + "fields": { + "id_car_serie": 67025, + "name": "2.0 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265233, + "fields": { + "id_car_serie": 15724, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265234, + "fields": { + "id_car_serie": 15724, + "name": "2.3 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265235, + "fields": { + "id_car_serie": 15725, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265236, + "fields": { + "id_car_serie": 15725, + "name": "1.8 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265237, + "fields": { + "id_car_serie": 15725, + "name": "1.8 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265238, + "fields": { + "id_car_serie": 15725, + "name": "2.3 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265239, + "fields": { + "id_car_serie": 15725, + "name": "2.8 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265240, + "fields": { + "id_car_serie": 15725, + "name": "2.8 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265241, + "fields": { + "id_car_serie": 15726, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265242, + "fields": { + "id_car_serie": 15729, + "name": "1.8 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265243, + "fields": { + "id_car_serie": 15729, + "name": "1.8 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265244, + "fields": { + "id_car_serie": 15728, + "name": "1.8 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265245, + "fields": { + "id_car_serie": 15728, + "name": "1.8 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265246, + "fields": { + "id_car_serie": 4350, + "name": "1.4 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265247, + "fields": { + "id_car_serie": 4350, + "name": "1.4 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265248, + "fields": { + "id_car_serie": 4350, + "name": "1.6 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265249, + "fields": { + "id_car_serie": 4350, + "name": "2.0 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265250, + "fields": { + "id_car_serie": 4350, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265251, + "fields": { + "id_car_serie": 4350, + "name": "2.0 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265252, + "fields": { + "id_car_serie": 15711, + "name": "2.0 AMT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265253, + "fields": { + "id_car_serie": 15711, + "name": "2.0 MT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265254, + "fields": { + "id_car_serie": 15709, + "name": "2.0 AMT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265255, + "fields": { + "id_car_serie": 15710, + "name": "2.0 AMT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265256, + "fields": { + "id_car_serie": 15710, + "name": "2.0 MT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265257, + "fields": { + "id_car_serie": 15714, + "name": "2.0 AMT 4WD (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265258, + "fields": { + "id_car_serie": 15714, + "name": "2.0 MT 4WD (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265259, + "fields": { + "id_car_serie": 15714, + "name": "2.0 AMT 4WD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265260, + "fields": { + "id_car_serie": 15714, + "name": "2.0 MT 4WD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265261, + "fields": { + "id_car_serie": 15713, + "name": "2.0 AMT 4WD (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265262, + "fields": { + "id_car_serie": 15713, + "name": "2.0 MT 4WD (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265263, + "fields": { + "id_car_serie": 15713, + "name": "2.0 MT 4WD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265264, + "fields": { + "id_car_serie": 15713, + "name": "2.0 AMT 4WD (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265265, + "fields": { + "id_car_serie": 46616, + "name": "3.2 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265266, + "fields": { + "id_car_serie": 46616, + "name": "3.2 AMT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265267, + "fields": { + "id_car_serie": 46617, + "name": "3.2 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265268, + "fields": { + "id_car_serie": 46617, + "name": "3.2 AMT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265269, + "fields": { + "id_car_serie": 46619, + "name": "3.2 MT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265270, + "fields": { + "id_car_serie": 46619, + "name": "3.2 AMT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265271, + "fields": { + "id_car_serie": 46618, + "name": "3.2 MT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265272, + "fields": { + "id_car_serie": 46618, + "name": "3.2 AMT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265273, + "fields": { + "id_car_serie": 67028, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265274, + "fields": { + "id_car_serie": 9315, + "name": "1.6 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265275, + "fields": { + "id_car_serie": 67029, + "name": "2.0 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265276, + "fields": { + "id_car_serie": 67030, + "name": "1.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265277, + "fields": { + "id_car_serie": 67030, + "name": "2.0 AMT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265278, + "fields": { + "id_car_serie": 67030, + "name": "2.0 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265279, + "fields": { + "id_car_serie": 67030, + "name": "3.6 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265280, + "fields": { + "id_car_serie": 47456, + "name": "3.0 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265281, + "fields": { + "id_car_serie": 47456, + "name": "3.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265282, + "fields": { + "id_car_serie": 47456, + "name": "4.2 AT 4WD (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265283, + "fields": { + "id_car_serie": 47456, + "name": "3.6 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265284, + "fields": { + "id_car_serie": 47456, + "name": "6.0 AT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265285, + "fields": { + "id_car_serie": 67031, + "name": "2.0 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265286, + "fields": { + "id_car_serie": 67031, + "name": "2.0 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265287, + "fields": { + "id_car_serie": 63391, + "name": "6.8 AT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265288, + "fields": { + "id_car_serie": 63391, + "name": "6.8 AT (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265289, + "fields": { + "id_car_serie": 64747, + "name": "6.0 AT 4WD (635 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265290, + "fields": { + "id_car_serie": 53548, + "name": "2.0 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265291, + "fields": { + "id_car_serie": 53548, + "name": "2.0 AT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265292, + "fields": { + "id_car_serie": 14921, + "name": "2.5 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265293, + "fields": { + "id_car_serie": 14921, + "name": "3.6 AT (308 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265294, + "fields": { + "id_car_serie": 14921, + "name": "3.6 AT 4WD (308 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265295, + "fields": { + "id_car_serie": 14920, + "name": "4.3 MT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265296, + "fields": { + "id_car_serie": 14920, + "name": "4.3 AT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265297, + "fields": { + "id_car_serie": 3033, + "name": "4.3 MT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265298, + "fields": { + "id_car_serie": 3033, + "name": "4.3 AT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265299, + "fields": { + "id_car_serie": 3034, + "name": "2.2 AT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265300, + "fields": { + "id_car_serie": 3034, + "name": "2.2 MT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265301, + "fields": { + "id_car_serie": 3034, + "name": "2.2 MT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265302, + "fields": { + "id_car_serie": 3034, + "name": "2.2 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265303, + "fields": { + "id_car_serie": 3034, + "name": "4.3 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265304, + "fields": { + "id_car_serie": 3034, + "name": "4.3 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265305, + "fields": { + "id_car_serie": 3034, + "name": "4.3 AT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265306, + "fields": { + "id_car_serie": 3034, + "name": "4.3 MT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265307, + "fields": { + "id_car_serie": 3034, + "name": "4.3 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265308, + "fields": { + "id_car_serie": 3034, + "name": "4.3 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265309, + "fields": { + "id_car_serie": 3035, + "name": "5.7 MT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265310, + "fields": { + "id_car_serie": 3035, + "name": "5.7 AT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265311, + "fields": { + "id_car_serie": 3035, + "name": "5.7 MT 4WD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265312, + "fields": { + "id_car_serie": 3035, + "name": "5.7 AT 4WD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265313, + "fields": { + "id_car_serie": 3035, + "name": "5.7 MT 4WD (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265314, + "fields": { + "id_car_serie": 3035, + "name": "5.7 AT 4WD (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265315, + "fields": { + "id_car_serie": 3035, + "name": "6.5 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265316, + "fields": { + "id_car_serie": 3035, + "name": "6.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265317, + "fields": { + "id_car_serie": 8424, + "name": "4.1 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265318, + "fields": { + "id_car_serie": 8424, + "name": "4.1 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265319, + "fields": { + "id_car_serie": 8424, + "name": "4.1 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265320, + "fields": { + "id_car_serie": 8424, + "name": "4.1 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265321, + "fields": { + "id_car_serie": 8424, + "name": "4.8 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265322, + "fields": { + "id_car_serie": 8424, + "name": "4.8 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265323, + "fields": { + "id_car_serie": 8424, + "name": "5.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265324, + "fields": { + "id_car_serie": 8424, + "name": "5.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265325, + "fields": { + "id_car_serie": 8424, + "name": "5.0 MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265326, + "fields": { + "id_car_serie": 8424, + "name": "5.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265327, + "fields": { + "id_car_serie": 8424, + "name": "5.0 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265328, + "fields": { + "id_car_serie": 8424, + "name": "5.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265329, + "fields": { + "id_car_serie": 8424, + "name": "5.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265330, + "fields": { + "id_car_serie": 8424, + "name": "5.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265331, + "fields": { + "id_car_serie": 8424, + "name": "5.7 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265332, + "fields": { + "id_car_serie": 8424, + "name": "5.7 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265333, + "fields": { + "id_car_serie": 8424, + "name": "5.7 MT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265334, + "fields": { + "id_car_serie": 8424, + "name": "5.7 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265335, + "fields": { + "id_car_serie": 8424, + "name": "5.7 MT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265336, + "fields": { + "id_car_serie": 8424, + "name": "5.7 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265337, + "fields": { + "id_car_serie": 8424, + "name": "6.6 MT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265338, + "fields": { + "id_car_serie": 8424, + "name": "6.6 AT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265339, + "fields": { + "id_car_serie": 8424, + "name": "6.2 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265340, + "fields": { + "id_car_serie": 8424, + "name": "6.2 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265341, + "fields": { + "id_car_serie": 8431, + "name": "6.0 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265342, + "fields": { + "id_car_serie": 47020, + "name": "5.7 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265343, + "fields": { + "id_car_serie": 47020, + "name": "6.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265344, + "fields": { + "id_car_serie": 47020, + "name": "6.5 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265345, + "fields": { + "id_car_serie": 47022, + "name": "5.7 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265346, + "fields": { + "id_car_serie": 47022, + "name": "6.5 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265347, + "fields": { + "id_car_serie": 47022, + "name": "6.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265348, + "fields": { + "id_car_serie": 47022, + "name": "6.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265349, + "fields": { + "id_car_serie": 47021, + "name": "5.7 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265350, + "fields": { + "id_car_serie": 47021, + "name": "5.7 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265351, + "fields": { + "id_car_serie": 47021, + "name": "5.7 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265352, + "fields": { + "id_car_serie": 47021, + "name": "5.7 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265353, + "fields": { + "id_car_serie": 47021, + "name": "6.5 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265354, + "fields": { + "id_car_serie": 47021, + "name": "6.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265355, + "fields": { + "id_car_serie": 46846, + "name": "6.8 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265356, + "fields": { + "id_car_serie": 67032, + "name": "5.9 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265357, + "fields": { + "id_car_serie": 67032, + "name": "5.9 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265358, + "fields": { + "id_car_serie": 67032, + "name": "6.3 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265359, + "fields": { + "id_car_serie": 67032, + "name": "6.3 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265360, + "fields": { + "id_car_serie": 67032, + "name": "6.3 AT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265361, + "fields": { + "id_car_serie": 67032, + "name": "6.3 AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265362, + "fields": { + "id_car_serie": 67032, + "name": "6.3 MT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265363, + "fields": { + "id_car_serie": 67032, + "name": "6.6 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265364, + "fields": { + "id_car_serie": 67032, + "name": "6.6 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265365, + "fields": { + "id_car_serie": 67032, + "name": "7.2 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265366, + "fields": { + "id_car_serie": 67032, + "name": "7.2 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265367, + "fields": { + "id_car_serie": 67032, + "name": "7.2 AT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265368, + "fields": { + "id_car_serie": 67032, + "name": "7.2 AT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265369, + "fields": { + "id_car_serie": 67032, + "name": "7.2 AT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265370, + "fields": { + "id_car_serie": 67033, + "name": "5.9 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265371, + "fields": { + "id_car_serie": 67033, + "name": "5.9 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265372, + "fields": { + "id_car_serie": 67033, + "name": "6.3 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265373, + "fields": { + "id_car_serie": 67033, + "name": "6.3 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265374, + "fields": { + "id_car_serie": 67033, + "name": "6.3 AT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265375, + "fields": { + "id_car_serie": 67033, + "name": "6.3 AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265376, + "fields": { + "id_car_serie": 67033, + "name": "6.3 MT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265377, + "fields": { + "id_car_serie": 67033, + "name": "6.3 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265378, + "fields": { + "id_car_serie": 67033, + "name": "6.6 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265379, + "fields": { + "id_car_serie": 67033, + "name": "6.6 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265380, + "fields": { + "id_car_serie": 67033, + "name": "7.2 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265381, + "fields": { + "id_car_serie": 67033, + "name": "7.2 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265382, + "fields": { + "id_car_serie": 67033, + "name": "7.2 AT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265383, + "fields": { + "id_car_serie": 67033, + "name": "7.2 AT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265384, + "fields": { + "id_car_serie": 67033, + "name": "7.2 AT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265385, + "fields": { + "id_car_serie": 67032, + "name": "6.3 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265386, + "fields": { + "id_car_serie": 14933, + "name": "2.4 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265387, + "fields": { + "id_car_serie": 63448, + "name": "3.3 AT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265388, + "fields": { + "id_car_serie": 63448, + "name": "3.8 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265389, + "fields": { + "id_car_serie": 47150, + "name": "2.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265390, + "fields": { + "id_car_serie": 5793, + "name": "3.0 AT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265391, + "fields": { + "id_car_serie": 5793, + "name": "3.8 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265392, + "fields": { + "id_car_serie": 50115, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265393, + "fields": { + "id_car_serie": 47152, + "name": "3.3 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265394, + "fields": { + "id_car_serie": 47152, + "name": "3.3 AT 4WD (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265395, + "fields": { + "id_car_serie": 14627, + "name": "3.6 AT 4WD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265396, + "fields": { + "id_car_serie": 3084, + "name": "3.6 AT 4WD (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265397, + "fields": { + "id_car_serie": 3084, + "name": "5.7 AT 4WD (363 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265398, + "fields": { + "id_car_serie": 3084, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265399, + "fields": { + "id_car_serie": 3084, + "name": "3.0 AT (239 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265400, + "fields": { + "id_car_serie": 3084, + "name": "6.4 AT (477 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265401, + "fields": { + "id_car_serie": 67034, + "name": "7.2 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265402, + "fields": { + "id_car_serie": 67034, + "name": "7.2 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265403, + "fields": { + "id_car_serie": 3109, + "name": "1.4 MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265404, + "fields": { + "id_car_serie": 5798, + "name": "1.6 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265405, + "fields": { + "id_car_serie": 5798, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265406, + "fields": { + "id_car_serie": 5798, + "name": "1.6 AMT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265407, + "fields": { + "id_car_serie": 5798, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265408, + "fields": { + "id_car_serie": 5798, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265409, + "fields": { + "id_car_serie": 5798, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265410, + "fields": { + "id_car_serie": 14770, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265411, + "fields": { + "id_car_serie": 45600, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265412, + "fields": { + "id_car_serie": 67035, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265413, + "fields": { + "id_car_serie": 67035, + "name": "1.6 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265414, + "fields": { + "id_car_serie": 67035, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265415, + "fields": { + "id_car_serie": 67035, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265416, + "fields": { + "id_car_serie": 67036, + "name": "1.6 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265417, + "fields": { + "id_car_serie": 67036, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265418, + "fields": { + "id_car_serie": 67036, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265419, + "fields": { + "id_car_serie": 67036, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265420, + "fields": { + "id_car_serie": 67037, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265421, + "fields": { + "id_car_serie": 67037, + "name": "1.6 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265422, + "fields": { + "id_car_serie": 67037, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265423, + "fields": { + "id_car_serie": 67037, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265424, + "fields": { + "id_car_serie": 62997, + "name": "7.5 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265425, + "fields": { + "id_car_serie": 3324, + "name": "2.5 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265426, + "fields": { + "id_car_serie": 3324, + "name": "2.5 MT 4WD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265427, + "fields": { + "id_car_serie": 3324, + "name": "2.6 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265428, + "fields": { + "id_car_serie": 3324, + "name": "2.6 MT 4WD (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265429, + "fields": { + "id_car_serie": 67038, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265430, + "fields": { + "id_car_serie": 67038, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265431, + "fields": { + "id_car_serie": 67038, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265432, + "fields": { + "id_car_serie": 67038, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265433, + "fields": { + "id_car_serie": 67039, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265434, + "fields": { + "id_car_serie": 67039, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265435, + "fields": { + "id_car_serie": 67039, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265436, + "fields": { + "id_car_serie": 67039, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265437, + "fields": { + "id_car_serie": 67040, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265438, + "fields": { + "id_car_serie": 67040, + "name": "1.5 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265439, + "fields": { + "id_car_serie": 67040, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265440, + "fields": { + "id_car_serie": 67040, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265441, + "fields": { + "id_car_serie": 67040, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265442, + "fields": { + "id_car_serie": 67040, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265443, + "fields": { + "id_car_serie": 1327, + "name": "4.8 MT 4WD (332 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265444, + "fields": { + "id_car_serie": 1327, + "name": "4.8 AT 4WD (332 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265445, + "fields": { + "id_car_serie": 1327, + "name": "5.2 MT 4WD (455 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265446, + "fields": { + "id_car_serie": 1327, + "name": "5.2 AT 4WD (455 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265447, + "fields": { + "id_car_serie": 14603, + "name": "5.2 AMT 4WD (570 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265448, + "fields": { + "id_car_serie": 3870, + "name": "2.8 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265449, + "fields": { + "id_car_serie": 3873, + "name": "2.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265450, + "fields": { + "id_car_serie": 3873, + "name": "2.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265451, + "fields": { + "id_car_serie": 1959, + "name": "0.9 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265452, + "fields": { + "id_car_serie": 1959, + "name": "0.9 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265453, + "fields": { + "id_car_serie": 1961, + "name": "1.3 MT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265454, + "fields": { + "id_car_serie": 1961, + "name": "1.3 AT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265455, + "fields": { + "id_car_serie": 1961, + "name": "1.3 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265456, + "fields": { + "id_car_serie": 1961, + "name": "1.3 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265457, + "fields": { + "id_car_serie": 1963, + "name": "1.3 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265458, + "fields": { + "id_car_serie": 1963, + "name": "1.3 AT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265459, + "fields": { + "id_car_serie": 1964, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265460, + "fields": { + "id_car_serie": 1964, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265461, + "fields": { + "id_car_serie": 7346, + "name": "0.9 MT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265462, + "fields": { + "id_car_serie": 67041, + "name": "2.0 AT 4WD (608 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265463, + "fields": { + "id_car_serie": 62721, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265464, + "fields": { + "id_car_serie": 54010, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265465, + "fields": { + "id_car_serie": 63840, + "name": "2.0 AMT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265466, + "fields": { + "id_car_serie": 63840, + "name": "2.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265467, + "fields": { + "id_car_serie": 63840, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265468, + "fields": { + "id_car_serie": 63843, + "name": "2.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265469, + "fields": { + "id_car_serie": 63843, + "name": "3.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265470, + "fields": { + "id_car_serie": 63843, + "name": "3.0 AT 4WD (344 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265471, + "fields": { + "id_car_serie": 53734, + "name": "3.0 AT 4WD (341 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265472, + "fields": { + "id_car_serie": 63016, + "name": "3.0 AT 4WD (341 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265473, + "fields": { + "id_car_serie": 63856, + "name": "3.0 AT 4WD (341 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265474, + "fields": { + "id_car_serie": 66842, + "name": "4.0 AT 4WD (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265475, + "fields": { + "id_car_serie": 66843, + "name": "4.0 AT 4WD (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265476, + "fields": { + "id_car_serie": 67045, + "name": "3.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265477, + "fields": { + "id_car_serie": 67045, + "name": "3.9 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265478, + "fields": { + "id_car_serie": 67045, + "name": "4.3 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265479, + "fields": { + "id_car_serie": 67046, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265480, + "fields": { + "id_car_serie": 67046, + "name": "1.2 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265481, + "fields": { + "id_car_serie": 67046, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265482, + "fields": { + "id_car_serie": 67046, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265483, + "fields": { + "id_car_serie": 67046, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265484, + "fields": { + "id_car_serie": 67046, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265485, + "fields": { + "id_car_serie": 3312, + "name": "1.3 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265486, + "fields": { + "id_car_serie": 3312, + "name": "1.3 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265487, + "fields": { + "id_car_serie": 3312, + "name": "1.3 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265488, + "fields": { + "id_car_serie": 3312, + "name": "1.3 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265489, + "fields": { + "id_car_serie": 3312, + "name": "1.3 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265490, + "fields": { + "id_car_serie": 3312, + "name": "1.5 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265491, + "fields": { + "id_car_serie": 3312, + "name": "1.5 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265492, + "fields": { + "id_car_serie": 3312, + "name": "1.5 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265493, + "fields": { + "id_car_serie": 3312, + "name": "1.5 AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265494, + "fields": { + "id_car_serie": 3312, + "name": "1.6 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265495, + "fields": { + "id_car_serie": 3312, + "name": "1.6 AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265496, + "fields": { + "id_car_serie": 3312, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265497, + "fields": { + "id_car_serie": 3312, + "name": "1.6 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265498, + "fields": { + "id_car_serie": 3312, + "name": "1.6 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265499, + "fields": { + "id_car_serie": 3312, + "name": "1.6 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265500, + "fields": { + "id_car_serie": 3312, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265501, + "fields": { + "id_car_serie": 3312, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265502, + "fields": { + "id_car_serie": 3312, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265503, + "fields": { + "id_car_serie": 3312, + "name": "1.7 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265504, + "fields": { + "id_car_serie": 3312, + "name": "2.0 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265505, + "fields": { + "id_car_serie": 3312, + "name": "2.0 AT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265506, + "fields": { + "id_car_serie": 3312, + "name": "2.0 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265507, + "fields": { + "id_car_serie": 3312, + "name": "2.0 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265508, + "fields": { + "id_car_serie": 3312, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265509, + "fields": { + "id_car_serie": 3312, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265510, + "fields": { + "id_car_serie": 3312, + "name": "2.3 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265511, + "fields": { + "id_car_serie": 3312, + "name": "2.3 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265512, + "fields": { + "id_car_serie": 3312, + "name": "2.3 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265513, + "fields": { + "id_car_serie": 3312, + "name": "2.3 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265514, + "fields": { + "id_car_serie": 3312, + "name": "2.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265515, + "fields": { + "id_car_serie": 3312, + "name": "2.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265516, + "fields": { + "id_car_serie": 3312, + "name": "2.6 MT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265517, + "fields": { + "id_car_serie": 3312, + "name": "2.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265518, + "fields": { + "id_car_serie": 3312, + "name": "3.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265519, + "fields": { + "id_car_serie": 3312, + "name": "3.0 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265520, + "fields": { + "id_car_serie": 3312, + "name": "3.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265521, + "fields": { + "id_car_serie": 3312, + "name": "3.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265522, + "fields": { + "id_car_serie": 3312, + "name": "3.1 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265523, + "fields": { + "id_car_serie": 67047, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265524, + "fields": { + "id_car_serie": 67047, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265525, + "fields": { + "id_car_serie": 67047, + "name": "1.8 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265526, + "fields": { + "id_car_serie": 67047, + "name": "1.8 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265527, + "fields": { + "id_car_serie": 67047, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265528, + "fields": { + "id_car_serie": 67048, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265529, + "fields": { + "id_car_serie": 67048, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265530, + "fields": { + "id_car_serie": 67048, + "name": "1.8 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265531, + "fields": { + "id_car_serie": 67049, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265532, + "fields": { + "id_car_serie": 67049, + "name": "1.4 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265533, + "fields": { + "id_car_serie": 67049, + "name": "1.8 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265534, + "fields": { + "id_car_serie": 48041, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265535, + "fields": { + "id_car_serie": 885, + "name": "4.9 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265536, + "fields": { + "id_car_serie": 885, + "name": "4.9 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265537, + "fields": { + "id_car_serie": 885, + "name": "4.9 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265538, + "fields": { + "id_car_serie": 885, + "name": "4.9 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265539, + "fields": { + "id_car_serie": 885, + "name": "5.8 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265540, + "fields": { + "id_car_serie": 885, + "name": "5.8 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265541, + "fields": { + "id_car_serie": 1297, + "name": "1.6 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265542, + "fields": { + "id_car_serie": 67050, + "name": "1.0 MT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265543, + "fields": { + "id_car_serie": 67051, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265544, + "fields": { + "id_car_serie": 67052, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265545, + "fields": { + "id_car_serie": 67052, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265546, + "fields": { + "id_car_serie": 67053, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265547, + "fields": { + "id_car_serie": 67053, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265552, + "fields": { + "id_car_serie": 64136, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265553, + "fields": { + "id_car_serie": 64137, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265554, + "fields": { + "id_car_serie": 67054, + "name": "1.8 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265555, + "fields": { + "id_car_serie": 67054, + "name": "1.8 AT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265556, + "fields": { + "id_car_serie": 67054, + "name": "1.8 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265557, + "fields": { + "id_car_serie": 67054, + "name": "1.8 AT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265558, + "fields": { + "id_car_serie": 67054, + "name": "1.8 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265559, + "fields": { + "id_car_serie": 67054, + "name": "2.0 MT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265560, + "fields": { + "id_car_serie": 67054, + "name": "2.0 AT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265561, + "fields": { + "id_car_serie": 67055, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265562, + "fields": { + "id_car_serie": 67055, + "name": "1.3 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265563, + "fields": { + "id_car_serie": 67055, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265564, + "fields": { + "id_car_serie": 67055, + "name": "1.6 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265565, + "fields": { + "id_car_serie": 67055, + "name": "2.2 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265566, + "fields": { + "id_car_serie": 67056, + "name": "0.8 MT (36 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265567, + "fields": { + "id_car_serie": 67056, + "name": "1.0 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265568, + "fields": { + "id_car_serie": 67057, + "name": "2.5 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265569, + "fields": { + "id_car_serie": 6846, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265570, + "fields": { + "id_car_serie": 6846, + "name": "1.6 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265571, + "fields": { + "id_car_serie": 6846, + "name": "1.8 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265572, + "fields": { + "id_car_serie": 6846, + "name": "1.8 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265573, + "fields": { + "id_car_serie": 6846, + "name": "1.8 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265574, + "fields": { + "id_car_serie": 6846, + "name": "1.8 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265575, + "fields": { + "id_car_serie": 6846, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265576, + "fields": { + "id_car_serie": 6846, + "name": "2.0 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265577, + "fields": { + "id_car_serie": 6846, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265578, + "fields": { + "id_car_serie": 6846, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265579, + "fields": { + "id_car_serie": 6846, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265580, + "fields": { + "id_car_serie": 6846, + "name": "2.2 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265581, + "fields": { + "id_car_serie": 6846, + "name": "2.0 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265582, + "fields": { + "id_car_serie": 6846, + "name": "2.0 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265583, + "fields": { + "id_car_serie": 6846, + "name": "2.0 AT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265584, + "fields": { + "id_car_serie": 6846, + "name": "2.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265585, + "fields": { + "id_car_serie": 6846, + "name": "2.0 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265586, + "fields": { + "id_car_serie": 64145, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265587, + "fields": { + "id_car_serie": 64145, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265588, + "fields": { + "id_car_serie": 64145, + "name": "1.5 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265589, + "fields": { + "id_car_serie": 64145, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265590, + "fields": { + "id_car_serie": 64145, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265591, + "fields": { + "id_car_serie": 64145, + "name": "1.9 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265592, + "fields": { + "id_car_serie": 64145, + "name": "1.9 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265593, + "fields": { + "id_car_serie": 64145, + "name": "2.0 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265594, + "fields": { + "id_car_serie": 64145, + "name": "2.0 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265595, + "fields": { + "id_car_serie": 64145, + "name": "2.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265596, + "fields": { + "id_car_serie": 64145, + "name": "2.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265597, + "fields": { + "id_car_serie": 6904, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265598, + "fields": { + "id_car_serie": 47494, + "name": "2.1 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265599, + "fields": { + "id_car_serie": 47494, + "name": "2.1 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265600, + "fields": { + "id_car_serie": 47494, + "name": "3.2 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265601, + "fields": { + "id_car_serie": 47494, + "name": "3.2 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265602, + "fields": { + "id_car_serie": 47496, + "name": "2.2 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265603, + "fields": { + "id_car_serie": 47496, + "name": "2.2 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265604, + "fields": { + "id_car_serie": 47496, + "name": "2.2 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265605, + "fields": { + "id_car_serie": 47496, + "name": "2.2 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265606, + "fields": { + "id_car_serie": 47496, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265607, + "fields": { + "id_car_serie": 47496, + "name": "2.2 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265608, + "fields": { + "id_car_serie": 47496, + "name": "3.2 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265609, + "fields": { + "id_car_serie": 47496, + "name": "3.2 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265610, + "fields": { + "id_car_serie": 49690, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265611, + "fields": { + "id_car_serie": 49690, + "name": "2.0 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265612, + "fields": { + "id_car_serie": 49690, + "name": "2.3 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265613, + "fields": { + "id_car_serie": 49690, + "name": "2.3 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265614, + "fields": { + "id_car_serie": 49690, + "name": "2.8 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265615, + "fields": { + "id_car_serie": 49690, + "name": "2.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265616, + "fields": { + "id_car_serie": 49690, + "name": "2.2 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265617, + "fields": { + "id_car_serie": 49690, + "name": "2.2 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265618, + "fields": { + "id_car_serie": 49690, + "name": "2.2 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265619, + "fields": { + "id_car_serie": 49690, + "name": "2.2 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265620, + "fields": { + "id_car_serie": 49690, + "name": "2.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265621, + "fields": { + "id_car_serie": 49690, + "name": "2.3 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265622, + "fields": { + "id_car_serie": 49690, + "name": "2.3 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265623, + "fields": { + "id_car_serie": 8883, + "name": "2.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265624, + "fields": { + "id_car_serie": 8883, + "name": "2.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265625, + "fields": { + "id_car_serie": 3776, + "name": "1.8 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265626, + "fields": { + "id_car_serie": 3776, + "name": "1.8 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265627, + "fields": { + "id_car_serie": 3776, + "name": "2.0 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265628, + "fields": { + "id_car_serie": 3776, + "name": "2.0 MT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265629, + "fields": { + "id_car_serie": 7034, + "name": "2.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265630, + "fields": { + "id_car_serie": 7034, + "name": "2.0 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265631, + "fields": { + "id_car_serie": 7034, + "name": "2.0 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265632, + "fields": { + "id_car_serie": 7034, + "name": "2.0 MT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265633, + "fields": { + "id_car_serie": 7035, + "name": "1.8 AT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265634, + "fields": { + "id_car_serie": 7035, + "name": "1.8 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265635, + "fields": { + "id_car_serie": 7035, + "name": "2.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265636, + "fields": { + "id_car_serie": 7035, + "name": "2.0 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265637, + "fields": { + "id_car_serie": 67058, + "name": "1.8 CVT 4WD (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265638, + "fields": { + "id_car_serie": 67058, + "name": "2.0 CVT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265639, + "fields": { + "id_car_serie": 67058, + "name": "2.0 CVT 4WD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265640, + "fields": { + "id_car_serie": 67058, + "name": "2.0 AMT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265641, + "fields": { + "id_car_serie": 1727, + "name": "3.0 AT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265642, + "fields": { + "id_car_serie": 1727, + "name": "3.0 MT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265643, + "fields": { + "id_car_serie": 1727, + "name": "3.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265644, + "fields": { + "id_car_serie": 47316, + "name": "3.0 MT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265645, + "fields": { + "id_car_serie": 47316, + "name": "3.0 AT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265646, + "fields": { + "id_car_serie": 47316, + "name": "3.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265647, + "fields": { + "id_car_serie": 47317, + "name": "3.0 MT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265648, + "fields": { + "id_car_serie": 47317, + "name": "3.0 AT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265649, + "fields": { + "id_car_serie": 47317, + "name": "3.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265650, + "fields": { + "id_car_serie": 46052, + "name": "2.0 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265651, + "fields": { + "id_car_serie": 46052, + "name": "2.7 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265652, + "fields": { + "id_car_serie": 46052, + "name": "2.8 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265653, + "fields": { + "id_car_serie": 64208, + "name": "2.4 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265654, + "fields": { + "id_car_serie": 64208, + "name": "2.4 AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265655, + "fields": { + "id_car_serie": 64208, + "name": "2.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265656, + "fields": { + "id_car_serie": 64208, + "name": "2.5 AT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265657, + "fields": { + "id_car_serie": 64208, + "name": "2.5 MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265658, + "fields": { + "id_car_serie": 64208, + "name": "2.5 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265659, + "fields": { + "id_car_serie": 64208, + "name": "2.8 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265660, + "fields": { + "id_car_serie": 64208, + "name": "2.8 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265661, + "fields": { + "id_car_serie": 45432, + "name": "2.4 MT 4WD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265662, + "fields": { + "id_car_serie": 45432, + "name": "2.5 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265663, + "fields": { + "id_car_serie": 45432, + "name": "2.5 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265664, + "fields": { + "id_car_serie": 67059, + "name": "2.0 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265665, + "fields": { + "id_car_serie": 67059, + "name": "2.0 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265666, + "fields": { + "id_car_serie": 67059, + "name": "2.0 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265667, + "fields": { + "id_car_serie": 67059, + "name": "2.4 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265668, + "fields": { + "id_car_serie": 67059, + "name": "2.4 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265669, + "fields": { + "id_car_serie": 67059, + "name": "2.4 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265670, + "fields": { + "id_car_serie": 67059, + "name": "2.4 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265671, + "fields": { + "id_car_serie": 67060, + "name": "2.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265672, + "fields": { + "id_car_serie": 67061, + "name": "2.0 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265673, + "fields": { + "id_car_serie": 67061, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265674, + "fields": { + "id_car_serie": 67061, + "name": "2.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265675, + "fields": { + "id_car_serie": 67061, + "name": "2.5 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265676, + "fields": { + "id_car_serie": 67062, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265677, + "fields": { + "id_car_serie": 67062, + "name": "1.5 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265678, + "fields": { + "id_car_serie": 67062, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265679, + "fields": { + "id_car_serie": 67062, + "name": "1.5 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265680, + "fields": { + "id_car_serie": 45219, + "name": "2.0 AMT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265681, + "fields": { + "id_car_serie": 45220, + "name": "2.0 AMT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265682, + "fields": { + "id_car_serie": 67063, + "name": "2.4 MT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265683, + "fields": { + "id_car_serie": 67063, + "name": "2.4 AT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265684, + "fields": { + "id_car_serie": 67064, + "name": "2.4 MT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265685, + "fields": { + "id_car_serie": 67064, + "name": "2.4 AT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265686, + "fields": { + "id_car_serie": 67065, + "name": "2.4 AT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265687, + "fields": { + "id_car_serie": 67066, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265688, + "fields": { + "id_car_serie": 67066, + "name": "0.7 AT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265689, + "fields": { + "id_car_serie": 67066, + "name": "0.7 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265690, + "fields": { + "id_car_serie": 67067, + "name": "0.7 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265691, + "fields": { + "id_car_serie": 67067, + "name": "0.7 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265692, + "fields": { + "id_car_serie": 67067, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265693, + "fields": { + "id_car_serie": 67067, + "name": "0.7 AT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265694, + "fields": { + "id_car_serie": 67068, + "name": "0.7 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265695, + "fields": { + "id_car_serie": 67068, + "name": "0.7 AT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265696, + "fields": { + "id_car_serie": 67068, + "name": "0.7 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265697, + "fields": { + "id_car_serie": 67068, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265698, + "fields": { + "id_car_serie": 67068, + "name": "0.7 AT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265699, + "fields": { + "id_car_serie": 67068, + "name": "0.7 MT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265700, + "fields": { + "id_car_serie": 67068, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265701, + "fields": { + "id_car_serie": 67068, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265702, + "fields": { + "id_car_serie": 67068, + "name": "0.7 MT 4WD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265703, + "fields": { + "id_car_serie": 67068, + "name": "0.7 AT 4WD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265704, + "fields": { + "id_car_serie": 67068, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265705, + "fields": { + "id_car_serie": 67069, + "name": "0.7 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265706, + "fields": { + "id_car_serie": 67069, + "name": "0.7 AT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265707, + "fields": { + "id_car_serie": 67069, + "name": "0.7 AT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265708, + "fields": { + "id_car_serie": 67069, + "name": "0.7 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265709, + "fields": { + "id_car_serie": 67069, + "name": "0.7 AT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265710, + "fields": { + "id_car_serie": 67069, + "name": "0.7 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265711, + "fields": { + "id_car_serie": 67069, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265712, + "fields": { + "id_car_serie": 67069, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265713, + "fields": { + "id_car_serie": 67070, + "name": "0.6 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265714, + "fields": { + "id_car_serie": 67070, + "name": "0.7 MT 4WD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265715, + "fields": { + "id_car_serie": 67070, + "name": "0.7 AT 4WD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265716, + "fields": { + "id_car_serie": 67070, + "name": "0.7 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265717, + "fields": { + "id_car_serie": 67070, + "name": "0.7 AT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265718, + "fields": { + "id_car_serie": 67070, + "name": "0.7 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265719, + "fields": { + "id_car_serie": 67070, + "name": "0.7 AT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265720, + "fields": { + "id_car_serie": 67070, + "name": "0.7 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265721, + "fields": { + "id_car_serie": 67070, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265722, + "fields": { + "id_car_serie": 67070, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265723, + "fields": { + "id_car_serie": 67070, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265724, + "fields": { + "id_car_serie": 67069, + "name": "0.6 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265725, + "fields": { + "id_car_serie": 67069, + "name": "0.7 AT 4WD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265726, + "fields": { + "id_car_serie": 67069, + "name": "0.7 MT 4WD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265727, + "fields": { + "id_car_serie": 67069, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265728, + "fields": { + "id_car_serie": 67071, + "name": "0.6 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265729, + "fields": { + "id_car_serie": 67071, + "name": "0.7 MT 4WD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265730, + "fields": { + "id_car_serie": 67071, + "name": "0.7 AT 4WD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265731, + "fields": { + "id_car_serie": 67071, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265732, + "fields": { + "id_car_serie": 67071, + "name": "0.7 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265733, + "fields": { + "id_car_serie": 67071, + "name": "0.7 AT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265734, + "fields": { + "id_car_serie": 67071, + "name": "0.7 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265735, + "fields": { + "id_car_serie": 3800, + "name": "2.4 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265736, + "fields": { + "id_car_serie": 3800, + "name": "2.4 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265737, + "fields": { + "id_car_serie": 3800, + "name": "2.4 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265738, + "fields": { + "id_car_serie": 3800, + "name": "2.4 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265739, + "fields": { + "id_car_serie": 67073, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265740, + "fields": { + "id_car_serie": 67073, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265741, + "fields": { + "id_car_serie": 67073, + "name": "2.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265742, + "fields": { + "id_car_serie": 67073, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265743, + "fields": { + "id_car_serie": 67073, + "name": "2.6 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265744, + "fields": { + "id_car_serie": 67073, + "name": "2.6 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265745, + "fields": { + "id_car_serie": 67073, + "name": "2.6 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265746, + "fields": { + "id_car_serie": 47074, + "name": "2.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265747, + "fields": { + "id_car_serie": 47074, + "name": "2.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265748, + "fields": { + "id_car_serie": 67074, + "name": "2.5 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265749, + "fields": { + "id_car_serie": 67075, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265750, + "fields": { + "id_car_serie": 67075, + "name": "0.7 AT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265751, + "fields": { + "id_car_serie": 67075, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265752, + "fields": { + "id_car_serie": 67075, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265753, + "fields": { + "id_car_serie": 3805, + "name": "0.7 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265754, + "fields": { + "id_car_serie": 3805, + "name": "1.1 AT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265755, + "fields": { + "id_car_serie": 3805, + "name": "1.1 AT 4WD (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265756, + "fields": { + "id_car_serie": 67076, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265757, + "fields": { + "id_car_serie": 67076, + "name": "0.7 AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265758, + "fields": { + "id_car_serie": 67076, + "name": "0.7 AT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265759, + "fields": { + "id_car_serie": 67076, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265760, + "fields": { + "id_car_serie": 67076, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265761, + "fields": { + "id_car_serie": 67076, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265762, + "fields": { + "id_car_serie": 67076, + "name": "1.1 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265763, + "fields": { + "id_car_serie": 67076, + "name": "1.1 AT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265764, + "fields": { + "id_car_serie": 67077, + "name": "5.6 AT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265765, + "fields": { + "id_car_serie": 67077, + "name": "5.6 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265766, + "fields": { + "id_car_serie": 67078, + "name": "3.5 CVT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265767, + "fields": { + "id_car_serie": 67079, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265768, + "fields": { + "id_car_serie": 67079, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265769, + "fields": { + "id_car_serie": 67079, + "name": "1.6 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265770, + "fields": { + "id_car_serie": 67079, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265771, + "fields": { + "id_car_serie": 67079, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265772, + "fields": { + "id_car_serie": 67079, + "name": "2.0 AMT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265773, + "fields": { + "id_car_serie": 67079, + "name": "2.0 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265774, + "fields": { + "id_car_serie": 67080, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265775, + "fields": { + "id_car_serie": 67080, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265776, + "fields": { + "id_car_serie": 67080, + "name": "2.5 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265777, + "fields": { + "id_car_serie": 67080, + "name": "2.5 AT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265778, + "fields": { + "id_car_serie": 67080, + "name": "2.5 AT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265779, + "fields": { + "id_car_serie": 67080, + "name": "2.5 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265780, + "fields": { + "id_car_serie": 67081, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265781, + "fields": { + "id_car_serie": 67081, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265782, + "fields": { + "id_car_serie": 67081, + "name": "2.5 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265783, + "fields": { + "id_car_serie": 67081, + "name": "2.5 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265784, + "fields": { + "id_car_serie": 67081, + "name": "2.5 AT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265785, + "fields": { + "id_car_serie": 15062, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265786, + "fields": { + "id_car_serie": 15062, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265787, + "fields": { + "id_car_serie": 15062, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265788, + "fields": { + "id_car_serie": 15062, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265789, + "fields": { + "id_car_serie": 15062, + "name": "1.7 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265790, + "fields": { + "id_car_serie": 3903, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265791, + "fields": { + "id_car_serie": 3903, + "name": "1.7 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265792, + "fields": { + "id_car_serie": 3903, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265793, + "fields": { + "id_car_serie": 48858, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265794, + "fields": { + "id_car_serie": 48858, + "name": "1.2 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265795, + "fields": { + "id_car_serie": 48858, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265796, + "fields": { + "id_car_serie": 48858, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265797, + "fields": { + "id_car_serie": 48858, + "name": "1.6 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265798, + "fields": { + "id_car_serie": 48858, + "name": "1.6 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265799, + "fields": { + "id_car_serie": 64348, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265800, + "fields": { + "id_car_serie": 64348, + "name": "2.0 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265801, + "fields": { + "id_car_serie": 67083, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265802, + "fields": { + "id_car_serie": 67083, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265803, + "fields": { + "id_car_serie": 67083, + "name": "2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265804, + "fields": { + "id_car_serie": 67083, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265805, + "fields": { + "id_car_serie": 67084, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265806, + "fields": { + "id_car_serie": 67084, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265807, + "fields": { + "id_car_serie": 67085, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265808, + "fields": { + "id_car_serie": 67085, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265809, + "fields": { + "id_car_serie": 67085, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265810, + "fields": { + "id_car_serie": 67085, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265811, + "fields": { + "id_car_serie": 67085, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265812, + "fields": { + "id_car_serie": 67085, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265813, + "fields": { + "id_car_serie": 67085, + "name": "1.6 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265814, + "fields": { + "id_car_serie": 49695, + "name": "2.0 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265815, + "fields": { + "id_car_serie": 49695, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265816, + "fields": { + "id_car_serie": 63241, + "name": "1.2 MT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265817, + "fields": { + "id_car_serie": 64433, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265818, + "fields": { + "id_car_serie": 64433, + "name": "1.0 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265819, + "fields": { + "id_car_serie": 64434, + "name": "2.0 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265820, + "fields": { + "id_car_serie": 64434, + "name": "2.0 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265821, + "fields": { + "id_car_serie": 64434, + "name": "2.0 AMT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265822, + "fields": { + "id_car_serie": 66863, + "name": "0.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265823, + "fields": { + "id_car_serie": 66863, + "name": "0.7 MT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265824, + "fields": { + "id_car_serie": 66863, + "name": "0.7 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265825, + "fields": { + "id_car_serie": 66863, + "name": "0.7 AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265826, + "fields": { + "id_car_serie": 66863, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265827, + "fields": { + "id_car_serie": 66863, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265828, + "fields": { + "id_car_serie": 66863, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265829, + "fields": { + "id_car_serie": 9146, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265830, + "fields": { + "id_car_serie": 9146, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265831, + "fields": { + "id_car_serie": 9146, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265832, + "fields": { + "id_car_serie": 64482, + "name": "1.6 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265833, + "fields": { + "id_car_serie": 64482, + "name": "1.6 AT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265834, + "fields": { + "id_car_serie": 64482, + "name": "2.0 AT 4WD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265835, + "fields": { + "id_car_serie": 64482, + "name": "2.0 MT 4WD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265836, + "fields": { + "id_car_serie": 49178, + "name": "0.7 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265837, + "fields": { + "id_car_serie": 49178, + "name": "0.7 MT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265838, + "fields": { + "id_car_serie": 49178, + "name": "0.7 AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265839, + "fields": { + "id_car_serie": 49178, + "name": "0.7 AT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265840, + "fields": { + "id_car_serie": 49178, + "name": "0.7 AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265841, + "fields": { + "id_car_serie": 49178, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265842, + "fields": { + "id_car_serie": 49178, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265843, + "fields": { + "id_car_serie": 49178, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265844, + "fields": { + "id_car_serie": 64510, + "name": "1.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265845, + "fields": { + "id_car_serie": 64510, + "name": "1.6 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265846, + "fields": { + "id_car_serie": 64510, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265847, + "fields": { + "id_car_serie": 64510, + "name": "1.8 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265848, + "fields": { + "id_car_serie": 64513, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265849, + "fields": { + "id_car_serie": 64513, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265850, + "fields": { + "id_car_serie": 64513, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265851, + "fields": { + "id_car_serie": 64513, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265852, + "fields": { + "id_car_serie": 64513, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265853, + "fields": { + "id_car_serie": 64513, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265854, + "fields": { + "id_car_serie": 64513, + "name": "1.4 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265855, + "fields": { + "id_car_serie": 64513, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265856, + "fields": { + "id_car_serie": 64513, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265857, + "fields": { + "id_car_serie": 64513, + "name": "1.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265858, + "fields": { + "id_car_serie": 64513, + "name": "1.8 MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265859, + "fields": { + "id_car_serie": 64514, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265860, + "fields": { + "id_car_serie": 64514, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265861, + "fields": { + "id_car_serie": 64514, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265862, + "fields": { + "id_car_serie": 64514, + "name": "1.8 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265863, + "fields": { + "id_car_serie": 64514, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265864, + "fields": { + "id_car_serie": 64514, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265865, + "fields": { + "id_car_serie": 64514, + "name": "1.8 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265866, + "fields": { + "id_car_serie": 64514, + "name": "1.8 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265867, + "fields": { + "id_car_serie": 64514, + "name": "2.2 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265868, + "fields": { + "id_car_serie": 49239, + "name": "1.8 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265869, + "fields": { + "id_car_serie": 49239, + "name": "1.8 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265870, + "fields": { + "id_car_serie": 9554, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265871, + "fields": { + "id_car_serie": 46613, + "name": "0.7 CVT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265872, + "fields": { + "id_car_serie": 46613, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265873, + "fields": { + "id_car_serie": 46614, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265874, + "fields": { + "id_car_serie": 67086, + "name": "1.5 CVT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265875, + "fields": { + "id_car_serie": 67086, + "name": "1.6 MT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265876, + "fields": { + "id_car_serie": 67087, + "name": "1.0 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265877, + "fields": { + "id_car_serie": 67087, + "name": "1.0 CVT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265878, + "fields": { + "id_car_serie": 67087, + "name": "1.5 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265879, + "fields": { + "id_car_serie": 67087, + "name": "1.5 CVT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265880, + "fields": { + "id_car_serie": 67087, + "name": "1.5 CVT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265881, + "fields": { + "id_car_serie": 67087, + "name": "1.5 CVT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265882, + "fields": { + "id_car_serie": 67087, + "name": "1.5 CVT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265883, + "fields": { + "id_car_serie": 67088, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265884, + "fields": { + "id_car_serie": 67088, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265885, + "fields": { + "id_car_serie": 67088, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265886, + "fields": { + "id_car_serie": 67088, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265887, + "fields": { + "id_car_serie": 67088, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265888, + "fields": { + "id_car_serie": 67088, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265889, + "fields": { + "id_car_serie": 67088, + "name": "2.0 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265890, + "fields": { + "id_car_serie": 67088, + "name": "2.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265891, + "fields": { + "id_car_serie": 67088, + "name": "2.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265892, + "fields": { + "id_car_serie": 67088, + "name": "2.0 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265893, + "fields": { + "id_car_serie": 67088, + "name": "2.0 AT 4WD (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265894, + "fields": { + "id_car_serie": 67088, + "name": "2.0 AT 4WD (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265895, + "fields": { + "id_car_serie": 10739, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265896, + "fields": { + "id_car_serie": 10739, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265897, + "fields": { + "id_car_serie": 10739, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265898, + "fields": { + "id_car_serie": 10739, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265899, + "fields": { + "id_car_serie": 10739, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265900, + "fields": { + "id_car_serie": 10739, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265901, + "fields": { + "id_car_serie": 10739, + "name": "2.0 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265902, + "fields": { + "id_car_serie": 10739, + "name": "2.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265903, + "fields": { + "id_car_serie": 10739, + "name": "2.0 AT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265904, + "fields": { + "id_car_serie": 10739, + "name": "2.0 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265905, + "fields": { + "id_car_serie": 10739, + "name": "2.0 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265906, + "fields": { + "id_car_serie": 10739, + "name": "2.0 AT 4WD (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265907, + "fields": { + "id_car_serie": 4572, + "name": "2.3 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265908, + "fields": { + "id_car_serie": 4572, + "name": "2.5 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265909, + "fields": { + "id_car_serie": 64736, + "name": "5.9 AT (573 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265910, + "fields": { + "id_car_serie": 64736, + "name": "5.9 AT (576 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265911, + "fields": { + "id_car_serie": 67089, + "name": "4.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265912, + "fields": { + "id_car_serie": 64767, + "name": "6.0 MT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265913, + "fields": { + "id_car_serie": 5754, + "name": "6.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265914, + "fields": { + "id_car_serie": 64832, + "name": "0.6 MT (29 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265915, + "fields": { + "id_car_serie": 64832, + "name": "0.6 MT 4WD (29 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265916, + "fields": { + "id_car_serie": 64832, + "name": "0.6 MT (39 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265917, + "fields": { + "id_car_serie": 64832, + "name": "0.6 MT 4WD (39 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265918, + "fields": { + "id_car_serie": 67091, + "name": "0.7 MT 4WD (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265919, + "fields": { + "id_car_serie": 67091, + "name": "0.7 AT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265920, + "fields": { + "id_car_serie": 67091, + "name": "0.7 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265921, + "fields": { + "id_car_serie": 67091, + "name": "0.7 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265922, + "fields": { + "id_car_serie": 67091, + "name": "0.7 AT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265923, + "fields": { + "id_car_serie": 67091, + "name": "0.7 AT 4WD (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265924, + "fields": { + "id_car_serie": 67091, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265925, + "fields": { + "id_car_serie": 67091, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265926, + "fields": { + "id_car_serie": 67091, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265927, + "fields": { + "id_car_serie": 67091, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265928, + "fields": { + "id_car_serie": 67092, + "name": "0.7 MT (43 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265929, + "fields": { + "id_car_serie": 67092, + "name": "0.7 MT 4WD (43 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265930, + "fields": { + "id_car_serie": 67092, + "name": "0.7 AT (43 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265931, + "fields": { + "id_car_serie": 67092, + "name": "0.7 MT 4WD (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265932, + "fields": { + "id_car_serie": 67092, + "name": "0.7 AT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265933, + "fields": { + "id_car_serie": 67092, + "name": "0.7 AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265934, + "fields": { + "id_car_serie": 67092, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265935, + "fields": { + "id_car_serie": 67092, + "name": "0.7 AT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265936, + "fields": { + "id_car_serie": 67092, + "name": "0.7 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265937, + "fields": { + "id_car_serie": 67092, + "name": "0.7 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265938, + "fields": { + "id_car_serie": 67092, + "name": "0.7 AT 4WD (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265939, + "fields": { + "id_car_serie": 67092, + "name": "0.7 AT 4WD (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265940, + "fields": { + "id_car_serie": 67092, + "name": "0.7 MT 4WD (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265941, + "fields": { + "id_car_serie": 67093, + "name": "0.7 MT 4WD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265942, + "fields": { + "id_car_serie": 67093, + "name": "0.7 MT 4WD (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265943, + "fields": { + "id_car_serie": 67093, + "name": "0.7 AT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265944, + "fields": { + "id_car_serie": 67093, + "name": "0.7 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265945, + "fields": { + "id_car_serie": 67093, + "name": "0.7 MT 4WD (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265946, + "fields": { + "id_car_serie": 67093, + "name": "0.7 AT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265947, + "fields": { + "id_car_serie": 67093, + "name": "0.7 AT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265948, + "fields": { + "id_car_serie": 62998, + "name": "7.3 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265949, + "fields": { + "id_car_serie": 64953, + "name": "2.0 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265950, + "fields": { + "id_car_serie": 64953, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265951, + "fields": { + "id_car_serie": 64953, + "name": "2.0 AMT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265952, + "fields": { + "id_car_serie": 63678, + "name": "5.7 MT (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265953, + "fields": { + "id_car_serie": 66948, + "name": "2.7 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265954, + "fields": { + "id_car_serie": 66948, + "name": "2.7 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265955, + "fields": { + "id_car_serie": 66948, + "name": "2.7 AT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265956, + "fields": { + "id_car_serie": 66948, + "name": "2.7 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265957, + "fields": { + "id_car_serie": 66948, + "name": "2.8 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265958, + "fields": { + "id_car_serie": 66948, + "name": "2.8 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265959, + "fields": { + "id_car_serie": 66948, + "name": "2.8 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265960, + "fields": { + "id_car_serie": 66948, + "name": "2.8 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265961, + "fields": { + "id_car_serie": 65178, + "name": "2.3 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265962, + "fields": { + "id_car_serie": 65178, + "name": "2.4 MT 4WD (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265963, + "fields": { + "id_car_serie": 65178, + "name": "2.4 AT 4WD (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265964, + "fields": { + "id_car_serie": 67095, + "name": "2.0 AMT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265965, + "fields": { + "id_car_serie": 67096, + "name": "2.0 AMT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265966, + "fields": { + "id_car_serie": 67097, + "name": "2.0 AMT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265967, + "fields": { + "id_car_serie": 67097, + "name": "2.4 MT (1000 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265968, + "fields": { + "id_car_serie": 67098, + "name": "2.0 AMT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265969, + "fields": { + "id_car_serie": 67099, + "name": "2.0 AMT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265970, + "fields": { + "id_car_serie": 67100, + "name": "1.6 AMT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265971, + "fields": { + "id_car_serie": 63715, + "name": "1.1 MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265972, + "fields": { + "id_car_serie": 65181, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265973, + "fields": { + "id_car_serie": 65182, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265974, + "fields": { + "id_car_serie": 65183, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265975, + "fields": { + "id_car_serie": 47143, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265976, + "fields": { + "id_car_serie": 47143, + "name": "3.6 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265977, + "fields": { + "id_car_serie": 47143, + "name": "2.8 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265978, + "fields": { + "id_car_serie": 47144, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265979, + "fields": { + "id_car_serie": 47144, + "name": "3.6 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265980, + "fields": { + "id_car_serie": 47144, + "name": "2.8 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265981, + "fields": { + "id_car_serie": 63904, + "name": "5.7 MT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265982, + "fields": { + "id_car_serie": 8433, + "name": "1.3 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265983, + "fields": { + "id_car_serie": 8433, + "name": "1.5 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265984, + "fields": { + "id_car_serie": 47031, + "name": "3.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265985, + "fields": { + "id_car_serie": 45753, + "name": "2.4 AT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265986, + "fields": { + "id_car_serie": 45753, + "name": "3.6 AT 4WD (301 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265987, + "fields": { + "id_car_serie": 3057, + "name": "4.8 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265988, + "fields": { + "id_car_serie": 3057, + "name": "4.8 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265989, + "fields": { + "id_car_serie": 3057, + "name": "5.3 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265990, + "fields": { + "id_car_serie": 3057, + "name": "5.3 AT 4WD (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265991, + "fields": { + "id_car_serie": 3057, + "name": "5.3 AT (301 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265992, + "fields": { + "id_car_serie": 3057, + "name": "5.3 AT 4WD (301 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265993, + "fields": { + "id_car_serie": 3057, + "name": "5.3 AT 4WD (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265994, + "fields": { + "id_car_serie": 3057, + "name": "6.0 AT 4WD (323 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265995, + "fields": { + "id_car_serie": 67101, + "name": "2.8 AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265996, + "fields": { + "id_car_serie": 67101, + "name": "4.3 AT (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265997, + "fields": { + "id_car_serie": 67101, + "name": "4.8 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265998, + "fields": { + "id_car_serie": 67101, + "name": "6.0 AT (329 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 265999, + "fields": { + "id_car_serie": 67101, + "name": "6.0 AT (341 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266000, + "fields": { + "id_car_serie": 67101, + "name": "6.6 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266001, + "fields": { + "id_car_serie": 47789, + "name": "4.3 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266002, + "fields": { + "id_car_serie": 47789, + "name": "5.7 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266003, + "fields": { + "id_car_serie": 47789, + "name": "5.7 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266004, + "fields": { + "id_car_serie": 47794, + "name": "2.0 AT (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266005, + "fields": { + "id_car_serie": 47794, + "name": "2.0 MT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266006, + "fields": { + "id_car_serie": 47794, + "name": "2.2 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266007, + "fields": { + "id_car_serie": 47794, + "name": "2.2 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266008, + "fields": { + "id_car_serie": 47209, + "name": "2.5 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266009, + "fields": { + "id_car_serie": 47209, + "name": "2.5 AT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266010, + "fields": { + "id_car_serie": 47210, + "name": "2.5 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266011, + "fields": { + "id_car_serie": 47210, + "name": "2.5 AT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266012, + "fields": { + "id_car_serie": 5373, + "name": "2.5 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266013, + "fields": { + "id_car_serie": 5373, + "name": "2.5 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266014, + "fields": { + "id_car_serie": 5374, + "name": "2.5 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266015, + "fields": { + "id_car_serie": 5374, + "name": "2.5 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266016, + "fields": { + "id_car_serie": 67102, + "name": "1.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266017, + "fields": { + "id_car_serie": 67102, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266018, + "fields": { + "id_car_serie": 67102, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266019, + "fields": { + "id_car_serie": 67102, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266020, + "fields": { + "id_car_serie": 67102, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266021, + "fields": { + "id_car_serie": 67102, + "name": "2.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266022, + "fields": { + "id_car_serie": 67102, + "name": "2.5 CVT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266023, + "fields": { + "id_car_serie": 62991, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266024, + "fields": { + "id_car_serie": 67103, + "name": "2.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266025, + "fields": { + "id_car_serie": 67103, + "name": "2.3 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266026, + "fields": { + "id_car_serie": 67103, + "name": "3.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266027, + "fields": { + "id_car_serie": 67103, + "name": "3.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266028, + "fields": { + "id_car_serie": 67103, + "name": "4.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266029, + "fields": { + "id_car_serie": 67103, + "name": "4.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266030, + "fields": { + "id_car_serie": 67103, + "name": "4.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266031, + "fields": { + "id_car_serie": 10796, + "name": "2.5 CVT 4WD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266032, + "fields": { + "id_car_serie": 10796, + "name": "3.5 CVT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266033, + "fields": { + "id_car_serie": 44514, + "name": "3.8 AMT 4WD (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266034, + "fields": { + "id_car_serie": 44514, + "name": "3.8 AMT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266035, + "fields": { + "id_car_serie": 44514, + "name": "3.8 AMT 4WD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266036, + "fields": { + "id_car_serie": 45478, + "name": "1.6 CVT 4WD (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266037, + "fields": { + "id_car_serie": 45479, + "name": "1.6 CVT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266038, + "fields": { + "id_car_serie": 45479, + "name": "1.6 CVT 4WD (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266039, + "fields": { + "id_car_serie": 67104, + "name": "1.6 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266040, + "fields": { + "id_car_serie": 7213, + "name": "1.2 CVT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266041, + "fields": { + "id_car_serie": 7213, + "name": "1.2 CVT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266042, + "fields": { + "id_car_serie": 7213, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266043, + "fields": { + "id_car_serie": 67105, + "name": "2.7 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266044, + "fields": { + "id_car_serie": 67105, + "name": "2.7 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266045, + "fields": { + "id_car_serie": 67105, + "name": "2.7 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266046, + "fields": { + "id_car_serie": 67105, + "name": "2.7 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266047, + "fields": { + "id_car_serie": 67106, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266048, + "fields": { + "id_car_serie": 67106, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266049, + "fields": { + "id_car_serie": 67106, + "name": "0.7 CVT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266050, + "fields": { + "id_car_serie": 67106, + "name": "0.7 CVT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266051, + "fields": { + "id_car_serie": 67106, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266052, + "fields": { + "id_car_serie": 67106, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266053, + "fields": { + "id_car_serie": 14689, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266054, + "fields": { + "id_car_serie": 67107, + "name": "1.6 MT (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266055, + "fields": { + "id_car_serie": 67107, + "name": "1.6 MT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266056, + "fields": { + "id_car_serie": 3971, + "name": "1.1 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266057, + "fields": { + "id_car_serie": 3971, + "name": "1.9 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266058, + "fields": { + "id_car_serie": 47069, + "name": "2.0 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266059, + "fields": { + "id_car_serie": 47070, + "name": "2.0 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266060, + "fields": { + "id_car_serie": 47071, + "name": "2.0 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266061, + "fields": { + "id_car_serie": 47072, + "name": "2.0 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266062, + "fields": { + "id_car_serie": 67108, + "name": "1.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266063, + "fields": { + "id_car_serie": 67108, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266064, + "fields": { + "id_car_serie": 67108, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266065, + "fields": { + "id_car_serie": 67108, + "name": "1.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266066, + "fields": { + "id_car_serie": 67108, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266067, + "fields": { + "id_car_serie": 67108, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266068, + "fields": { + "id_car_serie": 67108, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266069, + "fields": { + "id_car_serie": 67108, + "name": "2.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266070, + "fields": { + "id_car_serie": 14690, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266071, + "fields": { + "id_car_serie": 2032, + "name": "2.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266072, + "fields": { + "id_car_serie": 2032, + "name": "2.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266073, + "fields": { + "id_car_serie": 10816, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266074, + "fields": { + "id_car_serie": 10816, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266075, + "fields": { + "id_car_serie": 67109, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266076, + "fields": { + "id_car_serie": 67109, + "name": "1.3 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266077, + "fields": { + "id_car_serie": 67109, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266078, + "fields": { + "id_car_serie": 67109, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266081, + "fields": { + "id_car_serie": 53186, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266082, + "fields": { + "id_car_serie": 67110, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266083, + "fields": { + "id_car_serie": 67110, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266084, + "fields": { + "id_car_serie": 67110, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266085, + "fields": { + "id_car_serie": 67110, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266086, + "fields": { + "id_car_serie": 67110, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266087, + "fields": { + "id_car_serie": 67111, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266088, + "fields": { + "id_car_serie": 67111, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266089, + "fields": { + "id_car_serie": 67111, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266090, + "fields": { + "id_car_serie": 67111, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266091, + "fields": { + "id_car_serie": 67111, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266092, + "fields": { + "id_car_serie": 67111, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266093, + "fields": { + "id_car_serie": 47499, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266094, + "fields": { + "id_car_serie": 10782, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266095, + "fields": { + "id_car_serie": 67112, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266096, + "fields": { + "id_car_serie": 67112, + "name": "1.9 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266097, + "fields": { + "id_car_serie": 67112, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266098, + "fields": { + "id_car_serie": 67112, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266099, + "fields": { + "id_car_serie": 51412, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266100, + "fields": { + "id_car_serie": 47352, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266101, + "fields": { + "id_car_serie": 47352, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266102, + "fields": { + "id_car_serie": 47352, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266103, + "fields": { + "id_car_serie": 48926, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266104, + "fields": { + "id_car_serie": 48926, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266105, + "fields": { + "id_car_serie": 48926, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266106, + "fields": { + "id_car_serie": 48926, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266107, + "fields": { + "id_car_serie": 48926, + "name": "1.9 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266108, + "fields": { + "id_car_serie": 48926, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266109, + "fields": { + "id_car_serie": 67113, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266110, + "fields": { + "id_car_serie": 67113, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266111, + "fields": { + "id_car_serie": 67113, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266112, + "fields": { + "id_car_serie": 67113, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266113, + "fields": { + "id_car_serie": 67113, + "name": "1.6 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266114, + "fields": { + "id_car_serie": 67113, + "name": "1.9 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266115, + "fields": { + "id_car_serie": 67113, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266116, + "fields": { + "id_car_serie": 67114, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266117, + "fields": { + "id_car_serie": 67114, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266118, + "fields": { + "id_car_serie": 67114, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266119, + "fields": { + "id_car_serie": 67114, + "name": "1.8 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266120, + "fields": { + "id_car_serie": 67114, + "name": "1.9 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266121, + "fields": { + "id_car_serie": 67114, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266122, + "fields": { + "id_car_serie": 67115, + "name": "4.0 MT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266123, + "fields": { + "id_car_serie": 67115, + "name": "4.0 AMT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266124, + "fields": { + "id_car_serie": 63238, + "name": "4.0 AMT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266125, + "fields": { + "id_car_serie": 67116, + "name": "2.5 AT (189 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266126, + "fields": { + "id_car_serie": 67116, + "name": "2.5 AT 4WD (189 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266127, + "fields": { + "id_car_serie": 67117, + "name": "3.5 AT (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266128, + "fields": { + "id_car_serie": 67117, + "name": "3.5 AT 4WD (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266129, + "fields": { + "id_car_serie": 67118, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266130, + "fields": { + "id_car_serie": 67118, + "name": "1.8 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266131, + "fields": { + "id_car_serie": 67118, + "name": "1.8 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266132, + "fields": { + "id_car_serie": 67119, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266133, + "fields": { + "id_car_serie": 67119, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266134, + "fields": { + "id_car_serie": 67119, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266135, + "fields": { + "id_car_serie": 67119, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266136, + "fields": { + "id_car_serie": 67119, + "name": "1.8 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266137, + "fields": { + "id_car_serie": 9584, + "name": "1.6 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266138, + "fields": { + "id_car_serie": 9584, + "name": "1.6 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266139, + "fields": { + "id_car_serie": 9584, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266140, + "fields": { + "id_car_serie": 9584, + "name": "1.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266141, + "fields": { + "id_car_serie": 4405, + "name": "1.5 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266142, + "fields": { + "id_car_serie": 4405, + "name": "1.5 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266143, + "fields": { + "id_car_serie": 4405, + "name": "1.5 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266144, + "fields": { + "id_car_serie": 4405, + "name": "1.5 AT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266145, + "fields": { + "id_car_serie": 67120, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266146, + "fields": { + "id_car_serie": 67120, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266147, + "fields": { + "id_car_serie": 67120, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266148, + "fields": { + "id_car_serie": 67120, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266149, + "fields": { + "id_car_serie": 67120, + "name": "1.6 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266150, + "fields": { + "id_car_serie": 67120, + "name": "1.6 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266151, + "fields": { + "id_car_serie": 67121, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266152, + "fields": { + "id_car_serie": 67121, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266153, + "fields": { + "id_car_serie": 67121, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266154, + "fields": { + "id_car_serie": 67121, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266155, + "fields": { + "id_car_serie": 9604, + "name": "2.7 MT 4WD (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266156, + "fields": { + "id_car_serie": 9604, + "name": "2.7 AT 4WD (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266157, + "fields": { + "id_car_serie": 9604, + "name": "3.5 MT 4WD (278 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266158, + "fields": { + "id_car_serie": 9604, + "name": "3.5 AT 4WD (278 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266159, + "fields": { + "id_car_serie": 46043, + "name": "3.5 AT 4WD (278 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266160, + "fields": { + "id_car_serie": 46043, + "name": "3.5 MT 4WD (278 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266161, + "fields": { + "id_car_serie": 9605, + "name": "3.5 AT 4WD (278 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266162, + "fields": { + "id_car_serie": 9605, + "name": "3.5 MT 4WD (278 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266163, + "fields": { + "id_car_serie": 15408, + "name": "1.5 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266164, + "fields": { + "id_car_serie": 15408, + "name": "1.5 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266165, + "fields": { + "id_car_serie": 15409, + "name": "1.5 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266166, + "fields": { + "id_car_serie": 15409, + "name": "1.5 AT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266167, + "fields": { + "id_car_serie": 9614, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266168, + "fields": { + "id_car_serie": 9614, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266169, + "fields": { + "id_car_serie": 9614, + "name": "1.5 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266170, + "fields": { + "id_car_serie": 9614, + "name": "1.5 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266171, + "fields": { + "id_car_serie": 9614, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266172, + "fields": { + "id_car_serie": 9614, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266173, + "fields": { + "id_car_serie": 9614, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266174, + "fields": { + "id_car_serie": 9614, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266175, + "fields": { + "id_car_serie": 9614, + "name": "1.5 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266176, + "fields": { + "id_car_serie": 9614, + "name": "1.5 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266177, + "fields": { + "id_car_serie": 67122, + "name": "1.5 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266178, + "fields": { + "id_car_serie": 67122, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266179, + "fields": { + "id_car_serie": 67122, + "name": "1.8 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266180, + "fields": { + "id_car_serie": 67122, + "name": "1.8 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266181, + "fields": { + "id_car_serie": 67122, + "name": "1.8 MT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266182, + "fields": { + "id_car_serie": 67122, + "name": "1.8 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266183, + "fields": { + "id_car_serie": 67122, + "name": "1.8 AT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266184, + "fields": { + "id_car_serie": 67122, + "name": "2.0 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266185, + "fields": { + "id_car_serie": 67122, + "name": "2.0 MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266186, + "fields": { + "id_car_serie": 67122, + "name": "2.0 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266187, + "fields": { + "id_car_serie": 67122, + "name": "2.0 AT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266188, + "fields": { + "id_car_serie": 67122, + "name": "2.2 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266189, + "fields": { + "id_car_serie": 67122, + "name": "2.2 AT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266190, + "fields": { + "id_car_serie": 49654, + "name": "1.8 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266191, + "fields": { + "id_car_serie": 49654, + "name": "1.8 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266192, + "fields": { + "id_car_serie": 14595, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266193, + "fields": { + "id_car_serie": 14595, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266194, + "fields": { + "id_car_serie": 9609, + "name": "5.7 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266195, + "fields": { + "id_car_serie": 64628, + "name": "1.4 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266196, + "fields": { + "id_car_serie": 9628, + "name": "2.0 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266197, + "fields": { + "id_car_serie": 9628, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266198, + "fields": { + "id_car_serie": 9629, + "name": "2.0 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266199, + "fields": { + "id_car_serie": 9629, + "name": "2.0 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266200, + "fields": { + "id_car_serie": 45583, + "name": "2.5 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266201, + "fields": { + "id_car_serie": 45583, + "name": "2.5 MT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266202, + "fields": { + "id_car_serie": 45583, + "name": "2.0 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266203, + "fields": { + "id_car_serie": 8391, + "name": "7.3 AT 4WD (582 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266204, + "fields": { + "id_car_serie": 67123, + "name": "3.6 AT (287 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266205, + "fields": { + "id_car_serie": 67124, + "name": "3.6 CVT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266206, + "fields": { + "id_car_serie": 67124, + "name": "3.6 AT (287 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266207, + "fields": { + "id_car_serie": 67124, + "name": "3.6 AT 4WD (287 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266208, + "fields": { + "id_car_serie": 63525, + "name": "1.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266209, + "fields": { + "id_car_serie": 63525, + "name": "1.4 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266210, + "fields": { + "id_car_serie": 3272, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266211, + "fields": { + "id_car_serie": 3272, + "name": "1.1 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266212, + "fields": { + "id_car_serie": 3271, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266213, + "fields": { + "id_car_serie": 3278, + "name": "2.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266214, + "fields": { + "id_car_serie": 3279, + "name": "2.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266215, + "fields": { + "id_car_serie": 67125, + "name": "2.4 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266216, + "fields": { + "id_car_serie": 67125, + "name": "2.4 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266217, + "fields": { + "id_car_serie": 67125, + "name": "2.4 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266218, + "fields": { + "id_car_serie": 67125, + "name": "2.5 MT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266219, + "fields": { + "id_car_serie": 67125, + "name": "2.5 AT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266220, + "fields": { + "id_car_serie": 67125, + "name": "2.5 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266221, + "fields": { + "id_car_serie": 67125, + "name": "2.5 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266222, + "fields": { + "id_car_serie": 67125, + "name": "2.5 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266223, + "fields": { + "id_car_serie": 67126, + "name": "2.4 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266224, + "fields": { + "id_car_serie": 67126, + "name": "2.4 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266225, + "fields": { + "id_car_serie": 67126, + "name": "2.4 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266226, + "fields": { + "id_car_serie": 67126, + "name": "2.4 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266227, + "fields": { + "id_car_serie": 67126, + "name": "2.4 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266228, + "fields": { + "id_car_serie": 67126, + "name": "2.5 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266229, + "fields": { + "id_car_serie": 67126, + "name": "2.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266230, + "fields": { + "id_car_serie": 67126, + "name": "2.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266231, + "fields": { + "id_car_serie": 67126, + "name": "2.5 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266232, + "fields": { + "id_car_serie": 67126, + "name": "2.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266233, + "fields": { + "id_car_serie": 67126, + "name": "2.5 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266234, + "fields": { + "id_car_serie": 67126, + "name": "2.5 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266235, + "fields": { + "id_car_serie": 67127, + "name": "2.4 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266236, + "fields": { + "id_car_serie": 67127, + "name": "2.4 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266237, + "fields": { + "id_car_serie": 67127, + "name": "2.5 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266238, + "fields": { + "id_car_serie": 67127, + "name": "2.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266239, + "fields": { + "id_car_serie": 67127, + "name": "2.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266240, + "fields": { + "id_car_serie": 67127, + "name": "2.5 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266241, + "fields": { + "id_car_serie": 67127, + "name": "2.5 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266242, + "fields": { + "id_car_serie": 67127, + "name": "2.5 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266243, + "fields": { + "id_car_serie": 65151, + "name": "2.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266244, + "fields": { + "id_car_serie": 65152, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266245, + "fields": { + "id_car_serie": 65152, + "name": "1.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266246, + "fields": { + "id_car_serie": 65152, + "name": "1.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266247, + "fields": { + "id_car_serie": 65152, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266248, + "fields": { + "id_car_serie": 65152, + "name": "1.6 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266249, + "fields": { + "id_car_serie": 65152, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266250, + "fields": { + "id_car_serie": 65152, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266251, + "fields": { + "id_car_serie": 65152, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266252, + "fields": { + "id_car_serie": 65152, + "name": "2.0 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266253, + "fields": { + "id_car_serie": 65152, + "name": "2.0 MT 4WD (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266254, + "fields": { + "id_car_serie": 10744, + "name": "3.3 MT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266255, + "fields": { + "id_car_serie": 45968, + "name": "2.2 MT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266256, + "fields": { + "id_car_serie": 64525, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266257, + "fields": { + "id_car_serie": 64525, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266258, + "fields": { + "id_car_serie": 64525, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266259, + "fields": { + "id_car_serie": 64525, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266260, + "fields": { + "id_car_serie": 64525, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266261, + "fields": { + "id_car_serie": 64525, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266262, + "fields": { + "id_car_serie": 67132, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266263, + "fields": { + "id_car_serie": 67132, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266264, + "fields": { + "id_car_serie": 67132, + "name": "2.0 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266265, + "fields": { + "id_car_serie": 67132, + "name": "2.0 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266266, + "fields": { + "id_car_serie": 67132, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266267, + "fields": { + "id_car_serie": 67133, + "name": "0.6 MT (23 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266268, + "fields": { + "id_car_serie": 67134, + "name": "0.6 MT (23 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266269, + "fields": { + "id_car_serie": 67135, + "name": "0.5 MT (20 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266270, + "fields": { + "id_car_serie": 67136, + "name": "0.5 MT (17 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266271, + "fields": { + "id_car_serie": 67136, + "name": "0.5 MT (18 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266272, + "fields": { + "id_car_serie": 67136, + "name": "0.5 MT (20 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266273, + "fields": { + "id_car_serie": 64412, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266274, + "fields": { + "id_car_serie": 2893, + "name": "2.0 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266275, + "fields": { + "id_car_serie": 2893, + "name": "2.0 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266276, + "fields": { + "id_car_serie": 63849, + "name": "2.0 AMT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266277, + "fields": { + "id_car_serie": 63849, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266278, + "fields": { + "id_car_serie": 66923, + "name": "3.0 AT 4WD (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266279, + "fields": { + "id_car_serie": 67137, + "name": "2.0 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266280, + "fields": { + "id_car_serie": 67137, + "name": "1.6 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266281, + "fields": { + "id_car_serie": 67138, + "name": "2.4 AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266282, + "fields": { + "id_car_serie": 67138, + "name": "2.4 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266283, + "fields": { + "id_car_serie": 67138, + "name": "3.0 AT 4WD (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266284, + "fields": { + "id_car_serie": 67138, + "name": "3.6 AT 4WD (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266285, + "fields": { + "id_car_serie": 67139, + "name": "1.2 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266286, + "fields": { + "id_car_serie": 67139, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266287, + "fields": { + "id_car_serie": 67139, + "name": "1.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266288, + "fields": { + "id_car_serie": 67139, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266289, + "fields": { + "id_car_serie": 67140, + "name": "0.8 MT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266290, + "fields": { + "id_car_serie": 67141, + "name": "0.8 MT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266291, + "fields": { + "id_car_serie": 67142, + "name": "1.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266292, + "fields": { + "id_car_serie": 67142, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266293, + "fields": { + "id_car_serie": 67142, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266294, + "fields": { + "id_car_serie": 67142, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266295, + "fields": { + "id_car_serie": 67142, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266296, + "fields": { + "id_car_serie": 67142, + "name": "2.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266297, + "fields": { + "id_car_serie": 67142, + "name": "2.5 CVT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266298, + "fields": { + "id_car_serie": 67143, + "name": "2.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266299, + "fields": { + "id_car_serie": 67143, + "name": "3.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266300, + "fields": { + "id_car_serie": 63059, + "name": "3.6 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266301, + "fields": { + "id_car_serie": 6394, + "name": "3.5 AT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266302, + "fields": { + "id_car_serie": 6394, + "name": "3.5 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266303, + "fields": { + "id_car_serie": 6395, + "name": "3.5 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266304, + "fields": { + "id_car_serie": 6396, + "name": "2.2 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266305, + "fields": { + "id_car_serie": 6396, + "name": "2.3 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266306, + "fields": { + "id_car_serie": 53773, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266307, + "fields": { + "id_car_serie": 53773, + "name": "3.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266308, + "fields": { + "id_car_serie": 67144, + "name": "2.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266309, + "fields": { + "id_car_serie": 67144, + "name": "3.5 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266310, + "fields": { + "id_car_serie": 67144, + "name": "2.5 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266311, + "fields": { + "id_car_serie": 67144, + "name": "2.5 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266312, + "fields": { + "id_car_serie": 67144, + "name": "2.5 AMT (281 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266313, + "fields": { + "id_car_serie": 67144, + "name": "2.5 AMT 4WD (281 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266314, + "fields": { + "id_car_serie": 67144, + "name": "3.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266315, + "fields": { + "id_car_serie": 67144, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266316, + "fields": { + "id_car_serie": 67144, + "name": "2.2 AMT 4WD (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266317, + "fields": { + "id_car_serie": 67144, + "name": "2.2 AMT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266318, + "fields": { + "id_car_serie": 67144, + "name": "2.2 AMT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266319, + "fields": { + "id_car_serie": 67144, + "name": "1.6 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266320, + "fields": { + "id_car_serie": 67144, + "name": "1.6 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266321, + "fields": { + "id_car_serie": 67145, + "name": "5.0 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266322, + "fields": { + "id_car_serie": 5798, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266323, + "fields": { + "id_car_serie": 5798, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266324, + "fields": { + "id_car_serie": 67146, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266325, + "fields": { + "id_car_serie": 67146, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266326, + "fields": { + "id_car_serie": 67146, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266327, + "fields": { + "id_car_serie": 5905, + "name": "2.7 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266328, + "fields": { + "id_car_serie": 5905, + "name": "2.8 MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266329, + "fields": { + "id_car_serie": 5907, + "name": "1.3 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266330, + "fields": { + "id_car_serie": 5907, + "name": "1.3 AT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266331, + "fields": { + "id_car_serie": 5907, + "name": "1.3 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266332, + "fields": { + "id_car_serie": 5907, + "name": "1.3 AT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266333, + "fields": { + "id_car_serie": 5907, + "name": "1.3 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266334, + "fields": { + "id_car_serie": 5913, + "name": "3.6 AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266335, + "fields": { + "id_car_serie": 620, + "name": "2.8 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266336, + "fields": { + "id_car_serie": 621, + "name": "2.2 MT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266337, + "fields": { + "id_car_serie": 621, + "name": "2.2 AT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266338, + "fields": { + "id_car_serie": 621, + "name": "2.5 MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266339, + "fields": { + "id_car_serie": 621, + "name": "2.5 AT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266340, + "fields": { + "id_car_serie": 14740, + "name": "2.5 AMT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266341, + "fields": { + "id_car_serie": 14739, + "name": "2.5 AMT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266342, + "fields": { + "id_car_serie": 46976, + "name": "2.5 AMT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266343, + "fields": { + "id_car_serie": 46976, + "name": "2.5 MT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266344, + "fields": { + "id_car_serie": 46976, + "name": "2.5 AMT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266345, + "fields": { + "id_car_serie": 46976, + "name": "2.5 MT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266346, + "fields": { + "id_car_serie": 63726, + "name": "2.0 AMT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266347, + "fields": { + "id_car_serie": 67170, + "name": "2.0 AMT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266348, + "fields": { + "id_car_serie": 67170, + "name": "2.0 AMT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266349, + "fields": { + "id_car_serie": 15572, + "name": "2.0 AMT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266350, + "fields": { + "id_car_serie": 15572, + "name": "2.0 MT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266351, + "fields": { + "id_car_serie": 14746, + "name": "2.0 AMT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266352, + "fields": { + "id_car_serie": 14746, + "name": "2.0 MT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266353, + "fields": { + "id_car_serie": 15171, + "name": "2.0 MT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266354, + "fields": { + "id_car_serie": 15171, + "name": "2.0 AMT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266355, + "fields": { + "id_car_serie": 15170, + "name": "2.0 MT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266356, + "fields": { + "id_car_serie": 15170, + "name": "2.0 AMT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266357, + "fields": { + "id_car_serie": 14748, + "name": "2.0 MT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266358, + "fields": { + "id_car_serie": 14748, + "name": "2.0 AMT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266359, + "fields": { + "id_car_serie": 63727, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266360, + "fields": { + "id_car_serie": 63727, + "name": "1.5 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266361, + "fields": { + "id_car_serie": 63727, + "name": "2.0 AMT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266362, + "fields": { + "id_car_serie": 63727, + "name": "1.5 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266363, + "fields": { + "id_car_serie": 63727, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266364, + "fields": { + "id_car_serie": 63727, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266365, + "fields": { + "id_car_serie": 63727, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266366, + "fields": { + "id_car_serie": 63018, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266367, + "fields": { + "id_car_serie": 63018, + "name": "1.5 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266368, + "fields": { + "id_car_serie": 63018, + "name": "2.0 AMT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266369, + "fields": { + "id_car_serie": 63873, + "name": "2.0 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266370, + "fields": { + "id_car_serie": 63873, + "name": "2.0 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266371, + "fields": { + "id_car_serie": 63798, + "name": "2.0 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266372, + "fields": { + "id_car_serie": 63798, + "name": "2.0 AT (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266373, + "fields": { + "id_car_serie": 63798, + "name": "2.0 AT 4WD (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266374, + "fields": { + "id_car_serie": 63799, + "name": "2.0 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266375, + "fields": { + "id_car_serie": 63799, + "name": "3.0 AT 4WD (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266376, + "fields": { + "id_car_serie": 46704, + "name": "3.3 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266377, + "fields": { + "id_car_serie": 63884, + "name": "4.4 AT 4WD (635 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266378, + "fields": { + "id_car_serie": 67169, + "name": "4.4 AMT (560 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266379, + "fields": { + "id_car_serie": 67169, + "name": "4.4 AMT (575 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266380, + "fields": { + "id_car_serie": 67169, + "name": "4.4 AMT (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266381, + "fields": { + "id_car_serie": 67171, + "name": "1.2 CVT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266382, + "fields": { + "id_car_serie": 67171, + "name": "1.3 CVT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266383, + "fields": { + "id_car_serie": 67171, + "name": "1.3 AT 4WD (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266384, + "fields": { + "id_car_serie": 67172, + "name": "2.0 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266385, + "fields": { + "id_car_serie": 67172, + "name": "2.0 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266386, + "fields": { + "id_car_serie": 67172, + "name": "2.2 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266387, + "fields": { + "id_car_serie": 67172, + "name": "2.2 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266388, + "fields": { + "id_car_serie": 67172, + "name": "2.2 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266389, + "fields": { + "id_car_serie": 67172, + "name": "2.2 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266390, + "fields": { + "id_car_serie": 67172, + "name": "2.2 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266391, + "fields": { + "id_car_serie": 67172, + "name": "2.2 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266392, + "fields": { + "id_car_serie": 67172, + "name": "2.8 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266393, + "fields": { + "id_car_serie": 67172, + "name": "2.8 AT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266394, + "fields": { + "id_car_serie": 67172, + "name": "2.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266395, + "fields": { + "id_car_serie": 67172, + "name": "2.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266396, + "fields": { + "id_car_serie": 67172, + "name": "3.1 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266397, + "fields": { + "id_car_serie": 67172, + "name": "3.1 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266398, + "fields": { + "id_car_serie": 67173, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266399, + "fields": { + "id_car_serie": 67173, + "name": "2.2 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266400, + "fields": { + "id_car_serie": 67173, + "name": "4.3 MT 4WD (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266401, + "fields": { + "id_car_serie": 67173, + "name": "4.3 AT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266402, + "fields": { + "id_car_serie": 67173, + "name": "4.3 AT 4WD (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266403, + "fields": { + "id_car_serie": 67174, + "name": "2.2 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266404, + "fields": { + "id_car_serie": 67174, + "name": "2.2 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266405, + "fields": { + "id_car_serie": 67174, + "name": "4.3 MT 4WD (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266406, + "fields": { + "id_car_serie": 67174, + "name": "4.3 AT 4WD (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266407, + "fields": { + "id_car_serie": 67175, + "name": "4.3 MT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266408, + "fields": { + "id_car_serie": 67175, + "name": "4.3 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266409, + "fields": { + "id_car_serie": 67175, + "name": "4.3 AT 4WD (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266410, + "fields": { + "id_car_serie": 67175, + "name": "4.3 MT 4WD (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266411, + "fields": { + "id_car_serie": 67176, + "name": "1.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266412, + "fields": { + "id_car_serie": 67176, + "name": "1.4 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266413, + "fields": { + "id_car_serie": 67177, + "name": "1.4 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266414, + "fields": { + "id_car_serie": 67177, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266415, + "fields": { + "id_car_serie": 9437, + "name": "1.4 CVT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266416, + "fields": { + "id_car_serie": 47487, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266417, + "fields": { + "id_car_serie": 47487, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266418, + "fields": { + "id_car_serie": 47487, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266419, + "fields": { + "id_car_serie": 47487, + "name": "1.6 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266420, + "fields": { + "id_car_serie": 47487, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266421, + "fields": { + "id_car_serie": 47487, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266422, + "fields": { + "id_car_serie": 47487, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266423, + "fields": { + "id_car_serie": 47487, + "name": "2.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266424, + "fields": { + "id_car_serie": 51513, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266425, + "fields": { + "id_car_serie": 51513, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266426, + "fields": { + "id_car_serie": 51513, + "name": "1.6 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266427, + "fields": { + "id_car_serie": 51513, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266428, + "fields": { + "id_car_serie": 51513, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266429, + "fields": { + "id_car_serie": 51513, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266430, + "fields": { + "id_car_serie": 51513, + "name": "2.0 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266431, + "fields": { + "id_car_serie": 63033, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266432, + "fields": { + "id_car_serie": 63033, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266433, + "fields": { + "id_car_serie": 63033, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266434, + "fields": { + "id_car_serie": 67178, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266435, + "fields": { + "id_car_serie": 67178, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266436, + "fields": { + "id_car_serie": 67178, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266437, + "fields": { + "id_car_serie": 67178, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266438, + "fields": { + "id_car_serie": 67178, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266439, + "fields": { + "id_car_serie": 67178, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266440, + "fields": { + "id_car_serie": 47488, + "name": "2.0 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266441, + "fields": { + "id_car_serie": 47488, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266442, + "fields": { + "id_car_serie": 47488, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266443, + "fields": { + "id_car_serie": 47488, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266444, + "fields": { + "id_car_serie": 67179, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266445, + "fields": { + "id_car_serie": 67179, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266446, + "fields": { + "id_car_serie": 67179, + "name": "1.9 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266447, + "fields": { + "id_car_serie": 67179, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266448, + "fields": { + "id_car_serie": 67179, + "name": "2.0 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266449, + "fields": { + "id_car_serie": 67179, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266450, + "fields": { + "id_car_serie": 67180, + "name": "0.6 MT (32 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266451, + "fields": { + "id_car_serie": 67180, + "name": "0.7 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266452, + "fields": { + "id_car_serie": 67180, + "name": "0.7 MT (36 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266453, + "fields": { + "id_car_serie": 67180, + "name": "1.0 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266454, + "fields": { + "id_car_serie": 67181, + "name": "1.3 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266455, + "fields": { + "id_car_serie": 67181, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266456, + "fields": { + "id_car_serie": 67181, + "name": "1.4 AMT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266457, + "fields": { + "id_car_serie": 67181, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266458, + "fields": { + "id_car_serie": 67181, + "name": "1.4 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266459, + "fields": { + "id_car_serie": 6073, + "name": "4.9 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266460, + "fields": { + "id_car_serie": 6073, + "name": "4.9 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266461, + "fields": { + "id_car_serie": 67182, + "name": "4.2 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266462, + "fields": { + "id_car_serie": 67182, + "name": "4.2 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266463, + "fields": { + "id_car_serie": 67182, + "name": "4.2 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266464, + "fields": { + "id_car_serie": 67182, + "name": "4.6 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266465, + "fields": { + "id_car_serie": 67182, + "name": "4.6 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266466, + "fields": { + "id_car_serie": 67182, + "name": "4.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266467, + "fields": { + "id_car_serie": 67182, + "name": "4.9 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266468, + "fields": { + "id_car_serie": 67182, + "name": "5.4 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266469, + "fields": { + "id_car_serie": 67182, + "name": "5.4 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266470, + "fields": { + "id_car_serie": 67182, + "name": "5.8 AT (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266471, + "fields": { + "id_car_serie": 67182, + "name": "7.5 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266472, + "fields": { + "id_car_serie": 67182, + "name": "7.3 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266473, + "fields": { + "id_car_serie": 67183, + "name": "4.9 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266474, + "fields": { + "id_car_serie": 67183, + "name": "7.3 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266475, + "fields": { + "id_car_serie": 67184, + "name": "4.9 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266476, + "fields": { + "id_car_serie": 67184, + "name": "4.9 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266477, + "fields": { + "id_car_serie": 45709, + "name": "2.3 MT 4WD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266478, + "fields": { + "id_car_serie": 67185, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266479, + "fields": { + "id_car_serie": 67185, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266480, + "fields": { + "id_car_serie": 67185, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266481, + "fields": { + "id_car_serie": 67185, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266482, + "fields": { + "id_car_serie": 67186, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266483, + "fields": { + "id_car_serie": 67186, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266484, + "fields": { + "id_car_serie": 67186, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266485, + "fields": { + "id_car_serie": 67186, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266486, + "fields": { + "id_car_serie": 67187, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266487, + "fields": { + "id_car_serie": 67187, + "name": "1.6 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266488, + "fields": { + "id_car_serie": 67187, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266489, + "fields": { + "id_car_serie": 67188, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266490, + "fields": { + "id_car_serie": 67188, + "name": "1.6 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266491, + "fields": { + "id_car_serie": 67188, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266492, + "fields": { + "id_car_serie": 67188, + "name": "1.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266493, + "fields": { + "id_car_serie": 67188, + "name": "1.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266494, + "fields": { + "id_car_serie": 46443, + "name": "5.8 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266495, + "fields": { + "id_car_serie": 67149, + "name": "2.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266496, + "fields": { + "id_car_serie": 67149, + "name": "2.3 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266497, + "fields": { + "id_car_serie": 67149, + "name": "3.0 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266498, + "fields": { + "id_car_serie": 67149, + "name": "3.0 MT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266499, + "fields": { + "id_car_serie": 67149, + "name": "4.0 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266500, + "fields": { + "id_car_serie": 67149, + "name": "4.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266501, + "fields": { + "id_car_serie": 45482, + "name": "2.0 MT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266502, + "fields": { + "id_car_serie": 45482, + "name": "2.0 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266503, + "fields": { + "id_car_serie": 45482, + "name": "2.0 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266504, + "fields": { + "id_car_serie": 45482, + "name": "2.0 MT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266505, + "fields": { + "id_car_serie": 3362, + "name": "1.3 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266506, + "fields": { + "id_car_serie": 45826, + "name": "1.7 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266507, + "fields": { + "id_car_serie": 45826, + "name": "1.7 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266508, + "fields": { + "id_car_serie": 45826, + "name": "2.0 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266509, + "fields": { + "id_car_serie": 14630, + "name": "3.5 AT 4WD (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266510, + "fields": { + "id_car_serie": 14630, + "name": "3.5 AT 4WD (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266511, + "fields": { + "id_car_serie": 63988, + "name": "4.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266512, + "fields": { + "id_car_serie": 63988, + "name": "4.0 AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266513, + "fields": { + "id_car_serie": 63988, + "name": "4.0 AT 4WD (329 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266514, + "fields": { + "id_car_serie": 67190, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266515, + "fields": { + "id_car_serie": 67190, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266516, + "fields": { + "id_car_serie": 67190, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266517, + "fields": { + "id_car_serie": 67190, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266518, + "fields": { + "id_car_serie": 67190, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266519, + "fields": { + "id_car_serie": 67190, + "name": "1.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266520, + "fields": { + "id_car_serie": 6315, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266521, + "fields": { + "id_car_serie": 6315, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266522, + "fields": { + "id_car_serie": 6315, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266523, + "fields": { + "id_car_serie": 6315, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266524, + "fields": { + "id_car_serie": 67191, + "name": "0.7 MT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266525, + "fields": { + "id_car_serie": 67191, + "name": "0.7 AT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266526, + "fields": { + "id_car_serie": 3421, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266527, + "fields": { + "id_car_serie": 3421, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266528, + "fields": { + "id_car_serie": 3421, + "name": "1.5 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266529, + "fields": { + "id_car_serie": 3421, + "name": "1.5 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266530, + "fields": { + "id_car_serie": 3421, + "name": "1.7 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266531, + "fields": { + "id_car_serie": 3421, + "name": "1.7 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266532, + "fields": { + "id_car_serie": 6325, + "name": "1.6 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266533, + "fields": { + "id_car_serie": 6325, + "name": "1.6 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266534, + "fields": { + "id_car_serie": 6325, + "name": "1.6 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266535, + "fields": { + "id_car_serie": 6325, + "name": "1.6 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266536, + "fields": { + "id_car_serie": 6326, + "name": "1.6 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266537, + "fields": { + "id_car_serie": 6326, + "name": "1.6 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266538, + "fields": { + "id_car_serie": 6326, + "name": "1.6 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266539, + "fields": { + "id_car_serie": 6326, + "name": "1.6 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266540, + "fields": { + "id_car_serie": 67192, + "name": "2.0 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266541, + "fields": { + "id_car_serie": 63070, + "name": "1.5 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266542, + "fields": { + "id_car_serie": 67193, + "name": "1.5 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266543, + "fields": { + "id_car_serie": 67193, + "name": "1.5 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266544, + "fields": { + "id_car_serie": 67193, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266545, + "fields": { + "id_car_serie": 67193, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266546, + "fields": { + "id_car_serie": 67193, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266547, + "fields": { + "id_car_serie": 67193, + "name": "1.6 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266548, + "fields": { + "id_car_serie": 67193, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266549, + "fields": { + "id_car_serie": 67193, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266550, + "fields": { + "id_car_serie": 67193, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266551, + "fields": { + "id_car_serie": 67193, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266552, + "fields": { + "id_car_serie": 67193, + "name": "1.6 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266553, + "fields": { + "id_car_serie": 67193, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266554, + "fields": { + "id_car_serie": 67193, + "name": "1.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266555, + "fields": { + "id_car_serie": 67194, + "name": "1.5 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266556, + "fields": { + "id_car_serie": 67194, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266557, + "fields": { + "id_car_serie": 67194, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266558, + "fields": { + "id_car_serie": 67194, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266559, + "fields": { + "id_car_serie": 67194, + "name": "1.6 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266560, + "fields": { + "id_car_serie": 67194, + "name": "1.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266561, + "fields": { + "id_car_serie": 67194, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266562, + "fields": { + "id_car_serie": 67194, + "name": "1.6 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266563, + "fields": { + "id_car_serie": 67194, + "name": "1.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266564, + "fields": { + "id_car_serie": 67195, + "name": "1.3 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266565, + "fields": { + "id_car_serie": 67195, + "name": "1.5 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266566, + "fields": { + "id_car_serie": 67195, + "name": "1.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266567, + "fields": { + "id_car_serie": 67195, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266568, + "fields": { + "id_car_serie": 67195, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266569, + "fields": { + "id_car_serie": 1069, + "name": "3.5 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266570, + "fields": { + "id_car_serie": 46549, + "name": "1.6 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266571, + "fields": { + "id_car_serie": 46549, + "name": "1.6 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266572, + "fields": { + "id_car_serie": 67196, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266573, + "fields": { + "id_car_serie": 67196, + "name": "2.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266574, + "fields": { + "id_car_serie": 67197, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266575, + "fields": { + "id_car_serie": 67197, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266576, + "fields": { + "id_car_serie": 67197, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266577, + "fields": { + "id_car_serie": 63101, + "name": "2.4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266578, + "fields": { + "id_car_serie": 63101, + "name": "3.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266579, + "fields": { + "id_car_serie": 63101, + "name": "3.0 AT (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266580, + "fields": { + "id_car_serie": 63101, + "name": "3.5 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266581, + "fields": { + "id_car_serie": 63102, + "name": "2.4 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266582, + "fields": { + "id_car_serie": 63102, + "name": "2.4 AT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266583, + "fields": { + "id_car_serie": 63102, + "name": "3.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266584, + "fields": { + "id_car_serie": 63102, + "name": "3.0 AT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266585, + "fields": { + "id_car_serie": 67198, + "name": "2.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266586, + "fields": { + "id_car_serie": 67198, + "name": "2.5 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266587, + "fields": { + "id_car_serie": 67199, + "name": "2.4 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266588, + "fields": { + "id_car_serie": 67199, + "name": "2.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266589, + "fields": { + "id_car_serie": 67199, + "name": "2.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266590, + "fields": { + "id_car_serie": 67199, + "name": "2.5 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266591, + "fields": { + "id_car_serie": 67199, + "name": "2.5 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266592, + "fields": { + "id_car_serie": 67200, + "name": "2.4 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266593, + "fields": { + "id_car_serie": 67200, + "name": "2.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266594, + "fields": { + "id_car_serie": 67200, + "name": "2.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266595, + "fields": { + "id_car_serie": 67200, + "name": "2.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266596, + "fields": { + "id_car_serie": 67200, + "name": "2.5 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266597, + "fields": { + "id_car_serie": 67200, + "name": "2.5 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266598, + "fields": { + "id_car_serie": 67200, + "name": "2.5 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266599, + "fields": { + "id_car_serie": 67200, + "name": "2.5 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266600, + "fields": { + "id_car_serie": 67201, + "name": "2.4 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266601, + "fields": { + "id_car_serie": 67201, + "name": "2.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266602, + "fields": { + "id_car_serie": 67201, + "name": "2.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266603, + "fields": { + "id_car_serie": 67201, + "name": "2.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266604, + "fields": { + "id_car_serie": 67201, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266605, + "fields": { + "id_car_serie": 67202, + "name": "2.4 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266606, + "fields": { + "id_car_serie": 67202, + "name": "2.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266607, + "fields": { + "id_car_serie": 67202, + "name": "2.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266608, + "fields": { + "id_car_serie": 67202, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266609, + "fields": { + "id_car_serie": 67202, + "name": "2.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266610, + "fields": { + "id_car_serie": 3485, + "name": "2.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266611, + "fields": { + "id_car_serie": 3485, + "name": "2.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266612, + "fields": { + "id_car_serie": 14987, + "name": "2.5 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266613, + "fields": { + "id_car_serie": 14987, + "name": "2.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266614, + "fields": { + "id_car_serie": 14987, + "name": "2.5 MT 4WD (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266615, + "fields": { + "id_car_serie": 14987, + "name": "2.5 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266616, + "fields": { + "id_car_serie": 67204, + "name": "2.2 AT (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266617, + "fields": { + "id_car_serie": 67204, + "name": "2.2 AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266618, + "fields": { + "id_car_serie": 67204, + "name": "3.5 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266619, + "fields": { + "id_car_serie": 67204, + "name": "3.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266620, + "fields": { + "id_car_serie": 67204, + "name": "3.5 AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266621, + "fields": { + "id_car_serie": 63118, + "name": "2.9 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266622, + "fields": { + "id_car_serie": 63118, + "name": "2.9 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266623, + "fields": { + "id_car_serie": 67206, + "name": "1.0 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266624, + "fields": { + "id_car_serie": 67206, + "name": "1.3 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266625, + "fields": { + "id_car_serie": 67207, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266626, + "fields": { + "id_car_serie": 67208, + "name": "1.0 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266627, + "fields": { + "id_car_serie": 67208, + "name": "1.0 AT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266628, + "fields": { + "id_car_serie": 67208, + "name": "1.0 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266629, + "fields": { + "id_car_serie": 67208, + "name": "1.0 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266630, + "fields": { + "id_car_serie": 67208, + "name": "1.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266631, + "fields": { + "id_car_serie": 67210, + "name": "1.4 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266632, + "fields": { + "id_car_serie": 67210, + "name": "1.6 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266633, + "fields": { + "id_car_serie": 67210, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266634, + "fields": { + "id_car_serie": 67210, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266635, + "fields": { + "id_car_serie": 67210, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266636, + "fields": { + "id_car_serie": 67210, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266637, + "fields": { + "id_car_serie": 67211, + "name": "1.0 AT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266638, + "fields": { + "id_car_serie": 67211, + "name": "1.0 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266639, + "fields": { + "id_car_serie": 67211, + "name": "1.0 CVT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266640, + "fields": { + "id_car_serie": 67212, + "name": "2.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266641, + "fields": { + "id_car_serie": 67212, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266642, + "fields": { + "id_car_serie": 67212, + "name": "2.0 AT 4WD (247 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266643, + "fields": { + "id_car_serie": 67212, + "name": "3.3 AT 4WD (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266644, + "fields": { + "id_car_serie": 67050, + "name": "0.8 MT (33 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266645, + "fields": { + "id_car_serie": 67213, + "name": "1.7 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266646, + "fields": { + "id_car_serie": 67214, + "name": "1.7 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266647, + "fields": { + "id_car_serie": 67215, + "name": "1.7 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266648, + "fields": { + "id_car_serie": 67216, + "name": "5.0 AT (464 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266649, + "fields": { + "id_car_serie": 67216, + "name": "5.0 AT (477 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266650, + "fields": { + "id_car_serie": 67218, + "name": "1.3 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266651, + "fields": { + "id_car_serie": 67218, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266652, + "fields": { + "id_car_serie": 1394, + "name": "1.8 CVT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266653, + "fields": { + "id_car_serie": 67219, + "name": "0.7 MT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266654, + "fields": { + "id_car_serie": 67219, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266655, + "fields": { + "id_car_serie": 67219, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266656, + "fields": { + "id_car_serie": 67220, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266657, + "fields": { + "id_car_serie": 67220, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266658, + "fields": { + "id_car_serie": 67220, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266659, + "fields": { + "id_car_serie": 67220, + "name": "0.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266660, + "fields": { + "id_car_serie": 8787, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266661, + "fields": { + "id_car_serie": 8787, + "name": "0.7 MT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266662, + "fields": { + "id_car_serie": 8788, + "name": "0.7 MT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266663, + "fields": { + "id_car_serie": 8788, + "name": "0.7 AT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266664, + "fields": { + "id_car_serie": 8788, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266665, + "fields": { + "id_car_serie": 8788, + "name": "0.7 MT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266666, + "fields": { + "id_car_serie": 67221, + "name": "0.4 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266667, + "fields": { + "id_car_serie": 45888, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266668, + "fields": { + "id_car_serie": 45714, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266669, + "fields": { + "id_car_serie": 45714, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266670, + "fields": { + "id_car_serie": 45714, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266671, + "fields": { + "id_car_serie": 45714, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266672, + "fields": { + "id_car_serie": 54051, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266673, + "fields": { + "id_car_serie": 54051, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266674, + "fields": { + "id_car_serie": 54051, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266675, + "fields": { + "id_car_serie": 67222, + "name": "2.2 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266676, + "fields": { + "id_car_serie": 67222, + "name": "2.2 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266677, + "fields": { + "id_car_serie": 67223, + "name": "0.7 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266678, + "fields": { + "id_car_serie": 67223, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266679, + "fields": { + "id_car_serie": 67223, + "name": "0.7 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266680, + "fields": { + "id_car_serie": 67223, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266681, + "fields": { + "id_car_serie": 67223, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266682, + "fields": { + "id_car_serie": 67223, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266683, + "fields": { + "id_car_serie": 67224, + "name": "2.2 AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266684, + "fields": { + "id_car_serie": 67224, + "name": "2.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266685, + "fields": { + "id_car_serie": 67224, + "name": "2.2 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266686, + "fields": { + "id_car_serie": 67224, + "name": "2.6 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266687, + "fields": { + "id_car_serie": 67224, + "name": "2.6 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266688, + "fields": { + "id_car_serie": 67224, + "name": "2.6 AT 4WD (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266689, + "fields": { + "id_car_serie": 67224, + "name": "2.6 MT 4WD (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266690, + "fields": { + "id_car_serie": 67225, + "name": "2.2 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266691, + "fields": { + "id_car_serie": 67225, + "name": "2.2 AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266692, + "fields": { + "id_car_serie": 67225, + "name": "2.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266693, + "fields": { + "id_car_serie": 67225, + "name": "2.2 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266694, + "fields": { + "id_car_serie": 67225, + "name": "2.6 MT 4WD (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266695, + "fields": { + "id_car_serie": 67225, + "name": "2.6 AT 4WD (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266696, + "fields": { + "id_car_serie": 67226, + "name": "2.0 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266697, + "fields": { + "id_car_serie": 67226, + "name": "2.0 AT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266698, + "fields": { + "id_car_serie": 67226, + "name": "2.0 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266699, + "fields": { + "id_car_serie": 67226, + "name": "2.2 AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266700, + "fields": { + "id_car_serie": 67226, + "name": "2.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266701, + "fields": { + "id_car_serie": 67226, + "name": "2.2 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266702, + "fields": { + "id_car_serie": 67226, + "name": "2.2 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266703, + "fields": { + "id_car_serie": 67226, + "name": "2.2 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266704, + "fields": { + "id_car_serie": 67226, + "name": "2.6 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266705, + "fields": { + "id_car_serie": 67226, + "name": "2.6 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266706, + "fields": { + "id_car_serie": 67226, + "name": "2.2 AT 4WD (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266707, + "fields": { + "id_car_serie": 67226, + "name": "2.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266708, + "fields": { + "id_car_serie": 67226, + "name": "2.2 MT 4WD (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266709, + "fields": { + "id_car_serie": 67227, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266710, + "fields": { + "id_car_serie": 67227, + "name": "1.6 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266711, + "fields": { + "id_car_serie": 67227, + "name": "1.8 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266712, + "fields": { + "id_car_serie": 67227, + "name": "1.8 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266713, + "fields": { + "id_car_serie": 67227, + "name": "2.0 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266714, + "fields": { + "id_car_serie": 67227, + "name": "2.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266715, + "fields": { + "id_car_serie": 67227, + "name": "2.2 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266716, + "fields": { + "id_car_serie": 67227, + "name": "2.2 AT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266717, + "fields": { + "id_car_serie": 67228, + "name": "2.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266718, + "fields": { + "id_car_serie": 67228, + "name": "2.0 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266719, + "fields": { + "id_car_serie": 67229, + "name": "1.3 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266720, + "fields": { + "id_car_serie": 67229, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266721, + "fields": { + "id_car_serie": 67229, + "name": "1.5 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266722, + "fields": { + "id_car_serie": 67229, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266723, + "fields": { + "id_car_serie": 67229, + "name": "1.8 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266724, + "fields": { + "id_car_serie": 48534, + "name": "1.5 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266725, + "fields": { + "id_car_serie": 67230, + "name": "1.5 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266726, + "fields": { + "id_car_serie": 3689, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266727, + "fields": { + "id_car_serie": 3688, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266728, + "fields": { + "id_car_serie": 6881, + "name": "1.6 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266729, + "fields": { + "id_car_serie": 6881, + "name": "1.6 AT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266730, + "fields": { + "id_car_serie": 6881, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266731, + "fields": { + "id_car_serie": 6881, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266732, + "fields": { + "id_car_serie": 6881, + "name": "2.0 AT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266733, + "fields": { + "id_car_serie": 6881, + "name": "2.0 AT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266734, + "fields": { + "id_car_serie": 6880, + "name": "1.6 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266735, + "fields": { + "id_car_serie": 6880, + "name": "1.6 AT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266736, + "fields": { + "id_car_serie": 6880, + "name": "2.0 AT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266737, + "fields": { + "id_car_serie": 6880, + "name": "2.0 AT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266738, + "fields": { + "id_car_serie": 67231, + "name": "2.5 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266739, + "fields": { + "id_car_serie": 67231, + "name": "2.5 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266740, + "fields": { + "id_car_serie": 45708, + "name": "2.0 AMT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266741, + "fields": { + "id_car_serie": 15458, + "name": "2.0 AMT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266742, + "fields": { + "id_car_serie": 14820, + "name": "2.1 AMT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266743, + "fields": { + "id_car_serie": 14820, + "name": "2.1 AMT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266744, + "fields": { + "id_car_serie": 14820, + "name": "2.0 AMT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266745, + "fields": { + "id_car_serie": 14820, + "name": "2.0 AMT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266746, + "fields": { + "id_car_serie": 3699, + "name": "2.0 AMT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266747, + "fields": { + "id_car_serie": 8809, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266748, + "fields": { + "id_car_serie": 8809, + "name": "2.0 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266749, + "fields": { + "id_car_serie": 67232, + "name": "1.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266750, + "fields": { + "id_car_serie": 67232, + "name": "1.5 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266751, + "fields": { + "id_car_serie": 67232, + "name": "2.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266752, + "fields": { + "id_car_serie": 67232, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266753, + "fields": { + "id_car_serie": 67232, + "name": "2.0 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266754, + "fields": { + "id_car_serie": 67233, + "name": "1.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266755, + "fields": { + "id_car_serie": 67233, + "name": "1.5 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266756, + "fields": { + "id_car_serie": 67233, + "name": "1.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266757, + "fields": { + "id_car_serie": 67233, + "name": "1.5 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266758, + "fields": { + "id_car_serie": 67233, + "name": "2.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266759, + "fields": { + "id_car_serie": 67233, + "name": "2.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266760, + "fields": { + "id_car_serie": 67233, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266761, + "fields": { + "id_car_serie": 67233, + "name": "2.0 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266762, + "fields": { + "id_car_serie": 6906, + "name": "2.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266763, + "fields": { + "id_car_serie": 6906, + "name": "1.6 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266764, + "fields": { + "id_car_serie": 6906, + "name": "3.0 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266765, + "fields": { + "id_car_serie": 6906, + "name": "2.0 AT (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266766, + "fields": { + "id_car_serie": 6906, + "name": "2.1 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266767, + "fields": { + "id_car_serie": 6906, + "name": "2.1 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266768, + "fields": { + "id_car_serie": 10802, + "name": "2.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266769, + "fields": { + "id_car_serie": 10802, + "name": "3.0 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266770, + "fields": { + "id_car_serie": 10802, + "name": "2.1 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266771, + "fields": { + "id_car_serie": 10802, + "name": "2.1 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266772, + "fields": { + "id_car_serie": 45845, + "name": "2.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266773, + "fields": { + "id_car_serie": 45845, + "name": "2.1 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266774, + "fields": { + "id_car_serie": 45845, + "name": "2.1 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266775, + "fields": { + "id_car_serie": 3700, + "name": "1.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266776, + "fields": { + "id_car_serie": 3700, + "name": "2.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266777, + "fields": { + "id_car_serie": 3700, + "name": "3.0 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266778, + "fields": { + "id_car_serie": 3700, + "name": "2.1 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266779, + "fields": { + "id_car_serie": 6907, + "name": "3.5 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266780, + "fields": { + "id_car_serie": 6910, + "name": "3.5 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266781, + "fields": { + "id_car_serie": 6910, + "name": "3.5 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266782, + "fields": { + "id_car_serie": 6910, + "name": "2.1 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266783, + "fields": { + "id_car_serie": 6910, + "name": "2.1 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266784, + "fields": { + "id_car_serie": 6910, + "name": "2.1 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266785, + "fields": { + "id_car_serie": 6913, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266786, + "fields": { + "id_car_serie": 6913, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266787, + "fields": { + "id_car_serie": 6913, + "name": "2.5 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266788, + "fields": { + "id_car_serie": 6913, + "name": "3.5 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266789, + "fields": { + "id_car_serie": 6913, + "name": "2.2 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266790, + "fields": { + "id_car_serie": 6913, + "name": "2.2 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266791, + "fields": { + "id_car_serie": 6913, + "name": "2.2 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266792, + "fields": { + "id_car_serie": 6913, + "name": "2.2 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266793, + "fields": { + "id_car_serie": 6913, + "name": "3.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266794, + "fields": { + "id_car_serie": 15021, + "name": "1.8 AT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266795, + "fields": { + "id_car_serie": 15021, + "name": "2.3 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266796, + "fields": { + "id_car_serie": 15021, + "name": "2.3 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266797, + "fields": { + "id_car_serie": 15021, + "name": "2.6 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266798, + "fields": { + "id_car_serie": 15021, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266799, + "fields": { + "id_car_serie": 15021, + "name": "3.2 MT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266800, + "fields": { + "id_car_serie": 15021, + "name": "3.2 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266801, + "fields": { + "id_car_serie": 15021, + "name": "3.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266802, + "fields": { + "id_car_serie": 15021, + "name": "2.2 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266803, + "fields": { + "id_car_serie": 15021, + "name": "2.2 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266804, + "fields": { + "id_car_serie": 15021, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266805, + "fields": { + "id_car_serie": 45161, + "name": "2.2 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266806, + "fields": { + "id_car_serie": 45161, + "name": "2.2 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266807, + "fields": { + "id_car_serie": 6915, + "name": "1.8 AT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266808, + "fields": { + "id_car_serie": 6915, + "name": "2.0 AMT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266809, + "fields": { + "id_car_serie": 6915, + "name": "2.6 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266810, + "fields": { + "id_car_serie": 6915, + "name": "3.2 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266811, + "fields": { + "id_car_serie": 6915, + "name": "3.2 MT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266812, + "fields": { + "id_car_serie": 6915, + "name": "2.2 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266813, + "fields": { + "id_car_serie": 6915, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266814, + "fields": { + "id_car_serie": 6915, + "name": "2.2 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266815, + "fields": { + "id_car_serie": 6915, + "name": "2.2 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266816, + "fields": { + "id_car_serie": 6915, + "name": "2.2 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266817, + "fields": { + "id_car_serie": 6915, + "name": "2.2 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266818, + "fields": { + "id_car_serie": 15024, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266819, + "fields": { + "id_car_serie": 15024, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266820, + "fields": { + "id_car_serie": 15024, + "name": "2.2 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266821, + "fields": { + "id_car_serie": 15024, + "name": "2.2 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266822, + "fields": { + "id_car_serie": 15024, + "name": "2.2 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266823, + "fields": { + "id_car_serie": 15023, + "name": "2.3 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266824, + "fields": { + "id_car_serie": 15023, + "name": "2.4 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266825, + "fields": { + "id_car_serie": 15023, + "name": "2.4 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266826, + "fields": { + "id_car_serie": 15023, + "name": "2.2 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266827, + "fields": { + "id_car_serie": 6914, + "name": "2.2 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266828, + "fields": { + "id_car_serie": 64175, + "name": "1.3 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266829, + "fields": { + "id_car_serie": 67234, + "name": "2.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266830, + "fields": { + "id_car_serie": 67234, + "name": "2.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266831, + "fields": { + "id_car_serie": 67235, + "name": "2.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266832, + "fields": { + "id_car_serie": 67236, + "name": "2.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266833, + "fields": { + "id_car_serie": 67236, + "name": "2.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266834, + "fields": { + "id_car_serie": 67237, + "name": "3.0 AT 4WD (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266835, + "fields": { + "id_car_serie": 67237, + "name": "4.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266836, + "fields": { + "id_car_serie": 67237, + "name": "4.0 AT (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266837, + "fields": { + "id_car_serie": 67238, + "name": "3.0 AT 4WD (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266838, + "fields": { + "id_car_serie": 67238, + "name": "4.0 AT (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266839, + "fields": { + "id_car_serie": 67238, + "name": "4.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266840, + "fields": { + "id_car_serie": 67239, + "name": "3.0 AT 4WD (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266841, + "fields": { + "id_car_serie": 67239, + "name": "4.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266842, + "fields": { + "id_car_serie": 67239, + "name": "4.0 AT (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266843, + "fields": { + "id_car_serie": 15467, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266844, + "fields": { + "id_car_serie": 46972, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266845, + "fields": { + "id_car_serie": 46044, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266846, + "fields": { + "id_car_serie": 15466, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266847, + "fields": { + "id_car_serie": 15469, + "name": "6.2 AT (487 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266848, + "fields": { + "id_car_serie": 15469, + "name": "6.2 AT (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266849, + "fields": { + "id_car_serie": 15470, + "name": "6.2 AT (487 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266850, + "fields": { + "id_car_serie": 15472, + "name": "6.2 AT (487 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266851, + "fields": { + "id_car_serie": 15471, + "name": "6.2 AT (487 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266852, + "fields": { + "id_car_serie": 48544, + "name": "1.2 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266853, + "fields": { + "id_car_serie": 48544, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266854, + "fields": { + "id_car_serie": 48544, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266855, + "fields": { + "id_car_serie": 48544, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266856, + "fields": { + "id_car_serie": 3701, + "name": "4.7 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266857, + "fields": { + "id_car_serie": 8826, + "name": "5.5 AT 4WD (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266858, + "fields": { + "id_car_serie": 15454, + "name": "5.5 AT (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266859, + "fields": { + "id_car_serie": 67240, + "name": "2.0 AMT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266860, + "fields": { + "id_car_serie": 67240, + "name": "2.0 AMT 4WD (387 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266861, + "fields": { + "id_car_serie": 67240, + "name": "2.0 AMT 4WD (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266862, + "fields": { + "id_car_serie": 67241, + "name": "2.0 AMT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266863, + "fields": { + "id_car_serie": 67241, + "name": "2.0 AMT 4WD (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266864, + "fields": { + "id_car_serie": 67241, + "name": "2.0 AMT 4WD (387 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266865, + "fields": { + "id_car_serie": 15453, + "name": "2.0 AMT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266866, + "fields": { + "id_car_serie": 15739, + "name": "2.0 AMT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266867, + "fields": { + "id_car_serie": 46971, + "name": "2.0 AMT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266868, + "fields": { + "id_car_serie": 46971, + "name": "2.0 AMT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266869, + "fields": { + "id_car_serie": 46970, + "name": "2.0 AMT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266870, + "fields": { + "id_car_serie": 46970, + "name": "2.0 AMT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266871, + "fields": { + "id_car_serie": 8861, + "name": "1.8 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266872, + "fields": { + "id_car_serie": 64201, + "name": "1.5 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266873, + "fields": { + "id_car_serie": 67244, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266874, + "fields": { + "id_car_serie": 67244, + "name": "1.5 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266875, + "fields": { + "id_car_serie": 67244, + "name": "2.4 AT 4WD (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266876, + "fields": { + "id_car_serie": 64232, + "name": "3.0 AT 4WD (209 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266877, + "fields": { + "id_car_serie": 67245, + "name": "2.5 MT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266878, + "fields": { + "id_car_serie": 67245, + "name": "2.5 AT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266879, + "fields": { + "id_car_serie": 67246, + "name": "2.5 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266880, + "fields": { + "id_car_serie": 67246, + "name": "2.5 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266881, + "fields": { + "id_car_serie": 8862, + "name": "3.5 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266882, + "fields": { + "id_car_serie": 47313, + "name": "2.8 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266883, + "fields": { + "id_car_serie": 47313, + "name": "2.8 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266884, + "fields": { + "id_car_serie": 47313, + "name": "3.0 AT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266885, + "fields": { + "id_car_serie": 47313, + "name": "3.5 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266886, + "fields": { + "id_car_serie": 67247, + "name": "1.8 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266887, + "fields": { + "id_car_serie": 67247, + "name": "1.8 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266888, + "fields": { + "id_car_serie": 67247, + "name": "1.8 AT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266889, + "fields": { + "id_car_serie": 67247, + "name": "2.2 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266890, + "fields": { + "id_car_serie": 67247, + "name": "2.2 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266891, + "fields": { + "id_car_serie": 67248, + "name": "2.0 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266892, + "fields": { + "id_car_serie": 67248, + "name": "2.0 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266893, + "fields": { + "id_car_serie": 67248, + "name": "2.0 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266894, + "fields": { + "id_car_serie": 67248, + "name": "2.4 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266895, + "fields": { + "id_car_serie": 67248, + "name": "2.4 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266896, + "fields": { + "id_car_serie": 67248, + "name": "2.4 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266897, + "fields": { + "id_car_serie": 67248, + "name": "2.4 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266898, + "fields": { + "id_car_serie": 67249, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266899, + "fields": { + "id_car_serie": 67249, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266900, + "fields": { + "id_car_serie": 67249, + "name": "1.8 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266901, + "fields": { + "id_car_serie": 67249, + "name": "2.0 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266902, + "fields": { + "id_car_serie": 67250, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266903, + "fields": { + "id_car_serie": 67250, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266904, + "fields": { + "id_car_serie": 67250, + "name": "1.8 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266905, + "fields": { + "id_car_serie": 67250, + "name": "2.0 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266906, + "fields": { + "id_car_serie": 67059, + "name": "2.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266907, + "fields": { + "id_car_serie": 67154, + "name": "3.5 AT 4WD (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266908, + "fields": { + "id_car_serie": 67155, + "name": "1.3 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266909, + "fields": { + "id_car_serie": 67155, + "name": "1.3 MT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266910, + "fields": { + "id_car_serie": 67155, + "name": "1.3 CVT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266911, + "fields": { + "id_car_serie": 67155, + "name": "1.3 CVT 4WD (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266912, + "fields": { + "id_car_serie": 10811, + "name": "2.7 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266913, + "fields": { + "id_car_serie": 10811, + "name": "2.7 AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266914, + "fields": { + "id_car_serie": 10811, + "name": "2.7 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266915, + "fields": { + "id_car_serie": 10811, + "name": "2.7 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266916, + "fields": { + "id_car_serie": 10811, + "name": "2.7 AT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266917, + "fields": { + "id_car_serie": 10811, + "name": "2.7 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266918, + "fields": { + "id_car_serie": 10811, + "name": "2.7 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266919, + "fields": { + "id_car_serie": 10811, + "name": "3.2 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266920, + "fields": { + "id_car_serie": 10811, + "name": "3.2 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266921, + "fields": { + "id_car_serie": 10811, + "name": "3.2 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266922, + "fields": { + "id_car_serie": 10811, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266923, + "fields": { + "id_car_serie": 48706, + "name": "1.0 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266924, + "fields": { + "id_car_serie": 48706, + "name": "1.2 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266925, + "fields": { + "id_car_serie": 48706, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266926, + "fields": { + "id_car_serie": 67252, + "name": "1.2 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266927, + "fields": { + "id_car_serie": 67252, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266928, + "fields": { + "id_car_serie": 67253, + "name": "1.2 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266929, + "fields": { + "id_car_serie": 67253, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266930, + "fields": { + "id_car_serie": 67254, + "name": "1.0 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266931, + "fields": { + "id_car_serie": 67255, + "name": "0.7 CVT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266932, + "fields": { + "id_car_serie": 67255, + "name": "0.7 CVT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266933, + "fields": { + "id_car_serie": 67255, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266934, + "fields": { + "id_car_serie": 67256, + "name": "0.7 CVT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266935, + "fields": { + "id_car_serie": 67256, + "name": "0.7 CVT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266936, + "fields": { + "id_car_serie": 67256, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266937, + "fields": { + "id_car_serie": 67257, + "name": "0.7 CVT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266938, + "fields": { + "id_car_serie": 67257, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266939, + "fields": { + "id_car_serie": 67258, + "name": "0.7 CVT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266940, + "fields": { + "id_car_serie": 67258, + "name": "0.7 CVT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266941, + "fields": { + "id_car_serie": 67258, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266942, + "fields": { + "id_car_serie": 67258, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266943, + "fields": { + "id_car_serie": 63208, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266944, + "fields": { + "id_car_serie": 4614, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266945, + "fields": { + "id_car_serie": 4614, + "name": "2.0 AT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266946, + "fields": { + "id_car_serie": 9445, + "name": "2.0 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266947, + "fields": { + "id_car_serie": 9445, + "name": "2.0 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266948, + "fields": { + "id_car_serie": 9445, + "name": "2.0 AT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266949, + "fields": { + "id_car_serie": 9445, + "name": "2.0 MT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266950, + "fields": { + "id_car_serie": 9445, + "name": "2.4 MT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266951, + "fields": { + "id_car_serie": 9445, + "name": "2.4 AT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266952, + "fields": { + "id_car_serie": 9445, + "name": "2.4 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266953, + "fields": { + "id_car_serie": 9445, + "name": "2.4 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266954, + "fields": { + "id_car_serie": 9445, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266955, + "fields": { + "id_car_serie": 9445, + "name": "2.0 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266956, + "fields": { + "id_car_serie": 9446, + "name": "2.0 MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266957, + "fields": { + "id_car_serie": 10778, + "name": "2.0 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266958, + "fields": { + "id_car_serie": 10778, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266959, + "fields": { + "id_car_serie": 10778, + "name": "2.0 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266960, + "fields": { + "id_car_serie": 10778, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266961, + "fields": { + "id_car_serie": 10778, + "name": "2.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266962, + "fields": { + "id_car_serie": 10778, + "name": "2.0 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266963, + "fields": { + "id_car_serie": 10778, + "name": "2.0 AMT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266964, + "fields": { + "id_car_serie": 49745, + "name": "1.9 AMT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266965, + "fields": { + "id_car_serie": 49745, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266966, + "fields": { + "id_car_serie": 49745, + "name": "1.9 AMT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266967, + "fields": { + "id_car_serie": 49745, + "name": "2.5 AMT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266968, + "fields": { + "id_car_serie": 49745, + "name": "2.0 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266969, + "fields": { + "id_car_serie": 64312, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266970, + "fields": { + "id_car_serie": 67259, + "name": "2.5 CVT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266971, + "fields": { + "id_car_serie": 67259, + "name": "2.5 CVT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266972, + "fields": { + "id_car_serie": 67260, + "name": "2.0 CVT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266973, + "fields": { + "id_car_serie": 67260, + "name": "2.0 CVT 4WD (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266974, + "fields": { + "id_car_serie": 67260, + "name": "2.5 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266975, + "fields": { + "id_car_serie": 67260, + "name": "2.5 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266976, + "fields": { + "id_car_serie": 67261, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266977, + "fields": { + "id_car_serie": 67261, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266978, + "fields": { + "id_car_serie": 67261, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266979, + "fields": { + "id_car_serie": 67261, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266980, + "fields": { + "id_car_serie": 67261, + "name": "2.5 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266981, + "fields": { + "id_car_serie": 67261, + "name": "2.5 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266982, + "fields": { + "id_car_serie": 67261, + "name": "3.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266983, + "fields": { + "id_car_serie": 67261, + "name": "3.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266984, + "fields": { + "id_car_serie": 67261, + "name": "3.0 MT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266985, + "fields": { + "id_car_serie": 67261, + "name": "3.0 AT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266986, + "fields": { + "id_car_serie": 67261, + "name": "3.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266987, + "fields": { + "id_car_serie": 67261, + "name": "3.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266988, + "fields": { + "id_car_serie": 10815, + "name": "2.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266989, + "fields": { + "id_car_serie": 67262, + "name": "2.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266990, + "fields": { + "id_car_serie": 67262, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266991, + "fields": { + "id_car_serie": 67262, + "name": "2.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266992, + "fields": { + "id_car_serie": 67262, + "name": "2.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266993, + "fields": { + "id_car_serie": 67262, + "name": "2.5 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266994, + "fields": { + "id_car_serie": 67262, + "name": "2.7 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266995, + "fields": { + "id_car_serie": 67263, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266996, + "fields": { + "id_car_serie": 67263, + "name": "2.3 MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266997, + "fields": { + "id_car_serie": 67264, + "name": "2.0 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266998, + "fields": { + "id_car_serie": 67264, + "name": "2.0 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 266999, + "fields": { + "id_car_serie": 67264, + "name": "2.0 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267000, + "fields": { + "id_car_serie": 67264, + "name": "2.0 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267001, + "fields": { + "id_car_serie": 67265, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267002, + "fields": { + "id_car_serie": 67265, + "name": "1.6 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267003, + "fields": { + "id_car_serie": 3883, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267004, + "fields": { + "id_car_serie": 3883, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267005, + "fields": { + "id_car_serie": 3883, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267006, + "fields": { + "id_car_serie": 3883, + "name": "1.6 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267007, + "fields": { + "id_car_serie": 3883, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267008, + "fields": { + "id_car_serie": 3883, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267009, + "fields": { + "id_car_serie": 3883, + "name": "1.8 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267010, + "fields": { + "id_car_serie": 3883, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267011, + "fields": { + "id_car_serie": 3883, + "name": "1.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267012, + "fields": { + "id_car_serie": 3883, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267013, + "fields": { + "id_car_serie": 3883, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267014, + "fields": { + "id_car_serie": 3883, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267015, + "fields": { + "id_car_serie": 3883, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267016, + "fields": { + "id_car_serie": 3883, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267017, + "fields": { + "id_car_serie": 3883, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267018, + "fields": { + "id_car_serie": 3883, + "name": "1.6 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267019, + "fields": { + "id_car_serie": 7278, + "name": "1.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267020, + "fields": { + "id_car_serie": 7278, + "name": "1.6 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267021, + "fields": { + "id_car_serie": 7278, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267022, + "fields": { + "id_car_serie": 7278, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267023, + "fields": { + "id_car_serie": 7278, + "name": "1.9 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267024, + "fields": { + "id_car_serie": 7278, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267025, + "fields": { + "id_car_serie": 3885, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267026, + "fields": { + "id_car_serie": 3885, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267027, + "fields": { + "id_car_serie": 3885, + "name": "2.0 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267028, + "fields": { + "id_car_serie": 64326, + "name": "1.6 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267029, + "fields": { + "id_car_serie": 7291, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267030, + "fields": { + "id_car_serie": 7291, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267031, + "fields": { + "id_car_serie": 67267, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267032, + "fields": { + "id_car_serie": 67267, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267033, + "fields": { + "id_car_serie": 67268, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267034, + "fields": { + "id_car_serie": 67268, + "name": "1.6 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267035, + "fields": { + "id_car_serie": 67268, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267036, + "fields": { + "id_car_serie": 67269, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267037, + "fields": { + "id_car_serie": 67269, + "name": "1.2 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267038, + "fields": { + "id_car_serie": 67269, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267039, + "fields": { + "id_car_serie": 67269, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267040, + "fields": { + "id_car_serie": 67269, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267041, + "fields": { + "id_car_serie": 67270, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267042, + "fields": { + "id_car_serie": 67270, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267043, + "fields": { + "id_car_serie": 67270, + "name": "1.6 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267044, + "fields": { + "id_car_serie": 67270, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267045, + "fields": { + "id_car_serie": 67270, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267046, + "fields": { + "id_car_serie": 67270, + "name": "1.6 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267047, + "fields": { + "id_car_serie": 67270, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267048, + "fields": { + "id_car_serie": 67270, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267049, + "fields": { + "id_car_serie": 67270, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267050, + "fields": { + "id_car_serie": 67270, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267051, + "fields": { + "id_car_serie": 48828, + "name": "1.7 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267052, + "fields": { + "id_car_serie": 48828, + "name": "1.7 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267053, + "fields": { + "id_car_serie": 48828, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267054, + "fields": { + "id_car_serie": 48830, + "name": "1.7 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267055, + "fields": { + "id_car_serie": 48830, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267056, + "fields": { + "id_car_serie": 67271, + "name": "1.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267057, + "fields": { + "id_car_serie": 67271, + "name": "1.2 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267058, + "fields": { + "id_car_serie": 67271, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267059, + "fields": { + "id_car_serie": 67271, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267060, + "fields": { + "id_car_serie": 67271, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267061, + "fields": { + "id_car_serie": 67271, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267062, + "fields": { + "id_car_serie": 67271, + "name": "1.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267063, + "fields": { + "id_car_serie": 67272, + "name": "2.5 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267064, + "fields": { + "id_car_serie": 67273, + "name": "2.5 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267065, + "fields": { + "id_car_serie": 67156, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267066, + "fields": { + "id_car_serie": 67156, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267067, + "fields": { + "id_car_serie": 67156, + "name": "2.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267068, + "fields": { + "id_car_serie": 67156, + "name": "2.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267069, + "fields": { + "id_car_serie": 67156, + "name": "2.5 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267070, + "fields": { + "id_car_serie": 67156, + "name": "2.5 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267071, + "fields": { + "id_car_serie": 67156, + "name": "2.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267072, + "fields": { + "id_car_serie": 67156, + "name": "2.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267073, + "fields": { + "id_car_serie": 67156, + "name": "3.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267074, + "fields": { + "id_car_serie": 67156, + "name": "3.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267075, + "fields": { + "id_car_serie": 67156, + "name": "3.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267076, + "fields": { + "id_car_serie": 67156, + "name": "3.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267077, + "fields": { + "id_car_serie": 7325, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267078, + "fields": { + "id_car_serie": 7325, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267079, + "fields": { + "id_car_serie": 7325, + "name": "1.8 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267080, + "fields": { + "id_car_serie": 7325, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267081, + "fields": { + "id_car_serie": 7325, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267082, + "fields": { + "id_car_serie": 7325, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267083, + "fields": { + "id_car_serie": 7325, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267084, + "fields": { + "id_car_serie": 7325, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267085, + "fields": { + "id_car_serie": 7325, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267086, + "fields": { + "id_car_serie": 7325, + "name": "2.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267087, + "fields": { + "id_car_serie": 7325, + "name": "2.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267088, + "fields": { + "id_car_serie": 7325, + "name": "2.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267089, + "fields": { + "id_car_serie": 7325, + "name": "2.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267090, + "fields": { + "id_car_serie": 46796, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267091, + "fields": { + "id_car_serie": 46796, + "name": "1.7 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267092, + "fields": { + "id_car_serie": 46796, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267093, + "fields": { + "id_car_serie": 46796, + "name": "1.9 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267094, + "fields": { + "id_car_serie": 46796, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267095, + "fields": { + "id_car_serie": 46796, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267096, + "fields": { + "id_car_serie": 46796, + "name": "2.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267097, + "fields": { + "id_car_serie": 46796, + "name": "2.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267098, + "fields": { + "id_car_serie": 16530, + "name": "1.2 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267099, + "fields": { + "id_car_serie": 16530, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267100, + "fields": { + "id_car_serie": 16529, + "name": "1.2 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267101, + "fields": { + "id_car_serie": 16529, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267102, + "fields": { + "id_car_serie": 16532, + "name": "1.2 AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267103, + "fields": { + "id_car_serie": 16532, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267104, + "fields": { + "id_car_serie": 16532, + "name": "1.4 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267105, + "fields": { + "id_car_serie": 16532, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267106, + "fields": { + "id_car_serie": 16532, + "name": "1.4 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267107, + "fields": { + "id_car_serie": 16531, + "name": "1.2 AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267108, + "fields": { + "id_car_serie": 16531, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267109, + "fields": { + "id_car_serie": 16531, + "name": "1.4 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267110, + "fields": { + "id_car_serie": 16531, + "name": "1.4 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267111, + "fields": { + "id_car_serie": 16531, + "name": "1.4 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267112, + "fields": { + "id_car_serie": 3936, + "name": "1.0 AMT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267113, + "fields": { + "id_car_serie": 3935, + "name": "1.0 AMT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267114, + "fields": { + "id_car_serie": 64354, + "name": "1.2 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267115, + "fields": { + "id_car_serie": 64354, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267116, + "fields": { + "id_car_serie": 64354, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267117, + "fields": { + "id_car_serie": 64354, + "name": "1.2 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267118, + "fields": { + "id_car_serie": 67274, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267119, + "fields": { + "id_car_serie": 67274, + "name": "1.3 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267120, + "fields": { + "id_car_serie": 67274, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267121, + "fields": { + "id_car_serie": 67274, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267122, + "fields": { + "id_car_serie": 67274, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267123, + "fields": { + "id_car_serie": 67275, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267124, + "fields": { + "id_car_serie": 67275, + "name": "1.3 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267125, + "fields": { + "id_car_serie": 67275, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267126, + "fields": { + "id_car_serie": 67275, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267127, + "fields": { + "id_car_serie": 67275, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267128, + "fields": { + "id_car_serie": 7486, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267129, + "fields": { + "id_car_serie": 15084, + "name": "1.5 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267130, + "fields": { + "id_car_serie": 67277, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267131, + "fields": { + "id_car_serie": 67277, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267132, + "fields": { + "id_car_serie": 67277, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267133, + "fields": { + "id_car_serie": 67277, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267134, + "fields": { + "id_car_serie": 67277, + "name": "1.6 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267135, + "fields": { + "id_car_serie": 67277, + "name": "1.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267136, + "fields": { + "id_car_serie": 67277, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267137, + "fields": { + "id_car_serie": 67277, + "name": "1.9 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267138, + "fields": { + "id_car_serie": 67277, + "name": "1.9 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267139, + "fields": { + "id_car_serie": 7488, + "name": "1.6 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267140, + "fields": { + "id_car_serie": 7488, + "name": "1.9 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267141, + "fields": { + "id_car_serie": 67278, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267142, + "fields": { + "id_car_serie": 67278, + "name": "1.3 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267143, + "fields": { + "id_car_serie": 67278, + "name": "1.3 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267144, + "fields": { + "id_car_serie": 67278, + "name": "1.3 AMT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267145, + "fields": { + "id_car_serie": 67278, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267146, + "fields": { + "id_car_serie": 67278, + "name": "1.5 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267147, + "fields": { + "id_car_serie": 67278, + "name": "1.6 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267148, + "fields": { + "id_car_serie": 67279, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267149, + "fields": { + "id_car_serie": 67279, + "name": "1.3 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267150, + "fields": { + "id_car_serie": 67279, + "name": "1.3 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267151, + "fields": { + "id_car_serie": 67279, + "name": "1.3 AMT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267152, + "fields": { + "id_car_serie": 67279, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267153, + "fields": { + "id_car_serie": 67279, + "name": "1.5 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267154, + "fields": { + "id_car_serie": 15107, + "name": "2.0 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267155, + "fields": { + "id_car_serie": 47052, + "name": "0.9 MT (37 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267156, + "fields": { + "id_car_serie": 47053, + "name": "0.9 MT (37 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267157, + "fields": { + "id_car_serie": 15617, + "name": "3.0 MT (226 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267158, + "fields": { + "id_car_serie": 15617, + "name": "3.0 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267159, + "fields": { + "id_car_serie": 47051, + "name": "0.9 MT (27 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267160, + "fields": { + "id_car_serie": 47051, + "name": "0.9 MT (36 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267161, + "fields": { + "id_car_serie": 53274, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267162, + "fields": { + "id_car_serie": 53274, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267163, + "fields": { + "id_car_serie": 47050, + "name": "0.9 MT (37 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267164, + "fields": { + "id_car_serie": 67280, + "name": "2.1 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267165, + "fields": { + "id_car_serie": 63240, + "name": "1.2 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267166, + "fields": { + "id_car_serie": 67281, + "name": "0.8 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267167, + "fields": { + "id_car_serie": 67281, + "name": "1.1 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267168, + "fields": { + "id_car_serie": 67281, + "name": "1.1 AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267169, + "fields": { + "id_car_serie": 67282, + "name": "1.3 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267170, + "fields": { + "id_car_serie": 67282, + "name": "1.8 AMT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267171, + "fields": { + "id_car_serie": 67282, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267172, + "fields": { + "id_car_serie": 67282, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267173, + "fields": { + "id_car_serie": 67282, + "name": "2.0 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267174, + "fields": { + "id_car_serie": 67282, + "name": "2.0 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267175, + "fields": { + "id_car_serie": 67283, + "name": "1.3 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267176, + "fields": { + "id_car_serie": 67283, + "name": "1.8 AMT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267177, + "fields": { + "id_car_serie": 67283, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267178, + "fields": { + "id_car_serie": 67283, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267179, + "fields": { + "id_car_serie": 67283, + "name": "2.0 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267180, + "fields": { + "id_car_serie": 67283, + "name": "2.0 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267181, + "fields": { + "id_car_serie": 46064, + "name": "1.3 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267182, + "fields": { + "id_car_serie": 46064, + "name": "1.8 AMT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267183, + "fields": { + "id_car_serie": 46064, + "name": "1.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267184, + "fields": { + "id_car_serie": 46064, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267185, + "fields": { + "id_car_serie": 46064, + "name": "2.0 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267186, + "fields": { + "id_car_serie": 46064, + "name": "2.0 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267187, + "fields": { + "id_car_serie": 67284, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267188, + "fields": { + "id_car_serie": 67284, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267189, + "fields": { + "id_car_serie": 67284, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267190, + "fields": { + "id_car_serie": 67284, + "name": "2.0 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267191, + "fields": { + "id_car_serie": 49698, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267192, + "fields": { + "id_car_serie": 49698, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267193, + "fields": { + "id_car_serie": 49698, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267194, + "fields": { + "id_car_serie": 49698, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267195, + "fields": { + "id_car_serie": 49698, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267196, + "fields": { + "id_car_serie": 49698, + "name": "2.0 AMT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267197, + "fields": { + "id_car_serie": 49698, + "name": "2.0 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267198, + "fields": { + "id_car_serie": 49698, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267199, + "fields": { + "id_car_serie": 49701, + "name": "2.5 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267200, + "fields": { + "id_car_serie": 67285, + "name": "2.0 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267201, + "fields": { + "id_car_serie": 9132, + "name": "2.5 MT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267202, + "fields": { + "id_car_serie": 9132, + "name": "2.5 AT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267203, + "fields": { + "id_car_serie": 9132, + "name": "3.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267204, + "fields": { + "id_car_serie": 4195, + "name": "0.7 MT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267205, + "fields": { + "id_car_serie": 4195, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267206, + "fields": { + "id_car_serie": 4195, + "name": "0.7 AT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267207, + "fields": { + "id_car_serie": 4195, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267208, + "fields": { + "id_car_serie": 4196, + "name": "0.7 MT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267209, + "fields": { + "id_car_serie": 4196, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267210, + "fields": { + "id_car_serie": 4196, + "name": "0.7 AT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267211, + "fields": { + "id_car_serie": 4196, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267212, + "fields": { + "id_car_serie": 15121, + "name": "0.7 MT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267213, + "fields": { + "id_car_serie": 15121, + "name": "0.7 CVT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267214, + "fields": { + "id_car_serie": 15121, + "name": "0.7 MT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267215, + "fields": { + "id_car_serie": 15121, + "name": "0.7 CVT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267216, + "fields": { + "id_car_serie": 15121, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267217, + "fields": { + "id_car_serie": 15121, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267218, + "fields": { + "id_car_serie": 67286, + "name": "0.7 CVT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267219, + "fields": { + "id_car_serie": 67286, + "name": "0.7 CVT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267220, + "fields": { + "id_car_serie": 67287, + "name": "0.7 CVT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267221, + "fields": { + "id_car_serie": 67287, + "name": "0.7 CVT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267222, + "fields": { + "id_car_serie": 67287, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267223, + "fields": { + "id_car_serie": 67287, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267224, + "fields": { + "id_car_serie": 67288, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267225, + "fields": { + "id_car_serie": 67288, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267226, + "fields": { + "id_car_serie": 67289, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267227, + "fields": { + "id_car_serie": 67290, + "name": "0.6 MT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267228, + "fields": { + "id_car_serie": 67290, + "name": "0.6 MT 4WD (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267229, + "fields": { + "id_car_serie": 67290, + "name": "0.6 CVT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267230, + "fields": { + "id_car_serie": 67290, + "name": "0.6 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267231, + "fields": { + "id_car_serie": 67290, + "name": "0.6 CVT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267232, + "fields": { + "id_car_serie": 67290, + "name": "0.6 CVT 4WD (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267233, + "fields": { + "id_car_serie": 67290, + "name": "0.6 MT 4WD (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267234, + "fields": { + "id_car_serie": 67290, + "name": "0.7 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267235, + "fields": { + "id_car_serie": 67290, + "name": "0.7 CVT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267236, + "fields": { + "id_car_serie": 67290, + "name": "0.7 CVT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267237, + "fields": { + "id_car_serie": 67290, + "name": "0.7 CVT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267238, + "fields": { + "id_car_serie": 67290, + "name": "0.7 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267239, + "fields": { + "id_car_serie": 67290, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267240, + "fields": { + "id_car_serie": 67290, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267241, + "fields": { + "id_car_serie": 67290, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267242, + "fields": { + "id_car_serie": 67290, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267243, + "fields": { + "id_car_serie": 67291, + "name": "0.6 MT 4WD (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267244, + "fields": { + "id_car_serie": 67291, + "name": "0.6 CVT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267245, + "fields": { + "id_car_serie": 67291, + "name": "0.6 CVT 4WD (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267246, + "fields": { + "id_car_serie": 67291, + "name": "0.6 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267247, + "fields": { + "id_car_serie": 67291, + "name": "0.6 MT 4WD (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267248, + "fields": { + "id_car_serie": 67291, + "name": "0.7 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267249, + "fields": { + "id_car_serie": 67291, + "name": "0.7 CVT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267250, + "fields": { + "id_car_serie": 67291, + "name": "0.7 CVT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267251, + "fields": { + "id_car_serie": 67291, + "name": "0.7 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267252, + "fields": { + "id_car_serie": 67291, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267253, + "fields": { + "id_car_serie": 67291, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267254, + "fields": { + "id_car_serie": 67291, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267255, + "fields": { + "id_car_serie": 67291, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267256, + "fields": { + "id_car_serie": 67291, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267257, + "fields": { + "id_car_serie": 67292, + "name": "0.5 MT (31 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267258, + "fields": { + "id_car_serie": 67292, + "name": "0.5 MT 4WD (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267259, + "fields": { + "id_car_serie": 67292, + "name": "0.7 MT (37 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267260, + "fields": { + "id_car_serie": 67293, + "name": "0.5 MT (31 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267261, + "fields": { + "id_car_serie": 67293, + "name": "0.5 MT 4WD (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267262, + "fields": { + "id_car_serie": 67293, + "name": "0.7 MT (37 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267263, + "fields": { + "id_car_serie": 67294, + "name": "0.4 MT (37 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267264, + "fields": { + "id_car_serie": 67294, + "name": "0.4 MT (31 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267265, + "fields": { + "id_car_serie": 67294, + "name": "0.5 MT (31 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267266, + "fields": { + "id_car_serie": 2353, + "name": "0.7 CVT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267267, + "fields": { + "id_car_serie": 2353, + "name": "0.7 MT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267268, + "fields": { + "id_car_serie": 2353, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267269, + "fields": { + "id_car_serie": 2356, + "name": "1.3 CVT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267270, + "fields": { + "id_car_serie": 2356, + "name": "1.5 CVT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267271, + "fields": { + "id_car_serie": 45003, + "name": "2.5 MT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267272, + "fields": { + "id_car_serie": 45003, + "name": "2.0 MT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267273, + "fields": { + "id_car_serie": 45878, + "name": "1.5 CVT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267274, + "fields": { + "id_car_serie": 67161, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267275, + "fields": { + "id_car_serie": 67161, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267276, + "fields": { + "id_car_serie": 67161, + "name": "3.5 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267277, + "fields": { + "id_car_serie": 67162, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267278, + "fields": { + "id_car_serie": 67162, + "name": "2.4 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267279, + "fields": { + "id_car_serie": 67162, + "name": "2.4 AT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267280, + "fields": { + "id_car_serie": 67162, + "name": "2.4 AT 4WD (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267281, + "fields": { + "id_car_serie": 67162, + "name": "3.0 AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267282, + "fields": { + "id_car_serie": 67162, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267283, + "fields": { + "id_car_serie": 67162, + "name": "3.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267284, + "fields": { + "id_car_serie": 64540, + "name": "2.7 MT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267285, + "fields": { + "id_car_serie": 64544, + "name": "4.5 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267286, + "fields": { + "id_car_serie": 64545, + "name": "4.5 MT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267287, + "fields": { + "id_car_serie": 64545, + "name": "4.5 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267288, + "fields": { + "id_car_serie": 64545, + "name": "4.5 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267289, + "fields": { + "id_car_serie": 64545, + "name": "4.0 AT 4WD (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267290, + "fields": { + "id_car_serie": 64545, + "name": "4.0 MT 4WD (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267291, + "fields": { + "id_car_serie": 64545, + "name": "4.0 AT 4WD (271 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267292, + "fields": { + "id_car_serie": 64545, + "name": "4.6 AT 4WD (318 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267293, + "fields": { + "id_car_serie": 64545, + "name": "5.7 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267294, + "fields": { + "id_car_serie": 64555, + "name": "4.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267295, + "fields": { + "id_car_serie": 64555, + "name": "4.0 MT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267296, + "fields": { + "id_car_serie": 67295, + "name": "3.4 MT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267297, + "fields": { + "id_car_serie": 67295, + "name": "3.5 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267298, + "fields": { + "id_car_serie": 67295, + "name": "4.0 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267299, + "fields": { + "id_car_serie": 67295, + "name": "4.2 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267300, + "fields": { + "id_car_serie": 67295, + "name": "4.0 MT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267301, + "fields": { + "id_car_serie": 67295, + "name": "4.5 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267302, + "fields": { + "id_car_serie": 67295, + "name": "4.5 MT 4WD (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267303, + "fields": { + "id_car_serie": 64560, + "name": "4.0 AT 4WD (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267304, + "fields": { + "id_car_serie": 64560, + "name": "3.0 MT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267305, + "fields": { + "id_car_serie": 64560, + "name": "3.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267306, + "fields": { + "id_car_serie": 64560, + "name": "3.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267307, + "fields": { + "id_car_serie": 64571, + "name": "2.0 CVT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267308, + "fields": { + "id_car_serie": 64571, + "name": "2.0 MT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267309, + "fields": { + "id_car_serie": 64571, + "name": "2.0 CVT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267310, + "fields": { + "id_car_serie": 64571, + "name": "2.0 CVT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267311, + "fields": { + "id_car_serie": 64571, + "name": "2.0 MT (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267312, + "fields": { + "id_car_serie": 64571, + "name": "2.0 MT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267313, + "fields": { + "id_car_serie": 64571, + "name": "2.4 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267314, + "fields": { + "id_car_serie": 64571, + "name": "2.4 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267315, + "fields": { + "id_car_serie": 64571, + "name": "3.5 AT 4WD (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267316, + "fields": { + "id_car_serie": 64576, + "name": "2.0 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267317, + "fields": { + "id_car_serie": 64576, + "name": "2.0 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267318, + "fields": { + "id_car_serie": 64576, + "name": "2.0 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267319, + "fields": { + "id_car_serie": 64576, + "name": "2.0 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267320, + "fields": { + "id_car_serie": 67296, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267321, + "fields": { + "id_car_serie": 67296, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267322, + "fields": { + "id_car_serie": 67296, + "name": "4.0 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267323, + "fields": { + "id_car_serie": 67296, + "name": "4.0 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267324, + "fields": { + "id_car_serie": 67297, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267325, + "fields": { + "id_car_serie": 67297, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267326, + "fields": { + "id_car_serie": 67297, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267327, + "fields": { + "id_car_serie": 67298, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267328, + "fields": { + "id_car_serie": 67298, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267329, + "fields": { + "id_car_serie": 67298, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267330, + "fields": { + "id_car_serie": 67299, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267331, + "fields": { + "id_car_serie": 67299, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267332, + "fields": { + "id_car_serie": 67299, + "name": "1.4 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267333, + "fields": { + "id_car_serie": 67300, + "name": "2.8 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267334, + "fields": { + "id_car_serie": 67300, + "name": "2.8 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267335, + "fields": { + "id_car_serie": 67300, + "name": "2.8 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267336, + "fields": { + "id_car_serie": 67300, + "name": "2.8 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267337, + "fields": { + "id_car_serie": 67300, + "name": "3.5 AT (281 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267338, + "fields": { + "id_car_serie": 67300, + "name": "3.5 MT (281 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267339, + "fields": { + "id_car_serie": 67301, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267340, + "fields": { + "id_car_serie": 67301, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267341, + "fields": { + "id_car_serie": 67301, + "name": "2.7 AT (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267342, + "fields": { + "id_car_serie": 67301, + "name": "2.7 AT 4WD (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267343, + "fields": { + "id_car_serie": 67301, + "name": "2.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267344, + "fields": { + "id_car_serie": 67301, + "name": "2.5 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267345, + "fields": { + "id_car_serie": 67301, + "name": "2.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267346, + "fields": { + "id_car_serie": 67301, + "name": "2.5 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267347, + "fields": { + "id_car_serie": 67301, + "name": "3.0 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267348, + "fields": { + "id_car_serie": 67301, + "name": "3.0 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267349, + "fields": { + "id_car_serie": 67302, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267350, + "fields": { + "id_car_serie": 67302, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267351, + "fields": { + "id_car_serie": 67302, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267352, + "fields": { + "id_car_serie": 67302, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267353, + "fields": { + "id_car_serie": 67302, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267354, + "fields": { + "id_car_serie": 67302, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267355, + "fields": { + "id_car_serie": 67302, + "name": "2.4 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267356, + "fields": { + "id_car_serie": 67302, + "name": "2.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267357, + "fields": { + "id_car_serie": 67302, + "name": "2.4 AT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267358, + "fields": { + "id_car_serie": 67302, + "name": "2.4 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267359, + "fields": { + "id_car_serie": 67302, + "name": "2.4 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267360, + "fields": { + "id_car_serie": 67302, + "name": "2.4 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267361, + "fields": { + "id_car_serie": 67302, + "name": "2.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267362, + "fields": { + "id_car_serie": 67302, + "name": "2.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267363, + "fields": { + "id_car_serie": 67302, + "name": "2.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267364, + "fields": { + "id_car_serie": 67302, + "name": "2.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267365, + "fields": { + "id_car_serie": 67302, + "name": "2.8 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267366, + "fields": { + "id_car_serie": 67302, + "name": "2.8 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267367, + "fields": { + "id_car_serie": 67302, + "name": "2.8 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267368, + "fields": { + "id_car_serie": 63275, + "name": "2.5 MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267369, + "fields": { + "id_car_serie": 63275, + "name": "2.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267370, + "fields": { + "id_car_serie": 67303, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267371, + "fields": { + "id_car_serie": 67303, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267372, + "fields": { + "id_car_serie": 67303, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267373, + "fields": { + "id_car_serie": 67303, + "name": "2.2 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267374, + "fields": { + "id_car_serie": 67303, + "name": "2.5 MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267375, + "fields": { + "id_car_serie": 67303, + "name": "2.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267376, + "fields": { + "id_car_serie": 67304, + "name": "2.7 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267377, + "fields": { + "id_car_serie": 67304, + "name": "2.7 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267378, + "fields": { + "id_car_serie": 67304, + "name": "3.4 AT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267379, + "fields": { + "id_car_serie": 67304, + "name": "3.0 MT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267380, + "fields": { + "id_car_serie": 67304, + "name": "3.0 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267381, + "fields": { + "id_car_serie": 67304, + "name": "3.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267382, + "fields": { + "id_car_serie": 67305, + "name": "2.7 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267383, + "fields": { + "id_car_serie": 67305, + "name": "2.7 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267384, + "fields": { + "id_car_serie": 67305, + "name": "3.4 AT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267385, + "fields": { + "id_car_serie": 67305, + "name": "3.0 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267386, + "fields": { + "id_car_serie": 67305, + "name": "3.0 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267387, + "fields": { + "id_car_serie": 67305, + "name": "3.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267388, + "fields": { + "id_car_serie": 15383, + "name": "2.5 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267389, + "fields": { + "id_car_serie": 15383, + "name": "2.5 AT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267390, + "fields": { + "id_car_serie": 15383, + "name": "3.0 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267391, + "fields": { + "id_car_serie": 15383, + "name": "3.0 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267392, + "fields": { + "id_car_serie": 15383, + "name": "3.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267393, + "fields": { + "id_car_serie": 15383, + "name": "3.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267394, + "fields": { + "id_car_serie": 67306, + "name": "2.0 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267395, + "fields": { + "id_car_serie": 67306, + "name": "2.0 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267396, + "fields": { + "id_car_serie": 67306, + "name": "2.0 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267397, + "fields": { + "id_car_serie": 67306, + "name": "2.0 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267398, + "fields": { + "id_car_serie": 67306, + "name": "2.5 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267399, + "fields": { + "id_car_serie": 67306, + "name": "2.5 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267400, + "fields": { + "id_car_serie": 45191, + "name": "2.0 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267401, + "fields": { + "id_car_serie": 45191, + "name": "2.0 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267402, + "fields": { + "id_car_serie": 45191, + "name": "2.2 AT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267403, + "fields": { + "id_car_serie": 45191, + "name": "2.2 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267404, + "fields": { + "id_car_serie": 45191, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267405, + "fields": { + "id_car_serie": 45191, + "name": "1.5 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267406, + "fields": { + "id_car_serie": 45191, + "name": "1.8 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267407, + "fields": { + "id_car_serie": 45191, + "name": "1.8 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267408, + "fields": { + "id_car_serie": 45191, + "name": "1.8 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267409, + "fields": { + "id_car_serie": 45191, + "name": "1.8 MT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267410, + "fields": { + "id_car_serie": 45191, + "name": "1.8 AT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267411, + "fields": { + "id_car_serie": 45191, + "name": "2.0 MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267412, + "fields": { + "id_car_serie": 45191, + "name": "2.0 AT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267413, + "fields": { + "id_car_serie": 45191, + "name": "2.2 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267414, + "fields": { + "id_car_serie": 45191, + "name": "2.2 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267415, + "fields": { + "id_car_serie": 45192, + "name": "1.5 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267416, + "fields": { + "id_car_serie": 45192, + "name": "1.5 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267417, + "fields": { + "id_car_serie": 45192, + "name": "1.8 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267418, + "fields": { + "id_car_serie": 45192, + "name": "1.8 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267419, + "fields": { + "id_car_serie": 45192, + "name": "2.0 MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267420, + "fields": { + "id_car_serie": 45192, + "name": "2.0 AT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267421, + "fields": { + "id_car_serie": 49588, + "name": "1.3 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267422, + "fields": { + "id_car_serie": 49588, + "name": "2.0 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267423, + "fields": { + "id_car_serie": 49588, + "name": "2.0 MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267424, + "fields": { + "id_car_serie": 67307, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267425, + "fields": { + "id_car_serie": 63308, + "name": "1.3 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267426, + "fields": { + "id_car_serie": 9537, + "name": "2.4 CVT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267427, + "fields": { + "id_car_serie": 9537, + "name": "2.4 CVT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267428, + "fields": { + "id_car_serie": 63310, + "name": "2.0 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267429, + "fields": { + "id_car_serie": 67308, + "name": "1.8 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267430, + "fields": { + "id_car_serie": 45608, + "name": "1.5 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267431, + "fields": { + "id_car_serie": 23433, + "name": "1.8 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267432, + "fields": { + "id_car_serie": 23434, + "name": "1.8 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267433, + "fields": { + "id_car_serie": 63318, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267434, + "fields": { + "id_car_serie": 63318, + "name": "1.6 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267435, + "fields": { + "id_car_serie": 63318, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267436, + "fields": { + "id_car_serie": 63318, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267437, + "fields": { + "id_car_serie": 63318, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267438, + "fields": { + "id_car_serie": 63318, + "name": "2.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267439, + "fields": { + "id_car_serie": 9566, + "name": "2.7 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267440, + "fields": { + "id_car_serie": 9566, + "name": "3.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267441, + "fields": { + "id_car_serie": 9566, + "name": "3.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267442, + "fields": { + "id_car_serie": 67163, + "name": "1.4 AMT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267443, + "fields": { + "id_car_serie": 67163, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267444, + "fields": { + "id_car_serie": 67163, + "name": "2.0 AMT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267445, + "fields": { + "id_car_serie": 67163, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267446, + "fields": { + "id_car_serie": 67163, + "name": "2.0 AMT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267447, + "fields": { + "id_car_serie": 67164, + "name": "1.4 AMT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267448, + "fields": { + "id_car_serie": 67164, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267449, + "fields": { + "id_car_serie": 67164, + "name": "2.0 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267450, + "fields": { + "id_car_serie": 67164, + "name": "2.0 AMT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267451, + "fields": { + "id_car_serie": 67164, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267452, + "fields": { + "id_car_serie": 67164, + "name": "2.0 AT (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267453, + "fields": { + "id_car_serie": 67164, + "name": "2.0 AT 4WD (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267454, + "fields": { + "id_car_serie": 67164, + "name": "2.0 AMT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267455, + "fields": { + "id_car_serie": 67309, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267456, + "fields": { + "id_car_serie": 67309, + "name": "1.5 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267457, + "fields": { + "id_car_serie": 67309, + "name": "1.5 AMT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267458, + "fields": { + "id_car_serie": 67309, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267459, + "fields": { + "id_car_serie": 67309, + "name": "2.0 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267460, + "fields": { + "id_car_serie": 67309, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267461, + "fields": { + "id_car_serie": 67310, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267462, + "fields": { + "id_car_serie": 67310, + "name": "1.5 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267463, + "fields": { + "id_car_serie": 67310, + "name": "1.5 AMT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267464, + "fields": { + "id_car_serie": 67310, + "name": "2.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267465, + "fields": { + "id_car_serie": 67310, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267466, + "fields": { + "id_car_serie": 67310, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267467, + "fields": { + "id_car_serie": 67310, + "name": "2.0 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267468, + "fields": { + "id_car_serie": 67309, + "name": "2.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267469, + "fields": { + "id_car_serie": 47445, + "name": "1.2 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267470, + "fields": { + "id_car_serie": 47445, + "name": "1.4 AMT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267471, + "fields": { + "id_car_serie": 47445, + "name": "1.4 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267472, + "fields": { + "id_car_serie": 47445, + "name": "2.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267473, + "fields": { + "id_car_serie": 47445, + "name": "2.0 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267474, + "fields": { + "id_car_serie": 47445, + "name": "2.0 MT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267475, + "fields": { + "id_car_serie": 47445, + "name": "2.0 AMT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267476, + "fields": { + "id_car_serie": 47445, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267477, + "fields": { + "id_car_serie": 47447, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267478, + "fields": { + "id_car_serie": 47447, + "name": "2.0 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267479, + "fields": { + "id_car_serie": 47447, + "name": "2.0 MT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267480, + "fields": { + "id_car_serie": 47447, + "name": "2.0 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267481, + "fields": { + "id_car_serie": 47447, + "name": "2.0 AMT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267482, + "fields": { + "id_car_serie": 49372, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267483, + "fields": { + "id_car_serie": 49372, + "name": "1.9 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267484, + "fields": { + "id_car_serie": 49372, + "name": "2.0 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267485, + "fields": { + "id_car_serie": 63336, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267486, + "fields": { + "id_car_serie": 63336, + "name": "2.0 AMT 4WD (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267487, + "fields": { + "id_car_serie": 46977, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267488, + "fields": { + "id_car_serie": 46977, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267489, + "fields": { + "id_car_serie": 46977, + "name": "2.0 AMT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267490, + "fields": { + "id_car_serie": 46977, + "name": "2.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267491, + "fields": { + "id_car_serie": 46977, + "name": "2.0 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267492, + "fields": { + "id_car_serie": 46978, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267493, + "fields": { + "id_car_serie": 46978, + "name": "2.0 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267494, + "fields": { + "id_car_serie": 46978, + "name": "2.0 AMT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267495, + "fields": { + "id_car_serie": 46978, + "name": "2.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267496, + "fields": { + "id_car_serie": 67311, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267497, + "fields": { + "id_car_serie": 67311, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267498, + "fields": { + "id_car_serie": 67311, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267499, + "fields": { + "id_car_serie": 67311, + "name": "1.8 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267500, + "fields": { + "id_car_serie": 67311, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267501, + "fields": { + "id_car_serie": 67311, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267502, + "fields": { + "id_car_serie": 67311, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267503, + "fields": { + "id_car_serie": 67311, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267504, + "fields": { + "id_car_serie": 67311, + "name": "2.9 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267505, + "fields": { + "id_car_serie": 67311, + "name": "2.9 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267506, + "fields": { + "id_car_serie": 67312, + "name": "1.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267507, + "fields": { + "id_car_serie": 67312, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267508, + "fields": { + "id_car_serie": 67312, + "name": "2.0 AMT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267509, + "fields": { + "id_car_serie": 67312, + "name": "2.0 AMT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267510, + "fields": { + "id_car_serie": 67312, + "name": "1.4 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267511, + "fields": { + "id_car_serie": 67312, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267512, + "fields": { + "id_car_serie": 67312, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267513, + "fields": { + "id_car_serie": 67312, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267514, + "fields": { + "id_car_serie": 67312, + "name": "2.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267515, + "fields": { + "id_car_serie": 67312, + "name": "1.4 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267516, + "fields": { + "id_car_serie": 67312, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267517, + "fields": { + "id_car_serie": 67312, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267518, + "fields": { + "id_car_serie": 67312, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267519, + "fields": { + "id_car_serie": 67312, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267520, + "fields": { + "id_car_serie": 67312, + "name": "2.0 AMT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267521, + "fields": { + "id_car_serie": 10725, + "name": "2.0 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267522, + "fields": { + "id_car_serie": 47459, + "name": "1.2 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267523, + "fields": { + "id_car_serie": 47459, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267524, + "fields": { + "id_car_serie": 47459, + "name": "2.0 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267525, + "fields": { + "id_car_serie": 47459, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267526, + "fields": { + "id_car_serie": 47459, + "name": "1.6 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267527, + "fields": { + "id_car_serie": 47459, + "name": "2.0 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267528, + "fields": { + "id_car_serie": 47459, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267529, + "fields": { + "id_car_serie": 47459, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267530, + "fields": { + "id_car_serie": 67313, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267531, + "fields": { + "id_car_serie": 67313, + "name": "2.0 AMT 4WD (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267532, + "fields": { + "id_car_serie": 67313, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267533, + "fields": { + "id_car_serie": 67313, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267534, + "fields": { + "id_car_serie": 67313, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267535, + "fields": { + "id_car_serie": 67314, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267536, + "fields": { + "id_car_serie": 67314, + "name": "2.0 AMT 4WD (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267537, + "fields": { + "id_car_serie": 67314, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267538, + "fields": { + "id_car_serie": 67314, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267539, + "fields": { + "id_car_serie": 67314, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267540, + "fields": { + "id_car_serie": 67314, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267541, + "fields": { + "id_car_serie": 67315, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267542, + "fields": { + "id_car_serie": 67315, + "name": "2.0 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267543, + "fields": { + "id_car_serie": 67315, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267544, + "fields": { + "id_car_serie": 67315, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267545, + "fields": { + "id_car_serie": 67315, + "name": "2.0 AMT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267546, + "fields": { + "id_car_serie": 67316, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267547, + "fields": { + "id_car_serie": 67316, + "name": "2.0 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267548, + "fields": { + "id_car_serie": 67316, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267549, + "fields": { + "id_car_serie": 67316, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267550, + "fields": { + "id_car_serie": 67316, + "name": "2.0 AMT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267551, + "fields": { + "id_car_serie": 53321, + "name": "2.0 AMT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267552, + "fields": { + "id_car_serie": 53321, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267553, + "fields": { + "id_car_serie": 53321, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267554, + "fields": { + "id_car_serie": 53321, + "name": "2.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267555, + "fields": { + "id_car_serie": 15167, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267556, + "fields": { + "id_car_serie": 15167, + "name": "2.0 AMT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267557, + "fields": { + "id_car_serie": 15167, + "name": "2.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267558, + "fields": { + "id_car_serie": 67317, + "name": "2.0 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267559, + "fields": { + "id_car_serie": 67317, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267560, + "fields": { + "id_car_serie": 67317, + "name": "2.0 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267561, + "fields": { + "id_car_serie": 67317, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267562, + "fields": { + "id_car_serie": 67317, + "name": "2.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267563, + "fields": { + "id_car_serie": 67317, + "name": "2.0 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267564, + "fields": { + "id_car_serie": 67317, + "name": "2.0 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267565, + "fields": { + "id_car_serie": 67317, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267566, + "fields": { + "id_car_serie": 67317, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267567, + "fields": { + "id_car_serie": 49716, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267568, + "fields": { + "id_car_serie": 49716, + "name": "2.0 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267569, + "fields": { + "id_car_serie": 49716, + "name": "2.0 AMT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267570, + "fields": { + "id_car_serie": 49716, + "name": "2.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267571, + "fields": { + "id_car_serie": 67318, + "name": "2.0 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267572, + "fields": { + "id_car_serie": 67318, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267573, + "fields": { + "id_car_serie": 67318, + "name": "2.0 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267574, + "fields": { + "id_car_serie": 67318, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267575, + "fields": { + "id_car_serie": 67318, + "name": "2.0 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267576, + "fields": { + "id_car_serie": 67318, + "name": "2.0 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267577, + "fields": { + "id_car_serie": 67318, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267578, + "fields": { + "id_car_serie": 67318, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267579, + "fields": { + "id_car_serie": 67319, + "name": "1.9 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267580, + "fields": { + "id_car_serie": 67319, + "name": "1.9 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267581, + "fields": { + "id_car_serie": 67319, + "name": "1.9 AT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267582, + "fields": { + "id_car_serie": 67319, + "name": "2.5 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267583, + "fields": { + "id_car_serie": 67319, + "name": "2.5 MT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267584, + "fields": { + "id_car_serie": 67319, + "name": "2.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267585, + "fields": { + "id_car_serie": 67319, + "name": "2.5 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267586, + "fields": { + "id_car_serie": 67319, + "name": "2.5 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267587, + "fields": { + "id_car_serie": 67319, + "name": "2.5 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267588, + "fields": { + "id_car_serie": 67319, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267589, + "fields": { + "id_car_serie": 67319, + "name": "3.2 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267590, + "fields": { + "id_car_serie": 67320, + "name": "1.9 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267591, + "fields": { + "id_car_serie": 67320, + "name": "1.9 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267592, + "fields": { + "id_car_serie": 67320, + "name": "1.9 AT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267593, + "fields": { + "id_car_serie": 67320, + "name": "2.5 MT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267594, + "fields": { + "id_car_serie": 67320, + "name": "2.5 MT 4WD (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267595, + "fields": { + "id_car_serie": 67320, + "name": "2.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267596, + "fields": { + "id_car_serie": 67320, + "name": "2.5 AT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267597, + "fields": { + "id_car_serie": 67320, + "name": "2.5 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267598, + "fields": { + "id_car_serie": 67320, + "name": "2.5 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267599, + "fields": { + "id_car_serie": 67320, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267600, + "fields": { + "id_car_serie": 67320, + "name": "3.2 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267601, + "fields": { + "id_car_serie": 14744, + "name": "2.5 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267602, + "fields": { + "id_car_serie": 14744, + "name": "2.5 MT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267603, + "fields": { + "id_car_serie": 14745, + "name": "1.8 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267604, + "fields": { + "id_car_serie": 14745, + "name": "2.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267605, + "fields": { + "id_car_serie": 14745, + "name": "2.5 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267606, + "fields": { + "id_car_serie": 14745, + "name": "2.8 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267607, + "fields": { + "id_car_serie": 14745, + "name": "2.4 MT 4WD (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267608, + "fields": { + "id_car_serie": 67321, + "name": "1.9 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267609, + "fields": { + "id_car_serie": 67321, + "name": "1.9 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267610, + "fields": { + "id_car_serie": 67321, + "name": "2.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267611, + "fields": { + "id_car_serie": 67321, + "name": "2.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267612, + "fields": { + "id_car_serie": 67321, + "name": "2.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267613, + "fields": { + "id_car_serie": 67321, + "name": "2.5 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267614, + "fields": { + "id_car_serie": 67321, + "name": "2.0 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267615, + "fields": { + "id_car_serie": 67321, + "name": "2.5 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267616, + "fields": { + "id_car_serie": 67321, + "name": "2.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267617, + "fields": { + "id_car_serie": 67321, + "name": "2.5 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267618, + "fields": { + "id_car_serie": 67322, + "name": "1.9 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267619, + "fields": { + "id_car_serie": 67322, + "name": "1.9 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267620, + "fields": { + "id_car_serie": 67322, + "name": "2.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267621, + "fields": { + "id_car_serie": 67322, + "name": "2.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267622, + "fields": { + "id_car_serie": 67322, + "name": "2.5 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267623, + "fields": { + "id_car_serie": 67322, + "name": "2.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267624, + "fields": { + "id_car_serie": 67322, + "name": "2.0 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267625, + "fields": { + "id_car_serie": 67322, + "name": "2.5 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267626, + "fields": { + "id_car_serie": 67322, + "name": "2.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267627, + "fields": { + "id_car_serie": 67322, + "name": "2.5 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267628, + "fields": { + "id_car_serie": 49723, + "name": "2.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267629, + "fields": { + "id_car_serie": 49723, + "name": "2.5 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267630, + "fields": { + "id_car_serie": 49723, + "name": "2.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267631, + "fields": { + "id_car_serie": 49723, + "name": "2.5 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267632, + "fields": { + "id_car_serie": 49723, + "name": "2.5 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267633, + "fields": { + "id_car_serie": 14745, + "name": "2.5 AT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267634, + "fields": { + "id_car_serie": 49726, + "name": "1.9 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267635, + "fields": { + "id_car_serie": 49726, + "name": "1.9 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267636, + "fields": { + "id_car_serie": 49726, + "name": "1.9 MT 4WD (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267637, + "fields": { + "id_car_serie": 49726, + "name": "2.1 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267638, + "fields": { + "id_car_serie": 49726, + "name": "2.1 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267639, + "fields": { + "id_car_serie": 49726, + "name": "2.1 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267640, + "fields": { + "id_car_serie": 49726, + "name": "2.1 MT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267641, + "fields": { + "id_car_serie": 49726, + "name": "1.6 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267642, + "fields": { + "id_car_serie": 49726, + "name": "1.6 MT 4WD (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267643, + "fields": { + "id_car_serie": 49726, + "name": "1.7 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267644, + "fields": { + "id_car_serie": 49728, + "name": "1.9 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267645, + "fields": { + "id_car_serie": 49728, + "name": "1.9 MT 4WD (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267646, + "fields": { + "id_car_serie": 49728, + "name": "2.1 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267647, + "fields": { + "id_car_serie": 49728, + "name": "2.1 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267648, + "fields": { + "id_car_serie": 49728, + "name": "2.1 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267649, + "fields": { + "id_car_serie": 49728, + "name": "2.1 MT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267650, + "fields": { + "id_car_serie": 49728, + "name": "1.6 MT 4WD (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267651, + "fields": { + "id_car_serie": 49728, + "name": "1.7 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267652, + "fields": { + "id_car_serie": 67323, + "name": "1.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267653, + "fields": { + "id_car_serie": 67323, + "name": "1.4 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267654, + "fields": { + "id_car_serie": 67323, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267655, + "fields": { + "id_car_serie": 67323, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267656, + "fields": { + "id_car_serie": 67324, + "name": "1.1 MT 4WD (25 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267657, + "fields": { + "id_car_serie": 67325, + "name": "1.0 MT 4WD (24 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267658, + "fields": { + "id_car_serie": 67325, + "name": "1.1 MT 4WD (25 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267659, + "fields": { + "id_car_serie": 67165, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267660, + "fields": { + "id_car_serie": 67165, + "name": "2.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267661, + "fields": { + "id_car_serie": 67166, + "name": "2.1 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267662, + "fields": { + "id_car_serie": 67166, + "name": "2.3 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267663, + "fields": { + "id_car_serie": 67166, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267664, + "fields": { + "id_car_serie": 67166, + "name": "2.4 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267665, + "fields": { + "id_car_serie": 67166, + "name": "2.5 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267666, + "fields": { + "id_car_serie": 67166, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267667, + "fields": { + "id_car_serie": 63356, + "name": "7.0 MT (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267668, + "fields": { + "id_car_serie": 4637, + "name": "2.4 AMT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267669, + "fields": { + "id_car_serie": 46171, + "name": "3.5 AT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267670, + "fields": { + "id_car_serie": 14756, + "name": "3.7 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267671, + "fields": { + "id_car_serie": 4646, + "name": "3.5 AMT 4WD (573 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267672, + "fields": { + "id_car_serie": 5408, + "name": "3.5 AMT 4WD (377 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267673, + "fields": { + "id_car_serie": 14760, + "name": "3.7 MT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267674, + "fields": { + "id_car_serie": 14760, + "name": "3.7 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267675, + "fields": { + "id_car_serie": 64692, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267676, + "fields": { + "id_car_serie": 64692, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267677, + "fields": { + "id_car_serie": 64692, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267678, + "fields": { + "id_car_serie": 64692, + "name": "2.0 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267679, + "fields": { + "id_car_serie": 64692, + "name": "2.0 AMT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267680, + "fields": { + "id_car_serie": 64692, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267681, + "fields": { + "id_car_serie": 64692, + "name": "2.5 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267682, + "fields": { + "id_car_serie": 64692, + "name": "2.5 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267683, + "fields": { + "id_car_serie": 64692, + "name": "3.2 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267684, + "fields": { + "id_car_serie": 64692, + "name": "3.2 AMT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267685, + "fields": { + "id_car_serie": 64692, + "name": "1.9 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267686, + "fields": { + "id_car_serie": 64692, + "name": "1.9 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267687, + "fields": { + "id_car_serie": 64692, + "name": "1.9 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267688, + "fields": { + "id_car_serie": 64692, + "name": "1.9 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267689, + "fields": { + "id_car_serie": 64692, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267690, + "fields": { + "id_car_serie": 64692, + "name": "2.4 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267691, + "fields": { + "id_car_serie": 64692, + "name": "2.4 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267692, + "fields": { + "id_car_serie": 4660, + "name": "3.0 MT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267693, + "fields": { + "id_car_serie": 2857, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267694, + "fields": { + "id_car_serie": 2857, + "name": "2.5 MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267695, + "fields": { + "id_car_serie": 2857, + "name": "3.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267696, + "fields": { + "id_car_serie": 2857, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267697, + "fields": { + "id_car_serie": 14861, + "name": "1.5 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267698, + "fields": { + "id_car_serie": 14861, + "name": "1.5 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267699, + "fields": { + "id_car_serie": 14862, + "name": "1.5 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267700, + "fields": { + "id_car_serie": 14862, + "name": "1.5 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267701, + "fields": { + "id_car_serie": 14862, + "name": "1.7 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267702, + "fields": { + "id_car_serie": 5416, + "name": "1.5 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267703, + "fields": { + "id_car_serie": 5416, + "name": "1.5 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267704, + "fields": { + "id_car_serie": 5416, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267705, + "fields": { + "id_car_serie": 5417, + "name": "1.5 MT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267706, + "fields": { + "id_car_serie": 5417, + "name": "1.5 MT 4WD (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267707, + "fields": { + "id_car_serie": 5417, + "name": "1.5 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267708, + "fields": { + "id_car_serie": 5417, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267709, + "fields": { + "id_car_serie": 15225, + "name": "3.0 AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267710, + "fields": { + "id_car_serie": 15225, + "name": "3.0 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267711, + "fields": { + "id_car_serie": 15226, + "name": "3.0 AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267712, + "fields": { + "id_car_serie": 15226, + "name": "3.0 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267713, + "fields": { + "id_car_serie": 15231, + "name": "3.4 MT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267714, + "fields": { + "id_car_serie": 15231, + "name": "3.4 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267715, + "fields": { + "id_car_serie": 15237, + "name": "2.7 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267716, + "fields": { + "id_car_serie": 15236, + "name": "2.7 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267717, + "fields": { + "id_car_serie": 47521, + "name": "3.0 AT 4WD (410 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267718, + "fields": { + "id_car_serie": 46676, + "name": "4.4 AT 4WD (608 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267719, + "fields": { + "id_car_serie": 47512, + "name": "4.4 AT 4WD (507 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267720, + "fields": { + "id_car_serie": 15192, + "name": "2.7 MT 4WD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267721, + "fields": { + "id_car_serie": 15192, + "name": "2.7 MT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267722, + "fields": { + "id_car_serie": 15188, + "name": "2.0 AT (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267723, + "fields": { + "id_car_serie": 8324, + "name": "6.2 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267724, + "fields": { + "id_car_serie": 8324, + "name": "6.5 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267725, + "fields": { + "id_car_serie": 2869, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267726, + "fields": { + "id_car_serie": 2869, + "name": "1.9 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267727, + "fields": { + "id_car_serie": 2869, + "name": "1.9 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267728, + "fields": { + "id_car_serie": 5442, + "name": "2.0 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267729, + "fields": { + "id_car_serie": 5442, + "name": "2.0 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267730, + "fields": { + "id_car_serie": 5442, + "name": "2.0 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267731, + "fields": { + "id_car_serie": 2871, + "name": "1.8 MT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267732, + "fields": { + "id_car_serie": 2871, + "name": "2.2 MT 4WD (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267733, + "fields": { + "id_car_serie": 67326, + "name": "4.4 AT 4WD (598 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267734, + "fields": { + "id_car_serie": 67327, + "name": "2.2 AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267735, + "fields": { + "id_car_serie": 2941, + "name": "1.8 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267736, + "fields": { + "id_car_serie": 2941, + "name": "1.8 AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267737, + "fields": { + "id_car_serie": 5533, + "name": "1.8 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267738, + "fields": { + "id_car_serie": 5533, + "name": "1.8 AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267739, + "fields": { + "id_car_serie": 67328, + "name": "2.0 AMT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267740, + "fields": { + "id_car_serie": 67329, + "name": "1.4 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267741, + "fields": { + "id_car_serie": 67329, + "name": "1.4 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267742, + "fields": { + "id_car_serie": 67329, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267743, + "fields": { + "id_car_serie": 67329, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267744, + "fields": { + "id_car_serie": 67329, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267745, + "fields": { + "id_car_serie": 67329, + "name": "2.0 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267746, + "fields": { + "id_car_serie": 67329, + "name": "2.0 AMT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267747, + "fields": { + "id_car_serie": 67329, + "name": "2.5 AMT 4WD (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267748, + "fields": { + "id_car_serie": 67329, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267749, + "fields": { + "id_car_serie": 67329, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267750, + "fields": { + "id_car_serie": 67330, + "name": "1.4 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267751, + "fields": { + "id_car_serie": 67330, + "name": "1.4 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267752, + "fields": { + "id_car_serie": 67330, + "name": "2.0 AMT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267753, + "fields": { + "id_car_serie": 67331, + "name": "1.4 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267754, + "fields": { + "id_car_serie": 67331, + "name": "1.4 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267755, + "fields": { + "id_car_serie": 67331, + "name": "2.0 AMT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267756, + "fields": { + "id_car_serie": 67332, + "name": "1.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267757, + "fields": { + "id_car_serie": 67332, + "name": "1.6 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267758, + "fields": { + "id_car_serie": 67332, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267759, + "fields": { + "id_car_serie": 67332, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267760, + "fields": { + "id_car_serie": 67332, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267761, + "fields": { + "id_car_serie": 67333, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267762, + "fields": { + "id_car_serie": 67333, + "name": "1.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267763, + "fields": { + "id_car_serie": 67333, + "name": "1.0 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267764, + "fields": { + "id_car_serie": 67333, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267765, + "fields": { + "id_car_serie": 67334, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267766, + "fields": { + "id_car_serie": 67334, + "name": "1.6 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267767, + "fields": { + "id_car_serie": 67334, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267768, + "fields": { + "id_car_serie": 67334, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267769, + "fields": { + "id_car_serie": 67334, + "name": "1.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267770, + "fields": { + "id_car_serie": 67334, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267771, + "fields": { + "id_car_serie": 67334, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267772, + "fields": { + "id_car_serie": 3147, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267773, + "fields": { + "id_car_serie": 3147, + "name": "1.6 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267774, + "fields": { + "id_car_serie": 3147, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267775, + "fields": { + "id_car_serie": 3147, + "name": "1.5 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267776, + "fields": { + "id_car_serie": 3147, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267777, + "fields": { + "id_car_serie": 67335, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267778, + "fields": { + "id_car_serie": 67335, + "name": "1.0 CVT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267779, + "fields": { + "id_car_serie": 67335, + "name": "1.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267780, + "fields": { + "id_car_serie": 67335, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267781, + "fields": { + "id_car_serie": 3183, + "name": "1.0 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267782, + "fields": { + "id_car_serie": 5889, + "name": "0.7 AT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267783, + "fields": { + "id_car_serie": 47167, + "name": "1.0 MT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267784, + "fields": { + "id_car_serie": 47167, + "name": "1.0 AT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267785, + "fields": { + "id_car_serie": 47167, + "name": "1.3 AT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267786, + "fields": { + "id_car_serie": 47167, + "name": "1.3 MT 4WD (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267787, + "fields": { + "id_car_serie": 15254, + "name": "0.7 MT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267788, + "fields": { + "id_car_serie": 15254, + "name": "0.7 AT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267789, + "fields": { + "id_car_serie": 15254, + "name": "0.7 CVT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267790, + "fields": { + "id_car_serie": 15254, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267791, + "fields": { + "id_car_serie": 15254, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267792, + "fields": { + "id_car_serie": 15254, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267793, + "fields": { + "id_car_serie": 15254, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267794, + "fields": { + "id_car_serie": 15254, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267795, + "fields": { + "id_car_serie": 46415, + "name": "0.7 MT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267796, + "fields": { + "id_car_serie": 46415, + "name": "0.7 AT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267797, + "fields": { + "id_car_serie": 46415, + "name": "0.9 AT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267798, + "fields": { + "id_car_serie": 46415, + "name": "0.9 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267799, + "fields": { + "id_car_serie": 46452, + "name": "1.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267800, + "fields": { + "id_car_serie": 46452, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267801, + "fields": { + "id_car_serie": 598, + "name": "1.5 AT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267802, + "fields": { + "id_car_serie": 598, + "name": "1.5 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267803, + "fields": { + "id_car_serie": 598, + "name": "1.6 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267804, + "fields": { + "id_car_serie": 598, + "name": "1.6 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267805, + "fields": { + "id_car_serie": 3190, + "name": "2.0 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267806, + "fields": { + "id_car_serie": 3190, + "name": "2.2 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267807, + "fields": { + "id_car_serie": 3190, + "name": "2.8 MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267808, + "fields": { + "id_car_serie": 3190, + "name": "2.8 MT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267809, + "fields": { + "id_car_serie": 3190, + "name": "2.8 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267810, + "fields": { + "id_car_serie": 3190, + "name": "2.8 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267811, + "fields": { + "id_car_serie": 47016, + "name": "2.8 MT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267812, + "fields": { + "id_car_serie": 47016, + "name": "2.8 MT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267813, + "fields": { + "id_car_serie": 604, + "name": "2.8 MT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267814, + "fields": { + "id_car_serie": 67337, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267815, + "fields": { + "id_car_serie": 67337, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267816, + "fields": { + "id_car_serie": 67337, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267817, + "fields": { + "id_car_serie": 67338, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267818, + "fields": { + "id_car_serie": 67338, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267819, + "fields": { + "id_car_serie": 67338, + "name": "0.7 CVT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267820, + "fields": { + "id_car_serie": 67338, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267821, + "fields": { + "id_car_serie": 67338, + "name": "0.7 AT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267822, + "fields": { + "id_car_serie": 67338, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267823, + "fields": { + "id_car_serie": 67338, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267824, + "fields": { + "id_car_serie": 15755, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267825, + "fields": { + "id_car_serie": 15755, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267826, + "fields": { + "id_car_serie": 64864, + "name": "5.9 MT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267827, + "fields": { + "id_car_serie": 64864, + "name": "5.9 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267828, + "fields": { + "id_car_serie": 5964, + "name": "3.7 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267829, + "fields": { + "id_car_serie": 5964, + "name": "3.7 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267830, + "fields": { + "id_car_serie": 5964, + "name": "4.7 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267831, + "fields": { + "id_car_serie": 5964, + "name": "4.7 MT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267832, + "fields": { + "id_car_serie": 5964, + "name": "5.7 AT 4WD (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267833, + "fields": { + "id_car_serie": 5964, + "name": "5.7 MT 4WD (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267834, + "fields": { + "id_car_serie": 5981, + "name": "8.0 MT (456 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267835, + "fields": { + "id_car_serie": 5984, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267836, + "fields": { + "id_car_serie": 3225, + "name": "2.4 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267837, + "fields": { + "id_car_serie": 3225, + "name": "3.2 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267838, + "fields": { + "id_car_serie": 5986, + "name": "2.0 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267839, + "fields": { + "id_car_serie": 5986, + "name": "2.0 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267840, + "fields": { + "id_car_serie": 5987, + "name": "1.8 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267841, + "fields": { + "id_car_serie": 45250, + "name": "2.0 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267842, + "fields": { + "id_car_serie": 64882, + "name": "3.6 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267843, + "fields": { + "id_car_serie": 67147, + "name": "3.9 AMT (620 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267844, + "fields": { + "id_car_serie": 67148, + "name": "4.0 AMT 4WD (780 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267845, + "fields": { + "id_car_serie": 47194, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267846, + "fields": { + "id_car_serie": 47194, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267847, + "fields": { + "id_car_serie": 47194, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267848, + "fields": { + "id_car_serie": 47194, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267849, + "fields": { + "id_car_serie": 47194, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267850, + "fields": { + "id_car_serie": 47195, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267851, + "fields": { + "id_car_serie": 47195, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267852, + "fields": { + "id_car_serie": 47195, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267853, + "fields": { + "id_car_serie": 48028, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267854, + "fields": { + "id_car_serie": 48028, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267855, + "fields": { + "id_car_serie": 48028, + "name": "1.3 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267856, + "fields": { + "id_car_serie": 48028, + "name": "1.9 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267857, + "fields": { + "id_car_serie": 48028, + "name": "1.9 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267858, + "fields": { + "id_car_serie": 48029, + "name": "1.6 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267859, + "fields": { + "id_car_serie": 48029, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267860, + "fields": { + "id_car_serie": 48029, + "name": "1.9 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267861, + "fields": { + "id_car_serie": 48030, + "name": "1.3 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267862, + "fields": { + "id_car_serie": 48030, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267863, + "fields": { + "id_car_serie": 67339, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267864, + "fields": { + "id_car_serie": 67339, + "name": "1.4 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267865, + "fields": { + "id_car_serie": 67339, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267866, + "fields": { + "id_car_serie": 67339, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267867, + "fields": { + "id_car_serie": 67339, + "name": "1.7 MT (57 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267868, + "fields": { + "id_car_serie": 67339, + "name": "1.7 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267869, + "fields": { + "id_car_serie": 8553, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267870, + "fields": { + "id_car_serie": 67340, + "name": "0.9 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267871, + "fields": { + "id_car_serie": 67340, + "name": "1.0 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267872, + "fields": { + "id_car_serie": 67340, + "name": "1.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267873, + "fields": { + "id_car_serie": 67340, + "name": "1.1 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267874, + "fields": { + "id_car_serie": 67340, + "name": "1.3 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267875, + "fields": { + "id_car_serie": 49682, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267876, + "fields": { + "id_car_serie": 49682, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267877, + "fields": { + "id_car_serie": 49682, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267878, + "fields": { + "id_car_serie": 67341, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267879, + "fields": { + "id_car_serie": 67341, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267880, + "fields": { + "id_car_serie": 67341, + "name": "1.9 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267881, + "fields": { + "id_car_serie": 67341, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267882, + "fields": { + "id_car_serie": 67341, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267883, + "fields": { + "id_car_serie": 67342, + "name": "1.5 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267884, + "fields": { + "id_car_serie": 67342, + "name": "1.5 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267885, + "fields": { + "id_car_serie": 3380, + "name": "1.6 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267886, + "fields": { + "id_car_serie": 3380, + "name": "1.6 AT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267887, + "fields": { + "id_car_serie": 3379, + "name": "1.6 AT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267888, + "fields": { + "id_car_serie": 3379, + "name": "1.6 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267889, + "fields": { + "id_car_serie": 47215, + "name": "3.0 AT 4WD (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267890, + "fields": { + "id_car_serie": 46430, + "name": "3.0 AT (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267891, + "fields": { + "id_car_serie": 46430, + "name": "3.0 AT 4WD (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267892, + "fields": { + "id_car_serie": 67343, + "name": "2.0 CVT 4WD (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267893, + "fields": { + "id_car_serie": 67150, + "name": "1.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267894, + "fields": { + "id_car_serie": 67150, + "name": "1.9 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267895, + "fields": { + "id_car_serie": 67150, + "name": "3.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267896, + "fields": { + "id_car_serie": 67150, + "name": "3.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267897, + "fields": { + "id_car_serie": 67150, + "name": "1.9 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267898, + "fields": { + "id_car_serie": 67151, + "name": "3.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267899, + "fields": { + "id_car_serie": 67151, + "name": "3.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267900, + "fields": { + "id_car_serie": 67151, + "name": "1.9 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267901, + "fields": { + "id_car_serie": 67151, + "name": "1.9 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267902, + "fields": { + "id_car_serie": 67152, + "name": "1.6 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267903, + "fields": { + "id_car_serie": 67152, + "name": "2.0 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267904, + "fields": { + "id_car_serie": 67152, + "name": "1.8 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267905, + "fields": { + "id_car_serie": 67152, + "name": "2.4 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267906, + "fields": { + "id_car_serie": 67152, + "name": "2.4 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267907, + "fields": { + "id_car_serie": 63576, + "name": "2.0 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267908, + "fields": { + "id_car_serie": 63577, + "name": "3.5 MT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267909, + "fields": { + "id_car_serie": 47267, + "name": "5.2 AMT 4WD (610 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267910, + "fields": { + "id_car_serie": 47267, + "name": "5.2 AMT (580 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267911, + "fields": { + "id_car_serie": 47267, + "name": "5.2 AMT 4WD (640 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267912, + "fields": { + "id_car_serie": 1326, + "name": "4.8 AT 4WD (332 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267913, + "fields": { + "id_car_serie": 67344, + "name": "6.5 AMT 4WD (819 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267914, + "fields": { + "id_car_serie": 67345, + "name": "6.5 AMT 4WD (819 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267915, + "fields": { + "id_car_serie": 6653, + "name": "1.8 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267916, + "fields": { + "id_car_serie": 3596, + "name": "3.6 AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267917, + "fields": { + "id_car_serie": 6662, + "name": "2.0 MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267918, + "fields": { + "id_car_serie": 6662, + "name": "2.5 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267919, + "fields": { + "id_car_serie": 46014, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267920, + "fields": { + "id_car_serie": 3597, + "name": "1.3 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267921, + "fields": { + "id_car_serie": 14803, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267922, + "fields": { + "id_car_serie": 14803, + "name": "1.3 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267923, + "fields": { + "id_car_serie": 14803, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267924, + "fields": { + "id_car_serie": 14803, + "name": "1.3 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267925, + "fields": { + "id_car_serie": 14803, + "name": "1.3 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267926, + "fields": { + "id_car_serie": 6668, + "name": "1.2 CVT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267927, + "fields": { + "id_car_serie": 64981, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267928, + "fields": { + "id_car_serie": 64981, + "name": "3.0 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267929, + "fields": { + "id_car_serie": 64981, + "name": "3.0 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267930, + "fields": { + "id_car_serie": 67346, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267931, + "fields": { + "id_car_serie": 67346, + "name": "3.0 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267932, + "fields": { + "id_car_serie": 67346, + "name": "3.0 AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267933, + "fields": { + "id_car_serie": 67346, + "name": "2.0 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267934, + "fields": { + "id_car_serie": 53506, + "name": "5.0 AT 4WD (565 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267935, + "fields": { + "id_car_serie": 67347, + "name": "2.4 MT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267936, + "fields": { + "id_car_serie": 67347, + "name": "2.5 MT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267937, + "fields": { + "id_car_serie": 67347, + "name": "2.5 AT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267938, + "fields": { + "id_car_serie": 67347, + "name": "3.5 MT 4WD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267939, + "fields": { + "id_car_serie": 67347, + "name": "3.5 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267940, + "fields": { + "id_car_serie": 67347, + "name": "3.5 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267941, + "fields": { + "id_car_serie": 67347, + "name": "4.0 AT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267942, + "fields": { + "id_car_serie": 67347, + "name": "4.0 MT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267943, + "fields": { + "id_car_serie": 67348, + "name": "2.0 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267944, + "fields": { + "id_car_serie": 67348, + "name": "2.0 AT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267945, + "fields": { + "id_car_serie": 67348, + "name": "2.0 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267946, + "fields": { + "id_car_serie": 67348, + "name": "2.2 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267947, + "fields": { + "id_car_serie": 67348, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267948, + "fields": { + "id_car_serie": 67348, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267949, + "fields": { + "id_car_serie": 67348, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267950, + "fields": { + "id_car_serie": 67348, + "name": "2.0 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267951, + "fields": { + "id_car_serie": 67348, + "name": "2.2 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267952, + "fields": { + "id_car_serie": 67349, + "name": "2.0 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267953, + "fields": { + "id_car_serie": 67349, + "name": "2.0 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267954, + "fields": { + "id_car_serie": 67349, + "name": "2.2 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267955, + "fields": { + "id_car_serie": 67349, + "name": "2.2 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267956, + "fields": { + "id_car_serie": 67349, + "name": "2.2 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267957, + "fields": { + "id_car_serie": 67349, + "name": "2.2 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267958, + "fields": { + "id_car_serie": 10828, + "name": "2.0 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267959, + "fields": { + "id_car_serie": 10828, + "name": "2.4 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267960, + "fields": { + "id_car_serie": 10828, + "name": "2.8 MT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267961, + "fields": { + "id_car_serie": 1388, + "name": "2.4 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267962, + "fields": { + "id_car_serie": 64989, + "name": "2.3 AT 4WD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267963, + "fields": { + "id_car_serie": 1402, + "name": "2.0 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267964, + "fields": { + "id_car_serie": 1402, + "name": "2.3 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267965, + "fields": { + "id_car_serie": 6714, + "name": "3.5 AT 4WD (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267966, + "fields": { + "id_car_serie": 6714, + "name": "3.7 AT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267967, + "fields": { + "id_car_serie": 47271, + "name": "3.5 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267968, + "fields": { + "id_car_serie": 47271, + "name": "3.7 AT 4WD (274 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267969, + "fields": { + "id_car_serie": 8748, + "name": "3.5 AT 4WD (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267970, + "fields": { + "id_car_serie": 8748, + "name": "3.7 AT (307 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267971, + "fields": { + "id_car_serie": 8748, + "name": "3.7 AT 4WD (307 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267972, + "fields": { + "id_car_serie": 47272, + "name": "3.5 AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267973, + "fields": { + "id_car_serie": 47272, + "name": "3.7 AT 4WD (274 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267974, + "fields": { + "id_car_serie": 45840, + "name": "2.7 AT 4WD (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267975, + "fields": { + "id_car_serie": 45840, + "name": "3.7 AT 4WD (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267976, + "fields": { + "id_car_serie": 3621, + "name": "3.7 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267977, + "fields": { + "id_car_serie": 3622, + "name": "2.0 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267978, + "fields": { + "id_car_serie": 3622, + "name": "3.7 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267980, + "fields": { + "id_car_serie": 14817, + "name": "5.0 AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267981, + "fields": { + "id_car_serie": 1400, + "name": "5.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267982, + "fields": { + "id_car_serie": 1400, + "name": "5.0 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267983, + "fields": { + "id_car_serie": 1401, + "name": "4.6 AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267984, + "fields": { + "id_car_serie": 6718, + "name": "5.4 AT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267985, + "fields": { + "id_car_serie": 6720, + "name": "4.6 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267986, + "fields": { + "id_car_serie": 6720, + "name": "4.6 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267987, + "fields": { + "id_car_serie": 6720, + "name": "4.6 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267988, + "fields": { + "id_car_serie": 6720, + "name": "4.9 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267989, + "fields": { + "id_car_serie": 6720, + "name": "5.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267990, + "fields": { + "id_car_serie": 6722, + "name": "5.0 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267991, + "fields": { + "id_car_serie": 6721, + "name": "4.9 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267992, + "fields": { + "id_car_serie": 6721, + "name": "4.9 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267993, + "fields": { + "id_car_serie": 6721, + "name": "4.9 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267994, + "fields": { + "id_car_serie": 6721, + "name": "4.9 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267995, + "fields": { + "id_car_serie": 6721, + "name": "4.9 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267996, + "fields": { + "id_car_serie": 6721, + "name": "4.9 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267997, + "fields": { + "id_car_serie": 6721, + "name": "4.9 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267998, + "fields": { + "id_car_serie": 6721, + "name": "5.0 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 267999, + "fields": { + "id_car_serie": 67350, + "name": "1.2 CVT 4WD (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268000, + "fields": { + "id_car_serie": 67351, + "name": "2.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268001, + "fields": { + "id_car_serie": 67351, + "name": "2.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268002, + "fields": { + "id_car_serie": 6743, + "name": "2.2 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268003, + "fields": { + "id_car_serie": 8756, + "name": "2.1 MT 4WD (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268004, + "fields": { + "id_car_serie": 8756, + "name": "2.3 MT 4WD (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268005, + "fields": { + "id_car_serie": 8756, + "name": "2.5 MT 4WD (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268006, + "fields": { + "id_car_serie": 8756, + "name": "2.5 MT 4WD (39 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268007, + "fields": { + "id_car_serie": 63609, + "name": "2.1 MT 4WD (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268008, + "fields": { + "id_car_serie": 1444, + "name": "2.5 MT 4WD (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268009, + "fields": { + "id_car_serie": 3634, + "name": "4.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268010, + "fields": { + "id_car_serie": 3633, + "name": "4.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268011, + "fields": { + "id_car_serie": 3639, + "name": "1.0 MT 4WD (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268012, + "fields": { + "id_car_serie": 3639, + "name": "1.3 MT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268013, + "fields": { + "id_car_serie": 3639, + "name": "1.3 MT 4WD (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268014, + "fields": { + "id_car_serie": 3639, + "name": "1.3 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268015, + "fields": { + "id_car_serie": 67352, + "name": "2.0 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268016, + "fields": { + "id_car_serie": 67352, + "name": "3.0 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268017, + "fields": { + "id_car_serie": 67352, + "name": "3.0 AT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268018, + "fields": { + "id_car_serie": 67352, + "name": "3.0 AT 4WD (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268019, + "fields": { + "id_car_serie": 67352, + "name": "3.8 AT (580 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268020, + "fields": { + "id_car_serie": 67352, + "name": "3.0 AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268021, + "fields": { + "id_car_serie": 67353, + "name": "3.0 AT 4WD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268022, + "fields": { + "id_car_serie": 67353, + "name": "3.0 AT 4WD (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268023, + "fields": { + "id_car_serie": 67353, + "name": "3.8 AT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268024, + "fields": { + "id_car_serie": 67353, + "name": "3.8 AT 4WD (580 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268025, + "fields": { + "id_car_serie": 67353, + "name": "3.0 AT 4WD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268026, + "fields": { + "id_car_serie": 67354, + "name": "3.0 AMT (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268027, + "fields": { + "id_car_serie": 67355, + "name": "3.0 AT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268028, + "fields": { + "id_car_serie": 67355, + "name": "3.0 AT 4WD (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268029, + "fields": { + "id_car_serie": 67355, + "name": "3.8 AT (580 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268030, + "fields": { + "id_car_serie": 67355, + "name": "3.0 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268031, + "fields": { + "id_car_serie": 67355, + "name": "3.8 AT (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268032, + "fields": { + "id_car_serie": 67355, + "name": "3.0 AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268033, + "fields": { + "id_car_serie": 67356, + "name": "3.0 AMT (680 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268034, + "fields": { + "id_car_serie": 3696, + "name": "3.8 AMT (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268035, + "fields": { + "id_car_serie": 3737, + "name": "4.6 AT (227 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268036, + "fields": { + "id_car_serie": 3740, + "name": "2.3 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268037, + "fields": { + "id_car_serie": 3740, + "name": "2.3 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268038, + "fields": { + "id_car_serie": 3740, + "name": "2.5 AT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268039, + "fields": { + "id_car_serie": 3740, + "name": "3.0 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268040, + "fields": { + "id_car_serie": 3740, + "name": "3.0 AT 4WD (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268041, + "fields": { + "id_car_serie": 3740, + "name": "3.0 AT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268042, + "fields": { + "id_car_serie": 3740, + "name": "3.0 AT 4WD (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268043, + "fields": { + "id_car_serie": 3740, + "name": "2.3 CVT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268044, + "fields": { + "id_car_serie": 3740, + "name": "2.5 CVT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268045, + "fields": { + "id_car_serie": 3743, + "name": "4.6 AT 4WD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268046, + "fields": { + "id_car_serie": 6967, + "name": "4.0 AT 4WD (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268047, + "fields": { + "id_car_serie": 6967, + "name": "4.6 AT 4WD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268048, + "fields": { + "id_car_serie": 3744, + "name": "3.5 AT 4WD (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268049, + "fields": { + "id_car_serie": 1648, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268050, + "fields": { + "id_car_serie": 1648, + "name": "2.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268051, + "fields": { + "id_car_serie": 48546, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268052, + "fields": { + "id_car_serie": 48546, + "name": "1.5 AMT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268053, + "fields": { + "id_car_serie": 48546, + "name": "1.3 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268054, + "fields": { + "id_car_serie": 48546, + "name": "1.3 AMT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268055, + "fields": { + "id_car_serie": 1652, + "name": "1.8 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268056, + "fields": { + "id_car_serie": 3751, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268057, + "fields": { + "id_car_serie": 3750, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268058, + "fields": { + "id_car_serie": 47076, + "name": "1.5 AMT 4WD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268059, + "fields": { + "id_car_serie": 47076, + "name": "2.0 AMT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268060, + "fields": { + "id_car_serie": 8850, + "name": "3.0 MT 4WD (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268061, + "fields": { + "id_car_serie": 67357, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268062, + "fields": { + "id_car_serie": 67357, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268063, + "fields": { + "id_car_serie": 67357, + "name": "1.5 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268064, + "fields": { + "id_car_serie": 67357, + "name": "2.0 MT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268065, + "fields": { + "id_car_serie": 67357, + "name": "2.0 AMT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268066, + "fields": { + "id_car_serie": 67357, + "name": "2.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268067, + "fields": { + "id_car_serie": 67357, + "name": "2.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268068, + "fields": { + "id_car_serie": 65022, + "name": "2.0 AT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268069, + "fields": { + "id_car_serie": 65022, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268070, + "fields": { + "id_car_serie": 65022, + "name": "2.0 AMT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268071, + "fields": { + "id_car_serie": 65022, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268072, + "fields": { + "id_car_serie": 65022, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268073, + "fields": { + "id_car_serie": 65022, + "name": "1.5 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268074, + "fields": { + "id_car_serie": 65022, + "name": "1.5 AMT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268075, + "fields": { + "id_car_serie": 65022, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268076, + "fields": { + "id_car_serie": 65022, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268077, + "fields": { + "id_car_serie": 65022, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268078, + "fields": { + "id_car_serie": 65022, + "name": "1.5 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268079, + "fields": { + "id_car_serie": 65022, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268080, + "fields": { + "id_car_serie": 65022, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268081, + "fields": { + "id_car_serie": 65023, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268082, + "fields": { + "id_car_serie": 65023, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268083, + "fields": { + "id_car_serie": 65023, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268084, + "fields": { + "id_car_serie": 65023, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268085, + "fields": { + "id_car_serie": 65023, + "name": "1.6 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268086, + "fields": { + "id_car_serie": 65023, + "name": "1.6 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268087, + "fields": { + "id_car_serie": 65024, + "name": "1.6 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268088, + "fields": { + "id_car_serie": 65024, + "name": "1.6 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268089, + "fields": { + "id_car_serie": 65024, + "name": "1.6 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268090, + "fields": { + "id_car_serie": 65024, + "name": "1.6 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268091, + "fields": { + "id_car_serie": 65024, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268092, + "fields": { + "id_car_serie": 65024, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268093, + "fields": { + "id_car_serie": 65025, + "name": "2.0 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268094, + "fields": { + "id_car_serie": 65025, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268095, + "fields": { + "id_car_serie": 65025, + "name": "1.5 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268096, + "fields": { + "id_car_serie": 65025, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268097, + "fields": { + "id_car_serie": 65025, + "name": "1.5 AMT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268098, + "fields": { + "id_car_serie": 65025, + "name": "1.5 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268099, + "fields": { + "id_car_serie": 65025, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268100, + "fields": { + "id_car_serie": 65025, + "name": "1.5 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268101, + "fields": { + "id_car_serie": 65025, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268102, + "fields": { + "id_car_serie": 65025, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268109, + "fields": { + "id_car_serie": 67358, + "name": "2.0 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268110, + "fields": { + "id_car_serie": 67358, + "name": "2.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268111, + "fields": { + "id_car_serie": 67359, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268112, + "fields": { + "id_car_serie": 67359, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268113, + "fields": { + "id_car_serie": 67359, + "name": "1.5 AMT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268114, + "fields": { + "id_car_serie": 67359, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268115, + "fields": { + "id_car_serie": 67359, + "name": "1.5 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268116, + "fields": { + "id_car_serie": 67359, + "name": "2.0 MT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268117, + "fields": { + "id_car_serie": 67359, + "name": "2.0 AMT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268118, + "fields": { + "id_car_serie": 65026, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268119, + "fields": { + "id_car_serie": 65026, + "name": "1.5 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268120, + "fields": { + "id_car_serie": 65026, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268121, + "fields": { + "id_car_serie": 65026, + "name": "2.0 AMT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268122, + "fields": { + "id_car_serie": 65026, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268123, + "fields": { + "id_car_serie": 65026, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268124, + "fields": { + "id_car_serie": 65026, + "name": "1.5 AMT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268125, + "fields": { + "id_car_serie": 14637, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268126, + "fields": { + "id_car_serie": 14637, + "name": "1.2 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268127, + "fields": { + "id_car_serie": 14637, + "name": "1.2 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268128, + "fields": { + "id_car_serie": 14637, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268129, + "fields": { + "id_car_serie": 47299, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268130, + "fields": { + "id_car_serie": 47299, + "name": "1.5 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268131, + "fields": { + "id_car_serie": 47299, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268132, + "fields": { + "id_car_serie": 47299, + "name": "1.2 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268133, + "fields": { + "id_car_serie": 47299, + "name": "1.2 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268134, + "fields": { + "id_car_serie": 47299, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268135, + "fields": { + "id_car_serie": 47299, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268136, + "fields": { + "id_car_serie": 47299, + "name": "1.5 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268137, + "fields": { + "id_car_serie": 8859, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268138, + "fields": { + "id_car_serie": 8859, + "name": "1.6 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268139, + "fields": { + "id_car_serie": 8859, + "name": "1.6 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268140, + "fields": { + "id_car_serie": 8860, + "name": "1.6 MT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268141, + "fields": { + "id_car_serie": 65028, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268142, + "fields": { + "id_car_serie": 65028, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268143, + "fields": { + "id_car_serie": 65028, + "name": "1.6 MT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268144, + "fields": { + "id_car_serie": 65028, + "name": "1.6 AT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268145, + "fields": { + "id_car_serie": 65028, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268146, + "fields": { + "id_car_serie": 65028, + "name": "1.6 MT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268147, + "fields": { + "id_car_serie": 65028, + "name": "2.0 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268148, + "fields": { + "id_car_serie": 65028, + "name": "2.0 AT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268149, + "fields": { + "id_car_serie": 65028, + "name": "1.6 MT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268150, + "fields": { + "id_car_serie": 65028, + "name": "1.6 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268151, + "fields": { + "id_car_serie": 65028, + "name": "1.6 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268152, + "fields": { + "id_car_serie": 65028, + "name": "1.6 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268153, + "fields": { + "id_car_serie": 65028, + "name": "1.6 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268154, + "fields": { + "id_car_serie": 65028, + "name": "1.6 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268155, + "fields": { + "id_car_serie": 65028, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268156, + "fields": { + "id_car_serie": 65028, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268157, + "fields": { + "id_car_serie": 65028, + "name": "2.0 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268158, + "fields": { + "id_car_serie": 65028, + "name": "2.0 AT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268159, + "fields": { + "id_car_serie": 1772, + "name": "1.5 CVT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268160, + "fields": { + "id_car_serie": 1772, + "name": "1.8 CVT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268161, + "fields": { + "id_car_serie": 1772, + "name": "1.8 CVT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268162, + "fields": { + "id_car_serie": 3810, + "name": "1.5 CVT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268163, + "fields": { + "id_car_serie": 3810, + "name": "1.8 CVT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268164, + "fields": { + "id_car_serie": 3810, + "name": "1.8 CVT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268165, + "fields": { + "id_car_serie": 3809, + "name": "1.5 CVT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268166, + "fields": { + "id_car_serie": 3809, + "name": "1.8 CVT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268167, + "fields": { + "id_car_serie": 3809, + "name": "1.8 CVT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268168, + "fields": { + "id_car_serie": 47323, + "name": "0.7 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268169, + "fields": { + "id_car_serie": 47323, + "name": "0.7 AT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268170, + "fields": { + "id_car_serie": 3812, + "name": "1.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268171, + "fields": { + "id_car_serie": 3812, + "name": "1.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268172, + "fields": { + "id_car_serie": 8904, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268173, + "fields": { + "id_car_serie": 8904, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268174, + "fields": { + "id_car_serie": 8905, + "name": "1.8 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268175, + "fields": { + "id_car_serie": 8905, + "name": "1.8 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268176, + "fields": { + "id_car_serie": 3813, + "name": "1.2 CVT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268177, + "fields": { + "id_car_serie": 7120, + "name": "1.4 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268178, + "fields": { + "id_car_serie": 1787, + "name": "1.4 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268179, + "fields": { + "id_car_serie": 1787, + "name": "1.4 CVT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268180, + "fields": { + "id_car_serie": 67158, + "name": "2.0 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268181, + "fields": { + "id_car_serie": 67158, + "name": "2.0 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268182, + "fields": { + "id_car_serie": 67158, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268183, + "fields": { + "id_car_serie": 67158, + "name": "2.0 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268184, + "fields": { + "id_car_serie": 67158, + "name": "2.0 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268185, + "fields": { + "id_car_serie": 67158, + "name": "2.0 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268186, + "fields": { + "id_car_serie": 67158, + "name": "3.1 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268187, + "fields": { + "id_car_serie": 67158, + "name": "3.1 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268188, + "fields": { + "id_car_serie": 66919, + "name": "6.2 AT 4WD (702 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268189, + "fields": { + "id_car_serie": 66920, + "name": "5.7 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268190, + "fields": { + "id_car_serie": 66920, + "name": "5.7 AT 4WD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268191, + "fields": { + "id_car_serie": 67360, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268192, + "fields": { + "id_car_serie": 67360, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268193, + "fields": { + "id_car_serie": 67360, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268194, + "fields": { + "id_car_serie": 67360, + "name": "2.5 CVT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268195, + "fields": { + "id_car_serie": 67361, + "name": "2.0 CVT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268196, + "fields": { + "id_car_serie": 67361, + "name": "2.0 CVT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268197, + "fields": { + "id_car_serie": 46923, + "name": "6.8 AT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268198, + "fields": { + "id_car_serie": 67364, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268199, + "fields": { + "id_car_serie": 67364, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268200, + "fields": { + "id_car_serie": 67364, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268201, + "fields": { + "id_car_serie": 67364, + "name": "2.0 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268202, + "fields": { + "id_car_serie": 67365, + "name": "1.4 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268203, + "fields": { + "id_car_serie": 67365, + "name": "1.4 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268204, + "fields": { + "id_car_serie": 67366, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268205, + "fields": { + "id_car_serie": 67366, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268206, + "fields": { + "id_car_serie": 67366, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268207, + "fields": { + "id_car_serie": 67366, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268208, + "fields": { + "id_car_serie": 67366, + "name": "1.6 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268209, + "fields": { + "id_car_serie": 2406, + "name": "2.2 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268210, + "fields": { + "id_car_serie": 9289, + "name": "1.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268211, + "fields": { + "id_car_serie": 9289, + "name": "1.4 AMT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268212, + "fields": { + "id_car_serie": 4391, + "name": "2.3 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268213, + "fields": { + "id_car_serie": 4391, + "name": "2.3 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268214, + "fields": { + "id_car_serie": 4391, + "name": "2.3 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268215, + "fields": { + "id_car_serie": 4391, + "name": "2.3 MT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268216, + "fields": { + "id_car_serie": 10733, + "name": "3.0 MT 4WD (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268217, + "fields": { + "id_car_serie": 15158, + "name": "2.5 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268218, + "fields": { + "id_car_serie": 15158, + "name": "2.5 MT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268219, + "fields": { + "id_car_serie": 45222, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268220, + "fields": { + "id_car_serie": 45222, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268221, + "fields": { + "id_car_serie": 46995, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268222, + "fields": { + "id_car_serie": 46995, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268223, + "fields": { + "id_car_serie": 46995, + "name": "2.5 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268224, + "fields": { + "id_car_serie": 46995, + "name": "2.0 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268225, + "fields": { + "id_car_serie": 46995, + "name": "2.0 AT 4WD (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268226, + "fields": { + "id_car_serie": 45472, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268227, + "fields": { + "id_car_serie": 45472, + "name": "2.5 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268228, + "fields": { + "id_car_serie": 45472, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268229, + "fields": { + "id_car_serie": 45472, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268230, + "fields": { + "id_car_serie": 45472, + "name": "2.4 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268231, + "fields": { + "id_car_serie": 46448, + "name": "3.8 MT (770 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268232, + "fields": { + "id_car_serie": 46448, + "name": "3.8 AMT (770 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268233, + "fields": { + "id_car_serie": 66836, + "name": "0.6 AMT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268234, + "fields": { + "id_car_serie": 4173, + "name": "4.2 MT (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268235, + "fields": { + "id_car_serie": 4173, + "name": "4.2 AT (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268236, + "fields": { + "id_car_serie": 67160, + "name": "2.0 MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268237, + "fields": { + "id_car_serie": 67160, + "name": "2.0 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268238, + "fields": { + "id_car_serie": 67160, + "name": "2.0 MT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268239, + "fields": { + "id_car_serie": 67160, + "name": "2.0 AT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268240, + "fields": { + "id_car_serie": 67160, + "name": "2.2 MT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268241, + "fields": { + "id_car_serie": 67160, + "name": "2.2 AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268242, + "fields": { + "id_car_serie": 67160, + "name": "2.2 MT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268243, + "fields": { + "id_car_serie": 67160, + "name": "2.2 AT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268244, + "fields": { + "id_car_serie": 67367, + "name": "2.0 MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268245, + "fields": { + "id_car_serie": 67367, + "name": "2.0 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268246, + "fields": { + "id_car_serie": 67367, + "name": "2.0 AT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268247, + "fields": { + "id_car_serie": 67367, + "name": "2.2 MT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268248, + "fields": { + "id_car_serie": 67367, + "name": "2.2 AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268249, + "fields": { + "id_car_serie": 67367, + "name": "2.2 MT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268250, + "fields": { + "id_car_serie": 67367, + "name": "2.2 AT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268251, + "fields": { + "id_car_serie": 46931, + "name": "2.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268252, + "fields": { + "id_car_serie": 4184, + "name": "2.7 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268253, + "fields": { + "id_car_serie": 4184, + "name": "2.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268254, + "fields": { + "id_car_serie": 4184, + "name": "2.0 MT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268255, + "fields": { + "id_car_serie": 4184, + "name": "2.7 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268256, + "fields": { + "id_car_serie": 4184, + "name": "3.2 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268257, + "fields": { + "id_car_serie": 4184, + "name": "3.2 MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268267, + "fields": { + "id_car_serie": 67167, + "name": "3.0 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268268, + "fields": { + "id_car_serie": 67168, + "name": "3.0 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268269, + "fields": { + "id_car_serie": 10750, + "name": "0.8 AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268272, + "fields": { + "id_car_serie": 54053, + "name": "AT (271 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268273, + "fields": { + "id_car_serie": 54053, + "name": "AT 4WD (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268274, + "fields": { + "id_car_serie": 54053, + "name": "AT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268275, + "fields": { + "id_car_serie": 46162, + "name": "AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268276, + "fields": { + "id_car_serie": 46162, + "name": "AT 4WD (518 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268277, + "fields": { + "id_car_serie": 46162, + "name": "AT 4WD (562 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268278, + "fields": { + "id_car_serie": 46162, + "name": "AT 4WD (714 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268279, + "fields": { + "id_car_serie": 46162, + "name": "AT 4WD (762 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268280, + "fields": { + "id_car_serie": 46162, + "name": "AT 4WD (795 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268281, + "fields": { + "id_car_serie": 67131, + "name": "AT 4WD (670 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268282, + "fields": { + "id_car_serie": 67131, + "name": "AT 4WD (1020 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268283, + "fields": { + "id_car_serie": 63837, + "name": "1.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268284, + "fields": { + "id_car_serie": 63838, + "name": "1.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268285, + "fields": { + "id_car_serie": 62722, + "name": "2.0 AT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268286, + "fields": { + "id_car_serie": 67043, + "name": "AT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268287, + "fields": { + "id_car_serie": 66963, + "name": "AT 4WD (503 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268288, + "fields": { + "id_car_serie": 66964, + "name": "AT 4WD (503 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268289, + "fields": { + "id_car_serie": 66838, + "name": "AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268290, + "fields": { + "id_car_serie": 66838, + "name": "AT 4WD (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268291, + "fields": { + "id_car_serie": 67368, + "name": "AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268292, + "fields": { + "id_car_serie": 67368, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268293, + "fields": { + "id_car_serie": 67368, + "name": "AT 4WD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268294, + "fields": { + "id_car_serie": 67369, + "name": "AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268295, + "fields": { + "id_car_serie": 67369, + "name": "AT 4WD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268296, + "fields": { + "id_car_serie": 66965, + "name": "2.0 AMT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268297, + "fields": { + "id_car_serie": 66965, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268298, + "fields": { + "id_car_serie": 67044, + "name": "AT 4WD (646 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268299, + "fields": { + "id_car_serie": 66839, + "name": "2.0 AMT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268300, + "fields": { + "id_car_serie": 66840, + "name": "2.0 AMT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268301, + "fields": { + "id_car_serie": 67370, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268302, + "fields": { + "id_car_serie": 67370, + "name": "3.0 AT 4WD (387 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268303, + "fields": { + "id_car_serie": 63727, + "name": "2.0 AT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268304, + "fields": { + "id_car_serie": 63874, + "name": "2.0 AT 4WD (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268305, + "fields": { + "id_car_serie": 67371, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268306, + "fields": { + "id_car_serie": 67371, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268307, + "fields": { + "id_car_serie": 67371, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268308, + "fields": { + "id_car_serie": 67371, + "name": "3.0 AT 4WD (374 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268309, + "fields": { + "id_car_serie": 63881, + "name": "2.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268310, + "fields": { + "id_car_serie": 63881, + "name": "2.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268311, + "fields": { + "id_car_serie": 63881, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268312, + "fields": { + "id_car_serie": 63881, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268313, + "fields": { + "id_car_serie": 67372, + "name": "2.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268314, + "fields": { + "id_car_serie": 67372, + "name": "2.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268315, + "fields": { + "id_car_serie": 67372, + "name": "3.0 AT 4WD (387 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268316, + "fields": { + "id_car_serie": 67372, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268317, + "fields": { + "id_car_serie": 67372, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268318, + "fields": { + "id_car_serie": 67372, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268319, + "fields": { + "id_car_serie": 67372, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268320, + "fields": { + "id_car_serie": 67372, + "name": "2.0 AT 4WD (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268321, + "fields": { + "id_car_serie": 67373, + "name": "2.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268322, + "fields": { + "id_car_serie": 67373, + "name": "2.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268323, + "fields": { + "id_car_serie": 67373, + "name": "3.0 AT 4WD (387 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268324, + "fields": { + "id_car_serie": 67373, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268325, + "fields": { + "id_car_serie": 67373, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268326, + "fields": { + "id_car_serie": 67373, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268327, + "fields": { + "id_car_serie": 67373, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268328, + "fields": { + "id_car_serie": 67374, + "name": "AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268329, + "fields": { + "id_car_serie": 67374, + "name": "AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268330, + "fields": { + "id_car_serie": 67375, + "name": "AT 4WD (523 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268331, + "fields": { + "id_car_serie": 67375, + "name": "AT 4WD (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268332, + "fields": { + "id_car_serie": 66906, + "name": "AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268333, + "fields": { + "id_car_serie": 67376, + "name": "3.0 AT 4WD (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268334, + "fields": { + "id_car_serie": 63888, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268335, + "fields": { + "id_car_serie": 63888, + "name": "1.5 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268336, + "fields": { + "id_car_serie": 63888, + "name": "2.0 AMT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268337, + "fields": { + "id_car_serie": 63888, + "name": "2.0 AT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268338, + "fields": { + "id_car_serie": 67377, + "name": "3.0 AT 4WD (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268339, + "fields": { + "id_car_serie": 67378, + "name": "3.0 AT 4WD (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268340, + "fields": { + "id_car_serie": 67379, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268341, + "fields": { + "id_car_serie": 67379, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268342, + "fields": { + "id_car_serie": 67379, + "name": "2.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268343, + "fields": { + "id_car_serie": 67101, + "name": "4.3 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268344, + "fields": { + "id_car_serie": 67101, + "name": "5.3 AT 4WD (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268345, + "fields": { + "id_car_serie": 67380, + "name": "3.6 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268346, + "fields": { + "id_car_serie": 67381, + "name": "3.0 AT (282 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268347, + "fields": { + "id_car_serie": 67381, + "name": "3.0 AT 4WD (282 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268348, + "fields": { + "id_car_serie": 67381, + "name": "5.3 AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268349, + "fields": { + "id_car_serie": 67381, + "name": "5.3 AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268350, + "fields": { + "id_car_serie": 67381, + "name": "6.2 AT (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268351, + "fields": { + "id_car_serie": 67381, + "name": "6.2 AT 4WD (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268352, + "fields": { + "id_car_serie": 5798, + "name": "AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268353, + "fields": { + "id_car_serie": 14770, + "name": "AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268354, + "fields": { + "id_car_serie": 14770, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268355, + "fields": { + "id_car_serie": 14770, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268356, + "fields": { + "id_car_serie": 14770, + "name": "1.6 AMT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268357, + "fields": { + "id_car_serie": 45689, + "name": "AT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268358, + "fields": { + "id_car_serie": 45689, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268359, + "fields": { + "id_car_serie": 45689, + "name": "1.6 AMT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268360, + "fields": { + "id_car_serie": 45689, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268361, + "fields": { + "id_car_serie": 45689, + "name": "1.6 AMT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268362, + "fields": { + "id_car_serie": 45689, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268363, + "fields": { + "id_car_serie": 47962, + "name": "AT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268364, + "fields": { + "id_car_serie": 47962, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268365, + "fields": { + "id_car_serie": 47962, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268366, + "fields": { + "id_car_serie": 51395, + "name": "AT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268367, + "fields": { + "id_car_serie": 67382, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268368, + "fields": { + "id_car_serie": 67382, + "name": "1.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268369, + "fields": { + "id_car_serie": 67382, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268370, + "fields": { + "id_car_serie": 67382, + "name": "1.2 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268371, + "fields": { + "id_car_serie": 67382, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268372, + "fields": { + "id_car_serie": 67382, + "name": "1.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268373, + "fields": { + "id_car_serie": 465, + "name": "1.2 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268374, + "fields": { + "id_car_serie": 465, + "name": "1.6 AMT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268375, + "fields": { + "id_car_serie": 63038, + "name": "AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268376, + "fields": { + "id_car_serie": 45392, + "name": "2.0 CVT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268377, + "fields": { + "id_car_serie": 67383, + "name": "3.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268378, + "fields": { + "id_car_serie": 67186, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268379, + "fields": { + "id_car_serie": 67186, + "name": "2.0 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268380, + "fields": { + "id_car_serie": 67189, + "name": "AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268381, + "fields": { + "id_car_serie": 67189, + "name": "AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268382, + "fields": { + "id_car_serie": 67189, + "name": "AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268383, + "fields": { + "id_car_serie": 67189, + "name": "AT 4WD (337 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268384, + "fields": { + "id_car_serie": 67189, + "name": "AT 4WD (465 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268385, + "fields": { + "id_car_serie": 67384, + "name": "1.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268386, + "fields": { + "id_car_serie": 67384, + "name": "1.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268387, + "fields": { + "id_car_serie": 67384, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268388, + "fields": { + "id_car_serie": 67384, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268389, + "fields": { + "id_car_serie": 67385, + "name": "6.4 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268390, + "fields": { + "id_car_serie": 67385, + "name": "7.0 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268391, + "fields": { + "id_car_serie": 67385, + "name": "7.0 AT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268392, + "fields": { + "id_car_serie": 67386, + "name": "6.4 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268393, + "fields": { + "id_car_serie": 67386, + "name": "7.0 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268394, + "fields": { + "id_car_serie": 67386, + "name": "7.0 AT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268395, + "fields": { + "id_car_serie": 67387, + "name": "1.5 AMT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268396, + "fields": { + "id_car_serie": 67388, + "name": "1.5 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268397, + "fields": { + "id_car_serie": 67388, + "name": "1.5 AMT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268398, + "fields": { + "id_car_serie": 67388, + "name": "1.5 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268399, + "fields": { + "id_car_serie": 6301, + "name": "2.0 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268400, + "fields": { + "id_car_serie": 6301, + "name": "2.0 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268401, + "fields": { + "id_car_serie": 6301, + "name": "2.0 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268402, + "fields": { + "id_car_serie": 6301, + "name": "2.0 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268403, + "fields": { + "id_car_serie": 67389, + "name": "1.5 CVT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268404, + "fields": { + "id_car_serie": 67389, + "name": "2.0 CVT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268405, + "fields": { + "id_car_serie": 63077, + "name": "AT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268406, + "fields": { + "id_car_serie": 63077, + "name": "1.5 AT (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268407, + "fields": { + "id_car_serie": 66987, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268408, + "fields": { + "id_car_serie": 66987, + "name": "AT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268409, + "fields": { + "id_car_serie": 67390, + "name": "2.0 CVT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268410, + "fields": { + "id_car_serie": 67390, + "name": "2.4 CVT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268411, + "fields": { + "id_car_serie": 67390, + "name": "2.4 CVT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268412, + "fields": { + "id_car_serie": 67391, + "name": "2.0 CVT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268413, + "fields": { + "id_car_serie": 67391, + "name": "2.4 CVT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268414, + "fields": { + "id_car_serie": 67391, + "name": "2.4 CVT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268415, + "fields": { + "id_car_serie": 67391, + "name": "2.4 CVT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268416, + "fields": { + "id_car_serie": 67391, + "name": "2.4 CVT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268417, + "fields": { + "id_car_serie": 67392, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268418, + "fields": { + "id_car_serie": 67393, + "name": "3.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268419, + "fields": { + "id_car_serie": 67394, + "name": "1.5 CVT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268420, + "fields": { + "id_car_serie": 67394, + "name": "1.5 CVT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268421, + "fields": { + "id_car_serie": 67394, + "name": "1.5 CVT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268422, + "fields": { + "id_car_serie": 67394, + "name": "1.5 CVT 4WD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268423, + "fields": { + "id_car_serie": 63801, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268424, + "fields": { + "id_car_serie": 67395, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268425, + "fields": { + "id_car_serie": 67395, + "name": "1.0 AMT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268426, + "fields": { + "id_car_serie": 67395, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268427, + "fields": { + "id_car_serie": 67395, + "name": "1.0 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268428, + "fields": { + "id_car_serie": 67395, + "name": "1.2 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268429, + "fields": { + "id_car_serie": 67395, + "name": "1.2 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268430, + "fields": { + "id_car_serie": 67396, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268431, + "fields": { + "id_car_serie": 67396, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268432, + "fields": { + "id_car_serie": 67396, + "name": "1.6 MT 4WD (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268433, + "fields": { + "id_car_serie": 67396, + "name": "2.0 AT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268434, + "fields": { + "id_car_serie": 67396, + "name": "1.6 AT 4WD (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268435, + "fields": { + "id_car_serie": 67396, + "name": "2.0 AT 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268436, + "fields": { + "id_car_serie": 66849, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268437, + "fields": { + "id_car_serie": 66849, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268438, + "fields": { + "id_car_serie": 66849, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268439, + "fields": { + "id_car_serie": 66849, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268440, + "fields": { + "id_car_serie": 66849, + "name": "2.5 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268441, + "fields": { + "id_car_serie": 66849, + "name": "2.0 AT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268442, + "fields": { + "id_car_serie": 66991, + "name": "AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268443, + "fields": { + "id_car_serie": 66991, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268444, + "fields": { + "id_car_serie": 66991, + "name": "1.6 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268445, + "fields": { + "id_car_serie": 66991, + "name": "1.6 AMT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268446, + "fields": { + "id_car_serie": 67203, + "name": "AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268447, + "fields": { + "id_car_serie": 67203, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268448, + "fields": { + "id_car_serie": 67203, + "name": "AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268449, + "fields": { + "id_car_serie": 67203, + "name": "AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268450, + "fields": { + "id_car_serie": 67397, + "name": "2.2 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268451, + "fields": { + "id_car_serie": 67397, + "name": "2.2 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268452, + "fields": { + "id_car_serie": 67397, + "name": "2.2 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268453, + "fields": { + "id_car_serie": 67397, + "name": "3.5 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268454, + "fields": { + "id_car_serie": 63124, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268455, + "fields": { + "id_car_serie": 67205, + "name": "AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268456, + "fields": { + "id_car_serie": 67205, + "name": "AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268457, + "fields": { + "id_car_serie": 67205, + "name": "AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268458, + "fields": { + "id_car_serie": 67205, + "name": "AT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268459, + "fields": { + "id_car_serie": 67205, + "name": "AT 4WD (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268460, + "fields": { + "id_car_serie": 67209, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268461, + "fields": { + "id_car_serie": 67209, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268462, + "fields": { + "id_car_serie": 67209, + "name": "1.6 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268463, + "fields": { + "id_car_serie": 67211, + "name": "AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268464, + "fields": { + "id_car_serie": 67398, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268465, + "fields": { + "id_car_serie": 67398, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268466, + "fields": { + "id_car_serie": 66850, + "name": "AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268467, + "fields": { + "id_car_serie": 14844, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268468, + "fields": { + "id_car_serie": 67399, + "name": "3.5 AT (316 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268469, + "fields": { + "id_car_serie": 67399, + "name": "3.4 AT 4WD (422 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268470, + "fields": { + "id_car_serie": 67399, + "name": "3.4 AT 4WD (416 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268471, + "fields": { + "id_car_serie": 67399, + "name": "3.5 AT 4WD (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268472, + "fields": { + "id_car_serie": 67217, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268473, + "fields": { + "id_car_serie": 48489, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268474, + "fields": { + "id_car_serie": 48489, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268475, + "fields": { + "id_car_serie": 48489, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268476, + "fields": { + "id_car_serie": 48489, + "name": "1.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268477, + "fields": { + "id_car_serie": 48489, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268478, + "fields": { + "id_car_serie": 48489, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268479, + "fields": { + "id_car_serie": 48488, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268480, + "fields": { + "id_car_serie": 48488, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268481, + "fields": { + "id_car_serie": 48488, + "name": "1.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268482, + "fields": { + "id_car_serie": 48488, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268483, + "fields": { + "id_car_serie": 48488, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268484, + "fields": { + "id_car_serie": 48488, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268485, + "fields": { + "id_car_serie": 67400, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268486, + "fields": { + "id_car_serie": 67400, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268487, + "fields": { + "id_car_serie": 67400, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268488, + "fields": { + "id_car_serie": 67400, + "name": "1.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268489, + "fields": { + "id_car_serie": 67400, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268490, + "fields": { + "id_car_serie": 67400, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268491, + "fields": { + "id_car_serie": 67401, + "name": "1.3 MT (127 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268492, + "fields": { + "id_car_serie": 67401, + "name": "1.8 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268493, + "fields": { + "id_car_serie": 67401, + "name": "1.8 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268494, + "fields": { + "id_car_serie": 67401, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268495, + "fields": { + "id_car_serie": 67401, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268496, + "fields": { + "id_car_serie": 67401, + "name": "2.2 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268497, + "fields": { + "id_car_serie": 64164, + "name": "AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268498, + "fields": { + "id_car_serie": 64164, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268499, + "fields": { + "id_car_serie": 64164, + "name": "2.0 AT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268500, + "fields": { + "id_car_serie": 14820, + "name": "AT (179 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268501, + "fields": { + "id_car_serie": 6906, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268502, + "fields": { + "id_car_serie": 45161, + "name": "1.8 AMT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268503, + "fields": { + "id_car_serie": 45161, + "name": "1.8 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268504, + "fields": { + "id_car_serie": 45161, + "name": "1.8 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268505, + "fields": { + "id_car_serie": 45161, + "name": "1.8 AMT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268506, + "fields": { + "id_car_serie": 45161, + "name": "2.0 AMT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268507, + "fields": { + "id_car_serie": 45161, + "name": "2.0 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268508, + "fields": { + "id_car_serie": 45161, + "name": "2.6 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268509, + "fields": { + "id_car_serie": 45161, + "name": "2.2 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268510, + "fields": { + "id_car_serie": 45161, + "name": "2.2 AMT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268511, + "fields": { + "id_car_serie": 45161, + "name": "2.7 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268512, + "fields": { + "id_car_serie": 6915, + "name": "1.8 AMT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268513, + "fields": { + "id_car_serie": 6915, + "name": "1.8 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268514, + "fields": { + "id_car_serie": 6915, + "name": "1.8 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268515, + "fields": { + "id_car_serie": 6915, + "name": "1.8 AMT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268516, + "fields": { + "id_car_serie": 6915, + "name": "2.0 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268517, + "fields": { + "id_car_serie": 6915, + "name": "2.6 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268518, + "fields": { + "id_car_serie": 6915, + "name": "2.2 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268519, + "fields": { + "id_car_serie": 6915, + "name": "2.2 AMT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268520, + "fields": { + "id_car_serie": 6915, + "name": "2.7 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268521, + "fields": { + "id_car_serie": 3702, + "name": "1.8 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268522, + "fields": { + "id_car_serie": 3702, + "name": "1.8 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268523, + "fields": { + "id_car_serie": 3703, + "name": "1.8 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268524, + "fields": { + "id_car_serie": 3703, + "name": "1.8 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268525, + "fields": { + "id_car_serie": 6920, + "name": "2.0 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268526, + "fields": { + "id_car_serie": 6920, + "name": "2.0 AMT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268527, + "fields": { + "id_car_serie": 6920, + "name": "2.3 AMT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268528, + "fields": { + "id_car_serie": 6921, + "name": "2.0 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268529, + "fields": { + "id_car_serie": 6921, + "name": "2.0 AMT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268530, + "fields": { + "id_car_serie": 6921, + "name": "2.3 AMT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268531, + "fields": { + "id_car_serie": 67402, + "name": "2.9 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268532, + "fields": { + "id_car_serie": 67402, + "name": "2.0 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268533, + "fields": { + "id_car_serie": 67402, + "name": "2.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268534, + "fields": { + "id_car_serie": 67402, + "name": "2.9 AT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268535, + "fields": { + "id_car_serie": 67402, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268536, + "fields": { + "id_car_serie": 64166, + "name": "2.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268537, + "fields": { + "id_car_serie": 64166, + "name": "2.9 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268538, + "fields": { + "id_car_serie": 8817, + "name": "3.5 AT (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268539, + "fields": { + "id_car_serie": 8818, + "name": "1.8 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268540, + "fields": { + "id_car_serie": 8818, + "name": "2.6 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268541, + "fields": { + "id_car_serie": 8818, + "name": "2.2 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268542, + "fields": { + "id_car_serie": 8818, + "name": "2.7 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268543, + "fields": { + "id_car_serie": 8819, + "name": "1.8 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268544, + "fields": { + "id_car_serie": 8819, + "name": "2.6 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268545, + "fields": { + "id_car_serie": 8819, + "name": "2.2 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268546, + "fields": { + "id_car_serie": 8819, + "name": "2.2 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268547, + "fields": { + "id_car_serie": 8819, + "name": "2.7 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268548, + "fields": { + "id_car_serie": 66855, + "name": "4.0 AT 4WD (503 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268549, + "fields": { + "id_car_serie": 47496, + "name": "2.2 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268550, + "fields": { + "id_car_serie": 47496, + "name": "2.2 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268551, + "fields": { + "id_car_serie": 67403, + "name": "3.0 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268552, + "fields": { + "id_car_serie": 67242, + "name": "AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268553, + "fields": { + "id_car_serie": 67242, + "name": "AT 4WD (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268554, + "fields": { + "id_car_serie": 67242, + "name": "AT 4WD (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268555, + "fields": { + "id_car_serie": 67404, + "name": "AT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268556, + "fields": { + "id_car_serie": 67404, + "name": "AT 4WD (524 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268557, + "fields": { + "id_car_serie": 67243, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268558, + "fields": { + "id_car_serie": 67405, + "name": "4.0 AT 4WD (503 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268559, + "fields": { + "id_car_serie": 6941, + "name": "3.7 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268560, + "fields": { + "id_car_serie": 64215, + "name": "1.8 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268561, + "fields": { + "id_car_serie": 10809, + "name": "AT (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268562, + "fields": { + "id_car_serie": 10809, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268563, + "fields": { + "id_car_serie": 10809, + "name": "0.7 AT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268564, + "fields": { + "id_car_serie": 10809, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268565, + "fields": { + "id_car_serie": 67072, + "name": "AT (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268566, + "fields": { + "id_car_serie": 67072, + "name": "0.7 AT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268567, + "fields": { + "id_car_serie": 67072, + "name": "0.7 MT 4WD (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268569, + "fields": { + "id_car_serie": 67406, + "name": "2.0 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268570, + "fields": { + "id_car_serie": 67406, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268571, + "fields": { + "id_car_serie": 67406, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268572, + "fields": { + "id_car_serie": 67406, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268573, + "fields": { + "id_car_serie": 67406, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268574, + "fields": { + "id_car_serie": 67406, + "name": "2.0 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268575, + "fields": { + "id_car_serie": 67406, + "name": "2.5 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268576, + "fields": { + "id_car_serie": 67406, + "name": "2.5 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268577, + "fields": { + "id_car_serie": 67406, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268578, + "fields": { + "id_car_serie": 67406, + "name": "2.2 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268579, + "fields": { + "id_car_serie": 64291, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268580, + "fields": { + "id_car_serie": 64291, + "name": "AT (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268581, + "fields": { + "id_car_serie": 64291, + "name": "AT 4WD (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268582, + "fields": { + "id_car_serie": 64291, + "name": "AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268583, + "fields": { + "id_car_serie": 64291, + "name": "AT 4WD (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268584, + "fields": { + "id_car_serie": 67251, + "name": "AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268585, + "fields": { + "id_car_serie": 64305, + "name": "AT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268586, + "fields": { + "id_car_serie": 48789, + "name": "AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268587, + "fields": { + "id_car_serie": 48789, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268588, + "fields": { + "id_car_serie": 48789, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268589, + "fields": { + "id_car_serie": 48789, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268590, + "fields": { + "id_car_serie": 48789, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268591, + "fields": { + "id_car_serie": 48789, + "name": "2.0 CVT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268592, + "fields": { + "id_car_serie": 67266, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268593, + "fields": { + "id_car_serie": 64332, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268594, + "fields": { + "id_car_serie": 64332, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268595, + "fields": { + "id_car_serie": 64332, + "name": "1.2 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268596, + "fields": { + "id_car_serie": 64332, + "name": "1.2 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268597, + "fields": { + "id_car_serie": 64332, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268598, + "fields": { + "id_car_serie": 64332, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268599, + "fields": { + "id_car_serie": 67082, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268600, + "fields": { + "id_car_serie": 67082, + "name": "1.2 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268601, + "fields": { + "id_car_serie": 67082, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268602, + "fields": { + "id_car_serie": 67082, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268603, + "fields": { + "id_car_serie": 67082, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268604, + "fields": { + "id_car_serie": 64354, + "name": "1.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268605, + "fields": { + "id_car_serie": 64354, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268606, + "fields": { + "id_car_serie": 64354, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268607, + "fields": { + "id_car_serie": 64354, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268608, + "fields": { + "id_car_serie": 64355, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268609, + "fields": { + "id_car_serie": 63730, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268610, + "fields": { + "id_car_serie": 63730, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268611, + "fields": { + "id_car_serie": 63730, + "name": "1.2 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268612, + "fields": { + "id_car_serie": 63730, + "name": "1.2 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268613, + "fields": { + "id_car_serie": 63730, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268614, + "fields": { + "id_car_serie": 63730, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268616, + "fields": { + "id_car_serie": 67276, + "name": "AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268617, + "fields": { + "id_car_serie": 67276, + "name": "1.2 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268618, + "fields": { + "id_car_serie": 67276, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268619, + "fields": { + "id_car_serie": 67276, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268620, + "fields": { + "id_car_serie": 67276, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268621, + "fields": { + "id_car_serie": 67276, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268622, + "fields": { + "id_car_serie": 49705, + "name": "1.9 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268623, + "fields": { + "id_car_serie": 49705, + "name": "2.1 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268624, + "fields": { + "id_car_serie": 49705, + "name": "2.2 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268625, + "fields": { + "id_car_serie": 64394, + "name": "AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268626, + "fields": { + "id_car_serie": 64394, + "name": "AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268627, + "fields": { + "id_car_serie": 67016, + "name": "AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268628, + "fields": { + "id_car_serie": 67016, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268629, + "fields": { + "id_car_serie": 64412, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268630, + "fields": { + "id_car_serie": 64431, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268631, + "fields": { + "id_car_serie": 67407, + "name": "0.7 CVT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268632, + "fields": { + "id_car_serie": 67407, + "name": "0.7 CVT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268633, + "fields": { + "id_car_serie": 67407, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268634, + "fields": { + "id_car_serie": 67407, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268635, + "fields": { + "id_car_serie": 67408, + "name": "1.2 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268636, + "fields": { + "id_car_serie": 67408, + "name": "1.2 CVT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268637, + "fields": { + "id_car_serie": 67408, + "name": "1.2 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268638, + "fields": { + "id_car_serie": 67408, + "name": "1.2 CVT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268639, + "fields": { + "id_car_serie": 67408, + "name": "1.2 CVT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268640, + "fields": { + "id_car_serie": 64602, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268641, + "fields": { + "id_car_serie": 67409, + "name": "2.2 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268642, + "fields": { + "id_car_serie": 67409, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268643, + "fields": { + "id_car_serie": 67409, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268644, + "fields": { + "id_car_serie": 67410, + "name": "2.2 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268645, + "fields": { + "id_car_serie": 67410, + "name": "2.2 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268646, + "fields": { + "id_car_serie": 67410, + "name": "2.2 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268647, + "fields": { + "id_car_serie": 67410, + "name": "2.2 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268648, + "fields": { + "id_car_serie": 67410, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268649, + "fields": { + "id_car_serie": 67410, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268650, + "fields": { + "id_car_serie": 64509, + "name": "1.8 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268651, + "fields": { + "id_car_serie": 64510, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268652, + "fields": { + "id_car_serie": 64515, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268653, + "fields": { + "id_car_serie": 64515, + "name": "1.8 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268654, + "fields": { + "id_car_serie": 49239, + "name": "1.8 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268655, + "fields": { + "id_car_serie": 49239, + "name": "1.8 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268656, + "fields": { + "id_car_serie": 67411, + "name": "2.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268657, + "fields": { + "id_car_serie": 67411, + "name": "2.5 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268658, + "fields": { + "id_car_serie": 67412, + "name": "2.4 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268659, + "fields": { + "id_car_serie": 67412, + "name": "2.7 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268660, + "fields": { + "id_car_serie": 67412, + "name": "2.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268661, + "fields": { + "id_car_serie": 67412, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268662, + "fields": { + "id_car_serie": 67412, + "name": "2.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268663, + "fields": { + "id_car_serie": 67412, + "name": "2.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268664, + "fields": { + "id_car_serie": 67412, + "name": "2.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268665, + "fields": { + "id_car_serie": 67412, + "name": "2.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268666, + "fields": { + "id_car_serie": 67413, + "name": "2.4 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268667, + "fields": { + "id_car_serie": 67413, + "name": "2.7 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268668, + "fields": { + "id_car_serie": 67413, + "name": "2.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268669, + "fields": { + "id_car_serie": 67413, + "name": "2.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268670, + "fields": { + "id_car_serie": 67413, + "name": "2.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268671, + "fields": { + "id_car_serie": 67413, + "name": "2.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268672, + "fields": { + "id_car_serie": 67302, + "name": "2.4 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268673, + "fields": { + "id_car_serie": 64539, + "name": "2.5 AT 4WD (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268674, + "fields": { + "id_car_serie": 67414, + "name": "3.5 AT 4WD (415 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268675, + "fields": { + "id_car_serie": 67414, + "name": "3.3 AT 4WD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268676, + "fields": { + "id_car_serie": 64570, + "name": "2.5 AT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268677, + "fields": { + "id_car_serie": 64571, + "name": "AT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268678, + "fields": { + "id_car_serie": 64571, + "name": "2.2 AT 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268679, + "fields": { + "id_car_serie": 64571, + "name": "2.2 MT 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268680, + "fields": { + "id_car_serie": 64571, + "name": "2.2 MT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268681, + "fields": { + "id_car_serie": 64571, + "name": "2.2 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268682, + "fields": { + "id_car_serie": 64578, + "name": "1.6 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268683, + "fields": { + "id_car_serie": 64586, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268684, + "fields": { + "id_car_serie": 67415, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268685, + "fields": { + "id_car_serie": 67415, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268686, + "fields": { + "id_car_serie": 64499, + "name": "2.0 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268687, + "fields": { + "id_car_serie": 63290, + "name": "AT (7 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268688, + "fields": { + "id_car_serie": 67416, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268689, + "fields": { + "id_car_serie": 67416, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268690, + "fields": { + "id_car_serie": 67416, + "name": "1.5 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268691, + "fields": { + "id_car_serie": 67416, + "name": "1.5 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268692, + "fields": { + "id_car_serie": 67416, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268693, + "fields": { + "id_car_serie": 67416, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268694, + "fields": { + "id_car_serie": 67416, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268695, + "fields": { + "id_car_serie": 67416, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268696, + "fields": { + "id_car_serie": 67416, + "name": "1.5 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268697, + "fields": { + "id_car_serie": 67416, + "name": "1.5 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268698, + "fields": { + "id_car_serie": 67417, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268699, + "fields": { + "id_car_serie": 67417, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268700, + "fields": { + "id_car_serie": 67417, + "name": "1.5 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268701, + "fields": { + "id_car_serie": 67417, + "name": "1.5 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268702, + "fields": { + "id_car_serie": 67417, + "name": "1.5 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268703, + "fields": { + "id_car_serie": 67417, + "name": "1.5 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268704, + "fields": { + "id_car_serie": 67418, + "name": "AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268705, + "fields": { + "id_car_serie": 67419, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268706, + "fields": { + "id_car_serie": 67419, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268707, + "fields": { + "id_car_serie": 67419, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268708, + "fields": { + "id_car_serie": 67419, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268709, + "fields": { + "id_car_serie": 67419, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268710, + "fields": { + "id_car_serie": 67419, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268711, + "fields": { + "id_car_serie": 67420, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268712, + "fields": { + "id_car_serie": 67420, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268713, + "fields": { + "id_car_serie": 67420, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268714, + "fields": { + "id_car_serie": 67420, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268715, + "fields": { + "id_car_serie": 67420, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268716, + "fields": { + "id_car_serie": 67420, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268717, + "fields": { + "id_car_serie": 67421, + "name": "1.8 MT (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268718, + "fields": { + "id_car_serie": 15724, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268719, + "fields": { + "id_car_serie": 15725, + "name": "2.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268720, + "fields": { + "id_car_serie": 67422, + "name": "2.0 AMT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268721, + "fields": { + "id_car_serie": 67422, + "name": "2.0 MT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268722, + "fields": { + "id_car_serie": 67422, + "name": "2.0 MT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268723, + "fields": { + "id_car_serie": 67422, + "name": "2.0 AMT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268724, + "fields": { + "id_car_serie": 64643, + "name": "2.0 MT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268725, + "fields": { + "id_car_serie": 67423, + "name": "2.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268726, + "fields": { + "id_car_serie": 67423, + "name": "3.6 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268727, + "fields": { + "id_car_serie": 64653, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268728, + "fields": { + "id_car_serie": 67026, + "name": "AT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268729, + "fields": { + "id_car_serie": 67026, + "name": "AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268730, + "fields": { + "id_car_serie": 67026, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268731, + "fields": { + "id_car_serie": 67027, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268732, + "fields": { + "id_car_serie": 64659, + "name": "AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268733, + "fields": { + "id_car_serie": 64659, + "name": "AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268734, + "fields": { + "id_car_serie": 64659, + "name": "1.0 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268735, + "fields": { + "id_car_serie": 64659, + "name": "1.0 AMT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268736, + "fields": { + "id_car_serie": 64659, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268737, + "fields": { + "id_car_serie": 64659, + "name": "1.0 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268738, + "fields": { + "id_car_serie": 64659, + "name": "1.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268739, + "fields": { + "id_car_serie": 64659, + "name": "1.0 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268740, + "fields": { + "id_car_serie": 47466, + "name": "2.5 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268741, + "fields": { + "id_car_serie": 67424, + "name": "3.5 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268742, + "fields": { + "id_car_serie": 67424, + "name": "3.5 AT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268743, + "fields": { + "id_car_serie": 5454, + "name": "4.3 AMT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268744, + "fields": { + "id_car_serie": 5453, + "name": "4.3 AMT (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268745, + "fields": { + "id_car_serie": 66891, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268746, + "fields": { + "id_car_serie": 64755, + "name": "AT (14 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268747, + "fields": { + "id_car_serie": 67425, + "name": "4.9 AT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268748, + "fields": { + "id_car_serie": 67425, + "name": "4.9 MT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268749, + "fields": { + "id_car_serie": 67425, + "name": "5.6 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268750, + "fields": { + "id_car_serie": 4912, + "name": "AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268751, + "fields": { + "id_car_serie": 4912, + "name": "CVT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268752, + "fields": { + "id_car_serie": 4912, + "name": "CVT 4WD (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268753, + "fields": { + "id_car_serie": 67090, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268754, + "fields": { + "id_car_serie": 67426, + "name": "6.2 AT 4WD (416 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268755, + "fields": { + "id_car_serie": 67426, + "name": "6.2 AT 4WD (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268756, + "fields": { + "id_car_serie": 67426, + "name": "3.0 AT (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268757, + "fields": { + "id_car_serie": 67426, + "name": "3.0 AT 4WD (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268758, + "fields": { + "id_car_serie": 64792, + "name": "6.2 AT 4WD (416 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268759, + "fields": { + "id_car_serie": 67427, + "name": "2.0 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268760, + "fields": { + "id_car_serie": 67427, + "name": "2.0 AT 4WD (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268761, + "fields": { + "id_car_serie": 63443, + "name": "3.0 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268762, + "fields": { + "id_car_serie": 63443, + "name": "3.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268763, + "fields": { + "id_car_serie": 3105, + "name": "2.8 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268764, + "fields": { + "id_car_serie": 67428, + "name": "2.0 AMT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268765, + "fields": { + "id_car_serie": 67336, + "name": "AT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268766, + "fields": { + "id_car_serie": 5891, + "name": "0.7 AT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268767, + "fields": { + "id_car_serie": 5891, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268768, + "fields": { + "id_car_serie": 64855, + "name": "2.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268769, + "fields": { + "id_car_serie": 67429, + "name": "2.8 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268770, + "fields": { + "id_car_serie": 67429, + "name": "2.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268771, + "fields": { + "id_car_serie": 67429, + "name": "3.7 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268772, + "fields": { + "id_car_serie": 67429, + "name": "3.7 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268773, + "fields": { + "id_car_serie": 67429, + "name": "4.5 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268774, + "fields": { + "id_car_serie": 67429, + "name": "4.5 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268775, + "fields": { + "id_car_serie": 67430, + "name": "6.2 AT 4WD (720 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268776, + "fields": { + "id_car_serie": 67430, + "name": "6.4 AT 4WD (481 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268777, + "fields": { + "id_car_serie": 67430, + "name": "3.6 AT (293 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268778, + "fields": { + "id_car_serie": 67430, + "name": "3.6 AT 4WD (293 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268779, + "fields": { + "id_car_serie": 67430, + "name": "3.6 AT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268780, + "fields": { + "id_car_serie": 67430, + "name": "3.6 AT 4WD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268781, + "fields": { + "id_car_serie": 67430, + "name": "5.7 AT (364 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268782, + "fields": { + "id_car_serie": 67430, + "name": "5.7 AT 4WD (364 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268783, + "fields": { + "id_car_serie": 67431, + "name": "3.9 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268784, + "fields": { + "id_car_serie": 67431, + "name": "5.2 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268785, + "fields": { + "id_car_serie": 67432, + "name": "5.2 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268786, + "fields": { + "id_car_serie": 64872, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268787, + "fields": { + "id_car_serie": 64872, + "name": "1.2 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268788, + "fields": { + "id_car_serie": 64872, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268789, + "fields": { + "id_car_serie": 64872, + "name": "1.2 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268790, + "fields": { + "id_car_serie": 64872, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268791, + "fields": { + "id_car_serie": 64872, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268792, + "fields": { + "id_car_serie": 63519, + "name": "6.5 AMT (830 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268793, + "fields": { + "id_car_serie": 64887, + "name": "6.5 AMT (830 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268794, + "fields": { + "id_car_serie": 67433, + "name": "2.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268795, + "fields": { + "id_car_serie": 67433, + "name": "2.1 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268796, + "fields": { + "id_car_serie": 67434, + "name": "2.0 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268797, + "fields": { + "id_car_serie": 67435, + "name": "2.0 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268798, + "fields": { + "id_car_serie": 67435, + "name": "2.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268799, + "fields": { + "id_car_serie": 67435, + "name": "3.3 AT 4WD (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268800, + "fields": { + "id_car_serie": 67435, + "name": "2.2 AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268801, + "fields": { + "id_car_serie": 67435, + "name": "2.2 AT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268802, + "fields": { + "id_car_serie": 66956, + "name": "1.6 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268803, + "fields": { + "id_car_serie": 66956, + "name": "1.6 AT 4WD (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268804, + "fields": { + "id_car_serie": 67436, + "name": "3.0 AT 4WD (282 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268805, + "fields": { + "id_car_serie": 67436, + "name": "5.3 AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268806, + "fields": { + "id_car_serie": 67436, + "name": "5.3 AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268807, + "fields": { + "id_car_serie": 67436, + "name": "6.2 AT (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268808, + "fields": { + "id_car_serie": 67436, + "name": "6.2 AT 4WD (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268809, + "fields": { + "id_car_serie": 67437, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268810, + "fields": { + "id_car_serie": 67438, + "name": "2.0 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268811, + "fields": { + "id_car_serie": 67438, + "name": "2.0 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268812, + "fields": { + "id_car_serie": 3519, + "name": "2.5 MT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268813, + "fields": { + "id_car_serie": 65020, + "name": "AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268814, + "fields": { + "id_car_serie": 65020, + "name": "1.0 AT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268815, + "fields": { + "id_car_serie": 65020, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268816, + "fields": { + "id_car_serie": 67358, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268817, + "fields": { + "id_car_serie": 67358, + "name": "1.5 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268818, + "fields": { + "id_car_serie": 67358, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268819, + "fields": { + "id_car_serie": 67358, + "name": "2.0 AMT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268820, + "fields": { + "id_car_serie": 67358, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268821, + "fields": { + "id_car_serie": 67358, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268822, + "fields": { + "id_car_serie": 67358, + "name": "1.5 AMT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268823, + "fields": { + "id_car_serie": 67358, + "name": "2.0 MT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268824, + "fields": { + "id_car_serie": 67358, + "name": "2.0 AMT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268825, + "fields": { + "id_car_serie": 67358, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268826, + "fields": { + "id_car_serie": 65026, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268827, + "fields": { + "id_car_serie": 65026, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268828, + "fields": { + "id_car_serie": 65026, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268829, + "fields": { + "id_car_serie": 65026, + "name": "1.5 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268830, + "fields": { + "id_car_serie": 65026, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268831, + "fields": { + "id_car_serie": 67153, + "name": "CVT 4WD (653 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268832, + "fields": { + "id_car_serie": 2040, + "name": "1.3 MT 4WD (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268833, + "fields": { + "id_car_serie": 2040, + "name": "1.2 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268834, + "fields": { + "id_car_serie": 67157, + "name": "AT (15 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268835, + "fields": { + "id_car_serie": 67157, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268836, + "fields": { + "id_car_serie": 67157, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268837, + "fields": { + "id_car_serie": 67157, + "name": "1.3 MT 4WD (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268838, + "fields": { + "id_car_serie": 67157, + "name": "1.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268839, + "fields": { + "id_car_serie": 67157, + "name": "1.4 MT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268840, + "fields": { + "id_car_serie": 45928, + "name": "3.7 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268841, + "fields": { + "id_car_serie": 67042, + "name": "AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268842, + "fields": { + "id_car_serie": 4028, + "name": "3.0 AMT 4WD (480 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268843, + "fields": { + "id_car_serie": 64369, + "name": "4.0 AT 4WD (640 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268844, + "fields": { + "id_car_serie": 67159, + "name": "AT 4WD (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268845, + "fields": { + "id_car_serie": 67159, + "name": "AT 4WD (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268846, + "fields": { + "id_car_serie": 67159, + "name": "AT 4WD (680 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268847, + "fields": { + "id_car_serie": 67159, + "name": "AT 4WD (761 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268848, + "fields": { + "id_car_serie": 63646, + "name": "AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268849, + "fields": { + "id_car_serie": 63653, + "name": "AT 4WD (1088 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268850, + "fields": { + "id_car_serie": 67439, + "name": "1.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268851, + "fields": { + "id_car_serie": 67439, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268852, + "fields": { + "id_car_serie": 67439, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268853, + "fields": { + "id_car_serie": 67439, + "name": "1.0 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268854, + "fields": { + "id_car_serie": 67439, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268855, + "fields": { + "id_car_serie": 67439, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268856, + "fields": { + "id_car_serie": 67439, + "name": "1.6 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268857, + "fields": { + "id_car_serie": 67440, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268858, + "fields": { + "id_car_serie": 67440, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268859, + "fields": { + "id_car_serie": 67440, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268860, + "fields": { + "id_car_serie": 67440, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268861, + "fields": { + "id_car_serie": 67440, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268862, + "fields": { + "id_car_serie": 67440, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268863, + "fields": { + "id_car_serie": 67440, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268864, + "fields": { + "id_car_serie": 67440, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268865, + "fields": { + "id_car_serie": 67441, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268866, + "fields": { + "id_car_serie": 67441, + "name": "1.0 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268867, + "fields": { + "id_car_serie": 67441, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268868, + "fields": { + "id_car_serie": 67441, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268869, + "fields": { + "id_car_serie": 67441, + "name": "1.0 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268870, + "fields": { + "id_car_serie": 67441, + "name": "1.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268871, + "fields": { + "id_car_serie": 67441, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268872, + "fields": { + "id_car_serie": 67441, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268873, + "fields": { + "id_car_serie": 67441, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268874, + "fields": { + "id_car_serie": 67441, + "name": "1.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268875, + "fields": { + "id_car_serie": 67441, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268876, + "fields": { + "id_car_serie": 65125, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268877, + "fields": { + "id_car_serie": 65125, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268878, + "fields": { + "id_car_serie": 65125, + "name": "2.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268879, + "fields": { + "id_car_serie": 65125, + "name": "1.4 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268880, + "fields": { + "id_car_serie": 65125, + "name": "2.0 AMT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268881, + "fields": { + "id_car_serie": 67442, + "name": "2.0 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268882, + "fields": { + "id_car_serie": 65135, + "name": "AT (1 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268883, + "fields": { + "id_car_serie": 65135, + "name": "AT 4WD (1 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268884, + "fields": { + "id_car_serie": 67130, + "name": "AT 4WD (670 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268885, + "fields": { + "id_car_serie": 67130, + "name": "AT 4WD (1020 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268886, + "fields": { + "id_car_serie": 63709, + "name": "AT 4WD (772 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268887, + "fields": { + "id_car_serie": 65136, + "name": "AT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268888, + "fields": { + "id_car_serie": 67443, + "name": "AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268889, + "fields": { + "id_car_serie": 64666, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268890, + "fields": { + "id_car_serie": 67088, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268891, + "fields": { + "id_car_serie": 67128, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268892, + "fields": { + "id_car_serie": 65169, + "name": "AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268893, + "fields": { + "id_car_serie": 67129, + "name": "AT (267 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268894, + "fields": { + "id_car_serie": 67129, + "name": "AT 4WD (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268895, + "fields": { + "id_car_serie": 65173, + "name": "6.2 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268896, + "fields": { + "id_car_serie": 67094, + "name": "CVT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268897, + "fields": { + "id_car_serie": 67444, + "name": "1.5 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268898, + "fields": { + "id_car_serie": 67444, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268899, + "fields": { + "id_car_serie": 67445, + "name": "1.5 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268900, + "fields": { + "id_car_serie": 67445, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268901, + "fields": { + "id_car_serie": 67446, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268902, + "fields": { + "id_car_serie": 67447, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268903, + "fields": { + "id_car_serie": 67447, + "name": "1.7 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268904, + "fields": { + "id_car_serie": 67448, + "name": "1.6 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268905, + "fields": { + "id_car_serie": 67448, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268906, + "fields": { + "id_car_serie": 67449, + "name": "3.0 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268907, + "fields": { + "id_car_serie": 67450, + "name": "3.0 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268910, + "fields": { + "id_car_serie": 63837, + "name": "2.0 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268911, + "fields": { + "id_car_serie": 63838, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268912, + "fields": { + "id_car_serie": 67368, + "name": "AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268913, + "fields": { + "id_car_serie": 67369, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268914, + "fields": { + "id_car_serie": 67458, + "name": "2.5 AMT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268915, + "fields": { + "id_car_serie": 67459, + "name": "2.5 AMT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268916, + "fields": { + "id_car_serie": 63869, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268917, + "fields": { + "id_car_serie": 67370, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268918, + "fields": { + "id_car_serie": 67370, + "name": "3.0 AT 4WD (374 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268919, + "fields": { + "id_car_serie": 67460, + "name": "1.5 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268920, + "fields": { + "id_car_serie": 67460, + "name": "1.5 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268921, + "fields": { + "id_car_serie": 67460, + "name": "2.0 AMT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268922, + "fields": { + "id_car_serie": 67460, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268923, + "fields": { + "id_car_serie": 67461, + "name": "AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268924, + "fields": { + "id_car_serie": 67462, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268925, + "fields": { + "id_car_serie": 67462, + "name": "2.4 MT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268926, + "fields": { + "id_car_serie": 67462, + "name": "2.4 AT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268927, + "fields": { + "id_car_serie": 67462, + "name": "2.4 MT 4WD (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268928, + "fields": { + "id_car_serie": 67462, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268929, + "fields": { + "id_car_serie": 67171, + "name": "1.3 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268930, + "fields": { + "id_car_serie": 67171, + "name": "1.3 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268931, + "fields": { + "id_car_serie": 67463, + "name": "2.8 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268932, + "fields": { + "id_car_serie": 67463, + "name": "3.6 AT 4WD (308 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268933, + "fields": { + "id_car_serie": 67464, + "name": "2.8 AT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268934, + "fields": { + "id_car_serie": 67464, + "name": "3.6 AT 4WD (308 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268935, + "fields": { + "id_car_serie": 63900, + "name": "5.5 AMT (670 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268936, + "fields": { + "id_car_serie": 63900, + "name": "6.2 AMT (482 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268937, + "fields": { + "id_car_serie": 63911, + "name": "1.5 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268938, + "fields": { + "id_car_serie": 63911, + "name": "1.5 AT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268939, + "fields": { + "id_car_serie": 63020, + "name": "1.3 CVT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268940, + "fields": { + "id_car_serie": 67465, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268941, + "fields": { + "id_car_serie": 67465, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268942, + "fields": { + "id_car_serie": 67465, + "name": "1.6 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268943, + "fields": { + "id_car_serie": 67465, + "name": "1.6 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268944, + "fields": { + "id_car_serie": 67466, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268945, + "fields": { + "id_car_serie": 67466, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268946, + "fields": { + "id_car_serie": 67173, + "name": "4.3 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268947, + "fields": { + "id_car_serie": 67173, + "name": "4.3 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268948, + "fields": { + "id_car_serie": 67382, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268949, + "fields": { + "id_car_serie": 5816, + "name": "2.0 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268950, + "fields": { + "id_car_serie": 67178, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268951, + "fields": { + "id_car_serie": 53649, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268952, + "fields": { + "id_car_serie": 67467, + "name": "1.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268953, + "fields": { + "id_car_serie": 67467, + "name": "1.0 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268954, + "fields": { + "id_car_serie": 67468, + "name": "0.8 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268955, + "fields": { + "id_car_serie": 67468, + "name": "0.8 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268956, + "fields": { + "id_car_serie": 67469, + "name": "0.8 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268957, + "fields": { + "id_car_serie": 67469, + "name": "0.8 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268958, + "fields": { + "id_car_serie": 6074, + "name": "4.9 MT 4WD (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268959, + "fields": { + "id_car_serie": 6074, + "name": "4.9 MT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268960, + "fields": { + "id_car_serie": 6074, + "name": "4.9 AT 4WD (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268961, + "fields": { + "id_car_serie": 67470, + "name": "2.7 AT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268962, + "fields": { + "id_car_serie": 67470, + "name": "3.3 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268963, + "fields": { + "id_car_serie": 67470, + "name": "3.3 AT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268964, + "fields": { + "id_car_serie": 67470, + "name": "3.5 AT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268965, + "fields": { + "id_car_serie": 67470, + "name": "3.5 AT 4WD (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268966, + "fields": { + "id_car_serie": 67470, + "name": "5.0 AT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268967, + "fields": { + "id_car_serie": 67470, + "name": "5.0 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268968, + "fields": { + "id_car_serie": 67470, + "name": "3.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268969, + "fields": { + "id_car_serie": 67471, + "name": "2.7 AT (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268970, + "fields": { + "id_car_serie": 67471, + "name": "2.7 AT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268971, + "fields": { + "id_car_serie": 67471, + "name": "3.3 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268972, + "fields": { + "id_car_serie": 67471, + "name": "3.3 AT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268973, + "fields": { + "id_car_serie": 67471, + "name": "3.5 AT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268974, + "fields": { + "id_car_serie": 67471, + "name": "3.5 AT 4WD (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268975, + "fields": { + "id_car_serie": 67471, + "name": "5.0 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268976, + "fields": { + "id_car_serie": 67471, + "name": "3.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268977, + "fields": { + "id_car_serie": 67471, + "name": "3.5 AT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268978, + "fields": { + "id_car_serie": 67472, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268979, + "fields": { + "id_car_serie": 67472, + "name": "1.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268980, + "fields": { + "id_car_serie": 67472, + "name": "1.0 AMT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268981, + "fields": { + "id_car_serie": 67472, + "name": "1.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268982, + "fields": { + "id_car_serie": 67473, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268983, + "fields": { + "id_car_serie": 67473, + "name": "1.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268984, + "fields": { + "id_car_serie": 67473, + "name": "1.0 AMT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268985, + "fields": { + "id_car_serie": 67473, + "name": "1.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268986, + "fields": { + "id_car_serie": 67474, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268987, + "fields": { + "id_car_serie": 67474, + "name": "1.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268988, + "fields": { + "id_car_serie": 67474, + "name": "1.0 AMT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268989, + "fields": { + "id_car_serie": 67474, + "name": "1.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268990, + "fields": { + "id_car_serie": 67474, + "name": "1.0 AMT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268991, + "fields": { + "id_car_serie": 67474, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268992, + "fields": { + "id_car_serie": 67474, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268993, + "fields": { + "id_car_serie": 67474, + "name": "1.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268994, + "fields": { + "id_car_serie": 67475, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268995, + "fields": { + "id_car_serie": 67475, + "name": "1.0 AMT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268996, + "fields": { + "id_car_serie": 67475, + "name": "1.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268997, + "fields": { + "id_car_serie": 67475, + "name": "1.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268998, + "fields": { + "id_car_serie": 67475, + "name": "1.0 AMT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 268999, + "fields": { + "id_car_serie": 67475, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269000, + "fields": { + "id_car_serie": 67475, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269001, + "fields": { + "id_car_serie": 67475, + "name": "1.5 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269002, + "fields": { + "id_car_serie": 67476, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269003, + "fields": { + "id_car_serie": 67476, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269004, + "fields": { + "id_car_serie": 67477, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269005, + "fields": { + "id_car_serie": 67477, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269006, + "fields": { + "id_car_serie": 67478, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269007, + "fields": { + "id_car_serie": 67478, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269008, + "fields": { + "id_car_serie": 67478, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269009, + "fields": { + "id_car_serie": 67478, + "name": "2.3 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269010, + "fields": { + "id_car_serie": 67479, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269011, + "fields": { + "id_car_serie": 67479, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269012, + "fields": { + "id_car_serie": 67479, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269013, + "fields": { + "id_car_serie": 67479, + "name": "2.3 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269014, + "fields": { + "id_car_serie": 67480, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269015, + "fields": { + "id_car_serie": 67480, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269016, + "fields": { + "id_car_serie": 67480, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269017, + "fields": { + "id_car_serie": 67480, + "name": "2.3 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269018, + "fields": { + "id_car_serie": 67481, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269019, + "fields": { + "id_car_serie": 67481, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269020, + "fields": { + "id_car_serie": 67481, + "name": "2.3 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269021, + "fields": { + "id_car_serie": 67481, + "name": "2.3 MT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269022, + "fields": { + "id_car_serie": 67481, + "name": "2.3 AT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269023, + "fields": { + "id_car_serie": 67482, + "name": "2.0 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269024, + "fields": { + "id_car_serie": 67482, + "name": "2.0 AT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269025, + "fields": { + "id_car_serie": 67482, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269026, + "fields": { + "id_car_serie": 67482, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269027, + "fields": { + "id_car_serie": 67482, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269028, + "fields": { + "id_car_serie": 67482, + "name": "2.3 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269029, + "fields": { + "id_car_serie": 67483, + "name": "2.0 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269030, + "fields": { + "id_car_serie": 67483, + "name": "2.0 AT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269031, + "fields": { + "id_car_serie": 67483, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269032, + "fields": { + "id_car_serie": 67483, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269033, + "fields": { + "id_car_serie": 67483, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269034, + "fields": { + "id_car_serie": 67483, + "name": "2.3 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269035, + "fields": { + "id_car_serie": 67484, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269036, + "fields": { + "id_car_serie": 67484, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269037, + "fields": { + "id_car_serie": 67484, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269038, + "fields": { + "id_car_serie": 67484, + "name": "2.3 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269039, + "fields": { + "id_car_serie": 67485, + "name": "2.0 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269040, + "fields": { + "id_car_serie": 67485, + "name": "2.0 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269041, + "fields": { + "id_car_serie": 67485, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269042, + "fields": { + "id_car_serie": 67485, + "name": "2.3 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269043, + "fields": { + "id_car_serie": 67486, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269044, + "fields": { + "id_car_serie": 67486, + "name": "1.3 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269045, + "fields": { + "id_car_serie": 67486, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269046, + "fields": { + "id_car_serie": 67486, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269047, + "fields": { + "id_car_serie": 67486, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269048, + "fields": { + "id_car_serie": 67486, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269049, + "fields": { + "id_car_serie": 67486, + "name": "1.6 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269050, + "fields": { + "id_car_serie": 67486, + "name": "1.6 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269051, + "fields": { + "id_car_serie": 67486, + "name": "1.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269052, + "fields": { + "id_car_serie": 67487, + "name": "1.5 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269053, + "fields": { + "id_car_serie": 67487, + "name": "1.5 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269054, + "fields": { + "id_car_serie": 67487, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269055, + "fields": { + "id_car_serie": 67487, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269056, + "fields": { + "id_car_serie": 67487, + "name": "1.6 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269057, + "fields": { + "id_car_serie": 67487, + "name": "1.6 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269058, + "fields": { + "id_car_serie": 67487, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269059, + "fields": { + "id_car_serie": 67487, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269060, + "fields": { + "id_car_serie": 67487, + "name": "1.8 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269061, + "fields": { + "id_car_serie": 67488, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269062, + "fields": { + "id_car_serie": 67488, + "name": "1.6 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269063, + "fields": { + "id_car_serie": 67488, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269064, + "fields": { + "id_car_serie": 67488, + "name": "1.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269065, + "fields": { + "id_car_serie": 67488, + "name": "1.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269066, + "fields": { + "id_car_serie": 63819, + "name": "1.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269067, + "fields": { + "id_car_serie": 63819, + "name": "1.5 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269068, + "fields": { + "id_car_serie": 67489, + "name": "3.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269069, + "fields": { + "id_car_serie": 67489, + "name": "3.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269070, + "fields": { + "id_car_serie": 67489, + "name": "4.7 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269071, + "fields": { + "id_car_serie": 67489, + "name": "4.7 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269072, + "fields": { + "id_car_serie": 67489, + "name": "4.9 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269073, + "fields": { + "id_car_serie": 67489, + "name": "5.8 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269074, + "fields": { + "id_car_serie": 67489, + "name": "5.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269075, + "fields": { + "id_car_serie": 67489, + "name": "6.4 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269076, + "fields": { + "id_car_serie": 67489, + "name": "6.4 AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269077, + "fields": { + "id_car_serie": 67489, + "name": "6.4 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269078, + "fields": { + "id_car_serie": 67489, + "name": "6.4 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269079, + "fields": { + "id_car_serie": 67489, + "name": "6.4 MT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269080, + "fields": { + "id_car_serie": 67489, + "name": "6.4 AT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269081, + "fields": { + "id_car_serie": 67489, + "name": "7.0 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269082, + "fields": { + "id_car_serie": 67489, + "name": "7.0 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269083, + "fields": { + "id_car_serie": 67490, + "name": "3.7 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269084, + "fields": { + "id_car_serie": 67490, + "name": "3.7 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269085, + "fields": { + "id_car_serie": 67490, + "name": "3.7 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269086, + "fields": { + "id_car_serie": 67490, + "name": "3.7 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269087, + "fields": { + "id_car_serie": 67490, + "name": "3.7 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269088, + "fields": { + "id_car_serie": 67490, + "name": "3.7 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269089, + "fields": { + "id_car_serie": 67490, + "name": "4.3 MT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269090, + "fields": { + "id_car_serie": 67490, + "name": "4.3 AT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269091, + "fields": { + "id_car_serie": 67490, + "name": "4.7 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269092, + "fields": { + "id_car_serie": 67490, + "name": "4.7 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269093, + "fields": { + "id_car_serie": 67490, + "name": "4.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269094, + "fields": { + "id_car_serie": 67490, + "name": "4.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269095, + "fields": { + "id_car_serie": 67490, + "name": "4.8 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269096, + "fields": { + "id_car_serie": 67490, + "name": "4.8 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269097, + "fields": { + "id_car_serie": 67490, + "name": "4.8 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269098, + "fields": { + "id_car_serie": 67490, + "name": "4.8 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269099, + "fields": { + "id_car_serie": 67490, + "name": "5.4 MT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269100, + "fields": { + "id_car_serie": 67490, + "name": "5.4 AT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269101, + "fields": { + "id_car_serie": 67490, + "name": "5.8 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269102, + "fields": { + "id_car_serie": 67490, + "name": "5.8 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269103, + "fields": { + "id_car_serie": 67490, + "name": "5.8 MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269104, + "fields": { + "id_car_serie": 67490, + "name": "5.8 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269105, + "fields": { + "id_car_serie": 67490, + "name": "5.8 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269106, + "fields": { + "id_car_serie": 67490, + "name": "5.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269107, + "fields": { + "id_car_serie": 67490, + "name": "5.8 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269108, + "fields": { + "id_car_serie": 67490, + "name": "5.8 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269109, + "fields": { + "id_car_serie": 67490, + "name": "6.4 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269110, + "fields": { + "id_car_serie": 67490, + "name": "6.4 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269111, + "fields": { + "id_car_serie": 67491, + "name": "3.7 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269112, + "fields": { + "id_car_serie": 67491, + "name": "3.7 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269113, + "fields": { + "id_car_serie": 67491, + "name": "4.8 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269114, + "fields": { + "id_car_serie": 67491, + "name": "4.8 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269115, + "fields": { + "id_car_serie": 67491, + "name": "4.8 MT (206 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269116, + "fields": { + "id_car_serie": 67491, + "name": "4.8 AT (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269117, + "fields": { + "id_car_serie": 67491, + "name": "5.1 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269118, + "fields": { + "id_car_serie": 67491, + "name": "5.1 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269119, + "fields": { + "id_car_serie": 67491, + "name": "5.1 MT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269120, + "fields": { + "id_car_serie": 67491, + "name": "5.1 AT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269121, + "fields": { + "id_car_serie": 67491, + "name": "5.4 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269122, + "fields": { + "id_car_serie": 67491, + "name": "5.4 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269123, + "fields": { + "id_car_serie": 67491, + "name": "5.4 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269124, + "fields": { + "id_car_serie": 67491, + "name": "5.4 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269125, + "fields": { + "id_car_serie": 67491, + "name": "5.4 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269126, + "fields": { + "id_car_serie": 67491, + "name": "5.8 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269127, + "fields": { + "id_car_serie": 67491, + "name": "5.8 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269128, + "fields": { + "id_car_serie": 67492, + "name": "3.7 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269129, + "fields": { + "id_car_serie": 67492, + "name": "3.7 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269130, + "fields": { + "id_car_serie": 67492, + "name": "3.7 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269131, + "fields": { + "id_car_serie": 67492, + "name": "3.7 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269132, + "fields": { + "id_car_serie": 67492, + "name": "4.5 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269133, + "fields": { + "id_car_serie": 67492, + "name": "4.5 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269134, + "fields": { + "id_car_serie": 67492, + "name": "4.5 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269135, + "fields": { + "id_car_serie": 67492, + "name": "4.8 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269136, + "fields": { + "id_car_serie": 67492, + "name": "4.8 AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269137, + "fields": { + "id_car_serie": 67492, + "name": "5.1 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269138, + "fields": { + "id_car_serie": 67493, + "name": "3.7 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269139, + "fields": { + "id_car_serie": 67493, + "name": "3.7 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269140, + "fields": { + "id_car_serie": 67493, + "name": "3.9 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269141, + "fields": { + "id_car_serie": 67493, + "name": "3.9 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269142, + "fields": { + "id_car_serie": 67493, + "name": "3.9 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269143, + "fields": { + "id_car_serie": 67493, + "name": "3.9 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269144, + "fields": { + "id_car_serie": 67494, + "name": "3.7 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269145, + "fields": { + "id_car_serie": 67494, + "name": "3.7 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269146, + "fields": { + "id_car_serie": 67494, + "name": "3.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269147, + "fields": { + "id_car_serie": 67494, + "name": "3.9 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269148, + "fields": { + "id_car_serie": 67495, + "name": "4.9 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269149, + "fields": { + "id_car_serie": 67495, + "name": "4.9 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269150, + "fields": { + "id_car_serie": 67495, + "name": "4.9 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269151, + "fields": { + "id_car_serie": 67495, + "name": "4.9 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269152, + "fields": { + "id_car_serie": 67495, + "name": "4.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269153, + "fields": { + "id_car_serie": 67495, + "name": "4.9 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269154, + "fields": { + "id_car_serie": 67495, + "name": "4.9 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269155, + "fields": { + "id_car_serie": 67495, + "name": "5.8 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269156, + "fields": { + "id_car_serie": 67495, + "name": "5.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269157, + "fields": { + "id_car_serie": 67495, + "name": "5.8 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269158, + "fields": { + "id_car_serie": 67495, + "name": "5.8 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269159, + "fields": { + "id_car_serie": 67496, + "name": "4.9 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269160, + "fields": { + "id_car_serie": 67496, + "name": "4.9 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269161, + "fields": { + "id_car_serie": 67496, + "name": "5.8 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269162, + "fields": { + "id_car_serie": 67496, + "name": "5.8 AT (153 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269163, + "fields": { + "id_car_serie": 67496, + "name": "5.8 MT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269164, + "fields": { + "id_car_serie": 67496, + "name": "5.8 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269165, + "fields": { + "id_car_serie": 67496, + "name": "5.8 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269166, + "fields": { + "id_car_serie": 67496, + "name": "5.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269167, + "fields": { + "id_car_serie": 67496, + "name": "6.4 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269168, + "fields": { + "id_car_serie": 67496, + "name": "6.4 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269169, + "fields": { + "id_car_serie": 67496, + "name": "6.4 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269170, + "fields": { + "id_car_serie": 67496, + "name": "6.4 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269171, + "fields": { + "id_car_serie": 67496, + "name": "6.6 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269172, + "fields": { + "id_car_serie": 67496, + "name": "6.6 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269173, + "fields": { + "id_car_serie": 67496, + "name": "6.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269174, + "fields": { + "id_car_serie": 67496, + "name": "6.6 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269175, + "fields": { + "id_car_serie": 67496, + "name": "6.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269176, + "fields": { + "id_car_serie": 67496, + "name": "6.6 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269177, + "fields": { + "id_car_serie": 67496, + "name": "7.0 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269178, + "fields": { + "id_car_serie": 67496, + "name": "7.0 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269179, + "fields": { + "id_car_serie": 67496, + "name": "7.0 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269180, + "fields": { + "id_car_serie": 67496, + "name": "7.0 AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269181, + "fields": { + "id_car_serie": 67496, + "name": "7.5 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269182, + "fields": { + "id_car_serie": 67496, + "name": "7.5 AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269183, + "fields": { + "id_car_serie": 67496, + "name": "7.5 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269184, + "fields": { + "id_car_serie": 65186, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269185, + "fields": { + "id_car_serie": 65186, + "name": "1.0 AMT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269186, + "fields": { + "id_car_serie": 65186, + "name": "1.0 AMT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269187, + "fields": { + "id_car_serie": 65186, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269188, + "fields": { + "id_car_serie": 67497, + "name": "1.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269189, + "fields": { + "id_car_serie": 67498, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269190, + "fields": { + "id_car_serie": 45892, + "name": "4.1 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269191, + "fields": { + "id_car_serie": 45892, + "name": "4.1 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269192, + "fields": { + "id_car_serie": 45892, + "name": "4.9 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269193, + "fields": { + "id_car_serie": 45892, + "name": "4.9 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269194, + "fields": { + "id_car_serie": 45892, + "name": "4.9 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269195, + "fields": { + "id_car_serie": 45892, + "name": "4.9 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269196, + "fields": { + "id_car_serie": 45892, + "name": "5.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269197, + "fields": { + "id_car_serie": 45892, + "name": "5.8 AT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269198, + "fields": { + "id_car_serie": 45892, + "name": "5.8 AT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269199, + "fields": { + "id_car_serie": 45892, + "name": "5.8 MT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269200, + "fields": { + "id_car_serie": 45892, + "name": "5.8 AT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269201, + "fields": { + "id_car_serie": 45892, + "name": "5.8 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269202, + "fields": { + "id_car_serie": 45892, + "name": "5.8 AT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269203, + "fields": { + "id_car_serie": 45892, + "name": "6.6 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269204, + "fields": { + "id_car_serie": 45892, + "name": "6.6 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269205, + "fields": { + "id_car_serie": 45892, + "name": "6.6 AT (168 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269206, + "fields": { + "id_car_serie": 45892, + "name": "6.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269207, + "fields": { + "id_car_serie": 45892, + "name": "7.0 AT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269208, + "fields": { + "id_car_serie": 45892, + "name": "7.0 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269209, + "fields": { + "id_car_serie": 45892, + "name": "7.5 AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269210, + "fields": { + "id_car_serie": 45892, + "name": "7.5 AT (216 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269211, + "fields": { + "id_car_serie": 45892, + "name": "7.5 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269212, + "fields": { + "id_car_serie": 67499, + "name": "4.1 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269213, + "fields": { + "id_car_serie": 67499, + "name": "4.1 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269214, + "fields": { + "id_car_serie": 67499, + "name": "4.9 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269215, + "fields": { + "id_car_serie": 67499, + "name": "4.9 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269216, + "fields": { + "id_car_serie": 67499, + "name": "4.9 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269217, + "fields": { + "id_car_serie": 67499, + "name": "4.9 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269218, + "fields": { + "id_car_serie": 67499, + "name": "5.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269219, + "fields": { + "id_car_serie": 67499, + "name": "5.8 AT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269220, + "fields": { + "id_car_serie": 67499, + "name": "5.8 AT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269221, + "fields": { + "id_car_serie": 67499, + "name": "6.6 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269222, + "fields": { + "id_car_serie": 67499, + "name": "6.6 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269223, + "fields": { + "id_car_serie": 67499, + "name": "6.6 AT (168 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269224, + "fields": { + "id_car_serie": 67499, + "name": "6.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269225, + "fields": { + "id_car_serie": 67499, + "name": "7.0 AT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269226, + "fields": { + "id_car_serie": 67499, + "name": "7.0 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269227, + "fields": { + "id_car_serie": 67499, + "name": "7.5 AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269228, + "fields": { + "id_car_serie": 67499, + "name": "7.5 AT (216 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269229, + "fields": { + "id_car_serie": 67499, + "name": "7.5 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269230, + "fields": { + "id_car_serie": 67499, + "name": "7.5 AT (226 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269231, + "fields": { + "id_car_serie": 67499, + "name": "7.5 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269232, + "fields": { + "id_car_serie": 67499, + "name": "7.5 AT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269233, + "fields": { + "id_car_serie": 67500, + "name": "4.1 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269234, + "fields": { + "id_car_serie": 67500, + "name": "4.1 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269235, + "fields": { + "id_car_serie": 67500, + "name": "4.9 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269236, + "fields": { + "id_car_serie": 67500, + "name": "4.9 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269237, + "fields": { + "id_car_serie": 67500, + "name": "4.9 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269238, + "fields": { + "id_car_serie": 67500, + "name": "4.9 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269239, + "fields": { + "id_car_serie": 67500, + "name": "5.8 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269240, + "fields": { + "id_car_serie": 67500, + "name": "5.8 AT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269241, + "fields": { + "id_car_serie": 67500, + "name": "5.8 AT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269242, + "fields": { + "id_car_serie": 67500, + "name": "6.6 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269243, + "fields": { + "id_car_serie": 67500, + "name": "6.6 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269244, + "fields": { + "id_car_serie": 67500, + "name": "6.6 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269245, + "fields": { + "id_car_serie": 67500, + "name": "6.6 AT (168 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269246, + "fields": { + "id_car_serie": 67500, + "name": "6.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269247, + "fields": { + "id_car_serie": 67500, + "name": "7.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269248, + "fields": { + "id_car_serie": 67500, + "name": "7.0 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269249, + "fields": { + "id_car_serie": 67500, + "name": "7.5 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269250, + "fields": { + "id_car_serie": 67500, + "name": "7.5 AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269251, + "fields": { + "id_car_serie": 67500, + "name": "7.5 AT (216 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269252, + "fields": { + "id_car_serie": 67501, + "name": "4.1 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269253, + "fields": { + "id_car_serie": 67501, + "name": "4.1 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269254, + "fields": { + "id_car_serie": 67501, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269255, + "fields": { + "id_car_serie": 67501, + "name": "4.1 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269256, + "fields": { + "id_car_serie": 67501, + "name": "4.9 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269257, + "fields": { + "id_car_serie": 67501, + "name": "4.9 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269258, + "fields": { + "id_car_serie": 67501, + "name": "4.9 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269259, + "fields": { + "id_car_serie": 67501, + "name": "4.9 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269260, + "fields": { + "id_car_serie": 67501, + "name": "5.8 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269261, + "fields": { + "id_car_serie": 67501, + "name": "5.8 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269262, + "fields": { + "id_car_serie": 67501, + "name": "5.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269263, + "fields": { + "id_car_serie": 67501, + "name": "5.8 MT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269264, + "fields": { + "id_car_serie": 67501, + "name": "5.8 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269265, + "fields": { + "id_car_serie": 67501, + "name": "5.8 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269266, + "fields": { + "id_car_serie": 67501, + "name": "5.8 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269267, + "fields": { + "id_car_serie": 67501, + "name": "7.0 MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269268, + "fields": { + "id_car_serie": 67501, + "name": "7.0 AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269269, + "fields": { + "id_car_serie": 67501, + "name": "7.0 MT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269270, + "fields": { + "id_car_serie": 67501, + "name": "7.0 AT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269271, + "fields": { + "id_car_serie": 67502, + "name": "4.1 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269272, + "fields": { + "id_car_serie": 67502, + "name": "4.1 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269273, + "fields": { + "id_car_serie": 67502, + "name": "4.1 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269274, + "fields": { + "id_car_serie": 67502, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269275, + "fields": { + "id_car_serie": 67502, + "name": "4.9 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269276, + "fields": { + "id_car_serie": 67502, + "name": "4.9 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269277, + "fields": { + "id_car_serie": 67502, + "name": "4.9 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269278, + "fields": { + "id_car_serie": 67502, + "name": "4.9 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269279, + "fields": { + "id_car_serie": 67502, + "name": "5.8 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269280, + "fields": { + "id_car_serie": 67502, + "name": "5.8 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269281, + "fields": { + "id_car_serie": 67502, + "name": "5.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269282, + "fields": { + "id_car_serie": 67502, + "name": "5.8 MT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269283, + "fields": { + "id_car_serie": 67502, + "name": "5.8 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269284, + "fields": { + "id_car_serie": 67502, + "name": "5.8 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269285, + "fields": { + "id_car_serie": 67502, + "name": "5.8 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269286, + "fields": { + "id_car_serie": 67502, + "name": "7.0 MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269287, + "fields": { + "id_car_serie": 67502, + "name": "7.0 AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269288, + "fields": { + "id_car_serie": 67502, + "name": "7.0 MT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269289, + "fields": { + "id_car_serie": 67502, + "name": "7.0 AT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269290, + "fields": { + "id_car_serie": 67503, + "name": "4.9 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269291, + "fields": { + "id_car_serie": 67503, + "name": "4.9 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269292, + "fields": { + "id_car_serie": 67503, + "name": "4.9 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269293, + "fields": { + "id_car_serie": 67503, + "name": "4.9 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269294, + "fields": { + "id_car_serie": 67503, + "name": "5.8 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269295, + "fields": { + "id_car_serie": 67503, + "name": "5.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269296, + "fields": { + "id_car_serie": 67503, + "name": "5.8 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269297, + "fields": { + "id_car_serie": 67503, + "name": "5.8 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269298, + "fields": { + "id_car_serie": 67503, + "name": "5.8 MT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269299, + "fields": { + "id_car_serie": 67503, + "name": "5.8 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269300, + "fields": { + "id_car_serie": 67503, + "name": "5.8 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269301, + "fields": { + "id_car_serie": 67503, + "name": "7.0 MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269302, + "fields": { + "id_car_serie": 67503, + "name": "7.0 AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269303, + "fields": { + "id_car_serie": 67503, + "name": "7.0 MT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269304, + "fields": { + "id_car_serie": 67503, + "name": "7.0 AT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269305, + "fields": { + "id_car_serie": 67504, + "name": "4.1 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269306, + "fields": { + "id_car_serie": 67504, + "name": "4.1 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269307, + "fields": { + "id_car_serie": 67504, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269308, + "fields": { + "id_car_serie": 67504, + "name": "4.1 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269309, + "fields": { + "id_car_serie": 67504, + "name": "4.9 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269310, + "fields": { + "id_car_serie": 67504, + "name": "4.9 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269311, + "fields": { + "id_car_serie": 67504, + "name": "4.9 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269312, + "fields": { + "id_car_serie": 67504, + "name": "4.9 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269313, + "fields": { + "id_car_serie": 67504, + "name": "5.8 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269314, + "fields": { + "id_car_serie": 67504, + "name": "5.8 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269315, + "fields": { + "id_car_serie": 67504, + "name": "5.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269316, + "fields": { + "id_car_serie": 67504, + "name": "5.8 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269317, + "fields": { + "id_car_serie": 67504, + "name": "5.8 MT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269318, + "fields": { + "id_car_serie": 67504, + "name": "5.8 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269319, + "fields": { + "id_car_serie": 67504, + "name": "5.8 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269320, + "fields": { + "id_car_serie": 67504, + "name": "7.0 MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269321, + "fields": { + "id_car_serie": 67504, + "name": "7.0 AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269322, + "fields": { + "id_car_serie": 67504, + "name": "7.0 AT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269323, + "fields": { + "id_car_serie": 67504, + "name": "7.0 MT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269324, + "fields": { + "id_car_serie": 67505, + "name": "4.1 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269325, + "fields": { + "id_car_serie": 67505, + "name": "4.1 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269326, + "fields": { + "id_car_serie": 67505, + "name": "4.1 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269327, + "fields": { + "id_car_serie": 67505, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269328, + "fields": { + "id_car_serie": 67505, + "name": "4.9 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269329, + "fields": { + "id_car_serie": 67505, + "name": "4.9 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269330, + "fields": { + "id_car_serie": 67505, + "name": "4.9 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269331, + "fields": { + "id_car_serie": 67505, + "name": "4.9 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269332, + "fields": { + "id_car_serie": 67505, + "name": "5.8 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269333, + "fields": { + "id_car_serie": 67505, + "name": "5.8 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269334, + "fields": { + "id_car_serie": 67505, + "name": "5.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269335, + "fields": { + "id_car_serie": 67505, + "name": "5.8 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269336, + "fields": { + "id_car_serie": 67505, + "name": "5.8 MT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269337, + "fields": { + "id_car_serie": 67505, + "name": "5.8 MT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269338, + "fields": { + "id_car_serie": 67505, + "name": "5.8 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269339, + "fields": { + "id_car_serie": 67505, + "name": "7.0 AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269340, + "fields": { + "id_car_serie": 67505, + "name": "7.0 MT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269341, + "fields": { + "id_car_serie": 67505, + "name": "7.0 AT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269342, + "fields": { + "id_car_serie": 67505, + "name": "7.0 MT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269343, + "fields": { + "id_car_serie": 67505, + "name": "7.0 MT (375 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269344, + "fields": { + "id_car_serie": 67506, + "name": "3.3 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269345, + "fields": { + "id_car_serie": 67506, + "name": "3.3 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269346, + "fields": { + "id_car_serie": 67506, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269347, + "fields": { + "id_car_serie": 67506, + "name": "4.1 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269348, + "fields": { + "id_car_serie": 67506, + "name": "4.7 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269349, + "fields": { + "id_car_serie": 67506, + "name": "4.7 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269350, + "fields": { + "id_car_serie": 67506, + "name": "4.9 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269351, + "fields": { + "id_car_serie": 67506, + "name": "4.9 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269352, + "fields": { + "id_car_serie": 67506, + "name": "4.9 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269353, + "fields": { + "id_car_serie": 67506, + "name": "4.9 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269354, + "fields": { + "id_car_serie": 67506, + "name": "5.8 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269355, + "fields": { + "id_car_serie": 67506, + "name": "5.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269356, + "fields": { + "id_car_serie": 67506, + "name": "5.8 MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269357, + "fields": { + "id_car_serie": 67506, + "name": "5.8 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269358, + "fields": { + "id_car_serie": 67506, + "name": "6.4 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269359, + "fields": { + "id_car_serie": 67506, + "name": "6.4 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269360, + "fields": { + "id_car_serie": 67506, + "name": "6.4 MT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269361, + "fields": { + "id_car_serie": 67506, + "name": "6.4 AT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269362, + "fields": { + "id_car_serie": 67506, + "name": "6.4 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269363, + "fields": { + "id_car_serie": 67506, + "name": "6.4 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269364, + "fields": { + "id_car_serie": 67506, + "name": "7.0 AT (390 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269365, + "fields": { + "id_car_serie": 67506, + "name": "7.0 MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269366, + "fields": { + "id_car_serie": 67506, + "name": "7.0 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269367, + "fields": { + "id_car_serie": 67507, + "name": "4.7 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269368, + "fields": { + "id_car_serie": 67507, + "name": "4.7 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269369, + "fields": { + "id_car_serie": 67507, + "name": "4.9 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269370, + "fields": { + "id_car_serie": 67507, + "name": "4.9 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269371, + "fields": { + "id_car_serie": 67507, + "name": "4.9 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269372, + "fields": { + "id_car_serie": 67507, + "name": "4.9 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269373, + "fields": { + "id_car_serie": 67507, + "name": "5.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269374, + "fields": { + "id_car_serie": 67507, + "name": "5.8 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269375, + "fields": { + "id_car_serie": 67507, + "name": "5.8 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269376, + "fields": { + "id_car_serie": 67507, + "name": "5.8 MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269377, + "fields": { + "id_car_serie": 67507, + "name": "6.4 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269378, + "fields": { + "id_car_serie": 67507, + "name": "6.4 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269379, + "fields": { + "id_car_serie": 67507, + "name": "6.4 MT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269380, + "fields": { + "id_car_serie": 67507, + "name": "6.4 AT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269381, + "fields": { + "id_car_serie": 67507, + "name": "6.4 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269382, + "fields": { + "id_car_serie": 67507, + "name": "6.4 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269383, + "fields": { + "id_car_serie": 67507, + "name": "7.0 MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269384, + "fields": { + "id_car_serie": 67507, + "name": "7.0 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269385, + "fields": { + "id_car_serie": 67508, + "name": "4.7 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269386, + "fields": { + "id_car_serie": 67508, + "name": "4.7 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269387, + "fields": { + "id_car_serie": 67508, + "name": "4.9 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269388, + "fields": { + "id_car_serie": 67508, + "name": "4.9 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269389, + "fields": { + "id_car_serie": 67508, + "name": "4.9 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269390, + "fields": { + "id_car_serie": 67508, + "name": "4.9 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269391, + "fields": { + "id_car_serie": 67508, + "name": "5.8 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269392, + "fields": { + "id_car_serie": 67508, + "name": "5.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269393, + "fields": { + "id_car_serie": 67508, + "name": "5.8 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269394, + "fields": { + "id_car_serie": 67508, + "name": "5.8 MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269395, + "fields": { + "id_car_serie": 67508, + "name": "6.4 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269396, + "fields": { + "id_car_serie": 67508, + "name": "6.4 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269397, + "fields": { + "id_car_serie": 67508, + "name": "6.4 AT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269398, + "fields": { + "id_car_serie": 67508, + "name": "6.4 MT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269399, + "fields": { + "id_car_serie": 67508, + "name": "6.4 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269400, + "fields": { + "id_car_serie": 67508, + "name": "6.4 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269401, + "fields": { + "id_car_serie": 67508, + "name": "7.0 MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269402, + "fields": { + "id_car_serie": 67508, + "name": "7.0 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269403, + "fields": { + "id_car_serie": 67509, + "name": "3.3 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269404, + "fields": { + "id_car_serie": 67509, + "name": "3.3 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269405, + "fields": { + "id_car_serie": 67509, + "name": "4.1 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269406, + "fields": { + "id_car_serie": 67509, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269407, + "fields": { + "id_car_serie": 67509, + "name": "4.7 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269408, + "fields": { + "id_car_serie": 67509, + "name": "4.7 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269409, + "fields": { + "id_car_serie": 67509, + "name": "4.9 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269410, + "fields": { + "id_car_serie": 67509, + "name": "4.9 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269411, + "fields": { + "id_car_serie": 67509, + "name": "4.9 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269412, + "fields": { + "id_car_serie": 67509, + "name": "4.9 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269413, + "fields": { + "id_car_serie": 67509, + "name": "5.8 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269414, + "fields": { + "id_car_serie": 67509, + "name": "5.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269415, + "fields": { + "id_car_serie": 67509, + "name": "5.8 MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269416, + "fields": { + "id_car_serie": 67509, + "name": "5.8 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269417, + "fields": { + "id_car_serie": 67509, + "name": "6.4 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269418, + "fields": { + "id_car_serie": 67509, + "name": "6.4 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269419, + "fields": { + "id_car_serie": 67509, + "name": "6.4 MT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269420, + "fields": { + "id_car_serie": 67509, + "name": "6.4 AT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269421, + "fields": { + "id_car_serie": 67509, + "name": "6.4 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269422, + "fields": { + "id_car_serie": 67509, + "name": "6.4 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269423, + "fields": { + "id_car_serie": 67509, + "name": "7.0 MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269424, + "fields": { + "id_car_serie": 67509, + "name": "7.0 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269425, + "fields": { + "id_car_serie": 67510, + "name": "3.3 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269426, + "fields": { + "id_car_serie": 67510, + "name": "3.3 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269427, + "fields": { + "id_car_serie": 67510, + "name": "4.1 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269428, + "fields": { + "id_car_serie": 67510, + "name": "4.1 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269429, + "fields": { + "id_car_serie": 67510, + "name": "4.7 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269430, + "fields": { + "id_car_serie": 67510, + "name": "4.7 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269431, + "fields": { + "id_car_serie": 67510, + "name": "4.9 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269432, + "fields": { + "id_car_serie": 67510, + "name": "4.9 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269433, + "fields": { + "id_car_serie": 67510, + "name": "4.9 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269434, + "fields": { + "id_car_serie": 67510, + "name": "4.9 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269435, + "fields": { + "id_car_serie": 67510, + "name": "5.8 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269436, + "fields": { + "id_car_serie": 67510, + "name": "5.8 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269437, + "fields": { + "id_car_serie": 67510, + "name": "5.8 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269438, + "fields": { + "id_car_serie": 67510, + "name": "5.8 MT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269439, + "fields": { + "id_car_serie": 67510, + "name": "6.4 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269440, + "fields": { + "id_car_serie": 67510, + "name": "6.4 MT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269441, + "fields": { + "id_car_serie": 67510, + "name": "6.4 AT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269442, + "fields": { + "id_car_serie": 67510, + "name": "6.4 MT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269443, + "fields": { + "id_car_serie": 67510, + "name": "6.4 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269444, + "fields": { + "id_car_serie": 67510, + "name": "6.4 AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269445, + "fields": { + "id_car_serie": 63060, + "name": "2.0 CVT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269446, + "fields": { + "id_car_serie": 63996, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269447, + "fields": { + "id_car_serie": 67511, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269448, + "fields": { + "id_car_serie": 67511, + "name": "1.3 CVT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269449, + "fields": { + "id_car_serie": 67511, + "name": "1.3 CVT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269450, + "fields": { + "id_car_serie": 67511, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269451, + "fields": { + "id_car_serie": 67511, + "name": "1.5 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269452, + "fields": { + "id_car_serie": 67511, + "name": "1.5 CVT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269453, + "fields": { + "id_car_serie": 67511, + "name": "1.5 AMT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269454, + "fields": { + "id_car_serie": 67194, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269455, + "fields": { + "id_car_serie": 63083, + "name": "2.0 CVT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269456, + "fields": { + "id_car_serie": 63083, + "name": "2.4 CVT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269457, + "fields": { + "id_car_serie": 63083, + "name": "2.4 CVT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269458, + "fields": { + "id_car_serie": 63083, + "name": "2.4 CVT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269459, + "fields": { + "id_car_serie": 63083, + "name": "2.4 CVT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269460, + "fields": { + "id_car_serie": 63801, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269461, + "fields": { + "id_car_serie": 63803, + "name": "1.3 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269462, + "fields": { + "id_car_serie": 67512, + "name": "2.0 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269463, + "fields": { + "id_car_serie": 67512, + "name": "2.0 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269464, + "fields": { + "id_car_serie": 67513, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269465, + "fields": { + "id_car_serie": 67513, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269466, + "fields": { + "id_car_serie": 67514, + "name": "1.6 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269467, + "fields": { + "id_car_serie": 67515, + "name": "2.0 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269468, + "fields": { + "id_car_serie": 67515, + "name": "2.0 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269469, + "fields": { + "id_car_serie": 67515, + "name": "2.0 AMT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269470, + "fields": { + "id_car_serie": 67516, + "name": "2.0 MT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269471, + "fields": { + "id_car_serie": 67516, + "name": "2.0 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269472, + "fields": { + "id_car_serie": 67516, + "name": "2.0 AMT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269473, + "fields": { + "id_car_serie": 66992, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269474, + "fields": { + "id_car_serie": 66992, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269475, + "fields": { + "id_car_serie": 64037, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269476, + "fields": { + "id_car_serie": 64037, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269477, + "fields": { + "id_car_serie": 67343, + "name": "2.0 CVT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269478, + "fields": { + "id_car_serie": 67517, + "name": "3.5 AT 4WD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269479, + "fields": { + "id_car_serie": 67518, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269480, + "fields": { + "id_car_serie": 67518, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269481, + "fields": { + "id_car_serie": 67518, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269482, + "fields": { + "id_car_serie": 67518, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269483, + "fields": { + "id_car_serie": 67518, + "name": "1.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269484, + "fields": { + "id_car_serie": 67518, + "name": "1.6 AMT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269485, + "fields": { + "id_car_serie": 67518, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269486, + "fields": { + "id_car_serie": 67518, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269487, + "fields": { + "id_car_serie": 67519, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269488, + "fields": { + "id_car_serie": 67519, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269489, + "fields": { + "id_car_serie": 67519, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269490, + "fields": { + "id_car_serie": 67519, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269491, + "fields": { + "id_car_serie": 67519, + "name": "1.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269492, + "fields": { + "id_car_serie": 67519, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269493, + "fields": { + "id_car_serie": 67519, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269494, + "fields": { + "id_car_serie": 64082, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269495, + "fields": { + "id_car_serie": 64082, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269496, + "fields": { + "id_car_serie": 67520, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269497, + "fields": { + "id_car_serie": 67520, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269498, + "fields": { + "id_car_serie": 67520, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269499, + "fields": { + "id_car_serie": 67206, + "name": "1.0 AMT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269500, + "fields": { + "id_car_serie": 67206, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269501, + "fields": { + "id_car_serie": 67206, + "name": "1.2 AMT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269502, + "fields": { + "id_car_serie": 64111, + "name": "2.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269503, + "fields": { + "id_car_serie": 64111, + "name": "2.0 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269504, + "fields": { + "id_car_serie": 67521, + "name": "1.6 AMT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269505, + "fields": { + "id_car_serie": 67521, + "name": "2.0 AT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269506, + "fields": { + "id_car_serie": 67522, + "name": "1.6 MT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269507, + "fields": { + "id_car_serie": 67522, + "name": "1.6 AMT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269508, + "fields": { + "id_car_serie": 67522, + "name": "2.0 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269509, + "fields": { + "id_car_serie": 64115, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269510, + "fields": { + "id_car_serie": 64114, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269511, + "fields": { + "id_car_serie": 64114, + "name": "1.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269512, + "fields": { + "id_car_serie": 64114, + "name": "1.5 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269513, + "fields": { + "id_car_serie": 64123, + "name": "1.6 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269514, + "fields": { + "id_car_serie": 67523, + "name": "1.7 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269515, + "fields": { + "id_car_serie": 64981, + "name": "5.0 AT 4WD (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269516, + "fields": { + "id_car_serie": 67524, + "name": "3.0 AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269517, + "fields": { + "id_car_serie": 67524, + "name": "4.4 AT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269518, + "fields": { + "id_car_serie": 67524, + "name": "3.0 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269519, + "fields": { + "id_car_serie": 67524, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269520, + "fields": { + "id_car_serie": 67524, + "name": "3.0 AT 4WD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269521, + "fields": { + "id_car_serie": 67524, + "name": "3.0 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269522, + "fields": { + "id_car_serie": 67525, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269523, + "fields": { + "id_car_serie": 67525, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269524, + "fields": { + "id_car_serie": 67525, + "name": "3.5 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269525, + "fields": { + "id_car_serie": 64130, + "name": "5.0 AT (479 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269526, + "fields": { + "id_car_serie": 67526, + "name": "3.4 AT 4WD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269527, + "fields": { + "id_car_serie": 67526, + "name": "3.5 AT 4WD (415 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269528, + "fields": { + "id_car_serie": 67527, + "name": "2.4 AT 4WD (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269529, + "fields": { + "id_car_serie": 67527, + "name": "2.5 AT 4WD (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269530, + "fields": { + "id_car_serie": 67527, + "name": "2.5 AT 4WD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269531, + "fields": { + "id_car_serie": 67527, + "name": "2.5 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269532, + "fields": { + "id_car_serie": 48450, + "name": "1.6 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269533, + "fields": { + "id_car_serie": 48450, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269534, + "fields": { + "id_car_serie": 48450, + "name": "2.0 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269535, + "fields": { + "id_car_serie": 48450, + "name": "2.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269536, + "fields": { + "id_car_serie": 64136, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269537, + "fields": { + "id_car_serie": 64137, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269538, + "fields": { + "id_car_serie": 67528, + "name": "1.4 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269539, + "fields": { + "id_car_serie": 67528, + "name": "1.4 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269540, + "fields": { + "id_car_serie": 67528, + "name": "1.4 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269541, + "fields": { + "id_car_serie": 67528, + "name": "1.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269542, + "fields": { + "id_car_serie": 67528, + "name": "1.5 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269543, + "fields": { + "id_car_serie": 67528, + "name": "1.5 AT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269544, + "fields": { + "id_car_serie": 67529, + "name": "1.3 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269545, + "fields": { + "id_car_serie": 67529, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269546, + "fields": { + "id_car_serie": 67529, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269547, + "fields": { + "id_car_serie": 67529, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269548, + "fields": { + "id_car_serie": 67529, + "name": "1.5 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269549, + "fields": { + "id_car_serie": 67529, + "name": "1.5 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269550, + "fields": { + "id_car_serie": 67529, + "name": "1.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269551, + "fields": { + "id_car_serie": 67529, + "name": "1.7 MT (59 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269552, + "fields": { + "id_car_serie": 6841, + "name": "2.2 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269553, + "fields": { + "id_car_serie": 6841, + "name": "2.5 MT 4WD (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269554, + "fields": { + "id_car_serie": 48489, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269555, + "fields": { + "id_car_serie": 48489, + "name": "2.0 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269556, + "fields": { + "id_car_serie": 48489, + "name": "2.0 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269557, + "fields": { + "id_car_serie": 48488, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269558, + "fields": { + "id_car_serie": 67400, + "name": "1.6 MT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269559, + "fields": { + "id_car_serie": 67400, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269560, + "fields": { + "id_car_serie": 67400, + "name": "2.0 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269561, + "fields": { + "id_car_serie": 67400, + "name": "2.0 AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269562, + "fields": { + "id_car_serie": 67530, + "name": "0.7 CVT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269563, + "fields": { + "id_car_serie": 67530, + "name": "0.7 CVT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269564, + "fields": { + "id_car_serie": 67530, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269565, + "fields": { + "id_car_serie": 67530, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269566, + "fields": { + "id_car_serie": 67531, + "name": "1.5 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269567, + "fields": { + "id_car_serie": 67531, + "name": "2.0 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269568, + "fields": { + "id_car_serie": 64166, + "name": "2.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269569, + "fields": { + "id_car_serie": 8825, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269570, + "fields": { + "id_car_serie": 8825, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269571, + "fields": { + "id_car_serie": 3708, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269572, + "fields": { + "id_car_serie": 67405, + "name": "6.0 AT 4WD (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269573, + "fields": { + "id_car_serie": 14738, + "name": "AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269574, + "fields": { + "id_car_serie": 3734, + "name": "5.6 AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269575, + "fields": { + "id_car_serie": 3734, + "name": "6.0 AT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269576, + "fields": { + "id_car_serie": 67532, + "name": "1.3 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269577, + "fields": { + "id_car_serie": 67532, + "name": "1.3 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269578, + "fields": { + "id_car_serie": 67532, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269579, + "fields": { + "id_car_serie": 67532, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269580, + "fields": { + "id_car_serie": 67532, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269581, + "fields": { + "id_car_serie": 67533, + "name": "1.3 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269582, + "fields": { + "id_car_serie": 67533, + "name": "1.3 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269583, + "fields": { + "id_car_serie": 67533, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269584, + "fields": { + "id_car_serie": 48544, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269585, + "fields": { + "id_car_serie": 48544, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269586, + "fields": { + "id_car_serie": 48544, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269587, + "fields": { + "id_car_serie": 67534, + "name": "6.9 MT (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269588, + "fields": { + "id_car_serie": 67534, + "name": "7.3 MT (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269589, + "fields": { + "id_car_serie": 67535, + "name": "6.9 MT (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269590, + "fields": { + "id_car_serie": 67535, + "name": "7.3 MT (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269591, + "fields": { + "id_car_serie": 67536, + "name": "AT 4WD (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269592, + "fields": { + "id_car_serie": 67536, + "name": "AT 4WD (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269593, + "fields": { + "id_car_serie": 67537, + "name": "AT (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269594, + "fields": { + "id_car_serie": 67538, + "name": "AT 4WD (658 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269595, + "fields": { + "id_car_serie": 67538, + "name": "AT 4WD (762 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269596, + "fields": { + "id_car_serie": 67539, + "name": "4.0 AT 4WD (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269597, + "fields": { + "id_car_serie": 67539, + "name": "4.0 AT 4WD (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269598, + "fields": { + "id_car_serie": 67540, + "name": "2.6 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269599, + "fields": { + "id_car_serie": 63171, + "name": "3.0 MT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269600, + "fields": { + "id_car_serie": 63171, + "name": "3.0 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269601, + "fields": { + "id_car_serie": 63171, + "name": "3.0 AT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269602, + "fields": { + "id_car_serie": 63171, + "name": "3.0 MT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269603, + "fields": { + "id_car_serie": 64198, + "name": "1.5 CVT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269604, + "fields": { + "id_car_serie": 64198, + "name": "1.5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269605, + "fields": { + "id_car_serie": 67541, + "name": "2.3 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269606, + "fields": { + "id_car_serie": 67542, + "name": "0.7 CVT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269607, + "fields": { + "id_car_serie": 67542, + "name": "0.7 CVT 4WD (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269608, + "fields": { + "id_car_serie": 67542, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269609, + "fields": { + "id_car_serie": 67542, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269610, + "fields": { + "id_car_serie": 63184, + "name": "2.5 MT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269611, + "fields": { + "id_car_serie": 63184, + "name": "2.5 AT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269612, + "fields": { + "id_car_serie": 67543, + "name": "0.7 MT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269613, + "fields": { + "id_car_serie": 67543, + "name": "0.7 AT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269614, + "fields": { + "id_car_serie": 67543, + "name": "0.7 AMT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269615, + "fields": { + "id_car_serie": 67543, + "name": "0.7 MT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269616, + "fields": { + "id_car_serie": 67543, + "name": "0.7 MT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269617, + "fields": { + "id_car_serie": 67543, + "name": "0.7 AT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269618, + "fields": { + "id_car_serie": 67543, + "name": "0.7 AMT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269619, + "fields": { + "id_car_serie": 67543, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269620, + "fields": { + "id_car_serie": 67544, + "name": "0.7 MT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269621, + "fields": { + "id_car_serie": 67544, + "name": "0.7 MT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269622, + "fields": { + "id_car_serie": 67544, + "name": "0.7 AT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269623, + "fields": { + "id_car_serie": 67544, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269624, + "fields": { + "id_car_serie": 67545, + "name": "1.2 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269625, + "fields": { + "id_car_serie": 67545, + "name": "1.2 CVT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269626, + "fields": { + "id_car_serie": 67546, + "name": "1.2 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269627, + "fields": { + "id_car_serie": 67546, + "name": "1.2 CVT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269628, + "fields": { + "id_car_serie": 67546, + "name": "1.2 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269629, + "fields": { + "id_car_serie": 67546, + "name": "1.2 CVT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269630, + "fields": { + "id_car_serie": 67547, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269631, + "fields": { + "id_car_serie": 67547, + "name": "1.5 CVT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269632, + "fields": { + "id_car_serie": 67547, + "name": "1.6 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269633, + "fields": { + "id_car_serie": 67547, + "name": "1.6 AT 4WD (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269634, + "fields": { + "id_car_serie": 67548, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269635, + "fields": { + "id_car_serie": 67548, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269636, + "fields": { + "id_car_serie": 67548, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269637, + "fields": { + "id_car_serie": 67548, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269638, + "fields": { + "id_car_serie": 67549, + "name": "2.5 CVT 4WD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269639, + "fields": { + "id_car_serie": 67549, + "name": "3.5 CVT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269640, + "fields": { + "id_car_serie": 67550, + "name": "2.5 CVT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269641, + "fields": { + "id_car_serie": 67550, + "name": "2.5 CVT 4WD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269642, + "fields": { + "id_car_serie": 67550, + "name": "3.5 CVT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269643, + "fields": { + "id_car_serie": 67550, + "name": "3.5 CVT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269644, + "fields": { + "id_car_serie": 67550, + "name": "3.5 CVT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269645, + "fields": { + "id_car_serie": 67104, + "name": "1.2 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269646, + "fields": { + "id_car_serie": 67104, + "name": "1.2 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269647, + "fields": { + "id_car_serie": 67551, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269648, + "fields": { + "id_car_serie": 67551, + "name": "1.3 CVT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269649, + "fields": { + "id_car_serie": 63212, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269650, + "fields": { + "id_car_serie": 63212, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269651, + "fields": { + "id_car_serie": 67079, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269652, + "fields": { + "id_car_serie": 67079, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269653, + "fields": { + "id_car_serie": 67079, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269654, + "fields": { + "id_car_serie": 67552, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269655, + "fields": { + "id_car_serie": 67552, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269656, + "fields": { + "id_car_serie": 67552, + "name": "1.6 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269657, + "fields": { + "id_car_serie": 67552, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269658, + "fields": { + "id_car_serie": 67552, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269659, + "fields": { + "id_car_serie": 67552, + "name": "2.0 AMT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269660, + "fields": { + "id_car_serie": 67552, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269661, + "fields": { + "id_car_serie": 67552, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269662, + "fields": { + "id_car_serie": 67552, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269663, + "fields": { + "id_car_serie": 67552, + "name": "2.0 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269664, + "fields": { + "id_car_serie": 67553, + "name": "AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269665, + "fields": { + "id_car_serie": 67554, + "name": "3.0 AT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269666, + "fields": { + "id_car_serie": 67554, + "name": "3.0 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269667, + "fields": { + "id_car_serie": 67555, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269668, + "fields": { + "id_car_serie": 67555, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269669, + "fields": { + "id_car_serie": 67555, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269670, + "fields": { + "id_car_serie": 67555, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269671, + "fields": { + "id_car_serie": 67555, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269672, + "fields": { + "id_car_serie": 67555, + "name": "1.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269673, + "fields": { + "id_car_serie": 67555, + "name": "1.6 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269674, + "fields": { + "id_car_serie": 48828, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269675, + "fields": { + "id_car_serie": 64331, + "name": "1.2 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269676, + "fields": { + "id_car_serie": 67083, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269677, + "fields": { + "id_car_serie": 67083, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269678, + "fields": { + "id_car_serie": 67083, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269679, + "fields": { + "id_car_serie": 67083, + "name": "2.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269680, + "fields": { + "id_car_serie": 67084, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269681, + "fields": { + "id_car_serie": 67084, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269682, + "fields": { + "id_car_serie": 67084, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269683, + "fields": { + "id_car_serie": 67084, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269684, + "fields": { + "id_car_serie": 67084, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269685, + "fields": { + "id_car_serie": 67084, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269686, + "fields": { + "id_car_serie": 67084, + "name": "2.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269687, + "fields": { + "id_car_serie": 67084, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269688, + "fields": { + "id_car_serie": 64356, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269689, + "fields": { + "id_car_serie": 67556, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269690, + "fields": { + "id_car_serie": 67556, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269691, + "fields": { + "id_car_serie": 67556, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269692, + "fields": { + "id_car_serie": 67556, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269693, + "fields": { + "id_car_serie": 67556, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269694, + "fields": { + "id_car_serie": 67556, + "name": "1.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269695, + "fields": { + "id_car_serie": 67556, + "name": "1.6 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269696, + "fields": { + "id_car_serie": 67557, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269697, + "fields": { + "id_car_serie": 67557, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269698, + "fields": { + "id_car_serie": 67557, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269699, + "fields": { + "id_car_serie": 67557, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269700, + "fields": { + "id_car_serie": 67557, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269701, + "fields": { + "id_car_serie": 67557, + "name": "1.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269702, + "fields": { + "id_car_serie": 67557, + "name": "1.6 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269703, + "fields": { + "id_car_serie": 64369, + "name": "4.0 AT 4WD (680 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269704, + "fields": { + "id_car_serie": 67558, + "name": "2.0 AMT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269705, + "fields": { + "id_car_serie": 67558, + "name": "2.9 AMT 4WD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269706, + "fields": { + "id_car_serie": 67558, + "name": "2.9 AMT 4WD (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269707, + "fields": { + "id_car_serie": 67159, + "name": "AT 4WD (598 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269708, + "fields": { + "id_car_serie": 7486, + "name": "AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269709, + "fields": { + "id_car_serie": 7486, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269710, + "fields": { + "id_car_serie": 7488, + "name": "1.9 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269711, + "fields": { + "id_car_serie": 49705, + "name": "2.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269712, + "fields": { + "id_car_serie": 49705, + "name": "2.5 MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269713, + "fields": { + "id_car_serie": 49705, + "name": "2.2 MT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269714, + "fields": { + "id_car_serie": 49706, + "name": "1.4 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269715, + "fields": { + "id_car_serie": 49706, + "name": "1.7 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269716, + "fields": { + "id_car_serie": 49706, + "name": "1.7 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269717, + "fields": { + "id_car_serie": 49706, + "name": "2.0 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269718, + "fields": { + "id_car_serie": 49706, + "name": "2.2 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269719, + "fields": { + "id_car_serie": 49706, + "name": "2.2 MT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269720, + "fields": { + "id_car_serie": 49706, + "name": "1.9 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269721, + "fields": { + "id_car_serie": 49706, + "name": "2.1 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269722, + "fields": { + "id_car_serie": 49706, + "name": "2.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269723, + "fields": { + "id_car_serie": 49706, + "name": "2.5 MT 4WD (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269724, + "fields": { + "id_car_serie": 49708, + "name": "1.4 MT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269725, + "fields": { + "id_car_serie": 49708, + "name": "1.7 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269726, + "fields": { + "id_car_serie": 49708, + "name": "1.7 MT 4WD (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269727, + "fields": { + "id_car_serie": 49708, + "name": "1.7 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269728, + "fields": { + "id_car_serie": 49708, + "name": "2.0 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269729, + "fields": { + "id_car_serie": 49708, + "name": "2.0 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269730, + "fields": { + "id_car_serie": 49708, + "name": "2.0 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269731, + "fields": { + "id_car_serie": 49708, + "name": "2.0 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269732, + "fields": { + "id_car_serie": 49708, + "name": "2.1 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269733, + "fields": { + "id_car_serie": 49708, + "name": "2.1 MT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269734, + "fields": { + "id_car_serie": 49708, + "name": "2.5 MT 4WD (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269735, + "fields": { + "id_car_serie": 67559, + "name": "1.0 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269736, + "fields": { + "id_car_serie": 67559, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269737, + "fields": { + "id_car_serie": 67559, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269738, + "fields": { + "id_car_serie": 67559, + "name": "1.0 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269739, + "fields": { + "id_car_serie": 64409, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269740, + "fields": { + "id_car_serie": 67560, + "name": "1.4 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269741, + "fields": { + "id_car_serie": 67560, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269742, + "fields": { + "id_car_serie": 67560, + "name": "1.4 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269743, + "fields": { + "id_car_serie": 67560, + "name": "2.0 AMT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269744, + "fields": { + "id_car_serie": 67560, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269745, + "fields": { + "id_car_serie": 67560, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269746, + "fields": { + "id_car_serie": 67560, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269747, + "fields": { + "id_car_serie": 67560, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269748, + "fields": { + "id_car_serie": 67560, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269749, + "fields": { + "id_car_serie": 67560, + "name": "2.0 AMT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269750, + "fields": { + "id_car_serie": 67561, + "name": "2.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269751, + "fields": { + "id_car_serie": 67562, + "name": "2.5 CVT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269752, + "fields": { + "id_car_serie": 9142, + "name": "0.7 AT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269753, + "fields": { + "id_car_serie": 9142, + "name": "0.7 MT 4WD (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269754, + "fields": { + "id_car_serie": 66863, + "name": "0.7 AT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269755, + "fields": { + "id_car_serie": 66863, + "name": "0.7 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269756, + "fields": { + "id_car_serie": 66863, + "name": "0.7 MT 4WD (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269757, + "fields": { + "id_car_serie": 66863, + "name": "0.7 MT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269758, + "fields": { + "id_car_serie": 66863, + "name": "0.7 AT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269759, + "fields": { + "id_car_serie": 66863, + "name": "0.7 AT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269760, + "fields": { + "id_car_serie": 67563, + "name": "0.6 MT (32 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269761, + "fields": { + "id_car_serie": 67563, + "name": "0.6 AT (32 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269762, + "fields": { + "id_car_serie": 67563, + "name": "0.6 AT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269763, + "fields": { + "id_car_serie": 67563, + "name": "0.6 MT 4WD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269764, + "fields": { + "id_car_serie": 67563, + "name": "0.7 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269765, + "fields": { + "id_car_serie": 67563, + "name": "0.7 AT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269766, + "fields": { + "id_car_serie": 67563, + "name": "0.7 MT 4WD (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269767, + "fields": { + "id_car_serie": 67563, + "name": "0.7 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269768, + "fields": { + "id_car_serie": 67563, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269769, + "fields": { + "id_car_serie": 67564, + "name": "0.7 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269770, + "fields": { + "id_car_serie": 67564, + "name": "0.7 AT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269771, + "fields": { + "id_car_serie": 67564, + "name": "0.7 AT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269772, + "fields": { + "id_car_serie": 67564, + "name": "0.7 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269773, + "fields": { + "id_car_serie": 67564, + "name": "0.7 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269774, + "fields": { + "id_car_serie": 67564, + "name": "0.7 MT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269775, + "fields": { + "id_car_serie": 67564, + "name": "0.7 AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269776, + "fields": { + "id_car_serie": 67564, + "name": "0.7 AT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269777, + "fields": { + "id_car_serie": 64466, + "name": "1.3 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269778, + "fields": { + "id_car_serie": 64466, + "name": "1.5 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269779, + "fields": { + "id_car_serie": 64467, + "name": "1.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269780, + "fields": { + "id_car_serie": 64467, + "name": "1.0 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269781, + "fields": { + "id_car_serie": 64467, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269782, + "fields": { + "id_car_serie": 64467, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269783, + "fields": { + "id_car_serie": 64467, + "name": "1.3 MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269784, + "fields": { + "id_car_serie": 64467, + "name": "1.3 MT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269785, + "fields": { + "id_car_serie": 64467, + "name": "1.3 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269786, + "fields": { + "id_car_serie": 67565, + "name": "1.0 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269787, + "fields": { + "id_car_serie": 67565, + "name": "1.0 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269788, + "fields": { + "id_car_serie": 67565, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269789, + "fields": { + "id_car_serie": 67565, + "name": "1.3 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269790, + "fields": { + "id_car_serie": 67565, + "name": "1.3 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269791, + "fields": { + "id_car_serie": 67565, + "name": "1.3 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269792, + "fields": { + "id_car_serie": 63262, + "name": "0.7 MT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269793, + "fields": { + "id_car_serie": 63262, + "name": "0.7 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269794, + "fields": { + "id_car_serie": 63262, + "name": "0.7 AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269795, + "fields": { + "id_car_serie": 67566, + "name": "0.7 MT 4WD (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269796, + "fields": { + "id_car_serie": 67566, + "name": "0.7 AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269797, + "fields": { + "id_car_serie": 67566, + "name": "0.7 AT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269798, + "fields": { + "id_car_serie": 67566, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269799, + "fields": { + "id_car_serie": 67566, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269800, + "fields": { + "id_car_serie": 67566, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269801, + "fields": { + "id_car_serie": 67567, + "name": "0.7 MT 4WD (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269802, + "fields": { + "id_car_serie": 67567, + "name": "0.7 MT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269803, + "fields": { + "id_car_serie": 67567, + "name": "0.7 AT 4WD (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269804, + "fields": { + "id_car_serie": 67567, + "name": "0.7 MT 4WD (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269805, + "fields": { + "id_car_serie": 67567, + "name": "0.7 AT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269806, + "fields": { + "id_car_serie": 67019, + "name": "0.6 MT 4WD (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269807, + "fields": { + "id_car_serie": 67019, + "name": "0.6 AT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269808, + "fields": { + "id_car_serie": 67019, + "name": "0.7 AT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269809, + "fields": { + "id_car_serie": 67019, + "name": "0.7 AT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269810, + "fields": { + "id_car_serie": 67019, + "name": "0.7 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269811, + "fields": { + "id_car_serie": 67019, + "name": "0.7 MT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269812, + "fields": { + "id_car_serie": 9161, + "name": "1.6 AT (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269813, + "fields": { + "id_car_serie": 9161, + "name": "1.6 AT 4WD (94 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269814, + "fields": { + "id_car_serie": 9158, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269815, + "fields": { + "id_car_serie": 9158, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269816, + "fields": { + "id_car_serie": 64478, + "name": "0.5 MT 4WD (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269817, + "fields": { + "id_car_serie": 64478, + "name": "0.5 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269818, + "fields": { + "id_car_serie": 64478, + "name": "1.0 MT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269819, + "fields": { + "id_car_serie": 67568, + "name": "0.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269820, + "fields": { + "id_car_serie": 67568, + "name": "0.7 AT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269821, + "fields": { + "id_car_serie": 67568, + "name": "0.7 MT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269822, + "fields": { + "id_car_serie": 67568, + "name": "0.7 AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269823, + "fields": { + "id_car_serie": 67568, + "name": "0.7 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269824, + "fields": { + "id_car_serie": 67568, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269825, + "fields": { + "id_car_serie": 67568, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269826, + "fields": { + "id_car_serie": 67569, + "name": "1.2 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269827, + "fields": { + "id_car_serie": 67569, + "name": "1.2 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269832, + "fields": { + "id_car_serie": 67571, + "name": "1.2 CVT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269833, + "fields": { + "id_car_serie": 67572, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269834, + "fields": { + "id_car_serie": 67572, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269835, + "fields": { + "id_car_serie": 67572, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269836, + "fields": { + "id_car_serie": 67572, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269837, + "fields": { + "id_car_serie": 67573, + "name": "1.8 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269838, + "fields": { + "id_car_serie": 49178, + "name": "0.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269839, + "fields": { + "id_car_serie": 49178, + "name": "0.7 MT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269840, + "fields": { + "id_car_serie": 49178, + "name": "0.7 CVT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269841, + "fields": { + "id_car_serie": 64492, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269842, + "fields": { + "id_car_serie": 64492, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269843, + "fields": { + "id_car_serie": 64492, + "name": "1.6 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269844, + "fields": { + "id_car_serie": 64492, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269845, + "fields": { + "id_car_serie": 64492, + "name": "1.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269846, + "fields": { + "id_car_serie": 64492, + "name": "1.8 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269847, + "fields": { + "id_car_serie": 9212, + "name": "1.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269848, + "fields": { + "id_car_serie": 9212, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269849, + "fields": { + "id_car_serie": 9212, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269850, + "fields": { + "id_car_serie": 9212, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269851, + "fields": { + "id_car_serie": 9212, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269852, + "fields": { + "id_car_serie": 9212, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269853, + "fields": { + "id_car_serie": 9212, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269854, + "fields": { + "id_car_serie": 9212, + "name": "2.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269855, + "fields": { + "id_car_serie": 9212, + "name": "2.5 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269856, + "fields": { + "id_car_serie": 9212, + "name": "2.5 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269857, + "fields": { + "id_car_serie": 64510, + "name": "1.8 CVT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269858, + "fields": { + "id_car_serie": 64510, + "name": "1.8 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269859, + "fields": { + "id_car_serie": 64510, + "name": "1.8 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269860, + "fields": { + "id_car_serie": 67574, + "name": "1.2 AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269861, + "fields": { + "id_car_serie": 67574, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269862, + "fields": { + "id_car_serie": 67574, + "name": "1.6 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269863, + "fields": { + "id_car_serie": 67574, + "name": "1.6 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269864, + "fields": { + "id_car_serie": 67575, + "name": "1.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269865, + "fields": { + "id_car_serie": 67575, + "name": "1.2 AT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269866, + "fields": { + "id_car_serie": 67575, + "name": "1.6 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269867, + "fields": { + "id_car_serie": 67575, + "name": "1.6 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269868, + "fields": { + "id_car_serie": 67576, + "name": "1.6 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269869, + "fields": { + "id_car_serie": 67576, + "name": "1.6 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269870, + "fields": { + "id_car_serie": 67577, + "name": "1.1 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269871, + "fields": { + "id_car_serie": 67577, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269872, + "fields": { + "id_car_serie": 67577, + "name": "1.2 AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269873, + "fields": { + "id_car_serie": 67577, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269874, + "fields": { + "id_car_serie": 67578, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269875, + "fields": { + "id_car_serie": 67578, + "name": "1.1 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269876, + "fields": { + "id_car_serie": 67578, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269877, + "fields": { + "id_car_serie": 67578, + "name": "1.2 AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269878, + "fields": { + "id_car_serie": 67579, + "name": "1.1 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269879, + "fields": { + "id_car_serie": 67579, + "name": "1.1 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269880, + "fields": { + "id_car_serie": 67579, + "name": "1.2 AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269881, + "fields": { + "id_car_serie": 67579, + "name": "1.2 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269882, + "fields": { + "id_car_serie": 51503, + "name": "2.5 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269883, + "fields": { + "id_car_serie": 67412, + "name": "2.5 MT 4WD (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269884, + "fields": { + "id_car_serie": 67580, + "name": "2.8 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269885, + "fields": { + "id_car_serie": 64540, + "name": "2.7 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269886, + "fields": { + "id_car_serie": 67581, + "name": "2.5 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269887, + "fields": { + "id_car_serie": 67581, + "name": "2.5 MT 4WD (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269888, + "fields": { + "id_car_serie": 67414, + "name": "3.4 AT 4WD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269889, + "fields": { + "id_car_serie": 67414, + "name": "3.4 AT 4WD (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269890, + "fields": { + "id_car_serie": 67414, + "name": "4.0 AT 4WD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269891, + "fields": { + "id_car_serie": 64544, + "name": "4.0 MT 4WD (271 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269892, + "fields": { + "id_car_serie": 67582, + "name": "1.8 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269893, + "fields": { + "id_car_serie": 67582, + "name": "1.8 AT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269894, + "fields": { + "id_car_serie": 64568, + "name": "2.5 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269895, + "fields": { + "id_car_serie": 64576, + "name": "2.0 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269896, + "fields": { + "id_car_serie": 64576, + "name": "2.0 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269897, + "fields": { + "id_car_serie": 64577, + "name": "2.0 MT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269898, + "fields": { + "id_car_serie": 64577, + "name": "2.0 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269899, + "fields": { + "id_car_serie": 14595, + "name": "1.8 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269900, + "fields": { + "id_car_serie": 67583, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269901, + "fields": { + "id_car_serie": 67583, + "name": "1.8 CVT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269902, + "fields": { + "id_car_serie": 67583, + "name": "1.8 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269903, + "fields": { + "id_car_serie": 67583, + "name": "2.0 CVT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269904, + "fields": { + "id_car_serie": 67584, + "name": "1.5 CVT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269905, + "fields": { + "id_car_serie": 67584, + "name": "1.5 CVT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269906, + "fields": { + "id_car_serie": 67585, + "name": "1.5 CVT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269907, + "fields": { + "id_car_serie": 67586, + "name": "1.0 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269908, + "fields": { + "id_car_serie": 67586, + "name": "1.0 AMT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269909, + "fields": { + "id_car_serie": 67587, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269910, + "fields": { + "id_car_serie": 67587, + "name": "2.7 MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269911, + "fields": { + "id_car_serie": 67587, + "name": "2.7 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269912, + "fields": { + "id_car_serie": 67587, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269913, + "fields": { + "id_car_serie": 67587, + "name": "2.8 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269914, + "fields": { + "id_car_serie": 67588, + "name": "0.7 CVT 4WD (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269915, + "fields": { + "id_car_serie": 64567, + "name": "1.5 CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269916, + "fields": { + "id_car_serie": 67589, + "name": "1.0 CVT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269917, + "fields": { + "id_car_serie": 67589, + "name": "1.0 CVT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269918, + "fields": { + "id_car_serie": 67589, + "name": "1.0 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269919, + "fields": { + "id_car_serie": 67590, + "name": "3.4 AT (348 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269920, + "fields": { + "id_car_serie": 67590, + "name": "3.4 AT (389 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269921, + "fields": { + "id_car_serie": 67590, + "name": "3.4 AT 4WD (389 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269922, + "fields": { + "id_car_serie": 67590, + "name": "3.4 AT (437 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269923, + "fields": { + "id_car_serie": 67590, + "name": "3.4 AT 4WD (437 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269924, + "fields": { + "id_car_serie": 67591, + "name": "2.5 CVT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269925, + "fields": { + "id_car_serie": 67591, + "name": "2.5 CVT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269926, + "fields": { + "id_car_serie": 67591, + "name": "2.5 CVT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269927, + "fields": { + "id_car_serie": 67591, + "name": "3.5 AT (301 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269928, + "fields": { + "id_car_serie": 67591, + "name": "3.5 AT 4WD (301 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269929, + "fields": { + "id_car_serie": 67592, + "name": "1.0 CVT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269930, + "fields": { + "id_car_serie": 67592, + "name": "1.3 CVT 4WD (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269931, + "fields": { + "id_car_serie": 67592, + "name": "1.3 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269932, + "fields": { + "id_car_serie": 67592, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269933, + "fields": { + "id_car_serie": 67592, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269934, + "fields": { + "id_car_serie": 67592, + "name": "1.5 CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269935, + "fields": { + "id_car_serie": 67593, + "name": "1.8 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269936, + "fields": { + "id_car_serie": 67593, + "name": "2.0 CVT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269937, + "fields": { + "id_car_serie": 67594, + "name": "1.5 CVT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269938, + "fields": { + "id_car_serie": 67594, + "name": "1.5 CVT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269939, + "fields": { + "id_car_serie": 67594, + "name": "1.5 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269940, + "fields": { + "id_car_serie": 67594, + "name": "1.5 CVT 4WD (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269941, + "fields": { + "id_car_serie": 67594, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269942, + "fields": { + "id_car_serie": 67594, + "name": "1.5 CVT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269943, + "fields": { + "id_car_serie": 67594, + "name": "1.5 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269944, + "fields": { + "id_car_serie": 67594, + "name": "1.5 CVT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269945, + "fields": { + "id_car_serie": 67595, + "name": "2.0 AMT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269946, + "fields": { + "id_car_serie": 67596, + "name": "2.0 AMT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269947, + "fields": { + "id_car_serie": 67597, + "name": "AT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269948, + "fields": { + "id_car_serie": 49375, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269949, + "fields": { + "id_car_serie": 63332, + "name": "AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269950, + "fields": { + "id_car_serie": 67024, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269951, + "fields": { + "id_car_serie": 67024, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269952, + "fields": { + "id_car_serie": 67598, + "name": "1.0 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269953, + "fields": { + "id_car_serie": 67598, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269954, + "fields": { + "id_car_serie": 67598, + "name": "1.0 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269955, + "fields": { + "id_car_serie": 67598, + "name": "1.0 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269956, + "fields": { + "id_car_serie": 67598, + "name": "1.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269957, + "fields": { + "id_car_serie": 67312, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269958, + "fields": { + "id_car_serie": 67599, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269959, + "fields": { + "id_car_serie": 67599, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269960, + "fields": { + "id_car_serie": 67599, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269961, + "fields": { + "id_car_serie": 67599, + "name": "2.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269962, + "fields": { + "id_car_serie": 67599, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269963, + "fields": { + "id_car_serie": 67599, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269964, + "fields": { + "id_car_serie": 67599, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269965, + "fields": { + "id_car_serie": 67599, + "name": "2.0 AMT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269966, + "fields": { + "id_car_serie": 64637, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269967, + "fields": { + "id_car_serie": 67025, + "name": "2.0 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269968, + "fields": { + "id_car_serie": 67025, + "name": "2.0 AMT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269969, + "fields": { + "id_car_serie": 67600, + "name": "2.0 AMT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269970, + "fields": { + "id_car_serie": 67601, + "name": "2.0 AMT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269971, + "fields": { + "id_car_serie": 67026, + "name": "AT 4WD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269972, + "fields": { + "id_car_serie": 67030, + "name": "1.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269973, + "fields": { + "id_car_serie": 67602, + "name": "2.0 AMT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269974, + "fields": { + "id_car_serie": 67603, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269975, + "fields": { + "id_car_serie": 67603, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269976, + "fields": { + "id_car_serie": 53712, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269977, + "fields": { + "id_car_serie": 53712, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269978, + "fields": { + "id_car_serie": 53712, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269979, + "fields": { + "id_car_serie": 67604, + "name": "2.0 AMT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269980, + "fields": { + "id_car_serie": 67605, + "name": "2.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269981, + "fields": { + "id_car_serie": 67605, + "name": "2.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269982, + "fields": { + "id_car_serie": 67605, + "name": "2.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269983, + "fields": { + "id_car_serie": 67605, + "name": "2.0 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269984, + "fields": { + "id_car_serie": 67605, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269985, + "fields": { + "id_car_serie": 67605, + "name": "2.0 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269986, + "fields": { + "id_car_serie": 67605, + "name": "2.0 AT 4WD (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269987, + "fields": { + "id_car_serie": 67605, + "name": "2.0 AT 4WD (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269988, + "fields": { + "id_car_serie": 67605, + "name": "2.0 AT 4WD (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269989, + "fields": { + "id_car_serie": 67606, + "name": "1.4 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269990, + "fields": { + "id_car_serie": 67606, + "name": "1.4 MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269991, + "fields": { + "id_car_serie": 67606, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269992, + "fields": { + "id_car_serie": 67606, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269993, + "fields": { + "id_car_serie": 67607, + "name": "1.6 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269994, + "fields": { + "id_car_serie": 67607, + "name": "1.6 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269995, + "fields": { + "id_car_serie": 67607, + "name": "1.8 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269996, + "fields": { + "id_car_serie": 67607, + "name": "1.8 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269997, + "fields": { + "id_car_serie": 4577, + "name": "2.3 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269998, + "fields": { + "id_car_serie": 64678, + "name": "2.2 MT 4WD (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 269999, + "fields": { + "id_car_serie": 4646, + "name": "3.5 AMT 4WD (608 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270000, + "fields": { + "id_car_serie": 67608, + "name": "2.0 AT (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270001, + "fields": { + "id_car_serie": 67608, + "name": "2.0 AT 4WD (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270002, + "fields": { + "id_car_serie": 67608, + "name": "3.0 AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270003, + "fields": { + "id_car_serie": 67609, + "name": "4.4 AT 4WD (621 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270004, + "fields": { + "id_car_serie": 67610, + "name": "4.4 AT 4WD (621 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270005, + "fields": { + "id_car_serie": 67611, + "name": "4.4 AT 4WD (608 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270006, + "fields": { + "id_car_serie": 67612, + "name": "4.4 AT 4WD (621 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270007, + "fields": { + "id_car_serie": 67613, + "name": "3.0 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270008, + "fields": { + "id_car_serie": 67614, + "name": "3.0 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270009, + "fields": { + "id_car_serie": 67615, + "name": "3.0 AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270010, + "fields": { + "id_car_serie": 67616, + "name": "3.0 AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270011, + "fields": { + "id_car_serie": 67617, + "name": "4.4 AT 4WD (621 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270012, + "fields": { + "id_car_serie": 67618, + "name": "3.0 AT 4WD (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270013, + "fields": { + "id_car_serie": 67619, + "name": "3.0 AT 4WD (394 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270014, + "fields": { + "id_car_serie": 67620, + "name": "3.8 MT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270015, + "fields": { + "id_car_serie": 67620, + "name": "4.7 MT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270016, + "fields": { + "id_car_serie": 67620, + "name": "5.4 MT (274 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270017, + "fields": { + "id_car_serie": 67621, + "name": "3.2 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270018, + "fields": { + "id_car_serie": 67621, + "name": "3.2 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270019, + "fields": { + "id_car_serie": 67621, + "name": "4.1 MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270020, + "fields": { + "id_car_serie": 67621, + "name": "4.1 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270021, + "fields": { + "id_car_serie": 67622, + "name": "2.4 MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270022, + "fields": { + "id_car_serie": 67623, + "name": "0.8 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270023, + "fields": { + "id_car_serie": 67624, + "name": "7.0 AMT (831 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270024, + "fields": { + "id_car_serie": 67327, + "name": "2.2 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270025, + "fields": { + "id_car_serie": 67327, + "name": "2.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270026, + "fields": { + "id_car_serie": 67327, + "name": "2.5 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270027, + "fields": { + "id_car_serie": 67625, + "name": "2.5 MT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270028, + "fields": { + "id_car_serie": 67625, + "name": "4.0 MT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270029, + "fields": { + "id_car_serie": 67625, + "name": "4.0 AT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270030, + "fields": { + "id_car_serie": 67626, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270031, + "fields": { + "id_car_serie": 67627, + "name": "2.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270032, + "fields": { + "id_car_serie": 67627, + "name": "3.1 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270033, + "fields": { + "id_car_serie": 67627, + "name": "3.3 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270034, + "fields": { + "id_car_serie": 67628, + "name": "5.7 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270035, + "fields": { + "id_car_serie": 64776, + "name": "6.6 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270036, + "fields": { + "id_car_serie": 64776, + "name": "6.6 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270037, + "fields": { + "id_car_serie": 64776, + "name": "7.0 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270038, + "fields": { + "id_car_serie": 64776, + "name": "7.0 MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270039, + "fields": { + "id_car_serie": 64777, + "name": "6.6 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270040, + "fields": { + "id_car_serie": 64777, + "name": "6.6 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270041, + "fields": { + "id_car_serie": 64777, + "name": "7.0 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270042, + "fields": { + "id_car_serie": 64777, + "name": "7.0 MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270043, + "fields": { + "id_car_serie": 64778, + "name": "6.6 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270044, + "fields": { + "id_car_serie": 64778, + "name": "6.6 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270045, + "fields": { + "id_car_serie": 64778, + "name": "7.0 MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270046, + "fields": { + "id_car_serie": 64778, + "name": "7.0 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270047, + "fields": { + "id_car_serie": 67629, + "name": "2.0 AMT 4WD (437 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270048, + "fields": { + "id_car_serie": 67629, + "name": "AT (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270049, + "fields": { + "id_car_serie": 67629, + "name": "AT 4WD (494 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270050, + "fields": { + "id_car_serie": 67630, + "name": "AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270051, + "fields": { + "id_car_serie": 67630, + "name": "AT 4WD (490 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270052, + "fields": { + "id_car_serie": 67630, + "name": "2.0 AMT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270053, + "fields": { + "id_car_serie": 67630, + "name": "2.0 AMT 4WD (437 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270054, + "fields": { + "id_car_serie": 67630, + "name": "2.0 AMT 4WD (586 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270055, + "fields": { + "id_car_serie": 67631, + "name": "2.0 AT 4WD (498 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270056, + "fields": { + "id_car_serie": 67631, + "name": "2.0 AT 4WD (551 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270057, + "fields": { + "id_car_serie": 67632, + "name": "AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270058, + "fields": { + "id_car_serie": 67632, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270059, + "fields": { + "id_car_serie": 67633, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270060, + "fields": { + "id_car_serie": 67633, + "name": "1.5 AMT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270061, + "fields": { + "id_car_serie": 67633, + "name": "1.5 AT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270062, + "fields": { + "id_car_serie": 67634, + "name": "AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270063, + "fields": { + "id_car_serie": 67635, + "name": "1.0 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270064, + "fields": { + "id_car_serie": 67636, + "name": "AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270065, + "fields": { + "id_car_serie": 67637, + "name": "AT (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270066, + "fields": { + "id_car_serie": 67637, + "name": "AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270067, + "fields": { + "id_car_serie": 67638, + "name": "6.4 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270068, + "fields": { + "id_car_serie": 67638, + "name": "6.8 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270069, + "fields": { + "id_car_serie": 67638, + "name": "6.8 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270070, + "fields": { + "id_car_serie": 67638, + "name": "7.2 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270071, + "fields": { + "id_car_serie": 67638, + "name": "7.2 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270072, + "fields": { + "id_car_serie": 67638, + "name": "7.2 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270073, + "fields": { + "id_car_serie": 67638, + "name": "7.2 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270074, + "fields": { + "id_car_serie": 67639, + "name": "6.4 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270075, + "fields": { + "id_car_serie": 67639, + "name": "6.8 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270076, + "fields": { + "id_car_serie": 67639, + "name": "6.8 AT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270077, + "fields": { + "id_car_serie": 67639, + "name": "7.2 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270078, + "fields": { + "id_car_serie": 67639, + "name": "7.2 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270079, + "fields": { + "id_car_serie": 67639, + "name": "7.2 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270080, + "fields": { + "id_car_serie": 67639, + "name": "7.2 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270081, + "fields": { + "id_car_serie": 67640, + "name": "2.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270082, + "fields": { + "id_car_serie": 67640, + "name": "2.5 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270083, + "fields": { + "id_car_serie": 67640, + "name": "2.5 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270084, + "fields": { + "id_car_serie": 67640, + "name": "3.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270085, + "fields": { + "id_car_serie": 67640, + "name": "3.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270086, + "fields": { + "id_car_serie": 67640, + "name": "3.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270087, + "fields": { + "id_car_serie": 50115, + "name": "3.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270088, + "fields": { + "id_car_serie": 67641, + "name": "3.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270089, + "fields": { + "id_car_serie": 67641, + "name": "3.6 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270090, + "fields": { + "id_car_serie": 67642, + "name": "3.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270091, + "fields": { + "id_car_serie": 67642, + "name": "3.6 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270092, + "fields": { + "id_car_serie": 67643, + "name": "3.3 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270093, + "fields": { + "id_car_serie": 67643, + "name": "3.6 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270094, + "fields": { + "id_car_serie": 67644, + "name": "1.0 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270095, + "fields": { + "id_car_serie": 67644, + "name": "1.3 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270096, + "fields": { + "id_car_serie": 67644, + "name": "1.3 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270097, + "fields": { + "id_car_serie": 67644, + "name": "1.3 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270098, + "fields": { + "id_car_serie": 67644, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270099, + "fields": { + "id_car_serie": 67644, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270100, + "fields": { + "id_car_serie": 67644, + "name": "1.5 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270101, + "fields": { + "id_car_serie": 67645, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270102, + "fields": { + "id_car_serie": 67646, + "name": "1.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270103, + "fields": { + "id_car_serie": 67646, + "name": "1.3 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270104, + "fields": { + "id_car_serie": 67646, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270105, + "fields": { + "id_car_serie": 67646, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270106, + "fields": { + "id_car_serie": 67646, + "name": "1.2 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270107, + "fields": { + "id_car_serie": 67646, + "name": "1.3 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270108, + "fields": { + "id_car_serie": 67646, + "name": "1.6 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270109, + "fields": { + "id_car_serie": 67646, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270110, + "fields": { + "id_car_serie": 67646, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270111, + "fields": { + "id_car_serie": 67647, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270112, + "fields": { + "id_car_serie": 67647, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270113, + "fields": { + "id_car_serie": 67647, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270114, + "fields": { + "id_car_serie": 67647, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270115, + "fields": { + "id_car_serie": 67648, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270116, + "fields": { + "id_car_serie": 67648, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270117, + "fields": { + "id_car_serie": 67649, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270118, + "fields": { + "id_car_serie": 67649, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270119, + "fields": { + "id_car_serie": 67649, + "name": "0.7 AT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270120, + "fields": { + "id_car_serie": 67649, + "name": "0.7 AT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270121, + "fields": { + "id_car_serie": 67649, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270122, + "fields": { + "id_car_serie": 64841, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270123, + "fields": { + "id_car_serie": 64841, + "name": "0.7 AT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270124, + "fields": { + "id_car_serie": 64841, + "name": "0.7 MT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270125, + "fields": { + "id_car_serie": 64841, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270126, + "fields": { + "id_car_serie": 64841, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270127, + "fields": { + "id_car_serie": 67650, + "name": "1.5 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270128, + "fields": { + "id_car_serie": 67650, + "name": "1.5 AT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270129, + "fields": { + "id_car_serie": 67651, + "name": "2.8 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270130, + "fields": { + "id_car_serie": 67651, + "name": "2.8 MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270131, + "fields": { + "id_car_serie": 67652, + "name": "7.6 AMT (990 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270134, + "fields": { + "id_car_serie": 63497, + "name": "5.3 MT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270135, + "fields": { + "id_car_serie": 63497, + "name": "5.3 AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270136, + "fields": { + "id_car_serie": 63497, + "name": "5.3 MT (289 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270137, + "fields": { + "id_car_serie": 63497, + "name": "5.3 AT (289 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270138, + "fields": { + "id_car_serie": 63497, + "name": "5.3 AT (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270139, + "fields": { + "id_car_serie": 63497, + "name": "5.3 MT (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270140, + "fields": { + "id_car_serie": 63497, + "name": "5.7 MT (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270141, + "fields": { + "id_car_serie": 63497, + "name": "5.7 AT (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270142, + "fields": { + "id_car_serie": 63497, + "name": "5.9 MT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270143, + "fields": { + "id_car_serie": 63497, + "name": "5.9 MT (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270144, + "fields": { + "id_car_serie": 63497, + "name": "5.9 AT (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270145, + "fields": { + "id_car_serie": 63497, + "name": "5.9 AT (338 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270146, + "fields": { + "id_car_serie": 64858, + "name": "5.3 MT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270147, + "fields": { + "id_car_serie": 64858, + "name": "5.3 AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270148, + "fields": { + "id_car_serie": 64858, + "name": "5.3 MT (289 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270149, + "fields": { + "id_car_serie": 64858, + "name": "5.3 AT (289 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270150, + "fields": { + "id_car_serie": 64858, + "name": "5.3 MT (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270151, + "fields": { + "id_car_serie": 64858, + "name": "5.3 AT (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270152, + "fields": { + "id_car_serie": 64858, + "name": "5.7 AT (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270153, + "fields": { + "id_car_serie": 64858, + "name": "5.7 MT (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270154, + "fields": { + "id_car_serie": 64858, + "name": "5.9 MT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270155, + "fields": { + "id_car_serie": 64858, + "name": "5.9 MT (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270156, + "fields": { + "id_car_serie": 64858, + "name": "5.9 AT (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270157, + "fields": { + "id_car_serie": 64858, + "name": "5.9 AT (338 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270158, + "fields": { + "id_car_serie": 67653, + "name": "4.4 MT (183 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270159, + "fields": { + "id_car_serie": 67653, + "name": "4.4 AT (183 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270160, + "fields": { + "id_car_serie": 67653, + "name": "4.4 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270161, + "fields": { + "id_car_serie": 67653, + "name": "4.4 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270162, + "fields": { + "id_car_serie": 67653, + "name": "5.2 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270163, + "fields": { + "id_car_serie": 67653, + "name": "5.2 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270164, + "fields": { + "id_car_serie": 67653, + "name": "5.2 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270165, + "fields": { + "id_car_serie": 67653, + "name": "5.2 MT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270166, + "fields": { + "id_car_serie": 67653, + "name": "5.2 MT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270167, + "fields": { + "id_car_serie": 67653, + "name": "5.2 AT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270168, + "fields": { + "id_car_serie": 67654, + "name": "4.4 MT (183 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270169, + "fields": { + "id_car_serie": 67654, + "name": "4.4 AT (183 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270170, + "fields": { + "id_car_serie": 67654, + "name": "4.4 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270171, + "fields": { + "id_car_serie": 67654, + "name": "4.4 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270172, + "fields": { + "id_car_serie": 67654, + "name": "5.2 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270173, + "fields": { + "id_car_serie": 67654, + "name": "5.2 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270174, + "fields": { + "id_car_serie": 67654, + "name": "5.2 MT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270175, + "fields": { + "id_car_serie": 67654, + "name": "5.2 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270176, + "fields": { + "id_car_serie": 67654, + "name": "5.2 MT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270177, + "fields": { + "id_car_serie": 67654, + "name": "5.2 AT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270178, + "fields": { + "id_car_serie": 67655, + "name": "4.4 MT (183 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270179, + "fields": { + "id_car_serie": 67655, + "name": "4.4 AT (183 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270180, + "fields": { + "id_car_serie": 67655, + "name": "4.4 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270181, + "fields": { + "id_car_serie": 67655, + "name": "4.4 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270182, + "fields": { + "id_car_serie": 67655, + "name": "5.2 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270183, + "fields": { + "id_car_serie": 67655, + "name": "5.2 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270184, + "fields": { + "id_car_serie": 67655, + "name": "5.2 AT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270185, + "fields": { + "id_car_serie": 67655, + "name": "5.2 MT (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270186, + "fields": { + "id_car_serie": 67655, + "name": "5.2 AT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270187, + "fields": { + "id_car_serie": 67655, + "name": "5.2 MT (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270188, + "fields": { + "id_car_serie": 67656, + "name": "5.2 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270189, + "fields": { + "id_car_serie": 67656, + "name": "5.2 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270190, + "fields": { + "id_car_serie": 67656, + "name": "5.2 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270191, + "fields": { + "id_car_serie": 67656, + "name": "5.9 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270192, + "fields": { + "id_car_serie": 67656, + "name": "5.9 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270193, + "fields": { + "id_car_serie": 67656, + "name": "5.9 AT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270194, + "fields": { + "id_car_serie": 67656, + "name": "5.9 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270195, + "fields": { + "id_car_serie": 67656, + "name": "5.9 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270196, + "fields": { + "id_car_serie": 67656, + "name": "6.6 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270197, + "fields": { + "id_car_serie": 67432, + "name": "5.9 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270198, + "fields": { + "id_car_serie": 67657, + "name": "6.3 MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270199, + "fields": { + "id_car_serie": 67657, + "name": "6.3 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270200, + "fields": { + "id_car_serie": 67657, + "name": "7.0 MT (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270201, + "fields": { + "id_car_serie": 67657, + "name": "7.0 AT (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270202, + "fields": { + "id_car_serie": 67657, + "name": "7.2 MT (396 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270203, + "fields": { + "id_car_serie": 67657, + "name": "7.2 AT (396 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270204, + "fields": { + "id_car_serie": 3228, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270205, + "fields": { + "id_car_serie": 3228, + "name": "1.5 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270206, + "fields": { + "id_car_serie": 63505, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270207, + "fields": { + "id_car_serie": 63505, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270208, + "fields": { + "id_car_serie": 63508, + "name": "2.5 MT (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270209, + "fields": { + "id_car_serie": 67658, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270210, + "fields": { + "id_car_serie": 67658, + "name": "1.6 AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270211, + "fields": { + "id_car_serie": 67658, + "name": "1.6 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270212, + "fields": { + "id_car_serie": 67658, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270213, + "fields": { + "id_car_serie": 67658, + "name": "1.6 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270214, + "fields": { + "id_car_serie": 67659, + "name": "1.6 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270215, + "fields": { + "id_car_serie": 67659, + "name": "1.6 AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270216, + "fields": { + "id_car_serie": 67660, + "name": "1.6 AMT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270217, + "fields": { + "id_car_serie": 67661, + "name": "3.0 AMT (830 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270218, + "fields": { + "id_car_serie": 63526, + "name": "1.4 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270219, + "fields": { + "id_car_serie": 47194, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270220, + "fields": { + "id_car_serie": 67662, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270221, + "fields": { + "id_car_serie": 67662, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270222, + "fields": { + "id_car_serie": 67662, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270223, + "fields": { + "id_car_serie": 67663, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270224, + "fields": { + "id_car_serie": 67663, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270225, + "fields": { + "id_car_serie": 67663, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270226, + "fields": { + "id_car_serie": 67664, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270227, + "fields": { + "id_car_serie": 67664, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270228, + "fields": { + "id_car_serie": 67664, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270229, + "fields": { + "id_car_serie": 67471, + "name": "3.5 AT 4WD (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270230, + "fields": { + "id_car_serie": 6126, + "name": "4.2 MT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270233, + "fields": { + "id_car_serie": 67665, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270234, + "fields": { + "id_car_serie": 67665, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270235, + "fields": { + "id_car_serie": 67665, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270236, + "fields": { + "id_car_serie": 67665, + "name": "1.5 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270237, + "fields": { + "id_car_serie": 67665, + "name": "1.6 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270238, + "fields": { + "id_car_serie": 67665, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270239, + "fields": { + "id_car_serie": 67434, + "name": "2.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270240, + "fields": { + "id_car_serie": 67434, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270241, + "fields": { + "id_car_serie": 67434, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270242, + "fields": { + "id_car_serie": 67434, + "name": "2.2 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270243, + "fields": { + "id_car_serie": 67434, + "name": "2.2 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270244, + "fields": { + "id_car_serie": 67435, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270245, + "fields": { + "id_car_serie": 67435, + "name": "2.0 AT 4WD (247 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270246, + "fields": { + "id_car_serie": 66971, + "name": "2.2 AT 4WD (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270247, + "fields": { + "id_car_serie": 66971, + "name": "2.5 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270248, + "fields": { + "id_car_serie": 66971, + "name": "3.5 AT 4WD (379 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270249, + "fields": { + "id_car_serie": 63536, + "name": "5.3 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270250, + "fields": { + "id_car_serie": 67666, + "name": "1.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270251, + "fields": { + "id_car_serie": 67666, + "name": "1.5 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270252, + "fields": { + "id_car_serie": 6251, + "name": "6.0 AT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270253, + "fields": { + "id_car_serie": 6251, + "name": "6.0 AT 4WD (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270254, + "fields": { + "id_car_serie": 67667, + "name": "0.3 MT (13 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270255, + "fields": { + "id_car_serie": 67667, + "name": "0.3 MT (15 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270256, + "fields": { + "id_car_serie": 67667, + "name": "0.4 MT (20 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270257, + "fields": { + "id_car_serie": 67668, + "name": "0.3 MT (13 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270258, + "fields": { + "id_car_serie": 67668, + "name": "0.3 MT (15 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270259, + "fields": { + "id_car_serie": 67668, + "name": "0.4 MT (20 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270260, + "fields": { + "id_car_serie": 67669, + "name": "7.0 MT (1244 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270261, + "fields": { + "id_car_serie": 67670, + "name": "7.0 MT (1244 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270262, + "fields": { + "id_car_serie": 67671, + "name": "6.2 AT (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270263, + "fields": { + "id_car_serie": 67671, + "name": "6.2 MT (442 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270264, + "fields": { + "id_car_serie": 67671, + "name": "6.2 AT (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270265, + "fields": { + "id_car_serie": 67671, + "name": "6.2 MT (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270266, + "fields": { + "id_car_serie": 67671, + "name": "6.2 MT (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270267, + "fields": { + "id_car_serie": 67671, + "name": "6.2 AT (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270268, + "fields": { + "id_car_serie": 67671, + "name": "6.2 MT (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270269, + "fields": { + "id_car_serie": 67671, + "name": "6.2 AT (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270270, + "fields": { + "id_car_serie": 67671, + "name": "6.2 MT (591 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270271, + "fields": { + "id_car_serie": 67671, + "name": "6.2 AT (591 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270272, + "fields": { + "id_car_serie": 66988, + "name": "1.6 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270273, + "fields": { + "id_car_serie": 66988, + "name": "1.6 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270274, + "fields": { + "id_car_serie": 64944, + "name": "2.5 AT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270275, + "fields": { + "id_car_serie": 64944, + "name": "2.5 MT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270276, + "fields": { + "id_car_serie": 64944, + "name": "2.5 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270277, + "fields": { + "id_car_serie": 64944, + "name": "2.5 MT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270278, + "fields": { + "id_car_serie": 64945, + "name": "2.5 AT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270279, + "fields": { + "id_car_serie": 64945, + "name": "2.5 MT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270280, + "fields": { + "id_car_serie": 64945, + "name": "2.5 MT 4WD (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270281, + "fields": { + "id_car_serie": 67672, + "name": "2.2 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270282, + "fields": { + "id_car_serie": 67672, + "name": "2.3 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270283, + "fields": { + "id_car_serie": 66980, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270284, + "fields": { + "id_car_serie": 66900, + "name": "MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270285, + "fields": { + "id_car_serie": 64955, + "name": "AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270286, + "fields": { + "id_car_serie": 67673, + "name": "AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270287, + "fields": { + "id_car_serie": 66957, + "name": "2.0 AT 4WD (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270288, + "fields": { + "id_car_serie": 66959, + "name": "2.0 AT (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270289, + "fields": { + "id_car_serie": 66959, + "name": "2.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270290, + "fields": { + "id_car_serie": 67674, + "name": "3.4 MT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270291, + "fields": { + "id_car_serie": 67675, + "name": "3.4 MT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270292, + "fields": { + "id_car_serie": 67676, + "name": "3.4 MT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270293, + "fields": { + "id_car_serie": 64966, + "name": "3.0 AT 4WD (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270294, + "fields": { + "id_car_serie": 67677, + "name": "3.6 AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270295, + "fields": { + "id_car_serie": 67677, + "name": "3.6 AT 4WD (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270296, + "fields": { + "id_car_serie": 67677, + "name": "5.7 AT 4WD (364 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270297, + "fields": { + "id_car_serie": 67678, + "name": "5.7 AT (397 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270298, + "fields": { + "id_car_serie": 67678, + "name": "5.7 AT 4WD (397 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270299, + "fields": { + "id_car_serie": 67678, + "name": "6.4 AT 4WD (477 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270300, + "fields": { + "id_car_serie": 67206, + "name": "1.0 AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270301, + "fields": { + "id_car_serie": 67521, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270302, + "fields": { + "id_car_serie": 67521, + "name": "2.0 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270303, + "fields": { + "id_car_serie": 67521, + "name": "2.5 AT 4WD (187 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270304, + "fields": { + "id_car_serie": 67679, + "name": "5.1 AMT (1280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270305, + "fields": { + "id_car_serie": 67679, + "name": "5.1 AMT (1602 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270306, + "fields": { + "id_car_serie": 63576, + "name": "2.0 MT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270307, + "fields": { + "id_car_serie": 67680, + "name": "6.5 AMT 4WD (814 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270308, + "fields": { + "id_car_serie": 67527, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270309, + "fields": { + "id_car_serie": 67681, + "name": "4.9 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270310, + "fields": { + "id_car_serie": 67681, + "name": "5.8 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270311, + "fields": { + "id_car_serie": 67682, + "name": "4.9 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270312, + "fields": { + "id_car_serie": 63604, + "name": "AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270313, + "fields": { + "id_car_serie": 67683, + "name": "3.5 MT (410 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270314, + "fields": { + "id_car_serie": 67683, + "name": "3.5 MT (430 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270315, + "fields": { + "id_car_serie": 67683, + "name": "3.5 MT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270316, + "fields": { + "id_car_serie": 67684, + "name": "3.5 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270317, + "fields": { + "id_car_serie": 67684, + "name": "3.5 AT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270318, + "fields": { + "id_car_serie": 63607, + "name": "AT (480 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270319, + "fields": { + "id_car_serie": 63607, + "name": "AT 4WD (620 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270320, + "fields": { + "id_car_serie": 63607, + "name": "AT 4WD (800 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270321, + "fields": { + "id_car_serie": 63607, + "name": "AT 4WD (933 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270322, + "fields": { + "id_car_serie": 63607, + "name": "AT 4WD (1111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270323, + "fields": { + "id_car_serie": 3632, + "name": "AT (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270324, + "fields": { + "id_car_serie": 67685, + "name": "1.6 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270325, + "fields": { + "id_car_serie": 67685, + "name": "2.2 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270326, + "fields": { + "id_car_serie": 67685, + "name": "2.2 MT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270327, + "fields": { + "id_car_serie": 67054, + "name": "2.2 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270328, + "fields": { + "id_car_serie": 6906, + "name": "2.1 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270329, + "fields": { + "id_car_serie": 10802, + "name": "2.1 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270330, + "fields": { + "id_car_serie": 14738, + "name": "2.0 AT (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270331, + "fields": { + "id_car_serie": 14738, + "name": "2.0 AT 4WD (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270332, + "fields": { + "id_car_serie": 14738, + "name": "2.0 AT (239 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270333, + "fields": { + "id_car_serie": 14738, + "name": "2.0 AT 4WD (239 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270334, + "fields": { + "id_car_serie": 67686, + "name": "0.2 MT (10 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270335, + "fields": { + "id_car_serie": 67687, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270336, + "fields": { + "id_car_serie": 67687, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270337, + "fields": { + "id_car_serie": 67687, + "name": "1.5 AMT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270338, + "fields": { + "id_car_serie": 67688, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270339, + "fields": { + "id_car_serie": 63188, + "name": "1.4 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270340, + "fields": { + "id_car_serie": 67259, + "name": "1.5 CVT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270341, + "fields": { + "id_car_serie": 67259, + "name": "1.5 CVT 4WD (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270342, + "fields": { + "id_car_serie": 3870, + "name": "2.5 AT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270343, + "fields": { + "id_car_serie": 3870, + "name": "2.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270344, + "fields": { + "id_car_serie": 67689, + "name": "7.6 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270345, + "fields": { + "id_car_serie": 67690, + "name": "1.6 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270346, + "fields": { + "id_car_serie": 67690, + "name": "1.6 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270347, + "fields": { + "id_car_serie": 67691, + "name": "2.4 AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270348, + "fields": { + "id_car_serie": 67692, + "name": "2.4 AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270349, + "fields": { + "id_car_serie": 67693, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270350, + "fields": { + "id_car_serie": 67693, + "name": "2.0 CVT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270351, + "fields": { + "id_car_serie": 67694, + "name": "AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270352, + "fields": { + "id_car_serie": 67695, + "name": "AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270353, + "fields": { + "id_car_serie": 67696, + "name": "AT 4WD (1914 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270354, + "fields": { + "id_car_serie": 67362, + "name": "AT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270355, + "fields": { + "id_car_serie": 67363, + "name": "AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270356, + "fields": { + "id_car_serie": 67697, + "name": "2.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270357, + "fields": { + "id_car_serie": 67697, + "name": "2.0 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270358, + "fields": { + "id_car_serie": 67697, + "name": "2.2 AT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270359, + "fields": { + "id_car_serie": 67697, + "name": "3.2 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270360, + "fields": { + "id_car_serie": 16982, + "name": "2.0 MT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270361, + "fields": { + "id_car_serie": 64444, + "name": "2.2 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270362, + "fields": { + "id_car_serie": 67698, + "name": "1.8 CVT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270363, + "fields": { + "id_car_serie": 67698, + "name": "2.4 CVT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270364, + "fields": { + "id_car_serie": 67699, + "name": "0.7 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270365, + "fields": { + "id_car_serie": 67699, + "name": "0.7 MT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270366, + "fields": { + "id_car_serie": 67699, + "name": "0.7 AT 4WD (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270367, + "fields": { + "id_car_serie": 67699, + "name": "0.7 AT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270368, + "fields": { + "id_car_serie": 67699, + "name": "0.7 AT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270369, + "fields": { + "id_car_serie": 67699, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270370, + "fields": { + "id_car_serie": 67699, + "name": "0.7 MT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270371, + "fields": { + "id_car_serie": 67700, + "name": "0.7 MT 4WD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270372, + "fields": { + "id_car_serie": 67700, + "name": "0.7 CVT 4WD (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270373, + "fields": { + "id_car_serie": 67700, + "name": "0.7 MT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270374, + "fields": { + "id_car_serie": 67700, + "name": "0.7 CVT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270375, + "fields": { + "id_car_serie": 67700, + "name": "0.7 MT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270376, + "fields": { + "id_car_serie": 67700, + "name": "0.7 CVT 4WD (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270377, + "fields": { + "id_car_serie": 67289, + "name": "1.6 CVT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270378, + "fields": { + "id_car_serie": 67289, + "name": "2.0 CVT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270379, + "fields": { + "id_car_serie": 67701, + "name": "2.4 MT 4WD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270380, + "fields": { + "id_car_serie": 67701, + "name": "2.4 CVT 4WD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270381, + "fields": { + "id_car_serie": 66902, + "name": "2.8 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270382, + "fields": { + "id_car_serie": 67702, + "name": "2.0 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270383, + "fields": { + "id_car_serie": 67702, + "name": "2.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270384, + "fields": { + "id_car_serie": 67702, + "name": "2.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270385, + "fields": { + "id_car_serie": 67702, + "name": "2.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270386, + "fields": { + "id_car_serie": 63334, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270387, + "fields": { + "id_car_serie": 64639, + "name": "2.0 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270388, + "fields": { + "id_car_serie": 66887, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270389, + "fields": { + "id_car_serie": 66887, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270390, + "fields": { + "id_car_serie": 67703, + "name": "2.0 MT (289 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270391, + "fields": { + "id_car_serie": 67703, + "name": "2.3 AMT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270392, + "fields": { + "id_car_serie": 67704, + "name": "5.8 AMT (1193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270393, + "fields": { + "id_car_serie": 67705, + "name": "1.1 MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270394, + "fields": { + "id_car_serie": 67705, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270395, + "fields": { + "id_car_serie": 67705, + "name": "1.2 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270396, + "fields": { + "id_car_serie": 67705, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270397, + "fields": { + "id_car_serie": 67705, + "name": "1.3 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270398, + "fields": { + "id_car_serie": 67705, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270399, + "fields": { + "id_car_serie": 67706, + "name": "1.1 MT (51 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270400, + "fields": { + "id_car_serie": 67706, + "name": "1.2 MT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270401, + "fields": { + "id_car_serie": 67706, + "name": "1.2 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270402, + "fields": { + "id_car_serie": 67706, + "name": "1.3 MT (63 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270403, + "fields": { + "id_car_serie": 67706, + "name": "1.3 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270404, + "fields": { + "id_car_serie": 67706, + "name": "1.2 MT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270405, + "fields": { + "id_car_serie": 67707, + "name": "0.1 MT (4 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270406, + "fields": { + "id_car_serie": 67708, + "name": "0.4 MT (8 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270407, + "fields": { + "id_car_serie": 67709, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270408, + "fields": { + "id_car_serie": 67096, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270409, + "fields": { + "id_car_serie": 67731, + "name": "1.3 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270410, + "fields": { + "id_car_serie": 67731, + "name": "1.3 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270411, + "fields": { + "id_car_serie": 67731, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270412, + "fields": { + "id_car_serie": 67731, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270413, + "fields": { + "id_car_serie": 67731, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270414, + "fields": { + "id_car_serie": 67731, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270415, + "fields": { + "id_car_serie": 67731, + "name": "1.5 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270416, + "fields": { + "id_car_serie": 67731, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270417, + "fields": { + "id_car_serie": 67731, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270418, + "fields": { + "id_car_serie": 67731, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270419, + "fields": { + "id_car_serie": 67731, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270420, + "fields": { + "id_car_serie": 67731, + "name": "1.5 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270421, + "fields": { + "id_car_serie": 67731, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270422, + "fields": { + "id_car_serie": 67731, + "name": "1.6 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270423, + "fields": { + "id_car_serie": 67731, + "name": "1.6 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270424, + "fields": { + "id_car_serie": 67731, + "name": "1.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270425, + "fields": { + "id_car_serie": 67731, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270426, + "fields": { + "id_car_serie": 67731, + "name": "1.6 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270427, + "fields": { + "id_car_serie": 67728, + "name": "1.5 CVT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270428, + "fields": { + "id_car_serie": 67728, + "name": "1.5 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270429, + "fields": { + "id_car_serie": 67728, + "name": "2.0 CVT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270430, + "fields": { + "id_car_serie": 67728, + "name": "2.0 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270431, + "fields": { + "id_car_serie": 2899, + "name": "2.0 AMT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270432, + "fields": { + "id_car_serie": 63837, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270433, + "fields": { + "id_car_serie": 63837, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270434, + "fields": { + "id_car_serie": 63838, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270435, + "fields": { + "id_car_serie": 63838, + "name": "2.0 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270436, + "fields": { + "id_car_serie": 63844, + "name": "3.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270437, + "fields": { + "id_car_serie": 67710, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270438, + "fields": { + "id_car_serie": 67710, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270439, + "fields": { + "id_car_serie": 67710, + "name": "4.0 AT 4WD (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270440, + "fields": { + "id_car_serie": 62726, + "name": "2.0 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270441, + "fields": { + "id_car_serie": 63849, + "name": "2.0 AMT 4WD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270442, + "fields": { + "id_car_serie": 63849, + "name": "2.0 AMT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270443, + "fields": { + "id_car_serie": 66965, + "name": "2.0 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270444, + "fields": { + "id_car_serie": 66965, + "name": "2.0 AMT 4WD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270445, + "fields": { + "id_car_serie": 67711, + "name": "4.2 AMT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270446, + "fields": { + "id_car_serie": 67735, + "name": "4.0 AT 4WD (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270447, + "fields": { + "id_car_serie": 66966, + "name": "3.0 AT 4WD (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270448, + "fields": { + "id_car_serie": 63727, + "name": "2.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270449, + "fields": { + "id_car_serie": 63874, + "name": "2.0 MT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270450, + "fields": { + "id_car_serie": 66904, + "name": "2.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270451, + "fields": { + "id_car_serie": 66904, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270452, + "fields": { + "id_car_serie": 66904, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270453, + "fields": { + "id_car_serie": 66904, + "name": "3.0 AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270454, + "fields": { + "id_car_serie": 67712, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270455, + "fields": { + "id_car_serie": 67712, + "name": "4.4 AT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270456, + "fields": { + "id_car_serie": 67713, + "name": "3.0 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270457, + "fields": { + "id_car_serie": 67713, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270458, + "fields": { + "id_car_serie": 67713, + "name": "4.4 AT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270459, + "fields": { + "id_car_serie": 67714, + "name": "3.0 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270460, + "fields": { + "id_car_serie": 67714, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270461, + "fields": { + "id_car_serie": 67714, + "name": "4.4 AT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270462, + "fields": { + "id_car_serie": 67715, + "name": "4.4 AT 4WD (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270463, + "fields": { + "id_car_serie": 67715, + "name": "4.4 AT 4WD (625 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270464, + "fields": { + "id_car_serie": 67716, + "name": "4.4 AT 4WD (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270465, + "fields": { + "id_car_serie": 67716, + "name": "4.4 AT 4WD (625 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270466, + "fields": { + "id_car_serie": 67717, + "name": "4.4 AT 4WD (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270467, + "fields": { + "id_car_serie": 67717, + "name": "4.4 AT 4WD (625 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270468, + "fields": { + "id_car_serie": 14923, + "name": "2.0 AT 4WD (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270469, + "fields": { + "id_car_serie": 14923, + "name": "3.6 AT 4WD (308 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270470, + "fields": { + "id_car_serie": 14921, + "name": "2.0 AT (227 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270471, + "fields": { + "id_car_serie": 14921, + "name": "2.0 AT 4WD (227 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270472, + "fields": { + "id_car_serie": 63892, + "name": "2.2 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270473, + "fields": { + "id_car_serie": 63892, + "name": "4.3 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270474, + "fields": { + "id_car_serie": 63892, + "name": "4.3 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270475, + "fields": { + "id_car_serie": 3034, + "name": "2.2 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270476, + "fields": { + "id_car_serie": 67718, + "name": "1.5 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270477, + "fields": { + "id_car_serie": 67718, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270478, + "fields": { + "id_car_serie": 63023, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270479, + "fields": { + "id_car_serie": 67719, + "name": "2.8 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270480, + "fields": { + "id_car_serie": 67719, + "name": "3.6 AT 4WD (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270481, + "fields": { + "id_car_serie": 67720, + "name": "3.6 AT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270482, + "fields": { + "id_car_serie": 67720, + "name": "3.6 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270483, + "fields": { + "id_car_serie": 67736, + "name": "AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270484, + "fields": { + "id_car_serie": 67737, + "name": "AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270485, + "fields": { + "id_car_serie": 67721, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270486, + "fields": { + "id_car_serie": 67721, + "name": "1.2 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270487, + "fields": { + "id_car_serie": 67721, + "name": "1.2 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270488, + "fields": { + "id_car_serie": 67721, + "name": "1.2 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270489, + "fields": { + "id_car_serie": 67721, + "name": "1.2 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270490, + "fields": { + "id_car_serie": 67721, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270491, + "fields": { + "id_car_serie": 67721, + "name": "1.5 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270492, + "fields": { + "id_car_serie": 63943, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270493, + "fields": { + "id_car_serie": 6128, + "name": "4.6 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270494, + "fields": { + "id_car_serie": 6128, + "name": "4.6 AT 4WD (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270495, + "fields": { + "id_car_serie": 6127, + "name": "4.6 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270496, + "fields": { + "id_car_serie": 6127, + "name": "4.6 AT 4WD (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270497, + "fields": { + "id_car_serie": 6129, + "name": "4.6 AT 4WD (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270498, + "fields": { + "id_car_serie": 67722, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270499, + "fields": { + "id_car_serie": 67722, + "name": "1.3 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270500, + "fields": { + "id_car_serie": 67722, + "name": "1.5 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270501, + "fields": { + "id_car_serie": 67722, + "name": "1.5 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270502, + "fields": { + "id_car_serie": 67722, + "name": "1.5 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270503, + "fields": { + "id_car_serie": 67722, + "name": "1.5 AT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270504, + "fields": { + "id_car_serie": 67722, + "name": "1.5 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270505, + "fields": { + "id_car_serie": 67722, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270506, + "fields": { + "id_car_serie": 67722, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270507, + "fields": { + "id_car_serie": 67722, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270508, + "fields": { + "id_car_serie": 67722, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270509, + "fields": { + "id_car_serie": 67722, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270510, + "fields": { + "id_car_serie": 67722, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270511, + "fields": { + "id_car_serie": 67723, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270512, + "fields": { + "id_car_serie": 67723, + "name": "1.3 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270513, + "fields": { + "id_car_serie": 67723, + "name": "1.5 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270514, + "fields": { + "id_car_serie": 67723, + "name": "1.5 AT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270515, + "fields": { + "id_car_serie": 67723, + "name": "1.5 MT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270516, + "fields": { + "id_car_serie": 67723, + "name": "1.5 AT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270517, + "fields": { + "id_car_serie": 67723, + "name": "1.5 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270518, + "fields": { + "id_car_serie": 67723, + "name": "1.5 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270519, + "fields": { + "id_car_serie": 67723, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270520, + "fields": { + "id_car_serie": 67723, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270521, + "fields": { + "id_car_serie": 67723, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270522, + "fields": { + "id_car_serie": 67723, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270523, + "fields": { + "id_car_serie": 67723, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270524, + "fields": { + "id_car_serie": 884, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270525, + "fields": { + "id_car_serie": 884, + "name": "1.5 AT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270526, + "fields": { + "id_car_serie": 67724, + "name": "2.0 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270527, + "fields": { + "id_car_serie": 67724, + "name": "2.5 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270528, + "fields": { + "id_car_serie": 67725, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270529, + "fields": { + "id_car_serie": 67725, + "name": "1.5 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270530, + "fields": { + "id_car_serie": 67725, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270531, + "fields": { + "id_car_serie": 67726, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270532, + "fields": { + "id_car_serie": 67726, + "name": "1.5 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270533, + "fields": { + "id_car_serie": 67726, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270534, + "fields": { + "id_car_serie": 67727, + "name": "1.5 CVT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270535, + "fields": { + "id_car_serie": 67727, + "name": "2.0 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270536, + "fields": { + "id_car_serie": 67727, + "name": "2.0 CVT (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270537, + "fields": { + "id_car_serie": 67729, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270538, + "fields": { + "id_car_serie": 67729, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270539, + "fields": { + "id_car_serie": 67729, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270540, + "fields": { + "id_car_serie": 67729, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270541, + "fields": { + "id_car_serie": 67729, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270542, + "fields": { + "id_car_serie": 67729, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270543, + "fields": { + "id_car_serie": 67729, + "name": "1.6 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270544, + "fields": { + "id_car_serie": 67729, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270545, + "fields": { + "id_car_serie": 67729, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270546, + "fields": { + "id_car_serie": 67729, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270547, + "fields": { + "id_car_serie": 67729, + "name": "1.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270548, + "fields": { + "id_car_serie": 67729, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270549, + "fields": { + "id_car_serie": 67729, + "name": "1.8 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270550, + "fields": { + "id_car_serie": 67729, + "name": "1.8 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270551, + "fields": { + "id_car_serie": 67729, + "name": "2.0 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270552, + "fields": { + "id_car_serie": 67729, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270553, + "fields": { + "id_car_serie": 67730, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270554, + "fields": { + "id_car_serie": 67730, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270555, + "fields": { + "id_car_serie": 67730, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270556, + "fields": { + "id_car_serie": 67730, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270557, + "fields": { + "id_car_serie": 67732, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270558, + "fields": { + "id_car_serie": 67732, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270559, + "fields": { + "id_car_serie": 67732, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270560, + "fields": { + "id_car_serie": 67732, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270561, + "fields": { + "id_car_serie": 67732, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270562, + "fields": { + "id_car_serie": 67732, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270563, + "fields": { + "id_car_serie": 67732, + "name": "1.5 CVT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270564, + "fields": { + "id_car_serie": 67732, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270565, + "fields": { + "id_car_serie": 67732, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270566, + "fields": { + "id_car_serie": 67732, + "name": "1.6 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270567, + "fields": { + "id_car_serie": 67732, + "name": "1.6 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270568, + "fields": { + "id_car_serie": 67732, + "name": "1.6 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270569, + "fields": { + "id_car_serie": 67732, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270570, + "fields": { + "id_car_serie": 67732, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270571, + "fields": { + "id_car_serie": 67732, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270572, + "fields": { + "id_car_serie": 67732, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270573, + "fields": { + "id_car_serie": 67732, + "name": "1.6 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270574, + "fields": { + "id_car_serie": 67732, + "name": "1.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270575, + "fields": { + "id_car_serie": 67732, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270576, + "fields": { + "id_car_serie": 67733, + "name": "1.4 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270577, + "fields": { + "id_car_serie": 67733, + "name": "1.4 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270578, + "fields": { + "id_car_serie": 67733, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270579, + "fields": { + "id_car_serie": 67733, + "name": "1.4 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270580, + "fields": { + "id_car_serie": 67733, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270581, + "fields": { + "id_car_serie": 67733, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270582, + "fields": { + "id_car_serie": 67733, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270583, + "fields": { + "id_car_serie": 67733, + "name": "1.6 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270584, + "fields": { + "id_car_serie": 67733, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270585, + "fields": { + "id_car_serie": 67733, + "name": "1.6 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270586, + "fields": { + "id_car_serie": 67733, + "name": "1.8 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270587, + "fields": { + "id_car_serie": 67733, + "name": "1.8 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270588, + "fields": { + "id_car_serie": 67733, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270589, + "fields": { + "id_car_serie": 67734, + "name": "3.5 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270590, + "fields": { + "id_car_serie": 67734, + "name": "3.5 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270591, + "fields": { + "id_car_serie": 67738, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270592, + "fields": { + "id_car_serie": 67738, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270593, + "fields": { + "id_car_serie": 67738, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270594, + "fields": { + "id_car_serie": 67738, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270595, + "fields": { + "id_car_serie": 67739, + "name": "2.5 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270596, + "fields": { + "id_car_serie": 67739, + "name": "3.5 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270597, + "fields": { + "id_car_serie": 67740, + "name": "2.4 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270598, + "fields": { + "id_car_serie": 67740, + "name": "2.5 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270599, + "fields": { + "id_car_serie": 67740, + "name": "3.3 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270600, + "fields": { + "id_car_serie": 67740, + "name": "3.0 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270601, + "fields": { + "id_car_serie": 67741, + "name": "2.2 AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270602, + "fields": { + "id_car_serie": 67741, + "name": "2.4 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270603, + "fields": { + "id_car_serie": 67741, + "name": "3.0 AT (266 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270604, + "fields": { + "id_car_serie": 67741, + "name": "3.3 AT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270605, + "fields": { + "id_car_serie": 67741, + "name": "2.4 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270606, + "fields": { + "id_car_serie": 67741, + "name": "3.0 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270607, + "fields": { + "id_car_serie": 67397, + "name": "3.5 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270608, + "fields": { + "id_car_serie": 67742, + "name": "2.2 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270609, + "fields": { + "id_car_serie": 67742, + "name": "2.2 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270610, + "fields": { + "id_car_serie": 67743, + "name": "2.0 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270611, + "fields": { + "id_car_serie": 67743, + "name": "2.0 AMT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270612, + "fields": { + "id_car_serie": 67744, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270613, + "fields": { + "id_car_serie": 67744, + "name": "1.6 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270614, + "fields": { + "id_car_serie": 67745, + "name": "2.5 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270615, + "fields": { + "id_car_serie": 67745, + "name": "2.5 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270616, + "fields": { + "id_car_serie": 67745, + "name": "2.5 AMT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270617, + "fields": { + "id_car_serie": 67745, + "name": "2.5 AMT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270618, + "fields": { + "id_car_serie": 67746, + "name": "5.6 AT 4WD (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270619, + "fields": { + "id_car_serie": 67747, + "name": "2.1 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270620, + "fields": { + "id_car_serie": 67747, + "name": "2.5 MT 4WD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270621, + "fields": { + "id_car_serie": 67747, + "name": "2.5 AT 4WD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270622, + "fields": { + "id_car_serie": 67747, + "name": "2.5 MT 4WD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270623, + "fields": { + "id_car_serie": 67747, + "name": "2.5 AT 4WD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270624, + "fields": { + "id_car_serie": 67747, + "name": "2.8 MT 4WD (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270625, + "fields": { + "id_car_serie": 67747, + "name": "2.8 AT 4WD (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270626, + "fields": { + "id_car_serie": 67747, + "name": "4.0 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270627, + "fields": { + "id_car_serie": 67747, + "name": "4.0 MT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270628, + "fields": { + "id_car_serie": 67747, + "name": "4.0 AT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270629, + "fields": { + "id_car_serie": 67747, + "name": "4.0 MT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270630, + "fields": { + "id_car_serie": 64099, + "name": "1.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270631, + "fields": { + "id_car_serie": 64099, + "name": "1.6 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270632, + "fields": { + "id_car_serie": 64099, + "name": "2.0 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270633, + "fields": { + "id_car_serie": 67748, + "name": "1.6 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270634, + "fields": { + "id_car_serie": 67748, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270635, + "fields": { + "id_car_serie": 67748, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270636, + "fields": { + "id_car_serie": 67748, + "name": "1.6 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270637, + "fields": { + "id_car_serie": 67748, + "name": "1.6 AMT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270638, + "fields": { + "id_car_serie": 67748, + "name": "1.6 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270639, + "fields": { + "id_car_serie": 67748, + "name": "1.6 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270640, + "fields": { + "id_car_serie": 67748, + "name": "1.6 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270641, + "fields": { + "id_car_serie": 67748, + "name": "1.6 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270642, + "fields": { + "id_car_serie": 67748, + "name": "1.6 AMT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270643, + "fields": { + "id_car_serie": 67748, + "name": "1.6 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270644, + "fields": { + "id_car_serie": 67748, + "name": "1.6 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270645, + "fields": { + "id_car_serie": 67748, + "name": "1.6 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270646, + "fields": { + "id_car_serie": 64119, + "name": "1.3 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270647, + "fields": { + "id_car_serie": 67749, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270648, + "fields": { + "id_car_serie": 67749, + "name": "1.6 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270649, + "fields": { + "id_car_serie": 67749, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270650, + "fields": { + "id_car_serie": 67750, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270651, + "fields": { + "id_car_serie": 67750, + "name": "1.6 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270652, + "fields": { + "id_car_serie": 67750, + "name": "1.8 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270653, + "fields": { + "id_car_serie": 67751, + "name": "1.8 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270654, + "fields": { + "id_car_serie": 67525, + "name": "2.5 AT 4WD (206 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270655, + "fields": { + "id_car_serie": 67525, + "name": "3.5 AT (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270656, + "fields": { + "id_car_serie": 67525, + "name": "2.5 CVT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270657, + "fields": { + "id_car_serie": 67527, + "name": "2.5 AT (244 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270658, + "fields": { + "id_car_serie": 67752, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270659, + "fields": { + "id_car_serie": 67752, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270660, + "fields": { + "id_car_serie": 67752, + "name": "2.2 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270661, + "fields": { + "id_car_serie": 67752, + "name": "2.2 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270662, + "fields": { + "id_car_serie": 67752, + "name": "2.2 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270663, + "fields": { + "id_car_serie": 67752, + "name": "2.2 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270664, + "fields": { + "id_car_serie": 67753, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270665, + "fields": { + "id_car_serie": 67753, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270666, + "fields": { + "id_car_serie": 67753, + "name": "2.2 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270667, + "fields": { + "id_car_serie": 67753, + "name": "2.2 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270668, + "fields": { + "id_car_serie": 67753, + "name": "2.2 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270669, + "fields": { + "id_car_serie": 67753, + "name": "2.2 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270670, + "fields": { + "id_car_serie": 67754, + "name": "2.0 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270671, + "fields": { + "id_car_serie": 67754, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270672, + "fields": { + "id_car_serie": 67754, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270673, + "fields": { + "id_car_serie": 54051, + "name": "2.5 AT (189 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270674, + "fields": { + "id_car_serie": 54051, + "name": "2.5 AT 4WD (189 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270675, + "fields": { + "id_car_serie": 54051, + "name": "2.5 AT 4WD (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270676, + "fields": { + "id_car_serie": 64167, + "name": "2.0 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270677, + "fields": { + "id_car_serie": 67755, + "name": "AT 4WD (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270678, + "fields": { + "id_car_serie": 67755, + "name": "AT 4WD (626 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270679, + "fields": { + "id_car_serie": 67755, + "name": "AT 4WD (687 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270680, + "fields": { + "id_car_serie": 63823, + "name": "6.3 AT 4WD (900 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270681, + "fields": { + "id_car_serie": 67756, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270682, + "fields": { + "id_car_serie": 67756, + "name": "2.1 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270683, + "fields": { + "id_car_serie": 67756, + "name": "2.1 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270684, + "fields": { + "id_car_serie": 67756, + "name": "2.1 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270685, + "fields": { + "id_car_serie": 67756, + "name": "2.1 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270686, + "fields": { + "id_car_serie": 67756, + "name": "2.1 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270687, + "fields": { + "id_car_serie": 67756, + "name": "2.1 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270688, + "fields": { + "id_car_serie": 67756, + "name": "2.1 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270689, + "fields": { + "id_car_serie": 67756, + "name": "2.0 AT (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270690, + "fields": { + "id_car_serie": 67756, + "name": "2.0 AT 4WD (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270691, + "fields": { + "id_car_serie": 67756, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270692, + "fields": { + "id_car_serie": 67756, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270693, + "fields": { + "id_car_serie": 67756, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270694, + "fields": { + "id_car_serie": 67756, + "name": "2.0 AT 4WD (239 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270695, + "fields": { + "id_car_serie": 67757, + "name": "2.1 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270696, + "fields": { + "id_car_serie": 67757, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270697, + "fields": { + "id_car_serie": 67757, + "name": "2.1 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270698, + "fields": { + "id_car_serie": 67757, + "name": "2.1 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270699, + "fields": { + "id_car_serie": 67757, + "name": "2.1 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270700, + "fields": { + "id_car_serie": 67757, + "name": "2.1 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270701, + "fields": { + "id_car_serie": 67757, + "name": "3.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270702, + "fields": { + "id_car_serie": 67757, + "name": "3.5 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270703, + "fields": { + "id_car_serie": 67758, + "name": "2.2 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270704, + "fields": { + "id_car_serie": 67758, + "name": "2.2 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270705, + "fields": { + "id_car_serie": 67758, + "name": "2.2 AT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270706, + "fields": { + "id_car_serie": 67758, + "name": "2.2 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270707, + "fields": { + "id_car_serie": 67758, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270708, + "fields": { + "id_car_serie": 67758, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270709, + "fields": { + "id_car_serie": 67758, + "name": "2.2 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270710, + "fields": { + "id_car_serie": 67758, + "name": "3.0 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270711, + "fields": { + "id_car_serie": 67758, + "name": "3.2 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270712, + "fields": { + "id_car_serie": 67758, + "name": "3.2 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270713, + "fields": { + "id_car_serie": 67758, + "name": "3.5 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270714, + "fields": { + "id_car_serie": 67758, + "name": "3.7 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270715, + "fields": { + "id_car_serie": 67759, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270716, + "fields": { + "id_car_serie": 67759, + "name": "2.3 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270717, + "fields": { + "id_car_serie": 67759, + "name": "2.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270718, + "fields": { + "id_car_serie": 67759, + "name": "2.3 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270719, + "fields": { + "id_car_serie": 46606, + "name": "2.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270720, + "fields": { + "id_car_serie": 46606, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270721, + "fields": { + "id_car_serie": 64212, + "name": "2.5 MT 4WD (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270722, + "fields": { + "id_car_serie": 63183, + "name": "2.0 AT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270723, + "fields": { + "id_car_serie": 63183, + "name": "2.0 MT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270724, + "fields": { + "id_car_serie": 67760, + "name": "2.4 MT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270725, + "fields": { + "id_car_serie": 67760, + "name": "2.4 AT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270726, + "fields": { + "id_car_serie": 67760, + "name": "3.0 AT 4WD (209 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270727, + "fields": { + "id_car_serie": 67761, + "name": "1.2 AT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270728, + "fields": { + "id_car_serie": 67762, + "name": "1.2 AT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270729, + "fields": { + "id_car_serie": 67154, + "name": "3.5 AT 4WD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270730, + "fields": { + "id_car_serie": 67763, + "name": "1.2 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270731, + "fields": { + "id_car_serie": 67763, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270732, + "fields": { + "id_car_serie": 67764, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270733, + "fields": { + "id_car_serie": 67764, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270734, + "fields": { + "id_car_serie": 67764, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270735, + "fields": { + "id_car_serie": 67764, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270736, + "fields": { + "id_car_serie": 67764, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270737, + "fields": { + "id_car_serie": 67764, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270738, + "fields": { + "id_car_serie": 67764, + "name": "2.8 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270739, + "fields": { + "id_car_serie": 67764, + "name": "2.8 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270740, + "fields": { + "id_car_serie": 67764, + "name": "3.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270741, + "fields": { + "id_car_serie": 67764, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270742, + "fields": { + "id_car_serie": 67765, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270743, + "fields": { + "id_car_serie": 67765, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270744, + "fields": { + "id_car_serie": 67765, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270745, + "fields": { + "id_car_serie": 67765, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270746, + "fields": { + "id_car_serie": 67765, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270747, + "fields": { + "id_car_serie": 67765, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270748, + "fields": { + "id_car_serie": 67765, + "name": "2.8 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270749, + "fields": { + "id_car_serie": 67765, + "name": "2.8 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270750, + "fields": { + "id_car_serie": 67765, + "name": "3.0 MT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270751, + "fields": { + "id_car_serie": 67765, + "name": "3.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270752, + "fields": { + "id_car_serie": 67766, + "name": "2.0 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270753, + "fields": { + "id_car_serie": 67766, + "name": "2.0 CVT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270754, + "fields": { + "id_car_serie": 67767, + "name": "2.0 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270755, + "fields": { + "id_car_serie": 67767, + "name": "2.0 CVT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270756, + "fields": { + "id_car_serie": 67768, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270757, + "fields": { + "id_car_serie": 67768, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270758, + "fields": { + "id_car_serie": 67768, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270759, + "fields": { + "id_car_serie": 67768, + "name": "1.5 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270760, + "fields": { + "id_car_serie": 67768, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270761, + "fields": { + "id_car_serie": 67768, + "name": "1.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270762, + "fields": { + "id_car_serie": 67768, + "name": "1.6 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270763, + "fields": { + "id_car_serie": 67769, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270764, + "fields": { + "id_car_serie": 67769, + "name": "2.9 AT 4WD (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270765, + "fields": { + "id_car_serie": 67769, + "name": "4.0 AT 4WD (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270766, + "fields": { + "id_car_serie": 67769, + "name": "4.0 AT 4WD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270767, + "fields": { + "id_car_serie": 67769, + "name": "4.0 AT 4WD (640 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270768, + "fields": { + "id_car_serie": 67769, + "name": "4.0 AT 4WD (680 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270769, + "fields": { + "id_car_serie": 63238, + "name": "4.0 AMT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270770, + "fields": { + "id_car_serie": 67770, + "name": "AT (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270771, + "fields": { + "id_car_serie": 67770, + "name": "AT (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270772, + "fields": { + "id_car_serie": 67770, + "name": "AT 4WD (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270773, + "fields": { + "id_car_serie": 67770, + "name": "AT 4WD (598 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270774, + "fields": { + "id_car_serie": 67770, + "name": "AT 4WD (680 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270775, + "fields": { + "id_car_serie": 67770, + "name": "AT 4WD (761 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270776, + "fields": { + "id_car_serie": 67771, + "name": "AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270777, + "fields": { + "id_car_serie": 67771, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270778, + "fields": { + "id_car_serie": 67772, + "name": "AT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270779, + "fields": { + "id_car_serie": 67773, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270780, + "fields": { + "id_car_serie": 67773, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270781, + "fields": { + "id_car_serie": 67773, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270782, + "fields": { + "id_car_serie": 67773, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270783, + "fields": { + "id_car_serie": 67773, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270784, + "fields": { + "id_car_serie": 67773, + "name": "2.0 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270785, + "fields": { + "id_car_serie": 67773, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270786, + "fields": { + "id_car_serie": 67773, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270787, + "fields": { + "id_car_serie": 67581, + "name": "2.7 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270788, + "fields": { + "id_car_serie": 67581, + "name": "2.7 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270789, + "fields": { + "id_car_serie": 67774, + "name": "2.8 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270790, + "fields": { + "id_car_serie": 67774, + "name": "2.8 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270791, + "fields": { + "id_car_serie": 64569, + "name": "2.5 AT (179 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270792, + "fields": { + "id_car_serie": 67775, + "name": "1.0 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270793, + "fields": { + "id_car_serie": 67775, + "name": "1.0 CVT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270794, + "fields": { + "id_car_serie": 67776, + "name": "2.0 CVT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270795, + "fields": { + "id_car_serie": 67776, + "name": "2.0 CVT 4WD (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270796, + "fields": { + "id_car_serie": 67776, + "name": "2.5 CVT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270797, + "fields": { + "id_car_serie": 67776, + "name": "2.5 CVT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270798, + "fields": { + "id_car_serie": 67777, + "name": "1.3 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270799, + "fields": { + "id_car_serie": 63336, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270800, + "fields": { + "id_car_serie": 10791, + "name": "1.9 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270801, + "fields": { + "id_car_serie": 67778, + "name": "AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270802, + "fields": { + "id_car_serie": 67778, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270803, + "fields": { + "id_car_serie": 67778, + "name": "AT 4WD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270804, + "fields": { + "id_car_serie": 67779, + "name": "AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270805, + "fields": { + "id_car_serie": 67779, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270806, + "fields": { + "id_car_serie": 67779, + "name": "AT 4WD (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270807, + "fields": { + "id_car_serie": 67780, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270808, + "fields": { + "id_car_serie": 67780, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270809, + "fields": { + "id_car_serie": 67780, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270810, + "fields": { + "id_car_serie": 67780, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270811, + "fields": { + "id_car_serie": 67780, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270812, + "fields": { + "id_car_serie": 67780, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270813, + "fields": { + "id_car_serie": 67780, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270814, + "fields": { + "id_car_serie": 67781, + "name": "2.0 AMT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270815, + "fields": { + "id_car_serie": 67782, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270816, + "fields": { + "id_car_serie": 67782, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270817, + "fields": { + "id_car_serie": 67782, + "name": "1.0 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270818, + "fields": { + "id_car_serie": 67782, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270819, + "fields": { + "id_car_serie": 67783, + "name": "1.3 AT 4WD (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270820, + "fields": { + "id_car_serie": 67783, + "name": "1.5 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270821, + "fields": { + "id_car_serie": 67783, + "name": "1.5 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270822, + "fields": { + "id_car_serie": 67783, + "name": "2.0 AT 4WD (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270823, + "fields": { + "id_car_serie": 67783, + "name": "1.6 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270824, + "fields": { + "id_car_serie": 67622, + "name": "2.0 AMT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270825, + "fields": { + "id_car_serie": 67784, + "name": "3.7 AT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270826, + "fields": { + "id_car_serie": 67784, + "name": "3.7 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270827, + "fields": { + "id_car_serie": 67785, + "name": "1.2 CVT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270828, + "fields": { + "id_car_serie": 67785, + "name": "1.3 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270829, + "fields": { + "id_car_serie": 67785, + "name": "1.3 CVT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270830, + "fields": { + "id_car_serie": 67786, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270831, + "fields": { + "id_car_serie": 67786, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270832, + "fields": { + "id_car_serie": 67786, + "name": "1.5 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270833, + "fields": { + "id_car_serie": 67786, + "name": "1.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270834, + "fields": { + "id_car_serie": 67786, + "name": "1.5 AMT 4WD (324 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270835, + "fields": { + "id_car_serie": 67786, + "name": "1.5 AMT 4WD (473 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270836, + "fields": { + "id_car_serie": 67632, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270837, + "fields": { + "id_car_serie": 67632, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270838, + "fields": { + "id_car_serie": 63418, + "name": "3.6 MT (479 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270839, + "fields": { + "id_car_serie": 63418, + "name": "3.6 AT (479 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270840, + "fields": { + "id_car_serie": 63419, + "name": "6.2 MT (677 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270841, + "fields": { + "id_car_serie": 63419, + "name": "6.2 AT (677 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270842, + "fields": { + "id_car_serie": 67787, + "name": "1.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270843, + "fields": { + "id_car_serie": 67787, + "name": "1.0 CVT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270844, + "fields": { + "id_car_serie": 67787, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270845, + "fields": { + "id_car_serie": 67787, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270846, + "fields": { + "id_car_serie": 67788, + "name": "1.5 AMT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270847, + "fields": { + "id_car_serie": 67789, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270848, + "fields": { + "id_car_serie": 67789, + "name": "AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270849, + "fields": { + "id_car_serie": 67789, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270850, + "fields": { + "id_car_serie": 67790, + "name": "5.3 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270851, + "fields": { + "id_car_serie": 67791, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270852, + "fields": { + "id_car_serie": 67792, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270853, + "fields": { + "id_car_serie": 67793, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270854, + "fields": { + "id_car_serie": 67793, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270855, + "fields": { + "id_car_serie": 67793, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270856, + "fields": { + "id_car_serie": 67793, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270857, + "fields": { + "id_car_serie": 45250, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270858, + "fields": { + "id_car_serie": 45250, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270859, + "fields": { + "id_car_serie": 45250, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270860, + "fields": { + "id_car_serie": 45250, + "name": "2.0 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270861, + "fields": { + "id_car_serie": 45250, + "name": "1.6 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270862, + "fields": { + "id_car_serie": 45250, + "name": "1.6 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270863, + "fields": { + "id_car_serie": 64873, + "name": "1.6 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270864, + "fields": { + "id_car_serie": 67794, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270865, + "fields": { + "id_car_serie": 67795, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270866, + "fields": { + "id_car_serie": 67795, + "name": "1.5 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270867, + "fields": { + "id_car_serie": 67795, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270868, + "fields": { + "id_car_serie": 67796, + "name": "2.0 AMT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270869, + "fields": { + "id_car_serie": 67796, + "name": "2.0 AMT 4WD (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270870, + "fields": { + "id_car_serie": 67797, + "name": "4.8 MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270871, + "fields": { + "id_car_serie": 67797, + "name": "4.8 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270872, + "fields": { + "id_car_serie": 67798, + "name": "1.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270873, + "fields": { + "id_car_serie": 67798, + "name": "1.5 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270874, + "fields": { + "id_car_serie": 67798, + "name": "1.2 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270875, + "fields": { + "id_car_serie": 67798, + "name": "1.2 AMT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270876, + "fields": { + "id_car_serie": 67799, + "name": "6.5 AMT (840 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270877, + "fields": { + "id_car_serie": 67387, + "name": "1.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270878, + "fields": { + "id_car_serie": 64914, + "name": "1.5 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270879, + "fields": { + "id_car_serie": 67434, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270880, + "fields": { + "id_car_serie": 67434, + "name": "2.0 AT 4WD (247 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270881, + "fields": { + "id_car_serie": 67802, + "name": "2.0 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270882, + "fields": { + "id_car_serie": 67802, + "name": "2.0 AT 4WD (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270883, + "fields": { + "id_car_serie": 67802, + "name": "2.5 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270884, + "fields": { + "id_car_serie": 67802, + "name": "3.7 AT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270885, + "fields": { + "id_car_serie": 67802, + "name": "3.7 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270886, + "fields": { + "id_car_serie": 67803, + "name": "4.3 AT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270887, + "fields": { + "id_car_serie": 67803, + "name": "4.3 MT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270888, + "fields": { + "id_car_serie": 67804, + "name": "AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270889, + "fields": { + "id_car_serie": 67804, + "name": "AT 4WD (551 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270890, + "fields": { + "id_car_serie": 67805, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270891, + "fields": { + "id_car_serie": 67805, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270892, + "fields": { + "id_car_serie": 67806, + "name": "3.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270893, + "fields": { + "id_car_serie": 67807, + "name": "7.6 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270894, + "fields": { + "id_car_serie": 67353, + "name": "2.0 AT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270895, + "fields": { + "id_car_serie": 67808, + "name": "3.8 AMT (570 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270896, + "fields": { + "id_car_serie": 67809, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270897, + "fields": { + "id_car_serie": 67809, + "name": "2.5 CVT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270898, + "fields": { + "id_car_serie": 67809, + "name": "1.8 CVT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270899, + "fields": { + "id_car_serie": 67809, + "name": "2.0 CVT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270900, + "fields": { + "id_car_serie": 54053, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270901, + "fields": { + "id_car_serie": 67810, + "name": "5.7 MT (608 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270902, + "fields": { + "id_car_serie": 14605, + "name": "5.7 MT (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270903, + "fields": { + "id_car_serie": 67811, + "name": "6.2 MT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270904, + "fields": { + "id_car_serie": 67811, + "name": "6.2 MT (1200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270905, + "fields": { + "id_car_serie": 67710, + "name": "3.0 AT 4WD (462 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270906, + "fields": { + "id_car_serie": 47590, + "name": "4.2 AMT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270907, + "fields": { + "id_car_serie": 67370, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270908, + "fields": { + "id_car_serie": 67460, + "name": "2.0 AMT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270909, + "fields": { + "id_car_serie": 67371, + "name": "2.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270910, + "fields": { + "id_car_serie": 67371, + "name": "3.0 AT 4WD (387 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270911, + "fields": { + "id_car_serie": 67371, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270912, + "fields": { + "id_car_serie": 67375, + "name": "AT 4WD (540 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270913, + "fields": { + "id_car_serie": 67812, + "name": "1.5 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270914, + "fields": { + "id_car_serie": 67812, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270915, + "fields": { + "id_car_serie": 67812, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270916, + "fields": { + "id_car_serie": 67812, + "name": "1.5 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270917, + "fields": { + "id_car_serie": 67813, + "name": "3.5 AT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270918, + "fields": { + "id_car_serie": 67813, + "name": "3.5 AT 4WD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270919, + "fields": { + "id_car_serie": 67813, + "name": "3.5 AT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270920, + "fields": { + "id_car_serie": 67813, + "name": "3.5 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270921, + "fields": { + "id_car_serie": 67813, + "name": "3.5 AT (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270922, + "fields": { + "id_car_serie": 67813, + "name": "3.5 AT 4WD (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270923, + "fields": { + "id_car_serie": 67814, + "name": "2.3 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270924, + "fields": { + "id_car_serie": 67814, + "name": "2.3 AMT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270925, + "fields": { + "id_car_serie": 45692, + "name": "1.5 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270926, + "fields": { + "id_car_serie": 45692, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270927, + "fields": { + "id_car_serie": 45692, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270928, + "fields": { + "id_car_serie": 45692, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270929, + "fields": { + "id_car_serie": 45692, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270930, + "fields": { + "id_car_serie": 67815, + "name": "1.5 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270931, + "fields": { + "id_car_serie": 67815, + "name": "1.5 AMT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270932, + "fields": { + "id_car_serie": 67815, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270933, + "fields": { + "id_car_serie": 67815, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270934, + "fields": { + "id_car_serie": 67815, + "name": "2.0 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270935, + "fields": { + "id_car_serie": 67815, + "name": "2.0 MT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270936, + "fields": { + "id_car_serie": 67816, + "name": "1.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270937, + "fields": { + "id_car_serie": 67800, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270938, + "fields": { + "id_car_serie": 67817, + "name": "2.0 AMT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270939, + "fields": { + "id_car_serie": 67817, + "name": "2.0 AMT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270940, + "fields": { + "id_car_serie": 63076, + "name": "1.5 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270941, + "fields": { + "id_car_serie": 63076, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270942, + "fields": { + "id_car_serie": 67818, + "name": "0.7 CVT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270943, + "fields": { + "id_car_serie": 67818, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270944, + "fields": { + "id_car_serie": 67818, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270945, + "fields": { + "id_car_serie": 67818, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270946, + "fields": { + "id_car_serie": 6440, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270947, + "fields": { + "id_car_serie": 6440, + "name": "1.5 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270948, + "fields": { + "id_car_serie": 6440, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270949, + "fields": { + "id_car_serie": 6440, + "name": "1.5 AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270950, + "fields": { + "id_car_serie": 6440, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270951, + "fields": { + "id_car_serie": 6440, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270952, + "fields": { + "id_car_serie": 67819, + "name": "1.6 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270953, + "fields": { + "id_car_serie": 67819, + "name": "2.5 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270954, + "fields": { + "id_car_serie": 67819, + "name": "3.5 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270955, + "fields": { + "id_car_serie": 67819, + "name": "3.5 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270956, + "fields": { + "id_car_serie": 67819, + "name": "3.5 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270957, + "fields": { + "id_car_serie": 6919, + "name": "1.6 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270958, + "fields": { + "id_car_serie": 6919, + "name": "1.6 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270959, + "fields": { + "id_car_serie": 8814, + "name": "5.5 AT (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270960, + "fields": { + "id_car_serie": 66855, + "name": "6.0 AT 4WD (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270961, + "fields": { + "id_car_serie": 8833, + "name": "3.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270962, + "fields": { + "id_car_serie": 8833, + "name": "4.7 AT 4WD (456 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270963, + "fields": { + "id_car_serie": 47496, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270964, + "fields": { + "id_car_serie": 67405, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270965, + "fields": { + "id_car_serie": 45434, + "name": "2.4 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270966, + "fields": { + "id_car_serie": 45434, + "name": "2.4 MT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270967, + "fields": { + "id_car_serie": 1739, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270968, + "fields": { + "id_car_serie": 1739, + "name": "1.3 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270969, + "fields": { + "id_car_serie": 1739, + "name": "1.5 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270970, + "fields": { + "id_car_serie": 1739, + "name": "1.5 AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270971, + "fields": { + "id_car_serie": 1739, + "name": "2.0 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270972, + "fields": { + "id_car_serie": 1739, + "name": "2.0 MT 4WD (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270973, + "fields": { + "id_car_serie": 67820, + "name": "2.4 AT 4WD (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270974, + "fields": { + "id_car_serie": 67820, + "name": "2.5 CVT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270975, + "fields": { + "id_car_serie": 67820, + "name": "2.5 CVT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270976, + "fields": { + "id_car_serie": 45190, + "name": "2.5 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270977, + "fields": { + "id_car_serie": 63187, + "name": "3.5 CVT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270978, + "fields": { + "id_car_serie": 3892, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270979, + "fields": { + "id_car_serie": 67821, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270980, + "fields": { + "id_car_serie": 67821, + "name": "1.3 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270981, + "fields": { + "id_car_serie": 67821, + "name": "1.3 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270982, + "fields": { + "id_car_serie": 67821, + "name": "1.3 CVT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270983, + "fields": { + "id_car_serie": 67821, + "name": "1.2 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270984, + "fields": { + "id_car_serie": 67822, + "name": "AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270985, + "fields": { + "id_car_serie": 67822, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270986, + "fields": { + "id_car_serie": 67823, + "name": "AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270987, + "fields": { + "id_car_serie": 67823, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270988, + "fields": { + "id_car_serie": 67823, + "name": "AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270989, + "fields": { + "id_car_serie": 67824, + "name": "AT 4WD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270990, + "fields": { + "id_car_serie": 64515, + "name": "1.8 MT (164 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270991, + "fields": { + "id_car_serie": 64515, + "name": "1.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270992, + "fields": { + "id_car_serie": 67825, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270993, + "fields": { + "id_car_serie": 49728, + "name": "1.9 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270994, + "fields": { + "id_car_serie": 49728, + "name": "1.9 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270995, + "fields": { + "id_car_serie": 49728, + "name": "2.0 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270996, + "fields": { + "id_car_serie": 67826, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270997, + "fields": { + "id_car_serie": 67827, + "name": "1.6 MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270998, + "fields": { + "id_car_serie": 67827, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 270999, + "fields": { + "id_car_serie": 67827, + "name": "1.7 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271000, + "fields": { + "id_car_serie": 67827, + "name": "1.8 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271001, + "fields": { + "id_car_serie": 67827, + "name": "2.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271002, + "fields": { + "id_car_serie": 67828, + "name": "1.6 MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271003, + "fields": { + "id_car_serie": 67828, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271004, + "fields": { + "id_car_serie": 67828, + "name": "1.7 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271005, + "fields": { + "id_car_serie": 67828, + "name": "1.8 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271006, + "fields": { + "id_car_serie": 67828, + "name": "2.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271007, + "fields": { + "id_car_serie": 45950, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271008, + "fields": { + "id_car_serie": 67829, + "name": "1.6 MT (47 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271009, + "fields": { + "id_car_serie": 67829, + "name": "1.6 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271010, + "fields": { + "id_car_serie": 67829, + "name": "1.7 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271011, + "fields": { + "id_car_serie": 67829, + "name": "1.8 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271012, + "fields": { + "id_car_serie": 67829, + "name": "2.0 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271013, + "fields": { + "id_car_serie": 67830, + "name": "1.1 MT (25 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271014, + "fields": { + "id_car_serie": 67830, + "name": "1.2 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271015, + "fields": { + "id_car_serie": 67830, + "name": "1.2 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271016, + "fields": { + "id_car_serie": 67830, + "name": "1.5 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271017, + "fields": { + "id_car_serie": 67830, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271018, + "fields": { + "id_car_serie": 67831, + "name": "1.1 MT (25 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271019, + "fields": { + "id_car_serie": 67831, + "name": "1.2 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271020, + "fields": { + "id_car_serie": 67831, + "name": "1.2 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271021, + "fields": { + "id_car_serie": 67831, + "name": "1.5 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271022, + "fields": { + "id_car_serie": 67831, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271023, + "fields": { + "id_car_serie": 45951, + "name": "1.2 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271024, + "fields": { + "id_car_serie": 45951, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271025, + "fields": { + "id_car_serie": 67832, + "name": "1.1 MT (25 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271026, + "fields": { + "id_car_serie": 67832, + "name": "1.2 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271027, + "fields": { + "id_car_serie": 67832, + "name": "1.2 MT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271028, + "fields": { + "id_car_serie": 67832, + "name": "1.5 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271029, + "fields": { + "id_car_serie": 67832, + "name": "1.5 MT (44 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271030, + "fields": { + "id_car_serie": 67833, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271031, + "fields": { + "id_car_serie": 67833, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271032, + "fields": { + "id_car_serie": 67833, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271033, + "fields": { + "id_car_serie": 67834, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271034, + "fields": { + "id_car_serie": 67834, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271035, + "fields": { + "id_car_serie": 67834, + "name": "AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271036, + "fields": { + "id_car_serie": 67835, + "name": "AT (39 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271037, + "fields": { + "id_car_serie": 67836, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271038, + "fields": { + "id_car_serie": 67836, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271039, + "fields": { + "id_car_serie": 67836, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271040, + "fields": { + "id_car_serie": 67836, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271041, + "fields": { + "id_car_serie": 67836, + "name": "1.5 AMT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271042, + "fields": { + "id_car_serie": 67836, + "name": "1.5 MT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271043, + "fields": { + "id_car_serie": 67836, + "name": "1.5 AMT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271044, + "fields": { + "id_car_serie": 67836, + "name": "1.5 AMT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271045, + "fields": { + "id_car_serie": 67836, + "name": "1.5 AMT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271046, + "fields": { + "id_car_serie": 67836, + "name": "1.5 AMT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271047, + "fields": { + "id_car_serie": 67836, + "name": "1.5 AMT (307 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271049, + "fields": { + "id_car_serie": 67801, + "name": "3.5 AT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271050, + "fields": { + "id_car_serie": 67801, + "name": "3.5 AT 4WD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271051, + "fields": { + "id_car_serie": 67801, + "name": "3.5 AT 4WD (415 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271052, + "fields": { + "id_car_serie": 67837, + "name": "AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271053, + "fields": { + "id_car_serie": 67837, + "name": "AT 4WD (318 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271054, + "fields": { + "id_car_serie": 67837, + "name": "AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271055, + "fields": { + "id_car_serie": 67838, + "name": "1.6 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271056, + "fields": { + "id_car_serie": 67838, + "name": "1.6 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271057, + "fields": { + "id_car_serie": 67838, + "name": "1.6 AMT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271058, + "fields": { + "id_car_serie": 67747, + "name": "2.5 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271059, + "fields": { + "id_car_serie": 67747, + "name": "2.5 MT 4WD (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271060, + "fields": { + "id_car_serie": 67747, + "name": "2.5 AT 4WD (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271061, + "fields": { + "id_car_serie": 67747, + "name": "4.0 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271062, + "fields": { + "id_car_serie": 67747, + "name": "4.0 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271063, + "fields": { + "id_car_serie": 67747, + "name": "4.0 MT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271064, + "fields": { + "id_car_serie": 67839, + "name": "2.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271065, + "fields": { + "id_car_serie": 67839, + "name": "2.5 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271066, + "fields": { + "id_car_serie": 67839, + "name": "2.5 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271067, + "fields": { + "id_car_serie": 67839, + "name": "2.5 AT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271068, + "fields": { + "id_car_serie": 67839, + "name": "2.5 MT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271069, + "fields": { + "id_car_serie": 67839, + "name": "2.5 AT (93 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271070, + "fields": { + "id_car_serie": 67839, + "name": "2.8 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271071, + "fields": { + "id_car_serie": 67839, + "name": "2.8 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271072, + "fields": { + "id_car_serie": 67839, + "name": "2.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271073, + "fields": { + "id_car_serie": 67839, + "name": "2.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271074, + "fields": { + "id_car_serie": 67839, + "name": "2.8 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271075, + "fields": { + "id_car_serie": 67839, + "name": "2.8 AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271076, + "fields": { + "id_car_serie": 67840, + "name": "AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271077, + "fields": { + "id_car_serie": 53967, + "name": "AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271078, + "fields": { + "id_car_serie": 67841, + "name": "2.2 AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271079, + "fields": { + "id_car_serie": 67841, + "name": "2.2 AT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271080, + "fields": { + "id_car_serie": 67842, + "name": "1.5 MT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271081, + "fields": { + "id_car_serie": 67842, + "name": "1.5 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271082, + "fields": { + "id_car_serie": 67843, + "name": "1.3 MT (62 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271083, + "fields": { + "id_car_serie": 67844, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271084, + "fields": { + "id_car_serie": 67845, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271085, + "fields": { + "id_car_serie": 4573, + "name": "2.7 MT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271086, + "fields": { + "id_car_serie": 67846, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271087, + "fields": { + "id_car_serie": 67846, + "name": "1.6 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271088, + "fields": { + "id_car_serie": 67846, + "name": "2.3 MT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271089, + "fields": { + "id_car_serie": 66904, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271090, + "fields": { + "id_car_serie": 70421, + "name": "3.0 AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271091, + "fields": { + "id_car_serie": 70421, + "name": "3.0 AT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271092, + "fields": { + "id_car_serie": 70421, + "name": "4.4 AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271093, + "fields": { + "id_car_serie": 67712, + "name": "3.0 AT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271094, + "fields": { + "id_car_serie": 67713, + "name": "3.0 AT (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271095, + "fields": { + "id_car_serie": 70422, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271096, + "fields": { + "id_car_serie": 70422, + "name": "3.0 AT 4WD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271097, + "fields": { + "id_car_serie": 70422, + "name": "4.4 AT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271098, + "fields": { + "id_car_serie": 70423, + "name": "AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271099, + "fields": { + "id_car_serie": 70424, + "name": "2.0 AMT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271100, + "fields": { + "id_car_serie": 70425, + "name": "1.4 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271101, + "fields": { + "id_car_serie": 70425, + "name": "1.4 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271102, + "fields": { + "id_car_serie": 70426, + "name": "1.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271103, + "fields": { + "id_car_serie": 70427, + "name": "1.2 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271104, + "fields": { + "id_car_serie": 70427, + "name": "1.2 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271105, + "fields": { + "id_car_serie": 70427, + "name": "1.5 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271106, + "fields": { + "id_car_serie": 70427, + "name": "1.5 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271107, + "fields": { + "id_car_serie": 70427, + "name": "1.6 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271108, + "fields": { + "id_car_serie": 70428, + "name": "1.2 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271109, + "fields": { + "id_car_serie": 70428, + "name": "1.6 AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271110, + "fields": { + "id_car_serie": 70428, + "name": "1.6 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271111, + "fields": { + "id_car_serie": 70429, + "name": "3.0 AT 4WD (405 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271112, + "fields": { + "id_car_serie": 67472, + "name": "1.1 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271113, + "fields": { + "id_car_serie": 67473, + "name": "1.1 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271114, + "fields": { + "id_car_serie": 70430, + "name": "2.3 AMT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271115, + "fields": { + "id_car_serie": 70430, + "name": "2.3 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271116, + "fields": { + "id_car_serie": 70431, + "name": "2.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271117, + "fields": { + "id_car_serie": 70431, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271118, + "fields": { + "id_car_serie": 70431, + "name": "2.5 CVT (191 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271119, + "fields": { + "id_car_serie": 70432, + "name": "1.4 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271120, + "fields": { + "id_car_serie": 70432, + "name": "1.8 MT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271121, + "fields": { + "id_car_serie": 70432, + "name": "1.8 AT (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271122, + "fields": { + "id_car_serie": 70432, + "name": "2.0 MT 4WD (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271123, + "fields": { + "id_car_serie": 70432, + "name": "2.0 AT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271124, + "fields": { + "id_car_serie": 70432, + "name": "2.2 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271125, + "fields": { + "id_car_serie": 70433, + "name": "1.6 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271126, + "fields": { + "id_car_serie": 70434, + "name": "1.5 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271127, + "fields": { + "id_car_serie": 70435, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271128, + "fields": { + "id_car_serie": 66969, + "name": "2.0 CVT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271129, + "fields": { + "id_car_serie": 66969, + "name": "2.0 CVT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271130, + "fields": { + "id_car_serie": 67730, + "name": "1.6 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271131, + "fields": { + "id_car_serie": 70436, + "name": "1.5 CVT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271132, + "fields": { + "id_car_serie": 70436, + "name": "1.8 CVT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271133, + "fields": { + "id_car_serie": 70436, + "name": "1.8 CVT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271134, + "fields": { + "id_car_serie": 70437, + "name": "1.5 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271135, + "fields": { + "id_car_serie": 70437, + "name": "1.5 AMT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271136, + "fields": { + "id_car_serie": 70437, + "name": "1.5 CVT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271137, + "fields": { + "id_car_serie": 70437, + "name": "1.5 CVT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271138, + "fields": { + "id_car_serie": 70438, + "name": "0.7 CVT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271139, + "fields": { + "id_car_serie": 70438, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271140, + "fields": { + "id_car_serie": 70438, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271141, + "fields": { + "id_car_serie": 70438, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271142, + "fields": { + "id_car_serie": 70438, + "name": "0.7 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271143, + "fields": { + "id_car_serie": 70439, + "name": "0.7 CVT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271144, + "fields": { + "id_car_serie": 70439, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271145, + "fields": { + "id_car_serie": 70439, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271146, + "fields": { + "id_car_serie": 70439, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271147, + "fields": { + "id_car_serie": 63094, + "name": "2.4 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271148, + "fields": { + "id_car_serie": 70440, + "name": "1.6 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271149, + "fields": { + "id_car_serie": 70441, + "name": "1.6 CVT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271150, + "fields": { + "id_car_serie": 70442, + "name": "1.6 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271151, + "fields": { + "id_car_serie": 70442, + "name": "1.6 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271152, + "fields": { + "id_car_serie": 70442, + "name": "1.6 CVT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271153, + "fields": { + "id_car_serie": 70443, + "name": "1.6 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271154, + "fields": { + "id_car_serie": 70444, + "name": "AT 4WD (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271155, + "fields": { + "id_car_serie": 48438, + "name": "1.0 MT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271156, + "fields": { + "id_car_serie": 48438, + "name": "1.3 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271157, + "fields": { + "id_car_serie": 48438, + "name": "1.3 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271158, + "fields": { + "id_car_serie": 48438, + "name": "1.4 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271159, + "fields": { + "id_car_serie": 48438, + "name": "1.4 AT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271160, + "fields": { + "id_car_serie": 48438, + "name": "1.6 MT (77 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271161, + "fields": { + "id_car_serie": 63147, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271162, + "fields": { + "id_car_serie": 63147, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271163, + "fields": { + "id_car_serie": 70445, + "name": "2.0 AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271164, + "fields": { + "id_car_serie": 70446, + "name": "2.0 AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271165, + "fields": { + "id_car_serie": 66855, + "name": "3.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271166, + "fields": { + "id_car_serie": 67404, + "name": "AT (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271167, + "fields": { + "id_car_serie": 67404, + "name": "AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271168, + "fields": { + "id_car_serie": 67404, + "name": "AT 4WD (449 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271169, + "fields": { + "id_car_serie": 70447, + "name": "AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271170, + "fields": { + "id_car_serie": 70447, + "name": "AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271171, + "fields": { + "id_car_serie": 70447, + "name": "AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271172, + "fields": { + "id_car_serie": 67539, + "name": "2.0 AT (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271173, + "fields": { + "id_car_serie": 63187, + "name": "3.5 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271174, + "fields": { + "id_car_serie": 70448, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271175, + "fields": { + "id_car_serie": 70448, + "name": "2.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271176, + "fields": { + "id_car_serie": 64379, + "name": "1.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271177, + "fields": { + "id_car_serie": 64380, + "name": "1.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271178, + "fields": { + "id_car_serie": 70449, + "name": "AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271179, + "fields": { + "id_car_serie": 70449, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271180, + "fields": { + "id_car_serie": 70449, + "name": "AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271181, + "fields": { + "id_car_serie": 70450, + "name": "AT 4WD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271182, + "fields": { + "id_car_serie": 70451, + "name": "2.4 CVT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271183, + "fields": { + "id_car_serie": 70451, + "name": "2.5 CVT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271184, + "fields": { + "id_car_serie": 70452, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271185, + "fields": { + "id_car_serie": 70452, + "name": "AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271186, + "fields": { + "id_car_serie": 45878, + "name": "1.5 CVT 4WD (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271187, + "fields": { + "id_car_serie": 70453, + "name": "1.6 MT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271188, + "fields": { + "id_car_serie": 64539, + "name": "2.5 AT (246 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271189, + "fields": { + "id_car_serie": 64544, + "name": "4.6 AT 4WD (318 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271190, + "fields": { + "id_car_serie": 70454, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271191, + "fields": { + "id_car_serie": 70454, + "name": "AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271192, + "fields": { + "id_car_serie": 70455, + "name": "1.5 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271193, + "fields": { + "id_car_serie": 70455, + "name": "1.5 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271194, + "fields": { + "id_car_serie": 70455, + "name": "2.0 MT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271195, + "fields": { + "id_car_serie": 70455, + "name": "2.0 AMT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271196, + "fields": { + "id_car_serie": 67424, + "name": "3.0 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271197, + "fields": { + "id_car_serie": 70456, + "name": "5.2 AT (725 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271198, + "fields": { + "id_car_serie": 70457, + "name": "5.2 AT (700 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271199, + "fields": { + "id_car_serie": 70458, + "name": "5.2 AT (700 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271200, + "fields": { + "id_car_serie": 70459, + "name": "4.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271201, + "fields": { + "id_car_serie": 64747, + "name": "3.0 AT 4WD (449 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271202, + "fields": { + "id_car_serie": 70460, + "name": "4.0 AT 4WD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271203, + "fields": { + "id_car_serie": 46411, + "name": "2.5 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271204, + "fields": { + "id_car_serie": 46411, + "name": "3.7 AT (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271205, + "fields": { + "id_car_serie": 46411, + "name": "3.7 AT 4WD (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271206, + "fields": { + "id_car_serie": 70461, + "name": "AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271207, + "fields": { + "id_car_serie": 70462, + "name": "2.0 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271208, + "fields": { + "id_car_serie": 70462, + "name": "2.0 AT 4WD (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271209, + "fields": { + "id_car_serie": 70463, + "name": "2.0 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271210, + "fields": { + "id_car_serie": 70463, + "name": "2.0 AT 4WD (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271211, + "fields": { + "id_car_serie": 67645, + "name": "1.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271212, + "fields": { + "id_car_serie": 70464, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271213, + "fields": { + "id_car_serie": 70465, + "name": "1.6 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271214, + "fields": { + "id_car_serie": 64873, + "name": "1.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271215, + "fields": { + "id_car_serie": 70468, + "name": "2.0 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271216, + "fields": { + "id_car_serie": 70468, + "name": "2.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271217, + "fields": { + "id_car_serie": 70470, + "name": "2.0 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271218, + "fields": { + "id_car_serie": 70470, + "name": "2.0 AT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271219, + "fields": { + "id_car_serie": 70470, + "name": "3.0 AT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271220, + "fields": { + "id_car_serie": 64354, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271221, + "fields": { + "id_car_serie": 70471, + "name": "1.5 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271222, + "fields": { + "id_car_serie": 70472, + "name": "AT (347 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271223, + "fields": { + "id_car_serie": 70472, + "name": "AT 4WD (694 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271224, + "fields": { + "id_car_serie": 70472, + "name": "1.5 AT 4WD (694 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271225, + "fields": { + "id_car_serie": 54109, + "name": "2.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271226, + "fields": { + "id_car_serie": 70473, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271227, + "fields": { + "id_car_serie": 70473, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271228, + "fields": { + "id_car_serie": 70474, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271229, + "fields": { + "id_car_serie": 70474, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271230, + "fields": { + "id_car_serie": 70475, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271231, + "fields": { + "id_car_serie": 70475, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271232, + "fields": { + "id_car_serie": 70475, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271233, + "fields": { + "id_car_serie": 70475, + "name": "3.0 AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271234, + "fields": { + "id_car_serie": 70475, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271235, + "fields": { + "id_car_serie": 70475, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271236, + "fields": { + "id_car_serie": 70475, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271237, + "fields": { + "id_car_serie": 70475, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271238, + "fields": { + "id_car_serie": 70475, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271239, + "fields": { + "id_car_serie": 70475, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271240, + "fields": { + "id_car_serie": 70475, + "name": "3.0 AT 4WD (374 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271241, + "fields": { + "id_car_serie": 70475, + "name": "2.0 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271242, + "fields": { + "id_car_serie": 70475, + "name": "2.0 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271243, + "fields": { + "id_car_serie": 70475, + "name": "2.0 AT (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271244, + "fields": { + "id_car_serie": 70475, + "name": "2.0 AT 4WD (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271245, + "fields": { + "id_car_serie": 70476, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271246, + "fields": { + "id_car_serie": 70476, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271247, + "fields": { + "id_car_serie": 70476, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271248, + "fields": { + "id_car_serie": 70476, + "name": "3.0 AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271249, + "fields": { + "id_car_serie": 70476, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271250, + "fields": { + "id_car_serie": 70476, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271251, + "fields": { + "id_car_serie": 70476, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271252, + "fields": { + "id_car_serie": 70476, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271253, + "fields": { + "id_car_serie": 70476, + "name": "2.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271254, + "fields": { + "id_car_serie": 70476, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271255, + "fields": { + "id_car_serie": 70476, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271256, + "fields": { + "id_car_serie": 70476, + "name": "3.0 AT 4WD (374 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271257, + "fields": { + "id_car_serie": 70476, + "name": "2.0 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271258, + "fields": { + "id_car_serie": 70476, + "name": "2.0 AT (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271259, + "fields": { + "id_car_serie": 70476, + "name": "2.0 AT 4WD (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271260, + "fields": { + "id_car_serie": 63874, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271261, + "fields": { + "id_car_serie": 63874, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271262, + "fields": { + "id_car_serie": 63875, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271263, + "fields": { + "id_car_serie": 63875, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271264, + "fields": { + "id_car_serie": 70477, + "name": "1.5 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271265, + "fields": { + "id_car_serie": 70477, + "name": "2.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271266, + "fields": { + "id_car_serie": 70477, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271267, + "fields": { + "id_car_serie": 70477, + "name": "2.0 AMT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271268, + "fields": { + "id_car_serie": 70478, + "name": "AT 4WD (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271269, + "fields": { + "id_car_serie": 67812, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271270, + "fields": { + "id_car_serie": 67812, + "name": "1.5 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271271, + "fields": { + "id_car_serie": 70479, + "name": "1.4 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271272, + "fields": { + "id_car_serie": 70479, + "name": "1.4 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271273, + "fields": { + "id_car_serie": 63906, + "name": "5.7 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271274, + "fields": { + "id_car_serie": 70480, + "name": "0.8 MT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271275, + "fields": { + "id_car_serie": 70426, + "name": "1.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271276, + "fields": { + "id_car_serie": 70426, + "name": "1.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271277, + "fields": { + "id_car_serie": 70426, + "name": "1.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271278, + "fields": { + "id_car_serie": 70426, + "name": "1.2 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271279, + "fields": { + "id_car_serie": 70426, + "name": "1.3 CVT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271280, + "fields": { + "id_car_serie": 70426, + "name": "1.5 CVT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271281, + "fields": { + "id_car_serie": 70481, + "name": "AT 4WD (432 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271282, + "fields": { + "id_car_serie": 70481, + "name": "AT 4WD (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271283, + "fields": { + "id_car_serie": 63050, + "name": "2.5 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271284, + "fields": { + "id_car_serie": 45482, + "name": "2.2 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271285, + "fields": { + "id_car_serie": 48144, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271286, + "fields": { + "id_car_serie": 48144, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271287, + "fields": { + "id_car_serie": 70482, + "name": "1.3 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271288, + "fields": { + "id_car_serie": 70482, + "name": "1.3 CVT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271289, + "fields": { + "id_car_serie": 70482, + "name": "1.5 CVT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271290, + "fields": { + "id_car_serie": 70483, + "name": "2.0 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271291, + "fields": { + "id_car_serie": 70483, + "name": "2.0 AMT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271292, + "fields": { + "id_car_serie": 67518, + "name": "1.5 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271293, + "fields": { + "id_car_serie": 67519, + "name": "1.5 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271294, + "fields": { + "id_car_serie": 64111, + "name": "2.0 AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271295, + "fields": { + "id_car_serie": 70484, + "name": "3.3 AT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271296, + "fields": { + "id_car_serie": 70484, + "name": "3.3 AT 4WD (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271297, + "fields": { + "id_car_serie": 70484, + "name": "3.8 AT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271298, + "fields": { + "id_car_serie": 70484, + "name": "3.8 AT 4WD (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271299, + "fields": { + "id_car_serie": 70485, + "name": "3.3 AT 4WD (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271300, + "fields": { + "id_car_serie": 70485, + "name": "3.8 AT (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271301, + "fields": { + "id_car_serie": 70485, + "name": "3.8 AT 4WD (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271302, + "fields": { + "id_car_serie": 70485, + "name": "5.0 AT 4WD (425 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271303, + "fields": { + "id_car_serie": 67232, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271304, + "fields": { + "id_car_serie": 67232, + "name": "2.0 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271305, + "fields": { + "id_car_serie": 67232, + "name": "2.0 AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271306, + "fields": { + "id_car_serie": 64166, + "name": "2.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271307, + "fields": { + "id_car_serie": 70486, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271308, + "fields": { + "id_car_serie": 70486, + "name": "2.0 AT 4WD (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271309, + "fields": { + "id_car_serie": 70486, + "name": "2.0 AT 4WD (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271310, + "fields": { + "id_car_serie": 70486, + "name": "2.0 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271311, + "fields": { + "id_car_serie": 70486, + "name": "2.0 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271312, + "fields": { + "id_car_serie": 70486, + "name": "2.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271313, + "fields": { + "id_car_serie": 14738, + "name": "2.0 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271314, + "fields": { + "id_car_serie": 70487, + "name": "1.3 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271315, + "fields": { + "id_car_serie": 70487, + "name": "1.3 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271316, + "fields": { + "id_car_serie": 70487, + "name": "1.3 AMT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271317, + "fields": { + "id_car_serie": 70487, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271318, + "fields": { + "id_car_serie": 70487, + "name": "1.5 AMT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271319, + "fields": { + "id_car_serie": 70487, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271320, + "fields": { + "id_car_serie": 70487, + "name": "1.5 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271321, + "fields": { + "id_car_serie": 70488, + "name": "2.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271322, + "fields": { + "id_car_serie": 63222, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271323, + "fields": { + "id_car_serie": 67269, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271324, + "fields": { + "id_car_serie": 67269, + "name": "1.5 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271325, + "fields": { + "id_car_serie": 70489, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271326, + "fields": { + "id_car_serie": 70489, + "name": "1.7 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271328, + "fields": { + "id_car_serie": 53186, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271329, + "fields": { + "id_car_serie": 53965, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271330, + "fields": { + "id_car_serie": 53965, + "name": "1.6 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271331, + "fields": { + "id_car_serie": 70490, + "name": "1.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271332, + "fields": { + "id_car_serie": 70490, + "name": "1.3 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271333, + "fields": { + "id_car_serie": 70490, + "name": "1.3 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271334, + "fields": { + "id_car_serie": 70490, + "name": "1.5 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271335, + "fields": { + "id_car_serie": 70490, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271336, + "fields": { + "id_car_serie": 67279, + "name": "1.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271337, + "fields": { + "id_car_serie": 64392, + "name": "1.6 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271338, + "fields": { + "id_car_serie": 64392, + "name": "1.6 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271339, + "fields": { + "id_car_serie": 64386, + "name": "AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271340, + "fields": { + "id_car_serie": 70491, + "name": "1.6 CVT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271341, + "fields": { + "id_car_serie": 70491, + "name": "2.0 CVT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271342, + "fields": { + "id_car_serie": 70491, + "name": "2.0 CVT 4WD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271343, + "fields": { + "id_car_serie": 70492, + "name": "1.6 CVT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271344, + "fields": { + "id_car_serie": 70492, + "name": "1.6 CVT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271345, + "fields": { + "id_car_serie": 70492, + "name": "2.0 CVT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271346, + "fields": { + "id_car_serie": 70492, + "name": "2.0 CVT 4WD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271347, + "fields": { + "id_car_serie": 70492, + "name": "2.0 CVT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271348, + "fields": { + "id_car_serie": 67161, + "name": "2.5 CVT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271349, + "fields": { + "id_car_serie": 64540, + "name": "4.0 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271350, + "fields": { + "id_car_serie": 70493, + "name": "1.8 AT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271351, + "fields": { + "id_car_serie": 70494, + "name": "2.4 MT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271352, + "fields": { + "id_car_serie": 70494, + "name": "2.4 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271353, + "fields": { + "id_car_serie": 64619, + "name": "1.2 CVT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271354, + "fields": { + "id_car_serie": 70495, + "name": "1.5 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271355, + "fields": { + "id_car_serie": 70495, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271356, + "fields": { + "id_car_serie": 70496, + "name": "3.0 AT 4WD (495 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271357, + "fields": { + "id_car_serie": 70497, + "name": "3.0 AT 4WD (495 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271358, + "fields": { + "id_car_serie": 70498, + "name": "3.0 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271359, + "fields": { + "id_car_serie": 70499, + "name": "3.0 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271360, + "fields": { + "id_car_serie": 70500, + "name": "2.5 MT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271361, + "fields": { + "id_car_serie": 70500, + "name": "2.5 AT 4WD (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271362, + "fields": { + "id_car_serie": 70500, + "name": "2.5 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271363, + "fields": { + "id_car_serie": 70500, + "name": "2.5 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271364, + "fields": { + "id_car_serie": 70500, + "name": "4.2 MT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271365, + "fields": { + "id_car_serie": 70500, + "name": "4.2 AT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271366, + "fields": { + "id_car_serie": 70501, + "name": "2.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271367, + "fields": { + "id_car_serie": 70501, + "name": "2.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271368, + "fields": { + "id_car_serie": 70502, + "name": "AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271369, + "fields": { + "id_car_serie": 70502, + "name": "AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271370, + "fields": { + "id_car_serie": 70503, + "name": "AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271371, + "fields": { + "id_car_serie": 70503, + "name": "AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271372, + "fields": { + "id_car_serie": 70504, + "name": "AT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271373, + "fields": { + "id_car_serie": 70505, + "name": "AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271374, + "fields": { + "id_car_serie": 70505, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271375, + "fields": { + "id_car_serie": 70505, + "name": "AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271376, + "fields": { + "id_car_serie": 70506, + "name": "1.0 CVT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271377, + "fields": { + "id_car_serie": 70507, + "name": "2.5 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271378, + "fields": { + "id_car_serie": 67659, + "name": "1.6 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271379, + "fields": { + "id_car_serie": 70466, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271380, + "fields": { + "id_car_serie": 70467, + "name": "3.0 AMT (830 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271381, + "fields": { + "id_car_serie": 70508, + "name": "AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271382, + "fields": { + "id_car_serie": 70509, + "name": "AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271383, + "fields": { + "id_car_serie": 70509, + "name": "AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271384, + "fields": { + "id_car_serie": 70510, + "name": "AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271385, + "fields": { + "id_car_serie": 66908, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271386, + "fields": { + "id_car_serie": 66908, + "name": "1.5 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271387, + "fields": { + "id_car_serie": 47194, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271388, + "fields": { + "id_car_serie": 70511, + "name": "AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271389, + "fields": { + "id_car_serie": 70468, + "name": "2.0 CVT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271390, + "fields": { + "id_car_serie": 70468, + "name": "2.0 CVT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271391, + "fields": { + "id_car_serie": 70512, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271392, + "fields": { + "id_car_serie": 70512, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271393, + "fields": { + "id_car_serie": 64919, + "name": "2.5 AT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271394, + "fields": { + "id_car_serie": 70513, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271395, + "fields": { + "id_car_serie": 70513, + "name": "3.7 AT (308 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271396, + "fields": { + "id_car_serie": 70513, + "name": "3.7 AT 4WD (308 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271397, + "fields": { + "id_car_serie": 70513, + "name": "2.8 AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271398, + "fields": { + "id_car_serie": 70513, + "name": "2.8 AT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271399, + "fields": { + "id_car_serie": 70514, + "name": "2.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271400, + "fields": { + "id_car_serie": 70514, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271401, + "fields": { + "id_car_serie": 70514, + "name": "3.7 AT 4WD (308 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271402, + "fields": { + "id_car_serie": 70514, + "name": "2.8 AT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271403, + "fields": { + "id_car_serie": 70469, + "name": "AT 4WD (1014 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271404, + "fields": { + "id_car_serie": 70515, + "name": "6.2 AT 4WD (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271405, + "fields": { + "id_car_serie": 70516, + "name": "3.0 AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271406, + "fields": { + "id_car_serie": 70516, + "name": "4.4 AT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271407, + "fields": { + "id_car_serie": 70516, + "name": "3.0 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271408, + "fields": { + "id_car_serie": 70516, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271409, + "fields": { + "id_car_serie": 70516, + "name": "3.0 AT 4WD (350 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271410, + "fields": { + "id_car_serie": 70516, + "name": "3.0 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271411, + "fields": { + "id_car_serie": 70516, + "name": "3.0 AT 4WD (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271412, + "fields": { + "id_car_serie": 70516, + "name": "3.0 AT 4WD (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271413, + "fields": { + "id_car_serie": 70517, + "name": "AT 4WD (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271414, + "fields": { + "id_car_serie": 70518, + "name": "4.0 AMT (765 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271415, + "fields": { + "id_car_serie": 70519, + "name": "4.0 AMT (765 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271416, + "fields": { + "id_car_serie": 70520, + "name": "AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271417, + "fields": { + "id_car_serie": 70520, + "name": "AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271418, + "fields": { + "id_car_serie": 70521, + "name": "AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271419, + "fields": { + "id_car_serie": 70521, + "name": "AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271420, + "fields": { + "id_car_serie": 70522, + "name": "AT 4WD (653 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271421, + "fields": { + "id_car_serie": 70523, + "name": "6.0 AMT (764 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271422, + "fields": { + "id_car_serie": 70523, + "name": "6.0 AMT (802 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271423, + "fields": { + "id_car_serie": 1951, + "name": "6.0 AMT (790 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271424, + "fields": { + "id_car_serie": 70524, + "name": "1.3 CVT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271425, + "fields": { + "id_car_serie": 70524, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271426, + "fields": { + "id_car_serie": 70524, + "name": "1.6 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271427, + "fields": { + "id_car_serie": 70525, + "name": "1.3 CVT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271428, + "fields": { + "id_car_serie": 70525, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271429, + "fields": { + "id_car_serie": 70525, + "name": "1.6 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271430, + "fields": { + "id_car_serie": 70526, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271431, + "fields": { + "id_car_serie": 70526, + "name": "1.3 CVT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271432, + "fields": { + "id_car_serie": 70526, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271433, + "fields": { + "id_car_serie": 70526, + "name": "1.6 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271434, + "fields": { + "id_car_serie": 70527, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271435, + "fields": { + "id_car_serie": 70527, + "name": "1.5 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271436, + "fields": { + "id_car_serie": 70528, + "name": "1.8 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271437, + "fields": { + "id_car_serie": 70528, + "name": "1.8 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271438, + "fields": { + "id_car_serie": 70529, + "name": "1.3 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271439, + "fields": { + "id_car_serie": 70529, + "name": "1.8 AMT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271440, + "fields": { + "id_car_serie": 70529, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271441, + "fields": { + "id_car_serie": 70530, + "name": "1.5 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271442, + "fields": { + "id_car_serie": 70530, + "name": "1.6 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271443, + "fields": { + "id_car_serie": 70530, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271444, + "fields": { + "id_car_serie": 70531, + "name": "AT 4WD (800 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271445, + "fields": { + "id_car_serie": 70532, + "name": "AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271446, + "fields": { + "id_car_serie": 70533, + "name": "AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271447, + "fields": { + "id_car_serie": 70533, + "name": "AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271448, + "fields": { + "id_car_serie": 70534, + "name": "1.3 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271449, + "fields": { + "id_car_serie": 70534, + "name": "1.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271450, + "fields": { + "id_car_serie": 70535, + "name": "3.0 AT 4WD (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271451, + "fields": { + "id_car_serie": 67176, + "name": "1.6 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271452, + "fields": { + "id_car_serie": 63906, + "name": "5.7 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271453, + "fields": { + "id_car_serie": 70536, + "name": "1.8 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271454, + "fields": { + "id_car_serie": 70536, + "name": "1.8 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271455, + "fields": { + "id_car_serie": 70536, + "name": "1.8 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271456, + "fields": { + "id_car_serie": 70536, + "name": "1.8 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271457, + "fields": { + "id_car_serie": 70536, + "name": "2.0 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271458, + "fields": { + "id_car_serie": 70536, + "name": "2.0 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271459, + "fields": { + "id_car_serie": 70536, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271460, + "fields": { + "id_car_serie": 70536, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271461, + "fields": { + "id_car_serie": 70536, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271462, + "fields": { + "id_car_serie": 70536, + "name": "2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271463, + "fields": { + "id_car_serie": 70536, + "name": "2.0 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271464, + "fields": { + "id_car_serie": 70536, + "name": "2.0 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271465, + "fields": { + "id_car_serie": 70536, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271466, + "fields": { + "id_car_serie": 70536, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271467, + "fields": { + "id_car_serie": 63094, + "name": "2.4 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271468, + "fields": { + "id_car_serie": 70537, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271469, + "fields": { + "id_car_serie": 70537, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271470, + "fields": { + "id_car_serie": 70537, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271471, + "fields": { + "id_car_serie": 70537, + "name": "1.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271472, + "fields": { + "id_car_serie": 70538, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271473, + "fields": { + "id_car_serie": 70538, + "name": "1.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271474, + "fields": { + "id_car_serie": 70538, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271475, + "fields": { + "id_car_serie": 70538, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271476, + "fields": { + "id_car_serie": 70539, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271477, + "fields": { + "id_car_serie": 70539, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271478, + "fields": { + "id_car_serie": 70540, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271479, + "fields": { + "id_car_serie": 70540, + "name": "1.0 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271480, + "fields": { + "id_car_serie": 70540, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271481, + "fields": { + "id_car_serie": 70540, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271482, + "fields": { + "id_car_serie": 70539, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271483, + "fields": { + "id_car_serie": 70539, + "name": "1.0 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271484, + "fields": { + "id_car_serie": 70541, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271485, + "fields": { + "id_car_serie": 70541, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271486, + "fields": { + "id_car_serie": 70541, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271487, + "fields": { + "id_car_serie": 70542, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271488, + "fields": { + "id_car_serie": 70542, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271489, + "fields": { + "id_car_serie": 70542, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271490, + "fields": { + "id_car_serie": 70542, + "name": "1.4 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271491, + "fields": { + "id_car_serie": 70542, + "name": "1.4 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271492, + "fields": { + "id_car_serie": 70542, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271493, + "fields": { + "id_car_serie": 70542, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271494, + "fields": { + "id_car_serie": 70543, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271495, + "fields": { + "id_car_serie": 70543, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271496, + "fields": { + "id_car_serie": 70543, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271497, + "fields": { + "id_car_serie": 70543, + "name": "1.4 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271498, + "fields": { + "id_car_serie": 70543, + "name": "1.4 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271499, + "fields": { + "id_car_serie": 70543, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271500, + "fields": { + "id_car_serie": 70543, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271501, + "fields": { + "id_car_serie": 70544, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271502, + "fields": { + "id_car_serie": 70544, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271503, + "fields": { + "id_car_serie": 70544, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271504, + "fields": { + "id_car_serie": 70544, + "name": "1.4 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271505, + "fields": { + "id_car_serie": 70544, + "name": "1.4 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271506, + "fields": { + "id_car_serie": 70544, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271507, + "fields": { + "id_car_serie": 70544, + "name": "1.6 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271508, + "fields": { + "id_car_serie": 70545, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271509, + "fields": { + "id_car_serie": 70545, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271510, + "fields": { + "id_car_serie": 70545, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271511, + "fields": { + "id_car_serie": 70545, + "name": "1.4 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271512, + "fields": { + "id_car_serie": 70545, + "name": "1.4 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271513, + "fields": { + "id_car_serie": 70545, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271514, + "fields": { + "id_car_serie": 70545, + "name": "1.6 AT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271517, + "fields": { + "id_car_serie": 64111, + "name": "2.0 AT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271518, + "fields": { + "id_car_serie": 67521, + "name": "1.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271519, + "fields": { + "id_car_serie": 67521, + "name": "1.6 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271520, + "fields": { + "id_car_serie": 70442, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271521, + "fields": { + "id_car_serie": 14845, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271522, + "fields": { + "id_car_serie": 64146, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271523, + "fields": { + "id_car_serie": 70546, + "name": "2.0 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271524, + "fields": { + "id_car_serie": 70546, + "name": "2.5 AT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271525, + "fields": { + "id_car_serie": 70547, + "name": "2.0 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271526, + "fields": { + "id_car_serie": 70547, + "name": "2.0 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271527, + "fields": { + "id_car_serie": 70547, + "name": "2.5 AT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271528, + "fields": { + "id_car_serie": 3689, + "name": "2.5 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271529, + "fields": { + "id_car_serie": 3689, + "name": "2.0 AT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271530, + "fields": { + "id_car_serie": 70548, + "name": "2.4 MT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271531, + "fields": { + "id_car_serie": 70548, + "name": "2.4 AT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271532, + "fields": { + "id_car_serie": 70548, + "name": "2.4 MT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271533, + "fields": { + "id_car_serie": 70548, + "name": "2.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271534, + "fields": { + "id_car_serie": 70548, + "name": "2.5 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271535, + "fields": { + "id_car_serie": 70548, + "name": "2.5 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271536, + "fields": { + "id_car_serie": 70548, + "name": "2.5 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271537, + "fields": { + "id_car_serie": 70548, + "name": "3.0 AT 4WD (209 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271538, + "fields": { + "id_car_serie": 70549, + "name": "4.8 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271539, + "fields": { + "id_car_serie": 70549, + "name": "4.8 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271540, + "fields": { + "id_car_serie": 70550, + "name": "1.6 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271541, + "fields": { + "id_car_serie": 70550, + "name": "1.6 AT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271542, + "fields": { + "id_car_serie": 70550, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271543, + "fields": { + "id_car_serie": 70550, + "name": "1.8 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271544, + "fields": { + "id_car_serie": 66932, + "name": "1.8 MT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271545, + "fields": { + "id_car_serie": 66932, + "name": "1.8 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271546, + "fields": { + "id_car_serie": 70551, + "name": "2.3 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271547, + "fields": { + "id_car_serie": 70551, + "name": "2.5 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271548, + "fields": { + "id_car_serie": 70551, + "name": "2.5 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271549, + "fields": { + "id_car_serie": 70552, + "name": "2.5 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271550, + "fields": { + "id_car_serie": 70552, + "name": "2.5 AT 4WD (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271551, + "fields": { + "id_car_serie": 70448, + "name": "1.7 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271552, + "fields": { + "id_car_serie": 70553, + "name": "1.3 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271553, + "fields": { + "id_car_serie": 70553, + "name": "1.3 AMT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271554, + "fields": { + "id_car_serie": 70553, + "name": "1.6 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271555, + "fields": { + "id_car_serie": 70554, + "name": "1.3 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271556, + "fields": { + "id_car_serie": 70554, + "name": "1.3 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271557, + "fields": { + "id_car_serie": 67161, + "name": "2.5 AT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271558, + "fields": { + "id_car_serie": 67161, + "name": "2.5 AT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271559, + "fields": { + "id_car_serie": 67161, + "name": "2.5 AT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271560, + "fields": { + "id_car_serie": 67161, + "name": "2.5 AT (206 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271561, + "fields": { + "id_car_serie": 67161, + "name": "3.5 AT (301 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271562, + "fields": { + "id_car_serie": 66902, + "name": "4.0 AT 4WD (282 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271563, + "fields": { + "id_car_serie": 66902, + "name": "2.8 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271564, + "fields": { + "id_car_serie": 64586, + "name": "1.0 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271565, + "fields": { + "id_car_serie": 70555, + "name": "2.8 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271566, + "fields": { + "id_car_serie": 70555, + "name": "3.5 AT (270 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271567, + "fields": { + "id_car_serie": 70556, + "name": "3.5 AT (437 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271568, + "fields": { + "id_car_serie": 70556, + "name": "3.5 AT 4WD (437 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271569, + "fields": { + "id_car_serie": 70557, + "name": "3.0 AT 4WD (495 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271570, + "fields": { + "id_car_serie": 70558, + "name": "3.0 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271571, + "fields": { + "id_car_serie": 70559, + "name": "4.4 AT 4WD (621 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271572, + "fields": { + "id_car_serie": 70560, + "name": "3.8 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271573, + "fields": { + "id_car_serie": 70560, + "name": "3.8 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271574, + "fields": { + "id_car_serie": 70560, + "name": "4.2 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271575, + "fields": { + "id_car_serie": 70560, + "name": "5.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271576, + "fields": { + "id_car_serie": 70560, + "name": "5.9 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271577, + "fields": { + "id_car_serie": 70560, + "name": "5.9 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271578, + "fields": { + "id_car_serie": 70560, + "name": "5.9 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271579, + "fields": { + "id_car_serie": 70560, + "name": "6.6 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271580, + "fields": { + "id_car_serie": 70502, + "name": "AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271581, + "fields": { + "id_car_serie": 70502, + "name": "1.5 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271582, + "fields": { + "id_car_serie": 67629, + "name": "AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271583, + "fields": { + "id_car_serie": 67629, + "name": "AT 4WD (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271584, + "fields": { + "id_car_serie": 70561, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271585, + "fields": { + "id_car_serie": 70561, + "name": "1.5 AMT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271586, + "fields": { + "id_car_serie": 70561, + "name": "1.5 AMT (307 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271587, + "fields": { + "id_car_serie": 70561, + "name": "1.5 AMT 4WD (499 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271588, + "fields": { + "id_car_serie": 67630, + "name": "AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271589, + "fields": { + "id_car_serie": 67630, + "name": "AT 4WD (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271590, + "fields": { + "id_car_serie": 70562, + "name": "3.6 AT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271591, + "fields": { + "id_car_serie": 70562, + "name": "3.6 AT 4WD (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271592, + "fields": { + "id_car_serie": 70562, + "name": "3.6 AT 4WD (416 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271593, + "fields": { + "id_car_serie": 70563, + "name": "2.0 AT 4WD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271594, + "fields": { + "id_car_serie": 70563, + "name": "3.6 AT (297 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271595, + "fields": { + "id_car_serie": 70563, + "name": "3.6 AT 4WD (297 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271596, + "fields": { + "id_car_serie": 70563, + "name": "5.7 AT 4WD (364 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271597, + "fields": { + "id_car_serie": 70564, + "name": "AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271598, + "fields": { + "id_car_serie": 70564, + "name": "AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271599, + "fields": { + "id_car_serie": 70565, + "name": "3.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271600, + "fields": { + "id_car_serie": 70566, + "name": "1.6 AT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271601, + "fields": { + "id_car_serie": 70566, + "name": "1.6 MT 4WD (80 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271602, + "fields": { + "id_car_serie": 70566, + "name": "1.6 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271603, + "fields": { + "id_car_serie": 70566, + "name": "1.6 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271604, + "fields": { + "id_car_serie": 70566, + "name": "1.6 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271605, + "fields": { + "id_car_serie": 70566, + "name": "1.6 AT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271608, + "fields": { + "id_car_serie": 63888, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271609, + "fields": { + "id_car_serie": 63888, + "name": "1.5 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271610, + "fields": { + "id_car_serie": 63911, + "name": "2.0 AT (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271611, + "fields": { + "id_car_serie": 63911, + "name": "2.0 AT 4WD (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271612, + "fields": { + "id_car_serie": 67177, + "name": "1.6 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271613, + "fields": { + "id_car_serie": 51513, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271614, + "fields": { + "id_car_serie": 64012, + "name": "1.8 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271615, + "fields": { + "id_car_serie": 70567, + "name": "2.2 AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271616, + "fields": { + "id_car_serie": 70567, + "name": "2.2 AT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271617, + "fields": { + "id_car_serie": 70567, + "name": "3.5 AT 4WD (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271618, + "fields": { + "id_car_serie": 70567, + "name": "3.8 AT 4WD (291 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271619, + "fields": { + "id_car_serie": 70568, + "name": "1.0 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271620, + "fields": { + "id_car_serie": 70568, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271621, + "fields": { + "id_car_serie": 70568, + "name": "1.4 CVT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271622, + "fields": { + "id_car_serie": 70568, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271623, + "fields": { + "id_car_serie": 70568, + "name": "1.5 CVT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271624, + "fields": { + "id_car_serie": 70568, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271625, + "fields": { + "id_car_serie": 70569, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271626, + "fields": { + "id_car_serie": 70569, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271627, + "fields": { + "id_car_serie": 70569, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271628, + "fields": { + "id_car_serie": 70569, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271629, + "fields": { + "id_car_serie": 70569, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271630, + "fields": { + "id_car_serie": 70569, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271631, + "fields": { + "id_car_serie": 70569, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271632, + "fields": { + "id_car_serie": 70570, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271633, + "fields": { + "id_car_serie": 70570, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271634, + "fields": { + "id_car_serie": 70570, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271635, + "fields": { + "id_car_serie": 70570, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271636, + "fields": { + "id_car_serie": 67521, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271637, + "fields": { + "id_car_serie": 67521, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271638, + "fields": { + "id_car_serie": 67521, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271639, + "fields": { + "id_car_serie": 67521, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271640, + "fields": { + "id_car_serie": 67521, + "name": "2.5 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271641, + "fields": { + "id_car_serie": 67212, + "name": "2.5 AT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271642, + "fields": { + "id_car_serie": 46554, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271643, + "fields": { + "id_car_serie": 64179, + "name": "2.0 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271644, + "fields": { + "id_car_serie": 70571, + "name": "0.6 AT (31 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271645, + "fields": { + "id_car_serie": 70571, + "name": "0.6 MT (31 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271646, + "fields": { + "id_car_serie": 70571, + "name": "0.6 MT (38 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271647, + "fields": { + "id_car_serie": 70572, + "name": "1.2 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271648, + "fields": { + "id_car_serie": 70572, + "name": "1.2 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271649, + "fields": { + "id_car_serie": 70572, + "name": "1.2 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271650, + "fields": { + "id_car_serie": 70572, + "name": "1.6 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271651, + "fields": { + "id_car_serie": 70573, + "name": "1.2 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271652, + "fields": { + "id_car_serie": 70573, + "name": "1.6 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271653, + "fields": { + "id_car_serie": 70574, + "name": "4.0 AT 4WD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271654, + "fields": { + "id_car_serie": 70574, + "name": "5.6 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271655, + "fields": { + "id_car_serie": 70574, + "name": "5.6 AT 4WD (428 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271656, + "fields": { + "id_car_serie": 70575, + "name": "2.0 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271657, + "fields": { + "id_car_serie": 70575, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271658, + "fields": { + "id_car_serie": 64540, + "name": "2.8 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271659, + "fields": { + "id_car_serie": 70576, + "name": "4.5 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271660, + "fields": { + "id_car_serie": 70577, + "name": "1.3 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271661, + "fields": { + "id_car_serie": 70577, + "name": "1.3 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271662, + "fields": { + "id_car_serie": 70577, + "name": "1.5 CVT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271663, + "fields": { + "id_car_serie": 66873, + "name": "2.0 CVT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271664, + "fields": { + "id_car_serie": 66873, + "name": "2.0 CVT 4WD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271665, + "fields": { + "id_car_serie": 70578, + "name": "1.4 AMT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271666, + "fields": { + "id_car_serie": 70578, + "name": "1.5 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271667, + "fields": { + "id_car_serie": 70578, + "name": "2.0 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271668, + "fields": { + "id_car_serie": 70578, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271669, + "fields": { + "id_car_serie": 9375, + "name": "4.4 MT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271670, + "fields": { + "id_car_serie": 70579, + "name": "1.5 CVT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271671, + "fields": { + "id_car_serie": 70579, + "name": "1.5 MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271672, + "fields": { + "id_car_serie": 70580, + "name": "2.0 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271673, + "fields": { + "id_car_serie": 70580, + "name": "2.0 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271674, + "fields": { + "id_car_serie": 70581, + "name": "2.0 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271675, + "fields": { + "id_car_serie": 70581, + "name": "2.0 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271676, + "fields": { + "id_car_serie": 70581, + "name": "2.3 MT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271677, + "fields": { + "id_car_serie": 70581, + "name": "2.3 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271678, + "fields": { + "id_car_serie": 70581, + "name": "2.3 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271679, + "fields": { + "id_car_serie": 70581, + "name": "2.3 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271680, + "fields": { + "id_car_serie": 70581, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271681, + "fields": { + "id_car_serie": 70581, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271682, + "fields": { + "id_car_serie": 70582, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271683, + "fields": { + "id_car_serie": 70582, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271684, + "fields": { + "id_car_serie": 70583, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271685, + "fields": { + "id_car_serie": 70583, + "name": "1.5 MT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271686, + "fields": { + "id_car_serie": 70583, + "name": "1.5 AMT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271687, + "fields": { + "id_car_serie": 70583, + "name": "1.5 MT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271688, + "fields": { + "id_car_serie": 70583, + "name": "1.5 AMT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271689, + "fields": { + "id_car_serie": 70583, + "name": "1.5 AMT (303 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271690, + "fields": { + "id_car_serie": 70583, + "name": "1.5 AMT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271691, + "fields": { + "id_car_serie": 70583, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271692, + "fields": { + "id_car_serie": 70584, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271693, + "fields": { + "id_car_serie": 70584, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271694, + "fields": { + "id_car_serie": 70584, + "name": "1.5 AMT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271695, + "fields": { + "id_car_serie": 70585, + "name": "AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271696, + "fields": { + "id_car_serie": 70585, + "name": "1.5 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271697, + "fields": { + "id_car_serie": 70585, + "name": "1.5 AMT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271698, + "fields": { + "id_car_serie": 70586, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271699, + "fields": { + "id_car_serie": 70586, + "name": "AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271700, + "fields": { + "id_car_serie": 70586, + "name": "1.5 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271701, + "fields": { + "id_car_serie": 67427, + "name": "2.0 AT (226 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271702, + "fields": { + "id_car_serie": 67427, + "name": "2.0 AT 4WD (226 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271703, + "fields": { + "id_car_serie": 70587, + "name": "0.7 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271704, + "fields": { + "id_car_serie": 70587, + "name": "0.7 MT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271705, + "fields": { + "id_car_serie": 70587, + "name": "0.7 CVT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271706, + "fields": { + "id_car_serie": 70587, + "name": "0.7 CVT 4WD (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271707, + "fields": { + "id_car_serie": 70587, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271708, + "fields": { + "id_car_serie": 70587, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271709, + "fields": { + "id_car_serie": 70588, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271710, + "fields": { + "id_car_serie": 67432, + "name": "5.2 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271711, + "fields": { + "id_car_serie": 67660, + "name": "2.0 AMT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271712, + "fields": { + "id_car_serie": 70589, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271713, + "fields": { + "id_car_serie": 66971, + "name": "AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271714, + "fields": { + "id_car_serie": 70515, + "name": "3.0 AT 4WD (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271715, + "fields": { + "id_car_serie": 3509, + "name": "1.6 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271716, + "fields": { + "id_car_serie": 3509, + "name": "1.6 AT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271717, + "fields": { + "id_car_serie": 3509, + "name": "1.6 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271718, + "fields": { + "id_car_serie": 70590, + "name": "1.5 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271719, + "fields": { + "id_car_serie": 70591, + "name": "AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271720, + "fields": { + "id_car_serie": 70592, + "name": "AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271721, + "fields": { + "id_car_serie": 70592, + "name": "AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271722, + "fields": { + "id_car_serie": 53627, + "name": "2.4 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271723, + "fields": { + "id_car_serie": 53627, + "name": "2.4 AT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271724, + "fields": { + "id_car_serie": 70593, + "name": "AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271725, + "fields": { + "id_car_serie": 70593, + "name": "AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271726, + "fields": { + "id_car_serie": 70594, + "name": "AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271727, + "fields": { + "id_car_serie": 70594, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271728, + "fields": { + "id_car_serie": 70595, + "name": "AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271729, + "fields": { + "id_car_serie": 70595, + "name": "AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271730, + "fields": { + "id_car_serie": 70596, + "name": "AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271731, + "fields": { + "id_car_serie": 70597, + "name": "AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271732, + "fields": { + "id_car_serie": 70597, + "name": "AT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271733, + "fields": { + "id_car_serie": 70597, + "name": "1.0 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271734, + "fields": { + "id_car_serie": 70597, + "name": "1.0 AT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271735, + "fields": { + "id_car_serie": 70597, + "name": "1.4 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271736, + "fields": { + "id_car_serie": 70597, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271737, + "fields": { + "id_car_serie": 70597, + "name": "1.5 CVT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271738, + "fields": { + "id_car_serie": 67153, + "name": "AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271739, + "fields": { + "id_car_serie": 1951, + "name": "6.0 AMT (764 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271740, + "fields": { + "id_car_serie": 1951, + "name": "6.0 AMT (827 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271741, + "fields": { + "id_car_serie": 1951, + "name": "6.0 AMT (840 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271742, + "fields": { + "id_car_serie": 1951, + "name": "6.0 AMT (850 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271743, + "fields": { + "id_car_serie": 70598, + "name": "2.0 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271744, + "fields": { + "id_car_serie": 70598, + "name": "2.0 AT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271745, + "fields": { + "id_car_serie": 70598, + "name": "2.0 MT 4WD (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271746, + "fields": { + "id_car_serie": 70598, + "name": "2.0 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271747, + "fields": { + "id_car_serie": 70598, + "name": "2.0 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271748, + "fields": { + "id_car_serie": 70598, + "name": "2.0 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271749, + "fields": { + "id_car_serie": 70599, + "name": "1.3 AMT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271750, + "fields": { + "id_car_serie": 70599, + "name": "1.6 CVT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271751, + "fields": { + "id_car_serie": 70600, + "name": "AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271752, + "fields": { + "id_car_serie": 70600, + "name": "1.9 AT (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271753, + "fields": { + "id_car_serie": 70601, + "name": "2.0 AT 4WD (227 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271754, + "fields": { + "id_car_serie": 70602, + "name": "3.0 AT 4WD (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271755, + "fields": { + "id_car_serie": 70605, + "name": "AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271756, + "fields": { + "id_car_serie": 70605, + "name": "AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271757, + "fields": { + "id_car_serie": 70606, + "name": "1.6 AMT 4WD (1063 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271758, + "fields": { + "id_car_serie": 70607, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271759, + "fields": { + "id_car_serie": 70607, + "name": "AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271760, + "fields": { + "id_car_serie": 70607, + "name": "AT 4WD (643 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271761, + "fields": { + "id_car_serie": 70608, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271762, + "fields": { + "id_car_serie": 70608, + "name": "AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271763, + "fields": { + "id_car_serie": 70603, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271764, + "fields": { + "id_car_serie": 70604, + "name": "2.5 MT 4WD (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271775, + "fields": { + "id_car_serie": 70609, + "name": "1.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271776, + "fields": { + "id_car_serie": 70609, + "name": "1.5 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271777, + "fields": { + "id_car_serie": 70609, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271778, + "fields": { + "id_car_serie": 70609, + "name": "1.5 AMT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271779, + "fields": { + "id_car_serie": 70609, + "name": "1.5 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271780, + "fields": { + "id_car_serie": 70610, + "name": "AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271781, + "fields": { + "id_car_serie": 63909, + "name": "1.6 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271782, + "fields": { + "id_car_serie": 63909, + "name": "1.6 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271783, + "fields": { + "id_car_serie": 63910, + "name": "1.6 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271784, + "fields": { + "id_car_serie": 63910, + "name": "1.6 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271785, + "fields": { + "id_car_serie": 63020, + "name": "1.3 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271786, + "fields": { + "id_car_serie": 63020, + "name": "2.0 AT (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271787, + "fields": { + "id_car_serie": 63020, + "name": "1.6 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271788, + "fields": { + "id_car_serie": 70611, + "name": "2.7 AT (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271789, + "fields": { + "id_car_serie": 70611, + "name": "2.7 AT 4WD (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271790, + "fields": { + "id_car_serie": 70611, + "name": "2.7 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271791, + "fields": { + "id_car_serie": 70612, + "name": "2.2 MT 4WD (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271792, + "fields": { + "id_car_serie": 70555, + "name": "3.5 AT (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271793, + "fields": { + "id_car_serie": 70613, + "name": "1.5 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271794, + "fields": { + "id_car_serie": 70613, + "name": "1.5 AMT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271795, + "fields": { + "id_car_serie": 70613, + "name": "2.0 AT (232 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271796, + "fields": { + "id_car_serie": 70614, + "name": "1.5 AMT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271797, + "fields": { + "id_car_serie": 70614, + "name": "2.0 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271798, + "fields": { + "id_car_serie": 70616, + "name": "1.3 AT 4WD (288 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271799, + "fields": { + "id_car_serie": 70616, + "name": "2.0 AT 4WD (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271800, + "fields": { + "id_car_serie": 70617, + "name": "1.5 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271801, + "fields": { + "id_car_serie": 70617, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271802, + "fields": { + "id_car_serie": 70617, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271803, + "fields": { + "id_car_serie": 70619, + "name": "1.5 AT 4WD (449 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271804, + "fields": { + "id_car_serie": 70620, + "name": "AT 4WD (761 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271805, + "fields": { + "id_car_serie": 70620, + "name": "3.0 AT 4WD (490 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271806, + "fields": { + "id_car_serie": 70620, + "name": "3.0 AT 4WD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271807, + "fields": { + "id_car_serie": 67153, + "name": "AT 4WD (653 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271808, + "fields": { + "id_car_serie": 70621, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271809, + "fields": { + "id_car_serie": 70621, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271810, + "fields": { + "id_car_serie": 70622, + "name": "4.7 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271811, + "fields": { + "id_car_serie": 70623, + "name": "4.7 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271812, + "fields": { + "id_car_serie": 70624, + "name": "4.7 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271813, + "fields": { + "id_car_serie": 67605, + "name": "2.0 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271814, + "fields": { + "id_car_serie": 70625, + "name": "AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271815, + "fields": { + "id_car_serie": 70625, + "name": "1.5 AT 4WD (395 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271816, + "fields": { + "id_car_serie": 70626, + "name": "3.0 MT (610 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271826, + "fields": { + "id_car_serie": 70628, + "name": "4.4 AT 4WD (653 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271827, + "fields": { + "id_car_serie": 70629, + "name": "2.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271828, + "fields": { + "id_car_serie": 70629, + "name": "2.0 MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271829, + "fields": { + "id_car_serie": 70629, + "name": "2.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271830, + "fields": { + "id_car_serie": 70629, + "name": "3.0 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271831, + "fields": { + "id_car_serie": 70637, + "name": "2.0 MT (319 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271832, + "fields": { + "id_car_serie": 70637, + "name": "2.0 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271833, + "fields": { + "id_car_serie": 70638, + "name": "0.7 MT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271834, + "fields": { + "id_car_serie": 70638, + "name": "0.7 MT 4WD (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271835, + "fields": { + "id_car_serie": 70638, + "name": "0.7 CVT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271836, + "fields": { + "id_car_serie": 70638, + "name": "0.7 CVT 4WD (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271837, + "fields": { + "id_car_serie": 70638, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271838, + "fields": { + "id_car_serie": 70638, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271839, + "fields": { + "id_car_serie": 6910, + "name": "3.5 AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271840, + "fields": { + "id_car_serie": 8817, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271841, + "fields": { + "id_car_serie": 8819, + "name": "3.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271842, + "fields": { + "id_car_serie": 67756, + "name": "1.6 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271843, + "fields": { + "id_car_serie": 70577, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271844, + "fields": { + "id_car_serie": 64510, + "name": "1.6 CVT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271845, + "fields": { + "id_car_serie": 49239, + "name": "1.5 AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271846, + "fields": { + "id_car_serie": 49239, + "name": "2.2 MT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271847, + "fields": { + "id_car_serie": 70641, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271848, + "fields": { + "id_car_serie": 70641, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271849, + "fields": { + "id_car_serie": 70641, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271850, + "fields": { + "id_car_serie": 70641, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271851, + "fields": { + "id_car_serie": 70641, + "name": "2.0 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271852, + "fields": { + "id_car_serie": 70641, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271853, + "fields": { + "id_car_serie": 64524, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271854, + "fields": { + "id_car_serie": 64524, + "name": "1.5 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271855, + "fields": { + "id_car_serie": 64524, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271856, + "fields": { + "id_car_serie": 64524, + "name": "1.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271857, + "fields": { + "id_car_serie": 64524, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271858, + "fields": { + "id_car_serie": 64524, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271859, + "fields": { + "id_car_serie": 64525, + "name": "1.5 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271860, + "fields": { + "id_car_serie": 64525, + "name": "1.5 AT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271861, + "fields": { + "id_car_serie": 64525, + "name": "2.0 MT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271862, + "fields": { + "id_car_serie": 64525, + "name": "2.0 AT (72 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271863, + "fields": { + "id_car_serie": 70642, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271864, + "fields": { + "id_car_serie": 70642, + "name": "1.6 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271865, + "fields": { + "id_car_serie": 70642, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271866, + "fields": { + "id_car_serie": 70642, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271867, + "fields": { + "id_car_serie": 70642, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271868, + "fields": { + "id_car_serie": 70642, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271869, + "fields": { + "id_car_serie": 64539, + "name": "2.5 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271870, + "fields": { + "id_car_serie": 64539, + "name": "3.5 AT 4WD (295 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271871, + "fields": { + "id_car_serie": 67580, + "name": "2.4 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271872, + "fields": { + "id_car_serie": 64540, + "name": "2.4 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271873, + "fields": { + "id_car_serie": 64568, + "name": "2.0 CVT 4WD (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271874, + "fields": { + "id_car_serie": 63282, + "name": "2.0 CVT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271875, + "fields": { + "id_car_serie": 63282, + "name": "2.5 AT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271876, + "fields": { + "id_car_serie": 63282, + "name": "2.5 AT (209 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271877, + "fields": { + "id_car_serie": 67443, + "name": "AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271878, + "fields": { + "id_car_serie": 46540, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271879, + "fields": { + "id_car_serie": 8338, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271880, + "fields": { + "id_car_serie": 8338, + "name": "2.0 AMT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271881, + "fields": { + "id_car_serie": 8338, + "name": "2.0 AT 4WD (187 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271882, + "fields": { + "id_car_serie": 8338, + "name": "2.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271883, + "fields": { + "id_car_serie": 8338, + "name": "2.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271884, + "fields": { + "id_car_serie": 8338, + "name": "1.4 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271885, + "fields": { + "id_car_serie": 5497, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271886, + "fields": { + "id_car_serie": 5497, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271887, + "fields": { + "id_car_serie": 63016, + "name": "3.0 AT 4WD (349 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271888, + "fields": { + "id_car_serie": 70657, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271889, + "fields": { + "id_car_serie": 70657, + "name": "AT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271890, + "fields": { + "id_car_serie": 70658, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271891, + "fields": { + "id_car_serie": 70658, + "name": "2.0 AMT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271892, + "fields": { + "id_car_serie": 70659, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271893, + "fields": { + "id_car_serie": 70659, + "name": "2.0 AMT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271894, + "fields": { + "id_car_serie": 70660, + "name": "2.0 AMT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271895, + "fields": { + "id_car_serie": 70660, + "name": "2.0 AMT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271896, + "fields": { + "id_car_serie": 70660, + "name": "2.5 AMT 4WD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271897, + "fields": { + "id_car_serie": 67460, + "name": "1.5 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271898, + "fields": { + "id_car_serie": 63798, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271899, + "fields": { + "id_car_serie": 63799, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271900, + "fields": { + "id_car_serie": 70421, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271901, + "fields": { + "id_car_serie": 67372, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271902, + "fields": { + "id_car_serie": 67372, + "name": "2.0 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271903, + "fields": { + "id_car_serie": 67372, + "name": "2.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271904, + "fields": { + "id_car_serie": 67373, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271905, + "fields": { + "id_car_serie": 67373, + "name": "2.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271906, + "fields": { + "id_car_serie": 67373, + "name": "3.0 AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271907, + "fields": { + "id_car_serie": 70627, + "name": "3.0 MT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271908, + "fields": { + "id_car_serie": 70627, + "name": "3.0 AT (460 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271909, + "fields": { + "id_car_serie": 67177, + "name": "1.4 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271910, + "fields": { + "id_car_serie": 70630, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271911, + "fields": { + "id_car_serie": 70630, + "name": "1.5 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271912, + "fields": { + "id_car_serie": 70630, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271913, + "fields": { + "id_car_serie": 70631, + "name": "2.7 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271914, + "fields": { + "id_car_serie": 70631, + "name": "5.3 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271915, + "fields": { + "id_car_serie": 70631, + "name": "5.3 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271916, + "fields": { + "id_car_serie": 70631, + "name": "6.2 AT 4WD (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271917, + "fields": { + "id_car_serie": 70631, + "name": "3.0 AT 4WD (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271918, + "fields": { + "id_car_serie": 70632, + "name": "2.7 AT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271919, + "fields": { + "id_car_serie": 70632, + "name": "2.7 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271920, + "fields": { + "id_car_serie": 70632, + "name": "5.3 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271921, + "fields": { + "id_car_serie": 70632, + "name": "5.3 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271922, + "fields": { + "id_car_serie": 70632, + "name": "6.2 AT 4WD (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271923, + "fields": { + "id_car_serie": 70632, + "name": "3.0 AT (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271924, + "fields": { + "id_car_serie": 70632, + "name": "3.0 AT 4WD (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271925, + "fields": { + "id_car_serie": 70661, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271926, + "fields": { + "id_car_serie": 70661, + "name": "1.2 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271927, + "fields": { + "id_car_serie": 70661, + "name": "1.2 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271928, + "fields": { + "id_car_serie": 70661, + "name": "1.5 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271929, + "fields": { + "id_car_serie": 63037, + "name": "2.0 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271932, + "fields": { + "id_car_serie": 51513, + "name": "2.0 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271933, + "fields": { + "id_car_serie": 53530, + "name": "1.5 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271934, + "fields": { + "id_car_serie": 53530, + "name": "1.5 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271935, + "fields": { + "id_car_serie": 70662, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271936, + "fields": { + "id_car_serie": 70662, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271937, + "fields": { + "id_car_serie": 70662, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271938, + "fields": { + "id_car_serie": 70662, + "name": "2.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271939, + "fields": { + "id_car_serie": 70662, + "name": "2.0 AT (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271940, + "fields": { + "id_car_serie": 70662, + "name": "2.0 AT 4WD (210 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271941, + "fields": { + "id_car_serie": 70662, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271942, + "fields": { + "id_car_serie": 70662, + "name": "3.0 AT 4WD (397 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271943, + "fields": { + "id_car_serie": 70663, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271944, + "fields": { + "id_car_serie": 70663, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271945, + "fields": { + "id_car_serie": 70663, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271946, + "fields": { + "id_car_serie": 70663, + "name": "2.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271947, + "fields": { + "id_car_serie": 70664, + "name": "2.2 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271948, + "fields": { + "id_car_serie": 70664, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271949, + "fields": { + "id_car_serie": 70664, + "name": "2.2 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271950, + "fields": { + "id_car_serie": 70665, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271951, + "fields": { + "id_car_serie": 70666, + "name": "2.2 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271952, + "fields": { + "id_car_serie": 70666, + "name": "2.2 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271953, + "fields": { + "id_car_serie": 70666, + "name": "2.2 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271954, + "fields": { + "id_car_serie": 70667, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271955, + "fields": { + "id_car_serie": 70633, + "name": "2.0 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271956, + "fields": { + "id_car_serie": 70633, + "name": "2.0 AMT (217 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271957, + "fields": { + "id_car_serie": 70634, + "name": "2.0 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271958, + "fields": { + "id_car_serie": 66954, + "name": "1.5 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271959, + "fields": { + "id_car_serie": 70635, + "name": "1.5 CVT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271960, + "fields": { + "id_car_serie": 70635, + "name": "1.5 CVT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271961, + "fields": { + "id_car_serie": 70635, + "name": "2.0 CVT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271962, + "fields": { + "id_car_serie": 70635, + "name": "2.0 CVT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271963, + "fields": { + "id_car_serie": 67728, + "name": "2.0 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271964, + "fields": { + "id_car_serie": 67389, + "name": "1.5 MT (203 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271965, + "fields": { + "id_car_serie": 70636, + "name": "1.5 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271966, + "fields": { + "id_car_serie": 70636, + "name": "1.5 AMT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271967, + "fields": { + "id_car_serie": 70636, + "name": "1.5 CVT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271968, + "fields": { + "id_car_serie": 70636, + "name": "1.5 CVT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271969, + "fields": { + "id_car_serie": 70668, + "name": "AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271970, + "fields": { + "id_car_serie": 70668, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271971, + "fields": { + "id_car_serie": 70669, + "name": "1.5 CVT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271972, + "fields": { + "id_car_serie": 70669, + "name": "2.0 CVT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271973, + "fields": { + "id_car_serie": 70669, + "name": "2.0 CVT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271974, + "fields": { + "id_car_serie": 70670, + "name": "1.5 CVT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271975, + "fields": { + "id_car_serie": 70671, + "name": "1.5 CVT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271976, + "fields": { + "id_car_serie": 70671, + "name": "1.5 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271977, + "fields": { + "id_car_serie": 70671, + "name": "1.5 CVT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271978, + "fields": { + "id_car_serie": 70672, + "name": "1.5 CVT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271979, + "fields": { + "id_car_serie": 67396, + "name": "1.5 CVT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271980, + "fields": { + "id_car_serie": 67396, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271981, + "fields": { + "id_car_serie": 70673, + "name": "1.6 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271982, + "fields": { + "id_car_serie": 70673, + "name": "1.6 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271983, + "fields": { + "id_car_serie": 70673, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271984, + "fields": { + "id_car_serie": 70673, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271985, + "fields": { + "id_car_serie": 66992, + "name": "2.0 CVT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271986, + "fields": { + "id_car_serie": 66992, + "name": "2.0 CVT 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271987, + "fields": { + "id_car_serie": 70567, + "name": "2.2 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271988, + "fields": { + "id_car_serie": 70567, + "name": "3.5 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271989, + "fields": { + "id_car_serie": 70674, + "name": "2.0 MT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271990, + "fields": { + "id_car_serie": 70674, + "name": "2.0 AT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271991, + "fields": { + "id_car_serie": 70674, + "name": "2.7 AT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271992, + "fields": { + "id_car_serie": 64043, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271993, + "fields": { + "id_car_serie": 64045, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271994, + "fields": { + "id_car_serie": 70675, + "name": "1.0 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271995, + "fields": { + "id_car_serie": 70675, + "name": "1.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271996, + "fields": { + "id_car_serie": 70676, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271997, + "fields": { + "id_car_serie": 70676, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271998, + "fields": { + "id_car_serie": 70677, + "name": "1.4 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 271999, + "fields": { + "id_car_serie": 70677, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272000, + "fields": { + "id_car_serie": 70678, + "name": "1.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272001, + "fields": { + "id_car_serie": 70678, + "name": "2.0 AT (236 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272002, + "fields": { + "id_car_serie": 70679, + "name": "2.0 AMT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272003, + "fields": { + "id_car_serie": 70680, + "name": "1.5 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272004, + "fields": { + "id_car_serie": 70680, + "name": "1.8 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272005, + "fields": { + "id_car_serie": 70680, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272006, + "fields": { + "id_car_serie": 64100, + "name": "3.0 AT 4WD (257 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272007, + "fields": { + "id_car_serie": 64100, + "name": "3.0 AT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272008, + "fields": { + "id_car_serie": 64111, + "name": "2.2 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272009, + "fields": { + "id_car_serie": 64111, + "name": "2.2 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272010, + "fields": { + "id_car_serie": 70681, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272011, + "fields": { + "id_car_serie": 70681, + "name": "1.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272012, + "fields": { + "id_car_serie": 70681, + "name": "1.5 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272013, + "fields": { + "id_car_serie": 70681, + "name": "1.6 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272014, + "fields": { + "id_car_serie": 70681, + "name": "1.6 AMT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272015, + "fields": { + "id_car_serie": 70681, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272016, + "fields": { + "id_car_serie": 70681, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272017, + "fields": { + "id_car_serie": 64116, + "name": "1.6 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272018, + "fields": { + "id_car_serie": 63127, + "name": "2.5 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272019, + "fields": { + "id_car_serie": 70484, + "name": "3.3 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272020, + "fields": { + "id_car_serie": 70682, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272021, + "fields": { + "id_car_serie": 70682, + "name": "1.6 AMT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272022, + "fields": { + "id_car_serie": 70682, + "name": "1.6 AMT (183 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272023, + "fields": { + "id_car_serie": 70683, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272024, + "fields": { + "id_car_serie": 70683, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272025, + "fields": { + "id_car_serie": 70683, + "name": "1.6 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272026, + "fields": { + "id_car_serie": 70684, + "name": "1.5 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272027, + "fields": { + "id_car_serie": 70685, + "name": "1.7 MT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272028, + "fields": { + "id_car_serie": 70685, + "name": "1.8 MT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272029, + "fields": { + "id_car_serie": 70685, + "name": "1.6 MT (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272030, + "fields": { + "id_car_serie": 70685, + "name": "1.6 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272031, + "fields": { + "id_car_serie": 70686, + "name": "1.7 MT 4WD (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272032, + "fields": { + "id_car_serie": 70686, + "name": "1.8 MT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272033, + "fields": { + "id_car_serie": 70687, + "name": "1.6 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272034, + "fields": { + "id_car_serie": 70687, + "name": "1.6 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272035, + "fields": { + "id_car_serie": 70688, + "name": "1.3 MT (73 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272036, + "fields": { + "id_car_serie": 70688, + "name": "1.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272037, + "fields": { + "id_car_serie": 70688, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272038, + "fields": { + "id_car_serie": 64136, + "name": "2.2 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272039, + "fields": { + "id_car_serie": 64136, + "name": "2.2 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272040, + "fields": { + "id_car_serie": 64136, + "name": "2.2 MT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272041, + "fields": { + "id_car_serie": 64137, + "name": "2.2 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272042, + "fields": { + "id_car_serie": 64137, + "name": "2.2 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272043, + "fields": { + "id_car_serie": 64137, + "name": "2.0 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272044, + "fields": { + "id_car_serie": 70689, + "name": "1.8 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272045, + "fields": { + "id_car_serie": 70689, + "name": "2.0 MT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272046, + "fields": { + "id_car_serie": 70689, + "name": "2.0 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272047, + "fields": { + "id_car_serie": 70689, + "name": "2.0 MT 4WD (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272048, + "fields": { + "id_car_serie": 70689, + "name": "2.2 MT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272049, + "fields": { + "id_car_serie": 70689, + "name": "2.2 MT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272050, + "fields": { + "id_car_serie": 70689, + "name": "2.2 MT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272051, + "fields": { + "id_car_serie": 70689, + "name": "2.2 AT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272052, + "fields": { + "id_car_serie": 70689, + "name": "2.2 MT 4WD (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272053, + "fields": { + "id_car_serie": 70689, + "name": "2.5 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272054, + "fields": { + "id_car_serie": 70689, + "name": "2.5 MT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272055, + "fields": { + "id_car_serie": 67233, + "name": "1.5 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272056, + "fields": { + "id_car_serie": 67233, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272057, + "fields": { + "id_car_serie": 67233, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272058, + "fields": { + "id_car_serie": 67233, + "name": "2.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272059, + "fields": { + "id_car_serie": 64181, + "name": "2.0 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272060, + "fields": { + "id_car_serie": 3733, + "name": "5.6 AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272061, + "fields": { + "id_car_serie": 3733, + "name": "6.0 AT (385 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272062, + "fields": { + "id_car_serie": 67537, + "name": "AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272063, + "fields": { + "id_car_serie": 67537, + "name": "AT 4WD (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272064, + "fields": { + "id_car_serie": 67537, + "name": "AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272065, + "fields": { + "id_car_serie": 70639, + "name": "AT (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272066, + "fields": { + "id_car_serie": 70639, + "name": "AT 4WD (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272067, + "fields": { + "id_car_serie": 70639, + "name": "AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272068, + "fields": { + "id_car_serie": 70640, + "name": "AT 4WD (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272069, + "fields": { + "id_car_serie": 70640, + "name": "AT 4WD (626 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272070, + "fields": { + "id_car_serie": 70640, + "name": "AT 4WD (687 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272071, + "fields": { + "id_car_serie": 63823, + "name": "4.4 AT 4WD (900 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272072, + "fields": { + "id_car_serie": 45434, + "name": "2.4 MT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272073, + "fields": { + "id_car_serie": 67760, + "name": "3.0 AT 4WD (216 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272074, + "fields": { + "id_car_serie": 70690, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272075, + "fields": { + "id_car_serie": 70690, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272076, + "fields": { + "id_car_serie": 70690, + "name": "2.4 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272077, + "fields": { + "id_car_serie": 70690, + "name": "2.4 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272078, + "fields": { + "id_car_serie": 70691, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272079, + "fields": { + "id_car_serie": 70691, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272080, + "fields": { + "id_car_serie": 70691, + "name": "2.4 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272081, + "fields": { + "id_car_serie": 70691, + "name": "2.4 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272082, + "fields": { + "id_car_serie": 70692, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272083, + "fields": { + "id_car_serie": 70692, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272084, + "fields": { + "id_car_serie": 70692, + "name": "2.4 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272085, + "fields": { + "id_car_serie": 70693, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272086, + "fields": { + "id_car_serie": 70693, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272087, + "fields": { + "id_car_serie": 70693, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272088, + "fields": { + "id_car_serie": 15303, + "name": "3.8 AT 4WD (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272089, + "fields": { + "id_car_serie": 64229, + "name": "3.0 AT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272090, + "fields": { + "id_car_serie": 64229, + "name": "3.0 MT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272091, + "fields": { + "id_car_serie": 63175, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272092, + "fields": { + "id_car_serie": 63182, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272093, + "fields": { + "id_car_serie": 63182, + "name": "2.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272094, + "fields": { + "id_car_serie": 63182, + "name": "2.5 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272095, + "fields": { + "id_car_serie": 70694, + "name": "1.5 CVT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272096, + "fields": { + "id_car_serie": 70694, + "name": "1.6 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272097, + "fields": { + "id_car_serie": 70695, + "name": "2.0 CVT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272098, + "fields": { + "id_car_serie": 70695, + "name": "2.5 CVT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272099, + "fields": { + "id_car_serie": 70695, + "name": "2.5 CVT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272100, + "fields": { + "id_car_serie": 64265, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272101, + "fields": { + "id_car_serie": 70696, + "name": "1.5 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272102, + "fields": { + "id_car_serie": 70696, + "name": "1.5 AT 4WD (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272103, + "fields": { + "id_car_serie": 70696, + "name": "1.5 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272104, + "fields": { + "id_car_serie": 70696, + "name": "1.5 AT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272105, + "fields": { + "id_car_serie": 70696, + "name": "1.5 CVT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272106, + "fields": { + "id_car_serie": 70696, + "name": "1.5 CVT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272107, + "fields": { + "id_car_serie": 70696, + "name": "1.5 CVT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272108, + "fields": { + "id_car_serie": 70697, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272109, + "fields": { + "id_car_serie": 70697, + "name": "1.6 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272110, + "fields": { + "id_car_serie": 10816, + "name": "1.3 AMT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272111, + "fields": { + "id_car_serie": 10816, + "name": "1.4 AMT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272112, + "fields": { + "id_car_serie": 67115, + "name": "4.0 AMT (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272113, + "fields": { + "id_car_serie": 70698, + "name": "3.0 AMT 4WD (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272114, + "fields": { + "id_car_serie": 70698, + "name": "4.8 AMT 4WD (520 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272115, + "fields": { + "id_car_serie": 70698, + "name": "4.8 AMT 4WD (570 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272116, + "fields": { + "id_car_serie": 4077, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272117, + "fields": { + "id_car_serie": 64393, + "name": "1.5 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272118, + "fields": { + "id_car_serie": 70699, + "name": "2.0 CVT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272119, + "fields": { + "id_car_serie": 70699, + "name": "2.0 MT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272120, + "fields": { + "id_car_serie": 70699, + "name": "2.0 CVT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272121, + "fields": { + "id_car_serie": 70699, + "name": "2.5 CVT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272122, + "fields": { + "id_car_serie": 70700, + "name": "2.0 CVT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272123, + "fields": { + "id_car_serie": 70700, + "name": "2.0 CVT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272124, + "fields": { + "id_car_serie": 70700, + "name": "2.0 MT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272125, + "fields": { + "id_car_serie": 70701, + "name": "2.0 CVT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272126, + "fields": { + "id_car_serie": 70701, + "name": "2.0 MT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272127, + "fields": { + "id_car_serie": 70702, + "name": "2.0 MT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272128, + "fields": { + "id_car_serie": 70702, + "name": "2.0 CVT 4WD (148 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272129, + "fields": { + "id_car_serie": 63795, + "name": "2.0 CVT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272130, + "fields": { + "id_car_serie": 70491, + "name": "2.0 MT 4WD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272131, + "fields": { + "id_car_serie": 70492, + "name": "2.0 MT 4WD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272132, + "fields": { + "id_car_serie": 64439, + "name": "2.0 MT 4WD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272133, + "fields": { + "id_car_serie": 70703, + "name": "1.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272134, + "fields": { + "id_car_serie": 70703, + "name": "1.2 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272135, + "fields": { + "id_car_serie": 70703, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272136, + "fields": { + "id_car_serie": 70703, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272137, + "fields": { + "id_car_serie": 70704, + "name": "0.8 MT (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272138, + "fields": { + "id_car_serie": 70704, + "name": "0.8 MT 4WD (42 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272139, + "fields": { + "id_car_serie": 70705, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272140, + "fields": { + "id_car_serie": 70705, + "name": "1.4 AT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272141, + "fields": { + "id_car_serie": 70705, + "name": "1.4 MT (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272142, + "fields": { + "id_car_serie": 70705, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272143, + "fields": { + "id_car_serie": 70705, + "name": "1.6 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272144, + "fields": { + "id_car_serie": 70706, + "name": "1.2 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272145, + "fields": { + "id_car_serie": 70706, + "name": "1.2 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272146, + "fields": { + "id_car_serie": 70706, + "name": "1.2 AMT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272147, + "fields": { + "id_car_serie": 70706, + "name": "1.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272148, + "fields": { + "id_car_serie": 70706, + "name": "1.2 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272149, + "fields": { + "id_car_serie": 64483, + "name": "1.4 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272150, + "fields": { + "id_car_serie": 70707, + "name": "1.0 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272151, + "fields": { + "id_car_serie": 70707, + "name": "1.0 AMT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272152, + "fields": { + "id_car_serie": 66901, + "name": "4.0 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272153, + "fields": { + "id_car_serie": 66901, + "name": "2.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272154, + "fields": { + "id_car_serie": 66901, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272155, + "fields": { + "id_car_serie": 66901, + "name": "2.8 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272156, + "fields": { + "id_car_serie": 64540, + "name": "2.8 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272157, + "fields": { + "id_car_serie": 64540, + "name": "2.8 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272158, + "fields": { + "id_car_serie": 63282, + "name": "3.5 AT (301 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272159, + "fields": { + "id_car_serie": 70708, + "name": "2.0 CVT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272160, + "fields": { + "id_car_serie": 70709, + "name": "2.0 CVT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272161, + "fields": { + "id_car_serie": 70709, + "name": "2.0 CVT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272162, + "fields": { + "id_car_serie": 70710, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272163, + "fields": { + "id_car_serie": 70710, + "name": "2.0 CVT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272164, + "fields": { + "id_car_serie": 46614, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272165, + "fields": { + "id_car_serie": 63318, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272166, + "fields": { + "id_car_serie": 70711, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272167, + "fields": { + "id_car_serie": 70711, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272168, + "fields": { + "id_car_serie": 70711, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272169, + "fields": { + "id_car_serie": 70711, + "name": "1.6 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272170, + "fields": { + "id_car_serie": 70711, + "name": "1.6 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272171, + "fields": { + "id_car_serie": 70711, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272172, + "fields": { + "id_car_serie": 70711, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272173, + "fields": { + "id_car_serie": 70711, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272174, + "fields": { + "id_car_serie": 70711, + "name": "2.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272175, + "fields": { + "id_car_serie": 64619, + "name": "1.2 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272176, + "fields": { + "id_car_serie": 14595, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272177, + "fields": { + "id_car_serie": 14595, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272178, + "fields": { + "id_car_serie": 70712, + "name": "2.0 CVT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272179, + "fields": { + "id_car_serie": 70712, + "name": "2.0 CVT 4WD (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272180, + "fields": { + "id_car_serie": 70712, + "name": "2.5 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272181, + "fields": { + "id_car_serie": 70712, + "name": "2.5 AT 4WD (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272182, + "fields": { + "id_car_serie": 67163, + "name": "2.0 AMT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272183, + "fields": { + "id_car_serie": 67164, + "name": "2.0 AMT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272184, + "fields": { + "id_car_serie": 67164, + "name": "2.0 AMT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272185, + "fields": { + "id_car_serie": 67164, + "name": "2.0 AMT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272186, + "fields": { + "id_car_serie": 67597, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272187, + "fields": { + "id_car_serie": 67597, + "name": "1.5 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272188, + "fields": { + "id_car_serie": 67597, + "name": "1.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272189, + "fields": { + "id_car_serie": 67597, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272190, + "fields": { + "id_car_serie": 67597, + "name": "1.5 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272191, + "fields": { + "id_car_serie": 45450, + "name": "2.0 AMT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272192, + "fields": { + "id_car_serie": 67323, + "name": "1.5 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272193, + "fields": { + "id_car_serie": 67323, + "name": "1.5 AMT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272194, + "fields": { + "id_car_serie": 67312, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272195, + "fields": { + "id_car_serie": 67312, + "name": "2.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272196, + "fields": { + "id_car_serie": 70713, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272197, + "fields": { + "id_car_serie": 70713, + "name": "2.0 AMT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272198, + "fields": { + "id_car_serie": 67601, + "name": "2.0 MT 4WD (315 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272199, + "fields": { + "id_car_serie": 64653, + "name": "AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272200, + "fields": { + "id_car_serie": 64653, + "name": "AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272201, + "fields": { + "id_car_serie": 70714, + "name": "AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272202, + "fields": { + "id_car_serie": 70714, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272203, + "fields": { + "id_car_serie": 70714, + "name": "AT 4WD (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272204, + "fields": { + "id_car_serie": 70715, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272205, + "fields": { + "id_car_serie": 70715, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272206, + "fields": { + "id_car_serie": 70715, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272207, + "fields": { + "id_car_serie": 70716, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272208, + "fields": { + "id_car_serie": 70716, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272209, + "fields": { + "id_car_serie": 70716, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272210, + "fields": { + "id_car_serie": 70717, + "name": "1.2 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272211, + "fields": { + "id_car_serie": 70717, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272212, + "fields": { + "id_car_serie": 70717, + "name": "1.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272213, + "fields": { + "id_car_serie": 70717, + "name": "1.5 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272214, + "fields": { + "id_car_serie": 70718, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272215, + "fields": { + "id_car_serie": 70718, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272216, + "fields": { + "id_car_serie": 70718, + "name": "2.0 AMT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272217, + "fields": { + "id_car_serie": 53837, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272218, + "fields": { + "id_car_serie": 53837, + "name": "2.0 AMT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272219, + "fields": { + "id_car_serie": 53837, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272220, + "fields": { + "id_car_serie": 53837, + "name": "2.0 AMT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272221, + "fields": { + "id_car_serie": 70719, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272222, + "fields": { + "id_car_serie": 70719, + "name": "2.0 AMT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272223, + "fields": { + "id_car_serie": 70719, + "name": "2.5 AMT 4WD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272224, + "fields": { + "id_car_serie": 70720, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272225, + "fields": { + "id_car_serie": 70720, + "name": "2.0 AMT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272226, + "fields": { + "id_car_serie": 70720, + "name": "2.5 AMT 4WD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272227, + "fields": { + "id_car_serie": 64659, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272228, + "fields": { + "id_car_serie": 70643, + "name": "5.2 AT (700 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272229, + "fields": { + "id_car_serie": 70721, + "name": "4.4 AT 4WD (598 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272230, + "fields": { + "id_car_serie": 70722, + "name": "1.0 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272231, + "fields": { + "id_car_serie": 70644, + "name": "2.0 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272232, + "fields": { + "id_car_serie": 70644, + "name": "2.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272233, + "fields": { + "id_car_serie": 70644, + "name": "2.3 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272234, + "fields": { + "id_car_serie": 70644, + "name": "2.3 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272235, + "fields": { + "id_car_serie": 70644, + "name": "2.4 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272236, + "fields": { + "id_car_serie": 70644, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272237, + "fields": { + "id_car_serie": 70581, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272238, + "fields": { + "id_car_serie": 70581, + "name": "2.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272239, + "fields": { + "id_car_serie": 64747, + "name": "3.0 AT 4WD (462 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272240, + "fields": { + "id_car_serie": 70645, + "name": "1.5 AT (336 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272241, + "fields": { + "id_car_serie": 70645, + "name": "1.5 AT (357 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272242, + "fields": { + "id_car_serie": 70645, + "name": "1.5 AT 4WD (629 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272243, + "fields": { + "id_car_serie": 70645, + "name": "AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272244, + "fields": { + "id_car_serie": 70645, + "name": "AT 4WD (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272245, + "fields": { + "id_car_serie": 70723, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272246, + "fields": { + "id_car_serie": 70723, + "name": "1.5 AMT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272247, + "fields": { + "id_car_serie": 70723, + "name": "1.5 AMT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272248, + "fields": { + "id_car_serie": 70723, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272249, + "fields": { + "id_car_serie": 70723, + "name": "1.5 MT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272250, + "fields": { + "id_car_serie": 70724, + "name": "AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272251, + "fields": { + "id_car_serie": 70724, + "name": "AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272252, + "fields": { + "id_car_serie": 70724, + "name": "AT 4WD (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272253, + "fields": { + "id_car_serie": 70724, + "name": "1.5 AT (336 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272254, + "fields": { + "id_car_serie": 70724, + "name": "1.5 AT (357 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272255, + "fields": { + "id_car_serie": 70724, + "name": "1.5 AT 4WD (629 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272256, + "fields": { + "id_car_serie": 70725, + "name": "1.5 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272257, + "fields": { + "id_car_serie": 70725, + "name": "2.0 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272258, + "fields": { + "id_car_serie": 70726, + "name": "1.5 AMT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272259, + "fields": { + "id_car_serie": 70726, + "name": "1.5 AMT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272260, + "fields": { + "id_car_serie": 70726, + "name": "2.0 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272261, + "fields": { + "id_car_serie": 70727, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272262, + "fields": { + "id_car_serie": 70727, + "name": "1.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272263, + "fields": { + "id_car_serie": 70727, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272264, + "fields": { + "id_car_serie": 70728, + "name": "1.5 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272265, + "fields": { + "id_car_serie": 70728, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272266, + "fields": { + "id_car_serie": 70728, + "name": "1.6 CVT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272267, + "fields": { + "id_car_serie": 67427, + "name": "1.5 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272268, + "fields": { + "id_car_serie": 70729, + "name": "0.7 MT (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272269, + "fields": { + "id_car_serie": 70729, + "name": "0.7 MT 4WD (46 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272270, + "fields": { + "id_car_serie": 70729, + "name": "0.7 CVT (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272271, + "fields": { + "id_car_serie": 70729, + "name": "0.7 CVT 4WD (53 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272272, + "fields": { + "id_car_serie": 70730, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272273, + "fields": { + "id_car_serie": 70730, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272274, + "fields": { + "id_car_serie": 70730, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272275, + "fields": { + "id_car_serie": 70730, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272276, + "fields": { + "id_car_serie": 70731, + "name": "1.0 CVT (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272277, + "fields": { + "id_car_serie": 70731, + "name": "1.0 CVT 4WD (69 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272278, + "fields": { + "id_car_serie": 70731, + "name": "1.0 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272279, + "fields": { + "id_car_serie": 70615, + "name": "AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272280, + "fields": { + "id_car_serie": 70615, + "name": "AT 4WD (490 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272281, + "fields": { + "id_car_serie": 70615, + "name": "2.0 AMT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272282, + "fields": { + "id_car_serie": 70732, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272283, + "fields": { + "id_car_serie": 70732, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272284, + "fields": { + "id_car_serie": 70732, + "name": "1.5 CVT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272285, + "fields": { + "id_car_serie": 70733, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272286, + "fields": { + "id_car_serie": 70734, + "name": "AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272287, + "fields": { + "id_car_serie": 70735, + "name": "AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272288, + "fields": { + "id_car_serie": 70618, + "name": "1.8 AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272289, + "fields": { + "id_car_serie": 70618, + "name": "2.0 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272290, + "fields": { + "id_car_serie": 70618, + "name": "2.0 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272291, + "fields": { + "id_car_serie": 70736, + "name": "6.5 AMT 4WD (725 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272292, + "fields": { + "id_car_serie": 70738, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272293, + "fields": { + "id_car_serie": 70738, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272294, + "fields": { + "id_car_serie": 70738, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272295, + "fields": { + "id_car_serie": 70738, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272296, + "fields": { + "id_car_serie": 70739, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272297, + "fields": { + "id_car_serie": 70739, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272298, + "fields": { + "id_car_serie": 70739, + "name": "1.5 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272299, + "fields": { + "id_car_serie": 70739, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272300, + "fields": { + "id_car_serie": 70739, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272301, + "fields": { + "id_car_serie": 70739, + "name": "1.6 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272302, + "fields": { + "id_car_serie": 70737, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272303, + "fields": { + "id_car_serie": 70737, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272304, + "fields": { + "id_car_serie": 70737, + "name": "1.6 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272305, + "fields": { + "id_car_serie": 70738, + "name": "1.5 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272306, + "fields": { + "id_car_serie": 70738, + "name": "1.6 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272307, + "fields": { + "id_car_serie": 70740, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272308, + "fields": { + "id_car_serie": 70740, + "name": "1.6 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272309, + "fields": { + "id_car_serie": 70740, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272310, + "fields": { + "id_car_serie": 70740, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272311, + "fields": { + "id_car_serie": 70740, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272312, + "fields": { + "id_car_serie": 70740, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272313, + "fields": { + "id_car_serie": 70741, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272314, + "fields": { + "id_car_serie": 70741, + "name": "1.6 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272315, + "fields": { + "id_car_serie": 70741, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272316, + "fields": { + "id_car_serie": 70741, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272317, + "fields": { + "id_car_serie": 70742, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272318, + "fields": { + "id_car_serie": 70742, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272319, + "fields": { + "id_car_serie": 70742, + "name": "1.6 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272320, + "fields": { + "id_car_serie": 70742, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272321, + "fields": { + "id_car_serie": 70742, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272322, + "fields": { + "id_car_serie": 70742, + "name": "1.4 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272323, + "fields": { + "id_car_serie": 70743, + "name": "2.7 AT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272324, + "fields": { + "id_car_serie": 70743, + "name": "2.7 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272325, + "fields": { + "id_car_serie": 70744, + "name": "2.7 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272326, + "fields": { + "id_car_serie": 70744, + "name": "5.3 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272327, + "fields": { + "id_car_serie": 70744, + "name": "5.3 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272328, + "fields": { + "id_car_serie": 70745, + "name": "2.7 AT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272329, + "fields": { + "id_car_serie": 70745, + "name": "2.7 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272330, + "fields": { + "id_car_serie": 70745, + "name": "5.3 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272331, + "fields": { + "id_car_serie": 70745, + "name": "6.2 AT 4WD (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272332, + "fields": { + "id_car_serie": 70745, + "name": "3.0 AT (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272333, + "fields": { + "id_car_serie": 70745, + "name": "3.0 AT 4WD (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272334, + "fields": { + "id_car_serie": 70515, + "name": "2.7 AT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272335, + "fields": { + "id_car_serie": 70515, + "name": "2.7 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272336, + "fields": { + "id_car_serie": 70515, + "name": "4.3 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272337, + "fields": { + "id_car_serie": 70515, + "name": "5.3 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272338, + "fields": { + "id_car_serie": 70515, + "name": "5.3 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272339, + "fields": { + "id_car_serie": 70746, + "name": "2.7 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272340, + "fields": { + "id_car_serie": 70746, + "name": "4.3 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272341, + "fields": { + "id_car_serie": 70746, + "name": "4.3 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272342, + "fields": { + "id_car_serie": 70746, + "name": "5.3 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272343, + "fields": { + "id_car_serie": 70746, + "name": "6.2 AT 4WD (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272344, + "fields": { + "id_car_serie": 70746, + "name": "3.0 AT (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272345, + "fields": { + "id_car_serie": 70746, + "name": "3.0 AT 4WD (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272346, + "fields": { + "id_car_serie": 70747, + "name": "2.7 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272347, + "fields": { + "id_car_serie": 70747, + "name": "4.3 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272348, + "fields": { + "id_car_serie": 70747, + "name": "4.3 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272349, + "fields": { + "id_car_serie": 70747, + "name": "5.3 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272350, + "fields": { + "id_car_serie": 70747, + "name": "5.3 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272351, + "fields": { + "id_car_serie": 70747, + "name": "6.2 AT 4WD (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272352, + "fields": { + "id_car_serie": 70747, + "name": "3.0 AT 4WD (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272353, + "fields": { + "id_car_serie": 67437, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272354, + "fields": { + "id_car_serie": 67437, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272355, + "fields": { + "id_car_serie": 67437, + "name": "2.0 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272356, + "fields": { + "id_car_serie": 67437, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272357, + "fields": { + "id_car_serie": 67437, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272358, + "fields": { + "id_car_serie": 67437, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272359, + "fields": { + "id_car_serie": 67437, + "name": "2.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272360, + "fields": { + "id_car_serie": 67437, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272361, + "fields": { + "id_car_serie": 67437, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272362, + "fields": { + "id_car_serie": 70748, + "name": "6.6 AMT (1817 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272363, + "fields": { + "id_car_serie": 70749, + "name": "AT 4WD (598 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272364, + "fields": { + "id_car_serie": 70749, + "name": "AT (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272365, + "fields": { + "id_car_serie": 70750, + "name": "1.5 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272366, + "fields": { + "id_car_serie": 70750, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272367, + "fields": { + "id_car_serie": 70751, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272368, + "fields": { + "id_car_serie": 70751, + "name": "1.8 AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272369, + "fields": { + "id_car_serie": 70751, + "name": "1.8 AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272370, + "fields": { + "id_car_serie": 70751, + "name": "1.8 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272371, + "fields": { + "id_car_serie": 70752, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272372, + "fields": { + "id_car_serie": 70752, + "name": "2.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272373, + "fields": { + "id_car_serie": 70753, + "name": "2.0 AMT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272374, + "fields": { + "id_car_serie": 70753, + "name": "3.0 AT 4WD (337 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272375, + "fields": { + "id_car_serie": 67517, + "name": "3.5 AT 4WD (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272376, + "fields": { + "id_car_serie": 70754, + "name": "1.8 MT (104 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272377, + "fields": { + "id_car_serie": 70755, + "name": "1.7 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272378, + "fields": { + "id_car_serie": 70755, + "name": "1.7 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272379, + "fields": { + "id_car_serie": 70756, + "name": "1.6 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272380, + "fields": { + "id_car_serie": 70756, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272381, + "fields": { + "id_car_serie": 70757, + "name": "1.5 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272382, + "fields": { + "id_car_serie": 70757, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272383, + "fields": { + "id_car_serie": 70757, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272384, + "fields": { + "id_car_serie": 70758, + "name": "AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272385, + "fields": { + "id_car_serie": 64955, + "name": "AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272386, + "fields": { + "id_car_serie": 70759, + "name": "AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272387, + "fields": { + "id_car_serie": 14793, + "name": "3.7 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272388, + "fields": { + "id_car_serie": 70760, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272389, + "fields": { + "id_car_serie": 70760, + "name": "1.5 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272390, + "fields": { + "id_car_serie": 70761, + "name": "4.0 AT 4WD (666 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272391, + "fields": { + "id_car_serie": 70517, + "name": "AT 4WD (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272392, + "fields": { + "id_car_serie": 70517, + "name": "AT 4WD (905 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272393, + "fields": { + "id_car_serie": 70762, + "name": "6.0 AMT (864 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272394, + "fields": { + "id_car_serie": 70762, + "name": "6.0 MT (864 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272395, + "fields": { + "id_car_serie": 70763, + "name": "2.0 MT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272396, + "fields": { + "id_car_serie": 70763, + "name": "2.0 AT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272397, + "fields": { + "id_car_serie": 70763, + "name": "2.0 MT 4WD (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272398, + "fields": { + "id_car_serie": 70763, + "name": "2.0 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272399, + "fields": { + "id_car_serie": 70763, + "name": "2.0 MT 4WD (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272400, + "fields": { + "id_car_serie": 70763, + "name": "2.0 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272401, + "fields": { + "id_car_serie": 67042, + "name": "AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272402, + "fields": { + "id_car_serie": 67042, + "name": "AT 4WD (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272403, + "fields": { + "id_car_serie": 7448, + "name": "2.3 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272404, + "fields": { + "id_car_serie": 70646, + "name": "1.4 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272405, + "fields": { + "id_car_serie": 70646, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272406, + "fields": { + "id_car_serie": 70646, + "name": "1.6 CVT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272407, + "fields": { + "id_car_serie": 70764, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272408, + "fields": { + "id_car_serie": 70764, + "name": "1.6 CVT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272409, + "fields": { + "id_car_serie": 70647, + "name": "1.5 MT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272410, + "fields": { + "id_car_serie": 70647, + "name": "1.5 AMT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272411, + "fields": { + "id_car_serie": 70647, + "name": "1.5 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272412, + "fields": { + "id_car_serie": 70648, + "name": "1.5 MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272413, + "fields": { + "id_car_serie": 70648, + "name": "1.5 AMT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272414, + "fields": { + "id_car_serie": 70648, + "name": "1.5 MT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272415, + "fields": { + "id_car_serie": 70648, + "name": "1.5 AMT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272416, + "fields": { + "id_car_serie": 70648, + "name": "1.5 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272417, + "fields": { + "id_car_serie": 70649, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272418, + "fields": { + "id_car_serie": 70649, + "name": "1.5 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272419, + "fields": { + "id_car_serie": 70649, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272420, + "fields": { + "id_car_serie": 70649, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272421, + "fields": { + "id_car_serie": 70649, + "name": "2.0 AMT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272422, + "fields": { + "id_car_serie": 70649, + "name": "1.5 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272423, + "fields": { + "id_car_serie": 70649, + "name": "1.5 AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272424, + "fields": { + "id_car_serie": 70650, + "name": "1.5 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272425, + "fields": { + "id_car_serie": 70650, + "name": "1.5 AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272426, + "fields": { + "id_car_serie": 70650, + "name": "2.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272427, + "fields": { + "id_car_serie": 70651, + "name": "1.5 MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272428, + "fields": { + "id_car_serie": 70651, + "name": "1.5 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272429, + "fields": { + "id_car_serie": 70651, + "name": "2.0 AMT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272430, + "fields": { + "id_car_serie": 70651, + "name": "2.0 AMT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272431, + "fields": { + "id_car_serie": 70651, + "name": "1.5 AT (291 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272432, + "fields": { + "id_car_serie": 70765, + "name": "2.0 AT (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272433, + "fields": { + "id_car_serie": 70765, + "name": "2.0 AT 4WD (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272434, + "fields": { + "id_car_serie": 70765, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272435, + "fields": { + "id_car_serie": 70765, + "name": "2.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272436, + "fields": { + "id_car_serie": 70652, + "name": "1.5 AMT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272437, + "fields": { + "id_car_serie": 70652, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272438, + "fields": { + "id_car_serie": 70652, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272439, + "fields": { + "id_car_serie": 70653, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272440, + "fields": { + "id_car_serie": 70654, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272441, + "fields": { + "id_car_serie": 70654, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272442, + "fields": { + "id_car_serie": 70654, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272443, + "fields": { + "id_car_serie": 70655, + "name": "AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272444, + "fields": { + "id_car_serie": 70655, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272445, + "fields": { + "id_car_serie": 70656, + "name": "1.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272446, + "fields": { + "id_car_serie": 70656, + "name": "1.0 AMT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272447, + "fields": { + "id_car_serie": 70656, + "name": "1.5 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272448, + "fields": { + "id_car_serie": 70656, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272449, + "fields": { + "id_car_serie": 70656, + "name": "1.6 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272450, + "fields": { + "id_car_serie": 70656, + "name": "1.6 CVT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272451, + "fields": { + "id_car_serie": 70656, + "name": "1.0 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272452, + "fields": { + "id_car_serie": 70656, + "name": "1.5 AT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272453, + "fields": { + "id_car_serie": 70766, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272454, + "fields": { + "id_car_serie": 70766, + "name": "1.5 AMT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272455, + "fields": { + "id_car_serie": 70766, + "name": "1.5 AT (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272456, + "fields": { + "id_car_serie": 70767, + "name": "AT 4WD (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272457, + "fields": { + "id_car_serie": 70768, + "name": "2.2 MT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272458, + "fields": { + "id_car_serie": 70768, + "name": "2.2 AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272459, + "fields": { + "id_car_serie": 70769, + "name": "2.2 AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272460, + "fields": { + "id_car_serie": 70769, + "name": "2.2 AT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272461, + "fields": { + "id_car_serie": 70770, + "name": "2.2 AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272462, + "fields": { + "id_car_serie": 70770, + "name": "2.2 AT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272463, + "fields": { + "id_car_serie": 70770, + "name": "2.2 MT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272464, + "fields": { + "id_car_serie": 46931, + "name": "2.2 MT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272465, + "fields": { + "id_car_serie": 46931, + "name": "2.2 AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272466, + "fields": { + "id_car_serie": 46931, + "name": "2.2 AT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272467, + "fields": { + "id_car_serie": 70771, + "name": "1.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272468, + "fields": { + "id_car_serie": 70771, + "name": "1.5 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272469, + "fields": { + "id_car_serie": 67366, + "name": "1.6 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272470, + "fields": { + "id_car_serie": 67366, + "name": "1.6 AT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272471, + "fields": { + "id_car_serie": 67366, + "name": "1.9 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272472, + "fields": { + "id_car_serie": 70772, + "name": "1.3 MT (23 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272473, + "fields": { + "id_car_serie": 64665, + "name": "2.0 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272474, + "fields": { + "id_car_serie": 70773, + "name": "AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272475, + "fields": { + "id_car_serie": 70773, + "name": "AT 4WD (503 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272476, + "fields": { + "id_car_serie": 70773, + "name": "AT 4WD (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272477, + "fields": { + "id_car_serie": 67088, + "name": "2.0 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272478, + "fields": { + "id_car_serie": 70472, + "name": "AT 4WD (490 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272479, + "fields": { + "id_car_serie": 70774, + "name": "AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272480, + "fields": { + "id_car_serie": 70775, + "name": "AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272481, + "fields": { + "id_car_serie": 70776, + "name": "3.5 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272482, + "fields": { + "id_car_serie": 64623, + "name": "1.5 AT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272483, + "fields": { + "id_car_serie": 70737, + "name": "1.5 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272484, + "fields": { + "id_car_serie": 70737, + "name": "1.6 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272485, + "fields": { + "id_car_serie": 70769, + "name": "2.2 MT (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272486, + "fields": { + "id_car_serie": 70769, + "name": "2.2 MT 4WD (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272487, + "fields": { + "id_car_serie": 70769, + "name": "2.2 AT (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272488, + "fields": { + "id_car_serie": 70769, + "name": "2.2 AT 4WD (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272496, + "fields": { + "id_car_serie": 70777, + "name": "1.5 AT (110 hp) front, gasoline", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 272497, + "fields": { + "id_car_serie": 70778, + "name": "1.5 AT (110 hp) front, gasoline", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 272498, + "fields": { + "id_car_serie": 70777, + "name": "1.8 MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272500, + "fields": { + "id_car_serie": 70779, + "name": "1.8 l, 125 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": 2000, + "end_production_year": 2004 + } +}, +{ + "model": "inventory.cartrim", + "pk": 272501, + "fields": { + "id_car_serie": 70779, + "name": "1.8 l, 132 hp, gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272502, + "fields": { + "id_car_serie": 70779, + "name": "1.5 l, 110 hp, gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272503, + "fields": { + "id_car_serie": 70779, + "name": "1.5 l, 105 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272504, + "fields": { + "id_car_serie": 70779, + "name": "1.8 l, 190 hp, gasoline, MT, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272505, + "fields": { + "id_car_serie": 70779, + "name": "1.8 l, 190 hp, gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272506, + "fields": { + "id_car_serie": 70780, + "name": "2.2 l, 197 hp, diesel, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272507, + "fields": { + "id_car_serie": 70780, + "name": "3.3 l, 249 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272508, + "fields": { + "id_car_serie": 70780, + "name": "3.3 l, 271 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272509, + "fields": { + "id_car_serie": 70781, + "name": "2.2 l, 200 hp, diesel, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272510, + "fields": { + "id_car_serie": 70781, + "name": "3.0 l, 249 hp, gasoline, Automatic transmission, Four-wheel drive (4WD)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272511, + "fields": { + "id_car_serie": 70782, + "name": "1.5 (116 HP) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272512, + "fields": { + "id_car_serie": 70782, + "name": "1,5 Turbo (154 HP) AT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272513, + "fields": { + "id_car_serie": 70782, + "name": "1,5 Turbo (154 HP) MT", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272514, + "fields": { + "id_car_serie": 66517, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272515, + "fields": { + "id_car_serie": 70783, + "name": "AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272516, + "fields": { + "id_car_serie": 66846, + "name": "3.0 AT (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272517, + "fields": { + "id_car_serie": 64034, + "name": "1.4 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272518, + "fields": { + "id_car_serie": 70784, + "name": "1.6 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272519, + "fields": { + "id_car_serie": 70784, + "name": "1.6 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272520, + "fields": { + "id_car_serie": 70784, + "name": "1.6 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272521, + "fields": { + "id_car_serie": 70784, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272522, + "fields": { + "id_car_serie": 70784, + "name": "1.6 CVT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272523, + "fields": { + "id_car_serie": 70784, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272524, + "fields": { + "id_car_serie": 70785, + "name": "1.6 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272525, + "fields": { + "id_car_serie": 70785, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272526, + "fields": { + "id_car_serie": 70785, + "name": "1.6 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272527, + "fields": { + "id_car_serie": 70785, + "name": "1.6 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272528, + "fields": { + "id_car_serie": 70785, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272529, + "fields": { + "id_car_serie": 70785, + "name": "1.6 CVT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272530, + "fields": { + "id_car_serie": 67395, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272531, + "fields": { + "id_car_serie": 63127, + "name": "3.0 AT (266 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272533, + "fields": { + "id_car_serie": 70787, + "name": "2.4 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272534, + "fields": { + "id_car_serie": 70787, + "name": "2.4 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272535, + "fields": { + "id_car_serie": 70787, + "name": "2.4 AT 4WD (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272536, + "fields": { + "id_car_serie": 70787, + "name": "2.4 AT 4WD (371 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272537, + "fields": { + "id_car_serie": 70787, + "name": "2.5 CVT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272538, + "fields": { + "id_car_serie": 70787, + "name": "2.5 CVT 4WD (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272539, + "fields": { + "id_car_serie": 70688, + "name": "1.8 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272540, + "fields": { + "id_car_serie": 70688, + "name": "1.8 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272541, + "fields": { + "id_car_serie": 70788, + "name": "1.5 MT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272542, + "fields": { + "id_car_serie": 70788, + "name": "1.5 AT (97 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272543, + "fields": { + "id_car_serie": 70788, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272544, + "fields": { + "id_car_serie": 70788, + "name": "1.5 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272545, + "fields": { + "id_car_serie": 70788, + "name": "1.8 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272546, + "fields": { + "id_car_serie": 70788, + "name": "1.8 AT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272547, + "fields": { + "id_car_serie": 70789, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272548, + "fields": { + "id_car_serie": 70789, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272549, + "fields": { + "id_car_serie": 70789, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272550, + "fields": { + "id_car_serie": 70789, + "name": "1.8 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272551, + "fields": { + "id_car_serie": 70789, + "name": "1.8 MT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272552, + "fields": { + "id_car_serie": 70789, + "name": "1.8 AT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272553, + "fields": { + "id_car_serie": 70790, + "name": "1.3 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272554, + "fields": { + "id_car_serie": 70790, + "name": "1.3 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272555, + "fields": { + "id_car_serie": 70790, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272556, + "fields": { + "id_car_serie": 70790, + "name": "2.0 AMT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272557, + "fields": { + "id_car_serie": 70790, + "name": "1.3 AMT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272558, + "fields": { + "id_car_serie": 70790, + "name": "2.0 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272559, + "fields": { + "id_car_serie": 70790, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272560, + "fields": { + "id_car_serie": 70791, + "name": "1.3 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272561, + "fields": { + "id_car_serie": 70791, + "name": "1.3 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272562, + "fields": { + "id_car_serie": 70791, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272563, + "fields": { + "id_car_serie": 70791, + "name": "2.0 AMT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272564, + "fields": { + "id_car_serie": 70791, + "name": "1.3 AMT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272565, + "fields": { + "id_car_serie": 70791, + "name": "2.0 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272566, + "fields": { + "id_car_serie": 70791, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272567, + "fields": { + "id_car_serie": 70792, + "name": "1.3 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272568, + "fields": { + "id_car_serie": 70792, + "name": "1.3 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272569, + "fields": { + "id_car_serie": 70792, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272570, + "fields": { + "id_car_serie": 70792, + "name": "2.0 AMT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272571, + "fields": { + "id_car_serie": 70792, + "name": "1.3 AMT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272572, + "fields": { + "id_car_serie": 70792, + "name": "2.0 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272573, + "fields": { + "id_car_serie": 70792, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272574, + "fields": { + "id_car_serie": 70445, + "name": "2.0 AT 4WD (680 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272575, + "fields": { + "id_car_serie": 70446, + "name": "2.0 AT 4WD (680 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272576, + "fields": { + "id_car_serie": 70793, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272577, + "fields": { + "id_car_serie": 70793, + "name": "2.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272578, + "fields": { + "id_car_serie": 64178, + "name": "2.0 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272579, + "fields": { + "id_car_serie": 66855, + "name": "3.0 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272580, + "fields": { + "id_car_serie": 66855, + "name": "3.0 AT 4WD (449 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272581, + "fields": { + "id_car_serie": 70794, + "name": "2.0 AMT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272582, + "fields": { + "id_car_serie": 70795, + "name": "2.0 AMT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272583, + "fields": { + "id_car_serie": 70795, + "name": "2.0 AMT 4WD (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272584, + "fields": { + "id_car_serie": 67536, + "name": "AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272585, + "fields": { + "id_car_serie": 70796, + "name": "2.2 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272586, + "fields": { + "id_car_serie": 70796, + "name": "2.2 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272587, + "fields": { + "id_car_serie": 70796, + "name": "2.2 AMT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272588, + "fields": { + "id_car_serie": 70797, + "name": "2.2 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272589, + "fields": { + "id_car_serie": 70797, + "name": "2.2 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272590, + "fields": { + "id_car_serie": 70797, + "name": "2.2 AMT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272591, + "fields": { + "id_car_serie": 70798, + "name": "2.2 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272592, + "fields": { + "id_car_serie": 70798, + "name": "2.2 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272593, + "fields": { + "id_car_serie": 70798, + "name": "2.2 AMT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272594, + "fields": { + "id_car_serie": 70799, + "name": "2.2 MT (85 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272595, + "fields": { + "id_car_serie": 70800, + "name": "AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272596, + "fields": { + "id_car_serie": 64233, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272597, + "fields": { + "id_car_serie": 64233, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272598, + "fields": { + "id_car_serie": 64233, + "name": "2.4 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272599, + "fields": { + "id_car_serie": 64327, + "name": "1.6 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272600, + "fields": { + "id_car_serie": 64327, + "name": "1.9 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272601, + "fields": { + "id_car_serie": 64414, + "name": "1.5 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272602, + "fields": { + "id_car_serie": 7664, + "name": "1.8 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272603, + "fields": { + "id_car_serie": 67161, + "name": "2.0 CVT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272604, + "fields": { + "id_car_serie": 70801, + "name": "2.4 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272605, + "fields": { + "id_car_serie": 70801, + "name": "2.8 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272606, + "fields": { + "id_car_serie": 70801, + "name": "2.8 MT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272607, + "fields": { + "id_car_serie": 70802, + "name": "2.4 AT 4WD (349 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272608, + "fields": { + "id_car_serie": 70802, + "name": "2.5 CVT 4WD (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272609, + "fields": { + "id_car_serie": 70711, + "name": "2.0 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272610, + "fields": { + "id_car_serie": 70803, + "name": "1.0 AT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272611, + "fields": { + "id_car_serie": 70804, + "name": "1.0 MT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272612, + "fields": { + "id_car_serie": 70804, + "name": "1.0 AT (66 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272613, + "fields": { + "id_car_serie": 70805, + "name": "1.0 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272614, + "fields": { + "id_car_serie": 70805, + "name": "1.0 AT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272615, + "fields": { + "id_car_serie": 63333, + "name": "2.0 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272616, + "fields": { + "id_car_serie": 63333, + "name": "2.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272617, + "fields": { + "id_car_serie": 70806, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272618, + "fields": { + "id_car_serie": 70806, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272619, + "fields": { + "id_car_serie": 70806, + "name": "2.0 AMT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272620, + "fields": { + "id_car_serie": 70807, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272621, + "fields": { + "id_car_serie": 70808, + "name": "1.4 AMT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272622, + "fields": { + "id_car_serie": 70808, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272623, + "fields": { + "id_car_serie": 70809, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272624, + "fields": { + "id_car_serie": 70809, + "name": "1.4 AMT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272625, + "fields": { + "id_car_serie": 70809, + "name": "1.4 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272626, + "fields": { + "id_car_serie": 70809, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272627, + "fields": { + "id_car_serie": 70809, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272628, + "fields": { + "id_car_serie": 70809, + "name": "1.8 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272629, + "fields": { + "id_car_serie": 70810, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272630, + "fields": { + "id_car_serie": 70810, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272631, + "fields": { + "id_car_serie": 70810, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272632, + "fields": { + "id_car_serie": 70811, + "name": "2.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272633, + "fields": { + "id_car_serie": 70812, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272634, + "fields": { + "id_car_serie": 70812, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272635, + "fields": { + "id_car_serie": 70812, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272636, + "fields": { + "id_car_serie": 70812, + "name": "1.4 AMT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272637, + "fields": { + "id_car_serie": 70813, + "name": "1.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272638, + "fields": { + "id_car_serie": 70813, + "name": "1.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272639, + "fields": { + "id_car_serie": 70813, + "name": "2.0 AMT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272640, + "fields": { + "id_car_serie": 70813, + "name": "2.0 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272641, + "fields": { + "id_car_serie": 70813, + "name": "3.6 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272642, + "fields": { + "id_car_serie": 70814, + "name": "1.8 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272643, + "fields": { + "id_car_serie": 70814, + "name": "1.8 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272644, + "fields": { + "id_car_serie": 70814, + "name": "1.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272645, + "fields": { + "id_car_serie": 70814, + "name": "2.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272646, + "fields": { + "id_car_serie": 70814, + "name": "3.6 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272647, + "fields": { + "id_car_serie": 70814, + "name": "2.0 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272648, + "fields": { + "id_car_serie": 70814, + "name": "2.0 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272649, + "fields": { + "id_car_serie": 70815, + "name": "2.0 AMT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272650, + "fields": { + "id_car_serie": 70816, + "name": "2.0 AMT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272651, + "fields": { + "id_car_serie": 70816, + "name": "3.0 AMT 4WD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272652, + "fields": { + "id_car_serie": 70816, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272653, + "fields": { + "id_car_serie": 70817, + "name": "1.2 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272654, + "fields": { + "id_car_serie": 70817, + "name": "1.2 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272655, + "fields": { + "id_car_serie": 70817, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272656, + "fields": { + "id_car_serie": 70817, + "name": "1.5 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272657, + "fields": { + "id_car_serie": 70818, + "name": "1.2 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272658, + "fields": { + "id_car_serie": 70818, + "name": "1.2 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272659, + "fields": { + "id_car_serie": 70818, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272660, + "fields": { + "id_car_serie": 70819, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272661, + "fields": { + "id_car_serie": 70819, + "name": "2.0 AMT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272662, + "fields": { + "id_car_serie": 70819, + "name": "2.5 AMT 4WD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272663, + "fields": { + "id_car_serie": 70820, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272664, + "fields": { + "id_car_serie": 70820, + "name": "2.0 AMT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272665, + "fields": { + "id_car_serie": 70821, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272666, + "fields": { + "id_car_serie": 70821, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272667, + "fields": { + "id_car_serie": 70822, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272668, + "fields": { + "id_car_serie": 70822, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272669, + "fields": { + "id_car_serie": 70823, + "name": "2.3 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272670, + "fields": { + "id_car_serie": 70823, + "name": "2.3 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272671, + "fields": { + "id_car_serie": 70823, + "name": "2.3 MT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272672, + "fields": { + "id_car_serie": 70823, + "name": "3.0 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272673, + "fields": { + "id_car_serie": 70823, + "name": "2.8 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272674, + "fields": { + "id_car_serie": 66891, + "name": "1.5 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272675, + "fields": { + "id_car_serie": 66891, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272676, + "fields": { + "id_car_serie": 66891, + "name": "1.5 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272677, + "fields": { + "id_car_serie": 66891, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272678, + "fields": { + "id_car_serie": 66891, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272679, + "fields": { + "id_car_serie": 70824, + "name": "1.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272680, + "fields": { + "id_car_serie": 70824, + "name": "1.5 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272681, + "fields": { + "id_car_serie": 70825, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272682, + "fields": { + "id_car_serie": 70825, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272683, + "fields": { + "id_car_serie": 70825, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272684, + "fields": { + "id_car_serie": 70826, + "name": "6.2 AT (800 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272685, + "fields": { + "id_car_serie": 70827, + "name": "6.2 AT (800 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272686, + "fields": { + "id_car_serie": 70828, + "name": "6.2 AT (800 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272687, + "fields": { + "id_car_serie": 70829, + "name": "7.3 AT (537 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272688, + "fields": { + "id_car_serie": 70829, + "name": "7.3 AT (582 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272689, + "fields": { + "id_car_serie": 70830, + "name": "7.3 AT (537 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272690, + "fields": { + "id_car_serie": 70830, + "name": "7.3 AT (582 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272691, + "fields": { + "id_car_serie": 70831, + "name": "1.4 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272692, + "fields": { + "id_car_serie": 70831, + "name": "1.5 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272693, + "fields": { + "id_car_serie": 70561, + "name": "1.5 AT (307 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272694, + "fields": { + "id_car_serie": 70832, + "name": "6.2 AT 4WD (682 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272695, + "fields": { + "id_car_serie": 70833, + "name": "6.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272696, + "fields": { + "id_car_serie": 70834, + "name": "6.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272697, + "fields": { + "id_car_serie": 70834, + "name": "7.0 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272698, + "fields": { + "id_car_serie": 70835, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272699, + "fields": { + "id_car_serie": 70835, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272700, + "fields": { + "id_car_serie": 70835, + "name": "1.6 CVT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272701, + "fields": { + "id_car_serie": 70836, + "name": "1.5 AMT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272702, + "fields": { + "id_car_serie": 70837, + "name": "1.5 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272703, + "fields": { + "id_car_serie": 70837, + "name": "1.5 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272704, + "fields": { + "id_car_serie": 70837, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272705, + "fields": { + "id_car_serie": 70837, + "name": "1.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272706, + "fields": { + "id_car_serie": 70838, + "name": "1.5 AT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272707, + "fields": { + "id_car_serie": 70838, + "name": "2.0 AMT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272708, + "fields": { + "id_car_serie": 70838, + "name": "2.0 AMT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 272709, + "fields": { + "id_car_serie": 53962, + "name": "2.0 (150 hp) gasoline, Automatic transmission, front drive", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279488, + "fields": { + "id_car_serie": 70849, + "name": "AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279489, + "fields": { + "id_car_serie": 70849, + "name": "AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279490, + "fields": { + "id_car_serie": 70850, + "name": "AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279491, + "fields": { + "id_car_serie": 70850, + "name": "AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279492, + "fields": { + "id_car_serie": 63853, + "name": "4.0 AT 4WD (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279493, + "fields": { + "id_car_serie": 63015, + "name": "4.0 AT 4WD (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279494, + "fields": { + "id_car_serie": 70851, + "name": "AT 4WD (503 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279495, + "fields": { + "id_car_serie": 70425, + "name": "1.0 CVT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279496, + "fields": { + "id_car_serie": 70425, + "name": "1.0 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279497, + "fields": { + "id_car_serie": 70852, + "name": "1.4 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279498, + "fields": { + "id_car_serie": 70852, + "name": "1.4 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279499, + "fields": { + "id_car_serie": 70852, + "name": "1.8 AT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279500, + "fields": { + "id_car_serie": 70852, + "name": "1.8 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279501, + "fields": { + "id_car_serie": 47487, + "name": "2.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279502, + "fields": { + "id_car_serie": 70853, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279503, + "fields": { + "id_car_serie": 70853, + "name": "1.6 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279504, + "fields": { + "id_car_serie": 70853, + "name": "2.0 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279505, + "fields": { + "id_car_serie": 70853, + "name": "2.0 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279506, + "fields": { + "id_car_serie": 70853, + "name": "2.0 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279507, + "fields": { + "id_car_serie": 70853, + "name": "2.0 MT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279508, + "fields": { + "id_car_serie": 70853, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279509, + "fields": { + "id_car_serie": 70853, + "name": "2.0 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279510, + "fields": { + "id_car_serie": 70853, + "name": "2.0 MT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279511, + "fields": { + "id_car_serie": 70853, + "name": "2.0 AT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279512, + "fields": { + "id_car_serie": 70853, + "name": "2.0 MT 4WD (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279513, + "fields": { + "id_car_serie": 70854, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279514, + "fields": { + "id_car_serie": 70854, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279515, + "fields": { + "id_car_serie": 70854, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279516, + "fields": { + "id_car_serie": 70854, + "name": "1.6 MT (111 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279517, + "fields": { + "id_car_serie": 70854, + "name": "2.0 AT (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279518, + "fields": { + "id_car_serie": 70854, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279519, + "fields": { + "id_car_serie": 70854, + "name": "2.0 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279520, + "fields": { + "id_car_serie": 70855, + "name": "2.0 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279521, + "fields": { + "id_car_serie": 70856, + "name": "2.0 AT 4WD (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279522, + "fields": { + "id_car_serie": 70857, + "name": "2.0 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279523, + "fields": { + "id_car_serie": 6124, + "name": "4.6 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279524, + "fields": { + "id_car_serie": 70665, + "name": "2.0 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279525, + "fields": { + "id_car_serie": 70665, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279526, + "fields": { + "id_car_serie": 70665, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279527, + "fields": { + "id_car_serie": 70665, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279528, + "fields": { + "id_car_serie": 70665, + "name": "2.0 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279529, + "fields": { + "id_car_serie": 70665, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279530, + "fields": { + "id_car_serie": 70665, + "name": "2.0 MT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279531, + "fields": { + "id_car_serie": 70665, + "name": "2.0 AT (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279532, + "fields": { + "id_car_serie": 70665, + "name": "2.2 MT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279533, + "fields": { + "id_car_serie": 70858, + "name": "AT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279534, + "fields": { + "id_car_serie": 70859, + "name": "2.0 AMT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279535, + "fields": { + "id_car_serie": 70859, + "name": "1.5 AMT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279536, + "fields": { + "id_car_serie": 70859, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279537, + "fields": { + "id_car_serie": 70859, + "name": "1.5 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279538, + "fields": { + "id_car_serie": 70859, + "name": "1.5 AT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279539, + "fields": { + "id_car_serie": 70859, + "name": "1.5 AT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279540, + "fields": { + "id_car_serie": 70860, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279541, + "fields": { + "id_car_serie": 70860, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279542, + "fields": { + "id_car_serie": 70860, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279543, + "fields": { + "id_car_serie": 70860, + "name": "2.0 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279544, + "fields": { + "id_car_serie": 70860, + "name": "2.0 AMT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279545, + "fields": { + "id_car_serie": 70861, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279546, + "fields": { + "id_car_serie": 70861, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279547, + "fields": { + "id_car_serie": 70861, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279548, + "fields": { + "id_car_serie": 70862, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279549, + "fields": { + "id_car_serie": 70862, + "name": "1.5 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279550, + "fields": { + "id_car_serie": 70862, + "name": "1.5 AMT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279551, + "fields": { + "id_car_serie": 70863, + "name": "AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279552, + "fields": { + "id_car_serie": 70863, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279553, + "fields": { + "id_car_serie": 67200, + "name": "2.5 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279554, + "fields": { + "id_car_serie": 67397, + "name": "3.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279555, + "fields": { + "id_car_serie": 70864, + "name": "1.4 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279556, + "fields": { + "id_car_serie": 70864, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279557, + "fields": { + "id_car_serie": 70865, + "name": "1.4 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279558, + "fields": { + "id_car_serie": 70865, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279559, + "fields": { + "id_car_serie": 70865, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279560, + "fields": { + "id_car_serie": 70865, + "name": "2.0 AT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279561, + "fields": { + "id_car_serie": 70866, + "name": "1.6 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279562, + "fields": { + "id_car_serie": 70866, + "name": "2.5 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279563, + "fields": { + "id_car_serie": 70866, + "name": "3.5 AT (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279564, + "fields": { + "id_car_serie": 70866, + "name": "3.5 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279565, + "fields": { + "id_car_serie": 70866, + "name": "3.5 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279566, + "fields": { + "id_car_serie": 70867, + "name": "AT (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279567, + "fields": { + "id_car_serie": 70867, + "name": "AT (229 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279568, + "fields": { + "id_car_serie": 70867, + "name": "AT 4WD (325 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279569, + "fields": { + "id_car_serie": 64099, + "name": "1.5 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279570, + "fields": { + "id_car_serie": 64099, + "name": "2.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279571, + "fields": { + "id_car_serie": 64099, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279572, + "fields": { + "id_car_serie": 64099, + "name": "2.0 AT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279573, + "fields": { + "id_car_serie": 64113, + "name": "1.5 AT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279574, + "fields": { + "id_car_serie": 64113, + "name": "1.5 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279575, + "fields": { + "id_car_serie": 64113, + "name": "1.5 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279576, + "fields": { + "id_car_serie": 70868, + "name": "1.5 CVT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279577, + "fields": { + "id_car_serie": 70868, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279578, + "fields": { + "id_car_serie": 70869, + "name": "2.0 AT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279579, + "fields": { + "id_car_serie": 54051, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279580, + "fields": { + "id_car_serie": 3733, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279581, + "fields": { + "id_car_serie": 3733, + "name": "2.0 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279582, + "fields": { + "id_car_serie": 70870, + "name": "4.0 AT 4WD (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279583, + "fields": { + "id_car_serie": 70871, + "name": "4.0 AT 4WD (802 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279584, + "fields": { + "id_car_serie": 63173, + "name": "1.2 AMT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279587, + "fields": { + "id_car_serie": 67161, + "name": "2.5 AT (209 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279588, + "fields": { + "id_car_serie": 70872, + "name": "1.8 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279589, + "fields": { + "id_car_serie": 70872, + "name": "1.2 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279590, + "fields": { + "id_car_serie": 70872, + "name": "1.5 CVT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279591, + "fields": { + "id_car_serie": 70872, + "name": "1.8 AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279592, + "fields": { + "id_car_serie": 67423, + "name": "2.0 AMT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279593, + "fields": { + "id_car_serie": 70873, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279594, + "fields": { + "id_car_serie": 70873, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279595, + "fields": { + "id_car_serie": 70873, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279596, + "fields": { + "id_car_serie": 70874, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279597, + "fields": { + "id_car_serie": 70874, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279598, + "fields": { + "id_car_serie": 70874, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279599, + "fields": { + "id_car_serie": 70874, + "name": "1.4 AMT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279600, + "fields": { + "id_car_serie": 70875, + "name": "AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279601, + "fields": { + "id_car_serie": 70875, + "name": "AT 4WD (496 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279602, + "fields": { + "id_car_serie": 70875, + "name": "1.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279603, + "fields": { + "id_car_serie": 70875, + "name": "1.5 AT 4WD (428 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279604, + "fields": { + "id_car_serie": 70875, + "name": "1.5 AT 4WD (496 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279605, + "fields": { + "id_car_serie": 70876, + "name": "1.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279606, + "fields": { + "id_car_serie": 70876, + "name": "1.5 AT 4WD (449 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279607, + "fields": { + "id_car_serie": 70877, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279608, + "fields": { + "id_car_serie": 70877, + "name": "1.5 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279609, + "fields": { + "id_car_serie": 70877, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279610, + "fields": { + "id_car_serie": 70877, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279611, + "fields": { + "id_car_serie": 70878, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279612, + "fields": { + "id_car_serie": 70878, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279613, + "fields": { + "id_car_serie": 70878, + "name": "1.5 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279614, + "fields": { + "id_car_serie": 70878, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279615, + "fields": { + "id_car_serie": 70878, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279616, + "fields": { + "id_car_serie": 67626, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279617, + "fields": { + "id_car_serie": 67626, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279618, + "fields": { + "id_car_serie": 70879, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279619, + "fields": { + "id_car_serie": 70879, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279620, + "fields": { + "id_car_serie": 70879, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279621, + "fields": { + "id_car_serie": 70880, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279622, + "fields": { + "id_car_serie": 70880, + "name": "1.5 MT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279623, + "fields": { + "id_car_serie": 70880, + "name": "1.5 AMT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279624, + "fields": { + "id_car_serie": 70881, + "name": "AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279625, + "fields": { + "id_car_serie": 70882, + "name": "AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279626, + "fields": { + "id_car_serie": 70833, + "name": "4.1 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279627, + "fields": { + "id_car_serie": 70883, + "name": "3.7 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279628, + "fields": { + "id_car_serie": 70883, + "name": "5.2 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279629, + "fields": { + "id_car_serie": 70883, + "name": "5.2 MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279630, + "fields": { + "id_car_serie": 70883, + "name": "5.2 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279631, + "fields": { + "id_car_serie": 70883, + "name": "5.9 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279632, + "fields": { + "id_car_serie": 70883, + "name": "5.9 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279633, + "fields": { + "id_car_serie": 70883, + "name": "6.3 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279634, + "fields": { + "id_car_serie": 70883, + "name": "6.3 AT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279635, + "fields": { + "id_car_serie": 70883, + "name": "6.3 AT (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279636, + "fields": { + "id_car_serie": 70883, + "name": "6.3 MT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279637, + "fields": { + "id_car_serie": 70883, + "name": "6.3 AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279638, + "fields": { + "id_car_serie": 70883, + "name": "6.3 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279639, + "fields": { + "id_car_serie": 70883, + "name": "6.6 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279640, + "fields": { + "id_car_serie": 70883, + "name": "7.2 AT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279641, + "fields": { + "id_car_serie": 70883, + "name": "7.2 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279642, + "fields": { + "id_car_serie": 70883, + "name": "7.2 AT (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279643, + "fields": { + "id_car_serie": 70883, + "name": "7.2 AT (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279644, + "fields": { + "id_car_serie": 70507, + "name": "2.3 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279645, + "fields": { + "id_car_serie": 70507, + "name": "2.3 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279646, + "fields": { + "id_car_serie": 70884, + "name": "1.5 AT 4WD (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279647, + "fields": { + "id_car_serie": 67795, + "name": "1.6 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279648, + "fields": { + "id_car_serie": 70885, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279649, + "fields": { + "id_car_serie": 70885, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279650, + "fields": { + "id_car_serie": 70886, + "name": "AT 4WD (830 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279651, + "fields": { + "id_car_serie": 8587, + "name": "2.8 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279652, + "fields": { + "id_car_serie": 8587, + "name": "2.8 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279653, + "fields": { + "id_car_serie": 70894, + "name": "1.5 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279654, + "fields": { + "id_car_serie": 70894, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279655, + "fields": { + "id_car_serie": 70894, + "name": "1.6 CVT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279656, + "fields": { + "id_car_serie": 70895, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279657, + "fields": { + "id_car_serie": 70895, + "name": "1.5 AMT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279658, + "fields": { + "id_car_serie": 70895, + "name": "1.5 MT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279659, + "fields": { + "id_car_serie": 70896, + "name": "1.5 MT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279660, + "fields": { + "id_car_serie": 70896, + "name": "1.5 AMT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279661, + "fields": { + "id_car_serie": 70897, + "name": "1.5 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279662, + "fields": { + "id_car_serie": 70897, + "name": "1.5 AMT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279663, + "fields": { + "id_car_serie": 7450, + "name": "2.3 AT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279664, + "fields": { + "id_car_serie": 70898, + "name": "AT 4WD (835 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279665, + "fields": { + "id_car_serie": 70899, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279666, + "fields": { + "id_car_serie": 70899, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279667, + "fields": { + "id_car_serie": 70900, + "name": "AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279668, + "fields": { + "id_car_serie": 70901, + "name": "1.5 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279669, + "fields": { + "id_car_serie": 70901, + "name": "2.0 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279670, + "fields": { + "id_car_serie": 70901, + "name": "2.0 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279671, + "fields": { + "id_car_serie": 70902, + "name": "1.5 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279672, + "fields": { + "id_car_serie": 70902, + "name": "2.0 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279673, + "fields": { + "id_car_serie": 70903, + "name": "1.5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279674, + "fields": { + "id_car_serie": 70903, + "name": "1.5 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279675, + "fields": { + "id_car_serie": 70904, + "name": "1.5 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279676, + "fields": { + "id_car_serie": 70905, + "name": "2.0 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279677, + "fields": { + "id_car_serie": 70906, + "name": "1.5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279678, + "fields": { + "id_car_serie": 70906, + "name": "1.5 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279679, + "fields": { + "id_car_serie": 70907, + "name": "1.5 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279680, + "fields": { + "id_car_serie": 70907, + "name": "1.5 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279681, + "fields": { + "id_car_serie": 70908, + "name": "1.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279682, + "fields": { + "id_car_serie": 70908, + "name": "1.5 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279683, + "fields": { + "id_car_serie": 70908, + "name": "1.5 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279684, + "fields": { + "id_car_serie": 70908, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279685, + "fields": { + "id_car_serie": 70909, + "name": "1.5 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279686, + "fields": { + "id_car_serie": 70909, + "name": "2.0 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279687, + "fields": { + "id_car_serie": 70910, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279688, + "fields": { + "id_car_serie": 70910, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279689, + "fields": { + "id_car_serie": 70910, + "name": "2.0 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279690, + "fields": { + "id_car_serie": 70910, + "name": "2.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279691, + "fields": { + "id_car_serie": 70911, + "name": "1.5 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279692, + "fields": { + "id_car_serie": 70911, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279693, + "fields": { + "id_car_serie": 70912, + "name": "1.5 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279694, + "fields": { + "id_car_serie": 70912, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279695, + "fields": { + "id_car_serie": 70912, + "name": "1.5 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279696, + "fields": { + "id_car_serie": 70913, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279697, + "fields": { + "id_car_serie": 70913, + "name": "2.0 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279698, + "fields": { + "id_car_serie": 70914, + "name": "2.0 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279699, + "fields": { + "id_car_serie": 70915, + "name": "1.6 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279700, + "fields": { + "id_car_serie": 70915, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279701, + "fields": { + "id_car_serie": 70916, + "name": "1.6 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279702, + "fields": { + "id_car_serie": 70917, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279703, + "fields": { + "id_car_serie": 70918, + "name": "AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279704, + "fields": { + "id_car_serie": 70918, + "name": "AT 4WD (551 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279705, + "fields": { + "id_car_serie": 67099, + "name": "1.6 MT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279706, + "fields": { + "id_car_serie": 70887, + "name": "AT 4WD (672 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279707, + "fields": { + "id_car_serie": 70888, + "name": "2.0 AMT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279708, + "fields": { + "id_car_serie": 70888, + "name": "3.0 AMT (283 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279709, + "fields": { + "id_car_serie": 70889, + "name": "4.0 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279710, + "fields": { + "id_car_serie": 70889, + "name": "6.0 AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279711, + "fields": { + "id_car_serie": 70890, + "name": "1.5 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279712, + "fields": { + "id_car_serie": 70893, + "name": "AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279713, + "fields": { + "id_car_serie": 65031, + "name": "2.0 MT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279714, + "fields": { + "id_car_serie": 65031, + "name": "2.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279715, + "fields": { + "id_car_serie": 70891, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279716, + "fields": { + "id_car_serie": 70891, + "name": "1.5 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279717, + "fields": { + "id_car_serie": 70891, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279718, + "fields": { + "id_car_serie": 70891, + "name": "2.0 AMT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279719, + "fields": { + "id_car_serie": 70892, + "name": "1.5 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279720, + "fields": { + "id_car_serie": 70892, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279721, + "fields": { + "id_car_serie": 70892, + "name": "1.5 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279724, + "fields": { + "id_car_serie": 2893, + "name": "2.0 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279725, + "fields": { + "id_car_serie": 47105, + "name": "4.0 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279726, + "fields": { + "id_car_serie": 70919, + "name": "AT 4WD (503 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279727, + "fields": { + "id_car_serie": 70920, + "name": "3.0 MT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279728, + "fields": { + "id_car_serie": 70921, + "name": "1.4 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279729, + "fields": { + "id_car_serie": 70921, + "name": "1.4 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279730, + "fields": { + "id_car_serie": 70922, + "name": "1.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279731, + "fields": { + "id_car_serie": 70922, + "name": "1.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279732, + "fields": { + "id_car_serie": 70922, + "name": "1.0 AMT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279733, + "fields": { + "id_car_serie": 70922, + "name": "1.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279734, + "fields": { + "id_car_serie": 70922, + "name": "1.4 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279735, + "fields": { + "id_car_serie": 70923, + "name": "1.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279736, + "fields": { + "id_car_serie": 70923, + "name": "1.0 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279737, + "fields": { + "id_car_serie": 70923, + "name": "1.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279738, + "fields": { + "id_car_serie": 70924, + "name": "1.0 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279739, + "fields": { + "id_car_serie": 70924, + "name": "1.4 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279740, + "fields": { + "id_car_serie": 70924, + "name": "1.4 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279741, + "fields": { + "id_car_serie": 70925, + "name": "1.5 CVT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279742, + "fields": { + "id_car_serie": 70427, + "name": "1.6 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279743, + "fields": { + "id_car_serie": 70926, + "name": "2.0 AMT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279744, + "fields": { + "id_car_serie": 70927, + "name": "1.5 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279745, + "fields": { + "id_car_serie": 70927, + "name": "1.5 CVT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279746, + "fields": { + "id_car_serie": 70633, + "name": "1.5 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279747, + "fields": { + "id_car_serie": 70928, + "name": "1.5 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279748, + "fields": { + "id_car_serie": 70928, + "name": "1.8 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279749, + "fields": { + "id_car_serie": 70928, + "name": "1.8 AMT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279750, + "fields": { + "id_car_serie": 70928, + "name": "1.8 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279751, + "fields": { + "id_car_serie": 70928, + "name": "1.8 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279752, + "fields": { + "id_car_serie": 70928, + "name": "2.0 AMT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279753, + "fields": { + "id_car_serie": 70929, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279754, + "fields": { + "id_car_serie": 70929, + "name": "1.5 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279755, + "fields": { + "id_car_serie": 70929, + "name": "1.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279756, + "fields": { + "id_car_serie": 66988, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279757, + "fields": { + "id_car_serie": 64034, + "name": "2.0 AMT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279758, + "fields": { + "id_car_serie": 64164, + "name": "0.8 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279759, + "fields": { + "id_car_serie": 70930, + "name": "3.8 AMT 4WD (570 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279760, + "fields": { + "id_car_serie": 70930, + "name": "3.8 AMT 4WD (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279761, + "fields": { + "id_car_serie": 64341, + "name": "1.2 AT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279762, + "fields": { + "id_car_serie": 64361, + "name": "1.6 AT (89 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279763, + "fields": { + "id_car_serie": 67560, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279764, + "fields": { + "id_car_serie": 67560, + "name": "2.0 AMT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279765, + "fields": { + "id_car_serie": 64412, + "name": "1.5 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279766, + "fields": { + "id_car_serie": 70931, + "name": "2.4 CVT 4WD (260 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279767, + "fields": { + "id_car_serie": 67161, + "name": "3.5 AT (298 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279768, + "fields": { + "id_car_serie": 66901, + "name": "2.4 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279769, + "fields": { + "id_car_serie": 9623, + "name": "2.0 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279770, + "fields": { + "id_car_serie": 64640, + "name": "2.0 MT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279771, + "fields": { + "id_car_serie": 70932, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279772, + "fields": { + "id_car_serie": 70630, + "name": "1.5 CVT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279773, + "fields": { + "id_car_serie": 70933, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279774, + "fields": { + "id_car_serie": 70933, + "name": "2.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279775, + "fields": { + "id_car_serie": 70933, + "name": "2.4 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279776, + "fields": { + "id_car_serie": 70933, + "name": "2.4 MT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279777, + "fields": { + "id_car_serie": 70933, + "name": "2.0 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279778, + "fields": { + "id_car_serie": 70933, + "name": "2.0 MT 4WD (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279779, + "fields": { + "id_car_serie": 70934, + "name": "1.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279780, + "fields": { + "id_car_serie": 70934, + "name": "1.5 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279781, + "fields": { + "id_car_serie": 70935, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279782, + "fields": { + "id_car_serie": 70935, + "name": "1.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279783, + "fields": { + "id_car_serie": 70936, + "name": "1.4 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279784, + "fields": { + "id_car_serie": 70936, + "name": "1.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279785, + "fields": { + "id_car_serie": 67527, + "name": "2.0 CVT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279786, + "fields": { + "id_car_serie": 70937, + "name": "1.5 AT 4WD (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279787, + "fields": { + "id_car_serie": 70937, + "name": "AT 4WD (700 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279788, + "fields": { + "id_car_serie": 70938, + "name": "2.0 AMT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279789, + "fields": { + "id_car_serie": 70938, + "name": "1.5 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279790, + "fields": { + "id_car_serie": 70938, + "name": "1.5 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279791, + "fields": { + "id_car_serie": 70938, + "name": "2.0 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279792, + "fields": { + "id_car_serie": 70938, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279793, + "fields": { + "id_car_serie": 70938, + "name": "AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279794, + "fields": { + "id_car_serie": 70938, + "name": "AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279795, + "fields": { + "id_car_serie": 70938, + "name": "AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279796, + "fields": { + "id_car_serie": 70938, + "name": "AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279797, + "fields": { + "id_car_serie": 70938, + "name": "1.5 AMT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279798, + "fields": { + "id_car_serie": 70938, + "name": "1.5 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279801, + "fields": { + "id_car_serie": 70614, + "name": "1.5 AMT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279802, + "fields": { + "id_car_serie": 53834, + "name": "1.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279803, + "fields": { + "id_car_serie": 53834, + "name": "1.0 AMT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279804, + "fields": { + "id_car_serie": 53834, + "name": "1.4 AMT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279805, + "fields": { + "id_car_serie": 53834, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279806, + "fields": { + "id_car_serie": 53834, + "name": "1.6 AMT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279807, + "fields": { + "id_car_serie": 70939, + "name": "1.0 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279808, + "fields": { + "id_car_serie": 70939, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279809, + "fields": { + "id_car_serie": 70940, + "name": "1.5 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279810, + "fields": { + "id_car_serie": 70940, + "name": "1.5 AMT (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279811, + "fields": { + "id_car_serie": 70940, + "name": "1.5 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279812, + "fields": { + "id_car_serie": 70940, + "name": "2.0 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279813, + "fields": { + "id_car_serie": 70940, + "name": "2.0 AT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279814, + "fields": { + "id_car_serie": 70940, + "name": "2.0 AT 4WD (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279815, + "fields": { + "id_car_serie": 70941, + "name": "1.5 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279816, + "fields": { + "id_car_serie": 70941, + "name": "1.5 AMT (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279817, + "fields": { + "id_car_serie": 70941, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279818, + "fields": { + "id_car_serie": 70941, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279819, + "fields": { + "id_car_serie": 70941, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279820, + "fields": { + "id_car_serie": 70941, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279821, + "fields": { + "id_car_serie": 70942, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279822, + "fields": { + "id_car_serie": 70942, + "name": "2.0 AT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279823, + "fields": { + "id_car_serie": 70943, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279824, + "fields": { + "id_car_serie": 70943, + "name": "1.5 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279825, + "fields": { + "id_car_serie": 70943, + "name": "1.5 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279826, + "fields": { + "id_car_serie": 70943, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279827, + "fields": { + "id_car_serie": 70943, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279828, + "fields": { + "id_car_serie": 70943, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279829, + "fields": { + "id_car_serie": 70943, + "name": "1.5 AMT (262 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279830, + "fields": { + "id_car_serie": 70944, + "name": "1.5 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279831, + "fields": { + "id_car_serie": 70944, + "name": "1.5 AMT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279832, + "fields": { + "id_car_serie": 70944, + "name": "2.0 AMT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279833, + "fields": { + "id_car_serie": 70944, + "name": "2.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279834, + "fields": { + "id_car_serie": 70945, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279835, + "fields": { + "id_car_serie": 70945, + "name": "1.5 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279836, + "fields": { + "id_car_serie": 70945, + "name": "1.5 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279837, + "fields": { + "id_car_serie": 70945, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279838, + "fields": { + "id_car_serie": 70945, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279839, + "fields": { + "id_car_serie": 70945, + "name": "2.0 AT 4WD (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279840, + "fields": { + "id_car_serie": 70945, + "name": "2.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279841, + "fields": { + "id_car_serie": 70945, + "name": "1.5 AMT (262 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279842, + "fields": { + "id_car_serie": 70946, + "name": "1.5 AMT (262 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279843, + "fields": { + "id_car_serie": 70946, + "name": "2.0 AT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279844, + "fields": { + "id_car_serie": 70946, + "name": "2.0 AT 4WD (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279845, + "fields": { + "id_car_serie": 70946, + "name": "2.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279846, + "fields": { + "id_car_serie": 70947, + "name": "1.5 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279847, + "fields": { + "id_car_serie": 70947, + "name": "1.5 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279848, + "fields": { + "id_car_serie": 70947, + "name": "1.5 AMT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279849, + "fields": { + "id_car_serie": 70947, + "name": "1.5 AMT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279850, + "fields": { + "id_car_serie": 70948, + "name": "2.0 AT 4WD (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279851, + "fields": { + "id_car_serie": 70948, + "name": "2.0 AT 4WD (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279852, + "fields": { + "id_car_serie": 70948, + "name": "2.0 AT 4WD (520 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279853, + "fields": { + "id_car_serie": 70949, + "name": "4.0 AMT (720 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279854, + "fields": { + "id_car_serie": 70950, + "name": "AT 4WD (490 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279855, + "fields": { + "id_car_serie": 54010, + "name": "2.0 AMT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279856, + "fields": { + "id_car_serie": 62722, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279857, + "fields": { + "id_car_serie": 63856, + "name": "3.0 AT 4WD (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279858, + "fields": { + "id_car_serie": 67370, + "name": "2.0 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279859, + "fields": { + "id_car_serie": 71576, + "name": "3.0 AT 4WD (298 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279860, + "fields": { + "id_car_serie": 71576, + "name": "3.0 AT 4WD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279861, + "fields": { + "id_car_serie": 71576, + "name": "4.4 AT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279862, + "fields": { + "id_car_serie": 71576, + "name": "3.0 AT 4WD (490 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279863, + "fields": { + "id_car_serie": 66845, + "name": "3.0 AT 4WD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279864, + "fields": { + "id_car_serie": 71577, + "name": "1.0 CVT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279865, + "fields": { + "id_car_serie": 71577, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279866, + "fields": { + "id_car_serie": 71577, + "name": "1.5 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279867, + "fields": { + "id_car_serie": 51513, + "name": "2.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279868, + "fields": { + "id_car_serie": 6125, + "name": "4.6 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279869, + "fields": { + "id_car_serie": 6126, + "name": "4.6 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279870, + "fields": { + "id_car_serie": 71578, + "name": "1.5 AMT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279871, + "fields": { + "id_car_serie": 71579, + "name": "1.5 AMT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279872, + "fields": { + "id_car_serie": 71579, + "name": "2.0 AMT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279873, + "fields": { + "id_car_serie": 71579, + "name": "1.5 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279874, + "fields": { + "id_car_serie": 71580, + "name": "1.5 AMT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279875, + "fields": { + "id_car_serie": 71580, + "name": "1.5 AMT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279876, + "fields": { + "id_car_serie": 71581, + "name": "1.5 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279877, + "fields": { + "id_car_serie": 71581, + "name": "1.5 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279878, + "fields": { + "id_car_serie": 71581, + "name": "1.8 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279879, + "fields": { + "id_car_serie": 71581, + "name": "1.5 AMT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279880, + "fields": { + "id_car_serie": 71582, + "name": "2.0 AMT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279881, + "fields": { + "id_car_serie": 71583, + "name": "1.5 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279882, + "fields": { + "id_car_serie": 71583, + "name": "1.5 CVT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279883, + "fields": { + "id_car_serie": 71583, + "name": "1.5 CVT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279884, + "fields": { + "id_car_serie": 71583, + "name": "2.0 CVT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279885, + "fields": { + "id_car_serie": 70635, + "name": "1.5 CVT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279886, + "fields": { + "id_car_serie": 71584, + "name": "3.5 AT (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279887, + "fields": { + "id_car_serie": 71584, + "name": "3.5 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279888, + "fields": { + "id_car_serie": 71585, + "name": "1.0 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279889, + "fields": { + "id_car_serie": 71585, + "name": "1.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279890, + "fields": { + "id_car_serie": 71585, + "name": "1.5 CVT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279891, + "fields": { + "id_car_serie": 71586, + "name": "1.8 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279892, + "fields": { + "id_car_serie": 71586, + "name": "1.8 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279893, + "fields": { + "id_car_serie": 71587, + "name": "1.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279894, + "fields": { + "id_car_serie": 71587, + "name": "1.0 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279895, + "fields": { + "id_car_serie": 71587, + "name": "1.5 CVT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279896, + "fields": { + "id_car_serie": 71588, + "name": "2.0 MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279897, + "fields": { + "id_car_serie": 71588, + "name": "2.0 AT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279898, + "fields": { + "id_car_serie": 67200, + "name": "2.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279899, + "fields": { + "id_car_serie": 67742, + "name": "3.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279900, + "fields": { + "id_car_serie": 66849, + "name": "2.0 AT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279901, + "fields": { + "id_car_serie": 64047, + "name": "1.6 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279902, + "fields": { + "id_car_serie": 67395, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279903, + "fields": { + "id_car_serie": 64034, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279904, + "fields": { + "id_car_serie": 71589, + "name": "2.0 CVT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279905, + "fields": { + "id_car_serie": 71590, + "name": "3.0 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279906, + "fields": { + "id_car_serie": 71590, + "name": "3.0 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279907, + "fields": { + "id_car_serie": 71590, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279908, + "fields": { + "id_car_serie": 71591, + "name": "2.5 AT 4WD (327 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279909, + "fields": { + "id_car_serie": 71591, + "name": "2.5 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279910, + "fields": { + "id_car_serie": 71591, + "name": "2.5 AT 4WD (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279911, + "fields": { + "id_car_serie": 71591, + "name": "3.3 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279912, + "fields": { + "id_car_serie": 71591, + "name": "3.3 AT 4WD (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279913, + "fields": { + "id_car_serie": 3699, + "name": "AT (179 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279914, + "fields": { + "id_car_serie": 66855, + "name": "3.0 AT 4WD (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279915, + "fields": { + "id_car_serie": 45434, + "name": "2.4 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279916, + "fields": { + "id_car_serie": 48789, + "name": "1.6 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279917, + "fields": { + "id_car_serie": 48789, + "name": "1.6 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279918, + "fields": { + "id_car_serie": 71592, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279919, + "fields": { + "id_car_serie": 71592, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279920, + "fields": { + "id_car_serie": 71592, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279921, + "fields": { + "id_car_serie": 71593, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279922, + "fields": { + "id_car_serie": 71593, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279923, + "fields": { + "id_car_serie": 71593, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279924, + "fields": { + "id_car_serie": 71593, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279925, + "fields": { + "id_car_serie": 71593, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279926, + "fields": { + "id_car_serie": 71593, + "name": "2.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279927, + "fields": { + "id_car_serie": 71593, + "name": "2.0 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279928, + "fields": { + "id_car_serie": 71594, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279929, + "fields": { + "id_car_serie": 71594, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279930, + "fields": { + "id_car_serie": 67161, + "name": "2.5 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279931, + "fields": { + "id_car_serie": 71595, + "name": "1.6 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279932, + "fields": { + "id_car_serie": 71595, + "name": "1.6 AT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279933, + "fields": { + "id_car_serie": 71595, + "name": "1.8 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279934, + "fields": { + "id_car_serie": 66902, + "name": "4.0 AT 4WD (271 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279935, + "fields": { + "id_car_serie": 64568, + "name": "2.0 CVT 4WD (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279936, + "fields": { + "id_car_serie": 71596, + "name": "2.0 AT 4WD (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279937, + "fields": { + "id_car_serie": 71596, + "name": "2.5 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279938, + "fields": { + "id_car_serie": 71596, + "name": "2.5 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279939, + "fields": { + "id_car_serie": 71597, + "name": "1.8 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279940, + "fields": { + "id_car_serie": 71597, + "name": "2.0 CVT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279941, + "fields": { + "id_car_serie": 64627, + "name": "2.0 CVT 4WD (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279942, + "fields": { + "id_car_serie": 71598, + "name": "2.5 AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279943, + "fields": { + "id_car_serie": 64639, + "name": "2.0 MT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279944, + "fields": { + "id_car_serie": 64639, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279945, + "fields": { + "id_car_serie": 67609, + "name": "4.4 AT 4WD (634 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279946, + "fields": { + "id_car_serie": 67610, + "name": "4.4 AT 4WD (634 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279947, + "fields": { + "id_car_serie": 71599, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279948, + "fields": { + "id_car_serie": 71599, + "name": "AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279949, + "fields": { + "id_car_serie": 71599, + "name": "AT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279950, + "fields": { + "id_car_serie": 71600, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279951, + "fields": { + "id_car_serie": 70726, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279952, + "fields": { + "id_car_serie": 71601, + "name": "1.5 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279953, + "fields": { + "id_car_serie": 71601, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279954, + "fields": { + "id_car_serie": 71601, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279955, + "fields": { + "id_car_serie": 71602, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279956, + "fields": { + "id_car_serie": 71602, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279957, + "fields": { + "id_car_serie": 47194, + "name": "1.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279958, + "fields": { + "id_car_serie": 66971, + "name": "2.2 AT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279959, + "fields": { + "id_car_serie": 71603, + "name": "AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279960, + "fields": { + "id_car_serie": 71603, + "name": "AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279961, + "fields": { + "id_car_serie": 71604, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279962, + "fields": { + "id_car_serie": 71604, + "name": "AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279963, + "fields": { + "id_car_serie": 71605, + "name": "2.0 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279964, + "fields": { + "id_car_serie": 71606, + "name": "4.0 AT 4WD (361 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279965, + "fields": { + "id_car_serie": 71607, + "name": "1.5 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279966, + "fields": { + "id_car_serie": 71607, + "name": "1.5 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279967, + "fields": { + "id_car_serie": 71608, + "name": "1.5 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279968, + "fields": { + "id_car_serie": 71608, + "name": "1.5 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279969, + "fields": { + "id_car_serie": 71609, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279970, + "fields": { + "id_car_serie": 71609, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279971, + "fields": { + "id_car_serie": 71609, + "name": "2.0 AMT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279972, + "fields": { + "id_car_serie": 71610, + "name": "1.5 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279973, + "fields": { + "id_car_serie": 71610, + "name": "1.5 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279974, + "fields": { + "id_car_serie": 71610, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279975, + "fields": { + "id_car_serie": 71610, + "name": "1.5 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279976, + "fields": { + "id_car_serie": 71610, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279977, + "fields": { + "id_car_serie": 71611, + "name": "1.5 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279978, + "fields": { + "id_car_serie": 71612, + "name": "AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279979, + "fields": { + "id_car_serie": 71613, + "name": "AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279980, + "fields": { + "id_car_serie": 71614, + "name": "AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279981, + "fields": { + "id_car_serie": 71614, + "name": "AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279982, + "fields": { + "id_car_serie": 71615, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279983, + "fields": { + "id_car_serie": 71615, + "name": "AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279984, + "fields": { + "id_car_serie": 71616, + "name": "AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279985, + "fields": { + "id_car_serie": 71616, + "name": "AT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279986, + "fields": { + "id_car_serie": 71617, + "name": "1.5 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279987, + "fields": { + "id_car_serie": 71617, + "name": "1.6 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279988, + "fields": { + "id_car_serie": 71617, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279989, + "fields": { + "id_car_serie": 71618, + "name": "1.5 AMT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279990, + "fields": { + "id_car_serie": 71618, + "name": "1.6 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279991, + "fields": { + "id_car_serie": 71618, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279992, + "fields": { + "id_car_serie": 71619, + "name": "2.0 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279993, + "fields": { + "id_car_serie": 71619, + "name": "2.5 AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279994, + "fields": { + "id_car_serie": 71620, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279995, + "fields": { + "id_car_serie": 71620, + "name": "1.5 AT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279996, + "fields": { + "id_car_serie": 71621, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279997, + "fields": { + "id_car_serie": 71622, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279998, + "fields": { + "id_car_serie": 71622, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 279999, + "fields": { + "id_car_serie": 71623, + "name": "1.5 AT (396 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280000, + "fields": { + "id_car_serie": 71623, + "name": "1.5 AT 4WD (483 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280001, + "fields": { + "id_car_serie": 71623, + "name": "2.0 AMT 4WD (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280002, + "fields": { + "id_car_serie": 71623, + "name": "2.0 AMT (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280003, + "fields": { + "id_car_serie": 71623, + "name": "2.0 AMT 4WD (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280004, + "fields": { + "id_car_serie": 71624, + "name": "1.5 AT (246 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280005, + "fields": { + "id_car_serie": 71624, + "name": "1.5 AT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280006, + "fields": { + "id_car_serie": 71624, + "name": "1.5 AT 4WD (437 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280007, + "fields": { + "id_car_serie": 71625, + "name": "AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280008, + "fields": { + "id_car_serie": 71625, + "name": "1.5 AT 4WD (393 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280009, + "fields": { + "id_car_serie": 70472, + "name": "1.5 AT 4WD (693 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280010, + "fields": { + "id_car_serie": 71626, + "name": "4.4 AT 4WD (625 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280011, + "fields": { + "id_car_serie": 71627, + "name": "3.0 AT 4WD (298 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280012, + "fields": { + "id_car_serie": 71627, + "name": "3.0 AT 4WD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280013, + "fields": { + "id_car_serie": 71627, + "name": "4.4 AT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280014, + "fields": { + "id_car_serie": 71628, + "name": "4.4 AT 4WD (625 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280015, + "fields": { + "id_car_serie": 3057, + "name": "4.3 AT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280016, + "fields": { + "id_car_serie": 70922, + "name": "1.2 AT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280017, + "fields": { + "id_car_serie": 71629, + "name": "2.0 AMT (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280018, + "fields": { + "id_car_serie": 71629, + "name": "2.0 AMT 4WD (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280019, + "fields": { + "id_car_serie": 71630, + "name": "1.4 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280020, + "fields": { + "id_car_serie": 71630, + "name": "1.4 CVT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280021, + "fields": { + "id_car_serie": 71630, + "name": "1.4 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280022, + "fields": { + "id_car_serie": 71631, + "name": "1.4 CVT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280023, + "fields": { + "id_car_serie": 71631, + "name": "1.4 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280024, + "fields": { + "id_car_serie": 71631, + "name": "1.4 CVT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280025, + "fields": { + "id_car_serie": 71631, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280026, + "fields": { + "id_car_serie": 71632, + "name": "1.3 CVT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280027, + "fields": { + "id_car_serie": 71632, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280028, + "fields": { + "id_car_serie": 71633, + "name": "1.4 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280029, + "fields": { + "id_car_serie": 71633, + "name": "1.4 AT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280030, + "fields": { + "id_car_serie": 71634, + "name": "1.5 CVT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280031, + "fields": { + "id_car_serie": 71634, + "name": "2.0 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280032, + "fields": { + "id_car_serie": 71634, + "name": "2.0 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280033, + "fields": { + "id_car_serie": 1154, + "name": "1.6 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280034, + "fields": { + "id_car_serie": 1154, + "name": "1.6 MT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280035, + "fields": { + "id_car_serie": 71635, + "name": "1.4 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280036, + "fields": { + "id_car_serie": 71635, + "name": "1.4 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280037, + "fields": { + "id_car_serie": 71635, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280038, + "fields": { + "id_car_serie": 71635, + "name": "1.5 CVT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280039, + "fields": { + "id_car_serie": 71635, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280040, + "fields": { + "id_car_serie": 64111, + "name": "3.3 AT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280041, + "fields": { + "id_car_serie": 67521, + "name": "2.5 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280042, + "fields": { + "id_car_serie": 71636, + "name": "1.7 MT 4WD (81 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280043, + "fields": { + "id_car_serie": 67749, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280044, + "fields": { + "id_car_serie": 67750, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280045, + "fields": { + "id_car_serie": 70687, + "name": "1.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280046, + "fields": { + "id_car_serie": 54051, + "name": "2.0 AT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280047, + "fields": { + "id_car_serie": 67239, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280048, + "fields": { + "id_car_serie": 71637, + "name": "1.3 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280049, + "fields": { + "id_car_serie": 71637, + "name": "1.3 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280050, + "fields": { + "id_car_serie": 71637, + "name": "2.0 AMT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280051, + "fields": { + "id_car_serie": 71637, + "name": "1.3 AMT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280052, + "fields": { + "id_car_serie": 71637, + "name": "2.0 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280053, + "fields": { + "id_car_serie": 71637, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280054, + "fields": { + "id_car_serie": 71637, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280055, + "fields": { + "id_car_serie": 71638, + "name": "1.3 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280056, + "fields": { + "id_car_serie": 71638, + "name": "1.3 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280057, + "fields": { + "id_car_serie": 71638, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280058, + "fields": { + "id_car_serie": 71638, + "name": "2.0 AMT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280059, + "fields": { + "id_car_serie": 71638, + "name": "1.3 AMT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280060, + "fields": { + "id_car_serie": 71638, + "name": "2.0 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280061, + "fields": { + "id_car_serie": 71638, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280062, + "fields": { + "id_car_serie": 64176, + "name": "2.9 AT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280063, + "fields": { + "id_car_serie": 64178, + "name": "2.9 AT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280064, + "fields": { + "id_car_serie": 8834, + "name": "3.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280065, + "fields": { + "id_car_serie": 14738, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280066, + "fields": { + "id_car_serie": 71639, + "name": "2.0 AMT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280067, + "fields": { + "id_car_serie": 71639, + "name": "2.0 AMT 4WD (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280068, + "fields": { + "id_car_serie": 71640, + "name": "2.0 AMT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280069, + "fields": { + "id_car_serie": 71640, + "name": "2.0 AMT 4WD (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280070, + "fields": { + "id_car_serie": 45434, + "name": "2.4 MT 4WD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280071, + "fields": { + "id_car_serie": 71641, + "name": "3.8 AT (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280072, + "fields": { + "id_car_serie": 71641, + "name": "3.8 AT 4WD (310 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280073, + "fields": { + "id_car_serie": 71592, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280074, + "fields": { + "id_car_serie": 71592, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280075, + "fields": { + "id_car_serie": 71592, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280076, + "fields": { + "id_car_serie": 71592, + "name": "1.8 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280077, + "fields": { + "id_car_serie": 71592, + "name": "2.0 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280078, + "fields": { + "id_car_serie": 71592, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280079, + "fields": { + "id_car_serie": 71592, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280080, + "fields": { + "id_car_serie": 71593, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280081, + "fields": { + "id_car_serie": 71593, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280082, + "fields": { + "id_car_serie": 71593, + "name": "2.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280083, + "fields": { + "id_car_serie": 71593, + "name": "2.0 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280084, + "fields": { + "id_car_serie": 71593, + "name": "2.0 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280085, + "fields": { + "id_car_serie": 71594, + "name": "1.8 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280086, + "fields": { + "id_car_serie": 64412, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280087, + "fields": { + "id_car_serie": 64415, + "name": "1.5 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280088, + "fields": { + "id_car_serie": 64483, + "name": "1.2 AMT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280089, + "fields": { + "id_car_serie": 64483, + "name": "1.2 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280090, + "fields": { + "id_car_serie": 64483, + "name": "1.2 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280091, + "fields": { + "id_car_serie": 64483, + "name": "1.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280092, + "fields": { + "id_car_serie": 71642, + "name": "1.8 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280093, + "fields": { + "id_car_serie": 71642, + "name": "1.8 AT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280094, + "fields": { + "id_car_serie": 71642, + "name": "2.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280095, + "fields": { + "id_car_serie": 71642, + "name": "2.0 AT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280096, + "fields": { + "id_car_serie": 71643, + "name": "2.5 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280097, + "fields": { + "id_car_serie": 71644, + "name": "1.8 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280098, + "fields": { + "id_car_serie": 71644, + "name": "1.8 CVT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280099, + "fields": { + "id_car_serie": 71644, + "name": "2.0 CVT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280100, + "fields": { + "id_car_serie": 71644, + "name": "2.0 CVT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280101, + "fields": { + "id_car_serie": 9623, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280102, + "fields": { + "id_car_serie": 9623, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280103, + "fields": { + "id_car_serie": 71645, + "name": "1.5 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280104, + "fields": { + "id_car_serie": 71645, + "name": "1.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280105, + "fields": { + "id_car_serie": 67027, + "name": "1.5 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280106, + "fields": { + "id_car_serie": 71646, + "name": "AT 4WD (578 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280107, + "fields": { + "id_car_serie": 71647, + "name": "2.0 AT 4WD (267 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280108, + "fields": { + "id_car_serie": 70824, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280109, + "fields": { + "id_car_serie": 71648, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280110, + "fields": { + "id_car_serie": 71649, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280111, + "fields": { + "id_car_serie": 71650, + "name": "1.5 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280112, + "fields": { + "id_car_serie": 71650, + "name": "1.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280113, + "fields": { + "id_car_serie": 71650, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280114, + "fields": { + "id_car_serie": 71651, + "name": "1.5 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280115, + "fields": { + "id_car_serie": 71651, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280116, + "fields": { + "id_car_serie": 71651, + "name": "1.5 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280117, + "fields": { + "id_car_serie": 71651, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280118, + "fields": { + "id_car_serie": 71651, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280119, + "fields": { + "id_car_serie": 71652, + "name": "1.5 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280120, + "fields": { + "id_car_serie": 71652, + "name": "1.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280121, + "fields": { + "id_car_serie": 71653, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280122, + "fields": { + "id_car_serie": 71653, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280123, + "fields": { + "id_car_serie": 71654, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280124, + "fields": { + "id_car_serie": 71654, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280125, + "fields": { + "id_car_serie": 71654, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280126, + "fields": { + "id_car_serie": 70882, + "name": "AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280127, + "fields": { + "id_car_serie": 71655, + "name": "2.0 AT (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280128, + "fields": { + "id_car_serie": 70503, + "name": "AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280129, + "fields": { + "id_car_serie": 70835, + "name": "1.4 AMT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280130, + "fields": { + "id_car_serie": 71656, + "name": "1.4 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280131, + "fields": { + "id_car_serie": 71656, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280132, + "fields": { + "id_car_serie": 71656, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280133, + "fields": { + "id_car_serie": 71657, + "name": "1.4 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280134, + "fields": { + "id_car_serie": 71657, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280135, + "fields": { + "id_car_serie": 71657, + "name": "1.6 AT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280136, + "fields": { + "id_car_serie": 71656, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280137, + "fields": { + "id_car_serie": 71656, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280138, + "fields": { + "id_car_serie": 70614, + "name": "1.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280139, + "fields": { + "id_car_serie": 71658, + "name": "1.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280140, + "fields": { + "id_car_serie": 71658, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280141, + "fields": { + "id_car_serie": 71659, + "name": "1.5 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280142, + "fields": { + "id_car_serie": 71660, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280143, + "fields": { + "id_car_serie": 71661, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280144, + "fields": { + "id_car_serie": 71662, + "name": "1.2 AMT (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280145, + "fields": { + "id_car_serie": 71663, + "name": "1.5 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280146, + "fields": { + "id_car_serie": 71663, + "name": "1.6 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280147, + "fields": { + "id_car_serie": 71664, + "name": "AT (37 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280148, + "fields": { + "id_car_serie": 71664, + "name": "AT (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280149, + "fields": { + "id_car_serie": 71664, + "name": "AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280150, + "fields": { + "id_car_serie": 71665, + "name": "AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280151, + "fields": { + "id_car_serie": 71666, + "name": "1.5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280152, + "fields": { + "id_car_serie": 71666, + "name": "1.5 CVT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280153, + "fields": { + "id_car_serie": 71666, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280154, + "fields": { + "id_car_serie": 71667, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280155, + "fields": { + "id_car_serie": 71667, + "name": "1.6 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280156, + "fields": { + "id_car_serie": 71668, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280157, + "fields": { + "id_car_serie": 71668, + "name": "1.5 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280158, + "fields": { + "id_car_serie": 71668, + "name": "2.0 AMT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280159, + "fields": { + "id_car_serie": 71668, + "name": "2.0 AMT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280160, + "fields": { + "id_car_serie": 71669, + "name": "1.8 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280161, + "fields": { + "id_car_serie": 71669, + "name": "2.0 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280162, + "fields": { + "id_car_serie": 71669, + "name": "3.0 AMT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280163, + "fields": { + "id_car_serie": 71669, + "name": "3.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280164, + "fields": { + "id_car_serie": 71670, + "name": "1.8 AT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280165, + "fields": { + "id_car_serie": 71670, + "name": "2.0 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280166, + "fields": { + "id_car_serie": 71670, + "name": "3.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280167, + "fields": { + "id_car_serie": 67343, + "name": "2.0 CVT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280168, + "fields": { + "id_car_serie": 70760, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280169, + "fields": { + "id_car_serie": 71671, + "name": "1.5 AT 4WD (449 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280170, + "fields": { + "id_car_serie": 71672, + "name": "1.5 AT 4WD (449 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280171, + "fields": { + "id_car_serie": 71673, + "name": "1.4 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280172, + "fields": { + "id_car_serie": 71673, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280173, + "fields": { + "id_car_serie": 71674, + "name": "2.0 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280174, + "fields": { + "id_car_serie": 71674, + "name": "2.0 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280175, + "fields": { + "id_car_serie": 71674, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280176, + "fields": { + "id_car_serie": 71674, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280177, + "fields": { + "id_car_serie": 71675, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280178, + "fields": { + "id_car_serie": 71675, + "name": "2.0 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280179, + "fields": { + "id_car_serie": 71675, + "name": "2.0 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280180, + "fields": { + "id_car_serie": 71675, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280181, + "fields": { + "id_car_serie": 71676, + "name": "2.0 AT (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280182, + "fields": { + "id_car_serie": 71677, + "name": "AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280183, + "fields": { + "id_car_serie": 71678, + "name": "2.0 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280184, + "fields": { + "id_car_serie": 71679, + "name": "AT 4WD (653 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280185, + "fields": { + "id_car_serie": 71680, + "name": "AT 4WD (653 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280186, + "fields": { + "id_car_serie": 70621, + "name": "1.6 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280187, + "fields": { + "id_car_serie": 71681, + "name": "AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280188, + "fields": { + "id_car_serie": 71681, + "name": "AT 4WD (302 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280189, + "fields": { + "id_car_serie": 71682, + "name": "AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280190, + "fields": { + "id_car_serie": 71682, + "name": "AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280191, + "fields": { + "id_car_serie": 71683, + "name": "AT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280192, + "fields": { + "id_car_serie": 71684, + "name": "AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280193, + "fields": { + "id_car_serie": 71684, + "name": "AT 4WD (302 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280194, + "fields": { + "id_car_serie": 71685, + "name": "2.0 AT (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280195, + "fields": { + "id_car_serie": 71685, + "name": "2.0 AT 4WD (242 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280196, + "fields": { + "id_car_serie": 70601, + "name": "2.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280199, + "fields": { + "id_car_serie": 4624, + "name": "3.0 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280200, + "fields": { + "id_car_serie": 71687, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280201, + "fields": { + "id_car_serie": 71687, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280202, + "fields": { + "id_car_serie": 66837, + "name": "1.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280203, + "fields": { + "id_car_serie": 66837, + "name": "2.0 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280204, + "fields": { + "id_car_serie": 66837, + "name": "2.0 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280205, + "fields": { + "id_car_serie": 71688, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280206, + "fields": { + "id_car_serie": 71688, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280207, + "fields": { + "id_car_serie": 71689, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280208, + "fields": { + "id_car_serie": 71689, + "name": "2.0 AMT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280209, + "fields": { + "id_car_serie": 71690, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280210, + "fields": { + "id_car_serie": 71690, + "name": "2.0 AMT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280211, + "fields": { + "id_car_serie": 63016, + "name": "3.0 AT 4WD (354 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280212, + "fields": { + "id_car_serie": 63873, + "name": "3.0 AT 4WD (387 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280213, + "fields": { + "id_car_serie": 63799, + "name": "1.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280214, + "fields": { + "id_car_serie": 70477, + "name": "1.5 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280215, + "fields": { + "id_car_serie": 67372, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280216, + "fields": { + "id_car_serie": 71576, + "name": "3.0 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280217, + "fields": { + "id_car_serie": 71627, + "name": "3.0 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280218, + "fields": { + "id_car_serie": 71691, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280219, + "fields": { + "id_car_serie": 71692, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280220, + "fields": { + "id_car_serie": 71692, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280221, + "fields": { + "id_car_serie": 63937, + "name": "1.3 AT 4WD (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280222, + "fields": { + "id_car_serie": 71693, + "name": "2.0 AMT (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280223, + "fields": { + "id_car_serie": 71693, + "name": "2.0 AMT 4WD (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280224, + "fields": { + "id_car_serie": 67470, + "name": "3.5 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280225, + "fields": { + "id_car_serie": 67471, + "name": "3.5 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280226, + "fields": { + "id_car_serie": 70481, + "name": "AT 4WD (458 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280227, + "fields": { + "id_car_serie": 70481, + "name": "AT 4WD (589 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280228, + "fields": { + "id_car_serie": 70662, + "name": "3.0 AT 4WD (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280229, + "fields": { + "id_car_serie": 70665, + "name": "1.0 AT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280230, + "fields": { + "id_car_serie": 71694, + "name": "AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280231, + "fields": { + "id_car_serie": 70633, + "name": "1.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280232, + "fields": { + "id_car_serie": 71695, + "name": "1.5 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280233, + "fields": { + "id_car_serie": 71695, + "name": "2.0 AMT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280234, + "fields": { + "id_car_serie": 71695, + "name": "2.0 AMT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280235, + "fields": { + "id_car_serie": 71695, + "name": "1.5 AT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280236, + "fields": { + "id_car_serie": 71696, + "name": "1.0 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280237, + "fields": { + "id_car_serie": 71696, + "name": "1.5 CVT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280238, + "fields": { + "id_car_serie": 70784, + "name": "1.6 AMT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280239, + "fields": { + "id_car_serie": 67396, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280240, + "fields": { + "id_car_serie": 66988, + "name": "1.5 CVT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280241, + "fields": { + "id_car_serie": 66849, + "name": "2.0 MT 4WD (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280242, + "fields": { + "id_car_serie": 71697, + "name": "1.4 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280243, + "fields": { + "id_car_serie": 71697, + "name": "1.5 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280244, + "fields": { + "id_car_serie": 71698, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280245, + "fields": { + "id_car_serie": 71698, + "name": "1.4 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280246, + "fields": { + "id_car_serie": 71698, + "name": "1.5 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280247, + "fields": { + "id_car_serie": 63120, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280248, + "fields": { + "id_car_serie": 63120, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280249, + "fields": { + "id_car_serie": 71699, + "name": "1.4 CVT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280250, + "fields": { + "id_car_serie": 71699, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280251, + "fields": { + "id_car_serie": 71700, + "name": "1.4 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280252, + "fields": { + "id_car_serie": 71700, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280253, + "fields": { + "id_car_serie": 71701, + "name": "2.0 AT 4WD (199 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280254, + "fields": { + "id_car_serie": 71701, + "name": "2.0 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280255, + "fields": { + "id_car_serie": 71701, + "name": "3.0 AT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280256, + "fields": { + "id_car_serie": 71701, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280257, + "fields": { + "id_car_serie": 71701, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280258, + "fields": { + "id_car_serie": 71701, + "name": "3.0 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280259, + "fields": { + "id_car_serie": 71701, + "name": "2.0 AT 4WD (404 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280260, + "fields": { + "id_car_serie": 67525, + "name": "2.5 CVT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280261, + "fields": { + "id_car_serie": 67527, + "name": "2.5 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280262, + "fields": { + "id_car_serie": 67527, + "name": "2.5 AT 4WD (244 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280263, + "fields": { + "id_car_serie": 67527, + "name": "2.5 AT 4WD (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280264, + "fields": { + "id_car_serie": 71702, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280265, + "fields": { + "id_car_serie": 71702, + "name": "2.5 AT 4WD (196 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280266, + "fields": { + "id_car_serie": 71702, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280267, + "fields": { + "id_car_serie": 71702, + "name": "2.5 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280268, + "fields": { + "id_car_serie": 71702, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280269, + "fields": { + "id_car_serie": 71702, + "name": "2.2 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280270, + "fields": { + "id_car_serie": 71702, + "name": "2.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280271, + "fields": { + "id_car_serie": 71702, + "name": "2.2 AT 4WD (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280272, + "fields": { + "id_car_serie": 71702, + "name": "2.2 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280273, + "fields": { + "id_car_serie": 71702, + "name": "2.2 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280274, + "fields": { + "id_car_serie": 71702, + "name": "2.2 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280275, + "fields": { + "id_car_serie": 71702, + "name": "2.2 MT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280276, + "fields": { + "id_car_serie": 71703, + "name": "2.5 AT 4WD (187 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280277, + "fields": { + "id_car_serie": 71703, + "name": "2.5 AT 4WD (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280278, + "fields": { + "id_car_serie": 71704, + "name": "2.2 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280279, + "fields": { + "id_car_serie": 71704, + "name": "2.2 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280280, + "fields": { + "id_car_serie": 71704, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280281, + "fields": { + "id_car_serie": 71704, + "name": "2.5 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280282, + "fields": { + "id_car_serie": 71704, + "name": "2.5 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280283, + "fields": { + "id_car_serie": 71704, + "name": "2.5 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280284, + "fields": { + "id_car_serie": 67222, + "name": "2.2 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280285, + "fields": { + "id_car_serie": 67222, + "name": "2.2 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280286, + "fields": { + "id_car_serie": 67222, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280287, + "fields": { + "id_car_serie": 67222, + "name": "2.5 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280288, + "fields": { + "id_car_serie": 67222, + "name": "2.5 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280289, + "fields": { + "id_car_serie": 3700, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280290, + "fields": { + "id_car_serie": 66853, + "name": "2.9 AT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280291, + "fields": { + "id_car_serie": 66854, + "name": "2.9 AT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280292, + "fields": { + "id_car_serie": 71705, + "name": "1.3 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280293, + "fields": { + "id_car_serie": 71705, + "name": "1.3 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280294, + "fields": { + "id_car_serie": 71705, + "name": "1.3 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280295, + "fields": { + "id_car_serie": 71705, + "name": "2.0 AMT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280296, + "fields": { + "id_car_serie": 71705, + "name": "1.3 AMT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280297, + "fields": { + "id_car_serie": 71705, + "name": "2.0 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280298, + "fields": { + "id_car_serie": 71705, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280299, + "fields": { + "id_car_serie": 71705, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280300, + "fields": { + "id_car_serie": 71705, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280301, + "fields": { + "id_car_serie": 64175, + "name": "2.0 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280302, + "fields": { + "id_car_serie": 70486, + "name": "2.0 AT 4WD (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280303, + "fields": { + "id_car_serie": 71706, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280304, + "fields": { + "id_car_serie": 71706, + "name": "2.0 AT 4WD (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280305, + "fields": { + "id_car_serie": 71706, + "name": "2.0 AT 4WD (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280306, + "fields": { + "id_car_serie": 71706, + "name": "2.0 AT 4WD (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280307, + "fields": { + "id_car_serie": 71706, + "name": "2.0 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280308, + "fields": { + "id_car_serie": 71706, + "name": "2.0 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280309, + "fields": { + "id_car_serie": 71706, + "name": "2.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280310, + "fields": { + "id_car_serie": 71707, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280311, + "fields": { + "id_car_serie": 71707, + "name": "2.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280312, + "fields": { + "id_car_serie": 71707, + "name": "2.0 AT 4WD (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280313, + "fields": { + "id_car_serie": 71707, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280314, + "fields": { + "id_car_serie": 71707, + "name": "3.0 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280315, + "fields": { + "id_car_serie": 64179, + "name": "2.0 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280316, + "fields": { + "id_car_serie": 71708, + "name": "3.0 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280317, + "fields": { + "id_car_serie": 71708, + "name": "4.0 AT 4WD (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280318, + "fields": { + "id_car_serie": 71709, + "name": "2.0 AT 4WD (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280319, + "fields": { + "id_car_serie": 71709, + "name": "3.0 AT 4WD (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280320, + "fields": { + "id_car_serie": 71709, + "name": "2.0 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280321, + "fields": { + "id_car_serie": 71709, + "name": "2.0 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280322, + "fields": { + "id_car_serie": 64181, + "name": "2.0 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280323, + "fields": { + "id_car_serie": 71710, + "name": "3.0 AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280324, + "fields": { + "id_car_serie": 71710, + "name": "4.0 AT 4WD (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280325, + "fields": { + "id_car_serie": 67404, + "name": "AT 4WD (523 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280326, + "fields": { + "id_car_serie": 71711, + "name": "2.0 AMT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280327, + "fields": { + "id_car_serie": 64187, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280328, + "fields": { + "id_car_serie": 67244, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280329, + "fields": { + "id_car_serie": 67155, + "name": "1.3 CVT 4WD (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280330, + "fields": { + "id_car_serie": 67155, + "name": "1.3 MT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280331, + "fields": { + "id_car_serie": 70696, + "name": "2.5 CVT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280332, + "fields": { + "id_car_serie": 71712, + "name": "2.5 MT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280333, + "fields": { + "id_car_serie": 64428, + "name": "1.5 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280334, + "fields": { + "id_car_serie": 70602, + "name": "3.0 AT 4WD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280335, + "fields": { + "id_car_serie": 71713, + "name": "1.8 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280336, + "fields": { + "id_car_serie": 71713, + "name": "1.8 CVT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280337, + "fields": { + "id_car_serie": 64539, + "name": "2.0 AT 4WD (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280338, + "fields": { + "id_car_serie": 66873, + "name": "1.8 CVT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280339, + "fields": { + "id_car_serie": 71714, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280340, + "fields": { + "id_car_serie": 71714, + "name": "2.0 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280341, + "fields": { + "id_car_serie": 71714, + "name": "2.7 AT 4WD (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280342, + "fields": { + "id_car_serie": 71714, + "name": "2.5 AT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280343, + "fields": { + "id_car_serie": 71714, + "name": "2.5 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280344, + "fields": { + "id_car_serie": 71714, + "name": "3.0 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280345, + "fields": { + "id_car_serie": 71714, + "name": "3.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280346, + "fields": { + "id_car_serie": 71714, + "name": "3.0 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280347, + "fields": { + "id_car_serie": 71715, + "name": "1.5 CVT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280348, + "fields": { + "id_car_serie": 63279, + "name": "1.5 CVT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280349, + "fields": { + "id_car_serie": 67597, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280350, + "fields": { + "id_car_serie": 67597, + "name": "1.2 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280351, + "fields": { + "id_car_serie": 67597, + "name": "1.2 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280352, + "fields": { + "id_car_serie": 64642, + "name": "2.0 AMT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280353, + "fields": { + "id_car_serie": 70806, + "name": "1.4 AMT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280354, + "fields": { + "id_car_serie": 67599, + "name": "2.0 AT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280355, + "fields": { + "id_car_serie": 64653, + "name": "AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280356, + "fields": { + "id_car_serie": 71716, + "name": "1.2 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280357, + "fields": { + "id_car_serie": 71716, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280358, + "fields": { + "id_car_serie": 71716, + "name": "1.5 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280359, + "fields": { + "id_car_serie": 71716, + "name": "1.5 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280360, + "fields": { + "id_car_serie": 71717, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280361, + "fields": { + "id_car_serie": 71717, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280362, + "fields": { + "id_car_serie": 71718, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280363, + "fields": { + "id_car_serie": 71719, + "name": "2.0 AT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280364, + "fields": { + "id_car_serie": 71720, + "name": "1.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280365, + "fields": { + "id_car_serie": 71720, + "name": "1.5 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280366, + "fields": { + "id_car_serie": 71720, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280367, + "fields": { + "id_car_serie": 71721, + "name": "1.5 AMT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280368, + "fields": { + "id_car_serie": 71722, + "name": "8.0 AMT 4WD (1500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280369, + "fields": { + "id_car_serie": 67836, + "name": "1.5 CVT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280370, + "fields": { + "id_car_serie": 70462, + "name": "2.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280371, + "fields": { + "id_car_serie": 71723, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280372, + "fields": { + "id_car_serie": 71723, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280373, + "fields": { + "id_car_serie": 71723, + "name": "1.4 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280374, + "fields": { + "id_car_serie": 71723, + "name": "1.6 CVT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280375, + "fields": { + "id_car_serie": 71723, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280376, + "fields": { + "id_car_serie": 71724, + "name": "2.0 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280377, + "fields": { + "id_car_serie": 71724, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280378, + "fields": { + "id_car_serie": 63455, + "name": "1.2 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280379, + "fields": { + "id_car_serie": 63455, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280380, + "fields": { + "id_car_serie": 63455, + "name": "1.3 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280381, + "fields": { + "id_car_serie": 63455, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280382, + "fields": { + "id_car_serie": 63455, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280383, + "fields": { + "id_car_serie": 71725, + "name": "AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280384, + "fields": { + "id_car_serie": 71725, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280385, + "fields": { + "id_car_serie": 71726, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280386, + "fields": { + "id_car_serie": 71726, + "name": "2.0 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280387, + "fields": { + "id_car_serie": 71727, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280388, + "fields": { + "id_car_serie": 71728, + "name": "3.9 AMT (620 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280389, + "fields": { + "id_car_serie": 71663, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280390, + "fields": { + "id_car_serie": 71729, + "name": "AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280391, + "fields": { + "id_car_serie": 71730, + "name": "AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280392, + "fields": { + "id_car_serie": 71730, + "name": "AT 4WD (578 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280393, + "fields": { + "id_car_serie": 70933, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280394, + "fields": { + "id_car_serie": 71731, + "name": "AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280395, + "fields": { + "id_car_serie": 71731, + "name": "1.2 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280396, + "fields": { + "id_car_serie": 71732, + "name": "1.5 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280397, + "fields": { + "id_car_serie": 71732, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280398, + "fields": { + "id_car_serie": 71732, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280399, + "fields": { + "id_car_serie": 70760, + "name": "1.5 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280400, + "fields": { + "id_car_serie": 71733, + "name": "1.5 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280401, + "fields": { + "id_car_serie": 71733, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280402, + "fields": { + "id_car_serie": 71734, + "name": "6.5 AMT 4WD (1015 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280403, + "fields": { + "id_car_serie": 71735, + "name": "2.0 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280404, + "fields": { + "id_car_serie": 71735, + "name": "2.0 MT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280405, + "fields": { + "id_car_serie": 71735, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280406, + "fields": { + "id_car_serie": 71735, + "name": "2.0 MT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280407, + "fields": { + "id_car_serie": 71735, + "name": "2.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280408, + "fields": { + "id_car_serie": 71736, + "name": "1.4 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280409, + "fields": { + "id_car_serie": 71736, + "name": "1.5 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280410, + "fields": { + "id_car_serie": 71736, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280411, + "fields": { + "id_car_serie": 71736, + "name": "1.5 AMT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280412, + "fields": { + "id_car_serie": 67357, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280413, + "fields": { + "id_car_serie": 67357, + "name": "2.0 AMT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280414, + "fields": { + "id_car_serie": 67359, + "name": "2.0 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280415, + "fields": { + "id_car_serie": 67359, + "name": "2.0 AMT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280416, + "fields": { + "id_car_serie": 71613, + "name": "AT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280417, + "fields": { + "id_car_serie": 66919, + "name": "6.2 AT 4WD (712 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280418, + "fields": { + "id_car_serie": 67361, + "name": "2.0 CVT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280419, + "fields": { + "id_car_serie": 63270, + "name": "1.5 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280420, + "fields": { + "id_car_serie": 71737, + "name": "2.0 AT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280421, + "fields": { + "id_car_serie": 71737, + "name": "2.0 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280422, + "fields": { + "id_car_serie": 71738, + "name": "2.0 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280423, + "fields": { + "id_car_serie": 71738, + "name": "2.0 AT 4WD (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280424, + "fields": { + "id_car_serie": 71739, + "name": "AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280425, + "fields": { + "id_car_serie": 71739, + "name": "AT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280426, + "fields": { + "id_car_serie": 71740, + "name": "AT 4WD (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280427, + "fields": { + "id_car_serie": 71741, + "name": "AT 4WD (349 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280428, + "fields": { + "id_car_serie": 71741, + "name": "AT 4WD (402 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280429, + "fields": { + "id_car_serie": 71742, + "name": "AT 4WD (402 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280430, + "fields": { + "id_car_serie": 67605, + "name": "2.0 AT 4WD (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280431, + "fields": { + "id_car_serie": 71743, + "name": "AT 4WD (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280432, + "fields": { + "id_car_serie": 70472, + "name": "1.5 AT 4WD (489 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280433, + "fields": { + "id_car_serie": 71744, + "name": "1.5 AT (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280434, + "fields": { + "id_car_serie": 71745, + "name": "1.5 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280435, + "fields": { + "id_car_serie": 71746, + "name": "2.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280436, + "fields": { + "id_car_serie": 71746, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280437, + "fields": { + "id_car_serie": 71746, + "name": "2.0 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280438, + "fields": { + "id_car_serie": 71747, + "name": "1.5 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280439, + "fields": { + "id_car_serie": 71747, + "name": "1.5 AMT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280440, + "fields": { + "id_car_serie": 71747, + "name": "1.5 MT 4WD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280441, + "fields": { + "id_car_serie": 71747, + "name": "1.5 AMT 4WD (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280442, + "fields": { + "id_car_serie": 71747, + "name": "1.5 AMT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280443, + "fields": { + "id_car_serie": 71747, + "name": "2.0 AMT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280444, + "fields": { + "id_car_serie": 71747, + "name": "1.5 AMT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280445, + "fields": { + "id_car_serie": 71747, + "name": "1.5 AMT 4WD (291 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280446, + "fields": { + "id_car_serie": 71748, + "name": "1.8 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280447, + "fields": { + "id_car_serie": 71748, + "name": "1.8 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280448, + "fields": { + "id_car_serie": 71748, + "name": "2.4 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280449, + "fields": { + "id_car_serie": 71748, + "name": "2.4 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280450, + "fields": { + "id_car_serie": 67042, + "name": "AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280452, + "fields": { + "id_car_serie": 8338, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280453, + "fields": { + "id_car_serie": 63881, + "name": "2.0 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280454, + "fields": { + "id_car_serie": 70423, + "name": "AT 4WD (660 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280455, + "fields": { + "id_car_serie": 71749, + "name": "1.5 AT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280456, + "fields": { + "id_car_serie": 71749, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280457, + "fields": { + "id_car_serie": 71749, + "name": "2.0 AMT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280458, + "fields": { + "id_car_serie": 71749, + "name": "2.0 AMT 4WD (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280459, + "fields": { + "id_car_serie": 71750, + "name": "1.5 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280460, + "fields": { + "id_car_serie": 71751, + "name": "2.0 AMT (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280461, + "fields": { + "id_car_serie": 63900, + "name": "6.2 AMT 4WD (655 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280462, + "fields": { + "id_car_serie": 71752, + "name": "2.0 AT 4WD (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280463, + "fields": { + "id_car_serie": 71753, + "name": "1.8 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280464, + "fields": { + "id_car_serie": 71754, + "name": "1.5 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280465, + "fields": { + "id_car_serie": 71754, + "name": "1.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280466, + "fields": { + "id_car_serie": 71754, + "name": "1.5 AMT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280467, + "fields": { + "id_car_serie": 71755, + "name": "1.5 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280468, + "fields": { + "id_car_serie": 71755, + "name": "1.5 AMT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280469, + "fields": { + "id_car_serie": 71756, + "name": "1.5 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280470, + "fields": { + "id_car_serie": 71756, + "name": "2.0 AMT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280471, + "fields": { + "id_car_serie": 71756, + "name": "2.0 AMT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280472, + "fields": { + "id_car_serie": 71756, + "name": "1.5 AT (243 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280473, + "fields": { + "id_car_serie": 71757, + "name": "1.0 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280474, + "fields": { + "id_car_serie": 71757, + "name": "1.5 CVT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280475, + "fields": { + "id_car_serie": 71757, + "name": "1.5 CVT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280476, + "fields": { + "id_car_serie": 71758, + "name": "1.0 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280477, + "fields": { + "id_car_serie": 71758, + "name": "1.5 CVT (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280478, + "fields": { + "id_car_serie": 71758, + "name": "1.5 CVT (126 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280479, + "fields": { + "id_car_serie": 71759, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280480, + "fields": { + "id_car_serie": 71759, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280481, + "fields": { + "id_car_serie": 71759, + "name": "1.5 CVT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280482, + "fields": { + "id_car_serie": 71759, + "name": "1.5 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280483, + "fields": { + "id_car_serie": 71759, + "name": "1.5 AMT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280484, + "fields": { + "id_car_serie": 71760, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280485, + "fields": { + "id_car_serie": 71760, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280486, + "fields": { + "id_car_serie": 71760, + "name": "1.5 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280487, + "fields": { + "id_car_serie": 71760, + "name": "1.5 CVT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280488, + "fields": { + "id_car_serie": 71760, + "name": "1.5 AMT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280489, + "fields": { + "id_car_serie": 67390, + "name": "2.0 CVT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280490, + "fields": { + "id_car_serie": 70669, + "name": "2.0 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280491, + "fields": { + "id_car_serie": 71761, + "name": "2.2 AT (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280492, + "fields": { + "id_car_serie": 71761, + "name": "2.4 AT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280493, + "fields": { + "id_car_serie": 71761, + "name": "2.5 AT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280494, + "fields": { + "id_car_serie": 71761, + "name": "3.0 AT (266 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280495, + "fields": { + "id_car_serie": 71761, + "name": "3.0 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280496, + "fields": { + "id_car_serie": 71589, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280497, + "fields": { + "id_car_serie": 71699, + "name": "1.4 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280498, + "fields": { + "id_car_serie": 67524, + "name": "3.0 AT 4WD (440 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280499, + "fields": { + "id_car_serie": 64137, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280500, + "fields": { + "id_car_serie": 71762, + "name": "2.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280501, + "fields": { + "id_car_serie": 71762, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280502, + "fields": { + "id_car_serie": 71762, + "name": "2.0 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280503, + "fields": { + "id_car_serie": 71762, + "name": "2.0 AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280504, + "fields": { + "id_car_serie": 71762, + "name": "2.0 AT 4WD (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280505, + "fields": { + "id_car_serie": 71762, + "name": "2.0 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280506, + "fields": { + "id_car_serie": 46554, + "name": "1.5 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280507, + "fields": { + "id_car_serie": 71763, + "name": "1.3 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280508, + "fields": { + "id_car_serie": 71763, + "name": "1.3 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280509, + "fields": { + "id_car_serie": 71763, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280510, + "fields": { + "id_car_serie": 71763, + "name": "2.0 AMT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280511, + "fields": { + "id_car_serie": 71763, + "name": "2.0 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280512, + "fields": { + "id_car_serie": 71763, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280513, + "fields": { + "id_car_serie": 71763, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280514, + "fields": { + "id_car_serie": 64177, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280515, + "fields": { + "id_car_serie": 70639, + "name": "AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280516, + "fields": { + "id_car_serie": 71764, + "name": "2.0 AMT 4WD (306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280517, + "fields": { + "id_car_serie": 71765, + "name": "AT 4WD (658 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280518, + "fields": { + "id_car_serie": 8861, + "name": "2.0 AT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280519, + "fields": { + "id_car_serie": 64260, + "name": "2.4 MT 4WD (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280520, + "fields": { + "id_car_serie": 9521, + "name": "2.5 MT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280521, + "fields": { + "id_car_serie": 9521, + "name": "2.5 AT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280522, + "fields": { + "id_car_serie": 71766, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280523, + "fields": { + "id_car_serie": 71766, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280524, + "fields": { + "id_car_serie": 71766, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280525, + "fields": { + "id_car_serie": 71767, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280526, + "fields": { + "id_car_serie": 71767, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280527, + "fields": { + "id_car_serie": 71767, + "name": "1.6 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280528, + "fields": { + "id_car_serie": 71768, + "name": "3.0 AT 4WD (353 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280529, + "fields": { + "id_car_serie": 71768, + "name": "4.0 AT 4WD (474 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280530, + "fields": { + "id_car_serie": 71768, + "name": "4.0 AT 4WD (659 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280531, + "fields": { + "id_car_serie": 71768, + "name": "3.0 AT 4WD (470 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280532, + "fields": { + "id_car_serie": 64539, + "name": "2.4 AT 4WD (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280533, + "fields": { + "id_car_serie": 71769, + "name": "AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280534, + "fields": { + "id_car_serie": 71770, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280535, + "fields": { + "id_car_serie": 71770, + "name": "AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280536, + "fields": { + "id_car_serie": 71770, + "name": "AT 4WD (287 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280537, + "fields": { + "id_car_serie": 71771, + "name": "1.2 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280538, + "fields": { + "id_car_serie": 71771, + "name": "1.5 CVT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280539, + "fields": { + "id_car_serie": 71772, + "name": "1.5 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280540, + "fields": { + "id_car_serie": 71772, + "name": "1.5 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280541, + "fields": { + "id_car_serie": 71773, + "name": "2.0 AT 4WD (1197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280542, + "fields": { + "id_car_serie": 70461, + "name": "AT 4WD (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280543, + "fields": { + "id_car_serie": 71774, + "name": "1.4 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280544, + "fields": { + "id_car_serie": 71774, + "name": "1.5 AMT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280545, + "fields": { + "id_car_serie": 71724, + "name": "2.0 AT 4WD (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280546, + "fields": { + "id_car_serie": 71724, + "name": "2.0 MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280547, + "fields": { + "id_car_serie": 71724, + "name": "2.0 MT 4WD (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280548, + "fields": { + "id_car_serie": 71775, + "name": "2.0 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280549, + "fields": { + "id_car_serie": 71775, + "name": "2.5 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280550, + "fields": { + "id_car_serie": 71775, + "name": "2.4 AT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280551, + "fields": { + "id_car_serie": 71775, + "name": "2.4 MT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280552, + "fields": { + "id_car_serie": 71776, + "name": "AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280553, + "fields": { + "id_car_serie": 71776, + "name": "AT 4WD (374 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280554, + "fields": { + "id_car_serie": 71776, + "name": "1.5 AT (301 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280555, + "fields": { + "id_car_serie": 71776, + "name": "1.5 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280556, + "fields": { + "id_car_serie": 71776, + "name": "1.5 AT 4WD (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280557, + "fields": { + "id_car_serie": 71601, + "name": "1.5 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280558, + "fields": { + "id_car_serie": 71601, + "name": "2.0 AT (217 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280559, + "fields": { + "id_car_serie": 70466, + "name": "1.5 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280560, + "fields": { + "id_car_serie": 71777, + "name": "1.8 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280561, + "fields": { + "id_car_serie": 71777, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280562, + "fields": { + "id_car_serie": 71777, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280563, + "fields": { + "id_car_serie": 71778, + "name": "1.5 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280564, + "fields": { + "id_car_serie": 71779, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280565, + "fields": { + "id_car_serie": 71779, + "name": "2.0 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280566, + "fields": { + "id_car_serie": 71780, + "name": "AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280567, + "fields": { + "id_car_serie": 71780, + "name": "AT 4WD (462 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280568, + "fields": { + "id_car_serie": 71781, + "name": "AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280569, + "fields": { + "id_car_serie": 71781, + "name": "AT 4WD (578 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280570, + "fields": { + "id_car_serie": 71782, + "name": "1.5 AMT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280571, + "fields": { + "id_car_serie": 71782, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280572, + "fields": { + "id_car_serie": 71782, + "name": "1.5 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280573, + "fields": { + "id_car_serie": 71783, + "name": "1.5 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280574, + "fields": { + "id_car_serie": 71783, + "name": "1.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280575, + "fields": { + "id_car_serie": 70470, + "name": "AT 4WD (558 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280576, + "fields": { + "id_car_serie": 71784, + "name": "AT 4WD (653 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280577, + "fields": { + "id_car_serie": 71611, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280578, + "fields": { + "id_car_serie": 71785, + "name": "AT 4WD (490 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280579, + "fields": { + "id_car_serie": 71785, + "name": "AT 4WD (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280580, + "fields": { + "id_car_serie": 71786, + "name": "AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280581, + "fields": { + "id_car_serie": 71786, + "name": "AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280582, + "fields": { + "id_car_serie": 65101, + "name": "2.3 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280583, + "fields": { + "id_car_serie": 67840, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280584, + "fields": { + "id_car_serie": 71787, + "name": "AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280585, + "fields": { + "id_car_serie": 71787, + "name": "AT 4WD (428 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280586, + "fields": { + "id_car_serie": 71788, + "name": "1.3 MT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280587, + "fields": { + "id_car_serie": 71788, + "name": "1.3 AT (79 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280588, + "fields": { + "id_car_serie": 71789, + "name": "1.5 MT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280589, + "fields": { + "id_car_serie": 71789, + "name": "1.5 MT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280590, + "fields": { + "id_car_serie": 71789, + "name": "1.5 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280591, + "fields": { + "id_car_serie": 71789, + "name": "1.5 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280592, + "fields": { + "id_car_serie": 71790, + "name": "1.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280593, + "fields": { + "id_car_serie": 71790, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280594, + "fields": { + "id_car_serie": 71790, + "name": "1.5 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280595, + "fields": { + "id_car_serie": 71790, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280596, + "fields": { + "id_car_serie": 71791, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280597, + "fields": { + "id_car_serie": 71791, + "name": "1.5 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280598, + "fields": { + "id_car_serie": 71792, + "name": "1.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280599, + "fields": { + "id_car_serie": 71792, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280600, + "fields": { + "id_car_serie": 71792, + "name": "1.5 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280601, + "fields": { + "id_car_serie": 71792, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280602, + "fields": { + "id_car_serie": 71793, + "name": "1.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280603, + "fields": { + "id_car_serie": 71793, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280604, + "fields": { + "id_car_serie": 71794, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280605, + "fields": { + "id_car_serie": 71794, + "name": "1.5 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280606, + "fields": { + "id_car_serie": 71795, + "name": "1.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280607, + "fields": { + "id_car_serie": 71796, + "name": "1.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280608, + "fields": { + "id_car_serie": 71796, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280609, + "fields": { + "id_car_serie": 71796, + "name": "1.8 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280610, + "fields": { + "id_car_serie": 71796, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280611, + "fields": { + "id_car_serie": 71797, + "name": "AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280612, + "fields": { + "id_car_serie": 71797, + "name": "AT 4WD (428 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280613, + "fields": { + "id_car_serie": 71744, + "name": "1.5 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280614, + "fields": { + "id_car_serie": 71798, + "name": "1.5 AT 4WD (694 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280615, + "fields": { + "id_car_serie": 71799, + "name": "AT 4WD (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280617, + "fields": { + "id_car_serie": 71800, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280618, + "fields": { + "id_car_serie": 71800, + "name": "1.6 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280619, + "fields": { + "id_car_serie": 71800, + "name": "1.5 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280620, + "fields": { + "id_car_serie": 71800, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280621, + "fields": { + "id_car_serie": 71801, + "name": "1.6 AMT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280622, + "fields": { + "id_car_serie": 71801, + "name": "2.0 AMT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280623, + "fields": { + "id_car_serie": 71802, + "name": "1.6 AMT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280624, + "fields": { + "id_car_serie": 71803, + "name": "2.0 AMT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280625, + "fields": { + "id_car_serie": 71803, + "name": "2.0 AMT 4WD (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280626, + "fields": { + "id_car_serie": 71804, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280627, + "fields": { + "id_car_serie": 71804, + "name": "2.0 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280628, + "fields": { + "id_car_serie": 71804, + "name": "2.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280629, + "fields": { + "id_car_serie": 71804, + "name": "3.0 AMT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280630, + "fields": { + "id_car_serie": 63841, + "name": "2.0 AMT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280631, + "fields": { + "id_car_serie": 8338, + "name": "2.0 AMT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280632, + "fields": { + "id_car_serie": 71805, + "name": "2.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280633, + "fields": { + "id_car_serie": 71805, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280634, + "fields": { + "id_car_serie": 71805, + "name": "2.0 AT (208 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280635, + "fields": { + "id_car_serie": 71805, + "name": "2.0 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280636, + "fields": { + "id_car_serie": 71805, + "name": "2.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280637, + "fields": { + "id_car_serie": 71805, + "name": "3.0 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280638, + "fields": { + "id_car_serie": 71806, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280639, + "fields": { + "id_car_serie": 71806, + "name": "3.0 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280640, + "fields": { + "id_car_serie": 70421, + "name": "3.0 AT 4WD (489 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280641, + "fields": { + "id_car_serie": 70477, + "name": "2.0 AMT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280642, + "fields": { + "id_car_serie": 71807, + "name": "1.5 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280643, + "fields": { + "id_car_serie": 71807, + "name": "2.0 AMT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280644, + "fields": { + "id_car_serie": 71807, + "name": "2.0 AT 4WD (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280645, + "fields": { + "id_car_serie": 71808, + "name": "AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280646, + "fields": { + "id_car_serie": 71808, + "name": "AT 4WD (601 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280647, + "fields": { + "id_car_serie": 71809, + "name": "1.4 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280648, + "fields": { + "id_car_serie": 71809, + "name": "1.6 CVT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280649, + "fields": { + "id_car_serie": 71809, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280650, + "fields": { + "id_car_serie": 71809, + "name": "1.4 AMT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280651, + "fields": { + "id_car_serie": 70613, + "name": "1.5 AMT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280652, + "fields": { + "id_car_serie": 71810, + "name": "1.5 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280653, + "fields": { + "id_car_serie": 71811, + "name": "1.5 AT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280654, + "fields": { + "id_car_serie": 71811, + "name": "1.5 MT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280655, + "fields": { + "id_car_serie": 71811, + "name": "2.0 AT (229 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280656, + "fields": { + "id_car_serie": 71812, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280657, + "fields": { + "id_car_serie": 71812, + "name": "1.5 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280658, + "fields": { + "id_car_serie": 71812, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280659, + "fields": { + "id_car_serie": 71813, + "name": "2.3 AT (319 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280660, + "fields": { + "id_car_serie": 71813, + "name": "5.0 AT (487 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280661, + "fields": { + "id_car_serie": 71813, + "name": "5.0 MT (487 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280662, + "fields": { + "id_car_serie": 71814, + "name": "2.3 AT (319 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280663, + "fields": { + "id_car_serie": 71814, + "name": "5.0 AT (487 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280664, + "fields": { + "id_car_serie": 71814, + "name": "5.0 MT (487 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280665, + "fields": { + "id_car_serie": 67724, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280666, + "fields": { + "id_car_serie": 70634, + "name": "2.0 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280667, + "fields": { + "id_car_serie": 66954, + "name": "1.5 AMT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280668, + "fields": { + "id_car_serie": 71815, + "name": "1.5 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280669, + "fields": { + "id_car_serie": 71816, + "name": "1.5 AT 4WD (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280670, + "fields": { + "id_car_serie": 67389, + "name": "1.5 CVT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280671, + "fields": { + "id_car_serie": 67727, + "name": "1.5 CVT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280672, + "fields": { + "id_car_serie": 66969, + "name": "1.5 CVT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280673, + "fields": { + "id_car_serie": 66969, + "name": "2.0 CVT 4WD (212 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280674, + "fields": { + "id_car_serie": 71817, + "name": "1.5 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280675, + "fields": { + "id_car_serie": 71817, + "name": "2.0 CVT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280676, + "fields": { + "id_car_serie": 67394, + "name": "1.5 CVT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280677, + "fields": { + "id_car_serie": 10774, + "name": "1.5 CVT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280678, + "fields": { + "id_car_serie": 71818, + "name": "2.0 CVT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280679, + "fields": { + "id_car_serie": 71819, + "name": "2.0 CVT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280680, + "fields": { + "id_car_serie": 71820, + "name": "2.4 CVT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280681, + "fields": { + "id_car_serie": 71821, + "name": "2.4 AT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280682, + "fields": { + "id_car_serie": 66988, + "name": "2.0 CVT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280683, + "fields": { + "id_car_serie": 71822, + "name": "1.5 AT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280684, + "fields": { + "id_car_serie": 71823, + "name": "1.6 AMT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280685, + "fields": { + "id_car_serie": 71823, + "name": "1.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280686, + "fields": { + "id_car_serie": 71823, + "name": "1.6 CVT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280687, + "fields": { + "id_car_serie": 71589, + "name": "2.0 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280688, + "fields": { + "id_car_serie": 71589, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280689, + "fields": { + "id_car_serie": 71589, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280690, + "fields": { + "id_car_serie": 71824, + "name": "1.6 AT 4WD (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280691, + "fields": { + "id_car_serie": 71824, + "name": "2.0 CVT 4WD (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280692, + "fields": { + "id_car_serie": 67204, + "name": "2.0 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280693, + "fields": { + "id_car_serie": 67750, + "name": "1.8 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280694, + "fields": { + "id_car_serie": 64129, + "name": "4.6 AT 4WD (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280695, + "fields": { + "id_car_serie": 71702, + "name": "2.5 AT 4WD (256 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280696, + "fields": { + "id_car_serie": 71703, + "name": "2.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280697, + "fields": { + "id_car_serie": 71825, + "name": "2.5 AT 4WD (328 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280698, + "fields": { + "id_car_serie": 71825, + "name": "3.3 AT 4WD (284 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280699, + "fields": { + "id_car_serie": 71825, + "name": "3.3 AT 4WD (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280700, + "fields": { + "id_car_serie": 64166, + "name": "2.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280701, + "fields": { + "id_car_serie": 71707, + "name": "2.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280702, + "fields": { + "id_car_serie": 14738, + "name": "1.8 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280703, + "fields": { + "id_car_serie": 71826, + "name": "1.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280704, + "fields": { + "id_car_serie": 71827, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280705, + "fields": { + "id_car_serie": 71827, + "name": "1.6 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280706, + "fields": { + "id_car_serie": 71827, + "name": "1.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280707, + "fields": { + "id_car_serie": 71827, + "name": "1.6 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280708, + "fields": { + "id_car_serie": 71828, + "name": "1.2 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280709, + "fields": { + "id_car_serie": 71828, + "name": "1.2 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280710, + "fields": { + "id_car_serie": 71828, + "name": "1.6 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280711, + "fields": { + "id_car_serie": 71828, + "name": "1.8 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280712, + "fields": { + "id_car_serie": 71828, + "name": "1.8 AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280713, + "fields": { + "id_car_serie": 71829, + "name": "1.2 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280714, + "fields": { + "id_car_serie": 71829, + "name": "1.2 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280715, + "fields": { + "id_car_serie": 71829, + "name": "1.6 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280716, + "fields": { + "id_car_serie": 71829, + "name": "1.8 AT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280717, + "fields": { + "id_car_serie": 71829, + "name": "1.8 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280718, + "fields": { + "id_car_serie": 63228, + "name": "4.0 AMT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280719, + "fields": { + "id_car_serie": 71830, + "name": "1.2 CVT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280720, + "fields": { + "id_car_serie": 71831, + "name": "1.5 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280721, + "fields": { + "id_car_serie": 71831, + "name": "1.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280722, + "fields": { + "id_car_serie": 71831, + "name": "1.5 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280723, + "fields": { + "id_car_serie": 71831, + "name": "1.2 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280724, + "fields": { + "id_car_serie": 66902, + "name": "2.8 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280725, + "fields": { + "id_car_serie": 71832, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280726, + "fields": { + "id_car_serie": 71832, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280727, + "fields": { + "id_car_serie": 71832, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280728, + "fields": { + "id_car_serie": 71832, + "name": "3.0 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280729, + "fields": { + "id_car_serie": 71833, + "name": "1.4 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280730, + "fields": { + "id_car_serie": 71833, + "name": "1.4 AMT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280731, + "fields": { + "id_car_serie": 71833, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280732, + "fields": { + "id_car_serie": 71833, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280733, + "fields": { + "id_car_serie": 71833, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280734, + "fields": { + "id_car_serie": 71833, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280735, + "fields": { + "id_car_serie": 71834, + "name": "4.0 AT (680 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280736, + "fields": { + "id_car_serie": 71719, + "name": "2.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280737, + "fields": { + "id_car_serie": 71835, + "name": "1.5 CVT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280738, + "fields": { + "id_car_serie": 71836, + "name": "1.5 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280739, + "fields": { + "id_car_serie": 71836, + "name": "2.0 AT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280740, + "fields": { + "id_car_serie": 71836, + "name": "2.0 AT (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280741, + "fields": { + "id_car_serie": 71836, + "name": "2.0 AT (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280742, + "fields": { + "id_car_serie": 71837, + "name": "1.5 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280743, + "fields": { + "id_car_serie": 71837, + "name": "1.5 AT 4WD (401 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280744, + "fields": { + "id_car_serie": 71838, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280745, + "fields": { + "id_car_serie": 71838, + "name": "AT (222 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280746, + "fields": { + "id_car_serie": 71840, + "name": "2.2 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280747, + "fields": { + "id_car_serie": 71840, + "name": "2.2 MT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280748, + "fields": { + "id_car_serie": 71840, + "name": "2.4 MT 4WD (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280749, + "fields": { + "id_car_serie": 71840, + "name": "2.4 MT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280750, + "fields": { + "id_car_serie": 71840, + "name": "2.4 AT 4WD (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280751, + "fields": { + "id_car_serie": 71841, + "name": "1.5 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280752, + "fields": { + "id_car_serie": 71842, + "name": "2.0 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280753, + "fields": { + "id_car_serie": 71842, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280754, + "fields": { + "id_car_serie": 71843, + "name": "2.0 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280755, + "fields": { + "id_car_serie": 71843, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280756, + "fields": { + "id_car_serie": 71843, + "name": "2.0 MT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280757, + "fields": { + "id_car_serie": 71843, + "name": "2.0 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280758, + "fields": { + "id_car_serie": 71844, + "name": "AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280759, + "fields": { + "id_car_serie": 71844, + "name": "AT 4WD (490 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280760, + "fields": { + "id_car_serie": 71845, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280761, + "fields": { + "id_car_serie": 71845, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280762, + "fields": { + "id_car_serie": 71845, + "name": "AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280763, + "fields": { + "id_car_serie": 71846, + "name": "2.0 AT (373 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280764, + "fields": { + "id_car_serie": 71847, + "name": "1.5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280765, + "fields": { + "id_car_serie": 71847, + "name": "1.5 AT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280766, + "fields": { + "id_car_serie": 71847, + "name": "1.5 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280767, + "fields": { + "id_car_serie": 71848, + "name": "1.3 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280768, + "fields": { + "id_car_serie": 71848, + "name": "1.5 MT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280769, + "fields": { + "id_car_serie": 71848, + "name": "1.5 AT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280770, + "fields": { + "id_car_serie": 71849, + "name": "AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280771, + "fields": { + "id_car_serie": 6240, + "name": "4.8 MT (273 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280772, + "fields": { + "id_car_serie": 6240, + "name": "4.8 MT 4WD (273 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280773, + "fields": { + "id_car_serie": 6240, + "name": "4.8 AT (273 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280774, + "fields": { + "id_car_serie": 6240, + "name": "4.8 AT 4WD (273 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280775, + "fields": { + "id_car_serie": 63536, + "name": "6.6 AT (407 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280776, + "fields": { + "id_car_serie": 64932, + "name": "2.0 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280777, + "fields": { + "id_car_serie": 64932, + "name": "2.0 MT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280778, + "fields": { + "id_car_serie": 70750, + "name": "2.0 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280779, + "fields": { + "id_car_serie": 70750, + "name": "1.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280780, + "fields": { + "id_car_serie": 70752, + "name": "2.0 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280781, + "fields": { + "id_car_serie": 70888, + "name": "2.0 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280782, + "fields": { + "id_car_serie": 70888, + "name": "3.0 AMT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280783, + "fields": { + "id_car_serie": 71850, + "name": "AT (54 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280784, + "fields": { + "id_car_serie": 71850, + "name": "AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280785, + "fields": { + "id_car_serie": 71850, + "name": "AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280786, + "fields": { + "id_car_serie": 6534, + "name": "2.5 AT 4WD (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280787, + "fields": { + "id_car_serie": 71851, + "name": "2.8 MT 4WD (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280788, + "fields": { + "id_car_serie": 71852, + "name": "1.8 MT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280789, + "fields": { + "id_car_serie": 71852, + "name": "1.8 MT (255 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280790, + "fields": { + "id_car_serie": 71853, + "name": "1.5 MT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280791, + "fields": { + "id_car_serie": 71853, + "name": "2.2 AT 4WD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280792, + "fields": { + "id_car_serie": 71853, + "name": "2.2 MT 4WD (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280793, + "fields": { + "id_car_serie": 71853, + "name": "2.0 AT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280794, + "fields": { + "id_car_serie": 71853, + "name": "2.0 MT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280795, + "fields": { + "id_car_serie": 71854, + "name": "2.5 MT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280796, + "fields": { + "id_car_serie": 71854, + "name": "2.5 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280797, + "fields": { + "id_car_serie": 71855, + "name": "4.0 AMT (750 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280798, + "fields": { + "id_car_serie": 71856, + "name": "4.0 AMT (750 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280799, + "fields": { + "id_car_serie": 65022, + "name": "2.0 MT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280800, + "fields": { + "id_car_serie": 65022, + "name": "2.0 AMT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280801, + "fields": { + "id_car_serie": 65022, + "name": "2.0 AT 4WD (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280802, + "fields": { + "id_car_serie": 71857, + "name": "1.6 MT (70 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280803, + "fields": { + "id_car_serie": 4026, + "name": "2.3 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280804, + "fields": { + "id_car_serie": 71858, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280805, + "fields": { + "id_car_serie": 71858, + "name": "3.5 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280806, + "fields": { + "id_car_serie": 71859, + "name": "2.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280807, + "fields": { + "id_car_serie": 71859, + "name": "3.5 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280808, + "fields": { + "id_car_serie": 71860, + "name": "4.6 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280809, + "fields": { + "id_car_serie": 71860, + "name": "4.6 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280810, + "fields": { + "id_car_serie": 71860, + "name": "4.6 MT (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280811, + "fields": { + "id_car_serie": 71860, + "name": "4.6 AT (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280812, + "fields": { + "id_car_serie": 71861, + "name": "1.5 CVT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280813, + "fields": { + "id_car_serie": 71862, + "name": "1.5 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280814, + "fields": { + "id_car_serie": 71789, + "name": "1.5 AT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280815, + "fields": { + "id_car_serie": 71789, + "name": "1.5 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280816, + "fields": { + "id_car_serie": 71863, + "name": "1.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280817, + "fields": { + "id_car_serie": 71863, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280818, + "fields": { + "id_car_serie": 71864, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280819, + "fields": { + "id_car_serie": 71864, + "name": "1.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280820, + "fields": { + "id_car_serie": 71865, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280821, + "fields": { + "id_car_serie": 71866, + "name": "AT (27 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280822, + "fields": { + "id_car_serie": 71866, + "name": "AT (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280823, + "fields": { + "id_car_serie": 71867, + "name": "4.5 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280824, + "fields": { + "id_car_serie": 71867, + "name": "4.5 MT (35 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280825, + "fields": { + "id_car_serie": 71867, + "name": "4.5 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280826, + "fields": { + "id_car_serie": 71646, + "name": "AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280827, + "fields": { + "id_car_serie": 67678, + "name": "3.0 AT 4WD (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280828, + "fields": { + "id_car_serie": 71868, + "name": "1.6 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280829, + "fields": { + "id_car_serie": 71868, + "name": "2.0 AMT (244 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280830, + "fields": { + "id_car_serie": 71868, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280831, + "fields": { + "id_car_serie": 71868, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280832, + "fields": { + "id_car_serie": 71868, + "name": "2.0 AMT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280833, + "fields": { + "id_car_serie": 71869, + "name": "2.0 MT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280834, + "fields": { + "id_car_serie": 71869, + "name": "2.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280835, + "fields": { + "id_car_serie": 71869, + "name": "2.0 MT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280836, + "fields": { + "id_car_serie": 71869, + "name": "2.0 AT 4WD (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280837, + "fields": { + "id_car_serie": 71870, + "name": "AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280838, + "fields": { + "id_car_serie": 71870, + "name": "AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280839, + "fields": { + "id_car_serie": 70564, + "name": "1.2 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280840, + "fields": { + "id_car_serie": 71871, + "name": "2.0 AT (246 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280841, + "fields": { + "id_car_serie": 71783, + "name": "1.5 CVT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280860, + "fields": { + "id_car_serie": 72908, + "name": "2.0 AT 4WD (226 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280861, + "fields": { + "id_car_serie": 72909, + "name": "AT (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280862, + "fields": { + "id_car_serie": 72909, + "name": "AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280863, + "fields": { + "id_car_serie": 72910, + "name": "1.5 AMT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280864, + "fields": { + "id_car_serie": 72911, + "name": "1.4 CVT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280865, + "fields": { + "id_car_serie": 72912, + "name": "1.5 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280866, + "fields": { + "id_car_serie": 72912, + "name": "1.5 AMT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280867, + "fields": { + "id_car_serie": 72912, + "name": "1.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280868, + "fields": { + "id_car_serie": 72912, + "name": "1.8 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280869, + "fields": { + "id_car_serie": 72913, + "name": "2.4 AT 4WD (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280870, + "fields": { + "id_car_serie": 72913, + "name": "2.4 AT 4WD (371 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280871, + "fields": { + "id_car_serie": 72913, + "name": "3.5 CVT 4WD (412 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280872, + "fields": { + "id_car_serie": 72914, + "name": "1.5 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280873, + "fields": { + "id_car_serie": 72914, + "name": "1.5 CVT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280874, + "fields": { + "id_car_serie": 72915, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280875, + "fields": { + "id_car_serie": 72916, + "name": "3.0 AT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280876, + "fields": { + "id_car_serie": 72916, + "name": "4.0 AT 4WD (422 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280877, + "fields": { + "id_car_serie": 72917, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280878, + "fields": { + "id_car_serie": 72917, + "name": "1.5 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280879, + "fields": { + "id_car_serie": 72917, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280880, + "fields": { + "id_car_serie": 72917, + "name": "1.5 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280881, + "fields": { + "id_car_serie": 72918, + "name": "1.5 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280882, + "fields": { + "id_car_serie": 72918, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280883, + "fields": { + "id_car_serie": 72918, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280884, + "fields": { + "id_car_serie": 72918, + "name": "1.5 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280885, + "fields": { + "id_car_serie": 72919, + "name": "1.5 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280886, + "fields": { + "id_car_serie": 72919, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280887, + "fields": { + "id_car_serie": 72919, + "name": "1.5 CVT (151 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280888, + "fields": { + "id_car_serie": 72919, + "name": "1.5 CVT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280889, + "fields": { + "id_car_serie": 72920, + "name": "2.4 AT 4WD (183 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280890, + "fields": { + "id_car_serie": 72920, + "name": "3.0 AT 4WD (353 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280891, + "fields": { + "id_car_serie": 72921, + "name": "AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280892, + "fields": { + "id_car_serie": 72921, + "name": "AT 4WD (462 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280893, + "fields": { + "id_car_serie": 72922, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280894, + "fields": { + "id_car_serie": 72922, + "name": "AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280895, + "fields": { + "id_car_serie": 72923, + "name": "1.6 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280896, + "fields": { + "id_car_serie": 72924, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280897, + "fields": { + "id_car_serie": 72924, + "name": "2.0 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280898, + "fields": { + "id_car_serie": 72924, + "name": "2.0 MT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280899, + "fields": { + "id_car_serie": 72924, + "name": "2.0 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280900, + "fields": { + "id_car_serie": 72924, + "name": "2.0 MT (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280901, + "fields": { + "id_car_serie": 72924, + "name": "2.0 AT 4WD (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280902, + "fields": { + "id_car_serie": 72925, + "name": "2.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280903, + "fields": { + "id_car_serie": 72926, + "name": "AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280904, + "fields": { + "id_car_serie": 72926, + "name": "AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280905, + "fields": { + "id_car_serie": 72927, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280906, + "fields": { + "id_car_serie": 72928, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280907, + "fields": { + "id_car_serie": 72928, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280908, + "fields": { + "id_car_serie": 72929, + "name": "1.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280909, + "fields": { + "id_car_serie": 72929, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280910, + "fields": { + "id_car_serie": 72929, + "name": "1.6 MT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280911, + "fields": { + "id_car_serie": 72930, + "name": "1.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280912, + "fields": { + "id_car_serie": 72930, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280913, + "fields": { + "id_car_serie": 72930, + "name": "1.8 MT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280914, + "fields": { + "id_car_serie": 72930, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280915, + "fields": { + "id_car_serie": 72931, + "name": "AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280916, + "fields": { + "id_car_serie": 72931, + "name": "AT 4WD (428 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280917, + "fields": { + "id_car_serie": 72932, + "name": "2.0 AMT (227 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280918, + "fields": { + "id_car_serie": 72932, + "name": "2.0 AMT 4WD (227 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280919, + "fields": { + "id_car_serie": 72932, + "name": "2.0 AMT 4WD (363 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280920, + "fields": { + "id_car_serie": 72933, + "name": "2.0 AMT 4WD (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280921, + "fields": { + "id_car_serie": 72934, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280922, + "fields": { + "id_car_serie": 72934, + "name": "1.5 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280923, + "fields": { + "id_car_serie": 72934, + "name": "1.5 CVT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280924, + "fields": { + "id_car_serie": 72934, + "name": "2.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280925, + "fields": { + "id_car_serie": 72935, + "name": "AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280926, + "fields": { + "id_car_serie": 72936, + "name": "1.5 AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280927, + "fields": { + "id_car_serie": 72936, + "name": "1.5 MT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280928, + "fields": { + "id_car_serie": 72936, + "name": "2.0 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280929, + "fields": { + "id_car_serie": 72937, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280930, + "fields": { + "id_car_serie": 72938, + "name": "1.5 AT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280931, + "fields": { + "id_car_serie": 72938, + "name": "1.5 MT (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280932, + "fields": { + "id_car_serie": 72939, + "name": "1.2 CVT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280933, + "fields": { + "id_car_serie": 72939, + "name": "1.3 CVT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280934, + "fields": { + "id_car_serie": 72939, + "name": "1.3 AT 4WD (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280935, + "fields": { + "id_car_serie": 72940, + "name": "1.5 CVT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280936, + "fields": { + "id_car_serie": 72940, + "name": "2.0 CVT (207 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280937, + "fields": { + "id_car_serie": 72941, + "name": "3.4 AT 4WD (349 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280938, + "fields": { + "id_car_serie": 72942, + "name": "2.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280939, + "fields": { + "id_car_serie": 72942, + "name": "2.0 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280940, + "fields": { + "id_car_serie": 72942, + "name": "2.0 AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280941, + "fields": { + "id_car_serie": 72943, + "name": "2.0 CVT (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280942, + "fields": { + "id_car_serie": 72943, + "name": "2.0 CVT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280943, + "fields": { + "id_car_serie": 72943, + "name": "2.0 CVT (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280944, + "fields": { + "id_car_serie": 72943, + "name": "2.0 CVT 4WD (154 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280945, + "fields": { + "id_car_serie": 72943, + "name": "2.5 CVT 4WD (185 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280946, + "fields": { + "id_car_serie": 72944, + "name": "2.5 CVT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280947, + "fields": { + "id_car_serie": 72944, + "name": "2.5 CVT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280948, + "fields": { + "id_car_serie": 72944, + "name": "2.5 CVT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280949, + "fields": { + "id_car_serie": 72945, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280950, + "fields": { + "id_car_serie": 72945, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280951, + "fields": { + "id_car_serie": 72946, + "name": "2.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280952, + "fields": { + "id_car_serie": 72947, + "name": "2.0 AT (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280953, + "fields": { + "id_car_serie": 72948, + "name": "1.5 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280954, + "fields": { + "id_car_serie": 72948, + "name": "2.0 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280955, + "fields": { + "id_car_serie": 72948, + "name": "2.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280956, + "fields": { + "id_car_serie": 72948, + "name": "1.5 AT 4WD (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280957, + "fields": { + "id_car_serie": 72948, + "name": "2.0 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280958, + "fields": { + "id_car_serie": 72948, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280959, + "fields": { + "id_car_serie": 72948, + "name": "2.0 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280960, + "fields": { + "id_car_serie": 72949, + "name": "4.9 AT (142 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280961, + "fields": { + "id_car_serie": 72949, + "name": "4.9 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280962, + "fields": { + "id_car_serie": 72949, + "name": "4.9 AT (157 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280963, + "fields": { + "id_car_serie": 72949, + "name": "4.9 AT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280964, + "fields": { + "id_car_serie": 72950, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280965, + "fields": { + "id_car_serie": 72950, + "name": "2.0 AMT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280966, + "fields": { + "id_car_serie": 72951, + "name": "1.5 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280967, + "fields": { + "id_car_serie": 72951, + "name": "2.0 AT (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280968, + "fields": { + "id_car_serie": 72951, + "name": "2.0 AT 4WD (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280969, + "fields": { + "id_car_serie": 72951, + "name": "2.0 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280970, + "fields": { + "id_car_serie": 72951, + "name": "2.0 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280971, + "fields": { + "id_car_serie": 72952, + "name": "1.5 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280994, + "fields": { + "id_car_serie": 72953, + "name": "2.0 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280995, + "fields": { + "id_car_serie": 72953, + "name": "2.0 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280996, + "fields": { + "id_car_serie": 72953, + "name": "2.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280997, + "fields": { + "id_car_serie": 72953, + "name": "2.0 AMT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280998, + "fields": { + "id_car_serie": 72953, + "name": "2.0 AMT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 280999, + "fields": { + "id_car_serie": 72954, + "name": "2.0 AT 4WD (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281000, + "fields": { + "id_car_serie": 72955, + "name": "1.5 AMT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281001, + "fields": { + "id_car_serie": 72956, + "name": "1.5 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281002, + "fields": { + "id_car_serie": 72956, + "name": "2.0 AMT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281003, + "fields": { + "id_car_serie": 72956, + "name": "2.0 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281004, + "fields": { + "id_car_serie": 72957, + "name": "1.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281005, + "fields": { + "id_car_serie": 72957, + "name": "1.5 AMT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281006, + "fields": { + "id_car_serie": 72958, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281007, + "fields": { + "id_car_serie": 72958, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281008, + "fields": { + "id_car_serie": 72959, + "name": "1.4 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281009, + "fields": { + "id_car_serie": 72959, + "name": "1.5 AMT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281010, + "fields": { + "id_car_serie": 72960, + "name": "1.4 MT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281011, + "fields": { + "id_car_serie": 72960, + "name": "1.4 AMT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281012, + "fields": { + "id_car_serie": 72961, + "name": "1.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281013, + "fields": { + "id_car_serie": 72961, + "name": "1.5 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281014, + "fields": { + "id_car_serie": 72961, + "name": "1.5 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281015, + "fields": { + "id_car_serie": 72961, + "name": "1.5 AMT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281016, + "fields": { + "id_car_serie": 72962, + "name": "1.3 AMT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281017, + "fields": { + "id_car_serie": 72962, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281018, + "fields": { + "id_car_serie": 72962, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281019, + "fields": { + "id_car_serie": 72962, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281020, + "fields": { + "id_car_serie": 72962, + "name": "1.5 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281021, + "fields": { + "id_car_serie": 72963, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281022, + "fields": { + "id_car_serie": 72963, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281023, + "fields": { + "id_car_serie": 72963, + "name": "2.4 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281024, + "fields": { + "id_car_serie": 72963, + "name": "2.4 MT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281025, + "fields": { + "id_car_serie": 72964, + "name": "3.0 AMT 4WD (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281026, + "fields": { + "id_car_serie": 72964, + "name": "3.0 AMT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281027, + "fields": { + "id_car_serie": 72964, + "name": "3.0 AMT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281028, + "fields": { + "id_car_serie": 72964, + "name": "4.0 AMT 4WD (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281029, + "fields": { + "id_car_serie": 72965, + "name": "4.0 AT 4WD (557 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281030, + "fields": { + "id_car_serie": 72966, + "name": "4.0 AT 4WD (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281031, + "fields": { + "id_car_serie": 72967, + "name": "1.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281032, + "fields": { + "id_car_serie": 72967, + "name": "1.8 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281033, + "fields": { + "id_car_serie": 72968, + "name": "1.6 AT (167 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281034, + "fields": { + "id_car_serie": 72968, + "name": "1.8 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281035, + "fields": { + "id_car_serie": 72968, + "name": "1.8 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281036, + "fields": { + "id_car_serie": 72969, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281037, + "fields": { + "id_car_serie": 72969, + "name": "2.0 AMT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281038, + "fields": { + "id_car_serie": 72970, + "name": "2.4 AT 4WD (281 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281039, + "fields": { + "id_car_serie": 72970, + "name": "2.4 AT 4WD (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281040, + "fields": { + "id_car_serie": 72970, + "name": "2.7 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281041, + "fields": { + "id_car_serie": 72970, + "name": "2.8 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281042, + "fields": { + "id_car_serie": 72971, + "name": "1.8 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281043, + "fields": { + "id_car_serie": 72971, + "name": "2.0 CVT (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281044, + "fields": { + "id_car_serie": 72971, + "name": "2.0 CVT (223 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281045, + "fields": { + "id_car_serie": 72972, + "name": "1.5 CVT 4WD (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281046, + "fields": { + "id_car_serie": 72972, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281047, + "fields": { + "id_car_serie": 72973, + "name": "1.5 CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281048, + "fields": { + "id_car_serie": 72973, + "name": "1.5 CVT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281049, + "fields": { + "id_car_serie": 72973, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281050, + "fields": { + "id_car_serie": 72974, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281051, + "fields": { + "id_car_serie": 72974, + "name": "2.0 MT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281052, + "fields": { + "id_car_serie": 72974, + "name": "2.0 AT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281053, + "fields": { + "id_car_serie": 72974, + "name": "2.0 MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281054, + "fields": { + "id_car_serie": 72974, + "name": "2.0 AT 4WD (209 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281055, + "fields": { + "id_car_serie": 72974, + "name": "3.0 AT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281056, + "fields": { + "id_car_serie": 72974, + "name": "3.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281057, + "fields": { + "id_car_serie": 72974, + "name": "2.3 AT 4WD (302 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281061, + "fields": { + "id_car_serie": 72975, + "name": "2.0 AT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281062, + "fields": { + "id_car_serie": 72975, + "name": "2.3 MT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281063, + "fields": { + "id_car_serie": 72975, + "name": "2.3 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281064, + "fields": { + "id_car_serie": 72975, + "name": "2.3 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281065, + "fields": { + "id_car_serie": 72975, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281066, + "fields": { + "id_car_serie": 72976, + "name": "3.0 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281067, + "fields": { + "id_car_serie": 72976, + "name": "3.5 MT (108 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281068, + "fields": { + "id_car_serie": 72977, + "name": "AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281069, + "fields": { + "id_car_serie": 72977, + "name": "AT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281070, + "fields": { + "id_car_serie": 72978, + "name": "3.9 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281071, + "fields": { + "id_car_serie": 72978, + "name": "3.9 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281072, + "fields": { + "id_car_serie": 72978, + "name": "3.9 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281073, + "fields": { + "id_car_serie": 72978, + "name": "3.9 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281074, + "fields": { + "id_car_serie": 72978, + "name": "5.2 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281075, + "fields": { + "id_car_serie": 72978, + "name": "5.2 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281076, + "fields": { + "id_car_serie": 72978, + "name": "5.9 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281077, + "fields": { + "id_car_serie": 72978, + "name": "5.9 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281078, + "fields": { + "id_car_serie": 72979, + "name": "1.5 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281079, + "fields": { + "id_car_serie": 72979, + "name": "1.5 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281080, + "fields": { + "id_car_serie": 72980, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281081, + "fields": { + "id_car_serie": 72980, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281082, + "fields": { + "id_car_serie": 72980, + "name": "1.5 CVT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281083, + "fields": { + "id_car_serie": 72980, + "name": "1.8 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281084, + "fields": { + "id_car_serie": 72981, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281085, + "fields": { + "id_car_serie": 72981, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281086, + "fields": { + "id_car_serie": 72981, + "name": "2.0 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281087, + "fields": { + "id_car_serie": 72981, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281088, + "fields": { + "id_car_serie": 72982, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281089, + "fields": { + "id_car_serie": 72982, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281090, + "fields": { + "id_car_serie": 72982, + "name": "1.8 MT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281091, + "fields": { + "id_car_serie": 72982, + "name": "1.8 CVT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281092, + "fields": { + "id_car_serie": 72982, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281093, + "fields": { + "id_car_serie": 72982, + "name": "2.0 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281094, + "fields": { + "id_car_serie": 72983, + "name": "1.5 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281095, + "fields": { + "id_car_serie": 72983, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281096, + "fields": { + "id_car_serie": 72984, + "name": "AT 4WD (1088 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281097, + "fields": { + "id_car_serie": 72984, + "name": "2.0 AT 4WD (816 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281098, + "fields": { + "id_car_serie": 72985, + "name": "AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281099, + "fields": { + "id_car_serie": 72986, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281100, + "fields": { + "id_car_serie": 72987, + "name": "2.0 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281101, + "fields": { + "id_car_serie": 72987, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281102, + "fields": { + "id_car_serie": 72987, + "name": "2.0 MT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281103, + "fields": { + "id_car_serie": 72987, + "name": "2.0 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281104, + "fields": { + "id_car_serie": 72988, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281105, + "fields": { + "id_car_serie": 72988, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281106, + "fields": { + "id_car_serie": 72989, + "name": "AT (336 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281107, + "fields": { + "id_car_serie": 72989, + "name": "AT 4WD (505 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281111, + "fields": { + "id_car_serie": 72990, + "name": "1.5 AMT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281112, + "fields": { + "id_car_serie": 72990, + "name": "2.0 AT (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281113, + "fields": { + "id_car_serie": 72991, + "name": "1.5 AMT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281114, + "fields": { + "id_car_serie": 72992, + "name": "1.5 AMT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281115, + "fields": { + "id_car_serie": 72992, + "name": "1.5 AMT (305 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281116, + "fields": { + "id_car_serie": 72993, + "name": "1.5 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281117, + "fields": { + "id_car_serie": 72993, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281118, + "fields": { + "id_car_serie": 72994, + "name": "4.0 MT (35 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281119, + "fields": { + "id_car_serie": 72995, + "name": "1.0 AT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281120, + "fields": { + "id_car_serie": 72995, + "name": "1.0 MT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281121, + "fields": { + "id_car_serie": 72996, + "name": "2.0 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281122, + "fields": { + "id_car_serie": 72996, + "name": "2.0 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281123, + "fields": { + "id_car_serie": 72997, + "name": "2.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281124, + "fields": { + "id_car_serie": 72998, + "name": "4.1 MT (20 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281125, + "fields": { + "id_car_serie": 72999, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281126, + "fields": { + "id_car_serie": 72999, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281127, + "fields": { + "id_car_serie": 72999, + "name": "1.5 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281128, + "fields": { + "id_car_serie": 73000, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281129, + "fields": { + "id_car_serie": 73001, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281130, + "fields": { + "id_car_serie": 73001, + "name": "1.5 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281131, + "fields": { + "id_car_serie": 73002, + "name": "1.5 AMT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281132, + "fields": { + "id_car_serie": 73002, + "name": "2.0 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281133, + "fields": { + "id_car_serie": 73003, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281134, + "fields": { + "id_car_serie": 73003, + "name": "1.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281135, + "fields": { + "id_car_serie": 73003, + "name": "2.0 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281136, + "fields": { + "id_car_serie": 73003, + "name": "2.0 MT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281137, + "fields": { + "id_car_serie": 73004, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281138, + "fields": { + "id_car_serie": 73004, + "name": "1.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281139, + "fields": { + "id_car_serie": 73004, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281140, + "fields": { + "id_car_serie": 73004, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281141, + "fields": { + "id_car_serie": 73005, + "name": "2.0 CVT 4WD (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281142, + "fields": { + "id_car_serie": 73005, + "name": "2.5 CVT 4WD (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281143, + "fields": { + "id_car_serie": 73005, + "name": "2.0 CVT 4WD (145 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281144, + "fields": { + "id_car_serie": 73006, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281145, + "fields": { + "id_car_serie": 73007, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281146, + "fields": { + "id_car_serie": 73007, + "name": "1.5 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281147, + "fields": { + "id_car_serie": 73007, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281148, + "fields": { + "id_car_serie": 73008, + "name": "1.5 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281149, + "fields": { + "id_car_serie": 73008, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281150, + "fields": { + "id_car_serie": 73008, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281151, + "fields": { + "id_car_serie": 73009, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281152, + "fields": { + "id_car_serie": 73009, + "name": "1.5 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281153, + "fields": { + "id_car_serie": 73009, + "name": "2.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281174, + "fields": { + "id_car_serie": 73014, + "name": "1.5 AMT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281175, + "fields": { + "id_car_serie": 73015, + "name": "2.0 AT 4WD (226 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281176, + "fields": { + "id_car_serie": 73016, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281177, + "fields": { + "id_car_serie": 73016, + "name": "AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281178, + "fields": { + "id_car_serie": 73016, + "name": "1.5 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281179, + "fields": { + "id_car_serie": 73017, + "name": "2.0 AMT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281180, + "fields": { + "id_car_serie": 73018, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281181, + "fields": { + "id_car_serie": 73018, + "name": "1.5 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281182, + "fields": { + "id_car_serie": 73018, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281183, + "fields": { + "id_car_serie": 73019, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281184, + "fields": { + "id_car_serie": 73019, + "name": "1.6 AMT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281185, + "fields": { + "id_car_serie": 73020, + "name": "1.5 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281186, + "fields": { + "id_car_serie": 73020, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281187, + "fields": { + "id_car_serie": 73021, + "name": "1.5 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281188, + "fields": { + "id_car_serie": 73021, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281189, + "fields": { + "id_car_serie": 73022, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281190, + "fields": { + "id_car_serie": 73022, + "name": "AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281191, + "fields": { + "id_car_serie": 73023, + "name": "2.3 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281192, + "fields": { + "id_car_serie": 73023, + "name": "2.3 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281193, + "fields": { + "id_car_serie": 73024, + "name": "1.5 AMT (172 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281194, + "fields": { + "id_car_serie": 73025, + "name": "1.5 AMT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281195, + "fields": { + "id_car_serie": 73026, + "name": "2.0 AMT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281196, + "fields": { + "id_car_serie": 73027, + "name": "1.5 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281197, + "fields": { + "id_car_serie": 73028, + "name": "1.5 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281198, + "fields": { + "id_car_serie": 73029, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281199, + "fields": { + "id_car_serie": 73029, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281200, + "fields": { + "id_car_serie": 73030, + "name": "1.5 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281201, + "fields": { + "id_car_serie": 73030, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281202, + "fields": { + "id_car_serie": 73030, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281203, + "fields": { + "id_car_serie": 73031, + "name": "2.0 MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281204, + "fields": { + "id_car_serie": 73031, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281205, + "fields": { + "id_car_serie": 73031, + "name": "2.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281206, + "fields": { + "id_car_serie": 73031, + "name": "2.0 MT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281207, + "fields": { + "id_car_serie": 73031, + "name": "2.0 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281208, + "fields": { + "id_car_serie": 73032, + "name": "1.6 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281209, + "fields": { + "id_car_serie": 73032, + "name": "2.5 AT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281210, + "fields": { + "id_car_serie": 73032, + "name": "2.5 AMT 4WD (281 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281211, + "fields": { + "id_car_serie": 73032, + "name": "1.6 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281212, + "fields": { + "id_car_serie": 73033, + "name": "AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281213, + "fields": { + "id_car_serie": 73033, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281214, + "fields": { + "id_car_serie": 73033, + "name": "1.6 AMT (141 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281215, + "fields": { + "id_car_serie": 73033, + "name": "1.6 AT 4WD (198 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281216, + "fields": { + "id_car_serie": 73033, + "name": "2.0 CVT (149 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281217, + "fields": { + "id_car_serie": 73034, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281218, + "fields": { + "id_car_serie": 73035, + "name": "2.4 AT 4WD (349 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281219, + "fields": { + "id_car_serie": 73035, + "name": "2.5 CVT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281220, + "fields": { + "id_car_serie": 73036, + "name": "1.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281221, + "fields": { + "id_car_serie": 73036, + "name": "1.9 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281222, + "fields": { + "id_car_serie": 73036, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281223, + "fields": { + "id_car_serie": 73036, + "name": "3.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281224, + "fields": { + "id_car_serie": 73036, + "name": "3.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281225, + "fields": { + "id_car_serie": 73036, + "name": "3.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281226, + "fields": { + "id_car_serie": 73037, + "name": "1.0 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281227, + "fields": { + "id_car_serie": 73037, + "name": "1.3 MT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281228, + "fields": { + "id_car_serie": 73037, + "name": "1.3 AMT (158 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281229, + "fields": { + "id_car_serie": 73037, + "name": "1.6 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281230, + "fields": { + "id_car_serie": 73037, + "name": "1.6 AT (159 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281231, + "fields": { + "id_car_serie": 73038, + "name": "1.6 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281232, + "fields": { + "id_car_serie": 73039, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281233, + "fields": { + "id_car_serie": 73039, + "name": "1.4 AMT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281234, + "fields": { + "id_car_serie": 73039, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281235, + "fields": { + "id_car_serie": 73039, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281236, + "fields": { + "id_car_serie": 73040, + "name": "1.5 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281237, + "fields": { + "id_car_serie": 73040, + "name": "2.0 AMT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281238, + "fields": { + "id_car_serie": 73041, + "name": "2.0 AMT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281239, + "fields": { + "id_car_serie": 73042, + "name": "1.6 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281240, + "fields": { + "id_car_serie": 73043, + "name": "AT 4WD (750 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281241, + "fields": { + "id_car_serie": 73043, + "name": "3.0 AMT (620 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281242, + "fields": { + "id_car_serie": 73044, + "name": "4.0 AT (680 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281243, + "fields": { + "id_car_serie": 73045, + "name": "1.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281244, + "fields": { + "id_car_serie": 73045, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281245, + "fields": { + "id_car_serie": 73046, + "name": "2.0 AT 4WD (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281246, + "fields": { + "id_car_serie": 73047, + "name": "2.0 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281247, + "fields": { + "id_car_serie": 73048, + "name": "1.6 MT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281248, + "fields": { + "id_car_serie": 73048, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281249, + "fields": { + "id_car_serie": 73048, + "name": "2.0 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281250, + "fields": { + "id_car_serie": 73048, + "name": "2.0 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281251, + "fields": { + "id_car_serie": 73049, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281252, + "fields": { + "id_car_serie": 73050, + "name": "6.2 AT 4WD (610 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281253, + "fields": { + "id_car_serie": 73051, + "name": "AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281254, + "fields": { + "id_car_serie": 73051, + "name": "AT 4WD (287 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281255, + "fields": { + "id_car_serie": 73052, + "name": "1.4 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281256, + "fields": { + "id_car_serie": 73053, + "name": "1.5 CVT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281257, + "fields": { + "id_car_serie": 73053, + "name": "2.0 AT (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281258, + "fields": { + "id_car_serie": 73054, + "name": "1.8 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281259, + "fields": { + "id_car_serie": 73054, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281260, + "fields": { + "id_car_serie": 73055, + "name": "AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281261, + "fields": { + "id_car_serie": 73056, + "name": "1.5 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281262, + "fields": { + "id_car_serie": 73056, + "name": "2.0 AT 4WD (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281263, + "fields": { + "id_car_serie": 73057, + "name": "5.6 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281264, + "fields": { + "id_car_serie": 73058, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281265, + "fields": { + "id_car_serie": 73058, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281266, + "fields": { + "id_car_serie": 73059, + "name": "AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281267, + "fields": { + "id_car_serie": 73060, + "name": "1.5 AT 4WD (490 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281268, + "fields": { + "id_car_serie": 73061, + "name": "1.5 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281269, + "fields": { + "id_car_serie": 73061, + "name": "1.5 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281270, + "fields": { + "id_car_serie": 73062, + "name": "1.5 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281271, + "fields": { + "id_car_serie": 73062, + "name": "1.5 AT (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281272, + "fields": { + "id_car_serie": 73063, + "name": "1.5 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281273, + "fields": { + "id_car_serie": 73063, + "name": "1.5 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281274, + "fields": { + "id_car_serie": 73064, + "name": "2.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281275, + "fields": { + "id_car_serie": 73064, + "name": "2.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281276, + "fields": { + "id_car_serie": 73065, + "name": "2.0 MT 4WD (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281277, + "fields": { + "id_car_serie": 73065, + "name": "2.0 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281278, + "fields": { + "id_car_serie": 73065, + "name": "2.0 AT 4WD (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281279, + "fields": { + "id_car_serie": 73065, + "name": "2.3 MT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281280, + "fields": { + "id_car_serie": 73065, + "name": "2.3 MT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281281, + "fields": { + "id_car_serie": 73065, + "name": "2.3 AT (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281282, + "fields": { + "id_car_serie": 73065, + "name": "2.3 AT 4WD (166 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281283, + "fields": { + "id_car_serie": 73066, + "name": "AT (45 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281284, + "fields": { + "id_car_serie": 73067, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281285, + "fields": { + "id_car_serie": 73067, + "name": "2.0 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281286, + "fields": { + "id_car_serie": 73068, + "name": "2.0 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281287, + "fields": { + "id_car_serie": 73068, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281288, + "fields": { + "id_car_serie": 73068, + "name": "2.0 MT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281289, + "fields": { + "id_car_serie": 73068, + "name": "2.0 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281290, + "fields": { + "id_car_serie": 73069, + "name": "2.0 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281291, + "fields": { + "id_car_serie": 73070, + "name": "1.5 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281292, + "fields": { + "id_car_serie": 73071, + "name": "1.5 MT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281293, + "fields": { + "id_car_serie": 73071, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281294, + "fields": { + "id_car_serie": 73071, + "name": "1.5 MT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281295, + "fields": { + "id_car_serie": 73071, + "name": "1.5 AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281296, + "fields": { + "id_car_serie": 73072, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281297, + "fields": { + "id_car_serie": 73072, + "name": "2.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281298, + "fields": { + "id_car_serie": 73073, + "name": "2.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281299, + "fields": { + "id_car_serie": 73074, + "name": "2.0 AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281300, + "fields": { + "id_car_serie": 73074, + "name": "2.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281301, + "fields": { + "id_car_serie": 73074, + "name": "2.5 MT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281302, + "fields": { + "id_car_serie": 73074, + "name": "2.5 AT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281303, + "fields": { + "id_car_serie": 73074, + "name": "2.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281304, + "fields": { + "id_car_serie": 73074, + "name": "2.5 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281305, + "fields": { + "id_car_serie": 73074, + "name": "2.5 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281306, + "fields": { + "id_car_serie": 73075, + "name": "1.6 AMT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281307, + "fields": { + "id_car_serie": 73076, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281308, + "fields": { + "id_car_serie": 73076, + "name": "1.5 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281309, + "fields": { + "id_car_serie": 73076, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281310, + "fields": { + "id_car_serie": 73077, + "name": "1.8 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281311, + "fields": { + "id_car_serie": 73077, + "name": "2.5 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281312, + "fields": { + "id_car_serie": 73078, + "name": "1.8 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281313, + "fields": { + "id_car_serie": 73078, + "name": "2.5 MT 4WD (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281314, + "fields": { + "id_car_serie": 73078, + "name": "2.5 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281315, + "fields": { + "id_car_serie": 73079, + "name": "AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281316, + "fields": { + "id_car_serie": 73079, + "name": "AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281317, + "fields": { + "id_car_serie": 73080, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281318, + "fields": { + "id_car_serie": 73080, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281319, + "fields": { + "id_car_serie": 73081, + "name": "1.5 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281320, + "fields": { + "id_car_serie": 73082, + "name": "1.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281321, + "fields": { + "id_car_serie": 73082, + "name": "1.5 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281322, + "fields": { + "id_car_serie": 73083, + "name": "AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281323, + "fields": { + "id_car_serie": 73083, + "name": "1.5 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281324, + "fields": { + "id_car_serie": 73083, + "name": "1.5 AT 4WD (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281325, + "fields": { + "id_car_serie": 73084, + "name": "2.2 AT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281326, + "fields": { + "id_car_serie": 73085, + "name": "2.2 AT 4WD (202 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281327, + "fields": { + "id_car_serie": 73086, + "name": "1.5 AT (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281328, + "fields": { + "id_car_serie": 73086, + "name": "1.5 AT 4WD (593 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281329, + "fields": { + "id_car_serie": 73087, + "name": "3.0 AMT (630 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281330, + "fields": { + "id_car_serie": 73088, + "name": "1.5 CVT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281331, + "fields": { + "id_car_serie": 73089, + "name": "AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281332, + "fields": { + "id_car_serie": 73089, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281333, + "fields": { + "id_car_serie": 73089, + "name": "AT 4WD (428 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281334, + "fields": { + "id_car_serie": 73090, + "name": "1.5 CVT (114 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281335, + "fields": { + "id_car_serie": 73090, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281336, + "fields": { + "id_car_serie": 73090, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281337, + "fields": { + "id_car_serie": 73090, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281338, + "fields": { + "id_car_serie": 73091, + "name": "1.5 MT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281339, + "fields": { + "id_car_serie": 73091, + "name": "1.5 AMT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281340, + "fields": { + "id_car_serie": 73091, + "name": "1.5 AMT (291 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281341, + "fields": { + "id_car_serie": 73092, + "name": "AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281342, + "fields": { + "id_car_serie": 73093, + "name": "1.5 AMT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281343, + "fields": { + "id_car_serie": 73094, + "name": "4.0 MT (525 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281344, + "fields": { + "id_car_serie": 73095, + "name": "AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281345, + "fields": { + "id_car_serie": 73096, + "name": "1.8 MT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281346, + "fields": { + "id_car_serie": 73096, + "name": "1.8 MT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281347, + "fields": { + "id_car_serie": 73096, + "name": "3.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281348, + "fields": { + "id_car_serie": 73096, + "name": "3.0 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281349, + "fields": { + "id_car_serie": 73096, + "name": "3.0 AT (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281350, + "fields": { + "id_car_serie": 73096, + "name": "3.0 AT 4WD (155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281351, + "fields": { + "id_car_serie": 73097, + "name": "AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281352, + "fields": { + "id_car_serie": 73098, + "name": "1.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281353, + "fields": { + "id_car_serie": 73099, + "name": "2.0 MT 4WD (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281354, + "fields": { + "id_car_serie": 73099, + "name": "2.0 MT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281355, + "fields": { + "id_car_serie": 73100, + "name": "1.5 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281356, + "fields": { + "id_car_serie": 73101, + "name": "AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281357, + "fields": { + "id_car_serie": 73101, + "name": "AT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281358, + "fields": { + "id_car_serie": 73102, + "name": "2.8 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281359, + "fields": { + "id_car_serie": 73102, + "name": "2.8 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281360, + "fields": { + "id_car_serie": 73103, + "name": "1.5 AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281361, + "fields": { + "id_car_serie": 73104, + "name": "1.5 AT 4WD (490 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281362, + "fields": { + "id_car_serie": 73105, + "name": "2.0 AMT 4WD (227 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281363, + "fields": { + "id_car_serie": 73106, + "name": "2.0 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281364, + "fields": { + "id_car_serie": 73106, + "name": "2.0 AMT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281365, + "fields": { + "id_car_serie": 73106, + "name": "2.0 AMT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281366, + "fields": { + "id_car_serie": 73106, + "name": "2.0 AMT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281367, + "fields": { + "id_car_serie": 73106, + "name": "2.0 AMT (227 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281368, + "fields": { + "id_car_serie": 73106, + "name": "2.0 AMT 4WD (227 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281369, + "fields": { + "id_car_serie": 73107, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281370, + "fields": { + "id_car_serie": 73107, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281371, + "fields": { + "id_car_serie": 73108, + "name": "AT (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281372, + "fields": { + "id_car_serie": 73108, + "name": "AT 4WD (487 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281373, + "fields": { + "id_car_serie": 73109, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281374, + "fields": { + "id_car_serie": 73110, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281375, + "fields": { + "id_car_serie": 73110, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281376, + "fields": { + "id_car_serie": 73111, + "name": "1.8 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281377, + "fields": { + "id_car_serie": 73111, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281378, + "fields": { + "id_car_serie": 73112, + "name": "1.5 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281379, + "fields": { + "id_car_serie": 73113, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281398, + "fields": { + "id_car_serie": 73115, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281399, + "fields": { + "id_car_serie": 73115, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281400, + "fields": { + "id_car_serie": 73115, + "name": "1.5 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281401, + "fields": { + "id_car_serie": 73116, + "name": "1.5 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281402, + "fields": { + "id_car_serie": 73116, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281403, + "fields": { + "id_car_serie": 73116, + "name": "1.5 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281404, + "fields": { + "id_car_serie": 73117, + "name": "1.5 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281405, + "fields": { + "id_car_serie": 73117, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281406, + "fields": { + "id_car_serie": 73117, + "name": "1.5 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281407, + "fields": { + "id_car_serie": 73118, + "name": "1.5 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281408, + "fields": { + "id_car_serie": 73118, + "name": "1.5 AMT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281409, + "fields": { + "id_car_serie": 73119, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281410, + "fields": { + "id_car_serie": 73119, + "name": "1.5 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281411, + "fields": { + "id_car_serie": 73119, + "name": "1.5 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281412, + "fields": { + "id_car_serie": 73120, + "name": "1.2 AT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281413, + "fields": { + "id_car_serie": 73121, + "name": "1.5 AMT (181 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281414, + "fields": { + "id_car_serie": 73121, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281415, + "fields": { + "id_car_serie": 73122, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281416, + "fields": { + "id_car_serie": 73122, + "name": "2.0 AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281417, + "fields": { + "id_car_serie": 73122, + "name": "2.0 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281418, + "fields": { + "id_car_serie": 73123, + "name": "2.0 AT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281419, + "fields": { + "id_car_serie": 73123, + "name": "1.5 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281420, + "fields": { + "id_car_serie": 73123, + "name": "1.5 AMT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281421, + "fields": { + "id_car_serie": 73124, + "name": "1.5 AT 4WD (378 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281422, + "fields": { + "id_car_serie": 73124, + "name": "1.5 AT 4WD (384 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281423, + "fields": { + "id_car_serie": 73125, + "name": "1.5 CVT (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281424, + "fields": { + "id_car_serie": 73125, + "name": "1.5 CVT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281425, + "fields": { + "id_car_serie": 73125, + "name": "2.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281426, + "fields": { + "id_car_serie": 73125, + "name": "2.0 AT 4WD (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281427, + "fields": { + "id_car_serie": 73126, + "name": "1.5 CVT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281428, + "fields": { + "id_car_serie": 73126, + "name": "2.0 CVT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281429, + "fields": { + "id_car_serie": 73127, + "name": "1.5 CVT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281430, + "fields": { + "id_car_serie": 73127, + "name": "2.0 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281431, + "fields": { + "id_car_serie": 73128, + "name": "1.4 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281432, + "fields": { + "id_car_serie": 73128, + "name": "1.5 CVT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281433, + "fields": { + "id_car_serie": 73128, + "name": "2.0 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281434, + "fields": { + "id_car_serie": 73128, + "name": "1.6 AMT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281435, + "fields": { + "id_car_serie": 73128, + "name": "1.6 AMT (139 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281436, + "fields": { + "id_car_serie": 73129, + "name": "2.0 MT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281437, + "fields": { + "id_car_serie": 73129, + "name": "2.0 AMT (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281438, + "fields": { + "id_car_serie": 73130, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281439, + "fields": { + "id_car_serie": 73130, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281440, + "fields": { + "id_car_serie": 73131, + "name": "1.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281441, + "fields": { + "id_car_serie": 73131, + "name": "1.0 AMT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281442, + "fields": { + "id_car_serie": 73131, + "name": "1.2 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281443, + "fields": { + "id_car_serie": 73131, + "name": "1.5 CVT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281444, + "fields": { + "id_car_serie": 73131, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281445, + "fields": { + "id_car_serie": 73131, + "name": "1.5 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281446, + "fields": { + "id_car_serie": 73131, + "name": "1.5 AT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281447, + "fields": { + "id_car_serie": 73132, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281448, + "fields": { + "id_car_serie": 73132, + "name": "AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281449, + "fields": { + "id_car_serie": 73132, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281450, + "fields": { + "id_car_serie": 73132, + "name": "1.2 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281451, + "fields": { + "id_car_serie": 73132, + "name": "1.2 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281452, + "fields": { + "id_car_serie": 73132, + "name": "1.2 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281453, + "fields": { + "id_car_serie": 73133, + "name": "2.0 AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281454, + "fields": { + "id_car_serie": 73134, + "name": "2.4 AT (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281455, + "fields": { + "id_car_serie": 73134, + "name": "2.4 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281456, + "fields": { + "id_car_serie": 73134, + "name": "2.4 AT 4WD (362 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281457, + "fields": { + "id_car_serie": 73134, + "name": "2.5 CVT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281458, + "fields": { + "id_car_serie": 73134, + "name": "2.5 CVT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281459, + "fields": { + "id_car_serie": 73135, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281460, + "fields": { + "id_car_serie": 73135, + "name": "2.0 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281461, + "fields": { + "id_car_serie": 73135, + "name": "2.0 AMT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281462, + "fields": { + "id_car_serie": 73135, + "name": "1.5 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281463, + "fields": { + "id_car_serie": 73135, + "name": "1.5 AMT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281464, + "fields": { + "id_car_serie": 73135, + "name": "2.0 AMT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281465, + "fields": { + "id_car_serie": 73135, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281466, + "fields": { + "id_car_serie": 73135, + "name": "2.0 AMT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281467, + "fields": { + "id_car_serie": 73136, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281468, + "fields": { + "id_car_serie": 73136, + "name": "1.4 AMT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281469, + "fields": { + "id_car_serie": 73136, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281470, + "fields": { + "id_car_serie": 73136, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281471, + "fields": { + "id_car_serie": 73137, + "name": "1.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281472, + "fields": { + "id_car_serie": 73137, + "name": "1.5 CVT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281473, + "fields": { + "id_car_serie": 73137, + "name": "1.5 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281474, + "fields": { + "id_car_serie": 73137, + "name": "1.5 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281475, + "fields": { + "id_car_serie": 73137, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281476, + "fields": { + "id_car_serie": 73138, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281477, + "fields": { + "id_car_serie": 73139, + "name": "2.0 AT (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281478, + "fields": { + "id_car_serie": 73139, + "name": "2.0 AT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281479, + "fields": { + "id_car_serie": 73139, + "name": "3.0 AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281480, + "fields": { + "id_car_serie": 73139, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281481, + "fields": { + "id_car_serie": 73140, + "name": "2.0 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281482, + "fields": { + "id_car_serie": 73140, + "name": "2.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281483, + "fields": { + "id_car_serie": 73140, + "name": "2.6 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281484, + "fields": { + "id_car_serie": 73140, + "name": "2.8 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281485, + "fields": { + "id_car_serie": 73140, + "name": "2.8 AT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281486, + "fields": { + "id_car_serie": 73140, + "name": "2.2 MT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281487, + "fields": { + "id_car_serie": 73141, + "name": "2.0 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281488, + "fields": { + "id_car_serie": 73141, + "name": "2.4 MT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281489, + "fields": { + "id_car_serie": 73142, + "name": "AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281490, + "fields": { + "id_car_serie": 73143, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281491, + "fields": { + "id_car_serie": 73143, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281492, + "fields": { + "id_car_serie": 73144, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281493, + "fields": { + "id_car_serie": 73144, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281494, + "fields": { + "id_car_serie": 73144, + "name": "AT 4WD (462 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281495, + "fields": { + "id_car_serie": 73145, + "name": "AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281496, + "fields": { + "id_car_serie": 73146, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281497, + "fields": { + "id_car_serie": 73147, + "name": "1.5 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281498, + "fields": { + "id_car_serie": 73147, + "name": "2.0 AT 4WD (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281499, + "fields": { + "id_car_serie": 73147, + "name": "2.0 AMT 4WD (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281500, + "fields": { + "id_car_serie": 73148, + "name": "1.5 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281501, + "fields": { + "id_car_serie": 73148, + "name": "1.5 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281502, + "fields": { + "id_car_serie": 73148, + "name": "1.5 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281503, + "fields": { + "id_car_serie": 73114, + "name": "1.6 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281504, + "fields": { + "id_car_serie": 73114, + "name": "1.6 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281505, + "fields": { + "id_car_serie": 73114, + "name": "1.8 MT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281506, + "fields": { + "id_car_serie": 73114, + "name": "1.8 AT (133 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281507, + "fields": { + "id_car_serie": 73114, + "name": "2.0 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281508, + "fields": { + "id_car_serie": 73114, + "name": "2.0 AT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281509, + "fields": { + "id_car_serie": 73114, + "name": "2.4 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281510, + "fields": { + "id_car_serie": 73149, + "name": "2.0 AT (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281511, + "fields": { + "id_car_serie": 73149, + "name": "2.0 AT 4WD (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281512, + "fields": { + "id_car_serie": 73150, + "name": "AT 4WD (490 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281513, + "fields": { + "id_car_serie": 73151, + "name": "AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281514, + "fields": { + "id_car_serie": 73151, + "name": "1.5 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281515, + "fields": { + "id_car_serie": 73152, + "name": "AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281516, + "fields": { + "id_car_serie": 73152, + "name": "AT 4WD (428 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281517, + "fields": { + "id_car_serie": 73153, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281518, + "fields": { + "id_car_serie": 73153, + "name": "1.0 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281519, + "fields": { + "id_car_serie": 73153, + "name": "1.2 AMT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281520, + "fields": { + "id_car_serie": 73153, + "name": "1.2 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281521, + "fields": { + "id_car_serie": 73153, + "name": "1.5 AT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281522, + "fields": { + "id_car_serie": 73154, + "name": "AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281523, + "fields": { + "id_car_serie": 73155, + "name": "AT (276 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281524, + "fields": { + "id_car_serie": 73155, + "name": "AT 4WD (473 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281535, + "fields": { + "id_car_serie": 73163, + "name": "1.6 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281536, + "fields": { + "id_car_serie": 73163, + "name": "1.8 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281537, + "fields": { + "id_car_serie": 73163, + "name": "1.6 AT (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281538, + "fields": { + "id_car_serie": 73164, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281539, + "fields": { + "id_car_serie": 73164, + "name": "AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281540, + "fields": { + "id_car_serie": 73164, + "name": "1.2 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281541, + "fields": { + "id_car_serie": 73164, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281542, + "fields": { + "id_car_serie": 73164, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281543, + "fields": { + "id_car_serie": 73164, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281544, + "fields": { + "id_car_serie": 73165, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281545, + "fields": { + "id_car_serie": 73165, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281546, + "fields": { + "id_car_serie": 73165, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281547, + "fields": { + "id_car_serie": 73165, + "name": "1.5 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281548, + "fields": { + "id_car_serie": 73165, + "name": "1.5 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281549, + "fields": { + "id_car_serie": 73165, + "name": "1.6 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281550, + "fields": { + "id_car_serie": 73165, + "name": "1.6 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281551, + "fields": { + "id_car_serie": 73166, + "name": "1.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281552, + "fields": { + "id_car_serie": 73169, + "name": "1.5 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281553, + "fields": { + "id_car_serie": 73169, + "name": "2.0 AMT 4WD (312 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281554, + "fields": { + "id_car_serie": 73169, + "name": "2.0 AMT 4WD (241 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281555, + "fields": { + "id_car_serie": 73169, + "name": "2.0 AMT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281556, + "fields": { + "id_car_serie": 73169, + "name": "2.0 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281557, + "fields": { + "id_car_serie": 73170, + "name": "1.8 MT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281558, + "fields": { + "id_car_serie": 73170, + "name": "1.8 AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281559, + "fields": { + "id_car_serie": 73170, + "name": "1.8 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281560, + "fields": { + "id_car_serie": 73170, + "name": "2.0 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281561, + "fields": { + "id_car_serie": 73170, + "name": "2.0 AT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281562, + "fields": { + "id_car_serie": 73170, + "name": "2.0 AT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281563, + "fields": { + "id_car_serie": 73170, + "name": "2.0 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281564, + "fields": { + "id_car_serie": 73170, + "name": "2.0 AT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281565, + "fields": { + "id_car_serie": 73170, + "name": "2.0 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281566, + "fields": { + "id_car_serie": 73171, + "name": "1.5 CVT 4WD (660 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281567, + "fields": { + "id_car_serie": 73172, + "name": "1.5 CVT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281568, + "fields": { + "id_car_serie": 73173, + "name": "1.5 CVT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281569, + "fields": { + "id_car_serie": 73173, + "name": "1.5 CVT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281570, + "fields": { + "id_car_serie": 73157, + "name": "2.0 AT 4WD (226 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281571, + "fields": { + "id_car_serie": 73174, + "name": "1.5 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281572, + "fields": { + "id_car_serie": 73175, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281573, + "fields": { + "id_car_serie": 73175, + "name": "2.0 AMT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281574, + "fields": { + "id_car_serie": 73176, + "name": "2.0 AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281575, + "fields": { + "id_car_serie": 73156, + "name": "2.5 MT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281576, + "fields": { + "id_car_serie": 73156, + "name": "2.5 AT (175 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281577, + "fields": { + "id_car_serie": 73156, + "name": "3.0 AT (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281578, + "fields": { + "id_car_serie": 73156, + "name": "3.0 AT 4WD (240 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281579, + "fields": { + "id_car_serie": 73156, + "name": "3.0 AT (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281580, + "fields": { + "id_car_serie": 73156, + "name": "3.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281581, + "fields": { + "id_car_serie": 73156, + "name": "3.5 AT (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281582, + "fields": { + "id_car_serie": 73156, + "name": "3.5 AT 4WD (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281583, + "fields": { + "id_car_serie": 73156, + "name": "2.5 CVT (191 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281584, + "fields": { + "id_car_serie": 73177, + "name": "AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281585, + "fields": { + "id_car_serie": 73177, + "name": "AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281586, + "fields": { + "id_car_serie": 73178, + "name": "AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281587, + "fields": { + "id_car_serie": 73178, + "name": "AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281588, + "fields": { + "id_car_serie": 73179, + "name": "AT 4WD (1224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281589, + "fields": { + "id_car_serie": 73180, + "name": "2.0 AT (373 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281590, + "fields": { + "id_car_serie": 73158, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281591, + "fields": { + "id_car_serie": 73158, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281592, + "fields": { + "id_car_serie": 73158, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281593, + "fields": { + "id_car_serie": 73159, + "name": "1.5 CVT (124 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281594, + "fields": { + "id_car_serie": 73159, + "name": "1.5 CVT 4WD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281595, + "fields": { + "id_car_serie": 73159, + "name": "1.5 CVT 4WD (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281596, + "fields": { + "id_car_serie": 73160, + "name": "1.5 CVT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281597, + "fields": { + "id_car_serie": 73160, + "name": "2.0 CVT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281598, + "fields": { + "id_car_serie": 73181, + "name": "2.0 AMT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281599, + "fields": { + "id_car_serie": 73182, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281600, + "fields": { + "id_car_serie": 73161, + "name": "1.6 AT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281601, + "fields": { + "id_car_serie": 73161, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281602, + "fields": { + "id_car_serie": 73161, + "name": "2.5 AT (191 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281603, + "fields": { + "id_car_serie": 73161, + "name": "2.5 AT 4WD (191 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281604, + "fields": { + "id_car_serie": 73161, + "name": "2.5 AMT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281605, + "fields": { + "id_car_serie": 73161, + "name": "2.0 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281606, + "fields": { + "id_car_serie": 73161, + "name": "2.0 AT (192 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281607, + "fields": { + "id_car_serie": 73183, + "name": "AT (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281608, + "fields": { + "id_car_serie": 73183, + "name": "AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281609, + "fields": { + "id_car_serie": 73183, + "name": "AT (515 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281610, + "fields": { + "id_car_serie": 73183, + "name": "AT 4WD (787 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281611, + "fields": { + "id_car_serie": 73184, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281612, + "fields": { + "id_car_serie": 73184, + "name": "1.6 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281613, + "fields": { + "id_car_serie": 73185, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281614, + "fields": { + "id_car_serie": 73185, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281615, + "fields": { + "id_car_serie": 73186, + "name": "2.3 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281616, + "fields": { + "id_car_serie": 73186, + "name": "2.3 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281617, + "fields": { + "id_car_serie": 73186, + "name": "2.3 MT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281618, + "fields": { + "id_car_serie": 73186, + "name": "2.3 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281619, + "fields": { + "id_car_serie": 73187, + "name": "1.5 AMT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281620, + "fields": { + "id_car_serie": 73187, + "name": "1.5 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281621, + "fields": { + "id_car_serie": 73188, + "name": "1.5 AMT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281622, + "fields": { + "id_car_serie": 73188, + "name": "1.5 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281623, + "fields": { + "id_car_serie": 73162, + "name": "4.0 AT 4WD (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281624, + "fields": { + "id_car_serie": 73162, + "name": "4.0 AT 4WD (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281625, + "fields": { + "id_car_serie": 73189, + "name": "AT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281626, + "fields": { + "id_car_serie": 73190, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281627, + "fields": { + "id_car_serie": 73190, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281628, + "fields": { + "id_car_serie": 73191, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281629, + "fields": { + "id_car_serie": 73191, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281630, + "fields": { + "id_car_serie": 73191, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281631, + "fields": { + "id_car_serie": 73192, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281632, + "fields": { + "id_car_serie": 73192, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281633, + "fields": { + "id_car_serie": 73192, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281634, + "fields": { + "id_car_serie": 73193, + "name": "AT (217 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281635, + "fields": { + "id_car_serie": 73194, + "name": "2.0 AT (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281636, + "fields": { + "id_car_serie": 73195, + "name": "1.5 AT 4WD (487 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281637, + "fields": { + "id_car_serie": 73196, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281638, + "fields": { + "id_car_serie": 73197, + "name": "1.6 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281639, + "fields": { + "id_car_serie": 73167, + "name": "2.0 AT 4WD (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281640, + "fields": { + "id_car_serie": 73167, + "name": "3.0 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281641, + "fields": { + "id_car_serie": 73168, + "name": "1.5 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281642, + "fields": { + "id_car_serie": 73168, + "name": "2.0 AMT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281689, + "fields": { + "id_car_serie": 73213, + "name": "1.5 AMT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281690, + "fields": { + "id_car_serie": 73213, + "name": "2.0 AMT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281691, + "fields": { + "id_car_serie": 73214, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281692, + "fields": { + "id_car_serie": 73214, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281693, + "fields": { + "id_car_serie": 73215, + "name": "1.8 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281694, + "fields": { + "id_car_serie": 73216, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281695, + "fields": { + "id_car_serie": 73216, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281696, + "fields": { + "id_car_serie": 73216, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281697, + "fields": { + "id_car_serie": 73217, + "name": "1.5 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281698, + "fields": { + "id_car_serie": 73217, + "name": "2.0 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281699, + "fields": { + "id_car_serie": 73217, + "name": "2.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281700, + "fields": { + "id_car_serie": 73218, + "name": "AT 4WD (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281701, + "fields": { + "id_car_serie": 73219, + "name": "1.5 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281702, + "fields": { + "id_car_serie": 73220, + "name": "2.0 AT (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281703, + "fields": { + "id_car_serie": 73220, + "name": "2.0 AT 4WD (248 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281704, + "fields": { + "id_car_serie": 73221, + "name": "1.5 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281705, + "fields": { + "id_car_serie": 73222, + "name": "1.5 AT (271 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281706, + "fields": { + "id_car_serie": 73223, + "name": "1.6 AT 4WD (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281707, + "fields": { + "id_car_serie": 73223, + "name": "2.2 AMT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281708, + "fields": { + "id_car_serie": 73223, + "name": "2.5 AMT 4WD (281 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281709, + "fields": { + "id_car_serie": 73224, + "name": "1.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281710, + "fields": { + "id_car_serie": 73224, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281711, + "fields": { + "id_car_serie": 73224, + "name": "2.0 AT (146 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281712, + "fields": { + "id_car_serie": 73224, + "name": "2.0 AT (152 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281713, + "fields": { + "id_car_serie": 73225, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281714, + "fields": { + "id_car_serie": 73225, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281715, + "fields": { + "id_car_serie": 73226, + "name": "2.4 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281716, + "fields": { + "id_car_serie": 73226, + "name": "2.4 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281717, + "fields": { + "id_car_serie": 73226, + "name": "2.4 MT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281718, + "fields": { + "id_car_serie": 73227, + "name": "2.4 MT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281719, + "fields": { + "id_car_serie": 73227, + "name": "2.4 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281720, + "fields": { + "id_car_serie": 45433, + "name": "2.4 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281721, + "fields": { + "id_car_serie": 45433, + "name": "2.4 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281722, + "fields": { + "id_car_serie": 45433, + "name": "2.5 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281723, + "fields": { + "id_car_serie": 73228, + "name": "1.5 CVT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281724, + "fields": { + "id_car_serie": 73228, + "name": "1.5 CVT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281725, + "fields": { + "id_car_serie": 73229, + "name": "1.4 AT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281726, + "fields": { + "id_car_serie": 73229, + "name": "2.0 CVT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281727, + "fields": { + "id_car_serie": 73230, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281728, + "fields": { + "id_car_serie": 73230, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281729, + "fields": { + "id_car_serie": 73230, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281730, + "fields": { + "id_car_serie": 73230, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281731, + "fields": { + "id_car_serie": 73231, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281732, + "fields": { + "id_car_serie": 73231, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281733, + "fields": { + "id_car_serie": 73231, + "name": "1.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281734, + "fields": { + "id_car_serie": 73231, + "name": "1.6 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281735, + "fields": { + "id_car_serie": 73231, + "name": "1.6 AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281736, + "fields": { + "id_car_serie": 73232, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281737, + "fields": { + "id_car_serie": 73232, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281738, + "fields": { + "id_car_serie": 73232, + "name": "1.6 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281739, + "fields": { + "id_car_serie": 73232, + "name": "1.6 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281740, + "fields": { + "id_car_serie": 73232, + "name": "1.6 AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281741, + "fields": { + "id_car_serie": 73233, + "name": "1.8 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281742, + "fields": { + "id_car_serie": 73234, + "name": "0.9 AMT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281743, + "fields": { + "id_car_serie": 73235, + "name": "4.0 AT 4WD (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281744, + "fields": { + "id_car_serie": 73235, + "name": "2.8 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281745, + "fields": { + "id_car_serie": 73235, + "name": "4.5 MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281746, + "fields": { + "id_car_serie": 73236, + "name": "2.8 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281747, + "fields": { + "id_car_serie": 73236, + "name": "4.5 MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281748, + "fields": { + "id_car_serie": 73236, + "name": "4.0 MT 4WD (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281749, + "fields": { + "id_car_serie": 73236, + "name": "4.0 AT 4WD (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281750, + "fields": { + "id_car_serie": 73237, + "name": "2.8 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281751, + "fields": { + "id_car_serie": 73237, + "name": "4.0 AT 4WD (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281752, + "fields": { + "id_car_serie": 73237, + "name": "4.0 MT 4WD (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281753, + "fields": { + "id_car_serie": 73238, + "name": "2.8 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281754, + "fields": { + "id_car_serie": 73238, + "name": "4.5 MT 4WD (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281755, + "fields": { + "id_car_serie": 73239, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281756, + "fields": { + "id_car_serie": 73239, + "name": "2.0 AMT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281757, + "fields": { + "id_car_serie": 73239, + "name": "2.5 AMT 4WD (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281758, + "fields": { + "id_car_serie": 73240, + "name": "AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281759, + "fields": { + "id_car_serie": 73240, + "name": "AT 4WD (578 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281760, + "fields": { + "id_car_serie": 73241, + "name": "2.4 MT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281761, + "fields": { + "id_car_serie": 73242, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281762, + "fields": { + "id_car_serie": 73243, + "name": "1.5 MT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281763, + "fields": { + "id_car_serie": 73243, + "name": "1.5 AMT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281764, + "fields": { + "id_car_serie": 73244, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281765, + "fields": { + "id_car_serie": 73245, + "name": "1.5 CVT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281766, + "fields": { + "id_car_serie": 73246, + "name": "2.0 AT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281767, + "fields": { + "id_car_serie": 73247, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281768, + "fields": { + "id_car_serie": 73247, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281769, + "fields": { + "id_car_serie": 73247, + "name": "2.4 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281770, + "fields": { + "id_car_serie": 73248, + "name": "2.0 AT (182 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281771, + "fields": { + "id_car_serie": 73249, + "name": "2.0 AT (201 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281772, + "fields": { + "id_car_serie": 73250, + "name": "2.4 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281773, + "fields": { + "id_car_serie": 73250, + "name": "2.8 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281774, + "fields": { + "id_car_serie": 73251, + "name": "2.0 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281775, + "fields": { + "id_car_serie": 73251, + "name": "2.4 MT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281776, + "fields": { + "id_car_serie": 73251, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281777, + "fields": { + "id_car_serie": 73251, + "name": "2.0 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281778, + "fields": { + "id_car_serie": 73252, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281779, + "fields": { + "id_car_serie": 73253, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281780, + "fields": { + "id_car_serie": 73253, + "name": "2.0 AMT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281781, + "fields": { + "id_car_serie": 73254, + "name": "5.1 AMT (1280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281782, + "fields": { + "id_car_serie": 73254, + "name": "5.1 AMT (1602 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281783, + "fields": { + "id_car_serie": 73255, + "name": "1.5 AT 4WD (816 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281784, + "fields": { + "id_car_serie": 73256, + "name": "2.0 AT (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281785, + "fields": { + "id_car_serie": 73257, + "name": "AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281786, + "fields": { + "id_car_serie": 73258, + "name": "AT (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281787, + "fields": { + "id_car_serie": 73258, + "name": "AT (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281788, + "fields": { + "id_car_serie": 73258, + "name": "AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281789, + "fields": { + "id_car_serie": 73259, + "name": "2.0 AT (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281790, + "fields": { + "id_car_serie": 73259, + "name": "2.0 AT 4WD (228 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281791, + "fields": { + "id_car_serie": 73260, + "name": "5.2 AMT (680 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281792, + "fields": { + "id_car_serie": 73261, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281793, + "fields": { + "id_car_serie": 73261, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281794, + "fields": { + "id_car_serie": 73261, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281795, + "fields": { + "id_car_serie": 73261, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281796, + "fields": { + "id_car_serie": 73262, + "name": "1.6 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281797, + "fields": { + "id_car_serie": 73263, + "name": "AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281798, + "fields": { + "id_car_serie": 73264, + "name": "1.5 AT (396 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281799, + "fields": { + "id_car_serie": 73265, + "name": "1.5 AMT (396 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281800, + "fields": { + "id_car_serie": 73265, + "name": "1.5 AMT 4WD (483 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281801, + "fields": { + "id_car_serie": 73265, + "name": "2.0 AMT 4WD (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281802, + "fields": { + "id_car_serie": 73265, + "name": "2.0 AMT (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281803, + "fields": { + "id_car_serie": 73265, + "name": "2.0 AMT 4WD (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281804, + "fields": { + "id_car_serie": 73266, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281805, + "fields": { + "id_car_serie": 73266, + "name": "1.5 AMT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281806, + "fields": { + "id_car_serie": 73266, + "name": "2.0 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281807, + "fields": { + "id_car_serie": 73266, + "name": "2.0 AMT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281808, + "fields": { + "id_car_serie": 73266, + "name": "2.0 AMT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281809, + "fields": { + "id_car_serie": 73266, + "name": "2.0 AMT (227 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281810, + "fields": { + "id_car_serie": 73267, + "name": "1.5 AT (246 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281811, + "fields": { + "id_car_serie": 73267, + "name": "1.5 AT (326 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281812, + "fields": { + "id_car_serie": 73267, + "name": "1.5 AT 4WD (437 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281813, + "fields": { + "id_car_serie": 73268, + "name": "1.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281814, + "fields": { + "id_car_serie": 73269, + "name": "AT (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281815, + "fields": { + "id_car_serie": 73269, + "name": "AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281816, + "fields": { + "id_car_serie": 73270, + "name": "1.2 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281817, + "fields": { + "id_car_serie": 73270, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281818, + "fields": { + "id_car_serie": 73271, + "name": "AT (422 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281819, + "fields": { + "id_car_serie": 73271, + "name": "AT 4WD (646 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281820, + "fields": { + "id_car_serie": 73272, + "name": "2.3 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281821, + "fields": { + "id_car_serie": 73272, + "name": "2.3 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281822, + "fields": { + "id_car_serie": 73272, + "name": "2.3 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281823, + "fields": { + "id_car_serie": 73273, + "name": "2.4 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281824, + "fields": { + "id_car_serie": 73273, + "name": "2.4 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281825, + "fields": { + "id_car_serie": 73273, + "name": "2.4 MT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281826, + "fields": { + "id_car_serie": 73273, + "name": "2.4 MT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281906, + "fields": { + "id_car_serie": 73279, + "name": "3.0 AT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281907, + "fields": { + "id_car_serie": 73279, + "name": "3.0 AT 4WD (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281908, + "fields": { + "id_car_serie": 73279, + "name": "5.3 AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281909, + "fields": { + "id_car_serie": 73279, + "name": "5.3 AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281910, + "fields": { + "id_car_serie": 73279, + "name": "6.2 AT (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281911, + "fields": { + "id_car_serie": 73279, + "name": "6.2 AT 4WD (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281912, + "fields": { + "id_car_serie": 73280, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281913, + "fields": { + "id_car_serie": 73280, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281914, + "fields": { + "id_car_serie": 73281, + "name": "AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281915, + "fields": { + "id_car_serie": 73281, + "name": "AT 4WD (646 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281916, + "fields": { + "id_car_serie": 73282, + "name": "1.5 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281917, + "fields": { + "id_car_serie": 73282, + "name": "2.0 AMT 4WD (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281918, + "fields": { + "id_car_serie": 73283, + "name": "1.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281919, + "fields": { + "id_car_serie": 73283, + "name": "1.5 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281920, + "fields": { + "id_car_serie": 73283, + "name": "1.5 CVT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281921, + "fields": { + "id_car_serie": 73283, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281922, + "fields": { + "id_car_serie": 73284, + "name": "1.5 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281923, + "fields": { + "id_car_serie": 73284, + "name": "1.5 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281924, + "fields": { + "id_car_serie": 73284, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281925, + "fields": { + "id_car_serie": 73284, + "name": "1.5 CVT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281926, + "fields": { + "id_car_serie": 73285, + "name": "1.0 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281927, + "fields": { + "id_car_serie": 73285, + "name": "1.0 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281928, + "fields": { + "id_car_serie": 73285, + "name": "1.6 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281929, + "fields": { + "id_car_serie": 73286, + "name": "1.2 AT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281930, + "fields": { + "id_car_serie": 73286, + "name": "1.2 AT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281931, + "fields": { + "id_car_serie": 73287, + "name": "AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281932, + "fields": { + "id_car_serie": 73287, + "name": "AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281933, + "fields": { + "id_car_serie": 73288, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281934, + "fields": { + "id_car_serie": 73288, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281935, + "fields": { + "id_car_serie": 73289, + "name": "1.3 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281936, + "fields": { + "id_car_serie": 73289, + "name": "1.5 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281937, + "fields": { + "id_car_serie": 73289, + "name": "1.5 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281938, + "fields": { + "id_car_serie": 73290, + "name": "1.2 CVT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281939, + "fields": { + "id_car_serie": 73291, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281940, + "fields": { + "id_car_serie": 73291, + "name": "2.0 AMT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281941, + "fields": { + "id_car_serie": 73291, + "name": "1.5 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281942, + "fields": { + "id_car_serie": 73291, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281943, + "fields": { + "id_car_serie": 73291, + "name": "2.0 AMT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281944, + "fields": { + "id_car_serie": 73292, + "name": "1.3 CVT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281945, + "fields": { + "id_car_serie": 73292, + "name": "1.5 CVT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281946, + "fields": { + "id_car_serie": 73292, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281947, + "fields": { + "id_car_serie": 73292, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281948, + "fields": { + "id_car_serie": 73292, + "name": "1.5 CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281949, + "fields": { + "id_car_serie": 73293, + "name": "1.5 CVT (74 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281950, + "fields": { + "id_car_serie": 73293, + "name": "1.5 CVT 4WD (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281951, + "fields": { + "id_car_serie": 73293, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281952, + "fields": { + "id_car_serie": 73293, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281953, + "fields": { + "id_car_serie": 73293, + "name": "1.8 CVT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281954, + "fields": { + "id_car_serie": 73294, + "name": "2.4 AT (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281955, + "fields": { + "id_car_serie": 73294, + "name": "2.4 AT 4WD (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281956, + "fields": { + "id_car_serie": 73294, + "name": "2.5 CVT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281957, + "fields": { + "id_car_serie": 73294, + "name": "2.5 CVT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281958, + "fields": { + "id_car_serie": 73295, + "name": "1.5 AMT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281959, + "fields": { + "id_car_serie": 73295, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281960, + "fields": { + "id_car_serie": 73295, + "name": "2.0 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281961, + "fields": { + "id_car_serie": 73295, + "name": "2.0 AMT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281962, + "fields": { + "id_car_serie": 73295, + "name": "1.5 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281963, + "fields": { + "id_car_serie": 73295, + "name": "1.5 AMT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281964, + "fields": { + "id_car_serie": 73295, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281965, + "fields": { + "id_car_serie": 73295, + "name": "2.0 AMT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281966, + "fields": { + "id_car_serie": 73296, + "name": "1.2 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281967, + "fields": { + "id_car_serie": 73296, + "name": "1.2 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281968, + "fields": { + "id_car_serie": 73296, + "name": "1.5 AT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281969, + "fields": { + "id_car_serie": 73296, + "name": "1.4 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281970, + "fields": { + "id_car_serie": 73296, + "name": "1.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281971, + "fields": { + "id_car_serie": 73296, + "name": "1.5 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281972, + "fields": { + "id_car_serie": 73296, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281973, + "fields": { + "id_car_serie": 73297, + "name": "AT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281974, + "fields": { + "id_car_serie": 73297, + "name": "1.5 AT 4WD (496 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281975, + "fields": { + "id_car_serie": 73298, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281976, + "fields": { + "id_car_serie": 73298, + "name": "AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281977, + "fields": { + "id_car_serie": 73299, + "name": "5.2 MT (715 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281978, + "fields": { + "id_car_serie": 73300, + "name": "6.5 AMT (1155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281979, + "fields": { + "id_car_serie": 73301, + "name": "6.5 AMT (1155 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281980, + "fields": { + "id_car_serie": 73302, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281981, + "fields": { + "id_car_serie": 73302, + "name": "AT (313 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281982, + "fields": { + "id_car_serie": 73302, + "name": "AT 4WD (517 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281986, + "fields": { + "id_car_serie": 73303, + "name": "2.1 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281987, + "fields": { + "id_car_serie": 73303, + "name": "2.1 MT (36 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281988, + "fields": { + "id_car_serie": 73304, + "name": "2.1 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281989, + "fields": { + "id_car_serie": 73304, + "name": "2.1 MT (36 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281990, + "fields": { + "id_car_serie": 73305, + "name": "2.1 MT (50 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281991, + "fields": { + "id_car_serie": 73306, + "name": "2.1 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281992, + "fields": { + "id_car_serie": 73306, + "name": "2.1 MT (36 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281993, + "fields": { + "id_car_serie": 73307, + "name": "2.1 MT (30 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281994, + "fields": { + "id_car_serie": 73307, + "name": "2.1 MT (36 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281995, + "fields": { + "id_car_serie": 73308, + "name": "1.5 CVT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281996, + "fields": { + "id_car_serie": 73309, + "name": "AT (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281997, + "fields": { + "id_car_serie": 73309, + "name": "AT 4WD (468 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281998, + "fields": { + "id_car_serie": 73310, + "name": "2.0 MT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 281999, + "fields": { + "id_car_serie": 73310, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282000, + "fields": { + "id_car_serie": 73311, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282001, + "fields": { + "id_car_serie": 73312, + "name": "AT 4WD (33 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282002, + "fields": { + "id_car_serie": 73313, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282003, + "fields": { + "id_car_serie": 73313, + "name": "AT 4WD (279 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282004, + "fields": { + "id_car_serie": 73314, + "name": "1.5 AT (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282005, + "fields": { + "id_car_serie": 73314, + "name": "2.0 AT (253 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282006, + "fields": { + "id_car_serie": 73315, + "name": "2.0 AT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282007, + "fields": { + "id_car_serie": 73315, + "name": "3.6 MT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282008, + "fields": { + "id_car_serie": 73315, + "name": "3.6 AT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282009, + "fields": { + "id_car_serie": 73315, + "name": "6.4 AT 4WD (481 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282010, + "fields": { + "id_car_serie": 73315, + "name": "2.0 AT 4WD (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282011, + "fields": { + "id_car_serie": 73316, + "name": "3.6 MT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282012, + "fields": { + "id_car_serie": 73316, + "name": "3.6 AT 4WD (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282013, + "fields": { + "id_car_serie": 73317, + "name": "3.6 MT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282014, + "fields": { + "id_car_serie": 73317, + "name": "3.6 AT 4WD (285 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282015, + "fields": { + "id_car_serie": 73318, + "name": "1.5 AMT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282016, + "fields": { + "id_car_serie": 73318, + "name": "1.6 MT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282017, + "fields": { + "id_car_serie": 73318, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282018, + "fields": { + "id_car_serie": 73318, + "name": "2.0 AMT (254 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282019, + "fields": { + "id_car_serie": 73319, + "name": "1.6 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282020, + "fields": { + "id_car_serie": 73320, + "name": "AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282021, + "fields": { + "id_car_serie": 73321, + "name": "AT 4WD (612 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282022, + "fields": { + "id_car_serie": 73321, + "name": "AT 4WD (918 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282023, + "fields": { + "id_car_serie": 73322, + "name": "AT (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282024, + "fields": { + "id_car_serie": 73322, + "name": "AT 4WD (496 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282025, + "fields": { + "id_car_serie": 73323, + "name": "4.0 AMT (635 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282026, + "fields": { + "id_car_serie": 73324, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282027, + "fields": { + "id_car_serie": 73324, + "name": "1.5 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282028, + "fields": { + "id_car_serie": 73325, + "name": "2.0 CVT (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282029, + "fields": { + "id_car_serie": 73325, + "name": "2.0 CVT 4WD (171 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282030, + "fields": { + "id_car_serie": 73325, + "name": "2.5 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282031, + "fields": { + "id_car_serie": 73325, + "name": "2.5 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282032, + "fields": { + "id_car_serie": 73326, + "name": "2.9 AMT (353 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282033, + "fields": { + "id_car_serie": 73326, + "name": "2.9 AMT 4WD (353 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282034, + "fields": { + "id_car_serie": 73326, + "name": "4.0 AMT 4WD (680 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282035, + "fields": { + "id_car_serie": 73327, + "name": "AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282036, + "fields": { + "id_car_serie": 73327, + "name": "AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282037, + "fields": { + "id_car_serie": 73328, + "name": "2.5 CVT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282038, + "fields": { + "id_car_serie": 73329, + "name": "1.8 CVT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282039, + "fields": { + "id_car_serie": 73330, + "name": "1.2 MT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282040, + "fields": { + "id_car_serie": 73330, + "name": "1.2 CVT (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282041, + "fields": { + "id_car_serie": 73330, + "name": "1.2 CVT 4WD (82 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282042, + "fields": { + "id_car_serie": 73331, + "name": "2.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282043, + "fields": { + "id_car_serie": 73332, + "name": "2.0 MT (40 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282044, + "fields": { + "id_car_serie": 73333, + "name": "1.5 AMT (169 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282045, + "fields": { + "id_car_serie": 73333, + "name": "2.0 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282046, + "fields": { + "id_car_serie": 73333, + "name": "2.0 AMT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282047, + "fields": { + "id_car_serie": 73333, + "name": "2.0 AMT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282048, + "fields": { + "id_car_serie": 73334, + "name": "AT (20 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282049, + "fields": { + "id_car_serie": 73335, + "name": "AT (299 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282050, + "fields": { + "id_car_serie": 73335, + "name": "AT 4WD (673 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282051, + "fields": { + "id_car_serie": 73336, + "name": "AT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282052, + "fields": { + "id_car_serie": 73336, + "name": "AT 4WD (503 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282053, + "fields": { + "id_car_serie": 73337, + "name": "2.4 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282054, + "fields": { + "id_car_serie": 73337, + "name": "2.4 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282055, + "fields": { + "id_car_serie": 73337, + "name": "2.8 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282056, + "fields": { + "id_car_serie": 73337, + "name": "2.8 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282070, + "fields": { + "id_car_serie": 73338, + "name": "2.0 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282071, + "fields": { + "id_car_serie": 73338, + "name": "2.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282072, + "fields": { + "id_car_serie": 73338, + "name": "3.0 AMT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282073, + "fields": { + "id_car_serie": 73339, + "name": "1.5 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282074, + "fields": { + "id_car_serie": 73339, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282075, + "fields": { + "id_car_serie": 73340, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282076, + "fields": { + "id_car_serie": 73340, + "name": "1.5 CVT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282077, + "fields": { + "id_car_serie": 73340, + "name": "1.5 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282078, + "fields": { + "id_car_serie": 73341, + "name": "3.0 AT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282079, + "fields": { + "id_car_serie": 73341, + "name": "3.0 AT 4WD (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282080, + "fields": { + "id_car_serie": 73341, + "name": "5.3 AT (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282081, + "fields": { + "id_car_serie": 73341, + "name": "5.3 AT 4WD (360 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282082, + "fields": { + "id_car_serie": 73341, + "name": "6.2 AT (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282083, + "fields": { + "id_car_serie": 73341, + "name": "6.2 AT 4WD (426 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282084, + "fields": { + "id_car_serie": 73342, + "name": "2.0 AMT (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282085, + "fields": { + "id_car_serie": 73343, + "name": "1.5 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282086, + "fields": { + "id_car_serie": 73343, + "name": "1.5 AMT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282087, + "fields": { + "id_car_serie": 73343, + "name": "1.5 AMT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282088, + "fields": { + "id_car_serie": 73344, + "name": "0.7 CVT (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282089, + "fields": { + "id_car_serie": 73344, + "name": "0.7 CVT 4WD (58 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282090, + "fields": { + "id_car_serie": 73344, + "name": "0.7 CVT (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282091, + "fields": { + "id_car_serie": 73344, + "name": "0.7 CVT 4WD (64 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282092, + "fields": { + "id_car_serie": 73345, + "name": "1.5 AMT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282093, + "fields": { + "id_car_serie": 73345, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282094, + "fields": { + "id_car_serie": 73345, + "name": "1.5 CVT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282095, + "fields": { + "id_car_serie": 73345, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282096, + "fields": { + "id_car_serie": 73345, + "name": "1.5 AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282097, + "fields": { + "id_car_serie": 73346, + "name": "1.6 AMT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282098, + "fields": { + "id_car_serie": 73346, + "name": "1.6 AT 4WD (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282099, + "fields": { + "id_car_serie": 73346, + "name": "2.0 AT 4WD (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282100, + "fields": { + "id_car_serie": 73347, + "name": "1.6 AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282101, + "fields": { + "id_car_serie": 73347, + "name": "2.2 AT (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282102, + "fields": { + "id_car_serie": 73347, + "name": "3.5 AT (294 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282103, + "fields": { + "id_car_serie": 73348, + "name": "2.5 AT 4WD (191 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282104, + "fields": { + "id_car_serie": 73348, + "name": "3.3 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282105, + "fields": { + "id_car_serie": 73348, + "name": "3.3 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282106, + "fields": { + "id_car_serie": 73349, + "name": "2.0 AT 4WD (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282107, + "fields": { + "id_car_serie": 73349, + "name": "2.0 AT 4WD (680 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282108, + "fields": { + "id_car_serie": 73350, + "name": "1.5 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282109, + "fields": { + "id_car_serie": 73351, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282110, + "fields": { + "id_car_serie": 73351, + "name": "AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282111, + "fields": { + "id_car_serie": 73351, + "name": "1.2 MT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282112, + "fields": { + "id_car_serie": 73351, + "name": "1.2 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282113, + "fields": { + "id_car_serie": 73351, + "name": "1.2 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282114, + "fields": { + "id_car_serie": 73351, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282115, + "fields": { + "id_car_serie": 73352, + "name": "AT (214 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282116, + "fields": { + "id_car_serie": 73352, + "name": "AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282117, + "fields": { + "id_car_serie": 73352, + "name": "AT 4WD (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282118, + "fields": { + "id_car_serie": 73352, + "name": "1.2 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282119, + "fields": { + "id_car_serie": 73353, + "name": "1.0 MT (67 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282120, + "fields": { + "id_car_serie": 73353, + "name": "1.0 MT (91 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282121, + "fields": { + "id_car_serie": 73353, + "name": "1.0 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282122, + "fields": { + "id_car_serie": 73353, + "name": "1.5 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282123, + "fields": { + "id_car_serie": 73353, + "name": "1.6 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282124, + "fields": { + "id_car_serie": 73354, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282125, + "fields": { + "id_car_serie": 73354, + "name": "1.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282126, + "fields": { + "id_car_serie": 73354, + "name": "1.0 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282127, + "fields": { + "id_car_serie": 73354, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282128, + "fields": { + "id_car_serie": 73354, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282129, + "fields": { + "id_car_serie": 73355, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282130, + "fields": { + "id_car_serie": 73355, + "name": "1.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282131, + "fields": { + "id_car_serie": 73355, + "name": "1.0 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282132, + "fields": { + "id_car_serie": 73355, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282133, + "fields": { + "id_car_serie": 73355, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282134, + "fields": { + "id_car_serie": 73356, + "name": "1.4 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282135, + "fields": { + "id_car_serie": 73356, + "name": "1.4 AMT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282136, + "fields": { + "id_car_serie": 73356, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282137, + "fields": { + "id_car_serie": 73356, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282138, + "fields": { + "id_car_serie": 73357, + "name": "1.4 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282139, + "fields": { + "id_car_serie": 73357, + "name": "1.4 AMT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282140, + "fields": { + "id_car_serie": 73357, + "name": "1.6 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282141, + "fields": { + "id_car_serie": 73357, + "name": "1.6 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282142, + "fields": { + "id_car_serie": 73357, + "name": "1.6 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282143, + "fields": { + "id_car_serie": 73357, + "name": "1.6 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282144, + "fields": { + "id_car_serie": 73357, + "name": "2.0 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282145, + "fields": { + "id_car_serie": 73357, + "name": "2.0 AT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282146, + "fields": { + "id_car_serie": 73358, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282147, + "fields": { + "id_car_serie": 73359, + "name": "AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282148, + "fields": { + "id_car_serie": 73360, + "name": "AT (27 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282149, + "fields": { + "id_car_serie": 73360, + "name": "AT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282150, + "fields": { + "id_car_serie": 73361, + "name": "1.5 CVT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282151, + "fields": { + "id_car_serie": 73362, + "name": "2.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282152, + "fields": { + "id_car_serie": 73363, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282153, + "fields": { + "id_car_serie": 73363, + "name": "1.5 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282154, + "fields": { + "id_car_serie": 73363, + "name": "1.5 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282155, + "fields": { + "id_car_serie": 73363, + "name": "1.5 AMT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282156, + "fields": { + "id_car_serie": 73364, + "name": "1.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282157, + "fields": { + "id_car_serie": 73364, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282158, + "fields": { + "id_car_serie": 73364, + "name": "1.6 AMT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282159, + "fields": { + "id_car_serie": 73364, + "name": "1.8 MT (165 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282160, + "fields": { + "id_car_serie": 73365, + "name": "2.5 AT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282161, + "fields": { + "id_car_serie": 73365, + "name": "3.5 AT 4WD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282162, + "fields": { + "id_car_serie": 73366, + "name": "2.5 AT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282163, + "fields": { + "id_car_serie": 73366, + "name": "3.5 AT 4WD (380 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282164, + "fields": { + "id_car_serie": 73366, + "name": "3.5 AT 4WD (415 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282165, + "fields": { + "id_car_serie": 73367, + "name": "1.5 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282166, + "fields": { + "id_car_serie": 73367, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282167, + "fields": { + "id_car_serie": 73367, + "name": "1.5 AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282168, + "fields": { + "id_car_serie": 73367, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282169, + "fields": { + "id_car_serie": 73367, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282170, + "fields": { + "id_car_serie": 73367, + "name": "1.8 AMT 4WD (263 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282171, + "fields": { + "id_car_serie": 73368, + "name": "2.0 MT (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282172, + "fields": { + "id_car_serie": 73368, + "name": "2.0 MT 4WD (83 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282173, + "fields": { + "id_car_serie": 73368, + "name": "2.0 MT 4WD (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282174, + "fields": { + "id_car_serie": 73368, + "name": "2.2 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282175, + "fields": { + "id_car_serie": 73368, + "name": "2.2 MT 4WD (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282176, + "fields": { + "id_car_serie": 73368, + "name": "2.4 MT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282177, + "fields": { + "id_car_serie": 73368, + "name": "2.4 MT 4WD (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282178, + "fields": { + "id_car_serie": 73369, + "name": "2.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282179, + "fields": { + "id_car_serie": 73370, + "name": "1.9 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282180, + "fields": { + "id_car_serie": 73370, + "name": "1.9 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282181, + "fields": { + "id_car_serie": 73370, + "name": "2.0 AT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282182, + "fields": { + "id_car_serie": 73370, + "name": "2.0 MT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282183, + "fields": { + "id_car_serie": 73370, + "name": "2.4 MT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282184, + "fields": { + "id_car_serie": 73371, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282185, + "fields": { + "id_car_serie": 73371, + "name": "AT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282186, + "fields": { + "id_car_serie": 73372, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282187, + "fields": { + "id_car_serie": 73373, + "name": "AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282188, + "fields": { + "id_car_serie": 73374, + "name": "AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282189, + "fields": { + "id_car_serie": 73374, + "name": "AT 4WD (639 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282190, + "fields": { + "id_car_serie": 73375, + "name": "AT (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282191, + "fields": { + "id_car_serie": 73375, + "name": "AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282192, + "fields": { + "id_car_serie": 73375, + "name": "AT 4WD (884 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282193, + "fields": { + "id_car_serie": 73375, + "name": "AT 4WD (952 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282194, + "fields": { + "id_car_serie": 73376, + "name": "AT (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282195, + "fields": { + "id_car_serie": 73376, + "name": "AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282196, + "fields": { + "id_car_serie": 73376, + "name": "AT 4WD (884 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282197, + "fields": { + "id_car_serie": 73376, + "name": "AT 4WD (952 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282198, + "fields": { + "id_car_serie": 73377, + "name": "1.5 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282199, + "fields": { + "id_car_serie": 73377, + "name": "1.5 AT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282200, + "fields": { + "id_car_serie": 73378, + "name": "1.5 CVT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282201, + "fields": { + "id_car_serie": 73378, + "name": "1.5 CVT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282202, + "fields": { + "id_car_serie": 73379, + "name": "4.6 AT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282203, + "fields": { + "id_car_serie": 73379, + "name": "4.6 MT (330 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282204, + "fields": { + "id_car_serie": 73379, + "name": "4.6 AT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282205, + "fields": { + "id_car_serie": 73379, + "name": "4.6 MT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282206, + "fields": { + "id_car_serie": 73379, + "name": "4.6 AT (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282207, + "fields": { + "id_car_serie": 73379, + "name": "4.6 MT (435 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282208, + "fields": { + "id_car_serie": 73379, + "name": "4.6 AT (465 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282209, + "fields": { + "id_car_serie": 73379, + "name": "4.6 MT (465 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282210, + "fields": { + "id_car_serie": 73379, + "name": "4.6 MT (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282211, + "fields": { + "id_car_serie": 73380, + "name": "1.5 MT (87 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282212, + "fields": { + "id_car_serie": 73380, + "name": "1.5 MT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282213, + "fields": { + "id_car_serie": 73380, + "name": "1.5 AT (101 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282214, + "fields": { + "id_car_serie": 73381, + "name": "2.0 AMT 4WD (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282215, + "fields": { + "id_car_serie": 73382, + "name": "3.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282216, + "fields": { + "id_car_serie": 73382, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282217, + "fields": { + "id_car_serie": 73382, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282218, + "fields": { + "id_car_serie": 73383, + "name": "2.0 AT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282219, + "fields": { + "id_car_serie": 73383, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282220, + "fields": { + "id_car_serie": 73384, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282221, + "fields": { + "id_car_serie": 73384, + "name": "3.0 AT (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282222, + "fields": { + "id_car_serie": 73384, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282223, + "fields": { + "id_car_serie": 73384, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282224, + "fields": { + "id_car_serie": 73384, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282225, + "fields": { + "id_car_serie": 73384, + "name": "3.0 AT 4WD (374 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282226, + "fields": { + "id_car_serie": 73385, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282227, + "fields": { + "id_car_serie": 73385, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282228, + "fields": { + "id_car_serie": 73385, + "name": "3.0 AT 4WD (340 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282229, + "fields": { + "id_car_serie": 73385, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282230, + "fields": { + "id_car_serie": 73385, + "name": "2.0 AT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282231, + "fields": { + "id_car_serie": 73385, + "name": "3.0 AT 4WD (374 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282232, + "fields": { + "id_car_serie": 73386, + "name": "3.0 AT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282233, + "fields": { + "id_car_serie": 73387, + "name": "3.0 MT (480 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282234, + "fields": { + "id_car_serie": 73387, + "name": "3.0 AT (510 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282235, + "fields": { + "id_car_serie": 73387, + "name": "3.0 AT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282236, + "fields": { + "id_car_serie": 73388, + "name": "AT (75 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282237, + "fields": { + "id_car_serie": 73389, + "name": "1.5 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282238, + "fields": { + "id_car_serie": 73389, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282239, + "fields": { + "id_car_serie": 73390, + "name": "AT (27 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282240, + "fields": { + "id_car_serie": 73391, + "name": "1.5 AT (235 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282241, + "fields": { + "id_car_serie": 73392, + "name": "1.6 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282242, + "fields": { + "id_car_serie": 73392, + "name": "2.0 AT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282243, + "fields": { + "id_car_serie": 73392, + "name": "2.0 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282244, + "fields": { + "id_car_serie": 73392, + "name": "2.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282245, + "fields": { + "id_car_serie": 73393, + "name": "1.6 MT (65 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282246, + "fields": { + "id_car_serie": 73393, + "name": "2.0 AT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282247, + "fields": { + "id_car_serie": 73393, + "name": "2.0 MT (78 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282248, + "fields": { + "id_car_serie": 73393, + "name": "2.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282249, + "fields": { + "id_car_serie": 73394, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282250, + "fields": { + "id_car_serie": 73395, + "name": "2.0 MT (86 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282251, + "fields": { + "id_car_serie": 73395, + "name": "2.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282252, + "fields": { + "id_car_serie": 73395, + "name": "2.2 MT (71 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282253, + "fields": { + "id_car_serie": 73396, + "name": "2.0 AT 4WD (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282254, + "fields": { + "id_car_serie": 73397, + "name": "1.5 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282255, + "fields": { + "id_car_serie": 73397, + "name": "1.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282256, + "fields": { + "id_car_serie": 73398, + "name": "2.0 CVT (173 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282257, + "fields": { + "id_car_serie": 73398, + "name": "2.0 CVT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282258, + "fields": { + "id_car_serie": 73398, + "name": "2.5 CVT (230 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282259, + "fields": { + "id_car_serie": 73398, + "name": "2.5 CVT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282260, + "fields": { + "id_car_serie": 73398, + "name": "2.5 CVT 4WD (232 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282261, + "fields": { + "id_car_serie": 73399, + "name": "1.6 MT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282262, + "fields": { + "id_car_serie": 73399, + "name": "1.6 AT 4WD (280 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282263, + "fields": { + "id_car_serie": 73399, + "name": "1.6 MT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282264, + "fields": { + "id_car_serie": 73399, + "name": "1.6 AT 4WD (304 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282265, + "fields": { + "id_car_serie": 73400, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282266, + "fields": { + "id_car_serie": 73400, + "name": "1.5 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282267, + "fields": { + "id_car_serie": 73400, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282268, + "fields": { + "id_car_serie": 73400, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282269, + "fields": { + "id_car_serie": 73401, + "name": "1.5 MT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282270, + "fields": { + "id_car_serie": 73401, + "name": "1.5 AMT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282271, + "fields": { + "id_car_serie": 73401, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282272, + "fields": { + "id_car_serie": 73401, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282273, + "fields": { + "id_car_serie": 73402, + "name": "4.0 AT (665 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282274, + "fields": { + "id_car_serie": 73403, + "name": "1.5 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282275, + "fields": { + "id_car_serie": 73404, + "name": "8.0 AMT 4WD (1600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282276, + "fields": { + "id_car_serie": 73405, + "name": "AT 4WD (1306 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282277, + "fields": { + "id_car_serie": 73406, + "name": "5.2 MT (88 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282278, + "fields": { + "id_car_serie": 73407, + "name": "3.0 AT (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282279, + "fields": { + "id_car_serie": 73407, + "name": "3.0 AT 4WD (365 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282280, + "fields": { + "id_car_serie": 73407, + "name": "6.2 MT (677 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282281, + "fields": { + "id_car_serie": 73407, + "name": "6.2 AT (677 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282282, + "fields": { + "id_car_serie": 73408, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282283, + "fields": { + "id_car_serie": 73409, + "name": "AT (8 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282284, + "fields": { + "id_car_serie": 73410, + "name": "3.9 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282285, + "fields": { + "id_car_serie": 73411, + "name": "3.9 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282286, + "fields": { + "id_car_serie": 73412, + "name": "3.3 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282287, + "fields": { + "id_car_serie": 73412, + "name": "3.3 AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282288, + "fields": { + "id_car_serie": 73412, + "name": "3.7 AT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282289, + "fields": { + "id_car_serie": 73412, + "name": "3.7 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282290, + "fields": { + "id_car_serie": 73412, + "name": "5.2 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282291, + "fields": { + "id_car_serie": 73413, + "name": "1.5 CVT (137 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282292, + "fields": { + "id_car_serie": 73414, + "name": "2.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282293, + "fields": { + "id_car_serie": 73415, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282294, + "fields": { + "id_car_serie": 73415, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282295, + "fields": { + "id_car_serie": 73415, + "name": "1.5 CVT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282296, + "fields": { + "id_car_serie": 73416, + "name": "2.0 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282297, + "fields": { + "id_car_serie": 73416, + "name": "2.0 AT 4WD (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282298, + "fields": { + "id_car_serie": 73417, + "name": "1.5 AT 4WD (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282299, + "fields": { + "id_car_serie": 73418, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282300, + "fields": { + "id_car_serie": 73418, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282301, + "fields": { + "id_car_serie": 73419, + "name": "3.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282302, + "fields": { + "id_car_serie": 73419, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282303, + "fields": { + "id_car_serie": 73420, + "name": "2.0 AMT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282304, + "fields": { + "id_car_serie": 73421, + "name": "1.5 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282305, + "fields": { + "id_car_serie": 73422, + "name": "1.5 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282306, + "fields": { + "id_car_serie": 73422, + "name": "1.6 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282307, + "fields": { + "id_car_serie": 73423, + "name": "2.0 AT (403 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282308, + "fields": { + "id_car_serie": 73424, + "name": "1.5 AT (536 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282309, + "fields": { + "id_car_serie": 73425, + "name": "AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282310, + "fields": { + "id_car_serie": 73426, + "name": "3.0 AT (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282311, + "fields": { + "id_car_serie": 73426, + "name": "3.0 AT 4WD (400 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282312, + "fields": { + "id_car_serie": 73427, + "name": "2.0 AT 4WD (250 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282313, + "fields": { + "id_car_serie": 73427, + "name": "2.0 AT 4WD (261 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282314, + "fields": { + "id_car_serie": 73427, + "name": "2.0 CVT 4WD (282 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282315, + "fields": { + "id_car_serie": 73427, + "name": "2.0 CVT 4WD (300 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282316, + "fields": { + "id_car_serie": 73428, + "name": "AT 4WD (496 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282317, + "fields": { + "id_car_serie": 73428, + "name": "AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282318, + "fields": { + "id_car_serie": 73428, + "name": "1.5 AT 4WD (496 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282319, + "fields": { + "id_car_serie": 73428, + "name": "1.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282320, + "fields": { + "id_car_serie": 73428, + "name": "1.5 AT 4WD (428 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282321, + "fields": { + "id_car_serie": 73429, + "name": "1.5 AT 4WD (449 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282322, + "fields": { + "id_car_serie": 73429, + "name": "1.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282323, + "fields": { + "id_car_serie": 73430, + "name": "AT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282324, + "fields": { + "id_car_serie": 73430, + "name": "1.5 AT 4WD (496 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282325, + "fields": { + "id_car_serie": 73431, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282326, + "fields": { + "id_car_serie": 73431, + "name": "1.4 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282327, + "fields": { + "id_car_serie": 73431, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282328, + "fields": { + "id_car_serie": 73431, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282329, + "fields": { + "id_car_serie": 73432, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282330, + "fields": { + "id_car_serie": 73432, + "name": "1.4 AT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282331, + "fields": { + "id_car_serie": 73433, + "name": "1.6 MT 4WD (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282332, + "fields": { + "id_car_serie": 73433, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282333, + "fields": { + "id_car_serie": 73433, + "name": "1.6 AT 4WD (121 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282334, + "fields": { + "id_car_serie": 73433, + "name": "1.6 MT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282335, + "fields": { + "id_car_serie": 73433, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282336, + "fields": { + "id_car_serie": 73433, + "name": "2.0 AT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282337, + "fields": { + "id_car_serie": 73434, + "name": "1.6 AT (123 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282338, + "fields": { + "id_car_serie": 73435, + "name": "3.0 AT 4WD (523 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282339, + "fields": { + "id_car_serie": 73436, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282340, + "fields": { + "id_car_serie": 73436, + "name": "AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282341, + "fields": { + "id_car_serie": 73436, + "name": "AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282342, + "fields": { + "id_car_serie": 73436, + "name": "1.5 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282343, + "fields": { + "id_car_serie": 73437, + "name": "AT (422 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282344, + "fields": { + "id_car_serie": 73437, + "name": "AT 4WD (789 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282345, + "fields": { + "id_car_serie": 73438, + "name": "AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282346, + "fields": { + "id_car_serie": 73439, + "name": "1.8 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282347, + "fields": { + "id_car_serie": 73440, + "name": "3.0 AT 4WD (367 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282348, + "fields": { + "id_car_serie": 73440, + "name": "3.0 AT 4WD (449 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282349, + "fields": { + "id_car_serie": 73441, + "name": "4.0 AT 4WD (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282350, + "fields": { + "id_car_serie": 73442, + "name": "0.7 CVT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282351, + "fields": { + "id_car_serie": 73442, + "name": "0.7 CVT 4WD (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282352, + "fields": { + "id_car_serie": 73443, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282353, + "fields": { + "id_car_serie": 73443, + "name": "1.5 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282354, + "fields": { + "id_car_serie": 73443, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282355, + "fields": { + "id_car_serie": 73443, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282356, + "fields": { + "id_car_serie": 73443, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282357, + "fields": { + "id_car_serie": 73444, + "name": "1.5 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282358, + "fields": { + "id_car_serie": 73444, + "name": "1.5 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282359, + "fields": { + "id_car_serie": 73444, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282360, + "fields": { + "id_car_serie": 73444, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282361, + "fields": { + "id_car_serie": 73444, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282362, + "fields": { + "id_car_serie": 73445, + "name": "1.4 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282363, + "fields": { + "id_car_serie": 73445, + "name": "2.0 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282364, + "fields": { + "id_car_serie": 73446, + "name": "1.4 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282365, + "fields": { + "id_car_serie": 73446, + "name": "2.0 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282366, + "fields": { + "id_car_serie": 73447, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282367, + "fields": { + "id_car_serie": 73447, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282368, + "fields": { + "id_car_serie": 73448, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282369, + "fields": { + "id_car_serie": 73448, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282370, + "fields": { + "id_car_serie": 73449, + "name": "4.0 AT 4WD (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282371, + "fields": { + "id_car_serie": 73450, + "name": "1.5 AMT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282372, + "fields": { + "id_car_serie": 73451, + "name": "2.0 MT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282373, + "fields": { + "id_car_serie": 73451, + "name": "2.0 AT (144 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282374, + "fields": { + "id_car_serie": 73452, + "name": "AT 4WD (496 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282375, + "fields": { + "id_car_serie": 73452, + "name": "AT 4WD (670 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282376, + "fields": { + "id_car_serie": 73453, + "name": "2.0 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282377, + "fields": { + "id_car_serie": 73453, + "name": "2.0 AT 4WD (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282381, + "fields": { + "id_car_serie": 73455, + "name": "3.5 AT 4WD (450 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282382, + "fields": { + "id_car_serie": 73456, + "name": "2.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282383, + "fields": { + "id_car_serie": 73457, + "name": "1.6 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282384, + "fields": { + "id_car_serie": 73457, + "name": "2.0 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282385, + "fields": { + "id_car_serie": 73458, + "name": "AT (49 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282386, + "fields": { + "id_car_serie": 73459, + "name": "2.4 MT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282387, + "fields": { + "id_car_serie": 73459, + "name": "2.8 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282388, + "fields": { + "id_car_serie": 73459, + "name": "3.2 MT 4WD (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282389, + "fields": { + "id_car_serie": 73460, + "name": "1.5 AT 4WD (449 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282390, + "fields": { + "id_car_serie": 73461, + "name": "1.5 AT 4WD (449 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282391, + "fields": { + "id_car_serie": 73462, + "name": "1.5 AT 4WD (449 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282392, + "fields": { + "id_car_serie": 73463, + "name": "AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282393, + "fields": { + "id_car_serie": 73463, + "name": "1.4 AMT (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282394, + "fields": { + "id_car_serie": 73464, + "name": "1.5 AT 4WD (476 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282395, + "fields": { + "id_car_serie": 73465, + "name": "1.5 CVT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282396, + "fields": { + "id_car_serie": 73466, + "name": "2.0 AMT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282397, + "fields": { + "id_car_serie": 73467, + "name": "2.0 AMT 4WD (333 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282398, + "fields": { + "id_car_serie": 73468, + "name": "2.0 CVT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282399, + "fields": { + "id_car_serie": 73468, + "name": "2.0 CVT 4WD (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282400, + "fields": { + "id_car_serie": 73469, + "name": "2.0 AMT (227 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282401, + "fields": { + "id_car_serie": 73469, + "name": "2.0 AMT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282402, + "fields": { + "id_car_serie": 73470, + "name": "2.0 AMT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282403, + "fields": { + "id_car_serie": 73471, + "name": "2.0 AMT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282404, + "fields": { + "id_car_serie": 73472, + "name": "1.5 AMT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282405, + "fields": { + "id_car_serie": 73472, + "name": "1.5 AMT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282406, + "fields": { + "id_car_serie": 73473, + "name": "1.4 AMT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282407, + "fields": { + "id_car_serie": 73473, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282408, + "fields": { + "id_car_serie": 73473, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282409, + "fields": { + "id_car_serie": 73474, + "name": "1.0 AT (76 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282410, + "fields": { + "id_car_serie": 73475, + "name": "3.0 AT 4WD (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282411, + "fields": { + "id_car_serie": 73476, + "name": "3.0 AT 4WD (585 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282412, + "fields": { + "id_car_serie": 73477, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282413, + "fields": { + "id_car_serie": 73477, + "name": "1.5 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282414, + "fields": { + "id_car_serie": 73477, + "name": "1.5 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282415, + "fields": { + "id_car_serie": 73477, + "name": "1.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282416, + "fields": { + "id_car_serie": 73477, + "name": "1.5 AT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282417, + "fields": { + "id_car_serie": 73477, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282418, + "fields": { + "id_car_serie": 73477, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282419, + "fields": { + "id_car_serie": 73478, + "name": "1.4 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282420, + "fields": { + "id_car_serie": 73478, + "name": "1.6 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282421, + "fields": { + "id_car_serie": 73478, + "name": "1.6 AT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282422, + "fields": { + "id_car_serie": 73479, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282423, + "fields": { + "id_car_serie": 73479, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282424, + "fields": { + "id_car_serie": 73479, + "name": "2.0 AMT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282425, + "fields": { + "id_car_serie": 73480, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282426, + "fields": { + "id_car_serie": 73480, + "name": "2.0 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282427, + "fields": { + "id_car_serie": 73480, + "name": "2.0 AMT 4WD (193 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282428, + "fields": { + "id_car_serie": 73481, + "name": "1.3 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282429, + "fields": { + "id_car_serie": 73481, + "name": "1.6 AMT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282430, + "fields": { + "id_car_serie": 73481, + "name": "1.6 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282431, + "fields": { + "id_car_serie": 73482, + "name": "AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282432, + "fields": { + "id_car_serie": 73482, + "name": "1.2 AMT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282433, + "fields": { + "id_car_serie": 73483, + "name": "AT 4WD (388 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282434, + "fields": { + "id_car_serie": 73484, + "name": "2.4 MT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282435, + "fields": { + "id_car_serie": 73485, + "name": "AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282436, + "fields": { + "id_car_serie": 73485, + "name": "AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282437, + "fields": { + "id_car_serie": 73486, + "name": "AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282438, + "fields": { + "id_car_serie": 73486, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282439, + "fields": { + "id_car_serie": 73487, + "name": "AT (134 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282440, + "fields": { + "id_car_serie": 73488, + "name": "1.0 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282441, + "fields": { + "id_car_serie": 73488, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282442, + "fields": { + "id_car_serie": 73488, + "name": "1.2 MT 4WD (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282443, + "fields": { + "id_car_serie": 73488, + "name": "1.6 AT (140 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282444, + "fields": { + "id_car_serie": 73489, + "name": "1.5 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282445, + "fields": { + "id_car_serie": 73489, + "name": "1.5 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282446, + "fields": { + "id_car_serie": 73489, + "name": "1.5 CVT (205 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282447, + "fields": { + "id_car_serie": 73490, + "name": "1.5 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282448, + "fields": { + "id_car_serie": 73490, + "name": "1.5 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282449, + "fields": { + "id_car_serie": 73490, + "name": "1.5 AMT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282450, + "fields": { + "id_car_serie": 73491, + "name": "AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282451, + "fields": { + "id_car_serie": 73491, + "name": "1.0 MT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282452, + "fields": { + "id_car_serie": 73491, + "name": "1.0 AMT (125 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282453, + "fields": { + "id_car_serie": 73491, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282454, + "fields": { + "id_car_serie": 73492, + "name": "1.5 AT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282455, + "fields": { + "id_car_serie": 73492, + "name": "1.6 AT (225 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282456, + "fields": { + "id_car_serie": 73492, + "name": "1.6 AT 4WD (296 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282457, + "fields": { + "id_car_serie": 73492, + "name": "1.6 AT 4WD (355 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282458, + "fields": { + "id_car_serie": 73493, + "name": "0.6 MT (13 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282459, + "fields": { + "id_car_serie": 73494, + "name": "AT (344 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282460, + "fields": { + "id_car_serie": 73494, + "name": "AT 4WD (619 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282461, + "fields": { + "id_car_serie": 73495, + "name": "AT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282462, + "fields": { + "id_car_serie": 73495, + "name": "1.2 AMT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282463, + "fields": { + "id_car_serie": 73496, + "name": "AT 4WD (761 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282464, + "fields": { + "id_car_serie": 73496, + "name": "3.0 AT 4WD (550 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282465, + "fields": { + "id_car_serie": 73497, + "name": "1.5 AT (195 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282466, + "fields": { + "id_car_serie": 73498, + "name": "6.8 AT (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282467, + "fields": { + "id_car_serie": 53831, + "name": "1.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282468, + "fields": { + "id_car_serie": 53831, + "name": "1.5 CVT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282469, + "fields": { + "id_car_serie": 73499, + "name": "1.5 AMT (174 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282470, + "fields": { + "id_car_serie": 46161, + "name": "2.0 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282471, + "fields": { + "id_car_serie": 46161, + "name": "2.0 AT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282472, + "fields": { + "id_car_serie": 53226, + "name": "2.0 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282473, + "fields": { + "id_car_serie": 53226, + "name": "2.0 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282474, + "fields": { + "id_car_serie": 53226, + "name": "2.0 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282475, + "fields": { + "id_car_serie": 53226, + "name": "2.0 AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282476, + "fields": { + "id_car_serie": 53226, + "name": "2.0 AT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282477, + "fields": { + "id_car_serie": 53226, + "name": "2.0 AT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282478, + "fields": { + "id_car_serie": 73506, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282479, + "fields": { + "id_car_serie": 73506, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282480, + "fields": { + "id_car_serie": 73507, + "name": "2.0 AT 4WD (224 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282481, + "fields": { + "id_car_serie": 73507, + "name": "2.4 AT 4WD (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282482, + "fields": { + "id_car_serie": 73508, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282483, + "fields": { + "id_car_serie": 73508, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282484, + "fields": { + "id_car_serie": 73509, + "name": "1.5 MT (132 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282485, + "fields": { + "id_car_serie": 73509, + "name": "2.0 MT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282486, + "fields": { + "id_car_serie": 73509, + "name": "2.0 AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282487, + "fields": { + "id_car_serie": 73509, + "name": "2.0 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282488, + "fields": { + "id_car_serie": 73509, + "name": "2.0 MT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282489, + "fields": { + "id_car_serie": 73510, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282490, + "fields": { + "id_car_serie": 73510, + "name": "1.2 MT (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282491, + "fields": { + "id_car_serie": 73510, + "name": "1.5 MT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282492, + "fields": { + "id_car_serie": 73510, + "name": "1.5 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282493, + "fields": { + "id_car_serie": 73511, + "name": "AT (102 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282494, + "fields": { + "id_car_serie": 73512, + "name": "1.5 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282495, + "fields": { + "id_car_serie": 73512, + "name": "1.7 CVT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282496, + "fields": { + "id_car_serie": 73512, + "name": "1.7 MT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282497, + "fields": { + "id_car_serie": 73513, + "name": "2.0 AT (234 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282498, + "fields": { + "id_car_serie": 73513, + "name": "2.0 AT 4WD (265 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282499, + "fields": { + "id_car_serie": 73513, + "name": "2.0 CVT 4WD (441 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282500, + "fields": { + "id_car_serie": 73514, + "name": "1.5 AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282501, + "fields": { + "id_car_serie": 73515, + "name": "1.5 AT (381 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282502, + "fields": { + "id_car_serie": 73516, + "name": "AT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282503, + "fields": { + "id_car_serie": 73516, + "name": "AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282504, + "fields": { + "id_car_serie": 73516, + "name": "1.4 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282505, + "fields": { + "id_car_serie": 73517, + "name": "3.0 AMT (700 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282506, + "fields": { + "id_car_serie": 73518, + "name": "1.4 AT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282507, + "fields": { + "id_car_serie": 73518, + "name": "1.4 MT (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282508, + "fields": { + "id_car_serie": 73518, + "name": "1.4 MT 4WD (129 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282509, + "fields": { + "id_car_serie": 73518, + "name": "1.5 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282510, + "fields": { + "id_car_serie": 73518, + "name": "1.5 AMT 4WD (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282522, + "fields": { + "id_car_serie": 73519, + "name": "1.2 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282523, + "fields": { + "id_car_serie": 73519, + "name": "1.2 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282524, + "fields": { + "id_car_serie": 73520, + "name": "AT (48 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282525, + "fields": { + "id_car_serie": 73520, + "name": "AT (84 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282526, + "fields": { + "id_car_serie": 73520, + "name": "AT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282527, + "fields": { + "id_car_serie": 73521, + "name": "6.5 AMT (830 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282528, + "fields": { + "id_car_serie": 73522, + "name": "6.5 AMT (830 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282529, + "fields": { + "id_car_serie": 73523, + "name": "AT (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282530, + "fields": { + "id_car_serie": 73523, + "name": "AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282531, + "fields": { + "id_car_serie": 73523, + "name": "1.4 AMT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282532, + "fields": { + "id_car_serie": 73524, + "name": "5.2 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282533, + "fields": { + "id_car_serie": 73525, + "name": "5.2 MT (135 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282534, + "fields": { + "id_car_serie": 73526, + "name": "1.5 AT 4WD (487 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282535, + "fields": { + "id_car_serie": 73527, + "name": "1.5 AT 4WD (439 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282536, + "fields": { + "id_car_serie": 73528, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282537, + "fields": { + "id_car_serie": 73528, + "name": "3.0 AT 4WD (286 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282538, + "fields": { + "id_car_serie": 73528, + "name": "2.0 AMT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282539, + "fields": { + "id_car_serie": 73528, + "name": "2.0 AMT 4WD (245 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282540, + "fields": { + "id_car_serie": 73528, + "name": "3.0 AT 4WD (374 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282541, + "fields": { + "id_car_serie": 73529, + "name": "1.5 CVT (215 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282542, + "fields": { + "id_car_serie": 73530, + "name": "2.0 CVT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282543, + "fields": { + "id_car_serie": 73531, + "name": "6.4 MT (320 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282544, + "fields": { + "id_car_serie": 73532, + "name": "4.9 MT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282545, + "fields": { + "id_car_serie": 73532, + "name": "4.9 AT (213 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282546, + "fields": { + "id_car_serie": 73532, + "name": "6.4 AT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282547, + "fields": { + "id_car_serie": 73532, + "name": "6.4 MT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282548, + "fields": { + "id_car_serie": 73532, + "name": "7.0 MT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282549, + "fields": { + "id_car_serie": 73532, + "name": "7.0 AT (345 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282550, + "fields": { + "id_car_serie": 73533, + "name": "2.0 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282551, + "fields": { + "id_car_serie": 73533, + "name": "2.0 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282552, + "fields": { + "id_car_serie": 73533, + "name": "2.0 AT 4WD (237 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282553, + "fields": { + "id_car_serie": 73534, + "name": "2.0 AT (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282554, + "fields": { + "id_car_serie": 73534, + "name": "2.1 AT 4WD (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282555, + "fields": { + "id_car_serie": 73534, + "name": "2.1 MT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282556, + "fields": { + "id_car_serie": 73534, + "name": "2.1 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282557, + "fields": { + "id_car_serie": 73534, + "name": "2.1 AT 4WD (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282558, + "fields": { + "id_car_serie": 73534, + "name": "2.1 AT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282559, + "fields": { + "id_car_serie": 73535, + "name": "2.4 AT 4WD (275 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282560, + "fields": { + "id_car_serie": 73536, + "name": "2.0 AMT (186 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282561, + "fields": { + "id_car_serie": 73536, + "name": "2.0 AMT 4WD (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282562, + "fields": { + "id_car_serie": 73537, + "name": "1.0 MT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282563, + "fields": { + "id_car_serie": 73537, + "name": "1.0 MT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282564, + "fields": { + "id_car_serie": 73537, + "name": "1.0 AMT (115 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282565, + "fields": { + "id_car_serie": 73537, + "name": "1.5 AMT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282566, + "fields": { + "id_car_serie": 73538, + "name": "0.5 CVT (10 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282567, + "fields": { + "id_car_serie": 73539, + "name": "2.5 MT 4WD (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282568, + "fields": { + "id_car_serie": 73540, + "name": "AT (343 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282569, + "fields": { + "id_car_serie": 73540, + "name": "AT 4WD (598 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282570, + "fields": { + "id_car_serie": 73540, + "name": "1.5 AT (314 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282571, + "fields": { + "id_car_serie": 73540, + "name": "1.5 AT 4WD (521 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282572, + "fields": { + "id_car_serie": 73541, + "name": "AT (136 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282573, + "fields": { + "id_car_serie": 73542, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282574, + "fields": { + "id_car_serie": 73542, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282575, + "fields": { + "id_car_serie": 73543, + "name": "1.5 AT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282576, + "fields": { + "id_car_serie": 73543, + "name": "1.5 AMT 4WD (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282577, + "fields": { + "id_car_serie": 73544, + "name": "6.0 AMT 4WD (659 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282578, + "fields": { + "id_car_serie": 73545, + "name": "6.0 AMT 4WD (750 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282579, + "fields": { + "id_car_serie": 73546, + "name": "6.0 AMT 4WD (750 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282580, + "fields": { + "id_car_serie": 73547, + "name": "2.0 AT 4WD (952 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282581, + "fields": { + "id_car_serie": 73548, + "name": "1.5 CVT (290 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282582, + "fields": { + "id_car_serie": 73548, + "name": "1.5 CVT (307 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282583, + "fields": { + "id_car_serie": 73549, + "name": "1.5 AT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282584, + "fields": { + "id_car_serie": 73549, + "name": "1.5 AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282585, + "fields": { + "id_car_serie": 73550, + "name": "1.6 MT (96 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282586, + "fields": { + "id_car_serie": 73550, + "name": "1.8 MT (100 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282587, + "fields": { + "id_car_serie": 73550, + "name": "2.0 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282588, + "fields": { + "id_car_serie": 73551, + "name": "AT (117 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282589, + "fields": { + "id_car_serie": 73551, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282590, + "fields": { + "id_car_serie": 73552, + "name": "1.5 CVT (116 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282591, + "fields": { + "id_car_serie": 73553, + "name": "1.5 CVT (176 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282592, + "fields": { + "id_car_serie": 73554, + "name": "6.3 AMT (740 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282593, + "fields": { + "id_car_serie": 73555, + "name": "1.5 AMT (170 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282594, + "fields": { + "id_car_serie": 73556, + "name": "1.5 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282595, + "fields": { + "id_car_serie": 73557, + "name": "AT (34 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282596, + "fields": { + "id_car_serie": 73557, + "name": "AT (41 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282597, + "fields": { + "id_car_serie": 73558, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282598, + "fields": { + "id_car_serie": 73558, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282599, + "fields": { + "id_car_serie": 73558, + "name": "1.6 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282600, + "fields": { + "id_car_serie": 73558, + "name": "1.6 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282601, + "fields": { + "id_car_serie": 73559, + "name": "2.0 AT 4WD (200 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282602, + "fields": { + "id_car_serie": 73559, + "name": "2.4 AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282603, + "fields": { + "id_car_serie": 73559, + "name": "2.4 AT 4WD (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282604, + "fields": { + "id_car_serie": 73560, + "name": "1.9 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282605, + "fields": { + "id_car_serie": 73560, + "name": "1.9 MT 4WD (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282606, + "fields": { + "id_car_serie": 73560, + "name": "2.8 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282607, + "fields": { + "id_car_serie": 73560, + "name": "2.8 MT 4WD (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282608, + "fields": { + "id_car_serie": 73560, + "name": "2.0 MT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282609, + "fields": { + "id_car_serie": 73560, + "name": "2.0 MT 4WD (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282610, + "fields": { + "id_car_serie": 73560, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282611, + "fields": { + "id_car_serie": 73560, + "name": "2.4 MT (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282612, + "fields": { + "id_car_serie": 73560, + "name": "2.4 MT 4WD (131 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282613, + "fields": { + "id_car_serie": 73560, + "name": "2.4 MT (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282614, + "fields": { + "id_car_serie": 73560, + "name": "2.4 MT 4WD (143 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282615, + "fields": { + "id_car_serie": 73561, + "name": "2.5 AMT (500 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282616, + "fields": { + "id_car_serie": 73562, + "name": "AT 4WD (2000 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282617, + "fields": { + "id_car_serie": 73563, + "name": "1.5 CVT (103 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282618, + "fields": { + "id_car_serie": 73563, + "name": "1.5 CVT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282619, + "fields": { + "id_car_serie": 73563, + "name": "1.5 MT (113 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282620, + "fields": { + "id_car_serie": 73564, + "name": "2.0 AT 4WD (249 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282621, + "fields": { + "id_car_serie": 73565, + "name": "1.6 AMT 4WD (194 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282622, + "fields": { + "id_car_serie": 73565, + "name": "2.0 AT 4WD (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282623, + "fields": { + "id_car_serie": 73566, + "name": "AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282624, + "fields": { + "id_car_serie": 73566, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282625, + "fields": { + "id_car_serie": 73567, + "name": "AT (122 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282626, + "fields": { + "id_car_serie": 73567, + "name": "1.5 MT (156 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282627, + "fields": { + "id_car_serie": 73567, + "name": "1.5 MT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282628, + "fields": { + "id_car_serie": 73567, + "name": "1.5 AMT (178 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282629, + "fields": { + "id_car_serie": 73567, + "name": "1.6 MT (128 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282630, + "fields": { + "id_car_serie": 73568, + "name": "5.2 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282631, + "fields": { + "id_car_serie": 73568, + "name": "5.2 MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282632, + "fields": { + "id_car_serie": 73568, + "name": "5.2 AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282633, + "fields": { + "id_car_serie": 73568, + "name": "5.2 MT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282634, + "fields": { + "id_car_serie": 73568, + "name": "5.9 MT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282635, + "fields": { + "id_car_serie": 73568, + "name": "5.9 AT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282636, + "fields": { + "id_car_serie": 73568, + "name": "5.9 MT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282637, + "fields": { + "id_car_serie": 73568, + "name": "5.9 AT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282638, + "fields": { + "id_car_serie": 73568, + "name": "6.3 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282639, + "fields": { + "id_car_serie": 73568, + "name": "6.3 MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282640, + "fields": { + "id_car_serie": 73568, + "name": "7.0 MT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282641, + "fields": { + "id_car_serie": 73568, + "name": "7.0 AT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282642, + "fields": { + "id_car_serie": 73569, + "name": "3.7 AT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282643, + "fields": { + "id_car_serie": 73569, + "name": "3.7 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282644, + "fields": { + "id_car_serie": 73569, + "name": "5.2 MT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282645, + "fields": { + "id_car_serie": 73569, + "name": "5.2 AT (233 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282646, + "fields": { + "id_car_serie": 73569, + "name": "5.2 AT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282647, + "fields": { + "id_car_serie": 73569, + "name": "5.2 MT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282648, + "fields": { + "id_car_serie": 73569, + "name": "5.9 MT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282649, + "fields": { + "id_car_serie": 73569, + "name": "5.9 AT (269 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282650, + "fields": { + "id_car_serie": 73569, + "name": "5.9 MT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282651, + "fields": { + "id_car_serie": 73569, + "name": "5.9 AT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282652, + "fields": { + "id_car_serie": 73569, + "name": "6.3 AT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282653, + "fields": { + "id_car_serie": 73569, + "name": "6.3 MT (335 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282654, + "fields": { + "id_car_serie": 73569, + "name": "7.0 AT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282655, + "fields": { + "id_car_serie": 73569, + "name": "7.0 MT (370 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282656, + "fields": { + "id_car_serie": 73569, + "name": "7.0 MT (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282657, + "fields": { + "id_car_serie": 73569, + "name": "7.0 AT (421 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282658, + "fields": { + "id_car_serie": 73569, + "name": "7.0 MT (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282659, + "fields": { + "id_car_serie": 73569, + "name": "7.0 AT (431 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282660, + "fields": { + "id_car_serie": 73570, + "name": "1.3 MT (90 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282661, + "fields": { + "id_car_serie": 73571, + "name": "6.8 AT 4WD (571 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282662, + "fields": { + "id_car_serie": 73571, + "name": "6.8 AT 4WD (600 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282663, + "fields": { + "id_car_serie": 73572, + "name": "1.6 MT (98 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282664, + "fields": { + "id_car_serie": 73572, + "name": "1.8 MT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282665, + "fields": { + "id_car_serie": 73572, + "name": "1.8 AT (107 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282666, + "fields": { + "id_car_serie": 73572, + "name": "1.9 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282667, + "fields": { + "id_car_serie": 73572, + "name": "1.9 AT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282668, + "fields": { + "id_car_serie": 73572, + "name": "2.0 MT (55 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282669, + "fields": { + "id_car_serie": 73572, + "name": "2.2 MT (60 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282670, + "fields": { + "id_car_serie": 73573, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282671, + "fields": { + "id_car_serie": 73573, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282672, + "fields": { + "id_car_serie": 73573, + "name": "1.5 CVT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282673, + "fields": { + "id_car_serie": 73573, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282674, + "fields": { + "id_car_serie": 73574, + "name": "2.4 MT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282675, + "fields": { + "id_car_serie": 73574, + "name": "2.4 AT (130 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282676, + "fields": { + "id_car_serie": 73575, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282677, + "fields": { + "id_car_serie": 73575, + "name": "1.5 CVT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282678, + "fields": { + "id_car_serie": 73575, + "name": "1.5 MT (150 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282679, + "fields": { + "id_car_serie": 73576, + "name": "1.5 MT (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282680, + "fields": { + "id_car_serie": 73577, + "name": "1.5 AMT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282681, + "fields": { + "id_car_serie": 73578, + "name": "1.5 AMT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282682, + "fields": { + "id_car_serie": 73579, + "name": "1.5 AMT (188 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282683, + "fields": { + "id_car_serie": 73580, + "name": "AT (238 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282684, + "fields": { + "id_car_serie": 73580, + "name": "AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282685, + "fields": { + "id_car_serie": 73580, + "name": "AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282686, + "fields": { + "id_car_serie": 73580, + "name": "AT 4WD (442 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282687, + "fields": { + "id_car_serie": 73581, + "name": "1.5 MT (147 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282688, + "fields": { + "id_car_serie": 73581, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282691, + "fields": { + "id_car_serie": 73582, + "name": "1.5 CVT 4WD (106 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282692, + "fields": { + "id_car_serie": 73582, + "name": "1.5 CVT (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282693, + "fields": { + "id_car_serie": 73582, + "name": "1.5 CVT 4WD (118 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282694, + "fields": { + "id_car_serie": 73583, + "name": "3.5 AT (258 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282695, + "fields": { + "id_car_serie": 73584, + "name": "1.2 MT (52 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282696, + "fields": { + "id_car_serie": 73585, + "name": "AT (180 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282697, + "fields": { + "id_car_serie": 73585, + "name": "AT (220 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282698, + "fields": { + "id_car_serie": 73586, + "name": "AT (252 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282699, + "fields": { + "id_car_serie": 73586, + "name": "AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282700, + "fields": { + "id_car_serie": 73586, + "name": "AT 4WD (530 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282701, + "fields": { + "id_car_serie": 73587, + "name": "5.2 MT (745 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282702, + "fields": { + "id_car_serie": 73588, + "name": "1.5 MT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282703, + "fields": { + "id_car_serie": 73588, + "name": "1.5 CVT (99 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282704, + "fields": { + "id_car_serie": 73588, + "name": "1.5 CVT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282705, + "fields": { + "id_car_serie": 73588, + "name": "1.5 AMT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282706, + "fields": { + "id_car_serie": 73588, + "name": "1.5 MT (105 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282707, + "fields": { + "id_car_serie": 73588, + "name": "1.5 AMT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282708, + "fields": { + "id_car_serie": 73588, + "name": "1.5 MT (112 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282709, + "fields": { + "id_car_serie": 73589, + "name": "8.3 AMT 4WD (1800 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282710, + "fields": { + "id_car_serie": 73590, + "name": "AT 4WD (408 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282711, + "fields": { + "id_car_serie": 73591, + "name": "1.5 CVT (264 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282712, + "fields": { + "id_car_serie": 73591, + "name": "1.5 CVT (319 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282713, + "fields": { + "id_car_serie": 73592, + "name": "AT (204 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282714, + "fields": { + "id_car_serie": 73593, + "name": "AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282715, + "fields": { + "id_car_serie": 73594, + "name": "AT 4WD (480 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282716, + "fields": { + "id_car_serie": 73595, + "name": "AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282717, + "fields": { + "id_car_serie": 73595, + "name": "1.5 AT (322 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282718, + "fields": { + "id_car_serie": 73596, + "name": "AT (292 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282719, + "fields": { + "id_car_serie": 73596, + "name": "1.5 AT (231 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282720, + "fields": { + "id_car_serie": 73597, + "name": "AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282721, + "fields": { + "id_car_serie": 73597, + "name": "AT 4WD (544 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282722, + "fields": { + "id_car_serie": 73598, + "name": "2.3 MT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282723, + "fields": { + "id_car_serie": 73598, + "name": "2.3 AT (61 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282724, + "fields": { + "id_car_serie": 73598, + "name": "2.5 AT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282725, + "fields": { + "id_car_serie": 73598, + "name": "2.5 MT (68 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282726, + "fields": { + "id_car_serie": 73599, + "name": "AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282727, + "fields": { + "id_car_serie": 73599, + "name": "AT (422 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282728, + "fields": { + "id_car_serie": 73599, + "name": "AT 4WD (789 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282729, + "fields": { + "id_car_serie": 73600, + "name": "AT (322 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282730, + "fields": { + "id_car_serie": 73600, + "name": "AT 4WD (455 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282731, + "fields": { + "id_car_serie": 73601, + "name": "AT 4WD (707 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282732, + "fields": { + "id_car_serie": 73602, + "name": "2.0 MT 4WD (138 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282733, + "fields": { + "id_car_serie": 73602, + "name": "2.5 MT 4WD (160 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282734, + "fields": { + "id_car_serie": 73602, + "name": "3.4 MT 4WD (211 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282735, + "fields": { + "id_car_serie": 73602, + "name": "2.4 MT 4WD (110 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282736, + "fields": { + "id_car_serie": 73602, + "name": "2.5 MT 4WD (92 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282737, + "fields": { + "id_car_serie": 73602, + "name": "2.5 MT 4WD (120 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282738, + "fields": { + "id_car_serie": 73603, + "name": "3.0 AT (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282739, + "fields": { + "id_car_serie": 73603, + "name": "3.0 AT 4WD (277 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282740, + "fields": { + "id_car_serie": 73603, + "name": "6.2 AT (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282741, + "fields": { + "id_car_serie": 73603, + "name": "6.2 AT 4WD (420 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282742, + "fields": { + "id_car_serie": 73604, + "name": "1.5 AT 4WD (496 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282743, + "fields": { + "id_car_serie": 73605, + "name": "AT (309 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282744, + "fields": { + "id_car_serie": 73605, + "name": "AT 4WD (524 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282745, + "fields": { + "id_car_serie": 73606, + "name": "1.5 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282746, + "fields": { + "id_car_serie": 73606, + "name": "1.5 AMT (268 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282747, + "fields": { + "id_car_serie": 73607, + "name": "AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282748, + "fields": { + "id_car_serie": 73607, + "name": "AT (218 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282749, + "fields": { + "id_car_serie": 73608, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282750, + "fields": { + "id_car_serie": 73608, + "name": "1.5 CVT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282751, + "fields": { + "id_car_serie": 73609, + "name": "1.5 MT (109 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282752, + "fields": { + "id_car_serie": 73610, + "name": "AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282753, + "fields": { + "id_car_serie": 73610, + "name": "1.5 AT (272 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282754, + "fields": { + "id_car_serie": 73611, + "name": "AT (422 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282755, + "fields": { + "id_car_serie": 73612, + "name": "1.5 MT (162 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282756, + "fields": { + "id_car_serie": 73612, + "name": "1.5 MT (163 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282757, + "fields": { + "id_car_serie": 73612, + "name": "1.8 AMT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282758, + "fields": { + "id_car_serie": 73612, + "name": "1.8 MT (177 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282759, + "fields": { + "id_car_serie": 73612, + "name": "2.0 AT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282760, + "fields": { + "id_car_serie": 73612, + "name": "2.0 AMT (190 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282761, + "fields": { + "id_car_serie": 73613, + "name": "AT (95 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282762, + "fields": { + "id_car_serie": 73614, + "name": "1.8 AT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282763, + "fields": { + "id_car_serie": 73614, + "name": "1.8 MT (161 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282764, + "fields": { + "id_car_serie": 73614, + "name": "2.5 AT (184 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +}, +{ + "model": "inventory.cartrim", + "pk": 282765, + "fields": { + "id_car_serie": 73615, + "name": "1.6 AMT (197 hp)", + "arabic_name": "-", + "start_production_year": null, + "end_production_year": null + } +} +] diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 00000000..d0c3cbf1 --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,20 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +SOURCEDIR = source +BUILDDIR = build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/docs/make.bat b/docs/make.bat new file mode 100644 index 00000000..747ffb7b --- /dev/null +++ b/docs/make.bat @@ -0,0 +1,35 @@ +@ECHO OFF + +pushd %~dp0 + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set SOURCEDIR=source +set BUILDDIR=build + +%SPHINXBUILD% >NUL 2>NUL +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.https://www.sphinx-doc.org/ + exit /b 1 +) + +if "%1" == "" goto help + +%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% +goto end + +:help +%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% + +:end +popd diff --git a/docs/source/conf.py b/docs/source/conf.py new file mode 100644 index 00000000..2efff906 --- /dev/null +++ b/docs/source/conf.py @@ -0,0 +1,28 @@ +# Configuration file for the Sphinx documentation builder. +# +# For the full list of built-in configuration values, see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html + +# -- Project information ----------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information + +project = 'Haikal' +copyright = '2024, Marwan Alwali' +author = 'Marwan Alwali' +release = '01/11/2024' + +# -- General configuration --------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration + +extensions = [] + +templates_path = ['_templates'] +exclude_patterns = [] + +language = '[en,ar]' + +# -- Options for HTML output ------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output + +html_theme = 'alabaster' +html_static_path = ['_static'] diff --git a/docs/source/index.rst b/docs/source/index.rst new file mode 100644 index 00000000..b1f7d143 --- /dev/null +++ b/docs/source/index.rst @@ -0,0 +1,17 @@ +.. Haikal documentation master file, created by + sphinx-quickstart on Mon Nov 25 16:28:43 2024. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Haikal documentation +==================== + +Add your content using ``reStructuredText`` syntax. See the +`reStructuredText `_ +documentation for details. + + +.. toctree:: + :maxdepth: 2 + :caption: Contents: + diff --git a/haikalna.py b/haikalna.py new file mode 100644 index 00000000..1dee30a5 --- /dev/null +++ b/haikalna.py @@ -0,0 +1,1565 @@ +import re +from itertools import cycle +from datetime import datetime +from typing import List + + +def vin_years(vin_char: str) -> List[int]: + letters = 'ABCDEFGHJKLMNPRSTVWXY123456789' + year_char = vin_char.upper() + + if year_char not in letters: + raise ValueError("Invalid VIN character. Must be A-Z (excluding I, O, Q) or 1-9.") + + year = 1979 + current_year = datetime.now().year + result = [] + + for letter in cycle(letters): + year += 1 + if letter == year_char: + result.append(year) + if year >= current_year: + break + + result.sort(reverse=True) + return result + + +wmi_manufacturer_mapping = { + "AAA": "Audi", + "AAK": "FAW", + "AAM": "MAN", + "AAV": "Volkswagen", + "ABJ": "Mitsubishi", + "ABM": "BMW", + "ACV": "Isuzu", + "AC5": "Hyundai", + "ADM": "GM", + "ADN": "Nissan", + "ADR": "Renault", + "ADX": "Tata", + "AFA": "Ford", + "AFB": "Mazda", + "AHH": "Hino", + "AHM": "Honda", + "AHT": "Toyota", + "BR1": "Mercedes-Benz", + "HA0": "Wuxi", + "HA6": "Niu", + "HES": "smart", + "HL4": "Morini", + "HRV": "Henrey", + "JAA": "Isuzu", + "JAB": "Isuzu", + "JAC": "Isuzu", + "JAE": "Acura", + "JAL": "Isuzu", + "JA3": "Mitsubishi", + "JA4": "Mitsubishi", + "JA7": "Mitsubishi", + "JB3": "Dodge", + "JB4": "Dodge", + "JB7": "Dodge", + "JC0": "Ford", + "JC1": "Fiat", + "JC2": "Ford", + "JDA": "Daihatsu", + "JD1": "Daihatsu", + "JD2": "Daihatsu", + "JD4": "Daihatsu", + "JE3": "Eagle", + "JE4": "Mitsubishi", + "JF1": "Subaru", + "JF2": "Subaru", + "JF3": "Subaru", + "JF4": "Saab", + "JG1": "Chevrolet", + "JG7": "Pontiac", + "JGC": "Chevrolet", + "JGT": "GMC", + "JHA": "Hino", + "JHD": "Hino", + "JHF": "Honda", + "JHZ": "Honda", + "JHN": "Honda", + "JHL": "Honda", + "JHG": "Honda", + "JH5": "Honda", + "JH1": "Honda", + "JHM": "Honda", + "JH3": "Honda", + "JH4": "Acura", + "JJ3": "Chrysler", + "JLF": "Mitsubishi", + "JLS": "Sterling", + "JL5": "Mitsubishi", + "JL6": "Mitsubishi", + "JMA": "Mitsubishi", + "JMB": "Mitsubishi", + "JMF": "Mitsubishi", + "JMP": "Mitsubishi", + "JMR": "Mitsubishi", + "JMY": "Mitsubishi", + "JMZ": "Mazda", + "JM0": "Mazda", + "JM1": "Mazda", + "JM2": "Mazda", + "JM3": "Mazda", + "JM4": "Mazda", + "JM6": "Mazda", + "JM7": "Mazda", + "JNC": "Nissan", + "JNE": "Nissan", + "JNK": "Infiniti", + "JNR": "Infiniti", + "JN1": "Nissan", + "JN6": "Nissan", + "JN8": "Nissan", + "JPC": "Nissan", + "JP3": "Plymouth", + "JP4": "Plymouth", + "JP7": "Plymouth", + "JR2": "Isuzu", + "JST": "Suzuki", + "JS2": "Suzuki", + "JS3": "Suzuki", + "JS4": "Suzuki", + "JTB": "Toyota", + "JTD": "Toyota", + "JTE": "Toyota", + "JTF": "Toyota", + "JTG": "Toyota", + "JTH": "Lexus", + "JTJ": "Lexus", + "JTK": "Toyota", + "JTL": "Toyota", + "JTM": "Toyota", + "JTN": "Toyota", + "JTP": "Toyota", + "JT1": "Toyota", + "JT2": "Toyota", + "JT3": "Toyota", + "JT4": "Toyota", + "JT6": "Lexus", + "JT8": "Lexus", + "JW6": "Mitsubishi", + "J81": "Chevrolet", + "J87": "Pontiac", + "J8C": "Chevrolet", + "J8T": "GMC", + "J8Z": "Chevrolet", + "KF3": "Merkavim", + "KF6": "Automotive Industries,", + "KL": "Daewoo", + "KLA": "Daewoo", + "KLP": "CT&T United", + "KLT": "Tata Daewoo", + "KLU": "Tata Daewoo", + "KLY": "Daewoo", + "KL1": "Daewoo", + "KL2": "Daewoo", + "KL3": "Daewoo", + "KL4": "Daewoo", + "KL5": "Daewoo", + "KL6": "Daewoo", + "KL7": "Daewoo", + "KL8": "Daewoo", + "KM": "Hyundai", + "KMC": "Hyundai", + "KME": "Hyundai", + "KMF": "Hyundai", + "KMH": "Hyundai", + "KMJ": "Hyundai", + "KMT": "Genesis", + "KMU": "Genesis", + "KM8": "Hyundai", + "KNA": "Kia", + "KNC": "Kia", + "KND": "Kia", + "KNE": "Kia", + "KNF": "Kia", + "KNG": "Kia", + "KNJ": "Ford", + "KNM": "Renault", + "KN1": "Asia Motors", + "KN2": "Asia Motors", + "KPA": "SsangYong", + "KPB": "SsangYong", + "KPH": "Mitsubishi", + "KPT": "SsangYong", + "LA6": "King Long", + "LC0": "BYD", + "LBE": "Beijing-Hyundai Shouwang", + "LBM": "Zongshen Piaggio", + "LBV": "BMW Brilliance", + "LB1": "Fujian Benz", + "LB3": "Geely", + "LCR": "Gonow", + "LC2": "Kwang Yang", + "LDC": "Dongfeng", + "LDD": "Dandong Huanghai", + "LDK": "FAW Bus", + "LDN": "Soueast", + "LDP": "Voyah", + "LDY": "Zhongtong Bus,", + "LEF": "Jiangling", + "LET": "Jiangling Isuzu", + "LE4": "Beijing Benz", + "LFB": "FAW", + "LFF": "Wangye", + "LFM": "FAW Toyota", + "LFN": "FAW", + "LFP": "FAW", + "LFT": "FAW", + "LFV": "FAW Volkswagen,", + "LFW": "FAW JieFang,", + "LFZ": "Leapmotor", + "LGA": "Dongfeng", + "LGB": "Dongfeng", + "LGG": "Dongfeng Liuzhou", + "LGJ": "Dongfeng Fengshen", + "LGL": "Guilin Daewoo", + "LGW": "Great Wall", + "LGX": "BYD", + "LGZ": "Guangzhou Denway Bus", + "LHA": "Shuanghuan", + "LHB": "BAIC", + "LHG": "Guangzhou Honda", + "LH1": "FAW", + "LJC": "Jincheng", + "LJD": "Human Horizons - HiPhi", + "LJN": "Zhengzhou Nissan", + "LJS": "Yaxing Coach", + "LJU": "Lotus Geely", + "LJV": "Chengdu Wangpai", + "LJX": "JMC Ford", + "LJ1": "Nio", + "LJ8": "Zotye", + "LKC": "Changhe", + "LKL": "Higer Bus", + "LKT": "Lifan", + "LLC": "Loncin", + "LLN": "Qoros", + "LLV": "Lifan", + "LL3": "Golden Dragon", + "LL6": "GAC Mitsubishi", + "LL8": "Linhai Yamaha", + "LME": "Skyworth", + "LMG": "GAC", + "LMV": "XPeng", + "LMW": "GAC", + "LM6": "SWM", + "LM8": "Seres", + "LNA": "GAC", + "LNB": "BAIC", + "LND": "JMEV", + "LNP": "NAC MG", + "LNY": "Yuejin", + "LPA": "Changan", + "LPE": "BYD", + "LPS": "Polestar", + "LRB": "SAIC Buick", + "LRD": "Foton Daimler", + "LRE": "SAIC Cadillac", + "LRW": "Tesla", + "LSC": "Changan", + "LSF": "SAIC Maxus", + "LSG": "SAIC Chevrolet", + "LSH": "SAIC Maxus", + "LSJ": "SAIC MG", + "LSK": "SAIC Maxus", + "LSV": "SAIC Volkswagen", + "LSY": "Brilliance Jinbei GM", + "LS4": "Changan", + "LS5": "Changan", + "LS6": "Changan", + "LS7": "JMC", + "LTA": "ZX Auto", + "LTN": "Soueast", + "LTP": "National Electric Vehicle Sweden AB", + "LTV": "FAW Toyota (Tianjin)", + "LUC": "Honda", + "LUD": "Dongfeng Nissan", + "LUX": "Dongfeng Yulon", + "LUZ": "Hozon", + "LVA": "Foton", + "LVB": "Foton", + "LVC": "Foton", + "LVF": "Changhe Suzuki", + "LVG": "GAC Toyota", + "LVH": "Dongfeng Honda", + "LVM": "Chery", + "LVP": "Dongfeng Sokon", + "LVR": "Changan Mazda", + "LVS": "Changan Ford", + "LVT": "Chery", + "LVU": "Chery", + "LVV": "Chery", + "LVX": "Aiways", + "LVY": "Volvo", + "LVZ": "Dongfeng Sokon", + "LWG": "Chongqing", + "LWL": "Isuzu", + "LWV": "GAC", + "LW4": "Li Auto", + "LXV": "Borgward", + "LYB": "Yaxing", + "LYV": "Volvo", + "LZE": "Isuzu", + "LZF": "SAIC", + "LZG": "Shaanxi", + "LZK": "Huanghe", + "LZM": "MAN", + "LZS": "Meccanica", + "LZU": "Isuzu Bus", + "LZW": "SAIC", + "LZY": "Yutong", + "LZZ": "Sinotruk", + "LZ4": "Shangyang", + "L1N": "XPeng", + "L2C": "Chery", + "L4F": "Suzhou Eagle", + "L5C": "KangDi", + "L5K": "Yongkang", + "L6T": "Geely, Lynk & Co, Zeekr", + "L82": "Baotian", + "L85": "Yongkang Huabao", + "L9N": "Taotao", + "MAB": "Mahindra & Mahindra", + "MAC": "Mahindra & Mahindra", + "MAH": "Fiat", + "MAJ": "Ford", + "MAK": "Honda", + "MAL": "Hyundai", + "MAT": "Tatar", + "MA1": "Mahindra & Mahindra", + "MA3": "Suzuki", + "MA6": "GM", + "MA7": "Hindustan", + "MBF": "Royal Enfield", + "MBH": "Suzuki & Nissan", + "MBJ": "Toyota", + "MBK": "MAN", + "MBL": "Hero MotoCorp", + "MBR": "Mercedes-Benz", + "MBU": "Swaraj", + "MBV": "Premier", + "MBX": "Piaggio", + "MBY": "Asia Motors", + "MB1": "Ashok Leyland", + "MB7": "Reva Electric Company", + "MCA": "FCA Pvt. Ltd", + "MCB": "GM", + "MCD": "Mahindra Two Wheelers", + "MCG": "Atul", + "MC1": "Force", + "MC2": "Eicher", + "MDE": "Kinetic Engineering Limited", + "MDH": "Nissan", + "MDT": "Kerala Limited", + "MD6": "TVS", + "MD9": "Shuttles", + "MEC": "Daimler", + "MEE": "Renault Private Limited", + "MEG": "Harley-Davidson", + "MER": "Benelli", + "MET": "Piaggio", + "MEX": "Škoda", + "ME1": "Yamaha", + "ME3": "Royal Enfield", + "MYH": "Ather Energy", + "MZB": "Kia", + "MZZ": "Citroën", + "MZ7": "MG", + "M3G": "Isuzu", + "MF3": "Hyundai", + "MHD": "Suzuki", + "MHF": "Toyota", + "MHK": "Daihatsu", + "MHL": "Mercedes-Benz", + "MHR": "Honda", + "MLB": "Siam Yamaha Co", + "ML3": "Mitsubishi", + "MMA": "Mitsubishi", + "MMB": "Mitsubishi", + "MMC": "Mitsubishi", + "MMD": "Mitsubishi", + "MMF": "BMW", + "MML": "MG", + "MMM": "Chevrolet", + "MMR": "Subaru", + "MMS": "Suzuki", + "MMT": "Mitsubishi", + "MMU": "Holden", + "MNB": "Ford", + "MNK": "Hino", + "MNT": "Nissan", + "MNU": "Great Wall", + "MPA": "Isuzu", + "MPB": "Ford", + "MP1": "Isuzu", + "MP2": "Mazda Isuzu", + "MP5": "Foton", + "MRH": "Honda", + "MRT": "Neta", + "MR0": "Toyota", + "MR1": "Toyota", + "MR2": "Toyota", + "MR3": "Toyota", + "MXL": "Yutong", + "MX3": "Hyundai", + "NAA": "Iran Khodro", + "NAC": "Mammut", + "NAD": "Škoda", + "NAP": "Pars Khodro", + "NC9": "VIRA Diesel", + "NFB": "Honda", + "NG3": "Lucky Motors", + "NLA": "Honda", + "NLE": "Mercedes-Benz", + "NLH": "Hyundai", + "NLJ": "Hyundai", + "NLN": "Karsan", + "NLR": "Otokar", + "NLT": "Temsa", + "NL1": "TOGG", + "NMA": "MAN", + "NMB": "Mercedes-Benz", + "NMC": "BMC", + "NMT": "Toyota", + "NM0": "Ford", + "NM1": "Renault", + "NM4": "Tofa", + "NNA": "Anadolu Isuzu", + "NNN": "Gépébus Oréos 4X", + "NRE": "Bozankaya", + "NSA": "SamAvto", + "NS2": "JV MAN Auto", + "PAB": "Isuzu", + "PAD": "Honda", + "PE1": "Ford", + "PE3": "Mazda", + "PFD": "Hyundai", + "PL1": "Proton", + "PL8": "Inokom Hyundai", + "PLP": "Subaru", + "PLZ": "Isuzu", + "PMH": "Honda", + "PML": "Hicom", + "PMN": "Modenas", + "PM1": "BMW Mini", + "PM2": "Perodua", + "PM9/": "Bufori", + "PNA": "Stellantis", + "PNV": "Volvo", + "PN1": "UMW Toyota", + "PN2": "UMW Toyota", + "PN8": "Nissan", + "PPP": "Suzuki", + "PPV": "Volkswagen", + "PP1": "Mazda", + "PP3": "Hyundai", + "PRA": "Sinotruk", + "PRH": "Chery", + "PRX": "Kia", + "PR8": "Ford", + "RA1": "Steyr", + "LFA": "Ford Lio Hon", + "RFB": "Kymco", + "RFC": "Taiwan Golden Bee", + "RFD": "Tai Ling", + "RFG": "Sanyang", + "RFL": "Adly", + "RFT": "CPI", + "RF3": "Aeon Motor", + "RF5": "Yulon Motor", + "RGS": "Kawasaki", + "RHA": "Ford Lio Ho", + "RKJ": "Prince ", + "RKL": "Kuozui", + "RKM": "CMC", + "RKR": "Yamaha", + "RKT": "Honda", + "RK7": "Kawasaki", + "RLA": "Mitsubishi", + "RLC": "Yamaha Motor", + "RLE": "Isuzu", + "RLH": "Honda", + "RLL": "VinFast", + "RLM": "Mercedes-Benz", + "RLN": "VinFast", + "RL0": "Ford", + "RL4": "Toyota", + "RP8": "Piaggio", + "R3M": "Mangosteen", + "R4N": "Elyx", + "SAA": "Austin", + "SAB": "Optare", + "SAD": "Jaguar", + "SAF": "ERF", + "SAH": "Honda", + "SAJ": "Jaguar", + "SAL": "Land Rover", + "SAM": "Morris", + "SAR": "Rover MG Rover", + "SAT": "Triumph", + "SAX": "Austin-Rover", + "SAZ": "Freight Rover", + "SA9/": "OX Global", + "SBB": "Leyland", + "SBC": "Iveco Ford", + "SBJ": "Leyland", + "SBL": "Leyland", + "SBM": "McLaren", + "SBS": "Scammell", + "SBV": "Kenworth Peterbilt", + "SB1": "Toyota", + "SCA": "Rolls Royce", + "SCB": "Bentley", + "SCC": "Lotus", + "SCD": "Reliant", + "SCE": "DeLorean", + "SCF": "Aston Martin", + "SC5": "Wrightbus", + "SC6": "INEOS", + "SDB": "Talbot", + "SDF": "Dodge", + "SDG": "Renault", + "SDK": "Caterham", + "SDL": "TVR", + "SDP": "MG", + "SD7": "Aston Martin", + "SFA": "Ford", + "SFN": "Foden", + "SFZ": "Tesla", + "SGA": "Avondale", + "SGB": "Bailey", + "SGD": "Swift", + "SGE": "Elddis", + "SGL": "Lunaravans", + "SG4": "Coachman", + "SHH": "Honda", + "SHS": "Honda", + "SH7": "INEOS", + "SJA": "Bentley", + "SJK": "Infiniti", + "SJN": "Nissan", + "SJ1": "Ree", + "SKA": "Vauxhall", + "SKB": "Kel-Berg", + "SKF": "Bedford", + "SLA": "Rolls Royce", + "SLP": "JC Bamford", + "SNE": "Wartburg", + "SNT": "Trabant", + "SWH": "Temared", + "TLJ": "Jawa Moto", + "TMA": "Hyundai", + "TMB": "Škoda", + "TMC": "Hyundai", + "TMK": "Karosa", + "TMP": "Škoda", + "TMT": "Tatra", + "TNA": "Avia", + "TNE": "TAZ", + "TNT": "Tatra", + "TNU": "Tatra", + "TN9": "Karosa", + "TRA": "Ikarus Bus", + "TRC": "Csepel", + "TRU": "Audi Hungary", + "TSB": "Ikarus Bus", + "TSE": "Ikarus,", + "TSF": "Alfabusz", + "TSM": "Suzuki Fiat", + "TWG": "Ceatano Bus", + "TW1": "Toyota Caetano", + "TW2": "Ford", + "TW6": "Citroën", + "TW7": "Mini", + "TX5": "Mini", + "TYA": "Mitsubishi", + "TYB": "Mitsubishi", + "UN1": "Ford", + "UU1": "Dacia", + "UU2": "Oltcit", + "UU3": "ARO", + "UU4": "Roman", + "UU5": "Rocar", + "UU6": "Daewoo", + "UU7": "Euro Bus", + "UU9": "Astra Bus", + "UV9": "ATP Bus", + "UWR": "Robus", + "UZT": "UTB", + "U1A": "Sanos", + "U5Y": "Kia", + "U6Y": "Kia", + "VAG": "Steyr Daimler", + "VA4": "KSR", + "VBK": "KTM", + "VCF": "Fisker", + "VFA": "Renault", + "VFN": "Trailor", + "VF1": "Renault", + "VF2": "Renault", + "VF3": "Peugeot", + "VF4": "Talbot", + "VF5": "Iveco Unic", + "VF6": "Renault", + "VF7": "Citroën", + "VF8": "Matra", + "VGY": "Lohr", + "VG6": "Renault", + "VG7": "Renault", + "VG8": "Renault", + "VJR": "Ligier", + "VJY": "Gruau", + "VJ1": "Heuliez Bus", + "VJ2": "Mia Electric", + "VK1": "SEG", + "VK2": "Grandin", + "VK8": "Venturi", + "VLG": "Aixam-Mega", + "VLU": "Scania", + "VL4": "Citroën", + "VMK": "Renault", + "VM3": "Lamberet", + "VN1": "Renault", + "VN4": "Voxan", + "VNE": "Iveco", + "VNK": "Toyota", + "VNV": "Nissan", + "VRW": "Goupil", + "VR1": "DS", + "VR3": "Peugeot", + "VR7": "Citroën", + "VXE": "Opel", + "VXF": "Fiat", + "VXK": "Opel", + "VYF": "Fiat", + "VSA": "Mercedes-Benz", + "VSC": "Talbot", + "VSE": "Santana Suzuki", + "VSF": "Santana", + "VSK": "Nissan", + "VSR": "Leciñena", + "VSS": "SEAT", + "VSX": "Opel", + "VSY": "Renault", + "VS1": "Pegaso", + "VS5": "Renault", + "VS6": "Ford", + "VS7": "Citroën", + "VS8": "Peugeot", + "VTR": "Gas Gas", + "VVC": "SOR Ibrica", + "VV1": "Lecitrailer", + "VWA": "Nissan", + "VWF": "Guillén", + "VWV": "Volkswagen", + "WAC": "Audi", + "WAG": "Neoplan", + "WAP": "Alpina", + "WAU": "Audi", + "WA1": "Audi", + "WBA": "BMW", + "WBJ": "Bitters", + "WBS": "BMW", + "WBU": "Bürstner", + "WBX": "BMW", + "WBY": "BMW", + "WB0": "Böckmann Fahrzeugwerke GmbH", + "WB1": "BMW", + "WB5": "BMW", + "WCD": "Freightliner", + "WDB": "Mercedes-Benz Maybach", + "WDC": "Mercedes-Benz", + "WDD": "Mercedes-Benz", + "WDF": "Mercedes-Benz", + "WDR": "Freightliner", + "WDT": "Dethleffs", + "WDW": "Dodge", + "WDY": "Freightliner", + "WDZ": "Mercedes-Benz", + "WD0": "Dodge", + "WD2": "Freightliner", + "WD3": "Mercedes-Benz", + "WD4": "Mercedes-Benz", + "WD5": "Freightliner", + "WD6": "Freightliner", + "WD8": "Dodge", + "WEB": "Evobus GmbH", + "WEL": "e.GO Mobile AG", + "WFC": "Fendt", + "WFD": "Fliegl Trailer", + "WF0": "Ford", + "WF1": "Merkur", + "WHB": "Hobby", + "WHD": "Humbaur GmbH", + "WHW": "Hako GmbH", + "WHY": "Hymer", + "WJM": "Iveco", + "WJR": "Irmscher", + "WKE": "Krone", + "WKK": "Setra", + "WKN": "Knaus", + "WK0": "Kögel", + "WLA": "Langendorf", + "WMA": "MAN & Bus", + "WME": "smart", + "WMW": "MINI", + "WMX": "Mercedes-Benz", + "WMZ": "MINI", + "WNA": "Next.e.GO Mobile SE", + "WP0": "Porsche", + "WP1": "Porsche", + "WSK": "Schmitz-Cargobull", + "WSM": "Schmitz-Cargobull", + "WSV": "Aebi Schmidt", + "WS5": "StreetScooter", + "WS7": "Sono", + "WTA": "Tabbert", + "WUA": "Audi", + "WU1": "Audi", + "WVG": "Volkswagen", + "WVP": "Viseon Bus", + "WVW": "Volkswagen", + "WV1": "Volkswagen", + "WV2": "Volkswagen", + "WV3": "Volkswagen", + "WV4": "Volkswagen", + "WZ1": "Toyota", + "W0L": "Opel", + "W0V": "Opel", + "W04": "Buick", + "W06": "Cadillac", + "W08": "Saturn Astra", + "W1A": "smart", + "W1K": "Mercedes-Benz", + "W1N": "Mercedes-Benz", + "W1T": "Mercedes-Benz", + "W1V": "Mercedes-Benz", + "W1W": "Mercedes-Benz", + "W1Y": "Mercedes-Benz", + "W1Z": "Mercedes-Benz", + "W2W": "Freightliner", + "W2Y": "Freightliner", + "W2Z": "Freightliner", + "XLA": "DAF Bus", + "XLB": "Volvo.", + "XLC": "Ford", + "XLD": "Pacton", + "XLE": "Scania", + "XLK": "Burg", + "XLR": "DAF", + "XLV": "DAF", + "XL3": "Ebusco", + "XL4": "Lightyear", + "XMC": "Mitsubishi", + "XMD": "Mitsubishi", + "XMG": "VDL Bus", + "XMR": "Nooteboom Trailers", + "XM4": "RAVO Holding", + "XNB": "Mitsubishi", + "XNC": "Mitsubishi", + "XNL": "VDL Bus & Coach", + "XPN": "Knapen Trailers", + "XP7": "Tesla", + "XTA": "Lada", + "XTB": "Moskvitch", + "XTC": "KAMAZ", + "XTE": "ZAZ", + "XTF": "GolAZ", + "XTH": "GAZ", + "XTK": "IzhAvto", + "XTP": "Ural", + "XTT": "UAZ", + "XTU": "Trolza", + "XTW": "LAZ", + "XTY": "LiAZ", + "XTZ": "ZiL", + "XUF": "General", + "XUU": "AvtoTor", + "XW7": "Toyota", + "XW8": "Volkswagen", + "XWB": "Daewoo", + "XWE": "AvtoTor", + "XWF": "AvtoTor", + "XX3": "Ujet", + "XZG": "Great Wall", + "X1E": "KAvZ", + "X1F": "NefAZ", + "X1M": "PAZ", + "X4X": "AvtoTor", + "X7L": "Renault", + "X7M": "Hyundai Vortex", + "X8U": "Scania", + "X96": "GAZ", + "X9F": "Ford", + "X9L": "GM", + "X9P": "Volvo", + "X9X": "Great Wall", + "YAF": "Faymonville", + "YAR": "Toyota", + "YA9": "Lambrecht Constructie NV", + "YBW": "Volkswagen", + "YB1": "Volvo", + "YB2": "Volvo", + "YB6": "Jonckheere", + "YE2": "Van Hool", + "YH1": "Solifer", + "YH2": "BRP", + "YH4": "Fisker", + "YK1": "Saab-Valmet", + "YSC": "Cadillac", + "YSM": "Polestars", + "YSP": "Volta AB", + "YSR": "Polestar", + "YS2": "Scania", + "YS3": "Saabs", + "YS4": "Scania", + "YTN": "Saab", + "YT7": "Kabe", + "YV1": "Volvo", + "YV2": "Volvo", + "YV3": "Volvos", + "YV4": "Volvo", + "YYC": "Think Nordic", + "Y3J": "Belkommunmash", + "Y3M": "MAZ", + "Y4F": "Ford", + "Y4K": "Geely", + "Y6D": "ZAZ", + "Y6J": "Bogdan", + "Y6L": "Hyundai", + "Y6U": "Škoda", + "Y7B": "Bogdan", + "Y7C": "Great Wall", + "Y7F": "Boryspil Bus", + "Y8A": "LAZ", + "Y9H": "LAZ", + "ZAA": "Autobianchi", + "ZAC": "Jeep Dodge Hornet", + "ZAM": "Maserati", + "ZAP": "Piaggio", + "ZAR": "Alfa Romeo", + "ZAS": "Alfa Romeo", + "ZBB": "Bertone", + "ZBN": "Benelli", + "ZBW": "Rayton-Fissore Magnum", + "ZCB": "Bartoletti", + "ZCF": "Iveco", + "ZCG": "Cagiva", + "ZCM": "Menarinibus", + "ZC2": "Chrysler Maserati", + "ZDC": "Honda", + "ZDF": "Ferrari", + "ZDM": "Ducati", + "ZDT": "De Tomaso", + "ZDY": "Cacciamali", + "ZD0": "Yamaha", + "ZD3": "Beta Motor", + "ZD4": "Aprilia", + "ZES": "Bimota", + "ZFA": "Fiat", + "ZFB": "Fiat", + "ZFC": "Fiat", + "ZFF": "Ferrari", + "ZFM": "Fantic", + "ZFR": "Pininfarina", + "ZF4": "Qvale", + "ZGA": "Iveco Bus", + "ZGU": "Moto Guzzi", + "ZHW": "Lamborghini", + "ZJM": "Malaguti", + "ZJN": "Innocenti", + "ZJT": "Italjet", + "ZLA": "Lancia", + "ZLF": "Tazzari", + "ZLM": "Moto Morini", + "ZLV": "Laverda", + "ZNN": "Energica", + "ZN3": "Iveco Defence", + "ZN6": "Maserati", + "ZPB": "Lamborghini", + "ZPY": "DR", + "ZRG": "Tazzari", + "ZSG": "Ferrari", + "ZY1": "Adria", + "Z6F": "Ford", + "Z76": "SEMAZ", + "Z8M": "Marussia", + "Z8N": "Nissan", + "Z8T": "PCMA", + "Z9M": "Mercedes-Benz", + "Z94": "Hyundai", + "1AC": "American Corporation", + "1AF": "American LaFrance", + "1B3": "Dodge", + "1B4": "Dodge", + "1B7": "Dodge", + "1BA": "Blue Bird", + "1BB": "Blue Bird", + "1BL": "Balko", + "1C3": "Chrysler", + "1C4": "Chrysler", + "1C6": "Chrysler", + "1C8": "Chrysler", + "1CM": "Checker", + "1CU": "Cushman Haulster", + "1CY": "Cranerier", + "1D3": "Dodge", + "1D4": "Dodge", + "1D7": "Dodge", + "1D8": "Dodge", + "1FA": "Ford", + "1FB": "Ford", + "1FC": "Ford", + "1FM": "Ford", + "1FT": "Ford", + "1FU": "Freightliner", + "1FV": "Freightliner", + "1F1": "Ford", + "1F6": "Ford", + "1G": "GM", + "1G0": "Opel", + "1G1": "Chevrolet", + "1G2": "Pontiac", + "1G3": "Oldsmobile", + "1G4": "Buick", + "1G5": "GMC", + "1G6": "Cadillac", + "1G7": "Pontiac", + "1G8": "Saturn", + "1GA": "Chevrolet", + "1GC": "Chevrolet", + "1GF": "Flxible", + "1GG": "Isuzu", + "1GH": "Holden", + "1GJ": "GMC", + "1GK": "GMC", + "1GM": "Pontiac", + "1GN": "Chevrolet", + "1GT": "GMC", + "1GY": "Cadillac", + "1HD": "Harley-Davidson", + "1HG": "Honda", + "1HS": "International & Caterpillar", + "1JC": "Jeep", + "1JT": "Jeep", + "1JU": "Marmon", + "1J4": "Jeep", + "1J7": "Jeep", + "1J8": "Jeep", + "1LN": "Lincoln", + "1L1": "Lincoln", + "1MB": "Mercedes-Benz", + "1ME": "Mercury", + "1MR": "Continental", + "1M0": "John Deere Gator", + "1M1": "Mack USA", + "1M2": "Mack USA", + "1M3": "Mack USA", + "1M4": "Mack USA", + "1N4": "Nissan", + "1N6": "Nissan", + "1NX": "Toyota", + "1P3": "Plymouth", + "1P4": "Plymouth", + "1PY": "John Deere", + "1T7": "Thomas Built Buses", + "1T8": "Thomas Built Buses", + "1TC": "Coachmen", + "1TU": "Transportation Manufacturing Corporation", + "1UJ": "Jayco", + "1UT": "Jeep", + "1VH": "Orion Bus", + "1VW": "Volkswagen", + "1V1": "Volkswagen", + "1V2": "Volkswagen", + "1WT": "Winnebago", + "1WU": "White Motor", + "1XA": "Excalibur", + "1XK": "Kenworth", + "1XM": "Renault", + "1XP": "Peterbilt", + "1Y1": "Chevrolet", + "1YJ": "Rokon", + "1YV": "Mazda", + "1ZV": "Ford", + "1ZW": "Mercury", + "10T": "Oshkosh", + "12A": "Avanti", + "137": "Hummer", + "15G": "Gillig bus", + "16C": "Clenet Coachworks", + "16X": "Vixen", + "19U": "Acura", + "19V": "Acura", + "19X": "Honda", + "2A3": "Imperial", + "2BC": "Jeep", + "2BP": "Ski-Doo", + "2B1": "Orion Bus", + "2B3": "Dodge", + "2B4": "Dodge", + "2B5": "Dodge", + "2B7": "Dodge", + "2C1": "Chevrolet", + "2C3": "Chrysler", + "2C4": "Chrysler", + "2C7": "Pontiac", + "2C8": "Chrysler", + "2CC": "American Corporation", + "2CG": "Pontiac", + "2CK": "Pontiac", + "2CM": "American Corporation", + "2CN": "Chevrolet", + "2CT": "GMC", + "2D4": "Dodge", + "2D7": "Dodge", + "2D8": "Dodge", + "2EZ": "Electra Meccanica", + "2FA": "Ford", + "2FH": "Zenn", + "2FM": "Ford", + "2FT": "Ford", + "2FU": "Freightliner", + "2FV": "Freightliner", + "2FW": "Sterling", + "2FY": "New Flyer", + "2Gx": "GM", + "2G0": "GMC", + "2G1": "Chevrolet", + "2G2": "Pontiac", + "2G3": "Oldsmobile", + "2G4": "Buick", + "2G5": "GMC", + "2G6": "Cadillac", + "2G7": "Pontiac", + "2G8": "Chevrolet", + "2GA": "Chevrolet", + "2GC": "Chevrolet", + "2GH": "GMC", + "2GJ": "GMC", + "2GK": "GMC", + "2GN": "Chevrolet", + "2GT": "GMC", + "2HG": "Honda", + "2HH": "Acura", + "2HJ": "Honda", + "2HK": "Honda", + "2HM": "Hyundai", + "2HN": "Acura", + "2HS": "International Trucks", + "2J4": "Jeep", + "2LM": "Lincoln", + "2LN": "Lincoln", + "2M1": "Mack", + "2M2": "Mack", + "2ME": "Mercury", + "2MG": "Motor Coach Industries", + "2MR": "Mercury", + "2NV": "Nova Bus", + "2P3": "Plymouth", + "2P4": "Plymouth", + "2P5": "Plymouth", + "2PC": "Prevost", + "2S2": "Suzuki", + "2S3": "Suzuki", + "2T1": "Toyota", + "2T2": "Lexus", + "2T3": "Toyota", + "2V4": "Volkswagen", + "2V8": "Volkswagen", + "2WK": "WWestern Star Truck", + "2XK": "Kenworth", + "2XM": "Eagle Premier", + "2XP": "Peterbilt Truck", + "3AK": "Freightliner", + "3AL": "Freightliner", + "3AX": "Scania", + "3BE": "Scania", + "3BJ": "Western Star", + "3B3": "Dodge", + "3B4": "Dodge", + "3B7": "Dodge", + "3C3": "Chrysler", + "3C4": "Chrysler", + "3C6": "Chrysler", + "3C8": "Chrysler", + "3CE": "Volvo", + "3CZ": "Honda", + "3D3": "Dodge", + "3D4": "Dodge", + "3D7": "Dodge", + "3FA": "Ford", + "3FC": "Ford", + "3FE": "Ford", + "3FM": "Ford", + "3FN": "Ford", + "3FT": "Ford", + "3F6": "Sterling Bullet", + "3G": "GM", + "3G0": "Holden", + "3G1": "Chevrolet", + "3G2": "Pontiac", + "3G4": "Buick", + "3G5": "Buick", + "3G7": "Pontiac", + "3GC": "Chevrolet", + "3GK": "GMC", + "3GM": "Holden", + "3GN": "Chevrolet", + "3GP": "Honda", + "3GS": "Saturn", + "3GT": "GMC", + "3GY": "Cadillac", + "3H3": "Hyundai", + "3HC": "International Trucks", + "3HG": "Honda", + "3HS": "International Trucks & Caterpillar", + "3JB": "BRP", + "3KP": "Kia Hyundai", + "3LN": "Lincoln", + "3MA": "Mercury", + "3MD": "Mazda", + "3ME": "Mercury", + "3MF": "BMW", + "3MV": "Mazda", + "3MW": "BMW", + "3MY": "Toyota", + "3MZ": "Mazda", + "3N1": "Nissan", + "3N6": "Nissan Chevrolet", + "3N8": "Nissan", + "3NS": "Polaris", + "3NE": "Polaris", + "3P3": "Plymouth", + "3PC": "Infiniti", + "3TM": "Toyota", + "3TY": "Toyota", + "3VV": "Volkswagen", + "3VW": "Volkswagen", + "3WK": "Kenworth", + "3WP": "Peterbilt Truck", + "4A3": "Mitsubishi", + "4A4": "Mitsubishi", + "4B3": "Dodge", + "4C3": "Chrysler", + "4DR": "IC Bus", + "4EN": "E-ONE", + "4F2": "Mazda", + "4F4": "Mazda", + "4G1": "Chevrolet", + "4G2": "Pontiac", + "4G3": "Toyota", + "4G5": "GM", + "4GD": "Opel", + "4JG": "Mercedes-Benz", + "4KL": "Isuzu", + "4M2": "Mercury", + "4ML": "Oshkosh Trailer", + "4N2": "Nissan", + "4NU": "Isuzu", + "4P1": "Pierce", + "4P3": "Mitsubishi", + "4RK": "Nova Bus", + "4S1": "Isuzu", + "4S2": "Isuzu", + "4S3": "Subaru", + "4S4": "Subaru", + "4S6": "Honda", + "4TA": "Toyota", + "4T1": "Toyota", + "4T3": "Toyota", + "4T4": "Toyota", + "4UF": "Arctic Cat", + "4US": "BMW", + "4UZ": "Freightliner", + "4V1": "WhiteGMC Truck", + "4V3": "Volvo", + "4V4": "Volvo", + "4V6": "Volvo", + "4VA": "Volvo", + "4VG": "Volvo", + "4W5": "Acura", + "4XA": "Polaris", + "4X4": "Forest River", + "4YM": "Carry-On Trailer, Inc.", + "4Z3": "American LaFrance", + "43C": "Consulier", + "478": "Honda", + "480": "Sterling", + "5AS": "Global Electric Motorcars", + "5BP": "Solectria", + "5BZ": "Nissan", + "5CX": "Shelby", + "5DF": "Thomas Dennis", + "5FC": "Columbia Vehicle", + "5FN": "Honda", + "5FP": "Honda", + "5FR": "Acura", + "5FY": "New Flyer", + "5GA": "Buick", + "5GD": "Daewoo", + "5GN": "Hummer", + "5GR": "Hummer", + "5GT": "Hummer", + "5GZ": "Saturn", + "5G8": "Holden", + "5HD": "Harley-Davidson", + "5J6": "Honda", + "5J8": "Acura", + "5KB": "Honda", + "5KJ": "Western Star", + "5KK": "Western Star", + "5L1": "Lincoln", + "5LM": "Lincoln", + "5LT": "Lincoln", + "5N1": "Nissan Infiniti", + "5N3": "Infiniti", + "5NH": "Forest River", + "5NM": "Hyundai", + "5NP": "Hyundai", + "5NT": "Hyundai", + "5S3": "Saab", + "5SA": "Suzuki", + "5TB": "Toyota", + "5TD": "Toyota", + "5TE": "Toyota", + "5TF": "Toyota", + "5UM": "BMW", + "5UX": "BMW", + "5VF": "American Electric Vehicle Company", + "5XX": "Kia", + "5XY": "Kia Hyundai", + "5YF": "Toyota", + "5YJ": "Tesla", + "5YM": "BMW ", + "5YN": "Cruise", + "5Y2": "Pontiac", + "5ZT": "Forest River", + "5Z6": "Suzuki", + "50E": "Lucid", + "50G": "Karma Automotive", + "516": "Autocar", + "523": "VPG", + "52C": "GEM", + "53G": "Coda Automotive", + "53T": "Think North America in Elkhart, IN", + "546": "EBR", + "54C": "Winnebago", + "54D": "Chevrolet", + "55S": "Mercedes-Benz", + "57W": "Mobility Ventures", + "57X": "Polaris Slingshot", + "58A": "Lexus", + "6AB": "MAN", + "6AM": "Jayco", + "6F1": "Ford", + "6F2": "Iveco", + "6F4": "Nissan", + "6F5": "Kenworth", + "6FM": "Mack", + "6FP": "Ford", + "6G1": "GM", + "6G2": "Pontiac", + "6G3": "GM", + "6H8": "GM", + "6MM": "Mitsubishi", + "6MP": "Mercury", + "6T1": "Toyota", + "6U9": "Privately", + "7A1": "Mitsubishi", + "7A3": "Honda", + "7A4": "Toyota", + "7A5": "Ford", + "7A7": "Nissan", + "7FA": "Honda", + "7FC": "Rivian", + "7F7": "Arcimoto", + "7G2": "Tesla", + "7H4": "Hino", + "7H8": "Cenntro", + "7JD": "Volvo", + "7JR": "Volvo", + "7JZ": "Proterra", + "7KG": "Vanderhall", + "7MM": "Mazda", + "7MU": "Toyota", + "7MW": "Cenntro", + "7NA": "Navistar", + "7NY": "Lordstown", + "7PD": "Rivian", + "7SA": "Tesla", + "7SU": "Blue Arc", + "7SV": "Toyota", + "7SX": "Global Electric Motorcars", + "7SY": "Polestar", + "7TN": "Canoo", + "7VV": "Ree", + "7Z0": "Zoox", + "8AB": "Mercedes-Benz", + "8AC": "Mercedes-Benz", + "8AD": "Peugeot", + "8AE": "Peugeot", + "8AF": "Ford", + "8AG": "Chevrolet", + "8AJ": "Toyota", + "8AK": "Suzuki", + "8AN": "Nissan", + "8AP": "Fiat", + "8AT": "Iveco", + "8AW": "Volkswagen", + "8A1": "Renault", + "8A3": "Scania", + "8BB": "Agrale", + "8BC": "Citroën", + "8BR": "Mercedes-Benz", + "8BT": "Mercedes-Benz", + "8BU": "Mercedes-Benz", + "8C3": "Honda", + "8G1": "Renault", + "8GD": "Peugeot", + "8GG": "Chevrolet", + "8LD": "Chevrolet", + "8LF": "Maresa", + "8LG": "Aymesa", + "8L4": "Great Wall", + "8XD": "Ford", + "9BD": "Fiat", + "9BF": "Ford", + "9BG": "Chevrolet", + "9BH": "Hyundai", + "9BM": "Mercedes-Benz", + "9BN": "Mafersa", + "9BR": "Toyota", + "9BS": "Scania", + "9BV": "Volvo", + "9BW": "Volkswagen", + "9DF": "Puma", + "932": "Harley-Davidson", + "935": "Citroën", + "936": "Peugeot", + "937": "Dodge", + "93C": "Chevrolet", + "93H": "Honda", + "93K": "Volvo", + "93P": "Volare", + "93S": "Navistar", + "93R": "Toyota", + "93U": "Audi", + "93W": "Fiat", + "93V": "Navistar", + "93X": "Mitsubishi", + "93Y": "Renault", + "93Z": "Iveco", + "94D": "Nissan", + "94N": "RWM", + "95P": "CAOA", + "988": "Jeep Fiat", + "98M": "BMW", + "98P": "DAF", + "98R": "Chery", + "99A": "Audi", + "99H": "Shineray", + "99J": "Jaguar Land Rover", + "99K": "Haojue Kymco", + "99L": "BYD", + "9FB": "Renault", + "9FC": "Compañía", + "9GA": "Chevrolet", + "9UJ": "Chery", + "9UK": "Lifan", + "9UT": "Dongfeng", + "9UW": "Kia", + "9VC": "Fiat", + "9V7": "Citroën", + "9V8": "Peugeot", + "MM0": "Mazda", + "MM6": "Mazda", + "MM7": "Mazda", + "MM8": "Mazda" +} + + +def decode_vds(manufacturer, vds): + vds_model_mapping = { + 'Honda': { + 1: { + 'F': 'Agila', + 'G': 'Insignia', + 'J': 'Mokka', + 'L': 'Antara', + 'M': 'Movano', + 'P': ['Astra J', 'Zafira C'], + 'R': 'Astra GTC J', + 'S': 'Meriva', + 'V': 'Combo II', + 'W': 'Cascada', + } + }, + + 'Kia': { + 1: { + 'A': ['Rio', 'EV9'], + 'C': ['Niro', 'EV6'], + 'D': 'Rio', + 'E': ['Stinger', 'Seltos'], + 'F': ['Forte', 'K4'], + 'G': ['Optima', 'Magentis', 'K5'], + 'H': 'Rondo', + 'J': 'Soul', + 'K': ['Mohave', 'Sorento', 'Sportage'], + 'L': ['Cadenza', 'K9'], + 'M': 'Sedona', + 'N': 'Carnival', + 'P': ['Sportage', 'Sorento', 'Telluride'], + 'R': 'Sorento', + 'S': 'K9' + } + }, + + 'Peugeot': { + 1: { + 'A': '604', + '2': '206', + '8': ['406', '508'], + '6': '407', + '9': '308', + "4": '308', + 'B': 'Expert', + 'C': ['208', '504'], + 'D': '301', + '3': '307', + '7': ['306', 'Partner'], + 'U': '2008', + 'M': '3008', + } + }, + + 'Toyota': { + 5: { # 5th character in VDS + '0': 'MR2 Spyder', + '1': 'Tundra', + '3': ['Echo', 'Yaris'], + 'A': ['Highlander', 'Sequoia', 'Celica', 'Supra'], + 'B': 'Avalon', + 'C': ['Sienna', 'Previa'], + 'D': 'T100', + 'E': ['Corolla', 'Matrix'], + 'F': 'FJ Cruiser', + 'G': 'Hilux', + 'H': 'Highlander', + 'J': 'Land Cruiser', + 'K': 'Camry', + 'L': ['Tercel', 'Paseo'], + 'M': 'Previa', + 'N': 'Tacoma', + 'P': 'Camry', + 'R': ['4Runner', 'Corolla'], + 'T': 'Celica FWD', + 'U': 'Prius', + 'V': 'RAV4', + 'W': 'MR2 non Spyder', + 'X': 'Cressida', + } + }, + + 'Nissan': { + 2: { + 'A': ['Armada', 'Titan', 'Maxima'], + 'B': 'Sentra', + 'C': 'Versa (07-11)', + 'D': ['Truck', 'Xterra (00-04)', 'Frontier'], + 'J': 'Maxima', + 'L': 'Altima', + 'N': 'Xterra (05-11)', + 'P': 'Kicks', + 'R': 'Pathfinder', + 'S': ['240SX', 'Rogue (08-11)'], + 'T': 'X Trail', + 'U': 'Altima', + 'Y': 'Patrol', + 'Z': ['300Z', '350Z', 'Murano'], + } + }, + + 'Renault': { + 2: { # 5th character in VDS + '0': 'Twingo', + '1': 'R4', + '2': 'R25', + '3': 'R4', + '4': ['R21', 'Express'], + '5': ['Clio I', 'Laguna', 'R19', 'Safrane'], + 'A': ['Megane I', 'Master'], + 'B': 'Clio II', + 'C': 'Kangoo', + 'D': 'Master', + 'E': ['Espace III', 'Avantime'], + 'G': 'Laguna II', + 'H': 'Master Propulsion', + 'J': ['Vel Satis', 'New Trafic'], + 'K': 'Espace IV', + 'L': 'Trafic', + 'M': 'Megan II', + 'P': 'Modus', + 'S': ['Logan', 'Sandero', 'Duster', 'Dokker', 'Lodgy'], + 'Y': 'Koleos', + } + } + } + + manufacturer_mapping = vds_model_mapping.get(manufacturer, {}) + + for position, models in manufacturer_mapping.items(): + if position - 1 < len(vds): + key = vds[position - 1] + model = models.get(key, None) + if model: + return model + + return "Unknown Model" + + +def decode_vin(vin): + if len(vin) != 17: + raise ValueError("Invalid VIN length. VIN must be 17 characters.") + + pattern = r"^[A-HJ-NPR-Z0-9]{17}$" + if not re.match(pattern, vin): + raise Exception(f"VIN number must only contain alphanumeric symbols except 'I', 'O', and 'Q' ") + + vin = vin.upper() + + wmi = vin[:3] + vds = vin[3:9] + vis = vin[9:17] + + manufacturer = wmi_manufacturer_mapping.get(wmi, vds) + + year_code = vis[0] + year = vin_years(year_code) + model = decode_vds(manufacturer, vds) + + return { + 'VIN': vin, + 'Manufacturer': manufacturer, + 'Year': year[0], + 'Model': model + } + + +# JTDKB3FU4G3507653 +# VR3USHNLWRJ521303 +# KNARH81E8P5194005 +# Example usage +vin_number = 'VR7BAHNL9SE001030' +decoded_vin = decode_vin(vin_number) +print(decoded_vin) + + diff --git a/inventory/.DS_Store b/inventory/.DS_Store new file mode 100644 index 00000000..1a6e17f7 Binary files /dev/null and b/inventory/.DS_Store differ diff --git a/inventory/__init__.py b/inventory/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/inventory/__pycache__/__init__.cpython-311.pyc b/inventory/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..4dd1f02a Binary files /dev/null and b/inventory/__pycache__/__init__.cpython-311.pyc differ diff --git a/inventory/__pycache__/admin.cpython-311.pyc b/inventory/__pycache__/admin.cpython-311.pyc new file mode 100644 index 00000000..dda6f1fc Binary files /dev/null and b/inventory/__pycache__/admin.cpython-311.pyc differ diff --git a/inventory/__pycache__/apps.cpython-311.pyc b/inventory/__pycache__/apps.cpython-311.pyc new file mode 100644 index 00000000..b8f88053 Binary files /dev/null and b/inventory/__pycache__/apps.cpython-311.pyc differ diff --git a/inventory/__pycache__/context_processors.cpython-311.pyc b/inventory/__pycache__/context_processors.cpython-311.pyc new file mode 100644 index 00000000..6a448931 Binary files /dev/null and b/inventory/__pycache__/context_processors.cpython-311.pyc differ diff --git a/inventory/__pycache__/filters.cpython-311.pyc b/inventory/__pycache__/filters.cpython-311.pyc new file mode 100644 index 00000000..a30b11ba Binary files /dev/null and b/inventory/__pycache__/filters.cpython-311.pyc differ diff --git a/inventory/__pycache__/forms.cpython-311.pyc b/inventory/__pycache__/forms.cpython-311.pyc new file mode 100644 index 00000000..72d6831d Binary files /dev/null and b/inventory/__pycache__/forms.cpython-311.pyc differ diff --git a/inventory/__pycache__/middleware.cpython-311.pyc b/inventory/__pycache__/middleware.cpython-311.pyc new file mode 100644 index 00000000..7518b3e3 Binary files /dev/null and b/inventory/__pycache__/middleware.cpython-311.pyc differ diff --git a/inventory/__pycache__/mixins.cpython-311.pyc b/inventory/__pycache__/mixins.cpython-311.pyc new file mode 100644 index 00000000..624f71e9 Binary files /dev/null and b/inventory/__pycache__/mixins.cpython-311.pyc differ diff --git a/inventory/__pycache__/models.cpython-311.pyc b/inventory/__pycache__/models.cpython-311.pyc new file mode 100644 index 00000000..86e40de5 Binary files /dev/null and b/inventory/__pycache__/models.cpython-311.pyc differ diff --git a/inventory/__pycache__/services.cpython-311.pyc b/inventory/__pycache__/services.cpython-311.pyc new file mode 100644 index 00000000..30347aaa Binary files /dev/null and b/inventory/__pycache__/services.cpython-311.pyc differ diff --git a/inventory/__pycache__/tables.cpython-311.pyc b/inventory/__pycache__/tables.cpython-311.pyc new file mode 100644 index 00000000..2f54205a Binary files /dev/null and b/inventory/__pycache__/tables.cpython-311.pyc differ diff --git a/inventory/__pycache__/urls.cpython-311.pyc b/inventory/__pycache__/urls.cpython-311.pyc new file mode 100644 index 00000000..5dcc25a1 Binary files /dev/null and b/inventory/__pycache__/urls.cpython-311.pyc differ diff --git a/inventory/__pycache__/utils.cpython-311.pyc b/inventory/__pycache__/utils.cpython-311.pyc new file mode 100644 index 00000000..75684cf6 Binary files /dev/null and b/inventory/__pycache__/utils.cpython-311.pyc differ diff --git a/inventory/__pycache__/views.cpython-311.pyc b/inventory/__pycache__/views.cpython-311.pyc new file mode 100644 index 00000000..b3449f27 Binary files /dev/null and b/inventory/__pycache__/views.cpython-311.pyc differ diff --git a/inventory/admin.py b/inventory/admin.py new file mode 100644 index 00000000..71b57989 --- /dev/null +++ b/inventory/admin.py @@ -0,0 +1,76 @@ +from django.contrib import admin +from . import models + + +admin.site.register(models.Dealer) +admin.site.register(models.Vendor) +admin.site.register(models.Customer) +admin.site.register(models.Car) +admin.site.register(models.CarFinance) +admin.site.register(models.CarColors) +admin.site.register(models.CarRegistration) +admin.site.register(models.CustomCard) +admin.site.register(models.CarSpecificationValue) + + +@admin.register(models.CarMake) +class CarMakeAdmin(admin.ModelAdmin): + list_display = ('name', 'arabic_name', 'is_sa_import') + search_fields = ('name', 'arabic_name') + + class Meta: + verbose_name = "Car Make" + ordering = ('name',) + + +@admin.register(models.CarModel) +class CarModelAdmin(admin.ModelAdmin): + list_display = ('name', 'arabic_name', 'id_car_make', 'get_is_sa_import') + search_fields = ('name', 'arabic_name') + list_filter = ('id_car_make__is_sa_import', 'id_car_make') + sortable_by = ['name', 'arabic_name', 'id_car_make'] + + def get_is_sa_import(self, obj): + return obj.id_car_make.is_sa_import + get_is_sa_import.boolean = True + get_is_sa_import.short_description = 'Is SA Import' + + class Meta: + verbose_name = "Car Model" + ordering = ('name',) + + +@admin.register(models.CarSerie) +class CarSeriesAdmin(admin.ModelAdmin): + list_display = ('name', 'arabic_name', 'id_car_model') + search_fields = ('name', 'id_car_model__name') + list_filter = ('id_car_model__id_car_make__is_sa_import', + 'id_car_model__id_car_make__name',) + + class Meta: + verbose_name = "Car Series" + + +@admin.register(models.CarTrim) +class CarTrimAdmin(admin.ModelAdmin): + list_display = ('name', + 'id_car_serie__name', + 'id_car_serie__id_car_model__name', + 'id_car_serie__id_car_model__id_car_make__name') + search_fields = ('name', 'arabic_name', 'id_car_serie__id_car_model__name') + list_filter = ('id_car_serie__id_car_model__id_car_make__is_sa_import', + 'id_car_serie__id_car_model__id_car_make__name') + + class Meta: + verbose_name = "Car Trim" + + +@admin.register(models.CarSpecification) +class CarSpecificationAdmin(admin.ModelAdmin): + list_display = ('name', 'arabic_name', 'id_parent') + search_fields = ('name', 'id_parent') + list_filter = ('id_parent',) + + class Meta: + verbose_name = "Car Specification" + diff --git a/inventory/apps.py b/inventory/apps.py new file mode 100644 index 00000000..905749f1 --- /dev/null +++ b/inventory/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class InventoryConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'inventory' diff --git a/inventory/context_processors.py b/inventory/context_processors.py new file mode 100644 index 00000000..34579a3d --- /dev/null +++ b/inventory/context_processors.py @@ -0,0 +1,9 @@ + + +def breadcrumbs(request): + breadcrumbs = [] + path = request.path.strip('/').split('/') + for i in range(len(path)): + url = '/' + '/'.join(path[:i+1]) + '/' + breadcrumbs.append({'name': path[i].capitalize(), 'url': url}) + return {'breadcrumbs': breadcrumbs} \ No newline at end of file diff --git a/inventory/filters.py b/inventory/filters.py new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/inventory/filters.py @@ -0,0 +1 @@ + diff --git a/inventory/forms.py b/inventory/forms.py new file mode 100644 index 00000000..b31e1c39 --- /dev/null +++ b/inventory/forms.py @@ -0,0 +1,163 @@ +from django import forms +from .mixins import AddClassMixin +from .models import ( + Dealer, + # Branch, + Vendor, + Customer, + Car, + CarFinance, + CustomCard, + CarRegistration, + CarColors +) +from django.contrib.contenttypes.forms import generic_inlineformset_factory +from django.utils.translation import gettext_lazy as _ + + +# Dealer Form +class DealerForm(forms.ModelForm): + class Meta: + model = Dealer + fields = ['crn', 'vrn', 'arabic_name', 'name', 'phone_number', 'address', 'logo'] + + +# Customer Form +class CustomerForm(forms.ModelForm, AddClassMixin): + class Meta: + model = Customer + fields = [ + 'first_name', 'middle_name', 'last_name', 'email', + 'national_id', 'phone_number', 'address' + ] + + +class CarForm(forms.ModelForm, AddClassMixin, ): + class Meta: + model = Car + fields = [ + 'vin', 'id_car_make', 'id_car_model', + 'year', 'id_car_serie', 'id_car_trim', + 'stock_type', 'remarks', 'mileage', 'receiving_date', 'vendor' + ] + widgets = { + 'receiving_date': forms.DateTimeInput(attrs={'type': 'datetime-local'}), + 'remarks': forms.Textarea(attrs={'rows': 2}), + } + + def __init__(self, *args, **kwargs): + dealer = kwargs.pop('dealer', None) + super().__init__(*args, **kwargs) + # if dealer: + # self.fields['branch'].queryset = Branch.objects.filter(dealer=dealer) + + if 'id_car_make' in self.fields: + queryset = self.fields['id_car_make'].queryset + self.fields['id_car_make'].choices = [ + (obj.id_car_make, obj.get_local_name()) for obj in queryset + ] + + +class CarUpdateForm(forms.ModelForm, AddClassMixin): + class Meta: + model = Car + fields = ['vendor', 'status', 'stock_type', 'mileage', 'receiving_date', 'remarks'] + + widgets = { + 'receiving_date': forms.DateTimeInput(attrs={'type': 'datetime-local'}), + 'remarks': forms.Textarea(attrs={'rows': 2}), + } + + def __init__(self, *args, **kwargs): + dealer = kwargs.pop('dealer', None) + super().__init__(*args, **kwargs) + + # if dealer and 'branch' in self.fields: + # self.fields['branch'].queryset = Branch.objects.filter(dealer=dealer) + # self.fields['branch'].choices = [ + # (branch.id, branch.get_local_name()) for branch in self.fields['branch'].queryset + # ] + + if 'vendor' in self.fields: + queryset = self.fields['vendor'].queryset + if queryset: + self.fields['vendor'].choices = [ + (vendor.id, vendor.get_local_name()) for vendor in queryset + ] + + +class CarFinanceForm(AddClassMixin, forms.ModelForm): + profit_margin_percentage = forms.DecimalField( + max_digits=10, + decimal_places=2, + min_value=0, + max_value=100, + label="Profit Margin", + required=True, + widget=forms.NumberInput(attrs={'min': '0', 'max': '100', 'step': '0.01'}) + ) + vat_rate_percentage = forms.DecimalField( + max_digits=10, + decimal_places=2, + min_value=0, + max_value=100, + label="Vat Rate", + required=True, + widget=forms.NumberInput(attrs={'min': '0', 'max': '100', 'step': '0.01'}) + ) + + class Meta: + model = CarFinance + fields = ['cost_price'] + + def __init__(self, *args, **kwargs): + super(CarFinanceForm, self).__init__(*args, **kwargs) + if self.instance and self.instance.pk: + # Convert profit_margin from decimal to percentage for initial display + self.fields['profit_margin_percentage'].initial = self.instance.profit_margin * 100 + self.fields['vat_rate_percentage'].initial = self.instance.vat_rate * 100 + + def clean_profit_margin_percentage(self): + profit_margin_percentage = self.cleaned_data['profit_margin_percentage'] + if not (0 <= profit_margin_percentage <= 100): + raise forms.ValidationError('Profit margin must be between 0 and 100.') + return profit_margin_percentage + + def clean_vat_rate_percentage(self): + vat_rate_percentage = self.cleaned_data['vat_rate_percentage'] + if not (0 <= vat_rate_percentage <= 100): + raise forms.ValidationError('vat rate must be between 0 and 100.') + return vat_rate_percentage + + def save(self, commit=True): + instance = super(CarFinanceForm, self).save(commit=False) + profit_margin_percentage = self.cleaned_data['profit_margin_percentage'] + vat_rate_percentage = self.cleaned_data['vat_rate_percentage'] + instance.profit_margin = profit_margin_percentage / 100 + instance.vat_rate = vat_rate_percentage / 100 + if commit: + instance.save() + return instance + + +# Custom Card Form +class CustomCardForm(forms.ModelForm): + custom_date = forms.DateTimeField( + widget=forms.DateInput(attrs={'type': 'date'}), + label=_("Custom Date"), + ) + + class Meta: + model = CustomCard + fields = ['custom_number', 'custom_date'] + + +# Car Registration Form +class CarRegistrationForm(forms.ModelForm): + class Meta: + model = CarRegistration + fields = [ + 'car', 'plate_number', 'text1', 'text2', 'text3', 'registration_date' + ] + + diff --git a/inventory/management/.DS_Store b/inventory/management/.DS_Store new file mode 100644 index 00000000..07bd3626 Binary files /dev/null and b/inventory/management/.DS_Store differ diff --git a/inventory/management/__init__.py b/inventory/management/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/inventory/management/__pycache__/__init__.cpython-311.pyc b/inventory/management/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..98179969 Binary files /dev/null and b/inventory/management/__pycache__/__init__.cpython-311.pyc differ diff --git a/inventory/management/commands/.DS_Store b/inventory/management/commands/.DS_Store new file mode 100644 index 00000000..b3fcec79 Binary files /dev/null and b/inventory/management/commands/.DS_Store differ diff --git a/inventory/management/commands/__init__.py b/inventory/management/commands/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/inventory/management/commands/__pycache__/.DS_Store b/inventory/management/commands/__pycache__/.DS_Store new file mode 100644 index 00000000..004cc1ac Binary files /dev/null and b/inventory/management/commands/__pycache__/.DS_Store differ diff --git a/inventory/management/commands/__pycache__/__init__.cpython-311.pyc b/inventory/management/commands/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..0e0a9e4b Binary files /dev/null and b/inventory/management/commands/__pycache__/__init__.cpython-311.pyc differ diff --git a/inventory/management/commands/__pycache__/arabic_names.cpython-311.pyc b/inventory/management/commands/__pycache__/arabic_names.cpython-311.pyc new file mode 100644 index 00000000..b589ecb2 Binary files /dev/null and b/inventory/management/commands/__pycache__/arabic_names.cpython-311.pyc differ diff --git a/inventory/management/commands/__pycache__/create_fake_data.cpython-311.pyc b/inventory/management/commands/__pycache__/create_fake_data.cpython-311.pyc new file mode 100644 index 00000000..b04e8944 Binary files /dev/null and b/inventory/management/commands/__pycache__/create_fake_data.cpython-311.pyc differ diff --git a/inventory/management/commands/__pycache__/export_models.cpython-311.pyc b/inventory/management/commands/__pycache__/export_models.cpython-311.pyc new file mode 100644 index 00000000..4584ab1a Binary files /dev/null and b/inventory/management/commands/__pycache__/export_models.cpython-311.pyc differ diff --git a/inventory/management/commands/__pycache__/transfer_data.cpython-311.pyc b/inventory/management/commands/__pycache__/transfer_data.cpython-311.pyc new file mode 100644 index 00000000..3e51c4b1 Binary files /dev/null and b/inventory/management/commands/__pycache__/transfer_data.cpython-311.pyc differ diff --git a/inventory/management/commands/__pycache__/translate.cpython-311.pyc b/inventory/management/commands/__pycache__/translate.cpython-311.pyc new file mode 100644 index 00000000..7e4aa3f2 Binary files /dev/null and b/inventory/management/commands/__pycache__/translate.cpython-311.pyc differ diff --git a/inventory/middleware.py b/inventory/middleware.py new file mode 100644 index 00000000..e69de29b diff --git a/inventory/migrations/0001_initial.py b/inventory/migrations/0001_initial.py new file mode 100644 index 00000000..62d5b5f3 --- /dev/null +++ b/inventory/migrations/0001_initial.py @@ -0,0 +1,293 @@ +# Generated by Django 5.1.4 on 2024-12-04 23:43 + +import django.db.models.deletion +import inventory.mixins +import phonenumber_field.modelfields +from django.conf import settings +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ] + + operations = [ + migrations.CreateModel( + name='Car', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('vin', models.CharField(max_length=17, unique=True, verbose_name='VIN')), + ('year', models.IntegerField(verbose_name='Year')), + ('status', models.CharField(choices=[('available', 'Available'), ('sold', 'Sold'), ('hold', 'Hold'), ('damaged', 'Damaged')], default='available', max_length=10, verbose_name='Status')), + ('stock_type', models.CharField(choices=[('new', 'New'), ('used', 'Used')], default='new', max_length=10, verbose_name='Stock Type')), + ('remarks', models.TextField(blank=True, null=True, verbose_name='Remarks')), + ('mileage', models.IntegerField(blank=True, null=True, verbose_name='Mileage')), + ('receiving_date', models.DateTimeField(verbose_name='Receiving Date')), + ], + options={ + 'verbose_name': 'Car', + 'verbose_name_plural': 'Cars', + }, + ), + migrations.CreateModel( + name='CarMake', + fields=[ + ('id_car_make', models.AutoField(primary_key=True, serialize=False)), + ('name', models.CharField(max_length=255)), + ('arabic_name', models.CharField(max_length=255)), + ('logo', models.ImageField(blank=True, null=True, upload_to='car_make', verbose_name='logo')), + ('is_sa_import', models.BooleanField(default=False)), + ], + options={ + 'verbose_name': 'Make', + }, + bases=(models.Model, inventory.mixins.LocalizedNameMixin), + ), + migrations.CreateModel( + name='CarFinance', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('cost_price', models.DecimalField(decimal_places=2, max_digits=14, verbose_name='Cost Price')), + ('profit_margin', models.DecimalField(decimal_places=2, max_digits=10, verbose_name='Profit Margin')), + ('selling_price', models.DecimalField(decimal_places=2, editable=False, max_digits=14, verbose_name='Selling Price')), + ('vat_rate', models.DecimalField(decimal_places=2, default=0.15, max_digits=10, verbose_name='VAT Rate')), + ('vat_amount', models.DecimalField(decimal_places=2, editable=False, max_digits=12, verbose_name='VAT Amount')), + ('total', models.DecimalField(decimal_places=2, editable=False, max_digits=14, verbose_name='Total Amount')), + ('car', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='finances', to='inventory.car')), + ], + options={ + 'verbose_name': 'Car Financial Details', + }, + ), + migrations.AddField( + model_name='car', + name='id_car_make', + field=models.ForeignKey(blank=True, db_column='id_car_make', null=True, on_delete=django.db.models.deletion.DO_NOTHING, to='inventory.carmake', verbose_name='Make'), + ), + migrations.CreateModel( + name='CarModel', + fields=[ + ('id_car_model', models.AutoField(primary_key=True, serialize=False)), + ('name', models.CharField(max_length=255)), + ('arabic_name', models.CharField(max_length=255)), + ('id_car_make', models.ForeignKey(db_column='id_car_make', on_delete=django.db.models.deletion.DO_NOTHING, to='inventory.carmake')), + ], + options={ + 'verbose_name': 'Model', + }, + bases=(models.Model, inventory.mixins.LocalizedNameMixin), + ), + migrations.AddField( + model_name='car', + name='id_car_model', + field=models.ForeignKey(blank=True, db_column='id_car_model', null=True, on_delete=django.db.models.deletion.DO_NOTHING, to='inventory.carmodel', verbose_name='Model'), + ), + migrations.CreateModel( + name='CarRegistration', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('plate_number', models.IntegerField(verbose_name='Plate Number')), + ('text1', models.CharField(max_length=1, verbose_name='Text 1')), + ('text2', models.CharField(max_length=1, verbose_name='Text 2')), + ('text3', models.CharField(max_length=1, verbose_name='Text 3')), + ('registration_date', models.DateTimeField(verbose_name='Registration Date')), + ('car', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='registrations', to='inventory.car', verbose_name='Car')), + ], + options={ + 'verbose_name': 'Registration', + 'verbose_name_plural': 'Registrations', + }, + ), + migrations.CreateModel( + name='CarSerie', + fields=[ + ('id_car_serie', models.AutoField(primary_key=True, serialize=False)), + ('name', models.CharField(max_length=255)), + ('arabic_name', models.CharField(max_length=255)), + ('id_car_model', models.ForeignKey(db_column='id_car_model', on_delete=django.db.models.deletion.DO_NOTHING, to='inventory.carmodel')), + ], + options={ + 'verbose_name': 'Series', + }, + bases=(models.Model, inventory.mixins.LocalizedNameMixin), + ), + migrations.AddField( + model_name='car', + name='id_car_serie', + field=models.ForeignKey(blank=True, db_column='id_car_serie', null=True, on_delete=django.db.models.deletion.DO_NOTHING, to='inventory.carserie', verbose_name='Series'), + ), + migrations.CreateModel( + name='CarSpecification', + fields=[ + ('id_car_specification', models.AutoField(primary_key=True, serialize=False)), + ('name', models.CharField(max_length=255)), + ('arabic_name', models.CharField(max_length=255)), + ('id_parent', models.ForeignKey(blank=True, db_column='id_parent', null=True, on_delete=django.db.models.deletion.DO_NOTHING, to='inventory.carspecification')), + ], + options={ + 'verbose_name': 'Specification', + }, + bases=(models.Model, inventory.mixins.LocalizedNameMixin), + ), + migrations.CreateModel( + name='CarTrim', + fields=[ + ('id_car_trim', models.AutoField(primary_key=True, serialize=False)), + ('name', models.CharField(max_length=255)), + ('arabic_name', models.CharField(max_length=255)), + ('start_production_year', models.IntegerField(blank=True, null=True)), + ('end_production_year', models.IntegerField(blank=True, null=True)), + ('id_car_serie', models.ForeignKey(db_column='id_car_serie', on_delete=django.db.models.deletion.DO_NOTHING, to='inventory.carserie')), + ], + options={ + 'verbose_name': 'Trim', + }, + bases=(models.Model, inventory.mixins.LocalizedNameMixin), + ), + migrations.CreateModel( + name='CarSpecificationValue', + fields=[ + ('id_car_specification_value', models.AutoField(primary_key=True, serialize=False)), + ('value', models.CharField(max_length=500)), + ('unit', models.CharField(blank=True, max_length=255, null=True)), + ('id_car_specification', models.ForeignKey(db_column='id_car_specification', on_delete=django.db.models.deletion.DO_NOTHING, to='inventory.carspecification')), + ('id_car_trim', models.ForeignKey(db_column='id_car_trim', on_delete=django.db.models.deletion.DO_NOTHING, to='inventory.cartrim')), + ], + options={ + 'verbose_name': 'Specification Value', + }, + ), + migrations.AddField( + model_name='car', + name='id_car_trim', + field=models.ForeignKey(blank=True, db_column='id_car_trim', null=True, on_delete=django.db.models.deletion.DO_NOTHING, to='inventory.cartrim', verbose_name='Trim'), + ), + migrations.CreateModel( + name='CustomCard', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('custom_number', models.CharField(max_length=255, verbose_name='Custom Number')), + ('custom_date', models.DateTimeField(verbose_name='Custom Date')), + ('car', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='custom_cards', to='inventory.car', verbose_name='Car')), + ], + options={ + 'verbose_name': 'Custom Card', + 'verbose_name_plural': 'Custom Cards', + }, + ), + migrations.CreateModel( + name='Dealer', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('crn', models.CharField(max_length=10, verbose_name='Commercial Registration Number')), + ('vrn', models.CharField(max_length=15, verbose_name='VAT Registration Number')), + ('arabic_name', models.CharField(max_length=255, verbose_name='Arabic Name')), + ('name', models.CharField(max_length=255, verbose_name='English Name')), + ('phone_number', phonenumber_field.modelfields.PhoneNumberField(max_length=128, region='SA', verbose_name='Phone Number')), + ('address', models.CharField(blank=True, max_length=200, null=True, verbose_name='Address')), + ('logo', models.ImageField(blank=True, null=True, upload_to='logos/users', verbose_name='Logo')), + ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, related_name='dealer', to=settings.AUTH_USER_MODEL)), + ], + options={ + 'verbose_name': 'Dealer', + 'verbose_name_plural': 'Dealers', + }, + bases=(models.Model, inventory.mixins.LocalizedNameMixin), + ), + migrations.CreateModel( + name='Customer', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('first_name', models.CharField(max_length=50, verbose_name='First Name')), + ('middle_name', models.CharField(blank=True, max_length=50, null=True, verbose_name='Middle Name')), + ('last_name', models.CharField(max_length=50, verbose_name='Last Name')), + ('email', models.EmailField(max_length=254, unique=True, verbose_name='Email')), + ('national_id', models.CharField(max_length=10, unique=True, verbose_name='National ID')), + ('phone_number', phonenumber_field.modelfields.PhoneNumberField(max_length=128, region='SA', unique=True, verbose_name='Phone Number')), + ('address', models.CharField(blank=True, max_length=200, null=True, verbose_name='Address')), + ('created', models.DateTimeField(auto_now_add=True, verbose_name='Created')), + ('dealer', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='customers', to='inventory.dealer')), + ], + options={ + 'verbose_name': 'Customer', + 'verbose_name_plural': 'Customers', + }, + ), + migrations.AddField( + model_name='car', + name='dealer', + field=models.ForeignKey(on_delete=django.db.models.deletion.DO_NOTHING, related_name='cars', to='inventory.dealer', verbose_name='Dealer'), + ), + migrations.CreateModel( + name='ExteriorColors', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('name', models.CharField(max_length=255, verbose_name='Name')), + ('arabic_name', models.CharField(max_length=255, verbose_name='Arabic Name')), + ('rgb', models.CharField(blank=True, max_length=24, null=True, verbose_name='RGB')), + ('car', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='exteriorcolor', to='inventory.car')), + ], + options={ + 'verbose_name': 'Exterior Color', + 'verbose_name_plural': 'Exterior Colors', + }, + bases=(models.Model, inventory.mixins.LocalizedNameMixin), + ), + migrations.CreateModel( + name='InteriorColors', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('name', models.CharField(max_length=255, verbose_name='Name')), + ('arabic_name', models.CharField(max_length=255, verbose_name='Arabic Name')), + ('rgb', models.CharField(blank=True, max_length=24, null=True, verbose_name='RGB')), + ('car', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='interiorcolor', to='inventory.car', verbose_name='Car')), + ], + options={ + 'verbose_name': 'Interior Color', + 'verbose_name_plural': 'Interior Colors', + }, + bases=(models.Model, inventory.mixins.LocalizedNameMixin), + ), + migrations.CreateModel( + name='Vendor', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('crn', models.CharField(max_length=10, unique=True, verbose_name='Commercial Registration Number')), + ('vrn', models.CharField(max_length=15, unique=True, verbose_name='VAT Registration Number')), + ('arabic_name', models.CharField(max_length=255, verbose_name='Arabic Name')), + ('name', models.CharField(max_length=255, verbose_name='English Name')), + ('contact_person', models.CharField(max_length=100, verbose_name='Contact Person')), + ('phone_number', phonenumber_field.modelfields.PhoneNumberField(max_length=128, region='SA', verbose_name='Phone Number')), + ('address', models.CharField(blank=True, max_length=200, null=True, verbose_name='Address')), + ('dealer', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='vendors', to='inventory.dealer')), + ], + options={ + 'verbose_name': 'Vendor', + 'verbose_name_plural': 'Vendors', + }, + bases=(models.Model, inventory.mixins.LocalizedNameMixin), + ), + migrations.AddField( + model_name='car', + name='vendor', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='cars', to='inventory.vendor', verbose_name='Vendor'), + ), + migrations.CreateModel( + name='CarReservation', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('reserved_at', models.DateTimeField(auto_now_add=True)), + ('reserved_until', models.DateTimeField()), + ('car', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='reservations', to='inventory.car')), + ('reserved_by', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), + ], + options={ + 'ordering': ['-reserved_at'], + 'unique_together': {('car', 'reserved_until')}, + }, + ), + ] diff --git a/inventory/migrations/0002_remove_interiorcolors_car_carcolors_and_more.py b/inventory/migrations/0002_remove_interiorcolors_car_carcolors_and_more.py new file mode 100644 index 00000000..141e49d9 --- /dev/null +++ b/inventory/migrations/0002_remove_interiorcolors_car_carcolors_and_more.py @@ -0,0 +1,39 @@ +# Generated by Django 5.1.4 on 2024-12-06 14:30 + +import django.db.models.deletion +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('inventory', '0001_initial'), + ] + + operations = [ + migrations.RemoveField( + model_name='interiorcolors', + name='car', + ), + migrations.CreateModel( + name='CarColors', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('name', models.CharField(max_length=255, verbose_name='Name')), + ('arabic_name', models.CharField(max_length=255, verbose_name='Arabic Name')), + ('rgb', models.CharField(blank=True, max_length=24, null=True, verbose_name='RGB')), + ('color_type', models.CharField(choices=[('exterior', 'Exterior'), ('interior', 'Interior')], default='exterior', max_length=10, verbose_name='Color Type')), + ('car', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='colors', to='inventory.car')), + ], + options={ + 'verbose_name': 'Color', + 'verbose_name_plural': 'Colors', + }, + ), + migrations.DeleteModel( + name='ExteriorColors', + ), + migrations.DeleteModel( + name='InteriorColors', + ), + ] diff --git a/inventory/migrations/0003_alter_customcard_custom_date.py b/inventory/migrations/0003_alter_customcard_custom_date.py new file mode 100644 index 00000000..5eab67c1 --- /dev/null +++ b/inventory/migrations/0003_alter_customcard_custom_date.py @@ -0,0 +1,18 @@ +# Generated by Django 5.1.4 on 2024-12-08 08:10 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('inventory', '0002_remove_interiorcolors_car_carcolors_and_more'), + ] + + operations = [ + migrations.AlterField( + model_name='customcard', + name='custom_date', + field=models.DateField(verbose_name='Custom Date'), + ), + ] diff --git a/inventory/migrations/__init__.py b/inventory/migrations/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/inventory/migrations/__pycache__/0001_initial.cpython-311.pyc b/inventory/migrations/__pycache__/0001_initial.cpython-311.pyc new file mode 100644 index 00000000..933de09d Binary files /dev/null and b/inventory/migrations/__pycache__/0001_initial.cpython-311.pyc differ diff --git a/inventory/migrations/__pycache__/0002_remove_interiorcolors_car_carcolors_and_more.cpython-311.pyc b/inventory/migrations/__pycache__/0002_remove_interiorcolors_car_carcolors_and_more.cpython-311.pyc new file mode 100644 index 00000000..420d8462 Binary files /dev/null and b/inventory/migrations/__pycache__/0002_remove_interiorcolors_car_carcolors_and_more.cpython-311.pyc differ diff --git a/inventory/migrations/__pycache__/0003_alter_customcard_custom_date.cpython-311.pyc b/inventory/migrations/__pycache__/0003_alter_customcard_custom_date.cpython-311.pyc new file mode 100644 index 00000000..de2f0f1d Binary files /dev/null and b/inventory/migrations/__pycache__/0003_alter_customcard_custom_date.cpython-311.pyc differ diff --git a/inventory/migrations/__pycache__/__init__.cpython-311.pyc b/inventory/migrations/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..a006aab7 Binary files /dev/null and b/inventory/migrations/__pycache__/__init__.cpython-311.pyc differ diff --git a/inventory/mixins.py b/inventory/mixins.py new file mode 100644 index 00000000..50dde6d3 --- /dev/null +++ b/inventory/mixins.py @@ -0,0 +1,34 @@ +from django import forms +from django.utils.translation import get_language + + +class AddClassMixin: + """ + Mixin for adding classes to a model. + """ + def add_class_to_fields(self): + """ + Adds the class to the fields of the model. + :return: class names form-control or form-select + """ + for field_name, field in self.fields.items(): + if isinstance(field.widget, forms.Select): + existing_classes = field.widget.attrs.get('class', '') + field.widget.attrs['class'] = f"{existing_classes} form-select form-select-sm".strip() + else: + existing_classes = field.widget.attrs.get('class', '') + field.widget.attrs['class'] = f"{existing_classes} form-control form-control-sm".strip() + + +class LocalizedNameMixin: + """ + Mixin to provide a reusable get_localized_name method. + """ + def get_local_name(self): + """ + Returns the localized name based on the current language. + """ + if get_language() == 'ar': + return getattr(self, 'arabic_name', None) + return getattr(self, 'name', None) + diff --git a/inventory/models.py b/inventory/models.py new file mode 100644 index 00000000..da337e40 --- /dev/null +++ b/inventory/models.py @@ -0,0 +1,503 @@ +from uuid import uuid4 +from django.db import models, transaction +from django.contrib.auth.models import User +from django.db.models.signals import pre_save, post_save +from django.dispatch import receiver +from django.utils.translation import gettext_lazy as _ +from django_ledger.models import ( + VendorModel, + EntityModel, + EntityUnitModel, + ItemModel, + AccountModel, + ItemModelAbstract, + UnitOfMeasureModel, + CustomerModel, + ItemModelQuerySet, + +) +from phonenumber_field.modelfields import PhoneNumberField +from django.contrib.contenttypes.models import ContentType +from decimal import Decimal +from django.utils.timezone import now +from .mixins import LocalizedNameMixin + + +class CarMake(models.Model, LocalizedNameMixin): + id_car_make = models.AutoField(primary_key=True) + name = models.CharField(max_length=255) + arabic_name = models.CharField(max_length=255) + logo = models.ImageField(_('logo'), upload_to='car_make', blank=True, null=True) + is_sa_import = models.BooleanField(default=False) + + def __str__(self): + return self.name + + class Meta: + verbose_name = "Make" + + +class CarModel(models.Model, LocalizedNameMixin): + id_car_model = models.AutoField(primary_key=True) + id_car_make = models.ForeignKey(CarMake, models.DO_NOTHING, db_column='id_car_make') + name = models.CharField(max_length=255) + arabic_name = models.CharField(max_length=255) + + def __str__(self): + return self.name + + class Meta: + verbose_name = "Model" + + +class CarSerie(models.Model, LocalizedNameMixin): + id_car_serie = models.AutoField(primary_key=True) + id_car_model = models.ForeignKey(CarModel, models.DO_NOTHING, db_column='id_car_model') + name = models.CharField(max_length=255) + arabic_name = models.CharField(max_length=255) + + def __str__(self): + return self.name + + class Meta: + verbose_name = "Series" + + +class CarTrim(models.Model, LocalizedNameMixin): + id_car_trim = models.AutoField(primary_key=True) + id_car_serie = models.ForeignKey(CarSerie, models.DO_NOTHING, db_column='id_car_serie') + name = models.CharField(max_length=255) + arabic_name = models.CharField(max_length=255) + start_production_year = models.IntegerField(blank=True, null=True) + end_production_year = models.IntegerField(blank=True, null=True) + + def __str__(self): + return self.name + + class Meta: + verbose_name = "Trim" + + +class CarSpecification(models.Model, LocalizedNameMixin): + id_car_specification = models.AutoField(primary_key=True) + name = models.CharField(max_length=255) + arabic_name = models.CharField(max_length=255) + id_parent = models.ForeignKey('self', models.DO_NOTHING, db_column='id_parent', blank=True, null=True) + + def __str__(self): + return self.name + + class Meta: + verbose_name = "Specification" + + +class CarSpecificationValue(models.Model): + id_car_specification_value = models.AutoField(primary_key=True) + id_car_trim = models.ForeignKey(CarTrim, models.DO_NOTHING, db_column='id_car_trim') + id_car_specification = models.ForeignKey(CarSpecification, models.DO_NOTHING, db_column='id_car_specification') + value = models.CharField(max_length=500) + unit = models.CharField(max_length=255, blank=True, null=True) + + def __str__(self): + return f"{self.id_car_specification.name}: {self.value} {self.unit}" + + class Meta: + verbose_name = "Specification Value" + + +# Car Model +class CarStatusChoices(models.TextChoices): + AVAILABLE = 'available', _('Available') + SOLD = 'sold', _('Sold') + HOLD = 'hold', _('Hold') + DAMAGED = 'damaged', _('Damaged') + + +class CarStockTypeChoices(models.TextChoices): + NEW = 'new', _('New') + USED = 'used', _('Used') + + +class Car(models.Model): + vin = models.CharField(max_length=17, unique=True, verbose_name=_("VIN")) + dealer = models.ForeignKey( + "Dealer", + models.DO_NOTHING, + related_name='cars', + verbose_name=_("Dealer") + ) + + vendor = models.ForeignKey( + "Vendor", + models.DO_NOTHING, + null=True, + blank=True, + related_name='cars', + verbose_name=_("Vendor") + ) + id_car_make = models.ForeignKey( + CarMake, + models.DO_NOTHING, + db_column='id_car_make', + null=True, + blank=True, + verbose_name=_("Make") + ) + id_car_model = models.ForeignKey( + CarModel, + models.DO_NOTHING, + db_column='id_car_model', + null=True, + blank=True, + verbose_name=_("Model") + ) + year = models.IntegerField(verbose_name=_("Year")) + id_car_serie = models.ForeignKey( + CarSerie, + models.DO_NOTHING, + db_column='id_car_serie', + null=True, + blank=True, + verbose_name=_("Series") + ) + id_car_trim = models.ForeignKey( + CarTrim, + models.DO_NOTHING, + db_column='id_car_trim', + null=True, + blank=True, + verbose_name=_("Trim") + ) + status = models.CharField( + max_length=10, + choices=CarStatusChoices.choices, + default=CarStatusChoices.AVAILABLE, + verbose_name=_("Status") + ) + stock_type = models.CharField( + max_length=10, + choices=CarStockTypeChoices.choices, + default=CarStockTypeChoices.NEW, + verbose_name=_("Stock Type") + ) + remarks = models.TextField(blank=True, null=True, verbose_name=_("Remarks")) + mileage = models.IntegerField(blank=True, null=True, verbose_name=_("Mileage")) + receiving_date = models.DateTimeField(verbose_name=_("Receiving Date")) + + class Meta: + verbose_name = _("Car") + verbose_name_plural = _("Cars") + + def __str__(self): + make = self.id_car_make.name if self.id_car_make else "Unknown Make" + model = self.id_car_model.name if self.id_car_model else "Unknown Model" + trim = self.id_car_trim.name if self.id_car_trim else "Unknown Trim" + return f"{self.year} - {make} - {model} - {trim}" + + def is_reserved(self): + active_reservations = self.reservations.filter(reserved_until__gt=now()) + return active_reservations.exists() + + @property + def selling_price(self): + finance = self.finances.first() + return finance.selling_price if finance else Decimal('0.00') + + @property + def vat_amount(self): + finance = self.finances.first() + return finance.vat_amount if finance else Decimal('0.00') + + @property + def total(self): + finance = self.finances.first() + return finance.total if finance else Decimal('0.00') + + +class CarReservation(models.Model): + car = models.ForeignKey('Car', on_delete=models.CASCADE, related_name='reservations') + reserved_by = models.ForeignKey(User, on_delete=models.CASCADE) + reserved_at = models.DateTimeField(auto_now_add=True) + reserved_until = models.DateTimeField() + + def is_active(self): + return self.reserved_until > now() + + class Meta: + unique_together = ('car', 'reserved_until') + ordering = ['-reserved_at'] + + +# Car Finance Model +class CarFinance(models.Model): + car = models.ForeignKey(Car, on_delete=models.CASCADE, related_name='finances') + cost_price = models.DecimalField(max_digits=14, decimal_places=2, verbose_name=_("Cost Price")) + profit_margin = models.DecimalField(max_digits=10, decimal_places=2, verbose_name=_("Profit Margin")) + selling_price = models.DecimalField(max_digits=14, decimal_places=2, verbose_name=_("Selling Price"), editable=False) + vat_rate = models.DecimalField(max_digits=10, decimal_places=2, default=0.15, verbose_name=_("VAT Rate")) + vat_amount = models.DecimalField(max_digits=12, decimal_places=2, verbose_name=_("VAT Amount"), editable=False) + total = models.DecimalField(max_digits=14, decimal_places=2, verbose_name=_("Total Amount"), editable=False) + + class Meta: + verbose_name = _("Car Financial Details") + + def save(self, *args, **kwargs): + self.full_clean() + self.selling_price = self.cost_price * (1 + self.profit_margin) + self.vat_amount = self.selling_price * self.vat_rate + self.total = self.selling_price + self.vat_amount + super().save(*args, **kwargs) + + def __str__(self): + return f"Car Financial Details for {self.car}: Selling Price {self.selling_price}" + + +# Colors Model +class CarColors(models.Model): + class ColorType(models.TextChoices): + EXTERIOR = 'exterior', _("Exterior") + INTERIOR = 'interior', _("Interior") + + car = models.ForeignKey('Car', on_delete=models.CASCADE, related_name='colors') + name = models.CharField(max_length=255, verbose_name=_("Name")) + arabic_name = models.CharField(max_length=255, verbose_name=_("Arabic Name")) + rgb = models.CharField(max_length=24, blank=True, null=True, verbose_name=_("RGB")) + color_type = models.CharField( + max_length=10, + choices=ColorType.choices, + default=ColorType.EXTERIOR, + verbose_name=_("Color Type") + ) + + class Meta: + verbose_name = _("Color") + verbose_name_plural = _("Colors") + + def __str__(self): + return f"{self.get_color_type_display()} - {self.name} ({self.rgb})" + + +# Custom Card Model +class CustomCard(models.Model): + car = models.ForeignKey(Car, on_delete=models.CASCADE, related_name='custom_cards', verbose_name=_("Car")) + custom_number = models.CharField(max_length=255, verbose_name=_("Custom Number")) + custom_date = models.DateField(verbose_name=_("Custom Date")) + + class Meta: + verbose_name = _("Custom Card") + verbose_name_plural = _("Custom Cards") + + def __str__(self): + return f"{self.car} - {self.custom_number}" + + +# Car Registration Model +class CarRegistration(models.Model): + car = models.ForeignKey(Car, on_delete=models.CASCADE, related_name='registrations', verbose_name=_("Car")) + plate_number = models.IntegerField(verbose_name=_("Plate Number")) + text1 = models.CharField(max_length=1, verbose_name=_("Text 1")) + text2 = models.CharField(max_length=1, verbose_name=_("Text 2")) + text3 = models.CharField(max_length=1, verbose_name=_("Text 3")) + registration_date = models.DateTimeField(verbose_name=_("Registration Date")) + + class Meta: + verbose_name = _("Registration") + verbose_name_plural = _("Registrations") + + def __str__(self): + return f"{self.plate_number} - {self.text1} {self.text2} {self.text3}" + + +# TimestampedModel Abstract Class +class TimestampedModel(models.Model): + created = models.DateTimeField(auto_now_add=True, verbose_name=_("Created")) + updated = models.DateTimeField(auto_now=True, verbose_name=_("Updated")) + + class Meta: + abstract = True + + +# Dealer Model +class Dealer(models.Model, LocalizedNameMixin): + user = models.OneToOneField(User, on_delete=models.CASCADE, related_name='dealer') + crn = models.CharField(max_length=10, verbose_name=_("Commercial Registration Number")) + vrn = models.CharField(max_length=15, verbose_name=_("VAT Registration Number")) + arabic_name = models.CharField(max_length=255, verbose_name=_("Arabic Name")) + name = models.CharField(max_length=255, verbose_name=_("English Name")) + phone_number = PhoneNumberField(region='SA', verbose_name=_("Phone Number")) + address = models.CharField(max_length=200, blank=True, null=True, verbose_name=_("Address")) + logo = models.ImageField(upload_to="logos/users", blank=True, null=True, verbose_name=_("Logo")) + + class Meta: + verbose_name = _("Dealer") + verbose_name_plural = _("Dealers") + + def __str__(self): + return self.name + + +# Vendor Model +class Vendor(models.Model, LocalizedNameMixin): + dealer = models.ForeignKey(Dealer, on_delete=models.CASCADE, related_name='vendors') + crn = models.CharField(max_length=10, unique=True, verbose_name=_("Commercial Registration Number")) + vrn = models.CharField(max_length=15, unique=True, verbose_name=_("VAT Registration Number")) + arabic_name = models.CharField(max_length=255, verbose_name=_("Arabic Name")) + name = models.CharField(max_length=255, verbose_name=_("English Name")) + contact_person = models.CharField(max_length=100, verbose_name=_("Contact Person")) + phone_number = PhoneNumberField(region='SA', verbose_name=_("Phone Number")) + address = models.CharField(max_length=200, blank=True, null=True, verbose_name=_("Address")) + + class Meta: + verbose_name = _("Vendor") + verbose_name_plural = _("Vendors") + + def __str__(self): + return self.name + + +# Customer Model +class Customer(models.Model): + dealer = models.ForeignKey(Dealer, on_delete=models.CASCADE, related_name='customers') + first_name = models.CharField(max_length=50, verbose_name=_("First Name")) + middle_name = models.CharField(max_length=50, blank=True, null=True, verbose_name=_("Middle Name")) + last_name = models.CharField(max_length=50, verbose_name=_("Last Name")) + email = models.EmailField(unique=True, verbose_name=_("Email")) + national_id = models.CharField(max_length=10, unique=True, verbose_name=_("National ID")) + phone_number = PhoneNumberField(region='SA', unique=True, verbose_name=_("Phone Number")) + address = models.CharField(max_length=200, blank=True, null=True, verbose_name=_("Address")) + created = models.DateTimeField(auto_now_add=True, verbose_name=_("Created")) + + class Meta: + verbose_name = _("Customer") + verbose_name_plural = _("Customers") + + def __str__(self): + middle = f" {self.middle_name}" if self.middle_name else '' + return f"{self.first_name}{middle} {self.last_name}" + + +# # Create Entity +# @receiver(post_save, sender=Dealer) +# def create_ledger_entity(sender, instance, created, **kwargs): +# if created: +# entity = EntityModel.objects.create( +# name=instance.name, +# admin=instance.user, +# address_1=instance.address, +# fy_start_month=1, +# accrual_method=True, +# depth=0, +# ) +# +# default_coa = entity.create_chart_of_accounts(assign_as_default=True, +# commit=True, +# coa_name=_("Chart of Accounts")) +# if default_coa: +# entity.populate_default_coa(activate_accounts=True, coa_model=default_coa) +# print(f"Ledger entity created for Dealer: {instance.name}") +# +# +# # # Create Vendor +# @receiver(post_save, sender=Vendor) +# def create_ledger_vendor(sender, instance, created, **kwargs): +# +# if created: +# entity = EntityModel.objects.filter(name=instance.dealer.name).first() +# +# vendor = VendorModel.objects.create( +# entity_model=entity, +# vendor_name=instance.name, +# vendor_number=instance.crn, +# address_1=instance.address, +# phone=instance.phone_number, +# tax_id_number=instance.vrn, +# active=True, +# hidden=False, +# additional_info={ +# "arabic_name": instance.arabic_name, +# "contact_person": instance.contact_person, +# }, +# ) +# +# print(f"VendorModel created for Vendor: {instance.name}") +# +# +# @receiver(post_save, sender=Customer) +# def create_customer(sender, instance, created, **kwargs): +# +# if created: +# entity = EntityModel.objects.filter(name=instance.dealer.name).first() +# name = f"{instance.first_name} {instance.middle_name} {instance.last_name}" +# +# customer = CustomerModel.objects.create( +# entity_model=entity, +# customer_name=name, +# customer_number=instance.national_id, +# address_1=instance.address, +# phone=instance.phone_number, +# email=instance.email, +# sales_tax_rate=0.15, +# ) +# +# print(f"Customer created: {name}") +# +# +# # Create Item +# @receiver(post_save, sender=Car) +# def create_item_model(sender, instance, created, **kwargs): +# item_name = f"{instance.year} - {instance.id_car_make} - {instance.id_car_model} - {instance.id_car_trim}" +# uom_name = _("Car") +# unit_abbr = _("C") +# +# uom, uom_created = UnitOfMeasureModel.objects.get_or_create( +# name=uom_name, +# unit_abbr=unit_abbr +# ) +# +# if uom_created: +# print(f"UOM created: {uom_name}") +# else: +# print(f"Using existing UOM: {uom_name}") +# +# entity = EntityModel.objects.filter(name=instance.dealer.name).first() +# +# inventory_account = AccountModel.objects.first() +# cogs_account = AccountModel.objects.first() +# earnings_account = AccountModel.objects.first() +# +# item = ItemModel.objects.create( +# entity=entity, +# uom=uom, +# name=item_name, +# item_role=ItemModelAbstract.ITEM_ROLE_INVENTORY, +# item_type=ItemModelAbstract.ITEM_TYPE_MATERIAL, +# item_id=instance.vin, +# sold_as_unit=True, +# inventory_received=1.00, +# inventory_received_value=0.00, +# inventory_account=inventory_account, +# for_inventory=True, +# is_product_or_service=True, +# cogs_account=cogs_account, +# earnings_account=earnings_account, +# is_active=True, +# additional_info={ +# "remarks": instance.remarks, +# "status": instance.status, +# "stock_type": instance.stock_type, +# "mileage": instance.mileage, +# }, +# ) +# +# print(f"ItemModel {'created' if created else 'updated'} for Car: {item.name}") +# +# +# # update price - CarFinance +# @receiver(post_save, sender=CarFinance) +# def update_item_model_cost(sender, instance, created, **kwargs): +# +# ItemModel.objects.filter(item_id=instance.car.vin).update( +# inventory_received_value=instance.cost_price, +# default_amount=instance.cost_price, +# ) +# print(f"Inventory item updated with CarFinance data for Car: {instance.car}") diff --git a/inventory/services.py b/inventory/services.py new file mode 100644 index 00000000..86835747 --- /dev/null +++ b/inventory/services.py @@ -0,0 +1,257 @@ +""" +Services module +""" +import requests +import json +from .utils import get_jwt_token +from pyvin import VIN +from django.conf import settings +from openai import OpenAI +from .models import Car + + +def normalize_name(name): + return name.replace(' ', '').replace('-', '').lower() + + +def decode_vin_pyvin(vin): + vehicle = VIN(vin) + + data = { + 'Make': vehicle.Make, + 'Model': vehicle.Model, + 'ModelYear': vehicle.ModelYear, + } + print(data) + return data + + +# vehicle-info +# c2729afb +# 6d397471920412d672af1b8a02ca52ea + +# option-info +# 367974ed +# 046b0412c1b4d3f8c39ec6375d6f3030 +def elm(vin): + headers = { + "Content-Type": "application/json", + 'app-id': 'c2729afb', + 'app-key': '6d397471920412d672af1b8a02ca52ea', + 'client-id': '94142c27-2536-47e9-8e28-9ca7728b9442', + } + url = 'https://vehicle-maintenance.api.elm.sa/api/v1/vehicles/vehicle-info?vin='+vin + + payload = {} + response = requests.request("GET", url, headers=headers, data=payload) + car_info = json.loads(response.text) + return car_info + + +def get_unique_colors(api_response): + print(api_response) + colors = api_response.get("data", []) + print(colors) + + unique_colors = {} + for color in colors: + color_name = color.get("name") + rgb = color.get("rgb") + if color_name not in unique_colors: + unique_colors[color_name] = rgb + + return [{"name": name, "rgb": rgb} for name, rgb in unique_colors.items()] + + +def fetch_colors(car_data): + + car_colors = { + "data": [ + {"rgb": "192, 192, 192", "name": "Silver Metallic"}, + {"rgb": "0, 0, 0", "name": "Jet Black"}, + {"rgb": "255, 255, 255", "name": "Bright White"}, + {"rgb": "128, 128, 128", "name": "Graphite Gray"}, + {"rgb": "80, 80, 80", "name": "Gunmetal Gray"}, + {"rgb": "255, 0, 0", "name": "Racing Red"}, + {"rgb": "255, 69, 0", "name": "Inferno Orange"}, + {"rgb": "0, 0, 255", "name": "Deep Blue Pearl"}, + {"rgb": "75, 0, 130", "name": "Indigo Night"}, + {"rgb": "255, 215, 0", "name": "Solar Gold"}, + {"rgb": "34, 139, 34", "name": "Emerald Green"}, + {"rgb": "60, 179, 113", "name": "Forest Mist Green"}, + {"rgb": "255, 140, 0", "name": "Burnt Amber"}, + {"rgb": "160, 82, 45", "name": "Copper Brown"}, + {"rgb": "128, 0, 0", "name": "Crimson Maroon"}, + {"rgb": "245, 245, 220", "name": "Beige Champagne"}, + {"rgb": "169, 169, 169", "name": "Shadow Gray"}, + {"rgb": "255, 250, 205", "name": "Lemon Pearl"}, + {"rgb": "220, 220, 220", "name": "Platinum Silver"}, + {"rgb": "105, 105, 105", "name": "Charcoal Metallic"}, + {"rgb": "128, 0, 128", "name": "Royal Purple"}, + {"rgb": "210, 105, 30", "name": "Sunset Bronze"}, + {"rgb": "0, 128, 128", "name": "Teal Lagoon"}, + {"rgb": "72, 61, 139", "name": "Midnight Blue"}, + {"rgb": "255, 20, 147", "name": "Blazing Pink"}, + {"rgb": "192, 57, 43", "name": "Crimson Flame"}, + {"rgb": "255, 228, 196", "name": "Cream Sand"}, + {"rgb": "112, 128, 144", "name": "Steel Gray"}, + {"rgb": "0, 100, 0", "name": "Hunter Green"}, + {"rgb": "255, 223, 0", "name": "Bright Yellow"}, + {"rgb": "85, 107, 47", "name": "Olive Metallic"}, + {"rgb": "128, 128, 0", "name": "Mustard Gold"}, + {"rgb": "139, 69, 19", "name": "Cocoa Brown"}, + {"rgb": "255, 165, 0", "name": "Tangerine Flame"}, + {"rgb": "0, 0, 139", "name": "Navy Sapphire"}, + {"rgb": "70, 130, 180", "name": "Skyline Blue"}, + {"rgb": "220, 20, 60", "name": "Crimson Passion"}, + {"rgb": "189, 183, 107", "name": "Khaki Dune"}, + {"rgb": "50, 205, 50", "name": "Lime Essence"}, + {"rgb": "139, 0, 139", "name": "Amethyst Glow"}, + {"rgb": "255, 215, 180", "name": "Rosé Gold"}, + {"rgb": "46, 139, 87", "name": "Moss Green"}, + {"rgb": "72, 209, 204", "name": "Caribbean Aqua"}, + {"rgb": "255, 240, 245", "name": "Pearl Blush"}, + {"rgb": "244, 164, 96", "name": "Sierra Sunset"}, + {"rgb": "139, 0, 0", "name": "Crimson Ruby"}, + {"rgb": "192, 192, 192", "name": "Chrome"}, + {"rgb": "255, 105, 180", "name": "Hot Magenta"}, + {"rgb": "0, 255, 255", "name": "Ice Blue"}, + {"rgb": "184, 134, 11", "name": "Golden Bronze"}, + {"rgb": "128, 128, 64", "name": "Bronze Olive"}, + {"rgb": "245, 222, 179", "name": "Wheat Cream"} + ] + } + + jwt_token = get_jwt_token() + if not jwt_token: + print("Failed to retrieve JWT token.") + return None + + year = car_data['year'] + make = car_data['make'] + model = car_data['model'] + + url = "https://carapi.app/api/exterior-colors?year={}&make={}&model={}".format(year, make, model) + params = { + 'limit': '1000', + 'sort': 'name', + 'direction': 'asc', + 'verbose': 'no', + 'all_trims': 'no', + } + + headers = { + 'Accept': 'application/json', + 'Authorization': f'Bearer {jwt_token}', + } + + try: + response = requests.get(url, headers=headers, params=params) + color_info = response.json() + + if not color_info["data"] == []: + return get_unique_colors(color_info) + else: + return car_colors["data"] + + except requests.exceptions.RequestException as e: + print(f"Error fetching color information: {e}") + return None + + +def fetch_interior_colors(car_data): + + car_colors = { + "data": [ + {"rgb": "0, 0, 0", "name": "Jet Black"}, + {"rgb": "54, 69, 79", "name": "Charcoal Black"}, + {"rgb": "255, 255, 255", "name": "Bright White"}, + {"rgb": "245, 245, 220", "name": "Off-White"}, + {"rgb": "210, 180, 140", "name": "Beige"}, + {"rgb": "205, 133, 63", "name": "Tan"}, + {"rgb": "128, 128, 128", "name": "Gray"}, + {"rgb": "80, 80, 80", "name": "Graphite Gray"}, + {"rgb": "112, 128, 144", "name": "Gunmetal Gray"}, + {"rgb": "192, 192, 192", "name": "Silver Metallic"}, + {"rgb": "139, 69, 19", "name": "Cognac Brown"}, + {"rgb": "149, 94, 55", "name": "Chestnut Brown"}, + {"rgb": "97, 63, 43", "name": "Espresso Brown"}, + {"rgb": "72, 40, 34", "name": "Dark Chocolate"}, + {"rgb": "139, 69, 19", "name": "Saddle Brown"}, + {"rgb": "124, 79, 58", "name": "Mocha"}, + {"rgb": "193, 154, 107", "name": "Camel Tan"}, + {"rgb": "128, 0, 32", "name": "Burgundy"}, + {"rgb": "128, 0, 0", "name": "Maroon"}, + {"rgb": "139, 0, 0", "name": "Deep Red"}, + {"rgb": "0, 0, 128", "name": "Navy Blue"}, + {"rgb": "65, 105, 225", "name": "Royal Blue"}, + {"rgb": "34, 139, 34", "name": "Forest Green"}, + {"rgb": "80, 200, 120", "name": "Emerald Green"}, + {"rgb": "255, 255, 240", "name": "Ivory"}, + {"rgb": "242, 242, 242", "name": "Pearl White"}, + {"rgb": "169, 169, 169", "name": "Stone Gray"}, + {"rgb": "112, 128, 144", "name": "Slate Gray"}, + {"rgb": "150, 111, 51", "name": "Ash Brown"}, + {"rgb": "128, 128, 0", "name": "Olive Green"}, + {"rgb": "25, 25, 112", "name": "Midnight Blue"}, + {"rgb": "72, 60, 50", "name": "Taupe"} + ] + } + + jwt_token = get_jwt_token() + if not jwt_token: + print("Failed to retrieve JWT token.") + return None + + year = car_data['year'] + make = car_data['make'] + model = car_data['model'] + + url = "https://carapi.app/api/interior-colors?year={}&make={}&model={}".format(year, make, model) + params = { + 'limit': '100', + 'sort': 'name', + 'direction': 'asc', + 'verbose': 'no', + 'all_trims': 'no', + } + + headers = { + 'Accept': 'application/json', + 'Authorization': f'Bearer {jwt_token}', + } + + try: + response = requests.get(url, headers=headers, params=params) + color_info = response.json() + + if not color_info["data"] == []: + return get_unique_colors(color_info) + else: + return car_colors["data"] + + except requests.exceptions.RequestException as e: + print(f"Error fetching color information: {e}") + return None + + + +def translate(content, *args, **kwargs): + client = OpenAI(api_key=settings.OPENAI_API_KEY) + completion = client.chat.completions.create( + model="gpt-4", + messages=[ + {"role": "system", "content": "You are a translation assistant that translates English to Arabic."}, + {"role": "user", "content": content} + ], + temperature=0.3, + ) + translation = completion.choices[0].message.content.strip() + return translation + + +def calculate_stock_value(): + cars = Car.objects.all() + total_value = sum(car.selling_price for car in cars) + return total_value + diff --git a/inventory/signals.py b/inventory/signals.py new file mode 100644 index 00000000..23d5e379 --- /dev/null +++ b/inventory/signals.py @@ -0,0 +1,20 @@ +# from django.db.models.signals import post_save, post_delete +# from django.dispatch import receiver +# from . import models +# +# +# @receiver(post_save, sender=models.CarReservation) +# def update_car_status_on_reservation(sender, instance, created, **kwargs): +# if created: +# car = instance.car +# car.status = models.CarStatusChoices.RESERVED +# car.save() +# +# +# @receiver(post_delete, sender=models.CarReservation) +# def update_car_status_on_reservation_delete(sender, instance, **kwargs): +# car = instance.car +# if not car.get_current_reservation(): +# car.status = models.CarStatusChoices.AVAILABLE +# car.save() + diff --git a/inventory/tables.py b/inventory/tables.py new file mode 100644 index 00000000..48382a30 --- /dev/null +++ b/inventory/tables.py @@ -0,0 +1,18 @@ +from django.utils.html import format_html + +from django.conf import settings +from . import models +import django_tables2 as tables +from django_tables2.utils import A + + +class ImageColumn(tables.Column): + def render(self, value): + return format_html('', settings.MEDIA_URL, value) + + +class CustomerTable(tables.Table): + class Meta: + model = models.Customer + first_name = tables.Column() + diff --git a/inventory/templatetags/__pycache__/custom_filters.cpython-311.pyc b/inventory/templatetags/__pycache__/custom_filters.cpython-311.pyc new file mode 100644 index 00000000..8b8b3bc0 Binary files /dev/null and b/inventory/templatetags/__pycache__/custom_filters.cpython-311.pyc differ diff --git a/inventory/templatetags/custom_filters.py b/inventory/templatetags/custom_filters.py new file mode 100644 index 00000000..72aa12e6 --- /dev/null +++ b/inventory/templatetags/custom_filters.py @@ -0,0 +1,35 @@ +from django import template + +register = template.Library() + + +@register.filter +def percentage(value): + try: + value = float(value) * 100 + return f'{value:.0f}%' + except (ValueError, TypeError): + return value + + +@register.filter +def get_item(dictionary, key): + return dictionary.get(key) + + +@register.filter(name='add_class') +def add_class(field, css_class): + return field.as_widget(attrs={"class": css_class}) + + +@register.filter(name='attr') +def attr(field, args): + attrs = {} + definitions = args.split(',') + for definition in definitions: + if ':' in definition: + key, val = definition.split(':') + attrs[key.strip()] = val.strip() + else: + attrs[definition.strip()] = True + return field.as_widget(attrs=attrs) \ No newline at end of file diff --git a/inventory/tests.py b/inventory/tests.py new file mode 100644 index 00000000..7ce503c2 --- /dev/null +++ b/inventory/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/inventory/urls.py b/inventory/urls.py new file mode 100644 index 00000000..67f74e54 --- /dev/null +++ b/inventory/urls.py @@ -0,0 +1,61 @@ +from django.urls import path +from . import views +from allauth.account import views as allauth_views + + +urlpatterns = [ + # main URLs + path('', views.HomeView.as_view(), name='landing_page'), + path('welcome/', views.WelcomeView.as_view(), name='welcome'), + + # Accounts URLs + path('login/', allauth_views.LoginView.as_view(template_name='accounts/login.html'), name='login'), + path('logout/', allauth_views.LogoutView.as_view(template_name='accounts/logout.html'), name='logout'), + path('signup/', allauth_views.SignupView.as_view(template_name='accounts/signup.html'), name='signup'), + path('change-password/', + allauth_views.PasswordChangeView.as_view(template_name='accounts/password_change.html'), + name='change_password'), + path('reset-password/', + allauth_views.PasswordResetView.as_view(template_name='accounts/password_reset.html'), + name='reset_password'), + path('password-reset-done/', + allauth_views.PasswordResetDoneView.as_view(template_name='accounts/password_reset_done.html'), + name='password_reset_done'), + + # Dealer URLs + path('dealers/', views.DealerListView.as_view(), name='dealer_list'), + path('dealers//', views.DealerDetailView.as_view(), name='dealer_detail'), + path('dealers/create/', views.DealerCreateView.as_view(), name='dealer_create'), + path('dealers//update/', views.DealerUpdateView.as_view(), name='dealer_update'), + path('dealers//delete/', views.DealerDeleteView.as_view(), name='dealer_delete'), + + # Customer URLs + path('customers/', views.CustomerListView.as_view(), name='customer_list'), + path('customers//', views.CustomerDetailView.as_view(), name='customer_detail'), + path('customers/create/', views.CustomerCreateView.as_view(), name='customer_create'), + path('customers//update/', views.CustomerUpdateView.as_view(), name='customer_update'), + path('customers//delete/', views.delete_customer, name='customer_delete'), + + # Car URLs + path('cars/inventory////', + views.CarInventory.as_view(), + name='car_inventory'), + path('cars/inventory/stats', views.inventory_stats_view, name='inventory_stats'), + path('cars//', views.CarDetailView.as_view(), name='car_detail'), + path('cars//update/', views.CarUpdateView.as_view(), name='car_update'), + path('cars//delete/', views.CarDeleteView.as_view(), name='car_delete'), + path('cars//finance/create/', views.CarFinanceCreateView.as_view(), name='car_finance_create'), + path('cars/finance/update//', views.CarFinanceUpdateView.as_view(), name='car_finance_update'), + path('cars/add/', views.CarCreateView.as_view(), name='car_add'), + path('ajax/', views.AjaxHandlerView.as_view(), name='ajax_handler'), + path('cars//add-color/', views.CarColorCreateView.as_view(), name='add_color'), + path('cars//colors//update/', + views.CarColorUpdateView.as_view(), + name='color_update'), + path('cars/reserve//', views.reserve_car_view, name='reserve_car'), + path('reservations//', views.manage_reservation, name='reservations'), + path('cars//add-custom-card/', views.CustomCardCreateView.as_view(), name='add_custom_card'), + +] + + diff --git a/inventory/utils.py b/inventory/utils.py new file mode 100644 index 00000000..8fbffcab --- /dev/null +++ b/inventory/utils.py @@ -0,0 +1,31 @@ +import requests +from django.utils.translation import gettext_lazy as _ + + +def get_jwt_token(): + url = 'https://carapi.app/api/auth/login' + headers = { + 'accept': 'text/plain', + 'Content-Type': 'application/json', + } + data = { + "api_token": "f5204a00-6f31-4de2-96d8-ed998e0d230c", + "api_secret": "8c11320781a5b8f4f327b6937e6f8241" + } + try: + response = requests.post(url, headers=headers, json=data) + response.raise_for_status() + return response.text + except requests.exceptions.RequestException as e: + print(f"Error obtaining JWT token: {e}") + return None + + +def localize_some_words(): + success = _('success') + error = _('error') + forget = _('Forgot Password?') + + return None + + diff --git a/inventory/views.py b/inventory/views.py new file mode 100644 index 00000000..93830db5 --- /dev/null +++ b/inventory/views.py @@ -0,0 +1,726 @@ +import logging +import json +from django.views.decorators.csrf import csrf_exempt +from vin import VIN +from django.contrib.auth.mixins import LoginRequiredMixin +from django.contrib.auth.decorators import login_required +from django.http import JsonResponse +from django.shortcuts import render, get_object_or_404, redirect +from django.utils.translation import gettext_lazy as _ +from django.db.models import Q +from django.views.generic import ( + View, + ListView, + DetailView, + CreateView, + UpdateView, + DeleteView, + TemplateView +) +from django.utils import timezone, translation +from django.conf import settings +from urllib.parse import urlparse, urlunparse +from django.forms import ChoiceField, ModelForm, RadioSelect +from django.urls import reverse, reverse_lazy +from django.contrib import messages +from django.db.models import Sum, F, Count +from .services import elm, fetch_colors, translate, decode_vin_pyvin, normalize_name +from . import models, tables, forms +from django_tables2.export.views import ExportMixin + + +logger = logging.getLogger(__name__) +logging.basicConfig(level=logging.INFO) + + +def switch_language(request): + language = request.GET.get('language', 'en') + referer = request.META.get('HTTP_REFERER', '/') + parsed_url = urlparse(referer) + path_parts = parsed_url.path.split('/') + + if path_parts[1] in dict(settings.LANGUAGES): + path_parts.pop(1) + + new_path = '/'.join(path_parts) + new_url = urlunparse( + (parsed_url.scheme, parsed_url.netloc, new_path, parsed_url.params, parsed_url.query, parsed_url.fragment) + ) + + if language in dict(settings.LANGUAGES): + logger.debug(f"Switching language to: {language}") + response = redirect(new_url) + response.set_cookie(settings.LANGUAGE_COOKIE_NAME, language) + translation.activate(language) + request.session[settings.LANGUAGE_COOKIE_NAME] = language + logger.debug(f"Language switched to: {language}, Session: {request.session[settings.LANGUAGE_COOKIE_NAME]}") + return response + else: + logger.warning(f"Invalid language code: {language}") + return redirect('/') + + +class HomeView(LoginRequiredMixin, TemplateView): + template_name = 'index.html' + + def dispatch(self, request, *args, **kwargs): + if not hasattr(request.user, 'dealer') or not request.user.is_authenticated: + messages.error(request, _('You are not associated with any dealer.')) + return redirect('welcome') + return super().dispatch(request, *args, **kwargs) + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + + total_cars = models.Car.objects.count() + total_reservations = models.CarReservation.objects.filter(reserved_until__gte=timezone.now()).count() + stats = models.CarFinance.objects.aggregate( + total_cost_price=Sum('cost_price'), + total_selling_price=Sum('selling_price'), + ) + total_cost_price = stats['total_cost_price'] or 0 + total_selling_price = stats['total_selling_price'] or 0 + total_profit = total_selling_price - total_cost_price + + context['total_cars'] = total_cars + context['total_reservations'] = total_reservations + context['total_cost_price'] = total_cost_price + context['total_selling_price'] = total_selling_price + context['total_profit'] = total_profit + return context + + +class WelcomeView(TemplateView): + template_name = "welcome.html" + + +class CarCreateView(LoginRequiredMixin, CreateView): + model = models.Car + form_class = forms.CarForm + template_name = 'inventory/car_form.html' + success_url = reverse_lazy('inventory_stats') + + def form_valid(self, form): + form.instance.dealer = self.request.user.dealer + form.save() + messages.success(self.request, 'Car saved successfully.') + return super().form_valid(form) + + +class AjaxHandlerView(LoginRequiredMixin, View): + def get(self, request, *args, **kwargs): + action = request.GET.get('action') + handlers = { + 'decode_vin': self.decode_vin, + 'get_models': self.get_models, + 'get_series': self.get_series, + 'get_trims': self.get_trims, + 'get_specifications': self.get_specifications, + } + handler = handlers.get(action) + if handler: + return handler(request) + else: + return JsonResponse({'error': 'Invalid action'}, status=400) + + def decode_vin(self, request): + vin_no = request.GET.get('vin_no') + if not vin_no or len(vin_no.strip()) != 17: + return JsonResponse({'success': False, 'error': 'Invalid VIN number provided.'}, status=400) + vin_no = vin_no.strip() + vin_data = {} + decoding_method = '' + + decoding_methods = [ + ('PYVIN', decode_vin_pyvin), + ('VIN', VIN), + ('ELM', elm) + ] + + manufacturer_name = model_name_before = model_name = year_model = None + + for method_name, decode_function in decoding_methods: + try: + vin_info = decode_function(vin_no) + if vin_info: + if method_name == 'PYVIN': + manufacturer_name = vin_info.Make.strip() + model_name_before = vin_info.Model.strip() + year_model = vin_info.ModelYear + if not manufacturer_name or not year_model: + raise ValueError('PYVIN returned incomplete data.') + elif method_name == 'VIN': + manufacturer_name = vin_info.make.strip() + model_name_before = vin_info.model.strip() + year_model = vin_info.model_year + if not manufacturer_name or not model_name_before or not year_model: + raise ValueError('VIN returned incomplete data.') + elif method_name == 'ELM': + elm_data = vin_info.get('data', {}) + manufacturer_name = elm_data.get('maker', '').strip() + model_name_before = elm_data.get('model', '').strip() + year_model = elm_data.get('modelYear', '').strip() + if not manufacturer_name or not model_name_before or not year_model: + raise ValueError('ELM returned incomplete data.') + model_name = normalize_name(model_name_before) + decoding_method = method_name + print(f"decoded by {method_name}") + break + else: + logger.warning(f"{method_name} returned no data for {vin_no}.") + except Exception as e: + logger.warning(f"VIN decoding with {method_name} failed for {vin_no}: {e}") + + if not manufacturer_name or not model_name or not year_model: + return JsonResponse({'success': False, 'error': 'VIN not found in all sources.'}, status=404) + + logger.info( + f"VIN decoded using {decoding_method}: Make={manufacturer_name}, Model={model_name}, Year={year_model}" + ) + + car_make = models.CarMake.objects.filter(name__icontains=manufacturer_name).first() + if not car_make: + return JsonResponse({'success': False, 'error': 'Manufacturer not found in the database.'}, status=404) + vin_data['make_id'] = car_make.id_car_make + vin_data['name'] = car_make.name + vin_data['arabic_name'] = car_make.arabic_name + + car_model = models.CarModel.objects.filter(id_car_make=car_make.id_car_make, name__icontains=model_name).first() + + if not car_model: + return JsonResponse({'success': False, 'error': 'Model not found for the given manufacturer.'}, status=404) + + vin_data['model_id'] = car_model.id_car_model + vin_data['year'] = year_model + return JsonResponse({'success': True, 'data': vin_data}) + + def get_models(self, request): + make_id = request.GET.get('make_id') + car_models = models.CarModel.objects.filter(id_car_make=make_id).values('id_car_model', 'name', 'arabic_name') + return JsonResponse(list(car_models), safe=False) + + def get_series(self, request): + model_id = request.GET.get('model_id') + series = models.CarSerie.objects.filter( + id_car_model=model_id, + ).values('id_car_serie', 'name', 'arabic_name') + return JsonResponse(list(series), safe=False) + + def get_trims(self, request): + serie_id = request.GET.get('serie_id') + trims = models.CarTrim.objects.filter( + id_car_serie=serie_id + ).values('id_car_trim', 'name', 'arabic_name') + return JsonResponse(list(trims), safe=False) + + def get_specifications(self, request): + trim_id = request.GET.get('trim_id') + car_spec_values = models.CarSpecificationValue.objects.filter(id_car_trim=trim_id) + lang = translation.get_language() + specs_by_parent = {} + for value in car_spec_values: + specification = value.id_car_specification + parent = specification.id_parent + parent_id = parent.id_car_specification if parent else 0 + if lang == 'ar': + parent_name = parent.arabic_name if parent else "Root" + else: + parent_name = parent.name if parent else "Root" + if parent_id not in specs_by_parent: + specs_by_parent[parent_id] = {'parent_name': parent_name, 'specifications': []} + spec_data = { + 'specification_id': specification.id_car_specification, + 's_name': specification.arabic_name if lang == 'ar' else specification.name, + 's_value': value.value, + 's_unit': value.unit if value.unit else "", + 'trim_name': value.id_car_trim.name + } + specs_by_parent[parent_id]['specifications'].append(spec_data) + serialized_specs = [ + {'parent_name': v['parent_name'], 'specifications': v['specifications']} + for v in specs_by_parent.values() + ] + return JsonResponse(serialized_specs, safe=False) + + +class CarInventory(LoginRequiredMixin, ListView): + model = models.Car + home_label = _('inventory') + template_name = 'inventory/car_inventory.html' + context_object_name = 'cars' + paginate_by = 10 + ordering = ['receiving_date'] + + def get_queryset(self, *args, **kwargs): + query = self.request.GET.get('q') + make_id = self.kwargs['make_id'] + model_id = self.kwargs['model_id'] + trim_id = self.kwargs['trim_id'] + cars = models.Car.objects.filter( + dealer__user=self.request.user, + id_car_make=make_id, + id_car_model=model_id, + id_car_trim=trim_id,).order_by('receiving_date') + + if query: + cars = cars.filter(Q(vin__icontains=query)) + return cars + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['query'] = self.request.GET.get('q', '') + context['make_id'] = self.kwargs['make_id'] + context['model_id'] = self.kwargs['model_id'] + context['trim_id'] = self.kwargs['trim_id'] + return context + + +@login_required +def inventory_stats_view(request): + dealer = request.user.dealer + + # Annotate total cars by make, model, and trim + cars = ( + models.Car.objects.filter(dealer=dealer) + .select_related('id_car_make', 'id_car_model', 'id_car_trim') + .annotate( + make_total=Count('id_car_make'), + model_total=Count('id_car_model'), + trim_total=Count('id_car_trim') + ) + ) + + # Prepare the nested structure + inventory = {} + for car in cars: + # Make Level + make = car.id_car_make + if make.id_car_make not in inventory: + inventory[make.id_car_make] = { + 'make_id': make.id_car_make, + 'make_name': make.get_local_name(), + 'total_cars': 0, + 'models': {} + } + inventory[make.id_car_make]['total_cars'] += 1 + + # Model Level + model = car.id_car_model + if model and model.id_car_model not in inventory[make.id_car_make]['models']: + inventory[make.id_car_make]['models'][model.id_car_model] = { + 'model_id': model.id_car_model, + 'model_name': model.get_local_name(), + 'total_cars': 0, + 'trims': {} + } + inventory[make.id_car_make]['models'][model.id_car_model]['total_cars'] += 1 + + # Trim Level + trim = car.id_car_trim + if trim and trim.id_car_trim not in inventory[make.id_car_make]['models'][model.id_car_model]['trims']: + inventory[make.id_car_make]['models'][model.id_car_model]['trims'][trim.id_car_trim] = { + 'trim_id': trim.id_car_trim, + 'trim_name': trim.name, + 'total_cars': 0 + } + inventory[make.id_car_make]['models'][model.id_car_model]['trims'][trim.id_car_trim]['total_cars'] += 1 + + # Convert to a list for easier template rendering + result = { + 'total_cars': cars.count(), + 'makes': [ + { + 'make_id': make_data['make_id'], + 'make_name': make_data['make_name'], + 'total_cars': make_data['total_cars'], + 'models': [ + { + 'model_id': model_data['model_id'], + 'model_name': model_data['model_name'], + 'total_cars': model_data['total_cars'], + 'trims': list(model_data['trims'].values()) + } + for model_data in make_data['models'].values() + ] + } + for make_data in inventory.values() + ] + } + + return render(request, 'inventory/inventory_stats.html', {'inventory': result}) + + +class CarDetailView(LoginRequiredMixin, DetailView): + model = models.Car + template_name = 'inventory/car_detail.html' + context_object_name = 'car' + + +class CarFinanceCreateView(LoginRequiredMixin, CreateView): + model = models.CarFinance + form_class = forms.CarFinanceForm + template_name = 'inventory/car_finance_form.html' + + def dispatch(self, request, *args, **kwargs): + self.car = get_object_or_404(models.Car, pk=self.kwargs['car_pk']) + return super().dispatch(request, *args, **kwargs) + + def form_valid(self, form): + form.instance.car = self.car + messages.success(self.request, _('Car finance details saved successfully.')) + return super().form_valid(form) + + def get_success_url(self): + return reverse('car_detail', kwargs={'pk': self.car.pk}) + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['car'] = self.car + return context + + +class CarFinanceUpdateView(LoginRequiredMixin, UpdateView): + model = models.CarFinance + form_class = forms.CarFinanceForm + template_name = 'inventory/car_finance_form.html' + + def form_valid(self, form): + messages.success(self.request, _('Car finance updated successfully.')) + return super().form_valid(form) + + def get_success_url(self): + return reverse('car_detail', kwargs={'pk': self.object.car.pk}) + + +class CarUpdateView(LoginRequiredMixin, UpdateView): + model = models.Car + form_class = forms.CarUpdateForm + template_name = 'inventory/car_edit.html' + + def form_valid(self, form): + messages.success(self.request, _('Car updated successfully.')) + return super().form_valid(form) + + def get_success_url(self): + return reverse('car_detail', kwargs={'pk': self.object.pk}) + + +class CarDeleteView(LoginRequiredMixin, DeleteView): + model = models.Car + template_name = 'inventory/car_confirm_delete.html' + success_url = reverse_lazy('inventory_stats') + + def delete(self, request, *args, **kwargs): + messages.success(request, _('Car deleted successfully.')) + return super().delete(request, *args, **kwargs) + + +class CustomCardCreateView(LoginRequiredMixin, CreateView): + model = models.CustomCard + form_class = forms.CustomCardForm + template_name = "inventory/add_custom_card.html" + + def form_valid(self, form): + car = get_object_or_404(models.Car, pk=self.kwargs['car_pk']) + form.instance.car = car + return super().form_valid(form) + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['car'] = get_object_or_404(models.Car, pk=self.kwargs['car_pk']) + return context + + def get_success_url(self): + messages.success(self.request, _("Custom Card added successfully.")) + return reverse_lazy('car_detail', kwargs={'pk': self.kwargs['car_pk']}) + + +class CarColorCreateView(LoginRequiredMixin, CreateView): + model = models.CarColors + template_name = 'inventory/color_palette.html' + + def dispatch(self, request, *args, **kwargs): + self.car = get_object_or_404(models.Car, pk=self.kwargs['car_pk']) + self.available_colors = self.fetch_available_colors() + return super().dispatch(request, *args, **kwargs) + + def get_form_class(self): + class ColorPickerForm(ModelForm): + color = ChoiceField( + choices=self.get_color_choices(), + widget=RadioSelect(attrs={'class': 'color-picker'}), + label=_("Select a Color"), + ) + color_type = ChoiceField( + choices=models.CarColors.ColorType.choices, + widget=RadioSelect(attrs={'class': 'color-type-picker'}), + label=_("Select Color Type"), + ) + + class Meta: + model = models.CarColors + fields = ['color', 'color_type'] + + return ColorPickerForm + + def fetch_available_colors(self): + car_data = { + 'make': self.car.id_car_make.name, + 'model': self.car.id_car_model.name, + 'year': str(self.car.year), + } + return fetch_colors(car_data) or [] + + def get_color_choices(self): + return [(color['rgb'], color['name']) for color in self.available_colors] + + def form_valid(self, form): + selected_rgb = form.cleaned_data['color'] + selected_name = next( + (color['name'] for color in self.available_colors if color['rgb'] == selected_rgb), + None + ) + + if not selected_name: + messages.error(self.request, _('Invalid color selection.')) + return self.form_invalid(form) + + # Assign the car and selected color details + form.instance.car = self.car + form.instance.rgb = selected_rgb + form.instance.name = selected_name + form.instance.arabic_name = translate(selected_name) + form.instance.color_type = form.cleaned_data['color_type'] + + messages.success(self.request, _('Color added successfully.')) + return super().form_valid(form) + + def get_success_url(self): + return reverse('car_detail', kwargs={'pk': self.car.pk}) + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['car'] = self.car + return context + + +class CarColorUpdateView(LoginRequiredMixin, UpdateView): + model = forms.CarColors + template_name = 'inventory/color_palette.html' + + def dispatch(self, request, *args, **kwargs): + self.car = get_object_or_404(models.Car, pk=self.kwargs['car_pk']) + self.available_colors = self.fetch_available_colors() + return super().dispatch(request, *args, **kwargs) + + def get_form_class(self): + class ColorPickerForm(ModelForm): + color = ChoiceField( + choices=self.get_color_choices(), + widget=RadioSelect(attrs={'class': 'color-picker'}), + label=_("Select a Color"), + ) + + class Meta: + model = forms.CarColors + fields = ['color'] + return ColorPickerForm + + def fetch_available_colors(self): + car_data = { + 'make': self.car.id_car_make.name, + 'model': self.car.id_car_model.name, + 'year': str(self.car.year), + } + return fetch_colors(car_data) or [] + + def get_color_choices(self): + return [(color['rgb'], color['name']) for color in self.available_colors] + + def form_valid(self, form): + selected_rgb = form.cleaned_data['color'] + selected_name = next( + (color['name'] for color in self.available_colors if color['rgb'] == selected_rgb), + None + ) + + if not selected_name: + messages.error(self.request, _('Invalid color selection.')) + return self.form_invalid(form) + + form.instance.rgb = selected_rgb + form.instance.name = selected_name + form.instance.arabic_name = translate(selected_name) + + messages.success(self.request, _('Exterior color updated successfully.')) + return super().form_valid(form) + + def get_success_url(self): + return reverse('car_detail', kwargs={'pk': self.car.pk}) + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['car'] = self.car + return context + + +@login_required() +def reserve_car_view(request, car_id): + if request.method == "POST": + car = get_object_or_404(models.Car, pk=car_id) + if car.is_reserved(): + messages.error(request, _("This car is already reserved.")) + return redirect('car_detail', pk=car.pk) + + try: + reserved_until = timezone.now() + timezone.timedelta(hours=24) + models.CarReservation.objects.create( + car=car, + reserved_by=request.user, + reserved_until=reserved_until + ) + messages.success(request, _("Car reserved successfully.")) + except Exception as e: + messages.error(request, f"Error reserving car: {e}") + + return redirect('car_detail', pk=car.pk) + return JsonResponse({"success": False, "message": "Invalid request method."}, status=400) + + +@login_required +def manage_reservation(request, reservation_id): + reservation = get_object_or_404(models.CarReservation, pk=reservation_id, reserved_by=request.user) + + if request.method == "POST": + action = request.POST.get("action") + if action == "renew": + reservation.reserved_until = timezone.now() + timezone.timedelta(hours=24) + reservation.save() + messages.success(request, _("Reservation renewed successfully.")) + return redirect('car_detail', pk=reservation.car.pk) + + elif action == "cancel": + reservation.delete() + messages.success(request, _("Reservation canceled successfully.")) + return redirect('car_detail', pk=reservation.car.pk) + + else: + return JsonResponse({"success": False, "message": _("Invalid action.")}, status=400) + + return JsonResponse({"success": False, "message": _("Invalid request method.")}, status=400) + + +class DealerListView(LoginRequiredMixin, ListView): + model = models.Dealer + template_name = 'dealer_list.html' + context_object_name = 'dealers' + + +class DealerDetailView(LoginRequiredMixin, DetailView): + model = models.Dealer + template_name = 'dealers/dealer_detail.html' + context_object_name = 'dealer' + + +class DealerCreateView(LoginRequiredMixin, CreateView): + model = models.Dealer + form_class = forms.DealerForm + template_name = 'dealer_form.html' + success_url = reverse_lazy('dealer_list') + + def form_valid(self, form): + messages.success(self.request, _('Dealer created successfully.')) + return super().form_valid(form) + + +class DealerUpdateView(LoginRequiredMixin, UpdateView): + model = models.Dealer + form_class = forms.DealerForm + template_name = 'dealers/dealer_form.html' + success_url = reverse_lazy('dealer_detail') + + def form_valid(self, form): + messages.success(self.request, _('Dealer updated successfully.')) + return super().form_valid(form) + + +class DealerDeleteView(LoginRequiredMixin, DeleteView): + model = models.Dealer + template_name = 'dealer_confirm_delete.html' + success_url = reverse_lazy('dealer_list') + + def delete(self, request, *args, **kwargs): + messages.success(request, _('Dealer deleted successfully.')) + return super().delete(request, *args, **kwargs) + + +class CustomerListView(LoginRequiredMixin, ListView): + model = models.Customer + home_label = _('customers') + context_object_name = 'customers' + paginate_by = 10 + template_name = "customers/customer_list.html" + + def get_queryset(self): + query = self.request.GET.get('q') + customers = models.Customer.objects.filter(dealer__user=self.request.user) + + if query: + customers = customers.filter( + Q(national_id__icontains=query) | + Q(first_name__icontains=query) | + Q(last_name__icontains=query) + ) + return customers + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['query'] = self.request.GET.get('q', '') + return context + + +class CustomerDetailView(LoginRequiredMixin, DetailView): + model = models.Customer + template_name = 'customers/view_customer.html' + context_object_name = 'customer' + + +class CustomerCreateView(LoginRequiredMixin, CreateView): + model = models.Customer + form_class = forms.CustomerForm + template_name = 'customers/customer_form.html' + success_url = reverse_lazy('customer_list') + + def form_valid(self, form): + if form.is_valid(): + form.instance.dealer = self.request.user.dealer + form.save() + messages.success(self.request, _('Customer created successfully.')) + return super().form_valid(form) + else: + return form.errors + + +class CustomerUpdateView(LoginRequiredMixin, UpdateView): + model = models.Customer + form_class = forms.CustomerForm + template_name = 'customers/customer_form.html' + success_url = reverse_lazy('customer_list') + + def form_valid(self, form): + if form.is_valid(): + form.instance.dealer = self.request.user.dealer + form.save() + messages.success(self.request, _('Customer updated successfully.')) + return super().form_valid(form) + else: + return form.errors + + +@login_required +def delete_customer(request, pk): + customer = get_object_or_404(models.Customer, pk=pk) + customer.delete() + messages.success(request, _('Customer deleted successfully.')) + return redirect('customer_list') + diff --git a/locale/.DS_Store b/locale/.DS_Store new file mode 100644 index 00000000..80e8ccd8 Binary files /dev/null and b/locale/.DS_Store differ diff --git a/locale/ar/.DS_Store b/locale/ar/.DS_Store new file mode 100644 index 00000000..b27d5d40 Binary files /dev/null and b/locale/ar/.DS_Store differ diff --git a/locale/ar/LC_MESSAGES/.DS_Store b/locale/ar/LC_MESSAGES/.DS_Store new file mode 100644 index 00000000..e6f283ef Binary files /dev/null and b/locale/ar/LC_MESSAGES/.DS_Store differ diff --git a/locale/ar/LC_MESSAGES/django.mo b/locale/ar/LC_MESSAGES/django.mo new file mode 100644 index 00000000..eacb5b7c Binary files /dev/null and b/locale/ar/LC_MESSAGES/django.mo differ diff --git a/locale/ar/LC_MESSAGES/django.po b/locale/ar/LC_MESSAGES/django.po new file mode 100644 index 00000000..0e3add6c --- /dev/null +++ b/locale/ar/LC_MESSAGES/django.po @@ -0,0 +1,6767 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-12-06 19:45+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#: api/models.py:6 inventory/models.py:122 +#: templates/inventory/car_detail.html:44 templates/inventory/car_form.html:83 +#: templates/inventory/car_inventory.html:40 +#: templates/inventory/car_list.html:67 templates/inventory/car_list.html:69 +msgid "VIN" +msgstr "رقم الهيكل" + +#: car_inventory/settings.py:202 +msgid "English" +msgstr "الإنجليزية" + +#: car_inventory/settings.py:203 +msgid "Arabic" +msgstr "العربية" + +#: inventory/models.py:30 templates/vendors/vendors_list.html:30 +msgid "logo" +msgstr "الشعار" + +#: inventory/models.py:110 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/tags/invoice_item_formset.html:21 +msgid "Available" +msgstr "متاح" + +#: inventory/models.py:111 +msgid "Sold" +msgstr "تم البيع" + +#: inventory/models.py:112 +msgid "Hold" +msgstr "في الانتظار" + +#: inventory/models.py:113 +msgid "Damaged" +msgstr "تالف" + +#: inventory/models.py:117 +msgid "New" +msgstr "جديد" + +#: inventory/models.py:118 +msgid "Used" +msgstr "مستعمل" + +#: inventory/models.py:127 inventory/models.py:332 +msgid "Dealer" +msgstr "المعرض" + +#: inventory/models.py:136 inventory/models.py:351 +#: templates/inventory/car_detail.html:91 templates/inventory/car_form.html:225 +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:359 +#: venv/lib/python3.11/site-packages/django_ledger/models/vendor.py:191 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_table.html:12 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/vendor/tags/vendor_table.html:10 +msgid "Vendor" +msgstr "المورد" + +#: inventory/models.py:144 templates/inventory/car_inventory.html:42 +msgid "Make" +msgstr "الصانع" + +#: inventory/models.py:152 templates/inventory/car_inventory.html:43 +msgid "Model" +msgstr "الموديل" + +#: inventory/models.py:154 templates/inventory/car_form.html:117 +#: templates/inventory/car_inventory.html:41 +msgid "Year" +msgstr "السنة" + +#: inventory/models.py:161 templates/inventory/car_form.html:177 +msgid "Series" +msgstr "السلسلة" + +#: inventory/models.py:169 +msgid "Trim" +msgstr "الفئة" + +#: inventory/models.py:175 templates/inventory/car_detail.html:69 +#: templates/inventory/car_list.html:163 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_table.html:10 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/card_estimate.html:12 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/estimate_table.html:12 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:15 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/po_item_formset.html:23 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/tags/po_item_table.html:12 +msgid "Status" +msgstr "الحالة" + +#: inventory/models.py:181 templates/inventory/car_detail.html:73 +#: templates/inventory/car_form.html:243 templates/inventory/car_list.html:177 +msgid "Stock Type" +msgstr "نوع المخزون" + +#: inventory/models.py:183 templates/inventory/car_detail.html:96 +#: templates/inventory/car_form.html:296 templates/inventory/car_list.html:200 +msgid "Remarks" +msgstr "ملاحظات" + +#: inventory/models.py:184 templates/inventory/car_detail.html:77 +#: templates/inventory/car_form.html:260 templates/inventory/car_list.html:191 +#: templates/inventory/car_list.html:192 +msgid "Mileage" +msgstr "عدد الكيلومترات" + +#: inventory/models.py:185 templates/inventory/car_detail.html:81 +#: templates/inventory/car_form.html:278 +msgid "Receiving Date" +msgstr "تاريخ الاستلام" + +#: inventory/models.py:188 inventory/models.py:282 inventory/models.py:296 +msgid "Car" +msgstr "السيارة" + +#: inventory/models.py:189 +msgid "Cars" +msgstr "السيارات" + +#: inventory/models.py:234 templates/inventory/car_detail.html:123 +#: templates/inventory/car_finance_form.html:38 +msgid "Cost Price" +msgstr "سعر التكلفة" + +#: inventory/models.py:235 templates/inventory/car_detail.html:127 +#: templates/inventory/car_finance_form.html:46 +msgid "Profit Margin" +msgstr "هامش الربح" + +#: inventory/models.py:236 templates/inventory/car_detail.html:131 +#: templates/inventory/car_finance_form.html:62 +msgid "Selling Price" +msgstr "سعر البيع" + +#: inventory/models.py:237 templates/inventory/car_detail.html:135 +#: templates/inventory/car_finance_form.html:54 +msgid "VAT Rate" +msgstr "نسبة ضريبة القيمة المضافة" + +#: inventory/models.py:238 templates/inventory/car_detail.html:139 +#: templates/inventory/car_finance_form.html:66 +msgid "VAT Amount" +msgstr "مبلغ ضريبة القيمة المضافة" + +#: inventory/models.py:239 templates/inventory/car_finance_form.html:70 +msgid "Total Amount" +msgstr "المبلغ الإجمالي" + +#: inventory/models.py:242 +msgid "Car Financial Details" +msgstr "التفاصيل المالية السيارة" + +#: inventory/models.py:258 +msgid "Exterior" +msgstr "الخارجي" + +#: inventory/models.py:259 +msgid "Interior" +msgstr "الداخلي" + +#: inventory/models.py:262 templates/dealers/dealer_detail.html:26 +#: templates/vendors/view_vendor.html:8 +#: venv/lib/python3.11/site-packages/django_ledger/forms/coa.py:16 +#: venv/lib/python3.11/site-packages/django_ledger/forms/coa.py:37 +msgid "Name" +msgstr "الاسم" + +#: inventory/models.py:263 inventory/models.py:325 inventory/models.py:344 +msgid "Arabic Name" +msgstr "الاسم بالعربية" + +#: inventory/models.py:264 +msgid "RGB" +msgstr "آر جي بي" + +#: inventory/models.py:269 templates/inventory/color_palette.html:66 +msgid "Color Type" +msgstr "نوع اللون" + +#: inventory/models.py:273 +msgid "Color" +msgstr "اللون" + +#: inventory/models.py:274 +msgid "Colors" +msgstr "الألوان" + +#: inventory/models.py:283 +msgid "Custom Number" +msgstr "رقم البطاقة الجمركية" + +#: inventory/models.py:284 +msgid "Custom Date" +msgstr "تاريخ البطاقة الجمركية" + +#: inventory/models.py:287 +msgid "Custom Card" +msgstr "البطاقة الجمركية" + +#: inventory/models.py:288 +msgid "Custom Cards" +msgstr "البطاقات الجمركية" + +#: inventory/models.py:297 +msgid "Plate Number" +msgstr "رقم اللوحة" + +#: inventory/models.py:298 +msgid "Text 1" +msgstr "النص 1" + +#: inventory/models.py:299 +msgid "Text 2" +msgstr "النص 2" + +#: inventory/models.py:300 +msgid "Text 3" +msgstr "النص 3" + +#: inventory/models.py:301 +msgid "Registration Date" +msgstr "تاريخ التسجيل" + +#: inventory/models.py:304 +msgid "Registration" +msgstr "التسجيل" + +#: inventory/models.py:305 +msgid "Registrations" +msgstr "تسجيل السيارات" + +#: inventory/models.py:313 inventory/models.py:368 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/chart_of_accounts/includes/coa_card.html:38 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/tags/closing_entry_table.html:12 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:17 +msgid "Created" +msgstr "تاريخ الإنشاء" + +#: inventory/models.py:314 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/chart_of_accounts/includes/coa_card.html:41 +msgid "Updated" +msgstr "تم التحديث" + +#: inventory/models.py:323 inventory/models.py:342 +#: templates/dealers/dealer_detail.html:30 +msgid "Commercial Registration Number" +msgstr "رقم السجل التجاري" + +#: inventory/models.py:324 inventory/models.py:343 +#: templates/dealers/dealer_detail.html:34 +msgid "VAT Registration Number" +msgstr "رقم التسجيل في ضريبة القيمة المضافة" + +#: inventory/models.py:326 inventory/models.py:345 +msgid "English Name" +msgstr "الاسم بالإنجليزية" + +#: inventory/models.py:327 inventory/models.py:347 inventory/models.py:366 +#: templates/customers/view_customer.html:53 +#: templates/dealers/dealer_detail.html:38 +#: templates/vendors/view_vendor.html:17 +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:113 +msgid "Phone Number" +msgstr "رقم الهاتف" + +#: inventory/models.py:328 inventory/models.py:348 inventory/models.py:367 +#: templates/customers/view_customer.html:54 +#: templates/dealers/dealer_detail.html:42 +#: templates/vendors/view_vendor.html:19 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/customer/tags/customer_table.html:10 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/vendor/tags/vendor_table.html:11 +msgid "Address" +msgstr "العنوان" + +#: inventory/models.py:329 +msgid "Logo" +msgstr "الشعار" + +#: inventory/models.py:333 +msgid "Dealers" +msgstr "المعارض" + +#: inventory/models.py:346 templates/vendors/view_vendor.html:16 +msgid "Contact Person" +msgstr "الشخص المسؤول" + +#: inventory/models.py:352 +msgid "Vendors" +msgstr "الموردين" + +#: inventory/models.py:361 templates/customers/view_customer.html:46 +msgid "First Name" +msgstr "الاسم الأول" + +#: inventory/models.py:362 templates/customers/view_customer.html:47 +msgid "Middle Name" +msgstr "اسم الأب" + +#: inventory/models.py:363 templates/customers/view_customer.html:48 +msgid "Last Name" +msgstr "اسم العائلة" + +#: inventory/models.py:364 templates/customers/view_customer.html:51 +#: templates/vendors/view_vendor.html:18 +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:111 +msgid "Email" +msgstr "البريد الإلكتروني" + +#: inventory/models.py:365 templates/customers/view_customer.html:52 +msgid "National ID" +msgstr "رقم الهوية الوطنية" + +#: inventory/models.py:371 +#: venv/lib/python3.11/site-packages/django_ledger/models/customer.py:199 +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:252 +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:318 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/customer/tags/customer_table.html:9 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/estimate_table.html:10 +msgid "Customer" +msgstr "العميل" + +#: inventory/models.py:372 +msgid "Customers" +msgstr "العملاء" + +#: inventory/utils.py:25 +msgid "success" +msgstr "ناجحة" + +#: inventory/utils.py:26 +msgid "error" +msgstr "خطأ" + +#: inventory/utils.py:27 templates/accounts/password_change.html:32 +msgid "Forgot Password?" +msgstr "نسيت كلمة المرور؟" + +#: inventory/views.py:69 +msgid "You are not associated with any dealer." +msgstr "أنت غير مرتبط بأي معرض." + +#: inventory/views.py:251 templates/header.html:33 templates/index.html:20 +#: templates/inventory/car_inventory.html:5 +#: templates/inventory/car_inventory.html:7 +msgid "inventory" +msgstr "المخزون" + +#: inventory/views.py:373 +msgid "Car finance details saved successfully." +msgstr "تم حفظ تفاصيل المالية للسيارة بنجاح." + +#: inventory/views.py:391 +msgid "Car finance updated successfully." +msgstr "تم تحديث التفاصيل المالية للسيارة بنجاح." + +#: inventory/views.py:404 +msgid "Car updated successfully." +msgstr "تم تحديث السيارة بنجاح" + +#: inventory/views.py:417 +msgid "Car deleted successfully." +msgstr "تم حذف السيارة بنجاح." + +#: inventory/views.py:435 inventory/views.py:504 +msgid "Select a Color" +msgstr "اختر اللون" + +#: inventory/views.py:440 +msgid "Select Color Type" +msgstr "حدد نوع اللون" + +#: inventory/views.py:468 inventory/views.py:532 +msgid "Invalid color selection." +msgstr "تحديد اللون غير صالح." + +#: inventory/views.py:478 +msgid "Color added successfully." +msgstr "تمت إضافة اللون بنجاح." + +#: inventory/views.py:539 +msgid "Exterior color updated successfully." +msgstr "تم تحديث اللون الخارجي بنجاح." + +#: inventory/views.py:556 +msgid "This car is already reserved." +msgstr "هذه السيارة محجوزة بالفعل." + +#: inventory/views.py:566 +msgid "Car reserved successfully." +msgstr "تم حجز السيارة بنجاح." + +#: inventory/views.py:583 +msgid "Reservation renewed successfully." +msgstr "تم تجديد الحجز بنجاح" + +#: inventory/views.py:588 +msgid "Reservation canceled successfully." +msgstr "تم إلغاء الحجز بنجاح." + +#: inventory/views.py:592 +msgid "Invalid action." +msgstr "إجراء غير صالح." + +#: inventory/views.py:594 +msgid "Invalid request method." +msgstr "طريقة الطلب غير صالحة" + +#: inventory/views.py:616 +msgid "Dealer created successfully." +msgstr "تم إنشاء المعرض بنجاح." + +#: inventory/views.py:627 +msgid "Dealer updated successfully." +msgstr "تم تحديث المعرض بنجاح." + +#: inventory/views.py:637 +msgid "Dealer deleted successfully." +msgstr "تم حذف المعرض بنجاح." + +#: inventory/views.py:643 templates/customers/customer_form.html:4 +#: templates/customers/customer_list.html:5 +#: templates/customers/customer_list.html:6 templates/header.html:59 +#: templates/header.html:74 +msgid "customers" +msgstr "العملاء" + +#: inventory/views.py:682 +msgid "Customer created successfully." +msgstr "تم إنشاء العميل بنجاح." + +#: inventory/views.py:698 +msgid "Customer updated successfully." +msgstr "تم تحديث العميل بنجاح." + +#: inventory/views.py:708 +msgid "Customer deleted successfully." +msgstr "تم حذف العميل بنجاح." + +#: templates/accounts/login.html:6 templates/accounts/login.html:14 +#: templates/accounts/login.html:31 templates/header.html:105 +msgid "Sign In" +msgstr "تسجيل الدخول" + +#: templates/accounts/login.html:16 +msgid "If you have not created an account yet, then please" +msgstr "إذا لم تقم بإنشاء حساب بعد، يرجى التسجيل أولاً." + +#: templates/accounts/login.html:18 templates/accounts/signup.html:5 +#: templates/accounts/signup.html:13 templates/accounts/signup.html:29 +msgid "Sign Up" +msgstr "إنشاء حساب" + +#: templates/accounts/login.html:43 +msgid "Sign in with a passkey" +msgstr "تسجيل الدخول باستخدام مفتاح المرور" + +#: templates/accounts/login.html:48 +msgid "Mail me a sign-in code" +msgstr "أرسل لي رمز تسجيل الدخول عبر البريد الإلكتروني" + +#: templates/accounts/logout.html:3 templates/accounts/logout.html:11 +#: templates/accounts/logout.html:21 templates/dealers/dealer_detail.html:63 +#: templates/header.html:99 +msgid "Sign Out" +msgstr "تسجيل الخروج" + +#: templates/accounts/logout.html:12 +msgid "Are you sure you want to sign out?" +msgstr "هل أنت متأكد أنك تريد تسجيل الخروج؟" + +#: templates/accounts/password_change.html:4 +#: templates/accounts/password_change.html:12 +#: templates/accounts/password_change.html:24 +#: templates/dealers/dealer_detail.html:58 +msgid "Change Password" +msgstr "تغيير كلمة المرور" + +#: templates/accounts/password_change.html:13 +msgid "Ensure your account is using a strong, unique password." +msgstr "تأكد من أن حسابك يستخدم كلمة مرور قوية وفريدة." + +#: templates/accounts/password_reset.html:4 +#: templates/accounts/password_reset.html:12 +#: templates/accounts/password_reset_done.html:6 +#: templates/accounts/password_reset_done.html:10 +msgid "Password Reset" +msgstr "إعادة تعيين كلمة المرور" + +#: templates/accounts/password_reset.html:14 +msgid "" +"Forgotten your password? Enter your email address below, and we'll send you " +"an email allowing you to reset it." +msgstr "" +"نسيت كلمة المرور؟ أدخل عنوان بريدك الإلكتروني أدناه، وسنرسل لك رسالة بريد " +"إلكتروني تتيح لك إعادة تعيينها." + +#: templates/accounts/password_reset.html:25 +msgid "Reset My Password" +msgstr "إعادة تعيين كلمة المرور الخاصة بي" + +#: templates/accounts/password_reset.html:33 +msgid "Please contact us if you have any trouble resetting your password." +msgstr "" +"يرجى التواصل معنا إذا واجهت أي مشكلة في إعادة تعيين كلمة المرور الخاصة بك." + +#: templates/accounts/password_reset_done.html:16 +msgid "" +"We have sent you an email. If you have not received it please check your " +"spam folder. Otherwise contact us if you do not receive it in a few minutes." +msgstr "" +"لقد أرسلنا لك رسالة بريد إلكتروني. إذا لم تتلقاها، يرجى التحقق من مجلد " +"البريد الغير هام. وإذا لم تصلك في غضون بضع دقائق، يرجى التواصل معنا." + +#: templates/accounts/signup.html:15 +msgid "Already have an account?" +msgstr "هل لديك حساب بالفعل؟" + +#: templates/accounts/signup.html:16 +msgid "Sign in" +msgstr "تسجيل الدخول" + +#: templates/accounts/signup.html:40 +msgid "Sign up using a passkey" +msgstr "إنشاء حساب باستخدام مفتاح المرور" + +#: templates/base.html:9 templates/welcome.html:24 +msgid "HAIKAL" +msgstr "هيكل" + +#: templates/customers/customer_form.html:15 +msgid "Edit Customer" +msgstr "تحديث العميل" + +#: templates/customers/customer_form.html:18 +msgid "Add Customer" +msgstr "إضافة عميل" + +#: templates/customers/customer_form.html:32 +#: templates/inventory/car_edit.html:43 templates/inventory/car_form.html:320 +#: templates/inventory/color_palette.html:85 +#: templates/inventory/color_palette_update.html:78 +#: templates/vendors/edit_vendor.html:10 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_item_formset.html:81 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/closing_entry_update.html:19 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/data_import/tags/data_import_job_txs_table.html:78 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/tags/ce_item_formset.html:76 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/tags/invoice_item_formset.html:70 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_detail_txs.html:55 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/po_item_formset.html:102 +msgid "Save" +msgstr "حفظ" + +#: templates/customers/customer_form.html:37 +#: templates/customers/view_customer.html:72 +#: templates/inventory/car_detail.html:248 +msgid "Back to List" +msgstr "العودة إلى القائمة" + +#: templates/customers/customer_list.html:20 +#: templates/inventory/car_inventory.html:29 +#: templates/inventory/car_list.html:70 templates/vendors/vendors_list.html:19 +#: templates/vendors/vendors_list.html:21 +msgid "search" +msgstr "بحث" + +#: templates/customers/customer_list.html:42 +msgid "first name" +msgstr "الاسم الأول" + +#: templates/customers/customer_list.html:43 +msgid "middle name" +msgstr "اسم الأب" + +#: templates/customers/customer_list.html:44 +msgid "last name" +msgstr "اسم العائلة" + +#: templates/customers/customer_list.html:45 +msgid "national ID" +msgstr "رقم الهوية الوطنية" + +#: templates/customers/customer_list.html:46 +#: templates/vendors/vendors_list.html:32 +msgid "actions" +msgstr "الإجراءات" + +#: templates/customers/customer_list.html:59 +#: templates/inventory/car_detail.html:107 +#: templates/inventory/car_inventory.html:62 +#: templates/vendors/vendors_list.html:55 +msgid "view" +msgstr "عرض" + +#: templates/customers/view_customer.html:4 +msgid "View Customer" +msgstr "عرض العميل" + +#: templates/customers/view_customer.html:19 +msgid "Are you sure you want to delete this customer?" +msgstr "هل أنت متأكد أنك تريد حذف هذا العميل؟" + +#: templates/customers/view_customer.html:26 +#: venv/lib/python3.11/site-packages/django/forms/widgets.py:802 +msgid "No" +msgstr "لا" + +#: templates/customers/view_customer.html:31 +#: venv/lib/python3.11/site-packages/django/forms/widgets.py:801 +msgid "Yes" +msgstr "نعم" + +#: templates/customers/view_customer.html:41 +msgid "Customer Details" +msgstr "تفاصيل العميل" + +#: templates/customers/view_customer.html:61 +#: templates/inventory/car_detail.html:115 +#: templates/inventory/car_detail.html:178 +#: templates/vendors/view_vendor.html:21 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/customer/includes/card_customer.html:28 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_table.html:83 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:101 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/vendor/includes/card_vendor.html:28 +msgid "Edit" +msgstr "تحديث" + +#: templates/customers/view_customer.html:67 +#: templates/vendors/delete_vendor.html:11 +#: templates/vendors/view_vendor.html:22 +#: venv/lib/python3.11/site-packages/django/forms/formsets.py:499 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_delete.html:28 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_item_formset.html:25 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/closing_entry_delete.html:19 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/includes/card_closing_entry.html:60 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/tags/closing_entry_table.html:46 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/data_import/import_job_delete.html:18 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/data_import/tags/data_import_job_list_table.html:42 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/entity/entitiy_list.html:22 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/entity/entity_delete.html:23 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/entity/includes/card_entity.html:31 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/tags/ce_item_formset.html:25 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_delete.html:24 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/tags/invoice_item_formset.html:23 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_delete.html:19 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_table.html:88 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/ledger_delete.html:19 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:130 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/product/product_delete.html:20 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/product/tags/product_table.html:44 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:103 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/po_item_formset.html:25 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_delete.html:24 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/service/service_delete.html:20 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/service/tags/services_table.html:44 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/uom/tags/uom_table.html:43 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/uom/uom_delete.html:28 +msgid "Delete" +msgstr "حذف" + +#: templates/dealers/dealer_detail.html:5 +#: templates/dealers/dealer_detail.html:14 +msgid "Dealer Details" +msgstr "تفاصيل المعرض" + +#: templates/dealers/dealer_detail.html:43 +msgid "N/A" +msgstr "غير متوفر" + +#: templates/dealers/dealer_detail.html:47 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/account/tags/accounts_table.html:101 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bank_account/bank_account_update.html:23 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bank_account/tags/bank_accounts_table.html:49 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:46 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:154 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/customer/tags/customer_table.html:63 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/data_import/import_job_update.html:14 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/data_import/tags/data_import_job_list_table.html:40 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/entity/entity_update.html:16 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/card_estimate.html:56 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/expense/expense_update.html:23 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/expense/tags/expense_item_table.html:43 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/balance_sheet_statement.html:66 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/inventory/inventory_item_update.html:23 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/inventory/tags/inventory_item_table.html:38 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:40 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:137 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_detail.html:34 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/product/product_update.html:23 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/product/tags/product_table.html:42 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:61 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/service/service_update.html:23 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/service/tags/services_table.html:42 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/unit/unit_list.html:34 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/unit/unit_update.html:22 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/uom/tags/uom_table.html:41 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/uom/uom_update.html:24 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/vendor/tags/vendor_table.html:63 +msgid "Update" +msgstr "تحديث" + +#: templates/dealers/dealer_detail.html:54 +msgid "Account Management" +msgstr "إدارة الحساب" + +#: templates/dealers/dealer_detail.html:69 +msgid "Admin Panel" +msgstr "لوحة التحكم الإدارية" + +#: templates/dealers/dealer_form.html:5 templates/dealers/dealer_form.html:14 +msgid "Update Dealer Information" +msgstr "تحديث معلومات المعرض" + +#: templates/dealers/dealer_form.html:26 +msgid "Save Changes" +msgstr "حفظ تغيير" + +#: templates/dealers/dealer_form.html:36 templates/inventory/car_edit.html:40 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bank_account/bank_account_create.html:25 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bank_account/bank_account_update.html:26 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/data_import/data_import_job_list.html:13 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/data_import/data_import_job_txs.html:20 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/entity/entity_update.html:20 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/estimate_create.html:25 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/expense/expense_create.html:26 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/expense/expense_update.html:26 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/inventory/inventory_item_create.html:26 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/inventory/inventory_item_update.html:26 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/product/product_create.html:27 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/product/product_update.html:26 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/service/service_create.html:27 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/service/service_update.html:26 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/unit/unit_create.html:24 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/unit/unit_update.html:24 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/uom/uom_create.html:27 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/uom/uom_update.html:27 +msgid "Back" +msgstr "عودة" + +#: templates/footer.html:5 +msgid "All right reserved" +msgstr "جميع الحقوق محفوظة" + +#: templates/footer.html:5 +msgid "Tenhal" +msgstr "تنحل" + +#: templates/header.html:25 templates/header.html:82 templates/index.html:5 +msgid "home" +msgstr "الرئيسية" + +#: templates/header.html:40 +msgid "add car" +msgstr "إضافة سيارة" + +#: templates/header.html:48 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:440 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:526 +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:521 +#: venv/lib/python3.11/site-packages/django_ledger/views/inventory.py:45 +msgid "Inventory" +msgstr "المخزون" + +#: templates/header.html:66 +msgid "add customer" +msgstr "إضافة عميل" + +#: templates/header.html:96 +msgid "profile" +msgstr "الملف الشخصي" + +#: templates/header.html:128 +msgid "Theme" +msgstr "السمة" + +#: templates/index.html:24 +msgid "Reserved Cars" +msgstr "السيارات المحجوزة" + +#: templates/index.html:28 +msgid "purchase orders" +msgstr "أوامر الشراء" + +#: templates/index.html:32 +msgid "invoices" +msgstr "الفواتير" + +#: templates/index.html:36 +msgid "sold" +msgstr "تم البيع" + +#: templates/index.html:41 +msgid "notifications" +msgstr "الإشعارات" + +#: templates/index.html:45 +msgid "transfer request" +msgstr "طلب النقل" + +#: templates/index.html:57 +msgid "inventory value" +msgstr "قيمة المخزون" + +#: templates/index.html:58 +msgid "View the current value of your car inventory." +msgstr "عرض القيمة الحالية لمخزون السيارات الخاص بك." + +#: templates/index.html:59 templates/index.html:62 templates/index.html:80 +#: templates/index.html:87 templates/index.html:116 templates/index.html:122 +#: templates/index.html:128 templates/index.html:163 templates/index.html:171 +#: templates/index.html:179 +msgid "SAR" +msgstr "ريال سعودي" + +#: templates/index.html:61 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/widget_ratios.html:31 +msgid "Profitability" +msgstr "الربحية" + +#: templates/index.html:66 +msgid "sales analytics" +msgstr "تحليلات المبيعات" + +#: templates/index.html:74 +msgid "top customers" +msgstr "أفضل العملاء" + +#: templates/index.html:75 +msgid "View your highest spending customer." +msgstr "عرض العميل الذي ينفق أكثر." + +#: templates/index.html:92 +msgid "view customer" +msgstr "عرض العميل" + +#: templates/index.html:100 +msgid "Today's Pending Orders" +msgstr "أوامر اليوم المعلقة" + +#: templates/index.html:101 +msgid "View your pending orders for today." +msgstr "عرض أوامرك المعلقة لليوم." + +#: templates/index.html:106 +msgid "order" +msgstr "الطلب" + +#: templates/index.html:107 +msgid "customer" +msgstr "العميل" + +#: templates/index.html:108 +msgid "amount" +msgstr "المبلغ" + +#: templates/index.html:109 +msgid "status" +msgstr "الحالة" + +#: templates/index.html:117 templates/index.html:123 templates/index.html:129 +msgid "pending" +msgstr "معلق" + +#: templates/index.html:136 +msgid "view orders" +msgstr "عرض الأوامر" + +#: templates/index.html:145 +msgid "top selling cars" +msgstr "أفضل السيارات مبيعاً" + +#: templates/index.html:146 +msgid "View your best-selling cars." +msgstr "عرض السيارات الأكثر مبيعاً." + +#: templates/index.html:151 templates/inventory/car_detail.html:57 +#: templates/inventory/car_form.html:155 templates/inventory/car_list.html:97 +msgid "model" +msgstr "الموديل" + +#: templates/index.html:152 templates/index.html:227 +msgid "sales" +msgstr "المبيعات" + +#: templates/index.html:153 +msgid "revenue" +msgstr "الإيرادات" + +#: templates/index.html:186 +msgid "view inventory" +msgstr "عرض المخزون" + +#: templates/index.html:194 +msgid "Daily Sales" +msgstr "المبيعات اليومية" + +#: templates/index.html:195 +msgid "View your daily sales trends." +msgstr "عرض اتجاهات المبيعات اليومية." + +#: templates/index.html:217 +#: venv/lib/python3.11/site-packages/django/utils/dates.py:22 +msgid "Sun" +msgstr "الأحد" + +#: templates/index.html:218 +#: venv/lib/python3.11/site-packages/django/utils/dates.py:16 +msgid "Mon" +msgstr "الإثنين" + +#: templates/index.html:219 +#: venv/lib/python3.11/site-packages/django/utils/dates.py:17 +msgid "Tue" +msgstr "الثلاثاء" + +#: templates/index.html:220 +#: venv/lib/python3.11/site-packages/django/utils/dates.py:18 +msgid "Wed" +msgstr "الأربعاء" + +#: templates/index.html:221 +#: venv/lib/python3.11/site-packages/django/utils/dates.py:19 +msgid "Thu" +msgstr "الخميس" + +#: templates/index.html:222 +#: venv/lib/python3.11/site-packages/django/utils/dates.py:20 +msgid "Fri" +msgstr "الجمعة" + +#: templates/index.html:223 +#: venv/lib/python3.11/site-packages/django/utils/dates.py:21 +msgid "Sat" +msgstr "السبت" + +#: templates/inventory/car_confirm_delete.html:14 +#: templates/inventory/car_detail.html:230 +#: templates/inventory/color_palette.html:86 +#: templates/inventory/color_palette_update.html:79 +#: templates/inventory/reserve_car.html:30 +#: templates/vendors/delete_vendor.html:12 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_create.html:37 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:205 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/components/modals.html:11 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/components/modals_v2.html:9 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:188 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_create.html:42 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:121 +msgid "Cancel" +msgstr "إلغاء" + +#: templates/inventory/car_detail.html:6 templates/inventory/car_detail.html:41 +msgid "Car Details" +msgstr "تفاصيل السيارة" + +#: templates/inventory/car_detail.html:21 +#: templates/inventory/car_detail.html:100 templates/inventory/car_form.html:37 +#: templates/inventory/car_form.html:316 templates/inventory/car_list.html:47 +#: templates/inventory/car_list.html:221 +msgid "specifications" +msgstr "المواصفات" + +#: templates/inventory/car_detail.html:48 templates/inventory/car_list.html:119 +msgid "year" +msgstr "السنة" + +#: templates/inventory/car_detail.html:52 templates/inventory/car_form.html:137 +#: templates/inventory/car_list.html:79 +msgid "make" +msgstr "الصانع" + +#: templates/inventory/car_detail.html:61 templates/inventory/car_list.html:130 +msgid "series" +msgstr "السلسلة" + +#: templates/inventory/car_detail.html:65 templates/inventory/car_form.html:199 +#: templates/inventory/car_list.html:141 +msgid "trim" +msgstr "الفئة" + +#: templates/inventory/car_detail.html:86 +msgid "Branch" +msgstr "الفرع" + +#: templates/inventory/car_detail.html:113 +#: templates/inventory/transfer_car.html:23 +msgid "transfer" +msgstr "نقل" + +#: templates/inventory/car_detail.html:119 +msgid "Financial Details" +msgstr "التفاصيل المالية" + +#: templates/inventory/car_detail.html:143 +#: templates/inventory/inventory_stats.html:61 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:98 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:127 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_item_formset.html:24 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_item_formset.html:67 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/estimate_item_table.html:39 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/tags/ce_item_formset.html:62 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/balance_sheet_statement.html:91 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/cash_flow_statement.html:11 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_detail.html:97 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_detail.html:115 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/tags/invoice_item_formset.html:22 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/tags/invoice_item_formset.html:58 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_txs_table.html:59 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/po_item_formset.html:85 +msgid "Total" +msgstr "الإجمالي" + +#: templates/inventory/car_detail.html:149 +msgid "Edit Finance Details" +msgstr "تعديل التفاصيل المالية" + +#: templates/inventory/car_detail.html:153 +msgid "No finance details available." +msgstr "لا توجد تفاصيل مالية متاحة." + +#: templates/inventory/car_detail.html:156 +msgid "Add Finance Details" +msgstr "إضافة التفاصيل المالية" + +#: templates/inventory/car_detail.html:159 +msgid "Colors Details" +msgstr "تفاصيل الألوان" + +#: templates/inventory/car_detail.html:185 +msgid "No colors available for this car." +msgstr "لا تتوفر ألوان لهذه السيارة." + +#: templates/inventory/car_detail.html:192 +msgid "Get Colors" +msgstr "الحصول على الألوان" + +#: templates/inventory/car_detail.html:199 +msgid "Reservations Details" +msgstr "تفاصيل الحجز" + +#: templates/inventory/car_detail.html:206 +msgid "Reserved By" +msgstr "محجوز بواسطة" + +#: templates/inventory/car_detail.html:207 +msgid "Expires At" +msgstr "ينتهي في" + +#: templates/inventory/car_detail.html:208 +#: templates/inventory/car_inventory.html:44 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/account/tags/account_txs_table.html:29 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/account/tags/accounts_table.html:29 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/account/tags/accounts_table.html:92 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bank_account/tags/bank_accounts_table.html:39 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_table.html:16 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/tags/closing_entry_table.html:13 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/tags/closing_entry_table.html:36 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/customer/tags/customer_table.html:13 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/data_import/tags/data_import_job_list_table.html:30 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/estimate_table.html:16 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/estimate_table.html:38 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/expense/tags/expense_item_table.html:13 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/balance_sheet_statement.html:27 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/balance_sheet_statement.html:57 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/tags/invoice_table.html:39 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_table.html:16 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:16 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:94 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/product/tags/product_table.html:15 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/service/tags/services_table.html:15 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/uom/tags/uom_table.html:11 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/uom/tags/uom_table.html:33 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/vendor/tags/vendor_table.html:14 +msgid "Actions" +msgstr "الإجراءات" + +#: templates/inventory/car_detail.html:224 +msgid "renew" +msgstr "تجديد" + +#: templates/inventory/car_detail.html:239 +#: templates/inventory/reserve_car.html:29 +msgid "Reserve" +msgstr "حجز" + +#: templates/inventory/car_detail.html:305 +#: templates/inventory/car_list.html:542 +#: templates/partials/specifications_modal.html:11 +msgid "No specifications available." +msgstr "لا توجد مواصفات متاحة." + +#: templates/inventory/car_detail.html:309 +#: templates/inventory/car_list.html:546 +msgid "Error loading specifications." +msgstr "حدث خطأ أثناء تحميل المواصفات." + +#: templates/inventory/car_edit.html:7 templates/inventory/car_edit.html:13 +msgid "Edit Car" +msgstr "تعديل السيارة" + +#: templates/inventory/car_finance_form.html:5 +msgid "Car Finance Details" +msgstr "التفاصيل المالية السيارة" + +#: templates/inventory/car_finance_form.html:9 +msgid "Finance Details for" +msgstr "التفاصيل المالية لـ" + +#: templates/inventory/car_finance_form.html:41 +msgid "Please provide a valid cost price." +msgstr "يرجى تقديم سعر تكلفة صالح." + +#: templates/inventory/car_finance_form.html:49 +msgid "Please provide a profit margin between 0 and 100." +msgstr "يجب أن يكون هامش الربح بين 0 و 100" + +#: templates/inventory/car_finance_form.html:57 +msgid "Please provide a valid VAT rate." +msgstr "يرجى تقديم معدل صالح لضريبة القيمة المضافة." + +#: templates/inventory/car_finance_form.html:77 +msgid "Save Finance Details" +msgstr "حفظ التفاصيل المالية" + +#: templates/inventory/car_form.html:42 templates/inventory/car_form.html:58 +#: templates/partials/scanner_modal.html:6 +#: templates/partials/specifications_modal.html:8 +msgid "Close" +msgstr "إغلاق" + +#: templates/inventory/car_form.html:57 +msgid "scanner" +msgstr "الماسح الضوئي" + +#: templates/inventory/car_form.html:62 +#: templates/partials/scanner_modal.html:10 +msgid "VIN will appear here." +msgstr "" + +#: templates/inventory/car_form.html:63 +#: templates/partials/scanner_modal.html:11 +msgid "Use OCR Fallback" +msgstr "التعرف الآلي على الحروف" + +#: templates/inventory/car_form.html:100 +msgid "Search" +msgstr "بحث" + +#: templates/inventory/car_form.html:160 templates/inventory/car_form.html:182 +#: templates/inventory/car_form.html:204 templates/inventory/car_form.html:498 +#: templates/inventory/car_form.html:515 templates/inventory/car_form.html:516 +#: templates/inventory/car_form.html:534 +msgid "Select" +msgstr "اختيار" + +#: templates/inventory/car_form.html:381 +msgid "Please Wait" +msgstr "الرجاء الإنتظار" + +#: templates/inventory/car_form.html:382 +msgid "Loading" +msgstr "تحميل" + +#: templates/inventory/car_form.html:413 +msgid "Please enter a valid VIN." +msgstr "الرجاء إدخال رقم هيكل صالح مكون من 17 حرفًا." + +#: templates/inventory/car_form.html:429 +msgid "Failed to decode VIN." +msgstr "فشل في فك تشفير رقم الهيكل" + +#: templates/inventory/car_form.html:434 +msgid "An error occurred while decoding the VIN." +msgstr "حدث خطأ أثناء فك تشفير الهيكل" + +#: templates/inventory/car_inventory.html:67 +msgid "No cars available." +msgstr "لا توجد سيارات متاحة." + +#: templates/inventory/car_list.html:27 templates/inventory/car_list.html:214 +msgid "options" +msgstr "الخيارات" + +#: templates/inventory/car_list.html:81 templates/inventory/car_list.html:99 +#: templates/inventory/car_list.html:110 templates/inventory/car_list.html:121 +#: templates/inventory/car_list.html:132 templates/inventory/car_list.html:143 +#: templates/inventory/car_list.html:154 templates/inventory/car_list.html:165 +#: templates/inventory/car_list.html:179 templates/inventory/car_list.html:273 +#: templates/inventory/car_list.html:274 templates/inventory/car_list.html:275 +#: templates/inventory/car_list.html:276 templates/inventory/car_list.html:277 +#: templates/inventory/car_list.html:278 templates/inventory/car_list.html:378 +#: templates/inventory/car_list.html:379 templates/inventory/car_list.html:380 +#: templates/inventory/car_list.html:381 templates/inventory/car_list.html:382 +#: templates/inventory/car_list.html:407 templates/inventory/car_list.html:408 +#: templates/inventory/car_list.html:409 templates/inventory/car_list.html:410 +#: templates/inventory/car_list.html:436 templates/inventory/car_list.html:437 +#: templates/inventory/car_list.html:438 templates/inventory/car_list.html:463 +#: templates/inventory/car_list.html:464 templates/inventory/car_list.html:488 +msgid "select" +msgstr "اختيار" + +#: templates/inventory/car_list.html:108 +msgid "generation" +msgstr "الجيل" + +#: templates/inventory/car_list.html:152 +msgid "equipment" +msgstr "التجهيزات" + +#: templates/inventory/car_list.html:201 +msgid "Enter remarks" +msgstr "أدخل الملاحظات" + +#: templates/inventory/car_list.html:225 +msgid "save" +msgstr "حفظ" + +#: templates/inventory/car_list.html:345 +msgid "Make not found for the decoded VIN." +msgstr "لم يتم العثور على الشركة الصانعة الخاصة برقم الهيكل المدخل." + +#: templates/inventory/car_list.html:353 +msgid "Please enter a valid 17-character VIN number." +msgstr "الرجاء إدخال رقم هيكل صالح مكون من 17 حرفًا." + +#: templates/inventory/car_list.html:587 +msgid "No options available." +msgstr "لا توجد سيارات متاحة." + +#: templates/inventory/car_list.html:591 +msgid "Error loading options." +msgstr "خطأ في تحميل الخيارات." + +#: templates/inventory/color_palette.html:55 +msgid "Add Color for" +msgstr "إضافة لون الى" + +#: templates/inventory/color_palette_update.html:4 +#: templates/inventory/color_palette_update.html:54 +msgid "Update Color" +msgstr "تحديث اللون" + +#: templates/inventory/color_palette_update.html:86 +msgid "Select Color" +msgstr "اختر اللون" + +#: templates/inventory/inventory_stats.html:5 +msgid "Inventory Statistics" +msgstr "إحصائيات المخزون" + +#: templates/inventory/inventory_stats.html:14 +msgid "Total Cars in Inventory" +msgstr "إجمالي السيارات في المخزون" + +#: templates/inventory/inventory_stats.html:40 +msgid "models" +msgstr "الموديلات" + +#: templates/inventory/inventory_stats.html:52 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/tags/closing_entry_table.html:43 +msgid "Details" +msgstr "التفاصيل" + +#: templates/inventory/inventory_stats.html:55 +msgid "Trims" +msgstr "الفئات" + +#: templates/inventory/inventory_stats.html:64 +msgid "No trims available" +msgstr "لا يوجد فئات متاحة." + +#: templates/inventory/inventory_stats.html:70 +msgid "No models available." +msgstr "لا توجد موديلات متاحة." + +#: templates/inventory/reserve_car.html:6 +#: templates/inventory/reserve_car.html:9 +msgid "Reserve Car" +msgstr "حجز السيارة" + +#: templates/inventory/reserve_car.html:11 +msgid "You are reserving" +msgstr "أنت تحجز" + +#: templates/inventory/reserve_car.html:16 +msgid "Reservation Start Time" +msgstr "وقت بدء الحجز" + +#: templates/inventory/reserve_car.html:23 +msgid "Reservation End Time" +msgstr "وقت انتهاء الحجز" + +#: templates/inventory/transfer_car.html:4 +msgid "Transfer Car" +msgstr "نقل السيارة" + +#: templates/inventory/transfer_car.html:6 +msgid "transfer car" +msgstr "نقل السيارة" + +#: templates/partials/scanner_modal.html:5 +msgid "Scanner" +msgstr "الماسح الضوئي" + +#: templates/partials/specifications_modal.html:7 +msgid "Specifications" +msgstr "المواصفات" + +#: templates/vendors/add_vendor.html:3 templates/vendors/add_vendor.html:6 +msgid "Add Supplier" +msgstr "إضافة مورد" + +#: templates/vendors/add_vendor.html:16 +msgid "Add" +msgstr "إضافة" + +#: templates/vendors/delete_vendor.html:3 +#: templates/vendors/delete_vendor.html:6 +msgid "Delete Supplier" +msgstr "حذف المورد" + +#: templates/vendors/delete_vendor.html:7 +msgid "Are you sure you want to delete this supplier?" +msgstr "هل أنت متأكد أنك تريد حذف هذا المورد؟" + +#: templates/vendors/edit_vendor.html:3 templates/vendors/edit_vendor.html:6 +msgid "Edit Supplier" +msgstr "تعديل المورد" + +#: templates/vendors/vendors_list.html:4 templates/vendors/vendors_list.html:5 +msgid "suppliers" +msgstr "الموردون" + +#: templates/vendors/vendors_list.html:15 +msgid "add supplier" +msgstr "إضافة مورد" + +#: templates/vendors/vendors_list.html:28 +msgid "name" +msgstr "الاسم" + +#: templates/vendors/vendors_list.html:31 +msgid "address" +msgstr "العنوان" + +#: templates/vendors/vendors_list.html:63 +msgid "no suppliers found" +msgstr "لم يتم العثور على موردين" + +#: templates/vendors/vendors_list.html:73 +msgid "first" +msgstr "الأول" + +#: templates/vendors/vendors_list.html:78 +msgid "previous" +msgstr "السابق" + +#: templates/vendors/vendors_list.html:103 +msgid "next" +msgstr "التالي" + +#: templates/vendors/vendors_list.html:108 +msgid "last" +msgstr "الأخير" + +#: templates/vendors/view_vendor.html:3 +msgid "View Supplier" +msgstr "عرض المورد" + +#: templates/vendors/view_vendor.html:6 +msgid "Supplier Details" +msgstr "تفاصيل المورد" + +#: templates/welcome.html:4 +msgid "Welcome to Our App" +msgstr "مرحبا بكم في تطبيقنا" + +#: templates/welcome.html:24 +msgid "Welcome to " +msgstr "مرحبا بكم في " + +#: templates/welcome.html:25 +msgid "" +"Discover a seamless way to manage your cars, reservations, and inventory " +"like never before!" +msgstr "" +"اكتشف طريقة سهلة وسلسة لإدارة سياراتك وحجوزاتك ومخزونك كما لم تفعل من قبل!" + +#: templates/welcome.html:26 +msgid "Get Started" +msgstr "ابدأ الآن" + +#: templates/welcome.html:33 +msgid "Why Choose Haikal?" +msgstr "لماذا تختار هيكل؟" + +#: templates/welcome.html:38 +msgid "Fast and Efficient" +msgstr "سريع وفعال" + +#: templates/welcome.html:39 +msgid "" +"Haikal is optimized for speed and ease of use, saving you time and effort." +msgstr "" +"تم تحسين هيكل من أجل السرعة وسهولة الاستخدام، مما يوفر لك الوقت والجهد." + +#: templates/welcome.html:45 +msgid "Secure and Reliable" +msgstr "آمن وموثوق" + +#: templates/welcome.html:46 +msgid "Your data is protected with industry-standard security and encryption." +msgstr "بياناتك محمية بمعايير الأمان والتشفير المعتمدة عالميًا." + +#: templates/welcome.html:52 +msgid "Detailed Insights" +msgstr "رؤى مفصلة" + +#: templates/welcome.html:53 +msgid "" +"Gain valuable insights into your inventory and performance with our " +"analytics tools." +msgstr "احصل على رؤى قيمة حول مخزونك وأدائك باستخدام أدوات التحليل الخاصة بنا." + +#: templates/welcome.html:60 +msgid "Ready to take control of your inventory?" +msgstr "هل أنت مستعد للتحكم في مخزونك؟" + +#: templates/welcome.html:61 +msgid "Join Us Today" +msgstr "انضم لنا اليوم" + +#: venv/lib/python3.11/site-packages/alabaster/layout.html:99 +msgid "Page source" +msgstr "مصدر الصفحة" + +#: venv/lib/python3.11/site-packages/alabaster/navigation.html:1 +msgid "Navigation" +msgstr "التنقل" + +#: venv/lib/python3.11/site-packages/alabaster/relations.html:2 +msgid "Related Topics" +msgstr "موضوعات ذات صلة" + +#: venv/lib/python3.11/site-packages/alabaster/relations.html:4 +msgid "Documentation overview" +msgstr "نظرة عامة على الوثائق" + +#: venv/lib/python3.11/site-packages/alabaster/relations.html:9 +msgid "Previous" +msgstr "السابق" + +#: venv/lib/python3.11/site-packages/alabaster/relations.html:13 +msgid "Next" +msgstr "التالي" + +#: venv/lib/python3.11/site-packages/custom/models.py:9 +msgid "library" +msgstr "المكتبة" + +#: venv/lib/python3.11/site-packages/custom/models.py:10 +msgid "libraries" +msgstr "المكتبات" + +#: venv/lib/python3.11/site-packages/django/contrib/messages/apps.py:16 +msgid "Messages" +msgstr "الرسائل" + +#: venv/lib/python3.11/site-packages/django/contrib/sitemaps/apps.py:8 +msgid "Site Maps" +msgstr "خرائط الموقع" + +#: venv/lib/python3.11/site-packages/django/contrib/staticfiles/apps.py:9 +msgid "Static Files" +msgstr "الملفات الثابتة" + +#: venv/lib/python3.11/site-packages/django/contrib/syndication/apps.py:7 +msgid "Syndication" +msgstr "التوزيع" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +#: venv/lib/python3.11/site-packages/django/core/paginator.py:30 +msgid "…" +msgstr "…" + +#: venv/lib/python3.11/site-packages/django/core/paginator.py:32 +msgid "That page number is not an integer" +msgstr "رقم الصفحة ليس عدداً صحيحاً" + +#: venv/lib/python3.11/site-packages/django/core/paginator.py:33 +msgid "That page number is less than 1" +msgstr "رقم الصفحة أقل من 1" + +#: venv/lib/python3.11/site-packages/django/core/paginator.py:34 +msgid "That page contains no results" +msgstr "هذه الصفحة لا تحتوي على نتائج" + +#: venv/lib/python3.11/site-packages/django/core/validators.py:22 +msgid "Enter a valid value." +msgstr "أدخل قيمة صالحة." + +#: venv/lib/python3.11/site-packages/django/core/validators.py:70 +msgid "Enter a valid domain name." +msgstr "أدخل اسم مجال صالحًا." + +#: venv/lib/python3.11/site-packages/django/core/validators.py:155 +#: venv/lib/python3.11/site-packages/django/forms/fields.py:768 +msgid "Enter a valid URL." +msgstr "أدخل رابط URL صالحاً." + +#: venv/lib/python3.11/site-packages/django/core/validators.py:216 +msgid "Enter a valid integer." +msgstr "أدخل عدداً صحيحاً صالحاً." + +#: venv/lib/python3.11/site-packages/django/core/validators.py:227 +msgid "Enter a valid email address." +msgstr "أدخل عنوان بريد إلكتروني صالح." + +#. Translators: "letters" means latin letters: a-z and A-Z. +#: venv/lib/python3.11/site-packages/django/core/validators.py:310 +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "أدخل “Slug” صالح يتكون من أحرف وأرقام وتسطيرات سفلية أو واصلات." + +#: venv/lib/python3.11/site-packages/django/core/validators.py:318 +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "أدخل “Slug” صالح يتكون من أحرف يونكود وأرقام وتسطيرات سفلية أو واصلات." + +#: venv/lib/python3.11/site-packages/django/core/validators.py:330 +#: venv/lib/python3.11/site-packages/django/core/validators.py:339 +#: venv/lib/python3.11/site-packages/django/core/validators.py:353 +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2215 +#, fuzzy, python-format +#| msgid "Enter a valid %(protocol)s address." +msgid "Enter a valid %(protocol)s address." +msgstr "أدخل عنوان %(بروتوكول) صالحًا." + +#: venv/lib/python3.11/site-packages/django/core/validators.py:332 +msgid "IPv4" +msgstr "IPv4" + +#: venv/lib/python3.11/site-packages/django/core/validators.py:341 +#: venv/lib/python3.11/site-packages/django/utils/ipv6.py:30 +msgid "IPv6" +msgstr "6" + +#: venv/lib/python3.11/site-packages/django/core/validators.py:355 +msgid "IPv4 or IPv6" +msgstr "IPv4 or IPv6" + +#: venv/lib/python3.11/site-packages/django/core/validators.py:396 +msgid "Enter only digits separated by commas." +msgstr "أدخل أرقاماً فقط مفصولة بفواصل." + +#: venv/lib/python3.11/site-packages/django/core/validators.py:402 +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "تأكد من أن هذه القيمة هي %(limit_value)s (هي %(show_value)s)." + +#: venv/lib/python3.11/site-packages/django/core/validators.py:437 +#: venv/lib/python3.11/site-packages/djmoney/models/validators.py:51 +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "تأكد من أن هذه القيمة أقل من أو تساوي %(limit_value)s." + +#: venv/lib/python3.11/site-packages/django/core/validators.py:446 +#: venv/lib/python3.11/site-packages/djmoney/models/validators.py:43 +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "تأكد من أن هذه القيمة أكبر من أو تساوي %(limit_value)s." + +#: venv/lib/python3.11/site-packages/django/core/validators.py:455 +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "تأكد من أن هذه القيمة هي مضاعف لخطوة الحجم %(limit_value)s." + +#: venv/lib/python3.11/site-packages/django/core/validators.py:462 +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"تأكد من أن هذه القيمة هي مضاعف لخطوة الحجم %(limit_value)s بدءاً من " +"%(offset)s، مثل %(offset)s، %(valid_value1)s، %(valid_value2)s، وهكذا." + +#: venv/lib/python3.11/site-packages/django/core/validators.py:494 +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"تأكد من أن هذه القيمة تحتوي على الأقل على %(limit_value)d حرف (تحتوي على " +"%(show_value)d)." +msgstr[1] "" +"تأكد من أن هذه القيمة تحتوي على الأقل على %(limit_value)d أحرف (تحتوي على " +"%(show_value)d)." + +#: venv/lib/python3.11/site-packages/django/core/validators.py:512 +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"تأكد من أن هذه القيمة تحتوي على الأكثر على %(limit_value)d حرف (تحتوي على " +"%(show_value)d)." +msgstr[1] "" +"تأكد من أن هذه القيمة تحتوي على الأكثر على %(limit_value)d أحرف (تحتوي على " +"%(show_value)d)." + +#: venv/lib/python3.11/site-packages/django/core/validators.py:535 +#: venv/lib/python3.11/site-packages/django/forms/fields.py:359 +#: venv/lib/python3.11/site-packages/django/forms/fields.py:398 +msgid "Enter a number." +msgstr "أدخل رقماً." + +#: venv/lib/python3.11/site-packages/django/core/validators.py:537 +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "تأكد من أن العدد الإجمالي للأرقام لا يتجاوز %(max)s رقم." +msgstr[1] "تأكد من أن العدد الإجمالي للأرقام لا يتجاوز %(max)s أرقام." + +#: venv/lib/python3.11/site-packages/django/core/validators.py:542 +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "تأكد من أن العدد الإجمالي للأماكن العشرية لا يتجاوز %(max)s." +msgstr[1] "تأكد من أن العدد الإجمالي للأماكن العشرية لا يتجاوز %(max)s." + +#: venv/lib/python3.11/site-packages/django/core/validators.py:547 +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"تأكد من أن العدد الإجمالي للأرقام قبل العلامة العشرية لا يتجاوز %(max)s." +msgstr[1] "" +"تأكد من أن العدد الإجمالي للأرقام قبل العلامة العشرية لا يتجاوز %(max)s." + +#: venv/lib/python3.11/site-packages/django/core/validators.py:618 +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"امتداد الملف “%(extension)s” غير مسموح به. الامتدادات المسموح بها هي: " +"%(allowed_extensions)s." + +#: venv/lib/python3.11/site-packages/django/core/validators.py:680 +msgid "Null characters are not allowed." +msgstr "الأحرف الفارغة غير مسموح بها." + +#: venv/lib/python3.11/site-packages/django/db/models/base.py:1572 +#: venv/lib/python3.11/site-packages/django/forms/models.py:908 +msgid "and" +msgstr "و" + +#: venv/lib/python3.11/site-packages/django/db/models/base.py:1574 +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s مع %(field_labels)s هذا موجود بالفعل." + +#: venv/lib/python3.11/site-packages/django/db/models/constraints.py:22 +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "تم انتهاك القيد “%(name)s”." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:134 +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "القيمة %(value)r ليست خياراً صالحاً." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:135 +msgid "This field cannot be null." +msgstr "لا يمكن أن يكون هذا الحقل فارغاً." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:136 +msgid "This field cannot be blank." +msgstr "لا يمكن أن يكون هذا الحقل فارغاً." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:137 +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s مع %(field_label)s هذا موجود بالفعل." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:141 +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s يجب أن يكون فريداً لـ %(date_field_label)s %(lookup_type)s." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:180 +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "حقل من النوع: %(field_type)s" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:1156 +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "القيمة “%(value)s” يجب أن تكون إما True أو False." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:1157 +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "القيمة “%(value)s” يجب أن تكون إما True، False، أو None." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:1159 +msgid "Boolean (Either True or False)" +msgstr "قيمة منطقية (إما True أو False)" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:1209 +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "نص (حتى %(max_length)s)" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:1211 +msgid "String (unlimited)" +msgstr "نص (غير محدود)" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:1320 +msgid "Comma-separated integers" +msgstr "أرقام مفصولة بفواصل" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:1421 +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"القيمة “%(value)s” تحتوي على تنسيق تاريخ غير صالح. يجب أن تكون بالتنسيق YYYY-" +"MM-DD." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:1425 +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:1560 +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"القيمة “%(value)s” تحتوي على التنسيق الصحيح (YYYY-MM-DD) لكنها تاريخ غير " +"صالح." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:1429 +msgid "Date (without time)" +msgstr "تاريخ (بدون وقت)" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:1556 +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"القيمة “%(value)s” تحتوي على تنسيق غير صالح. يجب أن تكون بالتنسيق YYYY-MM-DD " +"HH:MM[:ss[.uuuuuu]][TZ]." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:1564 +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"القيمة “%(value)s” تحتوي على التنسيق الصحيح (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) لكنها تاريخ/وقت غير صالح." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:1569 +msgid "Date (with time)" +msgstr "تاريخ (مع الوقت)" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:1696 +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "القيمة “%(value)s” يجب أن تكون رقماً عشرياً." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:1698 +msgid "Decimal number" +msgstr "رقم عشري" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:1859 +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"القيمة “%(value)s” تحتوي على تنسيق غير صالح. يجب أن تكون بالتنسيق [DD] " +"[[HH:]MM:]ss[.uuuuuu]." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:1863 +msgid "Duration" +msgstr "المدة" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:1915 +msgid "Email address" +msgstr "عنوان البريد الإلكتروني" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:1940 +msgid "File path" +msgstr "مسار الملف" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2018 +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "القيمة “%(value)s” يجب أن تكون عدداً عشرياً." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2020 +msgid "Floating point number" +msgstr "عدد عشري" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2060 +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "القيمة “%(value)s” يجب أن تكون عدداً صحيحاً." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2062 +msgid "Integer" +msgstr "عدد صحيح" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2158 +msgid "Big (8 byte) integer" +msgstr "عدد صحيح كبير (8 بايت)" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2175 +msgid "Small integer" +msgstr "عدد صحيح صغير" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2183 +msgid "IPv4 address" +msgstr "عنوان IPv4" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2214 +msgid "IP address" +msgstr "عنوان IP" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2305 +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2306 +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "القيمة “%(value)s” يجب أن تكون إما None، True أو False." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2308 +msgid "Boolean (Either True, False or None)" +msgstr "قيمة منطقية (إما True أو False أو None)" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2359 +msgid "Positive big integer" +msgstr "عدد صحيح موجب كبير" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2374 +msgid "Positive integer" +msgstr "عدد صحيح موجب" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2389 +msgid "Positive small integer" +msgstr "عدد صحيح موجب صغير" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2405 +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (حتى %(max_length)s)" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2441 +msgid "Text" +msgstr "النص" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2521 +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"القيمة “%(value)s” تحتوي على تنسيق غير صالح. يجب أن تكون بالتنسيق HH:MM[:ss[." +"uuuuuu]]." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2525 +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"القيمة “%(value)s” تحتوي على التنسيق الصحيح (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) لكنها تاريخ/وقت غير صالح." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2529 +msgid "Time" +msgstr "الوقت" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2637 +msgid "URL" +msgstr "رابط URL" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2661 +msgid "Raw binary data" +msgstr "بيانات ثنائية خام" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2726 +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "القيمة “%(value)s” ليست UUID صالح." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/__init__.py:2728 +msgid "Universally unique identifier" +msgstr "معرّف فريد عالمي" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/files.py:244 +msgid "File" +msgstr "الملف" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/files.py:420 +msgid "Image" +msgstr "الصورة" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/json.py:24 +msgid "A JSON object" +msgstr "كائن JSON" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/json.py:26 +msgid "Value must be valid JSON." +msgstr "يجب أن تكون القيمة JSON صالح." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/related.py:932 +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "المثال %(model)s مع %(field)s %(value)r غير موجود." + +#: venv/lib/python3.11/site-packages/django/db/models/fields/related.py:934 +msgid "Foreign Key (type determined by related field)" +msgstr "مفتاح أجنبي (يحدد النوع حسب الحقل المرتبط)" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/related.py:1228 +msgid "One-to-one relationship" +msgstr "علاقة واحد لواحد" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/related.py:1285 +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "علاقة %(from)s-%(to)s" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/related.py:1287 +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "علاقات %(from)s-%(to)s" + +#: venv/lib/python3.11/site-packages/django/db/models/fields/related.py:1335 +msgid "Many-to-many relationship" +msgstr "علاقة متعدد لمتعدد" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the label +#: venv/lib/python3.11/site-packages/django/forms/boundfield.py:185 +msgid ":?.!" +msgstr ":؟.!" + +#: venv/lib/python3.11/site-packages/django/forms/fields.py:95 +msgid "This field is required." +msgstr "هذا الحقل مطلوب." + +#: venv/lib/python3.11/site-packages/django/forms/fields.py:308 +msgid "Enter a whole number." +msgstr "أدخل عدداً صحيحاً." + +#: venv/lib/python3.11/site-packages/django/forms/fields.py:479 +#: venv/lib/python3.11/site-packages/django/forms/fields.py:1260 +msgid "Enter a valid date." +msgstr "أدخل تاريخاً صالحاً." + +#: venv/lib/python3.11/site-packages/django/forms/fields.py:502 +#: venv/lib/python3.11/site-packages/django/forms/fields.py:1261 +msgid "Enter a valid time." +msgstr "أدخل وقتاً صالحاً." + +#: venv/lib/python3.11/site-packages/django/forms/fields.py:529 +msgid "Enter a valid date/time." +msgstr "أدخل تاريخاً/وقتاً صالحاً." + +#: venv/lib/python3.11/site-packages/django/forms/fields.py:563 +msgid "Enter a valid duration." +msgstr "أدخل مدة صالحة." + +#: venv/lib/python3.11/site-packages/django/forms/fields.py:564 +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "يجب أن يكون عدد الأيام بين {min_days} و {max_days}." + +#: venv/lib/python3.11/site-packages/django/forms/fields.py:633 +msgid "No file was submitted. Check the encoding type on the form." +msgstr "لم يتم تقديم ملف. تحقق من نوع الترميز في النموذج." + +#: venv/lib/python3.11/site-packages/django/forms/fields.py:634 +msgid "No file was submitted." +msgstr "لم يتم تقديم أي ملف." + +#: venv/lib/python3.11/site-packages/django/forms/fields.py:635 +msgid "The submitted file is empty." +msgstr "الملف المقدم فارغ." + +#: venv/lib/python3.11/site-packages/django/forms/fields.py:637 +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"تأكد من أن اسم الملف يحتوي على %(max)d حرف كحد أقصى (يحتوي على %(length)d)." +msgstr[1] "" +"تأكد من أن اسم الملف يحتوي على %(max)d أحرف كحد أقصى (يحتوي على %(length)d)." + +#: venv/lib/python3.11/site-packages/django/forms/fields.py:642 +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "يرجى إما تقديم ملف أو تحديد خانة الإزالة، وليس كليهما." + +#: venv/lib/python3.11/site-packages/django/forms/fields.py:710 +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"قم بتحميل صورة صالحة. الملف الذي قمت بتحميله إما ليس صورة أو صورة تالفة." + +#: venv/lib/python3.11/site-packages/django/forms/fields.py:882 +#: venv/lib/python3.11/site-packages/django/forms/fields.py:968 +#: venv/lib/python3.11/site-packages/django/forms/models.py:1592 +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "اختر خياراً صالحاً. %(value)s ليس أحد الخيارات المتاحة." + +#: venv/lib/python3.11/site-packages/django/forms/fields.py:970 +#: venv/lib/python3.11/site-packages/django/forms/fields.py:1089 +#: venv/lib/python3.11/site-packages/django/forms/models.py:1590 +msgid "Enter a list of values." +msgstr "أدخل قائمة بالقيم." + +#: venv/lib/python3.11/site-packages/django/forms/fields.py:1090 +msgid "Enter a complete value." +msgstr "أدخل قيمة كاملة." + +#: venv/lib/python3.11/site-packages/django/forms/fields.py:1329 +msgid "Enter a valid UUID." +msgstr "أدخل UUID صالحاً." + +#: venv/lib/python3.11/site-packages/django/forms/fields.py:1359 +msgid "Enter a valid JSON." +msgstr "أدخل JSON صالحاً." + +#. Translators: This is the default suffix added to form field labels +#: venv/lib/python3.11/site-packages/django/forms/forms.py:94 +msgid ":" +msgstr ":" + +#: venv/lib/python3.11/site-packages/django/forms/forms.py:230 +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(الحقل المخفي %(name)s) %(error)s" + +#: venv/lib/python3.11/site-packages/django/forms/formsets.py:61 +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"بيانات نموذج الإدارة مفقودة أو تم العبث بها. الحقول المفقودة: " +"%(field_names)s. قد تحتاج إلى تقديم تقرير عن المشكلة إذا استمرت." + +#: venv/lib/python3.11/site-packages/django/forms/formsets.py:65 +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "يرجى تقديم ما لا يزيد عن %(num)d نموذج." +msgstr[1] "يرجى تقديم ما لا يزيد عن %(num)d نماذج." + +#: venv/lib/python3.11/site-packages/django/forms/formsets.py:70 +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "يرجى تقديم ما لا يقل عن %(num)d نموذج." +msgstr[1] "يرجى تقديم ما لا يقل عن %(num)d نماذج." + +#: venv/lib/python3.11/site-packages/django/forms/formsets.py:484 +#: venv/lib/python3.11/site-packages/django/forms/formsets.py:491 +msgid "Order" +msgstr "طلب" + +#: venv/lib/python3.11/site-packages/django/forms/models.py:901 +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "يرجى تصحيح البيانات المكررة لـ %(field)s." + +#: venv/lib/python3.11/site-packages/django/forms/models.py:906 +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "يرجى تصحيح البيانات المكررة لـ %(field)s، والتي يجب أن تكون فريدة." + +#: venv/lib/python3.11/site-packages/django/forms/models.py:913 +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"يرجى تصحيح البيانات المكررة لـ %(field_name)s والتي يجب أن تكون فريدة لـ " +"%(lookup)s في %(date_field)s." + +#: venv/lib/python3.11/site-packages/django/forms/models.py:922 +msgid "Please correct the duplicate values below." +msgstr "يرجى تصحيح القيم المكررة أدناه." + +#: venv/lib/python3.11/site-packages/django/forms/models.py:1359 +msgid "The inline value did not match the parent instance." +msgstr "القيمة المضمنة لا تتطابق مع المثال الأب." + +#: venv/lib/python3.11/site-packages/django/forms/models.py:1450 +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "اختر خياراً صالحاً. هذا الخيار ليس من الخيارات المتاحة." + +#: venv/lib/python3.11/site-packages/django/forms/models.py:1594 +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” ليست قيمة صالحة." + +#: venv/lib/python3.11/site-packages/django/forms/utils.py:227 +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"لم يتم تفسير %(datetime)s في المنطقة الزمنية %(current_timezone)s؛ قد يكون " +"غامضاً أو قد لا يكون موجوداً." + +#: venv/lib/python3.11/site-packages/django/forms/widgets.py:461 +msgid "Clear" +msgstr "مسح" + +#: venv/lib/python3.11/site-packages/django/forms/widgets.py:462 +msgid "Currently" +msgstr "حالياً" + +#: venv/lib/python3.11/site-packages/django/forms/widgets.py:463 +msgid "Change" +msgstr "تغيير" + +#: venv/lib/python3.11/site-packages/django/forms/widgets.py:800 +msgid "Unknown" +msgstr "غير معروف" + +#. Translators: Please do not add spaces around commas. +#: venv/lib/python3.11/site-packages/django/template/defaultfilters.py:873 +msgid "yes,no,maybe" +msgstr "نعم، لا، ربما" + +#: venv/lib/python3.11/site-packages/django/template/defaultfilters.py:903 +#: venv/lib/python3.11/site-packages/django/template/defaultfilters.py:920 +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d بايت" +msgstr[1] "%(size)d بايتات" + +#: venv/lib/python3.11/site-packages/django/template/defaultfilters.py:922 +#, python-format +msgid "%s KB" +msgstr "%s كيلوبايت" + +#: venv/lib/python3.11/site-packages/django/template/defaultfilters.py:924 +#, python-format +msgid "%s MB" +msgstr "%s ميغابايت" + +#: venv/lib/python3.11/site-packages/django/template/defaultfilters.py:926 +#, python-format +msgid "%s GB" +msgstr "%s غيغابايت" + +#: venv/lib/python3.11/site-packages/django/template/defaultfilters.py:928 +#, python-format +msgid "%s TB" +msgstr "%s تيرابايت" + +#: venv/lib/python3.11/site-packages/django/template/defaultfilters.py:930 +#, python-format +msgid "%s PB" +msgstr "%s بيتابايت" + +#: venv/lib/python3.11/site-packages/django/utils/dateformat.py:74 +msgid "p.m." +msgstr "م" + +#: venv/lib/python3.11/site-packages/django/utils/dateformat.py:75 +msgid "a.m." +msgstr "ص" + +#: venv/lib/python3.11/site-packages/django/utils/dateformat.py:80 +msgid "PM" +msgstr "م" + +#: venv/lib/python3.11/site-packages/django/utils/dateformat.py:81 +msgid "AM" +msgstr "ص" + +#: venv/lib/python3.11/site-packages/django/utils/dateformat.py:153 +msgid "midnight" +msgstr "منتصف الليل" + +#: venv/lib/python3.11/site-packages/django/utils/dateformat.py:155 +msgid "noon" +msgstr "الظهر" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:7 +msgid "Monday" +msgstr "الاثنين" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:8 +msgid "Tuesday" +msgstr "الثلاثاء" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:9 +msgid "Wednesday" +msgstr "الأربعاء" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:10 +msgid "Thursday" +msgstr "الخميس" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:11 +msgid "Friday" +msgstr "الجمعة" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:12 +msgid "Saturday" +msgstr "السبت" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:13 +msgid "Sunday" +msgstr "الأحد" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:25 +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:749 +msgid "January" +msgstr "يناير" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:26 +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:750 +msgid "February" +msgstr "فبراير" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:27 +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:751 +msgid "March" +msgstr "مارس" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:28 +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:752 +msgid "April" +msgstr "أبريل" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:29 +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:753 +msgid "May" +msgstr "مايو" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:30 +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:754 +msgid "June" +msgstr "يونيو" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:31 +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:755 +msgid "July" +msgstr "يوليو" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:32 +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:756 +msgid "August" +msgstr "أغسطس" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:33 +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:757 +msgid "September" +msgstr "سبتمبر" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:34 +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:758 +msgid "October" +msgstr "أكتوبر" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:35 +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:759 +msgid "November" +msgstr "نوفمبر" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:36 +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:760 +msgid "December" +msgstr "ديسمبر" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:39 +msgid "jan" +msgstr "يناير" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:40 +msgid "feb" +msgstr "فبراير" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:41 +msgid "mar" +msgstr "مارس" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:42 +msgid "apr" +msgstr "أبريل" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:43 +msgid "may" +msgstr "مايو" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:44 +msgid "jun" +msgstr "يونيو" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:45 +msgid "jul" +msgstr "يوليو" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:46 +msgid "aug" +msgstr "أغسطس" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:47 +msgid "sep" +msgstr "سبتمبر" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:48 +msgid "oct" +msgstr "أكتوبر" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:49 +msgid "nov" +msgstr "نوفمبر" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:50 +msgid "dec" +msgstr "ديسمبر" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:53 +#, fuzzy +#| msgid "Jan." +msgctxt "abbrev. month" +msgid "Jan." +msgstr "يناير." + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:54 +#, fuzzy +#| msgid "Feb." +msgctxt "abbrev. month" +msgid "Feb." +msgstr "فبراير." + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:55 +#, fuzzy +#| msgid "March" +msgctxt "abbrev. month" +msgid "March" +msgstr "مارس." + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:56 +#, fuzzy +#| msgid "April" +msgctxt "abbrev. month" +msgid "April" +msgstr "أبريل." + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:57 +#, fuzzy +#| msgid "May" +msgctxt "abbrev. month" +msgid "May" +msgstr "مايو." + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:58 +#, fuzzy +#| msgid "June" +msgctxt "abbrev. month" +msgid "June" +msgstr "يونيو." + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:59 +#, fuzzy +#| msgid "July" +msgctxt "abbrev. month" +msgid "July" +msgstr "يوليو." + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:60 +#, fuzzy +#| msgid "Aug." +msgctxt "abbrev. month" +msgid "Aug." +msgstr "أغسطس." + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:61 +#, fuzzy +#| msgid "Sept." +msgctxt "abbrev. month" +msgid "Sept." +msgstr "سبتمبر." + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:62 +#, fuzzy +#| msgid "Oct." +msgctxt "abbrev. month" +msgid "Oct." +msgstr "أكتوبر." + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:63 +#, fuzzy +#| msgid "Nov." +msgctxt "abbrev. month" +msgid "Nov." +msgstr "نوفمبر." + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:64 +#, fuzzy +#| msgid "Dec." +msgctxt "abbrev. month" +msgid "Dec." +msgstr "ديسمبر." + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:67 +msgctxt "alt. month" +msgid "January" +msgstr "يناير" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:68 +msgctxt "alt. month" +msgid "February" +msgstr "فبراير" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:69 +msgctxt "alt. month" +msgid "March" +msgstr "مارس" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:70 +msgctxt "alt. month" +msgid "April" +msgstr "أبريل" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:71 +msgctxt "alt. month" +msgid "May" +msgstr "مايو" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:72 +msgctxt "alt. month" +msgid "June" +msgstr "يونيو" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:73 +msgctxt "alt. month" +msgid "July" +msgstr "يوليو" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:74 +msgctxt "alt. month" +msgid "August" +msgstr "أغسطس" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:75 +msgctxt "alt. month" +msgid "September" +msgstr "سبتمبر" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:76 +msgctxt "alt. month" +msgid "October" +msgstr "أكتوبر" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:77 +msgctxt "alt. month" +msgid "November" +msgstr "نوفمبر" + +#: venv/lib/python3.11/site-packages/django/utils/dates.py:78 +msgctxt "alt. month" +msgid "December" +msgstr "ديسمبر" + +#: venv/lib/python3.11/site-packages/django/utils/ipv6.py:8 +msgid "This is not a valid IPv6 address." +msgstr "هذا ليس عنوان IPv6 صالحاً." + +#: venv/lib/python3.11/site-packages/django/utils/text.py:75 +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +#: venv/lib/python3.11/site-packages/django/utils/text.py:286 +msgid "or" +msgstr "أو" + +#. Translators: This string is used as a separator between list elements +#: venv/lib/python3.11/site-packages/django/utils/text.py:305 +#: venv/lib/python3.11/site-packages/django/utils/timesince.py:135 +msgid ", " +msgstr "، " + +#: venv/lib/python3.11/site-packages/django/utils/timesince.py:8 +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d سنة" +msgstr[1] "%(num)d سنوات" + +#: venv/lib/python3.11/site-packages/django/utils/timesince.py:9 +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d شهر" +msgstr[1] "%(num)d أشهر" + +#: venv/lib/python3.11/site-packages/django/utils/timesince.py:10 +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d أسبوع" +msgstr[1] "%(num)d أسابيع" + +#: venv/lib/python3.11/site-packages/django/utils/timesince.py:11 +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d يوم" +msgstr[1] "%(num)d أيام" + +#: venv/lib/python3.11/site-packages/django/utils/timesince.py:12 +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d ساعة" +msgstr[1] "%(num)d ساعات" + +#: venv/lib/python3.11/site-packages/django/utils/timesince.py:13 +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d دقيقة" +msgstr[1] "%(num)d دقائق" + +#: venv/lib/python3.11/site-packages/django/views/csrf.py:29 +msgid "Forbidden" +msgstr "ممنوع" + +#: venv/lib/python3.11/site-packages/django/views/csrf.py:30 +msgid "CSRF verification failed. Request aborted." +msgstr "فشل التحقق من CSRF. تم إيقاف الطلب." + +#: venv/lib/python3.11/site-packages/django/views/csrf.py:34 +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"أنت ترى هذه الرسالة لأن هذا الموقع HTTPS يتطلب إرسال ترويسة “Referer” من " +"متصفحك، ولكن لم يتم إرسال أي ترويسة. هذه الترويسة مطلوبة لأسباب أمنية، " +"للتأكد من أن متصفحك لم يتم اختطافه من قبل أطراف ثالثة." + +#: venv/lib/python3.11/site-packages/django/views/csrf.py:40 +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"إذا قمت بتكوين متصفحك لتعطيل ترويسات “Referer”، يرجى إعادة تمكينها، على " +"الأقل لهذا الموقع، أو للاتصالات HTTPS، أو للطلبات من “نفس المصدر”." + +#: venv/lib/python3.11/site-packages/django/views/csrf.py:45 +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"إذا كنت تستخدم الوسم أو " +"ترويسة “Referrer-Policy: no-referrer”، يرجى إزالتها. تتطلب الحماية من CSRF " +"ترويسة “Referer” للقيام بالتحقق الصارم من المرجع. إذا كنت قلقًا بشأن " +"الخصوصية، استخدم بدائل مثل للروابط إلى مواقع الطرف " +"الثالث." + +#: venv/lib/python3.11/site-packages/django/views/csrf.py:54 +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"أنت ترى هذه الرسالة لأن هذا الموقع يتطلب ملف تعريف الارتباط CSRF عند إرسال " +"النماذج. هذا الملف مطلوب لأسباب أمنية، للتأكد من أن متصفحك لم يتم اختطافه من " +"قبل أطراف ثالثة." + +#: venv/lib/python3.11/site-packages/django/views/csrf.py:60 +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"إذا قمت بتكوين متصفحك لتعطيل ملفات تعريف الارتباط، يرجى إعادة تمكينها، على " +"الأقل لهذا الموقع، أو للطلبات من “نفس المصدر”." + +#: venv/lib/python3.11/site-packages/django/views/csrf.py:66 +msgid "More information is available with DEBUG=True." +msgstr "مزيد من المعلومات متاحة مع DEBUG=True." + +#: venv/lib/python3.11/site-packages/django/views/generic/dates.py:44 +msgid "No year specified" +msgstr "لم يتم تحديد السنة" + +#: venv/lib/python3.11/site-packages/django/views/generic/dates.py:64 +#: venv/lib/python3.11/site-packages/django/views/generic/dates.py:115 +#: venv/lib/python3.11/site-packages/django/views/generic/dates.py:214 +msgid "Date out of range" +msgstr "التاريخ خارج النطاق" + +#: venv/lib/python3.11/site-packages/django/views/generic/dates.py:94 +msgid "No month specified" +msgstr "لم يتم تحديد الشهر" + +#: venv/lib/python3.11/site-packages/django/views/generic/dates.py:147 +msgid "No day specified" +msgstr "لم يتم تحديد اليوم" + +#: venv/lib/python3.11/site-packages/django/views/generic/dates.py:194 +msgid "No week specified" +msgstr "لم يتم تحديد الأسبوع" + +#: venv/lib/python3.11/site-packages/django/views/generic/dates.py:349 +#: venv/lib/python3.11/site-packages/django/views/generic/dates.py:380 +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "لا توجد %(verbose_name_plural)s متاحة" + +#: venv/lib/python3.11/site-packages/django/views/generic/dates.py:652 +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(verbose_name_plural)s المستقبلية غير متاحة لأن %(class_name)s. الخاصية " +"allow_future هي False." + +#: venv/lib/python3.11/site-packages/django/views/generic/dates.py:692 +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "سلسلة التاريخ غير صالحة “%(datestr)s” بالصيغة “%(format)s”" + +#: venv/lib/python3.11/site-packages/django/views/generic/detail.py:56 +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "لم يتم العثور على %(verbose_name)s مطابق للاستعلام" + +#: venv/lib/python3.11/site-packages/django/views/generic/list.py:70 +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "الصفحة ليست “الأخيرة”، ولا يمكن تحويلها إلى عدد صحيح." + +#: venv/lib/python3.11/site-packages/django/views/generic/list.py:77 +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "صفحة غير صالحة (%(page_number)s): %(message)s" + +#: venv/lib/python3.11/site-packages/django/views/generic/list.py:169 +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "قائمة فارغة والخاصية “%(class_name)s.allow_empty” هي False." + +#: venv/lib/python3.11/site-packages/django/views/static.py:49 +msgid "Directory indexes are not allowed here." +msgstr "الفهارس الدليلية غير مسموح بها هنا." + +#: venv/lib/python3.11/site-packages/django/views/static.py:51 +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” غير موجود" + +#: venv/lib/python3.11/site-packages/django/views/static.py:68 +#: venv/lib/python3.11/site-packages/django/views/templates/directory_index.html:8 +#: venv/lib/python3.11/site-packages/django/views/templates/directory_index.html:11 +#, python-format +msgid "Index of %(directory)s" +msgstr "فهرس %(directory)s" + +#: venv/lib/python3.11/site-packages/django/views/templates/default_urlconf.html:7 +#: venv/lib/python3.11/site-packages/django/views/templates/default_urlconf.html:204 +msgid "The install worked successfully! Congratulations!" +msgstr "تم التثبيت بنجاح! تهانينا!" + +#: venv/lib/python3.11/site-packages/django/views/templates/default_urlconf.html:206 +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"عرض ملاحظات الإصدار لـ Django %(version)s" + +#: venv/lib/python3.11/site-packages/django/views/templates/default_urlconf.html:208 +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"أنت ترى هذه الصفحة لأن DEBUG=True موجودة في ملف الإعدادات الخاص بك ولم تقم " +"بتكوين أي عناوين URL." + +#: venv/lib/python3.11/site-packages/django/views/templates/default_urlconf.html:217 +msgid "Django Documentation" +msgstr "وثائق Django" + +#: venv/lib/python3.11/site-packages/django/views/templates/default_urlconf.html:218 +msgid "Topics, references, & how-to’s" +msgstr "الموضوعات، المراجع، والإرشادات" + +#: venv/lib/python3.11/site-packages/django/views/templates/default_urlconf.html:226 +msgid "Tutorial: A Polling App" +msgstr "البرنامج التعليمي: تطبيق استطلاع" + +#: venv/lib/python3.11/site-packages/django/views/templates/default_urlconf.html:227 +msgid "Get started with Django" +msgstr "ابدأ مع Django" + +#: venv/lib/python3.11/site-packages/django/views/templates/default_urlconf.html:235 +msgid "Django Community" +msgstr "مجتمع Django" + +#: venv/lib/python3.11/site-packages/django/views/templates/default_urlconf.html:236 +msgid "Connect, get help, or contribute" +msgstr "اتصل، احصل على المساعدة، أو ساهم" + +#: venv/lib/python3.11/site-packages/django_bootstrap5/components.py:26 +msgid "close" +msgstr "إغلاق" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/account.py:72 +msgid "Alpha Numeric (auto generated if not provided)..." +msgstr "أبجدي رقمي (يتم توليده تلقائياً إذا لم يتم توفيره)..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/account.py:76 +msgid "Account Name..." +msgstr "اسم الحساب..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/account.py:104 +msgid "Position" +msgstr "الموضع" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/account.py:109 +msgid "Relative to" +msgstr "نسبياً إلى" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/auth.py:15 +msgid "Password" +msgstr "كلمة المرور" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/bank_account.py:54 +#: venv/lib/python3.11/site-packages/django_ledger/forms/bank_account.py:102 +msgid "Enter account name..." +msgstr "أدخل اسم الحساب..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/bank_account.py:58 +msgid "Enter account number..." +msgstr "أدخل رقم الحساب..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/bank_account.py:62 +msgid "Enter routing number..." +msgstr "أدخل رقم التوجيه..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/bank_account.py:66 +msgid "Enter ABA number..." +msgstr "أدخل رقم ABA..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/bank_account.py:70 +msgid "Enter SWIFT number..." +msgstr "أدخل رقم SWIFT..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/bank_account.py:80 +#: venv/lib/python3.11/site-packages/django_ledger/models/accounts.py:428 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/account/tags/accounts_table.html:23 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/balance_sheet_statement.html:21 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_txs_table.html:10 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_txs_table.html:43 +msgid "Account Name" +msgstr "اسم الحساب" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/bank_account.py:81 +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:1134 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html:8 +msgid "Account Number" +msgstr "رقم الحساب" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/bank_account.py:82 +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:1144 +msgid "Account Type" +msgstr "نوع الحساب" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/bank_account.py:83 +#: venv/lib/python3.11/site-packages/django_ledger/models/bank_account.py:129 +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:322 +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:222 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:31 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_detail.html:30 +msgid "Cash Account" +msgstr "حساب نقدي" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/bank_account.py:84 +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:1139 +msgid "ABA Number" +msgstr "رقم ABA" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/bank_account.py:85 +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:1138 +msgid "Routing Number" +msgstr "رقم التوجيه" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/bank_account.py:86 +msgid "Make Active" +msgstr "اجعل نشطاً" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/bill.py:49 +#: venv/lib/python3.11/site-packages/django_ledger/forms/invoice.py:64 +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:375 +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:348 +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:219 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:26 +msgid "Draft Date" +msgstr "تاريخ المسودة" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/bill.py:50 +msgid "Payable Account" +msgstr "حساب دائن" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/bill.py:51 +msgid "Prepaid Expenses Account" +msgstr "حساب النفقات المدفوعة مسبقاً" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/bill.py:56 +msgid "Bill Date (YYYY-MM-DD)..." +msgstr "تاريخ الفاتورة (YYYY-MM-DD)..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/bill.py:131 +msgid "Date (YYYY-MM-DD)..." +msgstr "التاريخ (YYYY-MM-DD)..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/bill.py:152 +msgid "Bill Progress Amount (%)" +msgstr "مبلغ تقدم الفاتورة (%)" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/bill.py:153 +#: venv/lib/python3.11/site-packages/django_ledger/forms/invoice.py:118 +msgid "Will this Bill be Accrued?" +msgstr "هل ستتراكم هذه الفاتورة؟" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/bill.py:154 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/card_markdown.html:9 +msgid "Notes" +msgstr "ملاحظات" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/closing_entry.py:15 +msgid "Cannot create a closing entry with a future date." +msgstr "لا يمكن إنشاء إدخال إغلاق بتاريخ مستقبلي." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/closing_entry.py:28 +msgid "Closing Date (YYYY-MM-DD)..." +msgstr "تاريخ الإغلاق (YYYY-MM-DD)..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/closing_entry.py:33 +msgid "Select a Closing Date" +msgstr "اختر تاريخ الإغلاق" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/closing_entry.py:50 +msgid "Closing Entry Notes" +msgstr "ملاحظات إدخال الإغلاق" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/coa.py:17 +#: venv/lib/python3.11/site-packages/django_ledger/forms/coa.py:38 +#: venv/lib/python3.11/site-packages/django_ledger/models/data_import.py:61 +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1144 +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:314 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html:9 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_table.html:11 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_txs_table.html:14 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_txs_table.html:46 +msgid "Description" +msgstr "الوصف" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/customer.py:40 +#, python-format +msgid "Example: 3.50% should be entered as 0.035" +msgstr "" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/data_import.py:29 +msgid "What's this import about?..." +msgstr "ما هو موضوع هذا الاستيراد؟..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/data_import.py:100 +msgid "Cannot import and split at the same time" +msgstr "لا يمكن الاستيراد والتقسيم في نفس الوقت" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:20 +msgid "Populate Default CoA" +msgstr "ملء دليل الحسابات الافتراضي" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:21 +msgid "Activate All Accounts" +msgstr "تفعيل جميع الحسابات" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:22 +msgid "Fill With Sample Data?" +msgstr "ملء بالبيانات النموذجية؟" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:27 +msgid "Please provide a valid name for new Entity." +msgstr "يرجى تقديم اسم صالح للكيان الجديد." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:29 +msgid "Looks like this entity name is too short..." +msgstr "يبدو أن اسم هذا الكيان قصير جداً..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:62 +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:137 +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:767 +msgid "Entity Name" +msgstr "اسم الكيان" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:68 +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:143 +msgid "Entity name..." +msgstr "اسم الكيان..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:74 +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:149 +msgid "Address line 1" +msgstr "العنوان سطر 1" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:78 +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:154 +msgid "Address line 2" +msgstr "العنوان سطر 2" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:82 +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:159 +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:107 +msgid "City" +msgstr "المدينة" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:86 +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:164 +msgid "State" +msgstr "الولاية" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:90 +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:169 +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:109 +msgid "Zip Code" +msgstr "الرمز البريدي" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:94 +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:174 +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:110 +msgid "Country" +msgstr "الدولة" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:98 +msgid "Phone number..." +msgstr "رقم الهاتف..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:102 +msgid "Entity email..." +msgstr "بريد الكيان الإلكتروني..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:106 +msgid "http://www.mywebsite.com..." +msgstr "http://www.mywebsite.com..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:179 +msgid "Email..." +msgstr "البريد الإلكتروني..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:185 +msgid "Phone..." +msgstr "الهاتف..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/entity.py:191 +msgid "Website..." +msgstr "الموقع الإلكتروني..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/estimate.py:47 +msgid "Estimate title..." +msgstr "عنوان التقدير..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/feedback.py:9 +msgid "Desktop" +msgstr "سطح المكتب" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/feedback.py:10 +msgid "Tablet" +msgstr "جهاز لوحي" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/feedback.py:11 +msgid "Mobile" +msgstr "الهاتف المحمول" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/feedback.py:15 +msgid "How to reproduce?" +msgstr "كيف تعيد إنتاج المشكلة؟" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/feedback.py:23 +msgid "What did you expect?" +msgstr "ماذا كنت تتوقع؟" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/feedback.py:36 +msgid "What device are you using?" +msgstr "ما هو الجهاز الذي تستخدمه؟" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/feedback.py:41 +msgid "Is your feature request related to a problem? Please describe." +msgstr "هل يرتبط طلب ميزتك بمشكلة؟ يرجى الوصف." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/feedback.py:49 +msgid "Describe the solution you'd like" +msgstr "وصف الحل الذي ترغب فيه" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/feedback.py:57 +msgid "Describe alternatives you've considered" +msgstr "وصف البدائل التي فكرت بها" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/invoice.py:63 +msgid "Invoice Terms" +msgstr "شروط الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/invoice.py:65 +msgid "Deferred Revenue Account" +msgstr "حساب الإيرادات المؤجلة" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/invoice.py:66 +msgid "Receivable Account" +msgstr "حساب المستحقات" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/invoice.py:72 +msgid "Invoice Date (YYYY-MM-DD)..." +msgstr "تاريخ الفاتورة (YYYY-MM-DD)..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/invoice.py:117 +msgid "Progress Amount 0.00 -> 1.00 (percent)" +msgstr "مبلغ التقدم 0.00 -> 1.00 (النسبة)" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/invoice.py:119 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_detail.html:38 +msgid "Amount Received" +msgstr "المبلغ المستلم" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/invoice.py:129 +msgid "Paid Date (YYYY-MM-DD)..." +msgstr "تاريخ الدفع (YYYY-MM-DD)..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/item.py:120 +msgid "Product Name" +msgstr "اسم المنتج" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/item.py:121 +msgid "Product Type" +msgstr "نوع المنتج" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/item.py:210 +msgid "Service Name" +msgstr "اسم الخدمة" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/item.py:211 +msgid "Sold as Unit?" +msgstr "يباع كوحدة؟" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/item.py:261 +msgid "The item name..." +msgstr "اسم العنصر..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/item.py:277 +msgid "The UPC code of the item, if any..." +msgstr "رمز يو بي سي للعنصر، إن وجد..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/item.py:287 +msgid "Expense Name" +msgstr "اسم المصروف" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/item.py:376 +msgid "Inventory Name" +msgstr "اسم المخزون" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/journal_entry.py:30 +msgid "Cannot create new Journal Entries on a locked Ledger." +msgstr "لا يمكن إنشاء إدخالات يومية جديدة على دفتر حسابات مقفل." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/journal_entry.py:56 +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:3134 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:95 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/estimate_item_table.html:9 +msgid "Entity Unit" +msgstr "وحدة الكيان" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/journal_entry.py:68 +msgid "" +"Invalid timestamp {self.cleaned_data[\"timestamp\"]} due to Closing Entries." +msgstr "" +"الطابع الزمني غير صالح {self.cleaned_data[\"timestamp\"]} بسبب إدخالات " +"الإغلاق." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/ledger.py:43 +#: venv/lib/python3.11/site-packages/django_ledger/models/ledger.py:192 +msgid "Ledger External ID" +msgstr "معرف دفتر الحسابات الخارجي" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/purchase_order.py:34 +msgid "Is this an inventory purchase?" +msgstr "هل هذا شراء للمخزون؟" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/purchase_order.py:59 +msgid "Fulfillment Date (YYYY-MM-DD)..." +msgstr "تاريخ التنفيذ (YYYY-MM-DD)..." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/purchase_order.py:66 +msgid "PO Status" +msgstr "حالة طلب الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/purchase_order.py:67 +msgid "Mark as Fulfilled" +msgstr "تمييز كمنفذ" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/purchase_order.py:68 +msgid "PO Notes" +msgstr "ملاحظات طلب الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/transactions.py:81 +msgid "Credits and Debits do not balance." +msgstr "الأرصدة والخصوم غير متوازنة." + +#: venv/lib/python3.11/site-packages/django_ledger/forms/unit.py:17 +msgid "Unit name must be at least 10 characters long" +msgstr "يجب أن يتكون اسم الوحدة من 10 أحرف على الأقل" + +#: venv/lib/python3.11/site-packages/django_ledger/forms/utils.py:17 +msgid "Must provide all City/State/Zip/Country" +msgstr "يجب توفير جميع المعلومات: المدينة/الولاية/الرمز البريدي/الدولة" + +#: venv/lib/python3.11/site-packages/django_ledger/io/io_core.py:830 +#: venv/lib/python3.11/site-packages/django_ledger/io/io_core.py:836 +#, python-brace-format +msgid "" +"Cannot commit transactions. The journal entry date {je_timestamp} is on a " +"closed period." +msgstr "" +"لا يمكن تأكيد المعاملات. تاريخ الإدخال اليومي {je_timestamp} يقع في فترة " +"مغلقة." + +#: venv/lib/python3.11/site-packages/django_ledger/io/io_core.py:842 +msgid "Cannot commit on locked ledger" +msgstr "لا يمكن تأكيد المعاملات على دفتر حسابات مقفل" + +#: venv/lib/python3.11/site-packages/django_ledger/io/io_core.py:878 +msgid "Invalid timestamp type {type(je_timestamp)}" +msgstr "نوع الطابع الزمني غير صالح {type(je_timestamp)}" + +#: venv/lib/python3.11/site-packages/django_ledger/io/io_core.py:881 +#, python-brace-format +msgid "Unable to retrieve Journal Entry model with Timestamp {je_timestamp}" +msgstr "" +"غير قادر على استرداد نموذج الإدخال اليومي بالطابع الزمني {je_timestamp}" + +#: venv/lib/python3.11/site-packages/django_ledger/io/io_core.py:956 +#: venv/lib/python3.11/site-packages/django_ledger/io/io_core.py:1011 +#: venv/lib/python3.11/site-packages/django_ledger/io/io_core.py:1066 +#: venv/lib/python3.11/site-packages/django_ledger/io/io_core.py:1120 +msgid "PDF support not enabled. Install PDF support from Pipfile." +msgstr "دعم PDF غير ممكّن. قم بتثبيت دعم PDF من Pipfile." + +#: venv/lib/python3.11/site-packages/django_ledger/io/io_generator.py:87 +#, python-brace-format +msgid "" +"User {user_model} must have admin privileges for entity model {entity_model}." +msgstr "" +"يجب أن يمتلك المستخدم {user_model} صلاحيات المدير لنموذج الكيان " +"{entity_model}." + +#: venv/lib/python3.11/site-packages/django_ledger/io/io_library.py:203 +msgid "Ledger Model must be a string or UUID or LedgerModel" +msgstr "يجب أن يكون نموذج دفتر الحسابات عبارة عن سلسلة أو UUID أو LedgerModel" + +#: venv/lib/python3.11/site-packages/django_ledger/io/io_library.py:235 +msgid "" +"Total transactions Credits and Debits must be equal. Got CREDITs: {} and " +"DEBITs: {}." +msgstr "يجب أن تكون مجموع الأرصدة والخصوم متساوية. الرصيد: {} والخصم: {}." + +#: venv/lib/python3.11/site-packages/django_ledger/io/io_library.py:281 +msgid "Transactions already committed" +msgstr "المعاملات مؤكدة بالفعل" + +#: venv/lib/python3.11/site-packages/django_ledger/io/io_library.py:290 +#, python-brace-format +msgid "Cannot transact on a locked ledger: {ledger_model}" +msgstr "لا يمكن إجراء معاملات على دفتر حسابات مقفل: {ledger_model}" + +#: venv/lib/python3.11/site-packages/django_ledger/io/io_library.py:307 +msgid "Cannot commit transactions to a non-existing ledger" +msgstr "لا يمكن تأكيد المعاملات على دفتر حسابات غير موجود" + +#: venv/lib/python3.11/site-packages/django_ledger/io/io_library.py:327 +#, python-brace-format +msgid "Cannot commit transactions to a non-existing ledger_xid {k}" +msgstr "لا يمكن تأكيد المعاملات على دفتر حسابات غير موجود ledger_xid {k}" + +#: venv/lib/python3.11/site-packages/django_ledger/io/io_library.py:335 +#, python-brace-format +msgid "Ledger UUID {k} not found." +msgstr "لم يتم العثور على UUID دفتر الحسابات {k}." + +#: venv/lib/python3.11/site-packages/django_ledger/io/io_library.py:356 +#, python-brace-format +msgid "" +"Account code {tx.account_code} not found. Is account available and not " +"locked?" +msgstr "" +"لم يتم العثور على رمز الحساب {tx.account_code}. هل الحساب متاح وغير مقفل؟" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:437 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:523 +msgid "Current Asset" +msgstr "الأصول الحالية" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:438 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:524 +msgid "Marketable Securities" +msgstr "الأوراق المالية القابلة للتداول" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:439 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:525 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/entity/entity_dashboard.html:50 +msgid "Receivables" +msgstr "المستحقات" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:441 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:527 +msgid "Uncollectibles" +msgstr "غير قابلة للتحصيل" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:442 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:528 +msgid "Prepaid" +msgstr "المدفوعة مسبقاً" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:443 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:529 +msgid "Other Liquid Assets" +msgstr "أصول سائلة أخرى" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:446 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:532 +msgid "Notes Receivable" +msgstr "السندات المستحقة" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:447 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:533 +msgid "Land" +msgstr "الأرض" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:448 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:534 +msgid "Securities" +msgstr "الأوراق المالية" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:451 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:537 +msgid "Buildings" +msgstr "المباني" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:452 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:538 +msgid "Buildings - Accum. Depreciation" +msgstr "المباني - الإهلاك المتراكم" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:453 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:539 +msgid "Plant" +msgstr "المصنع" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:454 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:540 +msgid "Plant - Accum. Depreciation" +msgstr "المصنع - الإهلاك المتراكم" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:455 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:541 +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:509 +msgid "Equipment" +msgstr "المعدات" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:456 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:542 +msgid "Equipment - Accum. Depreciation" +msgstr "المعدات - الإهلاك المتراكم" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:459 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:545 +msgid "Intangible Assets" +msgstr "الأصول غير الملموسة" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:460 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:546 +msgid "Intangible Assets - Accum. Amortization" +msgstr "الأصول غير الملموسة - الاستهلاك المتراكم" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:461 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:547 +msgid "Other Assets" +msgstr "أصول أخرى" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:466 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:552 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:52 +msgid "Accounts Payable" +msgstr "الحسابات الدائنة" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:467 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:553 +msgid "Wages Payable" +msgstr "الأجور المستحقة الدفع" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:468 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:554 +msgid "Interest Payable" +msgstr "الفائدة المستحقة الدفع" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:469 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:555 +msgid "Taxes Payable" +msgstr "الضرائب المستحقة الدفع" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:470 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:556 +msgid "Short Term Notes Payable" +msgstr "السندات المستحقة قصيرة الأجل" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:471 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:557 +msgid "Current Maturities of Long Tern Debt" +msgstr "استحقاقات الديون طويلة الأجل الحالية" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:472 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:558 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_detail.html:51 +msgid "Deferred Revenue" +msgstr "الإيرادات المؤجلة" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:473 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:559 +msgid "Other Liabilities" +msgstr "التزامات أخرى" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:476 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:562 +msgid "Long Term Notes Payable" +msgstr "سندات الدفع طويلة الأجل" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:477 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:563 +msgid "Bonds Payable" +msgstr "السندات المستحقة الدفع" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:478 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:564 +msgid "Mortgage Payable" +msgstr "الرهن العقاري المستحق الدفع" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:483 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:569 +msgid "Capital" +msgstr "رأس المال" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:484 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:570 +msgid "Common Stock" +msgstr "الأسهم العادية" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:485 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:571 +msgid "Preferred Stock" +msgstr "الأسهم الممتازة" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:486 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:572 +msgid "Other Equity Adjustments" +msgstr "تعديلات أخرى على حقوق الملكية" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:487 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:573 +msgid "Dividends & Distributions to Shareholders" +msgstr "الأرباح والتوزيعات للمساهمين" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:490 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:578 +msgid "Operational Income" +msgstr "الدخل التشغيلي" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:491 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:579 +msgid "Investing/Passive Income" +msgstr "الدخل من الاستثمار/الدخل السلبي" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:492 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:580 +msgid "Interest Income" +msgstr "دخل الفائدة" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:493 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:581 +msgid "Capital Gain/Loss Income" +msgstr "دخل مكاسب/خسائر رأس المال" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:494 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:582 +msgid "Other Income" +msgstr "دخل آخر" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:497 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:587 +msgid "Cost of Goods Sold" +msgstr "تكلفة البضائع المباعة" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:500 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:590 +msgid "Regular Expense" +msgstr "المصاريف العادية" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:501 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:591 +msgid "Interest Expense - Short Term Debt" +msgstr "مصاريف الفائدة - الديون قصيرة الأجل" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:502 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:592 +msgid "Interest Expense - Long Term Debt" +msgstr "مصاريف الفائدة - الديون طويلة الأجل" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:503 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:593 +msgid "Tax Expense" +msgstr "مصاريف الضرائب" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:504 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:594 +msgid "Capital Expense" +msgstr "النفقات الرأسمالية" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:505 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:595 +msgid "Depreciation Expense" +msgstr "مصاريف الاستهلاك" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:506 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:596 +msgid "Amortization Expense" +msgstr "مصاريف الاستهلاك المعنوي" + +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:507 +#: venv/lib/python3.11/site-packages/django_ledger/io/roles.py:597 +msgid "Other Expense" +msgstr "مصروفات أخرى" + +#: venv/lib/python3.11/site-packages/django_ledger/models/accounts.py:390 +#, python-format +msgid "Account code must be alpha numeric, got {%s}" +msgstr "يجب أن يكون رمز الحساب مزيجاً من الحروف والأرقام، تم تلقي {%s}" + +#: venv/lib/python3.11/site-packages/django_ledger/models/accounts.py:422 +#: venv/lib/python3.11/site-packages/django_ledger/models/transactions.py:473 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_txs_table.html:12 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_txs_table.html:44 +msgid "Credit" +msgstr "ائتمان" + +#: venv/lib/python3.11/site-packages/django_ledger/models/accounts.py:423 +#: venv/lib/python3.11/site-packages/django_ledger/models/transactions.py:474 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_txs_table.html:13 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_txs_table.html:45 +msgid "Debit" +msgstr "مدين" + +#: venv/lib/python3.11/site-packages/django_ledger/models/accounts.py:427 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/balance_sheet_statement.html:20 +msgid "Account Code" +msgstr "رمز الحساب" + +#: venv/lib/python3.11/site-packages/django_ledger/models/accounts.py:429 +msgid "Account Role" +msgstr "دور الحساب" + +#: venv/lib/python3.11/site-packages/django_ledger/models/accounts.py:430 +msgid "Coa Role Default Account" +msgstr "حساب الدور الافتراضي لقائمة الحسابات" + +#: venv/lib/python3.11/site-packages/django_ledger/models/accounts.py:431 +msgid "Account Balance Type" +msgstr "نوع رصيد الحساب" + +#: venv/lib/python3.11/site-packages/django_ledger/models/accounts.py:432 +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:328 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/account/tags/accounts_table.html:27 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/includes/card_journal_entry.html:25 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_table.html:13 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:14 +msgid "Locked" +msgstr "مقفل" + +#: venv/lib/python3.11/site-packages/django_ledger/models/accounts.py:433 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/account/tags/accounts_table.html:26 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/customer/tags/customer_table.html:11 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/uom/tags/uom_table.html:10 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/vendor/tags/vendor_table.html:12 +msgid "Active" +msgstr "نشط" + +#: venv/lib/python3.11/site-packages/django_ledger/models/accounts.py:436 +#: venv/lib/python3.11/site-packages/django_ledger/models/coa.py:152 +msgid "Chart of Accounts" +msgstr "قائمة الحسابات" + +#: venv/lib/python3.11/site-packages/django_ledger/models/accounts.py:443 +#: venv/lib/python3.11/site-packages/django_ledger/models/transactions.py:485 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bank_account/bank_account_update.html:13 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/tags/closing_entry_txs_table.html:8 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_txs_table.html:9 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_txs_table.html:42 +msgid "Account" +msgstr "الحساب" + +#: venv/lib/python3.11/site-packages/django_ledger/models/accounts.py:444 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/chart_of_accounts/includes/coa_card.html:48 +msgid "Accounts" +msgstr "الحسابات" + +#: venv/lib/python3.11/site-packages/django_ledger/models/accounts.py:449 +msgid "Account codes must be unique for each Chart of Accounts Model." +msgstr "يجب أن تكون رموز الحساب فريدة لكل نموذج من نماذج دليل الحسابات." + +#: venv/lib/python3.11/site-packages/django_ledger/models/accounts.py:454 +msgid "Only one default account for role permitted." +msgstr "يُسمح بحساب افتراضي واحد فقط للدور." + +#: venv/lib/python3.11/site-packages/django_ledger/models/accounts.py:745 +msgid "" +"Cannot lock account {self.code}: {self.name}. Active: {self.is_active()}" +msgstr "لا يمكن تنشيط الحساب {self.code}: {self.name}. نشط: {self.is_active()}" + +#: venv/lib/python3.11/site-packages/django_ledger/models/accounts.py:760 +msgid "" +"Cannot unlock account {self.code}: {self.name}. Active: {self.is_active()}" +msgstr "لا يمكن تنشيط الحساب {self.code}: {self.name}. نشط: {self.is_active()}" + +#: venv/lib/python3.11/site-packages/django_ledger/models/accounts.py:788 +msgid "" +"Cannot activate account {self.code}: {self.name}. Active: {self.is_active()}" +msgstr "لا يمكن تنشيط الحساب {self.code}: {self.name}. نشط: {self.is_active()}" + +#: venv/lib/python3.11/site-packages/django_ledger/models/accounts.py:815 +msgid "" +"Cannot deactivate account {self.code}: {self.name}. Active: {self." +"is_active()}" +msgstr "" +"لا يمكن إلغاء تنشيط الحساب {self.code}: {self.name}. نشط: {self.is_active()}" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bank_account.py:126 +#: venv/lib/python3.11/site-packages/django_ledger/models/closing_entry.py:67 +#: venv/lib/python3.11/site-packages/django_ledger/models/closing_entry.py:378 +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:3131 +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:251 +msgid "Entity Model" +msgstr "نموذج الكيان" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bank_account.py:143 +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:459 +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:376 +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:428 +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:303 +msgid "Must pass user_model when using entity_slug." +msgstr "يجب تمرير user_model عند استخدام entity_slug." + +#: venv/lib/python3.11/site-packages/django_ledger/models/bank_account.py:165 +msgid "Bank Account" +msgstr "الحساب المصرفي" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:338 +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:223 +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:299 +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:192 +msgid "Draft" +msgstr "مسودة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:339 +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:224 +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:300 +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:193 +msgid "In Review" +msgstr "قيد المراجعة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:340 +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:225 +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:301 +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:194 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:49 +msgid "Approved" +msgstr "تمت الموافقة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:341 +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:302 +msgid "Paid" +msgstr "مدفوع" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:342 +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:228 +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:304 +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1042 +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:196 +msgid "Canceled" +msgstr "ملغى" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:343 +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:227 +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:303 +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:197 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_void.html:25 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:196 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:179 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:112 +msgid "Void" +msgstr "باطل" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:351 +msgid "Bill Number" +msgstr "رقم الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:355 +msgid "Bill Status" +msgstr "حالة الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:356 +msgid "External Reference Number" +msgstr "رقم المرجع الخارجي" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:363 +msgid "Bill Additional Info" +msgstr "معلومات إضافية عن الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:367 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:85 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_item_formset.html:8 +msgid "Bill Items" +msgstr "بنود الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:373 +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:346 +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:235 +msgid "Associated Customer Job/Estimate" +msgstr "الوظيفة/التقدير المرتبط بالعميل" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:376 +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:349 +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:220 +msgid "In Review Date" +msgstr "تاريخ المراجعة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:377 +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:350 +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:221 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:38 +msgid "Approved Date" +msgstr "تاريخ الموافقة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:378 +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:351 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:138 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:126 +msgid "Paid Date" +msgstr "تاريخ الدفع" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:379 +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:352 +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:222 +msgid "Void Date" +msgstr "تاريخ الإبطال" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:380 +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:353 +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:224 +msgid "Canceled Date" +msgstr "تاريخ الإلغاء" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:387 +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:3123 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:11 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:61 +msgid "Bill" +msgstr "الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:388 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/estimate_detail.html:84 +msgid "Bills" +msgstr "الفواتير" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:1124 +#, python-format +msgid "Do you want to mark Bill %s as Draft?" +msgstr "هل تريد وضع الفاتورة %s كمسودة؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:1232 +#, python-format +msgid "Do you want to mark Bill %s as In Review?" +msgstr "هل تريد وضع الفاتورة %s قيد المراجعة؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:1342 +#, python-format +msgid "Do you want to mark Bill %s as Approved?" +msgstr "هل تريد وضع الفاتورة %s على أنها موافق عليها؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:1468 +#, python-format +msgid "Do you want to mark Bill %s as Paid?" +msgstr "هل تريد وضع الفاتورة %s على أنها مدفوعة؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:1571 +#, python-format +msgid "Do you want to void Bill %s?" +msgstr "هل تريد إبطال الفاتورة %s؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:1644 +#, python-format +msgid "Do you want to mark Bill %s as Canceled?" +msgstr "هل تريد وضع الفاتورة %s كملغاة؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/bill.py:1653 +#, python-brace-format +msgid "Bill {self.bill_number} cannot be deleted..." +msgstr "لا يمكن حذف الفاتورة {self.bill_number}..." + +#: venv/lib/python3.11/site-packages/django_ledger/models/closing_entry.py:69 +msgid "Closing Date" +msgstr "تاريخ الإغلاق" + +#: venv/lib/python3.11/site-packages/django_ledger/models/closing_entry.py:70 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/tags/closing_entry_table.html:10 +msgid "Is Posted" +msgstr "تم النشر" + +#: venv/lib/python3.11/site-packages/django_ledger/models/closing_entry.py:82 +msgid "Only one Closing Entry for Date Allowed." +msgstr "مسموح بإدخال إغلاق واحد فقط لكل تاريخ." + +#: venv/lib/python3.11/site-packages/django_ledger/models/closing_entry.py:193 +#, python-brace-format +msgid "Closing Entry {self.closing_date} is already posted." +msgstr "إدخال الإغلاق {self.closing_date} تم نشره بالفعل." + +#: venv/lib/python3.11/site-packages/django_ledger/models/closing_entry.py:212 +#, python-brace-format +msgid "Are you sure you want to post Closing Entry dated {self.closing_date}?" +msgstr "هل أنت متأكد أنك تريد نشر إدخال الإغلاق المؤرخ في {self.closing_date}؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/closing_entry.py:230 +#, python-brace-format +msgid "Closing Entry {self.closing_date} is not posted." +msgstr "إدخال الإغلاق {self.closing_date} لم يتم نشره." + +#: venv/lib/python3.11/site-packages/django_ledger/models/closing_entry.py:252 +#, python-brace-format +msgid "" +"Are you sure you want to unpost Closing Entry dated {self.closing_date}?" +msgstr "" +"هل أنت متأكد أنك تريد إلغاء نشر إدخال الإغلاق المؤرخ في {self.closing_date}؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/closing_entry.py:270 +msgid "Cannot update transactions of a posted Closing Entry." +msgstr "لا يمكن تحديث المعاملات لإدخال إغلاق تم نشره." + +#: venv/lib/python3.11/site-packages/django_ledger/models/closing_entry.py:283 +#, python-brace-format +msgid "" +"Are you sure you want to update all Closing Entry {self.closing_date} " +"transactions? This action will delete existing closing entry transactions " +"and create new ones." +msgstr "" +"هل أنت متأكد من أنك تريد تحديث جميع معاملات إدخال الإغلاق {self." +"closing_date}؟ سيؤدي هذا الإجراء إلى حذف معاملات الإغلاق الحالية وإنشاء " +"معاملات جديدة." + +#: venv/lib/python3.11/site-packages/django_ledger/models/closing_entry.py:302 +msgid "Cannot delete a posted Closing Entry" +msgstr "لا يمكن حذف إدخال إغلاق تم نشره" + +#: venv/lib/python3.11/site-packages/django_ledger/models/closing_entry.py:314 +#, python-brace-format +msgid "" +"Are you sure you want to delete Closing Entry {self.closing_date}? This " +"action cannot be undone." +msgstr "" +"هل أنت متأكد من أنك تريد حذف إدخال الإغلاق {self.closing_date}؟ لا يمكن " +"التراجع عن هذا الإجراء." + +#: venv/lib/python3.11/site-packages/django_ledger/models/closing_entry.py:373 +msgid "Account Model" +msgstr "نموذج الحساب" + +#: venv/lib/python3.11/site-packages/django_ledger/models/closing_entry.py:384 +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:325 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/tags/closing_entry_txs_table.html:10 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/includes/card_journal_entry.html:33 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_table.html:10 +msgid "Activity" +msgstr "النشاط" + +#: venv/lib/python3.11/site-packages/django_ledger/models/closing_entry.py:387 +msgid "Transaction Type" +msgstr "نوع المعاملة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/closing_entry.py:388 +msgid "Closing Entry Balance" +msgstr "رصيد إدخال الإغلاق" + +#: venv/lib/python3.11/site-packages/django_ledger/models/closing_entry.py:398 +msgid "Closing Entry Model" +msgstr "نموذج إدخال الإغلاق" + +#: venv/lib/python3.11/site-packages/django_ledger/models/coa.py:142 +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:795 +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:3186 +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:217 +msgid "Entity" +msgstr "الكيان" + +#: venv/lib/python3.11/site-packages/django_ledger/models/coa.py:144 +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:128 +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:541 +#: venv/lib/python3.11/site-packages/django_ledger/models/unit.py:131 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/chart_of_accounts/includes/coa_card.html:23 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/expense/tags/expense_item_table.html:12 +msgid "Is Active" +msgstr "نشط" + +#: venv/lib/python3.11/site-packages/django_ledger/models/coa.py:145 +msgid "CoA Description" +msgstr "وصف قائمة الحسابات" + +#: venv/lib/python3.11/site-packages/django_ledger/models/coa.py:151 +msgid "Chart of Account" +msgstr "قائمة الحسابات" + +#: venv/lib/python3.11/site-packages/django_ledger/models/coa.py:221 +#, python-brace-format +msgid "" +"The account model {account_model} is not part of the chart of accounts {self." +"name}." +msgstr "نموذج الحساب {account_model} ليس جزءًا من قائمة الحسابات {self.name}." + +#: venv/lib/python3.11/site-packages/django_ledger/models/coa.py:319 +#, python-brace-format +msgid "CoA {self.uuid} already has a slug" +msgstr "قائمة الحسابات {self.uuid} تحتوي بالفعل على معرف" + +#: venv/lib/python3.11/site-packages/django_ledger/models/coa.py:563 +#, python-brace-format +msgid "The Chart of Accounts {self.slug} is already default" +msgstr "قائمة الحسابات {self.slug} هي بالفعل القائمة الافتراضية" + +#: venv/lib/python3.11/site-packages/django_ledger/models/coa.py:613 +msgid "The Chart of Accounts is currently active." +msgstr "قائمة الحسابات نشطة حاليًا." + +#: venv/lib/python3.11/site-packages/django_ledger/models/coa.py:640 +msgid "The Chart of Accounts is currently not active." +msgstr "قائمة الحسابات غير نشطة حاليًا." + +#: venv/lib/python3.11/site-packages/django_ledger/models/coa.py:744 +msgid "Default Chart of Accounts cannot be deactivated." +msgstr "لا يمكن إلغاء تنشيط قائمة الحسابات الافتراضية." + +#: venv/lib/python3.11/site-packages/django_ledger/models/customer.py:184 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/customer/tags/customer_table.html:8 +msgid "Customer Number" +msgstr "رقم العميل" + +#: venv/lib/python3.11/site-packages/django_ledger/models/customer.py:188 +msgid "Customer Entity" +msgstr "كيان العميل" + +#: venv/lib/python3.11/site-packages/django_ledger/models/data_import.py:65 +msgid "Associated Bank Account Model" +msgstr "نموذج الحساب المصرفي المرتبط" + +#: venv/lib/python3.11/site-packages/django_ledger/models/data_import.py:69 +msgid "Ledger Model" +msgstr "نموذج دفتر الحسابات" + +#: venv/lib/python3.11/site-packages/django_ledger/models/data_import.py:72 +msgid "Import Job Completed" +msgstr "اكتمل استيراد المهمة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/data_import.py:77 +msgid "Import Job Model" +msgstr "نموذج مهمة الاستيراد" + +#: venv/lib/python3.11/site-packages/django_ledger/models/data_import.py:102 +#, python-brace-format +msgid "Are you sure you want to delete Import Job {self.description}?" +msgstr "هل أنت متأكد أنك تريد حذف مهمة الاستيراد {self.description}؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/data_import.py:207 +msgid "Parent Transaction" +msgstr "المعاملة الأصلية" + +#: venv/lib/python3.11/site-packages/django_ledger/models/data_import.py:210 +msgid "Date Posted" +msgstr "تاريخ النشر" + +#: venv/lib/python3.11/site-packages/django_ledger/models/data_import.py:211 +msgid "Bundle Split Transactions" +msgstr "تجزئة المعاملات" + +#: venv/lib/python3.11/site-packages/django_ledger/models/data_import.py:216 +msgid "Proposed Activity" +msgstr "النشاط المقترح" + +#: venv/lib/python3.11/site-packages/django_ledger/models/data_import.py:235 +#: venv/lib/python3.11/site-packages/django_ledger/models/unit.py:140 +msgid "Entity Unit Model" +msgstr "نموذج وحدة الكيان" + +#: venv/lib/python3.11/site-packages/django_ledger/models/data_import.py:246 +msgid "Staged Transaction Model" +msgstr "نموذج المعاملة المتدرجة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/data_import.py:385 +#, python-brace-format +msgid "Staged Transaction {self.uuid} already split." +msgstr "المعاملة المتدرجة {self.uuid} تم تقسيمها بالفعل." + +#: venv/lib/python3.11/site-packages/django_ledger/models/data_import.py:510 +msgid "Invalid Bank Account for LedgerModel. No matching Entity Model found." +msgstr "" +"حساب مصرفي غير صالح لنموذج دفتر الحسابات. لم يتم العثور على نموذج كيان مطابق." + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:435 +#, python-brace-format +msgid "" +"The Closing Entry Model {closing_entry_model} does not belong to Entity " +"{self.name}" +msgstr "" +"نموذج إدخال الإغلاق {closing_entry_model} لا ينتمي إلى الكيان {self.name}" + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:439 +#, python-brace-format +msgid "The Closing Entry Model date {closing_entry_model.closing_date} " +msgstr "تاريخ نموذج إدخال الإغلاق {closing_entry_model.closing_date} " + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:538 +#, python-brace-format +msgid "Cannot create closing entry with a future date {closing_date}." +msgstr "لا يمكن إنشاء إدخال إغلاق بتاريخ مستقبلي {closing_date}." + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:769 +msgid "Default Chart of Accounts" +msgstr "قائمة الحسابات الافتراضية" + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:776 +msgid "Admin" +msgstr "الإدارة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:780 +msgid "Managers" +msgstr "المديرون" + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:783 +msgid "Use Accrual Method" +msgstr "استخدام طريقة الاستحقاق" + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:784 +msgid "Fiscal Year Start" +msgstr "بداية السنة المالية" + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:785 +msgid "Last Closing Entry Date" +msgstr "تاريخ آخر إدخال إغلاق" + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:796 +msgid "Entities" +msgstr "الكيانات" + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:865 +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:875 +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:883 +msgid "Invalid Parent Entity. " +msgstr "الكيان الأصلي غير صالح." + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:889 +msgid "Only slug, UUID or EntityModel allowed." +msgstr "مسموح فقط بالمعرف، UUID أو نموذج الكيان." + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:962 +#, python-brace-format +msgid "" +"Cannot replace existing slug {self.slug}. Use force_update=True if needed." +msgstr "" +"لا يمكن استبدال المعرف الحالي {self.slug}. استخدم force_update=True إذا لزم " +"الأمر." + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:1361 +msgid "No default_coa found." +msgstr "لم يتم العثور على قائمة حسابات افتراضية." + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:2022 +#, python-brace-format +msgid "" +"Invalid Account Type: choices are {BankAccountModel.VALID_ACCOUNT_TYPES}" +msgstr "" +"نوع الحساب غير صالح: الخيارات المتاحة هي {BankAccountModel." +"VALID_ACCOUNT_TYPES}" + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:2815 +msgid "" +"Closing books must be called by providing closing_date or " +"closing_entry_model, not both." +msgstr "" +"يجب استدعاء إغلاق الدفاتر إما بتحديد تاريخ الإغلاق أو نموذج إدخال الإغلاق، " +"وليس كليهما." + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:2819 +msgid "" +"Closing books must be called by providing closing_date or " +"closing_entry_model." +msgstr "" +"يجب استدعاء إغلاق الدفاتر إما بتحديد تاريخ الإغلاق أو نموذج إدخال الإغلاق." + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:3121 +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:342 +#: venv/lib/python3.11/site-packages/django_ledger/models/transactions.py:481 +msgid "Journal Entry" +msgstr "إدخال دفتر اليومية" + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:3122 +msgid "Purchase Order" +msgstr "أمر شراء" + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:3124 +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:360 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:10 +msgid "Invoice" +msgstr "فاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:3125 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/card_estimate.html:9 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/estimate_table.html:9 +msgid "Estimate" +msgstr "تقدير" + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:3138 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/balance_sheet.html:37 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/cash_flow.html:38 +msgid "Fiscal Year" +msgstr "السنة المالية" + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:3178 +msgid "Read Permissions" +msgstr "أذونات القراءة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:3179 +msgid "Read/Write Permissions" +msgstr "أذونات القراءة/الكتابة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:3180 +msgid "No Permissions" +msgstr "بدون أذونات" + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:3190 +msgid "Manager" +msgstr "مدير" + +#: venv/lib/python3.11/site-packages/django_ledger/models/entity.py:3195 +msgid "Permission Level" +msgstr "مستوى الأذونات" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:226 +msgid "Completed" +msgstr "مكتمل" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:237 +msgid "Fixed Price" +msgstr "سعر ثابت" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:238 +msgid "Target Price" +msgstr "سعر الهدف" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:239 +msgid "Time & Materials" +msgstr "الوقت والمواد" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:240 +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:511 +msgid "Other" +msgstr "أخرى" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:247 +msgid "Estimate Number" +msgstr "رقم التقدير" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:253 +msgid "Contract Terms" +msgstr "شروط العقد" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:255 +msgid "Customer Estimate Title" +msgstr "عنوان تقدير العميل" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:258 +msgid "EstimateModel Title length must be greater than 5" +msgstr "يجب أن يزيد طول عنوان نموذج التقدير عن 5 أحرف" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:262 +msgid "Estimate Model Status" +msgstr "حالة نموذج التقدير" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:265 +msgid "Date Draft" +msgstr "تاريخ المسودة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:266 +msgid "Date In Review" +msgstr "تاريخ قيد المراجعة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:267 +msgid "Date Approved" +msgstr "تاريخ الموافقة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:268 +msgid "Date Completed" +msgstr "تاريخ الاكتمال" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:269 +msgid "Date Canceled" +msgstr "تاريخ الإلغاء" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:270 +msgid "Date Void" +msgstr "تاريخ الإبطال" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:275 +msgid "Total revenue estimate" +msgstr "إجمالي تقدير الإيرادات" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:276 +msgid "Estimated cost to complete the quoted work." +msgstr "التكلفة المقدرة لإكمال العمل المذكور." + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:282 +msgid "Labor Cost of labor estimate" +msgstr "تكلفة تقدير العمالة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:283 +msgid "Estimated labor cost to complete the quoted work." +msgstr "التكلفة المقدرة للعمالة لإكمال العمل المذكور." + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:289 +msgid "Material Cost Estimate" +msgstr "تقدير تكلفة المواد" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:290 +msgid "Estimated material cost to complete the quoted work." +msgstr "التكلفة المقدرة للمواد لإكمال العمل المذكور." + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:296 +msgid "Equipment Cost Estimate" +msgstr "تقدير تكلفة المعدات" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:297 +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:304 +msgid "Estimated equipment cost to complete the quoted work." +msgstr "التكلفة المقدرة للمعدات لإكمال العمل المذكور." + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:303 +msgid "Other Cost Estimate" +msgstr "تقدير تكلفة أخرى" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:312 +msgid "Customer Job" +msgstr "وظيفة العميل" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:313 +msgid "Customer Jobs" +msgstr "وظائف العملاء" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:672 +#, python-format +msgid "Do you want to mark Estimate %s as Draft?" +msgstr "هل تريد وضع التقدير %s كمسودة؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:763 +#, python-format +msgid "Do you want to mark Estimate %s as In Review?" +msgstr "هل تريد وضع التقدير %s قيد المراجعة؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:839 +#, python-format +msgid "Do you want to mark Estimate %s as Approved?" +msgstr "هل تريد وضع التقدير %s على أنه معتمد؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:916 +#, python-format +msgid "Do you want to mark Estimate %s as Completed?" +msgstr "هل تريد وضع التقدير %s على أنه مكتمل؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:991 +#, python-format +msgid "Do you want to mark Estimate %s as Canceled?" +msgstr "هل تريد وضع التقدير %s على أنه ملغى؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:1069 +#, python-format +msgid "Do you want to mark Estimate %s as Void?" +msgstr "هل تريد إبطال التقدير %s؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/estimate.py:1323 +msgid "Cannot compute gross margin, total cost is zero." +msgstr "لا يمكن حساب هامش الربح الإجمالي، التكلفة الإجمالية صفر." + +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:313 +msgid "Invoice Number" +msgstr "رقم الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:315 +msgid "Invoice Status" +msgstr "حالة الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:326 +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:228 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:42 +msgid "Prepaid Account" +msgstr "حساب مسبق الدفع" + +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:330 +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:236 +msgid "Unearned Account" +msgstr "حساب غير مكتسب" + +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:336 +msgid "Invoice Additional Info" +msgstr "معلومات إضافية عن الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:340 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_detail.html:84 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/tags/invoice_item_formset.html:8 +msgid "Invoice Items" +msgstr "عناصر الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:361 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/estimate_detail.html:99 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_list.html:15 +msgid "Invoices" +msgstr "الفواتير" + +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:1060 +#, python-format +msgid "Do you want to mark Invoice %s as Draft?" +msgstr "هل تريد وضع الفاتورة %s كمسودة؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:1151 +#, python-format +msgid "Do you want to mark Invoice %s as In Review?" +msgstr "هل تريد وضع الفاتورة %s قيد المراجعة؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:1256 +#, python-format +msgid "Do you want to mark Invoice %s as Approved?" +msgstr "هل تريد وضع الفاتورة %s على أنها معتمدة؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:1365 +#, python-format +msgid "Do you want to mark Invoice %s as Paid?" +msgstr "هل تريد وضع الفاتورة %s على أنها مدفوعة؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:1472 +#, python-format +msgid "Do you want to mark Invoice %s as Void?" +msgstr "هل تريد إبطال الفاتورة %s؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:1547 +#, python-format +msgid "Do you want to mark Invoice %s as Canceled?" +msgstr "هل تريد إلغاء الفاتورة %s؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/invoice.py:1556 +#, python-brace-format +msgid "Invoice {self.invoice_number} cannot be deleted..." +msgstr "لا يمكن حذف الفاتورة {self.invoice_number}..." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:126 +msgid "Unit of Measure Name" +msgstr "اسم وحدة القياس" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:127 +msgid "UoM Abbreviation" +msgstr "اختصار وحدة القياس" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:134 +msgid "UoM Entity" +msgstr "كيان وحدة القياس" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:507 +msgid "Labor" +msgstr "العمالة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:508 +msgid "Material" +msgstr "المواد" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:510 +msgid "Lump Sum" +msgstr "مبلغ إجمالي" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:520 +msgid "Expense" +msgstr "المصروف" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:522 +msgid "Service" +msgstr "الخدمة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:523 +msgid "Product" +msgstr "المنتج" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:527 +msgid "Item Name" +msgstr "اسم العنصر" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:529 +msgid "Internal ID" +msgstr "المعرف الداخلي" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:530 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/product/tags/product_table.html:9 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/service/tags/services_table.html:9 +msgid "Item Number" +msgstr "رقم العنصر" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:535 +msgid "Unit of Measure" +msgstr "وحدة القياس" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:538 +msgid "SKU Code" +msgstr "رمز SKU" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:539 +msgid "UPC Code" +msgstr "رمز UPC" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:546 +msgid "Default monetary value per unit of measure" +msgstr "القيمة النقدية الافتراضية لكل وحدة قياس" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:549 +msgid "Is an item for inventory" +msgstr "هو عنصر للمخزون" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:550 +msgid "It is an item you require for your inventory." +msgstr "إنه عنصر تحتاجه لمخزونك." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:552 +msgid "Is a product or service." +msgstr "هل هو منتج أو خدمة." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:554 +msgid "Is a product or service you sell or provide to customers." +msgstr "هل هو منتج أو خدمة تبيعها أو تقدمها للعملاء." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:563 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/inventory/tags/inventory_item_table.html:11 +msgid "Inventory Account" +msgstr "حساب المخزون" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:565 +msgid "Inventory account where cost will be capitalized." +msgstr "حساب المخزون حيث سيتم رسملة التكلفة." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:572 +msgid "Total inventory received." +msgstr "إجمالي المخزون المستلم." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:578 +msgid "Total value of inventory received." +msgstr "إجمالي قيمة المخزون المستلم." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:583 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/inventory/tags/inventory_item_table.html:12 +msgid "COGS Account" +msgstr "حساب تكلفة البضائع المباعة (COGS)" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:585 +msgid "COGS account where cost will be recognized on Income Statement." +msgstr "حساب تكلفة البضائع المباعة حيث سيتم الاعتراف بالتكلفة في بيان الدخل." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:591 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/product/tags/product_table.html:14 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/service/tags/services_table.html:14 +msgid "Earnings Account" +msgstr "حساب الأرباح" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:593 +msgid "Earnings account where revenue will be recognized on Income Statement." +msgstr "حساب الأرباح حيث سيتم الاعتراف بالإيرادات في بيان الدخل." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:599 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/expense/tags/expense_item_table.html:11 +msgid "Expense Account" +msgstr "حساب المصروف" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:601 +msgid "Expense account where cost will be recognized on Income Statement." +msgstr "حساب المصروف حيث سيتم الاعتراف بالتكلفة في بيان الدخل." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:607 +msgid "Item Additional Info" +msgstr "معلومات إضافية عن العنصر" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:613 +msgid "Item Entity" +msgstr "كيان العنصر" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:804 +msgid "Items must have an associated expense accounts." +msgstr "يجب أن تكون العناصر مرتبطة بحسابات المصروفات." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:806 +msgid "Expenses must have a type." +msgstr "يجب أن يكون للمصروفات نوع." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:819 +msgid "Products must have Inventory, COGS & Earnings accounts." +msgstr "" +"يجب أن يكون للمنتجات حسابات المخزون، وحساب تكلفة البضائع المباعة، وحسابات " +"الأرباح." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:821 +msgid "Product must not be labor..." +msgstr "يجب ألا يكون المنتج من العمالة..." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:831 +msgid "Services must have COGS & Earnings accounts." +msgstr "يجب أن تكون للخدمات حسابات تكلفة البضائع المباعة وحسابات الأرباح." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:842 +msgid "Items for inventory must have Inventory & COGS accounts." +msgstr "يجب أن تكون للعناصر المخزنية حسابات المخزون وتكلفة البضائع المباعة." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:844 +msgid "Inventory items must have a type." +msgstr "يجب أن تكون للعناصر المخزنية نوع." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1038 +msgid "Not Ordered" +msgstr "لم يتم طلبها" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1039 +msgid "Ordered" +msgstr "تم طلبها" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1040 +msgid "In Transit" +msgstr "في الطريق" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1041 +msgid "Received" +msgstr "تم الاستلام" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1050 +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:319 +msgid "Associated Entity Unit" +msgstr "وحدة الكيان المرتبطة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1053 +msgid "Item Model" +msgstr "نموذج العنصر" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1058 +msgid "Bill Model" +msgstr "نموذج الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1063 +msgid "Invoice Model" +msgstr "نموذج الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1068 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:97 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_item_formset.html:21 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/estimate_item_table.html:10 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/tags/ce_item_formset.html:19 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_detail.html:96 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/tags/invoice_item_formset.html:19 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/po_item_formset.html:20 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_update.html:51 +msgid "Quantity" +msgstr "الكمية" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1072 +msgid "Cost Per Unit" +msgstr "التكلفة لكل وحدة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1079 +msgid "Total Amount QTY x UnitCost" +msgstr "المبلغ الإجمالي (الكمية × تكلفة الوحدة)" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1087 +msgid "Purchase Order Model" +msgstr "نموذج أمر الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1090 +msgid "PO Quantity" +msgstr "كمية أمر الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1091 +msgid "Authorized item quantity for purchasing." +msgstr "الكمية المصرح بها من العنصر للشراء." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1095 +msgid "PO Unit Cost" +msgstr "تكلفة وحدة أمر الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1096 +msgid "Purchase Order unit cost." +msgstr "تكلفة وحدة أمر الشراء." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1103 +msgid "Authorized maximum item cost per Purchase Order" +msgstr "الحد الأقصى المصرح به لتكلفة العنصر لكل أمر شراء." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1104 +msgid "Maximum authorized cost per Purchase Order." +msgstr "الحد الأقصى المصرح به للتكلفة لكل أمر شراء." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1110 +msgid "PO Item Status" +msgstr "حالة عنصر أمر الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1116 +msgid "Customer Estimate" +msgstr "تقدير العميل" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1120 +msgid "Estimated/Contract Quantity" +msgstr "الكمية المقدرة/المتعاقد عليها" + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1124 +msgid "Estimate/Contract Cost per Unit." +msgstr "تكلفة التقدير/العقد لكل وحدة." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1131 +msgid "Total Estimate/Contract Cost." +msgstr "إجمالي تكلفة التقدير/العقد." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1135 +msgid "Estimate/Contract Revenue per Unit." +msgstr "إيرادات التقدير/العقد لكل وحدة." + +#: venv/lib/python3.11/site-packages/django_ledger/models/items.py:1142 +msgid "Total Estimate/Contract Revenue." +msgstr "إجمالي إيرادات التقدير/العقد." + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:290 +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:291 +msgid "Operating" +msgstr "تشغيلية" + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:293 +msgid "Investing" +msgstr "استثمارية" + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:294 +msgid "Purchase/Disposition of PPE" +msgstr "شراء/التخلص من الممتلكات والمعدات" + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:295 +msgid "Purchase/Disposition of Securities" +msgstr "شراء/التخلص من الأوراق المالية" + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:296 +msgid "Investing Activity Other" +msgstr "نشاط استثماري آخر" + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:298 +msgid "Financing" +msgstr "تمويل" + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:299 +msgid "Payoff of Short Term Debt" +msgstr "سداد الدين قصير الأجل" + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:300 +msgid "Payoff of Long Term Debt" +msgstr "سداد الدين طويل الأجل" + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:301 +msgid "Issuance of Common Stock, Preferred Stock or Capital Contribution" +msgstr "إصدار أسهم عادية، أسهم مفضلة أو مساهمة رأسمالية" + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:302 +msgid "Dividends or Distributions to Shareholders" +msgstr "الأرباح أو التوزيعات للمساهمين" + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:303 +msgid "Financing Activity Other" +msgstr "نشاط تمويلي آخر" + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:312 +msgid "Journal Entry Number" +msgstr "رقم إدخال دفتر اليومية" + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:313 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_table.html:9 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_txs_table.html:8 +msgid "Timestamp" +msgstr "الطابع الزمني" + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:326 +msgid "Origin" +msgstr "الأصل" + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:327 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/includes/card_journal_entry.html:18 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_table.html:12 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:13 +msgid "Posted" +msgstr "تم النشر" + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:333 +#: venv/lib/python3.11/site-packages/django_ledger/models/ledger.py:212 +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:216 +msgid "Ledger" +msgstr "دفتر الأستاذ" + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:343 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_list.html:21 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:10 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:31 +#: venv/lib/python3.11/site-packages/django_ledger/views/journal_entry.py:96 +msgid "Journal Entries" +msgstr "إدخالات دفتر اليومية" + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:602 +msgid "Cannot post an empty Journal Entry." +msgstr "لا يمكن نشر إدخال دفتر يومية فارغ." + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:1215 +#, python-brace-format +msgid "" +"Are you sure you want to delete JournalEntry Model {self.je_number} on " +"Ledger {self.ledger.name}?" +msgstr "" +"هل أنت متأكد أنك تريد حذف نموذج إدخال الدفتر {self.je_number} على دفتر " +"الأستاذ {self.ledger.name}؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:1220 +#, python-brace-format +msgid "JournalEntryModel {self.uuid} cannot be deleted..." +msgstr "لا يمكن حذف نموذج إدخال الدفتر {self.uuid}..." + +#: venv/lib/python3.11/site-packages/django_ledger/models/journal_entry.py:1357 +#, python-brace-format +msgid "Cannot add Journal Entries to locked LedgerModel {instance.ledger_id}" +msgstr "" +"لا يمكن إضافة إدخالات دفتر اليومية إلى دفتر الأستاذ المقفل {instance." +"ledger_id}" + +#: venv/lib/python3.11/site-packages/django_ledger/models/ledger.py:193 +msgid "User Defined Ledger ID" +msgstr "معرف دفتر الأستاذ المعرّف بواسطة المستخدم" + +#: venv/lib/python3.11/site-packages/django_ledger/models/ledger.py:194 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:9 +msgid "Ledger Name" +msgstr "اسم دفتر الأستاذ" + +#: venv/lib/python3.11/site-packages/django_ledger/models/ledger.py:198 +msgid "Ledger Entity" +msgstr "كيان دفتر الأستاذ" + +#: venv/lib/python3.11/site-packages/django_ledger/models/ledger.py:199 +msgid "Posted Ledger" +msgstr "دفتر الأستاذ المنشور" + +#: venv/lib/python3.11/site-packages/django_ledger/models/ledger.py:200 +msgid "Locked Ledger" +msgstr "دفتر الأستاذ المقفل" + +#: venv/lib/python3.11/site-packages/django_ledger/models/ledger.py:201 +msgid "Hidden Ledger" +msgstr "دفتر الأستاذ المخفي" + +#: venv/lib/python3.11/site-packages/django_ledger/models/ledger.py:213 +msgid "Ledgers" +msgstr "دفاتر الأستاذ" + +#: venv/lib/python3.11/site-packages/django_ledger/models/ledger.py:268 +#, python-brace-format +msgid "earliest_timestamp not present in LedgerModel {self.uuid}" +msgstr "أول طابع زمني غير موجود في نموذج دفتر الأستاذ {self.uuid}" + +#: venv/lib/python3.11/site-packages/django_ledger/models/ledger.py:455 +#, python-brace-format +msgid "Ledger {self.name} cannot be posted. UUID: {self.uuid}" +msgstr "لا يمكن نشر دفتر الأستاذ {self.name}. UUID: {self.uuid}" + +#: venv/lib/python3.11/site-packages/django_ledger/models/ledger.py:491 +#, python-brace-format +msgid "Ledger {self.uuid} cannot be unposted." +msgstr "لا يمكن إلغاء نشر دفتر الأستاذ {self.uuid}" + +#: venv/lib/python3.11/site-packages/django_ledger/models/ledger.py:520 +#, python-brace-format +msgid "Ledger {self.name} cannot be locked. UUID: {self.uuid}" +msgstr "لا يمكن قفل دفتر الأستاذ {self.name}. UUID: {self.uuid}" + +#: venv/lib/python3.11/site-packages/django_ledger/models/ledger.py:554 +#, python-brace-format +msgid "Ledger {self.name} cannot be un-locked. UUID: {self.uuid}" +msgstr "لا يمكن إلغاء قفل دفتر الأستاذ {self.name}. UUID: {self.uuid}" + +#: venv/lib/python3.11/site-packages/django_ledger/models/ledger.py:573 +#, python-brace-format +msgid "Ledger {self.name} cannot be hidden. UUID: {self.uuid}" +msgstr "لا يمكن إخفاء دفتر الأستاذ {self.name}. UUID: {self.uuid}" + +#: venv/lib/python3.11/site-packages/django_ledger/models/ledger.py:591 +#, python-brace-format +msgid "Ledger {self.name} cannot be un-hidden. UUID: {self.uuid}" +msgstr "لا يمكن إلغاء إخفاء دفتر الأستاذ {self.name}. UUID: {self.uuid}" + +#: venv/lib/python3.11/site-packages/django_ledger/models/ledger.py:608 +msgid "" +"LedgerModel {self.name} cannot be deleted because posted is {self." +"is_posted()} " +msgstr "" +"لا يمكن حذف نموذج دفتر الأستاذ {self.name} لأن الحالة المنشورة هي {self." +"is_posted()}" + +#: venv/lib/python3.11/site-packages/django_ledger/models/ledger.py:620 +#, python-brace-format +msgid "" +"Journal Entries with date {earliest_date} cannot be deleted because of " +"latest closing " +msgstr "لا يمكن حذف إدخالات الدفتر بتاريخ {earliest_date} بسبب الإغلاق الأخير" + +#: venv/lib/python3.11/site-packages/django_ledger/models/ledger.py:721 +msgid "" +"Are you sure you want to delete Ledger {self.name} from Entity {self." +"get_entity_name()}?" +msgstr "" +"هل أنت متأكد أنك تريد حذف دفتر الأستاذ {self.name} من الكيان {self." +"get_entity_name()}؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:48 +msgid "Slug field must contain at least 10 characters." +msgstr "يجب أن يحتوي حقل المعرف الفريد على 10 أحرف على الأقل." + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:105 +msgid "Address Line 1" +msgstr "عنوان الخط 1" + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:106 +msgid "Address Line 2" +msgstr "عنوان الخط 2" + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:108 +msgid "State/Province" +msgstr "الولاية/المقاطعة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:112 +msgid "Website" +msgstr "الموقع الإلكتروني" + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:177 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:67 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:84 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:105 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_table.html:13 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:58 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:75 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:96 +msgid "Amount Due" +msgstr "المبلغ المستحق" + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:182 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:120 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:133 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:111 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:121 +msgid "Amount Paid" +msgstr "المبلغ المدفوع" + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:188 +msgid "Amount Receivable" +msgstr "المبلغ المستحق الاستلام" + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:193 +msgid "Amount Unearned" +msgstr "المبلغ غير المكتسب" + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:198 +msgid "Amount Earned" +msgstr "المبلغ المكتسب" + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:201 +msgid "Accrue" +msgstr "يتراكم" + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:205 +msgid "Progress Amount" +msgstr "مبلغ التقدم" + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:974 +msgid "Terms" +msgstr "الشروط" + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:975 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:72 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:89 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:110 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:63 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:80 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:101 +msgid "Due Date" +msgstr "تاريخ الاستحقاق" + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:1083 +msgid "Markdown Notes" +msgstr "ملاحظات ماركداون" + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:1126 +msgid "Checking" +msgstr "حساب جاري" + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:1127 +msgid "Savings" +msgstr "حساب توفير" + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:1133 +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:1137 +msgid "Only digits allowed" +msgstr "الأرقام فقط مسموح بها" + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:1140 +msgid "SWIFT Number" +msgstr "رقم SWIFT" + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:1154 +msgid "Tax Registration Number" +msgstr "رقم التسجيل الضريبي" + +#: venv/lib/python3.11/site-packages/django_ledger/models/mixins.py:1174 +msgid "Sales Tax Rate" +msgstr "معدل ضريبة المبيعات" + +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:195 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:53 +msgid "Fulfilled" +msgstr "تم التنفيذ" + +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:201 +msgid "Purchase Order Number" +msgstr "رقم أمر الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:203 +msgid "Purchase Order Title" +msgstr "عنوان أمر الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:207 +msgid "PO Title must be greater than 5" +msgstr "يجب أن يكون عنوان أمر الشراء أكثر من 5 أحرف" + +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:210 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:27 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:33 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:39 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:51 +msgid "Purchase Order Amount" +msgstr "مبلغ أمر الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:214 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:41 +msgid "Received Amount" +msgstr "المبلغ المستلم" + +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:223 +msgid "Fulfillment Date" +msgstr "تاريخ التنفيذ" + +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:229 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/po_item_formset.html:8 +msgid "Purchase Order Items" +msgstr "عناصر أمر الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:742 +#, python-format +msgid "Do you want to mark Purchase Order %s as Draft?" +msgstr "هل تريد وضع أمر الشراء %s كمسودة؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:815 +#, python-format +msgid "Do you want to mark Purchase Order %s as In Review?" +msgstr "هل تريد وضع أمر الشراء %s قيد المراجعة؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:882 +#, python-format +msgid "Do you want to mark Purchase Order %s as Approved?" +msgstr "هل تريد وضع أمر الشراء %s على أنه معتمد؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:948 +#, python-format +msgid "Do you want to mark Purchase Order %s as Canceled?" +msgstr "هل تريد إلغاء أمر الشراء %s؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:1045 +#, python-format +msgid "Do you want to mark Purchase Order %s as Fulfilled?" +msgstr "هل تريد وضع أمر الشراء %s على أنه تم التنفيذ؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/purchase_order.py:1123 +#, python-format +msgid "Do you want to mark Purchase Order %s as Void?" +msgstr "هل تريد إبطال أمر الشراء %s؟" + +#: venv/lib/python3.11/site-packages/django_ledger/models/transactions.py:478 +msgid "Tx Type" +msgstr "نوع المعاملة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/transactions.py:482 +msgid "Journal Entry to be associated with this transaction." +msgstr "إدخال دفتر اليومية المرتبط بهذه المعاملة." + +#: venv/lib/python3.11/site-packages/django_ledger/models/transactions.py:486 +msgid "Account from Chart of Accounts to be associated with this transaction." +msgstr "الحساب من مخطط الحسابات المرتبط بهذه المعاملة." + +#: venv/lib/python3.11/site-packages/django_ledger/models/transactions.py:491 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/po_item_formset.html:22 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/tags/po_item_table.html:11 +msgid "Amount" +msgstr "المبلغ" + +#: venv/lib/python3.11/site-packages/django_ledger/models/transactions.py:492 +msgid "Account of the transaction." +msgstr "حساب المعاملة." + +#: venv/lib/python3.11/site-packages/django_ledger/models/transactions.py:497 +msgid "Tx Description" +msgstr "وصف المعاملة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/transactions.py:498 +msgid "A description to be included with this individual transaction" +msgstr "وصف يتم تضمينه مع هذه المعاملة الفردية" + +#: venv/lib/python3.11/site-packages/django_ledger/models/transactions.py:505 +msgid "Transaction" +msgstr "المعاملة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/transactions.py:506 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_table.html:91 +msgid "Transactions" +msgstr "المعاملات" + +#: venv/lib/python3.11/site-packages/django_ledger/models/transactions.py:525 +msgid "Cannot transact on root accounts" +msgstr "لا يمكن إجراء المعاملات على الحسابات الجذرية" + +#: venv/lib/python3.11/site-packages/django_ledger/models/transactions.py:563 +#, python-brace-format +msgid "" +"Cannot create or modify transactions on account model {instance.account}." +msgstr "لا يمكن إنشاء أو تعديل المعاملات على نموذج الحساب {instance.account}." + +#: venv/lib/python3.11/site-packages/django_ledger/models/transactions.py:568 +msgid "Cannot modify transactions on locked journal entries." +msgstr "لا يمكن تعديل المعاملات على إدخالات دفتر اليومية المقفلة." + +#: venv/lib/python3.11/site-packages/django_ledger/models/unit.py:129 +msgid "Unit Entity" +msgstr "كيان الوحدة" + +#: venv/lib/python3.11/site-packages/django_ledger/models/unit.py:132 +msgid "Is Hidden" +msgstr "مخفي" + +#: venv/lib/python3.11/site-packages/django_ledger/models/vendor.py:181 +msgid "Vendor Entity" +msgstr "كيان المورد" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/account/account_create.html:10 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/account/account_list.html:19 +#: venv/lib/python3.11/site-packages/django_ledger/views/account.py:90 +msgid "Create Account" +msgstr "إنشاء حساب" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/account/account_detail.html:14 +msgid "Account Transaction List Report" +msgstr "تقرير قائمة معاملات الحساب" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/account/account_list.html:10 +msgid "Accounts List" +msgstr "قائمة الحسابات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/account/account_list.html:21 +msgid "Back to CoA List" +msgstr "العودة إلى قائمة مخطط الحسابات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/account/tags/accounts_table.html:24 +msgid "CoA" +msgstr "مخطط الحسابات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/account/tags/accounts_table.html:25 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/balance_sheet_statement.html:25 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html:13 +msgid "Balance Type" +msgstr "نوع الرصيد" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/account/tags/accounts_table.html:28 +msgid "CoA Role Default" +msgstr "الدور الافتراضي لمخطط الحسابات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/account/tags/accounts_table.html:99 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/balance_sheet_statement.html:64 +msgid "Detail" +msgstr "التفاصيل" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/account/tags/accounts_table.html:104 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bank_account/tags/bank_accounts_table.html:52 +msgid "Activate" +msgstr "تفعيل" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/account/tags/accounts_table.html:108 +msgid "Deactivate" +msgstr "إلغاء التفعيل" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/account/tags/accounts_table.html:112 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/includes/card_journal_entry.html:43 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_detail_txs.html:64 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_detail_txs.html:70 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_detail_txs.html:76 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_detail_txs.html:82 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_table.html:76 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:104 +msgid "Lock" +msgstr "قفل" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/account/tags/accounts_table.html:116 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_detail.html:29 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_table.html:80 +msgid "Unlock" +msgstr "إلغاء القفل" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/auth/login.html:28 +#: venv/lib/python3.11/site-packages/django_ledger/views/auth.py:20 +msgid "Login" +msgstr "تسجيل الدخول" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bank_account/bank_account_create.html:12 +#: venv/lib/python3.11/site-packages/django_ledger/views/bank_account.py:44 +msgid "Create Bank Account" +msgstr "إنشاء حساب بنكي" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bank_account/bank_account_create.html:22 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_create.html:33 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/estimate_create.html:22 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/expense/expense_create.html:23 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/inventory/inventory_item_create.html:23 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_create.html:38 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/product/product_create.html:24 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_create.html:27 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/service/service_create.html:24 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/unit/unit_create.html:22 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/uom/uom_create.html:24 +msgid "Create" +msgstr "إنشاء" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bank_account/bank_account_list.html:14 +msgid "New Bank Account" +msgstr "حساب بنكي جديد" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bank_account/bank_account_update.html:14 +msgid "Routing" +msgstr "التوجيه" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bank_account/bank_account_update.html:15 +msgid "ABA" +msgstr "ABA" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bank_account/tags/bank_accounts_table.html:55 +msgid "Inactivate" +msgstr "إلغاء التنشيط" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_create.html:11 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/po_item_formset.html:27 +#: venv/lib/python3.11/site-packages/django_ledger/views/bill.py:52 +msgid "Create Bill" +msgstr "إنشاء فاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_create.html:19 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_create.html:20 +msgid "Bill for" +msgstr "فاتورة لـ" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_delete.html:27 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_void.html:24 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/closing_entry_delete.html:18 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/customer/customer_create.html:25 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/customer/customer_update.html:25 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/data_import/import_job_delete.html:17 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/entity/entity_delete.html:22 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/balance_sheet.html:47 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/balance_sheet.html:50 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/cash_flow.html:51 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/cash_flow.html:54 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_delete.html:23 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_delete.html:18 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/ledger_delete.html:18 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/product/product_delete.html:19 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_delete.html:23 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/service/service_delete.html:19 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/uom/uom_delete.html:27 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/vendor/vendor_create.html:24 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/vendor/vendor_update.html:24 +msgid "Go Back" +msgstr "العودة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:19 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_update.html:24 +#: venv/lib/python3.11/site-packages/django_ledger/views/bill.py:214 +msgid "Bill List" +msgstr "قائمة الفواتير" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:63 +msgid "Accrued" +msgstr "متراكم" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:71 +msgid "You Still Owe" +msgstr "ما زلت مديناً" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:94 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_item_formset.html:18 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/estimate_item_table.html:8 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/tags/ce_item_formset.html:18 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/expense/tags/expense_item_table.html:9 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/inventory/tags/inventory_item_table.html:9 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_detail.html:94 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/tags/invoice_item_formset.html:18 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/product/tags/product_table.html:10 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/po_item_formset.html:18 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_update.html:50 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/tags/po_item_table.html:8 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/service/tags/services_table.html:10 +msgid "Item" +msgstr "العنصر" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:96 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_item_formset.html:22 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/estimate_item_table.html:11 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/tags/ce_item_formset.html:20 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_detail.html:95 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/tags/invoice_item_formset.html:20 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/po_item_formset.html:19 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/tags/po_item_table.html:9 +msgid "Unit Cost" +msgstr "تكلفة الوحدة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:99 +msgid "PO" +msgstr "أمر الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:115 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_item_formset.html:45 +msgid "View PO" +msgstr "عرض أمر الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:144 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_update.html:66 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/balance_sheet.html:30 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_detail.html:131 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_update.html:65 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:48 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/unit/unit_detail.html:25 +#: venv/lib/python3.11/site-packages/django_ledger/views/financial_statement.py:59 +msgid "Balance Sheet" +msgstr "الميزانية العمومية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:146 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_update.html:71 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/income_statement.html:31 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_detail.html:133 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_update.html:70 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:51 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/unit/unit_detail.html:27 +msgid "Income Statement" +msgstr "بيان الدخل" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:148 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/cash_flow.html:31 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_detail.html:135 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:54 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/unit/unit_detail.html:29 +msgid "Cash Flow Statement" +msgstr "بيان التدفقات النقدية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:155 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_detail.html:141 +msgid "Balance Sheet PDF" +msgstr "الميزانية العمومية PDF" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:158 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_detail.html:144 +msgid "Income Statement PDF" +msgstr "بيان الدخل PDF" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:161 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_detail.html:147 +msgid "Cash Flow Statement PDF" +msgstr "بيان التدفقات النقدية PDF" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_detail.html:171 +msgid "Bill Transactions" +msgstr "معاملات الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_list.html:18 +msgid "Latest Bills" +msgstr "أحدث الفواتير" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_list.html:95 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/closing_entry_list.html:73 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/estimate_list.html:95 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_list.html:94 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/ledger_list.html:98 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_list.html:96 +msgid "Go to month:" +msgstr "الذهاب إلى الشهر:" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_list.html:98 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_list.html:110 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/closing_entry_list.html:76 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/closing_entry_list.html:88 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/estimate_list.html:98 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/estimate_list.html:110 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_list.html:94 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_list.html:106 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_list.html:97 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_list.html:109 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/ledger_list.html:101 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/ledger_list.html:113 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_list.html:99 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_list.html:111 +msgid "All" +msgstr "الكل" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_list.html:107 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/closing_entry_list.html:85 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/estimate_list.html:107 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_list.html:106 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/ledger_list.html:110 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_list.html:108 +msgid "Go to year:" +msgstr "الذهاب إلى السنة:" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_update.html:19 +msgid "Save Bill" +msgstr "حفظ الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_update.html:22 +msgid "Back to Bill Detail" +msgstr "العودة إلى تفاصيل الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_update.html:26 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_update.html:26 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_detail.html:20 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_update.html:29 +msgid "Go To Dashboard" +msgstr "الذهاب إلى لوحة القيادة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_update.html:38 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_update.html:44 +msgid "Bill State" +msgstr "حالة الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_update.html:53 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_update.html:52 +msgid "Ledger State" +msgstr "حالة دفتر الأستاذ" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_update.html:76 +msgid "Bill Ledger" +msgstr "دفتر الأستاذ للفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_update.html:80 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_update.html:79 +msgid "Ledger Journal Entries" +msgstr "إدخالات دفتر اليومية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_update.html:83 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_update.html:82 +msgid "Lock Ledger" +msgstr "قفل دفتر الأستاذ" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_update.html:85 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_update.html:84 +msgid "Unlock Ledger" +msgstr "إلغاء قفل دفتر الأستاذ" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_update.html:87 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_update.html:86 +msgid "Force Migrate" +msgstr "الهجرة القسرية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/bill_update.html:98 +msgid "Bill Configuration" +msgstr "تكوين الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:16 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:14 +msgid "Due in" +msgstr "مستحق في" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:44 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/entity/entitiy_list.html:20 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:38 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_table.html:85 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:22 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/unit/unit_list.html:32 +msgid "View" +msgstr "عرض" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:49 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:187 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:43 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:170 +msgid "Mark as Paid" +msgstr "وضع علامة مدفوعة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:53 +msgid "Mark as Canceled" +msgstr "وضع علامة ملغاة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:66 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:83 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:104 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:132 +msgid "This bill is" +msgstr "هذه الفاتورة هي" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:75 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:92 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:113 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:66 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:83 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:104 +msgid "Is Accrued" +msgstr "مستحقة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:100 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:129 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:141 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:91 +msgid "External Ref" +msgstr "المرجع الخارجي" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:122 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:113 +msgid "Progressed" +msgstr "متقدم" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:160 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/card_estimate.html:62 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:143 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:67 +msgid "Mark as Draft" +msgstr "وضع كمسودة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:169 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/card_estimate.html:71 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:152 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:76 +msgid "Mark as Review" +msgstr "وضع قيد المراجعة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:178 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:85 +msgid "Mark as Approved" +msgstr "وضع علامة معتمد" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/includes/card_bill.html:217 +msgid "New Bill" +msgstr "فاتورة جديدة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_item_formset.html:19 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/tags/po_item_table.html:10 +msgid "PO Qty" +msgstr "كمية أمر الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_item_formset.html:20 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_detail.html:31 +msgid "PO Amount" +msgstr "مبلغ أمر الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_item_formset.html:23 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/tags/closing_entry_txs_table.html:9 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/balance_sheet.html:32 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/cash_flow.html:33 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/income_statement.html:28 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/balance_sheet_statement.html:23 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html:11 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_table.html:14 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_txs_table.html:11 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/po_item_formset.html:21 +msgid "Unit" +msgstr "الوحدة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_item_formset.html:79 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/tags/ce_item_formset.html:74 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/tags/invoice_item_formset.html:69 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/po_item_formset.html:101 +msgid "New Item" +msgstr "عنصر جديد" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_table.html:9 +msgid "Number" +msgstr "الرقم" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_table.html:11 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/estimate_table.html:13 +msgid "Status Date" +msgstr "تاريخ الحالة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_table.html:14 +msgid "Payments" +msgstr "المدفوعات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/bills/tags/bill_table.html:15 +msgid "Past Due" +msgstr "مستحق" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/chart_of_accounts/includes/coa_card.html:12 +msgid "DEFAULT" +msgstr "الافتراضي" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/chart_of_accounts/includes/coa_card.html:16 +msgid "Entity Default" +msgstr "الكيان الافتراضي" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/chart_of_accounts/includes/coa_card.html:31 +msgid "Total Accounts" +msgstr "إجمالي الحسابات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/chart_of_accounts/includes/coa_card.html:32 +msgid "Active Accounts" +msgstr "الحسابات النشطة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/chart_of_accounts/includes/coa_card.html:35 +msgid "Locked Accounts" +msgstr "الحسابات المقفلة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/chart_of_accounts/includes/coa_card.html:41 +msgid "ago" +msgstr "منذ" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/chart_of_accounts/includes/coa_card.html:52 +msgid "Add Account" +msgstr "إضافة حساب" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/chart_of_accounts/includes/coa_card.html:58 +msgid "Mark as Default" +msgstr "وضع كافتراضي" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/chart_of_accounts/includes/coa_card.html:65 +msgid "Mark as Inactive" +msgstr "وضع كغير نشط" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/chart_of_accounts/includes/coa_card.html:70 +msgid "Mark as Active" +msgstr "وضع كنشط" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/closing_entry_create.html:9 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/closing_entry_create.html:20 +#: venv/lib/python3.11/site-packages/django_ledger/views/closing_entry.py:76 +msgid "Create Closing Entry" +msgstr "إنشاء إدخال إغلاق" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/closing_entry_create.html:24 +msgid "Back To Closing Entries" +msgstr "العودة إلى إدخالات الإغلاق" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/closing_entry_detail.html:15 +msgid "Back to Closing Entry List" +msgstr "العودة إلى قائمة إدخالات الإغلاق" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/closing_entry_detail.html:29 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/closing_entry_update.html:29 +msgid "Closing Entry Transactions" +msgstr "معاملات إدخال الإغلاق" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/closing_entry_list.html:16 +msgid "Closing Entries" +msgstr "إدخالات الإغلاق" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/closing_entry_list.html:18 +msgid "Latest Closing Entries" +msgstr "أحدث إدخالات الإغلاق" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/includes/card_closing_entry.html:10 +msgid "Closing Entry" +msgstr "إدخال الإغلاق" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/includes/card_closing_entry.html:14 +msgid "Created:" +msgstr "تم الإنشاء:" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/includes/card_closing_entry.html:15 +msgid "Transaction Count:" +msgstr "عدد المعاملات:" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/includes/card_closing_entry.html:18 +msgid "Go To" +msgstr "اذهب إلى" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/includes/card_closing_entry.html:28 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/includes/card_journal_entry.html:51 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_table.html:67 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:112 +msgid "Post" +msgstr "نشر" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/includes/card_closing_entry.html:37 +msgid "Update Transactions" +msgstr "تحديث المعاملات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/includes/card_closing_entry.html:46 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/includes/card_journal_entry.html:55 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_table.html:71 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:116 +msgid "UnPost" +msgstr "إلغاء النشر" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/includes/card_closing_entry.html:53 +msgid "Update Notes" +msgstr "تحديث الملاحظات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/tags/closing_entry_table.html:9 +msgid "Closing Entry Date" +msgstr "تاريخ إدخال الإغلاق" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/tags/closing_entry_table.html:11 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_table.html:15 +msgid "Txs Count" +msgstr "عدد المعاملات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/tags/closing_entry_txs_table.html:11 +msgid "TX Type" +msgstr "نوع المعاملة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/closing_entry/tags/closing_entry_txs_table.html:12 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html:14 +msgid "Balance" +msgstr "الرصيد" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/components/date_picker.html:5 +msgid "Select Date" +msgstr "اختر التاريخ" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/components/feedback_button.html:7 +msgid "Feedback" +msgstr "ملاحظات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/components/feedback_button.html:10 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/components/feedback_button.html:24 +msgid "Report a Bug" +msgstr "الإبلاغ عن خطأ" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/components/feedback_button.html:12 +msgid "Request a Feature" +msgstr "طلب ميزة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/components/feedback_button.html:56 +msgid "Request a New Feature" +msgstr "طلب ميزة جديدة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/components/modals.html:21 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/components/modals.html:24 +msgid "Mark As Paid" +msgstr "وضع كمدفوع" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/components/modals_v2.html:11 +msgid "Confirm" +msgstr "تأكيد" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/components/period_navigator.html:26 +msgid "Month" +msgstr "الشهر" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/components/period_navigator.html:37 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/widget_ic.html:17 +msgid "thru" +msgstr "عبر" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/components/period_navigator.html:41 +msgid "Go To Current Month" +msgstr "الذهاب إلى الشهر الحالي" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/customer/customer_create.html:11 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/customer/customer_create.html:23 +msgid "Create Customer" +msgstr "إنشاء عميل" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/customer/customer_list.html:15 +msgid "New Customer" +msgstr "عميل جديد" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/customer/customer_update.html:11 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/customer/customer_update.html:23 +msgid "Update Customer" +msgstr "تحديث العميل" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/customer/includes/card_customer.html:9 +msgid "Customer Information" +msgstr "معلومات العميل" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/customer/tags/customer_table.html:12 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/vendor/tags/vendor_table.html:13 +msgid "Hidden" +msgstr "مخفي" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/data_import/data_import_job_list.html:10 +msgid "Import OFX File" +msgstr "استيراد ملف OFX" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/data_import/data_import_job_txs.html:10 +msgid "Pending Transactions" +msgstr "المعاملات المعلقة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/data_import/data_import_job_txs.html:14 +msgid "Imported Transactions" +msgstr "المعاملات المستوردة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/data_import/import_job_create.html:31 +msgid "No file uploaded" +msgstr "لم يتم رفع أي ملف" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/data_import/import_job_create.html:40 +msgid "Upload" +msgstr "رفع" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/data_import/import_job_update.html:18 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/data_import/tags/data_import_job_txs_table.html:83 +msgid "Import Job List" +msgstr "قائمة مهام الاستيراد" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/data_import/tags/data_import_job_list_table.html:44 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/entity/includes/card_entity.html:30 +msgid "Manage" +msgstr "إدارة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/data_import/tags/data_import_job_txs_imported.html:25 +msgid "View JE" +msgstr "عرض إدخال الدفتر" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/data_import/tags/data_import_job_txs_table.html:54 +msgid "Transaction Activity" +msgstr "نشاط المعاملة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/entity/entitiy_list.html:13 +#: venv/lib/python3.11/site-packages/django_ledger/views/entity.py:47 +msgid "My Entities" +msgstr "كياناتي" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/entity/entitiy_list.html:27 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/entity/home.html:20 +msgid "New Entity" +msgstr "كيان جديد" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/entity/entity_create.html:19 +msgid "New Entity Information" +msgstr "معلومات الكيان الجديد" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/entity/entity_dashboard.html:83 +msgid "Payables" +msgstr "الحسابات الدائنة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/entity/includes/card_entity.html:16 +msgid "Accrual Method" +msgstr "طريقة الاستحقاق" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/entity/includes/card_entity.html:20 +msgid "Cash Method" +msgstr "طريقة النقد" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/entity/includes/card_entity.html:26 +msgid "Last Closing Date" +msgstr "تاريخ الإغلاق الأخير" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/entity/includes/card_entity.html:29 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/unit/unit_detail.html:23 +#: venv/lib/python3.11/site-packages/django_ledger/views/entity.py:210 +msgid "Dashboard" +msgstr "لوحة القيادة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/estimate_detail.html:17 +msgid "Revenue Estimate" +msgstr "تقدير الإيرادات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/estimate_detail.html:24 +msgid "Cost Estimate" +msgstr "تقدير التكلفة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/estimate_detail.html:31 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/card_estimate.html:16 +msgid "Profit Estimate" +msgstr "تقدير الربح" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/estimate_detail.html:38 +msgid "Gross Margin Estimate" +msgstr "تقدير الهامش الإجمالي" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/estimate_detail.html:50 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/tags/ce_item_formset.html:8 +msgid "Estimate Items" +msgstr "عناصر التقدير" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/estimate_detail.html:69 +msgid "Purchase Orders" +msgstr "أوامر الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/estimate_detail.html:75 +msgid "Initiate PO" +msgstr "بدء أمر الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/estimate_detail.html:90 +msgid "Initiate Bill" +msgstr "بدء الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/estimate_detail.html:105 +msgid "Initiate Invoice" +msgstr "بدء الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/estimate_list.html:18 +msgid "Latest Estimates" +msgstr "أحدث التقديرات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/estimate_update.html:19 +msgid "Save Estimate" +msgstr "حفظ التقدير" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/card_estimate.html:14 +msgid "Estimated Revenue" +msgstr "الإيرادات المقدرة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/card_estimate.html:19 +msgid "Cost Breakdown" +msgstr "تفصيل التكلفة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/card_estimate.html:21 +msgid "Labor Cost" +msgstr "تكلفة العمالة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/card_estimate.html:24 +msgid "Materials Cost" +msgstr "تكلفة المواد" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/card_estimate.html:27 +msgid "Equipment Cost" +msgstr "تكلفة المعدات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/card_estimate.html:30 +msgid "Other Cost" +msgstr "تكلفة أخرى" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/card_estimate.html:32 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/tags/ce_item_formset.html:23 +msgid "Total Cost" +msgstr "إجمالي التكلفة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/card_estimate.html:35 +msgid "Estimated Gross Margin" +msgstr "الهامش الإجمالي المقدر" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/card_estimate.html:40 +msgid "Cost Progress" +msgstr "تقدم التكلفة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/card_estimate.html:44 +msgid "Invoice Progress" +msgstr "تقدم الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/card_estimate.html:48 +msgid "Received Progress" +msgstr "تقدم الاستلام" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/card_estimate.html:80 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:161 +msgid "Approve" +msgstr "الموافقة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/estimate_item_table.html:12 +msgid "Unit Sale Price" +msgstr "سعر البيع للوحدة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/estimate_item_table.html:13 +msgid "Total Cost Estimate" +msgstr "التكلفة الإجمالية المقدرة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/estimate_item_table.html:14 +msgid "Total Revenue Estimate" +msgstr "الإيرادات الإجمالية المقدرة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/estimate_table.html:11 +msgid "Title" +msgstr "العنوان" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/estimate_table.html:14 +msgid "Sales Price" +msgstr "سعر البيع" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/includes/estimate_table.html:15 +#, python-format +msgid "GM%%" +msgstr "الهامش الإجمالي %%" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/tags/ce_item_formset.html:21 +msgid "Unit Sales Price" +msgstr "سعر البيع للوحدة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/tags/ce_item_formset.html:22 +msgid "Business Unit" +msgstr "وحدة الأعمال" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/estimate/tags/ce_item_formset.html:24 +msgid "Total Revenue" +msgstr "إجمالي الإيرادات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/expense/expense_list.html:12 +msgid "The Things I Pay For" +msgstr "الأشياء التي أدفع مقابلها" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/expense/tags/expense_item_table.html:8 +msgid "Expense Number" +msgstr "رقم المصروف" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/expense/tags/expense_item_table.html:10 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/inventory/tags/inventory_item_table.html:10 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/product/tags/product_table.html:11 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/service/tags/services_table.html:11 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/uom/tags/uom_table.html:8 +msgid "UOM" +msgstr "وحدة القياس" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/balance_sheet.html:53 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/cash_flow.html:57 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/income_statement.html:56 +msgid "By Unit" +msgstr "حسب الوحدة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/balance_sheet.html:56 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/cash_flow.html:60 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/income_statement.html:59 +msgid "Download PDF" +msgstr "تنزيل PDF" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/balance_sheet_statement.html:26 +msgid "Balance Through" +msgstr "الرصيد حتى" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/balance_sheet_statement.html:76 +msgid "Total:" +msgstr "المجموع:" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/balance_sheet_statement.html:107 +msgid "Retained Earnings" +msgstr "الأرباح المحتجزة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/balance_sheet_statement.html:118 +msgid "Total EQUITY" +msgstr "إجمالي حقوق الملكية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/balance_sheet_statement.html:128 +msgid "Total Equity + Liabilities" +msgstr "إجمالي حقوق الملكية + الالتزامات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/cash_flow_statement.html:10 +msgid "Cash from Operating Activities" +msgstr "النقد من الأنشطة التشغيلية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/cash_flow_statement.html:27 +msgid "Noncash Charges to Non-current Accounts" +msgstr "تكاليف غير نقدية لحسابات غير جارية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/cash_flow_statement.html:48 +msgid "Noncash Charges to Current Accounts" +msgstr "تكاليف غير نقدية لحسابات جارية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/cash_flow_statement.html:91 +msgid "Net Cash Provided by Operating Activities" +msgstr "صافي النقد المقدم من الأنشطة التشغيلية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/cash_flow_statement.html:102 +msgid "Cash from Financing Activities" +msgstr "النقد من الأنشطة التمويلية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/cash_flow_statement.html:141 +msgid "Net Cash Provided by Financing Activities" +msgstr "صافي النقد المقدم من الأنشطة التمويلية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/cash_flow_statement.html:152 +msgid "Cash from Investing Activities" +msgstr "النقد من الأنشطة الاستثمارية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/cash_flow_statement.html:178 +msgid "Net Cash Provided by Investing Activities" +msgstr "صافي النقد المقدم من الأنشطة الاستثمارية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/cash_flow_statement.html:191 +msgid "Net Cashflow" +msgstr "صافي التدفق النقدي" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/cash_flow_statement.html:199 +msgid "Net Cash From" +msgstr "صافي النقد من" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html:19 +msgid "Operating Revenues" +msgstr "الإيرادات التشغيلية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html:50 +msgid "Net Operating Revenues" +msgstr "صافي الإيرادات التشغيلية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html:57 +msgid "Less: Cost of Goods Sold" +msgstr "ناقص: تكلفة البضائع المباعة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html:88 +msgid "Net COGS" +msgstr "صافي تكلفة البضائع المباعة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html:100 +msgid "Gross Profit" +msgstr "الربح الإجمالي" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html:107 +msgid "Operating Expenses" +msgstr "المصروفات التشغيلية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html:138 +msgid "Net Operating Expenses" +msgstr "صافي المصروفات التشغيلية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html:151 +msgid "Net Operating Income (Loss)" +msgstr "صافي الدخل التشغيلي (الخسارة)" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html:158 +msgid "Other Revenues" +msgstr "إيرادات أخرى" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html:189 +msgid "Net Other Revenues" +msgstr "صافي الإيرادات الأخرى" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html:197 +msgid "Other Expenses" +msgstr "نفقات أخرى" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html:228 +msgid "Net Other Expenses" +msgstr "صافي النفقات الأخرى" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html:240 +msgid "Net Other Income (Loss)" +msgstr "صافي الدخل الآخر (الخسارة)" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html:253 +msgid "through" +msgstr "خلال" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/financial_statements/tags/income_statement.html:255 +msgid "Net Income" +msgstr "صافي الدخل" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/card_markdown.html:20 +msgid "No available notes to display..." +msgstr "لا توجد ملاحظات متاحة للعرض..." + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/nav.html:34 +msgid "Logout" +msgstr "تسجيل الخروج" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/widget_bs.html:5 +msgid "Assets" +msgstr "الأصول" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/widget_bs.html:8 +msgid "Liabilities" +msgstr "الالتزامات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/widget_bs.html:11 +msgid "Equity" +msgstr "حقوق الملكية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/widget_bs.html:14 +msgid "Cash" +msgstr "نقداً" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/widget_ic.html:5 +msgid "Revenue" +msgstr "الإيرادات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/widget_ic.html:8 +msgid "Expenses" +msgstr "المصروفات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/widget_ic.html:11 +msgid "Earnings (Loss)" +msgstr "الأرباح (الخسارة)" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/widget_ic.html:14 +msgid "Accounting Period" +msgstr "الفترة المحاسبية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/widget_ratios.html:5 +msgid "Financial Analysis" +msgstr "التحليل المالي" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/widget_ratios.html:7 +msgid "Solvency" +msgstr "الملاءة المالية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/widget_ratios.html:15 +msgid "Quick Ratio" +msgstr "النسبة السريعة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/widget_ratios.html:22 +msgid "Leverage" +msgstr "الرافعة المالية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/widget_ratios.html:23 +msgid "Debt to Equity" +msgstr "نسبة الدين إلى حقوق الملكية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/widget_ratios.html:32 +msgid "Return on Equity" +msgstr "العائد على حقوق الملكية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/widget_ratios.html:39 +msgid "Return on Assets" +msgstr "العائد على الأصول" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/widget_ratios.html:45 +msgid "Net Profit Margin" +msgstr "هامش صافي الربح" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/includes/widget_ratios.html:51 +msgid "Gross Profit Margin" +msgstr "هامش الربح الإجمالي" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/inventory/inventory_item_list.html:12 +msgid "My Inventory Items" +msgstr "عناصر المخزون الخاصة بي" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/inventory/inventory_recount.html:60 +msgid "Recount Inventory" +msgstr "إعادة تعداد المخزون" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/inventory/inventory_recount.html:62 +msgid "Update Inventory" +msgstr "تحديث المخزون" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/inventory/tags/inventory_item_table.html:8 +msgid "Inventory Number" +msgstr "رقم المخزون" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/inventory/tags/inventory_item_table.html:13 +msgid "Action" +msgstr "الإجراء" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:53 +msgid "Invoice Info" +msgstr "معلومات الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:57 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:74 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:95 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:120 +msgid "This invoice is" +msgstr "هذه الفاتورة هي" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/includes/card_invoice.html:200 +msgid "New Invoice" +msgstr "فاتورة جديدة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_create.html:11 +msgid "Invoice for Estimate" +msgstr "فاتورة لتقدير" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_create.html:16 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_create.html:17 +msgid "Back to Estimate" +msgstr "العودة إلى التقدير" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_create.html:24 +#: venv/lib/python3.11/site-packages/django_ledger/views/invoice.py:68 +msgid "Create Invoice" +msgstr "إنشاء فاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_detail.html:19 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_update.html:24 +#: venv/lib/python3.11/site-packages/django_ledger/views/invoice.py:45 +msgid "Invoice List" +msgstr "قائمة الفواتير" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_detail.html:41 +msgid "Accounts Receivable" +msgstr "الحسابات المدينة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_detail.html:157 +msgid "Invoice Transactions" +msgstr "معاملات الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_list.html:17 +msgid "Latest Invoices" +msgstr "أحدث الفواتير" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_update.html:19 +msgid "Save Invoice" +msgstr "حفظ الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_update.html:22 +msgid "Back to Invoice Detail" +msgstr "العودة إلى تفاصيل الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_update.html:37 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_update.html:43 +msgid "Invoice State" +msgstr "حالة الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_update.html:75 +msgid "Invoice Ledger" +msgstr "دفتر الأستاذ للفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/invoice/invoice_update.html:97 +msgid "Invoice Configuration" +msgstr "تكوين الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/includes/card_journal_entry.html:6 +#: venv/lib/python3.11/site-packages/django_ledger/views/journal_entry.py:163 +msgid "Journal Entry Detail" +msgstr "تفاصيل إدخال اليومية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/includes/card_journal_entry.html:15 +msgid "Date" +msgstr "التاريخ" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/includes/card_journal_entry.html:47 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:108 +msgid "UnLock" +msgstr "إلغاء القفل" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_create.html:8 +#: venv/lib/python3.11/site-packages/django_ledger/views/journal_entry.py:44 +msgid "Create Journal Entry" +msgstr "إنشاء إدخال يومية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_detail.html:14 +msgid "Journal Entry Transactions" +msgstr "معاملات إدخال اليومية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_detail.html:20 +msgid "Edit TXS" +msgstr "تعديل المعاملات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_detail.html:24 +msgid "Ledger List" +msgstr "قائمة دفاتر الأستاذ" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_detail_txs.html:59 +msgid "Done" +msgstr "تم" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_list.html:123 +msgid "Back to Ledger List" +msgstr "العودة إلى قائمة دفاتر الأستاذ" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_list.html:128 +msgid "Lock All" +msgstr "قفل الكل" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/je_list.html:133 +msgid "Post All" +msgstr "نشر الكل" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/journal_entry/tags/je_table.html:8 +msgid "Document Number" +msgstr "رقم المستند" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/ledger_list.html:127 +msgid "Show All Ledgers" +msgstr "إظهار جميع دفاتر الأستاذ" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/ledger_list.html:131 +msgid "Show Only Visible Ledgers" +msgstr "إظهار دفاتر الأستاذ المرئية فقط" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/ledger_list.html:135 +msgid "Show Current Ledgers" +msgstr "إظهار دفاتر الأستاذ الحالية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/ledger_list.html:138 +msgid "Back to Dashboard" +msgstr "العودة إلى لوحة القيادة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:11 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:41 +msgid "Reports" +msgstr "التقارير" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:12 +msgid "Earliest JE Date" +msgstr "أقدم تاريخ إدخال اليومية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:15 +msgid "Locked by Closing Entry" +msgstr "مقفل بإدخال الإغلاق" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:121 +msgid "Hide" +msgstr "إخفاء" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/ledger/tags/ledgers_table.html:125 +msgid "UnHide" +msgstr "إلغاء الإخفاء" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/product/product_list.html:12 +msgid "Products List" +msgstr "قائمة المنتجات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/product/tags/product_table.html:8 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/service/tags/services_table.html:8 +msgid "Type" +msgstr "النوع" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/product/tags/product_table.html:12 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/service/tags/services_table.html:12 +msgid "SKU" +msgstr "رمز المنتج (SKU)" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/product/tags/product_table.html:13 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/service/tags/services_table.html:13 +msgid "UPC" +msgstr "رمز المنتج العالمي (UPC)" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:19 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_update.html:42 +msgid "Contract" +msgstr "العقد" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:32 +msgid "Review Date" +msgstr "تاريخ المراجعة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:43 +msgid "Paid Amount" +msgstr "المبلغ المدفوع" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:48 +msgid "Fulfilled Date" +msgstr "تاريخ التنفيذ" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:94 +msgid "Fulfill" +msgstr "تنفيذ" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/card_po.html:135 +msgid "New PO" +msgstr "أمر شراء جديد" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/po_item_formset.html:28 +msgid "Bill Paid?" +msgstr "هل تم دفع الفاتورة؟" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/po_item_formset.html:61 +msgid "View Bill" +msgstr "عرض الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/includes/po_table.html:40 +msgid " Delete" +msgstr "حذف" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_create.html:12 +msgid "PO for Estimate" +msgstr "أمر شراء للتقدير" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_detail.html:16 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_update.html:27 +#: venv/lib/python3.11/site-packages/django_ledger/views/purchase_order.py:43 +msgid "PO List" +msgstr "قائمة أوامر الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_list.html:18 +msgid "Latest Purchase Orders" +msgstr "أحدث أوامر الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_update.html:22 +msgid "Save PO" +msgstr "حفظ أمر الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_update.html:25 +msgid "Back to PO Detail" +msgstr "العودة إلى تفاصيل أمر الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_update.html:52 +msgid "Avg Unit Price" +msgstr "متوسط سعر الوحدة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/po_update.html:53 +msgid "Total Contracted Cost" +msgstr "إجمالي التكلفة المتعاقد عليها" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/tags/po_item_table.html:13 +msgid "Billed" +msgstr "مفوترة" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/purchase_order/tags/po_item_table.html:41 +msgid "Total PO Amount" +msgstr "إجمالي مبلغ أمر الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/service/service_list.html:12 +msgid "Service List" +msgstr "قائمة الخدمات" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/unit/unit_create.html:12 +msgid "Create Entity Unit" +msgstr "إنشاء وحدة كيان" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/unit/unit_detail.html:19 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/unit/unit_list.html:28 +msgid "JE Document Prefix" +msgstr "بادئة مستند إدخال اليومية" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/unit/unit_list.html:13 +msgid "Entity Units List" +msgstr "قائمة وحدات الكيان" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/unit/unit_update.html:12 +msgid "Update Entity Unit" +msgstr "تحديث وحدة الكيان" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/uom/tags/uom_table.html:9 +msgid "Abbreviation" +msgstr "الاختصار" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/uom/uom_list.html:13 +msgid "Unit of Measures List" +msgstr "قائمة وحدات القياس" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/vendor/includes/card_vendor.html:9 +msgid "Vendor Info" +msgstr "معلومات المورد" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/vendor/tags/vendor_table.html:9 +msgid "Vendor Number" +msgstr "رقم المورد" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/vendor/vendor_create.html:10 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/vendor/vendor_create.html:22 +msgid "Create Vendor" +msgstr "إنشاء مورد" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/vendor/vendor_list.html:14 +msgid "New Vendor" +msgstr "مورد جديد" + +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/vendor/vendor_update.html:10 +#: venv/lib/python3.11/site-packages/django_ledger/templates/django_ledger/vendor/vendor_update.html:22 +msgid "Update Vendor" +msgstr "تحديث المورد" + +#: venv/lib/python3.11/site-packages/django_ledger/views/account.py:74 +msgid "Entity Accounts" +msgstr "حسابات الكيان" + +#: venv/lib/python3.11/site-packages/django_ledger/views/account.py:131 +msgid "Update Account" +msgstr "تحديث الحساب" + +#: venv/lib/python3.11/site-packages/django_ledger/views/account.py:132 +#, python-brace-format +msgid "Update Account: {self.object.code} - {self.object.name}" +msgstr "تحديث الحساب: {self.object.code} - {self.object.name}" + +#: venv/lib/python3.11/site-packages/django_ledger/views/bank_account.py:33 +msgid "Bank Accounts" +msgstr "الحسابات المصرفية" + +#: venv/lib/python3.11/site-packages/django_ledger/views/bank_account.py:76 +msgid "Update Bank Account" +msgstr "تحديث الحساب المصرفي" + +#: venv/lib/python3.11/site-packages/django_ledger/views/closing_entry.py:50 +msgid "Closing Entry List" +msgstr "قائمة إدخال الإغلاق" + +#: venv/lib/python3.11/site-packages/django_ledger/views/coa.py:36 +#: venv/lib/python3.11/site-packages/django_ledger/views/coa.py:37 +msgid "Chart of Account List" +msgstr "قائمة دليل الحسابات" + +#: venv/lib/python3.11/site-packages/django_ledger/views/coa.py:77 +#: venv/lib/python3.11/site-packages/django_ledger/views/coa.py:78 +msgid "CoA: " +msgstr "دليل الحسابات:" + +#: venv/lib/python3.11/site-packages/django_ledger/views/coa.py:114 +msgid "Successfully updated {} Default Chart of Account to " +msgstr "تم تحديث دليل الحسابات الافتراضي {} بنجاح إلى" + +#: venv/lib/python3.11/site-packages/django_ledger/views/customer.py:35 +msgid "Customer List" +msgstr "قائمة العملاء" + +#: venv/lib/python3.11/site-packages/django_ledger/views/customer.py:48 +msgid "Create New Customer" +msgstr "إنشاء عميل جديد" + +#: venv/lib/python3.11/site-packages/django_ledger/views/customer.py:77 +msgid "Customer Update" +msgstr "تحديث العميل" + +#: venv/lib/python3.11/site-packages/django_ledger/views/data_import.py:43 +msgid "Create Import Job" +msgstr "إنشاء مهمة استيراد" + +#: venv/lib/python3.11/site-packages/django_ledger/views/data_import.py:69 +msgid "Multiple statements detected. Multiple account import is not supported." +msgstr "تم اكتشاف بيانات متعددة. استيراد حسابات متعددة غير مدعوم." + +#: venv/lib/python3.11/site-packages/django_ledger/views/data_import.py:92 +msgid "" +"Account Number ***{ofx_account_number[-4:]} not recognized. Please " +"{create_link} Bank Account model before importing transactions" +msgstr "" +"رقم الحساب ***{ofx_account_number[-4:]} غير معروف. يرجى {create_link} نموذج " +"حساب بنكي قبل استيراد المعاملات" + +#: venv/lib/python3.11/site-packages/django_ledger/views/data_import.py:111 +msgid "" +"Account Number ***{ofx_account_number[-4:]} not active. Please " +"{activate_link} before importing new transactions" +msgstr "" +"رقم الحساب ***{ofx_account_number[-4:]} غير نشط. يرجى {activate_link} قبل " +"استيراد المعاملات الجديدة" + +#: venv/lib/python3.11/site-packages/django_ledger/views/data_import.py:141 +msgid "Data Import Jobs" +msgstr "مهام استيراد البيانات" + +#: venv/lib/python3.11/site-packages/django_ledger/views/data_import.py:177 +#, python-brace-format +msgid "Successfully updated Import Job {self.object.description}" +msgstr "تم تحديث مهمة الاستيراد {self.object.description} بنجاح" + +#: venv/lib/python3.11/site-packages/django_ledger/views/data_import.py:207 +msgid "Import Job Staged Txs" +msgstr "معاملات مهام الاستيراد المسرّحة" + +#: venv/lib/python3.11/site-packages/django_ledger/views/entity.py:57 +msgid "Create Entity" +msgstr "إنشاء كيان" + +#: venv/lib/python3.11/site-packages/django_ledger/views/entity.py:136 +msgid "Delete Entity " +msgstr "حذف الكيان" + +#: venv/lib/python3.11/site-packages/django_ledger/views/estimate.py:40 +msgid "Customer Estimates" +msgstr "تقديرات العملاء" + +#: venv/lib/python3.11/site-packages/django_ledger/views/estimate.py:53 +msgid "Create Customer Estimate" +msgstr "إنشاء تقدير للعميل" + +#: venv/lib/python3.11/site-packages/django_ledger/views/estimate.py:87 +msgid "Customer Estimate Detail" +msgstr "تفاصيل تقدير العميل" + +#: venv/lib/python3.11/site-packages/django_ledger/views/estimate.py:140 +msgid "Customer Estimate Update" +msgstr "تحديث تقدير العميل" + +#: venv/lib/python3.11/site-packages/django_ledger/views/financial_statement.py:113 +#: venv/lib/python3.11/site-packages/django_ledger/views/financial_statement.py:114 +msgid "Income Statement: " +msgstr "بيان الدخل:" + +#: venv/lib/python3.11/site-packages/django_ledger/views/financial_statement.py:173 +#: venv/lib/python3.11/site-packages/django_ledger/views/financial_statement.py:174 +msgid "Cash Flow Statement: " +msgstr "بيان التدفق النقدي:" + +#: venv/lib/python3.11/site-packages/django_ledger/views/home.py:27 +msgid "My Dashboard" +msgstr "لوحة القيادة الخاصة بي" + +#: venv/lib/python3.11/site-packages/django_ledger/views/inventory.py:46 +msgid "Inventory Status" +msgstr "حالة المخزون" + +#: venv/lib/python3.11/site-packages/django_ledger/views/inventory.py:47 +msgid "Ordered/In Transit/On Hand" +msgstr "تم الطلب/في النقل/متوفر" + +#: venv/lib/python3.11/site-packages/django_ledger/views/inventory.py:84 +#: venv/lib/python3.11/site-packages/django_ledger/views/inventory.py:85 +msgid "Inventory Recount" +msgstr "إعادة تعداد المخزون" + +#: venv/lib/python3.11/site-packages/django_ledger/views/invoice.py:412 +msgid "Delete Invoice " +msgstr "حذف الفاتورة" + +#: venv/lib/python3.11/site-packages/django_ledger/views/item.py:43 +msgid "Unit of Measures" +msgstr "وحدات القياس" + +#: venv/lib/python3.11/site-packages/django_ledger/views/item.py:54 +msgid "Create Unit of Measure" +msgstr "إنشاء وحدة قياس" + +#: venv/lib/python3.11/site-packages/django_ledger/views/item.py:85 +#, python-brace-format +msgid "User {self.request.user.username} cannot access entity {entity_slug}." +msgstr "" +"المستخدم {self.request.user.username} لا يمكنه الوصول إلى الكيان " +"{entity_slug}." + +#: venv/lib/python3.11/site-packages/django_ledger/views/item.py:95 +#, python-brace-format +msgid "" +"The Unit of Measure {unit_abbr} already created for Entity {entity_model." +"name}." +msgstr "وحدة القياس {unit_abbr} تم إنشاؤها بالفعل للكيان {entity_model.name}." + +#: venv/lib/python3.11/site-packages/django_ledger/views/item.py:103 +msgid "Update Unit of Measure" +msgstr "تحديث وحدة القياس" + +#: venv/lib/python3.11/site-packages/django_ledger/views/item.py:175 +msgid "Products" +msgstr "المنتجات" + +#: venv/lib/python3.11/site-packages/django_ledger/views/item.py:187 +msgid "Create New Product" +msgstr "إنشاء منتج جديد" + +#: venv/lib/python3.11/site-packages/django_ledger/views/item.py:219 +msgid "Update Product" +msgstr "تحديث المنتج" + +#: venv/lib/python3.11/site-packages/django_ledger/views/item.py:297 +msgid "Services" +msgstr "الخدمات" + +#: venv/lib/python3.11/site-packages/django_ledger/views/item.py:309 +msgid "Create New Service" +msgstr "إنشاء خدمة جديدة" + +#: venv/lib/python3.11/site-packages/django_ledger/views/item.py:340 +msgid "Update Service" +msgstr "تحديث الخدمة" + +#: venv/lib/python3.11/site-packages/django_ledger/views/item.py:416 +msgid "Expense Items" +msgstr "عناصر النفقات" + +#: venv/lib/python3.11/site-packages/django_ledger/views/item.py:428 +msgid "Create New Expense Item" +msgstr "إنشاء عنصر نفقة جديد" + +#: venv/lib/python3.11/site-packages/django_ledger/views/item.py:460 +msgid "Update Expense Item" +msgstr "تحديث عنصر النفقة" + +#: venv/lib/python3.11/site-packages/django_ledger/views/item.py:501 +msgid "Inventory Items" +msgstr "عناصر المخزون" + +#: venv/lib/python3.11/site-packages/django_ledger/views/item.py:513 +msgid "Create New Inventory Item" +msgstr "إنشاء عنصر مخزون جديد" + +#: venv/lib/python3.11/site-packages/django_ledger/views/item.py:549 +msgid "Update Inventory Item" +msgstr "تحديث عنصر المخزون" + +#: venv/lib/python3.11/site-packages/django_ledger/views/journal_entry.py:125 +msgid "Update Journal Entry" +msgstr "تحديث إدخال اليومية" + +#: venv/lib/python3.11/site-packages/django_ledger/views/journal_entry.py:194 +msgid "Edit Transactions" +msgstr "تحرير المعاملات" + +#: venv/lib/python3.11/site-packages/django_ledger/views/journal_entry.py:211 +msgid "Locked Journal Entry. Must unlock to Edit." +msgstr "إدخال اليومية مقفل. يجب إلغاء القفل لتحريره." + +#: venv/lib/python3.11/site-packages/django_ledger/views/journal_entry.py:244 +msgid "Cannot update a Locked Journal Entry." +msgstr "لا يمكن تحديث إدخال اليومية المقفل." + +#: venv/lib/python3.11/site-packages/django_ledger/views/journal_entry.py:251 +msgid "Journal Entry has not been posted." +msgstr "إدخال اليومية لم يتم نشره." + +#: venv/lib/python3.11/site-packages/django_ledger/views/ledger.py:44 +msgid "Entity Ledgers" +msgstr "دفاتر الأستاذ للكيان" + +#: venv/lib/python3.11/site-packages/django_ledger/views/ledger.py:96 +msgid "Create Ledger" +msgstr "إنشاء دفتر الأستاذ" + +#: venv/lib/python3.11/site-packages/django_ledger/views/ledger.py:145 +msgid "Update Ledger: " +msgstr "تحديث دفتر الأستاذ:" + +#: venv/lib/python3.11/site-packages/django_ledger/views/ledger.py:228 +msgid "Ledger Balance Sheet: " +msgstr "الميزانية العمومية لدفتر الأستاذ:" + +#: venv/lib/python3.11/site-packages/django_ledger/views/ledger.py:277 +msgid "Ledger Income Statement: " +msgstr "بيان الدخل لدفتر الأستاذ:" + +#: venv/lib/python3.11/site-packages/django_ledger/views/ledger.py:331 +msgid "Ledger Cash Flow Statement: " +msgstr "بيان التدفق النقدي لدفتر الأستاذ:" + +#: venv/lib/python3.11/site-packages/django_ledger/views/mixins.py:92 +msgid "Invalid quarter number" +msgstr "رقم ربع غير صالح" + +#: venv/lib/python3.11/site-packages/django_ledger/views/mixins.py:94 +#, python-brace-format +msgid "Invalid quarter format. Cannot parse {quarter} into integer." +msgstr "تنسيق ربع غير صالح. لا يمكن تحليل {quarter} إلى عدد صحيح." + +#: venv/lib/python3.11/site-packages/django_ledger/views/mixins.py:106 +msgid "No quarter specified" +msgstr "لم يتم تحديد ربع" + +#: venv/lib/python3.11/site-packages/django_ledger/views/mixins.py:277 +#: venv/lib/python3.11/site-packages/django_ledger/views/mixins.py:285 +#, python-brace-format +msgid "Must provide {query_param} date parameter." +msgstr "يجب تقديم معامل التاريخ {query_param}." + +#: venv/lib/python3.11/site-packages/django_ledger/views/mixins.py:298 +#, python-brace-format +msgid "Invalid {query_param} {param_date} provided" +msgstr "تم تقديم {query_param} {param_date} غير صالح" + +#: venv/lib/python3.11/site-packages/django_ledger/views/mixins.py:330 +msgid "ENTITY_SLUG_URL_KWARG must be provided." +msgstr "يجب توفير ENTITY_SLUG_URL_KWARG." + +#: venv/lib/python3.11/site-packages/django_ledger/views/purchase_order.py:83 +msgid "Create Purchase Order" +msgstr "إنشاء أمر شراء" + +#: venv/lib/python3.11/site-packages/django_ledger/views/purchase_order.py:408 +msgid "Delete Purchase Order " +msgstr "حذف أمر الشراء" + +#: venv/lib/python3.11/site-packages/django_ledger/views/unit.py:39 +msgid "Entity Unit List" +msgstr "قائمة وحدات الكيان" + +#: venv/lib/python3.11/site-packages/django_ledger/views/unit.py:50 +msgid "Entity Unit Detail" +msgstr "تفاصيل وحدة الكيان" + +#: venv/lib/python3.11/site-packages/django_ledger/views/unit.py:62 +msgid "Entity Unit Create" +msgstr "إنشاء وحدة كيان" + +#: venv/lib/python3.11/site-packages/django_ledger/views/unit.py:93 +msgid "Entity Unit Update" +msgstr "تحديث وحدة الكيان" + +#: venv/lib/python3.11/site-packages/django_ledger/views/vendor.py:34 +msgid "Vendor List" +msgstr "قائمة الموردين" + +#: venv/lib/python3.11/site-packages/django_ledger/views/vendor.py:44 +msgid "Create New Vendor" +msgstr "إنشاء مورد جديد" + +#: venv/lib/python3.11/site-packages/django_ledger/views/vendor.py:71 +msgid "Vendor Update" +msgstr "تحديث المورد" + +#: venv/lib/python3.11/site-packages/djmoney/contrib/django_rest_framework/fields.py:35 +msgid "{currency!r} is not a valid currency" +msgstr "" + +#: venv/lib/python3.11/site-packages/isort/main.py:158 +msgid "show this help message and exit" +msgstr "إظهار رسالة المساعدة هذه والخروج" + +#: venv/lib/python3.11/site-packages/silk/middleware.py:79 +msgid "" +"SILKY_AUTHENTICATION can not be enabled without Session, Authentication or " +"Message Django's middlewares" +msgstr "" diff --git a/manage.py b/manage.py new file mode 100755 index 00000000..c42f6d31 --- /dev/null +++ b/manage.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + + +def main(): + """Run administrative tasks.""" + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'car_inventory.settings') + try: + from django.core.management import execute_from_command_line + except ImportError as exc: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) from exc + execute_from_command_line(sys.argv) + + +if __name__ == '__main__': + main() diff --git a/new_js_adawer.js b/new_js_adawer.js new file mode 100644 index 00000000..d6cb6dd9 --- /dev/null +++ b/new_js_adawer.js @@ -0,0 +1,85405 @@ +/*! For license information please see index.js.LICENSE.txt */ +(() => { + var e, + t, + n, + r, + o = { + 52659: (e, t, n) => { + "use strict"; + n.r(t); + }, + 96892: (e, t, n) => { + "use strict"; + n.r(t); + }, + 48126: (e, t, n) => { + "use strict"; + n.r(t); + }, + 40215: (e, t, n) => { + "use strict"; + n.r(t); + }, + 88445: (e, t, n) => { + "use strict"; + n.r(t); + }, + 31793: (e, t, n) => { + "use strict"; + n.r(t); + }, + 72792: (e, t, n) => { + "use strict"; + n.r(t); + }, + 6618: (e, t, n) => { + "use strict"; + n.r(t); + }, + 86756: (e, t, n) => { + "use strict"; + n.r(t); + }, + 18333: (e, t, n) => { + "use strict"; + n.r(t); + }, + 26801: (e, t, n) => { + "use strict"; + n.r(t); + }, + 56257: (e, t, n) => { + "use strict"; + n.r(t); + }, + 37088: (e, t, n) => { + "use strict"; + n.r(t); + }, + 37713: (e, t, n) => { + "use strict"; + n.r(t); + }, + 52918: (e, t, n) => { + "use strict"; + n.r(t); + }, + 82851: (e, t, n) => { + "use strict"; + n.r(t); + }, + 28849: (e, t, n) => { + "use strict"; + n.r(t); + }, + 26705: (e, t, n) => { + "use strict"; + n.r(t); + }, + 49523: (e, t, n) => { + "use strict"; + n.r(t); + }, + 35912: (e, t, n) => { + "use strict"; + n.r(t); + }, + 26787: (e, t, n) => { + "use strict"; + n.r(t); + }, + 86404: (e, t, n) => { + "use strict"; + n.r(t); + }, + 57268: (e, t, n) => { + "use strict"; + n.r(t); + }, + 45337: (e, t, n) => { + "use strict"; + n.r(t); + }, + 31853: (e, t, n) => { + "use strict"; + n.r(t); + }, + 59240: (e, t, n) => { + "use strict"; + n.r(t); + }, + 3419: (e, t, n) => { + "use strict"; + n.r(t); + }, + 60497: (e, t, n) => { + "use strict"; + n.r(t); + }, + 32674: (e, t, n) => { + "use strict"; + n.r(t); + }, + 86072: (e, t, n) => { + "use strict"; + n.r(t); + }, + 89645: (e, t, n) => { + "use strict"; + n.r(t); + }, + 81500: (e, t, n) => { + "use strict"; + n.r(t); + }, + 19353: (e, t, n) => { + "use strict"; + n.r(t); + }, + 48327: (e, t, n) => { + "use strict"; + n.r(t); + }, + 19441: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("defs", { key: 0 }, r.createElement("style", null, "\n .fill {\n fill: #ffffff;\n }\n ")), + r.createElement("title", { key: 1 }, "S_Invite_18_N"), + r.createElement("rect", { id: "Canvas", fill: "#ff13dc", opacity: "0", width: "18", height: "18", key: 2 }), + r.createElement("g", { "data-name": "Layer 1", id: "Layer_1", key: 3 }, [ + r.createElement("path", { + className: "fill", + d: + "M9.601,15.31244a6.93207,6.93207,0,0,1-6.96039-2.34711A5.8566,5.8566,0,0,1,5.54126,11.6521c.71411-.06213.72534-.63623.72534-1.35205A6.51379,6.51379,0,0,1,4.73633,6.418C4.73633,4.06726,6.074,2.5,8,2.5s3.26373,1.56726,3.26373,3.918a6.51379,6.51379,0,0,1-1.53027,3.88208c0,.71582.01123,1.28992.72534,1.35205a5.58159,5.58159,0,0,1,2.0412.71558V11.25A1.752,1.752,0,0,1,14.25,9.5h.5a1.73331,1.73331,0,0,1,1.11768.41473,8.01014,8.01014,0,1,0-5.62586,6.26087A1.74993,1.74993,0,0,1,9.601,15.31244Z", + key: 0, + }), + r.createElement("path", { + className: "fill", + d: + "M14.25,11a.24984.24984,0,0,0-.25.25V14H11.25a.24984.24984,0,0,0-.25.25v.5a.24984.24984,0,0,0,.25.25H14v2.75a.24984.24984,0,0,0,.25.25h.5a.24984.24984,0,0,0,.25-.25V15h2.75a.24984.24984,0,0,0,.25-.25v-.5a.24984.24984,0,0,0-.25-.25H15V11.25a.24984.24984,0,0,0-.25-.25Z", + key: 1, + }), + ]), + ]); + } + (o.defaultProps = { height: "18", viewBox: "0 0 18 18", width: "18" }), (e.exports = o), (o.default = o); + }, + 51750: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("title", { key: 0 }, "Artboard 1"), + r.createElement("path", { + id: "White_Bg", + "data-name": "White Bg", + d: "M6,31.56836a2.50263,2.50263,0,0,1-2.5-2.5v-26a2.50294,2.50294,0,0,1,2.5-2.5H21.37988a1.98332,1.98332,0,0,1,1.41114.5835l5.12011,5.10156A2.01544,2.01544,0,0,1,28.5,7.66992V29.06836a2.50231,2.50231,0,0,1-2.5,2.5Z", + fill: "#fff", + key: 1, + }), + r.createElement("path", { + id: "Gray_Outline", + "data-name": "Gray Outline", + d: + "M21.38,1.06818a1.5,1.5,0,0,1,1.05879.43747l5.12,5.102A1.5,1.5,0,0,1,28,7.67014v21.398a2,2,0,0,1-2,2H6a2,2,0,0,1-2-2v-26a2,2,0,0,1,2-2H21.38m0-1H6a3.00339,3.00339,0,0,0-3,3v26a3.00339,3.00339,0,0,0,3,3H26a3.00339,3.00339,0,0,0,3-3V7.67014a2.5169,2.5169,0,0,0-.73536-1.77089L23.14469.7973A2.48407,2.48407,0,0,0,21.38.06818Z", + fill: "#b3b3b3", + key: 2, + }), + r.createElement("path", { + id: "Figure", + d: + "M22.0625,11.01562,18,11l-.00068-3.47757A.60792.60792,0,0,0,17.65625,7a1.04335,1.04335,0,0,0-.8125.125L9.02586,15.01015c-.13521.14987-.0607.53731.01945.72237A.454.454,0,0,0,9.5,15.97917H13a3.01671,3.01671,0,0,0,3.125,3.00521,3.14709,3.14709,0,0,0,2.91667-2.00521h2.96349a1.02021,1.02021,0,0,0,.97922-1.04053v-3.923A.93846.93846,0,0,0,22.0625,11.01562Zm-12,4.00521,6.95833-6.73572L17,11a.96543.96543,0,0,0-.97917.9772V13a3.08452,3.08452,0,0,0-3.01041,2.03125Zm6.02961,3.10683A2.18581,2.18581,0,0,1,13.97917,16a2.09045,2.09045,0,0,1,2.103-2.125A2.005,2.005,0,0,1,18.19889,16,1.92669,1.92669,0,0,1,16.09211,18.12766Z", + fill: "#4b4b4b", + key: 3, + }), + ]); + } + (o.defaultProps = { id: "Modifier", viewBox: "0 0 32 32" }), (e.exports = o), (o.default = o); + }, + 66635: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("title", { key: 0 }, "Artboard 1"), + r.createElement("path", { + id: "White_Bg", + "data-name": "White Bg", + d: "M6,31.56836a2.50263,2.50263,0,0,1-2.5-2.5v-26a2.50294,2.50294,0,0,1,2.5-2.5H21.37988a1.98332,1.98332,0,0,1,1.41114.5835l5.12011,5.10156A2.01544,2.01544,0,0,1,28.5,7.66992V29.06836a2.50231,2.50231,0,0,1-2.5,2.5Z", + fill: "#fff", + key: 1, + }), + r.createElement("path", { + id: "Gray_Outline", + "data-name": "Gray Outline", + d: + "M21.38,1.06818a1.5,1.5,0,0,1,1.05879.43747l5.12,5.102A1.5,1.5,0,0,1,28,7.67014v21.398a2,2,0,0,1-2,2H6a2,2,0,0,1-2-2v-26a2,2,0,0,1,2-2H21.38m0-1H6a3.00339,3.00339,0,0,0-3,3v26a3.00339,3.00339,0,0,0,3,3H26a3.00339,3.00339,0,0,0,3-3V7.67014a2.5169,2.5169,0,0,0-.73536-1.77089L23.14469.7973A2.48407,2.48407,0,0,0,21.38.06818Z", + fill: "#b3b3b3", + key: 2, + }), + r.createElement("g", { id: "Figure", key: 3 }, [ + r.createElement("path", { + d: + "M23.1,6.5h-12A1.10976,1.10976,0,0,0,10,7.6V8.7H8.9A1.10976,1.10976,0,0,0,7.8,9.8v8.7a1.10976,1.10976,0,0,0,1.1,1.1H20.8a1.10976,1.10976,0,0,0,1.1-1.1V17.4H23a1.10976,1.10976,0,0,0,1.1-1.1V7.6A1.02782,1.02782,0,0,0,23.1,6.5Zm-2.2,12H8.9V9.8H20.8v8.7ZM22,16.3V9.8a1.10976,1.10976,0,0,0-1.1-1.1H11.1V7.6h12v8.7Z", + fill: "#4b4b4b", + key: 0, + }), + r.createElement("path", { d: "M17.1,14.4l-3.9,1.9c-.2.1-.4-.1-.4-.3V12.2a.271.271,0,0,1,.4-.2l3.9,1.9A.28333.28333,0,0,1,17.1,14.4Z", fill: "#4b4b4b", key: 1 }), + ]), + ]); + } + (o.defaultProps = { id: "Layer", viewBox: "0 0 32 32" }), (e.exports = o), (o.default = o); + }, + 175: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("title", { key: 0 }, "Artboard 1"), + r.createElement("path", { + id: "White_Bg", + "data-name": "White Bg", + d: "M6,31.56836a2.50263,2.50263,0,0,1-2.5-2.5v-26a2.50294,2.50294,0,0,1,2.5-2.5H21.37988a1.98332,1.98332,0,0,1,1.41114.5835l5.12011,5.10156A2.01544,2.01544,0,0,1,28.5,7.66992V29.06836a2.50231,2.50231,0,0,1-2.5,2.5Z", + fill: "#fff", + key: 1, + }), + r.createElement("path", { + id: "Gray_Outline", + "data-name": "Gray Outline", + d: + "M21.38,1.06818a1.5,1.5,0,0,1,1.05879.43747l5.12,5.102A1.5,1.5,0,0,1,28,7.67014v21.398a2,2,0,0,1-2,2H6a2,2,0,0,1-2-2v-26a2,2,0,0,1,2-2H21.38m0-1H6a3.00339,3.00339,0,0,0-3,3v26a3.00339,3.00339,0,0,0,3,3H26a3.00339,3.00339,0,0,0,3-3V7.67014a2.5169,2.5169,0,0,0-.73536-1.77089L23.14469.7973A2.48407,2.48407,0,0,0,21.38.06818Z", + fill: "#b3b3b3", + key: 2, + }), + r.createElement("path", { + id: "Figure", + d: + "M23.9269,6.00566H8.0877a1.00628,1.00628,0,0,0-1.0646.92142v9.46474c0,1.08735.45607,1.558,1.45607,1.558H23.50425a1.37827,1.37827,0,0,0,1.4636-1.558V6.92708A1.12473,1.12473,0,0,0,23.9269,6.00566ZM16.97917,8.97917H24V11H16.97917Zm0,2.99657H24V14H16.97917ZM12.003,17.00637H8.47917a.50147.50147,0,0,1-.5-.5v-1.5062H12.003ZM12.003,14H7.97917V11.97574H12.003Zm0-3H7.97917V8.97917H12.003Zm4.01781,6.01768L13,17.00637v-2.0062h3.02083Zm0-3.01768H13V11.97574h3.02083Zm0-3H13V8.97917h3.02083Zm7.97948,5.51113a.49605.49605,0,0,1-.49606.49524H16.97917v-2.0062h7.02366Z", + fill: "#4b4b4b", + key: 3, + }), + ]); + } + (o.defaultProps = { id: "Layer", viewBox: "0 0 32 32" }), (e.exports = o), (o.default = o); + }, + 52951: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("title", { key: 0 }, "Artboard 1"), + r.createElement("path", { + id: "White_Bg", + "data-name": "White Bg", + d: "M6,31.56836a2.50263,2.50263,0,0,1-2.5-2.5v-26a2.50294,2.50294,0,0,1,2.5-2.5H21.37988a1.98332,1.98332,0,0,1,1.41114.5835l5.12011,5.10156A2.01544,2.01544,0,0,1,28.5,7.66992V29.06836a2.50231,2.50231,0,0,1-2.5,2.5Z", + fill: "#fff", + key: 1, + }), + r.createElement("path", { + id: "Gray_Outline", + "data-name": "Gray Outline", + d: + "M21.38,1.06818a1.5,1.5,0,0,1,1.05879.43747l5.12,5.102A1.5,1.5,0,0,1,28,7.67014v21.398a2,2,0,0,1-2,2H6a2,2,0,0,1-2-2v-26a2,2,0,0,1,2-2H21.38m0-1H6a3.00339,3.00339,0,0,0-3,3v26a3.00339,3.00339,0,0,0,3,3H26a3.00339,3.00339,0,0,0,3-3V7.67014a2.5169,2.5169,0,0,0-.73536-1.77089L23.14469.7973A2.48407,2.48407,0,0,0,21.38.06818Z", + fill: "#b3b3b3", + key: 2, + }), + r.createElement("g", { id: "Figure", key: 3 }, [ + r.createElement("path", { + d: + "M8.32328,7.05945A.316.316,0,0,0,8,7.36126L8,9.6801a.29749.29749,0,0,0,.30823.29534h.36365a.2912.2912,0,0,0,.29687-.29929V7.98438H11.473l-.00428,6.03124H10.3374a.35.35,0,0,0-.32747.33605l.00072.33585a.32106.32106,0,0,0,.3331.29686h3.304a.32521.32521,0,0,0,.321-.315v-.38946c0-.17023-.1571-.26427-.32733-.26427h-1.1883V8h2.54944l-.00241,1.67932a.27814.27814,0,0,0,.28385.29612h.41653a.27419.27419,0,0,0,.28109-.29392L15.983,7.35608a.29.29,0,0,0-.29806-.29663Z", + fill: "#4b4b4b", + key: 0, + }), + r.createElement("rect", { x: "16.07813", y: "12.01563", width: "7.89063", height: "0.9375", rx: "0.46875", ry: "0.46875", fill: "#4b4b4b", key: 1 }), + r.createElement("rect", { x: "16.07813", y: "14.04688", width: "7.89063", height: "0.9375", rx: "0.46875", ry: "0.46875", fill: "#4b4b4b", key: 2 }), + r.createElement("rect", { x: "10", y: "16.03125", width: "13.95312", height: "0.9375", rx: "0.46875", ry: "0.46875", fill: "#4b4b4b", key: 3 }), + ]), + ]); + } + (o.defaultProps = { id: "Modifier", viewBox: "0 0 32 32" }), (e.exports = o), (o.default = o); + }, + 22108: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("defs", { key: 0 }, r.createElement("style", null, ".cls-1{fill:#fff;}.cls-2{fill:#b3b3b3;}.cls-3{fill:#4b4b4b;}")), + r.createElement("title", { key: 1 }, "Artboard 1"), + r.createElement("path", { + id: "White_Bg", + "data-name": "White Bg", + className: "cls-1", + d: "M6,31.6a2.47572,2.47572,0,0,1-2.5-2.5V3.1A2.47572,2.47572,0,0,1,6,.6H21.4a1.97434,1.97434,0,0,1,1.4.6l5.1,5.1a1.97434,1.97434,0,0,1,.6,1.4V29.1A2.47572,2.47572,0,0,1,26,31.6Z", + key: 2, + }), + r.createElement("path", { + id: "Gray_Outline", + "data-name": "Gray Outline", + className: "cls-2", + d: + "M21.4,1.1a2.09694,2.09694,0,0,1,1.1.4l5.1,5.1A2.09694,2.09694,0,0,1,28,7.7V29.1a2.00588,2.00588,0,0,1-2,2H6a2.00588,2.00588,0,0,1-2-2V3.1a2.00588,2.00588,0,0,1,2-2H21.4m0-1H6a2.94645,2.94645,0,0,0-3,3v26a2.94645,2.94645,0,0,0,3,3H26a2.94645,2.94645,0,0,0,3-3V7.7a2.875,2.875,0,0,0-.7-1.8L23.2.8A2.567,2.567,0,0,0,21.4.1Z", + key: 3, + }), + r.createElement("path", { + id: "_512", + "data-name": "512", + className: "cls-3", + d: + "M16.07652,6.99513a6,6,0,1,0,6,6A5.99842,5.99842,0,0,0,16.07652,6.99513Zm2.78515,6.12012a.443.443,0,0,1-.10522.10986l-3.59915,2.105a.32319.32319,0,0,1-.155.04h-.3a.32118.32118,0,0,1-.31323-.31006V10.87013a.32688.32688,0,0,1,.31714-.3125h.30005a.27944.27944,0,0,1,.15042.05762l3.59985,2.08984A.30134.30134,0,0,1,18.86167,13.11525Z", + key: 4, + }), + ]); + } + (o.defaultProps = { id: "Layer", viewBox: "0 0 32 32" }), (e.exports = o), (o.default = o); + }, + 18854: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#290741;}\n\t.st1{fill:#CD87FF;}\n\t.st2{fill:#FAFAFA;}\n\t.st3{fill:none;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M8.108,26.228L7.94,26.861l-0.168,0.634c-0.003,0.018-0.009,0.03-0.018,0.038s-0.024,0.011-0.045,0.011H7.398\n\t\t\tH7.086c-0.021,0-0.033-0.003-0.039-0.013s-0.006-0.026-0.003-0.05l0.602-2.108l0.602-2.108c0.01-0.039,0.019-0.073,0.026-0.125\n\t\t\ts0.012-0.12,0.016-0.225c0-0.014,0.004-0.024,0.01-0.031s0.015-0.011,0.025-0.011h0.445h0.445c0.014,0,0.024,0.002,0.032,0.008\n\t\t\ts0.013,0.017,0.017,0.034l0.676,2.287l0.676,2.287c0.004,0.017,0.004,0.031-0.002,0.041s-0.016,0.015-0.033,0.015h-0.35H9.88\n\t\t\tc-0.017,0-0.031-0.003-0.042-0.01s-0.018-0.017-0.021-0.032l-0.175-0.637l-0.175-0.637H8.788H8.108z M9.292,25.534\n\t\t\tc-0.059-0.235-0.159-0.608-0.257-0.984s-0.194-0.756-0.247-1.005H8.784H8.781c-0.045,0.249-0.124,0.581-0.213,0.934\n\t\t\ts-0.189,0.726-0.277,1.055h0.501H9.292z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M13.772,27.488c-0.004,0.021-0.009,0.035-0.019,0.044s-0.024,0.012-0.045,0.012h-1.198h-1.198\n\t\t\tc-0.021,0-0.035-0.003-0.044-0.012s-0.012-0.023-0.012-0.044v-2.28v-2.28c0-0.021,0.004-0.035,0.012-0.044\n\t\t\ts0.023-0.013,0.044-0.013h1.156h1.156c0.021,0,0.035,0.002,0.045,0.009s0.015,0.02,0.018,0.041l0.031,0.294l0.031,0.294\n\t\t\tc0.004,0.018,0.002,0.031-0.005,0.041s-0.019,0.015-0.037,0.015h-0.844h-0.844v0.624v0.624h0.76h0.76\n\t\t\tc0.018,0,0.03,0.003,0.038,0.011s0.011,0.02,0.011,0.038v0.298v0.298c0,0.018-0.005,0.03-0.015,0.038s-0.024,0.011-0.041,0.011\n\t\t\th-0.756h-0.756v0.672v0.672h0.9h0.9c0.021,0,0.033,0.003,0.039,0.011s0.006,0.02,0.003,0.038l-0.045,0.294L13.772,27.488z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M17.237,27.425c0,0.021-0.004,0.037-0.012,0.049s-0.021,0.021-0.038,0.028\n\t\t\tc-0.091,0.039-0.21,0.065-0.344,0.082s-0.283,0.024-0.434,0.024c-0.546,0-1.061-0.179-1.439-0.568s-0.62-0.988-0.62-1.828\n\t\t\tc0-0.722,0.214-1.324,0.59-1.746s0.916-0.663,1.567-0.663c0.172,0,0.32,0.009,0.443,0.025s0.219,0.041,0.286,0.072\n\t\t\tc0.017,0.007,0.028,0.016,0.034,0.028s0.008,0.028,0.008,0.049v0.301v0.301c0,0.028-0.007,0.042-0.017,0.048\n\t\t\ts-0.022,0.004-0.033,0.001c-0.084-0.042-0.189-0.075-0.31-0.098s-0.257-0.035-0.404-0.035c-0.41,0-0.751,0.156-0.99,0.445\n\t\t\ts-0.375,0.713-0.375,1.249c0,0.662,0.187,1.091,0.452,1.354s0.606,0.361,0.914,0.361c0.14,0,0.257-0.005,0.365-0.019\n\t\t\ts0.206-0.037,0.307-0.072c0.014-0.007,0.027-0.01,0.036-0.006s0.014,0.017,0.014,0.041v0.287V27.425z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M18.839,26.228l-0.168,0.634l-0.168,0.634c-0.003,0.018-0.009,0.03-0.018,0.038s-0.023,0.011-0.044,0.011\n\t\t\th-0.312h-0.312c-0.021,0-0.033-0.003-0.04-0.013s-0.006-0.026-0.002-0.05l0.602-2.108l0.602-2.108\n\t\t\tc0.011-0.039,0.02-0.073,0.026-0.125s0.012-0.12,0.016-0.225c0-0.014,0.004-0.024,0.01-0.031s0.015-0.011,0.025-0.011H19.5h0.445\n\t\t\tc0.014,0,0.025,0.002,0.032,0.008s0.013,0.017,0.016,0.034l0.676,2.287l0.676,2.287c0.003,0.017,0.003,0.031-0.002,0.041\n\t\t\ts-0.016,0.015-0.033,0.015h-0.35h-0.35c-0.018,0-0.031-0.003-0.042-0.01s-0.017-0.017-0.021-0.032l-0.175-0.637l-0.175-0.637\n\t\t\th-0.679H18.839z M20.022,25.534c-0.06-0.235-0.159-0.608-0.258-0.984s-0.195-0.756-0.247-1.005h-0.003h-0.003\n\t\t\tc-0.045,0.249-0.124,0.581-0.214,0.934s-0.189,0.726-0.277,1.055h0.501H20.022z", + key: 3, + }), + r.createElement("path", { + className: "st2", + d: + "M21.989,22.929c0-0.014,0.002-0.026,0.008-0.035s0.017-0.014,0.034-0.014\n\t\t\tc0.137-0.007,0.305-0.013,0.491-0.016s0.391-0.005,0.601-0.005c0.588,0,1.01,0.161,1.285,0.426s0.402,0.632,0.402,1.045\n\t\t\tc0,0.54-0.194,0.925-0.509,1.175s-0.748,0.366-1.228,0.366c-0.081,0-0.135-0.002-0.183-0.003s-0.09-0.003-0.146-0.003v0.816v0.816\n\t\t\tc0,0.018-0.004,0.03-0.012,0.038s-0.021,0.011-0.038,0.011h-0.329h-0.329c-0.018,0-0.03-0.003-0.038-0.011\n\t\t\ts-0.011-0.02-0.011-0.038v-2.283V22.929z M22.746,25.184c0.049,0.003,0.093,0.005,0.145,0.006s0.114,0.001,0.198,0.001\n\t\t\tc0.249,0,0.489-0.044,0.666-0.172s0.294-0.34,0.294-0.676c0-0.27-0.082-0.472-0.235-0.608s-0.377-0.204-0.661-0.204\n\t\t\tc-0.084,0-0.167,0.002-0.238,0.004s-0.13,0.006-0.169,0.009v0.819V25.184z", + key: 4, + }), + ]) + ), + r.createElement("g", { id: "_x36_4_6_", key: 3 }, [ + r.createElement("polygon", { className: "st3", points: "28,18.5 16,18.5 4,18.5 4,12.812 4,7.125 16,7.125 28,7.125 28,12.812 \t", key: 0 }), + r.createElement("path", { + className: "st1", + d: + "M10.849,14.788l-0.768,2.897c-0.016,0.08-0.048,0.112-0.144,0.112H8.512c-0.096,0-0.112-0.032-0.096-0.145\n\t\tl2.753-9.635c0.048-0.176,0.08-0.32,0.096-0.8c0-0.064,0.032-0.096,0.08-0.096h2.033c0.064,0,0.096,0.016,0.112,0.096l3.089,10.452\n\t\tc0.016,0.08,0,0.128-0.08,0.128h-1.601c-0.08,0-0.128-0.032-0.144-0.096l-0.8-2.914H10.849z M13.555,13.203\n\t\tc-0.272-1.073-0.913-3.41-1.153-4.546h-0.016c-0.208,1.136-0.72,3.041-1.12,4.546H13.555z", + key: 1, + }), + r.createElement("path", { + className: "st1", + d: + "M18.897,14.211c0.016,1.312,0.641,2.193,2.113,2.193c0.576,0,1.072-0.08,1.584-0.304\n\t\tc0.064-0.032,0.112-0.016,0.112,0.064v1.217c0,0.096-0.032,0.144-0.096,0.192c-0.513,0.256-1.152,0.368-1.953,0.368\n\t\tc-2.561,0-3.521-1.889-3.521-4.002c0-2.289,1.185-4.162,3.266-4.162c2.112,0,2.849,1.776,2.849,3.217\n\t\tc0,0.464-0.031,0.848-0.08,1.024c-0.016,0.08-0.048,0.112-0.128,0.128c-0.191,0.032-0.768,0.064-1.616,0.064H18.897z\n\t\t M20.866,12.883c0.496,0,0.673,0,0.721-0.016c0-0.064,0.016-0.128,0.016-0.176c0-0.528-0.256-1.489-1.265-1.489\n\t\tc-0.928,0-1.328,0.816-1.425,1.681H20.866z", + key: 2, + }), + ]), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 42559: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#290741;}\n\t.st1{fill:#CD87FF;}\n\t.st2{fill:none;}\n\t.st3{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement("g", { id: "_x36_4_6_", key: 2 }, [ + r.createElement("polygon", { className: "st2", points: "28,18.5 16,18.5 4,18.5 4,12.812 4,7.125 16,7.125 28,7.125 28,12.812 \t", key: 0 }), + r.createElement("path", { + className: "st1", + d: + "M10.849,14.788l-0.768,2.897c-0.016,0.08-0.048,0.112-0.144,0.112H8.512c-0.096,0-0.112-0.032-0.096-0.145\n\t\tl2.753-9.635c0.048-0.176,0.08-0.32,0.096-0.8c0-0.064,0.032-0.096,0.08-0.096h2.033c0.064,0,0.096,0.016,0.112,0.096l3.089,10.452\n\t\tc0.016,0.08,0,0.128-0.08,0.128h-1.601c-0.08,0-0.128-0.032-0.144-0.096l-0.8-2.914H10.849z M13.555,13.203\n\t\tc-0.272-1.073-0.913-3.41-1.153-4.546h-0.016c-0.208,1.136-0.72,3.041-1.12,4.546H13.555z", + key: 1, + }), + r.createElement("path", { + className: "st1", + d: + "M18.897,14.211c0.016,1.312,0.641,2.193,2.113,2.193c0.576,0,1.072-0.08,1.584-0.304\n\t\tc0.064-0.032,0.112-0.016,0.112,0.064v1.217c0,0.096-0.032,0.144-0.096,0.192c-0.513,0.256-1.152,0.368-1.953,0.368\n\t\tc-2.561,0-3.521-1.889-3.521-4.002c0-2.289,1.185-4.162,3.266-4.162c2.112,0,2.849,1.776,2.849,3.217\n\t\tc0,0.464-0.031,0.848-0.08,1.024c-0.016,0.08-0.048,0.112-0.128,0.128c-0.191,0.032-0.768,0.064-1.616,0.064H18.897z\n\t\t M20.866,12.883c0.496,0,0.673,0,0.721-0.016c0-0.064,0.016-0.128,0.016-0.176c0-0.528-0.256-1.489-1.265-1.489\n\t\tc-0.928,0-1.328,0.816-1.425,1.681H20.866z", + key: 2, + }), + ]), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st3", + d: + "M11.594,26.228l-0.168,0.634l-0.168,0.634c-0.003,0.018-0.009,0.03-0.018,0.038s-0.024,0.011-0.045,0.011\n\t\t\th-0.312h-0.312c-0.021,0-0.033-0.003-0.039-0.013s-0.006-0.026-0.003-0.05l0.602-2.108l0.602-2.108\n\t\t\tc0.01-0.039,0.019-0.073,0.026-0.125s0.012-0.12,0.016-0.225c0-0.014,0.004-0.024,0.01-0.031s0.015-0.011,0.025-0.011h0.445h0.445\n\t\t\tc0.014,0,0.024,0.002,0.032,0.008s0.013,0.017,0.017,0.034l0.676,2.287l0.676,2.287c0.004,0.017,0.004,0.031-0.002,0.041\n\t\t\ts-0.016,0.015-0.033,0.015h-0.35h-0.35c-0.017,0-0.031-0.003-0.042-0.01s-0.018-0.017-0.021-0.032l-0.175-0.637l-0.175-0.637\n\t\t\th-0.679H11.594z M12.778,25.534c-0.06-0.235-0.159-0.608-0.258-0.984s-0.194-0.756-0.247-1.005H12.27h-0.004\n\t\t\tc-0.045,0.249-0.124,0.581-0.213,0.934s-0.189,0.726-0.277,1.055h0.501H12.778z", + key: 0, + }), + r.createElement("path", { + className: "st3", + d: + "M17.258,27.488c-0.003,0.021-0.009,0.035-0.018,0.044s-0.023,0.012-0.044,0.012h-1.198H14.8\n\t\t\tc-0.021,0-0.035-0.003-0.044-0.012s-0.012-0.023-0.012-0.044v-2.28v-2.28c0-0.021,0.004-0.035,0.012-0.044\n\t\t\ts0.023-0.013,0.044-0.013h1.156h1.156c0.021,0,0.035,0.002,0.044,0.009s0.015,0.02,0.018,0.041l0.032,0.294l0.032,0.294\n\t\t\tc0.003,0.018,0.002,0.031-0.005,0.041s-0.019,0.015-0.037,0.015h-0.844h-0.844v0.624v0.624h0.76h0.76\n\t\t\tc0.017,0,0.029,0.003,0.037,0.011s0.012,0.02,0.012,0.038v0.298v0.298c0,0.018-0.005,0.03-0.015,0.038s-0.024,0.011-0.042,0.011\n\t\t\th-0.756h-0.756v0.672v0.672h0.9h0.9c0.021,0,0.034,0.003,0.04,0.011s0.006,0.02,0.003,0.038l-0.046,0.294L17.258,27.488z", + key: 1, + }), + r.createElement("path", { + className: "st3", + d: + "M19.729,25.639c-0.021-0.003-0.033-0.009-0.041-0.018s-0.009-0.023-0.009-0.044v-0.28v-0.28\n\t\t\tc0-0.018,0.004-0.03,0.011-0.038s0.018-0.011,0.031-0.011h0.69h0.69c0.021,0,0.033,0.003,0.041,0.011s0.009,0.02,0.009,0.038\n\t\t\tv1.166v1.166c0.003,0.018,0.001,0.03-0.006,0.039s-0.02,0.017-0.037,0.024c-0.207,0.077-0.406,0.126-0.598,0.156\n\t\t\ts-0.375,0.04-0.551,0.04c-0.721,0-1.25-0.266-1.599-0.696s-0.517-1.021-0.517-1.673c0-0.756,0.229-1.364,0.627-1.782\n\t\t\ts0.963-0.648,1.636-0.648c0.186,0,0.359,0.01,0.512,0.033s0.286,0.058,0.391,0.106c0.018,0.007,0.028,0.018,0.034,0.031\n\t\t\ts0.008,0.029,0.008,0.046v0.308v0.308c0,0.018-0.005,0.03-0.015,0.036s-0.023,0.006-0.041-0.001\n\t\t\tc-0.123-0.063-0.257-0.107-0.405-0.135s-0.309-0.04-0.484-0.04c-0.487-0.003-0.854,0.156-1.1,0.451s-0.37,0.726-0.37,1.265\n\t\t\tc0,0.511,0.119,0.938,0.348,1.238s0.569,0.471,1.01,0.471c0.084,0,0.154-0.003,0.217-0.012s0.119-0.023,0.175-0.044v-0.605V25.66\n\t\t\tl-0.329-0.011L19.729,25.639z", + key: 2, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 69071: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#290741;}\n\t.st1{fill:#CD87FF;}\n\t.st2{fill:none;}\n\t.st3{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement("g", { id: "_x36_4_6_", key: 2 }, [ + r.createElement("polygon", { className: "st2", points: "28,18.5 16,18.5 4,18.5 4,12.812 4,7.125 16,7.125 28,7.125 28,12.812 \t", key: 0 }), + r.createElement("path", { + className: "st1", + d: + "M10.849,14.788l-0.768,2.897c-0.016,0.08-0.048,0.112-0.144,0.112H8.512c-0.096,0-0.112-0.032-0.096-0.145\n\t\tl2.753-9.635c0.048-0.176,0.08-0.32,0.096-0.8c0-0.064,0.032-0.096,0.08-0.096h2.033c0.064,0,0.096,0.016,0.112,0.096l3.089,10.452\n\t\tc0.016,0.08,0,0.128-0.08,0.128h-1.601c-0.08,0-0.128-0.032-0.144-0.096l-0.8-2.914H10.849z M13.555,13.203\n\t\tc-0.272-1.073-0.913-3.41-1.153-4.546h-0.016c-0.208,1.136-0.72,3.041-1.12,4.546H13.555z", + key: 1, + }), + r.createElement("path", { + className: "st1", + d: + "M18.897,14.211c0.016,1.312,0.641,2.193,2.113,2.193c0.576,0,1.072-0.08,1.584-0.304\n\t\tc0.064-0.032,0.112-0.016,0.112,0.064v1.217c0,0.096-0.032,0.144-0.096,0.192c-0.513,0.256-1.152,0.368-1.953,0.368\n\t\tc-2.561,0-3.521-1.889-3.521-4.002c0-2.289,1.185-4.162,3.266-4.162c2.112,0,2.849,1.776,2.849,3.217\n\t\tc0,0.464-0.031,0.848-0.08,1.024c-0.016,0.08-0.048,0.112-0.128,0.128c-0.191,0.032-0.768,0.064-1.616,0.064H18.897z\n\t\t M20.866,12.883c0.496,0,0.673,0,0.721-0.016c0-0.064,0.016-0.128,0.016-0.176c0-0.528-0.256-1.489-1.265-1.489\n\t\tc-0.928,0-1.328,0.816-1.425,1.681H20.866z", + key: 2, + }), + ]), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st3", + d: + "M11.814,26.228l-0.168,0.634l-0.168,0.634c-0.003,0.018-0.009,0.03-0.018,0.038s-0.024,0.011-0.045,0.011\n\t\t\th-0.312h-0.312c-0.021,0-0.033-0.003-0.039-0.013s-0.006-0.026-0.003-0.05l0.602-2.108l0.602-2.108\n\t\t\tc0.01-0.039,0.019-0.073,0.026-0.125s0.012-0.12,0.016-0.225c0-0.014,0.004-0.024,0.01-0.031s0.015-0.011,0.025-0.011h0.445h0.445\n\t\t\tc0.014,0,0.024,0.002,0.032,0.008s0.013,0.017,0.017,0.034l0.676,2.287l0.676,2.287c0.004,0.017,0.004,0.031-0.002,0.041\n\t\t\ts-0.016,0.015-0.033,0.015h-0.35h-0.35c-0.017,0-0.031-0.003-0.042-0.01s-0.018-0.017-0.021-0.032l-0.175-0.637l-0.175-0.637\n\t\t\th-0.679H11.814z M12.998,25.534c-0.059-0.235-0.159-0.608-0.257-0.984s-0.194-0.756-0.247-1.005H12.49h-0.004\n\t\t\tc-0.045,0.249-0.124,0.581-0.213,0.934s-0.189,0.726-0.277,1.055h0.501H12.998z", + key: 0, + }), + r.createElement("path", { + className: "st3", + d: + "M17.479,27.488c-0.003,0.021-0.009,0.035-0.019,0.044s-0.024,0.012-0.045,0.012h-1.198H15.02\n\t\t\tc-0.021,0-0.035-0.003-0.044-0.012s-0.012-0.023-0.012-0.044v-2.28v-2.28c0-0.021,0.004-0.035,0.012-0.044\n\t\t\ts0.023-0.013,0.044-0.013h1.156h1.156c0.021,0,0.035,0.002,0.045,0.009s0.015,0.02,0.019,0.041l0.031,0.294l0.031,0.294\n\t\t\tc0.003,0.018,0.002,0.031-0.005,0.041s-0.019,0.015-0.037,0.015h-0.844h-0.844v0.624v0.624h0.76h0.76\n\t\t\tc0.018,0,0.03,0.003,0.038,0.011s0.011,0.02,0.011,0.038v0.298v0.298c0,0.018-0.005,0.03-0.015,0.038s-0.023,0.011-0.041,0.011\n\t\t\th-0.756h-0.756v0.672v0.672h0.9h0.9c0.021,0,0.033,0.003,0.039,0.011s0.006,0.02,0.003,0.038l-0.045,0.294L17.479,27.488z", + key: 1, + }), + r.createElement("path", { + className: "st3", + d: + "M18.282,22.929c0-0.014,0.002-0.026,0.008-0.035s0.017-0.014,0.034-0.014\n\t\t\tc0.137-0.007,0.305-0.013,0.491-0.016s0.391-0.005,0.601-0.005c0.588,0,1.01,0.161,1.285,0.426s0.402,0.632,0.402,1.045\n\t\t\tc0,0.54-0.194,0.925-0.509,1.175s-0.748,0.366-1.228,0.366c-0.081,0-0.135-0.002-0.183-0.003s-0.09-0.003-0.146-0.003v0.816v0.816\n\t\t\tc0,0.018-0.004,0.03-0.012,0.038s-0.021,0.011-0.038,0.011H18.66h-0.329c-0.018,0-0.03-0.003-0.038-0.011s-0.011-0.02-0.011-0.038\n\t\t\tv-2.283V22.929z M19.039,25.184c0.049,0.003,0.093,0.005,0.145,0.006s0.114,0.001,0.198,0.001c0.249,0,0.489-0.044,0.666-0.172\n\t\t\ts0.294-0.34,0.294-0.676c0-0.27-0.082-0.472-0.235-0.608s-0.377-0.204-0.661-0.204c-0.084,0-0.167,0.002-0.238,0.004\n\t\t\ts-0.13,0.006-0.169,0.009v0.819V25.184z", + key: 2, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 90609: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#290741;}\n\t.st1{fill:#CD87FF;}\n\t.st2{fill:none;}\n\t.st3{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement("g", { id: "_x36_4_6_", key: 2 }, [ + r.createElement("polygon", { className: "st2", points: "28,18.5 16,18.5 4,18.5 4,12.812 4,7.125 16,7.125 28,7.125 28,12.812 \t", key: 0 }), + r.createElement("path", { + className: "st1", + d: + "M10.849,14.788l-0.768,2.897c-0.016,0.08-0.048,0.112-0.144,0.112H8.512c-0.096,0-0.112-0.032-0.096-0.145\n\t\tl2.753-9.635c0.048-0.176,0.08-0.32,0.096-0.8c0-0.064,0.032-0.096,0.08-0.096h2.033c0.064,0,0.096,0.016,0.112,0.096l3.089,10.452\n\t\tc0.016,0.08,0,0.128-0.08,0.128h-1.601c-0.08,0-0.128-0.032-0.144-0.096l-0.8-2.914H10.849z M13.555,13.203\n\t\tc-0.272-1.073-0.913-3.41-1.153-4.546h-0.016c-0.208,1.136-0.72,3.041-1.12,4.546H13.555z", + key: 1, + }), + r.createElement("path", { + className: "st1", + d: + "M18.897,14.211c0.016,1.312,0.641,2.193,2.113,2.193c0.576,0,1.072-0.08,1.584-0.304\n\t\tc0.064-0.032,0.112-0.016,0.112,0.064v1.217c0,0.096-0.032,0.144-0.096,0.192c-0.513,0.256-1.152,0.368-1.953,0.368\n\t\tc-2.561,0-3.521-1.889-3.521-4.002c0-2.289,1.185-4.162,3.266-4.162c2.112,0,2.849,1.776,2.849,3.217\n\t\tc0,0.464-0.031,0.848-0.08,1.024c-0.016,0.08-0.048,0.112-0.128,0.128c-0.191,0.032-0.768,0.064-1.616,0.064H18.897z\n\t\t M20.866,12.883c0.496,0,0.673,0,0.721-0.016c0-0.064,0.016-0.128,0.016-0.176c0-0.528-0.256-1.489-1.265-1.489\n\t\tc-0.928,0-1.328,0.816-1.425,1.681H20.866z", + key: 2, + }), + ]), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st3", + d: + "M10.085,26.228l-0.168,0.634L9.75,27.495c-0.003,0.018-0.009,0.03-0.018,0.038s-0.024,0.011-0.045,0.011\n\t\t\tH9.375H9.063c-0.021,0-0.033-0.003-0.039-0.013s-0.006-0.026-0.003-0.05l0.602-2.108l0.602-2.108\n\t\t\tc0.01-0.039,0.019-0.073,0.026-0.125s0.012-0.12,0.016-0.225c0-0.014,0.004-0.024,0.01-0.031s0.015-0.011,0.025-0.011h0.445h0.445\n\t\t\tc0.014,0,0.024,0.002,0.032,0.008s0.013,0.017,0.017,0.034l0.676,2.287l0.676,2.287c0.004,0.017,0.004,0.031-0.002,0.041\n\t\t\ts-0.016,0.015-0.033,0.015h-0.35h-0.35c-0.017,0-0.031-0.003-0.042-0.01s-0.018-0.017-0.021-0.032l-0.175-0.637l-0.175-0.637\n\t\t\th-0.679H10.085z M11.27,25.534c-0.06-0.235-0.159-0.608-0.258-0.984s-0.194-0.756-0.247-1.005h-0.004h-0.004\n\t\t\tc-0.045,0.249-0.124,0.581-0.213,0.934s-0.189,0.726-0.277,1.055h0.501H11.27z", + key: 0, + }), + r.createElement("path", { + className: "st3", + d: + "M15.75,27.488c-0.004,0.021-0.009,0.035-0.019,0.044s-0.024,0.012-0.045,0.012h-1.198h-1.198\n\t\t\tc-0.021,0-0.035-0.003-0.044-0.012s-0.012-0.023-0.012-0.044v-2.28v-2.28c0-0.021,0.004-0.035,0.012-0.044\n\t\t\ts0.023-0.013,0.044-0.013h1.156h1.156c0.021,0,0.035,0.002,0.045,0.009s0.015,0.02,0.018,0.041l0.032,0.294l0.032,0.294\n\t\t\tc0.003,0.018,0.002,0.031-0.005,0.041s-0.019,0.015-0.037,0.015h-0.844h-0.844v0.624v0.624h0.76h0.76\n\t\t\tc0.018,0,0.03,0.003,0.038,0.011s0.011,0.02,0.011,0.038v0.298v0.298c0,0.018-0.005,0.03-0.015,0.038s-0.024,0.011-0.041,0.011\n\t\t\th-0.756h-0.756v0.672v0.672h0.9h0.9c0.021,0,0.033,0.003,0.039,0.011s0.006,0.02,0.003,0.038l-0.045,0.294L15.75,27.488z", + key: 1, + }), + r.createElement("path", { + className: "st3", + d: + "M16.553,22.929c0-0.014,0.002-0.026,0.008-0.035s0.017-0.014,0.034-0.014\n\t\t\tc0.137-0.007,0.305-0.013,0.491-0.016s0.391-0.005,0.601-0.005c0.588,0,1.01,0.161,1.285,0.426s0.402,0.632,0.402,1.045\n\t\t\tc0,0.54-0.194,0.925-0.509,1.175s-0.748,0.366-1.228,0.366c-0.081,0-0.135-0.002-0.183-0.003s-0.09-0.003-0.146-0.003v0.816v0.816\n\t\t\tc0,0.018-0.004,0.03-0.012,0.038s-0.021,0.011-0.038,0.011h-0.329h-0.329c-0.018,0-0.03-0.003-0.038-0.011\n\t\t\ts-0.011-0.02-0.011-0.038v-2.283V22.929z M17.31,25.184c0.049,0.003,0.093,0.005,0.145,0.006s0.114,0.001,0.198,0.001\n\t\t\tc0.249,0,0.489-0.044,0.666-0.172s0.294-0.34,0.294-0.676c0-0.27-0.082-0.472-0.235-0.608S18,23.531,17.716,23.531\n\t\t\tc-0.084,0-0.167,0.002-0.238,0.004s-0.13,0.006-0.169,0.009v0.819V25.184z", + key: 2, + }), + r.createElement("path", { + className: "st3", + d: + "M21.859,25.135l0.609,1.169l0.609,1.169c0.011,0.018,0.012,0.035,0.007,0.048s-0.017,0.022-0.035,0.022\n\t\t\th-0.378h-0.378c-0.024,0-0.042-0.003-0.056-0.012s-0.025-0.023-0.035-0.044c-0.14-0.287-0.28-0.574-0.422-0.867\n\t\t\ts-0.285-0.59-0.432-0.899h-0.003h-0.003c-0.13,0.291-0.267,0.591-0.406,0.889s-0.281,0.596-0.421,0.883\n\t\t\tc-0.01,0.018-0.021,0.03-0.033,0.038s-0.026,0.011-0.044,0.011h-0.36h-0.36c-0.021,0-0.033-0.009-0.038-0.021\n\t\t\ts-0.001-0.028,0.01-0.042l0.595-1.134l0.595-1.134l-0.574-1.138l-0.574-1.138c-0.014-0.018-0.014-0.033-0.007-0.045\n\t\t\ts0.021-0.019,0.035-0.019h0.375h0.375c0.021,0,0.037,0.002,0.049,0.009s0.021,0.02,0.028,0.041\n\t\t\tc0.137,0.287,0.275,0.573,0.412,0.859s0.271,0.573,0.401,0.864h0.003h0.003c0.126-0.287,0.259-0.574,0.394-0.86\n\t\t\ts0.272-0.572,0.405-0.855c0.01-0.018,0.019-0.032,0.031-0.042s0.026-0.015,0.047-0.015h0.35h0.35c0.018,0,0.03,0.007,0.035,0.019\n\t\t\ts0.003,0.027-0.008,0.045l-0.574,1.1L21.859,25.135z", + key: 3, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 88898: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#290741;}\n\t.st1{fill:#CD87FF;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("path", { className: "st0", d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V1c0-0.276,0.224-0.5,0.5-0.5h24c0.276,0,0.5,0.224,0.5,0.5v28\n\tc0,1.379-1.121,2.5-2.5,2.5H6z", key: 1 }), + r.createElement("path", { className: "st1", d: "M28,0H4C3.45,0,3,0.45,3,1v28c0,1.65,1.35,3,3,3h20c1.65,0,3-1.35,3-3V1C29,0.45,28.55,0,28,0z M28,29\n\tc0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2V3h24V29z", key: 2 }), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M11.885,26.228l-0.168,0.634l-0.168,0.634c-0.003,0.018-0.009,0.03-0.018,0.038s-0.024,0.011-0.045,0.011\n\t\t\th-0.312h-0.312c-0.021,0-0.033-0.003-0.039-0.013s-0.006-0.026-0.003-0.05l0.602-2.108l0.602-2.108\n\t\t\tc0.01-0.039,0.019-0.073,0.026-0.125s0.012-0.12,0.016-0.225c0-0.014,0.004-0.024,0.01-0.031s0.015-0.011,0.025-0.011h0.445h0.445\n\t\t\tc0.014,0,0.024,0.002,0.032,0.008s0.013,0.017,0.017,0.034l0.676,2.287l0.676,2.287c0.004,0.017,0.004,0.031-0.002,0.041\n\t\t\ts-0.016,0.015-0.033,0.015h-0.35h-0.35c-0.017,0-0.031-0.003-0.042-0.01s-0.018-0.017-0.021-0.032l-0.175-0.637l-0.175-0.637\n\t\t\th-0.679H11.885z M13.068,25.534c-0.059-0.235-0.159-0.608-0.257-0.984s-0.194-0.756-0.247-1.005h-0.004h-0.004\n\t\t\tc-0.045,0.249-0.124,0.581-0.213,0.934s-0.189,0.726-0.277,1.055h0.501H13.068z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M17.549,27.488c-0.003,0.021-0.009,0.035-0.019,0.044s-0.024,0.012-0.045,0.012h-1.198H15.09\n\t\t\tc-0.021,0-0.035-0.003-0.044-0.012s-0.012-0.023-0.012-0.044v-2.28v-2.28c0-0.021,0.004-0.035,0.012-0.044\n\t\t\ts0.023-0.013,0.044-0.013h1.156h1.156c0.021,0,0.035,0.002,0.045,0.009s0.015,0.02,0.019,0.041l0.031,0.294l0.031,0.294\n\t\t\tc0.003,0.018,0.002,0.031-0.005,0.041s-0.019,0.015-0.037,0.015h-0.844h-0.844v0.624v0.624h0.76h0.76\n\t\t\tc0.018,0,0.03,0.003,0.038,0.011s0.011,0.02,0.011,0.038v0.298v0.298c0,0.018-0.005,0.03-0.015,0.038s-0.023,0.011-0.041,0.011\n\t\t\th-0.756h-0.756v0.672v0.672h0.9h0.9c0.021,0,0.033,0.003,0.039,0.011s0.006,0.02,0.003,0.038l-0.045,0.294L17.549,27.488z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M19.235,23.565h-0.588h-0.588c-0.018,0-0.03-0.003-0.037-0.012s-0.009-0.023-0.005-0.044l0.042-0.294\n\t\t\tl0.042-0.294c0.003-0.018,0.009-0.03,0.017-0.038s0.021-0.012,0.038-0.012h1.471h1.471c0.021,0,0.035,0.004,0.045,0.013\n\t\t\ts0.015,0.023,0.019,0.044l0.028,0.291l0.028,0.291c0.003,0.021,0,0.035-0.009,0.044s-0.023,0.012-0.04,0.012h-0.585h-0.585v1.961\n\t\t\tv1.961c0,0.017-0.003,0.031-0.012,0.041s-0.023,0.015-0.044,0.015h-0.326h-0.326c-0.021,0-0.035-0.003-0.044-0.012\n\t\t\ts-0.012-0.023-0.012-0.044v-1.961V23.565z", + key: 2, + }), + ]) + ), + r.createElement( + "g", + { key: 4 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M10.849,14.788l-0.384,1.448l-0.384,1.448c-0.008,0.04-0.02,0.068-0.042,0.086s-0.054,0.026-0.102,0.026\n\t\t\tH9.225H8.512c-0.048,0-0.076-0.008-0.09-0.03s-0.014-0.058-0.006-0.114l1.376-4.818l1.376-4.818\n\t\t\tc0.024-0.088,0.044-0.168,0.06-0.286s0.028-0.274,0.036-0.514c0-0.032,0.008-0.056,0.022-0.072s0.034-0.024,0.058-0.024h1.016\n\t\t\th1.016c0.032,0,0.056,0.004,0.074,0.018s0.03,0.038,0.038,0.078l1.545,5.226l1.545,5.226c0.008,0.04,0.008,0.072-0.004,0.094\n\t\t\ts-0.036,0.034-0.076,0.034h-0.8h-0.8c-0.04,0-0.072-0.008-0.096-0.024s-0.04-0.04-0.048-0.072l-0.4-1.457l-0.4-1.457h-1.553\n\t\t\tH10.849z M13.555,13.203c-0.136-0.536-0.364-1.389-0.589-2.249s-0.444-1.729-0.564-2.297h-0.008h-0.008\n\t\t\tc-0.104,0.568-0.284,1.328-0.488,2.135s-0.432,1.659-0.632,2.411h1.145H13.555z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M18.897,14.211c0.008,0.656,0.168,1.204,0.51,1.589s0.867,0.604,1.603,0.604c0.288,0,0.556-0.02,0.816-0.068\n\t\t\ts0.512-0.124,0.768-0.236c0.032-0.016,0.06-0.02,0.08-0.01s0.032,0.034,0.032,0.074v0.608v0.608c0,0.048-0.008,0.084-0.024,0.114\n\t\t\ts-0.04,0.054-0.072,0.079c-0.256,0.128-0.544,0.22-0.869,0.28s-0.684,0.088-1.085,0.088c-1.28,0-2.161-0.472-2.721-1.209\n\t\t\ts-0.801-1.737-0.801-2.793c0-1.145,0.296-2.185,0.852-2.939s1.373-1.222,2.413-1.222c1.056,0,1.768,0.444,2.216,1.068\n\t\t\ts0.632,1.429,0.632,2.149c0,0.232-0.008,0.444-0.022,0.62s-0.034,0.316-0.058,0.404c-0.008,0.04-0.02,0.068-0.04,0.088\n\t\t\ts-0.048,0.032-0.088,0.04c-0.096,0.016-0.288,0.032-0.562,0.044s-0.63,0.02-1.055,0.02h-1.265H18.897z M20.866,12.883\n\t\t\tc0.248,0,0.416,0,0.528-0.002s0.168-0.006,0.192-0.014c0-0.032,0.004-0.064,0.008-0.094s0.008-0.058,0.008-0.082\n\t\t\tc0-0.264-0.064-0.636-0.254-0.943s-0.506-0.546-1.011-0.546c-0.464,0-0.796,0.204-1.024,0.516s-0.352,0.732-0.401,1.164h0.977\n\t\t\tH20.866z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + r.createElement("g", { key: 10 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 37709: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#290741;}\n\t.st1{fill:#CD87FF;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("path", { className: "st0", d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V1c0-0.276,0.224-0.5,0.5-0.5h24c0.276,0,0.5,0.224,0.5,0.5v28\n\tc0,1.379-1.121,2.5-2.5,2.5H6z", key: 1 }), + r.createElement("path", { className: "st1", d: "M28,0H4C3.45,0,3,0.45,3,1v28c0,1.65,1.35,3,3,3h20c1.65,0,3-1.35,3-3V1C29,0.45,28.55,0,28,0z M28,29\n\tc0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2V3h24V29z", key: 2 }), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M10.849,14.788l-0.384,1.448l-0.384,1.448c-0.008,0.04-0.02,0.068-0.042,0.086s-0.054,0.026-0.102,0.026\n\t\t\tH9.225H8.512c-0.048,0-0.076-0.008-0.09-0.03s-0.014-0.058-0.006-0.114l1.376-4.818l1.376-4.818\n\t\t\tc0.024-0.088,0.044-0.168,0.06-0.286s0.028-0.274,0.036-0.514c0-0.032,0.008-0.056,0.022-0.072s0.034-0.024,0.058-0.024h1.016\n\t\t\th1.016c0.032,0,0.056,0.004,0.074,0.018s0.03,0.038,0.038,0.078l1.545,5.226l1.545,5.226c0.008,0.04,0.008,0.072-0.004,0.094\n\t\t\ts-0.036,0.034-0.076,0.034h-0.8h-0.8c-0.04,0-0.072-0.008-0.096-0.024s-0.04-0.04-0.048-0.072l-0.4-1.457l-0.4-1.457h-1.553\n\t\t\tH10.849z M13.555,13.203c-0.136-0.536-0.364-1.389-0.589-2.249s-0.444-1.729-0.564-2.297h-0.008h-0.008\n\t\t\tc-0.104,0.568-0.284,1.328-0.488,2.135s-0.432,1.659-0.632,2.411h1.145H13.555z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M18.897,14.211c0.008,0.656,0.168,1.204,0.51,1.589s0.867,0.604,1.603,0.604c0.288,0,0.556-0.02,0.816-0.068\n\t\t\ts0.512-0.124,0.768-0.236c0.032-0.016,0.06-0.02,0.08-0.01s0.032,0.034,0.032,0.074v0.608v0.608c0,0.048-0.008,0.084-0.024,0.114\n\t\t\ts-0.04,0.054-0.072,0.079c-0.256,0.128-0.544,0.22-0.869,0.28s-0.684,0.088-1.085,0.088c-1.28,0-2.161-0.472-2.721-1.209\n\t\t\ts-0.801-1.737-0.801-2.793c0-1.145,0.296-2.185,0.852-2.939s1.373-1.222,2.413-1.222c1.056,0,1.768,0.444,2.216,1.068\n\t\t\ts0.632,1.429,0.632,2.149c0,0.232-0.008,0.444-0.022,0.62s-0.034,0.316-0.058,0.404c-0.008,0.04-0.02,0.068-0.04,0.088\n\t\t\ts-0.048,0.032-0.088,0.04c-0.096,0.016-0.288,0.032-0.562,0.044s-0.63,0.02-1.055,0.02h-1.265H18.897z M20.866,12.883\n\t\t\tc0.248,0,0.416,0,0.528-0.002s0.168-0.006,0.192-0.014c0-0.032,0.004-0.064,0.008-0.094s0.008-0.058,0.008-0.082\n\t\t\tc0-0.264-0.064-0.636-0.254-0.943s-0.506-0.546-1.011-0.546c-0.464,0-0.796,0.204-1.024,0.516s-0.352,0.732-0.401,1.164h0.977\n\t\t\tH20.866z", + key: 1, + }), + ]) + ), + r.createElement( + "g", + { key: 4 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M10.03,26.228l-0.168,0.634l-0.168,0.634c-0.003,0.018-0.009,0.03-0.018,0.038s-0.024,0.011-0.045,0.011\n\t\t\tH9.319H9.007c-0.021,0-0.033-0.003-0.039-0.013s-0.006-0.026-0.003-0.05l0.602-2.108l0.602-2.108\n\t\t\tc0.01-0.039,0.019-0.073,0.026-0.125s0.012-0.12,0.016-0.225c0-0.014,0.004-0.024,0.01-0.031s0.015-0.011,0.025-0.011h0.445h0.445\n\t\t\tc0.014,0,0.024,0.002,0.032,0.008s0.013,0.017,0.017,0.034l0.676,2.287l0.676,2.287c0.004,0.017,0.004,0.031-0.002,0.041\n\t\t\ts-0.016,0.015-0.033,0.015h-0.35h-0.35c-0.017,0-0.031-0.003-0.042-0.01s-0.018-0.017-0.021-0.032l-0.175-0.637l-0.175-0.637\n\t\t\th-0.679H10.03z M11.214,25.534c-0.06-0.235-0.159-0.608-0.258-0.984s-0.194-0.756-0.247-1.005h-0.004h-0.004\n\t\t\tc-0.045,0.249-0.124,0.581-0.213,0.934s-0.189,0.726-0.277,1.055h0.501H11.214z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M15.694,27.488c-0.004,0.021-0.009,0.035-0.019,0.044s-0.024,0.012-0.045,0.012h-1.198h-1.198\n\t\t\tc-0.021,0-0.035-0.003-0.044-0.012s-0.012-0.023-0.012-0.044v-2.28v-2.28c0-0.021,0.004-0.035,0.012-0.044\n\t\t\ts0.023-0.013,0.044-0.013h1.156h1.156c0.021,0,0.035,0.002,0.045,0.009s0.015,0.02,0.018,0.041l0.032,0.294l0.032,0.294\n\t\t\tc0.003,0.018,0.002,0.031-0.005,0.041s-0.019,0.015-0.037,0.015h-0.844h-0.844v0.624v0.624h0.76h0.76\n\t\t\tc0.018,0,0.03,0.003,0.038,0.011s0.011,0.02,0.011,0.038v0.298v0.298c0,0.018-0.005,0.03-0.015,0.038s-0.024,0.011-0.041,0.011\n\t\t\th-0.756h-0.756v0.672v0.672h0.9h0.9c0.021,0,0.033,0.003,0.039,0.011s0.006,0.02,0.003,0.038l-0.045,0.294L15.694,27.488z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M17.38,23.565h-0.588h-0.588c-0.018,0-0.03-0.003-0.037-0.012s-0.009-0.023-0.005-0.044l0.042-0.294\n\t\t\tl0.042-0.294c0.003-0.018,0.009-0.03,0.017-0.038s0.021-0.012,0.038-0.012h1.471h1.471c0.021,0,0.035,0.004,0.045,0.013\n\t\t\ts0.015,0.023,0.019,0.044l0.028,0.291l0.028,0.291c0.003,0.021,0,0.035-0.009,0.044s-0.023,0.012-0.04,0.012h-0.585h-0.585v1.961\n\t\t\tv1.961c0,0.017-0.003,0.031-0.012,0.041s-0.023,0.015-0.044,0.015h-0.326h-0.326c-0.021,0-0.035-0.003-0.044-0.012\n\t\t\ts-0.012-0.023-0.012-0.044v-1.961V23.565z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M21.915,25.135l0.609,1.169l0.609,1.169c0.011,0.018,0.012,0.035,0.007,0.048s-0.018,0.022-0.035,0.022\n\t\t\th-0.378H22.35c-0.024,0-0.042-0.003-0.056-0.012s-0.025-0.023-0.035-0.044c-0.14-0.287-0.28-0.574-0.422-0.867\n\t\t\ts-0.285-0.59-0.432-0.899h-0.003h-0.003c-0.13,0.291-0.267,0.591-0.406,0.889s-0.281,0.596-0.421,0.883\n\t\t\tc-0.01,0.018-0.021,0.03-0.033,0.038s-0.026,0.011-0.044,0.011h-0.36h-0.36c-0.021,0-0.033-0.009-0.038-0.021\n\t\t\ts-0.001-0.028,0.01-0.042l0.595-1.134l0.595-1.134l-0.574-1.138l-0.574-1.138c-0.014-0.018-0.014-0.033-0.007-0.045\n\t\t\ts0.021-0.019,0.035-0.019h0.375h0.375c0.021,0,0.037,0.002,0.049,0.009s0.021,0.02,0.028,0.041\n\t\t\tc0.137,0.287,0.275,0.573,0.412,0.859s0.271,0.573,0.401,0.864h0.003h0.003c0.126-0.287,0.259-0.574,0.394-0.86\n\t\t\ts0.272-0.572,0.405-0.855c0.01-0.018,0.019-0.032,0.031-0.042s0.026-0.015,0.047-0.015h0.35h0.35c0.018,0,0.03,0.007,0.035,0.019\n\t\t\ts0.003,0.027-0.008,0.045l-0.574,1.1L21.915,25.135z", + key: 3, + }), + ]) + ), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + r.createElement("g", { key: 10 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 69010: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#261402;}\n\t.st1{fill:#FF860D;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M14.359,26.228l-0.168,0.634l-0.168,0.634c-0.003,0.018-0.009,0.03-0.018,0.038s-0.024,0.011-0.045,0.011\n\t\t\th-0.312h-0.312c-0.021,0-0.033-0.003-0.039-0.013s-0.006-0.026-0.003-0.05l0.602-2.108l0.602-2.108\n\t\t\tc0.01-0.039,0.019-0.073,0.026-0.125s0.012-0.12,0.016-0.225c0-0.014,0.004-0.024,0.01-0.031s0.015-0.011,0.025-0.011h0.445h0.445\n\t\t\tc0.014,0,0.024,0.002,0.032,0.008s0.013,0.017,0.017,0.034l0.676,2.287l0.676,2.287c0.004,0.017,0.004,0.031-0.002,0.041\n\t\t\ts-0.016,0.015-0.033,0.015h-0.35h-0.35c-0.017,0-0.031-0.003-0.042-0.01s-0.018-0.017-0.021-0.032l-0.175-0.637l-0.175-0.637\n\t\t\th-0.679H14.359z M15.543,25.534c-0.06-0.235-0.159-0.608-0.258-0.984s-0.194-0.756-0.247-1.005h-0.004h-0.004\n\t\t\tc-0.045,0.249-0.124,0.581-0.213,0.934s-0.189,0.726-0.277,1.055h0.501H15.543z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M18.271,27.488c0,0.021-0.002,0.035-0.01,0.044s-0.022,0.012-0.046,0.012H17.89h-0.326\n\t\t\tc-0.021,0-0.035-0.005-0.044-0.015s-0.012-0.024-0.012-0.041v-2.28v-2.28c0-0.021,0.005-0.035,0.015-0.044\n\t\t\ts0.023-0.013,0.041-0.013h0.329h0.329c0.018,0,0.03,0.004,0.038,0.012s0.011,0.021,0.011,0.038v2.283V27.488z", + key: 1, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M12.585,14.788l-0.384,1.448l-0.384,1.448c-0.008,0.04-0.02,0.068-0.042,0.086s-0.054,0.026-0.102,0.026\n\t\t\tH10.96h-0.712c-0.048,0-0.076-0.008-0.09-0.03s-0.014-0.058-0.006-0.114l1.376-4.818l1.376-4.818\n\t\t\tc0.024-0.088,0.044-0.168,0.06-0.286s0.028-0.274,0.036-0.514c0-0.032,0.008-0.056,0.022-0.072s0.034-0.024,0.058-0.024h1.016\n\t\t\th1.016c0.032,0,0.056,0.004,0.074,0.018s0.03,0.038,0.038,0.078l1.545,5.226l1.545,5.226c0.008,0.04,0.008,0.072-0.004,0.094\n\t\t\ts-0.036,0.034-0.076,0.034h-0.8h-0.8c-0.04,0-0.072-0.008-0.096-0.024s-0.04-0.04-0.048-0.072l-0.4-1.457l-0.4-1.457h-1.553\n\t\t\tH12.585z M15.29,13.203c-0.136-0.536-0.364-1.389-0.588-2.249s-0.444-1.729-0.564-2.297H14.13h-0.008\n\t\t\tc-0.104,0.568-0.284,1.328-0.488,2.135s-0.432,1.659-0.632,2.411h1.144H15.29z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M19.176,7.809c0-0.312,0.108-0.56,0.286-0.73s0.426-0.262,0.706-0.262c0.296,0,0.544,0.1,0.718,0.274\n\t\t\ts0.274,0.422,0.274,0.718c0,0.32-0.104,0.568-0.282,0.737s-0.43,0.256-0.726,0.256c-0.288,0-0.532-0.088-0.704-0.256\n\t\t\tS19.176,8.129,19.176,7.809z M19.288,10.018c0-0.04,0.008-0.068,0.026-0.086S19.36,9.906,19.4,9.906h0.76h0.76\n\t\t\tc0.04,0,0.068,0.008,0.086,0.026s0.026,0.046,0.026,0.086v3.833v3.833c0,0.04-0.004,0.068-0.02,0.086s-0.044,0.026-0.092,0.026\n\t\t\th-0.752h-0.752c-0.048,0-0.08-0.012-0.1-0.034s-0.028-0.054-0.028-0.094v-3.826V10.018z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 1537: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#261402;}\n\t.st1{fill:#FF860D;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("path", { className: "st0", d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V1c0-0.276,0.224-0.5,0.5-0.5h24c0.276,0,0.5,0.224,0.5,0.5v28\n\tc0,1.379-1.121,2.5-2.5,2.5H6z", key: 1 }), + r.createElement("path", { className: "st1", d: "M28,0H4C3.45,0,3,0.45,3,1v28c0,1.65,1.35,3,3,3h20c1.65,0,3-1.35,3-3V1C29,0.45,28.55,0,28,0z M28,29\n\tc0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2V3h24V29z", key: 2 }), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M12.679,26.228l-0.168,0.634l-0.168,0.634c-0.003,0.018-0.009,0.03-0.018,0.038s-0.024,0.011-0.045,0.011\n\t\t\th-0.312h-0.312c-0.021,0-0.033-0.003-0.039-0.013s-0.006-0.026-0.003-0.05l0.602-2.108l0.602-2.108\n\t\t\tc0.01-0.039,0.019-0.073,0.026-0.125s0.012-0.12,0.016-0.225c0-0.014,0.004-0.024,0.01-0.031s0.015-0.011,0.025-0.011h0.445h0.445\n\t\t\tc0.014,0,0.024,0.002,0.032,0.008s0.013,0.017,0.017,0.034l0.676,2.287l0.676,2.287c0.004,0.017,0.004,0.031-0.002,0.041\n\t\t\ts-0.016,0.015-0.033,0.015h-0.35h-0.35c-0.017,0-0.031-0.003-0.042-0.01s-0.018-0.017-0.021-0.032l-0.175-0.637l-0.175-0.637\n\t\t\th-0.679H12.679z M13.863,25.534c-0.06-0.235-0.159-0.608-0.258-0.984s-0.194-0.756-0.247-1.005h-0.004h-0.004\n\t\t\tc-0.045,0.249-0.124,0.581-0.213,0.934s-0.189,0.726-0.277,1.055h0.501H13.863z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M16.592,27.488c0,0.021-0.002,0.035-0.01,0.044s-0.022,0.012-0.046,0.012H16.21h-0.326\n\t\t\tc-0.021,0-0.035-0.005-0.044-0.015s-0.012-0.024-0.012-0.041v-2.28v-2.28c0-0.021,0.005-0.035,0.015-0.044\n\t\t\ts0.024-0.013,0.041-0.013h0.329h0.329c0.018,0,0.03,0.004,0.038,0.012s0.011,0.021,0.011,0.038v2.283V27.488z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M18.44,23.565h-0.588h-0.588c-0.018,0-0.03-0.003-0.037-0.012s-0.009-0.023-0.005-0.044l0.042-0.294\n\t\t\tl0.042-0.294c0.003-0.018,0.009-0.03,0.017-0.038s0.021-0.012,0.038-0.012h1.471h1.471c0.021,0,0.035,0.004,0.045,0.013\n\t\t\ts0.015,0.023,0.019,0.044l0.028,0.291l0.028,0.291c0.003,0.021,0,0.035-0.009,0.044s-0.023,0.012-0.04,0.012h-0.585h-0.585v1.961\n\t\t\tv1.961c0,0.017-0.003,0.031-0.012,0.041s-0.023,0.015-0.044,0.015h-0.326h-0.326c-0.021,0-0.035-0.003-0.044-0.012\n\t\t\ts-0.012-0.023-0.012-0.044v-1.961V23.565z", + key: 2, + }), + ]) + ), + r.createElement( + "g", + { key: 4 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M12.585,14.788l-0.384,1.448l-0.384,1.448c-0.008,0.04-0.02,0.068-0.042,0.086s-0.054,0.026-0.102,0.026\n\t\t\tH10.96h-0.712c-0.048,0-0.076-0.008-0.09-0.03s-0.014-0.058-0.006-0.114l1.376-4.818l1.376-4.818\n\t\t\tc0.024-0.088,0.044-0.168,0.06-0.286s0.028-0.274,0.036-0.514c0-0.032,0.008-0.056,0.022-0.072s0.034-0.024,0.058-0.024h1.016\n\t\t\th1.016c0.032,0,0.056,0.004,0.074,0.018s0.03,0.038,0.038,0.078l1.545,5.226l1.545,5.226c0.008,0.04,0.008,0.072-0.004,0.094\n\t\t\ts-0.036,0.034-0.076,0.034h-0.8h-0.8c-0.04,0-0.072-0.008-0.096-0.024s-0.04-0.04-0.048-0.072l-0.4-1.457l-0.4-1.457h-1.553\n\t\t\tH12.585z M15.29,13.203c-0.136-0.536-0.364-1.389-0.588-2.249s-0.444-1.729-0.564-2.297H14.13h-0.008\n\t\t\tc-0.104,0.568-0.284,1.328-0.488,2.135s-0.432,1.659-0.632,2.411h1.144H15.29z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M19.176,7.809c0-0.312,0.108-0.56,0.286-0.73s0.426-0.262,0.706-0.262c0.296,0,0.544,0.1,0.718,0.274\n\t\t\ts0.274,0.422,0.274,0.718c0,0.32-0.104,0.568-0.282,0.737s-0.43,0.256-0.726,0.256c-0.288,0-0.532-0.088-0.704-0.256\n\t\t\tS19.176,8.129,19.176,7.809z M19.288,10.018c0-0.04,0.008-0.068,0.026-0.086S19.36,9.906,19.4,9.906h0.76h0.76\n\t\t\tc0.04,0,0.068,0.008,0.086,0.026s0.026,0.046,0.026,0.086v3.833v3.833c0,0.04-0.004,0.068-0.02,0.086s-0.044,0.026-0.092,0.026\n\t\t\th-0.752h-0.752c-0.048,0-0.08-0.012-0.1-0.034s-0.028-0.054-0.028-0.094v-3.826V10.018z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + r.createElement("g", { key: 10 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 51962: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#062126;}\n\t.st1{fill:#26DBFF;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M11.216,7.249c0-0.032,0.004-0.06,0.018-0.08s0.038-0.032,0.078-0.032c0.312-0.016,0.696-0.028,1.123-0.036\n\t\t\ts0.894-0.012,1.375-0.012c1.344,0,2.309,0.368,2.937,0.972s0.92,1.445,0.92,2.389c0,1.233-0.444,2.113-1.162,2.685\n\t\t\ts-1.711,0.836-2.807,0.836c-0.184,0-0.308-0.004-0.418-0.008s-0.206-0.008-0.334-0.008v1.865v1.865\n\t\t\tc0,0.04-0.008,0.068-0.026,0.086s-0.046,0.026-0.086,0.026h-0.752h-0.752c-0.04,0-0.068-0.008-0.086-0.026\n\t\t\ts-0.026-0.046-0.026-0.086v-5.218V7.249z M12.945,12.403c0.112,0.008,0.212,0.012,0.332,0.014s0.26,0.002,0.452,0.002\n\t\t\tc0.568,0,1.117-0.1,1.523-0.392s0.67-0.776,0.67-1.545c0-0.616-0.188-1.08-0.538-1.391s-0.862-0.466-1.511-0.466\n\t\t\tc-0.192,0-0.38,0.004-0.542,0.01s-0.298,0.014-0.386,0.022v1.873V12.403z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M18.977,7.232c0-0.032,0.004-0.056,0.02-0.072s0.044-0.024,0.092-0.024h0.752h0.752\n\t\t\tc0.048,0,0.08,0.008,0.1,0.024s0.028,0.04,0.028,0.072v4.354v4.354c0,0.192,0.036,0.324,0.108,0.408s0.18,0.12,0.324,0.12\n\t\t\tc0.064,0,0.108-0.004,0.146-0.01s0.07-0.014,0.11-0.022c0.032,0,0.052,0.004,0.064,0.018s0.016,0.038,0.016,0.078v0.568v0.568\n\t\t\tc0,0.048-0.004,0.08-0.016,0.104s-0.032,0.04-0.064,0.056c-0.104,0.04-0.228,0.068-0.368,0.086s-0.296,0.026-0.464,0.026\n\t\t\tc-0.424,0-0.824-0.08-1.119-0.352s-0.482-0.737-0.482-1.505v-4.426V7.232z", + key: 1, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M7.982,26.228l-0.168,0.634l-0.168,0.634c-0.003,0.018-0.009,0.03-0.018,0.038s-0.024,0.011-0.045,0.011\n\t\t\tH7.271H6.959c-0.021,0-0.033-0.003-0.039-0.013s-0.006-0.026-0.003-0.05l0.602-2.108l0.602-2.108\n\t\t\tc0.01-0.039,0.019-0.073,0.026-0.125s0.012-0.12,0.016-0.225c0-0.014,0.004-0.024,0.01-0.031s0.015-0.011,0.025-0.011h0.445h0.445\n\t\t\tc0.014,0,0.024,0.002,0.032,0.008s0.013,0.017,0.017,0.034l0.676,2.287l0.676,2.287c0.004,0.017,0.004,0.031-0.002,0.041\n\t\t\ts-0.016,0.015-0.033,0.015h-0.35h-0.35c-0.017,0-0.031-0.003-0.042-0.01s-0.018-0.017-0.021-0.032l-0.175-0.637l-0.175-0.637\n\t\t\tH8.661H7.982z M9.166,25.534c-0.06-0.235-0.159-0.608-0.258-0.984s-0.194-0.756-0.247-1.005H8.658H8.654\n\t\t\tc-0.045,0.249-0.124,0.581-0.213,0.934s-0.189,0.726-0.277,1.055h0.501H9.166z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M11.881,27.495c0,0.018-0.004,0.03-0.011,0.038s-0.02,0.011-0.037,0.011H11.51h-0.322\n\t\t\tc-0.021,0-0.035-0.003-0.044-0.012s-0.012-0.023-0.012-0.044v-2.273v-2.273c0-0.018,0.004-0.033,0.011-0.044\n\t\t\ts0.018-0.018,0.031-0.018c0.172-0.007,0.338-0.013,0.526-0.016s0.398-0.005,0.657-0.005c0.501,0,0.902,0.119,1.178,0.347\n\t\t\ts0.426,0.564,0.426,0.998c0,0.357-0.119,0.636-0.288,0.843s-0.388,0.344-0.588,0.418c0.102,0.175,0.324,0.574,0.549,0.982\n\t\t\ts0.453,0.824,0.565,1.034c0.01,0.018,0.016,0.033,0.012,0.045s-0.016,0.019-0.041,0.019h-0.364h-0.364\n\t\t\tc-0.025,0-0.042-0.003-0.055-0.01s-0.022-0.015-0.029-0.026c-0.08-0.14-0.247-0.452-0.433-0.802s-0.393-0.739-0.554-1.033h-0.245\n\t\t\th-0.245v0.911V27.495z M12.308,25.002c0.256,0,0.476-0.051,0.633-0.167s0.249-0.299,0.249-0.561c0-0.256-0.084-0.441-0.233-0.563\n\t\t\ts-0.362-0.179-0.622-0.179c-0.091,0-0.18,0.002-0.259,0.004s-0.147,0.006-0.196,0.009v0.729v0.729h0.214H12.308z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M17.524,27.425c0,0.021-0.004,0.037-0.012,0.049s-0.021,0.021-0.038,0.028\n\t\t\tc-0.091,0.039-0.21,0.065-0.344,0.082s-0.283,0.024-0.434,0.024c-0.546,0-1.061-0.179-1.439-0.568s-0.62-0.988-0.62-1.828\n\t\t\tc0-0.722,0.214-1.324,0.59-1.746s0.916-0.663,1.567-0.663c0.172,0,0.32,0.009,0.443,0.025s0.219,0.041,0.286,0.072\n\t\t\tc0.017,0.007,0.028,0.016,0.034,0.028s0.008,0.028,0.008,0.049v0.301v0.301c0,0.028-0.007,0.042-0.017,0.048\n\t\t\ts-0.022,0.004-0.033,0.001c-0.084-0.042-0.189-0.075-0.31-0.098s-0.257-0.035-0.404-0.035c-0.41,0-0.751,0.156-0.99,0.445\n\t\t\ts-0.375,0.713-0.375,1.249c0,0.662,0.187,1.091,0.452,1.354s0.606,0.361,0.914,0.361c0.14,0,0.257-0.005,0.365-0.019\n\t\t\ts0.205-0.037,0.307-0.072c0.014-0.007,0.027-0.01,0.036-0.006s0.014,0.017,0.014,0.041v0.287V27.425z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M19.035,25.912c0,0.336,0.056,0.588,0.198,0.756s0.372,0.252,0.719,0.252c0.137,0,0.263-0.01,0.372-0.027\n\t\t\ts0.202-0.04,0.272-0.065v-1.95v-1.95c0-0.018,0.003-0.032,0.011-0.042s0.02-0.015,0.038-0.015h0.333h0.333\n\t\t\tc0.018,0,0.03,0.004,0.038,0.012s0.012,0.021,0.012,0.038v1.908v1.908c0,0.105,0.002,0.193,0.005,0.272s0.009,0.151,0.015,0.225\n\t\t\tc0.003,0.018,0.002,0.03-0.005,0.04s-0.019,0.017-0.037,0.024c-0.175,0.063-0.394,0.14-0.647,0.202s-0.543,0.107-0.858,0.107\n\t\t\tc-0.518,0-0.91-0.119-1.173-0.377s-0.396-0.653-0.396-1.206v-1.548v-1.548c0-0.018,0.002-0.032,0.009-0.042\n\t\t\ts0.019-0.015,0.04-0.015h0.336h0.336c0.018,0,0.03,0.004,0.038,0.012s0.012,0.021,0.012,0.038v1.495V25.912z", + key: 3, + }), + r.createElement("path", { + className: "st2", + d: + "M23.138,23.565h-0.588h-0.588c-0.018,0-0.03-0.003-0.037-0.012s-0.009-0.023-0.005-0.044l0.042-0.294\n\t\t\tl0.042-0.294c0.003-0.018,0.009-0.03,0.017-0.038s0.021-0.012,0.038-0.012h1.471H25c0.021,0,0.035,0.004,0.045,0.013\n\t\t\ts0.015,0.023,0.019,0.044l0.028,0.291l0.028,0.291c0.003,0.021,0,0.035-0.009,0.044s-0.023,0.012-0.04,0.012h-0.585H23.9v1.961\n\t\t\tv1.961c0,0.017-0.003,0.031-0.012,0.041s-0.023,0.015-0.044,0.015h-0.326h-0.326c-0.021,0-0.035-0.003-0.044-0.012\n\t\t\ts-0.012-0.023-0.012-0.044v-1.961V23.565z", + key: 4, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 13825: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#262600;}\n\t.st1{fill:#F6F600;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M10.11,26.228l-0.168,0.634l-0.168,0.634c-0.003,0.018-0.009,0.03-0.018,0.038s-0.024,0.011-0.045,0.011\n\t\t\tH9.399H9.087c-0.021,0-0.033-0.003-0.039-0.013s-0.006-0.026-0.003-0.05l0.602-2.108l0.602-2.108\n\t\t\tc0.01-0.039,0.019-0.073,0.026-0.125s0.012-0.12,0.016-0.225c0-0.014,0.004-0.024,0.01-0.031s0.015-0.011,0.025-0.011h0.445h0.445\n\t\t\tc0.014,0,0.024,0.002,0.032,0.008s0.013,0.017,0.017,0.034l0.676,2.287l0.676,2.287c0.004,0.017,0.004,0.031-0.002,0.041\n\t\t\ts-0.016,0.015-0.033,0.015h-0.35h-0.35c-0.017,0-0.031-0.003-0.042-0.01s-0.018-0.017-0.021-0.032l-0.175-0.637l-0.175-0.637\n\t\t\th-0.679H10.11z M11.294,25.534c-0.06-0.235-0.159-0.608-0.258-0.984s-0.194-0.756-0.247-1.005h-0.004h-0.004\n\t\t\tc-0.045,0.249-0.124,0.581-0.213,0.934s-0.189,0.726-0.277,1.055h0.501H11.294z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M13.21,27.383c-0.014-0.01-0.024-0.022-0.031-0.037s-0.011-0.032-0.011-0.053v-0.336v-0.336\n\t\t\tc0-0.01,0.007-0.021,0.018-0.026s0.025-0.005,0.039,0.005c0.158,0.108,0.329,0.187,0.505,0.239s0.356,0.076,0.531,0.076\n\t\t\tc0.256,0,0.436-0.067,0.552-0.171s0.169-0.246,0.169-0.396c0-0.133-0.033-0.254-0.128-0.378s-0.25-0.249-0.495-0.393l-0.126-0.067\n\t\t\tl-0.126-0.067c-0.361-0.203-0.593-0.408-0.736-0.628s-0.195-0.454-0.195-0.717c0-0.357,0.124-0.679,0.366-0.912\n\t\t\ts0.6-0.376,1.07-0.376c0.207,0,0.385,0.016,0.534,0.044s0.268,0.068,0.355,0.118c0.018,0.007,0.028,0.016,0.034,0.028\n\t\t\ts0.008,0.028,0.008,0.049v0.315v0.315c0,0.014-0.007,0.026-0.017,0.032s-0.025,0.006-0.039-0.004\n\t\t\tc-0.108-0.07-0.241-0.123-0.389-0.158s-0.308-0.052-0.473-0.052c-0.27,0-0.448,0.077-0.56,0.184s-0.155,0.246-0.155,0.368\n\t\t\tc0,0.133,0.033,0.249,0.127,0.365s0.248,0.231,0.489,0.364l0.112,0.06l0.112,0.06c0.399,0.221,0.65,0.438,0.8,0.665\n\t\t\ts0.201,0.466,0.201,0.728c0,0.389-0.142,0.718-0.399,0.95s-0.63,0.367-1.092,0.367c-0.207,0-0.404-0.019-0.583-0.057\n\t\t\tS13.34,27.457,13.21,27.383z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M17.299,23.565H16.71h-0.588c-0.018,0-0.03-0.003-0.037-0.012s-0.009-0.023-0.005-0.044l0.042-0.294\n\t\t\tl0.042-0.294c0.003-0.018,0.009-0.03,0.017-0.038s0.021-0.012,0.038-0.012h1.471h1.471c0.021,0,0.035,0.004,0.045,0.013\n\t\t\ts0.015,0.023,0.019,0.044l0.028,0.291l0.028,0.291c0.003,0.021,0,0.035-0.009,0.044s-0.023,0.012-0.04,0.012h-0.585h-0.585v1.961\n\t\t\tv1.961c0,0.017-0.003,0.031-0.012,0.041s-0.023,0.015-0.044,0.015H17.68h-0.326c-0.021,0-0.035-0.003-0.044-0.012\n\t\t\ts-0.012-0.023-0.012-0.044v-1.961V23.565z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M21.835,25.135l0.609,1.169l0.609,1.169c0.011,0.018,0.012,0.035,0.007,0.048s-0.018,0.022-0.035,0.022\n\t\t\th-0.378H22.27c-0.024,0-0.042-0.003-0.056-0.012s-0.025-0.023-0.035-0.044c-0.14-0.287-0.28-0.574-0.422-0.867\n\t\t\ts-0.285-0.59-0.432-0.899h-0.003h-0.003c-0.13,0.291-0.267,0.591-0.406,0.889s-0.281,0.596-0.421,0.883\n\t\t\tc-0.01,0.018-0.021,0.03-0.033,0.038s-0.026,0.011-0.044,0.011h-0.36h-0.36c-0.021,0-0.033-0.009-0.038-0.021\n\t\t\ts-0.001-0.028,0.01-0.042l0.595-1.134l0.595-1.134l-0.574-1.138l-0.574-1.138c-0.014-0.018-0.014-0.033-0.007-0.045\n\t\t\ts0.021-0.019,0.035-0.019h0.375h0.375c0.021,0,0.037,0.002,0.049,0.009s0.021,0.02,0.028,0.041\n\t\t\tc0.137,0.287,0.275,0.573,0.412,0.859s0.271,0.573,0.401,0.864h0.003h0.003c0.126-0.287,0.259-0.574,0.394-0.86\n\t\t\ts0.272-0.572,0.405-0.855c0.01-0.018,0.019-0.032,0.031-0.042s0.026-0.015,0.047-0.015h0.35h0.35c0.018,0,0.03,0.007,0.035,0.019\n\t\t\ts0.003,0.027-0.008,0.045l-0.574,1.1L21.835,25.135z", + key: 3, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M9.792,17.429c-0.032-0.024-0.056-0.052-0.072-0.086s-0.024-0.074-0.024-0.122v-0.768v-0.768\n\t\t\tc0-0.024,0.016-0.048,0.04-0.06s0.056-0.012,0.088,0.012c0.36,0.248,0.752,0.428,1.155,0.546s0.814,0.174,1.215,0.174\n\t\t\tc0.584,0,0.996-0.152,1.262-0.39s0.386-0.562,0.386-0.907c0-0.304-0.076-0.58-0.292-0.862s-0.572-0.57-1.132-0.898l-0.288-0.152\n\t\t\tl-0.288-0.152c-0.824-0.464-1.356-0.933-1.682-1.435s-0.446-1.038-0.446-1.638c0-0.816,0.284-1.553,0.836-2.085\n\t\t\ts1.372-0.86,2.445-0.86c0.472,0,0.88,0.036,1.22,0.1s0.612,0.156,0.812,0.268c0.04,0.016,0.064,0.036,0.078,0.064\n\t\t\ts0.018,0.064,0.018,0.112v0.72v0.72c0,0.032-0.016,0.06-0.04,0.074s-0.056,0.014-0.088-0.01c-0.248-0.16-0.552-0.28-0.888-0.36\n\t\t\ts-0.704-0.12-1.081-0.12c-0.616,0-1.024,0.176-1.278,0.422S11.393,9.53,11.393,9.81c0,0.304,0.076,0.568,0.29,0.832\n\t\t\ts0.566,0.528,1.118,0.832l0.256,0.136l0.256,0.136c0.912,0.504,1.485,1,1.829,1.521s0.46,1.064,0.46,1.664\n\t\t\tc0,0.888-0.324,1.641-0.912,2.171s-1.44,0.839-2.497,0.839c-0.472,0-0.924-0.044-1.333-0.13S10.088,17.597,9.792,17.429z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M17.921,9.906c0.024,0,0.048,0.008,0.068,0.024s0.036,0.04,0.044,0.072c0.464,1.537,0.796,2.721,1.034,3.617\n\t\t\ts0.382,1.504,0.47,1.888c0.192-0.72,0.42-1.532,0.68-2.445s0.552-1.925,0.872-3.045c0.008-0.04,0.024-0.068,0.048-0.086\n\t\t\ts0.056-0.026,0.096-0.026h0.736h0.736c0.048,0,0.076,0.012,0.09,0.034s0.014,0.054,0.006,0.094\n\t\t\tc-0.552,1.905-1.136,3.742-1.717,5.446s-1.156,3.277-1.693,4.654c-0.016,0.032-0.032,0.06-0.058,0.082s-0.062,0.038-0.118,0.046\n\t\t\tl-0.784,0.056l-0.784,0.056c-0.048,0-0.076-0.012-0.086-0.036s-0.002-0.06,0.022-0.109c0.184-0.416,0.336-0.796,0.496-1.214\n\t\t\ts0.328-0.874,0.544-1.442c0.008-0.04,0.016-0.076,0.018-0.112s-0.002-0.072-0.018-0.112c-0.216-0.648-0.624-1.829-1.08-3.173\n\t\t\ts-0.96-2.853-1.369-4.158c-0.016-0.04-0.016-0.068-0.004-0.086s0.036-0.026,0.068-0.026h0.84H17.921z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 25927: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#022326;}\n\t.st1{fill:#0DEBFF;}\n\t.st2{fill:#FAFAFA;}\n\t.st3{fill:#CCFBFF;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M14.035,27.425c0,0.021-0.004,0.037-0.011,0.049s-0.02,0.021-0.037,0.028\n\t\t\tc-0.091,0.039-0.21,0.065-0.344,0.082s-0.283,0.024-0.434,0.024c-0.546,0-1.061-0.179-1.439-0.568s-0.62-0.988-0.62-1.828\n\t\t\tc0-0.722,0.214-1.324,0.59-1.746s0.916-0.663,1.567-0.663c0.172,0,0.321,0.009,0.443,0.025s0.219,0.041,0.285,0.072\n\t\t\tc0.018,0.007,0.028,0.016,0.034,0.028s0.008,0.028,0.008,0.049v0.301v0.301c0,0.028-0.007,0.042-0.017,0.048\n\t\t\ts-0.022,0.004-0.032,0.001c-0.084-0.042-0.189-0.075-0.31-0.098s-0.257-0.035-0.404-0.035c-0.41,0-0.751,0.156-0.99,0.445\n\t\t\ts-0.375,0.713-0.375,1.249c0,0.662,0.187,1.091,0.452,1.354s0.606,0.361,0.914,0.361c0.14,0,0.257-0.005,0.365-0.019\n\t\t\ts0.206-0.037,0.307-0.072c0.014-0.007,0.026-0.01,0.035-0.006s0.014,0.017,0.014,0.041v0.287V27.425z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M15.637,26.228l-0.168,0.634l-0.168,0.634c-0.003,0.018-0.009,0.03-0.018,0.038s-0.024,0.011-0.045,0.011\n\t\t\th-0.312h-0.312c-0.021,0-0.033-0.003-0.039-0.013s-0.006-0.026-0.003-0.05l0.602-2.108l0.602-2.108\n\t\t\tc0.01-0.039,0.019-0.073,0.026-0.125s0.012-0.12,0.016-0.225c0-0.014,0.004-0.024,0.01-0.031s0.015-0.011,0.025-0.011h0.445h0.445\n\t\t\tc0.014,0,0.024,0.002,0.032,0.008s0.013,0.017,0.017,0.034l0.676,2.287l0.676,2.287c0.003,0.017,0.003,0.031-0.002,0.041\n\t\t\ts-0.016,0.015-0.033,0.015h-0.35h-0.35c-0.018,0-0.032-0.003-0.042-0.01s-0.018-0.017-0.021-0.032l-0.175-0.637l-0.175-0.637\n\t\t\th-0.679H15.637z M16.82,25.534c-0.059-0.235-0.159-0.608-0.257-0.984s-0.194-0.756-0.247-1.005h-0.004h-0.004\n\t\t\tc-0.045,0.249-0.124,0.581-0.213,0.934s-0.189,0.726-0.277,1.055h0.501H16.82z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M19.096,23.565h-0.588h-0.588c-0.018,0-0.03-0.003-0.037-0.012s-0.009-0.023-0.005-0.044l0.042-0.294\n\t\t\tl0.042-0.294c0.003-0.018,0.009-0.03,0.017-0.038s0.021-0.012,0.038-0.012h1.471h1.471c0.021,0,0.035,0.004,0.045,0.013\n\t\t\ts0.015,0.023,0.019,0.044l0.028,0.291l0.028,0.291c0.003,0.021,0,0.035-0.009,0.044s-0.023,0.012-0.04,0.012h-0.585h-0.585v1.961\n\t\t\tv1.961c0,0.017-0.003,0.031-0.012,0.041s-0.023,0.015-0.044,0.015h-0.326h-0.326c-0.021,0-0.035-0.003-0.044-0.012\n\t\t\ts-0.012-0.023-0.012-0.044v-1.961V23.565z", + key: 2, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st3", + d: + "M11.44,17.797c-0.056,0-0.092-0.012-0.114-0.036s-0.03-0.06-0.03-0.109V12.45V7.249\n\t\t\tc0-0.04,0.008-0.072,0.026-0.094s0.046-0.034,0.086-0.034h0.768h0.768c0.04,0,0.064,0.008,0.078,0.026s0.018,0.046,0.018,0.086\n\t\t\tv4.49v4.49h2.001h2.001c0.04,0,0.068,0.008,0.084,0.026s0.02,0.046,0.012,0.086l-0.12,0.68l-0.12,0.68\n\t\t\tc-0.008,0.04-0.024,0.068-0.048,0.086s-0.056,0.026-0.096,0.026h-2.657H11.44z", + key: 0, + }), + r.createElement("path", { + className: "st3", + d: + "M18.064,11.522c0-0.056,0-0.156-0.006-0.31s-0.018-0.362-0.042-0.634c0-0.04,0.004-0.064,0.016-0.082\n\t\t\ts0.032-0.03,0.064-0.046c0.296-0.12,0.792-0.288,1.41-0.426s1.358-0.246,2.143-0.246c0.04,0,0.068,0.004,0.086,0.018\n\t\t\ts0.026,0.038,0.026,0.078v0.704v0.704c0,0.04-0.008,0.064-0.026,0.078s-0.046,0.018-0.086,0.018\n\t\t\tc-0.304-0.016-0.68-0.004-1.022,0.03s-0.65,0.09-0.819,0.162v3.057v3.057c0,0.04-0.008,0.068-0.026,0.086\n\t\t\ts-0.046,0.026-0.086,0.026h-0.76h-0.76c-0.04,0-0.068-0.008-0.086-0.026s-0.026-0.046-0.026-0.086v-3.081V11.522z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 56848: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#002620;}\n\t.st1{fill:#00FAD0;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M11.945,27.425c0,0.021-0.004,0.037-0.011,0.049s-0.02,0.021-0.037,0.028\n\t\t\tc-0.091,0.039-0.21,0.065-0.344,0.082s-0.283,0.024-0.433,0.024c-0.546,0-1.061-0.179-1.44-0.568s-0.62-0.988-0.62-1.828\n\t\t\tc0-0.722,0.214-1.324,0.59-1.746s0.916-0.663,1.567-0.663c0.172,0,0.321,0.009,0.443,0.025s0.219,0.041,0.285,0.072\n\t\t\tc0.018,0.007,0.028,0.016,0.034,0.028s0.008,0.028,0.008,0.049v0.301v0.301c0,0.028-0.007,0.042-0.017,0.048\n\t\t\ts-0.022,0.004-0.032,0.001c-0.084-0.042-0.189-0.075-0.31-0.098s-0.257-0.035-0.404-0.035c-0.41,0-0.751,0.156-0.99,0.445\n\t\t\ts-0.375,0.713-0.375,1.249c0,0.662,0.187,1.091,0.452,1.354s0.606,0.361,0.914,0.361c0.14,0,0.257-0.005,0.365-0.019\n\t\t\ts0.206-0.037,0.307-0.072c0.014-0.007,0.026-0.01,0.035-0.006s0.014,0.017,0.014,0.041v0.287V27.425z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M12.755,22.936c0-0.018,0.002-0.03,0.009-0.038s0.019-0.014,0.041-0.017c0.08-0.004,0.236-0.009,0.431-0.014\n\t\t\ts0.43-0.008,0.668-0.008c0.711,0,1.243,0.229,1.597,0.627s0.531,0.963,0.531,1.636c0,0.935-0.306,1.544-0.731,1.919\n\t\t\ts-0.967,0.517-1.44,0.517c-0.178,0-0.397-0.002-0.595-0.004s-0.375-0.006-0.469-0.009c-0.014,0-0.024-0.005-0.031-0.015\n\t\t\ts-0.011-0.024-0.011-0.041v-2.276V22.936z M13.519,26.871c0.059,0.004,0.115,0.008,0.173,0.01s0.117,0.004,0.184,0.004\n\t\t\tc0.392,0,0.734-0.138,0.978-0.426s0.391-0.723,0.395-1.318c0.003-0.581-0.146-0.984-0.389-1.241s-0.581-0.369-0.956-0.369\n\t\t\tc-0.074,0-0.14,0.002-0.203,0.004s-0.122,0.006-0.182,0.009v1.663V26.871z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M16.935,27.544c-0.024,0-0.04-0.005-0.05-0.016s-0.013-0.026-0.013-0.047v-2.276v-2.276\n\t\t\tc0-0.018,0.004-0.032,0.011-0.042s0.02-0.015,0.038-0.015h0.336h0.336c0.018,0,0.028,0.004,0.034,0.012s0.008,0.021,0.008,0.038\n\t\t\tv1.964v1.964h0.875h0.875c0.018,0,0.03,0.003,0.037,0.011s0.009,0.02,0.005,0.038l-0.052,0.298l-0.052,0.298\n\t\t\tc-0.003,0.018-0.01,0.03-0.021,0.038s-0.025,0.011-0.042,0.011h-1.163H16.935z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M22.011,25.135l0.609,1.169l0.609,1.169c0.011,0.018,0.012,0.035,0.007,0.048s-0.018,0.022-0.035,0.022\n\t\t\th-0.378h-0.378c-0.024,0-0.042-0.003-0.056-0.012s-0.025-0.023-0.035-0.044c-0.14-0.287-0.28-0.574-0.422-0.867\n\t\t\ts-0.285-0.59-0.432-0.899h-0.003h-0.003c-0.13,0.291-0.267,0.591-0.406,0.889s-0.281,0.596-0.421,0.883\n\t\t\tc-0.01,0.018-0.021,0.03-0.033,0.038s-0.026,0.011-0.044,0.011h-0.36h-0.36c-0.021,0-0.033-0.009-0.038-0.021\n\t\t\ts-0.001-0.028,0.01-0.042l0.595-1.134l0.595-1.134l-0.574-1.138l-0.574-1.138c-0.014-0.018-0.014-0.033-0.007-0.045\n\t\t\ts0.021-0.019,0.035-0.019h0.375h0.375c0.021,0,0.037,0.002,0.049,0.009s0.021,0.02,0.028,0.041\n\t\t\tc0.137,0.287,0.275,0.573,0.412,0.859s0.271,0.573,0.401,0.864h0.003h0.003c0.126-0.287,0.259-0.574,0.394-0.86\n\t\t\ts0.272-0.572,0.405-0.855c0.01-0.018,0.019-0.032,0.031-0.042s0.026-0.015,0.047-0.015h0.35h0.35c0.018,0,0.03,0.007,0.035,0.019\n\t\t\ts0.003,0.027-0.008,0.045l-0.574,1.1L22.011,25.135z", + key: 3, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M10.657,14.788l-0.384,1.448l-0.384,1.448c-0.008,0.04-0.02,0.068-0.042,0.086s-0.054,0.026-0.102,0.026\n\t\t\tH9.032H8.32c-0.048,0-0.076-0.008-0.09-0.03s-0.014-0.058-0.006-0.114l1.376-4.818l1.376-4.818\n\t\t\tc0.024-0.088,0.044-0.168,0.06-0.286s0.028-0.274,0.036-0.514c0-0.032,0.008-0.056,0.022-0.072s0.034-0.024,0.058-0.024h1.016\n\t\t\th1.016c0.032,0,0.056,0.004,0.074,0.018s0.03,0.038,0.038,0.078l1.545,5.226l1.545,5.226c0.008,0.04,0.008,0.072-0.004,0.094\n\t\t\ts-0.036,0.034-0.076,0.034h-0.8h-0.8c-0.04,0-0.072-0.008-0.096-0.024s-0.04-0.04-0.048-0.072l-0.4-1.457l-0.4-1.457h-1.553\n\t\t\tH10.657z M13.362,13.203c-0.136-0.536-0.364-1.389-0.589-2.249s-0.444-1.729-0.564-2.297h-0.008h-0.008\n\t\t\tc-0.104,0.568-0.284,1.328-0.488,2.135s-0.432,1.659-0.632,2.411h1.145H13.362z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M23.011,16.18c0,0.056,0.004,0.168,0.012,0.334s0.02,0.386,0.036,0.658c0,0.032-0.004,0.056-0.016,0.074\n\t\t\ts-0.032,0.03-0.064,0.039c-0.424,0.16-0.869,0.324-1.355,0.448s-1.015,0.208-1.607,0.208c-0.728,0-1.44-0.14-1.97-0.56\n\t\t\ts-0.878-1.121-0.878-2.241v-2.553v-2.553c0-0.04,0.008-0.072,0.026-0.094s0.046-0.034,0.086-0.034h0.76h0.76\n\t\t\tc0.04,0,0.068,0.012,0.086,0.034s0.026,0.054,0.026,0.094v2.449v2.449c0,0.472,0.092,0.836,0.308,1.082s0.557,0.374,1.053,0.374\n\t\t\tc0.2,0,0.388-0.02,0.556-0.052s0.316-0.076,0.436-0.124v-3.089v-3.089c0-0.04,0.008-0.072,0.026-0.094s0.046-0.034,0.086-0.034\n\t\t\th0.76h0.76c0.048,0,0.076,0.012,0.092,0.034s0.02,0.054,0.02,0.094v3.073V16.18z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 53009: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#260A33;}\n\t.st1{fill:#D480FF;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M9.746,22.929c0-0.014,0.002-0.026,0.008-0.035S9.77,22.88,9.788,22.88c0.137-0.007,0.305-0.013,0.491-0.016\n\t\t\ts0.391-0.005,0.602-0.005c0.588,0,1.01,0.161,1.285,0.426s0.403,0.632,0.403,1.045c0,0.54-0.194,0.925-0.509,1.175\n\t\t\ts-0.749,0.366-1.229,0.366c-0.081,0-0.135-0.002-0.183-0.003s-0.09-0.003-0.146-0.003v0.816v0.816c0,0.018-0.003,0.03-0.011,0.038\n\t\t\ts-0.02,0.011-0.038,0.011h-0.329H9.795c-0.018,0-0.03-0.003-0.038-0.011s-0.011-0.02-0.011-0.038v-2.283V22.929z M10.502,25.184\n\t\t\tc0.049,0.003,0.093,0.005,0.145,0.006s0.114,0.001,0.198,0.001c0.249,0,0.489-0.044,0.666-0.172s0.293-0.34,0.293-0.676\n\t\t\tc0-0.27-0.082-0.472-0.235-0.608s-0.377-0.204-0.661-0.204c-0.084,0-0.166,0.002-0.237,0.004s-0.13,0.006-0.169,0.009v0.819\n\t\t\tV25.184z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M14.072,27.495c0,0.018-0.004,0.03-0.011,0.038s-0.02,0.011-0.037,0.011h-0.322h-0.322\n\t\t\tc-0.021,0-0.035-0.003-0.044-0.012s-0.012-0.023-0.012-0.044v-2.273v-2.273c0-0.018,0.004-0.033,0.011-0.044\n\t\t\ts0.018-0.018,0.031-0.018c0.172-0.007,0.338-0.013,0.526-0.016s0.398-0.005,0.657-0.005c0.501,0,0.902,0.119,1.178,0.347\n\t\t\ts0.426,0.564,0.426,0.998c0,0.357-0.119,0.636-0.288,0.843s-0.388,0.344-0.588,0.418c0.102,0.175,0.324,0.574,0.549,0.982\n\t\t\ts0.453,0.824,0.565,1.034c0.01,0.018,0.016,0.033,0.012,0.045s-0.016,0.019-0.041,0.019h-0.364h-0.364\n\t\t\tc-0.025,0-0.042-0.003-0.055-0.01s-0.022-0.015-0.029-0.026c-0.08-0.14-0.247-0.452-0.433-0.802s-0.393-0.739-0.554-1.033h-0.245\n\t\t\th-0.245v0.911V27.495z M14.5,25.002c0.256,0,0.476-0.051,0.633-0.167s0.249-0.299,0.249-0.561c0-0.256-0.084-0.441-0.233-0.563\n\t\t\ts-0.362-0.179-0.622-0.179c-0.091,0-0.18,0.002-0.259,0.004s-0.147,0.006-0.196,0.009v0.729v0.729h0.214H14.5z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M20.458,25.163c0.003,0.781-0.174,1.392-0.49,1.808s-0.771,0.637-1.325,0.637c-0.56,0-1.012-0.231-1.323-0.65\n\t\t\ts-0.483-1.025-0.483-1.774c0-0.729,0.184-1.322,0.503-1.733s0.775-0.641,1.318-0.641c0.567,0,1.017,0.242,1.325,0.657\n\t\t\tS20.458,24.47,20.458,25.163z M18.672,26.921c0.326,0,0.576-0.168,0.745-0.47s0.257-0.738,0.257-1.274\n\t\t\tc-0.004-0.532-0.099-0.952-0.274-1.24s-0.431-0.441-0.756-0.441c-0.294,0-0.548,0.133-0.728,0.411s-0.287,0.699-0.287,1.277\n\t\t\tc0,0.504,0.088,0.939,0.262,1.247S18.325,26.921,18.672,26.921z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M21.52,22.922c0-0.018,0.004-0.03,0.013-0.038s0.023-0.012,0.044-0.012h0.329h0.329\n\t\t\tc0.021,0,0.033,0.004,0.04,0.012s0.009,0.021,0.009,0.038v1.729v1.729c0,0.109-0.003,0.216-0.012,0.317s-0.023,0.195-0.044,0.279\n\t\t\tc-0.077,0.336-0.238,0.569-0.453,0.718s-0.482,0.214-0.773,0.214c-0.046,0-0.09-0.002-0.132-0.005s-0.082-0.009-0.121-0.016\n\t\t\tc-0.021-0.003-0.033-0.01-0.04-0.021S20.7,27.838,20.7,27.817V27.53v-0.287c0-0.018,0.004-0.03,0.012-0.037\n\t\t\ts0.02-0.009,0.037-0.005c0.039,0.003,0.067,0.005,0.091,0.006s0.046,0.001,0.07,0.001c0.186,0,0.338-0.04,0.444-0.155\n\t\t\ts0.166-0.304,0.166-0.602v-1.765V22.922z", + key: 3, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M15.483,17.524c0,0.048-0.008,0.084-0.026,0.113s-0.046,0.048-0.086,0.064\n\t\t\tc-0.208,0.088-0.48,0.148-0.786,0.186s-0.646,0.054-0.99,0.054c-1.249,0-2.425-0.408-3.289-1.297s-1.417-2.257-1.417-4.178\n\t\t\tc0-1.649,0.488-3.025,1.348-3.99S12.33,6.96,13.818,6.96c0.392,0,0.733,0.02,1.013,0.058s0.5,0.094,0.652,0.166\n\t\t\tc0.04,0.016,0.064,0.036,0.078,0.064s0.018,0.064,0.018,0.112v0.688v0.688c0,0.064-0.016,0.096-0.038,0.11s-0.05,0.01-0.074,0.002\n\t\t\tc-0.192-0.096-0.432-0.172-0.708-0.224s-0.588-0.08-0.924-0.08c-0.936,0-1.717,0.356-2.263,1.019s-0.858,1.631-0.858,2.855\n\t\t\tc0,1.512,0.428,2.493,1.032,3.095s1.384,0.826,2.089,0.826c0.32,0,0.588-0.012,0.834-0.044s0.47-0.084,0.702-0.164\n\t\t\tc0.032-0.016,0.06-0.024,0.08-0.014s0.032,0.038,0.032,0.094v0.656V17.524z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M18.537,17.685c0,0.04-0.008,0.068-0.024,0.086s-0.04,0.026-0.072,0.026h-0.768h-0.768\n\t\t\tc-0.04,0-0.068-0.012-0.086-0.032s-0.026-0.048-0.026-0.08v-5.234V7.217c0-0.032,0.004-0.056,0.02-0.072s0.044-0.024,0.092-0.024\n\t\t\th0.768h0.768c0.032,0,0.056,0.008,0.072,0.024s0.024,0.04,0.024,0.072v1.593v1.593c0.248-0.192,0.524-0.348,0.834-0.456\n\t\t\ts0.654-0.168,1.039-0.168c0.52,0,1.1,0.132,1.551,0.556s0.771,1.14,0.771,2.309v2.513v2.513c0,0.048-0.008,0.08-0.026,0.1\n\t\t\ts-0.046,0.028-0.086,0.028h-0.76h-0.76c-0.04,0-0.068-0.012-0.086-0.034s-0.026-0.054-0.026-0.094v-2.425v-2.425\n\t\t\tc0-0.48-0.1-0.852-0.296-1.105s-0.488-0.384-0.872-0.384c-0.248,0-0.48,0.04-0.694,0.12s-0.411,0.2-0.587,0.36v2.937V17.685z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 82540: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("defs", { key: 0 }, r.createElement("style", null, ".cls-1{fill:#013301;}.cls-2{fill:#3f6;}.cls-3{fill:#fff;}")), + r.createElement("title", { key: 1 }, "Artboard 1"), + r.createElement("path", { + className: "cls-1", + d: "M6,31.5A2.50283,2.50283,0,0,1,3.5,29V3A2.50283,2.50283,0,0,1,6,.5H21.38025a1.98669,1.98669,0,0,1,1.4115.58325l5.12,5.102A2.01365,2.01365,0,0,1,28.5,7.602V29A2.50283,2.50283,0,0,1,26,31.5Z", + key: 2, + }), + r.createElement("path", { + className: "cls-2", + d: + "M21.38,1a1.49917,1.49917,0,0,1,1.05875.4375l5.12,5.102A1.49984,1.49984,0,0,1,28,7.602V29a2.00009,2.00009,0,0,1-2,2H6a2.00009,2.00009,0,0,1-2-2V3A2.0001,2.0001,0,0,1,6,1H21.38m0-1H6A3.00334,3.00334,0,0,0,3,3V29a3.00333,3.00333,0,0,0,3,3H26a3.00333,3.00333,0,0,0,3-3V7.602a2.51755,2.51755,0,0,0-.73525-1.771l-5.12-5.10174A2.4842,2.4842,0,0,0,21.38,0Z", + key: 3, + }), + r.createElement("path", { + className: "cls-3", + d: + "M12.31275,22.78223a.06025.06025,0,0,1,.00883-.03873.06243.06243,0,0,1,.04061-.01767c.08112-.00354.238-.00885.43463-.01328s.43286-.008.67267-.008a2.05969,2.05969,0,0,1,1.6091.63132,2.42144,2.42144,0,0,1,.53519,1.647,2.45043,2.45043,0,0,1-.73621,1.93354,2.1927,2.1927,0,0,1-1.4503.521c-.17987,0-.4003-.00177-.59956-.00442s-.37736-.0062-.47258-.00974a.037.037,0,0,1-.03175-.015.07009.07009,0,0,1-.01061-.04139v-4.5847Zm.76892,3.96387c.05994.00354.11636.00708.17455.00974s.11811.00442.18507.00442a1.24519,1.24519,0,0,0,.98488-.42844,2.02423,2.02423,0,0,0,.39757-1.32767,1.74261,1.74261,0,0,0-.39144-1.25024,1.28067,1.28067,0,0,0-.96281-.37207c-.074,0-.141.00177-.20449.0044s-.12339.0061-.18333.00952V26.7461Z", + key: 4, + }), + r.createElement("path", { + className: "cls-3", + d: + "M16.51734,27.42334c-.04224,0-.0564-.01416-.0564-.05639V22.76807a.04458.04458,0,0,1,.03927-.04932H17.385c.04223,0,.05639.00709.07055.04224.416.88184,1.34717,3.06836,1.53051,3.53394h.00708c-.01416-.21875-.03541-.57862-.03541-1.14282v-2.384c0-.02807.01417-.04932.05665-.04932h.6135c.04223,0,.05639.01417.05639.0564v4.58472c0,.04932-.021.0635-.07055.0635h-.78295c-.04932,0-.07032-.01416-.0845-.04932-.32446-.76172-1.36841-3.08227-1.59424-3.75244h-.00684c.021.31739.03516.73365.03516,1.30493V27.367c0,.03516-.01416.0564-.04932.0564Z", + key: 5, + }), + r.createElement("g", { id: "_512", "data-name": " 512", key: 6 }, [ + r.createElement("path", { + className: "cls-2", + d: + "M7.36225,17.23544V6.88094a.11865.11865,0,0,1,.10637-.12975l.00761-.0005q.2442-.016.71635-.02443.472-.008,1.1071-.01628.63492-.008,1.35129-.00813a6.99609,6.99609,0,0,1,3.23984.6675,4.50915,4.50915,0,0,1,1.92925,1.83157,5.44806,5.44806,0,0,1,.64308,2.67817,5.97442,5.97442,0,0,1-.33375,2.07579,4.84327,4.84327,0,0,1-.91171,1.5548,5.4216,5.4216,0,0,1-1.31058,1.08267,5.76527,5.76527,0,0,1-1.56295.63494,6.88075,6.88075,0,0,1-1.64436.2035H9.48689q-.64332,0-1.19664-.00813-.55363-.00839-.83029-.02442Q7.3623,17.39824,7.36225,17.23544ZM9.609,8.70438v6.74018q.179,0,.3256.00815.14658.00839.30122.01628.1545.00838.35.00813a4.361,4.361,0,0,0,1.44894-.22791,2.96365,2.96365,0,0,0,1.11524-.6838,3.07121,3.07121,0,0,0,.71632-1.12337,4.25988,4.25988,0,0,0,.25237-1.51409,3.81979,3.81979,0,0,0-.24422-1.42455,2.69757,2.69757,0,0,0-.70817-1.0257,2.89975,2.89975,0,0,0-1.1071-.61052A4.82873,4.82873,0,0,0,10.651,8.67182q-.32589,0-.54541.00813Q9.88578,8.68835,9.609,8.70438Z", + key: 0, + }), + r.createElement("path", { + className: "cls-2", + d: + "M17.68394,17.25172v-6.0564q0-.27665-.00812-.61868-.0084-.34188-.02441-.65121-.01639-.30909-.0326-.48843a.0968.0968,0,0,1,.0163-.09768.13281.13281,0,0,1,.09771-.03256H19.426a.36362.36362,0,0,1,.16277.03256.1533.1533,0,0,1,.08142.114l.07327.2198a1.36851,1.36851,0,0,1,.057.30119,3.27033,3.27033,0,0,1,1.0745-.6268A3.69812,3.69812,0,0,1,22.096,9.144a3.09672,3.09672,0,0,1,.95242.15466,2.40595,2.40595,0,0,1,1.53853,1.49781,4.5262,4.5262,0,0,1,.24421,1.61993v4.83535q0,.14652-.13025.1465h-1.97a.14385.14385,0,0,1-.16283-.1628v-4.6237a2.03345,2.03345,0,0,0-.1465-.83031,1.16371,1.16371,0,0,0-.41513-.50469,1.22533,1.22533,0,0,0-.69194-.17908,2.026,2.026,0,0,0-.76521.13837,1.931,1.931,0,0,0-.60238.3826v5.63311q0,.14652-.13025.1465H17.83045a.12956.12956,0,0,1-.14654-.1465Z", + key: 1, + }), + ]), + ]); + } + (o.defaultProps = { id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 32 32" }), (e.exports = o), (o.default = o); + }, + 1914: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#0A2600;}\n\t.st1{fill:#76ED3C;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M11.751,22.936c0-0.018,0.002-0.03,0.009-0.038s0.019-0.014,0.041-0.017c0.08-0.004,0.236-0.009,0.431-0.014\n\t\t\ts0.43-0.008,0.668-0.008c0.711,0,1.243,0.229,1.597,0.627s0.531,0.963,0.531,1.636c0,0.935-0.306,1.544-0.731,1.919\n\t\t\ts-0.967,0.517-1.44,0.517c-0.178,0-0.397-0.002-0.595-0.004s-0.375-0.006-0.469-0.009c-0.014,0-0.024-0.005-0.031-0.015\n\t\t\ts-0.011-0.024-0.011-0.041v-2.276V22.936z M12.515,26.871c0.059,0.004,0.115,0.008,0.173,0.01s0.117,0.004,0.184,0.004\n\t\t\tc0.392,0,0.734-0.138,0.978-0.426s0.391-0.723,0.395-1.318c0.003-0.581-0.146-0.984-0.389-1.241s-0.581-0.369-0.956-0.369\n\t\t\tc-0.074,0-0.14,0.002-0.203,0.004s-0.122,0.006-0.182,0.009v1.663V26.871z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M19.243,26.557h0.003h0.003c0.032-0.217,0.088-0.583,0.187-1.165s0.241-1.38,0.444-2.463\n\t\t\tc0.003-0.021,0.009-0.035,0.017-0.044s0.021-0.013,0.038-0.013h0.329h0.329c0.018,0,0.032,0.005,0.04,0.016\n\t\t\ts0.01,0.026,0.002,0.047l-0.494,2.283l-0.494,2.283c-0.007,0.018-0.014,0.028-0.024,0.034s-0.022,0.008-0.039,0.008h-0.364h-0.364\n\t\t\tc-0.021,0-0.033-0.002-0.042-0.008s-0.014-0.017-0.021-0.034c-0.094-0.455-0.238-1.213-0.372-1.939s-0.259-1.419-0.315-1.745\n\t\t\th-0.003h-0.003c-0.049,0.326-0.187,1.028-0.337,1.756s-0.311,1.483-0.406,1.914c-0.003,0.021-0.01,0.035-0.022,0.044\n\t\t\ts-0.027,0.012-0.048,0.012h-0.357h-0.357c-0.017,0-0.03-0.003-0.039-0.011s-0.017-0.02-0.024-0.038l-0.49-2.283l-0.49-2.283\n\t\t\tc-0.003-0.021-0.002-0.035,0.005-0.044s0.017-0.013,0.031-0.013h0.357h0.357c0.014,0,0.026,0.002,0.036,0.009\n\t\t\ts0.017,0.02,0.02,0.041c0.238,1.173,0.389,1.976,0.487,2.539s0.144,0.885,0.172,1.096h0.003h0.003\n\t\t\tc0.039-0.245,0.1-0.588,0.208-1.152s0.262-1.348,0.486-2.476c0.007-0.021,0.016-0.035,0.027-0.044s0.025-0.013,0.043-0.013h0.378\n\t\t\th0.378c0.018,0,0.028,0.004,0.036,0.012s0.011,0.021,0.014,0.038c0.129,0.718,0.254,1.358,0.367,1.954\n\t\t\tS19.156,26.021,19.243,26.557z", + key: 1, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M7.552,7.265c0-0.04,0.004-0.068,0.02-0.088s0.044-0.032,0.092-0.04c0.184-0.008,0.54-0.02,0.986-0.03\n\t\t\ts0.982-0.018,1.527-0.018c1.625,0,2.841,0.524,3.651,1.433s1.214,2.201,1.214,3.738c0,2.137-0.7,3.529-1.671,4.388\n\t\t\ts-2.211,1.183-3.291,1.183c-0.408,0-0.908-0.004-1.361-0.01s-0.856-0.014-1.072-0.022c-0.032,0-0.056-0.012-0.072-0.034\n\t\t\ts-0.024-0.054-0.024-0.094v-5.202V7.265z M9.297,16.26c0.136,0.008,0.264,0.016,0.396,0.022s0.268,0.01,0.42,0.01\n\t\t\tc0.896,0,1.677-0.316,2.235-0.972s0.894-1.653,0.903-3.013c0.008-1.329-0.332-2.249-0.889-2.837s-1.328-0.844-2.185-0.844\n\t\t\tc-0.168,0-0.32,0.004-0.464,0.01s-0.28,0.014-0.416,0.022v3.802V16.26z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.763,17.797c-0.056,0-0.092-0.008-0.116-0.028s-0.036-0.052-0.044-0.1c-0.24-1.337-0.46-2.481-0.643-3.456\n\t\t\ts-0.326-1.779-0.414-2.435h-0.008h-0.008c-0.104,0.592-0.252,1.385-0.454,2.371s-0.458,2.167-0.778,3.535\n\t\t\tc-0.016,0.048-0.031,0.076-0.053,0.092s-0.05,0.02-0.09,0.02h-0.784h-0.784c-0.056,0-0.092-0.004-0.118-0.02\n\t\t\ts-0.042-0.044-0.058-0.092l-0.856-3.825l-0.856-3.825c-0.008-0.032-0.004-0.064,0.014-0.088s0.05-0.04,0.098-0.04h0.784h0.784\n\t\t\tc0.032,0,0.06,0.008,0.082,0.024s0.038,0.04,0.046,0.072c0.304,1.721,0.52,3.025,0.672,3.987s0.24,1.583,0.288,1.935h0.032h0.032\n\t\t\tc0.056-0.416,0.168-1.057,0.356-2.009s0.452-2.217,0.812-3.882c0.016-0.048,0.024-0.08,0.04-0.1s0.04-0.028,0.088-0.028h0.825\n\t\t\th0.825c0.04,0,0.064,0.008,0.08,0.026s0.024,0.046,0.031,0.086c0.28,1.577,0.512,2.861,0.687,3.852s0.29,1.687,0.338,2.087h0.024\n\t\t\th0.024c0.08-0.512,0.172-1.112,0.33-2.029s0.382-2.149,0.726-3.925c0.008-0.032,0.016-0.056,0.032-0.072s0.04-0.024,0.08-0.024\n\t\t\th0.736H25.3c0.032,0,0.06,0.008,0.076,0.026s0.02,0.046,0.004,0.086l-0.953,3.833l-0.953,3.833\n\t\t\tc-0.008,0.04-0.016,0.068-0.036,0.086s-0.052,0.026-0.108,0.026h-0.784H21.763z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 11215: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#0A2600;}\n\t.st1{fill:#76ED3C;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("path", { className: "st0", d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V1c0-0.276,0.224-0.5,0.5-0.5h24c0.276,0,0.5,0.224,0.5,0.5v28\n\tc0,1.379-1.121,2.5-2.5,2.5H6z", key: 1 }), + r.createElement("path", { className: "st1", d: "M28,0H4C3.45,0,3,0.45,3,1v28c0,1.65,1.35,3,3,3h20c1.65,0,3-1.35,3-3V1C29,0.45,28.55,0,28,0z M28,29\n\tc0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2V3h24V29z", key: 2 }), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M9.952,22.936c0-0.018,0.002-0.03,0.009-0.038s0.019-0.014,0.041-0.017c0.08-0.004,0.236-0.009,0.431-0.014\n\t\t\ts0.43-0.008,0.668-0.008c0.711,0,1.243,0.229,1.598,0.627s0.531,0.963,0.531,1.636c0,0.935-0.306,1.544-0.731,1.919\n\t\t\ts-0.967,0.517-1.44,0.517c-0.178,0-0.397-0.002-0.595-0.004s-0.375-0.006-0.469-0.009c-0.014,0-0.024-0.005-0.031-0.015\n\t\t\ts-0.011-0.024-0.011-0.041v-2.276V22.936z M10.716,26.871c0.059,0.004,0.115,0.008,0.173,0.01s0.117,0.004,0.184,0.004\n\t\t\tc0.392,0,0.734-0.138,0.978-0.426s0.391-0.723,0.395-1.318c0.004-0.581-0.145-0.984-0.389-1.241s-0.581-0.369-0.956-0.369\n\t\t\tc-0.073,0-0.14,0.002-0.203,0.004s-0.122,0.006-0.182,0.009v1.663V26.871z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M17.444,26.557h0.003h0.003c0.031-0.217,0.087-0.583,0.186-1.165s0.241-1.38,0.444-2.463\n\t\t\tc0.004-0.021,0.009-0.035,0.018-0.044s0.021-0.013,0.039-0.013h0.329h0.329c0.018,0,0.031,0.005,0.039,0.016\n\t\t\ts0.01,0.026,0.003,0.047l-0.494,2.283l-0.494,2.283c-0.007,0.018-0.014,0.028-0.024,0.034s-0.022,0.008-0.039,0.008h-0.364h-0.364\n\t\t\tc-0.021,0-0.033-0.002-0.042-0.008s-0.014-0.017-0.021-0.034c-0.094-0.455-0.238-1.213-0.372-1.939s-0.258-1.419-0.314-1.745\n\t\t\th-0.004h-0.004c-0.049,0.326-0.187,1.028-0.337,1.756s-0.311,1.483-0.405,1.914c-0.003,0.021-0.01,0.035-0.022,0.044\n\t\t\ts-0.027,0.012-0.048,0.012h-0.357h-0.357c-0.017,0-0.03-0.003-0.039-0.011s-0.017-0.02-0.024-0.038l-0.49-2.283l-0.49-2.283\n\t\t\tc-0.003-0.021-0.002-0.035,0.005-0.044s0.017-0.013,0.031-0.013h0.357h0.357c0.014,0,0.026,0.002,0.036,0.009\n\t\t\ts0.017,0.02,0.02,0.041c0.238,1.173,0.389,1.976,0.487,2.539s0.144,0.885,0.172,1.096h0.003h0.003\n\t\t\tc0.039-0.245,0.1-0.588,0.208-1.152s0.262-1.348,0.486-2.476c0.007-0.021,0.016-0.035,0.027-0.044s0.025-0.013,0.043-0.013h0.378\n\t\t\th0.378c0.018,0,0.028,0.004,0.035,0.012s0.01,0.021,0.014,0.038c0.13,0.718,0.254,1.358,0.368,1.954S17.356,26.021,17.444,26.557z\n\t\t\t", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M20.529,23.565h-0.588h-0.588c-0.018,0-0.03-0.003-0.037-0.012s-0.009-0.023-0.005-0.044l0.042-0.294\n\t\t\tl0.042-0.294c0.003-0.018,0.009-0.03,0.017-0.038s0.021-0.012,0.038-0.012h1.471h1.471c0.021,0,0.035,0.004,0.045,0.013\n\t\t\ts0.015,0.023,0.019,0.044l0.028,0.291l0.028,0.291c0.003,0.021,0,0.035-0.009,0.044s-0.023,0.012-0.04,0.012h-0.585h-0.585v1.961\n\t\t\tv1.961c0,0.017-0.003,0.031-0.012,0.041s-0.023,0.015-0.044,0.015h-0.326h-0.326c-0.021,0-0.035-0.003-0.044-0.012\n\t\t\ts-0.012-0.023-0.012-0.044v-1.961V23.565z", + key: 2, + }), + ]) + ), + r.createElement( + "g", + { key: 4 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M7.552,7.265c0-0.04,0.004-0.068,0.02-0.088s0.044-0.032,0.092-0.04c0.184-0.008,0.54-0.02,0.986-0.03\n\t\t\ts0.982-0.018,1.527-0.018c1.625,0,2.841,0.524,3.651,1.433s1.214,2.201,1.214,3.738c0,2.137-0.7,3.529-1.671,4.388\n\t\t\ts-2.211,1.183-3.291,1.183c-0.408,0-0.908-0.004-1.361-0.01s-0.856-0.014-1.072-0.022c-0.032,0-0.056-0.012-0.072-0.034\n\t\t\ts-0.024-0.054-0.024-0.094v-5.202V7.265z M9.297,16.26c0.136,0.008,0.264,0.016,0.396,0.022s0.268,0.01,0.42,0.01\n\t\t\tc0.896,0,1.677-0.316,2.235-0.972s0.894-1.653,0.903-3.013c0.008-1.329-0.332-2.249-0.889-2.837s-1.328-0.844-2.185-0.844\n\t\t\tc-0.168,0-0.32,0.004-0.464,0.01s-0.28,0.014-0.416,0.022v3.802V16.26z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.763,17.797c-0.056,0-0.092-0.008-0.116-0.028s-0.036-0.052-0.044-0.1c-0.24-1.337-0.46-2.481-0.643-3.456\n\t\t\ts-0.326-1.779-0.414-2.435h-0.008h-0.008c-0.104,0.592-0.252,1.385-0.454,2.371s-0.458,2.167-0.778,3.535\n\t\t\tc-0.016,0.048-0.031,0.076-0.053,0.092s-0.05,0.02-0.09,0.02h-0.784h-0.784c-0.056,0-0.092-0.004-0.118-0.02\n\t\t\ts-0.042-0.044-0.058-0.092l-0.856-3.825l-0.856-3.825c-0.008-0.032-0.004-0.064,0.014-0.088s0.05-0.04,0.098-0.04h0.784h0.784\n\t\t\tc0.032,0,0.06,0.008,0.082,0.024s0.038,0.04,0.046,0.072c0.304,1.721,0.52,3.025,0.672,3.987s0.24,1.583,0.288,1.935h0.032h0.032\n\t\t\tc0.056-0.416,0.168-1.057,0.356-2.009s0.452-2.217,0.812-3.882c0.016-0.048,0.024-0.08,0.04-0.1s0.04-0.028,0.088-0.028h0.825\n\t\t\th0.825c0.04,0,0.064,0.008,0.08,0.026s0.024,0.046,0.031,0.086c0.28,1.577,0.512,2.861,0.687,3.852s0.29,1.687,0.338,2.087h0.024\n\t\t\th0.024c0.08-0.512,0.172-1.112,0.33-2.029s0.382-2.149,0.726-3.925c0.008-0.032,0.016-0.056,0.032-0.072s0.04-0.024,0.08-0.024\n\t\t\th0.736H25.3c0.032,0,0.06,0.008,0.076,0.026s0.02,0.046,0.004,0.086l-0.953,3.833l-0.953,3.833\n\t\t\tc-0.008,0.04-0.016,0.068-0.036,0.086s-0.052,0.026-0.108,0.026h-0.784H21.763z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + r.createElement("g", { key: 10 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 6428: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement( + "style", + { type: "text/css", key: 0 }, + "\n\t.st0{fill:#000B1D;}\n\t.st1{clip-path:url(#SVGID_00000081614710071452325380000015027696279794119590_);}\n\t.st2{clip-path:url(#SVGID_00000070825181815467195850000017054706096241198244_);}\n" + ), + r.createElement("switch", { key: 1 }, [ + r.createElement("foreignObject", { width: "1", height: "1", requiredExtensions: "http://ns.adobe.com/AdobeIllustrator/10.0/", key: 0 }), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { className: "st0", d: "M9.91,0h36.18C51.563,0,56,4.437,56,9.91v34.18c0,5.473-4.437,9.91-9.91,9.91H9.91 C4.437,54,0,49.563,0,44.09V9.91C0,4.437,4.437,0,9.91,0z", key: 0 }), + r.createElement( + "defs", + { key: 1 }, + r.createElement("path", { + id: "a", + d: + "m34.018 15.492c-1.013-2.395-3.358-3.953-5.961-3.953s-4.971 1.562-5.982 3.965l-8.185 19.493c-1.122 2.663 0.831 5.608 3.72 5.608h9.115c2.238-5e-3 4.05-1.821 4.05-4.062s-1.818-4.062-4.062-4.062c-0.092 0-1.558 0.012-1.558 0.012-0.66 0-1.105-0.672-0.849-1.281l2.905-6.923c0.316-0.752 1.348-0.757 1.666-5e-3l5.928 13.86c0.814 1.85 2.364 2.454 3.729 2.458 2.896 0 4.848-2.949 3.72-5.615l-8.236-19.495z", + }) + ), + r.createElement("clipPath", { id: "f", key: 2 }, r.createElement("use", { xlinkHref: "#a" })), + r.createElement("g", { clipPath: "url(#f)", key: 3 }, [ + r.createElement("defs", { key: 0 }, r.createElement("rect", { id: "e", x: "8.571", y: "6.539", width: "39.009", height: "39.065" })), + r.createElement("clipPath", { id: "c", key: 1 }, r.createElement("use", { xlinkHref: "#e" })), + r.createElement("g", { clipPath: "url(#c)", key: 2 }, [ + r.createElement("defs", { key: 0 }, r.createElement("rect", { id: "b", x: "8.571", y: "6.539", width: "39.009", height: "39.065" })), + r.createElement("clipPath", { id: "d", key: 1 }, r.createElement("use", { xlinkHref: "#b" })), + r.createElement( + "g", + { clipPath: "url(#d)", key: 2 }, + r.createElement("image", { + transform: "matrix(.48 0 0 .48 8.16 6.48)", + width: "83", + height: "82", + overflow: "visible", + xlinkHref: + "data:image/jpeg;base64,/9j/4gxYSUNDX1BST0ZJTEUAAQEAAAxITGlubwIQAABtbnRyUkdCIFhZWiAHzgACAAkABgAxAABh Y3NwTVNGVAAAAABJRUMgc1JHQgAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLUhQICAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFjcHJ0AAABUAAAADNkZXNjAAAB hAAAAGx3dHB0AAAB8AAAABRia3B0AAACBAAAABRyWFlaAAACGAAAABRnWFlaAAACLAAAABRiWFla AAACQAAAABRkbW5kAAACVAAAAHBkbWRkAAACxAAAAIh2dWVkAAADTAAAAIZ2aWV3AAAD1AAAACRs dW1pAAAD+AAAABRtZWFzAAAEDAAAACR0ZWNoAAAEMAAAAAxyVFJDAAAEPAAACAxnVFJDAAAEPAAA CAxiVFJDAAAEPAAACAx0ZXh0AAAAAENvcHlyaWdodCAoYykgMTk5OCBIZXdsZXR0LVBhY2thcmQg Q29tcGFueQAAZGVzYwAAAAAAAAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAABJzUkdCIElF QzYxOTY2LTIuMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAWFlaIAAAAAAAAPNRAAEAAAABFsxYWVogAAAAAAAAAAAAAAAAAAAAAFhZWiAAAAAAAABvogAA OPUAAAOQWFlaIAAAAAAAAGKZAAC3hQAAGNpYWVogAAAAAAAAJKAAAA+EAAC2z2Rlc2MAAAAAAAAA FklFQyBodHRwOi8vd3d3LmllYy5jaAAAAAAAAAAAAAAAFklFQyBodHRwOi8vd3d3LmllYy5jaAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkZXNjAAAAAAAAAC5J RUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBzcGFjZSAtIHNSR0IAAAAAAAAAAAAAAC5J RUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBzcGFjZSAtIHNSR0IAAAAAAAAAAAAAAAAA AAAAAAAAAAAAZGVzYwAAAAAAAAAsUmVmZXJlbmNlIFZpZXdpbmcgQ29uZGl0aW9uIGluIElFQzYx OTY2LTIuMQAAAAAAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2 Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHZpZXcAAAAAABOk/gAUXy4AEM8UAAPtzAAE EwsAA1yeAAAAAVhZWiAAAAAAAEwJVgBQAAAAVx/nbWVhcwAAAAAAAAABAAAAAAAAAAAAAAAAAAAA AAAAAo8AAAACc2lnIAAAAABDUlQgY3VydgAAAAAAAAQAAAAABQAKAA8AFAAZAB4AIwAoAC0AMgA3 ADsAQABFAEoATwBUAFkAXgBjAGgAbQByAHcAfACBAIYAiwCQAJUAmgCfAKQAqQCuALIAtwC8AMEA xgDLANAA1QDbAOAA5QDrAPAA9gD7AQEBBwENARMBGQEfASUBKwEyATgBPgFFAUwBUgFZAWABZwFu AXUBfAGDAYsBkgGaAaEBqQGxAbkBwQHJAdEB2QHhAekB8gH6AgMCDAIUAh0CJgIvAjgCQQJLAlQC XQJnAnECegKEAo4CmAKiAqwCtgLBAssC1QLgAusC9QMAAwsDFgMhAy0DOANDA08DWgNmA3IDfgOK A5YDogOuA7oDxwPTA+AD7AP5BAYEEwQgBC0EOwRIBFUEYwRxBH4EjASaBKgEtgTEBNME4QTwBP4F DQUcBSsFOgVJBVgFZwV3BYYFlgWmBbUFxQXVBeUF9gYGBhYGJwY3BkgGWQZqBnsGjAadBq8GwAbR BuMG9QcHBxkHKwc9B08HYQd0B4YHmQesB78H0gflB/gICwgfCDIIRghaCG4IggiWCKoIvgjSCOcI +wkQCSUJOglPCWQJeQmPCaQJugnPCeUJ+woRCicKPQpUCmoKgQqYCq4KxQrcCvMLCwsiCzkLUQtp C4ALmAuwC8gL4Qv5DBIMKgxDDFwMdQyODKcMwAzZDPMNDQ0mDUANWg10DY4NqQ3DDd4N+A4TDi4O SQ5kDn8Omw62DtIO7g8JDyUPQQ9eD3oPlg+zD88P7BAJECYQQxBhEH4QmxC5ENcQ9RETETERTxFt EYwRqhHJEegSBxImEkUSZBKEEqMSwxLjEwMTIxNDE2MTgxOkE8UT5RQGFCcUSRRqFIsUrRTOFPAV EhU0FVYVeBWbFb0V4BYDFiYWSRZsFo8WshbWFvoXHRdBF2UXiReuF9IX9xgbGEAYZRiKGK8Y1Rj6 GSAZRRlrGZEZtxndGgQaKhpRGncanhrFGuwbFBs7G2MbihuyG9ocAhwqHFIcexyjHMwc9R0eHUcd cB2ZHcMd7B4WHkAeah6UHr4e6R8THz4faR+UH78f6iAVIEEgbCCYIMQg8CEcIUghdSGhIc4h+yIn IlUigiKvIt0jCiM4I2YjlCPCI/AkHyRNJHwkqyTaJQklOCVoJZclxyX3JicmVyaHJrcm6CcYJ0kn eierJ9woDSg/KHEooijUKQYpOClrKZ0p0CoCKjUqaCqbKs8rAis2K2krnSvRLAUsOSxuLKIs1y0M LUEtdi2rLeEuFi5MLoIuty7uLyQvWi+RL8cv/jA1MGwwpDDbMRIxSjGCMbox8jIqMmMymzLUMw0z RjN/M7gz8TQrNGU0njTYNRM1TTWHNcI1/TY3NnI2rjbpNyQ3YDecN9c4FDhQOIw4yDkFOUI5fzm8 Ofk6Njp0OrI67zstO2s7qjvoPCc8ZTykPOM9Ij1hPaE94D4gPmA+oD7gPyE/YT+iP+JAI0BkQKZA 50EpQWpBrEHuQjBCckK1QvdDOkN9Q8BEA0RHRIpEzkUSRVVFmkXeRiJGZ0arRvBHNUd7R8BIBUhL SJFI10kdSWNJqUnwSjdKfUrESwxLU0uaS+JMKkxyTLpNAk1KTZNN3E4lTm5Ot08AT0lPk0/dUCdQ cVC7UQZRUFGbUeZSMVJ8UsdTE1NfU6pT9lRCVI9U21UoVXVVwlYPVlxWqVb3V0RXklfgWC9YfVjL WRpZaVm4WgdaVlqmWvVbRVuVW+VcNVyGXNZdJ114XcleGl5sXr1fD19hX7NgBWBXYKpg/GFPYaJh 9WJJYpxi8GNDY5dj62RAZJRk6WU9ZZJl52Y9ZpJm6Gc9Z5Nn6Wg/aJZo7GlDaZpp8WpIap9q92tP a6dr/2xXbK9tCG1gbbluEm5rbsRvHm94b9FwK3CGcOBxOnGVcfByS3KmcwFzXXO4dBR0cHTMdSh1 hXXhdj52m3b4d1Z3s3gReG54zHkqeYl553pGeqV7BHtje8J8IXyBfOF9QX2hfgF+Yn7CfyN/hH/l gEeAqIEKgWuBzYIwgpKC9INXg7qEHYSAhOOFR4Wrhg6GcobXhzuHn4gEiGmIzokziZmJ/opkisqL MIuWi/yMY4zKjTGNmI3/jmaOzo82j56QBpBukNaRP5GokhGSepLjk02TtpQglIqU9JVflcmWNJaf lwqXdZfgmEyYuJkkmZCZ/JpomtWbQpuvnByciZz3nWSd0p5Anq6fHZ+Ln/qgaaDYoUehtqImopaj BqN2o+akVqTHpTilqaYapoum/adup+CoUqjEqTepqaocqo+rAqt1q+msXKzQrUStuK4trqGvFq+L sACwdbDqsWCx1rJLssKzOLOutCW0nLUTtYq2AbZ5tvC3aLfguFm40blKucK6O7q1uy67p7whvJu9 Fb2Pvgq+hL7/v3q/9cBwwOzBZ8Hjwl/C28NYw9TEUcTOxUvFyMZGxsPHQce/yD3IvMk6ybnKOMq3 yzbLtsw1zLXNNc21zjbOts83z7jQOdC60TzRvtI/0sHTRNPG1EnUy9VO1dHWVdbY11zX4Nhk2OjZ bNnx2nba+9uA3AXcit0Q3ZbeHN6i3ynfr+A24L3hROHM4lPi2+Nj4+vkc+T85YTmDeaW5x/nqegy 6LzpRunQ6lvq5etw6/vshu0R7ZzuKO6070DvzPBY8OXxcvH/8ozzGfOn9DT0wvVQ9d72bfb794r4 Gfio+Tj5x/pX+uf7d/wH/Jj9Kf26/kv+3P9t////4U7saHR0cDovL25zLmFkb2JlLmNvbS94YXAv MS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/ Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAg Q29yZSA3LjItYzAwMCA3OS4xYjY1YTc5LCAyMDIyLzA2LzEzLTE3OjQ2OjE0ICAgICAgICAiPgog ICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5 bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAg ICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iCiAgICAgICAgICAgIHht bG5zOnhtcEdJbWc9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9nL2ltZy8iCiAgICAgICAg ICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgICAgICAg ICAgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iCiAgICAgICAg ICAgIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3Vy Y2VFdmVudCMiPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29sPkFkb2JlIElsbHVzdHJhdG9yIDI2 LjYgKE1hY2ludG9zaCk8L3htcDpDcmVhdG9yVG9vbD4KICAgICAgICAgPHhtcDpDcmVhdGVEYXRl PjIwMjItMDgtMDJUMTI6NTI6NTctMDc6MDA8L3htcDpDcmVhdGVEYXRlPgogICAgICAgICA8eG1w OlRodW1ibmFpbHM+CiAgICAgICAgICAgIDxyZGY6QWx0PgogICAgICAgICAgICAgICA8cmRmOmxp IHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHhtcEdJbWc6d2lk dGg+MjU2PC94bXBHSW1nOndpZHRoPgogICAgICAgICAgICAgICAgICA8eG1wR0ltZzpoZWlnaHQ+ MjQ4PC94bXBHSW1nOmhlaWdodD4KICAgICAgICAgICAgICAgICAgPHhtcEdJbWc6Zm9ybWF0PkpQ RUc8L3htcEdJbWc6Zm9ybWF0PgogICAgICAgICAgICAgICAgICA8eG1wR0ltZzppbWFnZT4vOWov NEFBUVNrWkpSZ0FCQWdFQVNBQklBQUQvN1FBc1VHaHZkRzl6YUc5d0lETXVNQUE0UWtsTkErMEFB QUFBQUJBQVNBQUFBQUVBJiN4QTtBUUJJQUFBQUFRQUIvK0lNV0VsRFExOVFVazlHU1V4RkFBRUJB QUFNU0V4cGJtOENFQUFBYlc1MGNsSkhRaUJZV1ZvZ0I4NEFBZ0FKJiN4QTtBQVlBTVFBQVlXTnpj RTFUUmxRQUFBQUFTVVZESUhOU1IwSUFBQUFBQUFBQUFBQUFBQUFBQVBiV0FBRUFBQUFBMHkxSVVD QWdBQUFBJiN4QTtBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFB QUFBQUFBQUFBQUFBQVJZM0J5ZEFBQUFWQUFBQUF6JiN4QTtaR1Z6WXdBQUFZUUFBQUJzZDNSd2RB QUFBZkFBQUFBVVltdHdkQUFBQWdRQUFBQVVjbGhaV2dBQUFoZ0FBQUFVWjFoWldnQUFBaXdBJiN4 QTtBQUFVWWxoWldnQUFBa0FBQUFBVVpHMXVaQUFBQWxRQUFBQndaRzFrWkFBQUFzUUFBQUNJZG5W bFpBQUFBMHdBQUFDR2RtbGxkd0FBJiN4QTtBOVFBQUFBa2JIVnRhUUFBQS9nQUFBQVViV1ZoY3dB QUJBd0FBQUFrZEdWamFBQUFCREFBQUFBTWNsUlNRd0FBQkR3QUFBZ01aMVJTJiN4QTtRd0FBQkR3 QUFBZ01ZbFJTUXdBQUJEd0FBQWdNZEdWNGRBQUFBQUJEYjNCNWNtbG5hSFFnS0dNcElERTVPVGdn U0dWM2JHVjBkQzFRJiN4QTtZV05yWVhKa0lFTnZiWEJoYm5rQUFHUmxjMk1BQUFBQUFBQUFFbk5T UjBJZ1NVVkROakU1TmpZdE1pNHhBQUFBQUFBQUFBQUFBQUFTJiN4QTtjMUpIUWlCSlJVTTJNVGsy TmkweUxqRUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFB QUFBJiN4QTtBQUFBQUFBQUFBQUFBRmhaV2lBQUFBQUFBQUR6VVFBQkFBQUFBUmJNV0ZsYUlBQUFB QUFBQUFBQUFBQUFBQUFBQUFCWVdWb2dBQUFBJiN4QTtBQUFBYjZJQUFEajFBQUFEa0ZoWldpQUFB QUFBQUFCaW1RQUF0NFVBQUJqYVdGbGFJQUFBQUFBQUFDU2dBQUFQaEFBQXRzOWtaWE5qJiN4QTtB QUFBQUFBQUFCWkpSVU1nYUhSMGNEb3ZMM2QzZHk1cFpXTXVZMmdBQUFBQUFBQUFBQUFBQUJaSlJV TWdhSFIwY0RvdkwzZDNkeTVwJiN4QTtaV011WTJnQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFB QUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQVpHVnpZd0FBJiN4QTtBQUFBQUFBdVNV VkRJRFl4T1RZMkxUSXVNU0JFWldaaGRXeDBJRkpIUWlCamIyeHZkWElnYzNCaFkyVWdMU0J6VWtk Q0FBQUFBQUFBJiN4QTtBQUFBQUFBdVNVVkRJRFl4T1RZMkxUSXVNU0JFWldaaGRXeDBJRkpIUWlC amIyeHZkWElnYzNCaFkyVWdMU0J6VWtkQ0FBQUFBQUFBJiN4QTtBQUFBQUFBQUFBQUFBQUFBQUFB QUFHUmxjMk1BQUFBQUFBQUFMRkpsWm1WeVpXNWpaU0JXYVdWM2FXNW5JRU52Ym1ScGRHbHZiaUJw JiN4QTtiaUJKUlVNMk1UazJOaTB5TGpFQUFBQUFBQUFBQUFBQUFDeFNaV1psY21WdVkyVWdWbWxs ZDJsdVp5QkRiMjVrYVhScGIyNGdhVzRnJiN4QTtTVVZETmpFNU5qWXRNaTR4QUFBQUFBQUFBQUFB QUFBQUFBQUFBQUFBQUFBQUFBQUFBQUIyYVdWM0FBQUFBQUFUcFA0QUZGOHVBQkRQJiN4QTtGQUFE N2N3QUJCTUxBQU5jbmdBQUFBRllXVm9nQUFBQUFBQk1DVllBVUFBQUFGY2Y1MjFsWVhNQUFBQUFB QUFBQVFBQUFBQUFBQUFBJiN4QTtBQUFBQUFBQUFBQUFBQUtQQUFBQUFuTnBaeUFBQUFBQVExSlVJ R04xY25ZQUFBQUFBQUFFQUFBQUFBVUFDZ0FQQUJRQUdRQWVBQ01BJiN4QTtLQUF0QURJQU53QTdB RUFBUlFCS0FFOEFWQUJaQUY0QVl3Qm9BRzBBY2dCM0FId0FnUUNHQUlzQWtBQ1ZBSm9BbndDa0FL a0FyZ0N5JiN4QTtBTGNBdkFEQkFNWUF5d0RRQU5VQTJ3RGdBT1VBNndEd0FQWUErd0VCQVFjQkRR RVRBUmtCSHdFbEFTc0JNZ0U0QVQ0QlJRRk1BVklCJiN4QTtXUUZnQVdjQmJnRjFBWHdCZ3dHTEFa SUJtZ0doQWFrQnNRRzVBY0VCeVFIUkFka0I0UUhwQWZJQitnSURBZ3dDRkFJZEFpWUNMd0k0JiN4 QTtBa0VDU3dKVUFsMENad0p4QW5vQ2hBS09BcGdDb2dLc0FyWUN3UUxMQXRVQzRBTHJBdlVEQUFN TEF4WURJUU10QXpnRFF3TlBBMW9EJiN4QTtaZ055QTM0RGlnT1dBNklEcmdPNkE4Y0Qwd1BnQSt3 RCtRUUdCQk1FSUFRdEJEc0VTQVJWQkdNRWNRUitCSXdFbWdTb0JMWUV4QVRUJiN4QTtCT0VFOEFU K0JRMEZIQVVyQlRvRlNRVllCV2NGZHdXR0JaWUZwZ1cxQmNVRjFRWGxCZllHQmdZV0JpY0dOd1pJ QmxrR2FnWjdCb3dHJiN4QTtuUWF2QnNBRzBRYmpCdlVIQndjWkJ5c0hQUWRQQjJFSGRBZUdCNWtI ckFlL0I5SUg1UWY0Q0FzSUh3Z3lDRVlJV2dodUNJSUlsZ2lxJiN4QTtDTDRJMGdqbkNQc0pFQWts Q1RvSlR3bGtDWGtKandta0Nib0p6d25sQ2ZzS0VRb25DajBLVkFwcUNvRUttQXF1Q3NVSzNBcnpD d3NMJiN4QTtJZ3M1QzFFTGFRdUFDNWdMc0F2SUMrRUwrUXdTRENvTVF3eGNESFVNamd5bkRNQU0y UXp6RFEwTkpnMUFEVm9OZEEyT0Rha053dzNlJiN4QTtEZmdPRXc0dURra09aQTUvRHBzT3RnN1NE dTRQQ1E4bEQwRVBYZzk2RDVZUHN3L1BEK3dRQ1JBbUVFTVFZUkIrRUpzUXVSRFhFUFVSJiN4QTtF eEV4RVU4UmJSR01FYW9SeVJIb0VnY1NKaEpGRW1RU2hCS2pFc01TNHhNREV5TVRReE5qRTRNVHBC UEZFK1VVQmhRbkZFa1VhaFNMJiN4QTtGSzBVemhUd0ZSSVZOQlZXRlhnVm14VzlGZUFXQXhZbUZr a1diQmFQRnJJVzFoYjZGeDBYUVJkbEY0a1hyaGZTRi9jWUd4aEFHR1VZJiN4QTtpaGl2R05VWSto a2dHVVVaYXhtUkdiY1ozUm9FR2lvYVVScDNHcDRheFJyc0d4UWJPeHRqRzRvYnNodmFIQUljS2h4 U0hIc2NveHpNJiN4QTtIUFVkSGgxSEhYQWRtUjNESGV3ZUZoNUFIbW9lbEI2K0h1a2ZFeDgrSDJr ZmxCKy9IK29nRlNCQklHd2dtQ0RFSVBBaEhDRklJWFVoJiN4QTtvU0hPSWZzaUp5SlZJb0lpcnlM ZEl3b2pPQ05tSTVRandpUHdKQjhrVFNSOEpLc2syaVVKSlRnbGFDV1hKY2NsOXlZbkpsY21oeWEz JiN4QTtKdWduR0NkSkozb25xeWZjS0Ewb1B5aHhLS0lvMUNrR0tUZ3BheW1kS2RBcUFpbzFLbWdx bXlyUEt3SXJOaXRwSzUwcjBTd0ZMRGtzJiN4QTtiaXlpTE5jdERDMUJMWFl0cXkzaExoWXVUQzZD THJjdTdpOGtMMW92a1MvSEwvNHdOVEJzTUtRdzJ6RVNNVW94Z2pHNk1mSXlLakpqJiN4QTtNcHN5 MURNTk0wWXpmek80TS9FMEt6UmxOSjQwMkRVVE5VMDFoelhDTmYwMk56WnlOcTQyNlRja04yQTNu RGZYT0JRNFVEaU1PTWc1JiN4QTtCVGxDT1g4NXZEbjVPalk2ZERxeU91ODdMVHRyTzZvNzZEd25Q R1U4cER6alBTSTlZVDJoUGVBK0lENWdQcUErNEQ4aFAyRS9vai9pJiN4QTtRQ05BWkVDbVFPZEJL VUZxUWF4QjdrSXdRbkpDdFVMM1F6cERmVVBBUkFORVIwU0tSTTVGRWtWVlJacEYza1lpUm1kR3Ew YndSelZIJiN4QTtlMGZBU0FWSVMwaVJTTmRKSFVsalNhbEo4RW8zU24xS3hFc01TMU5MbWt2aVRD cE1ja3k2VFFKTlNrMlRUZHhPSlU1dVRyZFBBRTlKJiN4QTtUNU5QM1ZBblVIRlF1MUVHVVZCUm0x SG1VakZTZkZMSFV4TlRYMU9xVS9aVVFsU1BWTnRWS0ZWMVZjSldEMVpjVnFsVzkxZEVWNUpYJiN4 QTs0Rmd2V0gxWXkxa2FXV2xadUZvSFdsWmFwbHIxVzBWYmxWdmxYRFZjaGx6V1hTZGRlRjNKWGhw ZWJGNjlYdzlmWVYrellBVmdWMkNxJiN4QTtZUHhoVDJHaVlmVmlTV0tjWXZCalEyT1hZK3RrUUdT VVpPbGxQV1dTWmVkbVBXYVNadWhuUFdlVForbG9QMmlXYU94cFEybWFhZkZxJiN4QTtTR3FmYXZk clQydW5hLzlzVjJ5dmJRaHRZRzI1YmhKdWEyN0VieDV2ZUcvUmNDdHdobkRnY1RweGxYSHdja3R5 cG5NQmMxMXp1SFFVJiN4QTtkSEIwekhVb2RZVjE0WFkrZHB0MitIZFdkN040RVhodWVNeDVLbm1K ZWVkNlJucWxld1I3WTN2Q2ZDRjhnWHpoZlVGOW9YNEJmbUorJiN4QTt3bjhqZjRSLzVZQkhnS2lC Q29GcmdjMkNNSUtTZ3ZTRFY0TzZoQjJFZ0lUamhVZUZxNFlPaG5LRzE0YzdoNStJQklocGlNNkpN NG1aJiN4QTtpZjZLWklyS2l6Q0xsb3Y4akdPTXlvMHhqWmlOLzQ1bWpzNlBObytla0FhUWJwRFdr VCtScUpJUmtucVM0NU5OazdhVUlKU0tsUFNWJiN4QTtYNVhKbGpTV241Y0tsM1dYNEpoTW1MaVpK Sm1RbWZ5YWFKclZtMEticjV3Y25JbWM5NTFrbmRLZVFKNnVueDJmaTUvNm9HbWcyS0ZIJiN4QTtv YmFpSnFLV293YWpkcVBtcEZha3g2VTRwYW1tR3FhTHB2Mm5icWZncUZLb3hLazNxYW1xSEtxUHF3 S3JkYXZwckZ5czBLMUVyYml1JiN4QTtMYTZocnhhdmk3QUFzSFd3NnJGZ3NkYXlTN0xDc3ppenJy UWx0SnkxRTdXS3RnRzJlYmJ3dDJpMzRMaFp1Tkc1U3JuQ3VqdTZ0YnN1JiN4QTt1NmU4SWJ5YnZS VzlqNzRLdm9TKy83OTZ2L1hBY01Ec3dXZkI0OEpmd3R2RFdNUFV4RkhFenNWTHhjakdSc2JEeDBI SHY4Zzl5THpKJiN4QTtPc201eWpqS3Q4czJ5N2JNTmN5MXpUWE50YzQyenJiUE44KzQwRG5RdXRF ODBiN1NQOUxCMDBUVHh0UkoxTXZWVHRYUjFsWFcyTmRjJiN4QTsxK0RZWk5qbzJXelo4ZHAyMnZ2 YmdOd0YzSXJkRU4yVzNoemVvdDhwMzYvZ051Qzk0VVRoek9KVDR0dmpZK1ByNUhQay9PV0U1ZzNt JiN4QTtsdWNmNTZub011aTg2VWJwME9wYjZ1WHJjT3Y3N0lidEVlMmM3aWp1dE85QTc4endXUERs OFhMeC8vS004eG56cC9RMDlNTDFVUFhlJiN4QTs5bTMyKy9lSytCbjRxUGs0K2NmNlYvcm4rM2Y4 Qi95WS9Tbjl1djVML3R6L2JmLy8vKzRBRGtGa2IySmxBR1RBQUFBQUFmL2JBSVFBJiN4QTtCZ1FF QkFVRUJnVUZCZ2tHQlFZSkN3Z0dCZ2dMREFvS0N3b0tEQkFNREF3TURBd1FEQTRQRUE4T0RCTVRG QlFURXh3Ykd4c2NIeDhmJiN4QTtIeDhmSHg4Zkh3RUhCd2NOREEwWUVCQVlHaFVSRlJvZkh4OGZI eDhmSHg4Zkh4OGZIeDhmSHg4Zkh4OGZIeDhmSHg4Zkh4OGZIeDhmJiN4QTtIeDhmSHg4Zkh4OGZI eDhmSHg4Zi84QUFFUWdBK0FFQUF3RVJBQUlSQVFNUkFmL0VBYUlBQUFBSEFRRUJBUUVBQUFBQUFB QUFBQVFGJiN4QTtBd0lHQVFBSENBa0tDd0VBQWdJREFRRUJBUUVBQUFBQUFBQUFBUUFDQXdRRkJn Y0lDUW9MRUFBQ0FRTURBZ1FDQmdjREJBSUdBbk1CJiN4QTtBZ01SQkFBRklSSXhRVkVHRTJFaWNZ RVVNcEdoQnhXeFFpUEJVdEhoTXhaaThDUnlndkVsUXpSVGtxS3lZM1BDTlVRbms2T3pOaGRVJiN4 QTtaSFREMHVJSUpvTUpDaGdaaEpSRlJxUzBWdE5WS0JyeTQvUEUxT1QwWlhXRmxhVzF4ZFhsOVda MmhwYW10c2JXNXZZM1IxZG5kNGVYJiN4QTtwN2ZIMStmM09FaFlhSGlJbUtpNHlOam8rQ2s1U1Zs cGVZbVpxYm5KMmVuNUtqcEtXbXA2aXBxcXVzcmE2dm9SQUFJQ0FRSURCUVVFJiN4QTtCUVlFQ0FN RGJRRUFBaEVEQkNFU01VRUZVUk5oSWdaeGdaRXlvYkh3Rk1IUjRTTkNGVkppY3ZFekpEUkRnaGFT VXlXaVk3TENCM1BTJiN4QTtOZUpFZ3hkVWt3Z0pDaGdaSmpaRkdpZGtkRlUzOHFPend5Z3AwK1B6 aEpTa3RNVFU1UFJsZFlXVnBiWEYxZVgxUmxabWRvYVdwcmJHJiN4QTsxdWIyUjFkbmQ0ZVhwN2ZI MStmM09FaFlhSGlJbUtpNHlOam8rRGxKV1dsNWlabXB1Y25aNmZrcU9rcGFhbnFLbXFxNnl0cnEr di9hJiN4QTtBQXdEQVFBQ0VRTVJBRDhBOVU0cTdGV04rZVB6RjhvZVNOTit2K1k5UVMxVjYvVjdj ZkhQTXdIMllvbCtKdm4wSGNqQ0lrb0pwOHllJiN4QTtldjhBbk1UelZmeVNXM2sreGowYXozQ1h0 eXEzRjJ3N053TllZL2xSL25sd3hEcXdNM2ptdWZtUjUvMTUyYlYvTU9vWGFzYW1KN2lRJiN4QTtS QW4rV0pTSTEraGNtSWhqYkhDU1NTVFVuY2s0VU5ZcTdGWFlxN0ZYWXE3RlhZcTdGWFlxN0ZYWXE3 RlhZcTdGWFlxN0ZYWXE3RlhZJiN4QTtxN0ZXd1NDQ0RRamNFWXF5UFEvekk4LzZDNnRwSG1IVUxS Vk5SRWx4SVlpUi9ORXhNYmZTdUF4Q2JleCtSZjhBbk1UelZZU1IyM25DJiN4QTt4ajFtejJEM3Rz cTI5Mm83dHdGSVpQbFJQbmtEaUhSa0p2cHZ5UDhBbUw1UTg3NmI5ZjhBTG1vSmRLbFByRnVmZ25o WWo3TXNUZkV2JiN4QTt6NkhzVGxKaVF6QnRrbUJMc1ZkaXJ5Lzg3L3p2MG44dWRKRUVBUzg4ejNp RTZmcDVOVlJUVWV2UFFnaU1FYkRxeDJIY2ljSVd4bEtuJiN4QTt3NzVtODBhOTVuMWlmV05kdkpM N1VMZy9ITkllaTlrUlJzaUxYWlYyR1pBRk5aS1Y0b2RpcnNWZGlyc1ZkaXJzVmRpcnNWZGlyc1Zk JiN4QTtpcnNWZGlyc1ZkaXJzVmRpcnNWZGlyc1ZkaXJzVmRpcnNWZGlxYWVXZk5HdmVXTllnMWpR cnlTeDFDM1B3VFJucXZkSFU3T2pVM1Z0JiN4QTtqaVJhUVgzRitTSDUzNlQrWTJrbUNjSlorWjdO QWRRMDhHaXVvb1BYZ3FTVEdTZHgxVTdIc1RqemhUWkdWdlVNZ3lZMytZdm5qVGZKJiN4QTtIbERV UE1kLzhhMnFVdDdlb0RUVHY4TVVTLzZ6ZGZBVlBiREVXVUUwL1BIelI1bTFqelByMTVydXNUbTQx QytrTWt6L0FMSTdLaURmJiN4QTtpaUQ0VkhZWmxBVTFFcFhpaDJLdXhWMkt1eFYyS3V4VjJLdXhW Mkt1eFYyS3V4VjJLdXhWMkt1eFYyS3V4VjJLdXhWMkt1eFYyS3V4JiN4QTtWMkt1eFYyS3BwNVg4 emF4NVkxNnoxM1I1emI2aFl5Q1NGLzJUMlpIRzNKSEh3c080eEl0SUw5RHZ5Njg4YWI1MzhvYWY1 anNQZ1c2JiN4QTtTbHhiMUJhR2RQaGxpYi9WYnA0aWg3NWl5RkZ0QnQ4eWY4NWllZXBML3dBMVdQ aysyay8wUFJvMXViMUFkbXU3aGFweUgvRmNKRlA5JiN4QTtjNWRpRzFzSmw4OFpZd2RpcnNWZGly c1ZkaXJzVmRpcnNWZGlyc1ZkaXJzVmRpcnNWZGlyc1ZkaXJzVmRpcnNWZGlyc1ZkaXJzVmRpJiN4 QTtyc1ZkaXJzVmRpcjZILzV3Nzg5U1dIbXErOG4zTW4raDZ6RzF6WklUc3QzYnJWK0kvd0NMSVFh LzZneXZLTnJad0x4ejh5TmNmWHZQJiN4QTsvbUhWMllzdDNxRnc4Uk81RVFrS3hML3NZd295Y1Jz eExHOEtIWXE3RlhZcTdGWFlxN0ZYWXE3RlhZcTdGWFlxN0ZYWXE3RlhZcTdGJiN4QTtYWXE3RlhZ cTdGWFlxN0ZYWXE3RlhZcTdGWFlxN0ZYWXF5VDh0OWNmUWZQL0FKZTFkV0tyYWFoYnZLUnNURVpB c3EvN0tNc01FaHNrJiN4QTtNY0pKSkpOU2R5VGhRMWlyc1ZkaXJzVmRpcnNWZGlyc1ZkaXJzVmRp cnNWZGlyc1ZkaXJzVmRpcnNWZGlyc1ZkaXJzVmRpcnNWZGlyJiN4QTtzVmRpcnNWZGlyc1ZiQklJ SU5DTndSaXJXS3V4VjJLdXhWMkt1eFYyS3V4VjJLdXhWMkt1eFYyS3V4Vkc2ZG8ycWFrL0N5dDNt cHN6JiN4QTtBVVVmTmpSUjkrVlpkUkRIOVJwek5KMmZuMUJySEV5Kzc1OGsvZy9MYlhYWGxKTEJF VCt5V1luL0FJVlNQeHpBbDJ0akhJRXU5eCt5JiN4QTtXcEk5VW9SK2Y2bTV2eTAxeFZKam10NUtm czhtVW43MXArT0NQYStQcUN5eWV5T29BOU1vSDVqOUNRNmxvV3I2YWY4QVRiWjRsN1NmJiN4QTth US83TmFybWRoMU9QSjlKZEZxK3pkUnAvd0M4aVFPL21QbU5rQmw3Z3V4VjJLdXhWMkt1eFYyS3V4 VjJLdXhWMkt1eFYyS3V4VjJLJiN4QTt1eFYyS3V4VjJLdXhWMkt1eFYyS3V4VjJLdXhWMktzejhu K1J2cjBhYWhxWUsyamJ3Mis2dElQNW03aGZEeC9YcTlicitEMHc1OTcxJiN4QTszWWZzOTR3R1hO OUhTUGY1bnkrLzNjK2lRMjhNRVN4UXhyRkVnb3FJQW9BOWdNMEVwRW15OTdqeHhnQkdJb0JmVElN M1V3SzA4VWNxJiN4QTtOSElnZU5oUmtZQWdqM0J3Z2tiaGpLSWtLSXNNQTgzK1JGdDRwTlIwcFQ2 U0RsUGFpcDRqdXllM2lNM21oN1NzOEdUNEg5YnczYm5zJiN4QTs2SUE1Y0EySE9QNlIrcGd1YnA0 eDJLdXhWMkt1eFYyS3V4VjJLdXhWMkt1eFYyS3V4VjJLdXhWMkt1eFYyS3V4VjJLdXhWMkt1eFYy JiN4QTtLdXhWUGZKdWdqV05hamhsRmJXRWVyYys2ZzdML3NqdDhzeDlWbTRJV09idU93K3ovd0F6 cUFKZlJIZVg2dmo5ejJJUmhWQ3FBRkFvJiN4QTtBTmdBTTVxUWZVeHN0SXlraGsxVElGTGdNQ3Jn dUMwS2dUMnlOc1NYa1huM3k4dWtheHpnWGpaM2dNc0lIUldyOGFENUhmNUhPcDdOJiN4QTsxWGk0 NlAxUmZNZmFEczhhZlBjUjZKN2o5SS9IZXhyTmk2SjJLdXhWMkt1eFYyS3V4VjJLdXhWMkt1eFYy S3V4VjJLdXhWMkt1eFYyJiN4QTtLdXhWMkt1eFYyS3V4VjJLdlhmeTIwUTJXZ2k3a1drOStmVVBp STEyakgwN3Q5T2F2V0hpbFhjK2pleldrOExUOForckp2OEFEcCt2JiN4QTs0c3FhUE5aT0wwWUtt VXpIa0dWclRIbEpUYmdtUUsycUxIa1NXSktza2VRSllFc2UvTUhRVHFYbHVaNDFyY1dYK2tSVUc1 Q2o0MStsJiN4QTtkL21Neit6TlQ0ZVlYeWxzNkx0L1NlUHB6WDFROVEvVDlqeFhPdWZOWFlxN0ZY WXE3RlhZcTdGWFlxN0ZYWXE3RlhZcTdGWFlxN0ZYJiN4QTtZcTdGWFlxN0ZYWXE3RlhZcTdGVXg4 dmFSSnErczJtbnBYOSs0RWpEOW1NYnUzMEtEZ0pvT1hvZE1jK2FPTWRUOW5WOUF4MnlSUnBIJiN4 QTtHb1dOQUZSUjBBQW9BTTEyU0Q2ckdvaWh5RG1pekVuQm1KS2JRNWh6aXlFbHBoekZrR1hFNVlm SEtTdkVxcENjckpZbVNza0p5QkxXJiN4QTtaSzZ3S1JRaW9PeEI2SElHVFhLVDU4ODVhRTJoK1ly dXhDa1FCdlV0aWU4VDdyOTMyZm96dU5CcVBHeENYWHI3M3pIdExTK0JubERwJiN4QTt6SHVQNHBK TXkzQWRpcnNWZGlyc1ZkaXJzVmRpcnNWZGlyc1ZkaXJzVmRpcnNWZGlyc1ZkaXJzVmRpcnNWZGly MVQ4bS9MLzd1NjF1JiN4QTtWZnQvNk5hMUhZVWFSaDlOQjkrUzRMRDEvc3pwYUVzcDl3L1M5TjlM TWVlTjZ6aVdtRE1MSkJseExEQm1Ea2d5RWxyUWUyWVdTS2VKJiN4QTt3Z3pFbXZHcXJCbEVpeE1s ZU9EZktpV3N5Uk1kdmxaazFHVHpyODdQTFJtMGkzMXVGS3kyTENHNUlIKzZaRDhKUCtxLy9FczN2 WU9xJiN4QTs0Y2h4bmxMbDd4K3o3bm1mYUhUOFVCa0hPT3g5eC9iOTd4WE9zZVFkaXJzVmRpcnNW ZGlyc1ZkaXJzVmRpcnNWZGlyc1ZkaXJzVmRpJiN4QTtyc1ZkaXJzVmRpcnNWVkxhM211Ym1LMmdV dk5PNnh4SU9wWnp4VWZTVGhBdGxDQmtSRWN5K21OQjBXSFNOSHROTmlvVnRvd2pNUDJuJiN4QTs2 dTMreVlrNW5uRlFwOU0wdUVZY2NZRCtFSS8wOHhzbU55T0ozcDVnNU1hOFRSaUZjMStXQ2VKYVlz MTJXS2VKY3NQdG12eUJIR3FKJiN4QTtCbUhNc1RORUpCMHlrbHJNMFRIYitBeXN5YXBUYTFIUnJm Vk5NdXRQdVJXQzdpZUdUeG80cFVlNDZqRGl6SEhNU0hNRzNIelJFNG1KJiN4QTs1RVBrelY5THV0 SzFTNzAyNkhHNHRKWGhrOENVTktqMlBVWjZUZ3pESkFUSEtRZlA4dU13a1lubUVKbGpXN0ZYWXE3 RlhZcTdGWFlxJiN4QTs3RlhZcTdGWFlxN0ZYWXE3RlhZcTdGWFlxN0ZYWXE3RlhvSDVOZVh2MGg1 aWZVcFZyYjZZdkphOUROSlZVKzRjbStkTXpkRmk0cFgzJiN4QTtPOTdCMDNIbTR6eWg5NzNUaG14 bGplenQzcDVqVHhwNG0rR1lPWEdqaWFNZWEzTkJIRWtubXZ6VHBYbG5UMXZML2svcU53Z2dqQUx1 JiN4QTsxS21sU0JRZHptdi9BQzV5R2c0bXMxOE5QSGlrdDhuZWNOSjgwMmtzOWlIaWx0MkMzRnZK VG1uS3ZFN0VnaHFHaHpXNjNTeXhIZnF3JiN4QTswZmFNTlJFbU94SE1NbFNITlJrY3N6Uk1VSXpG a1dCa2k0b08rVkV0VXBJcU9EZnBrQ1dveWVDLzg1RWVVelphdlorWW9FcEJxQytoJiN4QTtkRURZ VHhENENUL2x4N2Y3SE93OW05WHhRT0k4NDdqM0g5djN2TTlzWWFtSmpyemVQNTB6cG5ZcTdGWFlx N0ZYWXE3RlhZcTdGWFlxJiN4QTs3RlhZcTdGWFlxN0ZYWXE3RlhZcTdGWFlxK2tQeTA4dWZvVHlu YVJTSnh1N29mV3JyeDVTQWNWUCtxbkVmUE9pMG1EZ3hqdk83M2ZaJiN4QTtlbjhIQUFlWjNQeFpX RXk4eGRqYllUS0p3VzNjY3djc0dKazF4eldab01ETjgvZm5ENWgvU25tcHJPSnVWcnBhbUJhZERL ZDVUOTlGJiN4QTsvd0JqbFdLSENIanUyTlQ0bVdoeWp0K3RDL2xWNWlHaSticllTdnh0TC84QTBT NHIwSE1qMDJQeWVtL2hYTWJ0REI0bUk5NDNhdXk5JiN4QTtUNFdZZDB0aStsNDQvYk9KeWg3RXpS Y1VXWVUyQm1qWW9zb0phekpGeFErMlFKYXpKSXZ6RThvTDVuOG02anBTcHl1bWo5V3lPMVJjJiN4 QTtSZkZIdWVuSWppZlluTXZzN1YrQm5qUHAxOXg1dUhxOGZpWXpGOFpzckt4VmdWWlRRZzdFRVo2 ZURieWpXS3V4VjJLdXhWMkt1eFYyJiN4QTtLdXhWMkt1eFYyS3V4VjJLdXhWMkt1eFYyS3V4Vmt2 NWQrWGYwOTVyczdSMDVXc0orc1hmaDZVUkJvZjlacUw5T1pXancrSmtBNk9kJiN4QTsyZHAvRnpB SGtOeSttTTZhbnVlSnNZS1hpWGJaWElJTTJqbUhrZzFISWsvbXpYbzlDOHZYdXFPUnpnalBvcWYy cFcrR05mOEFnaUsrJiN4QTsyYXpQR25EMVdwR09CaytXcFpaSlpYbGxZdkpJeFozTzVMTWFrbk1O NHNtelpXZ2tHbzJJNkhGRDZxL0xmekVQTVhsT3l2MmJsZEl2JiN4QTtvWG5qNjBXekUvNndvLzA1 eG5hT204UElSMDZQVzZUVmVKakJQUHF6S0ZLNXBja1hJNDBkREh0bUpKaVpJeUtLdVZFc0RKRkpG a0NXJiN4QTtzeWZJMzU5ZVRqNWM4L1hNc0tjYkRWeDlldHFEWU01cE1uMFNWTlBBalBSZXdOWjQy bkFQMVE5Si9SOWp6MnR4OE9ROXhlY1p1M0VkJiN4QTtpcnNWZGlyc1ZkaXJzVmRpcnNWZGlyc1Zk aXJzVmRpcnNWZGlyc1ZkaXIzVDhrZkx2MUxRWnRZbVdrK3BOU0lucUlJaVFQOEFnbnIrJiN4QTtH Yi9zekR3dzRqL0U5UDJOaDRNWm1lY3Z1ZWsxelp1NE0zY3NERXpkeXlKRFhMSTBYeWljV21XVjQ1 K2VubVAxTGl6MENGdmhpSDFxJiN4QTs3QS9uYXF4cWZrdFQ5SXpTNjAwZUYwWGFlbzRpSS9GNU5t QzZsMkt2VmZ5QTh6ZlV0Zm4wS2Q2UWFtdk8zQjZDZUlFMEgrdWxmdUdhJiN4QTtudGJUOGNPTCth N0RRWitHUmozdm8yQWRNNC9OQjNJeUpqQWd6WDVBeTRrZEZIdG1OSkJLSldNWkF0Wms4dy81eUs4 bWZwM3lGSnFFJiN4QTtDY3I3UW1OM0dSMU1CQUZ3dnk0Z1Avc2MzbnM3clBDMUFpZnB5YmZIcCty NHVCckk4VWI3bnlKbm96cUhZcTdGWFlxN0ZYWXE3RlhZJiN4QTtxN0ZYWXE3RlhZcTdGWFlxN0ZY WXE3RlVkb21sWEdyNnZhYWJiLzN0MUtzWVA4b0orSmo3S3RUbG1MR1p5RVIxYk1XTXprSWpxK3A3 JiN4QTtHenQ3R3lnczdkZUZ2YlJyRkV2Z3FEaVAxWjFrWWlJQUhSN0dOUkFBNUJWTFpKVGthNVlH cVdSYVh3MDBTeXFOMWVRMnR0TmN6dHdoJiN4QTtnUnBaVzhGUUZtUDNES3Nnb0VseHA1cWZMdXZh dlByR3MzbXB6N1NYVXJQeC9sWG9xLzdGUUJuTFpKOFVpZTkwVTVtVWlTZ01yWU94JiN4QTtWRTZi cUZ6cDJvVzEvYXR3dWJTVkpvVzhHUmd3L1ZrWnhFZ1FlUlRFMGJEN0s4czYxYmExbzFscXR0L2Mz a1N5cUsxNGtqNGxQdXJWJiN4QTtCeml0WGdNSkdQYzdqSG1CRnNqdDZITk5sZzNqSW1NQUZNd1po czRrUUtES3lHcVVtcG9vWm9YaG1RU1JTcVVrallWREt3b1FSNEVZJiN4QTtna0d3MHltK0UvekM4 cVMrVlBPT3A2RzRQcFcweE5xNS9hdDVQamhhdmp3WVY5ODlWN08xWTFHQ09UcVJ2NytycVp4bzB4 M00xZzdGJiN4QTtYWXE3RlhZcTdGWFlxN0ZYWXE3RlhZcTdGWFlxN0ZYWXE3RlhxdjVHZVh2VnZi dlhwaytDMkgxYTBKSCs3SEZaR0h1cVVIK3l6YjlsJiN4QTs0YkptZW16dHV5OFc1bWVqMlFuTjI3 Z3pXRnNMVkthd3RqVGp6eUxDK1RBY1dlVkRYMEVONVp6MmM0NVFYTWJ3eXFEU3FPcFZ0L2tjJiN4 QTtqUEdKQWc5WEV5WlhrOC81SVhuck45WDFTTXcxK0QxSTJEVTk2RWpOSkxzaVFPMG5CTXdwM0g1 SGFzRUp0dFR0NVdwc3NpUEdDZm1QJiN4QTtVeW1mWmtoeUxEeGd3dnpCNVUxN1FKUW1wMnJSSTVw SE9LTkUvd0RxdXUxZlk3NWc1TVVvSGNNNHpCNUpSbFRKNzEvempwNXE5V3p2JiN4QTtQTGM3MWUx SnVyTUUvd0M2bklFcWoyVnlHLzJSelRkcTZlL1VHN0hrclo3cmJ5ak9WejRuS2htVEdHVVVybXR5 WTIwWlVRc3crbktEJiN4QTtCakxLdjlRWkRoYVpaSGduL09VdmxINnhZYWY1c3QwckphRVdWK1Iv dnB5V2hjK3l5RmwvMlF6cS9aZlY4TXBZVDEzSHY2L1o5empUJiN4QTtOdm0vTzBhM1lxN0ZYWXE3 RlhZcTdGWFlxN0ZYWXE3RlhZcTdGWFlxN0ZWeUk4anFpS1dkeUZWUnVTVHNBTUlDWDA5NVEwSk5C OHVXJiN4QTtXbUFEMVlvNjNCRzlaWCtLUTEvMWpRZTJkWHBzWGh3RVhvY01mRGdJcHNUbDZaVFUy YkNHaVUxTm15WURqVHlLVFBrd0hDeVpWTXZrJiN4QTsrRndzbVZybmc0WEN5WlZSSk1xbmphRGxi dTdLeTFLeWxzcjZGWjdXWWNaSW5GUVIvQWpzUjB6VzZqQUR6V09jZzdQblh6djVXbDh0JiN4QTth OUxZRWw3WndKYlNVOVdpWW1sZmRTS0hPZXk0K0NWTzJ3NVJPTnFma3J6SEo1Yzh6MkdycFgwN2VR QzRVZnRRdjhNZy93Q0JKcDc1JiN4QTtqNXNmSEVodEw3RnM3dU9XSkpZbkR4eUtHUjFOUXlzS2dn KytjbnFNTFZITW1NVS92bXF5WW0zeGtRcy92bUpMR3B6S29tOFRsSmcxJiN4QTt5eXBkNW0wYTA4 d2VYOVEwVzcvdUw2Rm9TM1hpeEh3T1BkR293OXhrOVBsT0hKR1k1eExBNVh3M3FXbjNXbmFoYzZm ZHA2ZDFhU3ZCJiN4QTtPbmc4YkZXSDNqUFVNZVFUaUpEa1JiZUNoc21yc1ZkaXJzVmRpcnNWZGly c1ZkaXJzVmRpcnNWZGlyc1ZaTitXdG5GZWVlTkpobEZVJiN4QTtXVnBxZjVVTWJTci9BTU1nekww TVJMTkVGdjB3dklIMGdUblVPNE0xaGJDMHltcE0yU0FjZWMxSm15WURoNU1paTdaWUE0V1RJcEZz JiN4QTtzQWNHZVJ3YkVoeEp6VkZPUkxqeWtpb2owekF6QkFrODMvUGEwaWZTOUx2YWZ2WXBuaEI4 VmtUbCtCanpRYTZOVVhhOW5Uc2tQRzgxJiN4QTt6dFgwcCtSM21vNnI1Uld4bWZsZDZRd3QycjFN SkZZVys2cWY3SE5QcnNIcXZ2Y0RVZW1YdmVtUlRacE11SnFHVkVwUG1CUEdueFZaJiN4QTtac3hw UVI0aTlaVGxSaXhPUjhxLzg1QmFmRGFmbVRkU3hBTDllZ2d1WEEySFBqNlpQMCtuWE8zN0JtWmFZ QS93a2o5UDZYUDA4cmk4JiN4QTszemN0N3NWZGlyc1ZkaXJzVmRpcnNWZGlyc1ZkaXJzVmRpcnNW VDN5THFzV2xlYmRNdlpXQ3hKTHdsYzlGU1ZURXpINUI2NWs2VElJJiN4QTtaWWt0dUdYRElGOUts czZ5bll5a3Nac0lEUktha3paTUJ4cHpVWGJKZ09Ga21wTTJXQU9Ia21wazVOd3B5YkdBdU5LU3Ft VnlMU1NpJiN4QTtJem1IbFczbC93Q2VlclJsTk0wcFdySUM5MUt2Z1BzUi9mOEFGblA5b1MzQWR4 MlhBN3krRHliTmE3ZG0zNVErWi8wRjV4dHhLL0N5JiN4QTsxQWZWTGlwMkJjL3UyUHllbS9nVGxH b3g4VVhHMWVQaWh0ekQ2ZVNUM3pRNVlPbEUxZEpUbXZ5UVR4cXlTNWl6Z3ZHckxKbVBLQzhiJiN4 QTs1VC9PM1hJdFgvTVBVR2hZUERaQkxKR0hqQ1AzbjNTTXd6dE94OEp4NmNYMTMrZjdIZGFXTll4 NXNFelp1UTdGWFlxN0ZYWXE3RlhZJiN4QTtxN0ZYWXE3RlhZcTdGWFlxN0ZYWXE5bC9Majh5N1c1 dElkSDFxWVJYc1FFZHRkU0dpU3FCUlZaajBjZE4rdnp6b05CcndRSVRPL2U1JiN4QTtFTXUxRjZN elp1QWlVbEpteVlEaXprcE9jc0RoVGtwTWNrSERuSmJrbkZtV3hnTFFTckpsTW1zcFY1bTg1YVI1 Y3RHa3VwQkpkTXRZJiN4QTtMTlNQVWM5djlWZkZqbXQxZXBqakcvUHVjalQ2YWVVN2N1OTREcmVz M3VzNnBQcU42M0tlZHFrRDdLcU5sVmZaUnRuTTVNaG5Ja3ZTJiN4QTs0c1FoRVJIUkE1VzJPeFY5 QmZsZithMWpxMW5EcE90VHJCckVRRWNjMGhDcGNBYkFoai91enhIZnFQQWF6VmFZamNjblNhdlNH QjRvJiN4QTsvVDl6MUZXT2FmSkYxL0VySzJZazRyeFBPUHpRL04rdzBHem0wclJaMXVkZGtCamFT TWhrdGE3Rm1JMk1nN0wyNm53T1pvZXpEa2x4JiN4QTtURlErOTJHazBobWJsOVAzdm01bVptTE1T V0pxU2R5U2M2cDNiV0t1eFYyS3V4VjJLdXhWMkt1eFYyS3V4VjJLdXhWMkt1eFYyS3V4JiN4QTtW TjlPODNlWnRPakVWbnFVOFVTN0xGeTVJUGtyY2xIM1prWTlWbGh0R1JWRy93REt4dk92L1YwZi9n SXYrYWN1L2xIUC9PKzVpWWhvJiN4QTsvbUo1elA4QTBzMy9BT0FqL3dDYWNmNVN6L3p2dVluREU5 R3YrVmhlY3Y4QXE1di9BTUJIL3dBMDRmNVQxSDg3N21CMDJNOUhmOHJCJiN4QTs4NC85WE4vK0Fq LzVweC9sUFVmenZ1WW5SNHU1My9Ld3ZPWC9BRmMzL3dDQWovNXB4L2xMVWZ6dnVSK1N4ZnpWay9u M3poTWhSOVZtJiN4QTtVSHZIeGpQL0FBU0JUa0phL01lY2lrYUxFUDRRa1Vrc2tzalNTdTBrakdy T3hKSlB1VG1JU1R6Y2tBRGt0d0s3RlhZcTdGVS8weno3JiN4QTs1ejB1TllyTFdMbU9KZGtpWi9V UlI0QlpPUUgwWlRQVDQ1Y3dHaWVteHk1eEM3VS96Qjg3YW5FWWJ6V2JsNG0yZU5IOUpXSGd5eDhB JiN4QTtSODhFTkxpanVJaFlhYkhIbEVNZXk5dmRpcnNWZGlyc1ZkaXJzVmRpcnNWZGlyc1ZkaXJz VmRpcnNWZGlyc1ZkaXJzVmRpcnNWZGlyJiN4QTtzVmRpcnNWZGlyc1ZkaXJzVmRpcnNWZGlyc1Zk aXJzVmRpcnNWZGlyc1ZkaXJzVlhTUnZISTBiamk2RXF5bnNRYUVZcXR4VjJLdXhWJiN4QTsyS3V4 VjJLdXhWMkt1eFYyS3V4VjJLdXhWMkt1eFYyS3V4VjJLdXhWMkt1eFYyS3V4VjJLdXhWMkt1eFYy S3V4VjJLcm80M2trV05CJiN4QTt5ZHlGVlIzSk5BTVZaWCtiZmw1L0wzNWwrWk5KWkNpUTMwc2tD bi9mRTdldEQveVRrWEJFMkVubXhMQ2gyS3V4VjJLdXhWMkt1eFYyJiN4QTtLdXhWMkt1eFYyS3V4 VjJLdXhWMkt1eFYyS3V4VjJLdXhWMkt1eFYyS3V4VjJLdXhWMkt1eFYyS3N0L0tUeTgvbUg4eS9M ZWtxaGRKJiN4QTtyNktTZFIvdmlCdldtLzVKeHRna2FDUnplM2Y4NWsrUVpFdmROODcyY1JNTXlE VDlVS2paWkVxMXZJMytzcFpLL3dDU3ZqbGVJOUdVJiN4QTt3K1pNdFlPeFYyS3V4VjJLdXhWMkt1 eFYyS3V4VjJLdXhWMkt1eFYyS3V4VjJLdXhWMkt1eFYyS3V4VjJLdXhWMkt1eFYyS3V4VjJLJiN4 QTt1eFY5Ti84QU9HM2tHUjczVXZPOTVFUkRDaDAvU3l3MmFSNk5jU0wvQUtxaFVyL2xONFpWbFBS bkFQcGJ6WDVaMHJ6UjVkdjlBMWFQJiN4QTsxYkRVSWpGS0JUa3A2cTYxNk1qQU1wOFJsUU5OaEQ4 OVB6RjhnYTM1RTgwM1dnYXFoTFJIbGFYUVVpTzRnWS9CS2xleEhVZGpVZHN5JiN4QTtZbXcwa1V4 bkNoMkt1eFYyS3V4VjJLdXhWMkt1eFYyS3V4VjJLdXhWMkt1eFYyS3V4VjJLdXhWMkt1eFYyS3V4 VjJLdXhWMkt1eFYyJiN4QTtLc20vTHJ5QnJmbnZ6VGE2QnBTRU5LZVYzZEZTWTdlQlQ4Y3IwN0Fk QjNOQjN3U05CSUZ2MEw4cWVXZEs4citYYkRRTkpqOUt3MCtJJiN4QTtSUkEwNU1lck8xT3JPeExN ZkU1akUyM0FKcmdWaGY1cWZsVDVjL01YUWYwZHFnTUY1QnlmVHRTakFNdHZJZXRLL2FScURtaDYr eEFJJiN4QTtsR1ZJSXQ4TS9tSitXSG0zeURxeHNOZHRTc0xrL1U5UWpCYTJ1RkhlT1NnMzhWTkdI Y1prUmtDMUVVeFBDaDJLdXhWMkt1eFYyS3V4JiN4QTtWMkt1eFYyS3V4VjJLdXhWMkt1eFYyS3V4 VjJLdXhWMkt1eFYyS3V4VjJLdXhWMktzcy9MdjhzUE52bjdWaFlhRmFsb1VJK3VhaElDJiN4QTt0 dGJxZThrbER2NEtLc2V3d1NrQWtDMzNOK1ZmNVUrWFB5NjBIOUhhV0RQZVQ4WDFIVXBBQkxjU0Rw V24yVVdwNElPbnVTU2NlVXJiJiN4QTtRS1pwa1V1eFYyS29MV3REMGZYTk9tMDNXTE9HL3NKeFNX MnVFRG9mQTBQUWpzUnVPMklLdm56enovemh0b2w1SkpkZVRkVWJUSkdKJiN4QTtJMDY5NVRXL3lT WVZsUWY2d2ZMUmw3MkJnOGIxMy9uR2I4NDlKZGdORS9TTUk2VDJFMGN3UHlRbEpmOEFoTXNHUU1l RXNZbC9LYjgwJiN4QTtvbktONVExb3NPcFhUN2x4dnY4QWFWQ01QRUVVVnY4QXlxcjgwUDhBcVQ5 Yi93QzRkZC85VThlSUxSZC95cXI4MFA4QXFUOWIvd0M0JiN4QTtkZC85VThlSUxSZC95cXI4MFA4 QXFUOWIvd0M0ZGQvOVU4ZUlMUmQveXFyODBQOEFxVDliL3dDNGRkLzlVOGVJTFJkL3lxcjgwUDhB JiN4QTtxVDliL3dDNGRkLzlVOGVJTFJkL3lxcjgwUDhBcVQ5Yi93QzRkZC85VThlSUxSZC95cXI4 MFA4QXFUOWIvd0M0ZGQvOVU4ZUlMUmQvJiN4QTt5cXI4MFA4QXFUOWIvd0M0ZGQvOVU4ZUlMUmQv eXFyODBQOEFxVDliL3dDNGRkLzlVOGVJTFJkL3lxcjgwUDhBcVQ5Yi93QzRkZC85JiN4QTtVOGVJ TFJkL3lxcjgwUDhBcVQ5Yi93QzRkZC85VThlSUxSZC95cXI4MFA4QXFUOWIvd0M0ZGQvOVU4ZUlM UmQveXFyODBQOEFxVDliJiN4QTsvd0M0ZGQvOVU4ZUlMUmQveXFyODBQOEFxVDliL3dDNGRkLzlV OGVJTFJkL3lxcjgwUDhBcVQ5Yi93QzRkZC85VThlSUxSZC95cXI4JiN4QTswUDhBcVQ5Yi93QzRk ZC85VThlSUxSZC95cXI4MFA4QXFUOWIvd0M0ZGQvOVU4ZUlMUmQveXFyODBQOEFxVDliL3dDNGRk LzlVOGVJJiN4QTtMUmQveXFyODBQOEFxVDliL3dDNGRkLzlVOGVJTFJkL3lxcjgwUDhBcVQ5Yi93 QzRkZC85VThlSUxSWFJmbE4rYVVyaEY4b2EwR1BRJiN4QTt0cDl5ZzIzKzB5QVk4UVdpeWZRditj WnZ6ajFaMUIwVDlIUW5yUGZ6UndnZk5BWGwvd0NFd0hJRThKZXllUnYrY050RXM1STdyemxxJiN4 QTtqYW5JcEJPbldYS0czK1R6R2tyai9WQ1pXY3ZjeUVIMEhvdWg2UG9lblE2Ym85bkRZV0VBcEZi VzZCRUhpYURxVDNKM1BmS2lXYU54JiN4QTtWMkt2LzlrPTwveG1wR0ltZzppbWFnZT4KICAgICAg ICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgIDwvcmRmOkFsdD4KICAgICAgICAgPC94bXA6 VGh1bWJuYWlscz4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAyMi0wOC0wMlQxMjo1Mjo1 Ny0wNzowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMjIt MDgtMDJUMTk6NTI6NTdaPC94bXA6TW9kaWZ5RGF0ZT4KICAgICAgICAgPGRjOmZvcm1hdD5pbWFn ZS9qcGVnPC9kYzpmb3JtYXQ+CiAgICAgICAgIDx4bXBNTTpEZXJpdmVkRnJvbSByZGY6cGFyc2VU eXBlPSJSZXNvdXJjZSIvPgogICAgICAgICA8eG1wTU06RG9jdW1lbnRJRD54bXAuZGlkOmYzOGQ3 OGFhLTVlOGMtNDE4NC1hYTgxLWVhNDA5N2M2MDE3MTwveG1wTU06RG9jdW1lbnRJRD4KICAgICAg ICAgPHhtcE1NOkluc3RhbmNlSUQ+eG1wLmlpZDpmMzhkNzhhYS01ZThjLTQxODQtYWE4MS1lYTQw OTdjNjAxNzE8L3htcE1NOkluc3RhbmNlSUQ+CiAgICAgICAgIDx4bXBNTTpPcmlnaW5hbERvY3Vt ZW50SUQ+eG1wLmRpZDpmMzhkNzhhYS01ZThjLTQxODQtYWE4MS1lYTQwOTdjNjAxNzE8L3htcE1N Ok9yaWdpbmFsRG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOkhpc3Rvcnk+CiAgICAgICAgICAg IDxyZGY6U2VxPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNl Ij4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgog ICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOmYzOGQ3OGFhLTVlOGMt NDE4NC1hYTgxLWVhNDA5N2M2MDE3MTwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAg ICAgPHN0RXZ0OndoZW4+MjAyMi0wOC0wMlQxMjo1Mjo1Ny0wNzowMDwvc3RFdnQ6d2hlbj4KICAg ICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgSWxsdXN0cmF0b3IgMjYu NiAoTWFjaW50b3NoKTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4KICAgICAgICAgICAgICAgICAgPHN0 RXZ0OmNoYW5nZWQ+Lzwvc3RFdnQ6Y2hhbmdlZD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAg ICAgICAgICAgIDwvcmRmOlNlcT4KICAgICAgICAgPC94bXBNTTpIaXN0b3J5PgogICAgICA8L3Jk ZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAK ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSJ3Ij8+ /+AAEEpGSUYAAQIBAJYAlgAA/+0ALFBob3Rvc2hvcCAzLjAAOEJJTQPtAAAAAAAQAJYAAAABAAEA lgAAAAEAAf/bAIQAFBERGhIaKRgYKTMnICczLygmJigvPzY2NjY2P0dDQ0NDQ0NHR0dHR0dHR0dH R0dHR0dHR0dHR0dHR0dHR0dHRwEVGhohHSEoGRkoOCghKDhHOCwsOEdHR0Q2REdHR0dHR0dHR0dH R0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dH/90ABAAG/+4ADkFkb2JlAGTAAAAAAf/AABEIAFEA UgMAIgABEQECEQH/xAGiAAABAwMFAAAAAAAAAAAAAAAEAAUGAQIDBwgJCgsBAAEEAAcAAAAAAAAA AAAAAAACAwQFAQYHCAkKCxAAAAEDAAYJfBMAAAAAAAAAAQACAwQFERMhMRQiM0FRYXGBsQYHCAkK EhUWFxgZGiMkJSYnKCkqMjQ1Njc4OTpCQ0RFRkdISUpSU1RVVldYWVpiY2RlZmdoaWpyc3R1dnd4 eXqCg4SFhoeIiYqRkpOUlZaXmJmaoaKjpKWmp6ipqrKztLW2t7i5usHCw8TFxsfIycrR0tPU1dbX 2Nna4eLj5OXm5+jp6vDx8vP09fb3+Pn6EQAAAQIDAgWVAAAAAAAAAAABAAIDERIhMQQFQVFhBgcI CQoTFBUWFxgZGiIjJCUmJygpKjIzNDU2Nzg5OkJDREVGR0hJSlJTVFVWV1hZWmJjZGVmZ2hpanFy c3R1dnd4eXqBgoOEhYaHiImKkZKTlJWWl5iZmqGio6SlpqeoqaqxsrO0tba3uLm6wcLDxMXGx8jJ ytHS09TV1tfY2drh4uPk5ebn6Onq8PHy8/T19vf4+fr/2gAMAwAAARECEQA/AJmSJEiCCHUpSkai IxSJBYNwN4iUQU1WydSxEFr+GT4bwRbyzK3UoVKTCAC1DGqbwRJrE0mDxFcV6wVgxphoHngmeOEL GVQKqwqgBRhKxJ2UBXKZRhA1IIno3AWYOg/R2KWIkpqYwEhgrTTgWgUBNNJ9VGpIo0i4Ojk9k5D6 SdQ0VapFcVUwtg5ogKIYCRwL2kpKSJEillTEiRIkQQX/0JmQisFIaOgOOBgcLVNdRIsmBW6ZeJAR gyMeRJZpqoUifQDFaIACuBaJMYmFYJhFP6SfwsERDK/VEEKMqmmEWuyqCMqxEBIsVZYTTCzowEwQ OBmArQLIajLMajKIJ5MnHlJUKUExhp4N4FkJuVaesAUYuoE4lboR7fDAOuJUSIapOE0kSJEidJsv /9GYJUgIjBPFkALSix4iecJxzMRWiTwrVMsAEQN7ESaCnIBiRqoWUrFgwKTVTKJWP6VX9K4qk4cY AgUoTwK1/SvAwkBZTQKlYShk0KKSNMLMaYVxhpZgNKiPTASQJ5UQwzOA4G4ncBWk1rCOUc9/jVjg U1gKK7woQsq0ChooprSzEiRIrgmC/9I5SEq+SCe4snQsRUKi0rYASBICnqkgSJLSoJxUESxiJKAE yjIiMkWUDizmHEC/xZjDijI6EAgVeLCBTJzRnFmf4gDEhZQSFlpHQFpPAwhYRT/FlQJH9PBwFgQT /lV/yiGmiYcB4MhNijE+EioArQWlUswlIL//0yDzRMETRZgwKwRJ+U5QF+10bA95JiSIzkYrDwEB cys0M8DwaWYliesLGIljESuErBKQBQEU4qFkNEsREqMoqVSBWIwWubcSERJJaVeKYikatErjTiyA cV6dQUqjswWmz8DIsACVMjAAlgcJxoqTlgkQBxZkBopTwNBvLAhRHphWGAIk+KIooKOC0WJwsxKC CCqOaCkIJhyIM2sokUSJEinlal//1JmQ6ltm7kQQ6ltm7ko1eBBNRje6iVwlaY3uolcJTSjnFQno yOQdCZSejI5B0JhFZCEJeJXE1pI7OdRJ0JrSR2c6iUYSEZcBOCGOAdCyFjQxwDoWQsSeNXASJEiR BKL/2Q==", + }) + ), + ]), + ]), + ]), + ]), + ]); + } + (o.defaultProps = { enableBackground: "new 0 0 56 54", version: "1.1", viewBox: "0 0 56 54", xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 95992: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#260A04;}\n\t.st1{fill:#FF401A;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M10.505,14.788l-0.384,1.448l-0.384,1.448c-0.008,0.04-0.02,0.068-0.042,0.086s-0.054,0.026-0.102,0.026H8.88\n\t\t\tH8.168c-0.048,0-0.076-0.008-0.09-0.03s-0.014-0.058-0.006-0.114l1.376-4.818l1.376-4.818c0.024-0.088,0.044-0.168,0.06-0.286\n\t\t\ts0.028-0.274,0.036-0.514c0-0.032,0.008-0.056,0.022-0.072s0.034-0.024,0.058-0.024h1.016h1.016c0.032,0,0.056,0.004,0.074,0.018\n\t\t\ts0.03,0.038,0.038,0.078l1.545,5.226l1.545,5.226c0.008,0.04,0.008,0.072-0.004,0.094s-0.036,0.034-0.076,0.034h-0.8h-0.8\n\t\t\tc-0.04,0-0.072-0.008-0.096-0.024s-0.04-0.04-0.048-0.072l-0.4-1.457l-0.4-1.457h-1.553H10.505z M13.21,13.203\n\t\t\tc-0.136-0.536-0.364-1.389-0.588-2.249s-0.444-1.729-0.564-2.297H12.05h-0.008c-0.104,0.568-0.284,1.328-0.488,2.135\n\t\t\ts-0.432,1.659-0.632,2.411h1.144H13.21z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M17.208,11.522c0-0.048,0-0.156-0.006-0.322s-0.018-0.39-0.042-0.67c0-0.032,0.004-0.052,0.016-0.068\n\t\t\ts0.032-0.028,0.064-0.044c0.408-0.152,0.888-0.312,1.405-0.434s1.068-0.206,1.621-0.206c0.68,0,1.392,0.132,1.934,0.556\n\t\t\ts0.914,1.14,0.914,2.309v2.513v2.513c0,0.048-0.008,0.08-0.026,0.1s-0.046,0.028-0.086,0.028H22.25h-0.752\n\t\t\tc-0.048,0-0.08-0.012-0.1-0.034s-0.028-0.054-0.028-0.094V15.22v-2.449c0-0.464-0.092-0.825-0.304-1.069s-0.544-0.372-1.025-0.372\n\t\t\tc-0.208,0-0.408,0.02-0.592,0.052s-0.352,0.076-0.496,0.124v3.089v3.089c0,0.032-0.008,0.06-0.024,0.08s-0.04,0.032-0.072,0.032\n\t\t\th-0.769H17.32c-0.04,0-0.068-0.008-0.086-0.026s-0.026-0.046-0.026-0.086v-3.081V11.522z", + key: 1, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M12.084,27.488c0,0.021-0.004,0.035-0.011,0.044s-0.02,0.012-0.038,0.012h-0.333H11.37\n\t\t\tc-0.018,0-0.03-0.003-0.038-0.012s-0.011-0.023-0.011-0.044v-2.283v-2.283c0-0.018,0.004-0.03,0.011-0.038s0.02-0.012,0.038-0.012\n\t\t\th1.166h1.166c0.021,0,0.033,0.004,0.041,0.012s0.011,0.021,0.015,0.038l0.035,0.294l0.035,0.294c0.004,0.021,0,0.035-0.009,0.044\n\t\t\ts-0.026,0.012-0.047,0.012h-0.844h-0.844v0.666v0.666h0.756h0.756c0.018,0,0.03,0.002,0.038,0.009s0.011,0.019,0.011,0.04v0.294\n\t\t\tv0.294c0,0.021-0.003,0.033-0.011,0.04s-0.02,0.009-0.038,0.009h-0.756h-0.756v0.953V27.488z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M14.589,27.544c-0.024,0-0.04-0.005-0.05-0.016s-0.013-0.026-0.013-0.047v-2.276v-2.276\n\t\t\tc0-0.018,0.004-0.032,0.011-0.042s0.02-0.015,0.038-0.015h0.336h0.336c0.017,0,0.028,0.004,0.034,0.012s0.008,0.021,0.008,0.038\n\t\t\tv1.964v1.964h0.875h0.875c0.018,0,0.03,0.003,0.037,0.011s0.009,0.02,0.005,0.038l-0.053,0.298l-0.053,0.298\n\t\t\tc-0.003,0.018-0.01,0.03-0.021,0.038s-0.025,0.011-0.042,0.011h-1.163H14.589z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M18.602,26.228l-0.168,0.634l-0.168,0.634c-0.003,0.018-0.009,0.03-0.018,0.038s-0.023,0.011-0.044,0.011\n\t\t\th-0.312h-0.312c-0.021,0-0.033-0.003-0.04-0.013s-0.006-0.026-0.002-0.05l0.602-2.108l0.602-2.108\n\t\t\tc0.011-0.039,0.02-0.073,0.026-0.125s0.012-0.12,0.016-0.225c0-0.014,0.004-0.024,0.01-0.031s0.015-0.011,0.025-0.011h0.445h0.445\n\t\t\tc0.014,0,0.025,0.002,0.032,0.008s0.013,0.017,0.016,0.034l0.676,2.287l0.676,2.287c0.003,0.017,0.003,0.031-0.002,0.041\n\t\t\ts-0.016,0.015-0.033,0.015h-0.35h-0.35c-0.018,0-0.031-0.003-0.042-0.01s-0.017-0.017-0.021-0.032l-0.175-0.637l-0.175-0.637\n\t\t\th-0.679H18.602z M19.785,25.534c-0.06-0.235-0.159-0.608-0.258-0.984s-0.195-0.756-0.247-1.005h-0.003h-0.003\n\t\t\tc-0.045,0.249-0.124,0.581-0.214,0.934s-0.189,0.726-0.277,1.055h0.501H19.785z", + key: 2, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 43889: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#261600;}\n\t.st1{fill:#FF9500;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M10.412,27.488c0,0.021-0.004,0.035-0.011,0.044s-0.02,0.012-0.038,0.012H10.03H9.697\n\t\t\tc-0.018,0-0.03-0.003-0.038-0.012s-0.011-0.023-0.011-0.044v-2.283v-2.283c0-0.018,0.004-0.03,0.011-0.038s0.02-0.012,0.038-0.012\n\t\t\th1.166h1.166c0.021,0,0.033,0.004,0.041,0.012s0.011,0.021,0.015,0.038l0.035,0.294l0.035,0.294c0.004,0.021,0,0.035-0.009,0.044\n\t\t\ts-0.026,0.012-0.047,0.012h-0.844h-0.844v0.666v0.666h0.756h0.756c0.018,0,0.03,0.002,0.038,0.009s0.011,0.019,0.011,0.04v0.294\n\t\t\tv0.294c0,0.021-0.003,0.033-0.011,0.04s-0.02,0.009-0.038,0.009h-0.756h-0.756v0.953V27.488z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M13.61,25.912c0,0.336,0.056,0.588,0.199,0.756s0.372,0.252,0.719,0.252c0.137,0,0.263-0.01,0.372-0.027\n\t\t\ts0.202-0.04,0.272-0.065v-1.95v-1.95c0-0.018,0.004-0.032,0.011-0.042s0.02-0.015,0.037-0.015h0.333h0.333\n\t\t\tc0.018,0,0.03,0.004,0.038,0.012s0.011,0.021,0.011,0.038v1.908v1.908c0,0.105,0.002,0.193,0.005,0.272s0.009,0.151,0.016,0.225\n\t\t\tc0.004,0.018,0.002,0.03-0.005,0.04s-0.019,0.017-0.037,0.024c-0.175,0.063-0.394,0.14-0.648,0.202s-0.543,0.107-0.858,0.107\n\t\t\tc-0.518,0-0.91-0.119-1.173-0.377s-0.396-0.653-0.396-1.206v-1.548v-1.548c0-0.018,0.002-0.032,0.009-0.042\n\t\t\ts0.019-0.015,0.04-0.015h0.336h0.336c0.017,0,0.03,0.004,0.037,0.012s0.011,0.021,0.011,0.038v1.495V25.912z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M16.753,27.383c-0.014-0.01-0.025-0.022-0.032-0.037s-0.011-0.032-0.011-0.053v-0.336v-0.336\n\t\t\tc0-0.01,0.007-0.021,0.018-0.026s0.025-0.005,0.039,0.005c0.158,0.108,0.329,0.187,0.505,0.239s0.356,0.076,0.532,0.076\n\t\t\tc0.255,0,0.436-0.067,0.552-0.171s0.169-0.246,0.169-0.396c0-0.133-0.033-0.254-0.128-0.378s-0.25-0.249-0.495-0.393l-0.126-0.067\n\t\t\tl-0.126-0.067c-0.361-0.203-0.594-0.408-0.736-0.628s-0.195-0.454-0.195-0.717c0-0.357,0.124-0.679,0.366-0.912\n\t\t\ts0.6-0.376,1.07-0.376c0.207,0,0.385,0.016,0.534,0.044s0.268,0.068,0.355,0.118c0.018,0.007,0.028,0.016,0.034,0.028\n\t\t\ts0.008,0.028,0.008,0.049v0.315v0.315c0,0.014-0.007,0.026-0.018,0.032s-0.024,0.006-0.038-0.004\n\t\t\tc-0.109-0.07-0.242-0.123-0.389-0.158s-0.308-0.052-0.473-0.052c-0.27,0-0.448,0.077-0.559,0.184s-0.155,0.246-0.155,0.368\n\t\t\tc0,0.133,0.033,0.249,0.127,0.365s0.248,0.231,0.489,0.364l0.112,0.06l0.112,0.06c0.399,0.221,0.649,0.438,0.8,0.665\n\t\t\ts0.201,0.466,0.201,0.728c0,0.389-0.142,0.718-0.399,0.95s-0.63,0.367-1.092,0.367c-0.207,0-0.405-0.019-0.584-0.057\n\t\t\tS16.882,27.457,16.753,27.383z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M22.606,27.488c-0.003,0.021-0.009,0.035-0.019,0.044s-0.024,0.012-0.045,0.012h-1.198h-1.198\n\t\t\tc-0.021,0-0.035-0.003-0.044-0.012s-0.012-0.023-0.012-0.044v-2.28v-2.28c0-0.021,0.003-0.035,0.012-0.044\n\t\t\ts0.023-0.013,0.044-0.013h1.156h1.156c0.021,0,0.035,0.002,0.045,0.009s0.015,0.02,0.019,0.041l0.031,0.294l0.031,0.294\n\t\t\tc0.003,0.018,0.002,0.031-0.005,0.041s-0.019,0.015-0.037,0.015h-0.844h-0.844v0.624v0.624h0.76h0.76\n\t\t\tc0.018,0,0.03,0.003,0.038,0.011s0.011,0.02,0.011,0.038v0.298v0.298c0,0.018-0.005,0.03-0.015,0.038s-0.023,0.011-0.041,0.011\n\t\t\th-0.756h-0.756v0.672v0.672h0.9h0.9c0.021,0,0.033,0.003,0.039,0.011s0.006,0.02,0.003,0.038l-0.045,0.294L22.606,27.488z", + key: 3, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M12.474,17.669c0,0.048-0.008,0.08-0.026,0.1s-0.046,0.028-0.086,0.028h-0.76h-0.76\n\t\t\tc-0.04,0-0.068-0.008-0.086-0.028s-0.026-0.052-0.026-0.1v-5.218V7.232c0-0.04,0.008-0.068,0.026-0.086s0.046-0.026,0.086-0.026\n\t\t\th2.665h2.665c0.048,0,0.076,0.008,0.094,0.026s0.026,0.046,0.034,0.086l0.08,0.672l0.08,0.672c0.008,0.048,0,0.08-0.022,0.1\n\t\t\ts-0.058,0.028-0.106,0.028h-1.929h-1.929v1.521v1.521h1.729h1.729c0.04,0,0.068,0.004,0.086,0.02s0.026,0.044,0.026,0.092v0.672\n\t\t\tv0.672c0,0.048-0.008,0.076-0.026,0.092s-0.046,0.02-0.086,0.02h-1.729h-1.729v2.177V17.669z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M19.802,11.25c-0.384,0-0.64,0.096-0.8,0.232s-0.224,0.312-0.224,0.472c0,0.176,0.044,0.324,0.216,0.494\n\t\t\ts0.472,0.362,0.984,0.626c0.76,0.368,1.26,0.728,1.571,1.126s0.43,0.834,0.43,1.355c0,0.776-0.296,1.372-0.792,1.775\n\t\t\ts-1.193,0.611-1.993,0.611c-0.424,0-0.816-0.044-1.154-0.118s-0.622-0.178-0.83-0.299c-0.032-0.016-0.052-0.036-0.064-0.062\n\t\t\ts-0.016-0.058-0.016-0.098v-0.712V15.94c0-0.048,0.012-0.08,0.032-0.094s0.048-0.01,0.079,0.014\n\t\t\tc0.304,0.2,0.632,0.344,0.964,0.438s0.668,0.138,0.989,0.138c0.384,0,0.656-0.08,0.833-0.214s0.256-0.322,0.256-0.538\n\t\t\tc0-0.176-0.056-0.34-0.234-0.524s-0.479-0.388-0.967-0.644c-0.688-0.328-1.176-0.66-1.492-1.05s-0.46-0.838-0.46-1.399\n\t\t\tc0-0.624,0.244-1.196,0.7-1.612s1.124-0.676,1.973-0.676c0.416,0,0.768,0.032,1.056,0.082s0.512,0.118,0.672,0.19\n\t\t\tc0.04,0.024,0.064,0.056,0.078,0.09s0.018,0.07,0.018,0.102v0.664v0.664c0,0.04-0.012,0.072-0.036,0.09s-0.06,0.022-0.108,0.006\n\t\t\tc-0.216-0.128-0.48-0.232-0.769-0.304S20.114,11.25,19.802,11.25z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 56784: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#FFFFFF;}\n\t.st1{fill:#B3B3B3;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { className: "st0", d: "M6,31.5c-1.4,0-2.5-1.1-2.5-2.5V3c0-1.4,1.1-2.5,2.5-2.5h15.4c0.5,0,1,0.2,1.4,0.6l5.1,5.1\n\t\tc0.4,0.4,0.6,0.9,0.6,1.4V29c0,1.4-1.1,2.5-2.5,2.5H6z", key: 0 }), + r.createElement( + "g", + { key: 1 }, + r.createElement("path", { + className: "st1", + d: + "M28.3,5.8l-5.1-5.1C22.7,0.3,22,0,21.4,0H6C4.3,0,3,1.3,3,3v26c0,1.7,1.3,3,3,3h20c1.7,0,3-1.3,3-3V7.6\n\t\t\tC29,6.9,28.7,6.3,28.3,5.8z M22.5,1.5l5,5H23c-0.3,0-0.5-0.2-0.5-0.5V1.5z M28,29c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2V3\n\t\t\tc0-1.1,0.9-2,2-2h15.4c0,0,0.1,0,0.1,0v5c0,0.8,0.7,1.5,1.5,1.5h5c0,0,0,0.1,0,0.1V29z", + }) + ), + ]), + ]); + } + (o.defaultProps = { version: "1.1", id: "Generic_Document", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 39124: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("defs", { key: 0 }, r.createElement("style", null, ".cls-1{fill:#fff;}.cls-2{fill:#b3b3b3;}.cls-3{fill:#4b4b4b;}")), + r.createElement("title", { key: 1 }, "filetype_template_32"), + r.createElement( + "g", + { id: "Surface", key: 2 }, + r.createElement("g", { id: "Document" }, [ + r.createElement("path", { + className: "cls-1", + d: "M6,31.56836a2.50263,2.50263,0,0,1-2.5-2.5v-26a2.50294,2.50294,0,0,1,2.5-2.5H21.37988a1.98332,1.98332,0,0,1,1.41114.5835l5.12011,5.10156A2.01544,2.01544,0,0,1,28.5,7.66992V29.06836a2.50231,2.50231,0,0,1-2.5,2.5Z", + key: 0, + }), + r.createElement("path", { + className: "cls-2", + d: + "M21.38,1.06818a1.5,1.5,0,0,1,1.05879.43747l5.12,5.102A1.5,1.5,0,0,1,28,7.67014v21.398a2,2,0,0,1-2,2H6a2,2,0,0,1-2-2v-26a2,2,0,0,1,2-2H21.38m0-1H6a3.00339,3.00339,0,0,0-3,3v26a3.00339,3.00339,0,0,0,3,3H26a3.00339,3.00339,0,0,0,3-3V7.67014a2.5169,2.5169,0,0,0-.73536-1.77089L23.14469.7973A2.48407,2.48407,0,0,0,21.38.06818Z", + key: 1, + }), + ]) + ), + r.createElement( + "g", + { id: "Modifier", key: 3 }, + r.createElement( + "g", + { id: "_3D", "data-name": "3D" }, + r.createElement("path", { + className: "cls-3", + d: + "M15.79622,7.05515c-.02784.01273-5.70125,2.37871-5.70125,2.37871a1.01636,1.01636,0,0,0-.16985.09515.48594.48594,0,0,0-.16926.38225v6.22982a.4882.4882,0,0,0,.30087.44166l5.7261,2.36075a.44845.44845,0,0,0,.19959.04525.45967.45967,0,0,0,.17961-.03522l.02-.01,5.76131-2.36075a.48275.48275,0,0,0,.30082-.43775V9.88284a.43338.43338,0,0,0-.16961-.35567.49814.49814,0,0,0-.1199-.0751.20951.20951,0,0,0-.05-.02005S16.2158,7.06448,16.1954,7.05515a.48509.48509,0,0,0-.18805-.04389A.58251.58251,0,0,0,15.79622,7.05515Zm.198,4.71332-4.495-1.86624,4.46839-1.8537,4.49016,1.866Zm5.2695,3.9859-5.01562,2.09375V12.74346l5.01562-2.10628Z", + }) + ) + ), + ]); + } + (o.defaultProps = { viewBox: "0 0 32 32" }), (e.exports = o), (o.default = o); + }, + 10883: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#2E092B;}\n\t.st1{fill:#FF66F2;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("path", { className: "st0", d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V1c0-0.276,0.224-0.5,0.5-0.5h24c0.276,0,0.5,0.224,0.5,0.5v28\n\tc0,1.379-1.121,2.5-2.5,2.5H6z", key: 1 }), + r.createElement("path", { + className: "st1", + d: + "M28.42,0.1C28.29,0.03,28.15,0,28,0H4C3.85,0,3.71,0.03,3.58,0.1C3.25,0.25,3.02,0.58,3,0.96V29\n\tc0,1.66,1.35,3,3,3h20c1.65,0,3-1.34,3-3V0.97C28.99,0.58,28.75,0.25,28.42,0.1z M27.67,1l-2.18,2.64c-0.1,0.11-0.24,0.18-0.39,0.18\n\tH6.99c-0.15,0-0.29-0.07-0.38-0.18L4.35,1H27.67z M28,29c0,1.11-0.9,2-2,2H6c-1.1,0-2-0.89-2-2V2.13l1.85,2.16\n\tc0.28,0.33,0.7,0.53,1.14,0.53H25.1c0.45,0,0.87-0.2,1.16-0.55L28,2.17V29z", + key: 2, + }), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M10.874,27.488c0,0.021-0.002,0.035-0.01,0.044s-0.022,0.012-0.046,0.012h-0.326h-0.326\n\t\t\tc-0.021,0-0.035-0.005-0.044-0.015s-0.012-0.024-0.012-0.041v-2.28v-2.28c0-0.021,0.005-0.035,0.015-0.044\n\t\t\ts0.024-0.013,0.041-0.013h0.329h0.329c0.018,0,0.03,0.004,0.038,0.012s0.011,0.021,0.011,0.038v2.283V27.488z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M14.598,27.425c0,0.021-0.004,0.037-0.011,0.049s-0.02,0.021-0.037,0.028\n\t\t\tc-0.091,0.039-0.21,0.065-0.344,0.082s-0.283,0.024-0.434,0.024c-0.546,0-1.061-0.179-1.439-0.568s-0.62-0.988-0.62-1.828\n\t\t\tc0-0.722,0.214-1.324,0.59-1.746s0.916-0.663,1.567-0.663c0.172,0,0.321,0.009,0.443,0.025s0.219,0.041,0.285,0.072\n\t\t\tc0.018,0.007,0.028,0.016,0.034,0.028s0.008,0.028,0.008,0.049v0.301v0.301c0,0.028-0.007,0.042-0.017,0.048\n\t\t\ts-0.022,0.004-0.032,0.001c-0.084-0.042-0.189-0.075-0.31-0.098s-0.257-0.035-0.404-0.035c-0.41,0-0.751,0.156-0.99,0.445\n\t\t\ts-0.375,0.713-0.375,1.249c0,0.662,0.187,1.091,0.452,1.354s0.606,0.361,0.914,0.361c0.14,0,0.257-0.005,0.365-0.019\n\t\t\ts0.206-0.037,0.307-0.072c0.014-0.007,0.026-0.01,0.035-0.006s0.014,0.017,0.014,0.041v0.287V27.425z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M16.2,26.228l-0.168,0.634l-0.168,0.634c-0.003,0.018-0.009,0.03-0.018,0.038s-0.024,0.011-0.045,0.011H15.49\n\t\t\th-0.312c-0.021,0-0.033-0.003-0.039-0.013s-0.006-0.026-0.003-0.05l0.602-2.108l0.602-2.108c0.01-0.039,0.019-0.073,0.026-0.125\n\t\t\ts0.012-0.12,0.016-0.225c0-0.014,0.004-0.024,0.01-0.031s0.015-0.011,0.025-0.011h0.445h0.445c0.014,0,0.025,0.002,0.033,0.008\n\t\t\ts0.013,0.017,0.017,0.034l0.676,2.287l0.676,2.287c0.003,0.017,0.003,0.031-0.002,0.041s-0.016,0.015-0.033,0.015h-0.35h-0.35\n\t\t\tc-0.018,0-0.032-0.003-0.042-0.01s-0.018-0.017-0.021-0.032l-0.175-0.637l-0.175-0.637h-0.68H16.2z M17.384,25.534\n\t\t\tc-0.06-0.235-0.159-0.608-0.257-0.984s-0.194-0.756-0.247-1.005h-0.004h-0.004c-0.045,0.249-0.124,0.581-0.213,0.934\n\t\t\ts-0.189,0.726-0.277,1.055h0.501H17.384z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M19.35,22.929c0-0.014,0.002-0.026,0.008-0.035s0.017-0.014,0.034-0.014c0.137-0.007,0.305-0.013,0.491-0.016\n\t\t\ts0.391-0.005,0.601-0.005c0.588,0,1.01,0.161,1.285,0.426s0.402,0.632,0.402,1.045c0,0.54-0.194,0.925-0.509,1.175\n\t\t\ts-0.748,0.366-1.228,0.366c-0.081,0-0.135-0.002-0.183-0.003s-0.09-0.003-0.146-0.003v0.816v0.816c0,0.018-0.004,0.03-0.012,0.038\n\t\t\ts-0.021,0.011-0.038,0.011h-0.329h-0.329c-0.018,0-0.03-0.003-0.038-0.011s-0.011-0.02-0.011-0.038v-2.283V22.929z M20.106,25.184\n\t\t\tc0.049,0.003,0.093,0.005,0.145,0.006s0.114,0.001,0.198,0.001c0.249,0,0.489-0.044,0.666-0.172s0.294-0.34,0.294-0.676\n\t\t\tc0-0.27-0.082-0.472-0.235-0.608s-0.377-0.204-0.661-0.204c-0.084,0-0.167,0.002-0.238,0.004s-0.13,0.006-0.169,0.009v0.819\n\t\t\tV25.184z", + key: 3, + }), + ]) + ), + r.createElement( + "g", + { key: 4 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M13.897,17.669c0,0.048-0.004,0.08-0.022,0.1s-0.05,0.028-0.106,0.028h-0.744h-0.744\n\t\t\tc-0.048,0-0.08-0.012-0.1-0.034s-0.028-0.054-0.028-0.094v-5.21v-5.21c0-0.048,0.012-0.08,0.034-0.1s0.054-0.028,0.094-0.028\n\t\t\th0.752h0.752c0.04,0,0.068,0.008,0.086,0.026s0.026,0.046,0.026,0.086v5.218V17.669z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M20.587,17.604c0,0.032-0.004,0.056-0.016,0.076s-0.032,0.036-0.064,0.052\n\t\t\tc-0.208,0.08-0.441,0.132-0.687,0.165s-0.506,0.044-0.77,0.044c-1.136,0-2.037-0.42-2.653-1.139s-0.948-1.735-0.948-2.927\n\t\t\tc0-1.168,0.376-2.193,1.041-2.925s1.617-1.172,2.769-1.172c0.312,0,0.564,0.012,0.768,0.036s0.36,0.06,0.481,0.108\n\t\t\tc0.032,0.024,0.052,0.044,0.064,0.068s0.016,0.052,0.016,0.092l-0.008,0.664L20.57,11.41c0,0.04-0.012,0.064-0.032,0.076\n\t\t\ts-0.048,0.012-0.08,0.004c-0.136-0.056-0.292-0.1-0.474-0.13s-0.39-0.046-0.631-0.046c-0.632,0-1.164,0.22-1.538,0.64\n\t\t\ts-0.591,1.04-0.591,1.841c0,0.944,0.272,1.581,0.678,1.981s0.947,0.564,1.483,0.564c0.232,0,0.445-0.012,0.629-0.036\n\t\t\ts0.34-0.06,0.46-0.108c0.04-0.008,0.068-0.004,0.086,0.01s0.026,0.038,0.026,0.07v0.664V17.604z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + r.createElement("g", { key: 10 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 81716: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#2E092B;}\n\t.st1{fill:#FF66F2;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M13.897,17.669c0,0.048-0.004,0.08-0.022,0.1s-0.05,0.028-0.106,0.028h-0.744h-0.744\n\t\t\tc-0.048,0-0.08-0.012-0.1-0.034s-0.028-0.054-0.028-0.094v-5.21v-5.21c0-0.048,0.012-0.08,0.034-0.1s0.054-0.028,0.094-0.028\n\t\t\th0.752h0.752c0.04,0,0.068,0.008,0.086,0.026s0.026,0.046,0.026,0.086v5.218V17.669z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M20.587,17.604c0,0.032-0.004,0.056-0.016,0.076s-0.032,0.036-0.064,0.052\n\t\t\tc-0.208,0.08-0.441,0.132-0.687,0.165s-0.506,0.044-0.77,0.044c-1.136,0-2.037-0.42-2.653-1.139s-0.948-1.735-0.948-2.927\n\t\t\tc0-1.168,0.376-2.193,1.041-2.925s1.617-1.172,2.769-1.172c0.312,0,0.564,0.012,0.768,0.036s0.36,0.06,0.481,0.108\n\t\t\tc0.032,0.024,0.052,0.044,0.064,0.068s0.016,0.052,0.016,0.092l-0.008,0.664L20.57,11.41c0,0.04-0.012,0.064-0.032,0.076\n\t\t\ts-0.048,0.012-0.08,0.004c-0.136-0.056-0.292-0.1-0.474-0.13s-0.39-0.046-0.631-0.046c-0.632,0-1.164,0.22-1.538,0.64\n\t\t\ts-0.591,1.04-0.591,1.841c0,0.944,0.272,1.581,0.678,1.981s0.947,0.564,1.483,0.564c0.232,0,0.445-0.012,0.629-0.036\n\t\t\ts0.34-0.06,0.46-0.108c0.04-0.008,0.068-0.004,0.086,0.01s0.026,0.038,0.026,0.07v0.664V17.604z", + key: 1, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M10.457,27.488c0,0.021-0.002,0.035-0.01,0.044s-0.022,0.012-0.046,0.012h-0.326H9.75\n\t\t\tc-0.021,0-0.035-0.005-0.044-0.015s-0.012-0.024-0.012-0.041v-2.28v-2.28c0-0.021,0.005-0.035,0.015-0.044\n\t\t\ts0.024-0.013,0.041-0.013h0.329h0.329c0.018,0,0.03,0.004,0.038,0.012s0.011,0.021,0.011,0.038v2.283V27.488z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M14.182,27.425c0,0.021-0.004,0.037-0.011,0.049s-0.02,0.021-0.037,0.028\n\t\t\tc-0.091,0.039-0.21,0.065-0.344,0.082s-0.283,0.024-0.433,0.024c-0.546,0-1.061-0.179-1.44-0.568s-0.62-0.988-0.62-1.828\n\t\t\tc0-0.722,0.214-1.324,0.59-1.746s0.916-0.663,1.567-0.663c0.172,0,0.321,0.009,0.443,0.025s0.219,0.041,0.285,0.072\n\t\t\tc0.018,0.007,0.028,0.016,0.034,0.028s0.008,0.028,0.008,0.049v0.301v0.301c0,0.028-0.007,0.042-0.017,0.048\n\t\t\ts-0.022,0.004-0.032,0.001c-0.084-0.042-0.189-0.075-0.31-0.098s-0.257-0.035-0.404-0.035c-0.41,0-0.751,0.156-0.99,0.445\n\t\t\ts-0.375,0.713-0.375,1.249c0,0.662,0.187,1.091,0.452,1.354s0.606,0.361,0.914,0.361c0.14,0,0.257-0.005,0.365-0.019\n\t\t\ts0.206-0.037,0.307-0.072c0.014-0.007,0.026-0.01,0.035-0.006s0.014,0.017,0.014,0.041v0.287V27.425z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M15.216,22.872h0.497h0.497c0.017,0,0.03,0.002,0.038,0.008s0.014,0.017,0.017,0.034\n\t\t\tc0.088,0.326,0.258,1.017,0.42,1.717s0.319,1.407,0.378,1.765h0.003h0.003c0.066-0.326,0.247-1.023,0.433-1.724\n\t\t\ts0.379-1.407,0.47-1.75c0.003-0.018,0.009-0.03,0.018-0.038s0.021-0.012,0.038-0.012h0.48h0.48c0.018,0,0.028,0.002,0.035,0.007\n\t\t\ts0.01,0.014,0.014,0.028l0.084,2.291l0.084,2.291c0.004,0.021,0,0.035-0.008,0.044s-0.023,0.012-0.041,0.012h-0.34h-0.34\n\t\t\tc-0.021,0-0.033-0.003-0.04-0.011s-0.009-0.02-0.009-0.038c-0.014-0.75-0.021-1.653-0.024-2.416s-0.003-1.384-0.003-1.57h-0.004\n\t\t\th-0.004c-0.059,0.298-0.243,1.044-0.445,1.84s-0.423,1.644-0.556,2.145c-0.003,0.021-0.01,0.033-0.02,0.04\n\t\t\ts-0.022,0.009-0.036,0.009H17.03h-0.308c-0.018,0-0.032-0.002-0.042-0.008s-0.017-0.017-0.021-0.034\n\t\t\tc-0.13-0.522-0.313-1.322-0.485-2.091s-0.331-1.506-0.411-1.901h-0.007h-0.007c0,0.277-0.014,0.893-0.035,1.63\n\t\t\ts-0.049,1.595-0.077,2.355c0,0.021-0.005,0.033-0.014,0.04s-0.021,0.009-0.035,0.009h-0.308h-0.308\n\t\t\tc-0.021,0-0.035-0.003-0.044-0.011s-0.012-0.02-0.012-0.038l0.126-2.291l0.126-2.291c0.004-0.017,0.007-0.028,0.014-0.034\n\t\t\tS15.199,22.872,15.216,22.872z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M20.263,27.544c-0.025,0-0.041-0.005-0.05-0.016s-0.013-0.026-0.013-0.047v-2.276v-2.276\n\t\t\tc0-0.018,0.003-0.032,0.011-0.042s0.02-0.015,0.038-0.015h0.336h0.336c0.018,0,0.028,0.004,0.034,0.012s0.008,0.021,0.008,0.038\n\t\t\tv1.964v1.964h0.875h0.875c0.018,0,0.03,0.003,0.037,0.011s0.009,0.02,0.005,0.038l-0.053,0.298l-0.053,0.298\n\t\t\tc-0.003,0.018-0.01,0.03-0.021,0.038s-0.024,0.011-0.042,0.011h-1.163H20.263z", + key: 3, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 14646: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#2E092B;}\n\t.st1{fill:#FF66F2;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("path", { className: "st0", d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V1c0-0.276,0.224-0.5,0.5-0.5h24c0.276,0,0.5,0.224,0.5,0.5v28\n\tc0,1.379-1.121,2.5-2.5,2.5H6z", key: 1 }), + r.createElement("path", { className: "st1", d: "M28,0H4C3.45,0,3,0.45,3,1v28c0,1.65,1.35,3,3,3h20c1.65,0,3-1.35,3-3V1C29,0.45,28.55,0,28,0z M28,29\n\tc0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2V3h24V29z", key: 2 }), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M10.415,27.488c0,0.021-0.002,0.035-0.01,0.044s-0.022,0.012-0.046,0.012h-0.326H9.708\n\t\t\tc-0.021,0-0.035-0.005-0.044-0.015s-0.012-0.024-0.012-0.041v-2.28v-2.28c0-0.021,0.005-0.035,0.015-0.044\n\t\t\ts0.024-0.013,0.041-0.013h0.329h0.329c0.018,0,0.03,0.004,0.038,0.012s0.011,0.021,0.011,0.038v2.283V27.488z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M14.14,27.425c0,0.021-0.004,0.037-0.011,0.049s-0.02,0.021-0.037,0.028c-0.091,0.039-0.21,0.065-0.344,0.082\n\t\t\ts-0.283,0.024-0.433,0.024c-0.546,0-1.061-0.179-1.44-0.568s-0.62-0.988-0.62-1.828c0-0.722,0.214-1.324,0.59-1.746\n\t\t\ts0.916-0.663,1.567-0.663c0.172,0,0.321,0.009,0.443,0.025s0.219,0.041,0.285,0.072c0.018,0.007,0.028,0.016,0.034,0.028\n\t\t\ts0.008,0.028,0.008,0.049v0.301v0.301c0,0.028-0.007,0.042-0.017,0.048s-0.022,0.004-0.032,0.001\n\t\t\tc-0.084-0.042-0.189-0.075-0.31-0.098s-0.257-0.035-0.404-0.035c-0.41,0-0.751,0.156-0.99,0.445s-0.375,0.713-0.375,1.249\n\t\t\tc0,0.662,0.187,1.091,0.452,1.354s0.606,0.361,0.914,0.361c0.14,0,0.257-0.005,0.365-0.019s0.206-0.037,0.307-0.072\n\t\t\tc0.014-0.007,0.026-0.01,0.035-0.006s0.014,0.017,0.014,0.041v0.287V27.425z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M15.174,22.872h0.497h0.497c0.017,0,0.03,0.002,0.038,0.008s0.014,0.017,0.017,0.034\n\t\t\tc0.088,0.326,0.258,1.017,0.42,1.717s0.319,1.407,0.378,1.765h0.003h0.003c0.066-0.326,0.247-1.023,0.433-1.724\n\t\t\ts0.379-1.407,0.47-1.75c0.003-0.018,0.009-0.03,0.018-0.038s0.021-0.012,0.038-0.012h0.48h0.48c0.018,0,0.028,0.002,0.035,0.007\n\t\t\ts0.01,0.014,0.014,0.028l0.084,2.291l0.084,2.291c0.004,0.021,0,0.035-0.008,0.044s-0.023,0.012-0.041,0.012h-0.34h-0.34\n\t\t\tc-0.021,0-0.033-0.003-0.04-0.011s-0.009-0.02-0.009-0.038c-0.014-0.75-0.021-1.653-0.024-2.416s-0.003-1.384-0.003-1.57h-0.004\n\t\t\th-0.004c-0.06,0.298-0.243,1.044-0.446,1.84s-0.423,1.644-0.555,2.145c-0.003,0.021-0.01,0.033-0.02,0.04\n\t\t\ts-0.022,0.009-0.036,0.009h-0.308H16.68c-0.018,0-0.032-0.002-0.042-0.008s-0.017-0.017-0.021-0.034\n\t\t\tc-0.13-0.522-0.313-1.322-0.485-2.091s-0.331-1.506-0.411-1.901h-0.007h-0.007c0,0.277-0.014,0.893-0.035,1.63\n\t\t\ts-0.049,1.595-0.077,2.355c0,0.021-0.005,0.033-0.014,0.04s-0.021,0.009-0.035,0.009h-0.308h-0.308\n\t\t\tc-0.021,0-0.035-0.003-0.044-0.011s-0.012-0.02-0.012-0.038l0.126-2.291l0.126-2.291c0.004-0.017,0.007-0.028,0.014-0.034\n\t\t\tS15.157,22.872,15.174,22.872z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M20.83,23.565h-0.588h-0.588c-0.018,0-0.03-0.003-0.037-0.012s-0.009-0.023-0.005-0.044l0.042-0.294\n\t\t\tl0.042-0.294c0.003-0.018,0.009-0.03,0.017-0.038s0.021-0.012,0.038-0.012h1.471h1.471c0.021,0,0.035,0.004,0.045,0.013\n\t\t\ts0.015,0.023,0.019,0.044l0.028,0.291l0.028,0.291c0.003,0.021,0,0.035-0.009,0.044s-0.023,0.012-0.04,0.012h-0.585h-0.585v1.961\n\t\t\tv1.961c0,0.017-0.003,0.031-0.012,0.041s-0.023,0.015-0.044,0.015h-0.326h-0.326c-0.021,0-0.035-0.003-0.044-0.012\n\t\t\ts-0.012-0.023-0.012-0.044v-1.961V23.565z", + key: 3, + }), + ]) + ), + r.createElement( + "g", + { key: 4 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M13.897,17.669c0,0.048-0.004,0.08-0.022,0.1s-0.05,0.028-0.106,0.028h-0.744h-0.744\n\t\t\tc-0.048,0-0.08-0.012-0.1-0.034s-0.028-0.054-0.028-0.094v-5.21v-5.21c0-0.048,0.012-0.08,0.034-0.1s0.054-0.028,0.094-0.028\n\t\t\th0.752h0.752c0.04,0,0.068,0.008,0.086,0.026s0.026,0.046,0.026,0.086v5.218V17.669z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M20.587,17.604c0,0.032-0.004,0.056-0.016,0.076s-0.032,0.036-0.064,0.052\n\t\t\tc-0.208,0.08-0.441,0.132-0.687,0.165s-0.506,0.044-0.77,0.044c-1.136,0-2.037-0.42-2.653-1.139s-0.948-1.735-0.948-2.927\n\t\t\tc0-1.168,0.376-2.193,1.041-2.925s1.617-1.172,2.769-1.172c0.312,0,0.564,0.012,0.768,0.036s0.36,0.06,0.481,0.108\n\t\t\tc0.032,0.024,0.052,0.044,0.064,0.068s0.016,0.052,0.016,0.092l-0.008,0.664L20.57,11.41c0,0.04-0.012,0.064-0.032,0.076\n\t\t\ts-0.048,0.012-0.08,0.004c-0.136-0.056-0.292-0.1-0.474-0.13s-0.39-0.046-0.631-0.046c-0.632,0-1.164,0.22-1.538,0.64\n\t\t\ts-0.591,1.04-0.591,1.841c0,0.944,0.272,1.581,0.678,1.981s0.947,0.564,1.483,0.564c0.232,0,0.445-0.012,0.629-0.036\n\t\t\ts0.34-0.06,0.46-0.108c0.04-0.008,0.068-0.004,0.086,0.01s0.026,0.038,0.026,0.07v0.664V17.604z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + r.createElement("g", { key: 10 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 41946: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#2E0918;}\n\t.st1{fill:#FF3388;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("path", { className: "st0", d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V1c0-0.276,0.224-0.5,0.5-0.5h24c0.276,0,0.5,0.224,0.5,0.5v28\n\tc0,1.379-1.121,2.5-2.5,2.5H6z", key: 1 }), + r.createElement("path", { + className: "st1", + d: + "M28.42,0.1C28.29,0.03,28.15,0,28,0H4C3.85,0,3.71,0.03,3.58,0.1C3.25,0.25,3.02,0.58,3,0.96V29\n\tc0,1.66,1.35,3,3,3h20c1.65,0,3-1.34,3-3V0.97C28.99,0.58,28.75,0.25,28.42,0.1z M27.67,1l-2.18,2.64c-0.1,0.11-0.24,0.18-0.39,0.18\n\tH6.99c-0.15,0-0.29-0.07-0.38-0.18L4.35,1H27.67z M28,29c0,1.11-0.9,2-2,2H6c-1.1,0-2-0.89-2-2V2.13l1.85,2.16\n\tc0.28,0.33,0.7,0.53,1.14,0.53H25.1c0.45,0,0.87-0.2,1.16-0.55L28,2.17V29z", + key: 2, + }), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M10.664,27.488c0,0.021-0.002,0.035-0.01,0.044s-0.022,0.012-0.046,0.012h-0.326H9.956\n\t\t\tc-0.021,0-0.035-0.005-0.044-0.015S9.9,27.505,9.9,27.488v-2.28v-2.28c0-0.021,0.005-0.035,0.015-0.044s0.024-0.013,0.041-0.013\n\t\t\th0.329h0.329c0.018,0,0.03,0.004,0.038,0.012s0.011,0.021,0.011,0.038v2.283V27.488z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M11.741,22.936c0-0.018,0.002-0.03,0.009-0.038s0.019-0.014,0.041-0.017c0.08-0.004,0.236-0.009,0.431-0.014\n\t\t\ts0.43-0.008,0.668-0.008c0.711,0,1.243,0.229,1.597,0.627s0.531,0.963,0.531,1.636c0,0.935-0.306,1.544-0.731,1.919\n\t\t\ts-0.967,0.517-1.44,0.517c-0.178,0-0.397-0.002-0.595-0.004s-0.375-0.006-0.469-0.009c-0.014,0-0.024-0.005-0.031-0.015\n\t\t\ts-0.011-0.024-0.011-0.041v-2.276V22.936z M12.504,26.871c0.059,0.004,0.115,0.008,0.173,0.01s0.117,0.004,0.184,0.004\n\t\t\tc0.392,0,0.734-0.138,0.978-0.426s0.391-0.723,0.395-1.318c0.003-0.581-0.146-0.984-0.389-1.241s-0.581-0.369-0.956-0.369\n\t\t\tc-0.074,0-0.14,0.002-0.203,0.004s-0.122,0.006-0.182,0.009v1.663V26.871z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M16.41,26.228l-0.168,0.634l-0.168,0.634c-0.003,0.018-0.009,0.03-0.018,0.038s-0.024,0.011-0.045,0.011\n\t\t\th-0.312h-0.312c-0.021,0-0.033-0.003-0.039-0.013s-0.006-0.026-0.003-0.05l0.602-2.108l0.602-2.108\n\t\t\tc0.01-0.039,0.019-0.073,0.026-0.125s0.012-0.12,0.016-0.225c0-0.014,0.004-0.024,0.01-0.031s0.015-0.011,0.025-0.011h0.445h0.445\n\t\t\tc0.014,0,0.025,0.002,0.033,0.008s0.013,0.017,0.017,0.034l0.676,2.287l0.676,2.287c0.003,0.017,0.003,0.031-0.002,0.041\n\t\t\ts-0.016,0.015-0.033,0.015h-0.35h-0.35c-0.018,0-0.032-0.003-0.042-0.01s-0.018-0.017-0.021-0.032l-0.175-0.637l-0.175-0.637\n\t\t\th-0.68H16.41z M17.594,25.534c-0.06-0.235-0.159-0.608-0.257-0.984s-0.194-0.756-0.246-1.005h-0.003h-0.003\n\t\t\tc-0.046,0.249-0.125,0.581-0.214,0.934s-0.189,0.726-0.277,1.055h0.501H17.594z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M19.56,22.929c0-0.014,0.002-0.026,0.008-0.035s0.017-0.014,0.034-0.014c0.137-0.007,0.305-0.013,0.491-0.016\n\t\t\ts0.391-0.005,0.601-0.005c0.588,0,1.01,0.161,1.285,0.426s0.402,0.632,0.402,1.045c0,0.54-0.194,0.925-0.509,1.175\n\t\t\ts-0.748,0.366-1.228,0.366c-0.081,0-0.135-0.002-0.183-0.003s-0.09-0.003-0.146-0.003v0.816v0.816c0,0.018-0.004,0.03-0.012,0.038\n\t\t\ts-0.021,0.011-0.038,0.011h-0.329h-0.329c-0.018,0-0.03-0.003-0.038-0.011s-0.011-0.02-0.011-0.038v-2.283V22.929z M20.316,25.184\n\t\t\tc0.049,0.003,0.093,0.005,0.145,0.006s0.114,0.001,0.198,0.001c0.249,0,0.489-0.044,0.666-0.172s0.294-0.34,0.294-0.676\n\t\t\tc0-0.27-0.082-0.472-0.235-0.608s-0.377-0.204-0.661-0.204c-0.084,0-0.167,0.002-0.238,0.004s-0.13,0.006-0.169,0.009v0.819\n\t\t\tV25.184z", + key: 3, + }), + ]) + ), + r.createElement( + "g", + { key: 4 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M13.049,17.669c0,0.048-0.004,0.08-0.022,0.1s-0.05,0.028-0.106,0.028h-0.744h-0.744\n\t\t\tc-0.048,0-0.08-0.012-0.1-0.034s-0.028-0.054-0.028-0.094v-5.21v-5.21c0-0.048,0.012-0.08,0.034-0.1s0.054-0.028,0.094-0.028\n\t\t\th0.752h0.752c0.04,0,0.068,0.008,0.086,0.026s0.026,0.046,0.026,0.086v5.218V17.669z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M14.6,13.907c0-1.16,0.384-2.193,1.074-2.935s1.687-1.194,2.911-1.194c0.104,0,0.184,0,0.262,0.002\n\t\t\ts0.154,0.006,0.25,0.014V8.505V7.217c0-0.032,0.012-0.056,0.03-0.072s0.042-0.024,0.066-0.024h0.784h0.784\n\t\t\tc0.04,0,0.064,0.008,0.078,0.022s0.018,0.034,0.018,0.058v4.538v4.538c0,0.136,0,0.288,0.006,0.452s0.018,0.34,0.043,0.525\n\t\t\tc0,0.032-0.004,0.052-0.016,0.068s-0.032,0.028-0.064,0.044c-0.417,0.2-0.845,0.344-1.273,0.439s-0.856,0.138-1.273,0.138\n\t\t\tc-1.072,0-1.993-0.332-2.645-1.003S14.6,15.26,14.6,13.907z M19.098,11.362c-0.072-0.032-0.156-0.056-0.252-0.072\n\t\t\ts-0.204-0.024-0.324-0.024c-0.624,0-1.156,0.24-1.532,0.68s-0.596,1.08-0.596,1.881c0,0.912,0.224,1.553,0.588,1.965\n\t\t\ts0.868,0.596,1.429,0.596c0.12,0,0.244-0.008,0.362-0.026s0.23-0.046,0.326-0.086v-2.457V11.362z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + r.createElement("g", { key: 10 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 27089: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#2E0918;}\n\t.st1{fill:#FF3388;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("path", { className: "st0", d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V1c0-0.276,0.224-0.5,0.5-0.5h24c0.276,0,0.5,0.224,0.5,0.5v28\n\tc0,1.379-1.121,2.5-2.5,2.5H6z", key: 1 }), + r.createElement("path", { + className: "st1", + d: + "M28.42,0.1C28.29,0.03,28.15,0,28,0H4C3.85,0,3.71,0.03,3.58,0.1C3.25,0.25,3.02,0.58,3,0.96V29\n\tc0,1.66,1.35,3,3,3h20c1.65,0,3-1.34,3-3V0.97C28.99,0.58,28.75,0.25,28.42,0.1z M27.67,1l-2.18,2.64c-0.1,0.11-0.24,0.18-0.39,0.18\n\tH6.99c-0.15,0-0.29-0.07-0.38-0.18L4.35,1H27.67z M28,29c0,1.11-0.9,2-2,2H6c-1.1,0-2-0.89-2-2V2.13l1.85,2.16\n\tc0.28,0.33,0.7,0.53,1.14,0.53H25.1c0.45,0,0.87-0.2,1.16-0.55L28,2.17V29z", + key: 2, + }), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M13.049,17.669c0,0.048-0.004,0.08-0.022,0.1s-0.05,0.028-0.106,0.028h-0.744h-0.744\n\t\t\tc-0.048,0-0.08-0.012-0.1-0.034s-0.028-0.054-0.028-0.094v-5.21v-5.21c0-0.048,0.012-0.08,0.034-0.1s0.054-0.028,0.094-0.028\n\t\t\th0.752h0.752c0.04,0,0.068,0.008,0.086,0.026s0.026,0.046,0.026,0.086v5.218V17.669z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M14.6,13.907c0-1.16,0.384-2.193,1.074-2.935s1.687-1.194,2.911-1.194c0.104,0,0.184,0,0.262,0.002\n\t\t\ts0.154,0.006,0.25,0.014V8.505V7.217c0-0.032,0.012-0.056,0.03-0.072s0.042-0.024,0.066-0.024h0.784h0.784\n\t\t\tc0.04,0,0.064,0.008,0.078,0.022s0.018,0.034,0.018,0.058v4.538v4.538c0,0.136,0,0.288,0.006,0.452s0.018,0.34,0.043,0.525\n\t\t\tc0,0.032-0.004,0.052-0.016,0.068s-0.032,0.028-0.064,0.044c-0.417,0.2-0.845,0.344-1.273,0.439s-0.856,0.138-1.273,0.138\n\t\t\tc-1.072,0-1.993-0.332-2.645-1.003S14.6,15.26,14.6,13.907z M19.098,11.362c-0.072-0.032-0.156-0.056-0.252-0.072\n\t\t\ts-0.204-0.024-0.324-0.024c-0.624,0-1.156,0.24-1.532,0.68s-0.596,1.08-0.596,1.881c0,0.912,0.224,1.553,0.588,1.965\n\t\t\ts0.868,0.596,1.429,0.596c0.12,0,0.244-0.008,0.362-0.026s0.23-0.046,0.326-0.086v-2.457V11.362z", + key: 1, + }), + ]) + ), + r.createElement( + "g", + { key: 4 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M10.135,27.488c0,0.021-0.002,0.035-0.01,0.044s-0.022,0.012-0.046,0.012H9.753H9.428\n\t\t\tc-0.021,0-0.035-0.005-0.044-0.015s-0.012-0.024-0.012-0.041v-2.28v-2.28c0-0.021,0.005-0.035,0.015-0.044\n\t\t\ts0.024-0.013,0.041-0.013h0.329h0.329c0.018,0,0.03,0.004,0.038,0.012s0.011,0.021,0.011,0.038v2.283V27.488z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M11.212,22.936c0-0.018,0.002-0.03,0.009-0.038s0.019-0.014,0.041-0.017c0.08-0.004,0.236-0.009,0.431-0.014\n\t\t\ts0.43-0.008,0.668-0.008c0.711,0,1.243,0.229,1.597,0.627s0.531,0.963,0.531,1.636c0,0.935-0.306,1.544-0.731,1.919\n\t\t\ts-0.967,0.517-1.44,0.517c-0.178,0-0.397-0.002-0.595-0.004s-0.375-0.006-0.469-0.009c-0.014,0-0.024-0.005-0.031-0.015\n\t\t\ts-0.011-0.024-0.011-0.041v-2.276V22.936z M11.976,26.871c0.059,0.004,0.115,0.008,0.173,0.01s0.117,0.004,0.184,0.004\n\t\t\tc0.392,0,0.734-0.138,0.978-0.426s0.391-0.723,0.395-1.318c0.003-0.581-0.146-0.984-0.389-1.241s-0.581-0.369-0.956-0.369\n\t\t\tc-0.074,0-0.14,0.002-0.203,0.004s-0.122,0.006-0.182,0.009v1.663V26.871z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M15.539,22.872h0.497h0.497c0.017,0,0.03,0.002,0.038,0.008s0.014,0.017,0.017,0.034\n\t\t\tc0.088,0.326,0.258,1.017,0.42,1.717s0.319,1.407,0.378,1.765h0.003h0.003c0.066-0.326,0.247-1.023,0.433-1.724\n\t\t\ts0.379-1.407,0.47-1.75c0.003-0.018,0.009-0.03,0.018-0.038s0.021-0.012,0.038-0.012h0.48h0.48c0.018,0,0.028,0.002,0.035,0.007\n\t\t\ts0.01,0.014,0.014,0.028l0.084,2.291l0.084,2.291c0.004,0.021,0,0.035-0.008,0.044s-0.023,0.012-0.041,0.012h-0.34h-0.34\n\t\t\tc-0.021,0-0.033-0.003-0.04-0.011s-0.009-0.02-0.009-0.038c-0.014-0.75-0.021-1.653-0.024-2.416s-0.003-1.384-0.003-1.57h-0.004\n\t\t\th-0.004c-0.059,0.298-0.243,1.044-0.445,1.84s-0.423,1.644-0.556,2.145c-0.003,0.021-0.01,0.033-0.02,0.04\n\t\t\ts-0.022,0.009-0.036,0.009h-0.308h-0.308c-0.018,0-0.031-0.002-0.042-0.008s-0.017-0.017-0.021-0.034\n\t\t\tc-0.13-0.522-0.313-1.322-0.485-2.091s-0.331-1.506-0.411-1.901h-0.007h-0.007c0,0.277-0.014,0.893-0.035,1.63\n\t\t\ts-0.049,1.595-0.077,2.355c0,0.021-0.005,0.033-0.014,0.04s-0.021,0.009-0.035,0.009h-0.308h-0.308\n\t\t\tc-0.021,0-0.035-0.003-0.044-0.011s-0.012-0.02-0.012-0.038l0.126-2.291l0.126-2.291c0.004-0.017,0.007-0.028,0.014-0.034\n\t\t\tS15.521,22.872,15.539,22.872z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M20.585,27.544c-0.025,0-0.041-0.005-0.05-0.016s-0.013-0.026-0.013-0.047v-2.276v-2.276\n\t\t\tc0-0.018,0.003-0.032,0.011-0.042s0.02-0.015,0.038-0.015h0.336h0.336c0.018,0,0.028,0.004,0.034,0.012s0.008,0.021,0.008,0.038\n\t\t\tv1.964v1.964h0.875h0.875c0.018,0,0.03,0.003,0.037,0.011s0.009,0.02,0.005,0.038l-0.053,0.298l-0.053,0.298\n\t\t\tc-0.003,0.018-0.01,0.03-0.021,0.038s-0.024,0.011-0.042,0.011h-1.163H20.585z", + key: 3, + }), + ]) + ), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + r.createElement("g", { key: 10 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 68840: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#2E092B;}\n\t.st1{fill:#FF66F2;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M10.699,27.488c0,0.021-0.002,0.035-0.01,0.044s-0.022,0.012-0.046,0.012h-0.326H9.991\n\t\t\tc-0.021,0-0.035-0.005-0.044-0.015s-0.012-0.024-0.012-0.041v-2.28v-2.28c0-0.021,0.005-0.035,0.015-0.044\n\t\t\ts0.024-0.013,0.041-0.013h0.329h0.329c0.018,0,0.03,0.004,0.038,0.012s0.011,0.021,0.011,0.038v2.283V27.488z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M11.832,27.544c-0.021,0-0.035-0.003-0.044-0.012s-0.012-0.023-0.012-0.044v-2.283v-2.283\n\t\t\tc0-0.018,0.005-0.03,0.014-0.038s0.021-0.012,0.035-0.012h0.434h0.434c0.021,0,0.035,0.002,0.046,0.008s0.018,0.017,0.025,0.034\n\t\t\tc0.207,0.438,0.541,1.2,0.846,1.91s0.582,1.369,0.673,1.6h0.004h0.004c-0.007-0.109-0.016-0.253-0.023-0.439\n\t\t\ts-0.012-0.416-0.012-0.696v-1.184v-1.184c0-0.014,0.004-0.027,0.012-0.036s0.023-0.014,0.044-0.014h0.304h0.304\n\t\t\tc0.021,0,0.035,0.004,0.044,0.013s0.012,0.023,0.012,0.044v2.276v2.276c0,0.025-0.005,0.041-0.017,0.05s-0.029,0.013-0.053,0.013\n\t\t\th-0.389h-0.389c-0.025,0-0.042-0.003-0.055-0.011s-0.022-0.02-0.029-0.038c-0.161-0.378-0.5-1.144-0.828-1.897\n\t\t\ts-0.643-1.496-0.755-1.829h-0.004h-0.004c0.011,0.158,0.02,0.34,0.026,0.553s0.01,0.459,0.01,0.742v1.212v1.212\n\t\t\tc0,0.017-0.003,0.031-0.011,0.041s-0.02,0.015-0.038,0.015h-0.305H11.832z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M18.693,27.425c0,0.021-0.003,0.037-0.011,0.049s-0.02,0.021-0.038,0.028\n\t\t\tc-0.091,0.039-0.21,0.065-0.344,0.082s-0.283,0.024-0.433,0.024c-0.546,0-1.061-0.179-1.44-0.568s-0.62-0.988-0.62-1.828\n\t\t\tc0-0.722,0.214-1.324,0.59-1.746s0.916-0.663,1.567-0.663c0.172,0,0.321,0.009,0.443,0.025s0.219,0.041,0.285,0.072\n\t\t\tc0.018,0.007,0.028,0.016,0.034,0.028s0.008,0.028,0.008,0.049v0.301v0.301c0,0.028-0.007,0.042-0.017,0.048\n\t\t\ts-0.022,0.004-0.032,0.001c-0.084-0.042-0.189-0.075-0.31-0.098s-0.258-0.035-0.405-0.035c-0.41,0-0.751,0.156-0.99,0.445\n\t\t\ts-0.375,0.713-0.375,1.249c0,0.662,0.187,1.091,0.452,1.354s0.606,0.361,0.914,0.361c0.14,0,0.258-0.005,0.365-0.019\n\t\t\ts0.206-0.037,0.307-0.072c0.014-0.007,0.026-0.01,0.035-0.006s0.014,0.017,0.014,0.041v0.287V27.425z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M21.373,25.135l0.609,1.169l0.609,1.169c0.011,0.018,0.012,0.035,0.007,0.048s-0.017,0.022-0.035,0.022\n\t\t\th-0.378h-0.378c-0.024,0-0.042-0.003-0.056-0.012s-0.025-0.023-0.035-0.044c-0.14-0.287-0.28-0.574-0.422-0.867\n\t\t\ts-0.285-0.59-0.432-0.899h-0.003h-0.003c-0.13,0.291-0.267,0.591-0.406,0.889s-0.281,0.596-0.421,0.883\n\t\t\tc-0.01,0.018-0.021,0.03-0.033,0.038s-0.026,0.011-0.044,0.011h-0.36h-0.36c-0.021,0-0.033-0.009-0.038-0.021\n\t\t\ts-0.001-0.028,0.01-0.042l0.595-1.134l0.595-1.134l-0.574-1.138l-0.574-1.138c-0.014-0.018-0.014-0.033-0.007-0.045\n\t\t\ts0.021-0.019,0.035-0.019h0.375h0.375c0.021,0,0.037,0.002,0.049,0.009s0.021,0.02,0.028,0.041\n\t\t\tc0.137,0.287,0.275,0.573,0.412,0.859s0.271,0.573,0.401,0.864h0.003h0.003c0.126-0.287,0.259-0.574,0.394-0.86\n\t\t\ts0.272-0.572,0.405-0.855c0.01-0.018,0.019-0.032,0.031-0.042s0.026-0.015,0.047-0.015h0.35h0.35c0.018,0,0.03,0.007,0.035,0.019\n\t\t\ts0.003,0.027-0.008,0.045l-0.574,1.1L21.373,25.135z", + key: 3, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M13.897,17.669c0,0.048-0.004,0.08-0.022,0.1s-0.05,0.028-0.106,0.028h-0.744h-0.744\n\t\t\tc-0.048,0-0.08-0.012-0.1-0.034s-0.028-0.054-0.028-0.094v-5.21v-5.21c0-0.048,0.012-0.08,0.034-0.1s0.054-0.028,0.094-0.028\n\t\t\th0.752h0.752c0.04,0,0.068,0.008,0.086,0.026s0.026,0.046,0.026,0.086v5.218V17.669z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M20.587,17.604c0,0.032-0.004,0.056-0.016,0.076s-0.032,0.036-0.064,0.052\n\t\t\tc-0.208,0.08-0.441,0.132-0.687,0.165s-0.506,0.044-0.77,0.044c-1.136,0-2.037-0.42-2.653-1.139s-0.948-1.735-0.948-2.927\n\t\t\tc0-1.168,0.376-2.193,1.041-2.925s1.617-1.172,2.769-1.172c0.312,0,0.564,0.012,0.768,0.036s0.36,0.06,0.481,0.108\n\t\t\tc0.032,0.024,0.052,0.044,0.064,0.068s0.016,0.052,0.016,0.092l-0.008,0.664L20.57,11.41c0,0.04-0.012,0.064-0.032,0.076\n\t\t\ts-0.048,0.012-0.08,0.004c-0.136-0.056-0.292-0.1-0.474-0.13s-0.39-0.046-0.631-0.046c-0.632,0-1.164,0.22-1.538,0.64\n\t\t\ts-0.591,1.04-0.591,1.841c0,0.944,0.272,1.581,0.678,1.981s0.947,0.564,1.483,0.564c0.232,0,0.445-0.012,0.629-0.036\n\t\t\ts0.34-0.06,0.46-0.108c0.04-0.008,0.068-0.004,0.086,0.01s0.026,0.038,0.026,0.07v0.664V17.604z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 16171: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#2E0918;}\n\t.st1{fill:#FF3388;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("path", { className: "st0", d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h18c0.276,0,0.5,0.224,0.5,0.5v2.5H28\n\tc0.276,0,0.5,0.224,0.5,0.5v25c0,1.379-1.121,2.5-2.5,2.5H6z", key: 1 }), + r.createElement("path", { + className: "st1", + d: + "M28,3h-3V0.99C24.99,0.44,24.55,0,24,0H6C5.59,0,5.2,0.08,4.84,0.24c-0.01,0-0.02,0.01-0.03,0.02\n\tC3.75,0.71,3,1.77,3,3v26c0,1.65,1.35,3,3,3h20c1.65,0,3-1.35,3-3V4C29,3.45,28.55,3,28,3z M5.22,1.16C5.46,1.06,5.72,1,6,1h18v2.01\n\tH5.79C5.23,3.01,4.78,2.55,4.78,2C4.78,1.66,4.96,1.35,5.22,1.16z M28,29c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2V2.92\n\tC4.34,3.56,5.01,4,5.79,4H28V29z", + key: 2, + }), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M10.31,27.488c0,0.021-0.002,0.035-0.01,0.044s-0.022,0.012-0.046,0.012H9.928H9.603\n\t\t\tc-0.021,0-0.035-0.005-0.044-0.015s-0.012-0.024-0.012-0.041v-2.28v-2.28c0-0.021,0.005-0.035,0.015-0.044\n\t\t\ts0.024-0.013,0.041-0.013h0.329h0.329c0.018,0,0.03,0.004,0.038,0.012s0.011,0.021,0.011,0.038v2.283V27.488z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M11.443,27.544c-0.021,0-0.035-0.003-0.044-0.012s-0.012-0.023-0.012-0.044v-2.283v-2.283\n\t\t\tc0-0.018,0.005-0.03,0.014-0.038s0.021-0.012,0.035-0.012h0.434h0.434c0.021,0,0.035,0.002,0.046,0.008s0.018,0.017,0.025,0.034\n\t\t\tc0.207,0.438,0.541,1.2,0.846,1.91s0.582,1.369,0.673,1.6h0.004h0.004c-0.007-0.109-0.016-0.253-0.023-0.439\n\t\t\ts-0.012-0.416-0.012-0.696v-1.184v-1.184c0-0.014,0.004-0.027,0.012-0.036s0.023-0.014,0.044-0.014h0.304h0.304\n\t\t\tc0.021,0,0.035,0.004,0.044,0.013s0.012,0.023,0.012,0.044v2.276v2.276c0,0.025-0.005,0.041-0.017,0.05s-0.029,0.013-0.053,0.013\n\t\t\th-0.389h-0.389c-0.025,0-0.042-0.003-0.055-0.011s-0.022-0.02-0.029-0.038c-0.161-0.378-0.5-1.144-0.828-1.897\n\t\t\ts-0.643-1.496-0.755-1.829H12.07h-0.004c0.011,0.158,0.02,0.34,0.026,0.553s0.01,0.459,0.01,0.742v1.212v1.212\n\t\t\tc0,0.017-0.003,0.031-0.011,0.041s-0.02,0.015-0.038,0.015h-0.305H11.443z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M15.657,22.936c0-0.018,0.002-0.03,0.009-0.038s0.019-0.014,0.041-0.017c0.08-0.004,0.236-0.009,0.431-0.014\n\t\t\ts0.43-0.008,0.668-0.008c0.711,0,1.243,0.229,1.598,0.627s0.532,0.963,0.532,1.636c0,0.935-0.307,1.544-0.731,1.919\n\t\t\ts-0.968,0.517-1.44,0.517c-0.178,0-0.397-0.002-0.595-0.004s-0.375-0.006-0.469-0.009c-0.014,0-0.024-0.005-0.031-0.015\n\t\t\ts-0.011-0.024-0.011-0.041v-2.276V22.936z M16.421,26.871c0.059,0.004,0.115,0.008,0.173,0.01s0.117,0.004,0.184,0.004\n\t\t\tc0.392,0,0.734-0.138,0.978-0.426s0.391-0.723,0.395-1.318c0.003-0.581-0.145-0.984-0.389-1.241s-0.581-0.369-0.956-0.369\n\t\t\tc-0.073,0-0.14,0.002-0.203,0.004s-0.122,0.006-0.182,0.009v1.663V26.871z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M19.773,22.936c0-0.018,0.002-0.03,0.007-0.038s0.014-0.014,0.028-0.017c0.098-0.004,0.28-0.009,0.491-0.014\n\t\t\ts0.451-0.008,0.664-0.008c0.648,0,1.03,0.189,1.25,0.436s0.278,0.552,0.278,0.783c0,0.259-0.063,0.461-0.149,0.615\n\t\t\ts-0.194,0.261-0.286,0.331c0.126,0.066,0.287,0.18,0.417,0.361s0.228,0.427,0.228,0.76c0,0.441-0.177,0.796-0.488,1.041\n\t\t\ts-0.758,0.377-1.298,0.373c-0.228,0-0.445-0.002-0.633-0.004s-0.348-0.006-0.46-0.009c-0.018-0.003-0.03-0.01-0.038-0.02\n\t\t\ts-0.011-0.022-0.011-0.036v-2.276V22.936z M20.522,24.757h0.214h0.214c0.102,0,0.208,0.003,0.303,0.009s0.177,0.015,0.229,0.025\n\t\t\tc0.07-0.063,0.136-0.14,0.186-0.24s0.081-0.222,0.081-0.377c0-0.213-0.072-0.376-0.206-0.486s-0.33-0.166-0.579-0.166\n\t\t\tc-0.084,0-0.166,0.002-0.242,0.005s-0.144,0.006-0.2,0.01v0.609V24.757z M20.522,26.886c0.063,0.003,0.125,0.007,0.189,0.009\n\t\t\ts0.133,0.004,0.21,0.004c0.277,0,0.526-0.052,0.705-0.172s0.29-0.305,0.29-0.571c0-0.165-0.042-0.308-0.127-0.424\n\t\t\ts-0.213-0.203-0.385-0.256c-0.06-0.018-0.124-0.031-0.193-0.041s-0.143-0.015-0.22-0.015h-0.235h-0.235v0.732V26.886z", + key: 3, + }), + ]) + ), + r.createElement( + "g", + { key: 4 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M13.049,17.669c0,0.048-0.004,0.08-0.022,0.1s-0.05,0.028-0.106,0.028h-0.744h-0.744\n\t\t\tc-0.048,0-0.08-0.012-0.1-0.034s-0.028-0.054-0.028-0.094v-5.21v-5.21c0-0.048,0.012-0.08,0.034-0.1s0.054-0.028,0.094-0.028\n\t\t\th0.752h0.752c0.04,0,0.068,0.008,0.086,0.026s0.026,0.046,0.026,0.086v5.218V17.669z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M14.6,13.907c0-1.16,0.384-2.193,1.074-2.935s1.687-1.194,2.911-1.194c0.104,0,0.184,0,0.262,0.002\n\t\t\ts0.154,0.006,0.25,0.014V8.505V7.217c0-0.032,0.012-0.056,0.03-0.072s0.042-0.024,0.066-0.024h0.784h0.784\n\t\t\tc0.04,0,0.064,0.008,0.078,0.022s0.018,0.034,0.018,0.058v4.538v4.538c0,0.136,0,0.288,0.006,0.452s0.018,0.34,0.043,0.525\n\t\t\tc0,0.032-0.004,0.052-0.016,0.068s-0.032,0.028-0.064,0.044c-0.417,0.2-0.845,0.344-1.273,0.439s-0.856,0.138-1.273,0.138\n\t\t\tc-1.072,0-1.993-0.332-2.645-1.003S14.6,15.26,14.6,13.907z M19.098,11.362c-0.072-0.032-0.156-0.056-0.252-0.072\n\t\t\ts-0.204-0.024-0.324-0.024c-0.624,0-1.156,0.24-1.532,0.68s-0.596,1.08-0.596,1.881c0,0.912,0.224,1.553,0.588,1.965\n\t\t\ts0.868,0.596,1.429,0.596c0.12,0,0.244-0.008,0.362-0.026s0.23-0.046,0.326-0.086v-2.457V11.362z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + r.createElement("g", { key: 10 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 5555: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#2E0918;}\n\t.st1{fill:#FF3388;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M10.128,27.488c0,0.021-0.002,0.035-0.01,0.044s-0.022,0.012-0.046,0.012H9.746H9.42\n\t\t\tc-0.021,0-0.035-0.005-0.044-0.015s-0.012-0.024-0.012-0.041v-2.28v-2.28c0-0.021,0.005-0.035,0.015-0.044\n\t\t\ts0.024-0.013,0.041-0.013H9.75h0.329c0.018,0,0.03,0.004,0.038,0.012s0.011,0.021,0.011,0.038v2.283V27.488z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M11.261,27.544c-0.021,0-0.035-0.003-0.044-0.012s-0.012-0.023-0.012-0.044v-2.283v-2.283\n\t\t\tc0-0.018,0.005-0.03,0.014-0.038s0.021-0.012,0.035-0.012h0.434h0.434c0.021,0,0.035,0.002,0.046,0.008s0.018,0.017,0.025,0.034\n\t\t\tc0.207,0.438,0.541,1.2,0.846,1.91s0.582,1.369,0.673,1.6h0.004h0.004c-0.007-0.109-0.016-0.253-0.023-0.439\n\t\t\ts-0.012-0.416-0.012-0.696v-1.184v-1.184c0-0.014,0.003-0.027,0.012-0.036s0.023-0.014,0.044-0.014h0.304h0.304\n\t\t\tc0.021,0,0.035,0.004,0.044,0.013s0.012,0.023,0.012,0.044v2.276v2.276c0,0.025-0.005,0.041-0.017,0.05s-0.029,0.013-0.053,0.013\n\t\t\th-0.389h-0.389c-0.025,0-0.042-0.003-0.055-0.011s-0.022-0.02-0.029-0.038c-0.161-0.378-0.501-1.144-0.828-1.897\n\t\t\ts-0.643-1.496-0.755-1.829h-0.004h-0.004c0.01,0.158,0.019,0.34,0.025,0.553s0.01,0.459,0.01,0.742v1.212v1.212\n\t\t\tc0,0.017-0.004,0.031-0.011,0.041s-0.02,0.015-0.037,0.015h-0.305H11.261z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M15.475,22.936c0-0.018,0.002-0.03,0.009-0.038s0.019-0.014,0.041-0.017c0.08-0.004,0.236-0.009,0.431-0.014\n\t\t\ts0.43-0.008,0.668-0.008c0.711,0,1.243,0.229,1.598,0.627s0.531,0.963,0.531,1.636c0,0.935-0.306,1.544-0.731,1.919\n\t\t\ts-0.967,0.517-1.44,0.517c-0.178,0-0.397-0.002-0.595-0.004s-0.375-0.006-0.469-0.009c-0.014,0-0.024-0.005-0.031-0.015\n\t\t\ts-0.011-0.024-0.011-0.041v-2.276V22.936z M16.239,26.871c0.059,0.004,0.115,0.008,0.173,0.01s0.117,0.004,0.184,0.004\n\t\t\tc0.392,0,0.734-0.138,0.978-0.426s0.392-0.723,0.395-1.318c0.003-0.581-0.146-0.984-0.389-1.241s-0.581-0.369-0.956-0.369\n\t\t\tc-0.074,0-0.14,0.002-0.203,0.004s-0.122,0.006-0.182,0.009v1.663V26.871z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M19.591,22.936c0-0.018,0.002-0.03,0.009-0.038s0.019-0.014,0.04-0.017c0.081-0.004,0.237-0.009,0.432-0.014\n\t\t\ts0.43-0.008,0.668-0.008c0.711,0,1.243,0.229,1.598,0.627s0.532,0.963,0.532,1.636c0,0.935-0.307,1.544-0.731,1.919\n\t\t\ts-0.968,0.517-1.44,0.517c-0.179,0-0.397-0.002-0.595-0.004s-0.375-0.006-0.469-0.009c-0.014,0-0.025-0.005-0.032-0.015\n\t\t\ts-0.01-0.024-0.01-0.041v-2.276V22.936z M20.354,26.871c0.06,0.004,0.115,0.008,0.173,0.01s0.117,0.004,0.184,0.004\n\t\t\tc0.392,0,0.733-0.138,0.978-0.426s0.391-0.723,0.395-1.318c0.003-0.581-0.145-0.984-0.389-1.241s-0.581-0.369-0.956-0.369\n\t\t\tc-0.073,0-0.14,0.002-0.203,0.004s-0.123,0.006-0.182,0.009v1.663V26.871z", + key: 3, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M13.049,17.669c0,0.048-0.004,0.08-0.022,0.1s-0.05,0.028-0.106,0.028h-0.744h-0.744\n\t\t\tc-0.048,0-0.08-0.012-0.1-0.034s-0.028-0.054-0.028-0.094v-5.21v-5.21c0-0.048,0.012-0.08,0.034-0.1s0.054-0.028,0.094-0.028\n\t\t\th0.752h0.752c0.04,0,0.068,0.008,0.086,0.026s0.026,0.046,0.026,0.086v5.218V17.669z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M14.6,13.907c0-1.16,0.384-2.193,1.074-2.935s1.687-1.194,2.911-1.194c0.104,0,0.184,0,0.262,0.002\n\t\t\ts0.154,0.006,0.25,0.014V8.505V7.217c0-0.032,0.012-0.056,0.03-0.072s0.042-0.024,0.066-0.024h0.784h0.784\n\t\t\tc0.04,0,0.064,0.008,0.078,0.022s0.018,0.034,0.018,0.058v4.538v4.538c0,0.136,0,0.288,0.006,0.452s0.018,0.34,0.043,0.525\n\t\t\tc0,0.032-0.004,0.052-0.016,0.068s-0.032,0.028-0.064,0.044c-0.417,0.2-0.845,0.344-1.273,0.439s-0.856,0.138-1.273,0.138\n\t\t\tc-1.072,0-1.993-0.332-2.645-1.003S14.6,15.26,14.6,13.907z M19.098,11.362c-0.072-0.032-0.156-0.056-0.252-0.072\n\t\t\ts-0.204-0.024-0.324-0.024c-0.624,0-1.156,0.24-1.532,0.68s-0.596,1.08-0.596,1.881c0,0.912,0.224,1.553,0.588,1.965\n\t\t\ts0.868,0.596,1.429,0.596c0.12,0,0.244-0.008,0.362-0.026s0.23-0.046,0.326-0.086v-2.457V11.362z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 88845: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#2E0918;}\n\t.st1{fill:#FF3388;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("path", { className: "st0", d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V1c0-0.276,0.224-0.5,0.5-0.5h24c0.276,0,0.5,0.224,0.5,0.5v28\n\tc0,1.379-1.121,2.5-2.5,2.5H6z", key: 1 }), + r.createElement("path", { + className: "st1", + d: + "M28.42,0.1C28.29,0.03,28.15,0,28,0H4C3.85,0,3.71,0.03,3.58,0.1C3.25,0.25,3.02,0.58,3,0.96V29\n\tc0,1.66,1.35,3,3,3h20c1.65,0,3-1.34,3-3V0.97C28.99,0.58,28.75,0.25,28.42,0.1z M27.67,1l-2.18,2.64c-0.1,0.11-0.24,0.18-0.39,0.18\n\tH6.99c-0.15,0-0.29-0.07-0.38-0.18L4.35,1H27.67z M28,29c0,1.11-0.9,2-2,2H6c-1.1,0-2-0.89-2-2V2.13l1.85,2.16\n\tc0.28,0.33,0.7,0.53,1.14,0.53H25.1c0.45,0,0.87-0.2,1.16-0.55L28,2.17V29z", + key: 2, + }), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M13.049,17.669c0,0.048-0.004,0.08-0.022,0.1s-0.05,0.028-0.106,0.028h-0.744h-0.744\n\t\t\tc-0.048,0-0.08-0.012-0.1-0.034s-0.028-0.054-0.028-0.094v-5.21v-5.21c0-0.048,0.012-0.08,0.034-0.1s0.054-0.028,0.094-0.028\n\t\t\th0.752h0.752c0.04,0,0.068,0.008,0.086,0.026s0.026,0.046,0.026,0.086v5.218V17.669z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M14.6,13.907c0-1.16,0.384-2.193,1.074-2.935s1.687-1.194,2.911-1.194c0.104,0,0.184,0,0.262,0.002\n\t\t\ts0.154,0.006,0.25,0.014V8.505V7.217c0-0.032,0.012-0.056,0.03-0.072s0.042-0.024,0.066-0.024h0.784h0.784\n\t\t\tc0.04,0,0.064,0.008,0.078,0.022s0.018,0.034,0.018,0.058v4.538v4.538c0,0.136,0,0.288,0.006,0.452s0.018,0.34,0.043,0.525\n\t\t\tc0,0.032-0.004,0.052-0.016,0.068s-0.032,0.028-0.064,0.044c-0.417,0.2-0.845,0.344-1.273,0.439s-0.856,0.138-1.273,0.138\n\t\t\tc-1.072,0-1.993-0.332-2.645-1.003S14.6,15.26,14.6,13.907z M19.098,11.362c-0.072-0.032-0.156-0.056-0.252-0.072\n\t\t\ts-0.204-0.024-0.324-0.024c-0.624,0-1.156,0.24-1.532,0.68s-0.596,1.08-0.596,1.881c0,0.912,0.224,1.553,0.588,1.965\n\t\t\ts0.868,0.596,1.429,0.596c0.12,0,0.244-0.008,0.362-0.026s0.23-0.046,0.326-0.086v-2.457V11.362z", + key: 1, + }), + ]) + ), + r.createElement( + "g", + { key: 4 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M10.38,27.488c0,0.021-0.002,0.035-0.01,0.044s-0.022,0.012-0.046,0.012H9.998H9.672\n\t\t\tc-0.021,0-0.035-0.005-0.044-0.015s-0.012-0.024-0.012-0.041v-2.28v-2.28c0-0.021,0.005-0.035,0.015-0.044\n\t\t\ts0.024-0.013,0.041-0.013h0.329h0.329c0.018,0,0.03,0.004,0.038,0.012s0.011,0.021,0.011,0.038v2.283V27.488z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M11.513,27.544c-0.021,0-0.035-0.003-0.044-0.012s-0.012-0.023-0.012-0.044v-2.283v-2.283\n\t\t\tc0-0.018,0.005-0.03,0.014-0.038s0.021-0.012,0.035-0.012h0.434h0.434c0.021,0,0.035,0.002,0.046,0.008s0.018,0.017,0.025,0.034\n\t\t\tc0.207,0.438,0.541,1.2,0.846,1.91s0.582,1.369,0.673,1.6h0.004h0.004c-0.007-0.109-0.016-0.253-0.023-0.439\n\t\t\ts-0.012-0.416-0.012-0.696v-1.184v-1.184c0-0.014,0.003-0.027,0.012-0.036s0.023-0.014,0.044-0.014h0.304h0.304\n\t\t\tc0.021,0,0.035,0.004,0.044,0.013s0.012,0.023,0.012,0.044v2.276v2.276c0,0.025-0.005,0.041-0.017,0.05s-0.029,0.013-0.053,0.013\n\t\t\th-0.389h-0.389c-0.025,0-0.042-0.003-0.055-0.011s-0.022-0.02-0.029-0.038c-0.161-0.378-0.501-1.144-0.828-1.897\n\t\t\ts-0.643-1.496-0.755-1.829H12.14h-0.004c0.01,0.158,0.019,0.34,0.025,0.553s0.01,0.459,0.01,0.742v1.212v1.212\n\t\t\tc0,0.017-0.004,0.031-0.011,0.041s-0.02,0.015-0.037,0.015h-0.305H11.513z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M15.727,22.936c0-0.018,0.002-0.03,0.009-0.038s0.019-0.014,0.041-0.017c0.08-0.004,0.236-0.009,0.431-0.014\n\t\t\ts0.43-0.008,0.668-0.008c0.711,0,1.243,0.229,1.598,0.627s0.531,0.963,0.531,1.636c0,0.935-0.306,1.544-0.731,1.919\n\t\t\ts-0.967,0.517-1.44,0.517c-0.178,0-0.397-0.002-0.595-0.004s-0.375-0.006-0.469-0.009c-0.014,0-0.024-0.005-0.031-0.015\n\t\t\ts-0.011-0.024-0.011-0.041v-2.276V22.936z M16.491,26.871c0.059,0.004,0.115,0.008,0.173,0.01s0.117,0.004,0.184,0.004\n\t\t\tc0.392,0,0.734-0.138,0.978-0.426s0.392-0.723,0.395-1.318c0.003-0.581-0.146-0.984-0.389-1.241s-0.581-0.369-0.956-0.369\n\t\t\tc-0.074,0-0.14,0.002-0.203,0.004s-0.122,0.006-0.182,0.009v1.663V26.871z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M19.843,22.929c0-0.014,0.002-0.026,0.008-0.035s0.017-0.014,0.034-0.014\n\t\t\tc0.137-0.007,0.305-0.013,0.491-0.016s0.391-0.005,0.601-0.005c0.588,0,1.01,0.161,1.285,0.426s0.402,0.632,0.402,1.045\n\t\t\tc0,0.54-0.194,0.925-0.509,1.175s-0.748,0.366-1.228,0.366c-0.081,0-0.135-0.002-0.183-0.003s-0.09-0.003-0.146-0.003v0.816v0.816\n\t\t\tc0,0.018-0.004,0.03-0.012,0.038s-0.021,0.011-0.038,0.011h-0.329h-0.329c-0.018,0-0.03-0.003-0.038-0.011\n\t\t\ts-0.011-0.02-0.011-0.038v-2.283V22.929z M20.6,25.184c0.049,0.003,0.093,0.005,0.145,0.006s0.114,0.001,0.198,0.001\n\t\t\tc0.249,0,0.489-0.044,0.666-0.172s0.294-0.34,0.294-0.676c0-0.27-0.082-0.472-0.235-0.608s-0.377-0.204-0.661-0.204\n\t\t\tc-0.084,0-0.167,0.002-0.238,0.004s-0.13,0.006-0.169,0.009v0.819V25.184z", + key: 3, + }), + ]) + ), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + r.createElement("g", { key: 10 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 9510: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#2E0918;}\n\t.st1{fill:#FF3388;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("path", { className: "st0", d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V1c0-0.276,0.224-0.5,0.5-0.5h24c0.276,0,0.5,0.224,0.5,0.5v28\n\tc0,1.379-1.121,2.5-2.5,2.5H6z", key: 1 }), + r.createElement("path", { className: "st1", d: "M28,0H4C3.45,0,3,0.45,3,1v28c0,1.65,1.35,3,3,3h20c1.65,0,3-1.35,3-3V1C29,0.45,28.55,0,28,0z M28,29\n\tc0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2V3h24V29z", key: 2 }), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M10.559,27.488c0,0.021-0.002,0.035-0.01,0.044s-0.022,0.012-0.046,0.012h-0.326H9.851\n\t\t\tc-0.021,0-0.035-0.005-0.044-0.015s-0.012-0.024-0.012-0.041v-2.28v-2.28c0-0.021,0.005-0.035,0.015-0.044\n\t\t\ts0.024-0.013,0.041-0.013h0.329h0.329c0.018,0,0.03,0.004,0.038,0.012s0.011,0.021,0.011,0.038v2.283V27.488z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M11.692,27.544c-0.021,0-0.035-0.003-0.044-0.012s-0.012-0.023-0.012-0.044v-2.283v-2.283\n\t\t\tc0-0.018,0.005-0.03,0.014-0.038s0.021-0.012,0.035-0.012h0.434h0.434c0.021,0,0.035,0.002,0.046,0.008s0.018,0.017,0.025,0.034\n\t\t\tc0.207,0.438,0.541,1.2,0.846,1.91s0.582,1.369,0.673,1.6h0.004h0.004c-0.007-0.109-0.016-0.253-0.023-0.439\n\t\t\ts-0.012-0.416-0.012-0.696v-1.184v-1.184c0-0.014,0.003-0.027,0.012-0.036s0.023-0.014,0.044-0.014h0.304h0.304\n\t\t\tc0.021,0,0.035,0.004,0.044,0.013s0.012,0.023,0.012,0.044v2.276v2.276c0,0.025-0.005,0.041-0.017,0.05s-0.029,0.013-0.053,0.013\n\t\t\th-0.389h-0.389c-0.025,0-0.042-0.003-0.055-0.011s-0.022-0.02-0.029-0.038c-0.161-0.378-0.501-1.144-0.828-1.897\n\t\t\ts-0.643-1.496-0.755-1.829h-0.004h-0.004c0.01,0.158,0.019,0.34,0.025,0.553s0.01,0.459,0.01,0.742v1.212v1.212\n\t\t\tc0,0.017-0.004,0.031-0.011,0.041s-0.02,0.015-0.037,0.015h-0.305H11.692z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M15.906,22.936c0-0.018,0.002-0.03,0.009-0.038s0.019-0.014,0.041-0.017c0.08-0.004,0.236-0.009,0.431-0.014\n\t\t\ts0.43-0.008,0.668-0.008c0.711,0,1.243,0.229,1.598,0.627s0.531,0.963,0.531,1.636c0,0.935-0.306,1.544-0.731,1.919\n\t\t\ts-0.967,0.517-1.44,0.517c-0.179,0-0.398-0.002-0.596-0.004s-0.375-0.006-0.469-0.009c-0.014,0-0.024-0.005-0.031-0.015\n\t\t\ts-0.011-0.024-0.011-0.041v-2.276V22.936z M16.669,26.871c0.059,0.004,0.115,0.008,0.173,0.01s0.117,0.004,0.184,0.004\n\t\t\tc0.392,0,0.734-0.138,0.978-0.426s0.392-0.723,0.395-1.318c0.003-0.581-0.146-0.984-0.389-1.241s-0.581-0.369-0.956-0.369\n\t\t\tc-0.074,0-0.14,0.002-0.203,0.004s-0.122,0.006-0.182,0.009v1.663V26.871z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M20.688,23.565h-0.588h-0.588c-0.018,0-0.03-0.003-0.037-0.012s-0.009-0.023-0.005-0.044l0.042-0.294\n\t\t\tl0.042-0.294c0.003-0.018,0.009-0.03,0.017-0.038s0.021-0.012,0.038-0.012h1.471h1.471c0.021,0,0.035,0.004,0.045,0.013\n\t\t\ts0.015,0.023,0.019,0.044l0.028,0.291l0.028,0.291c0.003,0.021,0,0.035-0.009,0.044s-0.023,0.012-0.04,0.012h-0.585H21.45v1.961\n\t\t\tv1.961c0,0.017-0.003,0.031-0.012,0.041s-0.023,0.015-0.044,0.015h-0.326h-0.326c-0.021,0-0.035-0.003-0.044-0.012\n\t\t\ts-0.012-0.023-0.012-0.044v-1.961V23.565z", + key: 3, + }), + ]) + ), + r.createElement( + "g", + { key: 4 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M13.049,17.669c0,0.048-0.004,0.08-0.022,0.1s-0.05,0.028-0.106,0.028h-0.744h-0.744\n\t\t\tc-0.048,0-0.08-0.012-0.1-0.034s-0.028-0.054-0.028-0.094v-5.21v-5.21c0-0.048,0.012-0.08,0.034-0.1s0.054-0.028,0.094-0.028\n\t\t\th0.752h0.752c0.04,0,0.068,0.008,0.086,0.026s0.026,0.046,0.026,0.086v5.218V17.669z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M14.6,13.907c0-1.16,0.384-2.193,1.074-2.935s1.687-1.194,2.911-1.194c0.104,0,0.184,0,0.262,0.002\n\t\t\ts0.154,0.006,0.25,0.014V8.505V7.217c0-0.032,0.012-0.056,0.03-0.072s0.042-0.024,0.066-0.024h0.784h0.784\n\t\t\tc0.04,0,0.064,0.008,0.078,0.022s0.018,0.034,0.018,0.058v4.538v4.538c0,0.136,0,0.288,0.006,0.452s0.018,0.34,0.043,0.525\n\t\t\tc0,0.032-0.004,0.052-0.016,0.068s-0.032,0.028-0.064,0.044c-0.417,0.2-0.845,0.344-1.273,0.439s-0.856,0.138-1.273,0.138\n\t\t\tc-1.072,0-1.993-0.332-2.645-1.003S14.6,15.26,14.6,13.907z M19.098,11.362c-0.072-0.032-0.156-0.056-0.252-0.072\n\t\t\ts-0.204-0.024-0.324-0.024c-0.624,0-1.156,0.24-1.532,0.68s-0.596,1.08-0.596,1.881c0,0.912,0.224,1.553,0.588,1.965\n\t\t\ts0.868,0.596,1.429,0.596c0.12,0,0.244-0.008,0.362-0.026s0.23-0.046,0.326-0.086v-2.457V11.362z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + r.createElement("g", { key: 10 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 3497: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#022326;}\n\t.st1{fill:#0DEBFF;}\n\t.st2{fill:#CCFBFF;}\n\t.st3{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M11.44,17.797c-0.056,0-0.092-0.012-0.114-0.036s-0.03-0.06-0.03-0.109V12.45V7.249\n\t\t\tc0-0.04,0.008-0.072,0.026-0.094s0.046-0.034,0.086-0.034h0.768h0.768c0.04,0,0.064,0.008,0.078,0.026s0.018,0.046,0.018,0.086\n\t\t\tv4.49v4.49h2.001h2.001c0.04,0,0.068,0.008,0.084,0.026s0.02,0.046,0.012,0.086l-0.12,0.68l-0.12,0.68\n\t\t\tc-0.008,0.04-0.024,0.068-0.048,0.086s-0.056,0.026-0.096,0.026h-2.657H11.44z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M18.064,11.522c0-0.056,0-0.156-0.006-0.31s-0.018-0.362-0.042-0.634c0-0.04,0.004-0.064,0.016-0.082\n\t\t\ts0.032-0.03,0.064-0.046c0.296-0.12,0.792-0.288,1.41-0.426s1.358-0.246,2.143-0.246c0.04,0,0.068,0.004,0.086,0.018\n\t\t\ts0.026,0.038,0.026,0.078v0.704v0.704c0,0.04-0.008,0.064-0.026,0.078s-0.046,0.018-0.086,0.018\n\t\t\tc-0.304-0.016-0.68-0.004-1.022,0.03s-0.65,0.09-0.819,0.162v3.057v3.057c0,0.04-0.008,0.068-0.026,0.086\n\t\t\ts-0.046,0.026-0.086,0.026h-0.76h-0.76c-0.04,0-0.068-0.008-0.086-0.026s-0.026-0.046-0.026-0.086v-3.081V11.522z", + key: 1, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st3", + d: + "M12.217,27.544c-0.024,0-0.04-0.005-0.05-0.016s-0.013-0.026-0.013-0.047v-2.276v-2.276\n\t\t\tc0-0.018,0.004-0.032,0.011-0.042s0.02-0.015,0.038-0.015h0.336h0.336c0.017,0,0.028,0.004,0.034,0.012s0.008,0.021,0.008,0.038\n\t\t\tv1.964v1.964h0.875h0.875c0.017,0,0.03,0.003,0.037,0.011s0.009,0.02,0.005,0.038l-0.053,0.298l-0.053,0.298\n\t\t\tc-0.003,0.018-0.01,0.03-0.021,0.038s-0.025,0.011-0.042,0.011h-1.163H12.217z", + key: 0, + }), + r.createElement("path", { + className: "st3", + d: + "M16.088,27.488c0,0.021-0.002,0.035-0.01,0.044s-0.022,0.012-0.046,0.012h-0.326h-0.326\n\t\t\tc-0.021,0-0.035-0.005-0.044-0.015s-0.012-0.024-0.012-0.041v-2.28v-2.28c0-0.021,0.005-0.035,0.015-0.044\n\t\t\ts0.024-0.013,0.041-0.013h0.329h0.329c0.018,0,0.03,0.004,0.038,0.012s0.011,0.021,0.011,0.038v2.283V27.488z", + key: 1, + }), + r.createElement("path", { + className: "st3", + d: + "M17.166,22.936c0-0.018,0.002-0.03,0.007-0.038s0.014-0.014,0.027-0.017c0.098-0.004,0.28-0.009,0.491-0.014\n\t\t\ts0.451-0.008,0.665-0.008c0.648,0,1.03,0.189,1.249,0.436s0.277,0.552,0.277,0.783c0,0.259-0.063,0.461-0.149,0.615\n\t\t\ts-0.194,0.261-0.285,0.331c0.126,0.066,0.287,0.18,0.416,0.361s0.227,0.427,0.227,0.76c0,0.441-0.177,0.796-0.488,1.041\n\t\t\ts-0.758,0.377-1.297,0.373c-0.228,0-0.445-0.002-0.634-0.004s-0.347-0.006-0.459-0.009c-0.018-0.003-0.03-0.01-0.038-0.02\n\t\t\ts-0.011-0.022-0.011-0.036v-2.276V22.936z M17.915,24.757h0.213h0.213c0.102,0,0.208,0.003,0.303,0.009s0.177,0.015,0.23,0.025\n\t\t\tc0.07-0.063,0.136-0.14,0.185-0.24s0.08-0.222,0.08-0.377c0-0.213-0.072-0.376-0.206-0.486s-0.33-0.166-0.578-0.166\n\t\t\tc-0.084,0-0.166,0.002-0.242,0.005s-0.144,0.006-0.2,0.01v0.609V24.757z M17.915,26.886c0.063,0.003,0.124,0.007,0.189,0.009\n\t\t\ts0.133,0.004,0.21,0.004c0.276,0,0.525-0.052,0.704-0.172s0.29-0.305,0.29-0.571c0-0.165-0.042-0.308-0.127-0.424\n\t\t\ts-0.213-0.203-0.384-0.256c-0.06-0.018-0.125-0.031-0.194-0.041s-0.143-0.015-0.22-0.015h-0.234h-0.234v0.732V26.886z", + key: 2, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 34147: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#202600;}\n\t.st1{fill:#CAF200;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M8.903,22.872H9.4h0.497c0.017,0,0.03,0.002,0.038,0.008s0.014,0.017,0.017,0.034\n\t\t\tc0.088,0.326,0.258,1.017,0.42,1.717s0.319,1.407,0.378,1.765h0.003h0.003c0.066-0.326,0.247-1.023,0.433-1.724\n\t\t\ts0.379-1.407,0.47-1.75c0.004-0.018,0.009-0.03,0.018-0.038s0.021-0.012,0.039-0.012h0.48h0.48c0.018,0,0.028,0.002,0.035,0.007\n\t\t\ts0.01,0.014,0.014,0.028l0.084,2.291l0.084,2.291c0.003,0.021,0,0.035-0.009,0.044s-0.023,0.012-0.04,0.012h-0.34h-0.34\n\t\t\tc-0.021,0-0.033-0.003-0.04-0.011s-0.009-0.02-0.009-0.038c-0.014-0.75-0.021-1.653-0.025-2.416s-0.004-1.384-0.004-1.57h-0.003\n\t\t\th-0.003c-0.06,0.298-0.243,1.044-0.446,1.84s-0.423,1.644-0.556,2.145c-0.004,0.021-0.011,0.033-0.02,0.04\n\t\t\ts-0.022,0.009-0.036,0.009h-0.308h-0.308c-0.018,0-0.032-0.002-0.042-0.008s-0.017-0.017-0.021-0.034\n\t\t\tc-0.13-0.522-0.313-1.322-0.485-2.091S9.53,23.905,9.449,23.51H9.442H9.435c0,0.277-0.014,0.893-0.035,1.63\n\t\t\ts-0.049,1.595-0.077,2.355c0,0.021-0.005,0.033-0.014,0.04s-0.021,0.009-0.035,0.009H8.966H8.658\n\t\t\tc-0.021,0-0.035-0.003-0.044-0.011s-0.012-0.02-0.012-0.038l0.126-2.291l0.126-2.291c0.004-0.017,0.007-0.028,0.014-0.034\n\t\t\tS8.885,22.872,8.903,22.872z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M14.573,25.912c0,0.336,0.056,0.588,0.199,0.756s0.372,0.252,0.719,0.252c0.137,0,0.263-0.01,0.372-0.027\n\t\t\ts0.202-0.04,0.272-0.065v-1.95v-1.95c0-0.018,0.004-0.032,0.011-0.042s0.02-0.015,0.037-0.015h0.333h0.333\n\t\t\tc0.018,0,0.03,0.004,0.038,0.012s0.011,0.021,0.011,0.038v1.908v1.908c0,0.105,0.002,0.193,0.005,0.272s0.009,0.151,0.016,0.225\n\t\t\tc0.004,0.018,0.002,0.03-0.005,0.04s-0.019,0.017-0.037,0.024c-0.175,0.063-0.394,0.14-0.648,0.202s-0.543,0.107-0.858,0.107\n\t\t\tc-0.518,0-0.91-0.119-1.173-0.377s-0.396-0.653-0.396-1.206v-1.548v-1.548c0-0.018,0.002-0.032,0.009-0.042\n\t\t\ts0.019-0.015,0.04-0.015h0.336h0.336c0.017,0,0.03,0.004,0.037,0.012s0.011,0.021,0.011,0.038v1.495V25.912z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M17.716,27.383c-0.014-0.01-0.024-0.022-0.031-0.037s-0.011-0.032-0.011-0.053v-0.336v-0.336\n\t\t\tc0-0.01,0.007-0.021,0.018-0.026s0.025-0.005,0.039,0.005c0.157,0.108,0.329,0.187,0.505,0.239s0.356,0.076,0.532,0.076\n\t\t\tc0.256,0,0.436-0.067,0.553-0.171s0.169-0.246,0.169-0.396c0-0.133-0.033-0.254-0.128-0.378s-0.251-0.249-0.496-0.393\n\t\t\tl-0.126-0.067l-0.126-0.067c-0.36-0.203-0.593-0.408-0.736-0.628s-0.196-0.454-0.196-0.717c0-0.357,0.125-0.679,0.366-0.912\n\t\t\ts0.601-0.376,1.07-0.376c0.207,0,0.385,0.016,0.534,0.044s0.268,0.068,0.355,0.118c0.018,0.007,0.028,0.016,0.034,0.028\n\t\t\ts0.008,0.028,0.008,0.049v0.315v0.315c0,0.014-0.007,0.026-0.017,0.032s-0.024,0.006-0.038-0.004\n\t\t\tc-0.108-0.07-0.241-0.123-0.389-0.158s-0.308-0.052-0.473-0.052c-0.27,0-0.448,0.077-0.56,0.184s-0.155,0.246-0.155,0.368\n\t\t\tc0,0.133,0.033,0.249,0.127,0.365s0.248,0.231,0.49,0.364l0.112,0.06l0.112,0.06c0.399,0.221,0.65,0.438,0.801,0.665\n\t\t\ts0.201,0.466,0.201,0.728c0,0.389-0.142,0.718-0.399,0.95s-0.63,0.367-1.093,0.367c-0.207,0-0.404-0.019-0.583-0.057\n\t\t\tS17.846,27.457,17.716,27.383z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M23.569,27.488c-0.003,0.021-0.009,0.035-0.019,0.044s-0.024,0.012-0.045,0.012h-1.198H21.11\n\t\t\tc-0.021,0-0.035-0.003-0.044-0.012s-0.012-0.023-0.012-0.044v-2.28v-2.28c0-0.021,0.003-0.035,0.012-0.044\n\t\t\ts0.023-0.013,0.044-0.013h1.156h1.156c0.021,0,0.035,0.002,0.045,0.009s0.015,0.02,0.019,0.041l0.031,0.294l0.031,0.294\n\t\t\tc0.003,0.018,0.002,0.031-0.005,0.041s-0.019,0.015-0.037,0.015h-0.844h-0.844v0.624v0.624h0.76h0.76\n\t\t\tc0.018,0,0.03,0.003,0.038,0.011s0.011,0.02,0.011,0.038v0.298v0.298c0,0.018-0.005,0.03-0.015,0.038s-0.023,0.011-0.041,0.011\n\t\t\th-0.756h-0.756v0.672v0.672h0.9h0.9c0.021,0,0.033,0.003,0.039,0.011s0.006,0.02,0.003,0.038l-0.045,0.294L23.569,27.488z", + key: 3, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M7.993,7.121H9.13h1.136c0.04,0,0.068,0.004,0.088,0.018s0.032,0.038,0.04,0.078\n\t\t\tc0.2,0.744,0.588,2.325,0.96,3.923s0.728,3.215,0.864,4.032h0.008h0.008c0.152-0.744,0.564-2.337,0.99-3.94s0.866-3.215,1.074-4\n\t\t\tc0.008-0.04,0.02-0.068,0.04-0.086s0.048-0.026,0.088-0.026h1.096h1.096c0.04,0,0.064,0.004,0.08,0.016s0.024,0.032,0.032,0.064\n\t\t\tl0.192,5.234l0.192,5.234c0.008,0.048,0,0.08-0.019,0.1s-0.052,0.028-0.092,0.028h-0.776h-0.776c-0.048,0-0.076-0.008-0.092-0.026\n\t\t\ts-0.02-0.046-0.02-0.086c-0.032-1.713-0.048-3.777-0.056-5.52s-0.008-3.163-0.008-3.587h-0.008H15.26\n\t\t\tc-0.136,0.68-0.556,2.385-1.018,4.206s-0.966,3.758-1.27,4.902c-0.008,0.048-0.024,0.076-0.046,0.092s-0.05,0.02-0.082,0.02\n\t\t\th-0.704h-0.704c-0.04,0-0.072-0.004-0.096-0.018s-0.04-0.038-0.048-0.078c-0.296-1.193-0.716-3.021-1.109-4.778\n\t\t\ts-0.756-3.441-0.94-4.346H9.226H9.209c0,0.632-0.032,2.041-0.08,3.726s-0.112,3.645-0.176,5.382c0,0.048-0.012,0.076-0.032,0.092\n\t\t\ts-0.048,0.02-0.08,0.02H8.137H7.433c-0.048,0-0.08-0.008-0.1-0.026s-0.028-0.046-0.028-0.086l0.288-5.234l0.288-5.234\n\t\t\tc0.008-0.04,0.016-0.064,0.032-0.078S7.953,7.121,7.993,7.121z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M24.715,16.18c0,0.056,0.004,0.168,0.012,0.334s0.02,0.386,0.036,0.658c0,0.032-0.004,0.056-0.016,0.074\n\t\t\ts-0.032,0.03-0.064,0.039c-0.424,0.16-0.869,0.324-1.355,0.448s-1.015,0.208-1.607,0.208c-0.728,0-1.44-0.14-1.97-0.56\n\t\t\ts-0.878-1.121-0.878-2.241v-2.553v-2.553c0-0.04,0.008-0.072,0.026-0.094s0.046-0.034,0.086-0.034h0.76h0.76\n\t\t\tc0.04,0,0.068,0.012,0.086,0.034s0.026,0.054,0.026,0.094v2.449v2.449c0,0.472,0.092,0.836,0.308,1.082s0.557,0.374,1.053,0.374\n\t\t\tc0.2,0,0.388-0.02,0.556-0.052s0.316-0.076,0.436-0.124v-3.089v-3.089c0-0.04,0.008-0.072,0.026-0.094s0.046-0.034,0.086-0.034\n\t\t\th0.76h0.76c0.048,0,0.076,0.012,0.092,0.034s0.02,0.054,0.02,0.094v3.073V16.18z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 43869: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#FFFFFF;}\n\t.st1{fill:#B3B3B3;}\n\t.st2{fill:#2C2C2C;}\n\t.st3{fill:#FF2116;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M11.076,22.929c0-0.014,0.002-0.026,0.008-0.035s0.017-0.014,0.034-0.014\n\t\t\tc0.137-0.007,0.305-0.013,0.491-0.016S12,22.858,12.21,22.858c0.588,0,1.01,0.161,1.285,0.426s0.403,0.632,0.403,1.045\n\t\t\tc0,0.54-0.194,0.925-0.509,1.175s-0.749,0.366-1.229,0.366c-0.081,0-0.135-0.002-0.183-0.003s-0.09-0.003-0.146-0.003v0.816v0.816\n\t\t\tc0,0.018-0.003,0.03-0.011,0.038s-0.02,0.011-0.038,0.011h-0.329h-0.329c-0.018,0-0.03-0.003-0.038-0.011s-0.011-0.02-0.011-0.038\n\t\t\tv-2.283V22.929z M11.832,25.184c0.049,0.003,0.093,0.005,0.145,0.006s0.114,0.001,0.198,0.001c0.249,0,0.489-0.044,0.666-0.172\n\t\t\ts0.293-0.34,0.293-0.676c0-0.27-0.082-0.472-0.235-0.608s-0.377-0.204-0.661-0.204c-0.084,0-0.166,0.002-0.237,0.004\n\t\t\ts-0.13,0.006-0.169,0.009v0.819V25.184z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M14.653,22.936c0-0.018,0.002-0.03,0.009-0.038s0.019-0.014,0.041-0.017c0.08-0.004,0.236-0.009,0.431-0.014\n\t\t\ts0.43-0.008,0.668-0.008c0.711,0,1.243,0.229,1.598,0.627s0.531,0.963,0.531,1.636c0,0.935-0.306,1.544-0.731,1.919\n\t\t\ts-0.967,0.517-1.44,0.517c-0.178,0-0.397-0.002-0.595-0.004s-0.375-0.006-0.469-0.009c-0.014,0-0.024-0.005-0.031-0.015\n\t\t\ts-0.011-0.024-0.011-0.041v-2.276V22.936z M15.417,26.871c0.059,0.004,0.115,0.008,0.173,0.01s0.117,0.004,0.184,0.004\n\t\t\tc0.392,0,0.734-0.138,0.978-0.426s0.391-0.723,0.395-1.318c0.003-0.581-0.146-0.984-0.389-1.241s-0.581-0.369-0.956-0.369\n\t\t\tc-0.074,0-0.14,0.002-0.203,0.004s-0.122,0.006-0.182,0.009v1.663V26.871z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M19.532,27.488c0,0.021-0.004,0.035-0.012,0.044s-0.02,0.012-0.037,0.012H19.15h-0.333\n\t\t\tc-0.018,0-0.03-0.003-0.038-0.012s-0.011-0.023-0.011-0.044v-2.283v-2.283c0-0.018,0.003-0.03,0.011-0.038s0.02-0.012,0.038-0.012\n\t\t\th1.167h1.167c0.021,0,0.033,0.004,0.041,0.012s0.011,0.021,0.015,0.038l0.035,0.294l0.035,0.294c0.003,0.021,0,0.035-0.01,0.044\n\t\t\ts-0.026,0.012-0.047,0.012h-0.844h-0.844v0.666v0.666h0.756h0.756c0.018,0,0.03,0.002,0.038,0.009s0.011,0.019,0.011,0.04v0.294\n\t\t\tv0.294c0,0.021-0.003,0.033-0.011,0.04s-0.02,0.009-0.038,0.009h-0.756h-0.756v0.953V27.488z", + key: 2, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("path", { + className: "st3", + d: + "M22.844,14.574c-0.205-0.228-0.541-0.403-0.977-0.521c-0.435-0.118-0.97-0.178-1.57-0.178\n\t\tc-0.323,0-0.671,0.017-1.04,0.052c-0.369,0.035-0.758,0.087-1.165,0.156c-0.234-0.225-0.463-0.471-0.688-0.736\n\t\tc-0.224-0.266-0.444-0.551-0.657-0.857c-0.15-0.216-0.296-0.437-0.435-0.662c-0.139-0.224-0.272-0.452-0.396-0.683\n\t\tc0.234-0.745,0.41-1.417,0.528-2.013c0.118-0.596,0.177-1.116,0.177-1.554c0-0.482-0.073-0.97-0.271-1.337\n\t\ts-0.519-0.614-1.016-0.614c-0.153,0-0.322,0.049-0.473,0.134c-0.151,0.084-0.282,0.204-0.36,0.346\n\t\tc-0.234,0.41-0.281,1.074-0.171,1.858c0.11,0.784,0.376,1.688,0.769,2.577c-0.141,0.445-0.306,0.863-0.484,1.289\n\t\tc-0.177,0.426-0.367,0.86-0.557,1.337c-0.165,0.404-0.322,0.775-0.49,1.14s-0.346,0.725-0.551,1.106\n\t\tc-1.146,0.468-2.107,1.009-2.8,1.541s-1.12,1.054-1.198,1.484c-0.029,0.156-0.019,0.307,0.028,0.448s0.131,0.271,0.249,0.383\n\t\tc0.038,0.038,0.128,0.115,0.274,0.184c0.145,0.069,0.344,0.128,0.598,0.128c0.756,0,1.5-0.619,2.158-1.427\n\t\tc0.657-0.808,1.228-1.805,1.638-2.561c0.309-0.11,0.652-0.22,0.996-0.323c0.344-0.103,0.69-0.2,1.005-0.284\n\t\tc0.346-0.095,0.68-0.189,1.006-0.273c0.326-0.084,0.643-0.158,0.958-0.212c0.8,0.736,1.58,1.166,2.249,1.413\n\t\tc0.669,0.246,1.226,0.309,1.578,0.309c0.427,0,0.719-0.089,0.917-0.216c0.198-0.127,0.304-0.292,0.359-0.442\n\t\tc0.02-0.052,0.033-0.105,0.041-0.159c0.008-0.053,0.011-0.107,0.011-0.159c0-0.133-0.025-0.263-0.066-0.378\n\t\tC22.973,14.75,22.913,14.649,22.844,14.574z M9.83,19.127c-0.061,0-0.117-0.009-0.168-0.027c-0.051-0.018-0.097-0.045-0.138-0.083\n\t\tc-0.066-0.066-0.111-0.143-0.134-0.227c-0.023-0.084-0.025-0.175-0.005-0.269c0.067-0.322,0.452-0.759,1.051-1.217\n\t\tc0.599-0.459,1.412-0.939,2.336-1.346c-0.49,0.99-1.068,1.782-1.602,2.326C10.635,18.83,10.145,19.127,9.83,19.127z M14.657,7.242\n\t\tc0-0.216,0.019-0.42,0.053-0.595c0.034-0.175,0.084-0.322,0.144-0.426c0.046-0.084,0.107-0.15,0.177-0.196\n\t\tc0.07-0.045,0.149-0.07,0.233-0.07c0.231,0,0.395,0.144,0.502,0.331c0.107,0.187,0.157,0.418,0.161,0.591\n\t\tc0.009,0.424-0.073,0.901-0.202,1.421s-0.305,1.084-0.484,1.682c-0.199-0.508-0.345-1.022-0.442-1.495\n\t\tC14.704,8.013,14.657,7.582,14.657,7.242z M15.852,14.579c-0.245,0.069-0.523,0.139-0.802,0.213\n\t\tc-0.279,0.074-0.558,0.151-0.807,0.234c0.133-0.266,0.261-0.56,0.381-0.849c0.12-0.29,0.231-0.575,0.329-0.823\n\t\tc0.121-0.303,0.244-0.62,0.36-0.936s0.227-0.628,0.325-0.923c0.11,0.188,0.247,0.414,0.385,0.636\n\t\tc0.138,0.221,0.278,0.436,0.394,0.601c0.188,0.268,0.381,0.524,0.578,0.765c0.197,0.241,0.398,0.468,0.6,0.678\n\t\tc-0.277,0.052-0.561,0.113-0.852,0.18S16.155,14.499,15.852,14.579z M22.5,15.188c-0.014,0.081-0.048,0.166-0.103,0.244\n\t\ts-0.13,0.148-0.228,0.199c-0.113,0.075-0.293,0.126-0.504,0.149c-0.211,0.023-0.452,0.018-0.687-0.02\n\t\tc-0.405-0.065-0.86-0.253-1.307-0.506c-0.448-0.253-0.889-0.57-1.267-0.893c0.603-0.104,1.223-0.147,1.769-0.151\n\t\tc0.546-0.004,1.018,0.031,1.327,0.082c0.298,0.05,0.568,0.168,0.754,0.327S22.54,14.977,22.5,15.188z", + }) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 40071: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#062126;}\n\t.st1{fill:#26DBFF;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M6.372,22.929c0-0.014,0.002-0.026,0.008-0.035s0.017-0.014,0.034-0.014c0.137-0.007,0.305-0.013,0.491-0.016\n\t\t\ts0.391-0.005,0.602-0.005c0.588,0,1.01,0.161,1.285,0.426s0.403,0.632,0.403,1.045c0,0.54-0.194,0.925-0.509,1.175\n\t\t\tS7.937,25.87,7.458,25.87c-0.08,0-0.135-0.002-0.183-0.003s-0.09-0.003-0.146-0.003v0.816v0.816c0,0.018-0.003,0.03-0.011,0.038\n\t\t\ts-0.02,0.011-0.038,0.011H6.75H6.421c-0.018,0-0.03-0.003-0.038-0.011s-0.011-0.02-0.011-0.038v-2.283V22.929z M7.128,25.184\n\t\t\tc0.049,0.003,0.093,0.005,0.145,0.006s0.114,0.001,0.198,0.001c0.249,0,0.488-0.044,0.666-0.172s0.293-0.34,0.293-0.676\n\t\t\tc0-0.27-0.082-0.472-0.235-0.608s-0.377-0.204-0.661-0.204c-0.084,0-0.166,0.002-0.237,0.004s-0.13,0.006-0.169,0.009v0.819\n\t\t\tV25.184z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M10.012,27.544c-0.024,0-0.04-0.005-0.05-0.016s-0.013-0.026-0.013-0.047v-2.276v-2.276\n\t\t\tc0-0.018,0.004-0.032,0.011-0.042s0.02-0.015,0.038-0.015h0.336h0.336c0.017,0,0.028,0.004,0.034,0.012s0.008,0.021,0.008,0.038\n\t\t\tv1.964v1.964h0.875h0.875c0.017,0,0.03,0.003,0.037,0.011s0.009,0.02,0.005,0.038l-0.053,0.298L12.4,27.495\n\t\t\tc-0.003,0.018-0.01,0.03-0.021,0.038s-0.025,0.011-0.042,0.011h-1.163H10.012z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M13.12,22.929c0-0.014,0.002-0.026,0.008-0.035s0.017-0.014,0.034-0.014c0.137-0.007,0.305-0.013,0.491-0.016\n\t\t\ts0.391-0.005,0.602-0.005c0.588,0,1.01,0.161,1.285,0.426s0.403,0.632,0.403,1.045c0,0.54-0.194,0.925-0.509,1.175\n\t\t\ts-0.749,0.366-1.228,0.366c-0.08,0-0.135-0.002-0.183-0.003s-0.09-0.003-0.146-0.003v0.816v0.816c0,0.018-0.003,0.03-0.011,0.038\n\t\t\ts-0.02,0.011-0.038,0.011h-0.329h-0.329c-0.018,0-0.03-0.003-0.038-0.011s-0.011-0.02-0.011-0.038v-2.283V22.929z M13.876,25.184\n\t\t\tc0.049,0.003,0.093,0.005,0.145,0.006s0.114,0.001,0.198,0.001c0.249,0,0.488-0.044,0.666-0.172s0.293-0.34,0.293-0.676\n\t\t\tc0-0.27-0.082-0.472-0.235-0.608s-0.377-0.204-0.661-0.204c-0.084,0-0.166,0.002-0.237,0.004s-0.13,0.006-0.169,0.009v0.819\n\t\t\tV25.184z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M17.446,27.495c0,0.018-0.003,0.03-0.011,0.038s-0.02,0.011-0.038,0.011h-0.322h-0.322\n\t\t\tc-0.021,0-0.035-0.003-0.044-0.012s-0.012-0.023-0.012-0.044v-2.273v-2.273c0-0.018,0.004-0.033,0.011-0.044\n\t\t\ts0.018-0.018,0.031-0.018c0.172-0.007,0.338-0.013,0.526-0.016s0.398-0.005,0.658-0.005c0.5,0,0.901,0.119,1.177,0.347\n\t\t\ts0.426,0.564,0.426,0.998c0,0.357-0.119,0.636-0.288,0.843s-0.388,0.344-0.587,0.418c0.101,0.175,0.323,0.574,0.548,0.982\n\t\t\ts0.453,0.824,0.565,1.034c0.01,0.018,0.015,0.033,0.012,0.045s-0.016,0.019-0.04,0.019h-0.364h-0.364\n\t\t\tc-0.024,0-0.042-0.003-0.055-0.01s-0.022-0.015-0.029-0.026c-0.081-0.14-0.247-0.452-0.433-0.802s-0.393-0.739-0.554-1.033h-0.245\n\t\t\th-0.245v0.911V27.495z M17.873,25.002c0.256,0,0.477-0.051,0.633-0.167s0.25-0.299,0.25-0.561c0-0.256-0.084-0.441-0.233-0.563\n\t\t\ts-0.362-0.179-0.622-0.179c-0.091,0-0.18,0.002-0.259,0.004s-0.147,0.006-0.196,0.009v0.729v0.729h0.213H17.873z", + key: 3, + }), + r.createElement("path", { + className: "st2", + d: + "M23.832,25.163c0.003,0.781-0.173,1.392-0.489,1.808s-0.771,0.637-1.324,0.637\n\t\t\tc-0.561,0-1.012-0.231-1.324-0.65s-0.483-1.025-0.483-1.774c0-0.729,0.184-1.322,0.503-1.733s0.775-0.641,1.318-0.641\n\t\t\tc0.567,0,1.017,0.242,1.325,0.657S23.832,24.47,23.832,25.163z M22.046,26.921c0.326,0,0.576-0.168,0.745-0.47\n\t\t\ts0.257-0.738,0.257-1.274c-0.003-0.532-0.098-0.952-0.273-1.24s-0.431-0.441-0.756-0.441c-0.294,0-0.548,0.133-0.729,0.411\n\t\t\ts-0.287,0.699-0.287,1.277c0,0.504,0.087,0.939,0.261,1.247S21.699,26.921,22.046,26.921z", + key: 4, + }), + r.createElement("path", { + className: "st2", + d: + "M24.894,22.922c0-0.018,0.004-0.03,0.013-0.038s0.023-0.012,0.044-0.012h0.329h0.329\n\t\t\tc0.021,0,0.033,0.004,0.04,0.012s0.009,0.021,0.009,0.038v1.729v1.729c0,0.109-0.003,0.216-0.012,0.317s-0.023,0.195-0.044,0.279\n\t\t\tc-0.077,0.336-0.238,0.569-0.453,0.718s-0.482,0.214-0.773,0.214c-0.046,0-0.09-0.002-0.132-0.005s-0.082-0.009-0.121-0.016\n\t\t\tc-0.021-0.003-0.033-0.01-0.04-0.021s-0.009-0.027-0.009-0.048V27.53v-0.287c0-0.018,0.004-0.03,0.012-0.037\n\t\t\ts0.02-0.009,0.037-0.005c0.039,0.003,0.067,0.005,0.091,0.006s0.046,0.001,0.07,0.001c0.186,0,0.338-0.04,0.444-0.155\n\t\t\ts0.166-0.304,0.166-0.602v-1.765V22.922z", + key: 5, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M11.216,7.249c0-0.032,0.004-0.06,0.018-0.08s0.038-0.032,0.078-0.032c0.312-0.016,0.696-0.028,1.123-0.036\n\t\t\ts0.894-0.012,1.375-0.012c1.344,0,2.309,0.368,2.937,0.972s0.92,1.445,0.92,2.389c0,1.233-0.444,2.113-1.162,2.685\n\t\t\ts-1.711,0.836-2.807,0.836c-0.184,0-0.308-0.004-0.418-0.008s-0.206-0.008-0.334-0.008v1.865v1.865\n\t\t\tc0,0.04-0.008,0.068-0.026,0.086s-0.046,0.026-0.086,0.026h-0.752h-0.752c-0.04,0-0.068-0.008-0.086-0.026\n\t\t\ts-0.026-0.046-0.026-0.086v-5.218V7.249z M12.945,12.403c0.112,0.008,0.212,0.012,0.332,0.014s0.26,0.002,0.452,0.002\n\t\t\tc0.568,0,1.117-0.1,1.523-0.392s0.67-0.776,0.67-1.545c0-0.616-0.188-1.08-0.538-1.391s-0.862-0.466-1.511-0.466\n\t\t\tc-0.192,0-0.38,0.004-0.542,0.01s-0.298,0.014-0.386,0.022v1.873V12.403z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M18.977,7.232c0-0.032,0.004-0.056,0.02-0.072s0.044-0.024,0.092-0.024h0.752h0.752\n\t\t\tc0.048,0,0.08,0.008,0.1,0.024s0.028,0.04,0.028,0.072v4.354v4.354c0,0.192,0.036,0.324,0.108,0.408s0.18,0.12,0.324,0.12\n\t\t\tc0.064,0,0.108-0.004,0.146-0.01s0.07-0.014,0.11-0.022c0.032,0,0.052,0.004,0.064,0.018s0.016,0.038,0.016,0.078v0.568v0.568\n\t\t\tc0,0.048-0.004,0.08-0.016,0.104s-0.032,0.04-0.064,0.056c-0.104,0.04-0.228,0.068-0.368,0.086s-0.296,0.026-0.464,0.026\n\t\t\tc-0.424,0-0.824-0.08-1.119-0.352s-0.482-0.737-0.482-1.505v-4.426V7.232z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 59482: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#28092E;}\n\t.st1{fill:#E873FF;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M9.746,22.929c0-0.014,0.002-0.026,0.008-0.035S9.77,22.88,9.788,22.88c0.137-0.007,0.305-0.013,0.491-0.016\n\t\t\ts0.391-0.005,0.602-0.005c0.588,0,1.01,0.161,1.285,0.426s0.403,0.632,0.403,1.045c0,0.54-0.194,0.925-0.509,1.175\n\t\t\ts-0.749,0.366-1.229,0.366c-0.081,0-0.135-0.002-0.183-0.003s-0.09-0.003-0.146-0.003v0.816v0.816c0,0.018-0.003,0.03-0.011,0.038\n\t\t\ts-0.02,0.011-0.038,0.011h-0.329H9.795c-0.018,0-0.03-0.003-0.038-0.011s-0.011-0.02-0.011-0.038v-2.283V22.929z M10.502,25.184\n\t\t\tc0.049,0.003,0.093,0.005,0.145,0.006s0.114,0.001,0.198,0.001c0.249,0,0.489-0.044,0.666-0.172s0.293-0.34,0.293-0.676\n\t\t\tc0-0.27-0.082-0.472-0.235-0.608s-0.377-0.204-0.661-0.204c-0.084,0-0.166,0.002-0.237,0.004s-0.13,0.006-0.169,0.009v0.819\n\t\t\tV25.184z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M14.072,27.495c0,0.018-0.004,0.03-0.011,0.038s-0.02,0.011-0.037,0.011h-0.322h-0.322\n\t\t\tc-0.021,0-0.035-0.003-0.044-0.012s-0.012-0.023-0.012-0.044v-2.273v-2.273c0-0.018,0.004-0.033,0.011-0.044\n\t\t\ts0.018-0.018,0.031-0.018c0.172-0.007,0.338-0.013,0.526-0.016s0.398-0.005,0.657-0.005c0.501,0,0.902,0.119,1.178,0.347\n\t\t\ts0.426,0.564,0.426,0.998c0,0.357-0.119,0.636-0.288,0.843s-0.388,0.344-0.588,0.418c0.102,0.175,0.324,0.574,0.549,0.982\n\t\t\ts0.453,0.824,0.565,1.034c0.01,0.018,0.016,0.033,0.012,0.045s-0.016,0.019-0.041,0.019h-0.364h-0.364\n\t\t\tc-0.025,0-0.042-0.003-0.055-0.01s-0.022-0.015-0.029-0.026c-0.08-0.14-0.247-0.452-0.433-0.802s-0.393-0.739-0.554-1.033h-0.245\n\t\t\th-0.245v0.911V27.495z M14.5,25.002c0.256,0,0.476-0.051,0.633-0.167s0.249-0.299,0.249-0.561c0-0.256-0.084-0.441-0.233-0.563\n\t\t\ts-0.362-0.179-0.622-0.179c-0.091,0-0.18,0.002-0.259,0.004s-0.147,0.006-0.196,0.009v0.729v0.729h0.214H14.5z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M20.458,25.163c0.003,0.781-0.174,1.392-0.49,1.808s-0.771,0.637-1.325,0.637c-0.56,0-1.012-0.231-1.323-0.65\n\t\t\ts-0.483-1.025-0.483-1.774c0-0.729,0.184-1.322,0.503-1.733s0.775-0.641,1.318-0.641c0.567,0,1.017,0.242,1.325,0.657\n\t\t\tS20.458,24.47,20.458,25.163z M18.672,26.921c0.326,0,0.576-0.168,0.745-0.47s0.257-0.738,0.257-1.274\n\t\t\tc-0.004-0.532-0.099-0.952-0.274-1.24s-0.431-0.441-0.756-0.441c-0.294,0-0.548,0.133-0.728,0.411s-0.287,0.699-0.287,1.277\n\t\t\tc0,0.504,0.088,0.939,0.262,1.247S18.325,26.921,18.672,26.921z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M21.52,22.922c0-0.018,0.004-0.03,0.013-0.038s0.023-0.012,0.044-0.012h0.329h0.329\n\t\t\tc0.021,0,0.033,0.004,0.04,0.012s0.009,0.021,0.009,0.038v1.729v1.729c0,0.109-0.003,0.216-0.012,0.317s-0.023,0.195-0.044,0.279\n\t\t\tc-0.077,0.336-0.238,0.569-0.453,0.718s-0.482,0.214-0.773,0.214c-0.046,0-0.09-0.002-0.132-0.005s-0.082-0.009-0.121-0.016\n\t\t\tc-0.021-0.003-0.033-0.01-0.04-0.021S20.7,27.838,20.7,27.817V27.53v-0.287c0-0.018,0.004-0.03,0.012-0.037\n\t\t\ts0.02-0.009,0.037-0.005c0.039,0.003,0.067,0.005,0.091,0.006s0.046,0.001,0.07,0.001c0.186,0,0.338-0.04,0.444-0.155\n\t\t\ts0.166-0.304,0.166-0.602v-1.765V22.922z", + key: 3, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M10.8,7.249c0-0.032,0.004-0.06,0.018-0.08s0.038-0.032,0.078-0.032c0.312-0.016,0.696-0.028,1.123-0.036\n\t\t\ts0.894-0.012,1.375-0.012c1.344,0,2.309,0.368,2.937,0.972s0.92,1.445,0.92,2.389c0,1.233-0.444,2.113-1.162,2.685\n\t\t\ts-1.711,0.836-2.807,0.836c-0.184,0-0.308-0.004-0.418-0.008s-0.206-0.008-0.334-0.008v1.865v1.865\n\t\t\tc0,0.04-0.008,0.068-0.026,0.086s-0.046,0.026-0.086,0.026h-0.752h-0.752c-0.04,0-0.068-0.008-0.086-0.026\n\t\t\tS10.8,17.725,10.8,17.685v-5.218V7.249z M12.529,12.403c0.112,0.008,0.212,0.012,0.332,0.014s0.26,0.002,0.452,0.002\n\t\t\tc0.568,0,1.117-0.1,1.523-0.392s0.67-0.776,0.67-1.545c0-0.616-0.188-1.08-0.538-1.391s-0.862-0.466-1.511-0.466\n\t\t\tc-0.192,0-0.38,0.004-0.542,0.01s-0.298,0.014-0.386,0.022v1.873V12.403z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M18.561,11.522c0-0.056,0-0.156-0.006-0.31s-0.018-0.362-0.042-0.634c0-0.04,0.004-0.064,0.016-0.082\n\t\t\ts0.032-0.03,0.064-0.046c0.296-0.12,0.792-0.288,1.41-0.426s1.358-0.246,2.143-0.246c0.04,0,0.068,0.004,0.086,0.018\n\t\t\ts0.026,0.038,0.026,0.078v0.704v0.704c0,0.04-0.008,0.064-0.026,0.078s-0.046,0.018-0.086,0.018\n\t\t\tc-0.304-0.016-0.68-0.004-1.022,0.03s-0.65,0.09-0.819,0.162v3.057v3.057c0,0.04-0.008,0.068-0.026,0.086\n\t\t\ts-0.046,0.026-0.086,0.026h-0.76h-0.76c-0.04,0-0.068-0.008-0.086-0.026s-0.026-0.046-0.026-0.086v-3.081V11.522z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 12471: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#061E26;}\n\t.st1{fill:#26C9FF;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M10.289,7.249c0-0.032,0.004-0.06,0.018-0.08s0.038-0.032,0.078-0.032c0.312-0.016,0.696-0.028,1.123-0.036\n\t\t\ts0.894-0.012,1.375-0.012c1.344,0,2.309,0.368,2.937,0.972s0.92,1.445,0.92,2.389c0,1.233-0.444,2.113-1.162,2.685\n\t\t\ts-1.711,0.836-2.807,0.836c-0.184,0-0.308-0.004-0.418-0.008s-0.206-0.008-0.334-0.008v1.865v1.865\n\t\t\tc0,0.04-0.008,0.068-0.026,0.086s-0.046,0.026-0.086,0.026h-0.752h-0.752c-0.04,0-0.068-0.008-0.086-0.026\n\t\t\ts-0.026-0.046-0.026-0.086v-5.218V7.249z M12.018,12.403c0.112,0.008,0.212,0.012,0.332,0.014s0.26,0.002,0.452,0.002\n\t\t\tc0.568,0,1.117-0.1,1.523-0.392s0.67-0.776,0.67-1.545c0-0.616-0.188-1.08-0.538-1.391s-0.862-0.466-1.511-0.466\n\t\t\tc-0.192,0-0.38,0.004-0.542,0.01s-0.298,0.014-0.386,0.022v1.873V12.403z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M20.242,11.25c-0.384,0-0.64,0.096-0.8,0.232s-0.224,0.312-0.224,0.472c0,0.176,0.044,0.324,0.216,0.494\n\t\t\ts0.472,0.362,0.984,0.626c0.76,0.368,1.26,0.728,1.571,1.126s0.43,0.834,0.43,1.355c0,0.776-0.296,1.372-0.792,1.775\n\t\t\ts-1.193,0.611-1.993,0.611c-0.424,0-0.816-0.044-1.154-0.118s-0.622-0.178-0.83-0.299c-0.032-0.016-0.052-0.036-0.064-0.062\n\t\t\ts-0.016-0.058-0.016-0.098v-0.712V15.94c0-0.048,0.012-0.08,0.032-0.094s0.048-0.01,0.079,0.014\n\t\t\tc0.304,0.2,0.632,0.344,0.964,0.438s0.668,0.138,0.989,0.138c0.384,0,0.656-0.08,0.833-0.214s0.256-0.322,0.256-0.538\n\t\t\tc0-0.176-0.056-0.34-0.234-0.524s-0.479-0.388-0.967-0.644c-0.688-0.328-1.176-0.66-1.492-1.05s-0.46-0.838-0.46-1.399\n\t\t\tc0-0.624,0.244-1.196,0.7-1.612s1.124-0.676,1.973-0.676c0.416,0,0.768,0.032,1.056,0.082s0.512,0.118,0.672,0.19\n\t\t\tc0.04,0.024,0.064,0.056,0.078,0.09s0.018,0.07,0.018,0.102v0.664v0.664c0,0.04-0.012,0.072-0.036,0.09s-0.06,0.022-0.108,0.006\n\t\t\tc-0.216-0.128-0.48-0.232-0.769-0.304S20.554,11.25,20.242,11.25z", + key: 1, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M11.216,22.929c0-0.014,0.002-0.026,0.008-0.035s0.017-0.014,0.034-0.014\n\t\t\tc0.137-0.007,0.305-0.013,0.491-0.016s0.391-0.005,0.602-0.005c0.588,0,1.01,0.161,1.285,0.426s0.403,0.632,0.403,1.045\n\t\t\tc0,0.54-0.194,0.925-0.509,1.175s-0.749,0.366-1.228,0.366c-0.08,0-0.135-0.002-0.183-0.003s-0.09-0.003-0.146-0.003v0.816v0.816\n\t\t\tc0,0.018-0.003,0.03-0.011,0.038s-0.02,0.011-0.038,0.011h-0.329h-0.329c-0.018,0-0.03-0.003-0.038-0.011s-0.011-0.02-0.011-0.038\n\t\t\tv-2.283V22.929z M11.972,25.184c0.049,0.003,0.093,0.005,0.145,0.006s0.114,0.001,0.198,0.001c0.249,0,0.488-0.044,0.666-0.172\n\t\t\ts0.293-0.34,0.293-0.676c0-0.27-0.082-0.472-0.235-0.608s-0.377-0.204-0.661-0.204c-0.084,0-0.166,0.002-0.237,0.004\n\t\t\ts-0.13,0.006-0.169,0.009v0.819V25.184z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M14.765,27.383c-0.014-0.01-0.024-0.022-0.031-0.037s-0.011-0.032-0.011-0.053v-0.336v-0.336\n\t\t\tc0-0.01,0.007-0.021,0.018-0.026s0.025-0.005,0.039,0.005c0.158,0.108,0.329,0.187,0.505,0.239s0.356,0.076,0.531,0.076\n\t\t\tc0.256,0,0.436-0.067,0.552-0.171s0.169-0.246,0.169-0.396c0-0.133-0.033-0.254-0.128-0.378s-0.25-0.249-0.495-0.393l-0.126-0.067\n\t\t\tl-0.126-0.067c-0.361-0.203-0.593-0.408-0.736-0.628s-0.195-0.454-0.195-0.717c0-0.357,0.124-0.679,0.366-0.912\n\t\t\ts0.6-0.376,1.07-0.376c0.207,0,0.385,0.016,0.534,0.044s0.268,0.068,0.355,0.118c0.018,0.007,0.028,0.016,0.034,0.028\n\t\t\ts0.008,0.028,0.008,0.049v0.315v0.315c0,0.014-0.007,0.026-0.017,0.032s-0.024,0.006-0.038-0.004\n\t\t\tc-0.108-0.07-0.241-0.123-0.389-0.158s-0.308-0.052-0.473-0.052c-0.27,0-0.448,0.077-0.56,0.184s-0.155,0.246-0.155,0.368\n\t\t\tc0,0.133,0.033,0.249,0.127,0.365s0.248,0.231,0.489,0.364l0.112,0.06l0.112,0.06c0.399,0.221,0.65,0.438,0.801,0.665\n\t\t\ts0.201,0.466,0.201,0.728c0,0.389-0.142,0.718-0.399,0.95s-0.631,0.367-1.093,0.367c-0.207,0-0.404-0.019-0.583-0.057\n\t\t\tS14.894,27.457,14.765,27.383z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M18.104,22.936c0-0.018,0.002-0.03,0.007-0.038s0.014-0.014,0.028-0.017c0.098-0.004,0.28-0.009,0.491-0.014\n\t\t\ts0.451-0.008,0.664-0.008c0.648,0,1.03,0.189,1.25,0.436s0.278,0.552,0.278,0.783c0,0.259-0.063,0.461-0.149,0.615\n\t\t\ts-0.194,0.261-0.286,0.331c0.126,0.066,0.287,0.18,0.417,0.361s0.228,0.427,0.228,0.76c0,0.441-0.177,0.796-0.488,1.041\n\t\t\ts-0.758,0.377-1.298,0.373c-0.228,0-0.445-0.002-0.633-0.004s-0.348-0.006-0.46-0.009c-0.018-0.003-0.03-0.01-0.038-0.02\n\t\t\ts-0.011-0.022-0.011-0.036v-2.276V22.936z M18.854,24.757h0.214h0.214c0.102,0,0.208,0.003,0.303,0.009s0.177,0.015,0.229,0.025\n\t\t\tc0.07-0.063,0.136-0.14,0.186-0.24s0.081-0.222,0.081-0.377c0-0.213-0.072-0.376-0.206-0.486s-0.33-0.166-0.579-0.166\n\t\t\tc-0.084,0-0.166,0.002-0.242,0.005s-0.144,0.006-0.2,0.01v0.609V24.757z M18.854,26.886c0.063,0.003,0.125,0.007,0.189,0.009\n\t\t\ts0.133,0.004,0.21,0.004c0.277,0,0.526-0.052,0.705-0.172s0.29-0.305,0.29-0.571c0-0.165-0.042-0.308-0.127-0.424\n\t\t\ts-0.213-0.203-0.385-0.256c-0.06-0.018-0.124-0.031-0.193-0.041s-0.143-0.015-0.22-0.015h-0.235h-0.235v0.732V26.886z", + key: 2, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 35822: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#061E26;}\n\t.st1{fill:#26C9FF;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M11.034,22.929c0-0.014,0.002-0.026,0.008-0.035s0.017-0.014,0.034-0.014\n\t\t\tc0.137-0.007,0.305-0.013,0.491-0.016s0.391-0.005,0.602-0.005c0.588,0,1.01,0.161,1.285,0.426s0.403,0.632,0.403,1.045\n\t\t\tc0,0.54-0.194,0.925-0.509,1.175s-0.749,0.366-1.229,0.366c-0.081,0-0.135-0.002-0.183-0.003s-0.09-0.003-0.146-0.003v0.816v0.816\n\t\t\tc0,0.018-0.003,0.03-0.011,0.038s-0.02,0.011-0.038,0.011h-0.329h-0.329c-0.018,0-0.03-0.003-0.038-0.011s-0.011-0.02-0.011-0.038\n\t\t\tv-2.283V22.929z M11.79,25.184c0.049,0.003,0.093,0.005,0.145,0.006s0.114,0.001,0.198,0.001c0.249,0,0.489-0.044,0.666-0.172\n\t\t\ts0.293-0.34,0.293-0.676c0-0.27-0.082-0.472-0.235-0.608s-0.377-0.204-0.661-0.204c-0.084,0-0.166,0.002-0.237,0.004\n\t\t\ts-0.13,0.006-0.169,0.009v0.819V25.184z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M14.583,27.383c-0.014-0.01-0.025-0.022-0.032-0.037s-0.011-0.032-0.011-0.053v-0.336v-0.336\n\t\t\tc0-0.01,0.007-0.021,0.018-0.026s0.025-0.005,0.039,0.005c0.158,0.108,0.329,0.187,0.505,0.239s0.356,0.076,0.531,0.076\n\t\t\tc0.256,0,0.436-0.067,0.552-0.171s0.169-0.246,0.169-0.396c0-0.133-0.033-0.254-0.128-0.378s-0.25-0.249-0.495-0.393l-0.126-0.067\n\t\t\tl-0.126-0.067c-0.361-0.203-0.594-0.408-0.736-0.628s-0.195-0.454-0.195-0.717c0-0.357,0.124-0.679,0.366-0.912\n\t\t\ts0.6-0.376,1.07-0.376c0.207,0,0.385,0.016,0.534,0.044s0.268,0.068,0.355,0.118c0.018,0.007,0.028,0.016,0.034,0.028\n\t\t\ts0.008,0.028,0.008,0.049v0.315v0.315c0,0.014-0.007,0.026-0.017,0.032s-0.025,0.006-0.039-0.004\n\t\t\tc-0.108-0.07-0.241-0.123-0.389-0.158s-0.308-0.052-0.473-0.052c-0.27,0-0.448,0.077-0.56,0.184s-0.155,0.246-0.155,0.368\n\t\t\tc0,0.133,0.033,0.249,0.127,0.365s0.248,0.231,0.489,0.364l0.112,0.06l0.112,0.06c0.399,0.221,0.65,0.438,0.8,0.665\n\t\t\ts0.201,0.466,0.201,0.728c0,0.389-0.142,0.718-0.399,0.95s-0.63,0.367-1.092,0.367c-0.207,0-0.404-0.019-0.583-0.057\n\t\t\tS14.712,27.457,14.583,27.383z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M17.922,22.936c0-0.018,0.002-0.03,0.009-0.038s0.019-0.014,0.04-0.017c0.081-0.004,0.237-0.009,0.432-0.014\n\t\t\ts0.43-0.008,0.668-0.008c0.711,0,1.243,0.229,1.598,0.627s0.531,0.963,0.531,1.636c0,0.935-0.306,1.544-0.731,1.919\n\t\t\ts-0.967,0.517-1.44,0.517c-0.179,0-0.397-0.002-0.595-0.004s-0.375-0.006-0.469-0.009c-0.014,0-0.025-0.005-0.032-0.015\n\t\t\ts-0.01-0.024-0.01-0.041v-2.276V22.936z M18.686,26.871c0.06,0.004,0.115,0.008,0.173,0.01s0.117,0.004,0.184,0.004\n\t\t\tc0.392,0,0.733-0.138,0.978-0.426s0.391-0.723,0.395-1.318c0.003-0.581-0.145-0.984-0.389-1.241s-0.581-0.369-0.956-0.369\n\t\t\tc-0.073,0-0.14,0.002-0.203,0.004s-0.123,0.006-0.182,0.009v1.663V26.871z", + key: 2, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M10.289,7.249c0-0.032,0.004-0.06,0.018-0.08s0.038-0.032,0.078-0.032c0.312-0.016,0.696-0.028,1.123-0.036\n\t\t\ts0.894-0.012,1.375-0.012c1.344,0,2.309,0.368,2.937,0.972s0.92,1.445,0.92,2.389c0,1.233-0.444,2.113-1.162,2.685\n\t\t\ts-1.711,0.836-2.807,0.836c-0.184,0-0.308-0.004-0.418-0.008s-0.206-0.008-0.334-0.008v1.865v1.865\n\t\t\tc0,0.04-0.008,0.068-0.026,0.086s-0.046,0.026-0.086,0.026h-0.752h-0.752c-0.04,0-0.068-0.008-0.086-0.026\n\t\t\ts-0.026-0.046-0.026-0.086v-5.218V7.249z M12.018,12.403c0.112,0.008,0.212,0.012,0.332,0.014s0.26,0.002,0.452,0.002\n\t\t\tc0.568,0,1.117-0.1,1.523-0.392s0.67-0.776,0.67-1.545c0-0.616-0.188-1.08-0.538-1.391s-0.862-0.466-1.511-0.466\n\t\t\tc-0.192,0-0.38,0.004-0.542,0.01s-0.298,0.014-0.386,0.022v1.873V12.403z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M20.242,11.25c-0.384,0-0.64,0.096-0.8,0.232s-0.224,0.312-0.224,0.472c0,0.176,0.044,0.324,0.216,0.494\n\t\t\ts0.472,0.362,0.984,0.626c0.76,0.368,1.26,0.728,1.571,1.126s0.43,0.834,0.43,1.355c0,0.776-0.296,1.372-0.792,1.775\n\t\t\ts-1.193,0.611-1.993,0.611c-0.424,0-0.816-0.044-1.154-0.118s-0.622-0.178-0.83-0.299c-0.032-0.016-0.052-0.036-0.064-0.062\n\t\t\ts-0.016-0.058-0.016-0.098v-0.712V15.94c0-0.048,0.012-0.08,0.032-0.094s0.048-0.01,0.079,0.014\n\t\t\tc0.304,0.2,0.632,0.344,0.964,0.438s0.668,0.138,0.989,0.138c0.384,0,0.656-0.08,0.833-0.214s0.256-0.322,0.256-0.538\n\t\t\tc0-0.176-0.056-0.34-0.234-0.524s-0.479-0.388-0.967-0.644c-0.688-0.328-1.176-0.66-1.492-1.05s-0.46-0.838-0.46-1.399\n\t\t\tc0-0.624,0.244-1.196,0.7-1.612s1.124-0.676,1.973-0.676c0.416,0,0.768,0.032,1.056,0.082s0.512,0.118,0.672,0.19\n\t\t\tc0.04,0.024,0.064,0.056,0.078,0.09s0.018,0.07,0.018,0.102v0.664v0.664c0,0.04-0.012,0.072-0.036,0.09s-0.06,0.022-0.108,0.006\n\t\t\tc-0.216-0.128-0.48-0.232-0.769-0.304S20.554,11.25,20.242,11.25z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 64265: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("defs", { key: 0 }, r.createElement("style", null, ".cls-1{fill:#fff;}.cls-2{fill:#b3b3b3;}.cls-3{fill:#0d66d0;}")), + r.createElement("title", { key: 1 }, "Ar_beta_file_32"), + r.createElement( + "g", + { id: "Surface", key: 2 }, + r.createElement("g", { id: "Document" }, [ + r.createElement("path", { + className: "cls-1", + d: "M6,31.56836a2.50263,2.50263,0,0,1-2.5-2.5v-26a2.50294,2.50294,0,0,1,2.5-2.5H21.37988a1.98332,1.98332,0,0,1,1.41114.5835l5.12011,5.10156A2.01544,2.01544,0,0,1,28.5,7.66992V29.06836a2.50231,2.50231,0,0,1-2.5,2.5Z", + key: 0, + }), + r.createElement("path", { + className: "cls-2", + d: + "M21.38,1.06818a1.5,1.5,0,0,1,1.05879.43747l5.12,5.102A1.5,1.5,0,0,1,28,7.67014v21.398a2,2,0,0,1-2,2H6a2,2,0,0,1-2-2v-26a2,2,0,0,1,2-2H21.38m0-1H6a3.00339,3.00339,0,0,0-3,3v26a3.00339,3.00339,0,0,0,3,3H26a3.00339,3.00339,0,0,0,3-3V7.67014a2.5169,2.5169,0,0,0-.73536-1.77089L23.14469.7973A2.48407,2.48407,0,0,0,21.38.06818Z", + key: 1, + }), + ]) + ), + r.createElement( + "g", + { id: "Mnem", key: 3 }, + r.createElement("g", { id: "Ar" }, [ + r.createElement("path", { + className: "cls-3", + d: + "M11.77588,14.87207l-.78027,2.94141c-.01612.08105-.04834.11425-.146.11425H9.40332c-.09766,0-.11377-.0332-.09766-.14648l2.79541-9.7832a3.013,3.013,0,0,0,.09717-.8125c0-.06446.03272-.09717.08155-.09717h2.06347c.06543,0,.09766.01611.11377.09717l3.13672,10.61133c.01563.082,0,.13085-.082.13085H15.88721a.131.131,0,0,1-.146-.09765l-.8125-2.958Zm2.74658-1.6084c-.27637-1.08887-.92676-3.46142-1.17041-4.61523h-.01611c-.21143,1.15381-.73145,3.08789-1.1377,4.61523Z", + key: 0, + }), + r.createElement("path", { + className: "cls-3", + d: + "M18.334,11.55713c0-.11377,0-.40625-.04882-.9585,0-.08154.0166-.09765.082-.12988a10.297,10.297,0,0,1,3.60742-.68262c.08105,0,.11328.01612.11328.09766v1.42969c0,.081-.03223.09765-.11328.09765a5.6866,5.6866,0,0,0-1.86914.19483v6.20752c0,.08105-.03223.11425-.11328.11425h-1.544c-.081,0-.11426-.0332-.11426-.11425Z", + key: 1, + }), + ]) + ), + ]); + } + (o.defaultProps = { viewBox: "0 0 32 32" }), (e.exports = o), (o.default = o); + }, + 45886: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#002620;}\n\t.st1{fill:#00FAD0;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M10.657,14.788l-0.384,1.448l-0.384,1.448c-0.008,0.04-0.02,0.068-0.042,0.086s-0.054,0.026-0.102,0.026\n\t\t\tH9.032H8.32c-0.048,0-0.076-0.008-0.09-0.03s-0.014-0.058-0.006-0.114l1.376-4.818l1.376-4.818\n\t\t\tc0.024-0.088,0.044-0.168,0.06-0.286s0.028-0.274,0.036-0.514c0-0.032,0.008-0.056,0.022-0.072s0.034-0.024,0.058-0.024h1.016\n\t\t\th1.016c0.032,0,0.056,0.004,0.074,0.018s0.03,0.038,0.038,0.078l1.545,5.226l1.545,5.226c0.008,0.04,0.008,0.072-0.004,0.094\n\t\t\ts-0.036,0.034-0.076,0.034h-0.8h-0.8c-0.04,0-0.072-0.008-0.096-0.024s-0.04-0.04-0.048-0.072l-0.4-1.457l-0.4-1.457h-1.553\n\t\t\tH10.657z M13.362,13.203c-0.136-0.536-0.364-1.389-0.589-2.249s-0.444-1.729-0.564-2.297h-0.008h-0.008\n\t\t\tc-0.104,0.568-0.284,1.328-0.488,2.135s-0.432,1.659-0.632,2.411h1.145H13.362z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M23.011,16.18c0,0.056,0.004,0.168,0.012,0.334s0.02,0.386,0.036,0.658c0,0.032-0.004,0.056-0.016,0.074\n\t\t\ts-0.032,0.03-0.064,0.039c-0.424,0.16-0.869,0.324-1.355,0.448s-1.015,0.208-1.607,0.208c-0.728,0-1.44-0.14-1.97-0.56\n\t\t\ts-0.878-1.121-0.878-2.241v-2.553v-2.553c0-0.04,0.008-0.072,0.026-0.094s0.046-0.034,0.086-0.034h0.76h0.76\n\t\t\tc0.04,0,0.068,0.012,0.086,0.034s0.026,0.054,0.026,0.094v2.449v2.449c0,0.472,0.092,0.836,0.308,1.082s0.557,0.374,1.053,0.374\n\t\t\tc0.2,0,0.388-0.02,0.556-0.052s0.316-0.076,0.436-0.124v-3.089v-3.089c0-0.04,0.008-0.072,0.026-0.094s0.046-0.034,0.086-0.034\n\t\t\th0.76h0.76c0.048,0,0.076,0.012,0.092,0.034s0.02,0.054,0.02,0.094v3.073V16.18z", + key: 1, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M9.725,27.383c-0.014-0.01-0.024-0.022-0.031-0.037s-0.011-0.032-0.011-0.053v-0.336v-0.336\n\t\t\tc0-0.01,0.007-0.021,0.018-0.026s0.025-0.005,0.039,0.005c0.158,0.108,0.329,0.187,0.505,0.239s0.356,0.076,0.531,0.076\n\t\t\tc0.256,0,0.436-0.067,0.552-0.171s0.169-0.246,0.169-0.396c0-0.133-0.033-0.254-0.128-0.378s-0.25-0.249-0.495-0.393l-0.126-0.067\n\t\t\tl-0.126-0.067c-0.361-0.203-0.593-0.408-0.736-0.628S9.69,24.36,9.69,24.098c0-0.357,0.124-0.679,0.366-0.912\n\t\t\ts0.6-0.376,1.07-0.376c0.207,0,0.385,0.016,0.534,0.044s0.268,0.068,0.355,0.118c0.018,0.007,0.028,0.016,0.034,0.028\n\t\t\ts0.008,0.028,0.008,0.049v0.315v0.315c0,0.014-0.007,0.026-0.017,0.032s-0.025,0.006-0.039-0.004\n\t\t\tc-0.108-0.07-0.241-0.123-0.389-0.158s-0.308-0.052-0.473-0.052c-0.27,0-0.448,0.077-0.56,0.184s-0.155,0.246-0.155,0.368\n\t\t\tc0,0.133,0.033,0.249,0.127,0.365s0.248,0.231,0.489,0.364l0.112,0.06l0.112,0.06c0.399,0.221,0.65,0.438,0.8,0.665\n\t\t\ts0.201,0.466,0.201,0.728c0,0.389-0.142,0.718-0.399,0.95s-0.63,0.367-1.092,0.367c-0.207,0-0.404-0.019-0.583-0.057\n\t\t\tS9.854,27.457,9.725,27.383z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M15.578,27.488c-0.004,0.021-0.009,0.035-0.019,0.044s-0.024,0.012-0.045,0.012h-1.198H13.12\n\t\t\tc-0.021,0-0.035-0.003-0.044-0.012s-0.012-0.023-0.012-0.044v-2.28v-2.28c0-0.021,0.004-0.035,0.012-0.044\n\t\t\ts0.023-0.013,0.044-0.013h1.156h1.156c0.021,0,0.035,0.002,0.045,0.009s0.015,0.02,0.018,0.041l0.031,0.294l0.031,0.294\n\t\t\tc0.004,0.018,0.002,0.031-0.005,0.041s-0.019,0.015-0.037,0.015h-0.844h-0.844v0.624v0.624h0.76h0.76\n\t\t\tc0.018,0,0.03,0.003,0.038,0.011s0.011,0.02,0.011,0.038v0.298v0.298c0,0.018-0.005,0.03-0.015,0.038s-0.024,0.011-0.041,0.011\n\t\t\th-0.756h-0.756v0.672v0.672h0.9h0.9c0.021,0,0.033,0.003,0.039,0.011s0.006,0.02,0.003,0.038l-0.045,0.294L15.578,27.488z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M16.305,27.383c-0.014-0.01-0.025-0.022-0.032-0.037s-0.011-0.032-0.011-0.053v-0.336v-0.336\n\t\t\tc0-0.01,0.007-0.021,0.018-0.026s0.025-0.005,0.039,0.005c0.158,0.108,0.329,0.187,0.505,0.239s0.356,0.076,0.532,0.076\n\t\t\tc0.255,0,0.436-0.067,0.552-0.171s0.169-0.246,0.169-0.396c0-0.133-0.033-0.254-0.128-0.378s-0.25-0.249-0.495-0.393l-0.126-0.067\n\t\t\tl-0.126-0.067c-0.361-0.203-0.594-0.408-0.736-0.628s-0.195-0.454-0.195-0.717c0-0.357,0.124-0.679,0.366-0.912\n\t\t\ts0.6-0.376,1.07-0.376c0.207,0,0.385,0.016,0.534,0.044s0.268,0.068,0.355,0.118c0.018,0.007,0.028,0.016,0.034,0.028\n\t\t\ts0.008,0.028,0.008,0.049v0.315v0.315c0,0.014-0.007,0.026-0.018,0.032s-0.024,0.006-0.038-0.004\n\t\t\tc-0.109-0.07-0.242-0.123-0.389-0.158s-0.308-0.052-0.473-0.052c-0.27,0-0.448,0.077-0.559,0.184s-0.155,0.246-0.155,0.368\n\t\t\tc0,0.133,0.033,0.249,0.127,0.365s0.248,0.231,0.489,0.364l0.112,0.06l0.112,0.06c0.399,0.221,0.649,0.438,0.8,0.665\n\t\t\ts0.201,0.466,0.201,0.728c0,0.389-0.142,0.718-0.399,0.95s-0.63,0.367-1.092,0.367c-0.207,0-0.405-0.019-0.583-0.057\n\t\t\tS16.434,27.457,16.305,27.383z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M21.388,25.135l0.609,1.169l0.609,1.169c0.011,0.018,0.012,0.035,0.007,0.048s-0.018,0.022-0.035,0.022H22.2\n\t\t\th-0.378c-0.024,0-0.042-0.003-0.056-0.012s-0.025-0.023-0.035-0.044c-0.14-0.287-0.28-0.574-0.422-0.867s-0.285-0.59-0.432-0.899\n\t\t\th-0.003H20.87c-0.13,0.291-0.267,0.591-0.406,0.889s-0.281,0.596-0.421,0.883c-0.01,0.018-0.021,0.03-0.033,0.038\n\t\t\ts-0.026,0.011-0.044,0.011h-0.36h-0.36c-0.021,0-0.033-0.009-0.038-0.021s-0.001-0.028,0.01-0.042l0.595-1.134l0.595-1.134\n\t\t\tl-0.574-1.138l-0.574-1.138c-0.014-0.018-0.014-0.033-0.007-0.045s0.021-0.019,0.035-0.019h0.375h0.375\n\t\t\tc0.021,0,0.037,0.002,0.049,0.009s0.021,0.02,0.028,0.041c0.137,0.287,0.275,0.573,0.412,0.859s0.271,0.573,0.401,0.864h0.003\n\t\t\th0.003c0.126-0.287,0.259-0.574,0.394-0.86s0.272-0.572,0.405-0.855c0.01-0.018,0.019-0.032,0.031-0.042s0.026-0.015,0.047-0.015\n\t\t\th0.35h0.35c0.018,0,0.03,0.007,0.035,0.019s0.003,0.027-0.008,0.045l-0.574,1.1L21.388,25.135z", + key: 3, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 91412: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#262600;}\n\t.st1{fill:#F6F600;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M9.792,17.429c-0.032-0.024-0.056-0.052-0.072-0.086s-0.024-0.074-0.024-0.122v-0.768v-0.768\n\t\t\tc0-0.024,0.016-0.048,0.04-0.06s0.056-0.012,0.088,0.012c0.36,0.248,0.752,0.428,1.155,0.546s0.814,0.174,1.215,0.174\n\t\t\tc0.584,0,0.996-0.152,1.262-0.39s0.386-0.562,0.386-0.907c0-0.304-0.076-0.58-0.292-0.862s-0.572-0.57-1.132-0.898l-0.288-0.152\n\t\t\tl-0.288-0.152c-0.824-0.464-1.356-0.933-1.682-1.435s-0.446-1.038-0.446-1.638c0-0.816,0.284-1.553,0.836-2.085\n\t\t\ts1.372-0.86,2.445-0.86c0.472,0,0.88,0.036,1.22,0.1s0.612,0.156,0.812,0.268c0.04,0.016,0.064,0.036,0.078,0.064\n\t\t\ts0.018,0.064,0.018,0.112v0.72v0.72c0,0.032-0.016,0.06-0.04,0.074s-0.056,0.014-0.088-0.01c-0.248-0.16-0.552-0.28-0.888-0.36\n\t\t\ts-0.704-0.12-1.081-0.12c-0.616,0-1.024,0.176-1.278,0.422S11.393,9.53,11.393,9.81c0,0.304,0.076,0.568,0.29,0.832\n\t\t\ts0.566,0.528,1.118,0.832l0.256,0.136l0.256,0.136c0.912,0.504,1.485,1,1.829,1.521s0.46,1.064,0.46,1.664\n\t\t\tc0,0.888-0.324,1.641-0.912,2.171s-1.44,0.839-2.497,0.839c-0.472,0-0.924-0.044-1.333-0.13S10.088,17.597,9.792,17.429z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M17.921,9.906c0.024,0,0.048,0.008,0.068,0.024s0.036,0.04,0.044,0.072c0.464,1.537,0.796,2.721,1.034,3.617\n\t\t\ts0.382,1.504,0.47,1.888c0.192-0.72,0.42-1.532,0.68-2.445s0.552-1.925,0.872-3.045c0.008-0.04,0.024-0.068,0.048-0.086\n\t\t\ts0.056-0.026,0.096-0.026h0.736h0.736c0.048,0,0.076,0.012,0.09,0.034s0.014,0.054,0.006,0.094\n\t\t\tc-0.552,1.905-1.136,3.742-1.717,5.446s-1.156,3.277-1.693,4.654c-0.016,0.032-0.032,0.06-0.058,0.082s-0.062,0.038-0.118,0.046\n\t\t\tl-0.784,0.056l-0.784,0.056c-0.048,0-0.076-0.012-0.086-0.036s-0.002-0.06,0.022-0.109c0.184-0.416,0.336-0.796,0.496-1.214\n\t\t\ts0.328-0.874,0.544-1.442c0.008-0.04,0.016-0.076,0.018-0.112s-0.002-0.072-0.018-0.112c-0.216-0.648-0.624-1.829-1.08-3.173\n\t\t\ts-0.96-2.853-1.369-4.158c-0.016-0.04-0.016-0.068-0.004-0.086s0.036-0.026,0.068-0.026h0.84H17.921z", + key: 1, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M7.132,27.383c-0.014-0.01-0.025-0.022-0.032-0.037s-0.011-0.032-0.011-0.053v-0.336v-0.336\n\t\t\tc0-0.01,0.007-0.021,0.018-0.026s0.025-0.005,0.039,0.005c0.158,0.108,0.329,0.187,0.505,0.239s0.356,0.076,0.531,0.076\n\t\t\tc0.256,0,0.436-0.067,0.552-0.171s0.169-0.246,0.169-0.396c0-0.133-0.033-0.254-0.128-0.378s-0.25-0.249-0.495-0.393l-0.126-0.067\n\t\t\tl-0.126-0.067c-0.361-0.203-0.594-0.408-0.736-0.628s-0.195-0.454-0.195-0.717c0-0.357,0.124-0.679,0.366-0.912\n\t\t\ts0.6-0.376,1.07-0.376c0.207,0,0.385,0.016,0.534,0.044s0.268,0.068,0.355,0.118c0.018,0.007,0.028,0.016,0.034,0.028\n\t\t\ts0.008,0.028,0.008,0.049v0.315v0.315c0,0.014-0.007,0.026-0.017,0.032s-0.025,0.006-0.039-0.004\n\t\t\tc-0.108-0.07-0.241-0.123-0.389-0.158s-0.308-0.052-0.473-0.052c-0.27,0-0.448,0.077-0.56,0.184s-0.155,0.246-0.155,0.368\n\t\t\tc0,0.133,0.033,0.249,0.127,0.365s0.248,0.231,0.489,0.364l0.112,0.06l0.112,0.06c0.399,0.221,0.65,0.438,0.8,0.665\n\t\t\ts0.201,0.466,0.201,0.728c0,0.389-0.142,0.718-0.399,0.95s-0.63,0.367-1.092,0.367c-0.207,0-0.404-0.019-0.583-0.057\n\t\t\tS7.261,27.457,7.132,27.383z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M11.22,23.565h-0.588h-0.588c-0.017,0-0.03-0.003-0.037-0.012s-0.009-0.023-0.005-0.044l0.042-0.294\n\t\t\tl0.042-0.294c0.003-0.018,0.009-0.03,0.017-0.038s0.021-0.012,0.038-0.012h1.471h1.471c0.021,0,0.035,0.004,0.044,0.013\n\t\t\ts0.015,0.023,0.018,0.044l0.028,0.291l0.028,0.291c0.003,0.021,0,0.035-0.009,0.044s-0.023,0.012-0.04,0.012h-0.585h-0.585v1.961\n\t\t\tv1.961c0,0.017-0.004,0.031-0.012,0.041s-0.023,0.015-0.044,0.015h-0.326h-0.326c-0.021,0-0.035-0.003-0.044-0.012\n\t\t\ts-0.012-0.023-0.012-0.044v-1.961V23.565z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M13.83,22.936c0-0.018,0.002-0.03,0.009-0.038s0.019-0.014,0.041-0.017c0.08-0.004,0.236-0.009,0.431-0.014\n\t\t\ts0.43-0.008,0.668-0.008c0.711,0,1.243,0.229,1.598,0.627s0.531,0.963,0.531,1.636c0,0.935-0.306,1.544-0.731,1.919\n\t\t\ts-0.967,0.517-1.44,0.517c-0.178,0-0.397-0.002-0.595-0.004s-0.375-0.006-0.469-0.009c-0.014,0-0.024-0.005-0.031-0.015\n\t\t\ts-0.011-0.024-0.011-0.041v-2.276V22.936z M14.594,26.871c0.059,0.004,0.115,0.008,0.173,0.01s0.117,0.004,0.184,0.004\n\t\t\tc0.392,0,0.734-0.138,0.978-0.426s0.391-0.723,0.395-1.318c0.004-0.581-0.145-0.984-0.389-1.241s-0.581-0.369-0.956-0.369\n\t\t\tc-0.073,0-0.14,0.002-0.203,0.004s-0.122,0.006-0.182,0.009v1.663V26.871z", + key: 2, + }), + r.createElement("path", { + className: "st2", + d: + "M21.398,25.163c0.003,0.781-0.173,1.392-0.489,1.808s-0.771,0.637-1.324,0.637\n\t\t\tc-0.561,0-1.012-0.231-1.324-0.65s-0.483-1.025-0.483-1.774c0-0.729,0.184-1.322,0.503-1.733s0.775-0.641,1.318-0.641\n\t\t\tc0.567,0,1.017,0.242,1.325,0.657S21.398,24.47,21.398,25.163z M19.612,26.921c0.326,0,0.576-0.168,0.745-0.47\n\t\t\ts0.257-0.738,0.257-1.274c-0.003-0.532-0.098-0.952-0.273-1.24s-0.431-0.441-0.756-0.441c-0.294,0-0.548,0.133-0.729,0.411\n\t\t\ts-0.287,0.699-0.287,1.277c0,0.504,0.087,0.939,0.261,1.247S19.266,26.921,19.612,26.921z", + key: 3, + }), + r.createElement("path", { + className: "st2", + d: + "M24.954,27.425c0,0.021-0.003,0.037-0.011,0.049s-0.02,0.021-0.038,0.028\n\t\t\tc-0.091,0.039-0.21,0.065-0.344,0.082s-0.283,0.024-0.433,0.024c-0.546,0-1.061-0.179-1.44-0.568s-0.62-0.988-0.62-1.828\n\t\t\tc0-0.722,0.214-1.324,0.59-1.746s0.916-0.663,1.567-0.663c0.172,0,0.321,0.009,0.443,0.025s0.219,0.041,0.285,0.072\n\t\t\tc0.018,0.007,0.028,0.016,0.034,0.028s0.008,0.028,0.008,0.049v0.301v0.301c0,0.028-0.007,0.042-0.017,0.048\n\t\t\ts-0.022,0.004-0.032,0.001c-0.084-0.042-0.189-0.075-0.31-0.098s-0.258-0.035-0.405-0.035c-0.41,0-0.751,0.156-0.99,0.445\n\t\t\ts-0.375,0.713-0.375,1.249c0,0.662,0.187,1.091,0.452,1.354s0.606,0.361,0.914,0.361c0.14,0,0.258-0.005,0.365-0.019\n\t\t\ts0.206-0.037,0.307-0.072c0.014-0.007,0.026-0.01,0.035-0.006s0.014,0.017,0.014,0.041v0.287V27.425z", + key: 4, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 41867: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("defs", { key: 0 }, r.createElement("style", null, ".cls-1{fill:#fff;}.cls-2{fill:#b3b3b3;}.cls-3{fill:#2c2c2c;}.cls-4{fill:#4b4b4b;}")), + r.createElement("title", { key: 1 }, "USDZ_32"), + r.createElement( + "g", + { id: "Surface", key: 2 }, + r.createElement("g", { id: "Document" }, [ + r.createElement("path", { + className: "cls-1", + d: "M6,31.56836a2.50263,2.50263,0,0,1-2.5-2.5v-26a2.50294,2.50294,0,0,1,2.5-2.5H21.37988a1.98332,1.98332,0,0,1,1.41114.5835l5.12011,5.10156A2.01544,2.01544,0,0,1,28.5,7.66992V29.06836a2.50231,2.50231,0,0,1-2.5,2.5Z", + transform: "translate(-3 -0.06818)", + key: 0, + }), + r.createElement("path", { + className: "cls-2", + d: + "M21.38,1.06818a1.5,1.5,0,0,1,1.05879.43747l5.12,5.102A1.5,1.5,0,0,1,28,7.67014v21.398a2,2,0,0,1-2,2H6a2,2,0,0,1-2-2v-26a2,2,0,0,1,2-2H21.38m0-1H6a3.00339,3.00339,0,0,0-3,3v26a3.00339,3.00339,0,0,0,3,3H26a3.00339,3.00339,0,0,0,3-3V7.67014a2.5169,2.5169,0,0,0-.73536-1.77089L23.14469.7973A2.48407,2.48407,0,0,0,21.38.06818Z", + transform: "translate(-3 -0.06818)", + key: 1, + }), + ]) + ), + r.createElement( + "g", + { id: "Mime", key: 3 }, + r.createElement("g", { id: "USDZ" }, [ + r.createElement("path", { + className: "cls-3", + d: + "M9.92139,25.91211c0,.67187.22412,1.00879.91748,1.00879a2.04475,2.04475,0,0,0,.64453-.0918V22.92871c0-.03516.01416-.05664.04883-.05664h.66552c.03516,0,.04883.01465.04883.04981v3.8164c0,.21.00733.35059.021.49707.00732.03516-.00684.04981-.042.06348a4.3535,4.3535,0,0,1-1.50586.30859,1.37683,1.37683,0,0,1-1.56885-1.583v-3.0957c0-.03516.00732-.05664.04932-.05664h.67236c.03467,0,.04883.01465.04883.04981Z", + transform: "translate(-3 -0.06818)", + key: 0, + }), + r.createElement("path", { + className: "cls-3", + d: + "M13.06348,27.38281a.10348.10348,0,0,1-.042-.09082v-.67285a.03327.03327,0,0,1,.05616-.02051,1.83937,1.83937,0,0,0,1.03662.31543c.51123,0,.72119-.2666.72119-.56738,0-.2666-.13281-.4834-.623-.77051L13.96,25.44238a1.45055,1.45055,0,0,1-.93115-1.34472,1.2826,1.2826,0,0,1,1.43555-1.28809,1.91765,1.91765,0,0,1,.88964.16113c.03516.01368.042.03516.042.07715v.62988a.034.034,0,0,1-.05616.02832,1.62937,1.62937,0,0,0-.86132-.21c-.53956,0-.71436.30762-.71436.55274,0,.2666.13281.46289.61621.72851l.22412.11914c.79834.44141,1.00147.86817,1.00147,1.39356a1.32592,1.32592,0,0,1-1.4917,1.31738A2.20062,2.20062,0,0,1,13.06348,27.38281Z", + transform: "translate(-3 -0.06818)", + key: 1, + }), + r.createElement("path", { + className: "cls-3", + d: + "M16.40283,22.93555c0-.03516.00684-.04883.04932-.05567.16064-.00781.623-.02148,1.09961-.02148a2.01093,2.01093,0,0,1,2.1289,2.26269,2.1494,2.1494,0,0,1-2.17089,2.43653c-.35743,0-.876-.00684-1.06495-.01367-.02783,0-.042-.02149-.042-.05567Zm.76319,3.93554c.11914.00782.2246.01465.35742.01465.78418,0,1.36621-.55371,1.373-1.74414.00684-1.16211-.5957-1.61035-1.34472-1.61035-.14746,0-.2666.00684-.38574.01367Z", + transform: "translate(-3 -0.06818)", + key: 2, + }), + r.createElement("path", { + className: "cls-3", + d: + "M20.17578,27.544c-.03516,0-.05664-.01368-.05664-.05567v-.39941a.19149.19149,0,0,1,.02148-.084L22.207,23.56543H20.22461c-.03516,0-.04883-.01367-.042-.05566l.09082-.58789c.00683-.03516.02148-.04981.05664-.04981H23.0957a.038.038,0,0,1,.043.042v.43457a.23976.23976,0,0,1-.03515.10547L21.0791,26.85059H23.166c.03515,0,.04882.0205.03515.05566l-.09765.58887A.05636.05636,0,0,1,23.04,27.544Z", + transform: "translate(-3 -0.06818)", + key: 3, + }), + ]) + ), + r.createElement( + "g", + { id: "Modifier", key: 4 }, + r.createElement( + "g", + { id: "_3D", "data-name": "3D" }, + r.createElement("path", { + className: "cls-4", + d: + "M15.79622,7.05515c-.02784.01273-5.70125,2.37871-5.70125,2.37871a1.01636,1.01636,0,0,0-.16985.09515.48594.48594,0,0,0-.16926.38225v6.22982a.4882.4882,0,0,0,.30087.44166l5.7261,2.36075a.44845.44845,0,0,0,.19959.04525.45967.45967,0,0,0,.17961-.03522l.02-.01,5.76131-2.36075a.48275.48275,0,0,0,.30082-.43775V9.88284a.43338.43338,0,0,0-.16961-.35567.49814.49814,0,0,0-.1199-.0751.20951.20951,0,0,0-.05-.02005S16.2158,7.06448,16.1954,7.05515a.48509.48509,0,0,0-.18805-.04389A.58251.58251,0,0,0,15.79622,7.05515Zm.198,4.71332-4.495-1.86624,4.46839-1.8537,4.49016,1.866Zm5.2695,3.9859-5.01562,2.09375V12.74346l5.01562-2.10628Z", + transform: "translate(-3 -0.06818)", + }) + ) + ), + ]); + } + (o.defaultProps = { viewBox: "0 0 26 32" }), (e.exports = o), (o.default = o); + }, + 30060: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#2E001F;}\n\t.st1{fill:#FF26B7;}\n\t.st2{fill:#FAFAFA;}\n\t.st3{fill:#FFD9F2;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M14.388,25.135l0.609,1.169l0.609,1.169c0.01,0.018,0.012,0.035,0.007,0.048s-0.017,0.022-0.035,0.022H15.2\n\t\t\th-0.378c-0.025,0-0.042-0.003-0.056-0.012s-0.025-0.023-0.035-0.044c-0.14-0.287-0.28-0.574-0.422-0.867s-0.286-0.59-0.433-0.899\n\t\t\th-0.003H13.87c-0.13,0.291-0.266,0.591-0.405,0.889s-0.281,0.596-0.421,0.883c-0.01,0.018-0.021,0.03-0.033,0.038\n\t\t\ts-0.026,0.011-0.044,0.011h-0.361h-0.361c-0.021,0-0.033-0.009-0.038-0.021s-0.001-0.028,0.01-0.042l0.595-1.134l0.595-1.134\n\t\t\tl-0.574-1.138l-0.574-1.138c-0.014-0.018-0.014-0.033-0.007-0.045s0.021-0.019,0.035-0.019h0.375h0.375\n\t\t\tc0.021,0,0.037,0.002,0.049,0.009s0.021,0.02,0.028,0.041c0.136,0.287,0.275,0.573,0.411,0.859s0.271,0.573,0.401,0.864h0.003\n\t\t\th0.003c0.126-0.287,0.259-0.574,0.394-0.86s0.271-0.572,0.404-0.855c0.01-0.018,0.019-0.032,0.031-0.042s0.025-0.015,0.046-0.015\n\t\t\th0.35h0.35c0.017,0,0.03,0.007,0.035,0.019s0.004,0.027-0.007,0.045l-0.574,1.1L14.388,25.135z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M16.207,22.936c0-0.018,0.002-0.03,0.009-0.038s0.019-0.014,0.041-0.017c0.08-0.004,0.236-0.009,0.431-0.014\n\t\t\ts0.43-0.008,0.668-0.008c0.711,0,1.243,0.229,1.598,0.627s0.531,0.963,0.531,1.636c0,0.935-0.306,1.544-0.731,1.919\n\t\t\ts-0.967,0.517-1.44,0.517c-0.178,0-0.397-0.002-0.595-0.004s-0.375-0.006-0.469-0.009c-0.014,0-0.024-0.005-0.031-0.015\n\t\t\ts-0.011-0.024-0.011-0.041v-2.276V22.936z M16.971,26.871c0.06,0.004,0.115,0.008,0.173,0.01s0.117,0.004,0.184,0.004\n\t\t\tc0.392,0,0.733-0.138,0.978-0.426s0.391-0.723,0.395-1.318c0.003-0.581-0.145-0.984-0.389-1.241s-0.581-0.369-0.956-0.369\n\t\t\tc-0.073,0-0.14,0.002-0.203,0.004s-0.123,0.006-0.182,0.009v1.663V26.871z", + key: 1, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st3", + d: + "M13.29,12.291l1.393,2.673l1.393,2.673c0.024,0.04,0.028,0.08,0.016,0.11s-0.04,0.05-0.08,0.05h-0.864h-0.864\n\t\t\tc-0.056,0-0.096-0.008-0.128-0.028s-0.056-0.052-0.08-0.1c-0.32-0.656-0.64-1.312-0.964-1.981s-0.652-1.349-0.988-2.053h-0.008\n\t\t\th-0.008c-0.296,0.664-0.608,1.349-0.926,2.031s-0.642,1.362-0.962,2.019c-0.024,0.04-0.048,0.068-0.076,0.086\n\t\t\ts-0.06,0.026-0.1,0.026H9.217H8.392c-0.048,0-0.076-0.02-0.086-0.048s-0.002-0.064,0.022-0.096l1.361-2.593l1.361-2.593\n\t\t\tL9.737,9.866L8.424,7.265c-0.032-0.04-0.032-0.076-0.016-0.102s0.048-0.042,0.08-0.042h0.856h0.856\n\t\t\tc0.048,0,0.084,0.004,0.112,0.02s0.048,0.044,0.064,0.092c0.312,0.656,0.628,1.309,0.94,1.963s0.62,1.311,0.917,1.975h0.008h0.008\n\t\t\tc0.288-0.656,0.593-1.313,0.901-1.967s0.62-1.307,0.924-1.955c0.024-0.04,0.044-0.072,0.07-0.094s0.058-0.034,0.106-0.034h0.8h0.8\n\t\t\tc0.04,0,0.068,0.016,0.08,0.042s0.008,0.062-0.016,0.102l-1.312,2.513L13.29,12.291z", + key: 0, + }), + r.createElement("path", { + className: "st3", + d: + "M16.36,13.907c0-1.16,0.384-2.193,1.075-2.935s1.687-1.194,2.911-1.194c0.104,0,0.184,0,0.262,0.002\n\t\t\ts0.154,0.006,0.25,0.014V8.505V7.217c0-0.032,0.012-0.056,0.03-0.072s0.042-0.024,0.066-0.024h0.785h0.785\n\t\t\tc0.04,0,0.063,0.008,0.078,0.022s0.018,0.034,0.018,0.058v4.538v4.538c0,0.136,0,0.288,0.006,0.452s0.018,0.34,0.042,0.525\n\t\t\tc0,0.032-0.004,0.052-0.016,0.068s-0.032,0.028-0.064,0.044c-0.416,0.2-0.844,0.344-1.272,0.439s-0.856,0.138-1.272,0.138\n\t\t\tc-1.072,0-1.993-0.332-2.645-1.003S16.36,15.26,16.36,13.907z M20.858,11.362c-0.072-0.032-0.156-0.056-0.252-0.072\n\t\t\ts-0.204-0.024-0.324-0.024c-0.625,0-1.157,0.24-1.533,0.68s-0.596,1.08-0.596,1.881c0,0.912,0.224,1.553,0.588,1.965\n\t\t\ts0.868,0.596,1.428,0.596c0.12,0,0.244-0.008,0.362-0.026s0.23-0.046,0.326-0.086v-2.457V11.362z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 66797: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#260A04;}\n\t.st1{fill:#FF401A;}\n\t.st2{fill:#FAFAFA;}\n"), + r.createElement("g", { key: 1 }, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]), + r.createElement( + "g", + { key: 2 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M13.254,25.135l0.609,1.169l0.609,1.169c0.01,0.018,0.012,0.035,0.007,0.048s-0.017,0.022-0.035,0.022h-0.378\n\t\t\th-0.378c-0.025,0-0.042-0.003-0.056-0.012s-0.025-0.023-0.035-0.044c-0.14-0.287-0.28-0.574-0.422-0.867s-0.286-0.59-0.433-0.899\n\t\t\th-0.003h-0.003c-0.13,0.291-0.266,0.591-0.405,0.889s-0.281,0.596-0.421,0.883c-0.01,0.018-0.021,0.03-0.033,0.038\n\t\t\ts-0.026,0.011-0.044,0.011h-0.361H11.11c-0.021,0-0.033-0.009-0.038-0.021s-0.001-0.028,0.01-0.042l0.595-1.134l0.595-1.134\n\t\t\tl-0.574-1.138l-0.574-1.138c-0.014-0.018-0.014-0.033-0.007-0.045s0.021-0.019,0.035-0.019h0.375h0.375\n\t\t\tc0.021,0,0.037,0.002,0.049,0.009s0.021,0.02,0.028,0.041c0.136,0.287,0.275,0.573,0.411,0.859s0.271,0.573,0.401,0.864h0.003\n\t\t\th0.003c0.126-0.287,0.259-0.574,0.394-0.86s0.271-0.572,0.404-0.855c0.01-0.018,0.019-0.032,0.031-0.042s0.025-0.015,0.046-0.015\n\t\t\th0.35h0.35c0.017,0,0.03,0.007,0.035,0.019s0.004,0.027-0.007,0.045l-0.574,1.1L13.254,25.135z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: + "M15.836,27.488c0,0.021-0.004,0.035-0.011,0.044s-0.02,0.012-0.038,0.012h-0.333h-0.333\n\t\t\tc-0.018,0-0.03-0.003-0.038-0.012s-0.011-0.023-0.011-0.044v-2.283v-2.283c0-0.018,0.004-0.03,0.011-0.038s0.02-0.012,0.038-0.012\n\t\t\th1.166h1.166c0.021,0,0.033,0.004,0.041,0.012s0.011,0.021,0.015,0.038l0.035,0.294l0.035,0.294c0.003,0.021,0,0.035-0.01,0.044\n\t\t\ts-0.025,0.012-0.046,0.012H16.68h-0.844v0.666v0.666h0.756h0.756c0.018,0,0.03,0.002,0.038,0.009s0.012,0.019,0.012,0.04v0.294\n\t\t\tv0.294c0,0.021-0.004,0.033-0.012,0.04s-0.021,0.009-0.038,0.009h-0.756h-0.756v0.953V27.488z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M18.342,27.544c-0.025,0-0.041-0.005-0.05-0.016s-0.013-0.026-0.013-0.047v-2.276v-2.276\n\t\t\tc0-0.018,0.003-0.032,0.011-0.042s0.02-0.015,0.038-0.015h0.336H19c0.018,0,0.028,0.004,0.034,0.012s0.008,0.021,0.008,0.038\n\t\t\tv1.964v1.964h0.875h0.875c0.018,0,0.03,0.003,0.037,0.011s0.009,0.02,0.005,0.038l-0.053,0.298l-0.053,0.298\n\t\t\tc-0.003,0.018-0.01,0.03-0.021,0.038s-0.024,0.011-0.042,0.011h-1.163H18.342z", + key: 2, + }), + ]) + ), + r.createElement( + "g", + { key: 3 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st1", + d: + "M10.505,14.788l-0.384,1.448l-0.384,1.448c-0.008,0.04-0.02,0.068-0.042,0.086s-0.054,0.026-0.102,0.026H8.88\n\t\t\tH8.168c-0.048,0-0.076-0.008-0.09-0.03s-0.014-0.058-0.006-0.114l1.376-4.818l1.376-4.818c0.024-0.088,0.044-0.168,0.06-0.286\n\t\t\ts0.028-0.274,0.036-0.514c0-0.032,0.008-0.056,0.022-0.072s0.034-0.024,0.058-0.024h1.016h1.016c0.032,0,0.056,0.004,0.074,0.018\n\t\t\ts0.03,0.038,0.038,0.078l1.545,5.226l1.545,5.226c0.008,0.04,0.008,0.072-0.004,0.094s-0.036,0.034-0.076,0.034h-0.8h-0.8\n\t\t\tc-0.04,0-0.072-0.008-0.096-0.024s-0.04-0.04-0.048-0.072l-0.4-1.457l-0.4-1.457h-1.553H10.505z M13.21,13.203\n\t\t\tc-0.136-0.536-0.364-1.389-0.588-2.249s-0.444-1.729-0.564-2.297H12.05h-0.008c-0.104,0.568-0.284,1.328-0.488,2.135\n\t\t\ts-0.432,1.659-0.632,2.411h1.144H13.21z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M17.208,11.522c0-0.048,0-0.156-0.006-0.322s-0.018-0.39-0.042-0.67c0-0.032,0.004-0.052,0.016-0.068\n\t\t\ts0.032-0.028,0.064-0.044c0.408-0.152,0.888-0.312,1.405-0.434s1.068-0.206,1.621-0.206c0.68,0,1.392,0.132,1.934,0.556\n\t\t\ts0.914,1.14,0.914,2.309v2.513v2.513c0,0.048-0.008,0.08-0.026,0.1s-0.046,0.028-0.086,0.028H22.25h-0.752\n\t\t\tc-0.048,0-0.08-0.012-0.1-0.034s-0.028-0.054-0.028-0.094V15.22v-2.449c0-0.464-0.092-0.825-0.304-1.069s-0.544-0.372-1.025-0.372\n\t\t\tc-0.208,0-0.408,0.02-0.592,0.052s-0.352,0.076-0.496,0.124v3.089v3.089c0,0.032-0.008,0.06-0.024,0.08s-0.04,0.032-0.072,0.032\n\t\t\th-0.769H17.32c-0.04,0-0.068-0.008-0.086-0.026s-0.026-0.046-0.026-0.086v-3.081V11.522z", + key: 1, + }), + ]) + ), + r.createElement("g", { key: 4 }), + r.createElement("g", { key: 5 }), + r.createElement("g", { key: 6 }), + r.createElement("g", { key: 7 }), + r.createElement("g", { key: 8 }), + r.createElement("g", { key: 9 }), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 63189: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("defs", { key: 0 }, r.createElement("style", null, ".cls-1{fill:#fff;}.cls-2{fill:#b3b3b3;}.cls-3{fill:#4b4b4b;}")), + r.createElement("title", { key: 1 }, "filetype_template_32"), + r.createElement( + "g", + { id: "Surface", key: 2 }, + r.createElement("g", { id: "Document" }, [ + r.createElement("path", { + className: "cls-1", + d: "M6,31.56836a2.50263,2.50263,0,0,1-2.5-2.5v-26a2.50294,2.50294,0,0,1,2.5-2.5H21.37988a1.98332,1.98332,0,0,1,1.41114.5835l5.12011,5.10156A2.01544,2.01544,0,0,1,28.5,7.66992V29.06836a2.50231,2.50231,0,0,1-2.5,2.5Z", + key: 0, + }), + r.createElement("path", { + className: "cls-2", + d: + "M21.38,1.06818a1.5,1.5,0,0,1,1.05879.43747l5.12,5.102A1.5,1.5,0,0,1,28,7.67014v21.398a2,2,0,0,1-2,2H6a2,2,0,0,1-2-2v-26a2,2,0,0,1,2-2H21.38m0-1H6a3.00339,3.00339,0,0,0-3,3v26a3.00339,3.00339,0,0,0,3,3H26a3.00339,3.00339,0,0,0,3-3V7.67014a2.5169,2.5169,0,0,0-.73536-1.77089L23.14469.7973A2.48407,2.48407,0,0,0,21.38.06818Z", + key: 1, + }), + ]) + ), + r.createElement( + "g", + { id: "Modifier", key: 3 }, + r.createElement( + "g", + { id: "_3D", "data-name": "3D" }, + r.createElement("path", { + className: "cls-3", + d: + "M15.79622,7.05515c-.02784.01273-5.70125,2.37871-5.70125,2.37871a1.01636,1.01636,0,0,0-.16985.09515.48594.48594,0,0,0-.16926.38225v6.22982a.4882.4882,0,0,0,.30087.44166l5.7261,2.36075a.44845.44845,0,0,0,.19959.04525.45967.45967,0,0,0,.17961-.03522l.02-.01,5.76131-2.36075a.48275.48275,0,0,0,.30082-.43775V9.88284a.43338.43338,0,0,0-.16961-.35567.49814.49814,0,0,0-.1199-.0751.20951.20951,0,0,0-.05-.02005S16.2158,7.06448,16.1954,7.05515a.48509.48509,0,0,0-.18805-.04389A.58251.58251,0,0,0,15.79622,7.05515Zm.198,4.71332-4.495-1.86624,4.46839-1.8537,4.49016,1.866Zm5.2695,3.9859-5.01562,2.09375V12.74346l5.01562-2.10628Z", + }) + ) + ), + ]); + } + (o.defaultProps = { viewBox: "0 0 32 32" }), (e.exports = o), (o.default = o); + }, + 65216: (e, t, n) => { + var r = n(23469); + function o(e) { + return r.createElement("svg", e, [ + r.createElement("style", { type: "text/css", key: 0 }, "\n\t.st0{fill:#FFFFFF;}\n\t.st1{fill:#B3B3B3;}\n\t.st2{fill:#2C2C2C;}\n\t.st3{fill:#4B4B4B;}\n"), + r.createElement( + "g", + { id: "Document", key: 1 }, + r.createElement("g", null, [ + r.createElement("path", { + className: "st0", + d: "M6,31.5c-1.378,0-2.5-1.121-2.5-2.5V3c0-1.378,1.122-2.5,2.5-2.5h15.38c0.533,0,1.034,0.207,1.411,0.583\n\t\t\tl5.12,5.102C28.285,6.558,28.5,7.074,28.5,7.602V29c0,1.379-1.121,2.5-2.5,2.5H6z", + key: 0, + }), + r.createElement("path", { + className: "st1", + d: + "M21.38,1c0.397,0,0.778,0.157,1.059,0.437l5.12,5.102C27.841,6.821,28,7.203,28,7.602V29c0,1.105-0.895,2-2,2\n\t\t\tH6c-1.105,0-2-0.895-2-2V3c0-1.105,0.895-2,2-2H21.38 M21.38,0H6C4.346,0,3,1.346,3,3v26c0,1.654,1.346,3,3,3h20\n\t\t\tc1.654,0,3-1.346,3-3V7.602c0-0.66-0.268-1.305-0.735-1.771l-5.12-5.102C22.673,0.259,22.046,0,21.38,0L21.38,0z", + key: 1, + }), + ]) + ), + r.createElement( + "g", + { id: "Mime", key: 2 }, + r.createElement( + "g", + null, + r.createElement("g", null, [ + r.createElement("path", { + className: "st2", + d: + "M11.783,27.544c-0.035,0-0.056-0.014-0.056-0.056v-0.399c0-0.035,0.007-0.049,0.021-0.084l2.066-3.439\n\t\t\t\th-1.982c-0.035,0-0.049-0.014-0.042-0.056l0.091-0.588c0.007-0.035,0.021-0.05,0.056-0.05h2.767c0.028,0,0.042,0.015,0.042,0.042\n\t\t\t\tv0.435c0,0.035-0.014,0.063-0.035,0.105l-2.024,3.396h2.087c0.035,0,0.049,0.021,0.035,0.056l-0.098,0.589\n\t\t\t\tc-0.007,0.035-0.028,0.049-0.063,0.049C14.648,27.544,11.783,27.544,11.783,27.544z", + key: 0, + }), + r.createElement("path", { + className: "st2", + d: "M16.264,27.488c0,0.042-0.007,0.056-0.056,0.056h-0.651c-0.042,0-0.056-0.021-0.056-0.056v-4.56\n\t\t\t\tc0-0.042,0.021-0.057,0.056-0.057h0.658c0.035,0,0.049,0.015,0.049,0.05V27.488z", + key: 1, + }), + r.createElement("path", { + className: "st2", + d: + "M17.341,22.929c0-0.028,0.007-0.049,0.042-0.049c0.273-0.015,0.673-0.021,1.093-0.021\n\t\t\t\tc1.177,0,1.688,0.645,1.688,1.471c0,1.079-0.777,1.541-1.736,1.541c-0.161,0-0.218-0.007-0.329-0.007v1.632\n\t\t\t\tc0,0.035-0.015,0.049-0.05,0.049H17.39c-0.035,0-0.049-0.014-0.049-0.049V22.929z M18.098,25.184\n\t\t\t\tc0.098,0.007,0.175,0.007,0.343,0.007c0.497,0,0.96-0.175,0.96-0.848c0-0.539-0.329-0.812-0.896-0.812\n\t\t\t\tc-0.169,0-0.329,0.007-0.406,0.014L18.098,25.184L18.098,25.184z", + key: 2, + }), + ]) + ) + ), + r.createElement( + "g", + { id: "Metaphor", key: 3 }, + r.createElement("path", { + id: "_x36_4_1_", + className: "st3", + d: + "M19,7.267v-0.5c0-0.138-0.112-0.25-0.25-0.25h-5.5c-0.138,0-0.25,0.114-0.25,0.252v1.498\n\t\tc0,0.138,0.112,0.25,0.25,0.25h2.25v1h-2.25c-0.138,0-0.25,0.112-0.25,0.25v0.5c0,0.138,0.112,0.25,0.25,0.25h2.25v1h-2.25\n\t\tc-0.138,0-0.25,0.112-0.25,0.25v0.5c0,0.138,0.112,0.25,0.25,0.25h2.25v2h-0.75c-0.138,0-0.25,0.117-0.25,0.255v3.495\n\t\tc0,0.138,0.112,0.25,0.25,0.25h2.5c0.138,0,0.25-0.112,0.25-0.25v-3.5c0-0.138-0.112-0.25-0.25-0.25H16.5v-2h2.25\n\t\tc0.138,0,0.25-0.112,0.25-0.25v-1.5c0-0.138-0.112-0.25-0.25-0.25H16.5v-1h2.25c0.138,0,0.25-0.112,0.25-0.25v-0.5\n\t\tc0-0.138-0.112-0.25-0.25-0.25H16.5v-1h2.25C18.888,7.517,19,7.405,19,7.267z M16.5,17.517h-1v-1.5h1V17.517z", + }) + ), + ]); + } + (o.defaultProps = { version: "1.1", id: "Layer_1", x: "0px", y: "0px", viewBox: "0 0 32 32", style: { enableBackground: "new 0 0 32 32" }, xmlSpace: "preserve" }), (e.exports = o), (o.default = o); + }, + 39189: (e, t, n) => { + "use strict"; + n.d(t, { En: () => o, ek: () => r }); + const r = { CCD_ASSETS_SPACES_FILES_OPEN: "ccd.assets.spaces.files", CCD_ASSETS_SPACES_CLOUDDOCS_OPEN: "ccd.assets.spaces.cdo", CCD_ASSETS_SPACES_ONE_OFF: "ccd.assets.spaces.oneOffEnabled" }, + o = "ccd.fw.loading.assets.comments"; + }, + 23675: (e, t, n) => { + "use strict"; + n.r(t), n.d(t, { ContentView: () => g }); + var r = n(23469), + o = n.n(r), + a = n(83275), + i = n(82318), + s = n(89009), + c = n(82685), + l = n(22953); + const u = (e) => + o().createElement( + "div", + { className: "your-work-init" }, + o().createElement("div", { className: "init-failed-heading" }, o().createElement(s._H, { id: "componentassets.init.failed.heading" })), + o().createElement("div", { className: "init-failed-text" }, o().createElement(s._H, { id: "componentassets.init.failed.text" })) + ); + var d = n(76489), + p = n(30572); + const f = ({ children: e, element: t, onClose: n }) => { + const a = o().createElement( + "div", + { className: "cywasw" }, + (0, r.cloneElement)(t, { + onClose: () => { + t.props.onClose && t.props.onClose(), n && n(); + }, + }) + ); + return "function" == typeof e ? e(a) : a; + }, + m = (e) => { + let t; + const n = d.assetsSpacesStore.context; + t = n.showDialog("custom", { + content: o().createElement(f, { + element: e, + onClose: () => { + t && (n.hideDialog(t), (t = void 0)); + }, + }), + wrapInDialog: !1, + }); + }; + class h extends r.Component { + componentDidMount() { + const { viewState: e } = this.props; + e.setIsListGridToggleable(!1), e.setAreFiltersEnabled(!1); + } + render() { + const { children: e } = this.props; + return e; + } + } + const v = "CCDAssetsSpaces: LibrariesForTeamsOneUp"; + var y = n(39189); + let g = (() => { + let e = class extends r.Component { + constructor() { + super(...arguments), + (this.getShareCapabilities = (e) => (["space", "team"].includes(e.type) || l.rn.XD_CLOUD_DOCUMENT === e.mimeType ? [l.F2.INVITE] : [l.F2.INVITE, l.F2.GETLINK])), + (this.getOneOffCapabilities = (e) => { + try { + const t = d.assetsSpacesStore.filesStore.context.get(l.cR.FeatureFlags).getFESData(y.ek.CCD_ASSETS_SPACES_ONE_OFF); + if (!t) return !1; + const { data: n } = t; + if (!n) return !1; + return JSON.parse(n).mimeTypes.includes(e.mimeType); + } catch (e) { + return console.error(`OneOffFeatureFlagData : FF data is incorrectly configured: ${e}`), !1; + } + }), + (this.openShareSheet = (e, t) => { + d.assetsSpacesStore.context.showShareSheet({ + assetData: e, + projectData: e.space, + team: e.team, + shareAction: l.F2.SHARE, + shareCapabilities: this.getShareCapabilities(e), + spaceDocumentOneOffInvites: this.getOneOffCapabilities(e), + }); + }), + (this.openOneUp = (e) => { + if (e.mimetype === l.rn.LIBRARY) { + if (d.assetsSpacesStore.assetsLibsStore) { + const t = d.assetsSpacesStore.assetsLibsStore.getLibraryIdByUrn(e.urn); + t && 0 !== t.length ? d.assetsSpacesStore.ccdRouter.push(`/assets/libraries/${t}`) : window.open(e.openUrl); + } + } else p.q.preview(e); + }); + } + componentDidMount() { + const { urn: e, search: t } = this.props; + c.projectsBrowseSession.navigateToUrl(e, t), + d.assetsSpacesStore.uabContext.sharedStore.updateStore( + (function () { + const e = {}; + try { + const { assetsLibsStore: t } = d.assetsSpacesStore; + if (!t) return e; + const { createNewLibrary: n, browseAllLibraries: r } = t, + a = window.CCDLibs.components.teamView; + if (!a) throw new Error(`${v}: getLibrairesForTeamsOneUp: team component isn't available`); + return { + libraries: { + createNewLibrary: (e) => n(e ? e.id : void 0), + browseAllLibraries: () => r(), + renderLibrariesView: (e) => + (function ({ viewState: e, teamComponent: t }) { + const { order: n, viewStyle: r, filter: a, selectedTeam: i, userTeams: s } = e, + c = s ? s.map((e) => e.name).join(",") : void 0; + return o().createElement(h, { viewState: e }, o().createElement(t, { teamNames: c, teamId: i ? i.id : void 0, filterBy: a, sortBy: n.field, sortOrder: n.direction, viewType: r, theme: "light" })); + })({ viewState: e, teamComponent: a }), + }, + }; + } catch (t) { + return console.error(`${v}: getLibrairesForTeamsOneUp: exception: ${t}`), e; + } + })() + ); + } + componentDidUpdate(e) { + const { urn: t, search: n } = this.props; + (e.urn === t && e.search === n) || c.projectsBrowseSession.navigateToUrl(t, n); + } + componentWillUnmount() { + c.projectsBrowseSession.session.navigate(void 0); + } + get toastInterface() { + const { context: e } = d.assetsSpacesStore; + return { addToast: e.showToast.bind(e), removeToast: e.hideToast.bind(e) }; + } + renderSpacesView() { + const e = window.UniversalAssetBrowser.components.find((e) => "spacesContentView" === e.id).main; + if (!e) throw new Error("CCDAssets Spaces UAB: spacesContentView not found"); + return o().createElement(e, { + browseSession: c.projectsBrowseSession.session, + disableLogAnalytics: !d.assetsSpacesStore.optInAnalytics, + oneUpStaticFileActions: [], + oneUpDynamicFileActions: [], + onProjectOneUpItemClick: this.openOneUp, + openShareSheet: this.openShareSheet, + preferencesStore: d.assetsSpacesStore.preferencesStore, + showModal: m, + toastInterface: this.toastInterface, + }); + } + renderLoadingView() { + return o().createElement( + "div", + { className: "your-work-init" }, + o().createElement(i.default, { size: "L" }), + o().createElement("div", { className: "init-wait-text" }, o().createElement(s._H, { id: "componentassets.init.wait.text" })) + ); + } + renderContent() { + const { initStatus: e } = d.assetsSpacesStore; + switch (e) { + case l.vb.DONE: + return this.renderSpacesView(); + case l.vb.IN_PROGRESS: + return this.renderLoadingView(); + case l.vb.FAILED: + return o().createElement(u, null); + default: + return null; + } + } + render() { + return o().createElement("div", { className: "cywasw", style: { paddingLeft: 16 } }, this.renderContent()); + } + }; + return ( + (e = (function (e, t, n, r) { + var o, + a = arguments.length, + i = a < 3 ? t : null === r ? (r = Object.getOwnPropertyDescriptor(t, n)) : r; + if ("object" == typeof Reflect && "function" == typeof Reflect.decorate) i = Reflect.decorate(e, t, n, r); + else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (i = (a < 3 ? o(i) : a > 3 ? o(t, n, i) : o(t, n)) || i); + return a > 3 && i && Object.defineProperty(t, n, i), i; + })([a.withRouter], e)), + e + ); + })(); + }, + 34874: (e, t, n) => { + const r = n(39109), + { components: o } = n(13853); + e.exports = { components: { sideNav: r.SideNav, contentView: r.ContentView }, oneUpView: r.oneUpView, name: "Spaces", initialize: r.initialize, id: o.Spaces.id }; + }, + 39109: (e, t, n) => { + "use strict"; + n.r(t), n.d(t, { ContentView: () => u, SideNav: () => l, initialize: () => d, oneUpView: () => p }); + var r = n(22953), + o = n(76489), + a = n(72926), + i = n(30572); + const s = ({ context: e, languageCode: t, resourcePath: n }) => { + return ( + (s = void 0), + (c = void 0), + (u = function* () { + try { + yield ((u = { context: e, locale: t }), + (n = void 0), + (s = void 0), + (c = void 0), + (l = function* () { + try { + (o.assetsSpacesStore.context = u.context), + (o.assetsSpacesStore.locale = u.locale), + (o.assetsSpacesStore.ccdRouter = o.assetsSpacesStore.context.get(r.cR.Router)), + (o.assetsSpacesStore.identityStore = o.assetsSpacesStore.context.get(r.cR.Identity)), + (o.assetsSpacesStore.preferencesStore = o.assetsSpacesStore.context.get(r.cR.Preferences)), + (o.assetsSpacesStore.featureFlagsStore = o.assetsSpacesStore.context.get(r.cR.FeatureFlags)), + o.assetsSpacesStore.context.onStoreRegister(r.cR.Files, () => { + const e = o.assetsSpacesStore.context.get(r.cR.Files); + o.assetsSpacesStore.filesStore = e; + }), + o.assetsSpacesStore.context.onStoreRegister(r.cR.AssetsLibs, () => { + const e = o.assetsSpacesStore.context.get(r.cR.AssetsLibs); + o.assetsSpacesStore.assetsLibsStore = e; + }), + yield o.assetsSpacesStore.init(u.context), + a.x.init(u.context), + yield i.q.init(); + } catch (e) { + o.assetsSpacesStore.setInitializationFailed(!0), console.error(`CCDAssetsSpaces: Initialization failed ${e.stack}`); + } + }), + new (c || (c = Promise))(function (e, t) { + function r(e) { + try { + a(l.next(e)); + } catch (e) { + t(e); + } + } + function o(e) { + try { + a(l.throw(e)); + } catch (e) { + t(e); + } + } + function a(t) { + var n; + t.done + ? e(t.value) + : ((n = t.value), + n instanceof c + ? n + : new c(function (e) { + e(n); + })).then(r, o); + } + a((l = l.apply(n, s || [])).next()); + })); + } catch (e) { + console.error(`CCDAssetsSpaces: Error while loading spaces: ${e.stack}`); + } + var n, s, c, l, u; + return o.assetsSpacesStore; + }), + new ((l = void 0) || (l = Promise))(function (e, t) { + function n(e) { + try { + o(u.next(e)); + } catch (e) { + t(e); + } + } + function r(e) { + try { + o(u.throw(e)); + } catch (e) { + t(e); + } + } + function o(t) { + var o; + t.done + ? e(t.value) + : ((o = t.value), + o instanceof l + ? o + : new l(function (e) { + e(o); + })).then(n, r); + } + o((u = u.apply(s, c || [])).next()); + }) + ); + var s, c, l, u; + }; + var c = function (e, t, n, r) { + return new (n || (n = Promise))(function (o, a) { + function i(e) { + try { + c(r.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(r.throw(e)); + } catch (e) { + a(e); + } + } + function c(e) { + var t; + e.done + ? o(e.value) + : ((t = e.value), + t instanceof n + ? t + : new n(function (e) { + e(t); + })).then(i, s); + } + c((r = r.apply(e, t || [])).next()); + }); + }; + const { SideNav: l } = n(82994), + { ContentView: u } = n(23675); + function d(e, t) { + return c(this, void 0, void 0, function* () { + try { + const { + versions: { UAP: n }, + } = e.get(r.cR.UABContext), + { locale: o } = e.get(r.cR.Locale), + a = { context: e.get(r.cR.SpacesContext), resourcePath: t, languageCode: o }, + i = window.PROJECTS_VERSION; + return console.info(`CCDAssetsSpaces: initializeAssetsSpaces: SpacesVersion ${i} UAPVersion ${n}`), s(a); + } catch (e) { + console.error(`CCDAssetsSpaces: Error while initializing Spaces component: ${e}`); + } + return Promise.reject(); + }); + } + function p() { + return i.q.getOneUpNode(); + } + }, + 82994: (e, t, n) => { + "use strict"; + n.r(t), n.d(t, { SideNav: () => i }); + var r = n(23469), + o = n.n(r), + a = n(82685); + class i extends r.Component { + render() { + const e = window.UniversalAssetBrowser.components.find((e) => "teamsSidebar" === e.id).main; + if (!e) throw new Error("UAB: teamsSidebar element not found"); + return o().createElement("div", { className: "cywasw" }, o().createElement(e, { browseSession: a.projectsBrowseSession.session })); + } + } + }, + 76489: (e, t, n) => { + "use strict"; + n.d(t, { assetsSpacesStore: () => h }); + var r = n(6860), + o = n(32339), + a = n(22953), + i = n(50187), + s = n(10602), + c = n(72926), + l = n(82685), + u = n(30572), + d = function (e, t, n, r) { + var o, + a = arguments.length, + i = a < 3 ? t : null === r ? (r = Object.getOwnPropertyDescriptor(t, n)) : r; + if ("object" == typeof Reflect && "function" == typeof Reflect.decorate) i = Reflect.decorate(e, t, n, r); + else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (i = (a < 3 ? o(i) : a > 3 ? o(t, n, i) : o(t, n)) || i); + return a > 3 && i && Object.defineProperty(t, n, i), i; + }, + p = function (e, t) { + if ("object" == typeof Reflect && "function" == typeof Reflect.metadata) return Reflect.metadata(e, t); + }, + f = function (e, t, n, r) { + return new (n || (n = Promise))(function (o, a) { + function i(e) { + try { + c(r.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(r.throw(e)); + } catch (e) { + a(e); + } + } + function c(e) { + var t; + e.done + ? o(e.value) + : ((t = e.value), + t instanceof n + ? t + : new n(function (e) { + e(t); + })).then(i, s); + } + c((r = r.apply(e, t || [])).next()); + }); + }; + const m = "CCDAssetsSpaces: AssetsSpacesStore", + h = new ((() => { + class e { + constructor() { + (this.context = null), + (this.projectsImsData = void 0), + (this.initStatus = a.vb.IN_PROGRESS), + (this.isInitializationFailed = !1), + (this.init = (e) => + f(this, void 0, void 0, function* () { + console.info(`${m} init`), + e.registerStore(a.cR.AssetsSpaces, this), + (this.eventStore = e.get(a.cR.Events)), + (this.filesIMSStore = e.get(a.cR.FilesIMSStore)), + (this.uabContext = e.get(a.cR.UABContext)), + l.projectsBrowseSession.init(), + s.O.init(), + yield this.setProjectsImsData(), + this.eventStore && this.eventStore.on(a.iV.FILES_IMS_DATA_UPDATED, this.setProjectsImsData), + (this.context = e), + this.uabContext.sharedStore.updateStore({ openUtils: c.A }), + (0, r.autorun)(() => { + this.uabContext.sharedStore.updateStore({ theme: this.context.get(a.cR.Container).currentTheme }); + }); + try { + (this.optInAnalytics = e.isAnalyticsOptedIn), this.setInitStatus(a.vb.DONE); + } catch (e) { + console.error(`${m} : Could not fetch analytics consent with error = ${e}`), this.setInitStatus(a.vb.FAILED); + } + })), + (this.setProjectsImsData = () => + f(this, void 0, void 0, function* () { + var e; + this.projectsImsData = { + accountType: this.filesIMSStore.accountType(), + displayName: this.filesIMSStore.displayName(), + environment: this.filesIMSStore.environment, + userEmail: this.filesIMSStore.email(), + userId: this.filesIMSStore.userID(), + subscriptionType: this.filesIMSStore.accountType(), + serviceLevel: this.filesIMSStore.serviceAccount() ? (null === (e = this.filesIMSStore.serviceAccount()[0]) || void 0 === e ? void 0 : e.serviceLevel) : null, + fetchToken: this.filesIMSStore.accessToken, + }; + })), + (this.registerTour = (e) => { + console.info(`${m}: registerTour: tourId: ${e.tourId}`); + }); + } + get initializationFailed() { + return this.isInitializationFailed; + } + setInitStatus(e) { + this.initStatus = e; + } + setInitializationFailed(e) { + this.isInitializationFailed = e; + } + navigateToSpace({ urn: e, view: t, type: n, folderId: r }) { + let i = a.Z5.SpacesRoot; + const s = {}; + e && (i += `/${encodeURIComponent(e)}`), t && (s.view = t), r && (s.folderId = r), (s.type = n); + const c = (function (e) { + const t = o.stringify(e); + return t ? `?${t}` : t; + })(s); + c && (i += c), this.ccdRouter.push(i); + } + previewFromRoute(e) { + u.q.previewFromRoute(e); + } + copyToProjects(e) { + const { ProjectsClient: t, SpaceRoute: n } = this.uabContext; + return new t({ showPicker: i.b }).copyItemsToProject({ + items: e.map((e) => ({ id: e.cloudUri, name: `${e.title}.${e.fileExtension}`, type: e.type })), + onViewProject: (e) => { + try { + const t = JSON.parse(e.spaceInfo), + r = e.externalData, + o = r && r._links[a.md.PAGE], + i = "project" === e.type ? new n(e.id, { view: "working" }) : new n(t.spaceId, { folderId: e.id, folderLink: o, folderAsset: r }); + this.navigateToSpace(i); + } catch (e) { + console.error("CCDAssetsSpaces : Cannot navigate to space: ", e); + } + }, + }); + } + } + return ( + d([r.observable, p("design:type", Object)], e.prototype, "projectsImsData", void 0), + d([r.observable, p("design:type", Object)], e.prototype, "initStatus", void 0), + d([r.observable, p("design:type", Object)], e.prototype, "isInitializationFailed", void 0), + d([r.action, p("design:type", Function), p("design:paramtypes", [Object]), p("design:returntype", void 0)], e.prototype, "setInitStatus", null), + d([r.action, p("design:type", Function), p("design:paramtypes", [Boolean]), p("design:returntype", void 0)], e.prototype, "setInitializationFailed", null), + e + ); + })())(); + }, + 10602: (e, t, n) => { + "use strict"; + n.d(t, { O: () => i }); + var r = n(76489), + o = function (e, t, n, r) { + return new (n || (n = Promise))(function (o, a) { + function i(e) { + try { + c(r.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(r.throw(e)); + } catch (e) { + a(e); + } + } + function c(e) { + var t; + e.done + ? o(e.value) + : ((t = e.value), + t instanceof n + ? t + : new n(function (e) { + e(t); + })).then(i, s); + } + c((r = r.apply(e, t || [])).next()); + }); + }; + const a = "CCDAssetsSpaces: Export: ExportStoreUtil", + i = new (class { + constructor() { + this.isInitialized = !1; + } + init() { + return o(this, void 0, void 0, function* () { + console.info(`${a}: init start`); + const { context: e, filesIMSStore: t } = r.assetsSpacesStore; + try { + (this.exportStore = e.exportStore), yield this.exportStore.init(t.accessToken, t.clientId), (this.isInitialized = !0); + } catch (e) { + console.error(`${a}: init err: ${e}`); + } + }); + } + exportSingleSpacesDoc(e, t) { + return o(this, void 0, void 0, function* () { + return yield this.exportStore.exportSingleDoc(e, t); + }); + } + isExportActionAvailable(e) { + return this.isInitialized && this.exportStore.isExportActionAvailable(e); + } + getExportPath() { + return o(this, void 0, void 0, function* () { + return this.exportStore.getExportPath(); + }); + } + })(); + }, + 30572: (e, t, n) => { + "use strict"; + n.d(t, { q: () => ca }); + var r = {}; + n.r(r), n.d(r, { _S: () => a, tv: () => Vr }); + var o, + a, + i = n(6860); + !(function (e) { + (e[(e.NONE = 0)] = "NONE"), + (e[(e.ONLINE_ONLY = 1)] = "ONLINE_ONLY"), + (e[(e.AVAILABLE_OFFLINE = 2)] = "AVAILABLE_OFFLINE"), + (e[(e.ONLINE_SYNCING = 3)] = "ONLINE_SYNCING"), + (e[(e.OFFLINE_SYNCING = 4)] = "OFFLINE_SYNCING"), + (e[(e.ERROR = 5)] = "ERROR"); + })(o || (o = {})), + (function (e) { + (e.CloudDocs = "CloudDocs"), (e.SharedWithYou = "SharedWithYou"), (e.SpacesDocs = "SpacesDocs"), (e.StockAssets = "StockAssets"), (e.FireflyStyleKits = "FireflyStyleKits"); + })(a || (a = {})); + var s, + c = n(23469), + l = n.n(c), + u = n(87630), + d = n(26662), + p = n(68173), + f = n(53673), + m = n(89009), + h = n(94758), + v = n(11900), + y = n(50626), + g = n(93353), + b = n.n(g), + E = n(23613), + D = n.n(E); + function C(e, t, n, r = [], o) { + (n = (0, c.useCallback)(n, r)), + (0, c.useEffect)(() => { + let r = (function (e) { + return e ? ((t = e) && Object.prototype.hasOwnProperty.call(t, "current") ? e.current : e) : null; + var t; + })(e); + return r && !r.addEventListener && (r = (0, E.findDOMNode)(r)), r ? (r.addEventListener(t, n, o), () => r.removeEventListener(t, n, o)) : null; + }, [e, t, n, o]); + } + !(function (e) { + (e[(e.Mobile = 0)] = "Mobile"), (e[(e.Cramped = 1)] = "Cramped"), (e[(e.Desktop = 2)] = "Desktop"); + })(s || (s = {})); + const w = l().createContext( + (function () { + const e = document.documentElement.clientWidth; + return e <= 700 ? s.Mobile : e <= 900 ? s.Cramped : s.Desktop; + })() + ), + S = n(6618), + A = ({ id: e, children: t }) => { + const n = (0, c.useContext)(w) <= s.Mobile; + return l().createElement("div", { key: e, className: b()(S.SidebarPanel, { [S.onSide]: !n, [S.onBottom]: n }) }, t); + }; + var k = n(97915), + _ = n.n(k); + const T = 1e3, + I = [0.1, 0.25, 0.5, 0.75, 1, 1.5, 2, 4, 8], + O = "fitPage", + F = "fitWidth", + x = { minWidth: "10rem" }, + N = { + aecap: n(18854), + aeg: n(42559), + aep: n(69071), + aepx: n(90609), + aet: n(88898), + aetx: n(37709), + ai: n(69010), + ait: n(1537), + arcut: n(51962), + astx: n(13825), + cat: n(25927), + cdlx: n(56848), + chproj: n(53009), + dn: n(82540), + dw: n(1914), + dwt: n(11215), + express: n(6428), + fla: n(95992), + fs: n(43889), + icap: n(10883), + icml: n(81716), + icmt: n(14646), + idap: n(41946), + idml: n(27089), + incx: n(68840), + indb: n(16171), + indd: n(5555), + indp: n(88845), + indt: n(9510), + lrlibrary: n(3497), + mu: n(34147), + pdf: n(43869), + plproj: n(40071), + prproj: n(59482), + psb: n(12471), + psd: n(35822), + real: n(64265), + sesx: n(45886), + stdoc: n(91412), + usdz: n(41867), + webpage: n(6428), + xd: n(30060), + xfl: n(66797), + xra: n(63189), + zip: n(65216), + glb: n(39124), + mov: n(22108), + mp4: n(22108), + mpeg: n(22108), + psdt: n(22108), + f4v: n(22108), + flv: n(22108), + m4v: n(22108), + avi: n(22108), + asf: n(22108), + wmv: n(22108), + "3gp": n(22108), + mkv: n(22108), + css: n(52951), + html: n(52951), + js: n(52951), + xml: n(52951), + txt: n(52951), + csv: n(52951), + numbers: n(52951), + rtf: n(52951), + textfragment: n(52951), + xls: n(175), + xlsx: n(175), + ppt: n(66635), + pptx: n(66635), + ps: n(51750), + }, + R = ({ id: e, selected: t, onClick: n, icon: r, tooltip: o, tooltipPlacement: a }) => { + const i = (function (e) { + const [t, n] = (0, c.useState)(matchMedia(e).matches); + return ( + (0, c.useEffect)(() => { + const t = matchMedia(e), + r = (e) => { + n(e.matches); + }; + return t.addListener(r), () => t.removeListener(r); + }, [e]), + t + ); + })("(hover: hover)"); + let s = l().createElement(_(), { "data-test-id": `OneUpActionBar_${e}Button`, icon: r, variant: "action", quiet: !0, selected: t, onClick: n, "aria-labelledby": `oneup-${e}-button-label` }); + return ( + i && (s = l().createElement(d.default, { trigger: ["hover", "focus"], delayShow: T, selected: t, placement: a }, s, l().createElement(p.default, null, o))), + l().createElement(l().Fragment, null, s, l().createElement("span", { hidden: !0, id: `oneup-${e}-button-label` }, o)) + ); + }, + L = n(6618), + M = ({ panels: e, currentPanel: t, orientation: n, setCurrentPanel: r, buttons: o }) => { + const a = l().Children.toArray(o).filter(Boolean); + return l().createElement( + "div", + { className: b()(L.ActionBar, { [L.horizontal]: "horizontal" === n, [L.vertical]: "vertical" === n }), "data-test-id": "OneUpActionBar" }, + e.map((e) => { + if (!e) return; + if (!l().isValidElement(e) || e.type !== A) throw new Error("Sidebar children must only be elements."); + const o = t === e.props.id, + { id: a } = e.props; + return l().createElement(R, { + key: a, + id: a, + selected: o, + icon: e.props.icon, + tooltip: e.props.tooltip, + tooltipPlacement: "vertical" === n ? "left" : "top", + onClick: () => { + r(o ? "" : a); + }, + }); + }), + a.length > 0 && l().createElement("div", { className: L.buttons }, a) + ); + }, + P = n(6618), + j = (0, c.forwardRef)(function (e, t) { + const { currentPanel: n } = e, + r = l().Children.toArray(e.children), + o = r.find((e) => l().isValidElement(e) && e.props.id === n); + (0, c.useEffect)(() => { + window.dispatchEvent(new CustomEvent("resize")); + }, [n]); + const a = (0, c.useRef)(null), + i = !1; + return ( + C(window, "mousedown", (e) => {}, [i, e.setCurrentPanel], { capture: !0 }), + l().createElement( + "div", + { ref: a, className: b()(P.Sidebar, { [P.onSide]: !0, [P.onBottom]: i }) }, + o, + l().createElement(M, { currentPanel: n, orientation: "vertical", panels: r, buttons: e.buttons, setCurrentPanel: e.setCurrentPanel }) + ) + ); + }); + const B = n(48126), + Z = (e) => { + var { onContentScroll: t, contentRef: n } = e, + r = (function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + })(e, ["onContentScroll", "contentRef"]); + let o, + { children: a, theme: i } = r; + a = l().Children.toArray(a); + for (let e = 0; e < a.length; e += 1) { + const t = a[e]; + if (l().isValidElement(t) && t.type === j) { + (o = t), a.splice(e, 1), (e -= 1); + break; + } + } + return l().createElement( + "div", + { className: b()(B.oneupContent) }, + l().createElement( + "div", + { className: B.body }, + l().createElement( + "div", + { className: B.innerBody }, + l().createElement( + "div", + { + "data-test-id": "OneUp_InnerBody", + ref: n, + className: B.oneUpInnerContent, + style: "light" === i ? { backgroundColor: "var(--spectrum2-gray-100)" } : { backgroundColor: "var(--spectrum2-gray-25)" }, + onScroll: t, + id: "oneupContent", + }, + a + ), + o + ) + ) + ); + }; + var U = n(55341), + z = n.n(U), + V = n(63099), + H = n(947); + const G = ({ height: e = 18, width: t = 18, className: n = "" }) => + l().createElement( + "svg", + { className: b()("CloudOnlyIcon", n), xmlns: "http://www.w3.org/2000/svg", width: e, height: t, viewBox: `0 0 ${e} ${t}` }, + l().createElement("circle", { className: b()("outline", "primary"), cx: "9", cy: "9", r: "8.95" }), + l().createElement("path", { className: "secondary", d: "M9,1.2A7.8,7.8,0,1,0,16.8,9,7.8,7.8,0,0,0,9,1.2Z" }), + l().createElement("path", { + className: "tertiary", + d: + "M12.123,8.228a1.745,1.745,0,0,0-.2.012A2.3,2.3,0,1,0,7.482,7a2.326,2.326,0,0,0-.065.32A1.939,1.939,0,0,0,5.04,8.691a1.964,1.964,0,0,0,0,1.006,1.062,1.062,0,0,0-.186-.016,1.091,1.091,0,1,0,0,2.181l7.27,0a1.818,1.818,0,0,0,0-3.636Z", + }) + ), + W = ({ height: e = 18, width: t = 18, className: n = "" }) => + l().createElement( + "svg", + { className: b()("AvailableOfflineIcon", n), xmlns: "http://www.w3.org/2000/svg", width: e, height: t, viewBox: `0 0 ${e} ${t}` }, + l().createElement("circle", { className: b()("outline", "primary"), cx: "9", cy: "9", r: "8.95" }), + l().createElement("path", { className: "secondary", d: "M9,1.2A7.8,7.8,0,1,0,16.8,9,7.8,7.8,0,0,0,9,1.2Z" }), + l().createElement("path", { + className: "tertiary", + d: "M7.62,13.183,4.154,9.764a.5.5,0,0,1,0-.707l.7-.712a.5.5,0,0,1,.707-.005l2.268,2.237,4.231-5.421a.5.5,0,0,1,.7-.087l.788.616a.5.5,0,0,1,.087.7L8.366,13.135A.5.5,0,0,1,7.62,13.183Z", + }) + ), + Q = ({ height: e = 18, width: t = 18, className: n = "" }) => + l().createElement( + "svg", + { xmlns: "http://www.w3.org/2000/svg", className: b()("SyncIcon", n), width: t, height: e, viewBox: `0 0 ${t} ${e}` }, + l().createElement("circle", { className: b()("outline", "primary"), cx: "9", cy: "9", r: "8.95" }), + l().createElement("path", { className: "secondary", d: "M9,1.2A7.8,7.8,0,1,0,16.8,9,7.8,7.8,0,0,0,9,1.2Z" }), + l().createElement("path", { + className: "tertiary", + d: + "M14.158,5a.21.21,0,0,0-.147-.061.2.2,0,0,0-.143.06l-.9.9A5.1,5.1,0,0,0,3.921,7.937a.207.207,0,0,0,.2.243l.883,0a.2.2,0,0,0,.2-.155,3.822,3.822,0,0,1,6.846-1.2L11,7.867a.2.2,0,0,0-.06.143A.208.208,0,0,0,11,8.157a.2.2,0,0,0,.126.058h2.882a.2.2,0,0,0,.2-.2V5.129A.2.2,0,0,0,14.158,5Z", + }), + l().createElement("path", { + className: "tertiary", + d: + "M3.839,13a.21.21,0,0,0,.147.061A.2.2,0,0,0,4.13,13l.9-.9a5.1,5.1,0,0,0,9.047-2.035.207.207,0,0,0-.2-.243l-.882,0a.2.2,0,0,0-.2.155,3.822,3.822,0,0,1-6.846,1.205l1.045-1.045a.2.2,0,0,0,.06-.143.208.208,0,0,0-.061-.147.2.2,0,0,0-.125-.058H3.986a.2.2,0,0,0-.205.2v2.882A.2.2,0,0,0,3.839,13Z", + }) + ), + J = () => l().createElement(Q, { className: "OfflineSyncIcon" }), + Y = () => l().createElement(Q, { className: "OnlineSyncIcon" }), + q = ({ height: e = 18, width: t = 18, className: n = "" }) => + l().createElement( + "svg", + { className: b()("AlertIcon", n), xmlns: "http://www.w3.org/2000/svg", width: e, height: t, viewBox: `0 0 ${e} ${t}` }, + l().createElement("circle", { className: b()("outline", "primary"), cx: "9", cy: "9", r: "8.95" }), + l().createElement("path", { className: "secondary", d: "M9,1.2A7.8,7.8,0,1,0,16.8,9,7.8,7.8,0,0,0,9,1.2Z" }), + l().createElement("path", { + className: "tertiary", + d: + "M7.851,3.646a.242.242,0,0,1,.114-.24,3.042,3.042,0,0,1,1.049-.212,3.311,3.311,0,0,1,1.061.16.272.272,0,0,1,.136.241v1.22c0,1.439-.287,5.413-.34,5.936,0,.1-.063.157-.18.157H8.336a.171.171,0,0,1-.178-.149c-.049-.663-.307-4.52-.307-5.893Z", + }), + l().createElement("path", { className: "tertiary", d: "M9.014,14.772a1.175,1.175,0,0,1-1.281-1.2,1.214,1.214,0,0,1,1.281-1.23,1.2,1.2,0,0,1,1.281,1.23A1.163,1.163,0,0,1,9.014,14.772Z" }) + ); + var X = function (e, t, n, r) { + var o, + a = arguments.length, + i = a < 3 ? t : null === r ? (r = Object.getOwnPropertyDescriptor(t, n)) : r; + if ("object" == typeof Reflect && "function" == typeof Reflect.decorate) i = Reflect.decorate(e, t, n, r); + else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (i = (a < 3 ? o(i) : a > 3 ? o(t, n, i) : o(t, n)) || i); + return a > 3 && i && Object.defineProperty(t, n, i), i; + }, + K = function (e, t) { + if ("object" == typeof Reflect && "function" == typeof Reflect.metadata) return Reflect.metadata(e, t); + }; + const $ = { zh_CN: "zh-Hans", zh_TW: "zh-Hant" }; + class ee { + setIntl(e) { + this.intl = e; + } + setLanguageCode(e) { + this.languageCode = e; + } + getLanguageCode() { + return this.languageCode; + } + setLocale(e) { + this.locale = e; + } + getMessage(e, t) { + return this.intl ? this.intl.formatMessage({ id: e }, t) : e; + } + getLocale() { + return this.locale; + } + getLocaleIdforAssetsWeb() { + return $[this.languageCode] || this.languageCode.slice(0, 2); + } + getRemappedLocale() { + return $[this.locale] || this.languageCode; + } + } + X([i.observable, K("design:type", Object)], ee.prototype, "intl", void 0), X([i.action, K("design:type", Function), K("design:paramtypes", [Object]), K("design:returntype", void 0)], ee.prototype, "setIntl", null); + const te = new ee(), + ne = ({ syncStatus: e }) => { + let t = null, + n = null; + switch (e) { + case o.ONLINE_ONLY: + (t = l().createElement(G, null)), (n = te.getMessage("oneup.headerbar.syncStatus.onlineOnly")); + break; + case o.AVAILABLE_OFFLINE: + (t = l().createElement(W, null)), (n = te.getMessage("oneup.headerbar.syncStatus.availableOffline")); + break; + case o.ONLINE_SYNCING: + (t = l().createElement(Y, null)), (n = te.getMessage("oneup.headerbar.syncStatus.syncing")); + break; + case o.OFFLINE_SYNCING: + (t = l().createElement(J, null)), (n = te.getMessage("oneup.headerbar.syncStatus.syncing")); + break; + case o.ERROR: + (t = l().createElement(q, null)), (n = te.getMessage("oneup.headerbar.syncStatus.syncError")); + } + return l().createElement( + d.default, + { className: "syncStatusIconToolTip", placement: "bottom", trigger: ["hover"], delayShow: T, disabled: !n }, + l().createElement("div", { className: "syncStatusIcon" }, t), + l().createElement(p.default, null, n) + ); + }; + const re = n(52659), + oe = ["hover", "focus"], + ae = ({ items: e, getMenuItems: t, cloudDocProps: n }) => { + const [r, o] = (0, c.useState)(e); + return l().createElement( + d.default, + { placement: "bottom", delayShow: T, trigger: oe, selected: !1 }, + l().createElement( + z(), + { + onClick: () => { + const e = t(n); + (0, i.runInAction)(() => { + o(e); + }); + }, + alignRight: !0, + }, + l().createElement(_(), { "data-test-id": "OneUpHeader_MoreButton", icon: l().createElement(V.Z, { size: "S" }), variant: "action", quiet: !0, className: re.icon, "aria-labelledby": "oneup-more-button-label" }), + l().createElement("span", { hidden: !0, id: "oneup-more-button-label" }), + l().createElement(u.Menu, null, r) + ), + l().createElement(p.default, null, l().createElement(m._H, { id: "oneup.headerbar.actionBtn.more" })) + ); + }, + ie = (e) => { + const { onBackClick: t, iconNode: n, directory: r, buttons: o, menuItems: a, getMenuItems: i, cloudDocProps: s } = e, + c = (function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + })(e, ["onBackClick", "iconNode", "directory", "buttons", "menuItems", "getMenuItems", "cloudDocProps"]); + return l().createElement( + "div", + { className: re.header }, + (function (e, t, n) { + return l().createElement( + "div", + { className: b()(re.headerLeft) }, + e && + l().createElement( + d.default, + { placement: "bottom", delayShow: T, trigger: "hover", selected: !1 }, + l().createElement(_(), { + quiet: !0, + "data-test-id": "OneUpHeader_BackToFilesViewButton", + variant: "action", + onClick: e, + "aria-labelledby": "oneup-back-button-label", + icon: l().createElement(H.default, null), + className: re.backButton, + }), + l().createElement(p.default, null, l().createElement(m._H, { id: "oneup.headerbar.backButton" })) + ), + t, + l().createElement(d.default, { placement: "bottom", delayShow: T, trigger: "hover" }, l().createElement("span", { className: re.directory }, n), l().createElement(p.default, null, n)) + ); + })(t, n, r), + (function (e) { + const { title: t, syncStatus: n, canShowSyncStatus: r, fileType: o } = e; + return l().createElement( + "div", + { className: b()(re.headerCenter) }, + l().createElement( + "div", + { className: re.heading }, + r && l().createElement(ne, { syncStatus: n }), + l().createElement(d.default, { placement: "bottom", trigger: "hover", delayShow: T, selected: !1 }, l().createElement("p", { className: re.title }, t), l().createElement(p.default, null, t)), + l().createElement("p", { className: re.fileType }, o) + ) + ); + })(c), + (function (e, t, n, r) { + return l().createElement("div", { className: b()(re.headerRight) }, e && e.map((e, t) => e && l().cloneElement(e, { key: t })), t && t.length > 0 && l().createElement(ae, { items: t, getMenuItems: n, cloudDocProps: r })); + })(o, a, i, s) + ); + }, + se = n(96892), + ce = (e) => { + const { oneUpHeaderProps: t, oneUpIndexProps: n, children: r } = e; + return l().createElement("div", { className: se.container }, l().createElement(ie, Object.assign({}, t)), l().createElement(Z, Object.assign({}, n), r)); + }; + var le = n(54215), + ue = n.n(le), + de = n(45304), + pe = n.n(de), + fe = n(29652), + me = n(35656), + he = n(10357), + ve = n(52211), + ye = n(57788), + ge = + (n(47776), + (function (e) { + function t() { + var e, n, r, o; + (0, fe.Z)(this, t); + for (var a = arguments.length, i = Array(a), s = 0; s < a; s++) i[s] = arguments[s]; + return ( + (n = r = (0, he.Z)(this, (e = t.__proto__ || pe()(t)).call.apply(e, [this].concat(i)))), + (r.state = { scrollToColumn: 0, scrollToRow: 0 }), + (r._columnStartIndex = 0), + (r._columnStopIndex = 0), + (r._rowStartIndex = 0), + (r._rowStopIndex = 0), + (r._onKeyDown = function (e) { + var t = r.props, + n = t.columnCount, + o = t.disabled, + a = t.mode, + i = t.rowCount; + if (!o) { + var s = r._getScrollState(), + c = s.scrollToColumn, + l = s.scrollToRow, + u = r._getScrollState(), + d = u.scrollToColumn, + p = u.scrollToRow; + switch (e.key) { + case "ArrowDown": + p = "cells" === a ? Math.min(p + 1, i - 1) : Math.min(r._rowStopIndex + 1, i - 1); + break; + case "ArrowLeft": + d = "cells" === a ? Math.max(d - 1, 0) : Math.max(r._columnStartIndex - 1, 0); + break; + case "ArrowRight": + d = "cells" === a ? Math.min(d + 1, n - 1) : Math.min(r._columnStopIndex + 1, n - 1); + break; + case "ArrowUp": + p = "cells" === a ? Math.max(p - 1, 0) : Math.max(r._rowStartIndex - 1, 0); + } + (d === c && p === l) || (e.preventDefault(), r._updateScrollState({ scrollToColumn: d, scrollToRow: p })); + } + }), + (r._onSectionRendered = function (e) { + var t = e.columnStartIndex, + n = e.columnStopIndex, + o = e.rowStartIndex, + a = e.rowStopIndex; + (r._columnStartIndex = t), (r._columnStopIndex = n), (r._rowStartIndex = o), (r._rowStopIndex = a); + }), + (o = n), + (0, he.Z)(r, o) + ); + } + return ( + (0, ve.Z)(t, e), + (0, me.Z)( + t, + [ + { + key: "setScrollIndexes", + value: function (e) { + var t = e.scrollToColumn, + n = e.scrollToRow; + this.setState({ scrollToRow: n, scrollToColumn: t }); + }, + }, + { + key: "render", + value: function () { + var e = this.props, + t = e.className, + n = e.children, + r = this._getScrollState(), + o = r.scrollToColumn, + a = r.scrollToRow; + return c.createElement("div", { className: t, onKeyDown: this._onKeyDown }, n({ onSectionRendered: this._onSectionRendered, scrollToColumn: o, scrollToRow: a })); + }, + }, + { + key: "_getScrollState", + value: function () { + return this.props.isControlled ? this.props : this.state; + }, + }, + { + key: "_updateScrollState", + value: function (e) { + var t = e.scrollToColumn, + n = e.scrollToRow, + r = this.props, + o = r.isControlled, + a = r.onScrollToChange; + "function" == typeof a && a({ scrollToColumn: t, scrollToRow: n }), o || this.setState({ scrollToColumn: t, scrollToRow: n }); + }, + }, + ], + [ + { + key: "getDerivedStateFromProps", + value: function (e, t) { + return e.isControlled ? null : e.scrollToColumn !== t.scrollToColumn || e.scrollToRow !== t.scrollToRow ? { scrollToColumn: e.scrollToColumn, scrollToRow: e.scrollToRow } : null; + }, + }, + ] + ), + t + ); + })(c.PureComponent)); + (ge.defaultProps = { disabled: !1, isControlled: !1, mode: "edges", scrollToColumn: 0, scrollToRow: 0 }), (ge.propTypes = null), (0, ye.polyfill)(ge); + var be = n(12458); + function Ee(e, t) { + var r, + o = void 0 !== (r = void 0 !== t ? t : "undefined" != typeof window ? window : "undefined" != typeof self ? self : n.g).document && r.document.attachEvent; + if (!o) { + var a = (function () { + var e = + r.requestAnimationFrame || + r.mozRequestAnimationFrame || + r.webkitRequestAnimationFrame || + function (e) { + return r.setTimeout(e, 20); + }; + return function (t) { + return e(t); + }; + })(), + i = (function () { + var e = r.cancelAnimationFrame || r.mozCancelAnimationFrame || r.webkitCancelAnimationFrame || r.clearTimeout; + return function (t) { + return e(t); + }; + })(), + s = function (e) { + var t = e.__resizeTriggers__, + n = t.firstElementChild, + r = t.lastElementChild, + o = n.firstElementChild; + (r.scrollLeft = r.scrollWidth), (r.scrollTop = r.scrollHeight), (o.style.width = n.offsetWidth + 1 + "px"), (o.style.height = n.offsetHeight + 1 + "px"), (n.scrollLeft = n.scrollWidth), (n.scrollTop = n.scrollHeight); + }, + c = function (e) { + if (!(e.target.className && "function" == typeof e.target.className.indexOf && e.target.className.indexOf("contract-trigger") < 0 && e.target.className.indexOf("expand-trigger") < 0)) { + var t = this; + s(this), + this.__resizeRAF__ && i(this.__resizeRAF__), + (this.__resizeRAF__ = a(function () { + (function (e) { + return e.offsetWidth != e.__resizeLast__.width || e.offsetHeight != e.__resizeLast__.height; + })(t) && + ((t.__resizeLast__.width = t.offsetWidth), + (t.__resizeLast__.height = t.offsetHeight), + t.__resizeListeners__.forEach(function (n) { + n.call(t, e); + })); + })); + } + }, + l = !1, + u = "", + d = "animationstart", + p = "Webkit Moz O ms".split(" "), + f = "webkitAnimationStart animationstart oAnimationStart MSAnimationStart".split(" "), + m = r.document.createElement("fakeelement"); + if ((void 0 !== m.style.animationName && (l = !0), !1 === l)) + for (var h = 0; h < p.length; h++) + if (void 0 !== m.style[p[h] + "AnimationName"]) { + (u = "-" + p[h].toLowerCase() + "-"), (d = f[h]), (l = !0); + break; + } + var v = "resizeanim", + y = "@" + u + "keyframes " + v + " { from { opacity: 0; } to { opacity: 0; } } ", + g = u + "animation: 1ms " + v + "; "; + } + return { + addResizeListener: function (t, n) { + if (o) t.attachEvent("onresize", n); + else { + if (!t.__resizeTriggers__) { + var a = t.ownerDocument, + i = r.getComputedStyle(t); + i && "static" == i.position && (t.style.position = "relative"), + (function (t) { + if (!t.getElementById("detectElementResize")) { + var n = + (y || "") + + ".resize-triggers { " + + (g || "") + + 'visibility: hidden; opacity: 0; } .resize-triggers, .resize-triggers > div, .contract-trigger:before { content: " "; display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; overflow: hidden; z-index: -1; } .resize-triggers > div { background: #eee; overflow: auto; } .contract-trigger:before { width: 200%; height: 200%; }', + r = t.head || t.getElementsByTagName("head")[0], + o = t.createElement("style"); + (o.id = "detectElementResize"), (o.type = "text/css"), null != e && o.setAttribute("nonce", e), o.styleSheet ? (o.styleSheet.cssText = n) : o.appendChild(t.createTextNode(n)), r.appendChild(o); + } + })(a), + (t.__resizeLast__ = {}), + (t.__resizeListeners__ = []), + ((t.__resizeTriggers__ = a.createElement("div")).className = "resize-triggers"), + (t.__resizeTriggers__.innerHTML = '
'), + t.appendChild(t.__resizeTriggers__), + s(t), + t.addEventListener("scroll", c, !0), + d && + ((t.__resizeTriggers__.__animationListener__ = function (e) { + e.animationName == v && s(t); + }), + t.__resizeTriggers__.addEventListener(d, t.__resizeTriggers__.__animationListener__)); + } + t.__resizeListeners__.push(n); + } + }, + removeResizeListener: function (e, t) { + if (o) e.detachEvent("onresize", t); + else if ((e.__resizeListeners__.splice(e.__resizeListeners__.indexOf(t), 1), !e.__resizeListeners__.length)) { + e.removeEventListener("scroll", c, !0), + e.__resizeTriggers__.__animationListener__ && (e.__resizeTriggers__.removeEventListener(d, e.__resizeTriggers__.__animationListener__), (e.__resizeTriggers__.__animationListener__ = null)); + try { + e.__resizeTriggers__ = !e.removeChild(e.__resizeTriggers__); + } catch (e) {} + } + }, + }; + } + var De = (function (e) { + function t() { + var e, n, r, o; + (0, fe.Z)(this, t); + for (var a = arguments.length, i = Array(a), s = 0; s < a; s++) i[s] = arguments[s]; + return ( + (n = r = (0, he.Z)(this, (e = t.__proto__ || pe()(t)).call.apply(e, [this].concat(i)))), + (r.state = { height: r.props.defaultHeight || 0, width: r.props.defaultWidth || 0 }), + (r._onResize = function () { + var e = r.props, + t = e.disableHeight, + n = e.disableWidth, + o = e.onResize; + if (r._parentNode) { + var a = r._parentNode.offsetHeight || 0, + i = r._parentNode.offsetWidth || 0, + s = (r._window || window).getComputedStyle(r._parentNode) || {}, + c = parseInt(s.paddingLeft, 10) || 0, + l = parseInt(s.paddingRight, 10) || 0, + u = parseInt(s.paddingTop, 10) || 0, + d = parseInt(s.paddingBottom, 10) || 0, + p = a - u - d, + f = i - c - l; + ((!t && r.state.height !== p) || (!n && r.state.width !== f)) && (r.setState({ height: a - u - d, width: i - c - l }), o({ height: a, width: i })); + } + }), + (r._setRef = function (e) { + r._autoSizer = e; + }), + (o = n), + (0, he.Z)(r, o) + ); + } + return ( + (0, ve.Z)(t, e), + (0, me.Z)(t, [ + { + key: "componentDidMount", + value: function () { + var e = this.props.nonce; + this._autoSizer && + this._autoSizer.parentNode && + this._autoSizer.parentNode.ownerDocument && + this._autoSizer.parentNode.ownerDocument.defaultView && + this._autoSizer.parentNode instanceof this._autoSizer.parentNode.ownerDocument.defaultView.HTMLElement && + ((this._parentNode = this._autoSizer.parentNode), + (this._window = this._autoSizer.parentNode.ownerDocument.defaultView), + (this._detectElementResize = Ee(e, this._window)), + this._detectElementResize.addResizeListener(this._parentNode, this._onResize), + this._onResize()); + }, + }, + { + key: "componentWillUnmount", + value: function () { + this._detectElementResize && this._parentNode && this._detectElementResize.removeResizeListener(this._parentNode, this._onResize); + }, + }, + { + key: "render", + value: function () { + var e = this.props, + t = e.children, + n = e.className, + r = e.disableHeight, + o = e.disableWidth, + a = e.style, + i = this.state, + s = i.height, + l = i.width, + u = { overflow: "visible" }, + d = {}; + return r || ((u.height = 0), (d.height = s)), o || ((u.width = 0), (d.width = l)), c.createElement("div", { className: n, ref: this._setRef, style: (0, be.Z)({}, u, a) }, t(d)); + }, + }, + ]), + t + ); + })(c.PureComponent); + (De.defaultProps = { onResize: function () {}, disableHeight: !1, disableWidth: !1, style: {} }), (De.propTypes = null); + var Ce = (function (e) { + function t() { + var e, n, r, o; + (0, fe.Z)(this, t); + for (var a = arguments.length, i = Array(a), s = 0; s < a; s++) i[s] = arguments[s]; + return ( + (n = r = (0, he.Z)(this, (e = t.__proto__ || pe()(t)).call.apply(e, [this].concat(i)))), + (r._measure = function () { + var e = r.props, + t = e.cache, + n = e.columnIndex, + o = void 0 === n ? 0 : n, + a = e.parent, + i = e.rowIndex, + s = void 0 === i ? r.props.index || 0 : i, + c = r._getCellMeasurements(), + l = c.height, + u = c.width; + (l === t.getHeight(s, o) && u === t.getWidth(s, o)) || (t.set(s, o, u, l), a && "function" == typeof a.recomputeGridSize && a.recomputeGridSize({ columnIndex: o, rowIndex: s })); + }), + (o = n), + (0, he.Z)(r, o) + ); + } + return ( + (0, ve.Z)(t, e), + (0, me.Z)(t, [ + { + key: "componentDidMount", + value: function () { + this._maybeMeasureCell(); + }, + }, + { + key: "componentDidUpdate", + value: function () { + this._maybeMeasureCell(); + }, + }, + { + key: "render", + value: function () { + var e = this.props.children; + return "function" == typeof e ? e({ measure: this._measure }) : e; + }, + }, + { + key: "_getCellMeasurements", + value: function () { + var e = this.props.cache, + t = (0, E.findDOMNode)(this); + if (t && t.ownerDocument && t.ownerDocument.defaultView && t instanceof t.ownerDocument.defaultView.HTMLElement) { + var n = t.style.width, + r = t.style.height; + e.hasFixedWidth() || (t.style.width = "auto"), e.hasFixedHeight() || (t.style.height = "auto"); + var o = Math.ceil(t.offsetHeight), + a = Math.ceil(t.offsetWidth); + return n && (t.style.width = n), r && (t.style.height = r), { height: o, width: a }; + } + return { height: 0, width: 0 }; + }, + }, + { + key: "_maybeMeasureCell", + value: function () { + var e = this.props, + t = e.cache, + n = e.columnIndex, + r = void 0 === n ? 0 : n, + o = e.parent, + a = e.rowIndex, + i = void 0 === a ? this.props.index || 0 : a; + if (!t.has(i, r)) { + var s = this._getCellMeasurements(), + c = s.height, + l = s.width; + t.set(i, r, l, c), o && "function" == typeof o.invalidateCellSizeAfterRender && o.invalidateCellSizeAfterRender({ columnIndex: r, rowIndex: i }); + } + }, + }, + ]), + t + ); + })(c.PureComponent); + function we(e, t) { + return e + "-" + t; + } + (Ce.__internalCellMeasurerFlag = !1), + (Ce.propTypes = null), + (0, me.Z)( + function e() { + var t = this, + n = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}; + (0, fe.Z)(this, e), + (this._cellHeightCache = {}), + (this._cellWidthCache = {}), + (this._columnWidthCache = {}), + (this._rowHeightCache = {}), + (this._columnCount = 0), + (this._rowCount = 0), + (this.columnWidth = function (e) { + var n = e.index, + r = t._keyMapper(0, n); + return t._columnWidthCache.hasOwnProperty(r) ? t._columnWidthCache[r] : t._defaultWidth; + }), + (this.rowHeight = function (e) { + var n = e.index, + r = t._keyMapper(n, 0); + return t._rowHeightCache.hasOwnProperty(r) ? t._rowHeightCache[r] : t._defaultHeight; + }); + var r = n.defaultHeight, + o = n.defaultWidth, + a = n.fixedHeight, + i = n.fixedWidth, + s = n.keyMapper, + c = n.minHeight, + l = n.minWidth; + (this._hasFixedHeight = !0 === a), + (this._hasFixedWidth = !0 === i), + (this._minHeight = c || 0), + (this._minWidth = l || 0), + (this._keyMapper = s || we), + (this._defaultHeight = Math.max(this._minHeight, "number" == typeof r ? r : 30)), + (this._defaultWidth = Math.max(this._minWidth, "number" == typeof o ? o : 100)); + }, + [ + { + key: "clear", + value: function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0, + n = this._keyMapper(e, t); + delete this._cellHeightCache[n], delete this._cellWidthCache[n], this._updateCachedColumnAndRowSizes(e, t); + }, + }, + { + key: "clearAll", + value: function () { + (this._cellHeightCache = {}), (this._cellWidthCache = {}), (this._columnWidthCache = {}), (this._rowHeightCache = {}), (this._rowCount = 0), (this._columnCount = 0); + }, + }, + { + key: "hasFixedHeight", + value: function () { + return this._hasFixedHeight; + }, + }, + { + key: "hasFixedWidth", + value: function () { + return this._hasFixedWidth; + }, + }, + { + key: "getHeight", + value: function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0; + if (this._hasFixedHeight) return this._defaultHeight; + var n = this._keyMapper(e, t); + return this._cellHeightCache.hasOwnProperty(n) ? Math.max(this._minHeight, this._cellHeightCache[n]) : this._defaultHeight; + }, + }, + { + key: "getWidth", + value: function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0; + if (this._hasFixedWidth) return this._defaultWidth; + var n = this._keyMapper(e, t); + return this._cellWidthCache.hasOwnProperty(n) ? Math.max(this._minWidth, this._cellWidthCache[n]) : this._defaultWidth; + }, + }, + { + key: "has", + value: function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0, + n = this._keyMapper(e, t); + return this._cellHeightCache.hasOwnProperty(n); + }, + }, + { + key: "set", + value: function (e, t, n, r) { + var o = this._keyMapper(e, t); + t >= this._columnCount && (this._columnCount = t + 1), e >= this._rowCount && (this._rowCount = e + 1), (this._cellHeightCache[o] = r), (this._cellWidthCache[o] = n), this._updateCachedColumnAndRowSizes(e, t); + }, + }, + { + key: "_updateCachedColumnAndRowSizes", + value: function (e, t) { + if (!this._hasFixedWidth) { + for (var n = 0, r = 0; r < this._rowCount; r++) n = Math.max(n, this.getWidth(r, t)); + var o = this._keyMapper(0, t); + this._columnWidthCache[o] = n; + } + if (!this._hasFixedHeight) { + for (var a = 0, i = 0; i < this._columnCount; i++) a = Math.max(a, this.getHeight(e, i)); + var s = this._keyMapper(e, 0); + this._rowHeightCache[s] = a; + } + }, + }, + { + key: "defaultHeight", + get: function () { + return this._defaultHeight; + }, + }, + { + key: "defaultWidth", + get: function () { + return this._defaultWidth; + }, + }, + ] + ); + var Se = n(37526); + function Ae(e) { + var t, + n, + r = ""; + if (e) + if ("object" == typeof e) + if (e.push) for (t = 0; t < e.length; t++) e[t] && (n = Ae(e[t])) && (r && (r += " "), (r += n)); + else for (t in e) e[t] && (n = Ae(t)) && (r && (r += " "), (r += n)); + else "boolean" == typeof e || e.call || (r && (r += " "), (r += e)); + return r; + } + function ke() { + for (var e, t = 0, n = ""; t < arguments.length; ) (e = Ae(arguments[t++])) && (n && (n += " "), (n += e)); + return n; + } + var _e = n(71851), + Te = n.n(_e); + function Ie() { + var e = !(arguments.length > 0 && void 0 !== arguments[0]) || arguments[0], + t = {}; + return function (n) { + var r = n.callback, + o = n.indices, + a = Te()(o), + i = + !e || + a.every(function (e) { + var t = o[e]; + return Array.isArray(t) ? t.length > 0 : t >= 0; + }), + s = + a.length !== Te()(t).length || + a.some(function (e) { + var n = t[e], + r = o[e]; + return Array.isArray(r) ? n.join(",") !== r.join(",") : n !== r; + }); + (t = o), i && s && r(o); + }; + } + const Oe = !("undefined" == typeof window || !window.document || !window.document.createElement); + var Fe; + function xe(e) { + if (((!Fe && 0 !== Fe) || e) && Oe) { + var t = document.createElement("div"); + (t.style.position = "absolute"), + (t.style.top = "-9999px"), + (t.style.width = "50px"), + (t.style.height = "50px"), + (t.style.overflow = "scroll"), + document.body.appendChild(t), + (Fe = t.offsetWidth - t.clientWidth), + document.body.removeChild(t); + } + return Fe; + } + var Ne = "requested", + Re = (function (e) { + function t() { + var e; + (0, fe.Z)(this, t); + for (var n = arguments.length, r = Array(n), o = 0; o < n; o++) r[o] = arguments[o]; + var a = (0, he.Z)(this, (e = t.__proto__ || pe()(t)).call.apply(e, [this].concat(r))); + return ( + (a.state = { isScrolling: !1, scrollLeft: 0, scrollTop: 0 }), + (a._calculateSizeAndPositionDataOnNextUpdate = !1), + (a._onSectionRenderedMemoizer = Ie()), + (a._onScrollMemoizer = Ie(!1)), + (a._invokeOnSectionRenderedHelper = function () { + var e = a.props, + t = e.cellLayoutManager, + n = e.onSectionRendered; + a._onSectionRenderedMemoizer({ callback: n, indices: { indices: t.getLastRenderedIndices() } }); + }), + (a._setScrollingContainerRef = function (e) { + a._scrollingContainer = e; + }), + (a._updateScrollPositionForScrollToCell = function () { + var e = a.props, + t = e.cellLayoutManager, + n = e.height, + r = e.scrollToAlignment, + o = e.scrollToCell, + i = e.width, + s = a.state, + c = s.scrollLeft, + l = s.scrollTop; + if (o >= 0) { + var u = t.getScrollPositionForCell({ align: r, cellIndex: o, height: n, scrollLeft: c, scrollTop: l, width: i }); + (u.scrollLeft === c && u.scrollTop === l) || a._setScrollPosition(u); + } + }), + (a._onScroll = function (e) { + if (e.target === a._scrollingContainer) { + a._enablePointerEventsAfterDelay(); + var t = a.props, + n = t.cellLayoutManager, + r = t.height, + o = t.isScrollingChange, + i = t.width, + s = a._scrollbarSize, + c = n.getTotalSize(), + l = c.height, + u = c.width, + d = Math.max(0, Math.min(u - i + s, e.target.scrollLeft)), + p = Math.max(0, Math.min(l - r + s, e.target.scrollTop)); + if (a.state.scrollLeft !== d || a.state.scrollTop !== p) { + var f = e.cancelable ? "observed" : Ne; + a.state.isScrolling || o(!0), a.setState({ isScrolling: !0, scrollLeft: d, scrollPositionChangeReason: f, scrollTop: p }); + } + a._invokeOnScrollMemoizer({ scrollLeft: d, scrollTop: p, totalWidth: u, totalHeight: l }); + } + }), + (a._scrollbarSize = xe()), + void 0 === a._scrollbarSize ? ((a._scrollbarSizeMeasured = !1), (a._scrollbarSize = 0)) : (a._scrollbarSizeMeasured = !0), + a + ); + } + return ( + (0, ve.Z)(t, e), + (0, me.Z)( + t, + [ + { + key: "recomputeCellSizesAndPositions", + value: function () { + (this._calculateSizeAndPositionDataOnNextUpdate = !0), this.forceUpdate(); + }, + }, + { + key: "componentDidMount", + value: function () { + var e = this.props, + t = e.cellLayoutManager, + n = e.scrollLeft, + r = e.scrollToCell, + o = e.scrollTop; + this._scrollbarSizeMeasured || ((this._scrollbarSize = xe()), (this._scrollbarSizeMeasured = !0), this.setState({})), + r >= 0 ? this._updateScrollPositionForScrollToCell() : (n >= 0 || o >= 0) && this._setScrollPosition({ scrollLeft: n, scrollTop: o }), + this._invokeOnSectionRenderedHelper(); + var a = t.getTotalSize(), + i = a.height, + s = a.width; + this._invokeOnScrollMemoizer({ scrollLeft: n || 0, scrollTop: o || 0, totalHeight: i, totalWidth: s }); + }, + }, + { + key: "componentDidUpdate", + value: function (e, t) { + var n = this.props, + r = n.height, + o = n.scrollToAlignment, + a = n.scrollToCell, + i = n.width, + s = this.state, + c = s.scrollLeft, + l = s.scrollPositionChangeReason, + u = s.scrollTop; + l === Ne && + (c >= 0 && c !== t.scrollLeft && c !== this._scrollingContainer.scrollLeft && (this._scrollingContainer.scrollLeft = c), + u >= 0 && u !== t.scrollTop && u !== this._scrollingContainer.scrollTop && (this._scrollingContainer.scrollTop = u)), + (r === e.height && o === e.scrollToAlignment && a === e.scrollToCell && i === e.width) || this._updateScrollPositionForScrollToCell(), + this._invokeOnSectionRenderedHelper(); + }, + }, + { + key: "componentWillUnmount", + value: function () { + this._disablePointerEventsTimeoutId && clearTimeout(this._disablePointerEventsTimeoutId); + }, + }, + { + key: "render", + value: function () { + var e = this.props, + t = e.autoHeight, + n = e.cellCount, + r = e.cellLayoutManager, + o = e.className, + a = e.height, + i = e.horizontalOverscanSize, + s = e.id, + l = e.noContentRenderer, + u = e.style, + d = e.verticalOverscanSize, + p = e.width, + f = this.state, + m = f.isScrolling, + h = f.scrollLeft, + v = f.scrollTop; + (this._lastRenderedCellCount !== n || this._lastRenderedCellLayoutManager !== r || this._calculateSizeAndPositionDataOnNextUpdate) && + ((this._lastRenderedCellCount = n), (this._lastRenderedCellLayoutManager = r), (this._calculateSizeAndPositionDataOnNextUpdate = !1), r.calculateSizeAndPositionData()); + var y = r.getTotalSize(), + g = y.height, + b = y.width, + E = Math.max(0, h - i), + D = Math.max(0, v - d), + C = Math.min(b, h + p + i), + w = Math.min(g, v + a + d), + S = a > 0 && p > 0 ? r.cellRenderers({ height: w - D, isScrolling: m, width: C - E, x: E, y: D }) : [], + A = { boxSizing: "border-box", direction: "ltr", height: t ? "auto" : a, position: "relative", WebkitOverflowScrolling: "touch", width: p, willChange: "transform" }, + k = g > a ? this._scrollbarSize : 0, + _ = b > p ? this._scrollbarSize : 0; + return ( + (A.overflowX = b + k <= p ? "hidden" : "auto"), + (A.overflowY = g + _ <= a ? "hidden" : "auto"), + c.createElement( + "div", + { + ref: this._setScrollingContainerRef, + "aria-label": this.props["aria-label"], + className: ke("ReactVirtualized__Collection", o), + id: s, + onScroll: this._onScroll, + role: "grid", + style: (0, be.Z)({}, A, u), + tabIndex: 0, + }, + n > 0 && + c.createElement("div", { className: "ReactVirtualized__Collection__innerScrollContainer", style: { height: g, maxHeight: g, maxWidth: b, overflow: "hidden", pointerEvents: m ? "none" : "", width: b } }, S), + 0 === n && l() + ) + ); + }, + }, + { + key: "_enablePointerEventsAfterDelay", + value: function () { + var e = this; + this._disablePointerEventsTimeoutId && clearTimeout(this._disablePointerEventsTimeoutId), + (this._disablePointerEventsTimeoutId = setTimeout(function () { + (0, e.props.isScrollingChange)(!1), (e._disablePointerEventsTimeoutId = null), e.setState({ isScrolling: !1 }); + }, 150)); + }, + }, + { + key: "_invokeOnScrollMemoizer", + value: function (e) { + var t = this, + n = e.scrollLeft, + r = e.scrollTop, + o = e.totalHeight, + a = e.totalWidth; + this._onScrollMemoizer({ + callback: function (e) { + var n = e.scrollLeft, + r = e.scrollTop, + i = t.props, + s = i.height; + (0, i.onScroll)({ clientHeight: s, clientWidth: i.width, scrollHeight: o, scrollLeft: n, scrollTop: r, scrollWidth: a }); + }, + indices: { scrollLeft: n, scrollTop: r }, + }); + }, + }, + { + key: "_setScrollPosition", + value: function (e) { + var t = e.scrollLeft, + n = e.scrollTop, + r = { scrollPositionChangeReason: Ne }; + t >= 0 && (r.scrollLeft = t), n >= 0 && (r.scrollTop = n), ((t >= 0 && t !== this.state.scrollLeft) || (n >= 0 && n !== this.state.scrollTop)) && this.setState(r); + }, + }, + ], + [ + { + key: "getDerivedStateFromProps", + value: function (e, t) { + return 0 !== e.cellCount || (0 === t.scrollLeft && 0 === t.scrollTop) + ? e.scrollLeft !== t.scrollLeft || e.scrollTop !== t.scrollTop + ? { scrollLeft: null != e.scrollLeft ? e.scrollLeft : t.scrollLeft, scrollTop: null != e.scrollTop ? e.scrollTop : t.scrollTop } + : null + : { scrollLeft: 0, scrollTop: 0 }; + }, + }, + ] + ), + t + ); + })(c.PureComponent); + (Re.defaultProps = { + "aria-label": "grid", + horizontalOverscanSize: 0, + noContentRenderer: function () { + return null; + }, + onScroll: function () { + return null; + }, + onSectionRendered: function () { + return null; + }, + scrollToAlignment: "auto", + scrollToCell: -1, + style: {}, + verticalOverscanSize: 0, + }), + (Re.propTypes = {}), + (0, ye.polyfill)(Re); + const Le = Re, + Me = (function () { + function e(t) { + var n = t.height, + r = t.width, + o = t.x, + a = t.y; + (0, fe.Z)(this, e), (this.height = n), (this.width = r), (this.x = o), (this.y = a), (this._indexMap = {}), (this._indices = []); + } + return ( + (0, me.Z)(e, [ + { + key: "addCellIndex", + value: function (e) { + var t = e.index; + this._indexMap[t] || ((this._indexMap[t] = !0), this._indices.push(t)); + }, + }, + { + key: "getCellIndices", + value: function () { + return this._indices; + }, + }, + { + key: "toString", + value: function () { + return this.x + "," + this.y + " " + this.width + "x" + this.height; + }, + }, + ]), + e + ); + })(), + Pe = (function () { + function e() { + var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : 100; + (0, fe.Z)(this, e), (this._sectionSize = t), (this._cellMetadata = []), (this._sections = {}); + } + return ( + (0, me.Z)(e, [ + { + key: "getCellIndices", + value: function (e) { + var t = e.height, + n = e.width, + r = e.x, + o = e.y, + a = {}; + return ( + this.getSections({ height: t, width: n, x: r, y: o }).forEach(function (e) { + return e.getCellIndices().forEach(function (e) { + a[e] = e; + }); + }), + Te()(a).map(function (e) { + return a[e]; + }) + ); + }, + }, + { + key: "getCellMetadata", + value: function (e) { + var t = e.index; + return this._cellMetadata[t]; + }, + }, + { + key: "getSections", + value: function (e) { + for ( + var t = e.height, + n = e.width, + r = e.x, + o = e.y, + a = Math.floor(r / this._sectionSize), + i = Math.floor((r + n - 1) / this._sectionSize), + s = Math.floor(o / this._sectionSize), + c = Math.floor((o + t - 1) / this._sectionSize), + l = [], + u = a; + u <= i; + u++ + ) + for (var d = s; d <= c; d++) { + var p = u + "." + d; + this._sections[p] || (this._sections[p] = new Me({ height: this._sectionSize, width: this._sectionSize, x: u * this._sectionSize, y: d * this._sectionSize })), l.push(this._sections[p]); + } + return l; + }, + }, + { + key: "getTotalSectionCount", + value: function () { + return Te()(this._sections).length; + }, + }, + { + key: "toString", + value: function () { + var e = this; + return Te()(this._sections).map(function (t) { + return e._sections[t].toString(); + }); + }, + }, + { + key: "registerCell", + value: function (e) { + var t = e.cellMetadatum, + n = e.index; + (this._cellMetadata[n] = t), + this.getSections(t).forEach(function (e) { + return e.addCellIndex({ index: n }); + }); + }, + }, + ]), + e + ); + })(); + function je(e) { + var t = e.align, + n = void 0 === t ? "auto" : t, + r = e.cellOffset, + o = e.cellSize, + a = e.containerSize, + i = e.currentOffset, + s = r, + c = s - a + o; + switch (n) { + case "start": + return s; + case "end": + return c; + case "center": + return s - (a - o) / 2; + default: + return Math.max(c, Math.min(s, i)); + } + } + var Be = (function (e) { + function t(e, n) { + (0, fe.Z)(this, t); + var r = (0, he.Z)(this, (t.__proto__ || pe()(t)).call(this, e, n)); + return (r._cellMetadata = []), (r._lastRenderedCellIndices = []), (r._cellCache = []), (r._isScrollingChange = r._isScrollingChange.bind(r)), (r._setCollectionViewRef = r._setCollectionViewRef.bind(r)), r; + } + return ( + (0, ve.Z)(t, e), + (0, me.Z)(t, [ + { + key: "forceUpdate", + value: function () { + void 0 !== this._collectionView && this._collectionView.forceUpdate(); + }, + }, + { + key: "recomputeCellSizesAndPositions", + value: function () { + (this._cellCache = []), this._collectionView.recomputeCellSizesAndPositions(); + }, + }, + { + key: "render", + value: function () { + var e = (0, Se.Z)(this.props, []); + return c.createElement(Le, (0, be.Z)({ cellLayoutManager: this, isScrollingChange: this._isScrollingChange, ref: this._setCollectionViewRef }, e)); + }, + }, + { + key: "calculateSizeAndPositionData", + value: function () { + var e = this.props, + t = (function (e) { + for (var t = e.cellCount, n = e.cellSizeAndPositionGetter, r = [], o = new Pe(e.sectionSize), a = 0, i = 0, s = 0; s < t; s++) { + var c = n({ index: s }); + if (null == c.height || isNaN(c.height) || null == c.width || isNaN(c.width) || null == c.x || isNaN(c.x) || null == c.y || isNaN(c.y)) + throw Error("Invalid metadata returned for cell " + s + ":\n x:" + c.x + ", y:" + c.y + ", width:" + c.width + ", height:" + c.height); + (a = Math.max(a, c.y + c.height)), (i = Math.max(i, c.x + c.width)), (r[s] = c), o.registerCell({ cellMetadatum: c, index: s }); + } + return { cellMetadata: r, height: a, sectionManager: o, width: i }; + })({ cellCount: e.cellCount, cellSizeAndPositionGetter: e.cellSizeAndPositionGetter, sectionSize: e.sectionSize }); + (this._cellMetadata = t.cellMetadata), (this._sectionManager = t.sectionManager), (this._height = t.height), (this._width = t.width); + }, + }, + { + key: "getLastRenderedIndices", + value: function () { + return this._lastRenderedCellIndices; + }, + }, + { + key: "getScrollPositionForCell", + value: function (e) { + var t = e.align, + n = e.cellIndex, + r = e.height, + o = e.scrollLeft, + a = e.scrollTop, + i = e.width, + s = this.props.cellCount; + if (n >= 0 && n < s) { + var c = this._cellMetadata[n]; + (o = je({ align: t, cellOffset: c.x, cellSize: c.width, containerSize: i, currentOffset: o, targetIndex: n })), + (a = je({ align: t, cellOffset: c.y, cellSize: c.height, containerSize: r, currentOffset: a, targetIndex: n })); + } + return { scrollLeft: o, scrollTop: a }; + }, + }, + { + key: "getTotalSize", + value: function () { + return { height: this._height, width: this._width }; + }, + }, + { + key: "cellRenderers", + value: function (e) { + var t = this, + n = e.height, + r = e.isScrolling, + o = e.width, + a = e.x, + i = e.y, + s = this.props, + c = s.cellGroupRenderer, + l = s.cellRenderer; + return ( + (this._lastRenderedCellIndices = this._sectionManager.getCellIndices({ height: n, width: o, x: a, y: i })), + c({ + cellCache: this._cellCache, + cellRenderer: l, + cellSizeAndPositionGetter: function (e) { + var n = e.index; + return t._sectionManager.getCellMetadata({ index: n }); + }, + indices: this._lastRenderedCellIndices, + isScrolling: r, + }) + ); + }, + }, + { + key: "_isScrollingChange", + value: function (e) { + e || (this._cellCache = []); + }, + }, + { + key: "_setCollectionViewRef", + value: function (e) { + this._collectionView = e; + }, + }, + ]), + t + ); + })(c.PureComponent); + (Be.defaultProps = { + "aria-label": "grid", + cellGroupRenderer: function (e) { + var t = e.cellCache, + n = e.cellRenderer, + r = e.cellSizeAndPositionGetter, + o = e.indices, + a = e.isScrolling; + return o + .map(function (e) { + var o = r({ index: e }), + i = { index: e, isScrolling: a, key: e, style: { height: o.height, left: o.x, position: "absolute", top: o.y, width: o.width } }; + return a ? (e in t || (t[e] = n(i)), t[e]) : n(i); + }) + .filter(function (e) { + return !!e; + }); + }, + }), + (Be.propTypes = {}), + ((function (e) { + function t(e, n) { + (0, fe.Z)(this, t); + var r = (0, he.Z)(this, (t.__proto__ || pe()(t)).call(this, e, n)); + return (r._registerChild = r._registerChild.bind(r)), r; + } + return ( + (0, ve.Z)(t, e), + (0, me.Z)(t, [ + { + key: "componentDidUpdate", + value: function (e) { + var t = this.props, + n = t.columnMaxWidth, + r = t.columnMinWidth, + o = t.columnCount, + a = t.width; + (n === e.columnMaxWidth && r === e.columnMinWidth && o === e.columnCount && a === e.width) || (this._registeredChild && this._registeredChild.recomputeGridSize()); + }, + }, + { + key: "render", + value: function () { + var e = this.props, + t = e.children, + n = e.columnMaxWidth, + r = e.columnMinWidth, + o = e.columnCount, + a = e.width, + i = r || 1, + s = n ? Math.min(n, a) : a, + c = a / o; + return ( + (c = Math.max(i, c)), + (c = Math.min(s, c)), + (c = Math.floor(c)), + t({ + adjustedWidth: Math.min(a, c * o), + columnWidth: c, + getColumnWidth: function () { + return c; + }, + registerChild: this._registerChild, + }) + ); + }, + }, + { + key: "_registerChild", + value: function (e) { + if (e && "function" != typeof e.recomputeGridSize) throw Error("Unexpected child type registered; only Grid/MultiGrid children are supported."); + (this._registeredChild = e), this._registeredChild && this._registeredChild.recomputeGridSize(); + }, + }, + ]), + t + ); + })(c.PureComponent).propTypes = {}); + var Ze = n(10099), + Ue = n.n(Ze); + function ze(e) { + var t = e.cellCount, + n = e.cellSize, + r = e.computeMetadataCallback, + o = e.computeMetadataCallbackProps, + a = e.nextCellsCount, + i = e.nextCellSize, + s = e.nextScrollToIndex, + c = e.scrollToIndex, + l = e.updateScrollOffsetForScrollToIndex; + (t === a && (("number" != typeof n && "number" != typeof i) || n === i)) || (r(o), c >= 0 && c === s && l()); + } + const Ve = (function () { + function e(t) { + var n = t.cellCount, + r = t.cellSizeGetter, + o = t.estimatedCellSize; + (0, fe.Z)(this, e), (this._cellSizeAndPositionData = {}), (this._lastMeasuredIndex = -1), (this._lastBatchedIndex = -1), (this._cellSizeGetter = r), (this._cellCount = n), (this._estimatedCellSize = o); + } + return ( + (0, me.Z)(e, [ + { + key: "areOffsetsAdjusted", + value: function () { + return !1; + }, + }, + { + key: "configure", + value: function (e) { + var t = e.cellCount, + n = e.estimatedCellSize, + r = e.cellSizeGetter; + (this._cellCount = t), (this._estimatedCellSize = n), (this._cellSizeGetter = r); + }, + }, + { + key: "getCellCount", + value: function () { + return this._cellCount; + }, + }, + { + key: "getEstimatedCellSize", + value: function () { + return this._estimatedCellSize; + }, + }, + { + key: "getLastMeasuredIndex", + value: function () { + return this._lastMeasuredIndex; + }, + }, + { + key: "getOffsetAdjustment", + value: function () { + return 0; + }, + }, + { + key: "getSizeAndPositionOfCell", + value: function (e) { + if (e < 0 || e >= this._cellCount) throw Error("Requested index " + e + " is outside of range 0.." + this._cellCount); + if (e > this._lastMeasuredIndex) + for (var t = this.getSizeAndPositionOfLastMeasuredCell(), n = t.offset + t.size, r = this._lastMeasuredIndex + 1; r <= e; r++) { + var o = this._cellSizeGetter({ index: r }); + if (void 0 === o || isNaN(o)) throw Error("Invalid size returned for cell " + r + " of value " + o); + null === o ? ((this._cellSizeAndPositionData[r] = { offset: n, size: 0 }), (this._lastBatchedIndex = e)) : ((this._cellSizeAndPositionData[r] = { offset: n, size: o }), (n += o), (this._lastMeasuredIndex = e)); + } + return this._cellSizeAndPositionData[e]; + }, + }, + { + key: "getSizeAndPositionOfLastMeasuredCell", + value: function () { + return this._lastMeasuredIndex >= 0 ? this._cellSizeAndPositionData[this._lastMeasuredIndex] : { offset: 0, size: 0 }; + }, + }, + { + key: "getTotalSize", + value: function () { + var e = this.getSizeAndPositionOfLastMeasuredCell(); + return e.offset + e.size + (this._cellCount - this._lastMeasuredIndex - 1) * this._estimatedCellSize; + }, + }, + { + key: "getUpdatedOffsetForIndex", + value: function (e) { + var t = e.align, + n = void 0 === t ? "auto" : t, + r = e.containerSize, + o = e.currentOffset, + a = e.targetIndex; + if (r <= 0) return 0; + var i = this.getSizeAndPositionOfCell(a), + s = i.offset, + c = s - r + i.size, + l = void 0; + switch (n) { + case "start": + l = s; + break; + case "end": + l = c; + break; + case "center": + l = s - (r - i.size) / 2; + break; + default: + l = Math.max(c, Math.min(s, o)); + } + var u = this.getTotalSize(); + return Math.max(0, Math.min(u - r, l)); + }, + }, + { + key: "getVisibleCellRange", + value: function (e) { + var t = e.containerSize, + n = e.offset; + if (0 === this.getTotalSize()) return {}; + var r = n + t, + o = this._findNearestCell(n), + a = this.getSizeAndPositionOfCell(o); + n = a.offset + a.size; + for (var i = o; n < r && i < this._cellCount - 1; ) i++, (n += this.getSizeAndPositionOfCell(i).size); + return { start: o, stop: i }; + }, + }, + { + key: "resetCell", + value: function (e) { + this._lastMeasuredIndex = Math.min(this._lastMeasuredIndex, e - 1); + }, + }, + { + key: "_binarySearch", + value: function (e, t, n) { + for (; t <= e; ) { + var r = t + Math.floor((e - t) / 2), + o = this.getSizeAndPositionOfCell(r).offset; + if (o === n) return r; + o < n ? (t = r + 1) : o > n && (e = r - 1); + } + return t > 0 ? t - 1 : 0; + }, + }, + { + key: "_exponentialSearch", + value: function (e, t) { + for (var n = 1; e < this._cellCount && this.getSizeAndPositionOfCell(e).offset < t; ) (e += n), (n *= 2); + return this._binarySearch(Math.min(e, this._cellCount - 1), Math.floor(e / 2), t); + }, + }, + { + key: "_findNearestCell", + value: function (e) { + if (isNaN(e)) throw Error("Invalid offset " + e + " specified"); + e = Math.max(0, e); + var t = this.getSizeAndPositionOfLastMeasuredCell(), + n = Math.max(0, this._lastMeasuredIndex); + return t.offset >= e ? this._binarySearch(n, 0, e) : this._exponentialSearch(n, e); + }, + }, + ]), + e + ); + })(); + const He = (function () { + function e(t) { + var n = t.maxScrollSize, + r = void 0 === n ? ("undefined" != typeof window && window.chrome ? 16777100 : 15e5) : n, + o = (0, Se.Z)(t, ["maxScrollSize"]); + (0, fe.Z)(this, e), (this._cellSizeAndPositionManager = new Ve(o)), (this._maxScrollSize = r); + } + return ( + (0, me.Z)(e, [ + { + key: "areOffsetsAdjusted", + value: function () { + return this._cellSizeAndPositionManager.getTotalSize() > this._maxScrollSize; + }, + }, + { + key: "configure", + value: function (e) { + this._cellSizeAndPositionManager.configure(e); + }, + }, + { + key: "getCellCount", + value: function () { + return this._cellSizeAndPositionManager.getCellCount(); + }, + }, + { + key: "getEstimatedCellSize", + value: function () { + return this._cellSizeAndPositionManager.getEstimatedCellSize(); + }, + }, + { + key: "getLastMeasuredIndex", + value: function () { + return this._cellSizeAndPositionManager.getLastMeasuredIndex(); + }, + }, + { + key: "getOffsetAdjustment", + value: function (e) { + var t = e.containerSize, + n = e.offset, + r = this._cellSizeAndPositionManager.getTotalSize(), + o = this.getTotalSize(), + a = this._getOffsetPercentage({ containerSize: t, offset: n, totalSize: o }); + return Math.round(a * (o - r)); + }, + }, + { + key: "getSizeAndPositionOfCell", + value: function (e) { + return this._cellSizeAndPositionManager.getSizeAndPositionOfCell(e); + }, + }, + { + key: "getSizeAndPositionOfLastMeasuredCell", + value: function () { + return this._cellSizeAndPositionManager.getSizeAndPositionOfLastMeasuredCell(); + }, + }, + { + key: "getTotalSize", + value: function () { + return Math.min(this._maxScrollSize, this._cellSizeAndPositionManager.getTotalSize()); + }, + }, + { + key: "getUpdatedOffsetForIndex", + value: function (e) { + var t = e.align, + n = void 0 === t ? "auto" : t, + r = e.containerSize, + o = e.currentOffset, + a = e.targetIndex; + o = this._safeOffsetToOffset({ containerSize: r, offset: o }); + var i = this._cellSizeAndPositionManager.getUpdatedOffsetForIndex({ align: n, containerSize: r, currentOffset: o, targetIndex: a }); + return this._offsetToSafeOffset({ containerSize: r, offset: i }); + }, + }, + { + key: "getVisibleCellRange", + value: function (e) { + var t = e.containerSize, + n = e.offset; + return (n = this._safeOffsetToOffset({ containerSize: t, offset: n })), this._cellSizeAndPositionManager.getVisibleCellRange({ containerSize: t, offset: n }); + }, + }, + { + key: "resetCell", + value: function (e) { + this._cellSizeAndPositionManager.resetCell(e); + }, + }, + { + key: "_getOffsetPercentage", + value: function (e) { + var t = e.containerSize, + n = e.offset, + r = e.totalSize; + return r <= t ? 0 : n / (r - t); + }, + }, + { + key: "_offsetToSafeOffset", + value: function (e) { + var t = e.containerSize, + n = e.offset, + r = this._cellSizeAndPositionManager.getTotalSize(), + o = this.getTotalSize(); + if (r === o) return n; + var a = this._getOffsetPercentage({ containerSize: t, offset: n, totalSize: r }); + return Math.round(a * (o - t)); + }, + }, + { + key: "_safeOffsetToOffset", + value: function (e) { + var t = e.containerSize, + n = e.offset, + r = this._cellSizeAndPositionManager.getTotalSize(), + o = this.getTotalSize(); + if (r === o) return n; + var a = this._getOffsetPercentage({ containerSize: t, offset: n, totalSize: o }); + return Math.round(a * (r - t)); + }, + }, + ]), + e + ); + })(); + function Ge(e) { + var t = e.cellSize, + n = e.cellSizeAndPositionManager, + r = e.previousCellsCount, + o = e.previousCellSize, + a = e.previousScrollToAlignment, + i = e.previousScrollToIndex, + s = e.previousSize, + c = e.scrollOffset, + l = e.scrollToAlignment, + u = e.scrollToIndex, + d = e.size, + p = e.sizeJustIncreasedFromZero, + f = e.updateScrollIndexCallback, + m = n.getCellCount(), + h = u >= 0 && u < m; + h && (d !== s || p || !o || ("number" == typeof t && t !== o) || l !== a || u !== i) ? f(u) : !h && m > 0 && (d < s || m < r) && c > n.getTotalSize() - d && f(m - 1); + } + var We = n(14130), + Qe = n.n(We), + Je = void 0, + Ye = + (Je = "undefined" != typeof window ? window : "undefined" != typeof self ? self : {}).requestAnimationFrame || + Je.webkitRequestAnimationFrame || + Je.mozRequestAnimationFrame || + Je.oRequestAnimationFrame || + Je.msRequestAnimationFrame || + function (e) { + return Je.setTimeout(e, 1e3 / 60); + }, + qe = + Je.cancelAnimationFrame || + Je.webkitCancelAnimationFrame || + Je.mozCancelAnimationFrame || + Je.oCancelAnimationFrame || + Je.msCancelAnimationFrame || + function (e) { + Je.clearTimeout(e); + }, + Xe = Ye, + Ke = qe, + $e = function (e) { + return Ke(e.id); + }, + et = function (e, t) { + var n = void 0; + Qe() + .resolve() + .then(function () { + n = Date.now(); + }); + var r = { + id: Xe(function o() { + Date.now() - n >= t ? e.call() : (r.id = Xe(o)); + }), + }; + return r; + }, + tt = "requested", + nt = (function (e) { + function t(e) { + (0, fe.Z)(this, t); + var n = (0, he.Z)(this, (t.__proto__ || pe()(t)).call(this, e)); + (n._onGridRenderedMemoizer = Ie()), + (n._onScrollMemoizer = Ie(!1)), + (n._deferredInvalidateColumnIndex = null), + (n._deferredInvalidateRowIndex = null), + (n._recomputeScrollLeftFlag = !1), + (n._recomputeScrollTopFlag = !1), + (n._horizontalScrollBarSize = 0), + (n._verticalScrollBarSize = 0), + (n._scrollbarPresenceChanged = !1), + (n._renderedColumnStartIndex = 0), + (n._renderedColumnStopIndex = 0), + (n._renderedRowStartIndex = 0), + (n._renderedRowStopIndex = 0), + (n._styleCache = {}), + (n._cellCache = {}), + (n._debounceScrollEndedCallback = function () { + (n._disablePointerEventsTimeoutId = null), n.setState({ isScrolling: !1, needToResetStyleCache: !1 }); + }), + (n._invokeOnGridRenderedHelper = function () { + var e = n.props.onSectionRendered; + n._onGridRenderedMemoizer({ + callback: e, + indices: { + columnOverscanStartIndex: n._columnStartIndex, + columnOverscanStopIndex: n._columnStopIndex, + columnStartIndex: n._renderedColumnStartIndex, + columnStopIndex: n._renderedColumnStopIndex, + rowOverscanStartIndex: n._rowStartIndex, + rowOverscanStopIndex: n._rowStopIndex, + rowStartIndex: n._renderedRowStartIndex, + rowStopIndex: n._renderedRowStopIndex, + }, + }); + }), + (n._setScrollingContainerRef = function (e) { + n._scrollingContainer = e; + }), + (n._onScroll = function (e) { + e.target === n._scrollingContainer && n.handleScrollEvent(e.target); + }); + var r = new He({ + cellCount: e.columnCount, + cellSizeGetter: function (n) { + return t._wrapSizeGetter(e.columnWidth)(n); + }, + estimatedCellSize: t._getEstimatedColumnSize(e), + }), + o = new He({ + cellCount: e.rowCount, + cellSizeGetter: function (n) { + return t._wrapSizeGetter(e.rowHeight)(n); + }, + estimatedCellSize: t._getEstimatedRowSize(e), + }); + return ( + (n.state = { + instanceProps: { + columnSizeAndPositionManager: r, + rowSizeAndPositionManager: o, + prevColumnWidth: e.columnWidth, + prevRowHeight: e.rowHeight, + prevColumnCount: e.columnCount, + prevRowCount: e.rowCount, + prevIsScrolling: !0 === e.isScrolling, + prevScrollToColumn: e.scrollToColumn, + prevScrollToRow: e.scrollToRow, + scrollbarSize: 0, + scrollbarSizeMeasured: !1, + }, + isScrolling: !1, + scrollDirectionHorizontal: 1, + scrollDirectionVertical: 1, + scrollLeft: 0, + scrollTop: 0, + scrollPositionChangeReason: null, + needToResetStyleCache: !1, + }), + e.scrollToRow > 0 && (n._initialScrollTop = n._getCalculatedScrollTop(e, n.state)), + e.scrollToColumn > 0 && (n._initialScrollLeft = n._getCalculatedScrollLeft(e, n.state)), + n + ); + } + return ( + (0, ve.Z)(t, e), + (0, me.Z)( + t, + [ + { + key: "getOffsetForCell", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = e.alignment, + n = void 0 === t ? this.props.scrollToAlignment : t, + r = e.columnIndex, + o = void 0 === r ? this.props.scrollToColumn : r, + a = e.rowIndex, + i = void 0 === a ? this.props.scrollToRow : a, + s = (0, be.Z)({}, this.props, { scrollToAlignment: n, scrollToColumn: o, scrollToRow: i }); + return { scrollLeft: this._getCalculatedScrollLeft(s), scrollTop: this._getCalculatedScrollTop(s) }; + }, + }, + { + key: "getTotalRowsHeight", + value: function () { + return this.state.instanceProps.rowSizeAndPositionManager.getTotalSize(); + }, + }, + { + key: "getTotalColumnsWidth", + value: function () { + return this.state.instanceProps.columnSizeAndPositionManager.getTotalSize(); + }, + }, + { + key: "handleScrollEvent", + value: function (e) { + var t = e.scrollLeft, + n = void 0 === t ? 0 : t, + r = e.scrollTop, + o = void 0 === r ? 0 : r; + if (!(o < 0)) { + this._debounceScrollEnded(); + var a = this.props, + i = a.autoHeight, + s = a.autoWidth, + c = a.height, + l = a.width, + u = this.state.instanceProps, + d = u.scrollbarSize, + p = u.rowSizeAndPositionManager.getTotalSize(), + f = u.columnSizeAndPositionManager.getTotalSize(), + m = Math.min(Math.max(0, f - l + d), n), + h = Math.min(Math.max(0, p - c + d), o); + if (this.state.scrollLeft !== m || this.state.scrollTop !== h) { + var v = { + isScrolling: !0, + scrollDirectionHorizontal: m !== this.state.scrollLeft ? (m > this.state.scrollLeft ? 1 : -1) : this.state.scrollDirectionHorizontal, + scrollDirectionVertical: h !== this.state.scrollTop ? (h > this.state.scrollTop ? 1 : -1) : this.state.scrollDirectionVertical, + scrollPositionChangeReason: "observed", + }; + i || (v.scrollTop = h), s || (v.scrollLeft = m), (v.needToResetStyleCache = !1), this.setState(v); + } + this._invokeOnScrollMemoizer({ scrollLeft: m, scrollTop: h, totalColumnsWidth: f, totalRowsHeight: p }); + } + }, + }, + { + key: "invalidateCellSizeAfterRender", + value: function (e) { + var t = e.columnIndex, + n = e.rowIndex; + (this._deferredInvalidateColumnIndex = "number" == typeof this._deferredInvalidateColumnIndex ? Math.min(this._deferredInvalidateColumnIndex, t) : t), + (this._deferredInvalidateRowIndex = "number" == typeof this._deferredInvalidateRowIndex ? Math.min(this._deferredInvalidateRowIndex, n) : n); + }, + }, + { + key: "measureAllCells", + value: function () { + var e = this.props, + t = e.columnCount, + n = e.rowCount, + r = this.state.instanceProps; + r.columnSizeAndPositionManager.getSizeAndPositionOfCell(t - 1), r.rowSizeAndPositionManager.getSizeAndPositionOfCell(n - 1); + }, + }, + { + key: "recomputeGridSize", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = e.columnIndex, + n = void 0 === t ? 0 : t, + r = e.rowIndex, + o = void 0 === r ? 0 : r, + a = this.props, + i = a.scrollToColumn, + s = a.scrollToRow, + c = this.state.instanceProps; + c.columnSizeAndPositionManager.resetCell(n), + c.rowSizeAndPositionManager.resetCell(o), + (this._recomputeScrollLeftFlag = i >= 0 && (1 === this.state.scrollDirectionHorizontal ? n <= i : n >= i)), + (this._recomputeScrollTopFlag = s >= 0 && (1 === this.state.scrollDirectionVertical ? o <= s : o >= s)), + (this._styleCache = {}), + (this._cellCache = {}), + this.forceUpdate(); + }, + }, + { + key: "scrollToCell", + value: function (e) { + var t = e.columnIndex, + n = e.rowIndex, + r = this.props.columnCount, + o = this.props; + r > 1 && void 0 !== t && this._updateScrollLeftForScrollToColumn((0, be.Z)({}, o, { scrollToColumn: t })), void 0 !== n && this._updateScrollTopForScrollToRow((0, be.Z)({}, o, { scrollToRow: n })); + }, + }, + { + key: "componentDidMount", + value: function () { + var e = this.props, + n = e.getScrollbarSize, + r = e.height, + o = e.scrollLeft, + a = e.scrollToColumn, + i = e.scrollTop, + s = e.scrollToRow, + c = e.width, + l = this.state.instanceProps; + if ( + ((this._initialScrollTop = 0), + (this._initialScrollLeft = 0), + this._handleInvalidatedGridSize(), + l.scrollbarSizeMeasured || + this.setState(function (e) { + var t = (0, be.Z)({}, e, { needToResetStyleCache: !1 }); + return (t.instanceProps.scrollbarSize = n()), (t.instanceProps.scrollbarSizeMeasured = !0), t; + }), + ("number" == typeof o && o >= 0) || ("number" == typeof i && i >= 0)) + ) { + var u = t._getScrollToPositionStateUpdate({ prevState: this.state, scrollLeft: o, scrollTop: i }); + u && ((u.needToResetStyleCache = !1), this.setState(u)); + } + this._scrollingContainer && + (this._scrollingContainer.scrollLeft !== this.state.scrollLeft && (this._scrollingContainer.scrollLeft = this.state.scrollLeft), + this._scrollingContainer.scrollTop !== this.state.scrollTop && (this._scrollingContainer.scrollTop = this.state.scrollTop)); + var d = r > 0 && c > 0; + a >= 0 && d && this._updateScrollLeftForScrollToColumn(), + s >= 0 && d && this._updateScrollTopForScrollToRow(), + this._invokeOnGridRenderedHelper(), + this._invokeOnScrollMemoizer({ scrollLeft: o || 0, scrollTop: i || 0, totalColumnsWidth: l.columnSizeAndPositionManager.getTotalSize(), totalRowsHeight: l.rowSizeAndPositionManager.getTotalSize() }), + this._maybeCallOnScrollbarPresenceChange(); + }, + }, + { + key: "componentDidUpdate", + value: function (e, t) { + var n = this, + r = this.props, + o = r.autoHeight, + a = r.autoWidth, + i = r.columnCount, + s = r.height, + c = r.rowCount, + l = r.scrollToAlignment, + u = r.scrollToColumn, + d = r.scrollToRow, + p = r.width, + f = this.state, + m = f.scrollLeft, + h = f.scrollPositionChangeReason, + v = f.scrollTop, + y = f.instanceProps; + this._handleInvalidatedGridSize(); + var g = (i > 0 && 0 === e.columnCount) || (c > 0 && 0 === e.rowCount); + h === tt && + (!a && m >= 0 && (m !== this._scrollingContainer.scrollLeft || g) && (this._scrollingContainer.scrollLeft = m), + !o && v >= 0 && (v !== this._scrollingContainer.scrollTop || g) && (this._scrollingContainer.scrollTop = v)); + var b = (0 === e.width || 0 === e.height) && s > 0 && p > 0; + if ( + (this._recomputeScrollLeftFlag + ? ((this._recomputeScrollLeftFlag = !1), this._updateScrollLeftForScrollToColumn(this.props)) + : Ge({ + cellSizeAndPositionManager: y.columnSizeAndPositionManager, + previousCellsCount: e.columnCount, + previousCellSize: e.columnWidth, + previousScrollToAlignment: e.scrollToAlignment, + previousScrollToIndex: e.scrollToColumn, + previousSize: e.width, + scrollOffset: m, + scrollToAlignment: l, + scrollToIndex: u, + size: p, + sizeJustIncreasedFromZero: b, + updateScrollIndexCallback: function () { + return n._updateScrollLeftForScrollToColumn(n.props); + }, + }), + this._recomputeScrollTopFlag + ? ((this._recomputeScrollTopFlag = !1), this._updateScrollTopForScrollToRow(this.props)) + : Ge({ + cellSizeAndPositionManager: y.rowSizeAndPositionManager, + previousCellsCount: e.rowCount, + previousCellSize: e.rowHeight, + previousScrollToAlignment: e.scrollToAlignment, + previousScrollToIndex: e.scrollToRow, + previousSize: e.height, + scrollOffset: v, + scrollToAlignment: l, + scrollToIndex: d, + size: s, + sizeJustIncreasedFromZero: b, + updateScrollIndexCallback: function () { + return n._updateScrollTopForScrollToRow(n.props); + }, + }), + this._invokeOnGridRenderedHelper(), + m !== t.scrollLeft || v !== t.scrollTop) + ) { + var E = y.rowSizeAndPositionManager.getTotalSize(), + D = y.columnSizeAndPositionManager.getTotalSize(); + this._invokeOnScrollMemoizer({ scrollLeft: m, scrollTop: v, totalColumnsWidth: D, totalRowsHeight: E }); + } + this._maybeCallOnScrollbarPresenceChange(); + }, + }, + { + key: "componentWillUnmount", + value: function () { + this._disablePointerEventsTimeoutId && $e(this._disablePointerEventsTimeoutId); + }, + }, + { + key: "render", + value: function () { + var e = this.props, + t = e.autoContainerWidth, + n = e.autoHeight, + r = e.autoWidth, + o = e.className, + a = e.containerProps, + i = e.containerRole, + s = e.containerStyle, + l = e.height, + u = e.id, + d = e.noContentRenderer, + p = e.role, + f = e.style, + m = e.tabIndex, + h = e.width, + v = this.state, + y = v.instanceProps, + g = v.needToResetStyleCache, + b = this._isScrolling(), + E = { boxSizing: "border-box", direction: "ltr", height: n ? "auto" : l, position: "relative", width: r ? "auto" : h, WebkitOverflowScrolling: "touch", willChange: "transform" }; + g && (this._styleCache = {}), this.state.isScrolling || this._resetStyleCache(), this._calculateChildrenToRender(this.props, this.state); + var D = y.columnSizeAndPositionManager.getTotalSize(), + C = y.rowSizeAndPositionManager.getTotalSize(), + w = C > l ? y.scrollbarSize : 0, + S = D > h ? y.scrollbarSize : 0; + (S === this._horizontalScrollBarSize && w === this._verticalScrollBarSize) || ((this._horizontalScrollBarSize = S), (this._verticalScrollBarSize = w), (this._scrollbarPresenceChanged = !0)), + (E.overflowX = D + w <= h ? "hidden" : "auto"), + (E.overflowY = C + S <= l ? "hidden" : "auto"); + var A = this._childrenToDisplay, + k = 0 === A.length && l > 0 && h > 0; + return c.createElement( + "div", + (0, be.Z)({ ref: this._setScrollingContainerRef }, a, { + "aria-label": this.props["aria-label"], + "aria-readonly": this.props["aria-readonly"], + className: ke("ReactVirtualized__Grid", o), + id: u, + onScroll: this._onScroll, + role: p, + style: (0, be.Z)({}, E, f), + tabIndex: m, + }), + A.length > 0 && + c.createElement( + "div", + { + className: "ReactVirtualized__Grid__innerScrollContainer", + role: i, + style: (0, be.Z)({ width: t ? "auto" : D, height: C, maxWidth: D, maxHeight: C, overflow: "hidden", pointerEvents: b ? "none" : "", position: "relative" }, s), + }, + A + ), + k && d() + ); + }, + }, + { + key: "_calculateChildrenToRender", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : this.props, + t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : this.state, + n = e.cellRenderer, + r = e.cellRangeRenderer, + o = e.columnCount, + a = e.deferredMeasurementCache, + i = e.height, + s = e.overscanColumnCount, + c = e.overscanIndicesGetter, + l = e.overscanRowCount, + u = e.rowCount, + d = e.width, + p = e.isScrollingOptOut, + f = t.scrollDirectionHorizontal, + m = t.scrollDirectionVertical, + h = t.instanceProps, + v = this._initialScrollTop > 0 ? this._initialScrollTop : t.scrollTop, + y = this._initialScrollLeft > 0 ? this._initialScrollLeft : t.scrollLeft, + g = this._isScrolling(e, t); + if (((this._childrenToDisplay = []), i > 0 && d > 0)) { + var b = h.columnSizeAndPositionManager.getVisibleCellRange({ containerSize: d, offset: y }), + E = h.rowSizeAndPositionManager.getVisibleCellRange({ containerSize: i, offset: v }), + D = h.columnSizeAndPositionManager.getOffsetAdjustment({ containerSize: d, offset: y }), + C = h.rowSizeAndPositionManager.getOffsetAdjustment({ containerSize: i, offset: v }); + (this._renderedColumnStartIndex = b.start), (this._renderedColumnStopIndex = b.stop), (this._renderedRowStartIndex = E.start), (this._renderedRowStopIndex = E.stop); + var w = c({ direction: "horizontal", cellCount: o, overscanCellsCount: s, scrollDirection: f, startIndex: "number" == typeof b.start ? b.start : 0, stopIndex: "number" == typeof b.stop ? b.stop : -1 }), + S = c({ direction: "vertical", cellCount: u, overscanCellsCount: l, scrollDirection: m, startIndex: "number" == typeof E.start ? E.start : 0, stopIndex: "number" == typeof E.stop ? E.stop : -1 }), + A = w.overscanStartIndex, + k = w.overscanStopIndex, + _ = S.overscanStartIndex, + T = S.overscanStopIndex; + if (a) { + if (!a.hasFixedHeight()) + for (var I = _; I <= T; I++) + if (!a.has(I, 0)) { + (A = 0), (k = o - 1); + break; + } + if (!a.hasFixedWidth()) + for (var O = A; O <= k; O++) + if (!a.has(0, O)) { + (_ = 0), (T = u - 1); + break; + } + } + (this._childrenToDisplay = r({ + cellCache: this._cellCache, + cellRenderer: n, + columnSizeAndPositionManager: h.columnSizeAndPositionManager, + columnStartIndex: A, + columnStopIndex: k, + deferredMeasurementCache: a, + horizontalOffsetAdjustment: D, + isScrolling: g, + isScrollingOptOut: p, + parent: this, + rowSizeAndPositionManager: h.rowSizeAndPositionManager, + rowStartIndex: _, + rowStopIndex: T, + scrollLeft: y, + scrollTop: v, + styleCache: this._styleCache, + verticalOffsetAdjustment: C, + visibleColumnIndices: b, + visibleRowIndices: E, + })), + (this._columnStartIndex = A), + (this._columnStopIndex = k), + (this._rowStartIndex = _), + (this._rowStopIndex = T); + } + }, + }, + { + key: "_debounceScrollEnded", + value: function () { + var e = this.props.scrollingResetTimeInterval; + this._disablePointerEventsTimeoutId && $e(this._disablePointerEventsTimeoutId), (this._disablePointerEventsTimeoutId = et(this._debounceScrollEndedCallback, e)); + }, + }, + { + key: "_handleInvalidatedGridSize", + value: function () { + if ("number" == typeof this._deferredInvalidateColumnIndex && "number" == typeof this._deferredInvalidateRowIndex) { + var e = this._deferredInvalidateColumnIndex, + t = this._deferredInvalidateRowIndex; + (this._deferredInvalidateColumnIndex = null), (this._deferredInvalidateRowIndex = null), this.recomputeGridSize({ columnIndex: e, rowIndex: t }); + } + }, + }, + { + key: "_invokeOnScrollMemoizer", + value: function (e) { + var t = this, + n = e.scrollLeft, + r = e.scrollTop, + o = e.totalColumnsWidth, + a = e.totalRowsHeight; + this._onScrollMemoizer({ + callback: function (e) { + var n = e.scrollLeft, + r = e.scrollTop, + i = t.props, + s = i.height; + (0, i.onScroll)({ clientHeight: s, clientWidth: i.width, scrollHeight: a, scrollLeft: n, scrollTop: r, scrollWidth: o }); + }, + indices: { scrollLeft: n, scrollTop: r }, + }); + }, + }, + { + key: "_isScrolling", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : this.props, + t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : this.state; + return Object.hasOwnProperty.call(e, "isScrolling") ? Boolean(e.isScrolling) : Boolean(t.isScrolling); + }, + }, + { + key: "_maybeCallOnScrollbarPresenceChange", + value: function () { + if (this._scrollbarPresenceChanged) { + var e = this.props.onScrollbarPresenceChange; + (this._scrollbarPresenceChanged = !1), e({ horizontal: this._horizontalScrollBarSize > 0, size: this.state.instanceProps.scrollbarSize, vertical: this._verticalScrollBarSize > 0 }); + } + }, + }, + { + key: "scrollToPosition", + value: function (e) { + var n = e.scrollLeft, + r = e.scrollTop, + o = t._getScrollToPositionStateUpdate({ prevState: this.state, scrollLeft: n, scrollTop: r }); + o && ((o.needToResetStyleCache = !1), this.setState(o)); + }, + }, + { + key: "_getCalculatedScrollLeft", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : this.props, + n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : this.state; + return t._getCalculatedScrollLeft(e, n); + }, + }, + { + key: "_updateScrollLeftForScrollToColumn", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : this.props, + n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : this.state, + r = t._getScrollLeftForScrollToColumnStateUpdate(e, n); + r && ((r.needToResetStyleCache = !1), this.setState(r)); + }, + }, + { + key: "_getCalculatedScrollTop", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : this.props, + n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : this.state; + return t._getCalculatedScrollTop(e, n); + }, + }, + { + key: "_resetStyleCache", + value: function () { + var e = this._styleCache, + t = this._cellCache, + n = this.props.isScrollingOptOut; + (this._cellCache = {}), (this._styleCache = {}); + for (var r = this._rowStartIndex; r <= this._rowStopIndex; r++) + for (var o = this._columnStartIndex; o <= this._columnStopIndex; o++) { + var a = r + "-" + o; + (this._styleCache[a] = e[a]), n && (this._cellCache[a] = t[a]); + } + }, + }, + { + key: "_updateScrollTopForScrollToRow", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : this.props, + n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : this.state, + r = t._getScrollTopForScrollToRowStateUpdate(e, n); + r && ((r.needToResetStyleCache = !1), this.setState(r)); + }, + }, + ], + [ + { + key: "getDerivedStateFromProps", + value: function (e, n) { + var r = {}; + (0 === e.columnCount && 0 !== n.scrollLeft) || (0 === e.rowCount && 0 !== n.scrollTop) + ? ((r.scrollLeft = 0), (r.scrollTop = 0)) + : ((e.scrollLeft !== n.scrollLeft && e.scrollToColumn < 0) || (e.scrollTop !== n.scrollTop && e.scrollToRow < 0)) && + Ue()(r, t._getScrollToPositionStateUpdate({ prevState: n, scrollLeft: e.scrollLeft, scrollTop: e.scrollTop })); + var o = n.instanceProps; + (r.needToResetStyleCache = !1), + (e.columnWidth === o.prevColumnWidth && e.rowHeight === o.prevRowHeight) || (r.needToResetStyleCache = !0), + o.columnSizeAndPositionManager.configure({ cellCount: e.columnCount, estimatedCellSize: t._getEstimatedColumnSize(e), cellSizeGetter: t._wrapSizeGetter(e.columnWidth) }), + o.rowSizeAndPositionManager.configure({ cellCount: e.rowCount, estimatedCellSize: t._getEstimatedRowSize(e), cellSizeGetter: t._wrapSizeGetter(e.rowHeight) }), + (0 !== o.prevColumnCount && 0 !== o.prevRowCount) || ((o.prevColumnCount = 0), (o.prevRowCount = 0)), + e.autoHeight && !1 === e.isScrolling && !0 === o.prevIsScrolling && Ue()(r, { isScrolling: !1 }); + var a = void 0, + i = void 0; + return ( + ze({ + cellCount: o.prevColumnCount, + cellSize: "number" == typeof o.prevColumnWidth ? o.prevColumnWidth : null, + computeMetadataCallback: function () { + return o.columnSizeAndPositionManager.resetCell(0); + }, + computeMetadataCallbackProps: e, + nextCellsCount: e.columnCount, + nextCellSize: "number" == typeof e.columnWidth ? e.columnWidth : null, + nextScrollToIndex: e.scrollToColumn, + scrollToIndex: o.prevScrollToColumn, + updateScrollOffsetForScrollToIndex: function () { + a = t._getScrollLeftForScrollToColumnStateUpdate(e, n); + }, + }), + ze({ + cellCount: o.prevRowCount, + cellSize: "number" == typeof o.prevRowHeight ? o.prevRowHeight : null, + computeMetadataCallback: function () { + return o.rowSizeAndPositionManager.resetCell(0); + }, + computeMetadataCallbackProps: e, + nextCellsCount: e.rowCount, + nextCellSize: "number" == typeof e.rowHeight ? e.rowHeight : null, + nextScrollToIndex: e.scrollToRow, + scrollToIndex: o.prevScrollToRow, + updateScrollOffsetForScrollToIndex: function () { + i = t._getScrollTopForScrollToRowStateUpdate(e, n); + }, + }), + (o.prevColumnCount = e.columnCount), + (o.prevColumnWidth = e.columnWidth), + (o.prevIsScrolling = !0 === e.isScrolling), + (o.prevRowCount = e.rowCount), + (o.prevRowHeight = e.rowHeight), + (o.prevScrollToColumn = e.scrollToColumn), + (o.prevScrollToRow = e.scrollToRow), + (o.scrollbarSize = e.getScrollbarSize()), + void 0 === o.scrollbarSize ? ((o.scrollbarSizeMeasured = !1), (o.scrollbarSize = 0)) : (o.scrollbarSizeMeasured = !0), + (r.instanceProps = o), + (0, be.Z)({}, r, a, i) + ); + }, + }, + { + key: "_getEstimatedColumnSize", + value: function (e) { + return "number" == typeof e.columnWidth ? e.columnWidth : e.estimatedColumnSize; + }, + }, + { + key: "_getEstimatedRowSize", + value: function (e) { + return "number" == typeof e.rowHeight ? e.rowHeight : e.estimatedRowSize; + }, + }, + { + key: "_getScrollToPositionStateUpdate", + value: function (e) { + var t = e.prevState, + n = e.scrollLeft, + r = e.scrollTop, + o = { scrollPositionChangeReason: tt }; + return ( + "number" == typeof n && n >= 0 && ((o.scrollDirectionHorizontal = n > t.scrollLeft ? 1 : -1), (o.scrollLeft = n)), + "number" == typeof r && r >= 0 && ((o.scrollDirectionVertical = r > t.scrollTop ? 1 : -1), (o.scrollTop = r)), + ("number" == typeof n && n >= 0 && n !== t.scrollLeft) || ("number" == typeof r && r >= 0 && r !== t.scrollTop) ? o : null + ); + }, + }, + { + key: "_wrapSizeGetter", + value: function (e) { + return "function" == typeof e + ? e + : function () { + return e; + }; + }, + }, + { + key: "_getCalculatedScrollLeft", + value: function (e, t) { + var n = e.columnCount, + r = e.height, + o = e.scrollToAlignment, + a = e.scrollToColumn, + i = e.width, + s = t.scrollLeft, + c = t.instanceProps; + if (n > 0) { + var l = n - 1, + u = a < 0 ? l : Math.min(l, a), + d = c.rowSizeAndPositionManager.getTotalSize(), + p = c.scrollbarSizeMeasured && d > r ? c.scrollbarSize : 0; + return c.columnSizeAndPositionManager.getUpdatedOffsetForIndex({ align: o, containerSize: i - p, currentOffset: s, targetIndex: u }); + } + return 0; + }, + }, + { + key: "_getScrollLeftForScrollToColumnStateUpdate", + value: function (e, n) { + var r = n.scrollLeft, + o = t._getCalculatedScrollLeft(e, n); + return "number" == typeof o && o >= 0 && r !== o ? t._getScrollToPositionStateUpdate({ prevState: n, scrollLeft: o, scrollTop: -1 }) : null; + }, + }, + { + key: "_getCalculatedScrollTop", + value: function (e, t) { + var n = e.height, + r = e.rowCount, + o = e.scrollToAlignment, + a = e.scrollToRow, + i = e.width, + s = t.scrollTop, + c = t.instanceProps; + if (r > 0) { + var l = r - 1, + u = a < 0 ? l : Math.min(l, a), + d = c.columnSizeAndPositionManager.getTotalSize(), + p = c.scrollbarSizeMeasured && d > i ? c.scrollbarSize : 0; + return c.rowSizeAndPositionManager.getUpdatedOffsetForIndex({ align: o, containerSize: n - p, currentOffset: s, targetIndex: u }); + } + return 0; + }, + }, + { + key: "_getScrollTopForScrollToRowStateUpdate", + value: function (e, n) { + var r = n.scrollTop, + o = t._getCalculatedScrollTop(e, n); + return "number" == typeof o && o >= 0 && r !== o ? t._getScrollToPositionStateUpdate({ prevState: n, scrollLeft: -1, scrollTop: o }) : null; + }, + }, + ] + ), + t + ); + })(c.PureComponent); + (nt.defaultProps = { + "aria-label": "grid", + "aria-readonly": !0, + autoContainerWidth: !1, + autoHeight: !1, + autoWidth: !1, + cellRangeRenderer: function (e) { + for ( + var t = e.cellCache, + n = e.cellRenderer, + r = e.columnSizeAndPositionManager, + o = e.columnStartIndex, + a = e.columnStopIndex, + i = e.deferredMeasurementCache, + s = e.horizontalOffsetAdjustment, + c = e.isScrolling, + l = e.isScrollingOptOut, + u = e.parent, + d = e.rowSizeAndPositionManager, + p = e.rowStartIndex, + f = e.rowStopIndex, + m = e.styleCache, + h = e.verticalOffsetAdjustment, + v = e.visibleColumnIndices, + y = e.visibleRowIndices, + g = [], + b = r.areOffsetsAdjusted() || d.areOffsetsAdjusted(), + E = !c && !b, + D = p; + D <= f; + D++ + ) + for (var C = d.getSizeAndPositionOfCell(D), w = o; w <= a; w++) { + var S = r.getSizeAndPositionOfCell(w), + A = w >= v.start && w <= v.stop && D >= y.start && D <= y.stop, + k = D + "-" + w, + _ = void 0; + E && m[k] + ? (_ = m[k]) + : i && !i.has(D, w) + ? (_ = { height: "auto", left: 0, position: "absolute", top: 0, width: "auto" }) + : ((_ = { height: C.size, left: S.offset + s, position: "absolute", top: C.offset + h, width: S.size }), (m[k] = _)); + var T = { columnIndex: w, isScrolling: c, isVisible: A, key: k, parent: u, rowIndex: D, style: _ }, + I = void 0; + (!l && !c) || s || h ? (I = n(T)) : (t[k] || (t[k] = n(T)), (I = t[k])), null != I && !1 !== I && g.push(I); + } + return g; + }, + containerRole: "rowgroup", + containerStyle: {}, + estimatedColumnSize: 100, + estimatedRowSize: 30, + getScrollbarSize: xe, + noContentRenderer: function () { + return null; + }, + onScroll: function () {}, + onScrollbarPresenceChange: function () {}, + onSectionRendered: function () {}, + overscanColumnCount: 0, + overscanIndicesGetter: function (e) { + var t = e.cellCount, + n = e.overscanCellsCount, + r = e.scrollDirection, + o = e.startIndex, + a = e.stopIndex; + return 1 === r ? { overscanStartIndex: Math.max(0, o), overscanStopIndex: Math.min(t - 1, a + n) } : { overscanStartIndex: Math.max(0, o - n), overscanStopIndex: Math.min(t - 1, a) }; + }, + overscanRowCount: 10, + role: "grid", + scrollingResetTimeInterval: 150, + scrollToAlignment: "auto", + scrollToColumn: -1, + scrollToRow: -1, + style: {}, + tabIndex: 0, + isScrollingOptOut: !1, + }), + (nt.propTypes = null), + (0, ye.polyfill)(nt); + const rt = nt; + function ot(e) { + var t = e.cellCount, + n = e.overscanCellsCount, + r = e.scrollDirection, + o = e.startIndex, + a = e.stopIndex; + return (n = Math.max(1, n)), 1 === r ? { overscanStartIndex: Math.max(0, o - 1), overscanStopIndex: Math.min(t - 1, a + n) } : { overscanStartIndex: Math.max(0, o - n), overscanStopIndex: Math.min(t - 1, a + 1) }; + } + var at = n(9903), + it = (function (e) { + function t(e, n) { + (0, fe.Z)(this, t); + var r = (0, he.Z)(this, (t.__proto__ || pe()(t)).call(this, e, n)); + return (r._loadMoreRowsMemoizer = Ie()), (r._onRowsRendered = r._onRowsRendered.bind(r)), (r._registerChild = r._registerChild.bind(r)), r; + } + return ( + (0, ve.Z)(t, e), + (0, me.Z)(t, [ + { + key: "resetLoadMoreRowsCache", + value: function (e) { + (this._loadMoreRowsMemoizer = Ie()), e && this._doStuff(this._lastRenderedStartIndex, this._lastRenderedStopIndex); + }, + }, + { + key: "render", + value: function () { + return (0, this.props.children)({ onRowsRendered: this._onRowsRendered, registerChild: this._registerChild }); + }, + }, + { + key: "_loadUnloadedRanges", + value: function (e) { + var t = this, + n = this.props.loadMoreRows; + e.forEach(function (e) { + var r = n(e); + r && + r.then(function () { + var n; + (n = { lastRenderedStartIndex: t._lastRenderedStartIndex, lastRenderedStopIndex: t._lastRenderedStopIndex, startIndex: e.startIndex, stopIndex: e.stopIndex }).startIndex > n.lastRenderedStopIndex || + n.stopIndex < n.lastRenderedStartIndex || + (t._registeredChild && + (function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0, + n = "function" == typeof e.recomputeGridSize ? e.recomputeGridSize : e.recomputeRowHeights; + n ? n.call(e, t) : e.forceUpdate(); + })(t._registeredChild, t._lastRenderedStartIndex)); + }); + }); + }, + }, + { + key: "_onRowsRendered", + value: function (e) { + var t = e.startIndex, + n = e.stopIndex; + (this._lastRenderedStartIndex = t), (this._lastRenderedStopIndex = n), this._doStuff(t, n); + }, + }, + { + key: "_doStuff", + value: function (e, t) { + var n, + r = this, + o = this.props, + a = o.isRowLoaded, + i = o.minimumBatchSize, + s = o.rowCount, + c = o.threshold, + l = (function (e) { + for (var t = e.isRowLoaded, n = e.minimumBatchSize, r = e.rowCount, o = e.stopIndex, a = [], i = null, s = null, c = e.startIndex; c <= o; c++) + t({ index: c }) ? null !== s && (a.push({ startIndex: i, stopIndex: s }), (i = s = null)) : ((s = c), null === i && (i = c)); + if (null !== s) { + for (var l = Math.min(Math.max(s, i + n - 1), r - 1), u = s + 1; u <= l && !t({ index: u }); u++) s = u; + a.push({ startIndex: i, stopIndex: s }); + } + if (a.length) + for (var d = a[0]; d.stopIndex - d.startIndex + 1 < n && d.startIndex > 0; ) { + var p = d.startIndex - 1; + if (t({ index: p })) break; + d.startIndex = p; + } + return a; + })({ isRowLoaded: a, minimumBatchSize: i, rowCount: s, startIndex: Math.max(0, e - c), stopIndex: Math.min(s - 1, t + c) }), + u = (n = []).concat.apply( + n, + (0, at.Z)( + l.map(function (e) { + return [e.startIndex, e.stopIndex]; + }) + ) + ); + this._loadMoreRowsMemoizer({ + callback: function () { + r._loadUnloadedRanges(l); + }, + indices: { squashedUnloadedRanges: u }, + }); + }, + }, + { + key: "_registerChild", + value: function (e) { + this._registeredChild = e; + }, + }, + ]), + t + ); + })(c.PureComponent); + (it.defaultProps = { minimumBatchSize: 10, rowCount: 0, threshold: 15 }), (it.propTypes = {}); + var st = n(77733), + ct = n.n(st), + lt = (function (e) { + function t() { + var e, n, r, o; + (0, fe.Z)(this, t); + for (var a = arguments.length, i = Array(a), s = 0; s < a; s++) i[s] = arguments[s]; + return ( + (n = r = (0, he.Z)(this, (e = t.__proto__ || pe()(t)).call.apply(e, [this].concat(i)))), + (r._cellRenderer = function (e) { + var t = e.parent, + n = e.rowIndex, + o = e.style, + a = e.isScrolling, + i = e.isVisible, + s = e.key, + c = r.props.rowRenderer; + return ct()(o, "width").writable && (o.width = "100%"), c({ index: n, style: o, isScrolling: a, isVisible: i, key: s, parent: t }); + }), + (r._setRef = function (e) { + r.Grid = e; + }), + (r._onScroll = function (e) { + var t = e.clientHeight, + n = e.scrollHeight, + o = e.scrollTop; + (0, r.props.onScroll)({ clientHeight: t, scrollHeight: n, scrollTop: o }); + }), + (r._onSectionRendered = function (e) { + var t = e.rowOverscanStartIndex, + n = e.rowOverscanStopIndex, + o = e.rowStartIndex, + a = e.rowStopIndex; + (0, r.props.onRowsRendered)({ overscanStartIndex: t, overscanStopIndex: n, startIndex: o, stopIndex: a }); + }), + (o = n), + (0, he.Z)(r, o) + ); + } + return ( + (0, ve.Z)(t, e), + (0, me.Z)(t, [ + { + key: "forceUpdateGrid", + value: function () { + this.Grid && this.Grid.forceUpdate(); + }, + }, + { + key: "getOffsetForRow", + value: function (e) { + var t = e.alignment, + n = e.index; + return this.Grid ? this.Grid.getOffsetForCell({ alignment: t, rowIndex: n, columnIndex: 0 }).scrollTop : 0; + }, + }, + { + key: "invalidateCellSizeAfterRender", + value: function (e) { + var t = e.columnIndex, + n = e.rowIndex; + this.Grid && this.Grid.invalidateCellSizeAfterRender({ rowIndex: n, columnIndex: t }); + }, + }, + { + key: "measureAllRows", + value: function () { + this.Grid && this.Grid.measureAllCells(); + }, + }, + { + key: "recomputeGridSize", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = e.columnIndex, + n = void 0 === t ? 0 : t, + r = e.rowIndex, + o = void 0 === r ? 0 : r; + this.Grid && this.Grid.recomputeGridSize({ rowIndex: o, columnIndex: n }); + }, + }, + { + key: "recomputeRowHeights", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : 0; + this.Grid && this.Grid.recomputeGridSize({ rowIndex: e, columnIndex: 0 }); + }, + }, + { + key: "scrollToPosition", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : 0; + this.Grid && this.Grid.scrollToPosition({ scrollTop: e }); + }, + }, + { + key: "scrollToRow", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : 0; + this.Grid && this.Grid.scrollToCell({ columnIndex: 0, rowIndex: e }); + }, + }, + { + key: "render", + value: function () { + var e = this.props, + t = e.className, + n = e.noRowsRenderer, + r = e.scrollToIndex, + o = e.width, + a = ke("ReactVirtualized__List", t); + return c.createElement( + rt, + (0, be.Z)({}, this.props, { + autoContainerWidth: !0, + cellRenderer: this._cellRenderer, + className: a, + columnWidth: o, + columnCount: 1, + noContentRenderer: n, + onScroll: this._onScroll, + onSectionRendered: this._onSectionRendered, + ref: this._setRef, + scrollToRow: r, + }) + ); + }, + }, + ]), + t + ); + })(c.PureComponent); + (lt.defaultProps = { + autoHeight: !1, + estimatedRowSize: 30, + onScroll: function () {}, + noRowsRenderer: function () { + return null; + }, + onRowsRendered: function () {}, + overscanIndicesGetter: ot, + overscanRowCount: 10, + scrollToAlignment: "auto", + scrollToIndex: -1, + style: {}, + }), + (lt.propTypes = null); + var ut = n(79988), + dt = n(12978); + const pt = function (e, t, n, r, o) { + return "function" == typeof n + ? (function (e, t, n, r, o) { + for (var a = n + 1; t <= n; ) { + var i = (t + n) >>> 1; + o(e[i], r) >= 0 ? ((a = i), (n = i - 1)) : (t = i + 1); + } + return a; + })(e, void 0 === r ? 0 : 0 | r, void 0 === o ? e.length - 1 : 0 | o, t, n) + : (function (e, t, n, r) { + for (var o = n + 1; t <= n; ) { + var a = (t + n) >>> 1; + e[a] >= r ? ((o = a), (n = a - 1)) : (t = a + 1); + } + return o; + })(e, void 0 === n ? 0 : 0 | n, void 0 === r ? e.length - 1 : 0 | r, t); + }; + function ft(e, t, n, r, o) { + (this.mid = e), (this.left = t), (this.right = n), (this.leftPoints = r), (this.rightPoints = o), (this.count = (t ? t.count : 0) + (n ? n.count : 0) + r.length); + } + var mt = ft.prototype; + function ht(e, t) { + (e.mid = t.mid), (e.left = t.left), (e.right = t.right), (e.leftPoints = t.leftPoints), (e.rightPoints = t.rightPoints), (e.count = t.count); + } + function vt(e, t) { + var n = At(t); + (e.mid = n.mid), (e.left = n.left), (e.right = n.right), (e.leftPoints = n.leftPoints), (e.rightPoints = n.rightPoints), (e.count = n.count); + } + function yt(e, t) { + var n = e.intervals([]); + n.push(t), vt(e, n); + } + function gt(e, t) { + var n = e.intervals([]), + r = n.indexOf(t); + return r < 0 ? 0 : (n.splice(r, 1), vt(e, n), 1); + } + function bt(e, t, n) { + for (var r = 0; r < e.length && e[r][0] <= t; ++r) { + var o = n(e[r]); + if (o) return o; + } + } + function Et(e, t, n) { + for (var r = e.length - 1; r >= 0 && e[r][1] >= t; --r) { + var o = n(e[r]); + if (o) return o; + } + } + function Dt(e, t) { + for (var n = 0; n < e.length; ++n) { + var r = t(e[n]); + if (r) return r; + } + } + function Ct(e, t) { + return e - t; + } + function wt(e, t) { + return e[0] - t[0] || e[1] - t[1]; + } + function St(e, t) { + return e[1] - t[1] || e[0] - t[0]; + } + function At(e) { + if (0 === e.length) return null; + for (var t = [], n = 0; n < e.length; ++n) t.push(e[n][0], e[n][1]); + t.sort(Ct); + var r = t[t.length >> 1], + o = [], + a = [], + i = []; + for (n = 0; n < e.length; ++n) { + var s = e[n]; + s[1] < r ? o.push(s) : r < s[0] ? a.push(s) : i.push(s); + } + var c = i, + l = i.slice(); + return c.sort(wt), l.sort(St), new ft(r, At(o), At(a), c, l); + } + function kt(e) { + this.root = e; + } + (mt.intervals = function (e) { + return e.push.apply(e, this.leftPoints), this.left && this.left.intervals(e), this.right && this.right.intervals(e), e; + }), + (mt.insert = function (e) { + var t = this.count - this.leftPoints.length; + if (((this.count += 1), e[1] < this.mid)) this.left ? (4 * (this.left.count + 1) > 3 * (t + 1) ? yt(this, e) : this.left.insert(e)) : (this.left = At([e])); + else if (e[0] > this.mid) this.right ? (4 * (this.right.count + 1) > 3 * (t + 1) ? yt(this, e) : this.right.insert(e)) : (this.right = At([e])); + else { + var n = pt(this.leftPoints, e, wt), + r = pt(this.rightPoints, e, St); + this.leftPoints.splice(n, 0, e), this.rightPoints.splice(r, 0, e); + } + }), + (mt.remove = function (e) { + var t = this.count - this.leftPoints; + if (e[1] < this.mid) + return this.left ? (4 * (this.right ? this.right.count : 0) > 3 * (t - 1) ? gt(this, e) : 2 === (a = this.left.remove(e)) ? ((this.left = null), (this.count -= 1), 1) : (1 === a && (this.count -= 1), a)) : 0; + if (e[0] > this.mid) + return this.right ? (4 * (this.left ? this.left.count : 0) > 3 * (t - 1) ? gt(this, e) : 2 === (a = this.right.remove(e)) ? ((this.right = null), (this.count -= 1), 1) : (1 === a && (this.count -= 1), a)) : 0; + if (1 === this.count) return this.leftPoints[0] === e ? 2 : 0; + if (1 === this.leftPoints.length && this.leftPoints[0] === e) { + if (this.left && this.right) { + for (var n = this, r = this.left; r.right; ) (n = r), (r = r.right); + if (n === this) r.right = this.right; + else { + var o = this.left, + a = this.right; + (n.count -= r.count), (n.right = r.left), (r.left = o), (r.right = a); + } + ht(this, r), (this.count = (this.left ? this.left.count : 0) + (this.right ? this.right.count : 0) + this.leftPoints.length); + } else this.left ? ht(this, this.left) : ht(this, this.right); + return 1; + } + for (o = pt(this.leftPoints, e, wt); o < this.leftPoints.length && this.leftPoints[o][0] === e[0]; ++o) + if (this.leftPoints[o] === e) + for (this.count -= 1, this.leftPoints.splice(o, 1), a = pt(this.rightPoints, e, St); a < this.rightPoints.length && this.rightPoints[a][1] === e[1]; ++a) + if (this.rightPoints[a] === e) return this.rightPoints.splice(a, 1), 1; + return 0; + }), + (mt.queryPoint = function (e, t) { + return e < this.mid ? (this.left && (n = this.left.queryPoint(e, t)) ? n : bt(this.leftPoints, e, t)) : e > this.mid ? (this.right && (n = this.right.queryPoint(e, t)) ? n : Et(this.rightPoints, e, t)) : Dt(this.leftPoints, t); + var n; + }), + (mt.queryInterval = function (e, t, n) { + var r; + return (e < this.mid && this.left && (r = this.left.queryInterval(e, t, n))) || (t > this.mid && this.right && (r = this.right.queryInterval(e, t, n))) + ? r + : t < this.mid + ? bt(this.leftPoints, t, n) + : e > this.mid + ? Et(this.rightPoints, e, n) + : Dt(this.leftPoints, n); + }); + var _t = kt.prototype; + (_t.insert = function (e) { + this.root ? this.root.insert(e) : (this.root = new ft(e[0], null, null, [e], [e])); + }), + (_t.remove = function (e) { + if (this.root) { + var t = this.root.remove(e); + return 2 === t && (this.root = null), 0 !== t; + } + return !1; + }), + (_t.queryPoint = function (e, t) { + if (this.root) return this.root.queryPoint(e, t); + }), + (_t.queryInterval = function (e, t, n) { + if (e <= t && this.root) return this.root.queryInterval(e, t, n); + }), + Object.defineProperty(_t, "count", { + get: function () { + return this.root ? this.root.count : 0; + }, + }), + Object.defineProperty(_t, "intervals", { + get: function () { + return this.root ? this.root.intervals([]) : []; + }, + }); + var Tt = (function () { + function e() { + (0, fe.Z)(this, e), (this._columnSizeMap = {}), (this._intervalTree = new kt(null)), (this._leftMap = {}); + } + return ( + (0, me.Z)(e, [ + { + key: "estimateTotalHeight", + value: function (e, t, n) { + var r = e - this.count; + return this.tallestColumnSize + Math.ceil(r / t) * n; + }, + }, + { + key: "range", + value: function (e, t, n) { + var r = this; + this._intervalTree.queryInterval(e, e + t, function (e) { + var t = (0, dt.Z)(e, 3), + o = t[0], + a = (t[1], t[2]); + return n(a, r._leftMap[a], o); + }); + }, + }, + { + key: "setPosition", + value: function (e, t, n, r) { + this._intervalTree.insert([n, n + r, e]), (this._leftMap[e] = t); + var o = this._columnSizeMap, + a = o[t]; + o[t] = void 0 === a ? n + r : Math.max(a, n + r); + }, + }, + { + key: "count", + get: function () { + return this._intervalTree.count; + }, + }, + { + key: "shortestColumnSize", + get: function () { + var e = this._columnSizeMap, + t = 0; + for (var n in e) { + var r = e[n]; + t = 0 === t ? r : Math.min(t, r); + } + return t; + }, + }, + { + key: "tallestColumnSize", + get: function () { + var e = this._columnSizeMap, + t = 0; + for (var n in e) { + var r = e[n]; + t = Math.max(t, r); + } + return t; + }, + }, + ]), + e + ); + })(); + const It = Tt; + var Ot = (function (e) { + function t() { + var e, n, r, o; + (0, fe.Z)(this, t); + for (var a = arguments.length, i = Array(a), s = 0; s < a; s++) i[s] = arguments[s]; + return ( + (n = r = (0, he.Z)(this, (e = t.__proto__ || pe()(t)).call.apply(e, [this].concat(i)))), + (r.state = { isScrolling: !1, scrollTop: 0 }), + (r._invalidateOnUpdateStartIndex = null), + (r._invalidateOnUpdateStopIndex = null), + (r._positionCache = new It()), + (r._startIndex = null), + (r._startIndexMemoized = null), + (r._stopIndex = null), + (r._stopIndexMemoized = null), + (r._debounceResetIsScrollingCallback = function () { + r.setState({ isScrolling: !1 }); + }), + (r._setScrollingContainerRef = function (e) { + r._scrollingContainer = e; + }), + (r._onScroll = function (e) { + var t = r.props.height, + n = e.currentTarget.scrollTop, + o = Math.min(Math.max(0, r._getEstimatedTotalHeight() - t), n); + n === o && (r._debounceResetIsScrolling(), r.state.scrollTop !== o && r.setState({ isScrolling: !0, scrollTop: o })); + }), + (o = n), + (0, he.Z)(r, o) + ); + } + return ( + (0, ve.Z)(t, e), + (0, me.Z)( + t, + [ + { + key: "clearCellPositions", + value: function () { + (this._positionCache = new It()), this.forceUpdate(); + }, + }, + { + key: "invalidateCellSizeAfterRender", + value: function (e) { + var t = e.rowIndex; + null === this._invalidateOnUpdateStartIndex + ? ((this._invalidateOnUpdateStartIndex = t), (this._invalidateOnUpdateStopIndex = t)) + : ((this._invalidateOnUpdateStartIndex = Math.min(this._invalidateOnUpdateStartIndex, t)), (this._invalidateOnUpdateStopIndex = Math.max(this._invalidateOnUpdateStopIndex, t))); + }, + }, + { + key: "recomputeCellPositions", + value: function () { + var e = this._positionCache.count - 1; + (this._positionCache = new It()), this._populatePositionCache(0, e), this.forceUpdate(); + }, + }, + { + key: "componentDidMount", + value: function () { + this._checkInvalidateOnUpdate(), this._invokeOnScrollCallback(), this._invokeOnCellsRenderedCallback(); + }, + }, + { + key: "componentDidUpdate", + value: function (e, t) { + this._checkInvalidateOnUpdate(), this._invokeOnScrollCallback(), this._invokeOnCellsRenderedCallback(), this.props.scrollTop !== e.scrollTop && this._debounceResetIsScrolling(); + }, + }, + { + key: "componentWillUnmount", + value: function () { + this._debounceResetIsScrollingId && $e(this._debounceResetIsScrollingId); + }, + }, + { + key: "render", + value: function () { + var e = this, + t = this.props, + n = t.autoHeight, + r = t.cellCount, + o = t.cellMeasurerCache, + a = t.cellRenderer, + i = t.className, + s = t.height, + l = t.id, + u = t.keyMapper, + d = t.overscanByPixels, + p = t.role, + f = t.style, + m = t.tabIndex, + h = t.width, + v = t.rowDirection, + y = this.state, + g = y.isScrolling, + b = y.scrollTop, + E = [], + D = this._getEstimatedTotalHeight(), + C = this._positionCache.shortestColumnSize, + w = this._positionCache.count, + S = 0, + A = void 0; + if ( + (this._positionCache.range(Math.max(0, b - d), s + 2 * d, function (t, n, r) { + var i; + void 0 === A ? ((S = t), (A = t)) : ((S = Math.min(S, t)), (A = Math.max(A, t))), + E.push( + a({ + index: t, + isScrolling: g, + key: u(t), + parent: e, + style: ((i = { height: o.getHeight(t) }), (0, ut.Z)(i, "ltr" === v ? "left" : "right", n), (0, ut.Z)(i, "position", "absolute"), (0, ut.Z)(i, "top", r), (0, ut.Z)(i, "width", o.getWidth(t)), i), + }) + ); + }), + C < b + s + d && w < r) + ) + for (var k = Math.min(r - w, Math.ceil((((b + s + d - C) / o.defaultHeight) * h) / o.defaultWidth)), _ = w; _ < w + k; _++) + (A = _), E.push(a({ index: _, isScrolling: g, key: u(_), parent: this, style: { width: o.getWidth(_) } })); + return ( + (this._startIndex = S), + (this._stopIndex = A), + c.createElement( + "div", + { + ref: this._setScrollingContainerRef, + "aria-label": this.props["aria-label"], + className: ke("ReactVirtualized__Masonry", i), + id: l, + onScroll: this._onScroll, + role: p, + style: (0, be.Z)( + { + boxSizing: "border-box", + direction: "ltr", + height: n ? "auto" : s, + overflowX: "hidden", + overflowY: D < s ? "hidden" : "auto", + position: "relative", + width: h, + WebkitOverflowScrolling: "touch", + willChange: "transform", + }, + f + ), + tabIndex: m, + }, + c.createElement( + "div", + { className: "ReactVirtualized__Masonry__innerScrollContainer", style: { width: "100%", height: D, maxWidth: "100%", maxHeight: D, overflow: "hidden", pointerEvents: g ? "none" : "", position: "relative" } }, + E + ) + ) + ); + }, + }, + { + key: "_checkInvalidateOnUpdate", + value: function () { + if ("number" == typeof this._invalidateOnUpdateStartIndex) { + var e = this._invalidateOnUpdateStartIndex, + t = this._invalidateOnUpdateStopIndex; + (this._invalidateOnUpdateStartIndex = null), (this._invalidateOnUpdateStopIndex = null), this._populatePositionCache(e, t), this.forceUpdate(); + } + }, + }, + { + key: "_debounceResetIsScrolling", + value: function () { + var e = this.props.scrollingResetTimeInterval; + this._debounceResetIsScrollingId && $e(this._debounceResetIsScrollingId), (this._debounceResetIsScrollingId = et(this._debounceResetIsScrollingCallback, e)); + }, + }, + { + key: "_getEstimatedTotalHeight", + value: function () { + var e = this.props, + t = e.cellCount, + n = e.cellMeasurerCache, + r = e.width, + o = Math.max(1, Math.floor(r / n.defaultWidth)); + return this._positionCache.estimateTotalHeight(t, o, n.defaultHeight); + }, + }, + { + key: "_invokeOnScrollCallback", + value: function () { + var e = this.props, + t = e.height, + n = e.onScroll, + r = this.state.scrollTop; + this._onScrollMemoized !== r && (n({ clientHeight: t, scrollHeight: this._getEstimatedTotalHeight(), scrollTop: r }), (this._onScrollMemoized = r)); + }, + }, + { + key: "_invokeOnCellsRenderedCallback", + value: function () { + (this._startIndexMemoized === this._startIndex && this._stopIndexMemoized === this._stopIndex) || + ((0, this.props.onCellsRendered)({ startIndex: this._startIndex, stopIndex: this._stopIndex }), (this._startIndexMemoized = this._startIndex), (this._stopIndexMemoized = this._stopIndex)); + }, + }, + { + key: "_populatePositionCache", + value: function (e, t) { + for (var n = this.props, r = n.cellMeasurerCache, o = n.cellPositioner, a = e; a <= t; a++) { + var i = o(a), + s = i.left, + c = i.top; + this._positionCache.setPosition(a, s, c, r.getHeight(a)); + } + }, + }, + ], + [ + { + key: "getDerivedStateFromProps", + value: function (e, t) { + return void 0 !== e.scrollTop && t.scrollTop !== e.scrollTop ? { isScrolling: !0, scrollTop: e.scrollTop } : null; + }, + }, + ] + ), + t + ); + })(c.PureComponent); + function Ft() {} + (Ot.defaultProps = { + autoHeight: !1, + keyMapper: function (e) { + return e; + }, + onCellsRendered: Ft, + onScroll: Ft, + overscanByPixels: 20, + role: "grid", + scrollingResetTimeInterval: 150, + style: {}, + tabIndex: 0, + rowDirection: "ltr", + }), + (Ot.propTypes = null), + (0, ye.polyfill)(Ot); + const xt = (function () { + function e() { + var t = this, + n = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}; + (0, fe.Z)(this, e), + (this.columnWidth = function (e) { + var n = e.index; + t._cellMeasurerCache.columnWidth({ index: n + t._columnIndexOffset }); + }), + (this.rowHeight = function (e) { + var n = e.index; + t._cellMeasurerCache.rowHeight({ index: n + t._rowIndexOffset }); + }); + var r = n.cellMeasurerCache, + o = n.columnIndexOffset, + a = void 0 === o ? 0 : o, + i = n.rowIndexOffset, + s = void 0 === i ? 0 : i; + (this._cellMeasurerCache = r), (this._columnIndexOffset = a), (this._rowIndexOffset = s); + } + return ( + (0, me.Z)(e, [ + { + key: "clear", + value: function (e, t) { + this._cellMeasurerCache.clear(e + this._rowIndexOffset, t + this._columnIndexOffset); + }, + }, + { + key: "clearAll", + value: function () { + this._cellMeasurerCache.clearAll(); + }, + }, + { + key: "hasFixedHeight", + value: function () { + return this._cellMeasurerCache.hasFixedHeight(); + }, + }, + { + key: "hasFixedWidth", + value: function () { + return this._cellMeasurerCache.hasFixedWidth(); + }, + }, + { + key: "getHeight", + value: function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0; + return this._cellMeasurerCache.getHeight(e + this._rowIndexOffset, t + this._columnIndexOffset); + }, + }, + { + key: "getWidth", + value: function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0; + return this._cellMeasurerCache.getWidth(e + this._rowIndexOffset, t + this._columnIndexOffset); + }, + }, + { + key: "has", + value: function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0; + return this._cellMeasurerCache.has(e + this._rowIndexOffset, t + this._columnIndexOffset); + }, + }, + { + key: "set", + value: function (e, t, n, r) { + this._cellMeasurerCache.set(e + this._rowIndexOffset, t + this._columnIndexOffset, n, r); + }, + }, + { + key: "defaultHeight", + get: function () { + return this._cellMeasurerCache.defaultHeight; + }, + }, + { + key: "defaultWidth", + get: function () { + return this._cellMeasurerCache.defaultWidth; + }, + }, + ]), + e + ); + })(); + var Nt = (function (e) { + function t(e, n) { + (0, fe.Z)(this, t); + var r = (0, he.Z)(this, (t.__proto__ || pe()(t)).call(this, e, n)); + Rt.call(r); + var o = e.deferredMeasurementCache, + a = e.fixedColumnCount, + i = e.fixedRowCount; + return ( + r._maybeCalculateCachedStyles(!0), + o && + ((r._deferredMeasurementCacheBottomLeftGrid = i > 0 ? new xt({ cellMeasurerCache: o, columnIndexOffset: 0, rowIndexOffset: i }) : o), + (r._deferredMeasurementCacheBottomRightGrid = a > 0 || i > 0 ? new xt({ cellMeasurerCache: o, columnIndexOffset: a, rowIndexOffset: i }) : o), + (r._deferredMeasurementCacheTopRightGrid = a > 0 ? new xt({ cellMeasurerCache: o, columnIndexOffset: a, rowIndexOffset: 0 }) : o)), + r + ); + } + return ( + (0, ve.Z)(t, e), + (0, me.Z)( + t, + [ + { + key: "forceUpdateGrids", + value: function () { + this._bottomLeftGrid && this._bottomLeftGrid.forceUpdate(), + this._bottomRightGrid && this._bottomRightGrid.forceUpdate(), + this._topLeftGrid && this._topLeftGrid.forceUpdate(), + this._topRightGrid && this._topRightGrid.forceUpdate(); + }, + }, + { + key: "invalidateCellSizeAfterRender", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = e.columnIndex, + n = void 0 === t ? 0 : t, + r = e.rowIndex, + o = void 0 === r ? 0 : r; + (this._deferredInvalidateColumnIndex = "number" == typeof this._deferredInvalidateColumnIndex ? Math.min(this._deferredInvalidateColumnIndex, n) : n), + (this._deferredInvalidateRowIndex = "number" == typeof this._deferredInvalidateRowIndex ? Math.min(this._deferredInvalidateRowIndex, o) : o); + }, + }, + { + key: "measureAllCells", + value: function () { + this._bottomLeftGrid && this._bottomLeftGrid.measureAllCells(), + this._bottomRightGrid && this._bottomRightGrid.measureAllCells(), + this._topLeftGrid && this._topLeftGrid.measureAllCells(), + this._topRightGrid && this._topRightGrid.measureAllCells(); + }, + }, + { + key: "recomputeGridSize", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = e.columnIndex, + n = void 0 === t ? 0 : t, + r = e.rowIndex, + o = void 0 === r ? 0 : r, + a = this.props, + i = a.fixedColumnCount, + s = a.fixedRowCount, + c = Math.max(0, n - i), + l = Math.max(0, o - s); + this._bottomLeftGrid && this._bottomLeftGrid.recomputeGridSize({ columnIndex: n, rowIndex: l }), + this._bottomRightGrid && this._bottomRightGrid.recomputeGridSize({ columnIndex: c, rowIndex: l }), + this._topLeftGrid && this._topLeftGrid.recomputeGridSize({ columnIndex: n, rowIndex: o }), + this._topRightGrid && this._topRightGrid.recomputeGridSize({ columnIndex: c, rowIndex: o }), + (this._leftGridWidth = null), + (this._topGridHeight = null), + this._maybeCalculateCachedStyles(!0); + }, + }, + { + key: "componentDidMount", + value: function () { + var e = this.props, + t = e.scrollLeft, + n = e.scrollTop; + if (t > 0 || n > 0) { + var r = {}; + t > 0 && (r.scrollLeft = t), n > 0 && (r.scrollTop = n), this.setState(r); + } + this._handleInvalidatedGridSize(); + }, + }, + { + key: "componentDidUpdate", + value: function () { + this._handleInvalidatedGridSize(); + }, + }, + { + key: "render", + value: function () { + var e = this.props, + t = e.onScroll, + n = e.onSectionRendered, + r = (e.onScrollbarPresenceChange, e.scrollLeft, e.scrollToColumn), + o = (e.scrollTop, e.scrollToRow), + a = (0, Se.Z)(e, ["onScroll", "onSectionRendered", "onScrollbarPresenceChange", "scrollLeft", "scrollToColumn", "scrollTop", "scrollToRow"]); + if ((this._prepareForRender(), 0 === this.props.width || 0 === this.props.height)) return null; + var i = this.state, + s = i.scrollLeft, + l = i.scrollTop; + return c.createElement( + "div", + { style: this._containerOuterStyle }, + c.createElement("div", { style: this._containerTopStyle }, this._renderTopLeftGrid(a), this._renderTopRightGrid((0, be.Z)({}, a, { onScroll: t, scrollLeft: s }))), + c.createElement( + "div", + { style: this._containerBottomStyle }, + this._renderBottomLeftGrid((0, be.Z)({}, a, { onScroll: t, scrollTop: l })), + this._renderBottomRightGrid((0, be.Z)({}, a, { onScroll: t, onSectionRendered: n, scrollLeft: s, scrollToColumn: r, scrollToRow: o, scrollTop: l })) + ) + ); + }, + }, + { + key: "_getBottomGridHeight", + value: function (e) { + return e.height - this._getTopGridHeight(e); + }, + }, + { + key: "_getLeftGridWidth", + value: function (e) { + var t = e.fixedColumnCount, + n = e.columnWidth; + if (null == this._leftGridWidth) + if ("function" == typeof n) { + for (var r = 0, o = 0; o < t; o++) r += n({ index: o }); + this._leftGridWidth = r; + } else this._leftGridWidth = n * t; + return this._leftGridWidth; + }, + }, + { + key: "_getRightGridWidth", + value: function (e) { + return e.width - this._getLeftGridWidth(e); + }, + }, + { + key: "_getTopGridHeight", + value: function (e) { + var t = e.fixedRowCount, + n = e.rowHeight; + if (null == this._topGridHeight) + if ("function" == typeof n) { + for (var r = 0, o = 0; o < t; o++) r += n({ index: o }); + this._topGridHeight = r; + } else this._topGridHeight = n * t; + return this._topGridHeight; + }, + }, + { + key: "_handleInvalidatedGridSize", + value: function () { + if ("number" == typeof this._deferredInvalidateColumnIndex) { + var e = this._deferredInvalidateColumnIndex, + t = this._deferredInvalidateRowIndex; + (this._deferredInvalidateColumnIndex = null), (this._deferredInvalidateRowIndex = null), this.recomputeGridSize({ columnIndex: e, rowIndex: t }), this.forceUpdate(); + } + }, + }, + { + key: "_maybeCalculateCachedStyles", + value: function (e) { + var t = this.props, + n = t.columnWidth, + r = t.enableFixedColumnScroll, + o = t.enableFixedRowScroll, + a = t.height, + i = t.fixedColumnCount, + s = t.fixedRowCount, + c = t.rowHeight, + l = t.style, + u = t.styleBottomLeftGrid, + d = t.styleBottomRightGrid, + p = t.styleTopLeftGrid, + f = t.styleTopRightGrid, + m = t.width, + h = e || a !== this._lastRenderedHeight || m !== this._lastRenderedWidth, + v = e || n !== this._lastRenderedColumnWidth || i !== this._lastRenderedFixedColumnCount, + y = e || s !== this._lastRenderedFixedRowCount || c !== this._lastRenderedRowHeight; + (e || h || l !== this._lastRenderedStyle) && (this._containerOuterStyle = (0, be.Z)({ height: a, overflow: "visible", width: m }, l)), + (e || h || y) && + ((this._containerTopStyle = { height: this._getTopGridHeight(this.props), position: "relative", width: m }), + (this._containerBottomStyle = { height: a - this._getTopGridHeight(this.props), overflow: "visible", position: "relative", width: m })), + (e || u !== this._lastRenderedStyleBottomLeftGrid) && (this._bottomLeftGridStyle = (0, be.Z)({ left: 0, overflowX: "hidden", overflowY: r ? "auto" : "hidden", position: "absolute" }, u)), + (e || v || d !== this._lastRenderedStyleBottomRightGrid) && (this._bottomRightGridStyle = (0, be.Z)({ left: this._getLeftGridWidth(this.props), position: "absolute" }, d)), + (e || p !== this._lastRenderedStyleTopLeftGrid) && (this._topLeftGridStyle = (0, be.Z)({ left: 0, overflowX: "hidden", overflowY: "hidden", position: "absolute", top: 0 }, p)), + (e || v || f !== this._lastRenderedStyleTopRightGrid) && + (this._topRightGridStyle = (0, be.Z)({ left: this._getLeftGridWidth(this.props), overflowX: o ? "auto" : "hidden", overflowY: "hidden", position: "absolute", top: 0 }, f)), + (this._lastRenderedColumnWidth = n), + (this._lastRenderedFixedColumnCount = i), + (this._lastRenderedFixedRowCount = s), + (this._lastRenderedHeight = a), + (this._lastRenderedRowHeight = c), + (this._lastRenderedStyle = l), + (this._lastRenderedStyleBottomLeftGrid = u), + (this._lastRenderedStyleBottomRightGrid = d), + (this._lastRenderedStyleTopLeftGrid = p), + (this._lastRenderedStyleTopRightGrid = f), + (this._lastRenderedWidth = m); + }, + }, + { + key: "_prepareForRender", + value: function () { + (this._lastRenderedColumnWidth === this.props.columnWidth && this._lastRenderedFixedColumnCount === this.props.fixedColumnCount) || (this._leftGridWidth = null), + (this._lastRenderedFixedRowCount === this.props.fixedRowCount && this._lastRenderedRowHeight === this.props.rowHeight) || (this._topGridHeight = null), + this._maybeCalculateCachedStyles(), + (this._lastRenderedColumnWidth = this.props.columnWidth), + (this._lastRenderedFixedColumnCount = this.props.fixedColumnCount), + (this._lastRenderedFixedRowCount = this.props.fixedRowCount), + (this._lastRenderedRowHeight = this.props.rowHeight); + }, + }, + { + key: "_renderBottomLeftGrid", + value: function (e) { + var t = e.enableFixedColumnScroll, + n = e.fixedColumnCount, + r = e.fixedRowCount, + o = e.rowCount, + a = e.hideBottomLeftGridScrollbar, + i = this.state.showVerticalScrollbar; + if (!n) return null; + var s = i ? 1 : 0, + l = this._getBottomGridHeight(e), + u = this._getLeftGridWidth(e), + d = this.state.showVerticalScrollbar ? this.state.scrollbarSize : 0, + p = a ? u + d : u, + f = c.createElement( + rt, + (0, be.Z)({}, e, { + cellRenderer: this._cellRendererBottomLeftGrid, + className: this.props.classNameBottomLeftGrid, + columnCount: n, + deferredMeasurementCache: this._deferredMeasurementCacheBottomLeftGrid, + height: l, + onScroll: t ? this._onScrollTop : void 0, + ref: this._bottomLeftGridRef, + rowCount: Math.max(0, o - r) + s, + rowHeight: this._rowHeightBottomGrid, + style: this._bottomLeftGridStyle, + tabIndex: null, + width: p, + }) + ); + return a ? c.createElement("div", { className: "BottomLeftGrid_ScrollWrapper", style: (0, be.Z)({}, this._bottomLeftGridStyle, { height: l, width: u, overflowY: "hidden" }) }, f) : f; + }, + }, + { + key: "_renderBottomRightGrid", + value: function (e) { + var t = e.columnCount, + n = e.fixedColumnCount, + r = e.fixedRowCount, + o = e.rowCount, + a = e.scrollToColumn, + i = e.scrollToRow; + return c.createElement( + rt, + (0, be.Z)({}, e, { + cellRenderer: this._cellRendererBottomRightGrid, + className: this.props.classNameBottomRightGrid, + columnCount: Math.max(0, t - n), + columnWidth: this._columnWidthRightGrid, + deferredMeasurementCache: this._deferredMeasurementCacheBottomRightGrid, + height: this._getBottomGridHeight(e), + onScroll: this._onScroll, + onScrollbarPresenceChange: this._onScrollbarPresenceChange, + ref: this._bottomRightGridRef, + rowCount: Math.max(0, o - r), + rowHeight: this._rowHeightBottomGrid, + scrollToColumn: a - n, + scrollToRow: i - r, + style: this._bottomRightGridStyle, + width: this._getRightGridWidth(e), + }) + ); + }, + }, + { + key: "_renderTopLeftGrid", + value: function (e) { + var t = e.fixedColumnCount, + n = e.fixedRowCount; + return t && n + ? c.createElement( + rt, + (0, be.Z)({}, e, { + className: this.props.classNameTopLeftGrid, + columnCount: t, + height: this._getTopGridHeight(e), + ref: this._topLeftGridRef, + rowCount: n, + style: this._topLeftGridStyle, + tabIndex: null, + width: this._getLeftGridWidth(e), + }) + ) + : null; + }, + }, + { + key: "_renderTopRightGrid", + value: function (e) { + var t = e.columnCount, + n = e.enableFixedRowScroll, + r = e.fixedColumnCount, + o = e.fixedRowCount, + a = e.scrollLeft, + i = e.hideTopRightGridScrollbar, + s = this.state, + l = s.showHorizontalScrollbar, + u = s.scrollbarSize; + if (!o) return null; + var d = l ? 1 : 0, + p = this._getTopGridHeight(e), + f = this._getRightGridWidth(e), + m = l ? u : 0, + h = p, + v = this._topRightGridStyle; + i && ((h = p + m), (v = (0, be.Z)({}, this._topRightGridStyle, { left: 0 }))); + var y = c.createElement( + rt, + (0, be.Z)({}, e, { + cellRenderer: this._cellRendererTopRightGrid, + className: this.props.classNameTopRightGrid, + columnCount: Math.max(0, t - r) + d, + columnWidth: this._columnWidthRightGrid, + deferredMeasurementCache: this._deferredMeasurementCacheTopRightGrid, + height: h, + onScroll: n ? this._onScrollLeft : void 0, + ref: this._topRightGridRef, + rowCount: o, + scrollLeft: a, + style: v, + tabIndex: null, + width: f, + }) + ); + return i ? c.createElement("div", { className: "TopRightGrid_ScrollWrapper", style: (0, be.Z)({}, this._topRightGridStyle, { height: p, width: f, overflowX: "hidden" }) }, y) : y; + }, + }, + ], + [ + { + key: "getDerivedStateFromProps", + value: function (e, t) { + return e.scrollLeft !== t.scrollLeft || e.scrollTop !== t.scrollTop + ? { scrollLeft: null != e.scrollLeft && e.scrollLeft >= 0 ? e.scrollLeft : t.scrollLeft, scrollTop: null != e.scrollTop && e.scrollTop >= 0 ? e.scrollTop : t.scrollTop } + : null; + }, + }, + ] + ), + t + ); + })(c.PureComponent); + Nt.defaultProps = { + classNameBottomLeftGrid: "", + classNameBottomRightGrid: "", + classNameTopLeftGrid: "", + classNameTopRightGrid: "", + enableFixedColumnScroll: !1, + enableFixedRowScroll: !1, + fixedColumnCount: 0, + fixedRowCount: 0, + scrollToColumn: -1, + scrollToRow: -1, + style: {}, + styleBottomLeftGrid: {}, + styleBottomRightGrid: {}, + styleTopLeftGrid: {}, + styleTopRightGrid: {}, + hideTopRightGridScrollbar: !1, + hideBottomLeftGridScrollbar: !1, + }; + var Rt = function () { + var e = this; + (this.state = { scrollLeft: 0, scrollTop: 0, scrollbarSize: 0, showHorizontalScrollbar: !1, showVerticalScrollbar: !1 }), + (this._deferredInvalidateColumnIndex = null), + (this._deferredInvalidateRowIndex = null), + (this._bottomLeftGridRef = function (t) { + e._bottomLeftGrid = t; + }), + (this._bottomRightGridRef = function (t) { + e._bottomRightGrid = t; + }), + (this._cellRendererBottomLeftGrid = function (t) { + var n = t.rowIndex, + r = (0, Se.Z)(t, ["rowIndex"]), + o = e.props, + a = o.cellRenderer, + i = o.fixedRowCount; + return n === o.rowCount - i ? c.createElement("div", { key: r.key, style: (0, be.Z)({}, r.style, { height: 20 }) }) : a((0, be.Z)({}, r, { parent: e, rowIndex: n + i })); + }), + (this._cellRendererBottomRightGrid = function (t) { + var n = t.columnIndex, + r = t.rowIndex, + o = (0, Se.Z)(t, ["columnIndex", "rowIndex"]), + a = e.props, + i = a.cellRenderer, + s = a.fixedColumnCount, + c = a.fixedRowCount; + return i((0, be.Z)({}, o, { columnIndex: n + s, parent: e, rowIndex: r + c })); + }), + (this._cellRendererTopRightGrid = function (t) { + var n = t.columnIndex, + r = (0, Se.Z)(t, ["columnIndex"]), + o = e.props, + a = o.cellRenderer, + i = o.columnCount, + s = o.fixedColumnCount; + return n === i - s ? c.createElement("div", { key: r.key, style: (0, be.Z)({}, r.style, { width: 20 }) }) : a((0, be.Z)({}, r, { columnIndex: n + s, parent: e })); + }), + (this._columnWidthRightGrid = function (t) { + var n = t.index, + r = e.props, + o = r.columnCount, + a = r.fixedColumnCount, + i = r.columnWidth, + s = e.state, + c = s.scrollbarSize; + return s.showHorizontalScrollbar && n === o - a ? c : "function" == typeof i ? i({ index: n + a }) : i; + }), + (this._onScroll = function (t) { + var n = t.scrollLeft, + r = t.scrollTop; + e.setState({ scrollLeft: n, scrollTop: r }); + var o = e.props.onScroll; + o && o(t); + }), + (this._onScrollbarPresenceChange = function (t) { + var n = t.horizontal, + r = t.size, + o = t.vertical, + a = e.state, + i = a.showHorizontalScrollbar, + s = a.showVerticalScrollbar; + if (n !== i || o !== s) { + e.setState({ scrollbarSize: r, showHorizontalScrollbar: n, showVerticalScrollbar: o }); + var c = e.props.onScrollbarPresenceChange; + "function" == typeof c && c({ horizontal: n, size: r, vertical: o }); + } + }), + (this._onScrollLeft = function (t) { + var n = t.scrollLeft; + e._onScroll({ scrollLeft: n, scrollTop: e.state.scrollTop }); + }), + (this._onScrollTop = function (t) { + var n = t.scrollTop; + e._onScroll({ scrollTop: n, scrollLeft: e.state.scrollLeft }); + }), + (this._rowHeightBottomGrid = function (t) { + var n = t.index, + r = e.props, + o = r.fixedRowCount, + a = r.rowCount, + i = r.rowHeight, + s = e.state, + c = s.scrollbarSize; + return s.showVerticalScrollbar && n === a - o ? c : "function" == typeof i ? i({ index: n + o }) : i; + }), + (this._topLeftGridRef = function (t) { + e._topLeftGrid = t; + }), + (this._topRightGridRef = function (t) { + e._topRightGrid = t; + }); + }; + function Lt(e) { + var t = e.className, + n = e.columns, + r = e.style; + return c.createElement("div", { className: t, role: "row", style: r }, n); + } + (Nt.propTypes = {}), + (0, ye.polyfill)(Nt), + ((function (e) { + function t(e, n) { + (0, fe.Z)(this, t); + var r = (0, he.Z)(this, (t.__proto__ || pe()(t)).call(this, e, n)); + return (r.state = { clientHeight: 0, clientWidth: 0, scrollHeight: 0, scrollLeft: 0, scrollTop: 0, scrollWidth: 0 }), (r._onScroll = r._onScroll.bind(r)), r; + } + return ( + (0, ve.Z)(t, e), + (0, me.Z)(t, [ + { + key: "render", + value: function () { + var e = this.props.children, + t = this.state, + n = t.clientHeight, + r = t.clientWidth, + o = t.scrollHeight, + a = t.scrollLeft, + i = t.scrollTop, + s = t.scrollWidth; + return e({ clientHeight: n, clientWidth: r, onScroll: this._onScroll, scrollHeight: o, scrollLeft: a, scrollTop: i, scrollWidth: s }); + }, + }, + { + key: "_onScroll", + value: function (e) { + var t = e.clientHeight, + n = e.clientWidth, + r = e.scrollHeight, + o = e.scrollLeft, + a = e.scrollTop, + i = e.scrollWidth; + this.setState({ clientHeight: t, clientWidth: n, scrollHeight: r, scrollLeft: o, scrollTop: a, scrollWidth: i }); + }, + }, + ]), + t + ); + })(c.PureComponent).propTypes = {}), + (Lt.propTypes = null); + const Mt = { ASC: "ASC", DESC: "DESC" }; + function Pt(e) { + var t = e.sortDirection, + n = ke("ReactVirtualized__Table__sortableHeaderIcon", { "ReactVirtualized__Table__sortableHeaderIcon--ASC": t === Mt.ASC, "ReactVirtualized__Table__sortableHeaderIcon--DESC": t === Mt.DESC }); + return c.createElement( + "svg", + { className: n, width: 18, height: 18, viewBox: "0 0 24 24" }, + t === Mt.ASC ? c.createElement("path", { d: "M7 14l5-5 5 5z" }) : c.createElement("path", { d: "M7 10l5 5 5-5z" }), + c.createElement("path", { d: "M0 0h24v24H0z", fill: "none" }) + ); + } + function jt(e) { + var t = e.dataKey, + n = e.label, + r = e.sortBy, + o = e.sortDirection, + a = r === t, + i = [c.createElement("span", { className: "ReactVirtualized__Table__headerTruncatedText", key: "label", title: "string" == typeof n ? n : null }, n)]; + return a && i.push(c.createElement(Pt, { key: "SortIndicator", sortDirection: o })), i; + } + function Bt(e) { + var t = e.className, + n = e.columns, + r = e.index, + o = e.key, + a = e.onRowClick, + i = e.onRowDoubleClick, + s = e.onRowMouseOut, + l = e.onRowMouseOver, + u = e.onRowRightClick, + d = e.rowData, + p = e.style, + f = { "aria-rowindex": r + 1 }; + return ( + (a || i || s || l || u) && + ((f["aria-label"] = "row"), + (f.tabIndex = 0), + a && + (f.onClick = function (e) { + return a({ event: e, index: r, rowData: d }); + }), + i && + (f.onDoubleClick = function (e) { + return i({ event: e, index: r, rowData: d }); + }), + s && + (f.onMouseOut = function (e) { + return s({ event: e, index: r, rowData: d }); + }), + l && + (f.onMouseOver = function (e) { + return l({ event: e, index: r, rowData: d }); + }), + u && + (f.onContextMenu = function (e) { + return u({ event: e, index: r, rowData: d }); + })), + c.createElement("div", (0, be.Z)({}, f, { className: t, key: o, role: "row", style: p }), n) + ); + } + (Pt.propTypes = {}), (jt.propTypes = null), (Bt.propTypes = null); + var Zt = (function (e) { + function t() { + return (0, fe.Z)(this, t), (0, he.Z)(this, (t.__proto__ || pe()(t)).apply(this, arguments)); + } + return (0, ve.Z)(t, e), t; + })(c.Component); + (Zt.defaultProps = { + cellDataGetter: function (e) { + var t = e.dataKey, + n = e.rowData; + return "function" == typeof n.get ? n.get(t) : n[t]; + }, + cellRenderer: function (e) { + var t = e.cellData; + return null == t ? "" : String(t); + }, + defaultSortDirection: Mt.ASC, + flexGrow: 0, + flexShrink: 1, + headerRenderer: jt, + style: {}, + }), + (Zt.propTypes = {}); + var Ut = (function (e) { + function t(e) { + (0, fe.Z)(this, t); + var n = (0, he.Z)(this, (t.__proto__ || pe()(t)).call(this, e)); + return ( + (n.state = { scrollbarWidth: 0 }), + (n._createColumn = n._createColumn.bind(n)), + (n._createRow = n._createRow.bind(n)), + (n._onScroll = n._onScroll.bind(n)), + (n._onSectionRendered = n._onSectionRendered.bind(n)), + (n._setRef = n._setRef.bind(n)), + n + ); + } + return ( + (0, ve.Z)(t, e), + (0, me.Z)(t, [ + { + key: "forceUpdateGrid", + value: function () { + this.Grid && this.Grid.forceUpdate(); + }, + }, + { + key: "getOffsetForRow", + value: function (e) { + var t = e.alignment, + n = e.index; + return this.Grid ? this.Grid.getOffsetForCell({ alignment: t, rowIndex: n }).scrollTop : 0; + }, + }, + { + key: "invalidateCellSizeAfterRender", + value: function (e) { + var t = e.columnIndex, + n = e.rowIndex; + this.Grid && this.Grid.invalidateCellSizeAfterRender({ rowIndex: n, columnIndex: t }); + }, + }, + { + key: "measureAllRows", + value: function () { + this.Grid && this.Grid.measureAllCells(); + }, + }, + { + key: "recomputeGridSize", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = e.columnIndex, + n = void 0 === t ? 0 : t, + r = e.rowIndex, + o = void 0 === r ? 0 : r; + this.Grid && this.Grid.recomputeGridSize({ rowIndex: o, columnIndex: n }); + }, + }, + { + key: "recomputeRowHeights", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : 0; + this.Grid && this.Grid.recomputeGridSize({ rowIndex: e }); + }, + }, + { + key: "scrollToPosition", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : 0; + this.Grid && this.Grid.scrollToPosition({ scrollTop: e }); + }, + }, + { + key: "scrollToRow", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : 0; + this.Grid && this.Grid.scrollToCell({ columnIndex: 0, rowIndex: e }); + }, + }, + { + key: "getScrollbarWidth", + value: function () { + if (this.Grid) { + var e = (0, E.findDOMNode)(this.Grid), + t = e.clientWidth || 0; + return (e.offsetWidth || 0) - t; + } + return 0; + }, + }, + { + key: "componentDidMount", + value: function () { + this._setScrollbarWidth(); + }, + }, + { + key: "componentDidUpdate", + value: function () { + this._setScrollbarWidth(); + }, + }, + { + key: "render", + value: function () { + var e = this, + t = this.props, + n = t.children, + r = t.className, + o = t.disableHeader, + a = t.gridClassName, + i = t.gridStyle, + s = t.headerHeight, + l = t.headerRowRenderer, + u = t.height, + d = t.id, + p = t.noRowsRenderer, + f = t.rowClassName, + m = t.rowStyle, + h = t.scrollToIndex, + v = t.style, + y = t.width, + g = this.state.scrollbarWidth, + b = o ? u : u - s, + E = "function" == typeof f ? f({ index: -1 }) : f, + D = "function" == typeof m ? m({ index: -1 }) : m; + return ( + (this._cachedColumnStyles = []), + c.Children.toArray(n).forEach(function (t, n) { + var r = e._getFlexStyleForColumn(t, t.props.style); + e._cachedColumnStyles[n] = (0, be.Z)({ overflow: "hidden" }, r); + }), + c.createElement( + "div", + { + "aria-label": this.props["aria-label"], + "aria-labelledby": this.props["aria-labelledby"], + "aria-colcount": c.Children.toArray(n).length, + "aria-rowcount": this.props.rowCount, + className: ke("ReactVirtualized__Table", r), + id: d, + role: "grid", + style: v, + }, + !o && l({ className: ke("ReactVirtualized__Table__headerRow", E), columns: this._getHeaderColumns(), style: (0, be.Z)({ height: s, overflow: "hidden", paddingRight: g, width: y }, D) }), + c.createElement( + rt, + (0, be.Z)({}, this.props, { + "aria-readonly": null, + autoContainerWidth: !0, + className: ke("ReactVirtualized__Table__Grid", a), + cellRenderer: this._createRow, + columnWidth: y, + columnCount: 1, + height: b, + id: void 0, + noContentRenderer: p, + onScroll: this._onScroll, + onSectionRendered: this._onSectionRendered, + ref: this._setRef, + role: "rowgroup", + scrollbarWidth: g, + scrollToRow: h, + style: (0, be.Z)({}, i, { overflowX: "hidden" }), + }) + ) + ) + ); + }, + }, + { + key: "_createColumn", + value: function (e) { + var t = e.column, + n = e.columnIndex, + r = e.isScrolling, + o = e.parent, + a = e.rowData, + i = e.rowIndex, + s = this.props.onColumnClick, + l = t.props, + u = l.cellDataGetter, + d = l.cellRenderer, + p = l.className, + f = l.columnData, + m = l.dataKey, + h = l.id, + v = d({ cellData: u({ columnData: f, dataKey: m, rowData: a }), columnData: f, columnIndex: n, dataKey: m, isScrolling: r, parent: o, rowData: a, rowIndex: i }), + y = this._cachedColumnStyles[n], + g = "string" == typeof v ? v : null; + return c.createElement( + "div", + { + "aria-colindex": n + 1, + "aria-describedby": h, + className: ke("ReactVirtualized__Table__rowColumn", p), + key: "Row" + i + "-Col" + n, + onClick: function (e) { + s && s({ columnData: f, dataKey: m, event: e }); + }, + role: "gridcell", + style: y, + title: g, + }, + v + ); + }, + }, + { + key: "_createHeader", + value: function (e) { + var t = e.column, + n = e.index, + r = this.props, + o = r.headerClassName, + a = r.headerStyle, + i = r.onHeaderClick, + s = r.sort, + l = r.sortBy, + u = r.sortDirection, + d = t.props, + p = d.columnData, + f = d.dataKey, + m = d.defaultSortDirection, + h = d.disableSort, + v = d.headerRenderer, + y = d.id, + g = d.label, + b = !h && s, + E = ke("ReactVirtualized__Table__headerColumn", o, t.props.headerClassName, { ReactVirtualized__Table__sortableHeaderColumn: b }), + D = this._getFlexStyleForColumn(t, (0, be.Z)({}, a, t.props.headerStyle)), + C = v({ columnData: p, dataKey: f, disableSort: h, label: g, sortBy: l, sortDirection: u }), + w = void 0, + S = void 0, + A = void 0, + k = void 0, + _ = void 0; + if (b || i) { + var T = l !== f ? m : u === Mt.DESC ? Mt.ASC : Mt.DESC, + I = function (e) { + b && s({ defaultSortDirection: m, event: e, sortBy: f, sortDirection: T }), i && i({ columnData: p, dataKey: f, event: e }); + }; + (_ = t.props["aria-label"] || g || f), + (k = "none"), + (A = 0), + (w = I), + (S = function (e) { + ("Enter" !== e.key && " " !== e.key) || I(e); + }); + } + return ( + l === f && (k = u === Mt.ASC ? "ascending" : "descending"), + c.createElement("div", { "aria-label": _, "aria-sort": k, className: E, id: y, key: "Header-Col" + n, onClick: w, onKeyDown: S, role: "columnheader", style: D, tabIndex: A }, C) + ); + }, + }, + { + key: "_createRow", + value: function (e) { + var t = this, + n = e.rowIndex, + r = e.isScrolling, + o = e.key, + a = e.parent, + i = e.style, + s = this.props, + l = s.children, + u = s.onRowClick, + d = s.onRowDoubleClick, + p = s.onRowRightClick, + f = s.onRowMouseOver, + m = s.onRowMouseOut, + h = s.rowClassName, + v = s.rowGetter, + y = s.rowRenderer, + g = s.rowStyle, + b = this.state.scrollbarWidth, + E = "function" == typeof h ? h({ index: n }) : h, + D = "function" == typeof g ? g({ index: n }) : g, + C = v({ index: n }), + w = c.Children.toArray(l).map(function (e, o) { + return t._createColumn({ column: e, columnIndex: o, isScrolling: r, parent: a, rowData: C, rowIndex: n, scrollbarWidth: b }); + }), + S = ke("ReactVirtualized__Table__row", E), + A = (0, be.Z)({}, i, { height: this._getRowHeight(n), overflow: "hidden", paddingRight: b }, D); + return y({ className: S, columns: w, index: n, isScrolling: r, key: o, onRowClick: u, onRowDoubleClick: d, onRowRightClick: p, onRowMouseOver: f, onRowMouseOut: m, rowData: C, style: A }); + }, + }, + { + key: "_getFlexStyleForColumn", + value: function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, + n = e.props.flexGrow + " " + e.props.flexShrink + " " + e.props.width + "px", + r = (0, be.Z)({}, t, { flex: n, msFlex: n, WebkitFlex: n }); + return e.props.maxWidth && (r.maxWidth = e.props.maxWidth), e.props.minWidth && (r.minWidth = e.props.minWidth), r; + }, + }, + { + key: "_getHeaderColumns", + value: function () { + var e = this, + t = this.props, + n = t.children; + return (t.disableHeader ? [] : c.Children.toArray(n)).map(function (t, n) { + return e._createHeader({ column: t, index: n }); + }); + }, + }, + { + key: "_getRowHeight", + value: function (e) { + var t = this.props.rowHeight; + return "function" == typeof t ? t({ index: e }) : t; + }, + }, + { + key: "_onScroll", + value: function (e) { + var t = e.clientHeight, + n = e.scrollHeight, + r = e.scrollTop; + (0, this.props.onScroll)({ clientHeight: t, scrollHeight: n, scrollTop: r }); + }, + }, + { + key: "_onSectionRendered", + value: function (e) { + var t = e.rowOverscanStartIndex, + n = e.rowOverscanStopIndex, + r = e.rowStartIndex, + o = e.rowStopIndex; + (0, this.props.onRowsRendered)({ overscanStartIndex: t, overscanStopIndex: n, startIndex: r, stopIndex: o }); + }, + }, + { + key: "_setRef", + value: function (e) { + this.Grid = e; + }, + }, + { + key: "_setScrollbarWidth", + value: function () { + var e = this.getScrollbarWidth(); + this.setState({ scrollbarWidth: e }); + }, + }, + ]), + t + ); + })(c.PureComponent); + (Ut.defaultProps = { + disableHeader: !1, + estimatedRowSize: 30, + headerHeight: 0, + headerStyle: {}, + noRowsRenderer: function () { + return null; + }, + onRowsRendered: function () { + return null; + }, + onScroll: function () { + return null; + }, + overscanIndicesGetter: ot, + overscanRowCount: 10, + rowRenderer: Bt, + headerRowRenderer: Lt, + rowStyle: {}, + scrollToAlignment: "auto", + scrollToIndex: -1, + style: {}, + }), + (Ut.propTypes = {}); + var zt = [], + Vt = null, + Ht = null; + function Gt() { + Ht && ((Ht = null), document.body && null != Vt && (document.body.style.pointerEvents = Vt), (Vt = null)); + } + function Wt() { + Gt(), + zt.forEach(function (e) { + return e.__resetIsScrolling(); + }); + } + function Qt(e) { + e.currentTarget === window && null == Vt && document.body && ((Vt = document.body.style.pointerEvents), (document.body.style.pointerEvents = "none")), + (function () { + Ht && $e(Ht); + var e = 0; + zt.forEach(function (t) { + e = Math.max(e, t.props.scrollingResetTimeInterval); + }), + (Ht = et(Wt, e)); + })(), + zt.forEach(function (t) { + t.props.scrollElement === e.currentTarget && t.__handleWindowScrollEvent(); + }); + } + function Jt(e, t) { + zt.some(function (e) { + return e.props.scrollElement === t; + }) || t.addEventListener("scroll", Qt), + zt.push(e); + } + function Yt(e, t) { + (zt = zt.filter(function (t) { + return t !== e; + })).length || (t.removeEventListener("scroll", Qt), Ht && ($e(Ht), Gt())); + } + var qt = function (e) { + return e === window; + }, + Xt = function (e) { + return e.getBoundingClientRect(); + }; + function Kt(e, t) { + if (e) { + if (qt(e)) { + var n = window, + r = n.innerHeight, + o = n.innerWidth; + return { height: "number" == typeof r ? r : 0, width: "number" == typeof o ? o : 0 }; + } + return Xt(e); + } + return { height: t.serverHeight, width: t.serverWidth }; + } + function $t(e) { + return qt(e) && document.documentElement + ? { top: "scrollY" in window ? window.scrollY : document.documentElement.scrollTop, left: "scrollX" in window ? window.scrollX : document.documentElement.scrollLeft } + : { top: e.scrollTop, left: e.scrollLeft }; + } + var en = function () { + return "undefined" != typeof window ? window : void 0; + }, + tn = (function (e) { + function t() { + var e, n, r, o; + (0, fe.Z)(this, t); + for (var a = arguments.length, i = Array(a), s = 0; s < a; s++) i[s] = arguments[s]; + return ( + (n = r = (0, he.Z)(this, (e = t.__proto__ || pe()(t)).call.apply(e, [this].concat(i)))), + (r._window = en()), + (r._isMounted = !1), + (r._positionFromTop = 0), + (r._positionFromLeft = 0), + (r.state = (0, be.Z)({}, Kt(r.props.scrollElement, r.props), { isScrolling: !1, scrollLeft: 0, scrollTop: 0 })), + (r._registerChild = function (e) { + !e || e instanceof Element || console.warn("WindowScroller registerChild expects to be passed Element or null"), (r._child = e), r.updatePosition(); + }), + (r._onChildScroll = function (e) { + var t = e.scrollTop; + if (r.state.scrollTop !== t) { + var n = r.props.scrollElement; + n && ("function" == typeof n.scrollTo ? n.scrollTo(0, t + r._positionFromTop) : (n.scrollTop = t + r._positionFromTop)); + } + }), + (r._registerResizeListener = function (e) { + e === window ? window.addEventListener("resize", r._onResize, !1) : r._detectElementResize.addResizeListener(e, r._onResize); + }), + (r._unregisterResizeListener = function (e) { + e === window ? window.removeEventListener("resize", r._onResize, !1) : e && r._detectElementResize.removeResizeListener(e, r._onResize); + }), + (r._onResize = function () { + r.updatePosition(); + }), + (r.__handleWindowScrollEvent = function () { + if (r._isMounted) { + var e = r.props.onScroll, + t = r.props.scrollElement; + if (t) { + var n = $t(t), + o = Math.max(0, n.left - r._positionFromLeft), + a = Math.max(0, n.top - r._positionFromTop); + r.setState({ isScrolling: !0, scrollLeft: o, scrollTop: a }), e({ scrollLeft: o, scrollTop: a }); + } + } + }), + (r.__resetIsScrolling = function () { + r.setState({ isScrolling: !1 }); + }), + (o = n), + (0, he.Z)(r, o) + ); + } + return ( + (0, ve.Z)(t, e), + (0, me.Z)(t, [ + { + key: "updatePosition", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : this.props.scrollElement, + t = this.props.onResize, + n = this.state, + r = n.height, + o = n.width, + a = this._child || E.findDOMNode(this); + if (a instanceof Element && e) { + var i = (function (e, t) { + if (qt(t) && document.documentElement) { + var n = document.documentElement, + r = Xt(e), + o = Xt(n); + return { top: r.top - o.top, left: r.left - o.left }; + } + var a = $t(t), + i = Xt(e), + s = Xt(t); + return { top: i.top + a.top - s.top, left: i.left + a.left - s.left }; + })(a, e); + (this._positionFromTop = i.top), (this._positionFromLeft = i.left); + } + var s = Kt(e, this.props); + (r === s.height && o === s.width) || (this.setState({ height: s.height, width: s.width }), t({ height: s.height, width: s.width })); + }, + }, + { + key: "componentDidMount", + value: function () { + var e = this.props.scrollElement; + (this._detectElementResize = Ee()), this.updatePosition(e), e && (Jt(this, e), this._registerResizeListener(e)), (this._isMounted = !0); + }, + }, + { + key: "componentDidUpdate", + value: function (e, t) { + var n = this.props.scrollElement, + r = e.scrollElement; + r !== n && null != r && null != n && (this.updatePosition(n), Yt(this, r), Jt(this, n), this._unregisterResizeListener(r), this._registerResizeListener(n)); + }, + }, + { + key: "componentWillUnmount", + value: function () { + var e = this.props.scrollElement; + e && (Yt(this, e), this._unregisterResizeListener(e)), (this._isMounted = !1); + }, + }, + { + key: "render", + value: function () { + var e = this.props.children, + t = this.state, + n = t.isScrolling, + r = t.scrollTop, + o = t.scrollLeft, + a = t.height, + i = t.width; + return e({ onChildScroll: this._onChildScroll, registerChild: this._registerChild, height: a, isScrolling: n, scrollLeft: o, scrollTop: r, width: i }); + }, + }, + ]), + t + ); + })(c.PureComponent); + (tn.defaultProps = { onResize: function () {}, onScroll: function () {}, scrollingResetTimeInterval: 150, scrollElement: en(), serverHeight: 0, serverWidth: 0 }), (tn.propTypes = null); + const nn = { width: 500, height: 500 }, + rn = ({ startIndex: e, stopIndex: t, cellCount: n, overscanCellsCount: r }) => ({ overscanStartIndex: Math.max(0, Math.min(e - r)), overscanStopIndex: Math.min(n - 1, Math.max(t + r)) }); + function on(e, t = { height: 0, width: 0 }) { + return Math.min(1, (e.width - 16) / t.width, (e.height - 16) / t.height); + } + function an(e) { + const t = Array.from(e.querySelectorAll("img")), + n = Array.from(e.querySelectorAll("video")), + r = !!e.querySelector("[data-is-loading]"), + o = t.length > 0 && t.some((e) => !e.complete), + a = n.length > 0 && n.some((e) => e.readyState < e.HAVE_METADATA), + i = 0 === e.childElementCount, + s = 0 === e.offsetWidth || 0 === e.offsetHeight; + return i || o || a || s || r; + } + function sn(e, t) { + return e.getOffsetForCell({ alignment: "start", rowIndex: t }).scrollTop; + } + function cn(e, t) { + return e.getOffsetForCell({ alignment: "start", columnIndex: t }).scrollLeft; + } + function ln(e, t = 0, n = 0) { + const r = { rowIndex: e.props.rowCount - 1, rowOffset: 0, columnIndex: e.props.columnCount - 1, columnOffset: 0 }, + o = e.state.scrollLeft + t, + a = e.state.scrollTop + n; + for (let t = 0; t < e.props.rowCount; t += 1) + if (a >= sn(e, t) && a < sn(e, t + 1)) { + r.rowIndex = t; + break; + } + for (let t = 0; t < e.props.columnCount; t += 1) + if (o >= cn(e, t) && o < cn(e, t + 1)) { + r.columnIndex = t; + break; + } + return (r.rowOffset = a - sn(e, r.rowIndex)), (r.columnOffset = o - cn(e, r.columnIndex)), r; + } + const un = l().createContext(void 0), + dn = "application/pdf", + pn = "document/vnd.adobe.indesign+dcx"; + var fn, mn; + function hn(e, t = { width: 0, height: 0 }) { + const [n, r] = (0, c.useState)(t), + o = (0, c.useCallback)(() => { + (e.current && null === e.current.offsetParent) || r({ width: e.current ? e.current.offsetWidth : 0, height: e.current ? e.current.offsetHeight : 0 }); + }, []); + return (0, c.useLayoutEffect)(o, []), C(window, "resize", o, [o]), n; + } + !(function (e) { + (e.Success = "success"), (e.Error = "error"), (e.Click = "click"), (e.Render = "render"), (e.Log = "log"), (e.Init = "init"), (e.Info = "info"); + })(fn || (fn = {})), + (function (e) { + (e.Page = "page"), (e.Export = "export"), (e.MultipageSchedule = "multipage-schedule"); + })(mn || (mn = {})); + const vn = (0, c.createContext)(null), + yn = (e) => { + const t = (0, c.useRef)(null), + n = (0, c.useRef)(null), + r = (0, c.useRef)(null), + o = hn(t), + a = hn(r), + [i, s] = (0, c.useState)({ height: 0, width: 0 }), + [u, d] = (0, c.useState)(), + [p, f] = (0, c.useState)(), + [m, h] = (0, c.useState)(), + [v, y] = (0, c.useState)(null), + { urn: g, mimeType: b } = e, + { zoom: E, setZoom: D } = (function ({ gridRef: e, containerRef: t, defaultZoom: n, mimeType: r }, o) { + const [a, i] = (0, c.useState)({ scale: 0, clientX: 0, clientY: 0 }); + (0, c.useLayoutEffect)(() => { + a.scale = 0; + }, o), + (function (e, t) { + const n = (0, c.useRef)(t); + (n.current = t), + (0, c.useEffect)(() => { + function t(t) { + if (t.ctrlKey && (t.preventDefault(), void 0 !== e.current)) { + const r = e.current.getBoundingClientRect(); + n.current({ delta: 0.01 * t.deltaY, clientX: Math.max(0, Math.min(t.clientX - r.left, r.right)), clientY: Math.max(0, Math.min(t.clientY - r.top, r.bottom)) }); + } + } + return ( + window.document.addEventListener("wheel", t, { passive: !1 }), + () => { + window.document.removeEventListener("wheel", t); + } + ); + }, []); + })(t, ({ delta: e, clientX: t, clientY: r }) => { + i({ scale: Math.min(8, Math.max(0.1, (a.scale || n) - e)), clientX: t, clientY: r }); + }); + const s = (0, c.useRef)(0); + return ( + (0, c.useLayoutEffect)(() => { + if (e.current) { + const t = a.scale || n; + t !== s.current && + ((function (e, t, { scale: n, clientX: r, clientY: o }) { + const a = ln(e, r, o); + e.recomputeGridSize(); + const i = e.getOffsetForCell({ alignment: "start", rowIndex: a.rowIndex, columnIndex: a.columnIndex }); + e.scrollToPosition({ scrollTop: i.scrollTop + a.rowOffset * (n / t) - o, scrollLeft: i.scrollLeft + a.columnOffset * (n / t) - r }); + })(e.current, s.current, a), + (s.current = t)); + } + }, [a.scale, n]), + { + zoom: a.scale || n, + setZoom: (0, c.useCallback)((e) => { + if (r === dn || r === pn) i({ scale: e, clientX: 0, clientY: 0 }); + else if (t.current) { + const n = t.current.getBoundingClientRect(); + i({ scale: e, clientX: n.width / 2, clientY: n.height / 2 }); + } + }, []), + } + ); + })({ gridRef: n, containerRef: t, defaultZoom: b !== (dn || pn) ? on({ width: o.width, height: o.height - a.height }, i) : 1, mimeType: b }, [g, i]), + C = { + APIs: u, + setAPIs: d, + adobeViewer: p, + setAdobeViewer: f, + scrollPage: m, + setScrollPage: h, + zoom: E, + setZoom: D, + setMaxSize: (e) => { + s(e); + }, + containerRef: t, + gridRef: n, + footerRef: r, + containerSize: o, + footerSize: a, + mimeType: b, + urn: g, + isSelected: v, + setIsSelected: y, + }, + { children: w } = e; + return l().createElement(vn.Provider, { value: C }, w); + }, + gn = n(72792), + bn = (0, c.forwardRef)((e, t) => { + const { onPageChange: n, children: r, urn: o } = e, + a = l().Children.toArray(r), + i = a.length, + [s, u] = (0, c.useState)(1), + { containerRef: d, gridRef: p, containerSize: f, footerSize: m, setMaxSize: h, zoom: v } = (0, c.useContext)(vn), + y = (0, c.useCallback)((e) => { + p.current && p.current.scrollToCell({ rowIndex: e - 1, columnIndex: 0 }); + }, []); + (0, c.useImperativeHandle)(t, () => ({ + scrollToPage: (e) => { + requestAnimationFrame(() => y(e)); + }, + })); + const { getPageCellSize: g, getPageSize: b, registerPageSize: E, maxPageSize: D } = (function ({ containerSize: e, footerSize: t, numPages: n }, r) { + const [o, a] = (0, c.useState)(void 0), + [i, s] = (0, c.useState)([]), + l = o || nn; + (0, c.useLayoutEffect)(() => { + s([]); + }, r); + const u = (0, c.useCallback)( + (e, t, n) => { + const r = i[e]; + (r && r.width === t && r.height === n) || ((i[e] = { width: t, height: n }), a(i.reduce((e, { width: t, height: n }) => ({ width: Math.max(e.width, t), height: Math.max(e.height, n) })))); + }, + [i] + ), + d = (0, c.useCallback)((e, t) => ({ width: (i[e] || l).width * t, height: (i[e] || l).height * t }), [i, l]), + p = (0, c.useCallback)( + (r, o) => { + const a = 0 === r ? 8 : 0, + i = 8 + (r === n - 1 ? t.height : 0); + return { width: Math.max(e.width, d(r, o).width), height: 1 === n ? Math.max(e.height, d(r, o).height) : d(r, o).height + a + i }; + }, + [n, d, e] + ); + return { registerPageSize: u, getPageSize: d, getPageCellSize: p, maxPageSize: l }; + })({ containerSize: f, footerSize: m, numPages: i }, [o]); + (0, c.useLayoutEffect)(() => { + p.current && p.current.recomputeGridSize(); + }, [f, D]), + h(D); + const C = (0, c.useCallback)( + ue()(() => { + if (p.current) { + const e = (function (e) { + const t = sn(e, e.props.rowCount - 1); + return e.state.scrollTop >= Math.floor(t); + })(p.current) + ? i + : ln(p.current, 0, 10).rowIndex + 1; + u(e), n && n(e); + } + }, 40), + [i, n, s] + ); + return l().createElement( + "div", + { className: gn.Pages, ref: d }, + l().createElement(rt, { + className: gn.OneUpGrid, + ref: p, + width: f.width, + height: f.height, + overscanRowCount: 10, + overscanIndicesGetter: rn, + onSectionRendered: C, + onScroll: C, + rowCount: i, + scrollToAlignment: "start", + estimatedRowSize: g(0, v).height, + rowHeight: ({ index: e }) => g(e, v).height, + columnWidth: ({ index: e }) => g(e, v).width, + columnCount: 1, + cellRenderer: (e) => + l().createElement(un.Provider, { key: e.key, value: { gridCellProps: e, zoom: v, containerSize: f, numPages: i, pageSize: b(e.rowIndex, v), registerPageSize: (t, n) => E(e.rowIndex, t, n) } }, a[e.rowIndex]), + }) + ); + }); + var En = n(77249), + Dn = n.n(En); + class Cn { + constructor(e, t) { + (this.trackedElements = new WeakMap()), + (this.observer = new MutationObserver((e) => { + e.map(({ addedNodes: e }) => this.trackNodes(e)), this.callback(); + })), + (this.callback = t), + this.trackNodes(e.querySelectorAll("img,video")), + this.observer.observe(e, { childList: !0, subtree: !0, attributes: !0, attributeFilter: ["data-is-loading"] }); + } + disconnect() { + this.observer.disconnect(); + } + trackNodes(e) { + Array.from(e).map((e) => this.trackNode(e)); + } + trackNode(e) { + this.trackedElements.has(e) || + (this.trackedElements.set(e, !0), e instanceof HTMLImageElement ? (e.complete ? this.callback() : e.addEventListener("load", this.callback)) : e instanceof HTMLVideoElement && e.addEventListener("resize", this.callback)); + } + } + const wn = n(26801), + Sn = (e) => { + const { extension: t } = e; + let r; + return (r = t in N ? N[t] : n(56784)), l().createElement("div", { className: wn.fallbackRenditon }, l().createElement("img", { src: r, alt: "" })); + }, + An = n(31793); + var kn; + !(function (e) { + (e[(e.LoadingGhost = 0)] = "LoadingGhost"), (e[(e.LoadingSpinner = 1)] = "LoadingSpinner"), (e[(e.LoadedNormalPage = 2)] = "LoadedNormalPage"), (e[(e.Fallback = 3)] = "Fallback"); + })(kn || (kn = {})); + const _n = (e) => { + const t = (0, c.useRef)(null), + n = (0, c.useRef)(null), + { pageSize: r, containerSize: o, gridCellProps: a, registerPageSize: i, zoom: s, numPages: u } = (0, c.useContext)(un), + { children: d, assetURI: p, extension: f, canRender: m } = e, + { rowIndex: h, style: v } = a, + [y, g] = (0, c.useState)(kn.LoadingGhost); + (0, c.useLayoutEffect)(() => { + if (n.current) { + let e, t; + const r = n.current, + o = () => { + clearTimeout(e), clearTimeout(t), i(r.offsetWidth, r.offsetHeight), g(kn.LoadedNormalPage); + }; + if (!an(r)) return void o(); + g(kn.LoadingGhost), (e = m ? setTimeout(() => g(kn.LoadingSpinner), 2e3) : void 0), (t = setTimeout(() => g(kn.Fallback), m ? 4e4 : 0)); + const a = new Cn(r, () => { + an(r) || o(); + }); + return () => { + clearTimeout(e), clearTimeout(t), a.disconnect(); + }; + } + }, [h, p]); + const { width: E, height: D } = r, + C = E < o.width, + w = 1 === u && D < o.height; + return l().createElement( + "div", + { + className: b()(An.Page, { [An.isLoading]: y < kn.LoadedNormalPage }), + ref: t, + style: { + position: "absolute", + width: E, + height: D, + left: `calc(${v.left || 0}px + ${C ? `50% - ${E / 2}px` : "0px"})`, + top: `calc(${v.top || 0}px + ${w ? `50% - ${D / 2}px` : "0px"})`, + marginTop: u > 1 && 0 === h ? 8 : 0, + marginBottom: u > 1 ? 8 : 0, + marginLeft: 0, + }, + }, + l().createElement("div", { className: An.PageContent, ref: n, style: { visibility: y === kn.Fallback ? "hidden" : "visible", transform: `scale(${s})` } }, d), + y === kn.LoadingSpinner && l().createElement(Dn(), { size: "M" }), + y === kn.Fallback && l().createElement(Sn, { extension: f }) + ); + }, + Tn = bn; + var In = n(30871); + const On = n(40215); + function Fn(e, t) { + let n; + switch (t) { + case "keyup": + n = "KEYPRESS"; + break; + case "click": + n = "BUTTON_CLICK"; + break; + case "touchend": + n = "TOUCH"; + break; + default: + n = "null"; + } + } + const xn = (e) => { + const { goToPrev: t, goToNext: n, isPrevDisabled: r, isNextDisabled: o, prevTooltip: a, nextTooltip: i } = e, + s = (0, c.useCallback)( + (e) => { + !r && t && (t(), Fn(0, e.type)); + }, + [r, t] + ), + u = (0, c.useCallback)( + (e) => { + !o && n && (n(), Fn(0, e.type)); + }, + [o, n] + ), + f = (0, c.useCallback)( + (e) => { + e.preventDefault(), + e.stopPropagation(), + e.target instanceof HTMLInputElement || e.target instanceof HTMLTextAreaElement || (e.target instanceof HTMLDivElement && e.target.isContentEditable) || ("ArrowLeft" === e.key ? s(e) : "ArrowRight" === e.key && u(e)); + }, + [s, u] + ); + return ( + (0, c.useEffect)( + () => ( + document.addEventListener("keyup", f), + () => { + document.removeEventListener("keyup", f); + } + ), + [f] + ), + l().createElement( + "div", + { className: On.root, "data-test-id": "OneUpOverlay_LeftArrowContainer" }, + l().createElement( + d.default, + { placement: "top", trigger: ["hover", "focus"], delayShow: T, disabled: !a, selected: !1 }, + l().createElement(_(), { + quiet: !0, + icon: l().createElement(H.default, { size: "S" }), + variant: "action", + className: b()(On.left, { [On.isVisible]: !0 }), + disabled: r, + "data-test-id": "OneUpOverlay_LeftButton", + onClick: s, + }), + l().createElement(p.default, null, " ", a, " ") + ), + l().createElement( + d.default, + { placement: "top", trigger: ["hover", "focus"], delayShow: T, disabled: !i, selected: !1 }, + l().createElement(_(), { + quiet: !0, + icon: l().createElement(In.default, { size: "S" }), + variant: "action", + className: b()(On.right, { [On.isVisible]: !0 }), + disabled: o, + "data-test-id": "OneUpOverlay_RightButton", + onClick: u, + }), + l().createElement(p.default, null, " ", i, " ") + ) + ) + ); + }; + n(81606), + Node.prototype.contains || + (Node.prototype.contains = function (e) { + if (e) { + var t = e; + do { + if (this === t) return !0; + t = t && t.parentNode; + } while (t); + } + return !1; + }), + window.NodeList && + !NodeList.prototype.forEach && + (NodeList.prototype.forEach = function (e, t) { + t = t || window; + for (var n = 0; n < this.length; n++) e.call(t, this[n], n, this); + }); + var Nn = n(78034).Z, + Rn = (n(64251).Z, n(37370).ZP), + Ln = n(88559).Z, + Mn = n(10548).Z, + Pn = n(8605).Z, + jn = n(39358), + Bn = n.n(jn), + Zn = function (e, t, n, r) { + return new (n || (n = Promise))(function (o, a) { + function i(e) { + try { + c(r.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(r.throw(e)); + } catch (e) { + a(e); + } + } + function c(e) { + var t; + e.done + ? o(e.value) + : ((t = e.value), + t instanceof n + ? t + : new n(function (e) { + e(t); + })).then(i, s); + } + c((r = r.apply(e, t || [])).next()); + }); + }; + const Un = n(86756), + zn = "CCAC-1UP: CommentPanelView:", + Vn = l().createContext({ isAnnotating: !1, annotatingType: "" }), + Hn = { START: "start", CANCEL: "cancel", PLACE: "place", UPDATE: "update", SUBMIT: "submit" }, + Gn = l().memo((e) => { + const { urn: t, children: n, imsHelper: r, locale: o, commentConfigureData: a, theme: i } = e, + { getOwnerId: s, annotationsEnabled: u, onCommentsError: d, getAnalyticsData: p } = a, + { clientId: f, environment: m } = r.imsData, + h = (function (e) { + const t = e.split(":"); + return 0 === e.length || t.length < 2 ? (console.error(`CCAC-1UP: assets: getAssetID: urn: ${e} is not valid`), "") : t[t.length - 1]; + })(t), + v = [{ id: h, title: te.getMessage("oneup.sidebar.comment.page.title", { pageNum: 1 }) }], + [y, g] = (0, c.useState)(""), + [b, E] = (0, c.useState)(!1), + [D, C] = (0, c.useState)(void 0), + [w] = (0, c.useState)(Bn().v1()), + [S, A] = (0, c.useState)({ id: r.imsData.userID, token: r.initToken }), + [k, _] = (0, c.useState)(() => { + const e = p ? p() : void 0; + return e && e.event && (e.event.session_guid = w), e; + }), + { shareStatus: T } = Pn(t, f, m, S), + I = (0, c.useRef)(!1); + function O() { + return Zn(this, void 0, void 0, function* () { + console.info(`${zn}: Updating IMS data`); + try { + const e = yield r.imsData.fetchToken(); + if (I.current) return; + const t = { id: r.imsData.userID, token: e }; + A(t); + } catch (e) { + console.error(`${zn}: Error while updating access token: ${e}`); + } + }); + } + (0, c.useEffect)(() => { + const e = p ? p() : void 0; + e && e.event && ((e.event.session_guid = w), _(e)), + (function () { + Zn(this, void 0, void 0, function* () { + const e = yield s(); + e && C(e); + }); + })(); + }, [t]), + (0, c.useEffect)( + () => ( + O(), + r.onIMSChangeRegister(O), + () => { + r.onIMSChangeUnregister(O), (I.current = !0); + } + ), + [] + ); + const F = () => { + E(!1), g(""); + }; + return l().createElement( + Ln, + { + analyticsData: k, + annotationsEnabled: u, + annotationTypes: { draw: !0, pin: !0 }, + locale: o, + environment: m, + assetData: { id: t, ownerId: D, nodeId: h, validNodes: v }, + shareStatus: T, + imsData: S, + appKey: f, + appName: f, + peopleGraphAPIKey: f, + mentionsEnabled: !0, + theme: i, + pollForUpdates: !0, + filterComments: !0, + commentsAscending: !1, + onAnnotatingChange: (e) => { + E(!0); + const { type: t, trigger: n } = e; + g(t), ((e) => [Hn.CANCEL, Hn.UPDATE, Hn.SUBMIT].includes(e))(n) && F(); + }, + onAnnotatingEnded: F, + onCommentsError: (e) => { + e + ? (401 === e.statusCode && (console.log(`${zn}: Unauthorized, updating access token`), O()), d ? d(e) : console.error(`${zn} onError: Error payload ${JSON.stringify(e, null, 4)}`)) + : console.error(`${zn}: onError: payload should not be empty`); + }, + globalComments: !!u, + globalCommentsUnmapped: !!u, + }, + l().createElement(Vn.Provider, { value: { isAnnotating: b, annotatingType: y } }, n) + ); + }), + Wn = () => l().createElement("div", { className: Un.component }, l().createElement(Rn, null)), + Qn = (e) => { + const t = Mn(); + return ( + C(window, "keydown", (e) => { + e && "Escape" === e.key && t.endAnnotating(); + }), + l().createElement(Nn, Object.assign({}, e)) + ); + }, + Jn = ({ src: e, type: t, scaleX: n, scaleY: r, style: o = {}, showCommentAnnotations: a }) => { + const [i, s] = (0, c.useState)(null), + { isAnnotating: u, annotatingType: d } = (0, c.useContext)(Vn), + { zoom: p } = (0, c.useContext)(un), + { pageSize: f } = (0, c.useContext)(un), + { width: m, height: h } = f; + let v = p, + y = p; + return ( + n && r && ((v = Number(m) / Number(n)), (y = Number(h) / Number(r))), + l().createElement( + l().Fragment, + null, + l().createElement("img", { + src: e, + alt: "", + style: Object.assign(Object.assign({}, o), { width: o.width || (i && i.width), height: o.height || (i && i.height) }), + onLoad: (e) => { + s({ width: e.currentTarget.naturalWidth, height: e.currentTarget.naturalHeight }); + }, + }), + a + ? l().createElement(Qn, { + scaleFactorX: v, + scaleFactorY: y, + style: { transformOrigin: "0 0", transform: `scale(${1 / p})`, width: 100 * p + "%", height: 100 * p + "%" }, + maskStyle: { transformOrigin: "0 0", transform: `scale(${1 / p})`, width: 100 * p + "%", height: 100 * p + "%" }, + isAnnotating: u, + annotatingType: d, + }) + : null + ) + ); + }; + function Yn(e, t = [], { cache: n } = {}) { + const r = (0, c.useRef)(new Map()).current, + o = n && JSON.stringify(t), + a = n && r.get(o); + let i = a || [void 0, void 0], + [s, l] = (0, c.useState)(i); + return ( + (e = (0, c.useCallback)(e, t)), + (0, c.useEffect)(() => { + if (a) return void l(a); + l(i); + let t = !1; + const s = e(); + return ( + (() => { + var e, a, i, c; + (e = this), + (a = void 0), + (c = function* () { + var e, a, i; + try { + if ((i = s) && i.next) { + const i = []; + let d; + try { + for ( + var c, + u = (function (e) { + if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); + var t, + n = e[Symbol.asyncIterator]; + return n + ? n.call(e) + : ((e = "function" == typeof __values ? __values(e) : e[Symbol.iterator]()), + (t = {}), + r("next"), + r("throw"), + r("return"), + (t[Symbol.asyncIterator] = function () { + return this; + }), + t); + function r(n) { + t[n] = + e[n] && + function (t) { + return new Promise(function (r, o) { + !(function (e, t, n, r) { + Promise.resolve(r).then(function (t) { + e({ value: t, done: n }); + }, t); + })(r, o, (t = e[n](t)).done, t.value); + }); + }; + } + })(s); + !(c = yield u.next()).done; + + ) { + let e = c.value; + if (t) return; + i.push(e), clearTimeout(d), (d = setTimeout(() => l([i, void 0]))); + } + } catch (t) { + e = { error: t }; + } finally { + try { + c && !c.done && (a = u.return) && (yield a.call(u)); + } finally { + if (e) throw e.error; + } + } + t || (clearTimeout(d), l([i, void 0]), n && r.set(o, [i, void 0])); + } else { + let e = s && (yield Promise.resolve(s)); + t || (n && r.set(o, [e, void 0]), l([e, void 0])); + } + } catch (e) { + t || l([void 0, e]); + } finally { + t = !0; + } + }), + new ((i = void 0) || (i = Promise))(function (t, n) { + function r(e) { + try { + s(c.next(e)); + } catch (e) { + n(e); + } + } + function o(e) { + try { + s(c.throw(e)); + } catch (e) { + n(e); + } + } + function s(e) { + var n; + e.done + ? t(e.value) + : ((n = e.value), + n instanceof i + ? n + : new i(function (e) { + e(n); + })).then(r, o); + } + s((c = c.apply(e, a || [])).next()); + }); + })(), + () => { + (t = !0), l([void 0, void 0]); + } + ); + }, [e]), + s + ); + } + const qn = ["DELETE", "GET", "HEAD", "OPTIONS", "POST", "PUT", "PATCH"], + Xn = { prod: { ACP_URI: "https://platform-cs.adobe.io", CCSTORAGE_URI: "https://cc-api-storage.adobe.io" }, stage: { ACP_URI: "https://platform-cs-stage.adobe.io", CCSTORAGE_URI: "https://cc-api-storage-stage.adobe.io" } }, + Kn = { stage: "b4fdcdfad6844617ba7bcc879c2d18f0", prod: "b4fdcdfad6844617ba7bcc879c2d18f0" }, + $n = { + APPLICATION: "http://ns.adobe.com/adobecloud/rel/metadata/application", + BLOCK_INIT: "http://ns.adobe.com/adobecloud/rel/block/init", + BLOCK_TRANSFER: "http://ns.adobe.com/adobecloud/rel/block/transfer", + BLOCK_FINALIZE: "http://ns.adobe.com/adobecloud/rel/block/finalize", + CREATE: "http://ns.adobe.com/adobecloud/rel/create", + DIRECTORY: "http://ns.adobe.com/adobecloud/rel/directory", + DISCARD: "http://ns.adobe.com/adobecloud/rel/discard", + DOWNLOAD: "http://ns.adobe.com/adobecloud/rel/download", + HOME: "http://ns.adobe.com/adobecloud/rel/home", + MANIFEST: "http://ns.adobe.com/adobecloud/rel/manifest", + OPS: "http://ns.adobe.com/adobecloud/rel/ops", + PAGE: "http://ns.adobe.com/adobecloud/rel/page", + PATH: "http://ns.adobe.com/adobecloud/rel/path", + PRIMARY: "http://ns.adobe.com/adobecloud/rel/primary", + RENDITION: "http://ns.adobe.com/adobecloud/rel/rendition", + REPOSITORY: "http://ns.adobe.com/adobecloud/rel/repository", + REPOSITORY_METADATA: "http://ns.adobe.com/adobecloud/rel/metadata/repository", + RESOLVE_PATH: "http://ns.adobe.com/adobecloud/rel/resolve/path", + RESOLVE_ID: "http://ns.adobe.com/adobecloud/rel/resolve/id", + RESTORE: "http://ns.adobe.com/adobecloud/rel/restore", + POLICY: "http://ns.adobe.com/adobecloud/rel/ac/policy", + PERMISSIONS: "http://ns.adobe.com/adobecloud/rel/ac/effective", + }; + const er = "CCAC-1UP: APIConfigStore", + tr = new (class { + init(e, t) { + const { imsData: n, initToken: r, onIMSChangeRegister: o } = t, + { environment: a, clientId: i } = n; + (this.accessToken = r), (this.apiKey = i), (this.environment = a), (this.locale = e), o(() => this.updateAccessToken(n)); + } + updateAccessToken(e) { + return ( + (t = this), + (n = void 0), + (o = function* () { + console.info(`${er}: Updating IMS data`); + try { + const t = yield e.fetchToken(); + this.accessToken = t; + } catch (e) { + console.error(`${er}: Error while updating access token: ${e}`); + } + }), + new ((r = void 0) || (r = Promise))(function (e, a) { + function i(e) { + try { + c(o.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(o.throw(e)); + } catch (e) { + a(e); + } + } + function c(t) { + var n; + t.done + ? e(t.value) + : ((n = t.value), + n instanceof r + ? n + : new r(function (e) { + e(n); + })).then(i, s); + } + c((o = o.apply(t, n || [])).next()); + }) + ); + var t, n, r, o; + } + })(), + nr = { + dockHUD: !0, + dockPageControls: !0, + enableFormFilling: !1, + enablePersonalComments: !1, + hideDownloadButtonInHUD: !0, + hideFitPageButtonInHUD: !1, + hideFitWidthButtonInHUD: !1, + showAnnotationTools: !1, + showDownloadPDF: !1, + showFileStatusInfo: !1, + showLeftHandPanel: !1, + showPageControls: !1, + fileDownloadAbortable: !0, + }; + var rr = n(8472), + or = n.n(rr), + ar = n(92815), + ir = n.n(ar), + sr = + (n(56553), + function (e, t, n, r) { + return new (n || (n = Promise))(function (o, a) { + function i(e) { + try { + c(r.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(r.throw(e)); + } catch (e) { + a(e); + } + } + function c(e) { + var t; + e.done + ? o(e.value) + : ((t = e.value), + t instanceof n + ? t + : new n(function (e) { + e(t); + })).then(i, s); + } + c((r = r.apply(e, t || [])).next()); + }); + }); + function cr() { + return (performance && performance.now()) || Date.now(); + } + var lr = function (e, t, n, r) { + return new (n || (n = Promise))(function (o, a) { + function i(e) { + try { + c(r.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(r.throw(e)); + } catch (e) { + a(e); + } + } + function c(e) { + var t; + e.done + ? o(e.value) + : ((t = e.value), + t instanceof n + ? t + : new n(function (e) { + e(t); + })).then(i, s); + } + c((r = r.apply(e, t || [])).next()); + }); + }; + function ur(e, t, n) { + const r = t || e.statusText || "Status Response Error", + o = new Error(r); + return (o.response = e), (o.jsonResponse = n), (o.statusCode = e.status), (o.requestId = e.headers && e.headers.get("x-request-id")), o; + } + class dr { + constructor() { + (this.options = { method: "GET", headers: {} }), (this._bodyIsJSON = !1), (this.error = null); + } + static parseJSONResponse(e) { + return lr(this, void 0, void 0, function* () { + try { + return { response: e, parsedBody: yield e.json() }; + } catch (t) { + throw ur(e, "Failed to parse JSON"); + } + }); + } + url(e = "/") { + return (this._url = e), this; + } + method(e = "GET") { + const t = e.toUpperCase(); + return qn.includes(t) && (this.options.method = t), this; + } + content(e = "*/*") { + return (this.options.headers["Content-Type"] = e || "*/*"), this; + } + header(e, t) { + return void 0 !== t && (this.options.headers[e] = t), this; + } + json(e = {}) { + this._bodyIsJSON = !0; + const t = this.options.body || {}; + return this.body(Object.assign(Object.assign({}, t), e)); + } + body(e) { + return (this.options.body = e), this; + } + fetch() { + let { body: e } = this.options; + return ( + this._bodyIsJSON && (e = JSON.stringify(this.options.body)), + (function (e, t = {}) { + return sr(this, void 0, void 0, function* () { + try { + const [n, r] = yield (function (e, t) { + return sr(this, void 0, void 0, function* () { + const n = cr(); + try { + return [yield fetch(e, t), cr() - n]; + } catch (e) { + throw ((e.response_time = cr() - n), e); + } + }); + })(e, Object.assign({ credentials: "same-origin" }, t)); + return console.log(r), n; + } catch (e) { + throw e; + } + }); + })(this._url, Object.assign(Object.assign({}, this.options), { body: e })) + ); + } + fetchAndVerify() { + return lr(this, void 0, void 0, function* () { + return dr.verifyStatus(yield this.fetch()); + }); + } + fetchAndVerifyJson() { + return lr(this, void 0, void 0, function* () { + const e = yield this.fetchAndVerify(); + return yield e.json(); + }); + } + } + (dr.verifyStatus = (e) => { + const { status: t } = e; + if (!(t >= 200 && t < 400)) throw ur(e); + return e; + }), + (dr.parseTextResponse = (e) => + lr(void 0, void 0, void 0, function* () { + return { response: e, parsedBody: yield e.text() }; + })); + class pr extends dr { + constructor(e) { + super(); + const t = tr.accessToken ? { Authorization: `Bearer ${tr.accessToken}` } : {}; + (this.options = { headers: Object.assign({ "X-Api-Key": tr.apiKey }, t) }), this.url(e); + } + static parseLinkHeaders(e) { + const { refs: t } = ir().parse(e.headers.get("link") || ""); + return (e.links = t), e; + } + url(e = "/") { + let t = e; + if (t.startsWith("https://")) return (this._url = t), this; + e.startsWith("/") || (t = `/${e}`); + const n = (this._url = `${Xn[tr.environment].ACP_URI}${t}`); + return (this._url = `${n}${t}`), this; + } + paginatedFetch() { + return this.fetch() + .then(pr.verifyStatus) + .then(pr.parseJSONResponse) + .then((e) => ((e.next = this.next(e.parsedBody)), e)); + } + next(e) { + const t = (function (t, n) { + try { + const t = e._links.next.href; + return void 0 !== t ? t : n; + } catch (e) { + return n; + } + })(); + if (t) return this.url(t), this.fetch.bind(this); + } + } + var fr = function (e, t, n, r) { + return new (n || (n = Promise))(function (o, a) { + function i(e) { + try { + c(r.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(r.throw(e)); + } catch (e) { + a(e); + } + } + function c(e) { + var t; + e.done + ? o(e.value) + : ((t = e.value), + t instanceof n + ? t + : new n(function (e) { + e(t); + })).then(i, s); + } + c((r = r.apply(e, t || [])).next()); + }); + }, + mr = function (e, t, n, r) { + return new (n || (n = Promise))(function (o, a) { + function i(e) { + try { + c(r.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(r.throw(e)); + } catch (e) { + a(e); + } + } + function c(e) { + var t; + e.done + ? o(e.value) + : ((t = e.value), + t instanceof n + ? t + : new n(function (e) { + e(t); + })).then(i, s); + } + c((r = r.apply(e, t || [])).next()); + }); + }; + var hr = function (e, t, n, r) { + return new (n || (n = Promise))(function (o, a) { + function i(e) { + try { + c(r.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(r.throw(e)); + } catch (e) { + a(e); + } + } + function c(e) { + var t; + e.done + ? o(e.value) + : ((t = e.value), + t instanceof n + ? t + : new n(function (e) { + e(t); + })).then(i, s); + } + c((r = r.apply(e, t || [])).next()); + }); + }; + function vr(e, t) { + return hr(this, void 0, void 0, function* () { + const n = yield (function () { + return mr(this, void 0, void 0, function* () { + const { children: e } = yield (function () { + return fr(this, void 0, void 0, function* () { + const { parsedBody: e } = yield new pr("/").method("GET").header("Cache-Control", "max-age=2592000").fetch().then(pr.verifyStatus).then(pr.parseJSONResponse); + return e; + }); + })(), + t = (function (e, t, n = {}, r = "id") { + try { + let o = e[t]; + Array.isArray(o) && (o = o.find((e) => e.mode === r)); + const { templated: a, href: i } = o; + return a && !1 !== n ? decodeURIComponent(or()(i).fill(n)) : i; + } catch (e) {} + })(e.find((e) => "Index.json" === e["repo:name"])._links, $n.PRIMARY), + { parsedBody: n } = yield new pr(t).method("GET").header("Cache-Control", "max-age=60").fetch().then(pr.verifyStatus).then(pr.parseJSONResponse); + return n; + }); + })(), + r = $n[`RESOLVE_${e}`], + o = n._links[r].href; + return decodeURIComponent(or()(o).fill({ [e.toLowerCase()]: t })); + }); + } + function yr(e) { + return hr(this, void 0, void 0, function* () { + return (function (e) { + return hr(this, void 0, void 0, function* () { + return new pr(e).method("head").fetch().then(pr.verifyStatus).then(pr.parseLinkHeaders); + }); + })(yield vr("ID", e)); + }); + } + var gr = function (e, t, n, r) { + return new (n || (n = Promise))(function (o, a) { + function i(e) { + try { + c(r.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(r.throw(e)); + } catch (e) { + a(e); + } + } + function c(e) { + var t; + e.done + ? o(e.value) + : ((t = e.value), + t instanceof n + ? t + : new n(function (e) { + e(t); + })).then(i, s); + } + c((r = r.apply(e, t || [])).next()); + }); + }; + const br = { QUEUED: "QUEUED", COMPLETED: "COMPLETED", FAILED: "FAILED", RUNNING: "RUNNING", ASSET_UPLOAD_STARTED: "ASSET_UPLOAD_STARTED", ASSET_UPLOAD_COMPLETED: "ASSET_UPLOAD_COMPLETED" }, + Er = ["test.inddc"], + Dr = 12, + Cr = (e) => new Promise((t) => setTimeout(t, e)); + function wr(e, t, n) { + var r, o, a, i; + return gr(this, void 0, void 0, function* () { + const s = e.statusUrls.all; + let c; + try { + c = yield (function (e) { + return gr(this, void 0, void 0, function* () { + return new pr() + .method("GET") + .url(e) + .fetch() + .then((e) => e.json()) + .catch((e) => console.log("error", e)); + }); + })(s); + } catch (e) { + throw (console.error(e), new Error("status call failed")); + } + const l = null === (r = null == c ? void 0 : c.events) || void 0 === r ? void 0 : r.map((e) => e.state); + if (n >= Dr) throw "Request took too long"; + if (((n += 1), t < 3 && (t += 1), null == (u = l) ? void 0 : u.includes(br.COMPLETED))) + return { + success: !0, + pdfPath: null === (a = null === (o = null == c ? void 0 : c.events) || void 0 === o ? void 0 : o.filter((e) => e.state === br.ASSET_UPLOAD_COMPLETED)) || void 0 === a ? void 0 : a[0].data.destination.url, + }; + if ( + (function (e) { + return null == e ? void 0 : e.includes(br.FAILED); + })(l) + ) { + const e = null === (i = null == c ? void 0 : c.events) || void 0 === i ? void 0 : i.filter((e) => e.state == br.FAILED)[0]; + throw new Error(`conversion failed, reason: ${e.data.reason} erroCode: ${e.data.code}`); + } + { + const r = Math.pow(2, t); + return yield Cr(1e3 * r), yield wr(e, t, n); + } + var u; + }); + } + function Sr(e, t) { + return gr(this, void 0, void 0, function* () { + return new Promise((n, r) => { + (function (e, t) { + return gr(this, void 0, void 0, function* () { + return new pr() + .content("application/json") + .json({ assets: [{ source: { type: "ACP", assetId: e }, destination: "test.inddc" }], params: { jobType: "RENDITION_PDFPRINT", targetDocuments: Er, outputFileBaseString: "temp", outputFolderPath: "temp" } }) + .method("POST") + .url(t) + .fetch() + .then((e) => e.json()) + .catch((e) => console.log("error", e)); + }); + })(e, t) + .then((e) => wr(e, 0, 0)) + .then((e) => { + n(e.pdfPath); + }) + .catch((e) => { + console.log(e), r(e); + }); + }); + }); + } + var Ar = function (e, t, n, r) { + return new (n || (n = Promise))(function (o, a) { + function i(e) { + try { + c(r.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(r.throw(e)); + } catch (e) { + a(e); + } + } + function c(e) { + var t; + e.done + ? o(e.value) + : ((t = e.value), + t instanceof n + ? t + : new n(function (e) { + e(t); + })).then(i, s); + } + c((r = r.apply(e, t || [])).next()); + }); + }; + const kr = n(37088), + _r = "CCAC-1UP: oneup: pdf: OneUpPdf", + Tr = ({ urn: e, viewerPath: t, mimeType: n, previewURL: r, logOneUpAnalytics: o }) => { + const [a, i] = Yn( + () => + Ar(void 0, void 0, void 0, function* () { + return ( + (e = t), + new Promise((t, n) => { + if (document.getElementById("adobe_dc_sdk_launcher")) + window.AdobeDC && window.AdobeDC.View + ? t(window.AdobeDC) + : document.addEventListener("adobe_dc_view_sdk.ready", () => { + t(window.AdobeDC); + }); + else { + const r = document.createElement("script"); + (r.onload = () => { + document.addEventListener("adobe_dc_view_sdk.ready", () => { + t(window.AdobeDC); + }); + }), + (r.onerror = n), + (r.src = e), + (r.id = "adobe_dc_sdk_launcher"), + (r.async = !0); + const { locale: o } = tr, + a = o.replace("_", "-"); + r.setAttribute("data-locale", a), document.body.appendChild(r); + } + }) + ); + var e; + }), + [t] + ); + let s, + { APIs: u, setAPIs: d, adobeViewer: p, setAdobeViewer: f, scrollPage: m, setScrollPage: h, containerRef: v } = (0, c.useContext)(vn); + console.log(i); + const [y, g] = (0, c.useState)(!0); + (0, c.useLayoutEffect)( + () => () => { + const e = window.document.getElementById("adobe-dc-view"); + D().unmountComponentAtNode(e), g(!0); + }, + [] + ), + (0, c.useLayoutEffect)( + () => () => { + const e = window.document.getElementById("adobe-dc-view"); + D().unmountComponentAtNode(e), g(!0); + }, + [e] + ), + (0, c.useEffect)(() => { + a && + (s = (function (e) { + const { environment: t } = tr; + return new e.View({ clientId: Kn[t], showTopBar: !1 }); + })(a)); + }, [a, e]); + const b = (e, t) => + Ar(void 0, void 0, void 0, function* () { + if (t === dn) + return yield (function (e) { + return ( + (t = this), + (n = void 0), + (o = function* () { + let t = e; + if (e.startsWith("urn:")) { + const n = (yield yr(e)).links.find((e) => e.rel === $n.DOWNLOAD), + { templated: r, uri: o } = n, + a = { resource: $n.PRIMARY }; + r && (t = decodeURIComponent(or()(o).fill(a))); + } + return new pr(t).method("GET").fetch().then(pr.verifyStatus).then(pr.parseJSONResponse); + }), + new ((r = void 0) || (r = Promise))(function (e, a) { + function i(e) { + try { + c(o.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(o.throw(e)); + } catch (e) { + a(e); + } + } + function c(t) { + var n; + t.done + ? e(t.value) + : ((n = t.value), + n instanceof r + ? n + : new r(function (e) { + e(n); + })).then(i, s); + } + c((o = o.apply(t, n || [])).next()); + }) + ); + var t, n, r, o; + })(e); + if (t === pn) + try { + return yield Sr(e, r); + } catch (e) { + const t = { type: fn.Error, subtype: mn.Page, error_desc: (null == e ? void 0 : e.message) ? e.message : e }; + throw (o(t), e); + } + }); + return ( + (0, c.useEffect)(() => { + a && + b(e, n) + .then((t) => { + let r = t; + n === dn ? (r = t.parsedBody.href) : n == pn && (r = t); + const o = { urn: e, downloadUrl: r }; + g(!1), + s + .previewFile( + (function (e) { + const { urn: t, downloadUrl: n } = e; + return { content: { promise: void 0, location: { url: n } }, metaData: { fileName: t } }; + })(o), + nr + ) + .then((e) => + Ar(void 0, void 0, void 0, function* () { + (p = e), (u = yield e.getAPIs()), f(p), d(u); + }) + ) + .catch((e) => console.error(`${_r} Preview of Pdf document failed , error: ${e}`)), + s.registerCallback( + "EVENT_LISTENER", + (e) => { + "CURRENT_ACTIVE_PAGE" === e.type && ((m = e.data.pageNumber), h(m)); + }, + { enableFilePreviewEvents: !0, listenOn: ["CURRENT_ACTIVE_PAGE"] } + ); + }) + .catch((e) => { + console.error(`${_r} Error in Getting Rendtion URL , error: ${e}`); + }); + }, [a, e]), + l().createElement( + l().Fragment, + null, + l().createElement( + "div", + { style: { height: "100%", width: "auto" }, className: y ? kr.waitSpinner : null, ref: v }, + y ? l().createElement(Dn(), { className: kr.waitPosition, size: "L" }) : void 0, + l().createElement("div", { id: "adobe-dc-view" }) + ) + ) + ); + }, + Ir = n(88445), + Or = (e) => { + var t; + const { handleOpenIn: n, openActionTitle: r, canChangeDefaultApp: o, handleDefaultAppChange: a, availableApps: i, getDefaultAppSapCode: s, actionButtonProps: f } = e, + h = o ? s() : void 0, + v = (0, c.useCallback)( + (e) => (t) => { + n(e); + }, + [] + ), + y = (0, c.useCallback)((e) => { + a(); + }, []), + g = ({ src: e, alt: t }) => l().createElement("img", { className: "spectrum-Icon spectrum-Icon--sizeS", src: e, alt: t }); + return (null == i ? void 0 : i.length) > 1 + ? l().createElement( + z(), + { alignRight: !0 }, + l().createElement( + d.default, + { placement: "bottom", trigger: "hover", delayShow: T }, + l().createElement( + _(), + Object.assign( + { + className: Ir.openInBtn, + variant: "primary", + label: r && "" != r ? r : te.getMessage("oneup.headerbar.actionBtn.openIn"), + key: "OneUpHeader_OpenInButton", + "data-test-id": "OneUpHeader_OpenInButton", + "aria-label": "oneup-open-in-button-label", + "aria-haspopup": !0, + }, + f + ) + ), + l().createElement(p.default, null, r && "" != r ? r : te.getMessage("oneup.headerbar.actionBtn.openIn")) + ), + l().createElement( + u.Menu, + { dropdownMenu: !0 }, + (() => { + const e = []; + return ( + i.forEach((t) => { + e.push( + l().createElement( + u.MenuItem, + { icon: l().createElement(g, { src: t.icon, alt: t.name }), onClick: v(t.sapcode) }, + t.name, + o && t.sapcode === h ? l().createElement("div", { style: { marginLeft: "5px" } }, l().createElement(m._H, { id: "oneup.headerbar.openmenu.defaultApp" })) : "" + ) + ); + }), + o && e.push(l().createElement(l().Fragment, null, l().createElement(u.MenuDivider, null), l().createElement(u.MenuItem, { onClick: y }, l().createElement(m._H, { id: "oneup.headerbar.openmenu.changeDefaultApp" })))), + l().createElement(l().Fragment, null, e) + ); + })() + ) + ) + : l().createElement( + d.default, + { placement: "bottom", trigger: "hover", delayShow: T }, + l().createElement( + _(), + Object.assign( + { + className: Ir.openInBtn, + variant: "primary", + label: r && "" != r ? r : te.getMessage("oneup.headerbar.actionBtn.open"), + key: "OneUpHeader_OpenButton", + "data-test-id": "OneUpHeader_OpenButton", + "aria-label": "oneup-open-button-label", + onClick: v(null === (t = i[0]) || void 0 === t ? void 0 : t.sapcode), + }, + f + ) + ), + l().createElement(p.default, null, r && "" != r ? r : te.getMessage("oneup.headerbar.actionBtn.open")) + ); + }, + Fr = n(18333), + xr = (e) => { + const { clickHandler: t, disableViewInWeb: n, disableViewInWebTooltip: r } = e, + o = (0, c.useCallback)( + () => (e) => { + t(); + }, + [] + ); + return l().createElement( + d.default, + { placement: "bottom", trigger: "hover", delayShow: T }, + l().createElement(_(), { + className: Fr.viewInWebBtn, + variant: "primary", + label: te.getMessage("oneup.headerbar.actionBtn.viewInWeb"), + key: "OneUpHeader_ViewInWebButton", + disabled: !!n, + "data-test-id": "OneUpHeader_ViewInWebButton", + "aria-label": "oneup-view-in-web-button-label", + onClick: o(), + }), + l().createElement(p.default, null, r || te.getMessage("oneup.headerbar.actionBtn.viewInWeb")) + ); + }; + var Nr = function (e, t, n, r) { + var o, + a = arguments.length, + i = a < 3 ? t : null === r ? (r = Object.getOwnPropertyDescriptor(t, n)) : r; + if ("object" == typeof Reflect && "function" == typeof Reflect.decorate) i = Reflect.decorate(e, t, n, r); + else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (i = (a < 3 ? o(i) : a > 3 ? o(t, n, i) : o(t, n)) || i); + return a > 3 && i && Object.defineProperty(t, n, i), i; + }, + Rr = function (e, t) { + if ("object" == typeof Reflect && "function" == typeof Reflect.metadata) return Reflect.metadata(e, t); + }; + let Lr = class extends l().Component { + constructor() { + super(...arguments), + (this.isRunning = !1), + (this.onClick = (e) => { + return ( + (t = this), + (n = void 0), + (o = function* () { + const { onClick: t } = this.props; + try { + (this.isRunning = !0), t && (yield t(e)); + } finally { + (0, i.runInAction)(() => { + this.isRunning = !1; + }); + } + }), + new ((r = void 0) || (r = Promise))(function (e, a) { + function i(e) { + try { + c(o.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(o.throw(e)); + } catch (e) { + a(e); + } + } + function c(t) { + var n; + t.done + ? e(t.value) + : ((n = t.value), + n instanceof r + ? n + : new r(function (e) { + e(n); + })).then(i, s); + } + c((o = o.apply(t, n || [])).next()); + }) + ); + var t, n, r, o; + }); + } + render() { + const e = this.props, + { children: t, inProgressLabel: n } = e, + r = (function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + })(e, ["children", "inProgressLabel"]); + return l().createElement(_(), Object.assign({}, r, { disabled: this.isRunning, onClick: this.onClick }), (this.isRunning && n) || t); + } + }; + Nr([i.observable, Rr("design:type", Object)], Lr.prototype, "isRunning", void 0), Nr([i.action, Rr("design:type", Object)], Lr.prototype, "onClick", void 0), (Lr = Nr([f.observer], Lr)); + const Mr = (e) => { + const { onClick: t, popover: n, icon: r, tooltip: o, placement: a } = e, + i = (function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + })(e, ["onClick", "popover", "icon", "tooltip", "placement"]), + s = matchMedia("(hover: hover)").matches, + c = Bn().v4(), + u = l().createElement(Lr, Object.assign({ variant: "action", icon: r, onClick: t, "aria-labelledby": o ? c : void 0, "aria-haspopup": !0 }, i)); + if ((!o && !n) || !s) return u; + const f = o ? l().createElement(p.default, null, o) : n; + return l().createElement(l().Fragment, null, l().createElement(d.default, { placement: a || "top", trigger: "hover", delayShow: T }, u, f), l().createElement("span", { hidden: !0, id: c }, o)); + }; + var Pr = n(60690); + const jr = n(19441), + Br = ({ iconSize: e }) => l().createElement(Pr.default, { size: e }, l().createElement("img", { src: jr, alt: "" })), + Zr = n(37713), + Ur = (e) => { + const { clickHandler: t } = e, + n = (0, c.useCallback)((e) => { + t(); + }, []); + return l().createElement(Mr, { + icon: l().createElement(Br, { iconSize: "S" }), + label: te.getMessage("oneup.headerbar.actionBtn.share"), + className: Zr.shareBtn, + tooltip: te.getMessage("oneup.headerbar.actionBtn.share"), + onClick: n, + key: "OneUpHeader_ShareButton", + "data-test-id": "OneUpHeader_ShareButton", + "aria-labelledby": "oneup-share-button-label", + "aria-haspopup": !0, + variant: "cta", + placement: "bottom", + }); + }, + zr = ({ color: e = "var(--iconBaseColor)", width: t = 18, height: n = 18 }) => { + const r = { fill: e }; + return l().createElement( + "svg", + { id: "icons", xmlns: "http://www.w3.org/2000/svg", width: t, height: n, viewBox: `0 0 ${t} ${n}` }, + l().createElement("rect", { x: "0", y: "0", width: "18", height: "18", rx: "3", ry: "3", style: r }), + l().createElement( + "g", + { fill: "white", transform: " translate(3.46 4.1) scale(0.58)" }, + l().createElement("ellipse", { cx: "1.59", cy: "6.688", rx: "1.533", ry: "1.507" }), + l().createElement("ellipse", { cx: "15.524", cy: "1.718", rx: "1.533", ry: "1.507" }), + l().createElement("ellipse", { cx: "13.043", cy: "16.282", rx: "1.533", ry: "1.507" }), + l().createElement("path", { + d: "M15.036,8.378a1.05,1.05,0,0,1-1.05-1.048,3.225,3.225,0,0,0-1.167-2.483,3.373,3.373,0,0,0-2.664-.732,1.05,1.05,0,0,1-.311-2.077,5.478,5.478,0,0,1,4.318,1.194,5.323,5.323,0,0,1,1.924,4.1,1.05,1.05,0,0,1-1.048,1.051Z", + }), + l().createElement("path", { + d: "M10.522,14.647a5.5,5.5,0,0,1-2.755-.74,1.05,1.05,0,0,1,1.05-1.819,3.389,3.389,0,0,0,2.831.266,3.291,3.291,0,0,0,1.983-1.93,1.05,1.05,0,0,1,1.962.748,5.388,5.388,0,0,1-3.244,3.161A5.447,5.447,0,0,1,10.522,14.647Z", + }), + l().createElement("path", { d: "M5.5,11.776a1.048,1.048,0,0,1-.817-.39A5.3,5.3,0,0,1,6.151,3.443,1.05,1.05,0,1,1,7.212,5.256,3.257,3.257,0,0,0,5.635,7.491a3.212,3.212,0,0,0,.676,2.575,1.05,1.05,0,0,1-.816,1.71Z" }) + ) + ); + }; + var Vr; + !(function (e) { + (e.INFOPANEL = "metadata"), (e.COMMENTS = "comments"); + })(Vr || (Vr = {})); + var Hr = n(31142), + Gr = n(80739), + Wr = n.n(Gr); + let Qr = class extends c.Component { + constructor(e) { + super(e), (this.state = { selectedSwatch: 0 }), (this.totalSwatch = 0); + } + onKeyDown(e) { + const { selectedSwatch: t } = this.state; + "ArrowLeft" === e && t > 0 && this.setState({ selectedSwatch: t - 1 }), "ArrowRight" === e && t < this.totalSwatch - 1 && this.setState({ selectedSwatch: t + 1 }); + } + selectColorSwatch(e) { + this.setState({ selectedSwatch: e }); + } + handleSpaceNameClick(e) { + const { handleSpaceClick: t } = this.props; + t && t(e); + } + renderHeaderArea() { + const { title: e, subtitle: t, note: n } = this.props; + return l().createElement( + "div", + { className: b()("header", { hidden: "string" != typeof e && "string" != typeof t && "string" != typeof n }) }, + l().createElement(d.default, { placement: "bottom", trigger: "hover", delayShow: T }, l().createElement("div", { className: "title" }, e), l().createElement(p.default, null, e)), + l().createElement("div", { className: "subtitle" }, t), + l().createElement("p", { className: b()("note", { hidden: "string" != typeof n || n.length <= 0 }) }, n) + ); + } + renderColorSwatches(e) { + const { label: t, colors: n } = e, + r = [], + { selectedSwatch: o } = this.state; + n.forEach((e, t) => { + r.push( + l().createElement("div", { + role: "button", + tabIndex: 0, + className: b()("color-swatch", { "is-selected": t === o }), + key: e.title, + style: { backgroundColor: e.value }, + onClick: () => this.selectColorSwatch(t), + onFocus: () => this.selectColorSwatch(t), + }) + ); + }); + const a = []; + return ( + n[o].format.forEach((e) => { + a.push(l().createElement("div", { className: "color-format-field", key: e.label }, l().createElement("div", { className: "label" }, e.label), l().createElement("div", { className: "value" }, e.value))); + }), + l().createElement( + "div", + { className: "color-theme-field", key: "colorSwatch" }, + l().createElement("div", { className: "label" }, t), + l().createElement("div", { className: "color-swatches" }, r), + l().createElement("div", { className: "color-info" }, l().createElement("div", { className: "label" }, n[o].title), l().createElement("div", { className: "color-format" }, a)) + ) + ); + } + renderContentArea() { + const e = te.getMessage("oneup.sidebar.panel.info.details"), + { details: t = [] } = this.props, + n = []; + return ( + t.forEach((e) => { + const { label: t, value: r, type: o, isValueClickable: a, onValueClick: i } = e; + o && "colorTheme" === o + ? n.push(this.renderColorSwatches(e)) + : n.push( + l().createElement( + "div", + { className: "field", key: t }, + l().createElement("div", { className: "label" }, t), + l().createElement("div", { className: "value" }, a ? l().createElement(Wr(), { onClick: i }, r) : l().createElement(l().Fragment, null, r)) + ) + ); + }), + l().createElement("div", { className: "info-panel-content" }, l().createElement("div", { className: "title" }, e), l().createElement("div", { className: "infoList" }, n)) + ); + } + renderAssetActions() { + const e = te.getMessage("oneup.sidebar.panel.info.asset.action"), + { assetActions: t = [] } = this.props, + n = []; + return ( + t.forEach((e) => { + const { icon: t, value: r, id: o, onValueClick: a, actionDisabled: i } = e; + n.push( + l().createElement( + "div", + { className: "asset-action-field" }, + l().createElement(_(), { + className: `asset-action-value ${!i && "asset-action-enabled"}`, + label: r, + icon: t, + disabled: i, + quiet: !0, + "aria-label": o, + onClick: () => { + a(o); + }, + }) + ) + ); + }), + l().createElement("div", { className: "asset-action-content" }, l().createElement("div", { className: "asset-action-title" }, e), l().createElement("div", { className: "infoList" }, n)) + ); + } + renderLocationInfo() { + const e = te.getMessage("oneup.sidebar.panel.info.location"), + t = te.getMessage("oneup.sidebar.panel.info.space.label"), + { locationInfo: n } = this.props; + return n && n.isSpaceAsset + ? l().createElement( + "div", + { className: "location-info" }, + l().createElement("div", { className: "title" }, e), + l().createElement( + "div", + { className: "space-info" }, + l().createElement("div", { className: "space-icon" }, l().createElement(zr, { color: n.spaceColor })), + l().createElement("div", { className: "space-name", onClick: () => this.handleSpaceNameClick(n.spaceID) }, n.spaceName) + ), + l().createElement("div", { className: "space-label" }, t) + ) + : l().createElement(l().Fragment, null); + } + render() { + const { details: e = [], assetActions: t = [] } = this.props; + return e.length + ? (e.forEach((e) => { + const { type: t } = e; + if (t && "colorTheme" === t) { + const { colors: t } = e; + this.totalSwatch = t.length; + } + }), + l().createElement( + "div", + { className: "info-panel", role: "button", tabIndex: 0, onKeyDown: (e) => this.onKeyDown(e.key) }, + this.renderHeaderArea(), + this.renderContentArea(), + t.length > 0 && this.renderAssetActions(), + this.renderLocationInfo() + )) + : l().createElement(l().Fragment, null); + } + }; + Qr = (function (e, t, n, r) { + var o, + a = arguments.length, + i = a < 3 ? t : null === r ? (r = Object.getOwnPropertyDescriptor(t, n)) : r; + if ("object" == typeof Reflect && "function" == typeof Reflect.decorate) i = Reflect.decorate(e, t, n, r); + else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (i = (a < 3 ? o(i) : a > 3 ? o(t, n, i) : o(t, n)) || i); + return a > 3 && i && Object.defineProperty(t, n, i), i; + })( + [ + f.observer, + (function (e, t) { + if ("object" == typeof Reflect && "function" == typeof Reflect.metadata) return Reflect.metadata(e, t); + })("design:paramtypes", [Object]), + ], + Qr + ); + const Jr = Qr; + class Yr { + constructor(e) { + (this.id = Vr.INFOPANEL), (this.icon = l().createElement(Hr.default, { size: "S" })), (this.tooltip = te.getMessage("oneup.sidebar.icon.info")), (this.panelItem = e); + } + getPanelNode() { + const e = this.panelItem.getPanelData(); + return l().createElement(Jr, Object.assign({}, e)); + } + } + const qr = (e) => new Yr(e); + var Xr = n(41818); + class Kr { + constructor() { + (this.id = Vr.COMMENTS), (this.icon = l().createElement(Xr.Z, { size: "S", id: "oneupSidebarIconComment" })), (this.tooltip = te.getMessage("oneup.sidebar.icon.comment")); + } + getPanelNode() { + return l().createElement(Wn, null); + } + } + const $r = new (class { + getPanel(e) { + let t; + switch (e.id) { + case Vr.INFOPANEL: + t = qr(e); + break; + case Vr.COMMENTS: + t = new Kr(); + break; + default: + t = qr(e); + } + return t; + } + })(); + var eo = n(35326); + const to = (e) => { + const { theme: t } = e, + n = "light" === t ? "#4b4b4b" : "#D1D1D1"; + return l().createElement( + "svg", + { xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", width: "18", height: "18", style: { marginRight: "8px" }, viewBox: "0 0 18 18" }, + l().createElement("defs", null, l().createElement("clipPath", { id: "clip-Fit_to_page" }, l().createElement("rect", { width: "18", height: "18" }))), + l().createElement( + "g", + { id: "Fit_to_page", "data-name": "Fit to page", clipPath: "url(#clip-Fit_to_page)" }, + l().createElement( + "g", + { id: "Group_298431", "data-name": "Group 298431", transform: "translate(-8.002 -8.02)" }, + l().createElement("path", { + id: "Subtraction_3", + "data-name": "Subtraction 3", + d: + "M13685.962,20059h-4.46a.5.5,0,0,1-.5-.5v-15a.5.5,0,0,1,.5-.5h6.863a1.018,1.018,0,0,1,.709.295l3.631,3.633a.986.986,0,0,1,.3.7V20052a4.969,4.969,0,0,0-.755-.8c-.089-.076-.17-.141-.247-.2v-3.066h-3.438a.494.494,0,0,1-.5-.5V20044H13682v14h2.968c.082.107.152.193.214.266a4.886,4.886,0,0,0,.777.732Zm3.037-14.365V20047h2.367l-2.367-2.367Z", + transform: "translate(-13671 -20035)", + fill: n, + }), + l().createElement("path", { + id: "Path_965630", + "data-name": "Path 965630", + d: "M17.817,16.933l-2.584-2.584a4.01,4.01,0,1,0-.884.884l2.584,2.584a.625.625,0,0,0,.884-.884ZM9,12a3,3,0,1,1,3,3,3,3,0,0,1-3-3Z", + transform: "translate(6 8.02)", + fill: n, + }) + ) + ) + ); + }, + no = (e) => { + const { theme: t } = e, + n = "light" === t ? "#4b4b4b" : "#D1D1D1"; + return l().createElement( + "svg", + { xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", width: "18", height: "18", style: { marginRight: "8px" }, viewBox: "0 0 18 18" }, + l().createElement("defs", null, l().createElement("clipPath", { id: "clip-Fit_to_Width" }, l().createElement("rect", { width: "18", height: "18" }))), + l().createElement( + "g", + { id: "Fit_to_Width", "data-name": "Fit_to Width", clipPath: "url(#clip-Fit_to_Width)" }, + l().createElement( + "g", + { id: "Group_298434", "data-name": "Group 298434", transform: "translate(-45 -36)" }, + l().createElement("path", { + id: "Path_965626", + "data-name": "Path 965626", + d: + "M11.289,1H3.563A.563.563,0,0,0,3,1.563V18.438A.563.563,0,0,0,3.563,19H15.938a.563.563,0,0,0,.563-.562V6.212a1.125,1.125,0,0,0-.329-.8L12.084,1.33A1.125,1.125,0,0,0,11.289,1Zm4.086,16.875H4.125V2.125h6.819V5.994a.563.563,0,0,0,.563.563h3.869ZM12,5.5V2.837L14.663,5.5Z", + transform: "translate(44 35)", + fill: n, + }), + l().createElement("path", { + id: "Union_1452", + "data-name": "Union 1452", + d: + "M13684.352,20076.33l-2.189-2.186a.565.565,0,0,1,0-.793l2.19-2.189a.549.549,0,0,1,.4-.166.559.559,0,0,1,.4.166.563.563,0,0,1,0,.8l-1.287,1.285h5.043l-1.291-1.285a.563.563,0,0,1,.793-.8l2.189,2.189a.564.564,0,0,1,0,.793l-2.183,2.186a.563.563,0,0,1-.8-.793l1.162-1.162h-4.785l1.158,1.162a.564.564,0,0,1,0,.793.539.539,0,0,1-.4.166.555.555,0,0,1-.4-.166Z", + transform: "translate(-13632.629 -20024.875)", + fill: n, + }) + ) + ) + ); + }, + ro = (e) => { + const { theme: t } = e, + n = "light" === t ? "#4b4b4b" : "#D1D1D1"; + return l().createElement( + "svg", + { xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", width: "18", height: "18", viewBox: "0 0 18 18" }, + l().createElement("defs", null, l().createElement("clipPath", { id: "clip-Single-page_view" }, l().createElement("rect", { width: "18", height: "18" }))), + l().createElement( + "g", + { id: "Single-page_view", "data-name": "Single-page view", clipPath: "url(#clip-Single-page_view)" }, + l().createElement( + "g", + { id: "Group_298427", "data-name": "Group 298427", transform: "translate(-45 -36)" }, + l().createElement("path", { + id: "Path_965626", + "data-name": "Path 965626", + d: + "M11.289,1H3.563A.563.563,0,0,0,3,1.563V18.438A.563.563,0,0,0,3.563,19H15.938a.563.563,0,0,0,.563-.562V6.212a1.125,1.125,0,0,0-.329-.8L12.084,1.33A1.125,1.125,0,0,0,11.289,1Zm4.086,16.875H4.125V2.125h6.819V5.994a.563.563,0,0,0,.563.563h3.869ZM12,5.5V2.837L14.663,5.5Z", + transform: "translate(44 35)", + fill: n, + }), + l().createElement("path", { + id: "XMLID_25_", + d: "M.563,5.5a.562.562,0,0,1-.4-.96L1.953,2.749.165.96a.562.562,0,0,1,.8-.8L3.15,2.351a.562.562,0,0,1,0,.8L.961,5.333A.562.562,0,0,1,.563,5.5Z", + transform: "translate(54.514 50.279) rotate(135)", + fill: n, + }), + l().createElement("path", { + id: "XMLID_25_2", + "data-name": "XMLID_25_", + d: "M.563,5.5a.562.562,0,0,1-.4-.96L1.953,2.749.165.96a.562.562,0,0,1,.8-.8L3.15,2.352a.562.562,0,0,1,0,.8L.962,5.333A.562.562,0,0,1,.563,5.5Z", + transform: "translate(51.809 44.559) rotate(-45)", + fill: n, + }) + ) + ) + ); + }, + oo = () => l().createElement("div", { className: "Divider" }), + ao = "CCAC-1UP: oneup: pdf: ViewportResize", + io = ["hover", "focus"], + so = (e) => { + const { adobeViewer: t, APIs: n, setZoom: r, isSelected: o, setIsSelected: a } = (0, c.useContext)(vn), + { theme: i } = e; + return ( + (0, c.useEffect)(() => { + a(null); + }, [t]), + l().createElement( + "div", + null, + l().createElement( + d.default, + { placement: "left", trigger: io, delayShow: T }, + l().createElement( + d.default, + { trigger: "click", placement: "left" }, + l().createElement(_(), { quiet: !0, variant: "action", icon: l().createElement(ro, { theme: i }) }), + l().createElement( + eo.default, + { className: "view-port-resize-popover" }, + (function () { + const e = []; + return ( + e.push( + l().createElement( + u.MenuItem, + { + key: "Fill_fit", + onClick: () => { + a(O), + t && + t + .executeCommand("SET_VIEW_MODE", "FIT_PAGE") + .then((e) => { + console.log(`${ao} FIT_PAGE Sucess ${e}`), + n + .getPageZoom(1) + .then((e) => r(e)) + .catch((e) => console.log(e)); + }) + .catch((e) => console.error(`${ao} FIT_PAGE Error ${e}`)); + }, + selected: o === O, + }, + l().createElement("div", { className: "view-port-popover-item" }, l().createElement(to, { theme: i }), l().createElement(m._H, { id: "oneup.sidebar.icon.FitPage" })) + ) + ), + e.push( + l().createElement( + u.MenuItem, + { + key: "Fill_width", + onClick: () => { + a(F), + t && + t + .executeCommand("SET_VIEW_MODE", "FIT_WIDTH") + .then((e) => { + console.log(` ${ao} FIT_WIDTH Sucess ${e}`), + n + .getPageZoom(1) + .then((e) => r(e)) + .catch((e) => console.log(e)); + }) + .catch((e) => console.error(` ${ao} FIT_WIDTH Error ${e}`)); + }, + selected: o === F, + }, + l().createElement("div", { className: "view-port-popover-item" }, l().createElement(no, { theme: i }), l().createElement(m._H, { id: "oneup.sidebar.icon.FitWidth" })) + ) + ), + e + ); + })() + ) + ), + l().createElement(p.default, null, l().createElement(m._H, { id: "oneup.sidebar.icon.View" })) + ), + l().createElement(oo, null) + ) + ); + }; + var co = n(49943), + lo = n(54376), + uo = function (e, t, n, r) { + return new (n || (n = Promise))(function (o, a) { + function i(e) { + try { + c(r.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(r.throw(e)); + } catch (e) { + a(e); + } + } + function c(e) { + var t; + e.done + ? o(e.value) + : ((t = e.value), + t instanceof n + ? t + : new n(function (e) { + e(t); + })).then(i, s); + } + c((r = r.apply(e, t || [])).next()); + }); + }; + const po = I.length, + fo = I[0], + mo = I[po - 1]; + function ho(e, t) { + return t.formatNumber(e, { style: "percent", minimumFractionDigits: 0, maximumFractionDigits: 0 }); + } + const vo = ["hover", "focus"], + yo = (0, m.XN)((e) => { + const { APIs: t, zoom: n, setZoom: r, mimeType: o, setIsSelected: a } = (0, c.useContext)(vn), + { intl: i, zoomKeyboardControlEnabled: s, platform: u, isMultiPageRendition: f } = e, + { jumpToPrevZoomLevel: h, jumpToNextZoomLevel: v, isMinusButtonDisabled: y, isPlusButtonDisabled: g, zoomHoverText: b } = (function (e, t, n, r, o, a) { + const [i, s] = (0, c.useState)(""), + [l, u] = (0, c.useState)(""), + [d, p] = (0, c.useState)(fo), + [f, m] = (0, c.useState)(mo), + { setIsSelected: h } = (0, c.useContext)(vn), + v = (0, c.useCallback)( + (e, t) => { + p(e), m(t); + }, + [a] + ), + y = () => (null == o ? void 0 : o.getZoomAPIs()), + g = (0, c.useCallback)(() => { + var e; + return null === (e = y()) || void 0 === e ? void 0 : e.getZoomLimits(); + }, [o]), + b = (t = e) => { + u(Math.round(100 * t).toFixed(0)); + }; + (0, c.useEffect)(() => { + const n = ho(e, t); + s(n), b(); + }, [e, t]), + (0, c.useEffect)(() => { + var t; + o && n + ? (((t = e), null == o ? void 0 : o.getPageZoom(t)) + .then((e) => { + r(e); + }) + .catch((e) => console.error(`Page zoom not found ${e}`)), + g() + .then(({ maxZoom: e, minZoom: t }) => { + v(t, e); + }) + .catch((e) => console.error(`Zoom limits for PDF not found ${e}`))) + : v(fo, mo); + }, [o, a]); + const E = (0, c.useCallback)( + (n, o) => { + if (null != n) { + const o = (function (e, t, n) { + return Math.max(t, Math.min(e, n)); + })(n, d, f); + if (Math.abs(e - o) > 0.001) { + r(o); + const e = ho(o, t); + s(e), b(o); + } + } + }, + [t, r, e] + ), + D = (0, c.useCallback)( + (t) => { + if (n) + t + ? (function () { + var e; + uo(this, void 0, void 0, function* () { + const t = yield null === (e = y()) || void 0 === e ? void 0 : e.zoomIn(); + r(t), b(t); + }); + })() + : (function () { + var e; + uo(this, void 0, void 0, function* () { + const t = yield null === (e = y()) || void 0 === e ? void 0 : e.zoomOut(); + r(t), b(t); + }); + })(); + else if (e !== (t ? f : d)) { + const [n, r] = (function (e) { + const t = po - 1; + if (e <= fo) return [0, Math.min(1, t)]; + if (e >= mo) return [Math.max(0, t - 1), Math.max(0, t)]; + for (let t = 1; t < po; ++t) { + if (e === I[t]) return [t - 1, t + 1]; + if (e < I[t]) return [t - 1, t]; + } + return [0, 1]; + })(Math.round(100 * e) / 100); + E(t ? I[r] : I[n], t); + } + }, + [e, E, o] + ), + C = (0, c.useCallback)(() => { + h(null), D(!1); + }, [D, o]), + w = (0, c.useCallback)(() => { + h(null), D(!0); + }, [D]); + return { displayText: i, zoomHoverText: l, setDisplayText: s, jumpToPrevZoomLevel: C, jumpToNextZoomLevel: w, isMinusButtonDisabled: () => e <= d, isPlusButtonDisabled: () => e >= f, setZoomFactor: E }; + })(n, i, f, r, t, o), + E = (function () { + const [e, t] = (0, c.useState)(0); + return () => t((e) => e + 1); + })(), + [D, C] = (0, c.useState)(!1), + [w, S] = (0, c.useState)(!1); + D && (C(!1), v()), w && (S(!1), h()); + const A = (0, c.useCallback)((e) => { + "mac" == u && ("=" === e.key && e.metaKey && (a(null), E(), C(!0)), "-" === e.key && e.metaKey && (a(null), E(), S(!0))), + "win" == u && ("=" === e.key && e.ctrlKey && (a(null), E(), C(!0)), "-" === e.key && e.ctrlKey && (a(null), E(), S(!0))); + }, []); + function k(e, t = !0) { + const n = t ? g() : y(), + r = t ? v : h; + return l().createElement( + d.default, + { placement: "left", trigger: vo }, + l().createElement(_(), { variant: "action", quiet: !0, icon: e, onClick: r, disabled: n }), + l().createElement( + p.default, + null, + ((e) => { + const t = e ? "oneup.sidebar.icon.zoomin" : "oneup.sidebar.icon.zoomout"; + return "tr_TR" === te.getLocale() + ? l().createElement(l().Fragment, null, l().createElement(m._H, { id: t }), l().createElement(l().Fragment, null, " %", b)) + : l().createElement(l().Fragment, null, l().createElement(m._H, { id: t }), l().createElement(l().Fragment, null, " ", b, " %")); + })(t) + ) + ); + } + return ( + s && + (0, c.useEffect)( + () => ( + window.addEventListener("keydown", A), + () => { + window.removeEventListener("keydown", A); + } + ), + [] + ), + l().createElement("div", { className: "sidebarZoom" }, [k(l().createElement(co.Z, { size: "S" }), !0), k(l().createElement(lo.Z, { size: "S" }), !1)]) + ); + }); + var go = n(18664), + bo = n(2736), + Eo = n(6750); + const Do = ["hover", "focus"], + Co = n(56257), + wo = () => { + const { APIs: e } = (0, c.useContext)(vn), + { scrollPage: t } = (0, c.useContext)(vn), + [n, r] = (0, c.useState)(1), + [o, a] = (0, c.useState)(0), + [i, s] = (0, c.useState)(0), + [u, f] = (0, c.useState)(0), + h = l().useMemo(() => i >= 1 && i <= o, [i]); + return ( + (0, c.useEffect)(() => { + r(t), s(t), f(t); + }, [t]), + (0, c.useEffect)(() => { + e && + e + .getPDFMetadata() + .then((t) => { + a(t.numPages), + e.getCurrentPage().then((e) => { + r(e), s(e); + }); + }) + .catch((e) => console.error(`CCAC-1UP: oneup: pdf: PageNavigation Could not find metadata for PDF document , error: ${e}`)); + }, [e]), + (0, c.useEffect)(() => { + !(function () { + var t, r, o, a; + (t = this), + (r = void 0), + (a = function* () { + e && + (yield e.getCurrentPage()) !== n && + e.gotoLocation(n).then(() => { + s(n), f(n); + }); + }), + new ((o = void 0) || (o = Promise))(function (e, n) { + function i(e) { + try { + c(a.next(e)); + } catch (e) { + n(e); + } + } + function s(e) { + try { + c(a.throw(e)); + } catch (e) { + n(e); + } + } + function c(t) { + var n; + t.done + ? e(t.value) + : ((n = t.value), + n instanceof o + ? n + : new o(function (e) { + e(n); + })).then(i, s); + } + c((a = a.apply(t, r || [])).next()); + }); + })(); + }, [n]), + l().createElement( + "div", + { className: "PageNavigation" }, + l().createElement( + d.default, + { placement: "left", trigger: Do, delayShow: T }, + l().createElement(Eo.default, { + id: "Pageinput", + className: Co.inputArea, + type: "number", + onChange: (e) => { + s(parseInt(e, 10)); + }, + value: i, + onKeyPress: (e) => { + const t = parseInt(document.getElementById("Pageinput").value, 10); + "Enter" === e.key && h ? (r(t), f(t)) : "Enter" !== e.key || h || s(u); + }, + onKeyDown: (e) => { + let t = parseInt(e.target.value, 10); + "ArrowDown" === e.key ? ((t -= 1), t >= 1 && (r(t), f(t)), e.preventDefault()) : "ArrowUp" === e.key && ((t += 1), t <= o && (r(t), f(t)), e.preventDefault()); + }, + onBlur: () => { + s(u); + }, + }), + l().createElement(p.default, null, l().createElement(m._H, { id: "oneup.sidebar.icon.InputPage" })) + ), + l().createElement( + d.default, + { placement: "left", trigger: Do, delayShow: T }, + l().createElement("div", { className: "TotalArea" }, o), + l().createElement(p.default, null, l().createElement(m._H, { id: "oneup.sidebar.icon.TotalPage" })) + ), + (() => { + const e = []; + return ( + e.push( + l().createElement( + d.default, + { placement: "left", trigger: Do, delayShow: T }, + l().createElement(_(), { + variant: "action", + quiet: !0, + icon: l().createElement(go.Z, { size: "S" }), + onClick: () => { + n > 1 && r(n - 1); + }, + disabled: 1 === n, + }), + l().createElement(p.default, null, l().createElement(m._H, { id: "oneup.sidebar.icon.PrevButton" })) + ) + ), + e.push( + l().createElement( + d.default, + { placement: "left", trigger: Do, delayShow: T }, + l().createElement(_(), { + className: "nextClick", + variant: "action", + quiet: !0, + icon: l().createElement(bo.Z, { size: "S" }), + onClick: () => { + n < o && r(n + 1); + }, + disabled: n === o, + }), + l().createElement(p.default, null, l().createElement(m._H, { id: "oneup.sidebar.icon.NextButton" })) + ) + ), + e + ); + })(), + l().createElement(oo, null) + ) + ); + }; + function So(e) { + const { + canExport: t, + handleExport: n, + exportActionTitle: r, + disableExport: o, + disableExportTooltip: i, + canSchedule: s, + handleSchedule: c, + disableSchedule: f, + disableScheduleTooltip: h, + isViewInWebAvailable: v, + canOpen: y, + disableViewInWeb: g, + disableViewInWebTooltip: b, + handleViewInWeb: E, + assetSource: D, + getCustomMenuActions: C, + } = e, + w = !o, + S = !f, + A = !g, + k = []; + return ( + t && + k.push( + l().createElement( + d.default, + { placement: "left", trigger: "hover", disabled: w }, + l().createElement( + u.MenuItem, + { + disabled: o, + "data-test-id": "PrivateOneUp_Download", + key: "download", + onClick: () => { + n(); + }, + style: x, + }, + r && "" !== r ? l().createElement("div", null, r) : l().createElement(m._H, { id: "oneup.headerbar.menu.download" }) + ), + l().createElement(p.default, null, i) + ) + ), + s && + k.push( + l().createElement( + d.default, + { placement: "left", trigger: "hover", disabled: S }, + l().createElement( + u.MenuItem, + { + disabled: f, + "data-test-id": "PrivateOneUp_Schedule", + key: "Schedule", + onClick: () => { + c(); + }, + style: x, + }, + l().createElement(m._H, { id: "oneup.headerbar.menu.schedule" }) + ), + l().createElement(p.default, null, h) + ) + ), + D !== a.StockAssets && + D !== a.FireflyStyleKits && + y && + v && + k.push( + l().createElement( + d.default, + { placement: "left", trigger: "hover", disabled: A }, + l().createElement( + u.MenuItem, + { + disabled: g, + "data-test-id": "PrivateOneUp_viewInWeb", + key: "viewInWeb", + onClick: () => { + E(); + }, + style: x, + }, + l().createElement(m._H, { id: "oneup.headerbar.menu.viewInWeb" }) + ), + l().createElement(p.default, null, b) + ) + ), + C && + C().forEach((e) => { + const { actionId: t, handleActionClick: n, actionTitle: r, disableAction: o, disableActionTooltip: a } = e, + i = !o; + k.push( + l().createElement( + d.default, + { placement: "left", trigger: "hover", disabled: i }, + l().createElement( + u.MenuItem, + { + disabled: o, + "data-test-id": `PrivateOneUp_${t}`, + key: t, + onClick: () => { + n(); + }, + style: x, + }, + r + ), + l().createElement(p.default, null, a) + ) + ); + }), + k + ); + } + function Ao(e) { + return { + handleOpenIn: e.handleOpenIn, + canChangeDefaultApp: e.canChangeDefaultApp, + handleDefaultAppChange: e.handleDefaultAppChange, + availableApps: e.availableApps, + getDefaultAppSapCode: e.getDefaultAppSapCode, + openActionTitle: e.openActionTitle, + }; + } + const ko = (e) => { + return ( + (t = void 0), + (n = void 0), + (o = function* () { + try { + const { parsedBody: t } = yield (function (e) { + var t, n, r, o, a; + return ( + (n = this), + (r = void 0), + (a = function* () { + let n = e; + if (e.startsWith("urn:")) { + const r = yield yr(e); + n = null === (t = r.links.find((e) => e.rel === $n.MANIFEST)) || void 0 === t ? void 0 : t.uri; + } + return new pr(n).method("GET").fetch().then(pr.verifyStatus).then(pr.parseJSONResponse); + }), + new ((o = void 0) || (o = Promise))(function (e, t) { + function i(e) { + try { + c(a.next(e)); + } catch (e) { + t(e); + } + } + function s(e) { + try { + c(a.throw(e)); + } catch (e) { + t(e); + } + } + function c(t) { + var n; + t.done + ? e(t.value) + : ((n = t.value), + n instanceof o + ? n + : new o(function (e) { + e(n); + })).then(i, s); + } + c((a = a.apply(n, r || [])).next()); + }) + ); + })(e), + { children: n } = t, + r = n[0].width; + if (r) { + const { width: e, height: t } = r && n[0]; + return { width: e, height: t }; + } + } catch (t) { + console.error(`CCAC-1UP: clients: clouddocs: Could not get manifest data for ${e}, error: ${t}`); + } + }), + new ((r = void 0) || (r = Promise))(function (e, a) { + function i(e) { + try { + c(o.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(o.throw(e)); + } catch (e) { + a(e); + } + } + function c(t) { + var n; + t.done + ? e(t.value) + : ((n = t.value), + n instanceof r + ? n + : new r(function (e) { + e(n); + })).then(i, s); + } + c((o = o.apply(t, n || [])).next()); + }) + ); + var t, n, r, o; + }, + _o = (e) => { + (0, c.useState)( + (function (e) { + const { intl: t } = e; + te.setIntl(t); + })(e) + ); + const { store: t, urn: n, renditionSrc: r, extension: o, theme: s, canRender: u } = e, + { + showCarousel: d, + isPreviousEnabled: p, + isNextEnabled: f, + previousToolTip: m, + nextToolTip: g, + handlePreviousClick: b, + handleNextClick: E, + showSideBar: D, + imsHelper: C, + canShowPDF: w, + zoomKeyboardControlEnabled: S, + platform: k, + viewerPath: _, + mimeType: T, + getPreviewURL: I, + logOneUpAnalytics: O, + disableZoom: F, + } = t, + [x, N] = (0, c.useState)(() => { + const { defaultPanel: e } = t; + return e || ""; + }), + [R] = (0, c.useState)("psdc" === o), + L = R + ? ((e, t) => { + if (t) { + let t, n; + const [r, o] = Yn(() => ko(e), [e]); + if (r && !o) { + ({ width: t, height: n } = r); + const e = Number(t) || 0, + o = Number(n) || 0; + if (e && o) return { scaleX: e, scaleY: o }; + } + } + })(n, R) + : void 0, + M = () => { + const e = [l().createElement(wo, null), l().createElement(so, { theme: s })]; + let t = !1, + n = []; + return z() && ((t = !0), (n = [...e])), F ? n : [...n, l().createElement(yo, { zoomKeyboardControlEnabled: S, platform: k, isMultiPageRendition: t })]; + }, + P = (() => { + const e = void 0, + { sidebarPanelItems: n } = t; + if (!n || 0 === n.length) return e; + const r = n.find((e) => e.id === Vr.COMMENTS); + return r ? r.getPanelData() : e; + })(), + B = "comments" === x && (null == P ? void 0 : P.annotationsEnabled); + let Z, U; + const z = () => ((Z = I && I(T)), (U = T === dn && w && _), !(!U && !Z)); + let V, H; + L && ({ scaleX: V, scaleY: H } = L); + let G = l().createElement( + yn, + { urn: n, mimeType: T }, + l().createElement( + ce, + Object.assign( + {}, + (function (e) { + const { + handleBackClick: t, + backButtonIcon: n, + assetSource: r, + directory: o, + fileType: i, + syncStatus: s, + canShowSyncStatus: c, + canOpen: u, + canShare: d, + handleShare: p, + handleViewInWeb: f, + isViewInWebAvailable: m, + isAssetInsideFolder: g, + disableViewInWeb: b, + disableViewInWebTooltip: E, + theme: D, + } = e, + { title: C } = e; + let w; + if (r === a.SpacesDocs) { + const { spaceColor: t } = e; + w = t; + } + return { + oneUpHeaderProps: { + onBackClick: t, + iconNode: (() => { + if (n) return n; + switch (r) { + case a.CloudDocs: + return g ? l().createElement(y.Z, { size: "S" }) : l().createElement(v.Z, { size: "S" }); + case a.SharedWithYou: + return l().createElement(h.Z, { size: "S" }); + case a.SpacesDocs: + return l().createElement(zr, { color: w }); + default: + return l().createElement(v.Z, { size: "S" }); + } + })(), + menuItems: So(e), + getMenuItems: So, + cloudDocProps: e, + buttons: + r === a.StockAssets || r === a.FireflyStyleKits + ? [ + m && l().createElement(xr, Object.assign({}, { disableViewInWeb: b, disableViewInWebTooltip: E, clickHandler: f })), + u && l().createElement(Or, Object.assign({}, Object.assign(Object.assign({}, Ao(e)), { actionButtonProps: { variant: "cta" } }))), + ] + : [u && l().createElement(Or, Object.assign({}, Ao(e))), d && l().createElement(Ur, { clickHandler: p }), !u && m && l().createElement(xr, Object.assign({}, { clickHandler: f }))], + title: C, + fileType: i, + directory: o, + syncStatus: s, + canShowSyncStatus: c, + }, + oneUpIndexProps: { theme: D }, + }; + })(t) + ), + d && l().createElement(xn, { isPrevDisabled: !p, isNextDisabled: !f, goToPrev: b, goToNext: E, prevTooltip: m, nextTooltip: g }), + D && + (() => { + const { sidebarPanelItems: e } = t; + if (!e || 0 === e.length) return l().createElement(l().Fragment, null); + const n = e.map((e) => { + const t = $r.getPanel(e); + return l().createElement(A, { id: t.id, icon: t.icon, tooltip: t.tooltip }, x === e.id ? t.getPanelNode() : l().createElement(l().Fragment, null)); + }); + return l().createElement( + j, + { + currentPanel: x, + setCurrentPanel: (t) => { + (0, i.runInAction)(() => { + if ((N(t), "" !== x)) { + const t = e.find((e) => e.id === x); + t && t.panelOpened(); + } + }); + }, + buttons: M(), + }, + n + ); + })(), + z() + ? l().createElement(Tr, { urn: n, viewerPath: _, previewURL: Z, mimeType: T, logOneUpAnalytics: O }) + : l().createElement( + Tn, + { urn: n }, + l().createElement(_n, { assetURI: r, extension: o, canRender: u }, l().createElement(Jn, { src: r, type: "application/vnd.adobe.xd.cloudproject+dcx", scaleX: V, scaleY: H, showCommentAnnotations: B })) + ) + ) + ); + return D && P && (G = l().createElement(Gn, { imsHelper: C, urn: n, theme: s, locale: te.getRemappedLocale(), commentConfigureData: P }, G)), G; + }, + To = (0, f.observer)((e) => + l().createElement(_o, { + urn: e.store.urn, + canOpen: e.store.canOpen, + canRender: e.store.canRender, + availableApps: e.store.availableApps, + canShare: e.store.canShare, + canExport: e.store.canExport, + renditionSrc: e.store.renditionSrc, + canShowSyncStatus: e.store.canShowSyncStatus, + syncStatus: e.store.syncStatus, + title: e.store.title, + fileType: e.store.fileType, + extension: e.store.extension, + directory: e.store.directory, + intl: e.intl, + theme: e.store.theme, + store: e.store, + canShowPDF: e.store.canShowPDF, + logOneUpAnalytics: e.store.logOneUpAnalytics, + zoomKeyboardControlEnabled: e.store.zoomKeyboardControlEnabled, + platform: e.store.platform, + viewerPath: e.store.viewerPath, + getPreviewURL: e.store.getPreviewURL, + mimeType: e.store.mimeType, + isAssetInsideFolder: e.store.isAssetInsideFolder, + disableViewInWeb: e.store.disableViewInWeb, + disableExport: e.store.disableExport, + }) + ); + (0, m.XN)(To); + var Io = n(15930), + Oo = n.n(Io); + const Fo = { + cs: n(87394), + da: n(64547), + de: n(12808), + en: n(60223), + es: n(44856), + fi: n(80880), + fr: n(29176), + hu: n(11503), + it: n(89026), + ja: n(67865), + ko: n(47011), + nb: n(83390), + nl: n(29893), + pl: n(28195), + pt: n(13827), + ru: n(58152), + sv: n(59594), + tr: n(91349), + uk: n(88298), + zh: n(75060), + id: n(57216), + th: n(24848), + vi: n(17162), + }, + xo = { + cs: n(39569), + da: n(72840), + de: n(55142), + en: n(57012), + es: n(85172), + fi: n(70637), + fr: n(49856), + it: n(13344), + ja: n(88856), + ko: n(99425), + nb: n(98272), + nl: n(64105), + pl: n(60344), + pt: n(96314), + ru: n(33440), + sv: n(74653), + tr: n(27124), + zh: n(61128), + hu: n(98296), + id: n(35424), + uk: n(87338), + th: n(12343), + vi: n(82721), + zh_cn: n(61128), + zh_tw: n(58938), + }; + var No = function (e, t, n, r) { + var o, + a = arguments.length, + i = a < 3 ? t : null === r ? (r = Object.getOwnPropertyDescriptor(t, n)) : r; + if ("object" == typeof Reflect && "function" == typeof Reflect.decorate) i = Reflect.decorate(e, t, n, r); + else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (i = (a < 3 ? o(i) : a > 3 ? o(t, n, i) : o(t, n)) || i); + return a > 3 && i && Object.defineProperty(t, n, i), i; + }, + Ro = function (e, t) { + if ("object" == typeof Reflect && "function" == typeof Reflect.metadata) return Reflect.metadata(e, t); + }; + const Lo = "en_US"; + class Mo { + constructor(e = Lo) { + (this.fetchMessages = (e) => + new Promise((t, n) => { + this.languageCode !== Lo + ? Oo() + .get(`${e}/${this.languageCode}.json`) + .then( + (e) => { + this.setMessages(e.data), t(e); + }, + () => n() + ) + : t(""); + })), + (this.overrideMessages = (e) => { + e && "object" == typeof e && this.messages && "object" == typeof this.messages && this.setMessages(Object.assign(Object.assign({}, this.messages), e)); + }), + (this.locale = e), + ([this.languageCode, this.countryCode] = e.split("_")), + te.setLanguageCode(this.languageCode), + te.setLocale(this.locale), + (this.messages = this.getDefaultMessage()), + (0, m.oK)(Fo[this.languageCode.split("_")[0]]); + } + setMessages(e) { + this.messages = e; + } + getDefaultMessage() { + return this.countryCode && Object.keys(xo).includes(this.locale.toLowerCase()) ? xo[this.locale.toLowerCase()] : xo[this.languageCode]; + } + } + No([i.observable, Ro("design:type", Object)], Mo.prototype, "messages", void 0), + No([i.observable, Ro("design:type", String)], Mo.prototype, "languageCode", void 0), + No([i.action, Ro("design:type", Function), Ro("design:paramtypes", [Object]), Ro("design:returntype", void 0)], Mo.prototype, "setMessages", null), + No([i.action, Ro("design:type", Object)], Mo.prototype, "fetchMessages", void 0); + var Po = n(76489), + jo = n(72926), + Bo = n(22953), + Zo = n(10602); + const Uo = class { + static searchCCDQueryParams(e) { + return String(new URL(String(document.location)).searchParams.get(e)); + } + static getFileNameWithoutExtension(e) { + return e.replace(/\.[^/.]+$/, ""); + } + static getExtensionFromFileName(e) { + return /(?:\.([^.]+))?$/.exec(e)[1]; + } + static compareVersions(e, t) { + const n = e.split("."), + r = t.split("."); + let o = 0; + for (; o < Math.min(n.length, r.length); o += 1) { + const e = parseInt(n[o], 10), + t = parseInt(r[o], 10); + if (e > t) return 1; + if (e < t) return -1; + } + return n.length === r.length ? 0 : n.length < r.length ? -1 : 1; + } + static getAvailableFileName(e, t, n) { + let r, + o = ""; + const a = n && n.length; + r = a ? `${t}${o}.${n}` : `${t}${o}`; + let i = 1; + for (; e.includes(r); ) (o = ` (${i})`), (r = a ? `${t}${o}.${n}` : `${t}${o}`), (i += 1); + return r; + } + static getLocalExtensionFromCloudMimeType(e) { + switch (e) { + case Bo.rn.PS_CLOUD_DOCUMENT_DEP: + return "psd"; + case Bo.rn.XD_CLOUD_DOCUMENT: + return "xd"; + case Bo.rn.ILLUSTRATOR_CLOUD_DOCUMENT: + return "ai"; + case Bo.rn.INDD_CLOUD_DOC: + return "indd"; + default: + return ""; + } + } + static getDefaultExtensionFromContentType(e) { + return { + "image/gif": "gif", + "image/jpeg": "jpeg", + "image/png": "png", + "image/tiff": "tif", + "image/svg+xml": "svg", + "application/illustrator": "ai", + "application/illustrator.template": "ait", + "image/vnd.adobe.photoshop.template": "psdt", + "application/vnd.adobe.indesign.template": "indt", + "video/quicktime": "mov", + "audio/wav": "wav", + "application/vnd.adobe.ae.graphic+zip": "mogrt", + "application/vnd.adobe.ppro.graphic+zip": "mogrt", + "application/vnd.adobe.stock.aet+zip": "zip", + "application/vnd.adobe.ibl.light+zip": "zip", + "application/vnd.adobe.mdl.material+zip": "zip", + "application/vnd.adobe.stock.pproj+zip": "zip", + "application/vnd.adobe.obj.3d+zip": "zip", + }[e]; + } + static sleep(e) { + return new Promise((t) => setTimeout(t, 1e3 * e)); + } + static getServiceParam(e) { + let t = "", + n = ""; + if (e) + if (e instanceof Array) { + const { serviceCode: r, serviceLevel: o } = e[0]; + (t = r), (n = o); + } else { + const { serviceCode: r, serviceLevel: o } = e; + (t = r), (n = o); + } + else console.error("assets-files: utilities: getServiceParam: serviceAccount is undefined"); + return { serviceCode: t, serviceLevel: n }; + } + }; + var zo = n(82685), + Vo = function (e, t, n, r) { + return new (n || (n = Promise))(function (o, a) { + function i(e) { + try { + c(r.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(r.throw(e)); + } catch (e) { + a(e); + } + } + function c(e) { + var t; + e.done + ? o(e.value) + : ((t = e.value), + t instanceof n + ? t + : new n(function (e) { + e(t); + })).then(i, s); + } + c((r = r.apply(e, t || [])).next()); + }); + }; + const Ho = new (class { + constructor() { + (this.updateToken = () => + Vo(this, void 0, void 0, function* () { + try { + this.initToken = yield this.imsHelper.accessToken(); + } catch (e) { + console.error(`CCDAssetsFiles: oneUpIMSHelper: updateToken: error: ${e}}`); + } + })), + (this.onIMSChangeRegister = (e) => { + this.eventStore.on(Bo.iV.FILES_IMS_DATA_UPDATED, e); + }), + (this.onIMSChangeUnregister = (e) => { + this.eventStore.off(Bo.iV.FILES_IMS_DATA_UPDATED, e); + }); + } + init() { + return Vo(this, void 0, void 0, function* () { + (this.imsHelper = Po.assetsSpacesStore.context.get(Bo.cR.FilesIMSStore)), + (this.eventStore = Po.assetsSpacesStore.context.get(Bo.cR.Events)), + (this.imsData = { environment: this.imsHelper.environment, clientId: this.imsHelper.clientId, userID: this.imsHelper.userID(), fetchToken: this.imsHelper.accessToken }), + yield this.updateToken(), + this.eventStore && this.onIMSChangeRegister(this.updateToken); + }); + } + })(); + var Go = n(33012), + Wo = n.n(Go); + const Qo = class { + static formatFileSize(e, t) { + if (void 0 === e) return { displayValue: "NaN", value: NaN, abbrev: "--" }; + const n = e > 0 ? Math.floor(Math.log(e) / Math.log(1024)) : 0, + r = Math.pow(10, [0, 0, 1, 2, 3][n] || 0), + o = Math.round((e / Math.pow(1024, n)) * r) / r, + a = t.intl.formatMessage({ id: `${["abbreviations.fileSize.byte", "abbreviations.fileSize.kilobyte", "abbreviations.fileSize.megabyte", "abbreviations.fileSize.gigabyte", "abbreviations.fileSize.terabyte"][n]}` }); + return { displayValue: t.intl.formatNumber(o), value: o, abbrev: a }; + } + static formatFileSizeDisplay(e, t) { + const { value: n, displayValue: r, abbrev: o } = this.formatFileSize(e, t); + return void 0 !== e ? `${r} ${o}` : `${o}`; + } + static formatLongDateTime(e, t) { + return t.intl.formatDate(e, { month: "numeric", day: "numeric", year: "numeric", hour: "numeric", minute: "numeric" }); + } + }; + var Jo = function (e, t) { + if ("object" == typeof Reflect && "function" == typeof Reflect.metadata) return Reflect.metadata(e, t); + }; + const Yo = (e) => { + const { translationUtil: t } = Po.assetsSpacesStore.filesStore, + n = new Date(0); + return n.setUTCSeconds(e), Qo.formatLongDateTime(Wo()(n, "m/d/yyyy, h:MM TT"), t); + }; + let qo = (() => { + var e; + class t { + constructor() { + (this.getPanelData = () => { + const e = ca.getOneUpAsset(), + { translationUtil: t } = Po.assetsSpacesStore.filesStore; + let n = [{ label: t.getMessage("ccd.infoPanel.detail.modified"), value: Yo(e.modified) }]; + n = [{ label: t.getMessage("ccd.infoPanel.detail.created"), value: Yo(e.created) }, ...n, { label: t.getMessage("ccd.infoPanel.detail.size"), value: Qo.formatFileSizeDisplay(e.sizeInBytes, t) }]; + const r = ca.getSpaceData(), + o = { isSpaceAsset: !0, spaceName: r.name, spaceColor: r.color, spaceID: r.spaceID }; + return { title: Uo.getFileNameWithoutExtension(e.name), subtitle: e.extension, details: n, locationInfo: o, handleSpaceClick: this.handleSpaceClick }; + }), + (this.id = Vr.INFOPANEL); + } + handleSpaceClick() { + ca.handleInfoSpaceClick(); + } + } + return ( + (function (e, t, n, r) { + var o, + a = arguments.length, + i = a < 3 ? t : null === r ? (r = Object.getOwnPropertyDescriptor(t, n)) : r; + if ("object" == typeof Reflect && "function" == typeof Reflect.decorate) i = Reflect.decorate(e, t, n, r); + else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (i = (a < 3 ? o(i) : a > 3 ? o(t, n, i) : o(t, n)) || i); + a > 3 && i && Object.defineProperty(t, n, i); + })([i.observable, Jo("design:type", "function" == typeof (e = void 0 !== r.IInfoPanelData && r.IInfoPanelData) ? e : Object)], t.prototype, "infoPanelData", void 0), + t + ); + })(); + const Xo = "assets-spaces: commentPanelData:"; + class Ko { + constructor(e) { + (this.onCommentsError = (e) => { + e ? console.error(`${Xo} onCommentsError: Error payload ${JSON.stringify(e, null, 4)}`) : console.error(`${Xo}: onCommentsError: payload should not be empty`); + }), + (this.isAnnotationEnabled = () => !0), + (this.getOwnerId = () => { + return ( + (e = this), + (t = void 0), + (r = function* () { + let e; + if (this.asset.isOrgAsset) return e; + try { + e = yield this.asset.ownerId(); + } catch (e) { + console.error(`${Xo}: getOwnerId: error: ${e}}`); + } + return e; + }), + new ((n = void 0) || (n = Promise))(function (o, a) { + function i(e) { + try { + c(r.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(r.throw(e)); + } catch (e) { + a(e); + } + } + function c(e) { + var t; + e.done + ? o(e.value) + : ((t = e.value), + t instanceof n + ? t + : new n(function (e) { + e(t); + })).then(i, s); + } + c((r = r.apply(e, t || [])).next()); + }) + ); + var e, t, n, r; + }), + (this.getAnalyticsData = () => { + if (!Po.assetsSpacesStore.filesStore.context.isAnalyticsOptedIn) return; + const e = Po.assetsSpacesStore.filesStore.context.get(Bo.cR.FilesIMSStore), + t = e.serviceAccount(), + { serviceCode: n, serviceLevel: r } = Uo.getServiceParam(t), + o = "CS_LVL_2" === r, + { osVersion: a, appVersion: i, platform: s } = window.appContext; + return { + source: { client_id: Bo.PJ, name: Bo.iC, version: i, platform: s, os_version: a }, + event: { workflow: "Space:1UP", category: "DESKTOP", user_guid: e.userID(), device_guid: e.deviceID() }, + ui: { view_type: "1UP" }, + content: { mimetype: this.asset.mediaType }, + user: { service_code: n, service_level: o ? "paid" : void 0 }, + }; + }), + (this.getPanelData = () => { + const e = this.isAnnotationEnabled(), + { getOwnerId: t, onCommentsError: n, getAnalyticsData: r } = this; + return { getOwnerId: t, annotationsEnabled: e, onCommentsError: n, getAnalyticsData: r }; + }), + (this.panelOpened = () => { + !(function (e) { + const t = { "event.category": "DESKTOP", "event.workflow": "Spaces", "event.subtype": e, "event.type": "click" }; + Po.assetsSpacesStore.context.logEvent(t); + })(this.id); + }), + (this.id = Vr.COMMENTS), + (this.asset = e); + } + } + var $o = n(39189), + ea = function (e, t, n, r) { + return new (n || (n = Promise))(function (o, a) { + function i(e) { + try { + c(r.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(r.throw(e)); + } catch (e) { + a(e); + } + } + function c(e) { + var t; + e.done + ? o(e.value) + : ((t = e.value), + t instanceof n + ? t + : new n(function (e) { + e(t); + })).then(i, s); + } + c((r = r.apply(e, t || [])).next()); + }); + }; + const ta = "CCDAssetsSpaces: PanelManager:", + na = new (class { + constructor() { + this.isCommentsEnable = !1; + } + init() { + return ea(this, void 0, void 0, function* () { + console.info(`${ta}: init start`); + try { + const { appVersion: e } = window.appContext; + if (!e) throw new Error(`${ta} : window.appContext.appVersion should not be empty`); + Po.assetsSpacesStore.context.onStoreRegister(Bo.cR.Files, () => + ea(this, void 0, void 0, function* () { + const t = Po.assetsSpacesStore.context.get(Bo.cR.Files); + t.registerStoreForFeatureFlagUpdate(this, $o.En); + const n = t.context.get(Bo.cR.FeatureFlags), + r = yield n.getFeatureStatus({ fesID: $o.En }); + if (!r || !r.state) return void console.info(`${ta} : init : Comments is not enabled`); + const o = n.getFESData($o.En), + { data: a } = o; + console.debug(`${ta} : init : info found from feature flags : ${a}`); + const i = JSON.parse(a), + { minCCD: s } = i; + this.isCommentsEnable = 1 !== Uo.compareVersions(s, e); + }) + ); + } catch (e) { + (this.isCommentsEnable = !1), console.error(`${ta}: init err: ${e}`); + } + }); + } + handleFeatureFlagUpdate() { + console.info(`${ta}: feature flag has been updated, re-initalizing stores`), this.init(); + } + showCommentPanel(e) { + return !(!this.isCommentsEnable || (e.mediaType !== Bo.rn.PS_CLOUD_DOCUMENT && e.mediaType !== Bo.rn.PS_CLOUD_DOCUMENT_DEP)); + } + getOneUpSidebarPanelItems(e) { + const t = []; + return e ? (this.showCommentPanel(e) && t.push(new Ko(e)), t.push(new qo()), t) : t; + } + })(); + var ra = function (e, t, n, r) { + var o, + a = arguments.length, + i = a < 3 ? t : null === r ? (r = Object.getOwnPropertyDescriptor(t, n)) : r; + if ("object" == typeof Reflect && "function" == typeof Reflect.decorate) i = Reflect.decorate(e, t, n, r); + else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (i = (a < 3 ? o(i) : a > 3 ? o(t, n, i) : o(t, n)) || i); + return a > 3 && i && Object.defineProperty(t, n, i), i; + }, + oa = function (e, t) { + if ("object" == typeof Reflect && "function" == typeof Reflect.metadata) return Reflect.metadata(e, t); + }, + aa = function (e, t, n, r) { + return new (n || (n = Promise))(function (o, a) { + function i(e) { + try { + c(r.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(r.throw(e)); + } catch (e) { + a(e); + } + } + function c(e) { + var t; + e.done + ? o(e.value) + : ((t = e.value), + t instanceof n + ? t + : new n(function (e) { + e(t); + })).then(i, s); + } + c((r = r.apply(e, t || [])).next()); + }); + }; + const { components: ia } = n(13853), + sa = "CCDAssetsSpaces: OneUpStore:", + ca = new ((() => { + var e; + class t { + constructor() { + (this.assetSource = void 0), + (this.imsHelperObj = void 0), + (this.exitOneUp = (e) => { + if (this.reactNode) { + this.reactNode = void 0; + const t = { urn: this.spaceData.spaceID, type: "spaces", folderId: e || void 0 }; + Po.assetsSpacesStore.navigateToSpace(t); + } + }), + (this.handleBackClick = () => { + this.exitOneUp(this.assetFolderID); + }), + (this.handleInfoSpaceClick = () => { + this.exitOneUp(); + }), + (this.handleOpenIn = (e) => { + const t = this.getFileData(); + jo.x.open([t], e); + }), + (this.getShareCapabilities = (e) => (["space", "team"].includes(e.type) || "application/vnd.adobe.xd.cloudproject+dcx" === e.mimeType ? [Bo.F2.INVITE] : [Bo.F2.INVITE, Bo.F2.GETLINK])), + (this.getOneOffCapabilities = (e) => { + try { + const t = Po.assetsSpacesStore.filesStore.context.get(Bo.cR.FeatureFlags).getFESData($o.ek.CCD_ASSETS_SPACES_ONE_OFF); + if (!t) return !1; + const { data: n } = t; + if (!n) return !1; + return JSON.parse(n).mimeTypes.includes(e.mimeType); + } catch (e) { + return console.error(`${sa}: OneOffFeatureFlagData : FF data is incorrectly configured: ${e}`), !1; + } + }), + (this.handleShare = () => { + const e = { + assetId: this.asset.cloudID, + emailNotification: { + acceptance: { viewer: "cc_collab_invite_v2_viewer", editor: "cc_collab_invite_v2_editor" }, + sharing: { viewer: "cc_collab_projects_document_invite_notification", editor: "cc_collab_projects_document_invite_notification" }, + }, + mimeType: this.asset.mediaType, + name: this.asset.name, + resourceId: this.getResourceID, + roles: ["EDIT_SHARE"], + space: { assetId: this.spaceData ? this.spaceData.id : void 0, color: this.spaceData ? this.spaceData.color : void 0, name: this.spaceData ? this.spaceData.name : "" }, + team: { name: this.spaceData ? this.spaceData.teamName : void 0 }, + type: "spaceDocument", + }; + Po.assetsSpacesStore.context.showShareSheet({ + assetData: e, + projectData: e.space, + team: e.team, + shareAction: Bo.F2.SHARE, + shareCapabilities: this.getShareCapabilities(e), + spaceDocumentOneOffInvites: this.getOneOffCapabilities(e), + }); + }), + (this.handleExport = () => + aa(this, void 0, void 0, function* () { + try { + const e = yield Zo.O.getExportPath(); + if (void 0 === e) return void console.info(`${sa} handleExport: User has cancelled export operation.`); + const t = Uo.getExtensionFromFileName(this.asset.name), + n = { urn: this.asset.cloudID, name: Uo.getFileNameWithoutExtension(this.asset.name), mimeType: this.asset.mediaType, modifiedDate: new Date(this.asset.modified), path: this.asset.repoPath, extension: t }, + r = yield Zo.O.exportSingleSpacesDoc(n, e); + if (!1 === r.success) { + const { errorCode: e, errorDesc: t } = r; + console.error(`${sa} handleExport: error code: ${e} and desc: ${t}`); + } + } catch (e) { + console.error(`${sa} handleExport: export exceptiom ${e}}`); + } + })); + } + init() { + return aa(this, void 0, void 0, function* () { + yield na.init(); + }); + } + get imsHelper() { + return this.imsHelperObj; + } + getFileData() { + return { confirmAccess: !0, displayName: this.title, mimetype: this.asset.mediaType, path: this.asset.repoPath, localID: this.asset.localID, cloudID: this.asset.cloudID, repositoryID: this.repositoryId }; + } + get repositoryId() { + if (this.asset) { + const { assetRefString: e } = this.asset, + t = JSON.parse(e); + if (t.repository_id) return t.repository_id; + } + return ""; + } + get urn() { + if (this.asset) { + const { cloudID: e } = this.asset; + return e; + } + return ""; + } + get title() { + if (this.asset) { + const { name: e } = this.asset; + return e; + } + return ""; + } + get spaceColor() { + return this.spaceData ? this.spaceData.color : "var(--iconBaseColor)"; + } + get directory() { + return this.spaceData ? this.spaceData.name : ""; + } + get canOpen() { + const e = this.getFileData(); + return !(!jo.x.isOpenWithActionAvailable([e]) && !jo.x.isOpenActionAvailable([e])); + } + get canChangeDefaultApp() { + return !1; + } + get availableApps() { + return jo.x.getAvailableAppsByMimeType(this.asset.mediaType); + } + get showCarousel() { + return !1; + } + get canShare() { + return !0; + } + get getResourceID() { + const { imsData: e } = this.imsHelperObj; + let t = Bo.b3.hosts[e.environment].storage; + return this.asset.cloudID && (t += `/id/${this.asset.cloudID}`), t; + } + get canExport() { + return Zo.O.isExportActionAvailable([this.asset.mediaType]); + } + get showSideBar() { + return !0; + } + get sidebarPanelItems() { + return na.getOneUpSidebarPanelItems(this.asset); + } + get defaultPanel() { + const e = this.sidebarPanelItems; + return e && 0 !== e.length ? e[0].id : ""; + } + get renditionSrc() { + if (this.asset) { + const { preview: e } = this.asset; + return e ? new URL(`file://${e.file}`).href : ""; + } + return ""; + } + showOneUp() { + if (void 0 !== this.reactNode) return; + const { + components: { getCloudDocsOneUpNode: e }, + } = window[ia.OneUp.globalReference]; + this.reactNode = e(this); + const t = Po.assetsSpacesStore.context.get(Bo.cR.Router), + n = Bo.Z5.SpacesOneUp.replace(":urn", this.urn); + t.push(n); + } + preview(e) { + return aa(this, void 0, void 0, function* () { + this.imsHelperObj || ((this.imsHelperObj = Ho), yield this.imsHelperObj.init()); + const { samAssetContext: t } = Po.assetsSpacesStore.filesStore; + (this.asset = yield t.getAssetWithCloudID(e.urn)), (this.assetSource = a.SpacesDocs); + const { currentProject: n, route: r } = zo.projectsBrowseSession.session; + (this.assetFolderID = null == r ? void 0 : r.folderId), n && (this.spaceData = n.space), this.showOneUp(); + }); + } + previewFromRoute(e) { + return aa(this, void 0, void 0, function* () { + const { cloudID: t } = e; + console.info(`${sa}:previewFromRoute open oneup view from route cloudID: ${t}`), this.imsHelperObj || ((this.imsHelperObj = Ho), yield this.imsHelperObj.init()); + const { samAssetContext: n } = Po.assetsSpacesStore.filesStore; + this.asset = yield n.getAssetWithCloudID(t); + const r = yield this.asset.getSpace(); + (this.assetFolderID = void 0), (this.spaceData = { name: r.name, color: `#${r.color}`, spaceID: r.spaceID }), (this.assetSource = a.SpacesDocs), this.showOneUp(); + }); + } + getOneUpNode() { + return this.reactNode; + } + getOneUpAsset() { + return this.asset; + } + getSpaceData() { + return this.spaceData; + } + } + return ( + ra([i.observable, oa("design:type", Object)], t.prototype, "asset", void 0), + ra([i.observable, oa("design:type", Object)], t.prototype, "spaceData", void 0), + ra([i.observable, oa("design:type", "function" == typeof (e = void 0 !== a && a) ? e : Object)], t.prototype, "assetSource", void 0), + ra([i.computed, oa("design:type", String), oa("design:paramtypes", [])], t.prototype, "repositoryId", null), + ra([i.computed, oa("design:type", String), oa("design:paramtypes", [])], t.prototype, "title", null), + ra([i.computed, oa("design:type", String), oa("design:paramtypes", [])], t.prototype, "directory", null), + ra([i.computed, oa("design:type", Boolean), oa("design:paramtypes", [])], t.prototype, "canOpen", null), + ra([i.computed, oa("design:type", Object), oa("design:paramtypes", [])], t.prototype, "availableApps", null), + ra([i.computed, oa("design:type", Boolean), oa("design:paramtypes", [])], t.prototype, "canShare", null), + ra([i.computed, oa("design:type", String), oa("design:paramtypes", [])], t.prototype, "renditionSrc", null), + ra([i.action, oa("design:type", Function), oa("design:paramtypes", []), oa("design:returntype", void 0)], t.prototype, "showOneUp", null), + t + ); + })())(); + }, + 72926: (e, t, n) => { + "use strict"; + n.d(t, { A: () => h, x: () => m }); + var r, + o, + a = n(22953); + !(function (e) { + (e.SPACES = "spaces"), (e.YOUR_DOCUMENTS = "yd"), (e.SHARED_WITH_YOU = "swy"); + })(r || (r = {})), + (function (e) { + (e.SPACES = "spaces"), (e.YOUR_DOCUMENTS = "yd"); + })(o || (o = {})); + var i = n(39189), + s = function (e, t, n, r) { + return new (n || (n = Promise))(function (o, a) { + function i(e) { + try { + c(r.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(r.throw(e)); + } catch (e) { + a(e); + } + } + function c(e) { + var t; + e.done + ? o(e.value) + : ((t = e.value), + t instanceof n + ? t + : new n(function (e) { + e(t); + })).then(i, s); + } + c((r = r.apply(e, t || [])).next()); + }); + }; + const c = "CCDAssetsSpaces: OpenFFStore", + l = new (class { + constructor() { + (this.mimeTypeFeatureFlagDataMap = new Map()), + (this.initOpenFeatureFlagData = () => + s(this, void 0, void 0, function* () { + console.info(`${c} : initOpenFeatureFlagData start`); + try { + const e = yield this.getFeatureData(); + Object.keys(e).forEach((t) => { + if (e[t]) { + const n = []; + e[t].forEach((e) => { + if (e) { + const t = Object.assign({}, e); + n.push(t); + } else console.info(`${c}: initOpenFeatureFlagData: Open for mimetype: ${t} is disabled for this platform`); + }), + n && n.length > 0 && this.mimeTypeFeatureFlagDataMap.set(t, n); + } + }), + console.info(`${c} : initOpenFeatureFlagData complete`); + } catch (e) { + console.error(`${c} : initOpenFeatureFlagData error = ${e}`); + } + })), + (this.getAllAvailableAppsData = () => this.openCoreFFHelper.getAllAvailableAppsData(this.mimeTypeFeatureFlagDataMap)); + } + getOpenSpacesCloudDocsData() { + return s(this, void 0, void 0, function* () { + try { + console.info(`${c} : init openSpacesCloudDocsFeaturesData start`); + let e = !1; + const t = yield this.featureFlagsStore.getFeatureStatus({ fesID: i.ek.CCD_ASSETS_SPACES_CLOUDDOCS_OPEN }); + if (((e = t && t.state), !e)) throw (console.info(`${c} : init : open spaces cloud docs is not supported`), new Error(`${c} : openSpacesCloudDocsFeaturesResponse : feature flag data not available`)); + const n = this.featureFlagsStore.getFESData(i.ek.CCD_ASSETS_SPACES_CLOUDDOCS_OPEN), + { data: r } = n; + return console.info(`${c} : init : info found from feature flags : ${r}`), JSON.parse(r); + } catch (e) { + console.error(`${c} : init error = ${e}`); + } + }); + } + getOpenSpacesFilesData() { + return s(this, void 0, void 0, function* () { + try { + console.info(`${c} : init openSpacesFilesFeaturesData start`); + let e = !1; + const t = yield this.featureFlagsStore.getFeatureStatus({ fesID: i.ek.CCD_ASSETS_SPACES_FILES_OPEN }); + if (((e = t && t.state), !e)) throw (console.info(`${c} : init : open spaces cloud files is not supported`), new Error(`${c} : openSpacesFilesFeaturesResponse : feature flag data not available`)); + const n = this.featureFlagsStore.getFESData(i.ek.CCD_ASSETS_SPACES_FILES_OPEN), + { data: r } = n; + return console.info(`${c} : init : info found from feature flags : ${r}`), JSON.parse(r); + } catch (e) { + console.error(`${c} : init error = ${e}`); + } + }); + } + getFeatureData() { + return s(this, void 0, void 0, function* () { + const e = yield this.getOpenSpacesCloudDocsData(), + t = yield this.getOpenSpacesFilesData(); + if (!e && !t) return void console.info(`${c} : getFeatureData : apps list not available for File in Spaces`); + const n = {}; + if ( + (e && + Object.keys(e.apps).forEach((t) => { + n[t] = e.apps[t]; + }), + t.length > 0 && + t.forEach((e) => { + e.mimeType.forEach((t) => { + n[t] = e.apps; + }); + }), + !n) + ) + throw new Error(`${c} : getFeatureData : FF data is incorrectly configured`); + return new Promise((e) => { + e(n); + }); + }); + } + init(e) { + return s(this, void 0, void 0, function* () { + (this.openCoreFFHelper = e.get(a.cR.OpenCoreFFHelper)), (this.featureFlagsStore = e.get(a.cR.FeatureFlags)), yield this.initOpenFeatureFlagData(); + }); + } + getAllAppsSapcode() { + const e = new Set(); + this.mimeTypeFeatureFlagDataMap.forEach((t) => { + t.forEach((t) => { + e.add(t.sapcode); + }); + }); + const t = [...e]; + return console.info(`${c} : getAllAppsSapcode : ${t}`), t; + } + })(); + var u; + !(function (e) { + (e.LIST_UPDATED_ALREADY = "listUpdatedAlready"), (e.LIST_UPDATE_IN_PROGRESS = "listUpdateInProgress"); + })(u || (u = {})); + var d = n(76489); + const p = r.SPACES, + f = "CCDAssetsSpaces: SpacesOpenStore", + m = new (class { + constructor() { + (this.isInitialized = !1), + (this.updateAvailableAppsData = () => { + console.info(`${f} : update start`); + const e = l.getAllAvailableAppsData(); + e && (this.openCoreAppStore.addMimeTypeAllAppsDataMap(p, e), console.info(`${f} : update complete`)); + }), + (this.isOpenWithActionAvailable = (e) => { + const t = []; + e.forEach((e) => t.push(e.mimetype)); + let n = t.length > 0 && t.length <= this.multiSelectMaxCount && this.isInitialized; + const r = t[0]; + if (((n = n && t.every((e) => e === r)), n)) { + const e = this.openCoreAppStore.getAllAppsByMimeType(p, r); + return e && e.length > 1; + } + return !1; + }), + (this.isOpenActionAvailable = (e) => { + const t = []; + return e.forEach((e) => t.push(e.mimetype)), t.length > 0 && t.length <= this.multiSelectMaxCount && this.isInitialized && t.every((e) => this.openCoreAppStore.getAllAvailableApps(p).has(e)); + }), + (this.open = (e, t) => { + const n = { id: p, files: e, sapcode: t }; + this.openCoreStore.open(n); + }), + (this.getInstalledAppsByType = () => this.openStore.getInstalledAppsByType()), + (this.getAvailableAppsByMimeType = (e) => this.openCoreAppStore.getAllAppsByMimeType(p, e)); + } + initOpenStore(e) { + e.onStoreRegister(a.cR.AssetsFiles, () => { + const t = e.get(a.cR.AssetsFiles); + this.openStore = t.openStore; + }); + } + init(e) { + return ( + (t = this), + (n = void 0), + (o = function* () { + (this.openCoreStore = e.get(a.cR.OpenCore)), + (this.openCoreAppStore = e.get(a.cR.OpenCoreApp)), + (this.filteredAppsStore = e.get(a.cR.FilteredAppsStore)), + (this.eventStore = e.get(a.cR.Events)), + this.initOpenStore(e), + (this.multiSelectMaxCount = 1), + this.eventStore.on(a.iV.FILTERED_APPS_STORE_UPDATED, this.updateAvailableAppsData), + yield l.init(e), + this.filteredAppsStore.updateAppsListing(l.getAllAppsSapcode()) === u.LIST_UPDATED_ALREADY && this.updateAvailableAppsData(), + e.registerStore(a.cR.SpacesOpenStore, this), + (this.isInitialized = !0); + }), + new ((r = void 0) || (r = Promise))(function (e, a) { + function i(e) { + try { + c(o.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(o.throw(e)); + } catch (e) { + a(e); + } + } + function c(t) { + var n; + t.done + ? e(t.value) + : ((n = t.value), + n instanceof r + ? n + : new r(function (e) { + e(n); + })).then(i, s); + } + c((o = o.apply(t, n || [])).next()); + }) + ); + var t, n, r, o; + } + })(), + h = Object.assign(Object.assign({}, m), { + open: (e, t) => { + e.map((e) => (e.assetRefStr && (e.repositoryID = JSON.parse(e.assetRefStr).repository_id), e)), m.open(e, t); + }, + openDeepLink: (e) => e && d.assetsSpacesStore.ccdRouter.push(e), + }); + }, + 82685: (e, t, n) => { + "use strict"; + n.d(t, { projectsBrowseSession: () => s }); + var r = n(32339), + o = n(76489), + a = n(50187); + class i { + init() { + const { BrowseSession: e } = o.assetsSpacesStore.uabContext; + this.session = new e({ productLocation: "com.adobe.creativecloud.desktop", onNavigate: i.onProjectNavigated, registerTour: o.assetsSpacesStore.registerTour, showPicker: a.b }); + } + static calculateRoute(e, t) { + const { view: n, type: a, folderId: i } = r.parse(t), + s = e ? decodeURIComponent(e) : null; + if ("spaces" === a) { + const { SpaceRoute: e } = o.assetsSpacesStore.uabContext; + return new e(s, { view: n, folderId: i }); + } + if ("teams" === a) { + const { TeamRoute: e } = o.assetsSpacesStore.uabContext; + return new e(s, n); + } + throw new Error(`CCDAssetsSpaces: ProjectsBrowseSession: calculateRoute, unknown type = ${a}`); + } + navigateToUrl(e, t) { + const n = i.calculateRoute(e, t); + this.session.navigate(n); + } + static onProjectNavigated(e) { + const { folderId: t, type: n, view: r, urn: a } = e; + o.assetsSpacesStore.navigateToSpace({ folderId: t, urn: a, view: r, type: n }); + } + } + const s = new i(); + }, + 50187: (e, t, n) => { + "use strict"; + n.d(t, { b: () => c }); + var r = n(23469), + o = n.n(r), + a = n(39358), + i = n.n(a), + s = n(76489); + function c(e, t, n, r, a, c) { + const l = window.UniversalAssetBrowser.components.find((e) => "uap" === e.id).main; + if (!l) throw new Error("UAP component not found in showPicker!"); + const { context: u, filesStore: d } = s.assetsSpacesStore, + p = Object.assign(Object.assign({}, e), { isWebDialog: !0 }), + f = d && d.cdoStore && d.cdoStore.hostProductData ? d.cdoStore.hostProductData.featureFlags : {}, + m = Object.assign(Object.assign({}, f), t.featureFlags), + h = Object.assign(Object.assign({}, t), { featureFlags: m }); + let v; + const y = o().createElement(l, { openedSessionGuid: i().v1(), pickerInfo: p, closeDialog: () => v && v(), cdoHostProductData: h, callbacks: n, cdoIMSData: r, theme: a }); + if (!u.showDialog || !u.hideDialog) throw new Error("showDialog/hideDialog is missing in context"); + const g = u.showDialog("custom", { wrapInDialog: !1, content: y }); + return ( + (v = () => { + u.hideDialog(g); + }), + v + ); + } + }, + 13853: (e) => { + e.exports = { + components: { + Spaces: { id: "Spaces", output: "Spaces", globalReference: "CCDSpaces", loadCSS: !0 }, + Libs: { id: "CCLibs", output: "CCLibs", globalReference: "CCDLibs" }, + Files: { id: "CloudDocs", output: "CloudDocs", globalReference: "CCDCloudDocs", loadCSS: !0 }, + ShareSheet: { id: "ShareSheet", output: "ShareSheet", globalReference: "CCDShareSheet", loadCSS: !0 }, + OneUp: { id: "OneUp", output: "OneUp", globalReference: "CCDOneUp", loadCSS: !0 }, + UAB: { id: "UAB", output: "UAB", globalReference: "UniversalAssetBrowser", loadCSS: !1 }, + Lightroom: { id: "Lightroom", output: "Lightroom", globalReference: "CCDLightroom", loadCSS: !0 }, + Stock: { id: "StockAssets", output: "StockAssets", globalReference: "CCDStockAssets", loadCSS: !0 }, + }, + }; + }, + 13262: (e) => { + e.exports = function (e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + }; + }, + 40772: (e) => { + e.exports = function (e) { + if (Array.isArray(e)) return e; + }; + }, + 20917: (e, t, n) => { + var r = n(13262); + e.exports = function (e) { + if (Array.isArray(e)) return r(e); + }; + }, + 23170: (e) => { + e.exports = function (e) { + if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); + return e; + }; + }, + 8012: (e) => { + function t(e, t, n, r, o, a, i) { + try { + var s = e[a](i), + c = s.value; + } catch (e) { + return void n(e); + } + s.done ? t(c) : Promise.resolve(c).then(r, o); + } + e.exports = function (e) { + return function () { + var n = this, + r = arguments; + return new Promise(function (o, a) { + var i = e.apply(n, r); + function s(e) { + t(i, o, a, s, c, "next", e); + } + function c(e) { + t(i, o, a, s, c, "throw", e); + } + s(void 0); + }); + }; + }; + }, + 2400: (e) => { + e.exports = function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + }; + }, + 80034: (e) => { + function t(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + e.exports = function (e, n, r) { + return n && t(e.prototype, n), r && t(e, r), e; + }; + }, + 17555: (e) => { + e.exports = function (e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + }; + }, + 62665: (e) => { + function t() { + return ( + (e.exports = t = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + t.apply(this, arguments) + ); + } + e.exports = t; + }, + 33470: (e) => { + function t(n) { + return ( + (e.exports = t = Object.setPrototypeOf + ? Object.getPrototypeOf + : function (e) { + return e.__proto__ || Object.getPrototypeOf(e); + }), + t(n) + ); + } + e.exports = t; + }, + 15270: (e, t, n) => { + var r = n(7941); + e.exports = function (e, t) { + if ("function" != typeof t && null !== t) throw new TypeError("Super expression must either be null or a function"); + (e.prototype = Object.create(t && t.prototype, { constructor: { value: e, writable: !0, configurable: !0 } })), t && r(e, t); + }; + }, + 86633: (e) => { + e.exports = function (e) { + return e && e.__esModule ? e : { default: e }; + }; + }, + 43061: (e, t, n) => { + var r = n(34916); + function o() { + if ("function" != typeof WeakMap) return null; + var e = new WeakMap(); + return ( + (o = function () { + return e; + }), + e + ); + } + e.exports = function (e) { + if (e && e.__esModule) return e; + if (null === e || ("object" !== r(e) && "function" != typeof e)) return { default: e }; + var t = o(); + if (t && t.has(e)) return t.get(e); + var n = {}, + a = Object.defineProperty && Object.getOwnPropertyDescriptor; + for (var i in e) + if (Object.prototype.hasOwnProperty.call(e, i)) { + var s = a ? Object.getOwnPropertyDescriptor(e, i) : null; + s && (s.get || s.set) ? Object.defineProperty(n, i, s) : (n[i] = e[i]); + } + return (n.default = e), t && t.set(e, n), n; + }; + }, + 34057: (e) => { + e.exports = function (e) { + if ("undefined" != typeof Symbol && Symbol.iterator in Object(e)) return Array.from(e); + }; + }, + 16146: (e) => { + e.exports = function (e, t) { + if ("undefined" != typeof Symbol && Symbol.iterator in Object(e)) { + var n = [], + r = !0, + o = !1, + a = void 0; + try { + for (var i, s = e[Symbol.iterator](); !(r = (i = s.next()).done) && (n.push(i.value), !t || n.length !== t); r = !0); + } catch (e) { + (o = !0), (a = e); + } finally { + try { + r || null == s.return || s.return(); + } finally { + if (o) throw a; + } + } + return n; + } + }; + }, + 3970: (e) => { + e.exports = function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + }; + }, + 23277: (e) => { + e.exports = function () { + throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + }; + }, + 2001: (e, t, n) => { + var r = n(27870); + e.exports = function (e, t) { + if (null == e) return {}; + var n, + o, + a = r(e, t); + if (Object.getOwnPropertySymbols) { + var i = Object.getOwnPropertySymbols(e); + for (o = 0; o < i.length; o++) (n = i[o]), t.indexOf(n) >= 0 || (Object.prototype.propertyIsEnumerable.call(e, n) && (a[n] = e[n])); + } + return a; + }; + }, + 27870: (e) => { + e.exports = function (e, t) { + if (null == e) return {}; + var n, + r, + o = {}, + a = Object.keys(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (o[n] = e[n]); + return o; + }; + }, + 19854: (e, t, n) => { + var r = n(34916), + o = n(23170); + e.exports = function (e, t) { + return !t || ("object" !== r(t) && "function" != typeof t) ? o(e) : t; + }; + }, + 7941: (e) => { + function t(n, r) { + return ( + (e.exports = t = + Object.setPrototypeOf || + function (e, t) { + return (e.__proto__ = t), e; + }), + t(n, r) + ); + } + e.exports = t; + }, + 85199: (e, t, n) => { + var r = n(40772), + o = n(16146), + a = n(59554), + i = n(3970); + e.exports = function (e, t) { + return r(e) || o(e, t) || a(e, t) || i(); + }; + }, + 59395: (e, t, n) => { + var r = n(20917), + o = n(34057), + a = n(59554), + i = n(23277); + e.exports = function (e) { + return r(e) || o(e) || a(e) || i(); + }; + }, + 34916: (e) => { + function t(n) { + return ( + "function" == typeof Symbol && "symbol" == typeof Symbol.iterator + ? (e.exports = t = function (e) { + return typeof e; + }) + : (e.exports = t = function (e) { + return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e; + }), + t(n) + ); + } + e.exports = t; + }, + 59554: (e, t, n) => { + var r = n(13262); + e.exports = function (e, t) { + if (e) { + if ("string" == typeof e) return r(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? r(e, t) : void 0; + } + }; + }, + 20578: (e, t, n) => { + e.exports = n(92450); + }, + 95545: (e, t, n) => { + "use strict"; + n.d(t, { Ef: () => l, I6: () => i, K8: () => c, Vs: () => a, tz: () => d, xD: () => u, zb: () => s }); + var r = n(99894), + o = n(90353), + a = function (e) { + return { annotationId: e, type: r.KT }; + }, + i = function (e) { + return { drawingNode: e, type: r.Md }; + }, + s = function (e) { + return { touchPressed: e, type: r.vm }; + }, + c = function (e) { + return { selectedAnnotationId: e, type: r.Pj }; + }, + l = function (e) { + return { selectedReplyId: e, type: r.UT }; + }, + u = function (e) { + return (0, o.m8)("showAnnotations", e), { type: r.aV, showAnnotations: e }; + }, + d = function (e) { + return { type: r.Mw, showDraftAnnotations: e }; + }; + }, + 69522: (e, t, n) => { + "use strict"; + n.d(t, { + $k: () => J, + Gt: () => x, + Gv: () => B, + H6: () => k, + H_: () => F, + IK: () => X, + P_: () => T, + TA: () => N, + TM: () => K, + Xq: () => L, + Y$: () => Z, + Zk: () => q, + _E: () => Q, + bi: () => H, + e1: () => V, + fx: () => j, + hm: () => W, + j2: () => U, + j4: () => G, + jS: () => I, + jT: () => R, + kY: () => z, + lH: () => $, + l_: () => Y, + nx: () => M, + uQ: () => O, + }); + var r = n(57305), + o = n.n(r), + a = n(56155), + i = n.n(a), + s = n(19212), + c = n(94055), + l = n(19990), + u = n(56841), + d = n(35234), + p = n(90353), + f = n(99894), + m = n(30251), + h = n(95545), + v = n(48468); + function y(e) { + return ( + (y = + "function" == typeof Symbol && "symbol" == typeof Symbol.iterator + ? function (e) { + return typeof e; + } + : function (e) { + return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e; + }), + y(e) + ); + } + function g(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function b(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? g(Object(n), !0).forEach(function (t) { + E(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : g(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function E(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var D = function () { + return c.ccxController.getInstance(f.FH); + }, + C = (0, v.xr)(); + function w(e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, + n = i()(e); + return ( + delete n.pinNum, + delete n.annotationType, + delete n.recentActivity, + delete n.repliesOpen, + delete n.parentCommentId, + delete n.draftReplyText, + delete n.dirtyEdit, + delete n.dirtyReply, + delete n.imageContextData, + delete n.unmapped, + t[n.id] && (n.target.selector.node.id = t[n.id].original), + n + ); + } + function S(e, t) { + var n = []; + if (e) for (var r = 0; r < e.length; r++) t.includes(e[r].id) && n.push({ id: e[r].id, name: e[r].name, type: e[r].type, email: e[r].email }); + return n; + } + function A() { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : [], + t = arguments.length > 1 ? arguments[1] : void 0, + n = (arguments.length > 2 ? arguments[2] : void 0).isGlobalCommentsToggleActive, + r = e.filter(function (e) { + return "open" === e.status; + }); + return n + ? r.length > 0 + : t.nodeId + ? Boolean( + r.find(function (e) { + var n, r, o; + return (null == e || null === (n = e.target) || void 0 === n || null === (r = n.selector) || void 0 === r || null === (o = r.node) || void 0 === o ? void 0 : o.id) === t.nodeId; + }) + ) + : Boolean(r.length); + } + function k(e, t) { + return { assetId: e, errorId: t, type: f.Z5 }; + } + var _ = function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : void 0, + n = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : void 0; + return function (r) { + setTimeout(function () { + requestAnimationFrame(function () { + r({ type: f.hY, parentId: e, replyId: t, recentActivity: n }); + }); + }, 3e3); + }; + }, + T = function (e) { + return { type: f.vl, assetId: e, sourceId: void 0 }; + }, + I = function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, + n = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : {}; + return function (r, o) { + var a = n.cacheComments, + i = n.imageCapture, + c = n.isBackgroundMode, + l = n.isGlobalCommentsToggleActive, + m = n.isOffline, + h = n.pollForUpdates, + v = n.selectedAssetId, + y = s.xR.getInstance({ commentType: ["open", "resolved"], id: e.id, pollForUpdates: h, useNodeIndex: e.useNodeIndex, validNodes: e.validNodes }); + if ((D().fireEvent(u.Z.commentsRenderEventHelper("commentsLoad", c)), r({ type: f.Ov.START, assetId: e.id, sourceId: void 0 }), a)) { + d.Z.configure({ namespace: t.id, shouldExpire: !0, expirationDuration: 2592e3 }); + var g = d.Z.get(e.id), + b = g && Date.now() - g.createdTimeStamp <= 6e5; + if ( + ((g && !m && b) || (g && m)) && + (r({ data: g.data.comments, cacheComments: a, assetId: e.id, sourceId: e.sourceId, type: f.Ov.SUCCESS }), r({ assetId: e.id, cacheMetadata: a, metadata: g.data.metadata, type: f.k9.SUCCESS }), m) + ) { + var E = A(g.data.comments, e, { isGlobalCommentsToggleActive: l }) ? u.Z.commentsRenderEventHelper("commentsRender", c) : u.Z.commentsRenderEventHelper("noComments", c); + return D().fireEvent(E), Promise.resolve(y); + } + } + return new Promise(function (t, n) { + y.get() + .then(function (n) { + var s, + d = { cacheComments: a, assetId: e.id, sourceId: e.sourceId, type: f.Ov.SUCCESS }; + if ( + (n + ? ((s = n.annotations), + i && + s && + s.length && + s.forEach(function (e) { + var t = (0, p.Pt)(e.id); + t && (e.imageContextData = t); + }), + (d.data = s)) + : null === n && ((s = C(o(), e.id)), (d.data = s)), + r(d), + e.id === v) + ) { + var m = A(s, e, { isGlobalCommentsToggleActive: l }) ? u.Z.commentsRenderEventHelper("commentsRender", c) : u.Z.commentsRenderEventHelper("noComments", c); + D().fireEvent(m); + } + t(y); + }) + .catch(function (t) { + r({ type: f.Ov.ERROR, error: "list", cacheComments: a, assetId: e.id, sourceId: e.sourceId }), D().fireEvent(u.Z.commentsFailedToLoad(t.status, t.message, c)), n(t); + }); + }); + }; + }, + O = function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}; + return function (n) { + var r = t.cacheMetadata, + o = t.isOffline, + a = t.pollForUpdates, + i = new s.xR({ commentType: ["open", "resolved"], id: e.id, pollForUpdates: a, useNodeIndex: e.useNodeIndex, validNodes: e.validNodes }); + if ((n({ assetId: e.id, type: f.k9.START }), r)) { + var c = d.Z.get(e.id), + l = c && Date.now() - c.createdTimeStamp <= 6e5; + ((c && !o && l) || (c && o)) && n({ assetId: e.id, cacheMetadata: r, metadata: c.data.metadata, type: f.k9.SUCCESS }); + } + return o + ? Promise.resolve() + : new Promise(function (t, o) { + return i + .getMetadata() + .then(function (o) { + var a = o.metadataCollection; + n({ assetId: e.id, cacheMetadata: r, metadata: a, type: f.k9.SUCCESS }), t(); + }) + .catch(function (t) { + n({ assetId: e.id, cacheMetadata: r, type: f.k9.ERROR }), o(t); + }); + }); + }; + }, + F = function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, + n = (arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : {}).cacheComments; + return { type: f.Ov.SUCCESS, data: e.annotations, isPollUpdate: !0, cacheComments: n, assetId: null == t ? void 0 : t.id, sourceId: null == t ? void 0 : t.sourceId }; + }, + x = function (e, t, n, r, o) { + return { assetId: e, artboardID: t, comment: n, location: r, annotationType: o, type: f.W$ }; + }, + N = function (e, t) { + return { type: f.fk, id: e, draftReplyText: t }; + }, + R = function (e, t) { + return { type: f.GB, id: e, draftReplyText: t }; + }, + L = function (e, t, n) { + return function (r) { + r((0, h.K8)(t)), r({ assetId: e, mobileEditingCommentId: t, mobileEditingDraft: n, type: f.YE }); + }; + }, + M = function (e, t) { + return function (n) { + n((0, h.K8)(t)), n({ assetId: e, parentCommentId: t, type: f.Wm }); + }; + }, + P = function (e, t, n, r, o) { + var a = n.allowUndo, + i = n.cacheComments, + c = n.isResolveAction, + l = o(), + u = (0, v._X)(l, e.id).remappedMap, + d = w(t, u); + delete d.mentions; + var p = new s.q6(d, { id: e.id, useNodeIndex: e.useNodeIndex, validNodes: e.validNodes }); + return ( + r({ commentId: t.id, type: c ? f.Tf.START : f.xH.START }), + (c ? p.resolve() : p.open()) + .then(function (t) { + r({ allowUndo: a, comment: t, cacheComments: i, assetId: e.id, type: c ? f.Tf.SUCCESS : f.xH.SUCCESS }); + }) + .catch(function (n) { + throw (r({ assetId: e.id, commentId: t.id, error: t.id, type: c ? f.Tf.ERROR : f.xH.ERROR }), n); + }) + ); + }, + j = function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, + n = (arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : {}).cacheComments; + return function (r, o) { + return P(t, e, { allowUndo: !0, cacheComments: n, isResolveAction: !0 }, r, o); + }; + }, + B = function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, + n = (arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : {}).cacheComments; + return function (r, o) { + return P(t, e, { allowUndo: !0, cacheComments: n, isResolveAction: !1 }, r, o); + }; + }, + Z = function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = (arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}).cacheComments; + return function (n, r) { + var o = r(), + a = (0, v._X)(o, e.id).lastResolvedCommentData, + i = a.commentId, + s = a.newStatus, + c = (0, v.v)(o)[i]; + if (c) return P(e, c, "resolved" === s ? { allowUndo: !1, cacheComments: t, isResolveAction: !1 } : { allowUndo: !1, cacheComments: t, isResolveAction: !0 }, n, r); + }; + }, + U = function (e, t, n) { + var r = arguments.length > 3 && void 0 !== arguments[3] ? arguments[3] : {}, + o = (arguments.length > 4 && void 0 !== arguments[4] ? arguments[4] : {}).cacheComments; + return function (a, i) { + var c = (0, v.v)(i())[t], + l = new s.q6(c, { id: r.id, useNodeIndex: r.useNodeIndex, validNodes: r.validNodes }), + u = S(n, e); + return ( + a({ assetId: r.id, parentCommentId: t, type: f.fj.START }), + l + .reply(e, u) + .then(function (e) { + return ( + a({ reply: e, parentCommentId: t, assetId: r.id, nodeId: r.nodeId, cacheComments: o, type: f.fj.SUCCESS }), + D().fireEvent({ event: { context_guid: t, subcategory: "reply-comment", subtype: "reply", type: "render" }, content: { parent_id: e.id } }), + e.mentions.length && D().fireEvent({ event: { subcategory: "reply-comment", subtype: "mention", type: "render" }, content: { parent_id: e.id } }), + a(_(t, e.id)), + e + ); + }) + .catch(function (e) { + throw (a({ assetId: r.id, error: "reply", errorObj: e, type: f.fj.ERROR }), e); + }) + ); + }; + }, + z = function (e, t, n) { + var r = arguments.length > 3 && void 0 !== arguments[3] ? arguments[3] : {}, + a = arguments.length > 4 && void 0 !== arguments[4] ? arguments[4] : {}; + return function (i, c) { + var u, + d, + m, + h = c(), + v = o()(h, "".concat(f.Bq, ":context")) || {}, + y = v.imageContextData, + g = a.cacheComments, + b = a.dunamisEnv, + E = a.shouldUseAnnotationLocation; + i({ assetId: r.id, type: f.eE.START }), v.mediaData && (m = v.mediaData), E && v.annotationLocation && ((u = v.annotationLocation.nodeId), (d = v.annotationLocation.coordinates)); + var C = S(n, e), + w = new s.xR({ id: r.id, useNodeIndex: r.useNodeIndex, validNodes: r.validNodes }), + A = D(), + k = new l.DunamisCommentsInterface(b, A._baseData); + return new Promise(function (n, o) { + w.comment(e, void 0 === u ? t : u, d, C, m) + .then(function (e) { + var t, o; + null != y && y.base64Data && ((0, p.m8)(e.id, y), (e.imageContextData = y)), i({ comment: e, assetId: r.id, cacheComments: g, type: f.eE.SUCCESS }); + var a = + { note: "pin-comment", shape: "draw-comment", highlight: "highlight-comment", strikethrough: "strikethrough-comment", insert: "insert-comment", replace: "replace-comment" }[ + null === (t = e.target) || void 0 === t || null === (o = t.selector) || void 0 === o ? void 0 : o.subtype + ] || "post-comment"; + k.sendCreateCommentEvent(l.DunamisConstants.CrudResult.Success), + D().fireEvent({ event: { subcategory: a, subtype: "comment", type: "render" }, content: { parent_id: e.id } }), + e.mentions.length && D().fireEvent({ event: { subcategory: a, subtype: "mention", type: "render" }, content: { parent_id: e.id } }), + i(_(e.id)), + n(e); + }) + .catch(function (e) { + k.sendCreateCommentEvent(l.DunamisConstants.CrudResult.Error), i({ assetId: r.id, error: "root", type: f.eE.ERROR, errorObj: e }), o(e); + }); + }); + }; + }, + V = function (e, t, n) { + return { assetId: e, id: t, parentCommentId: n, type: f.lP }; + }, + H = function (e) { + return function (t) { + t({ assetId: e, type: f.ii }); + }; + }, + G = function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}; + return function (n, r) { + var o = t.cacheComments, + a = t.latestMobileEnabled, + i = r(), + c = (0, v._X)(i, e.id), + l = c.comments, + u = c.commentProposedForDelete; + if (e.id && u) { + var d, + m, + h = u.id, + y = u.parentCommentId, + g = (0, v.v)(i), + b = (0, v.sZ)(i).indexOf(h), + E = y + ? null === (d = g[y]) || void 0 === d || null === (m = d.replies) || void 0 === m + ? void 0 + : m.findIndex(function (e) { + return e.id === h; + }) + : l.indexOf(h), + D = new s.q6(u, { id: e.id, useNodeIndex: e.useNodeIndex, validNodes: e.validNodes }); + return ( + n({ assetId: e.id, commentId: h, parentCommentId: y, type: f.b$.START }), + (0, p.Rv)(h), + new Promise(function (t, r) { + D.delete() + .then(function () { + n({ cacheComments: o, assetId: e.id, type: f.b$.SUCCESS }), a && !y && n(M(e.id)), t(); + }) + .catch(function (t) { + var o = h; + n({ assetId: e.id, error: o, comment: u, commentIndex: E, commentIndexInCommentsAllIds: b, parentCommentId: y, type: f.b$.ERROR }), r(t); + }); + }) + ); + } + }; + }, + W = function (e, t, n, r) { + var a = arguments.length > 4 && void 0 !== arguments[4] ? arguments[4] : {}, + i = arguments.length > 5 && void 0 !== arguments[5] ? arguments[5] : {}; + return function (c, l) { + var u, + d = i.cacheComments, + m = i.imageCapture, + h = l(), + y = o()(h, "".concat(f.Bq, ":context")), + g = (0, v._X)(h, a.id).remappedMap, + E = (0, v.v)(h), + D = y.imageContextData, + C = n + ? null === (u = E[n]) || void 0 === u + ? void 0 + : u.replies.find(function (e) { + return e.id === t; + }) + : E[t]; + if (C) { + var A = w(C, g), + k = C.id, + T = new s.q6(A, { id: a.id, useNodeIndex: a.useNodeIndex, validNodes: a.validNodes }), + I = S(r, e); + return ( + c({ assetId: a.id, comment: b(b({}, C), {}, { bodyValue: (0, p.UW)(e, I), mentions: I, modified: new Date().toISOString() }), parentCommentId: n, type: f.Al.START }), + T.update(e, void 0, I, void 0) + .then(function (e) { + if (!n) { + var t = l(), + r = (0, v.v)(t)[e.id]; + (e.draftReplyText = r.draftReplyText), (e.replies = r.replies), (e.repliesOpen = r.repliesOpen); + } + m && D.base64Data && ((0, p.m8)(e.id, D), (e.imageContextData = D)), + c({ updatedCommentData: e, parentCommentId: n, cacheComments: d, assetId: a.id, type: f.Al.SUCCESS }), + c(n ? _(n, e.id) : _(e.id)), + C.draftReplyText && c(N(C.id, C.draftReplyText)); + }) + .catch(function (e) { + var t = l(), + r = (0, v.v)(t)[C.id]; + throw ( + (n || ((C.draftReplyText = r.draftReplyText), (C.replies = r.replies), (C.repliesOpen = r.repliesOpen)), + (C.mentions = I), + c({ assetId: a.id, comment: b(b({}, C), {}, n ? { mentions: I } : { draftReplyText: r.draftReplyText, mentions: I, replies: r.replies, repliesOpen: r.repliesOpen }), error: k, parentCommentId: n, type: f.Al.ERROR }), + e) + ); + }) + ); + } + return Promise.reject(); + }; + }, + Q = function (e, t, n) { + var r = arguments.length > 3 && void 0 !== arguments[3] ? arguments[3] : {}; + return function (a, i) { + var c = i(), + l = (0, v.v)(c), + u = (0, v._X)(c, r.id).remappedMap, + d = o()(c, "".concat(f.Bq, ":context.mediaData")), + p = l[e]; + if (p) { + var h = p.id, + y = p.bodyValue, + g = p.draftReplyText, + b = p.mentions, + E = p.repliesOpen, + D = p.dirtyEdit, + C = w(p, u), + S = new s.q6(C, { id: r.id, useNodeIndex: r.useNodeIndex, validNodes: r.validNodes }); + return ( + a((0, m.O$)(h)), + a((0, m.yC)(t, n)), + S.update(y, t, b, n, d) + .then(function (e) { + (e.draftReplyText = g), (e.repliesOpen = !!g || E), (e.dirtyEdit = D), a({ assetId: r.id, updatedComment: e, type: f.T3.SUCCESS }), a(_(e.id)); + }) + .catch(function (e) { + throw (a({ assetId: r.id, error: h, type: f.T3.ERROR }), e); + }) + ); + } + }; + }, + J = function (e, t) { + return { assetId: e, mappingData: t, type: f.sf }; + }, + Y = function (e, t) { + var n = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : {}; + return function (r) { + var o = n.cacheComments, + a = n.updateRedux, + i = new s.xR({ id: t }); + return new Promise(function (n, c) { + i.remap(e) + .then(function (e) { + var i = [], + c = []; + Object.keys(e).forEach(function (t) { + y(e[t]) === y(new s.q6()) && (i.push(e[t]), c.push(t)); + }), + a && r({ assetId: t, cacheComments: o, commentsToUpdate: i, type: f.Ar.SUCCESS }), + n(c); + }) + .catch(function (e) { + c(e); + }); + }); + }; + }, + q = function (e, t) { + var n = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : {}; + return function (r, o) { + if (!e || 0 === Object.keys(e).length) return Promise.resolve(); + var a = o(), + c = i()((0, v.o8)(a)), + l = n.cacheMetadata, + u = n.recursive, + d = void 0 !== u && u; + return ( + r({ assetId: t, cacheMetadata: l, metadata: e, type: f.Oz.START }), + new s.xR({ id: t }) + .batchCommentMetadataUpdate(e, d) + .then(function (e) { + if (d) { + var n = C(o(), t).reduce(function (e, t) { + return (e[t.id.toLowerCase()] = t), e; + }, {}); + Object.keys(e).forEach(function (t) { + var r = n[t], + o = null == r ? void 0 : r.replies; + (null == o ? void 0 : o.length) >= 1 && + o.forEach(function (t) { + e[t.id.toLowerCase()] = { read: !0 }; + }); + }); + } + r({ assetId: t, cacheMetadata: l, metadata: e, type: f.Oz.SUCCESS }); + }) + .catch(function (n) { + throw ( + (Object.keys(e).forEach(function (t) { + c && void 0 === c[t] && (c[t] = b(b({}, e[t]), {}, { read: !1 })); + }), + r({ assetId: t, cacheMetadata: l, metadata: c, type: f.Oz.ERROR }), + n) + ); + }) + ); + }; + }, + X = function (e) { + return { assetId: e, type: f.dh }; + }, + K = function () { + return { type: f.k8 }; + }, + $ = function (e, t) { + return { assetId: e, autoScroll: t, type: f.dS }; + }; + }, + 30251: (e, t, n) => { + "use strict"; + n.d(t, { By: () => D, Fu: () => I, I3: () => h, Iz: () => A, O$: () => w, Om: () => m, PM: () => k, Po: () => g, Sp: () => y, V0: () => b, XH: () => v, eP: () => E, mj: () => T, rG: () => _, xX: () => C, yC: () => S }); + var r = n(19212), + o = n(57305), + a = n.n(o), + i = n(99894), + s = ["expires"]; + function c(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function l(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? c(Object(n), !0).forEach(function (t) { + u(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : c(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function u(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var d, + p, + f = 3e5, + m = function (e, t) { + return function (n, o) { + var c = o(), + u = a()(c, "".concat(i.Bq, ":context")).guestSessionRestoreCount; + return ( + clearTimeout(d), + clearTimeout(p), + new Promise(function (o, a) { + r.KU.instance + .createAnonymousSession(e, t) + .then(function (t) { + var a = t.expires, + c = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = {}, + a = Object.keys(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (o[n] = e[n]); + return o; + })(e, t); + if (Object.getOwnPropertySymbols) { + var a = Object.getOwnPropertySymbols(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (Object.prototype.propertyIsEnumerable.call(e, n) && (o[n] = e[n])); + } + return o; + })(t, s); + r.KU.instance.configure({ token: c.token }); + var m = l(l({}, c), {}, { name: e.userName }); + n({ data: m, type: i.lD.SUCCESS }); + var h = new Date(), + v = new Date(parseInt(a, 10)), + y = new Date(+h + 36e5); + if (v > new Date(+y - f) && v < new Date(+y + f)) { + var g = Math.min(v, y) - h; + u > 0 && + (d = setTimeout(function () { + n({ type: i.WD, sessionState: "expires-soon" }); + }, g - f)), + (p = setTimeout(function () { + n({ type: i.WD, sessionState: "expired" }); + }, g)); + } + o(m); + }) + .catch(function (e) { + n({ type: i.lD.ERROR }), a(e); + }); + }) + ); + }; + }, + h = function () { + return function (e) { + clearTimeout(d), clearTimeout(p), e({ type: i.oA }); + }; + }, + v = function (e) { + return { commentsListMinimized: e, type: i.pO }; + }, + y = function (e) { + return { isLoginVisible: e, type: i.$o }; + }, + g = function (e) { + return { emojiPickerInfo: e, type: i.FN }; + }, + b = function (e, t, n, r) { + return { isPlacingAnnotation: e, itmId: t, showAnnotationMask: n, newAnnotationType: r, type: i.x7 }; + }, + E = function (e) { + return { mediaData: e, type: i.QR }; + }, + D = function () { + return function (e) { + e(b(!1, !1, !1, void 0)); + }; + }, + C = function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] && arguments[1]; + return function (n, r) { + var o = r(), + s = a()(o, "".concat(i.Bq, ":context")), + c = s.annotatingItmId !== e, + l = !s.isPlacingAnnotation || c; + t && !s.commentsListMinimized && n(v(!0)), n(b(l, e, l, "pin")); + }; + }, + w = function (e) { + return { id: e, type: i.AC }; + }, + S = function (e, t) { + return { location: e ? { coordinates: e, nodeId: t } : void 0, type: i.Ys }; + }, + A = function (e) { + return { color: e, type: i.kt }; + }, + k = function (e) { + return { focusedInputInfo: e, type: i.yU }; + }, + _ = function (e) { + return { cmtId: e, type: i.Gp }; + }, + T = function (e, t) { + return { assetId: e, sectionId: t, isAdd: !(arguments.length > 2 && void 0 !== arguments[2]) || arguments[2], type: i.LG }; + }, + I = function (e) { + return function (t) { + t({ data: e, type: i.Xb }); + }; + }; + }, + 15686: (e, t, n) => { + "use strict"; + n.d(t, { BS: () => c, ER: () => s, Eu: () => u, ay: () => p, nv: () => l, wZ: () => d }); + var r = n(94055), + o = n(56841), + a = n(99894), + i = function () { + return r.ccxController.getInstance(a.FH); + }, + s = function (e) { + return function (t) { + (null != e && e.excludeIngestEvent) || i().fireEvent(o.Z.clearFilters), t({ type: a.FT }); + }; + }, + c = function (e) { + return function (t) { + i().fireEvent(o.Z.filterTime(e)), t({ type: a.ML, values: e }); + }; + }, + l = function (e) { + return function (t) { + i().fireEvent(o.Z.filterUser), t({ type: a.LW, values: e }); + }; + }, + u = function () { + return function (e, t) { + var n = t()["".concat(a.Bq, ":filter")].showResolvedComments; + i().fireEvent(o.Z[n ? "backToUnresolved" : "viewResolved"]), e({ type: a.jc }); + }; + }, + d = function () { + return function (e, t) { + var n = t()["".concat(a.Bq, ":filter")].showUnreadComments; + i().fireEvent(o.Z[n ? "backToReadUnread" : "viewUnread"]), e({ type: a.PI }); + }; + }, + p = function (e) { + return function (t) { + t({ metadataMap: e, type: a.cT }); + }; + }; + }, + 73531: (e, t, n) => { + "use strict"; + n.d(t, { BH: () => o, BX: () => a, K1: () => s, Po: () => l, YT: () => i, cN: () => c, mc: () => u }); + var r = n(99894), + o = function () { + return { type: r.N2 }; + }, + a = function (e) { + return { subview: e, type: r.do }; + }, + i = function (e) { + return { expanded: e, type: r.zF }; + }, + s = function (e) { + return { fullscreen: e, type: r.JV }; + }, + c = function (e) { + return { inputFocused: e, type: r.wV }; + }, + l = function (e) { + return { mentionListShown: e, type: r.nU }; + }, + u = function () { + return { type: r.nd }; + }; + }, + 91712: (e, t, n) => { + "use strict"; + n.d(t, { K: () => o, e: () => r }); + var r = function (e) { + var t = e.pageX, + n = e.pageY; + return ( + e.touches && e.touches.length > 0 ? ((t = e.touches[0].pageX), (n = e.touches[0].pageY)) : e.changedTouches && e.changedTouches.length > 0 && ((t = e.changedTouches[0].pageX), (n = e.changedTouches[0].pageY)), { x: t, y: n } + ); + }, + o = function (e) { + var t = e.clientX, + n = e.clientY; + return e.changedTouches && e.changedTouches.length > 0 && ((t = e.changedTouches[0].clientX), (n = e.changedTouches[0].clientY)), { x: t, y: n }; + }; + }, + 88559: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => ae }); + var r = n(23469), + o = n.n(r), + a = n(47776), + i = n.n(a), + s = n(57568), + c = n(73531), + l = n(23492), + u = n(93139), + d = n(35752), + p = n(43235), + f = n.n(p), + m = n(47107), + h = n(83896), + v = n(99894), + y = n(5347), + g = n.n(y), + b = function (e) { + var t = e.children, + n = e.onIngestEvent, + a = (0, r.useContext)(l.ZP), + i = (0, r.useRef)(), + s = (function () { + var e, + t = (0, r.useContext)(l.ZP), + n = t.analyticsData, + o = t.assetData, + a = t.globalCommentsToggle, + i = t.imsData, + s = t.locale, + c = t.sophiaAnalyticsData, + u = (0, h.Z)().commentCounts, + d = (null == o ? void 0 : o.validNodes) || [], + p = Boolean(d.length || Object.keys(u.allNodes || {}).length) && a.isActive, + m = "not-signed-in", + y = "not-signed-in"; + null != i && i.token && (i.isGuestUser ? ((m = "guest"), (y = "guest")) : ((m = "sign-in"), (y = null != i && i.isPaid ? "paid" : "trial"))), + null != o && o.reviewType && (e = "cloudDoc" === o.reviewType ? "Cloud Doc Review" : "Artifact Review"); + var b = {}; + return ( + c && (b.exp = c), + f()( + {}, + v.z2, + { + content: { category: e, id: null == o ? void 0 : o.id, mimetype: null == o ? void 0 : o.mimeType }, + event: { language: s, user_guid: null == i ? void 0 : i.id, value: p ? "global" : "non-global" }, + env: { com: { version: g() } }, + ui: { sequence: null == o ? void 0 : o.nodeId }, + user: { service_code: m, service_level: y }, + custom: { error_workflow: String(t.isErrorWorkflow) }, + }, + b, + n + ) + ); + })(); + return o().createElement( + m.Z, + { + allowNoToken: !0, + apiKey: "CCXComments1", + env: window.FORCE_STAGE_INGEST ? "stage" : a.environment, + data: s, + debounce: a.analyticsDebounce, + product: "Comments/".concat(g()), + project: v.FH, + ref: i, + disabled: !a.analyticsEnabled, + fireEventCallback: n, + }, + t + ); + }; + (b.defaultProps = { onIngestEvent: function () {} }), (b.propTypes = { children: i().node, onIngestEvent: i().func }); + const E = b; + var D = n(88133), + C = n(2442), + w = n(69088), + S = n(87220), + A = n.n(S), + k = n(30251), + _ = n(82950); + var T = n(10548), + I = n(24124), + O = n(19212), + F = n(39589), + x = n(48468); + var N = n(48699), + R = n.n(N), + L = n(91712), + M = !!window.PointerEvent, + P = function () { + document.body.classList.remove( + "ccx-comments-adding-annotation-pin", + "ccx-comments-adding-annotation-highlight", + "ccx-comments-adding-annotation-insert", + "ccx-comments-adding-annotation-replace", + "ccx-comments-adding-annotation-strikethrough" + ); + }; + var j = n(91460), + B = (0, x.xr)(), + Z = (0, j.P1)( + [ + function (e) { + return e["".concat(v.Bq, ":context")]; + }, + B, + function (e, t) { + return t; + }, + function (e, t, n) { + return n; + }, + ], + function (e, t, n, r) { + var o = { + annotatingItmId: e.annotatingItmId, + assetId: n, + color: e.annotationColor, + currentlyPlacing: e.isPlacingAnnotation, + imageCoordinatesInfo: e.imageCoordinatesInfo, + location: e.annotationLocation, + sourceId: r, + type: e.newAnnotationType, + }, + a = t.filter(function (e) { + return e.recentActivity === v.Uj || e.recentActivity === v.E3; + }); + if (a.length) { + var i = a[0], + s = { id: i.id, type: i.recentActivity }; + i.recentActivity === v.E3 && "note" === i.target.selector.subtype && (s.coordinates = { x: i.target.selector.noteX, y: i.target.selector.noteY }), (o.newOrEditedCommentData = s); + } + return o; + } + ); + function U(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function z(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? U(Object(n), !0).forEach(function (t) { + V(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : U(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function V(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var H = n(89941), + G = n(69522), + W = n(90353), + Q = n(95545); + var J = n(9097); + function Y(e, t) { + return ( + (function (e) { + if (Array.isArray(e)) return e; + })(e) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(e, t) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return q(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? q(e, t) : void 0; + } + })(e, t) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function q(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var X = n(43793); + function K(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function $(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? K(Object(n), !0).forEach(function (t) { + ee(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : K(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function ee(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + function te(e, t, n, r, o, a, i) { + try { + var s = e[a](i), + c = s.value; + } catch (e) { + return void n(e); + } + s.done ? t(c) : Promise.resolve(c).then(r, o); + } + function ne(e) { + return function () { + var t = this, + n = arguments; + return new Promise(function (r, o) { + var a = e.apply(t, n); + function i(e) { + te(a, r, o, i, s, "next", e); + } + function s(e) { + te(a, r, o, i, s, "throw", e); + } + i(void 0); + }); + }; + } + function re() { + return ( + (re = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + re.apply(this, arguments) + ); + } + var oe = (0, r.forwardRef)(function (e, t) { + var n, + a, + i, + p, + f, + m, + y, + g, + b, + E, + S, + N, + j, + B, + U, + V, + q = (0, w.I0)(), + K = (0, T.Z)(e.onCommentsApiUpdate), + ee = (0, r.useContext)(l.ZP), + te = (0, H.Z)(), + re = (0, _.Z)(e.assetData.id), + oe = (0, _.Z)(e.isVisible); + (0, r.useEffect)( + function () { + void 0 !== oe && + oe !== e.isVisible && + (e.isVisible ? te.fireEvent({ event: { subcategory: "navigation", type: "render", subtype: "panel-visible" } }) : te.fireEvent({ event: { subcategory: "navigation", type: "render", subtype: "panel-hidden" } })); + }, + [oe, e.isVisible, te] + ), + (0, r.useEffect)(function () { + re && re !== e.assetData.id && q((0, c.mc)()); + }), + (0, r.useEffect)(function () {}, [e.compactLayout]), + (0, I.Mi)(), + (p = (i = (0, r.useContext)(l.ZP)).assetData), + (f = i.authenticateFetch), + (m = i.appKey), + (y = i.appName), + (g = i.environment), + (b = i.imsData), + (E = void 0 === b ? {} : b), + (S = i.invitationServiceAccessToken), + (0, r.useEffect)( + function () { + O.KU.instance.configure({ appKey: m, appName: y, disableGetAuthorization: !f, environment: g, invitationServiceAccessToken: S, token: E.token, userId: E.id }); + }, + [p, f, m, y, g, E, S] + ), + (function (e, t) { + var n = (0, r.useContext)(l.ZP), + o = n.asset, + a = o.addFetchedAsset, + i = o.assetId, + s = o.fetchedAssets, + c = o.setAsset, + u = o.sourceId, + d = o.status, + p = n.assetData, + f = void 0 === p ? {} : p, + m = n.cacheComments, + h = n.documentState, + y = n.enableReadUnread, + g = n.environment, + b = n.hasReviewAccess, + E = n.imsData, + C = void 0 === E ? {} : E, + S = n.invitationServiceAccessToken, + k = n.isDocumentSupported, + T = n.isOffline, + I = n.locale, + O = n.multipleAssets, + N = (0, r.useContext)(D.ZP), + R = N.onCommentsError, + L = N.onCommentsSuccess, + M = (0, r.useRef)({}), + P = (0, r.useRef)(f.id), + j = (0, F.Z)(), + B = j.clearContext, + Z = j.fetchComments, + U = j.fetchCommentsMetadata, + z = j.updateCommentsData, + V = (0, w.v9)(x.s4), + H = (0, r.useRef)(V); + (P.current = O.selectedId || f.id), (H.current = V); + var G = (0, _.Z)(C) || {}, + W = (0, _.Z)(O.assetIds), + Q = b && "noDocument" !== h && k, + J = !((G.isGuestUser && !C.isLoggedIn) || (!G.isLoggedIn && C.isGuestUser)), + Y = (0, r.useCallback)( + function (e) { + return !s + .map(function (e) { + return e.id; + }) + .includes(e); + }, + [s] + ), + q = (0, r.useCallback)( + function (e) { + if (Q && !e.isFrameArtifact && J && !M.current[e.id]) { + M.current[e.id] = !0; + var t = []; + y && t.push(U(e)); + var n = Z(e) + .then(function (t) { + H.current.includes(t.id) ? Y(t.id) && a(t) : t.disableUpdates(), t.id === P.current && c(t, { type: v.Ud.FETCHED }, e.id, e.sourceId); + }) + .catch(function (t) { + e.id === P.current && c(void 0, { type: v.Ud.ERROR, statusCode: t.status }, e.id, e.sourceId); + }) + .finally(function () { + return (M.current[e.id] = !1); + }); + t.push(n), + Promise.all(t).catch(function (e) { + return console.error("Error while fetching comments or metadata", e); + }); + } + }, + [a, Q, y, Z, U, Y, J, c] + ), + X = (0, r.useCallback)( + function (e) { + return O.assets.length + ? O.assets.find(function (t) { + return t.id === e; + }) + : f; + }, + [f, O.assets] + ); + (0, r.useEffect)( + function () { + y && + (s.length + ? s.forEach(function (e) { + return U(X(e.id)); + }) + : f.id && U(f)); + }, + [y] + ), + (0, r.useEffect)( + function () { + f.id || (B(), c(void 0, { type: v.Ud.UNFETCHED })); + }, + [f.id, B, c] + ), + (0, r.useEffect)( + function () { + A()(O.assetIds, W) || + O.assets.forEach(function (e) { + q(e); + }); + }, + [m, Q, y, g, S, I, O, J] + ), + (0, r.useEffect)( + function () { + f.id && q(f); + }, + [f.id, m, Q, y, g, S, I, J] + ), + (0, r.useEffect)( + function () { + d.type === v.Ud.FETCHED ? L({ assetId: i, sourceId: u }) : d.type === v.Ud.ERROR && R({ assetId: i, sourceId: u, statusCode: d.statusCode, type: "initialization" }); + }, + [d] + ), + (0, r.useEffect)( + function () { + T || + s.forEach(function (e) { + return e.checkForUpdates(); + }); + }, + [T] + ), + (0, r.useEffect)( + function () { + return ( + s.forEach(function (e) { + e.on("update", function (t) { + return (function (e, t) { + var n = X(t); + z(e, n), y && U(n); + })(t, e.id); + }), + e.on("update-error", function (t) { + return (function (e, t) { + var n = (X(t) || {}).sourceId; + R({ assetId: t, sourceId: n, statusCode: e.status, type: "update" }); + })(t, e.id); + }); + }), + function () { + s.forEach(function (e) { + e.removeAllListeners("update"), e.removeAllListeners("update-error"); + }); + } + ); + }, + [y, s, X] + ), + (0, r.useEffect)( + function () { + var n = function (t) { + s.forEach(function (n) { + e(t, n), y && U(X(n.id)); + }); + }, + r = function (e) { + s.forEach(function (n) { + t(e, n); + }); + }; + return ( + window.addEventListener("focus", n), + window.addEventListener("blur", r), + function () { + window.removeEventListener("focus", n), window.removeEventListener("blur", r); + } + ); + }, + [t, y, e, U, s, X] + ); + })(K.enableComments, K.disableComments), + (function (e) { + var t = (0, r.useContext)(l.ZP), + n = t.asset.asset, + o = t.assetData, + a = t.compactLayout, + i = t.imsData, + s = t.latestMobileEnabled, + c = (0, r.useContext)(D.ZP).onNodeChange, + d = (0, F.Z)(), + p = d.postComment, + f = d.replyComment, + m = (0, H.Z)(), + h = (0, w.I0)(), + y = (0, u.cs)(); + (0, r.useEffect)(function () { + if (n && i.id) { + var t = (0, W.RH)(v.oi); + if (t) { + var r, + s, + l = t.bodyValue, + u = t.annotationLocation, + d = t.annotatingItmId, + f = t.id, + g = t.nodeId, + b = null == t || null === (r = t.annotationLocation) || void 0 === r || null === (s = r.coordinates) || void 0 === s ? void 0 : s.sectionId; + o.id === f && + ((0, W.F_)(v.oi), + a && h((0, k.PM)()), + h((0, k.yC)(u.coordinates, u.nodeId)), + p(l, g, void 0, { shouldUseAnnotationLocation: "root" === d }) + .then(function (t) { + i.isGuestUser || e(t.id, !0), y.commentPosted({ withoutAnnotation: !t.annotationType }), c(g, b); + }) + .catch(function (e) { + m.fireEvent(m.events.commentsFailedToPost(e.status, e.message, !1)); + })); + } + } + }), + (0, r.useEffect)(function () { + if (n && i.id) { + var t = (0, W.RH)(v.uX); + if (t) { + var r, + l, + u = t.bodyValue, + d = t.id, + p = t.nodeId, + y = t.commentData, + g = null == y || null === (r = y.target) || void 0 === r || null === (l = r.selector) || void 0 === l ? void 0 : l.sectionId; + o.id === d && + ((0, W.F_)(v.uX), + a && h((0, k.PM)()), + f(u, y.id) + .then(function (t) { + s ? (h((0, G.nx)(o.id, y.id)), h((0, Q.Ef)(t.id))) : i.isGuestUser || e(t.id, !0), c(p, g); + }) + .catch(function (e) { + m.fireEvent(m.events.commentsFailedToPost(e.status, e.message)); + })); + } + } + }); + })(K.showComment), + (0, r.useImperativeHandle)(t, function () { + return K; + }), + (function (e, t, n) { + (0, r.useEffect)( + function () { + !e || t || n.includes("prod") || console.warn("Annotation usage without the annotation toolbar layout has been deprecated and will be removed in a future release. Please migrate by using the annotationTypes prop."); + }, + [e, t, n] + ); + })(ee.annotationsEnabled, ee.annotationTypes, ee.environment), + (function () { + var e = (0, r.useContext)(l.ZP), + t = (0, w.I0)(), + n = { assetDataId: e.assetData.id, touchControls: e.touchControls, annotationsEnabled: e.annotationsEnabled, environment: e.environment, disableCommentCreation: e.disableCommentCreation, annotationTypes: e.annotationTypes }, + o = (0, _.Z)(n); + (0, r.useEffect)(function () { + A()(n, o) || + (0, C.dC)(function () { + t((0, k.yC)()), t((0, k.V0)()); + }); + }); + })(), + (N = (0, w.oR)().getState()["".concat(v.Bq, ":context")]), + (j = N.newAnnotationType), + (B = N.isPlacingAnnotation), + (U = (0, r.useContext)(l.ZP).annotationOverlayElements), + (V = (0, r.useCallback)( + R()( + function (e) { + var t = (0, L.K)(e), + n = t.x, + r = t.y, + o = !1, + a = ["addining-annotation-pin", "addining-annotation-highlight", "addining-annotation-insert", "addining-annotation-replace", "addining-annotation-strikethrough"]; + (U.length + ? U.map(function (e) { + return e.shadowRoot.querySelector("#".concat(v.iq)); + }) + : Array.from(document.querySelectorAll("#".concat(v.iq))) + ) + .filter(function (e) { + return a.some(function (t) { + return e.classList.contains(t); + }); + }) + .some(function (e) { + var t = e.getRootNode(), + a = e.getBoundingClientRect(); + if ("pin" === j) { + var i = t.elementFromPoint(n, r); + o = "CC-COMMENTS-ANNOTATIONS-OVERLAY" === i.tagName ? i.shadowRoot.querySelector(".addining-annotation-pin") === e : i === e; + } else n >= a.left && n <= a.left + a.width && r >= a.top && r <= a.top + a.height && (o = !0); + return o; + }), + o ? document.body.classList.add("ccx-comments-adding-annotation-".concat(j)) : P(); + }, + 10, + { leading: !0, maxWait: 30 } + ), + [j] + )), + (0, r.useEffect)( + function () { + return ( + B && (M ? window.addEventListener("pointermove", V, !0) : (window.addEventListener("mousemove", V, !0), window.addEventListener("touchmove", V, !0))), + function () { + M ? window.removeEventListener("pointermove", V, !0) : (window.removeEventListener("mousemove", V, !0), window.removeEventListener("touchmove", V, !0)), P(); + } + ); + }, + [B, V] + ), + (0, r.useEffect)(function () { + return function () { + P(); + }; + }, []), + (function () { + var e = (0, h.Z)(), + t = e.comments, + n = e.commentCounts, + o = (0, r.useContext)(l.ZP), + a = (0, w.oR)().getState(), + i = a["".concat(v.Bq, ":delta")], + s = i.data, + c = i.reason, + u = a["".concat(v.Bq, ":annotation")].showAnnotations, + d = (0, r.useContext)(D.ZP).onCommentsUpdate, + p = (0, r.useRef)(n), + f = (0, r.useRef)(c), + m = o.assetData, + y = (0, r.useRef)(null == m ? void 0 : m.id), + g = (0, r.useRef)(null == m ? void 0 : m.sourceId), + b = (0, _.Z)(m.id); + (0, r.useEffect)( + function () { + (y.current = null == m ? void 0 : m.id), (g.current = null == m ? void 0 : m.sourceId); + }, + [m] + ), + (0, r.useEffect)( + function () { + s && c && d(n, { showAnnotations: u, reason: c, data: z(z({}, s), {}, { visibleComments: t }) }, { assetId: y.current, sourceId: g.current }); + }, + [s, c] + ), + (0, r.useEffect)( + function () { + c && !A()(n, p.current) && c === f.current && d(n, { showAnnotations: u, reason: "counts-change", data: { visibleComments: t } }, { assetId: y.current, sourceId: g.current }), (p.current = z({}, n)), (f.current = c); + }, + [n, c] + ), + (0, r.useEffect)( + function () { + m.id && b && m.id !== b && d(p.current, { showAnnotations: u, reason: c, data: { visibleComments: t } }, { assetId: y.current, sourceId: g.current }); + }, + [m.id, c] + ); + })(), + (function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : function () {}, + t = (0, r.useContext)(l.ZP), + n = t.annotationsEnabled, + o = t.assetData, + a = (0, w.v9)(function (e) { + return Z(e, o.id, o.sourceId); + }), + i = (0, _.Z)(a) || {}; + (0, r.useEffect)(function () { + if (n && !A()(a, i)) { + var t = a.annotatingItmId, + r = a.assetId, + o = a.color, + s = a.currentlyPlacing, + c = a.imageCoordinatesInfo, + l = a.location, + u = a.newOrEditedCommentData, + d = a.sourceId, + p = a.type, + f = i.color, + m = i.currentlyPlacing, + h = i.location, + y = {}; + s && !m + ? ((y = { color: o, type: p, trigger: "start" }), "root" === t ? (y.action = "new") : ((y.id = t), (y.action = "edit"))) + : u && h && (u.type !== v.E3 || A()(u.coordinates, { x: h.coordinates.noteX, y: h.coordinates.noteY })) + ? (y = { action: u.type === v.E3 ? "edit" : "new", trigger: "submit" }) + : (!s && m && !l) || (!l && h) + ? (y = { trigger: "cancel" }) + : l && !h + ? ((y = { color: o, location: l, trigger: "place", type: p }), c && (y.coordinateData = c)) + : !p || (o === f && (("pin" !== p && "draw" !== p) || A()(l, h))) || (y = { color: o, location: l, trigger: "update", type: p }), + y.trigger && e(y, { assetId: r, sourceId: d }); + } + }); + })(e.onAnnotatingChange), + (function () { + var e = (0, r.useContext)(l.ZP), + t = e.annotationsMultiPageEnabled, + n = e.assetData, + o = (0, r.useContext)(D.ZP).onCommentSelect, + a = (0, w.I0)(), + i = (0, w.v9)(function (e) { + return (0, x._X)(e, n.id); + }).dirtyComments; + (0, r.useEffect)( + function () { + o(); + }, + [n.id] + ), + (0, r.useEffect)( + function () { + var e; + t || (null !== (e = i[n.nodeId]) && void 0 !== e && e.annotationType ? a((0, k.V0)(!1, !1, !1, i[n.nodeId].annotationType)) : a((0, k.By)())), a((0, k.PM)()); + }, + [t, n.nodeId, i, a] + ); + })(), + (function () { + var e = (0, r.useContext)(l.ZP), + t = e.assetData, + n = e.isVisible, + o = e.isOffline, + a = e.localCommentMetadataMapRef, + i = e.unreadCommentOverrideMapRef, + s = (0, J.Z)().setIsRead, + c = (0, _.Z)(t.id), + u = (0, _.Z)(t.nodeId), + d = (0, H.Z)(), + p = (0, r.useCallback)( + function (e) { + return s(a.current, e || t.id).then(function () { + a.current = {}; + }); + }, + [t.id, a, s] + ), + f = (0, r.useCallback)( + function () { + return !!a.current && Object.keys(a.current).length > 0; + }, + [a] + ); + (0, r.useEffect)( + function () { + n || p(); + }, + [n, p] + ), + (0, r.useEffect)( + function () { + !n && + f() && + p() + .then(function () { + d.fireEvent({ event: { subcategory: "read-unread", type: "click", subtype: "mark-as-read-visibility-change" } }); + }) + .catch(function (e) { + var t = e.status, + n = e.message; + d.fireEvent({ event: { subcategory: "read-unread", subtype: "error", type: "click", error_code: t, error_type: n, error_desc: "failed-to-mark-as-read-on-visibility-change" } }); + }); + }, + [d, n] + ), + (0, r.useEffect)( + function () { + !o && + f() && + p().catch(function (e) { + return console.error("Failed to mark comments as read on offline status change", e); + }); + }, + [o] + ), + (0, r.useEffect)( + function () { + t.nodeId && + void 0 !== u && + f() && + p() + .then(function () { + d.fireEvent({ event: { subcategory: "read-unread", type: "click", subtype: "mark-as-read-node-change" } }); + }) + .catch(function (e) { + var t = e.status, + n = e.message; + d.fireEvent({ event: { subcategory: "read-unread", subtype: "error", type: "click", error_code: t, error_type: n, error_desc: "failed-to-mark-as-read-on-node-change" } }); + }); + }, + [t.nodeId] + ), + (0, r.useEffect)( + function () { + t.id && + t.id !== c && + p(c) + .catch(function (e) { + return console.error("Failed to mark comments as read on asset id change", e); + }) + .finally(function () { + i.current = {}; + }); + }, + [t.id] + ); + })(), + (function () { + var e = Y((0, r.useState)([]), 2), + t = e[0], + n = e[1], + o = Y((0, r.useState)(), 2), + a = o[0], + i = o[1], + s = (0, r.useContext)(l.ZP), + c = s.assetData, + u = s.enableReadUnread, + d = s.asset.fetchedAssets, + p = (0, r.useContext)(D.ZP).onMetadataUpdate, + f = (0, J.Z)().hasUnreadComments, + m = (0, _.Z)(a); + (0, r.useEffect)( + function () { + var e = d.map(function (e) { + return e.id; + }); + A()(t, e) || n(e); + }, + [t, d] + ), + (0, r.useEffect)( + function () { + if (u) { + var e = t.some(function (e) { + return f(e); + }); + i(e); + } + }, + [t, u, f] + ), + (0, r.useEffect)( + function () { + a !== m && p({ hasUnreadComments: a }, { assetId: c.id, sourceId: c.sourceId }); + }, + [c.id, c.sourceId, a, p, m] + ); + })(), + (function () { + var e = (0, r.useContext)(l.ZP), + t = e.abTestConfig, + n = e.imsData, + o = e.environment, + a = e.setSophiaConfigOverride, + i = e.appKey, + s = e.analyticsEnabled, + c = e.locale, + u = (n || {}).token, + d = void 0 === u ? "" : u, + p = (0, r.useCallback)( + (function () { + var e = ne( + regeneratorRuntime.mark(function e(t) { + var n, r, a, i, s; + return regeneratorRuntime.wrap( + function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return ( + (n = $($({}, v.SZ), t)), + (e.prev = 1), + (r = { Authorization: d.replace("Bearer", "").trim(), "x-api-key": n.apiKey }), + (a = new AbortController()), + (i = setTimeout(function () { + return a.abort(); + }, 5e3)), + (e.next = 7), + fetch("".concat(v.SZ.url[o], "?").concat(new URLSearchParams({ clientId: n.clientId })), { headers: r, signal: a.signal }) + ); + case 7: + return (e.next = 9), e.sent.json(); + case 9: + return (s = e.sent), clearTimeout(i), e.abrupt("return", s); + case 14: + (e.prev = 14), (e.t0 = e.catch(1)), console.warn("Error in floodgate service:", e.t0); + case 17: + case "end": + return e.stop(); + } + }, + e, + null, + [[1, 14]] + ); + }) + ); + return function (t) { + return e.apply(this, arguments); + }; + })(), + [o, d] + ), + f = (0, r.useCallback)( + (function () { + var e = ne( + regeneratorRuntime.mark(function e(t) { + var n, r, o, i, s, c, l, u, d, p, f, m, h, y, g, b, E, D; + return regeneratorRuntime.wrap( + function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + if ((((n = $($({}, v.Hr), t)).contextualParams.ctxLocale = n.locale), (e.prev = 2), !X.J)) { + e.next = 25; + break; + } + return ( + (i = setTimeout(function () { + return new Error("Sophia experience timed out"); + }, 2e3)), + (e.next = 7), + X.J.loadExperienceFromSophia(n) + ); + case 7: + if ( + ((s = e.sent), (c = null === (r = s.response) || void 0 === r ? void 0 : r.surfaces[t.surfaceID]), (l = (null === (o = s.response) || void 0 === o ? void 0 : o.analyticsData) || {}), clearTimeout(i), !c) + ) { + e.next = 25; + break; + } + if (((u = c.containers), (d = c.surfaceAnalyticsData), (p = void 0 === d ? {} : d), !((null == u ? void 0 : u.length) > 0 && u[0].data))) { + e.next = 25; + break; + } + return ( + (f = u[0]), + (m = f.data), + (h = f.containerAnalyticsData), + (y = void 0 === h ? {} : h), + (g = new AbortController()), + (b = setTimeout(function () { + return g.abort(); + }, 5e3)), + (e.next = 19), + fetch(m, { signal: g.signal }) + ); + case 19: + return (e.next = 21), e.sent.json(); + case 21: + (E = e.sent), + clearTimeout(b), + (D = { + response_guid: l.responseGUID, + surface_id: p.surfaceId, + campaign_id: y.campaignId, + variation_id: y.variationId, + action_block_id: y.actionBlockId, + container_id: y.containerId, + treatment_id: y.treatmentId, + control_group_id: y.controlGroupId, + }), + a(E, D); + case 25: + e.next = 30; + break; + case 27: + (e.prev = 27), (e.t0 = e.catch(2)), console.warn("Sophia fetch error", e.t0); + case 30: + case "end": + return e.stop(); + } + }, + e, + null, + [[2, 27]] + ); + }) + ); + return function (t) { + return e.apply(this, arguments); + }; + })(), + [a] + ); + (0, r.useEffect)( + function () { + t && + p({ apiKey: i, clientId: t.floodgateClientId, env: o }) + .then(function (e) { + if (null != e && e.releases) { + var n = + null == e + ? void 0 + : e.releases.find(function (e) { + return e.release_name === t.floodgateReleaseGroup; + }); + (null == n ? void 0 : n.features.includes(t.floodgateReleaseFeature)) && + f({ accessToken: d.replace("Bearer", "").trim(), apiKey: i, debug: "prod" !== o, enableAdobeAnalyticsIngestion: s, env: o, locale: c, surfaceID: t.sophiaSurfaceId }); + } + }) + .catch(function (e) { + return console.error("Floodgate fetch error", e); + }); + }, + [t, s, i, o, f, p, c, d] + ); + })(); + var ae = o().createElement(o().Fragment, null, o().createElement(u.qu, null), o().createElement(d.yU, null), e.children); + return null === (n = ee.imsData) || void 0 === n || !n.token || (null !== (a = ee.imsData) && void 0 !== a && a.token.includes("AnonBearer")) ? o().createElement(s.pm, { reCaptchaKey: ee.reCaptchaSiteKey }, ae) : ae; + }); + (oe.displayName = "CommentsProvider"), + (oe.defaultProps = { + abTestConfig: void 0, + analyticsData: null, + analyticsEnabled: !1, + analyticsDebounce: 5e3, + annotationsCreationEnabled: !0, + annotationsEnabled: !1, + annotationsMultiPageEnabled: !1, + annotationTypes: null, + assetData: { reviewType: "artifact", validNodes: [] }, + authenticateFetch: !0, + backgroundModeEnabled: !1, + cacheComments: !1, + cloudDocSupported: !0, + creativeOnboarding: !1, + compactLayout: !1, + disableCommentCreation: !1, + disableNetworkIndicator: !1, + documentState: "documentOpen", + enableEmojiPicker: !0, + enableFrameS4R: !1, + enableReadUnread: !1, + environment: "stage", + globalCommentsViewAll: !0, + groupBy: "node", + guestCommentingAutomationMode: !1, + hasReviewAccess: !0, + hostOfflineStatus: !1, + imageCapture: !1, + imageContextData: {}, + imsData: {}, + isDocumentActive: !0, + isDocumentSupported: !0, + isMapping: !1, + isVisible: !0, + locale: "en-US", + localeStringOverrides: {}, + onAnnotatingChange: function () {}, + onCommentInteraction: function () {}, + onCommentsError: function () {}, + onCommentsSuccess: function () {}, + onErrorRetry: function () {}, + onInvokeLogin: void 0, + onNodeChange: function () {}, + onShare: void 0, + onUrlOpen: void 0, + peopleGraphAPIKey: null, + repositionSubmitForTouch: !1, + richTextEntry: !0, + s4rEnabled: !1, + showRefactoredComment: !1, + stakeholderOnboarding: !1, + spectrumUIScale: "medium", + theme: "light", + themeType: "spectrum", + touchControls: !1, + typekitId: "pwg1jsp", + }), + (oe.propTypes = { + abTestConfig: i().shape({ floodgateClientId: i().string, floodgateReleaseGroup: i().string, floodgateReleaseFeature: i().string, sophiaSurfaceId: i().string }), + analyticsData: i().object, + analyticsDebounce: i().number, + analyticsEnabled: i().bool, + annotationsCreationEnabled: i().bool, + annotationsEnabled: i().bool, + annotationsMultiPageEnabled: i().bool, + annotationTypes: i().shape({ draw: i().bool, pin: i().bool, text: i().bool }), + appKey: i().string.isRequired, + assetData: i().shape({ + id: i().string, + ownerId: i().string, + nodeId: i().oneOfType([i().string, i().number]), + reviewType: i().oneOf(["artifact", "cloudDoc"]), + shareStatus: i().oneOf(["public", "orgShared", "shared", "unshared", "unknown"]), + url: i().string, + useProductViewUrl: i().bool, + validNodes: i().arrayOf(i().shape({ id: i().string, pageTitle: i().string, subtitle: i().string })).isRequired, + }), + authenticateFetch: i().bool, + backgroundModeEnabled: i().bool, + cacheComments: i().bool, + children: i().node.isRequired, + compactLayout: i().bool, + disableCommentCreation: i().bool, + disableNetworkIndicator: i().bool, + documentState: i().oneOf(["documentOpen", "noDocument", "documentLoading"]), + enableEmojiPicker: i().bool, + enableFrameS4R: i().bool, + enableReadUnread: i().bool, + environment: i().string, + globalCommentsViewAll: i().bool, + groupBy: i().oneOf(["node", "none"]), + guestCommentingAutomationMode: i().bool, + hasReviewAccess: i().bool, + imageCapture: i().bool, + imageContextData: i().object, + imsData: i().object, + invitationServiceAccessToken: i().string, + cloudDocSupported: i().bool, + isDocumentActive: i().bool, + isDocumentSupported: i().bool, + isMapping: i().bool, + isVisible: i().bool, + locale: i().string, + localeStringOverrides: i().object, + onAnnotatingChange: i().func, + onCommentInteraction: i().func, + onCommentsApiUpdate: i().func, + onCommentsError: i().func, + onCommentsSuccess: i().func, + onErrorRetry: i().func, + onInvokeLogin: i().func, + onNodeChange: i().func, + onShare: i().func, + onUrlOpen: i().func, + peopleGraphAPIKey: i().string, + pollForUpdates: i().bool, + repositionSubmitForTouch: i().bool, + richTextEntry: i().bool, + s4rEnabled: i().bool, + showRefactoredComment: i().bool, + spectrumUIScale: i().oneOf(["medium", "large"]), + theme: i().oneOf(["light", "lightest", "dark", "darkest"]), + themeType: i().oneOf(["spectrum", "express"]), + touchControls: i().bool, + typekitId: i().string, + hostOfflineStatus: i().bool, + }); + const ae = o().forwardRef(function (e, t) { + return o().createElement(w.m$, null, o().createElement(l.wI, e, o().createElement(E, { onIngestEvent: e.onIngestEvent }, o().createElement(D.mN, e, o().createElement(oe, re({}, e, { ref: t })))))); + }); + }, + 35752: (e, t, n) => { + "use strict"; + n.d(t, { M5: () => q, Py: () => X, UP: () => Y, yU: () => $ }); + var r = n(23469), + o = n.n(r), + a = n(23613), + i = n.n(a), + s = n(48699), + c = n.n(s), + l = n(22807), + u = n.n(l), + d = (n(81123), n(90710)), + p = n(16404), + f = n(47776), + m = n.n(f), + h = n(57305), + v = n.n(h), + y = n(87220), + g = n.n(y), + b = n(9076), + E = n(91460), + D = n(76951), + C = n(53322), + w = n(82950), + S = n(69088), + A = n(23492), + k = n(83896), + _ = n(89941), + T = n(99894), + I = ["name", "selector"]; + function O() { + return ( + (O = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + O.apply(this, arguments) + ); + } + function F(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + function x(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function N(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? x(Object(n), !0).forEach(function (t) { + R(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : x(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function R(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var L = ["multipleConversations", "viewResolvedComments", "hideAnnotations"], + M = { nodeHasAnnotation: "hideAnnotations", reviewCreated: "multipleConversations", commentResolved: "viewResolvedComments" }, + P = { show: "", shown: [] }, + j = { show: "", shown: L }, + B = "".concat(T.Bq, "-creative-onboarding"), + Z = { multipleConversations: "multiple-conversations", hideAnnotations: "hide-annotation", viewResolvedComments: "filters" }, + U = (0, b.qC)( + function (e) { + return function (t) { + return (0, r.useContext)(A.ZP).creativeOnboarding ? o().createElement(e, t) : null; + }; + }, + function (e) { + return function (t) { + return (0, r.useContext)(A.ZP).imsData.id ? o().createElement(e, t) : null; + }; + }, + function (e) { + return function (t) { + return (0, r.useContext)(A.ZP).isOffline ? null : o().createElement(e, t); + }; + } + ), + z = (0, C.Ry)({ show: (0, C.kE)([].concat(L, [""])), shown: (0, C.IX)((0, C.kE)(L)) }), + V = function (e) { + return (0, C.is)(e, z); + }, + H = function () {}, + G = function (e) { + window.dispatchEvent(new CustomEvent(B, { detail: N({}, e) })); + }, + W = function (e) { + return JSON.parse(window.localStorage.getItem(e)); + }, + Q = c()(function () { + return G({ type: "commentResolved" }); + }, 5500), + J = (0, E.P1)( + function (e, t) { + return t && v()(e, "".concat(T.Bq, ":context.creativeOnboarding")); + }, + function (e) { + return (function (e) { + if (!e) + return new Proxy( + {}, + { + get: function () { + return H; + }, + } + ); + var t = function (t) { + return (n = M[t]), !e.shown.includes(n) || "completeCurrent" === t; + var n; + }; + return { + nodeHasAnnotation: t("nodeHasAnnotation") + ? function () { + return G({ type: "nodeHasAnnotation" }); + } + : H, + reviewCreated: t("reviewCreated") + ? function () { + return G({ type: "reviewCreated" }); + } + : H, + commentResolved: t("commentResolved") ? Q : H, + undoCommentResolved: Q.cancel, + completeCurrent: function () { + return G({ type: "completeCurrent" }); + }, + }; + })(e); + } + ), + Y = function () { + var e = (0, r.useContext)(A.ZP).creativeOnboarding; + return (0, S.v9)(function (t) { + return J(t, e); + }); + }, + q = function (e, t) { + return J(e, t); + }, + X = U(function (e) { + var t = e.name, + n = e.selector, + a = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = {}, + a = Object.keys(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (o[n] = e[n]); + return o; + })(e, t); + if (Object.getOwnPropertySymbols) { + var a = Object.getOwnPropertySymbols(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (Object.prototype.propertyIsEnumerable.call(e, n) && (o[n] = e[n])); + } + return o; + })(e, I), + s = document.querySelector("#".concat(T.zW)), + c = document.querySelector(n), + l = (0, S.v9)(function (e) { + return v()(e, "".concat(T.Bq, ":context.creativeOnboarding")); + }), + u = Y(), + f = (function () { + var e = (0, D.Z)().formatMessage; + return { + multipleConversations: { + title: e({ id: "comments.onboarding.coachMark.multipleConversations.title" }), + id: "multiple-conversations-coach-mark", + children: e({ id: "comments.onboarding.coachMark.multipleConversations.content" }), + }, + viewResolvedComments: { + title: e({ id: "comments.onboarding.coachMark.viewResolvedComments.title" }), + id: "view-resolved-comments-coach-mark", + children: e({ id: "comments.onboarding.coachMark.viewResolvedComments.content" }), + }, + hideAnnotations: { title: e({ id: "comments.onboarding.coachMark.hideAnnotations.title" }), id: "hide-annotations-coach-mark", children: e({ id: "comments.onboarding.coachMark.hideAnnotations.content" }) }, + }; + })()[t], + m = (0, D.Z)().formatMessage; + if ( + ((0, r.useEffect)(function () { + var e = function (e) { + e.keyCode === T.nx.ESCAPE && u.completeCurrent({ dismissType: "blur" }); + }; + return ( + window.addEventListener("keyup", e), + function () { + window.removeEventListener("keyup", e); + } + ); + }), + !l) + ) + return null; + var h = l.show; + return o().createElement( + o().Fragment, + null, + s && + c && + h === t && + i().createPortal( + o().createElement( + d.default, + { + disableProgress: !0, + onTourEnd: function () { + return u.completeCurrent({ dismissType: "blur" }); + }, + }, + o().createElement(p.default, O({ autoFocus: !1 }, f, a, { selector: n, confirmLabel: m({ id: "comments.onboarding.coachMark.confirm" }) })) + ), + s + ) + ); + }); + X.propTypes = { checkCurrentCoachMarkData: m().func, name: m().oneOf(L).isRequired, selector: m().string.isRequired }; + var K = function () { + var e, + t, + n, + o, + a, + i = (0, S.I0)(), + s = Y(), + c = (0, _.Z)(), + l = (0, r.useContext)(A.ZP), + u = l.imsData.id, + d = l.multipleAssets, + p = (0, w.Z)(d.assets), + f = + u && + (function (e) { + return "".concat(e, "-creative-onboarding"); + })(u), + m = (0, S.v9)(function (e) { + return v()(e, "".concat(T.Bq, ":context.creativeOnboarding")); + }), + h = (function () { + var e; + try { + e = W(f); + } catch (e) { + console.error("error checking local storage for onboarding state", e); + } + return V(e) ? e : null; + })(), + y = (0, r.useCallback)( + function (e) { + if (f) { + var t = (function (e, t) { + switch (t.type) { + case "initialize": + return P; + case "commentResolved": + case "nodeHasAnnotation": + case "reviewCreated": + return (function (e, t) { + var n, + r = e.show ? e.show : M[t.type]; + return { + show: r, + shown: e.show + ? e.shown + : [].concat( + ((n = e.shown), + (function (e) { + if (Array.isArray(e)) return F(e); + })(n) || + (function (e) { + if (("undefined" != typeof Symbol && null != e[Symbol.iterator]) || null != e["@@iterator"]) return Array.from(e); + })(n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return F(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return ( + "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? F(e, t) : void 0 + ); + } + })(n) || + (function () { + throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + [r] + ), + }; + })(e, t); + case "completeCurrent": + return N(N({}, e), {}, { show: "" }); + case "setState": + return N({}, t.value); + case "completeOnboarding": + return j; + default: + return console.error("unrecognized action dispatched: ".concat(t.type)), e; + } + })(h, e); + if (V(t)) { + (null != h && h.show) || !t.show || c.fireEvent({ event: { subcategory: "in-app-onboarding", subtype: Z[t.show], type: "render" } }), + null != h && h.show && "" === t.show && c.fireEvent({ event: { subcategory: "in-app-onboarding", subtype: Z[h.show], type: e.dismissType } }); + try { + (n = f), (r = t), window.localStorage.setItem(n, JSON.stringify(r)), window.dispatchEvent(new Event("storage")); + } catch (e) { + console.error("error while updating onboarding state", e); + } + var n, r; + } else console.warn("reducer returned an invalid state ".concat(JSON.stringify(t), " for ").concat(e.type, ", keeping current onboarding state")); + } + }, + [f, h, c] + ); + (0, r.useEffect)(function () { + var e = function (e) { + var t = e.detail; + y(t); + }; + return ( + window.addEventListener(B, e), + function () { + return window.removeEventListener(B, e); + } + ); + }), + (0, r.useEffect)(function () { + var e = function () { + try { + var e = W(f); + if (!e) return void y({ type: "initialize" }); + if (!V(e)) return console.warn("local storage returned a corrupt onboarding state ".concat(JSON.stringify(e), ", placing onboarding in a completed state")), void y({ type: "completeOnboarding" }); + if (!g()(m, e)) return void i({ type: T.Ze, onboardingState: e }); + } catch (e) { + console.error("error while handling local storage change", e); + } + }; + return ( + window.addEventListener("storage", e), + function () { + window.removeEventListener("storage", e); + } + ); + }), + (0, r.useEffect)( + function () { + h || y({ type: "initialize" }); + }, + [h, y] + ), + (0, r.useEffect)( + function () { + g()(m, h) || i({ type: T.Ze, onboardingState: h }); + }, + [m, h, i] + ), + (0, r.useEffect)(function () { + var e; + !g()(p, d.assets) && null !== (e = d.assets) && void 0 !== e && e.length && d.assets.length >= ((null == p ? void 0 : p.length) || 0) && s.reviewCreated(); + }), + (e = (0, r.useContext)(A.ZP).assetData), + (t = Y()), + (n = (0, r.useRef)(!1)), + (o = (0, k.Z)().commentCounts.activeNode), + (a = (0, w.Z)(e.nodeId)), + (0, r.useEffect)(function () { + e.nodeId !== a && (n.current = !1); + }), + (0, r.useEffect)( + function () { + o.annotations >= 1 && !n.current && (t.nodeHasAnnotation(), (n.current = !0)); + }, + [e.nodeId, o.annotations, t] + ), + (0, r.useEffect)(function () { + var e = function (e) { + var t = e.detail.value; + y({ type: "setState", value: t }); + }; + return ( + window.addEventListener("CREATIVE_ONBOARDING_STATE_OVERRIDE", e), + function () { + return window.removeEventListener("CREATIVE_ONBOARDING_STATE_OVERRIDE", e); + } + ); + }); + }, + $ = U(function () { + var e = (0, r.useContext)(A.ZP), + t = e.spectrumUIScale, + n = e.theme; + e.themeType, K(); + var a = o().createElement(u(), { theme: n, id: T.zW, scale: t }); + return i().createPortal(o().createElement("div", { style: { position: "fixed", top: 0, left: 0, zIndex: 3 }, "data-testid": T.zW }, a), document.querySelector("body")); + }); + }, + 99610: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => f }); + var r = n(23469), + o = n.n(r), + a = n(47776), + i = n.n(a); + function s(e) { + return ( + (s = + "function" == typeof Symbol && "symbol" == typeof Symbol.iterator + ? function (e) { + return typeof e; + } + : function (e) { + return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e; + }), + s(e) + ); + } + function c(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + function l(e, t) { + return ( + (l = Object.setPrototypeOf + ? Object.setPrototypeOf.bind() + : function (e, t) { + return (e.__proto__ = t), e; + }), + l(e, t) + ); + } + function u(e) { + return ( + (u = Object.setPrototypeOf + ? Object.getPrototypeOf.bind() + : function (e) { + return e.__proto__ || Object.getPrototypeOf(e); + }), + u(e) + ); + } + function d(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var p = (function (e) { + !(function (e, t) { + if ("function" != typeof t && null !== t) throw new TypeError("Super expression must either be null or a function"); + (e.prototype = Object.create(t && t.prototype, { constructor: { value: e, writable: !0, configurable: !0 } })), Object.defineProperty(e, "prototype", { writable: !1 }), t && l(e, t); + })(i, e); + var t, + n, + r, + o, + a = + ((r = i), + (o = (function () { + if ("undefined" == typeof Reflect || !Reflect.construct) return !1; + if (Reflect.construct.sham) return !1; + if ("function" == typeof Proxy) return !0; + try { + return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; + } catch (e) { + return !1; + } + })()), + function () { + var e, + t = u(r); + if (o) { + var n = u(this).constructor; + e = Reflect.construct(t, arguments, n); + } else e = t.apply(this, arguments); + return (function (e, t) { + if (t && ("object" === s(t) || "function" == typeof t)) return t; + if (void 0 !== t) throw new TypeError("Derived constructors may only return object or undefined"); + return (function (e) { + if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); + return e; + })(e); + })(this, e); + }); + function i() { + return ( + (function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + })(this, i), + a.apply(this, arguments) + ); + } + return ( + (t = i), + (n = [ + { + key: "componentDidCatch", + value: function (e) { + this.props.onError(e); + }, + }, + { + key: "render", + value: function () { + return this.props.children; + }, + }, + ]) && c(t.prototype, n), + Object.defineProperty(t, "prototype", { writable: !1 }), + i + ); + })(o().Component); + d(p, "defaultProps", { onError: function () {}, children: void 0 }), d(p, "propTypes", { onError: i().func, children: i().any }); + const f = p; + }, + 93139: (e, t, n) => { + "use strict"; + n.d(t, { qu: () => be, SF: () => ge, GW: () => me, SN: () => he, cs: () => fe, p1: () => ye }); + var r = n(23469), + o = n.n(r), + a = n(23613), + i = n.n(a), + s = n(47776), + c = n.n(s), + l = n(91460), + u = n(62500), + d = n.n(u), + p = n(57305), + f = n.n(p), + m = n(87220), + h = n.n(m), + v = n(22207), + y = n.n(v), + g = n(56155), + b = n.n(g), + E = n(48699), + D = n.n(E), + C = n(9076), + w = n(22807), + S = n.n(w), + A = (n(81123), n(16404)), + k = n(90710), + _ = n(53322), + T = n(23492), + I = n(76951), + O = n(83896), + F = n(99894), + x = n(69088), + N = n(82950), + R = n(89941), + L = ["name", "selector", "checkCurrentCoachMarkData"]; + function M() { + return ( + (M = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + M.apply(this, arguments) + ); + } + function P(e) { + return ( + (function (e) { + if (Array.isArray(e)) return B(e); + })(e) || + (function (e) { + if (("undefined" != typeof Symbol && null != e[Symbol.iterator]) || null != e["@@iterator"]) return Array.from(e); + })(e) || + j(e) || + (function () { + throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function j(e, t) { + if (e) { + if ("string" == typeof e) return B(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? B(e, t) : void 0; + } + } + function B(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + function Z(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function U(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? Z(Object(n), !0).forEach(function (t) { + z(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : Z(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function z(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var V, + H, + G = new URL( + "data:image/svg+xml;base64,".concat( + btoa( + '' + ) + ) + ).href, + W = (0, C.qC)( + function (e) { + return function (t) { + return (0, r.useContext)(T.ZP).stakeholderOnboarding ? o().createElement(e, t) : null; + }; + }, + function (e) { + return function (t) { + return (0, r.useContext)(T.ZP).isOffline ? null : o().createElement(e, t); + }; + }, + function (e) { + return function (t) { + return (0, r.useContext)(T.ZP).compactLayout ? null : o().createElement(e, t); + }; + } + ), + Q = "".concat(F.Bq, "-onboarding"), + J = ["addComment", "addAnnotation", "resolveComment", "viewResolvedComments", "hideAnnotations"], + Y = { addComment: ["documentFirstLoad"], addAnnotation: ["comment.posted", "comment.withoutAnnotation"], resolveComment: [], viewResolvedComments: [], hideAnnotations: [] }, + q = { documentLoad: "addComment", commentPosted: "addAnnotation", expandedRepliesToOwnComment: "resolveComment", commentResolved: "viewResolvedComments", loadedMultiAnnotationNode: "hideAnnotations" }, + X = ["completeCurrentCoachMark"], + K = ["expandedRepliesToOwnComment", "loadedMultiAnnotationNode", "resume"], + $ = { addComment: "add-comment", addAnnotation: "use-annotation", resolveComment: "resolve", viewResolvedComments: "filters", hideAnnotations: "hide-annotation" }, + ee = { conditions: { documentFirstLoad: !1, comment: { posted: !1, withoutAnnotation: !1 } }, currentCoachMarkData: {}, coachMarks: { show: "", shown: [] }, lastEvent: "" }, + te = + ((V = b()(ee.conditions)), + (H = []), + Object.values(Y).forEach(function (e) { + return e.forEach(function (e) { + return H.push(e); + }); + }), + H.forEach(function (e) { + return y()(V, e, function () { + return !0; + }); + }), + U(U({}, ee), {}, { conditions: V, coachMarks: { show: "", shown: J }, lastEvent: "" })), + ne = (0, _.Ry)({ + conditions: (0, _.Ry)({ documentFirstLoad: (0, _.O7)(), comment: (0, _.Ry)({ posted: (0, _.O7)(), withoutAnnotation: (0, _.O7)() }) }), + currentCoachMarkData: (0, _.Ry)(), + coachMarks: (0, _.Ry)({ show: (0, _.kE)([].concat(J, [""])), shown: (0, _.IX)((0, _.kE)(J)) }), + lastEvent: (0, _.Z_)(), + }), + re = function (e) { + return (0, _.is)(e, ne); + }, + oe = function () {}, + ae = function (e) { + window.dispatchEvent(new CustomEvent(Q, { detail: U({}, e) })); + }, + ie = function (e, t) { + window.localStorage.setItem(e, JSON.stringify(t)), window.dispatchEvent(new Event("storage")); + }, + se = function (e) { + return JSON.parse(window.localStorage.getItem(e)); + }, + ce = function () { + return JSON.parse(window.sessionStorage.getItem("stakeholder-onboarding")); + }, + le = function (e, t, n, r) { + var o, + a, + i = e.shown, + s = e.show, + c = P(i), + l = + ((a = q[r]), + s && X.includes(r) + ? "" + : s || + !a || + i.includes(a) || + null === (o = Y[a]) || + void 0 === o || + !o.every(function (e) { + return !0 === f()(t, e); + }) || + (X.includes(n) && !K.includes(r)) + ? s + : (c.push(a), a)); + return U(U({}, e), {}, { shown: Array.from(new Set(c)), show: l }); + }, + ue = D()(function () { + return ae({ type: "commentResolved" }); + }, 5500), + de = D()(function () { + return ae({ type: "loadedMultiAnnotationNode" }); + }, 1e3), + pe = (0, l.P1)( + function (e) { + return f()(e, "".concat(F.Bq, ":context.stakeholderOnboarding")); + }, + function (e) { + return (function (e) { + if (!e) + return new Proxy( + {}, + { + get: function () { + return oe; + }, + } + ); + var t = function (t) { + return (n = q[t]), !e.coachMarks.shown.includes(n) || (e.coachMarks.show && X.includes(t)); + var n; + }; + return { + documentLoad: t("documentLoad") + ? function () { + return ae({ type: "documentLoad" }); + } + : oe, + commentPosted: t("commentPosted") + ? function (e) { + return ae(U({ type: "commentPosted" }, e)); + } + : oe, + completeCurrentOrResumeCoachMarks: t("completeCurrentOrResumeCoachMarks") + ? function (e) { + return ae(U({ type: "completeCurrentOrResumeCoachMarks" }, e)); + } + : oe, + expandedRepliesToOwnComment: + "resolveComment" === e.coachMarks.show || t("expandedRepliesToOwnComment") + ? function (e) { + de.cancel(), ae(U({ type: "expandedRepliesToOwnComment" }, e)); + } + : oe, + commentResolved: t("commentResolved") + ? function () { + return ue(); + } + : oe, + undoCommentResolved: ue.cancel, + loadedMultiAnnotationNode: t("loadedMultiAnnotationNode") ? de : oe, + resume: function () { + return ae({ type: "resume" }); + }, + }; + })(e); + } + ), + fe = function () { + return (0, x.v9)(pe); + }, + me = pe, + he = function (e) { + return e && "#".concat(d()(e), " .resolve-button"); + }, + ve = function (e) { + var t, + n, + o = + ((t = (0, r.useState)(!1)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + j(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + a = o[0], + i = o[1]; + return ( + (0, r.useEffect)(function () { + var t; + return ( + e && + (t = new IntersectionObserver( + function (e) { + i(e[0].isIntersecting); + }, + { threshold: 1, root: document.querySelector("#".concat(F.Ls)), rootMargin: "-55px 0px -50% 0px" } + )).observe(e), + function () { + var n; + return null === (n = t) || void 0 === n ? void 0 : n.unobserve(e); + } + ); + }), + a + ); + }, + ye = function () { + var e = fe(), + t = (0, x.v9)(function (e) { + return f()(e, "".concat(F.Bq, ":context")); + }).stakeholderOnboarding, + n = ve(document.querySelector(he("resolveComment" === (null == t ? void 0 : t.coachMarks.show) && t.currentCoachMarkData.commentId))) && "resolveComment" === (null == t ? void 0 : t.coachMarks.show); + return [ + n, + n + ? function (t) { + return t.deltaY > 4 && e.completeCurrentOrResumeCoachMarks({ dismissType: "blur" }); + } + : function () {}, + ]; + }, + ge = W(function (e) { + var t = e.name, + n = e.selector, + a = e.checkCurrentCoachMarkData, + s = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = {}, + a = Object.keys(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (o[n] = e[n]); + return o; + })(e, t); + if (Object.getOwnPropertySymbols) { + var a = Object.getOwnPropertySymbols(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (Object.prototype.propertyIsEnumerable.call(e, n) && (o[n] = e[n])); + } + return o; + })(e, L), + c = document.querySelector("#".concat(F.Hp)), + l = document.querySelector(n), + u = (0, x.v9)(function (e) { + return f()(e, "".concat(F.Bq, ":context")); + }).stakeholderOnboarding, + d = fe(), + p = (function () { + var e = (0, I.Z)().formatMessage; + return { + addComment: { title: e({ id: "comments.onboarding.coachMark.addComment.title" }), id: "add-comment-coach-mark", children: e({ id: "comments.onboarding.coachMark.addComment.content" }) }, + addAnnotation: { title: e({ id: "comments.onboarding.coachMark.addAnnotation.title" }), id: "add-annotation-coach-mark", image: G, children: e({ id: "comments.onboarding.coachMark.addAnnotation.content" }) }, + resolveComment: { title: e({ id: "comments.onboarding.coachMark.resolveComment.title" }), id: "resolve-comment-coach-mark", children: e({ id: "comments.onboarding.coachMark.resolveComment.content" }) }, + viewResolvedComments: { + title: e({ id: "comments.onboarding.coachMark.viewResolvedComments.title" }), + id: "view-resolved-comments-coach-mark", + children: e({ id: "comments.onboarding.coachMark.viewResolvedComments.content" }), + }, + hideAnnotations: { title: e({ id: "comments.onboarding.coachMark.hideAnnotations.title" }), id: "hide-annotations-coach-mark", children: e({ id: "comments.onboarding.coachMark.hideAnnotations.content" }) }, + }; + })()[t], + m = (0, I.Z)().formatMessage, + h = ve("resolveComment" === (null == u ? void 0 : u.coachMarks.show) && l); + if ( + ((0, r.useEffect)(function () { + var e = function (e) { + e.keyCode === F.nx.ESCAPE && d.completeCurrentOrResumeCoachMarks({ dismissType: "keydown" }); + }; + return ( + window.addEventListener("keyup", e), + function () { + window.removeEventListener("keyup", e); + } + ); + }), + !u) + ) + return null; + var v = u.coachMarks.show, + y = u.currentCoachMarkData; + return o().createElement( + o().Fragment, + null, + c && + l && + v === t && + (!a || a(y)) && + ("resolveComment" !== v || h) && + i().createPortal( + o().createElement( + k.default, + { + disableProgress: !0, + onTourEnd: function () { + return d.completeCurrentOrResumeCoachMarks({ dismissType: "click" }); + }, + }, + o().createElement(A.default, M({ autoFocus: !1 }, p, s, { selector: n, confirmLabel: m({ id: "comments.onboarding.coachMark.confirm" }) })) + ), + c + ) + ); + }); + ge.propTypes = { checkCurrentCoachMarkData: c().func, name: c().oneOf(J).isRequired, selector: c().string.isRequired }; + var be = W(function () { + var e, + t, + n, + a, + s, + c, + l, + u, + d, + p, + m, + v, + g, + E, + D = (0, r.useContext)(T.ZP), + C = D.spectrumUIScale, + w = D.theme; + D.themeType, + (e = (0, r.useContext)(T.ZP)), + (t = e.imsData.id), + (n = e.assetData), + (a = e.documentState), + (s = (0, x.I0)()), + (c = (0, x.v9)(function (e) { + return f()(e, "".concat(F.Bq, ":context")); + }).stakeholderOnboarding), + (l = (0, R.Z)()), + (u = (0, x.v9)(function (e) { + return f()(e, "".concat(F.Bq, ":delta")); + })), + (d = u.data), + (p = u.reason), + (m = fe()), + (v = + t && + (function (e) { + return "".concat(e, "-stakeholder-onboarding"); + })(t)), + (g = (function () { + var e; + try { + e = v ? se(v) : ce(); + } catch (e) { + console.error("error checking local storage for onboarding state", e); + } + return re(e) ? e : null; + })()), + (E = (0, r.useCallback)( + function (e) { + var t, + n, + r = (function (e, t) { + switch (t.type) { + case "initialize": + return ee; + case "documentLoad": + var n = U(U({}, e.conditions), {}, { documentFirstLoad: !0 }), + r = le(e.coachMarks, n, e.lastEvent, t.type); + return U(U({}, e), {}, { conditions: n, coachMarks: r, lastEvent: t.type }); + case "commentPosted": + if (!0 === e.conditions.comment.posted && !1 === e.conditions.comment.withoutAnnotation) return U(U({}, e), {}, { lastEvent: "commentPosted" }); + var o = U(U({}, e.conditions), {}, { comment: U(U({}, e.conditions.comment), {}, { posted: !0, withoutAnnotation: !!t.withoutAnnotation }) }), + a = le(e.coachMarks, o, e.lastEvent, t.type); + return U(U({}, e), {}, { conditions: o, coachMarks: a, lastEvent: t.type }); + case "expandedRepliesToOwnComment": + return U(U({}, e), {}, { currentCoachMarkData: { commentId: t.commentId }, coachMarks: le(e.coachMarks, e.conditions, e.lastEvent, t.type), lastEvent: t.type }); + case "commentResolved": + case "loadedMultiAnnotationNode": + return U(U({}, e), {}, { coachMarks: le(e.coachMarks, e.conditions, e.lastEvent, t.type), lastEvent: t.type }); + case "setState": + return U(U({}, t.value), {}, { lastEvent: t.type }); + case "resume": + return U(U({}, e), {}, { lastEvent: t.type }); + case "completeOnboarding": + return te; + case "completeCurrentOrResumeCoachMarks": + var i = e.coachMarks.show; + return U( + U({}, e), + {}, + { + currentCoachMarkData: i ? {} : e.currentCoachMarkData, + coachMarks: le(e.coachMarks, e.conditions, e.lastEvent, i ? "completeCurrentCoachMark" : "resume"), + lastEvent: e.coachMarks.show ? "completeCurrentCoachMark" : "resume", + } + ); + default: + return console.error("unrecognized action dispatched: ".concat(t.type)), e; + } + })(g, e); + if ( + (null != g && + null !== (t = g.coachMarks) && + void 0 !== t && + t.show && + "" === r.coachMarks.show && + e.dismissType && + l.fireEvent({ event: { subcategory: "stakeholder-onboarding", subtype: $[g.coachMarks.show], type: e.dismissType } }), + re(r)) + ) + try { + var o; + v ? ie(v, r) : ((n = r), window.sessionStorage.setItem("stakeholder-onboarding", JSON.stringify(n)), window.dispatchEvent(new Event("storage"))), + "" === (null == g || null === (o = g.coachMarks) || void 0 === o ? void 0 : o.show) && + r.coachMarks.show && + $[r.coachMarks.show] && + l.fireEvent({ event: { subcategory: "stakeholder-onboarding", subtype: $[r.coachMarks.show], type: "render" } }); + } catch (e) { + console.error("error while updating onboarding state", e); + } + else console.warn("reducer returned an invalid state ".concat(JSON.stringify(r), " for ").concat(e.type, ", keeping current onboarding state")); + }, + [l, v, g] + )), + (0, r.useEffect)(function () { + try { + var e = ce(), + t = v && se(v); + if (t && e && !h()(e, t)) { + var n = + ((r = t), + (o = e), + (a = b()(r)), + y()(a, "coachMarks.shown", function (e) { + return Array.from(new Set([].concat(P(e), P(o.coachMarks.shown)))); + }), + a.coachMarks.shown.forEach(function (e) { + Y[e].forEach(function (e) { + return y()(a, "conditions.".concat(e), function () { + return !0; + }); + }); + }), + y()(a, "coachMarks.show", function () { + var e = r.coachMarks.show, + t = o.coachMarks.show; + return e && t ? ("addComment" === e && "addComment" !== t ? t : e) : e && !o.coachMarks.shown.includes(e) ? e : t && !r.coachMarks.shown.includes(t) ? t : e; + }), + a); + if (!h()(t, n)) { + if (re(n)) return void ie(v, n); + console.warn("withSessionOnboardingState returned an invalid state", n); + } + } + } catch (e) { + console.error("error merging user onboarding state with session onboarding state", e); + } + var r, o, a; + }), + (0, r.useEffect)(function () { + var e = function (e) { + var t = e.detail; + E(t); + }; + return ( + window.addEventListener(Q, e), + function () { + return window.removeEventListener(Q, e); + } + ); + }), + (0, r.useEffect)(function () { + var e = function () { + try { + var e = v ? se(v) : ce(); + if (!e) return void E({ type: "initialize" }); + if (!re(e)) return console.warn("local storage returned a corrupt onboarding state ".concat(JSON.stringify(e), ", placing onboarding in a completed state")), void E({ type: "completeOnboarding" }); + if (!h()(c, e)) return void s({ type: F.jL, onboardingState: e }); + } catch (e) { + console.error("error while handling local storage change", e); + } + }; + return ( + window.addEventListener("storage", e), + function () { + window.removeEventListener("storage", e); + } + ); + }), + (0, r.useEffect)( + function () { + g || E({ type: "initialize" }); + }, + [g, E] + ), + (0, r.useEffect)( + function () { + h()(c, g) || s({ type: F.jL, onboardingState: g }); + }, + [c, g, s] + ), + (0, r.useEffect)( + function () { + null != n && + n.id && + "documentOpen" === a && + setTimeout(function () { + return m.documentLoad(); + }, 0); + }, + [n, a, m] + ), + (0, r.useEffect)( + function () { + if (d && "update" === p) { + var e = d.new.find(function (e) { + return e.creator.id === t; + }); + e && + setTimeout(function () { + return m.commentPosted({ withoutAnnotation: !e.annotationType }); + }, 2e3); + } + }, + [d, p, m] + ), + (function () { + var e = (0, r.useContext)(T.ZP).assetData, + t = fe(), + n = (0, N.Z)(e.nodeId); + (0, r.useEffect)( + function () { + e.nodeId !== n && t.resume(); + }, + [t, e.nodeId, n] + ); + })(), + (function () { + var e = (0, r.useContext)(T.ZP).assetData, + t = fe(), + n = (0, r.useRef)(!1), + o = (0, O.Z)().commentCounts.activeNode, + a = (0, N.Z)(e.nodeId); + (0, r.useEffect)(function () { + e.nodeId !== a && (n.current = !1); + }), + (0, r.useEffect)( + function () { + o.annotations >= 2 && !n.current && (t.loadedMultiAnnotationNode(), (n.current = !0)); + }, + [e.nodeId, o.annotations, t] + ); + })(), + (0, r.useEffect)(function () { + var e = function (e) { + var t = e.detail.value; + E({ type: "setState", value: t }); + }; + return ( + window.addEventListener("ONBOARDING_STATE_OVERRIDE", e), + function () { + return window.removeEventListener("ONBOARDING_STATE_OVERRIDE", e); + } + ); + }); + var A = o().createElement(S(), { theme: w, id: F.Hp, scale: C }); + return i().createPortal(o().createElement("div", { style: { position: "fixed", top: 0, left: 0, zIndex: 3 }, "data-testid": F.Hp }, A), document.querySelector("body")); + }); + }, + 99894: (e, t, n) => { + "use strict"; + n.d(t, { + cD: () => ye, + TV: () => ke, + uu: () => Ve, + iq: () => Se, + Mu: () => Ae, + Md: () => U, + KT: () => Z, + Pj: () => V, + UT: () => H, + vm: () => z, + Ud: () => et, + oM: () => Qe, + Zw: () => We, + Ar: () => ae, + Oz: () => ue, + ii: () => s, + vl: () => c, + Z5: () => l, + dh: () => u, + b$: () => ie, + Al: () => se, + Ov: () => ce, + k9: () => le, + xH: () => de, + eE: () => pe, + lP: () => h, + sf: () => G, + Tf: () => fe, + W$: () => v, + fk: () => y, + hY: () => E, + aV: () => g, + Mw: () => b, + GB: () => w, + oi: () => Ne, + bG: () => Ye, + Ry: () => Je, + k8: () => S, + lD: () => me, + LG: () => _, + oA: () => Y, + kt: () => I, + Ys: () => T, + yU: () => L, + QR: () => O, + GY: () => F, + x7: () => x, + pO: () => M, + Ze: () => k, + FN: () => j, + Xb: () => R, + WD: () => J, + $o: () => P, + Gp: () => N, + jL: () => A, + zW: () => ze, + MF: () => we, + rA: () => Q, + Vg: () => Ze, + FT: () => d, + cT: () => p, + ML: () => f, + LW: () => m, + SZ: () => ot, + WJ: () => _e, + Rb: () => Be, + Kx: () => at, + JO: () => Ge, + z2: () => De, + FH: () => Ee, + Uj: () => Le, + E3: () => Me, + nx: () => Ce, + Ls: () => Te, + lz: () => je, + UU: () => Fe, + xA: () => xe, + N2: () => K, + do: () => $, + nd: () => oe, + zF: () => ee, + JV: () => te, + wV: () => ne, + nU: () => re, + p8: () => tt, + GF: () => nt, + Kz: () => He, + fj: () => he, + Bq: () => a, + o_: () => $e, + _F: () => Ke, + bT: () => qe, + Kj: () => Xe, + uX: () => Re, + AC: () => B, + dS: () => W, + YE: () => q, + Wm: () => X, + Hr: () => rt, + Hp: () => Ue, + VY: () => Ie, + Lg: () => Oe, + jc: () => D, + PI: () => C, + Qy: () => Pe, + T3: () => ve, + Lx: () => ge, + Fi: () => be, + }); + var r, + o = function (e, t) { + return "".concat(e.toUpperCase(), "_").concat(t.toUpperCase()); + }, + a = "CCX-COMMENTS", + i = + ((r = a), + function (e) { + return { START: o(r, "".concat(e, "_BEGIN")), END: o(r, "".concat(e, "_END")), ERROR: o(r, "".concat(e, "_ERROR")), SUCCESS: o(r, "".concat(e, "_SUCCESS")) }; + }), + s = "".concat(a, ".COMMENTS_CANCEL_FOR_DELETE"), + c = "".concat(a, ".COMMENTS_CLEAR"), + l = "".concat(a, ".COMMENTS_CLEAR_ERROR"), + u = "".concat(a, ".COMMENTS_CLEAR_LAST_RESOLVED"), + d = "".concat(a, ".FILTER_CLEAR"), + p = "".concat(a, ".FILTER_READ"), + f = "".concat(a, ".FILTER_TIME"), + m = ("".concat(a, ".COMMENTS_FILTER_TOGGLE"), "".concat(a, ".FILTER_USERS")), + h = "".concat(a, ".COMMENTS_PROPOSE_FOR_DELETE"), + v = "".concat(a, ".COMMENTS_SET_DIRTY_COMMENT_FOR_ARTBOARD"), + y = "".concat(a, ".COMMENTS_SET_DRAFT_REPLY"), + g = "".concat(a, ".COMMENTS_SET_SHOW_ANNOTATIONS"), + b = "".concat(a, ".COMMENTS_SET_SHOW_DRAFT_ANNOTATIONS"), + E = "".concat(a, ".COMMENTS_SET_RECENT_ACTIVITY"), + D = "".concat(a, ".TOGGLE_RESOLVED"), + C = "".concat(a, ".TOGGLE_UNREAD"), + w = "".concat(a, ".COMMENTS_TOGGLE_REPLY"), + S = "".concat(a, ".CONTEXT_CLEAR"), + A = "".concat(a, ".CONTEXT_SET_STAKEHOLDER_ONBOARDING"), + k = "".concat(a, ".CONTEXT_SET_CREATIVE_ONBOARDING"), + _ = "".concat(a, ".CONTEXT_REGISTER_SECTION_ID"), + T = "".concat(a, ".CONTEXT_SAVE_ANNOTATION_LOCATION"), + I = "".concat(a, ".CONTEXT_SAVE_ANNOTATION_COLOR"), + O = "".concat(a, ".CONTEXT_SAVE_FRAME_DATA"), + F = "".concat(a, ".CONTEXT_SAVE_IMAGE_COORDINATES_INFO"), + x = "".concat(a, ".CONTEXT_SET_ANNOTATION_MODE"), + N = "".concat(a, ".CONTEXT_SET_SHOW_COMMENT_ID"), + R = "".concat(a, ".CONTEXT_SET_GUEST_USER_LOGIN_TOAST_INFO"), + L = "".concat(a, ".CONTEXT_SAVE_FOCUSED_INPUT_INFO"), + M = "".concat(a, ".CONTEXT_SET_COMMENTS_LIST_MINIMIZED"), + P = "".concat(a, ".CONTEXT_SET_LOGIN_VISIBILITY"), + j = "".concat(a, ".CONTEXT_SET_EMOJIPICKER_INFO"), + B = "".concat(a, ".SET_ANNOTATING_COMMENT_ID"), + Z = "".concat(a, ".ANNOTATION_SET_HOVERED_ANNOTATION"), + U = "".concat(a, ".ANNOTATION_SET_DRAWING_NODE"), + z = "".concat(a, ".ANNOTATION_SET_TOUCH_PRESSED"), + V = "".concat(a, ".ANNOTATION_SET_SELECTED_ANNOTATION_ID"), + H = "".concat(a, ".ANNOTATION_SET_SELECTED_REPLY_ID"), + G = "".concat(a, ".COMMENTS_REMAP_COMMENT_NODES"), + W = "".concat(a, ".SET_AUTO_SCROLL"), + Q = "".concat(a, ".DELTA_UPDATE"), + J = "".concat(a, ".CONTEXT_SET_GUEST_USER_SESSION_STATE"), + Y = "".concat(a, ".CONTEXT_RESET_GUEST_USER_SESSION"), + q = "".concat(a, ".SET_MOBILE_EDITING_COMMENT"), + X = "".concat(a, ".SET_PARENT_COMMENT_ID"), + K = "".concat(a, ".MOBILE_POP_SUBVIEW"), + $ = "".concat(a, ".MOBILE_PUSH_SUBVIEW"), + ee = "".concat(a, ".MOBILE_SET_EXPANDED"), + te = "".concat(a, ".MOBILE_SET_FULLSCREEN"), + ne = "".concat(a, ".MOBILE_SET_INPUT_FOCUSED"), + re = "".concat(a, ".MOBILE_SET_MENTION_LIST_SHOWN"), + oe = "".concat(a, ".MOBILE_RESET"), + ae = i("COMMENTS_BATCH_REMAP"), + ie = i("COMMENTS_DELETE"), + se = i("COMMENTS_EDIT"), + ce = i("COMMENTS_GET"), + le = i("COMMENTS_GET_METADATA"), + ue = i("COMMENTS_BATCH_UPDATE_METADATA"), + de = i("COMMENTS_OPEN"), + pe = i("COMMENTS_POST"), + fe = i("COMMENTS_RESOLVE"), + me = i("CONTEXT_CREATE_GUEST_USER_SESSION"), + he = (i("FETCH_COLLABORATORS"), i("POST_REPLY")), + ve = i("UPDATE_ANNOTATION"), + ye = ["insert", "replace"], + ge = "urn:uuid:", + be = "Bearer", + Ee = "comment-service", + De = { event: { category: "WEB", offline: !1 }, env: { com: { name: "Commenting Service UI" } } }, + Ce = { DOWN: 40, ENTER: 13, ESCAPE: 27, SPACE: 32, TAB: 9, UP: 38 }, + we = 65, + Se = "ccx-annotations-overlay", + Ae = "ccx-annotations-mask", + ke = "ccx-annotation", + _e = "ccx-comments-full", + Te = "ccx-comments-list", + Ie = "ccx-comments-submit", + Oe = 5e3, + Fe = ["", ".", "?", ",", "!", ":", ";", "'"], + xe = /(?!\b)@(?:[^\s]|$)/g, + Ne = "ccx-comment-before-signin", + Re = "ccx-reply-before-signin", + Le = "justAdded", + Me = "justEdited", + Pe = "_UNMAPPED", + je = "_MAPPED", + Be = 50, + Ze = /(?!\b):([\w+-]+)(:)?/g, + Ue = "".concat(a, "-stakeholder-onboarding-container"), + ze = "".concat(a, "-creative-onboarding-container"), + Ve = [ + { hex: "#d7373f", name: "red" }, + { hex: "#ec2900", name: "orange" }, + { hex: "#ffca00", name: "yellow" }, + { hex: "#008f00", name: "green" }, + { hex: "#16878c", name: "deepCyan" }, + { hex: "#0072e6", name: "blue" }, + { hex: "#004ad7", name: "navyBlue" }, + { hex: "#5e1ff5", name: "purple" }, + { hex: "#f89191", name: "lightRed" }, + { hex: "#ffcec1", name: "lightOrange" }, + { hex: "#fff3b6", name: "lightYellow" }, + { hex: "#b9e3c3", name: "lightGreen" }, + { hex: "#b8dbdd", name: "lightDeepCyan" }, + { hex: "#bedff9", name: "lightBlue" }, + { hex: "#bad3f6", name: "lightNavyBlue" }, + { hex: "#d8c2ff", name: "lightPurple" }, + ], + He = [ + { hex: "#d7373f", name: "red" }, + { hex: "#ffca00", name: "yellow" }, + { hex: "#008f00", name: "green" }, + { hex: "#16878c", name: "deepCyan" }, + { hex: "#5e1ff5", name: "purple" }, + { hex: "#2c2c2c", name: "black" }, + ], + Ge = 3, + We = "https://ab-stg.adobe-identity.com/api/avatars/50/", + Qe = "https://ab.adobe-identity.com/api/avatars/50/", + Je = 2500, + Ye = 1500, + qe = "6LcME7UaAAAAAHvpjlInX9X_irOTjUhpcar8mhdc", + Xe = "6LcVEbUaAAAAAOQymzp_s3QKfipeej1slSsMVzBl", + Ke = "6LetpKscAAAAACLUgD3IJZwobEoGV2BsKqdtzPrW", + $e = "bba5e3c2-cb93-4bee-8f73-5283a054c2cd", + et = { ERROR: "error", FETCHED: "fetched", UNFETCHED: "unfetched" }, + tt = { FILTER: "filter", REPLY: "reply", COMMENT: "comment", EDIT: "edit" }, + nt = "".concat(a, ".MULTIPLE_ASSET_LS_KEY-"), + rt = { contextualParams: { ctxLocale: void 0 }, nonGuidEnabled: !0, useExperienceFragment: !1 }, + ot = { url: { prod: "https://p13n.adobe.io/fg/api/v3/feature", stage: "https://p13n-mr-stage.adobe.io/fg/api/v3/feature" } }, + at = "https://comments.acrobat.com/auth_providers/guest"; + }, + 23492: (e, t, n) => { + "use strict"; + n.d(t, { wI: () => pe, ZP: () => fe, HJ: () => de }); + var r = n(23469), + o = n.n(r), + a = n(47776), + i = n.n(a), + s = n(87220), + c = n.n(s), + l = n(19212), + u = n(67733), + d = n(99894), + p = n(15686), + f = n(69088), + m = n(30251), + h = n(90353); + function v(e, t) { + return ( + (function (e) { + if (Array.isArray(e)) return e; + })(e) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(e, t) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return y(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? y(e, t) : void 0; + } + })(e, t) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function y(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + function g(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function b(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? g(Object(n), !0).forEach(function (t) { + E(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : g(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function E(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var D = ["isSaving", "reviewType", "documentId", "validNodes"], + C = ["unshared", "unknown", void 0], + w = [], + S = function (e) { + var t = (arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}).isExternalNodeChange, + n = void 0 !== t && t; + if (!e.id) + return D.reduce(function (t, n) { + return Object.prototype.hasOwnProperty.call(e, n) && (t[n] = e[n]), t; + }, {}); + var r = e.id, + o = e.ownerId, + a = e.mimeType, + i = e.nodeId, + s = []; + if (e.useNodeIndex) { + var c = i; + e.nodeId = isNaN(Number(c)) ? c : Number(c); + } + return ( + e.validNodes && + (s = e.validNodes.filter(function (t, n) { + return (t.id = e.useNodeIndex ? n : t.id), !t.excluded; + })), + s.push({ id: d.Qy, nodeId: d.Qy }), + b(b({}, e), {}, { validNodes: s, id: r, ownerId: o && -1 === o.indexOf(d.Lx) ? d.Lx + o : o, mimeType: a || "application/vnd.adobe.directory+json", isExternalNodeChange: n }) + ); + }, + A = function (e) { + var t = (0, r.useRef)(); + return c()(t.current, e) || (t.current = e), t.current; + }, + k = function (e, t, n) { + var r = !!e.id, + o = !r, + a = (null == t ? void 0 : t.length) > 0; + return (function () { + if (!n) return e; + if (o) { + if (a) return t[0]; + if (!a) return e; + } else if (r) { + if (a) { + var i = t[0], + s = "".concat(d.GF).concat(e.id), + c = (0, h.Pt)(s); + return "cloudDoc" === c ? e : "artifact" === c || C.includes(e.shareStatus) ? i : e; + } + if (!a) return e; + } + })(); + }; + var _ = n(67961); + function T(e, t, n, r, o, a, i) { + try { + var s = e[a](i), + c = s.value; + } catch (e) { + return void n(e); + } + s.done ? t(c) : Promise.resolve(c).then(r, o); + } + function I(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + const O = function (e, t, n, o) { + var a, + i, + s = arguments.length > 4 && void 0 !== arguments[4] ? arguments[4] : {}, + c = + ((a = (0, r.useState)({ role: s.userRoleOverride })), + (i = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(a) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(a, i) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return I(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? I(e, t) : void 0; + } + })(a, i) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + l = c[0], + u = c[1], + d = s.token, + p = s.isGuestUser, + f = "dev" === n ? "stage" : n; + return ( + (0, r.useEffect)( + function () { + var n = (function () { + var n, + r = + ((n = regeneratorRuntime.mark(function n() { + var r, a; + return regeneratorRuntime.wrap( + function (n) { + for (;;) + switch ((n.prev = n.next)) { + case 0: + if (!(e && t && f && (d || o)) || p || s.userRoleOverride) { + n.next = 12; + break; + } + return (n.prev = 1), (r = new _.CapabilitiesService({ token: d, environment: f, apiKey: t, apiVersion: "v4", accessToken: o })), (n.next = 5), r.get({ resourceUrl: e }); + case 5: + (a = n.sent), u(a), (n.next = 12); + break; + case 9: + (n.prev = 9), (n.t0 = n.catch(1)), u({}); + case 12: + case "end": + return n.stop(); + } + }, + n, + null, + [[1, 9]] + ); + })), + function () { + var e = this, + t = arguments; + return new Promise(function (r, o) { + var a = n.apply(e, t); + function i(e) { + T(a, r, o, i, s, "next", e); + } + function s(e) { + T(a, r, o, i, s, "throw", e); + } + i(void 0); + }); + }); + return function () { + return r.apply(this, arguments); + }; + })(); + n(); + }, + [e, t, f, o, d, p, s.userRole, s.userRoleOverride] + ), + l + ); + }; + function F(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var x = "globalCommentsViewAll"; + const N = function (e) { + var t, + n, + o = + ((t = (0, r.useState)(function () { + var t = (0, h.Pt)(x); + return void 0 === t && ((0, h.m8)(x, !0), (t = !0)), t || e; + })), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return F(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? F(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + a = o[0], + i = o[1], + s = (0, r.useCallback)(function (e) { + (0, h.m8)(x, e), i(e); + }, []); + return ( + (0, r.useEffect)( + function () { + e && s(!0); + }, + [e, s] + ), + (0, r.useMemo)( + function () { + return { isActive: a, onToggle: s }; + }, + [a, s] + ) + ); + }; + function R(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function L(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? R(Object(n), !0).forEach(function (t) { + M(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : R(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function M(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var P = function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = e.id, + n = e.token, + r = void 0 === n ? "" : n, + o = e.authId, + a = Boolean(r), + i = !a || r.includes(d.Fi) ? r : "".concat(d.Fi, " ").concat(r); + return L(L({}, e), {}, { id: !t || t.includes(d.Lx) ? t : d.Lx + t, token: i, isGuestUser: i.includes("AnonBearer"), isLoggedIn: a, authId: !o || o.includes(d.Lx) ? o : d.Lx + o }); + }; + function j(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + const B = function (e) { + var t, + n, + o = + ((t = (0, r.useState)("undefined" == typeof navigator || "boolean" != typeof navigator.onLine || !navigator.onLine)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return j(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? j(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + a = o[0], + i = o[1]; + return ( + (0, r.useEffect)(function () { + var e = function () { + return i(!1); + }, + t = function () { + return i(!0); + }; + return ( + window.addEventListener("online", e), + window.addEventListener("offline", t), + function () { + window.removeEventListener("online", e), window.removeEventListener("offline", t); + } + ); + }, []), + a || e + ); + }; + var Z = n(82950), + U = n(39358); + function z(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function V(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? z(Object(n), !0).forEach(function (t) { + H(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : z(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function H(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var G = { + annotations: [ + { + bodyValue: "Comment 1", + created: "2021-08-09T14:52:19.316429Z", + creator: { affiliation: "https://comments.acrobat.com/auth_providers/ims", email: "test1@adobe.com", id: "test id 1", img: "https://static-assets.frame.io/app/anon.jpg", name: "Test Name 1", type: "Person" }, + etag: "test etag 1", + id: "id 1", + mentions: [], + modified: "2023-09-19T18:05:09.324405Z", + motivation: "commenting", + replies: [], + status: "open", + target: { selector: { node: { id: "a" }, subtype: "node", type: "AdobeAnnoSelector" }, source: "urn:aaid:sc:US:77586245-7c2e-4758-948a-5e69fc444ef4", state: "unknown" }, + type: "Annotation", + }, + { + bodyValue: "Comment 2", + created: "2021-08-09T14:52:19.316429Z", + creator: { affiliation: "https://comments.acrobat.com/auth_providers/ims", email: "test2@adobe.com", id: "test id 2", img: "https://static-assets.frame.io/app/anon.jpg", name: "Test Name 2", type: "Person" }, + etag: "test etag 2", + id: "113d1a7d-3f45-470d-83bc-d1d9b04124fa", + mentions: [], + modified: "2023-09-22T21:08:46.807196Z", + motivation: "commenting", + replies: [ + { + bodyValue: "Reply 1", + created: "2023-09-22T21:08:46.807196Z", + creator: { affiliation: "https://comments.acrobat.com/auth_providers/ims", email: "test email 2", id: "test id 3", img: "https://static-assets.frame.io/app/anon.jpg", name: "Test Name 3", type: "Person" }, + etag: "test etag 3", + id: "reply id", + mentions: [], + modified: "2023-09-22T21:08:46.807196Z", + motivation: "replying", + status: "open", + target: { selector: { node: { id: "a" }, subtype: "node", type: "AdobeAnnoSelector" }, source: "urn:aaid:sc:US:77586245-7c2e-4758-948a-5e69fc444ef4", state: "unknown" }, + type: "Annotation", + }, + ], + status: "open", + target: { selector: { node: { id: "a" }, subtype: "node", type: "AdobeAnnoSelector" }, source: "urn:aaid:sc:US:77586245-7c2e-4758-948a-5e69fc444ef4", state: "unknown" }, + type: "Annotation", + }, + { + annotationType: "shape", + bodyValue: "Comment 3", + created: "2023-09-26T07:20:51Z", + creator: { affiliation: "https://comments.acrobat.com/auth_providers/ims", email: "test3@adobe.com", id: "test id 3", img: "https://static-assets.frame.io/app/anon.jpg", name: "Test Name 3", type: "Person" }, + etag: "test etag 3", + id: "id 3", + mentions: [], + modified: "2023-09-26T07:20:51Z", + motivation: "commenting", + replies: [], + status: "open", + target: { + selector: { + strokeWidth: 5, + boundingBox: [671.8078290343915, 240.4747794360158, 772.0424107142857, 249.59175049472293], + node: { id: "a" }, + subtype: "shape", + type: "AdobeAnnoSelector", + strokeColor: "#16878C", + opacity: 1, + inkList: [ + [ + { x: 672.0351769179894, y: 249.0305491424802 }, + { x: 671.8078290343915, y: 249.59175049472293 }, + { x: 672.9600694444445, y: 249.59175049472293 }, + { x: 675.5384011243386, y: 249.59175049472293 }, + { x: 688.2285466269841, y: 249.59175049472293 }, + { x: 701.6214037698412, y: 249.59175049472293 }, + { x: 716.3370122354497, y: 249.19380771767808 }, + { x: 723.8394923941798, y: 248.71423565303428 }, + { x: 730.0605572089947, y: 247.90304460751977 }, + { x: 735.403232473545, y: 247.25511213720316 }, + { x: 739.5885003306878, y: 247.20409383245382 }, + { x: 743.2932374338624, y: 247.20409383245382 }, + { x: 747.4371693121693, y: 246.99491878298153 }, + { x: 752.888351521164, y: 246.25005153364114 }, + { x: 754.9809854497355, y: 246.1531167546174 }, + { x: 756.949611441799, y: 245.94904353562004 }, + { x: 758.706390542328, y: 245.84700692612137 }, + { x: 760.3081597222222, y: 245.642933707124 }, + { x: 763.4238591269841, y: 244.86745547493402 }, + { x: 766.456886574074, y: 243.6634234828496 }, + { x: 767.9346478174604, y: 243.12262945250657 }, + { x: 769.0920552248677, y: 242.64815921833772 }, + { x: 770.0221147486773, y: 242.1940963060686 }, + { x: 770.7454943783068, y: 241.92369929089708 }, + { x: 771.2156911375662, y: 241.71452424142478 }, + { x: 771.6342179232804, y: 241.5512656662269 }, + { x: 771.9442377645503, y: 241.5512656662269 }, + { x: 772.0424107142857, y: 241.40331258245382 }, + { x: 772.0424107142857, y: 241.25535949868072 }, + { x: 772.0424107142857, y: 241.1635265501319 }, + { x: 772.0424107142857, y: 240.82680573878628 }, + { x: 772.0424107142857, y: 240.66864899406332 }, + { x: 772.0424107142857, y: 240.4747794360158 }, + ], + ], + }, + source: "/assets/urn:aaid:sc:US:77586245-7c2e-4758-948a-5e69fc444ef4", + state: "0", + }, + type: "Annotation", + }, + ], + }; + function W(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function Q(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? W(Object(n), !0).forEach(function (t) { + J(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : W(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function J(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + function Y(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + const q = function (e) { + var t, + n, + o = e.imsData, + a = + ((t = (0, r.useState)([])), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return Y(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Y(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + i = a[0], + s = a[1]; + (0, r.useEffect)( + function () { + s([ + { + id: "b1363356-8d00-4831-bfed-4d75ff0fe2fd", + mimeType: "application/pdf", + name: "Mock Frame Artifact", + ownerId: "0E4045EC57A34D477F000101@AdobeID", + sourceId: "urn:aaid:sc:US:77586245-7c2e-4758-948a-5e69fc444ef4", + type: "application/vnd.adobe.directory+json", + isFrameArtifact: !0, + get: function () { + return Promise.resolve(G); + }, + comment: function (e) { + var t = (function (e) { + var t = e.bodyValue, + n = e.nodeId, + r = e.imsData; + return { + creator: { + img: + "https://frameio-uploads-production.s3-accelerate.amazonaws.com/users/ccf5c565-cf15-4a23-84d7-985620266b00/91a8ff37-114e-430e-b3b4-221d66a231d6/image.png?x-amz-meta-request_id=F4iTIdAfEBTZhL0BNJiI&x-amz-meta-resource_id=ccf5c565-cf15-4a23-84d7-985620266b00&x-amz-meta-resource_type=user&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAZ5BPIQ3GOE3GUNGI%2F20230926%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20230926T222353Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=4f078f58f6db6dc823e2af738aa7a08242c9f5198ff80a19d92f5088d616721b", + name: r.displayName, + id: r.id, + type: "Person", + email: "pae@adobe.com", + created: "2018-12-06T21:56:20.808713Z", + }, + created: new Date().toISOString(), + bodyValue: t, + motivation: "commenting", + generator: "https://comments.acrobat.com/redhawk", + type: "Annotation", + "@context": ["https://www.w3.org/ns/anno.jsonld", "https://comments.acrobat.com/ns/anno.jsonld"], + target: { selector: { node: { id: n }, subtype: "node", type: "AdobeAnnoSelector" }, source: "b1363356-8d00-4831-bfed-4d75ff0fe2fd", state: "0" }, + mentions: [], + modified: new Date().toISOString(), + etag: "1695765299469", + id: (0, U.v1)(), + creationId: "22466bfb-7a0b-46ff-847b-4a98fbfafd32", + status: "open", + }; + })(Q({ imsData: o }, e)); + return Promise.resolve(t); + }, + reply: function (e) { + var t = (function (e) { + var t = e.bodyValue, + n = e.commentId, + r = e.imsData; + return { + creator: { + img: + "https://frameio-uploads-production.s3-accelerate.amazonaws.com/users/ccf5c565-cf15-4a23-84d7-985620266b00/91a8ff37-114e-430e-b3b4-221d66a231d6/image.png?x-amz-meta-request_id=F4iTIdAfEBTZhL0BNJiI&x-amz-meta-resource_id=ccf5c565-cf15-4a23-84d7-985620266b00&x-amz-meta-resource_type=user&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAZ5BPIQ3GOE3GUNGI%2F20230926%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20230926T222353Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=4f078f58f6db6dc823e2af738aa7a08242c9f5198ff80a19d92f5088d616721b", + name: r.displayName, + id: r.id, + type: "Person", + email: "pae@adobe.com", + created: "2018-12-06T21:56:20.808713Z", + }, + created: new Date().toISOString(), + bodyValue: t, + motivation: "replying", + generator: "https://comments.acrobat.com/redhawk", + type: "Annotation", + "@context": ["https://www.w3.org/ns/anno.jsonld", "https://comments.acrobat.com/ns/anno.jsonld"], + target: { source: n, state: "0" }, + mentions: [], + modified: new Date().toISOString(), + etag: "1695765299469", + id: (0, U.v1)(), + creationId: "22466bfb-7a0b-46ff-847b-4a98fbfafd32", + status: "open", + }; + })(Q({ imsData: o }, e)); + return Promise.resolve(t); + }, + update: function (e) { + var t, + n, + r, + o, + a, + i, + s, + c = + ((n = (t = e).bodyValue), + (r = t.commentId), + (a = (o = f.ZP.getState())["".concat(d.Bq, ":comments")].entities.assets.byId["b1363356-8d00-4831-bfed-4d75ff0fe2fd"]), + (i = o["".concat(d.Bq, ":comments")].entities.comments), + (s = a.comments.find(function (e) { + return i.byId[e].replies.find(function (e) { + return e.id === r; + }); + })), + V( + V( + {}, + i.byId[r] + ? i.byId[r] + : i.byId[s].replies.find(function (e) { + return e.id === r; + }) + ), + {}, + { bodyValue: n, modified: new Date().toISOString() } + )); + return Promise.resolve(c); + }, + resolve: function (e) { + var t, + n = ((t = e), V(V({}, f.ZP.getState()["".concat(d.Bq, ":comments")].entities.comments.byId[t]), {}, { status: "resolved" })); + return Promise.resolve(n); + }, + open: function (e) { + var t, + n = ((t = e), V(V({}, f.ZP.getState()["".concat(d.Bq, ":comments")].entities.comments.byId[t]), {}, { status: "open" })); + return Promise.resolve(n); + }, + delete: function (e) { + return Promise.resolve({}); + }, + }, + ]); + }, + [o] + ); + var c = (0, r.useMemo)( + function () { + return { + getArtifacts: function () { + return Promise.resolve(i); + }, + }; + }, + [i] + ), + l = (0, r.useMemo)( + function () { + return { + getArtifactContext: function () { + return Promise.resolve(c); + }, + }; + }, + [c] + ), + u = (0, r.useCallback)( + function () { + return Promise.resolve(l); + }, + [l] + ); + return (0, r.useMemo)( + function () { + return { getAssetWithCloudID: u }; + }, + [u] + ); + }; + function X(e, t, n, r, o, a, i) { + try { + var s = e[a](i), + c = s.value; + } catch (e) { + return void n(e); + } + s.done ? t(c) : Promise.resolve(c).then(r, o); + } + function K(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function $(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? K(Object(n), !0).forEach(function (t) { + ee(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : K(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function ee(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + function te(e, t) { + return ( + (function (e) { + if (Array.isArray(e)) return e; + })(e) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(e, t) || + ne(e, t) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function ne(e, t) { + if (e) { + if ("string" == typeof e) return re(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? re(e, t) : void 0; + } + } + function re(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var oe = [ + "analyticsData", + "analyticsDebounce", + "analyticsEnabled", + "annotationsCreationEnabled", + "annotationsEnabled", + "annotationsMultiPageEnabled", + "annotationOverlayElements", + "annotationTypes", + "appKey", + "appName", + "authenticateFetch", + "backgroundModeEnabled", + "cacheComments", + "compactLayout", + "creativeOnboarding", + "disableCommentCreation", + "disableNetworkIndicator", + "documentState", + "enableEmojiPicker", + "enableFrameS4R", + "enableReadUnread", + "environment", + "globalCommentsViewAll", + "groupBy", + "guestCommentingAutomationMode", + "hasReviewAccess", + "imageCapture", + "imageContextData", + "invitationServiceAccessToken", + "cloudDocSupported", + "isDocumentSupported", + "isErrorWorkflow", + "isMapping", + "isVisible", + "locale", + "localeStringOverrides", + "peopleGraphAPIKey", + "pollForUpdates", + "repositionSubmitForTouch", + "richTextEntry", + "s4rEnabled", + "showRefactoredComment", + "socialSignIn", + "stakeholderOnboarding", + "spectrumUIScale", + "theme", + "themeType", + "touchControls", + "typekitId", + ]; + const ae = function (e) { + var t, + n, + o, + a, + i = te((0, r.useState)({}), 2), + s = i[0], + y = i[1], + g = te((0, r.useState)({}), 2), + E = g[0], + D = g[1], + C = $($({}, e), s), + _ = te((0, r.useState)(!C.isVisible || "hidden" === document.visibilityState), 2), + T = _[0], + I = _[1], + F = te((0, r.useState)({ asset: void 0, assetId: void 0, assetStatusCode: void 0, assetStatusType: d.Ud.UNFETCHED, sourceId: void 0 }), 2), + x = F[0], + R = F[1], + L = te((0, r.useState)([]), 2), + M = L[0], + j = L[1], + U = te((0, r.useState)(C.artifactData), 2), + z = U[0], + V = U[1], + H = (function (e) { + var t = (0, r.useRef)(P(e)); + return (0, r.useMemo)( + function () { + var n = P(e); + return c()(t.current, n) ? t.current : ((t.current = n), n); + }, + [e] + ); + })(C.imsData), + G = q({ imsData: H }).getAssetWithCloudID; + (0, r.useEffect)( + function () { + var e = (function () { + var e, + t = + ((e = regeneratorRuntime.mark(function e() { + var t, n, r; + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + if (!C.frameArtifactEnabled) { + e.next = 13; + break; + } + return (e.next = 3), G(C.assetData.id); + case 3: + return (t = e.sent), (e.next = 6), t.getArtifactContext(); + case 6: + return (n = e.sent), (e.next = 9), n.getArtifacts(); + case 9: + (r = e.sent), V([$($({}, r[0]), {}, { reviewType: "artifact", nodeId: C.assetData.nodeId, ownerId: C.assetData.ownerId, validNodes: C.assetData.validNodes, shareStatus: "public" })]), (e.next = 14); + break; + case 13: + V(C.artifactData); + case 14: + case "end": + return e.stop(); + } + }, e); + })), + function () { + var t = this, + n = arguments; + return new Promise(function (r, o) { + var a = e.apply(t, n); + function i(e) { + X(a, r, o, i, s, "next", e); + } + function s(e) { + X(a, r, o, i, s, "throw", e); + } + i(void 0); + }); + }); + return function () { + return t.apply(this, arguments); + }; + })(); + e(); + }, + [G, C.artifactData, C.assetData, C.frameArtifactEnabled] + ); + var W = (function (e, t, n, o) { + var a = A(e), + i = A(t), + s = v((0, r.useState)(b({}, S(k(a, i, o), { isExternalNodeChange: !0 }))), 2), + c = s[0], + l = s[1], + y = (function (e, t, n, o) { + var a, + i = (0, r.useMemo)( + function () { + var n = []; + return ( + o && + null != e && + e.id && + null != e && + e.name && + null != t && + t.length && + ((n = [b(b({}, S(e)), {}, { isArtifact: !1 })]), + t.forEach(function (e) { + e.id && e.name && n.push(b(b({}, S(e)), {}, { isArtifact: !0 })); + })), + n.length > 1 ? n : w + ); + }, + [e, t, o] + ), + s = v( + (0, r.useState)(function () { + return k(e, t, o); + }), + 2 + ), + c = s[0], + l = s[1]; + (0, r.useEffect)( + function () { + l(k(e, t, o)); + }, + [t, e, o] + ); + var u = v((0, r.useState)((null == c ? void 0 : c.id) || (null === (a = i[0]) || void 0 === a ? void 0 : a.id)), 2), + p = u[0], + f = u[1], + m = (0, r.useMemo)( + function () { + return i.map(function (e) { + return e.id; + }); + }, + [i] + ); + (0, r.useEffect)( + function () { + f(c.id); + }, + [c.id] + ), + (0, r.useEffect)( + function () { + p && + !i.find(function (e) { + return (null == e ? void 0 : e.id) === p; + }) && + f(c.id); + }, + [p, i, c.id] + ), + (0, r.useEffect)( + function () { + window.dispatchEvent(new CustomEvent("assetchange", { detail: { newAssetId: p } })); + }, + [p] + ); + var y = (0, r.useCallback)( + function (r) { + var o, + a = "".concat(d.GF).concat(e.id); + (o = + r === e.id + ? e + : t.find(function (e) { + return e.id === r; + })), + f(r), + (0, h.m8)(a, o.reviewType), + n(b({}, S(o, { isExternalNodeChange: !0 }))); + }, + [e, t, n] + ); + return { assetIds: m, currentMultipleAsset: p, handleMultipleAssetChange: y, multipleAssets: i }; + })(a, i, l, o), + g = y.assetIds, + E = y.currentMultipleAsset, + D = y.handleMultipleAssetChange, + C = y.multipleAssets, + _ = (0, r.useCallback)(function (e) { + return l(function (t) { + return b(b({}, t), {}, { nodeId: e, isExternalNodeChange: !1 }); + }); + }, []), + T = (0, f.I0)(), + I = (0, f.v9)(u.Qx), + O = (0, f.v9)(u.yU), + F = (0, f.v9)(function (e) { + var t; + return null === (t = e["".concat(d.Bq, ":context")]) || void 0 === t ? void 0 : t.isPlacingAnnotation; + }); + return ( + (0, r.useEffect)( + function () { + var e = function (e) { + e.id !== c.id && T((0, p.ER)({ excludeIngestEvent: !0 })); + var t = S(e, { isExternalNodeChange: e.nodeId !== c.nodeId || c.isExternalNodeChange }); + l(t); + }; + C.length + ? e( + i.find(function (e) { + return e.id === E; + }) || a + ) + : e(k(a, i, o)); + }, + [E, a, a.nodeId, a.validNodes, a.shareStatus, i] + ), + (0, r.useEffect)( + function () { + void 0 === c.nodeId || c.nodeId === O || n || T(I ? (0, m.yC)(void 0, c.nodeId) : (0, m.V0)(F, "root")); + }, + [c.nodeId, O] + ), + { assetData: c, multipleAssets: { assetIds: g, assets: C, selectedId: E, setAsset: D }, setActiveNode: _ } + ); + })(C.assetData, z, C.annotationsMultiPageEnabled, C.s4rEnabled), + Q = W.assetData, + J = W.multipleAssets, + Y = W.setActiveNode, + K = N(C.annotationsMultiPageEnabled), + ee = B(C.hostOfflineStatus), + ae = O(Q.id, C.appKey, C.environment, C.invitationServiceAccessToken, H), + ie = (0, r.useCallback)(function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, + n = arguments.length > 3 ? arguments[3] : void 0; + R({ asset: e, assetId: arguments.length > 2 ? arguments[2] : void 0, assetStatusCode: t.statusCode, assetStatusType: t.type, sourceId: n }); + }, []), + se = (0, r.useCallback)(function (e) { + j(function (t) { + return t.find(function (t) { + return t.id === e.id; + }) + ? t + : [].concat( + (function (e) { + if (Array.isArray(e)) return re(e); + })((n = t)) || + (function (e) { + if (("undefined" != typeof Symbol && null != e[Symbol.iterator]) || null != e["@@iterator"]) return Array.from(e); + })(n) || + ne(n) || + (function () { + throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })(), + [e] + ); + var n; + }); + }, []), + ce = (0, r.useCallback)(function (e, t) { + y(e), D(t); + }, []); + (0, r.useEffect)( + function () { + j(function (e) { + var t = function (e) { + return J.assetIds.includes(e.id) || Q.id === e.id; + }, + n = e.filter(function (e) { + return t(e); + }); + return ( + e + .filter(function (e) { + return !t(e); + }) + .forEach(function (e) { + return l.xR.removeInstance(e.id); + }), + n.length !== e.length ? n : e + ); + }); + }, + [Q.id, M, J.assetIds] + ); + var le = (0, r.useMemo)( + function () { + return { type: x.assetStatusType, statusCode: x.assetStatusCode }; + }, + [x.assetStatusType, x.assetStatusCode] + ); + (0, r.useEffect)( + function () { + I(!C.isVisible); + }, + [C.isVisible] + ), + (0, r.useEffect)(function () { + var e = function () { + I("hidden" === document.visibilityState); + }; + return ( + window.addEventListener("visibilitychange", e), + function () { + window.removeEventListener("visibilitychange", e); + } + ); + }, []); + var ue, + de = null === (t = C.abTestConfig) || void 0 === t ? void 0 : t.floodgateClientId, + pe = null === (n = C.abTestConfig) || void 0 === n ? void 0 : n.floodgateReleaseGroup, + fe = null === (o = C.abTestConfig) || void 0 === o ? void 0 : o.floodgateReleaseFeature, + me = null === (a = C.abTestConfig) || void 0 === a ? void 0 : a.sophiaSurfaceId, + he = (0, r.useMemo)( + function () { + if (C.abTestConfig) return { floodgateClientId: de, floodgateReleaseGroup: pe, floodgateReleaseFeature: fe, sophiaSurfaceId: me }; + }, + [C.abTestConfig, de, pe, fe, me] + ), + ve = (0, r.useRef)({}), + ye = (0, r.useRef)({}), + ge = { + abTestConfig: he, + assetData: Q, + setActiveNode: Y, + imsData: H, + isOffline: ee, + capabilities: ae, + globalCommentsToggle: K, + mentionsEnabled: !H.isGuestUser, + multipleAssets: J, + asset: { addFetchedAsset: se, asset: x.asset, assetId: x.assetId, fetchedAssets: M, setAsset: ie, sourceId: x.sourceId, status: le }, + localCommentMetadataMapRef: ve, + unreadCommentOverrideMapRef: ye, + latestMobileEnabled: C.compactLayout, + setSophiaConfigOverride: ce, + sophiaAnalyticsData: E, + }; + oe.forEach(function (e) { + return (ge[e] = C[e]); + }), + C.guestCommentingAutomationMode ? (ge.reCaptchaSiteKey = d.o_) : C.environment.startsWith("pr") ? (ge.reCaptchaSiteKey = d.bT) : C.environment.startsWith("dev") ? (ge.reCaptchaSiteKey = d._F) : (ge.reCaptchaSiteKey = d.Kj), + C.enableReadUnread && (ge.enableReadUnread = "" !== (null == H ? void 0 : H.token) && -1 === (null == H || null === (ue = H.token) || void 0 === ue ? void 0 : ue.indexOf("AnonBearer"))), + (ge.isVisible = !T); + var be = (0, Z.Z)(ge); + return c()(be, ge) ? be : ge; + }; + function ie() { + return ( + (ie = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + ie.apply(this, arguments) + ); + } + var se = { + abTestConfig: void 0, + analyticsData: null, + analyticsDebounce: 5e3, + analyticsEnabled: !1, + annotationsCreationEnabled: !0, + annotationsEnabled: !1, + annotationsMultiPageEnabled: !1, + annotationOverlayElements: [], + annotationTypes: null, + asset: { addFetchedAsset: function () {}, asset: void 0, assetId: void 0, fetchedAssets: [], setAsset: function () {}, sourceId: void 0, status: d.Ud.UNFETCHED }, + assetData: { reviewType: "artifact", validNodes: [] }, + authenticateFetch: !0, + backgroundModeEnabled: !1, + cacheComments: !1, + creativeOnboarding: !1, + compactLayout: !1, + disableCommentCreation: !1, + disableNetworkIndicator: !1, + documentState: "documentOpen", + enableEmojiPicker: !0, + enableFrameS4R: !1, + enableReadUnread: !1, + environment: "stage", + globalCommentsToggle: { isActive: !1, onToggle: function () {} }, + globalCommentsViewAll: !0, + groupBy: "node", + guestCommentingAutomationMode: !1, + hasReviewAccess: !0, + hostOfflineStatus: !1, + imageCapture: !1, + imageContextData: {}, + imsData: {}, + invitationServiceAccessToken: void 0, + cloudDocSupported: !0, + isDocumentSupported: !0, + isErrorWorkflow: !1, + isMapping: !1, + isVisible: !1, + latestMobileEnabled: !1, + localCommentMetadataMapRef: { current: {} }, + locale: "en-US", + localeStringOverrides: {}, + mentionsEnabled: !1, + peopleGraphAPIKey: null, + repositionSubmitForTouch: !1, + richTextEntry: !0, + s4rEnabled: !1, + showRefactoredComment: !1, + socialSignIn: !1, + spectrumUIScale: "medium", + stakeholderOnboarding: !1, + theme: "light", + themeType: "spectrum", + touchControls: !1, + typekitId: "pwg1jsp", + unreadCommentOverrideMapRef: { current: {} }, + }, + ce = o().createContext(se), + le = ce.Provider, + ue = ce.Consumer, + de = function (e) { + var t = o().forwardRef(function (t, n) { + return o().createElement(ue, null, function (r) { + return o().createElement(e, ie({}, r, t, { ref: n })); + }); + }), + n = "".concat(e.displayName || e.name || "Component", ".Wrapped"); + return (t.displayName = "WithAppContext(".concat(n, ")")), t; + }, + pe = function (e) { + var t = ae(e); + return o().createElement(le, { value: t }, e.children); + }; + (pe.defaultProps = se), (pe.propTypes = { children: i().node }); + const fe = ce; + }, + 88133: (e, t, n) => { + "use strict"; + n.d(t, { ZP: () => b, mN: () => g }); + var r = n(23469), + o = n.n(r), + a = n(47776), + i = n.n(a), + s = n(99894), + c = n(23492), + l = n(69088), + u = n(95545), + d = n(30251), + p = n(69522), + f = n(9097), + m = n(48468), + h = n(89941), + v = { + onAdobeIMS: function () {}, + onAnnotationToggle: function () {}, + onCloseButtonClick: function () {}, + onCommentInteraction: function () {}, + onCommentSelect: function () {}, + onCommentsError: function () {}, + onCommentsSuccess: function () {}, + onCommentsUpdate: function () {}, + onErrorRetry: function () {}, + onGuestSession: function () {}, + onInvokeLogin: void 0, + onMetadataUpdate: function () {}, + onMobileCommentsListHeightChange: function () {}, + onNodeChange: function () {}, + onShare: void 0, + onTrayHeightChange: function () {}, + onUrlOpen: void 0, + }, + y = o().createContext(v), + g = function (e) { + var t = e.children, + n = e.onAdobeIMS, + a = e.onAnnotationToggle, + i = e.onCloseButtonClick, + v = e.onCommentInteraction, + g = e.onCommentsError, + b = e.onCommentsSuccess, + E = e.onCommentsUpdate, + D = e.onErrorRetry, + C = e.onGuestSession, + w = e.onInvokeLogin, + S = e.onMetadataUpdate, + A = e.onMobileCommentsListHeightChange, + k = e.onNodeChange, + _ = e.onShare, + T = e.onTrayHeightChange, + I = e.onUrlOpen, + O = (0, l.I0)(), + F = (0, h.Z)(), + x = (0, f.Z)(), + N = x.isRead, + R = x.setIsRead, + L = (0, r.useMemo)(m.nE, []), + M = (0, l.v9)(function (e) { + return e["".concat(s.Bq, ":annotation")].selectedAnnotationId; + }), + P = (0, l.v9)(function (e) { + var t = e["".concat(s.Bq, ":context")], + n = t.annotationLocation, + r = t.annotatingItmId, + o = t.isPlacingAnnotation; + return "root" === r && (o || !(null == n || !n.coordinates)); + }), + j = (0, r.useContext)(c.ZP), + B = j.setActiveNode, + Z = j.assetData, + U = null == Z ? void 0 : Z.id, + z = null == Z ? void 0 : Z.sourceId, + V = null == Z ? void 0 : Z.nodeId, + H = (0, r.useCallback)( + function (e, t, n) { + var r, + o, + a, + i, + c, + l = null == t || null === (r = t.target) || void 0 === r || null === (o = r.selector) || void 0 === o || null === (a = o.node) || void 0 === a ? void 0 : a.id, + u = null == t || null === (i = t.target) || void 0 === i || null === (c = i.selector) || void 0 === c ? void 0 : c.sectionId; + v( + { trigger: e, id: t.id, selector: t.annotationType ? ".".concat(s.TV, '[data-annotationid="').concat(t.id, '"]') : void 0, hasAnnotation: Boolean(t.annotationType), interactionFromAnnotation: n }, + { assetId: U, nodeId: l, sectionId: u, sourceId: z } + ); + }, + [U, v, z] + ), + G = (0, r.useCallback)( + function (e) { + var t, + n, + r, + o, + a, + i, + s, + c = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, + l = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : { allowToggle: !1, autoScroll: !1 }, + f = l.allowToggle, + m = l.autoScroll, + h = l.idForLookup, + v = l.replyId, + y = h ? L(h) || {} : c, + g = y.id, + b = null == y || null === (t = y.target) || void 0 === t || null === (n = t.selector) || void 0 === n || null === (r = n.node) || void 0 === r ? void 0 : r.id, + E = void 0 !== b && b !== V, + D = !(null != e && null !== (o = e.currentTarget) && void 0 !== o && o.classList.contains("comment-li")); + y.unmapped || + ((f && M === g) || (!g && M) ? (O((0, u.K8)(void 0)), H("unselect", y, D)) : M !== g && ((P && !E) || O((0, d.By)()), O((0, u.K8)(y.id)), v && O((0, u.Ef)(v)), H("select", y, D)), + E && (B(b), k(b, void 0, { assetId: U, sourceId: z }))), + g && + (m && O((0, p.lH)(U, !0)), + N(y) || + R(((a = {}), (i = g), (s = { read: !0 }), i in a ? Object.defineProperty(a, i, { value: s, enumerable: !0, configurable: !0, writable: !0 }) : (a[i] = s), a), U, { overrideExplicitlySet: !0 }) + .then(function () { + F.fireEvent({ event: { subcategory: "read-unread", type: "click", subtype: "mark-as-read-click-".concat(M ? "annotation" : "comment") } }); + }) + .catch(function (e) { + var t = e.message, + n = e.status; + F.fireEvent({ event: { subcategory: "read-unread", subtype: "error", type: "click", error_code: n, error_type: t, error_desc: "failed-to-mark-as-read-on-click-".concat(M ? "annotation" : "comment") } }); + })); + }, + [V, P, U, F, O, N, H, k, L, M, B, R, z] + ), + W = (0, r.useCallback)( + function (e, t) { + var n, + r = "hover", + o = t.id, + a = !(null != e && null !== (n = e.currentTarget) && void 0 !== n && n.classList.contains("comment-li")); + "mouseenter" !== e.type && ((r = "unhover"), (o = void 0)), O((0, u.Vs)(o)), H(r, t, a); + }, + [O, H] + ), + Q = (0, r.useCallback)( + function () { + i({ assetId: U, sourceId: z }); + }, + [U, i, z] + ), + J = (0, r.useCallback)( + function (e, t) { + return C(e, t, { assetId: U, sourceId: z }); + }, + [U, z, C] + ), + Y = (0, r.useCallback)( + function (e) { + return n(e, { assetId: U, sourceId: z }); + }, + [U, z, n] + ), + q = (0, r.useCallback)( + function (e, t) { + e !== s.Qy && e !== V && (B(e), G({}, {}, { allowToggle: !0, autoScroll: !0 }), k(e, t, { assetId: U, sourceId: z })); + }, + [V, U, G, k, B, z] + ), + X = (0, r.useCallback)( + function (e) { + A(e, { assetId: U, sourceId: z }); + }, + [U, A, z] + ), + K = (0, r.useCallback)( + function (e) { + a(e, { assetId: U, sourceId: z }); + }, + [U, a, z] + ), + $ = (0, r.useCallback)( + function (e) { + _(e, { assetId: U, sourceId: z }); + }, + [U, _, z] + ), + ee = (0, r.useCallback)( + function (e) { + T(e, { assetId: U, sourceId: z }); + }, + [U, T, z] + ), + te = (0, r.useCallback)( + function (e) { + "function" == typeof w ? w(e) : O((0, d.Sp)(e)); + }, + [O, w] + ), + ne = (0, r.useCallback)( + function () { + D({ assetId: U, sourceId: z }); + }, + [U, D, z] + ), + re = (0, r.useMemo)( + function () { + return { + onAdobeIMS: Y, + onAnnotationToggle: K, + onCloseButtonClick: Q, + onCommentHover: W, + onCommentSelect: G, + onCommentsError: g, + onCommentsSuccess: b, + onCommentsUpdate: E, + onErrorRetry: ne, + onGuestSession: J, + onInvokeLogin: te, + onMetadataUpdate: S, + onMobileCommentsListHeightChange: X, + onNodeChange: q, + onShare: _ ? $ : void 0, + onTrayHeightChange: ee, + onUrlOpen: I, + }; + }, + [Y, K, Q, W, G, ne, J, te, X, q, $, ee, g, b, E, S, _, I] + ); + return o().createElement(y.Provider, { value: re }, t); + }; + (g.defaultProps = v), + (g.propTypes = { + children: i().node, + onAdobeIMS: i().func, + onAnnotationToggle: i().func, + onCloseButtonClick: i().func, + onCommentClick: i().func, + onCommentHover: i().func, + onCommentInteraction: i().func, + onCommentsError: i().func, + onCommentsSuccess: i().func, + onCommentsUpdate: i().func, + onErrorRetry: i().func, + onGuestSession: i().func, + onInvokeLogin: i().func, + onMetadataUpdate: i().func, + onMobileCommentsListHeightChange: i().func, + onNodeChange: i().func, + onShare: i().func, + onTrayHeightChange: i().func, + onUrlOpen: i().func, + }); + const b = y; + }, + 46794: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => h }); + var r = n(23469), + o = n(9076), + a = n(57305), + i = n.n(a), + s = n(23492), + c = n(69088), + l = n(99894), + u = n(67733), + d = n(30251), + p = n(95545); + function f(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function m(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + const h = function () { + var e = (arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}).annotationsEnabledOverride, + t = (0, c.I0)(), + n = (0, r.useContext)(s.ZP), + a = n.annotationTypes, + h = n.annotationsEnabled, + v = n.annotationsCreationEnabled, + y = n.annotationsMultiPageEnabled, + g = n.latestMobileEnabled, + b = (0, c.v9)(function (e) { + return i()(e, "".concat(l.Bq, ":context.annotationColor")); + }), + E = (0, c.v9)(function (e) { + return i()(e, "".concat(l.Bq, ":context.annotatingItmId")); + }), + D = (0, c.v9)(function (e) { + return i()(e, "".concat(l.Bq, ":context.annotatingLocation")); + }), + C = (0, c.v9)(function (e) { + return (0, u.cM)(e); + }), + w = (0, c.v9)(function (e) { + return (0, u.yU)(e); + }), + S = (0, c.v9)(function (e) { + return i()(e, "".concat(l.Bq, ":annotation.drawingNode")); + }), + A = (0, c.v9)(function (e) { + return i()(e, "".concat(l.Bq, ":context.newAnnotationType")); + }), + k = (0, c.v9)(function (e) { + return (0, u.Qx)(e); + }), + _ = (0, c.v9)(function (e) { + return i()(e, "".concat(l.Bq, ":annotation.hoveredAnnotation")); + }), + T = + (0, c.v9)(function (e) { + return i()(e, "".concat(l.Bq, ":context.registeredSectionIds")); + }) || [], + I = (0, c.v9)(function (e) { + return i()(e, "".concat(l.Bq, ":context.isPlacingAnnotation")); + }), + O = (0, c.v9)(function (e) { + return i()(e, "".concat(l.Bq, ":annotation.selectedAnnotationId")); + }), + F = (0, c.v9)(function (e) { + return i()(e, "".concat(l.Bq, ":annotation.showAnnotations")); + }), + x = (0, c.v9)(function (e) { + return i()(e, "".concat(l.Bq, ":annotation.showDraftAnnotations")); + }), + N = (0, c.v9)(function (e) { + return i()(e, "".concat(l.Bq, ":annotation.touchPressed")); + }), + R = (0, o.DE)( + { + registerSectionId: d.mj, + setAnnotationMode: d.V0, + setDrawingNode: p.I6, + setHoveredAnnotation: p.Vs, + setShowDraftAnnotations: p.tz, + setTouchPressed: p.zb, + saveAnnotationColor: d.Iz, + clearAnnotation: function () { + return d.yC(); + }, + saveAnnotationLocation: d.yC, + }, + t + ), + L = (I || k) && (!g || x) && "root" === E, + M = (0, r.useCallback)( + function (e) { + return C && !I && (!g || x) && ((!e && (1 === T.length || y)) || e === C.sectionId); + }, + [C, y, I, g, T, x] + ); + return (function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? f(Object(n), !0).forEach(function (t) { + m(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : f(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + })( + { + annotationColor: b, + annotationsEnabled: null != e ? e : h, + annotationCommentsEnabled: h && v, + annotationLocationCoordinates: C, + annotationTypes: a, + annotatingItmId: E, + annotationLocation: D, + annotationLocationNodeId: w, + annotationsMultiPageEnabled: y, + drawingNode: S, + hasAnnotationLocation: k, + hasTempAnnotation: M, + hoveredAnnotation: _, + isAnnotating: L, + legacyAnnotationMode: + h && + (!a || + (a && + !Object.values(a).some(function (e) { + return !0 === e; + }))), + isPlacingAnnotation: I, + newAnnotationType: A, + readyToAnnotate: T.length > 0, + registeredSectionIds: T, + selectedAnnotationId: O, + showAnnotations: F, + showDraftAnnotations: x, + touchPressed: N, + }, + R + ); + }; + }, + 39589: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => s }); + var r = n(23469), + o = n(23492), + a = n(69088), + i = n(69522); + const s = function () { + var e = (0, a.I0)(), + t = (0, r.useContext)(o.ZP), + n = t.assetData, + s = t.backgroundModeEnabled, + c = t.cacheComments, + l = t.enableFrameS4R, + u = t.environment, + d = t.globalCommentsToggle, + p = t.imageCapture, + f = t.imsData, + m = t.isOffline, + h = t.latestMobileEnabled, + v = t.multipleAssets, + y = void 0 === v ? {} : v, + g = t.pollForUpdates, + b = window.FORCE_STAGE_INGEST ? "stage" : u, + E = (0, r.useCallback)( + function (t, n, r) { + return e((0, i.Zk)(t, n, { cacheMetadata: c, recursive: r })); + }, + [c, e] + ), + D = (0, r.useCallback)( + function (t, r) { + return e((0, i.l_)(t, r || n.id, { cacheComments: c, updateRedux: !r || r === n.id })); + }, + [n, c, e] + ), + C = (0, r.useCallback)( + function (t) { + return e((0, i.P_)(t)); + }, + [e] + ), + w = (0, r.useCallback)( + function () { + return e((0, i.TM)()); + }, + [e] + ), + S = (0, r.useCallback)( + function () { + return e((0, i.j4)(n, { cacheComments: c, latestMobileEnabled: h })); + }, + [n, c, e, h] + ), + A = (0, r.useCallback)( + function (t, r, o, a) { + return e((0, i.hm)(t, r, o, a, n, { cacheComments: c, imageCapture: p })); + }, + [n, c, e, p] + ), + k = (0, r.useCallback)( + function (t) { + return e((0, i.uQ)(t, { cacheMetadata: c, isOffline: m, pollForUpdates: g })); + }, + [c, e, m, g] + ), + _ = (0, r.useCallback)( + function (t) { + return e((0, i.jS)(t, f, { enableFrameS4R: l, isBackgroundMode: s, cacheComments: c, imageCapture: p, isGlobalCommentsToggleActive: d.isActive, isOffline: m, pollForUpdates: g, selectedAssetId: y.selectedId || t.id })); + }, + [s, c, e, l, d.isActive, p, f, m, y.selectedId, g] + ), + T = (0, r.useCallback)( + function (t, r, o, a) { + var s = a.shouldUseAnnotationLocation; + return new Promise(function (a, l) { + e((0, i.kY)(t, r || n.nodeId, o, n, { cacheComments: c, shouldUseAnnotationLocation: s, imageCapture: p, dunamisEnv: b })) + .then(function (e) { + a(e); + }) + .catch(function (e) { + l(e); + }); + }); + }, + [n, c, e, b, p] + ), + I = (0, r.useCallback)( + function (t, r, o) { + return e((0, i.j2)(t, r, o, n, { cacheComments: c })); + }, + [n, c, e] + ), + O = (0, r.useCallback)( + function (t) { + return e((0, i.fx)(t, n, { cacheComments: c })); + }, + [n, c, e] + ), + F = (0, r.useCallback)( + function () { + return e((0, i.Y$)(n, { cacheComments: c })); + }, + [n, c, e] + ), + x = (0, r.useCallback)( + function (t) { + return e((0, i.Gv)(t, n, { cacheComments: c })); + }, + [n, c, e] + ), + N = (0, r.useCallback)( + function (t, n) { + return e((0, i.H_)(t, n, { cacheComments: c })); + }, + [c, e] + ); + return { + batchCommentsMetadataUpdate: E, + batchCommentUpdate: D, + clearComments: C, + clearContext: w, + confirmDeleteComment: S, + editComment: A, + fetchComments: _, + fetchCommentsMetadata: k, + postComment: T, + replyComment: I, + resolveComment: O, + undoResolveComment: F, + unresolveComment: x, + updateCommentsData: N, + }; + }; + }, + 83896: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => c }); + var r = n(23469), + o = n(23492), + a = n(69088), + i = n(48468), + s = n(99894); + const c = function () { + var e = (0, r.useMemo)(i.$E, []), + t = (0, r.useMemo)(i.K, []), + n = (0, r.useContext)(o.ZP), + c = n.annotationsMultiPageEnabled, + l = n.assetData, + u = n.enableReadUnread, + d = n.globalCommentsToggle, + p = n.groupBy, + f = n.imsData, + m = (0, r.useMemo)( + function () { + return { annotationsMultiPageEnabled: c, assetData: l, enableReadUnread: u, globalCommentsToggle: d, groupBy: p, imsData: f }; + }, + [c, l, u, d, p, f] + ), + h = (0, a.v9)(function (t) { + return e(t, m); + }), + v = (0, a.v9)(function (e) { + return t(e, m); + }); + return { commentCounts: v, comments: h, filteredCommentCount: h.length, hasUnmappedComments: null == v ? void 0 : v.allNodes["".concat(s.Qy)] }; + }; + }, + 10548: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => w }); + var r = n(23469), + o = n(369), + a = n(95545), + i = n(69522), + s = n(30251), + c = n(15686), + l = n(99894), + u = n(23492), + d = n(88133), + p = n(89941), + f = n(69088), + m = n(9097), + h = n(39589), + v = n(48468); + function y(e) { + return ( + (function (e) { + if (Array.isArray(e)) return g(e); + })(e) || + (function (e) { + if (("undefined" != typeof Symbol && null != e[Symbol.iterator]) || null != e["@@iterator"]) return Array.from(e); + })(e) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return g(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? g(e, t) : void 0; + } + })(e) || + (function () { + throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function g(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + function b(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function E(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? b(Object(n), !0).forEach(function (t) { + D(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : b(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function D(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var C = ["highlight", "strikethrough", "replace", "insert", "draw", "pin", "3d-pin"]; + const w = function (e) { + var t = (0, r.useContext)(u.ZP), + n = (0, r.useContext)(d.ZP), + g = n.onCommentSelect, + b = n.onNodeChange, + w = t.asset, + S = w.asset, + A = w.fetchedAssets, + k = t.assetData, + _ = t.latestMobileEnabled, + T = k.id, + I = k.nodeId, + O = (0, r.useRef)(D({}, T, !1)), + F = (0, p.Z)(), + x = (0, f.oR)(), + N = (0, f.I0)(), + R = (0, m.Z)().setIsRead, + L = (0, h.Z)().batchCommentUpdate, + M = (0, r.useRef)(), + P = (0, r.useMemo)(v.xr, []), + j = (0, r.useCallback)( + function (e, t, n) { + var r, + o, + a = x.getState(), + s = a["".concat(l.Bq, ":filter")].showResolvedComments; + if (e) { + var u, + d, + p, + f, + m, + h = (0, v.v)(a, T); + (r = h[e]) || + P(a, T).some(function (t) { + return ( + t.replies.some(function (n) { + return n.id === e && ((r = n), (o = t), !0); + }), + !!r + ); + }), + r + ? (N((0, i.lH)(T, !0)), + o + ? ((("resolved" === o.status && !s) || ("open" === o.status && s)) && N((0, c.Eu)()), o.repliesOpen || _ || N((0, i.jT)(o.id)), N(g({}, o, { replyId: r.id }))) + : ((("resolved" === r.status && !s) || ("open" === r.status && s)) && N((0, c.Eu)()), N(g({}, r))), + t({ + nodeId: null === (u = (o || r).target) || void 0 === u || null === (d = u.selector) || void 0 === d || null === (p = d.node) || void 0 === p ? void 0 : p.id, + sectionId: null === (f = (o || r).target) || void 0 === f || null === (m = f.selector) || void 0 === m ? void 0 : m.sectionId, + supplementaryData: { assetId: T }, + })) + : n(new Error("unable to find requested comment")); + } else N(g()), t(); + }, + [T, N, _, P, x, g] + ); + (0, r.useEffect)( + function () { + if (S && M.current) { + var e = M.current, + t = e.args, + n = e.handlers, + r = t.cmtId, + o = n.resolve, + a = n.reject; + j(r, o, a), (M.current = void 0); + } + }, + [S, j] + ); + var B = (0, r.useCallback)( + function () { + return P(x.getState(), T); + }, + [T, P, x] + ), + Z = (0, r.useCallback)( + function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : "root"; + return N((0, s.mj)(T, e, !0)); + }, + [T, N] + ), + U = (0, r.useCallback)( + function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : "root"; + return N((0, s.mj)(T, e, !1)); + }, + [T, N] + ), + z = (0, r.useCallback)( + function () { + return N((0, s.XH)(!0)); + }, + [N] + ), + V = (0, r.useCallback)( + function (e) { + return N((0, i.$k)(T, e)); + }, + [T, N] + ), + H = (0, r.useCallback)( + function (e) { + return N((0, a.Vs)(e)); + }, + [N] + ), + G = (0, r.useCallback)( + function () { + return N((0, a.Vs)(void 0)); + }, + [N] + ), + W = (0, r.useCallback)( + function () { + return N((0, s.Po)(void 0)); + }, + [N] + ), + Q = (0, r.useCallback)( + function () { + N((0, s.yC)()), N((0, s.V0)()); + }, + [N] + ), + J = (0, r.useCallback)( + function (e) { + R(e, T); + }, + [T, R] + ), + Y = (0, r.useCallback)( + function () { + var e = x.getState()["".concat(l.Bq, ":context")], + t = e.isPlacingAnnotation, + n = e.newAnnotationType; + t && (N((0, s.V0)(!1)), F.fireEvent({ event: { subcategory: "".concat(n, "-comment"), type: "keystroke", subtype: "pin-mode-exit" } })); + }, + [x, N, F] + ), + q = (0, r.useCallback)( + function (e, t) { + return new Promise(function (n, r) { + switch (e) { + case "adobeLoginBtnClick": + F.fireEvent({ event: { subcategory: "sign-in", subtype: "sign-in", type: "click" } }), n(); + break; + case "guestLoginBtnClick": + var o = t && E({}, t); + F.fireEvent({ event: E({ subcategory: "sign-in-guest", subtype: "sign-in", type: "click" }, o) }), n(); + break; + case "guestLoginDialogRender": + F.fireEvent({ event: { subcategory: "sign-in", subtype: "sign-in", type: "render" } }), n(); + break; + case "guestTextBoxClick": + F.fireEvent({ event: { subcategory: "sign-in-guest", subtype: "textbox", type: "click" } }), n(); + break; + default: + r("invalid event name"); + } + }); + }, + [F] + ), + X = (0, r.useCallback)( + function (e) { + return new Promise(function (t, n) { + S ? j(e, t, n) : (M.current && (0, M.current.handlers.reject)(new Error("showComment called again before previous call has resolved")), (M.current = { args: { cmtId: e }, handlers: { resolve: t, reject: n } })); + }); + }, + [S, j] + ), + K = (0, r.useCallback)( + function (e) { + var t, + n = e["3dData"], + r = e.boundingBox, + o = e.color, + a = e.nodeId, + i = e.points, + c = e.sectionId, + u = e.type, + d = x.getState()["".concat(l.Bq, ":context")], + p = d.annotationColor, + f = d.newAnnotationType, + m = null != a ? a : I, + h = o || p, + v = u || f; + if ( + (!o || + l.uu.find(function (e) { + return e.hex === o; + }) || + l.Kz.find(function (e) { + return e.hex === o; + }) || + (console.warn("Annotation color ".concat(o, " is unsupported. Falling back to ").concat(p)), (h = p)), + u && + !C.find(function (e) { + return e === u; + }) && + (console.warn("Annotation type ".concat(u, " is unsupported. Falling back to ").concat(f)), (v = f)), + "highlight" === v || "strikethrough" === v || "replace" === v) + ) { + var g = i.concat([]); + (g = []), + i.forEach(function (e) { + var t = [], + n = Math.min.apply( + Math, + y( + e.map(function (e) { + return e.x; + }) + ) + ), + r = Math.min.apply( + Math, + y( + e.map(function (e) { + return e.y; + }) + ) + ), + o = Math.max.apply( + Math, + y( + e.map(function (e) { + return e.x; + }) + ) + ), + a = Math.max.apply( + Math, + y( + e.map(function (e) { + return e.y; + }) + ) + ); + t.push({ x: n, y: a }, { x: o, y: a }, { x: n, y: r }, { x: o, y: r }), g.push(t); + }), + (t = { subtype: v, boundingBox: [r.left, r.bottom, r.right, r.top], inkList: g, sectionId: c, strokeColor: h }); + } else + "insert" === v + ? (t = { subtype: v, boundingBox: [i.x - 13, i.y, i.x, i.y - 18], sectionId: c, strokeColor: h, noteX: i.x, noteY: i.y }) + : "draw" === v + ? (t = { subtype: "shape", boundingBox: [r.left, r.bottom, r.right, r.top], inkList: i, sectionId: c, strokeColor: h }) + : "pin" === v && + (n + ? (c && console.warn("3D annotation type does not support sectionId. Ignoring sectionId value."), (t = { subtype: "note", strokeColor: h, "3dData": n })) + : (t = { subtype: "note", sectionId: c, strokeColor: h, noteX: i.x, noteY: i.y })); + N((0, s.yC)(t, m)), N((0, s.V0)(!1, "root", !1, v)), h !== p && N((0, s.Iz)(h)), I !== m && b(m); + }, + [x, N, I, b] + ), + $ = (0, r.useCallback)( + function (e, t) { + (e && e.type && "focus" === e.type) || (O.current[(null == t ? void 0 : t.id) || T] = !1); + var n = + "string" == typeof t + ? A.find(function (e) { + return e.id === t; + }) + : t; + n && !O.current[t.id] && n.checkForUpdates(); + }, + [T, A] + ), + ee = (0, r.useCallback)( + function (e, t) { + (e && e.type && "blur" === e.type) || (O.current[(null == t ? void 0 : t.id) || T] = !0), t && t.disableUpdates(); + }, + [T] + ), + te = (0, r.useCallback)(function (e) { + var t = e.spectrumUIScale, + n = e.theme, + r = e.themeType, + a = e.typekitId; + return (0, o.Z)({ scale: t, spectrumTheme: r, theme: n, typekitId: a }); + }, []), + ne = (0, r.useMemo)( + function () { + return { + batchCommentUpdate: L, + batchCommentMetadataUpdate: J, + createPendingAnnotation: K, + disableComments: ee, + enableComments: $, + endAnnotating: Y, + getComments: B, + handleHostLoginEvent: q, + hideEmojiPicker: W, + highlightComment: H, + minimizeCommentsList: z, + preload: te, + registerAnnotationSection: Z, + remapCommentNodes: V, + removePendingAnnotation: Q, + showComment: X, + unhighlightComment: G, + unregisterAnnotationSection: U, + }; + }, + [L, J, K, ee, $, Y, B, q, W, H, z, te, Z, V, Q, X, G, U] + ); + return ( + (0, r.useEffect)( + function () { + e && e(); + }, + [ne, e] + ), + ne + ); + }; + }, + 89941: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => d }); + var r = n(94055), + o = n(23469), + a = n(23492), + i = n(99894), + s = n(56841); + function c(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function l(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? c(Object(n), !0).forEach(function (t) { + u(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : c(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function u(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + const d = function () { + var e = (0, r.useCCXIngest)(i.FH), + t = (0, o.useContext)(a.ZP).backgroundModeEnabled, + n = (0, o.useCallback)( + function (e) { + return s.Z.commentsRenderEventHelper(e, t); + }, + [t] + ); + return (e.events = l(l({}, s.Z), {}, { commentsRenderEvent: n })), e; + }; + }, + 24124: (e, t, n) => { + "use strict"; + n.d(t, { Mi: () => C, ZP: () => w }); + var r = n(23469), + o = n(25343), + a = n(57305), + i = n.n(a), + s = n(90353), + c = n(99894), + l = n(23492); + function u(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function d(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? u(Object(n), !0).forEach(function (t) { + p(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : u(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function p(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + function f(e, t) { + return ( + (function (e) { + if (Array.isArray(e)) return e; + })(e) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(e, t) || + m(e, t) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function m(e, t) { + if (e) { + if ("string" == typeof e) return h(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? h(e, t) : void 0; + } + } + function h(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var v, + y = new o.Client(), + g = 0, + b = [429, 503], + E = function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}; + return { addressBookUrn: i()(e, "addressBookUrn"), id: i()(e, "linkedIdentity"), email: i()(e, "email") }; + }, + D = function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : "", + t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, + n = t.shareStatus, + r = void 0 === n ? "unshared" : n; + if (g > 0) return Promise.reject(); + var o = { peopleType: "PERSON", relationship: "MENTION", resourceType: t.mimeType, resourceUrn: t.id, resourceUrl: t.url, searchText: e, tags: ["OWNER", "COLLABORATOR"] }; + return ( + ("public" !== r && "orgShared" !== r) || o.tags.push("ANNOTATOR"), + y + .getSuggestions(o) + .then(function (e) { + if (e && e.error) throw e; + return (function () { + return (arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : []).map(function (e) { + var t = i()(e, "caption"); + return { email: (0, s.vV)(t) ? t : "", src: i()(e, "_links.thumbnail.href"), name: i()(e, "title"), token: i()(e, "token"), tags: i()(e, "tags"), type: i()(e, "type"), orgName: i()(e, "organization") || "" }; + }); + })(e); + }) + .catch(function (e) { + var t; + return ( + b.includes(null == e || null === (t = e.response) || void 0 === t ? void 0 : t.status) && + ((g = (function (e) { + if (!e || !e.headers) return 0; + var t = e.headers.get("Retry-After"); + if (!t) return 0; + var n = parseInt(t, 10); + return Number.isFinite(n) ? 1e3 * n : 0; + })(e.response)), + clearTimeout(v), + (v = setTimeout(function () { + g = 0; + }, g))), + console.warn(e), + [] + ); + }) + ); + }, + C = function () { + var e = (0, r.useContext)(l.ZP), + t = e.assetData, + n = e.environment, + o = e.imsData, + a = e.invitationServiceAccessToken, + i = e.mentionsEnabled, + s = e.peopleGraphAPIKey; + (0, r.useEffect)( + function () { + !o.token || + o.isGuestUser || + t.isFrameArtifact || + (function (e, t, n, r, o) { + var a = { apiKey: n, environment: "mock" === t || "dev" === t ? "stage" : t, token: null == e ? void 0 : e.token, acceptHeaderVersion: "V2", accessToken: o }; + y.configure(a), D("", r); + })(o, n, s, t, a); + }, + [t.id, t.mimeType, t.url, t.shareStatus, o.token, a, n, i, s] + ); + }; + function w() { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : [], + t = f((0, r.useState)([]), 2), + n = t[0], + o = t[1], + a = f((0, r.useState)(e), 2), + u = a[0], + p = a[1], + v = (0, r.useRef)(""), + g = (0, r.useRef)(!1), + b = (0, r.useRef)(!1), + C = (0, r.useContext)(l.ZP).assetData, + w = (0, r.useCallback)( + function (e, t) { + var n = e.substring(0, t), + r = (0, s.uV)(n, c.xA); + if (r >= 0) { + var a = n.substring(r, t); + if (-1 !== a.search(/\s{2,}/g)) return !1; + var i = u.filter(function (e) { + return a.includes(e.name); + }); + if ((i.length && (r += i[0].name.length), e.substring(r, t).includes(v.current) && !1 === g.current && !1 === b.current && (r += v.current.length), 0 === e.substring(r, t).indexOf("@"))) { + (v.current = e.substring(r + 1, t)), (b.current = !0); + var l = v.current; + return ( + D(l, C) + .then(function (e) { + l === v.current && ((g.current = !!e.length), o(e), (b.current = !1)); + }) + .catch(function (e) { + l === v.current && ((v.current = ""), (g.current = !1), o([]), (b.current = !1), console.warn(e)); + }), + !0 + ); + } + } + return !1; + }, + [u, C] + ), + S = (0, r.useCallback)( + function (e) { + return y + .acceptTokens([e.token]) + .then(function (t) { + if (t && t.error) throw t; + var n, + r = E(i()(t, "successes[0]")), + o = d(d({}, e), r); + o.id && + (u.some(function (e) { + return e.addressBookUrn === o.addressBookUrn; + }) || + p( + [].concat( + (function (e) { + if (Array.isArray(e)) return h(e); + })((n = u)) || + (function (e) { + if (("undefined" != typeof Symbol && null != e[Symbol.iterator]) || null != e["@@iterator"]) return Array.from(e); + })(n) || + m(n) || + (function () { + throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })(), + [o] + ) + )); + }) + .catch(function (e) { + console.warn(e); + }); + }, + [u] + ); + return { suggestions: n, acceptedSuggestions: u, getSuggestionsFromInput: w, acceptSuggestion: S }; + } + }, + 82950: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => i }); + var r = n(23469), + o = n(87220), + a = n.n(o); + const i = function (e) { + var t = (0, r.useRef)(); + return ( + (0, r.useEffect)(function () { + a()(e, t.current) || (t.current = e); + }), + t.current + ); + }; + }, + 9097: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => f }); + var r = n(23469), + o = n(23492), + a = n(69088), + i = n(15686), + s = n(39589), + c = n(48468), + l = n(99894); + function u(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function d(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? u(Object(n), !0).forEach(function (t) { + p(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : u(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function p(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + const f = function () { + var e = (0, a.I0)(), + t = (0, a.v9)(function (e) { + return e["".concat(l.Bq, ":filter")].filterTime; + }), + n = (0, a.v9)(function (e) { + return e["".concat(l.Bq, ":filter")].filterUsers; + }), + u = (0, a.v9)(function (e) { + return e["".concat(l.Bq, ":filter")].showResolvedComments; + }), + p = (0, a.v9)(function (e) { + return e["".concat(l.Bq, ":filter")].showUnreadComments; + }), + f = t.length > 0 || n.length > 0 || u || p, + m = (0, r.useContext)(o.ZP), + h = m.assetData, + v = m.enableReadUnread, + y = m.imsData, + g = m.isOffline, + b = m.localCommentMetadataMapRef, + E = m.unreadCommentOverrideMapRef, + D = (0, a.v9)(c.o8), + C = (0, a.v9)(c.BE), + w = C[h.id], + S = (0, a.v9)(c.QO), + A = (0, a.v9)(c.v), + k = (0, s.Z)().batchCommentsMetadataUpdate, + _ = (0, r.useCallback)( + function (e) { + var t = e.id, + n = e.creator, + r = null == t ? void 0 : t.toLowerCase(); + (void 0 === (null == y ? void 0 : y.id) || y.id !== n.id) && v && delete b.current[r]; + }, + [v, y, b] + ), + T = (0, r.useCallback)( + function (e) { + var t, + n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : w, + r = e.id, + o = e.creator, + a = r.toLowerCase(), + i = void 0 !== (null == y ? void 0 : y.id) && y.id === o.id; + return !v || !n || i || (null === (t = D[a]) || void 0 === t ? void 0 : t.read) || !1; + }, + [w, v, y, D] + ), + I = (0, r.useCallback)( + function (e) { + var t, + n = e.id, + r = e.creator, + o = null == n ? void 0 : n.toLowerCase(), + a = void 0 !== (null == y ? void 0 : y.id) && y.id === r.id; + return !v || a || (null === (t = b.current[o]) || void 0 === t ? void 0 : t.read) || !1; + }, + [v, y, b] + ), + O = (0, r.useCallback)( + function (t, n) { + var r = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : {}, + o = r.explicitlySet, + a = r.overrideExplicitlySet, + s = r.recursive, + c = {}; + return v + ? (Object.keys(t).forEach(function (e) { + var n = e.toLowerCase(), + r = t[e]; + (o || a || !E.current[n]) && (c[n] = r), o && (E.current[n] = r); + }), + Object.keys(c).length ? (g ? ((b.current = d(d({}, b.current), c)), Promise.resolve()) : (f && e((0, i.ay)(c)), k(c, n, s))) : Promise.resolve()) + : Promise.resolve(); + }, + [k, e, v, f, g, b, E] + ), + F = (0, r.useCallback)( + function (e, t) { + var n = e.id, + r = e.creator, + o = null == n ? void 0 : n.toLowerCase(); + (void 0 === (null == y ? void 0 : y.id) || y.id !== r.id) && v && (b.current[o] = { read: t }); + }, + [v, y, b] + ); + return { + clearIsReadLocally: _, + hasUnreadComments: (0, r.useCallback)( + function (e) { + var t = C[e], + n = S[e]; + return null == n + ? void 0 + : n.some(function (e) { + var n, + r = A[e]; + return ( + !T(r, t) || + (null === (n = r.replies) || void 0 === n + ? void 0 + : n.some(function (e) { + return !T(e, t); + })) + ); + }); + }, + [S, A, T, C] + ), + isRead: T, + isReadLocally: I, + setIsRead: O, + setIsReadLocally: F, + }; + }; + }, + 8605: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => f }); + var r = n(23469), + o = n(67961); + function a(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function i(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? a(Object(n), !0).forEach(function (t) { + s(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : a(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function s(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + function c(e, t) { + return ( + (function (e) { + if (Array.isArray(e)) return e; + })(e) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(e, t) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return l(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? l(e, t) : void 0; + } + })(e, t) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function l(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var u = "unknown-owner", + d = "unknown", + p = "unshared"; + const f = function (e, t, n) { + var a = arguments.length > 3 && void 0 !== arguments[3] ? arguments[3] : {}, + l = a.id, + f = a.token, + m = c((0, r.useState)({}), 2), + h = m[0], + v = m[1], + y = c((0, r.useState)(), 2), + g = y[0], + b = y[1], + E = (0, r.useCallback)( + function () { + var r = "dev" === n ? "stage" : n, + a = new o.ShareService({ token: f, environment: r, apiKey: t, apiVersion: "V4" }), + c = "stage" === n ? "https://cc-api-storage-stage.adobe.io/id/" : "https://cc-api-storage.adobe.io/id/"; + try { + a.get({ resourceUrl: "".concat(c).concat(e) }) + .then(function (t) { + var n = p, + r = !1, + o = !1, + a = !1, + c = u; + t.collaborators + .map(function (e) { + var t = e.additionalData, + n = e.id, + r = e.inheritances, + o = e.role; + return { id: ("addressBookContact" === e.type ? (null == t ? void 0 : t.linkedIdentity) : n) || n, inheritances: r, role: o }; + }) + .filter(function (e) { + var t; + return !(1 === (null === (t = e.inheritances) || void 0 === t ? void 0 : t.length) && "deep_override" === e.inheritances[0] && e.id.toLowerCase() !== (null == l ? void 0 : l.toLowerCase())) && "none" !== e.role; + }) + .forEach(function (e) { + "all" === e.id || "allWithPassword" === e.id ? (r = !0) : "orgEverybody" === e.id ? (o = !0) : "owner" === e.role ? (c = e.id) : (a = !0); + }), + r ? (n = "public") : o ? (n = "orgShared") : a && (n = "shared"), + "unshared" === n && t.invitations.length && (n = "shared"), + b(c), + v(function (t) { + return i(i({}, t), {}, s({}, e, n)); + }); + }) + .catch(function (t) { + console.warn("Error fetching /share. User is not owner or collaborator", t), + b(u), + v(function (t) { + return i(i({}, t), {}, s({}, e, p)); + }); + }); + } catch (t) { + console.warn("Error fetching share for: ".concat(e), t), + v(function (t) { + return i(i({}, t), {}, s({}, e, p)); + }); + } + }, + [t, n, e, l, f] + ), + D = (0, r.useCallback)( + function () { + e && t && n && f && (v(s({}, e, d)), E()); + }, + [t, n, E, e, f] + ); + return ( + (0, r.useEffect)( + function () { + e && + !h[e] && + t && + n && + f && + (v(function (t) { + return i(i({}, t), {}, s({}, e, d)); + }), + E()); + }, + [t, n, E, h, e, f] + ), + { shareStatuses: h, shareStatus: h[e] || d, reconfigureShareStatus: D, ownerId: g } + ); + }; + }, + 35234: (e, t, n) => { + "use strict"; + function r(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function o(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? r(Object(n), !0).forEach(function (t) { + a(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : r(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function a(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + function i(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + n.d(t, { Z: () => s }); + const s = new ((function () { + function e() { + return ( + (function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + })(this, e), + e.instance + ? e.instance + : ((this.shouldExpire = !0), + (this.expirationDuration = 2592e6), + (this.data = o({ keys: [], items: {}, createdTimeStamps: [] }, this.shouldExpire && { expiringTimeStamps: [] })), + (this.LS = localStorage), + (this.namespace = "ccx-comments"), + (e.instance = this), + this) + ); + } + var t, n; + return ( + (t = e), + (n = [ + { + key: "configure", + value: function () { + var e, + t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}; + if (((this.shouldExpire = void 0 === t.shouldExpire || t.shouldExpire), (this.expirationDuration = 1e3 * (t.expirationDuration ? t.expirationDuration : 2592e3)), t.namespace && t.namespace !== this.namespace)) { + this.namespace = t.namespace; + var n = this.LS.getItem(this.namespace); + try { + e = JSON.parse(n); + } catch (t) { + e = n; + } + } + e && + Object.prototype.hasOwnProperty.call(e, "keys") && + Object.prototype.hasOwnProperty.call(e, "items") && + ((this.shouldExpire && !e.expiringTimeStamps) || (!this.shouldExpire && e.expiringTimeStamps) ? this.empty() : (this.data = e)); + }, + }, + { + key: "trySave", + value: function () { + try { + return this.LS.setItem(this.namespace, JSON.stringify(this.data)), !0; + } catch (e) { + return 18 !== e.code && 21 !== e.code && 22 !== e.code && 1014 !== e.code && -2147024882 !== e.number && (console.error("Error with localStorage:".concat(e)), !0); + } + }, + }, + { + key: "removeFirstIn", + value: function () { + var e = this.data.keys.pop(), + t = o({ key: e, value: this.data.items[e], createdTimeStamps: this.data.createdTimeStamps.pop() }, this.shouldExpire && { expiringTimeStamps: this.data.expiringTimeStamps.pop() }); + return delete this.data.items[e], t; + }, + }, + { + key: "save", + value: function () { + for (var e = []; !this.trySave(); ) this.data.keys.length ? e.push(this.removeFirstIn()) : console.error("All items removed from ".concat(this.namespace, ", still can't save.")); + return e; + }, + }, + { + key: "set", + value: function (e, t) { + this.data.items[e] = t; + var n = this.data.keys.indexOf(e); + return ( + n > -1 && (this.data.keys.splice(n, 1), this.shouldExpire && this.data.expiringTimeStamps.splice(n, 1), this.data.createdTimeStamps.splice(n, 1)), + this.data.keys.unshift(e), + this.shouldExpire && this.data.expiringTimeStamps.unshift(Date.now() + this.expirationDuration), + this.data.createdTimeStamps.unshift(Date.now()), + this.save(), + this + ); + }, + }, + { + key: "get", + value: function (e) { + if (!e) return { keys: this.data.keys, data: this.data.items, createdTimeStamp: this.data.createdTimeStamps }; + var t = this.data.keys.indexOf(e); + if (!this.shouldExpire) return { data: this.data.items[e], createdTimeStamp: this.data.createdTimeStamps[t] }; + if (this.data.expiringTimeStamps && t > -1) { + var n = this.data.expiringTimeStamps[t]; + return Date.now() < n ? { data: this.data.items[e], createdTimeStamp: this.data.createdTimeStamps[t] } : void this.remove(e); + } + }, + }, + { + key: "keys", + value: function () { + return this.data.keys || []; + }, + }, + { + key: "has", + value: function (e) { + return -1 !== this.data.keys.indexOf(e); + }, + }, + { + key: "remove", + value: function (e) { + var t = this; + return null !== e && this.data.keys + ? (this.data.keys.forEach(function (n, r) { + n === e && (t.data.keys.splice(r, 1), t.shouldExpire && t.data.expiringTimeStamps.splice(r, 1), t.data.createdTimeStamps.splice(r, 1), delete t.data.items[n]); + }, this), + this.save(), + this) + : this; + }, + }, + { + key: "empty", + value: function () { + return (this.data = o({ keys: [], items: {}, createdTimeStamps: [] }, this.shouldExpire && { expiringTimeStamps: [] })), this.save(), this; + }, + }, + ]), + n && i(t.prototype, n), + Object.defineProperty(t, "prototype", { writable: !1 }), + e + ); + })())(); + }, + 56841: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => i }); + var r = n(43235), + o = n.n(r), + a = { + commentsLoad: { event: { subcategory: "navigation", subtype: "comment-load" } }, + commentsRender: { event: { subcategory: "navigation", subtype: "comment" } }, + noComments: { event: { subcategory: "navigation", subtype: "no-comments" } }, + frameReview: { event: { subcategory: "navigation", subtype: "frame-review-link" } }, + noReviewAccess: { event: { subcategory: "navigation", subtype: "no-review-access" } }, + offline: { event: { subcategory: "navigation", subtype: "offline" } }, + }; + const i = { + annotationToggleHidden: { event: { subcategory: "filter", subtype: "annotation-toggle-hidden", type: "click" } }, + annotationToggleVisible: { event: { subcategory: "filter", subtype: "annotation-toggle-visible", type: "click" } }, + backToReadUnread: { event: { subcategory: "filter", subtype: "back-to-readUnread", type: "click" } }, + backToUnresolved: { event: { subcategory: "filter", subtype: "back-to-unresolved", type: "click" } }, + clearFilters: { event: { subcategory: "filter", subtype: "clear-filters", type: "click" } }, + closeComponent: { event: { subcategory: "navigation", subtype: "close-component", type: "click" } }, + closeItemByType: function (e) { + return { event: { subcategory: "navigation", subtype: "close-".concat(e), type: "click" } }; + }, + commentsFailedToLoad: function (e, t, n) { + return { event: { subcategory: "navigation", subtype: "error", type: n ? "background" : "render", error_code: e, error_type: t, error_desc: "comments-failed-to-load" } }; + }, + commentsFailedToPost: function (e, t) { + return { event: { subtype: "error", type: "render", error_code: e, error_type: t, error_desc: arguments.length > 2 && void 0 !== arguments[2] && arguments[2] ? "reply-failed-to-post" : "comment-failed-to-post" } }; + }, + commentsRenderEventHelper: function (e, t) { + var n = a[e]; + if (n) return o()({}, n, { event: { type: t ? "background" : "render" } }); + }, + emojiSelectFromInput: function (e) { + return { event: { subcategory: "navigation", subtype: "emoji-input", type: "type".concat(e.colons) } }; + }, + emojiSelectFromPicker: function (e) { + return { event: { subcategory: "navigation", subtype: "emoji-component", type: "click".concat(e.colons) } }; + }, + filterHide: { event: { subcategory: "filter", subtype: "filter-hide", type: "click" } }, + filterShow: { event: { subcategory: "filter", subtype: "filter-show", type: "click" } }, + filterTime: function (e) { + return { event: { subcategory: "filter", subtype: "filter-time", type: "click" }, custom: { collab: { filter_type: "time", subfilter_type: e.toString() } } }; + }, + filterUser: { event: { subcategory: "filter", subtype: "filter-user", type: "click" } }, + generalError: function (e, t) { + return { event: { subcategory: "general-error", subtype: "error", type: "render", error_type: t.message && t.message.replace(/\s/g, "-"), error_desc: "comments-js-error", build: e } }; + }, + maximizeComponent: { event: { subcategory: "navigation", subtype: "maximize-component", type: "click" } }, + multipleAssetsDropdownChange: { event: { subcategory: "navigation", subtype: "multiple-conversation", type: "click" } }, + multipleAssetsDropdownRender: { event: { subcategory: "navigation", subtype: "multiple-conversation", type: "render" } }, + clickAssetUrl: { event: { subcategory: "navigation", subtype: "open-url", type: "click" } }, + copyAssetUrl: { event: { subcategory: "navigation", subtype: "copy-url", type: "click" } }, + shareAssetUrl: function (e) { + return { event: { subcategory: "navigation", subtype: e, type: "click" } }; + }, + showGlobal: { event: { subcategory: "filter", subtype: "show-global", type: "click" } }, + showNonGlobal: { event: { subcategory: "filter", subtype: "show-non-global", type: "click" } }, + viewResolved: { event: { subcategory: "filter", subtype: "view-resolved", type: "click" } }, + viewUnread: { event: { subcategory: "filter", subtype: "view-unread", type: "click" } }, + }; + }, + 93056: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => u }); + var r = n(23469), + o = n.n(r), + a = n(47776), + i = n.n(a); + function s(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + n(23613); + var c = function (e) { + var t = e.size; + return o().createElement( + "svg", + { + viewBox: "-811 7301 18 18", + "aria-hidden": "true", + className: "spectrum-Icon", + focusable: "false", + role: "img", + fill: "currentColor", + style: + "S" === t + ? { + position: "absolute", + top: "var( --ccx-comments-custom-icon-position)", + left: "var( --ccx-comments-custom-icon-position)", + width: "var(--ccx-comments-annotation-toolbar-icon-size)", + height: "var(--ccx-comments-annotation-toolbar-icon-size)", + } + : { display: "flex", width: "var(--ccx-comments-annotation-marker-icon-size)", height: "var(--ccx-comments-annotation-marker-icon-size)" }, + }, + o().createElement("path", { + "data-name": "Path 483", + d: + "M-806.29 7310.66l3.5 3.177c-.106.117-.2.22-.273.294a1.224 1.224 0 0 1-.858.249h-.137a4.805 4.805 0 0 0-3.008 1.447l-.771-.639a5.877 5.877 0 0 0 1.054-3.321 1.474 1.474 0 0 1 .249-.937 3.574 3.574 0 0 1 .244-.27zm8.253-8.335l-7.986 6.522s-1.263 1.1-1.395 1.231a2.607 2.607 0 0 0-.586 1.886 5.045 5.045 0 0 1-.983 2.744l-1.614 1.9a.209.209 0 0 0 .115.376l2.782.765a.723.723 0 0 0 .638-.188l.29-.331a4.718 4.718 0 0 1 2.721-1.629h.137a2.39 2.39 0 0 0 1.732-.616c.114-.116.267-.285.427-.467.062-.024 7.086-9.02 7.086-9.02a1.05 1.05 0 0 0-.159-1.518l-1.68-1.609a1.049 1.049 0 0 0-1.525-.046zm-7.986 6.522z", + }) + ); + }, + l = function (e) { + var t, + n, + a, + i = e.size; + return ( + ((n = (0, r.useState)(!1)), + (a = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(n) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(n, a) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return s(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? s(e, t) : void 0; + } + })(n, a) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })())[1], + (0, r.useEffect)(function () {}, []), + null !== (t = window.customElements) && void 0 !== t && t.get("ccx-comments-icon-highlight") ? o().createElement("ccx-comments-icon-highlight", { size: i }) : o().createElement(c, { size: i }) + ); + }; + (l.propTypes = { size: i().string }), (c.propTypes = { size: i().string }); + const u = l; + }, + 77271: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => u }); + var r = n(23469), + o = n.n(r), + a = n(47776), + i = n.n(a); + function s(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + n(23613); + var c = function (e) { + var t = e.size; + return o().createElement( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + viewBox: "0 0 18 18", + "aria-hidden": "true", + className: "spectrum-Icon", + fill: "currentColor", + style: + "S" === t + ? { + position: "absolute", + top: "var( --ccx-comments-custom-icon-position)", + left: "var( --ccx-comments-custom-icon-position)", + width: "var(--ccx-comments-annotation-toolbar-icon-size)", + height: "var(--ccx-comments-annotation-toolbar-icon-size)", + } + : { display: "flex", width: "var(--ccx-comments-annotation-marker-icon-size)", height: "var(--ccx-comments-annotation-marker-icon-size)" }, + }, + o().createElement( + "g", + null, + o().createElement("path", { + d: + "M14.5 2C14.7761424 2 15 2.22385763 15 2.5L15 2.5 15 5.5C15 5.77614237 14.7761424 6 14.5 6L14.5 6 13.5 6C13.2238576 6 13 5.77614237 13 5.5L13 5.5 13 4 9 4 9 13 9.991 13 9.07376 13.8827459C9 13.9561859 9 14.0315459 9 14.1062659L9 15 5.5 15C5.25454011 15 5.05039163 14.8231248 5.00805567 14.5898756L5 14.5 5 13.5C5 13.2238576 5.22385763 13 5.5 13L5.5 13 7 13 7 4 3 4 3 5.5C3 5.77614237 2.77614237 6 2.5 6L2.5 6 1.5 6C1.22385763 6 1 5.77614237 1 5.5L1 5.5 1 2.5C1 2.22385763 1.22385763 2 1.5 2L1.5 2zM14.0032 10.6003459C13.91136 10.6003459 13.82 10.6374659 13.74688 10.7133059L10.07376 14.4456259C10 14.5190659 10 14.5944259 10 14.6691459L10 16.6272259C10 16.8510659 10.1472 17.0003459 10.36752 17.0003459L11.96752 17.0003459C12.1136 17.0003459 12.18704 17.0003459 12.26016 16.9257859L14.0152 15.1062659 15.7336 16.9257859C15.80672 17.0003459 15.95392 17.0003459 16.02688 17.0003459L17.65152 17.0003459C17.87184 17.0003459 17.97728 16.9269059 18 16.6272259L18 14.6691459C18 14.5952259 18 14.5203459 17.92656 14.4456259L14.26096 10.7133059C14.18752 10.6374659 14.09536 10.6003459 14.0032 10.6003459z", + }) + ) + ); + }, + l = function (e) { + var t, + n, + a, + i = e.size; + return ( + ((n = (0, r.useState)(!1)), + (a = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(n) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(n, a) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return s(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? s(e, t) : void 0; + } + })(n, a) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })())[1], + (0, r.useEffect)(function () {}, []), + null !== (t = window.customElements) && void 0 !== t && t.get("ccx-comments-icon-insert") ? o().createElement("ccx-comments-icon-insert", { size: i }) : o().createElement(c, { size: i }) + ); + }; + (l.propTypes = { size: i().string }), (c.propTypes = { size: i().string }); + const u = l; + }, + 10326: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => u }); + var r = n(23469), + o = n.n(r), + a = n(47776), + i = n.n(a); + function s(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + n(23613); + var c = function (e) { + var t = e.size; + return o().createElement( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: "S" === t ? 18 : 12, + height: "S" === t ? 18 : 12, + viewBox: "0 0 18 18", + "aria-hidden": "true", + className: "spectrum-Icon", + fill: "currentColor", + style: + "S" === t + ? { + position: "absolute", + top: "var( --ccx-comments-custom-icon-position)", + left: "var( --ccx-comments-custom-icon-position)", + width: "var(--ccx-comments-annotation-toolbar-icon-size)", + height: "var(--ccx-comments-annotation-toolbar-icon-size)", + } + : { display: "flex", width: "var(--ccx-comments-annotation-marker-icon-size)", height: "var(--ccx-comments-annotation-marker-icon-size)" }, + }, + o().createElement( + "g", + null, + o().createElement("path", { + d: + "M8.5 14L8 14 8 11 6 11 6 14 4.5 14C4.22385763 14 4 14.2238576 4 14.5L4 15.5C4 15.7761424 4.22385763 16 4.5 16L8.5 16C8.77614237 16 9 15.7761424 9 15.5L9 14.5C9 14.2238576 8.77614237 14 8.5 14zM13.5 2L.5 2C.223857625 2 0 2.22385763 0 2.5L0 5.5C0 5.77614237.223857625 6 .5 6L1.5 6C1.77614237 6 2 5.77614237 2 5.5L2 4 6 4 6 8 8 8 8 4 12 4 12 5.5C12 5.77614237 12.2238576 6 12.5 6L13.5 6C13.7761424 6 14 5.77614237 14 5.5L14 2.5C14 2.22385763 13.7761424 2 13.5 2zM.25 9L8.75 9C8.88807119 9 9 9.11192881 9 9.25L9 9.75C9 9.88807119 8.88807119 10 8.75 10L.25 10C.111928813 10 1.69088438e-17 9.88807119 0 9.75L0 9.25C-1.69088438e-17 9.11192881.111928813 9 .25 9z", + }), + o().createElement("path", { + d: + "M11.9825422,11.2222224 C11.9825422,11.0994668 12.0819201,11 12.2047647,11 L15.7934992,11 C15.9163438,11 16.0157216,11.0994668 16.0157216,11.2222224 L16.0157216,11.7873744 C16.0157216,11.9101301 15.9163438,12.0095968 15.7934992,12.0095968 L12.2047647,12.0095968 C12.0819201,12.0095968 11.9825422,11.9101301 11.9825422,11.7873744 L11.9825422,11.2222224 Z M11.9798416,13.2080442 C11.9798416,13.0852885 12.0792195,12.9858218 12.202064,12.9858218 L14.7880015,12.9858218 C14.9108461,12.9858218 15.010224,13.0852885 15.010224,13.2080442 L15.010224,13.7834682 C15.010224,13.9062238 14.9108461,14.0056906 14.7880015,14.0056906 L12.202064,14.0056906 C12.0792195,14.0056906 11.9798416,13.9062238 11.9798416,13.7834682 L11.9798416,13.2080442 Z M17.111147,9 L10.8889193,9 C10.40083,8.99573333 10.0065186,9.39644479 9.99995665,9.88888966 L9.99995665,14.9999784 C9.99718522,15.4924233 10.4017189,15.884068 10.8889193,15.888868 L12.0103767,15.888868 C12.0103767,15.888868 12.0268212,17.1360072 12.0281545,17.7845411 C12.0287767,18.0298746 12.1787324,18.0879191 12.3523326,17.9144078 C12.965222,17.3015184 14.4709353,15.888868 14.4709353,15.888868 L17.111147,15.888868 C17.6778141,15.888868 17.9982588,15.4881566 18.0000967,14.9999784 L18.0000967,9.88888966 C18.0026144,9.39777812 17.5979029,9.00293334 17.111147,9 Z", + }) + ) + ); + }, + l = function (e) { + var t, + n, + a, + i = e.size; + return ( + ((n = (0, r.useState)(!1)), + (a = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(n) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(n, a) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return s(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? s(e, t) : void 0; + } + })(n, a) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })())[1], + (0, r.useEffect)(function () {}, []), + null !== (t = window.customElements) && void 0 !== t && t.get("ccx-comments-icon-replace") ? o().createElement("ccx-comments-icon-replace", { size: i }) : o().createElement(c, { size: i }) + ); + }; + (l.propTypes = { size: i().string }), (c.propTypes = { size: i().string }); + const u = l; + }, + 90353: (e, t, n) => { + "use strict"; + n.d(t, { F_: () => m, Ho: () => h, Pt: () => l, RH: () => p, Rv: () => d, Rz: () => g, UW: () => s, WD: () => c, fe: () => f, gN: () => v, m8: () => u, nJ: () => a, t: () => b, uV: () => i, vV: () => y }); + var r = n(99894), + o = n(80963); + function a(e) { + return /\s/.test(e) || r.UU.indexOf(e) > -1; + } + function i(e, t) { + var n = e, + r = n.search(t), + o = r; + if (-1 === o) return -1; + for (; -1 !== o; ) r += (o = (n = n.slice(o + 1)).search(t)) + 1; + return r; + } + function s(e) { + var t, + n, + r, + o, + i = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : [], + s = 0, + c = e, + l = e.toLocaleLowerCase(); + return ( + i.forEach(function (e) { + if (e.id) { + var i = e.id.replace("urn:uuid:", ""); + for (n = "[@urn:userID:".concat(i, "]").toLocaleLowerCase(), r = "@".concat(e.name.replace(/ /g, "").toLocaleLowerCase()), t = l.indexOf(n), o = n, -1 === t && ((t = l.indexOf(r)), (o = r)); -1 !== t; ) + a(c.charAt(t - 1)) && + a(c.charAt(t + o.length)) && + (c = "" + .concat(c.slice(s, t), "@") + .concat(e.name) + .concat(c.slice(t + o.length))), + (s = 0), + (t = c.toLocaleLowerCase().indexOf(o, t + e.name.length)); + l = c.toLocaleLowerCase(); + } + }), + c + ); + } + function c(e) { + var t, + n, + r = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : [], + o = 0, + i = e, + s = e.toLocaleLowerCase(); + return ( + r.forEach(function (e) { + if (e.id) { + var r = e.id.replace("urn:uuid:", ""); + for (n = "@".concat(e.name).toLocaleLowerCase(), t = s.indexOf(n); -1 !== t; ) + a(i.charAt(t - 1)) && + a(i.charAt(t + n.length)) && + (i = "" + .concat(i.slice(o, t), "[@urn:userID:") + .concat(r, "]") + .concat(i.slice(t + n.length))), + (o = 0), + (t = i.toLocaleLowerCase().indexOf(n, t + r.length)); + s = i.toLocaleLowerCase(); + } + }), + i + ); + } + function l(e) { + try { + var t = localStorage.getItem(e); + if (null === t) return; + return JSON.parse(t); + } catch (e) { + return; + } + } + function u(e, t) { + try { + var n = JSON.stringify(t); + localStorage.setItem(e, n); + } catch (e) {} + } + function d(e) { + e && localStorage.removeItem(e); + } + function p(e) { + try { + var t = sessionStorage.getItem(e); + if (null === t) return; + return JSON.parse(t); + } catch (e) { + return; + } + } + function f(e, t) { + try { + var n = JSON.stringify(t); + sessionStorage.setItem(e, n); + } catch (e) {} + } + function m(e) { + e && sessionStorage.removeItem(e); + } + function h() { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}; + return "keyup" !== e.type || e.keyCode === r.nx.ENTER || e.keyCode === r.nx.SPACE; + } + function v(e, t) { + var n = e % t; + return n < 0 && (n += t), n; + } + function y() { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : ""; + return new RegExp( + /(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])/ + ).test(e.toLowerCase()); + } + var g = function (e) { + var t = /Mac/i.test(navigator.platform) ? "metaKey" : "ctrlKey"; + return e.keyCode === r.nx.ENTER && e[t]; + }, + b = function () { + var e, t; + return !!((null !== (e = window.customElements) && void 0 !== e && e.get((0, o.Co)("sp-theme"))) || (null !== (t = window.customElements) && void 0 !== t && t.get("sp-theme"))); + }; + }, + 89035: (e, t, n) => { + "use strict"; + n.d(t, { Jl: () => g, ZP: () => k }); + var r, + o = n(98634), + a = n(57305), + i = n.n(a), + s = n(8458), + c = n.n(s), + l = n(35234), + u = n(99894); + function d(e) { + return ( + (function (e) { + if (Array.isArray(e)) return f(e); + })(e) || + (function (e) { + if (("undefined" != typeof Symbol && null != e[Symbol.iterator]) || null != e["@@iterator"]) return Array.from(e); + })(e) || + p(e) || + (function () { + throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function p(e, t) { + if (e) { + if ("string" == typeof e) return f(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? f(e, t) : void 0; + } + } + function f(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + function m(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function h(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? m(Object(n), !0).forEach(function (t) { + v(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : m(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function v(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var y = { entities: { assets: { byId: {}, allIds: [] }, comments: { byId: {}, allIds: [] }, metadata: { byId: {}, allIds: [], updating: !1 } } }, + g = { + autoScroll: !1, + commentPosting: !1, + commentProposedForDelete: void 0, + comments: [], + dirtyComments: {}, + errors: {}, + fetching: !1, + fetchingMetadata: !1, + lastResolvedCommentData: void 0, + metadata: void 0, + mobileEditingCommentId: "", + mobileEditingDraft: void 0, + parentCommentId: "", + postingReplyParentCommentId: "", + remappedMap: {}, + }, + b = function (e, t) { + var n = c().get(e, "entities.assets.byId.".concat(t, ".comments"), []), + r = c().get(e, "entities.comments.byId"); + return n.map(function (e) { + return r[e]; + }); + }, + E = function (e, t) { + var n = c().get(e, "entities.assets.byId.".concat(t, ".metadata"), []), + r = c().get(e, "entities.metadata.byId"); + return n.reduce(function (e, t) { + return (e[t] = r[t]), e; + }, {}); + }, + D = function (e, t) { + return e.find(function (e) { + return e.id === t; + }); + }, + C = function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = arguments.length > 1 ? arguments[1] : void 0; + return e[t.id] && void 0 !== i()(t, "target.selector.node.id") ? c().set(t, "target.selector.node.id", e[t.id].current) : t; + }, + w = function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = arguments.length > 1 ? arguments[1] : void 0; + if (!Object.keys(e).length) return t; + var n = {}; + return ( + Object.keys(e).forEach(function (r) { + var o = t[r]; + o && (n[o.id] = C(e, o)); + }), + h(h({}, t), n) + ); + }, + S = function (e, t) { + return ( + null != e && + e.replies && + e.replies.forEach(function (e) { + if (e.dirtyEdit) { + var n = D(t.replies, e.id); + n && (n.dirtyEdit = e.dirtyEdit); + } + }), + e ? h(h({}, e), t) : t + ); + }, + A = function (e, t) { + var n = t.assetId, + r = t.cacheMetadata, + o = t.metadata; + if (!e.entities.assets.byId[n]) return e; + var a = h({}, e.entities.metadata.byId); + Object.keys(o).forEach(function (e) { + return (a[e] = h(h({}, a[e]), o[e])); + }); + var i = void 0 !== c().get(e, "entities.assets.byId.".concat(n, ".metadata")), + s = c().set( + e, + "entities.assets.byId.".concat(n, ".metadata"), + i + ? function (e) { + return d(new Set(e.concat(Object.keys(o)))); + } + : Object.keys(o) + ), + u = c().set(s, "entities.metadata.byId", a), + p = c().set(u, "entities.metadata.allIds", function (e) { + return d(new Set(e.concat(Object.keys(o)))); + }); + if (r) { + var f = (l.Z.get(n) || {}).data; + l.Z.set(n, h(h({}, f), {}, { metadata: E(p, n) })); + } + return p; + }; + const k = (0, o.Z)( + (v((r = {}), u.Ar.SUCCESS, function (e, t) { + var n = t.assetId, + r = t.cacheComments, + o = t.commentsToUpdate, + a = e.entities.comments.byId, + i = {}; + o.forEach(function (e) { + var t = a[e.id]; + i[e.id] = S(t, e); + }); + var s = c().merge(e, "entities.comments.byId", i); + if (r) { + var u = l.Z.get(n).data, + d = b(s, n); + u && l.Z.set(n, h(h({}, u), {}, { comments: d })); + } + return c().set(s, "entities.assets.byId.".concat(n, ".remappedMap"), g.remappedMap); + }), + v(r, u.Oz.START, function (e, t) { + var n = c().set(e, "entities.metadata.updating", !0); + return A(n, t); + }), + v(r, u.Oz.SUCCESS, function (e, t) { + var n = c().set(e, "entities.metadata.updating", !1); + return A(n, t); + }), + v(r, u.Oz.ERROR, function (e, t) { + var n = c().set(e, "entities.metadata.updating", !1); + return A(n, t); + }), + v(r, u.ii, function (e, t) { + var n = t.assetId; + return c().set(e, "entities.assets.byId.".concat(n, ".commentProposedForDelete"), g.commentProposedForDelete); + }), + v(r, u.vl, function (e, t) { + var n = t.assetId, + r = e.entities.assets.byId[n]; + if (!r) return e; + var o = new Set(r.comments), + a = e.entities.comments.allIds.filter(function (e) { + return !o.has(e); + }), + i = h({}, e.entities.comments.byId); + o.forEach(function (e) { + return delete i[e]; + }); + var s = c().merge(e, "entities.assets.byId.".concat(n), { comments: g.comments, errors: g.errors }), + l = c().set(s, "entities.comments.allIds", a); + return c().set(l, "entities.comments.byId", i); + }), + v(r, u.Z5, function (e, t) { + var n = t.assetId, + r = t.errorId; + return c().delete(e, "entities.assets.byId.".concat(n, ".errors.").concat(r)); + }), + v(r, u.dh, function (e, t) { + var n = t.assetId; + return c().set(e, "entities.assets.byId.".concat(n, ".lastResolvedCommentData"), g.lastResolvedCommentData); + }), + v(r, u.b$.START, function (e, t) { + var n = t.assetId, + r = t.commentId, + o = t.parentCommentId, + a = e; + if (o) + a = c().set(e, "entities.comments.byId.".concat(o, ".replies"), function (e) { + return e.filter(function (e) { + return e.id !== r; + }); + }); + else { + var i = c().delete(e, "entities.comments.byId.".concat(r)), + s = e.entities.comments.allIds.findIndex(function (e) { + return e === r; + }), + l = c().delete(i, "entities.comments.allIds.".concat(s)), + u = e.entities.assets.byId[n].comments.findIndex(function (e) { + return e === r; + }); + a = c().delete(l, "entities.assets.byId.".concat(n, ".comments.").concat(u)); + } + return c().set(a, "entities.assets.byId.".concat(n, ".commentProposedForDelete"), g.commentProposedForDelete); + }), + v(r, u.b$.ERROR, function (e, t) { + var n = t.assetId, + r = t.error, + o = t.comment, + a = t.commentIndex, + i = t.commentIndexInCommentsAllIds, + s = t.parentCommentId, + l = e; + if (s) { + var p = d(e.entities.comments.byId[s].replies); + p.splice(a, 0, o), (l = c().set(l, "entities.comments.byId.".concat(s, ".replies"), p)); + } else { + var f = c().set(l, "entities.comments.byId.".concat(o.id), o), + m = d(l.entities.comments.allIds); + m.splice(i, 0, o.id); + var y = c().set(f, "entities.comments.allIds", m), + b = d(l.entities.assets.byId[n].comments); + b.splice(a, 0, o.id), (l = c().set(y, "entities.assets.byId.".concat(n, ".comments"), b)); + } + return c().set(l, "entities.assets.byId.".concat(n), function (e) { + return h(h({}, e), {}, { commentProposedForDelete: g.commentProposedForDelete, errors: h(h({}, e.errors), {}, v({}, r, u.b$.ERROR)) }); + }); + }), + v(r, u.b$.SUCCESS, function (e, t) { + var n = t.assetId; + if (t.cacheComments) { + var r = l.Z.get(n).data, + o = b(e, n); + r && l.Z.set(n, h(h({}, r), {}, { comments: o })); + } + return e; + }), + v(r, u.Al.START, function (e, t) { + var n = t.assetId, + r = t.comment, + o = t.parentCommentId, + a = c().merge(e, "entities.assets.byId.".concat(n), { errors: g.errors }); + if (o) { + var i = e.entities.comments.byId[o].replies.map(function (e) { + return e.id === r.id ? r : e; + }); + return c().set(a, "entities.comments.byId.".concat(o, ".replies"), i); + } + return c().set(a, "entities.comments.byId.".concat(r.id), r); + }), + v(r, u.Al.ERROR, function (e, t) { + var n = t.assetId, + r = t.comment, + o = t.error, + a = t.parentCommentId, + i = e; + if (a) { + var s = e.entities.comments.byId[a].replies.map(function (e) { + return e.id === r.id ? r : e; + }); + i = c().set(e, "entities.comments.byId.".concat(a, ".replies"), s); + } else i = c().set(e, "entities.comments.byId.".concat(r.id), r); + return c().merge(i, "entities.assets.byId.".concat(n, ".errors"), v({}, o, u.Al.ERROR)); + }), + v(r, u.Al.SUCCESS, function (e, t) { + var n = t.assetId, + r = t.cacheComments, + o = t.parentCommentId, + a = t.updatedCommentData, + i = e.entities.comments.byId, + s = e.entities.assets.byId[n].remappedMap, + d = h(h({}, C(s, a)), {}, { recentActivity: u.E3 }), + p = e; + if (o) { + var f = i[o].replies.map(function (e) { + return e.id === d.id ? d : e; + }); + p = c().set(e, "entities.comments.byId.".concat(o, ".replies"), f); + } else p = c().set(e, "entities.comments.byId.".concat(d.id), d); + if (r) { + var m = l.Z.get(n).data, + v = b(p, n); + m && l.Z.set(n, h(h({}, m), {}, { comments: v })); + } + return c().merge(p, "entities.assets.byId.".concat(n), { errors: g.errors }); + }), + v(r, u.Ov.ERROR, function (e, t) { + var n = t.assetId, + r = t.cacheComments, + o = t.error; + return ( + r && l.Z.remove(n), + c().set(e, "entities.assets.byId.".concat(n), function (e) { + return h(h({}, e), {}, { errors: h(h({}, e.errors), {}, v({}, o, "".concat(u.Ov.ERROR, "_").concat(o.toUpperCase()))), fetching: g.fetching }); + }) + ); + }), + v(r, u.Ov.START, function (e, t) { + var n = t.assetId, + r = !c().get(e, "entities.assets.allIds", []).includes(n); + return c().merge(e, "entities.assets.byId.".concat(n), r ? h(h({}, g), {}, { fetching: !0 }) : { fetching: !0 }); + }), + v(r, u.Ov.SUCCESS, function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, + n = e.entities, + r = t.assetId, + o = t.cacheComments, + a = t.data, + i = void 0 === a ? [] : a; + if (!e.entities.assets.byId[r]) return e; + var s = c().get(n, "assets.byId.".concat(r, ".remappedMap"), g.remappedMap), + u = i.map(function (e) { + return e.id; + }), + f = { id: r, fetching: !1, remappedMap: s }; + u.length && (f.comments = u); + var m = c().merge(e, "entities.assets.byId.".concat(r), f), + v = c().set(m, "entities.assets.allIds", function (e) { + return e.includes(r) ? e : e.concat(r); + }), + y = {}; + if (i.length) { + var E = i.reduce(function (e, t) { + return (e[t.id] = t), e; + }, {}), + D = n.comments.byId; + y = w( + s, + (function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, + n = {}; + return ( + Object.entries(t).forEach(function (t) { + var r, + o, + a = + ((o = 2), + (function (e) { + if (Array.isArray(e)) return e; + })((r = t)) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(r, o) || + p(r, o) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + i = a[0], + s = a[1], + c = e[i]; + n[i] = S(c, s); + }), + n + ); + })(D, E) + ); + } else { + var C = c().get(n, "assets.byId.".concat(r, ".comments"), []); + C.forEach(function (e) { + v = c().delete(v, "entities.comments.byId.".concat(e)); + }), + (v = c().set(v, "entities.comments.allIds", function (e) { + return e.filter(function (e) { + return !C.includes(e); + }); + })), + (v = c().set(v, "entities.assets.byId.".concat(r, ".comments"), g.comments)); + var A = c().get(n, "assets.byId.".concat(r, ".metadata"), []); + A.forEach(function (e) { + v = c().delete(v, "entities.metadata.byId.".concat(e)); + }), + (v = c().set(v, "entities.metadata.allIds", function (e) { + return e.filter(function (e) { + return !A.includes(e); + }); + })), + (v = c().set(v, "entities.assets.byId.".concat(r, ".metadata"), g.metadata)); + } + var k = n.assets.allIds.filter(function (e) { + return e !== r; + }), + _ = {}; + k.forEach(function (e) { + c() + .get(n, "assets.byId.".concat(e, ".comments"), []) + .forEach(function (e) { + return (_[e] = n.comments.byId[e]); + }); + }); + var T = c().set(v, "entities.comments.byId", h(h({}, _), y)), + I = c().set(T, "entities.comments.allIds", [].concat(d(Object.keys(_)), d(u))); + if (o) { + var O = (l.Z.get(r) || {}).data; + l.Z.set(r, h(h({}, O), {}, { comments: b(I, r) })); + } + return c().delete(I, "entities.assets.byId.".concat(r, ".errors.list")), I; + }), + v(r, u.k9.START, function (e, t) { + var n = t.assetId; + return c().set(e, "entities.assets.byId.".concat(n, ".fetchingMetadata"), !0); + }), + v(r, u.k9.SUCCESS, function (e, t) { + var n = t.assetId, + r = t.cacheMetadata, + o = t.metadata, + a = void 0 === o ? {} : o; + if (!e.entities.assets.byId[n] || e.entities.metadata.updating) return e; + if (r) { + var i = (l.Z.get(n) || {}).data; + l.Z.set(n, h(h({}, i), {}, { metadata: a })); + } + var s = c().merge(e, "entities.assets.byId.".concat(n), { metadata: Object.keys(a), fetchingMetadata: !1 }), + u = c().merge(s, "entities.metadata.byId", a); + return c().set(u, "entities.metadata.allIds", function (e) { + return d(new Set(e.concat(Object.keys(a)))); + }); + }), + v(r, u.k9.ERROR, function (e, t) { + var n = t.assetId, + r = t.cacheMetadata; + if (!e.entities.assets.byId[n] || e.entities.metadata.updating) return e; + if (r) { + var o = (l.Z.get(n) || {}).data; + l.Z.set(n, h(h({}, o), {}, { metadata: {} })); + } + return c().set(e, "entities.assets.byId.".concat(n, ".fetchingMetadata"), !1); + }), + v(r, u.xH.ERROR, function (e, t) { + var n = t.assetId, + r = t.commentId, + o = t.error, + a = c().set(e, "entities.comments.byId.".concat(r, ".status"), "resolved"); + return c().merge(a, "entities.assets.byId.".concat(n, ".errors"), v({}, o, u.xH.ERROR)); + }), + v(r, u.xH.START, function (e, t) { + var n = t.commentId; + return c().set(e, "entities.comments.byId.".concat(n, ".status"), "open"); + }), + v(r, u.xH.SUCCESS, function (e, t) { + var n = t.allowUndo, + r = t.assetId, + o = t.cacheComments, + a = t.comment, + i = a.id, + s = e.entities.assets.byId[r].remappedMap, + u = c().merge(e, "entities.comments.byId.".concat(i), C(s, a)); + if (o) { + var d = l.Z.get(r).data, + p = b(u, r); + d && l.Z.set(r, h(h({}, d), {}, { comments: p })); + } + return c().set(u, "entities.assets.byId.".concat(r, ".lastResolvedCommentData"), n ? { assetId: r, commentId: i, newStatus: "open" } : g.lastResolvedCommentData); + }), + v(r, u.eE.ERROR, function (e, t) { + var n = t.assetId, + r = t.error, + o = t.errorObj, + a = e.entities.assets.byId[n].comments.length, + i = "".concat(u.eE.ERROR, "_").concat(r.toUpperCase()); + return ( + 400 === (null == o ? void 0 : o.status) && a >= u.bG && (i = "".concat(u.eE.ERROR, "_MAX_COMMENTS")), + c().set(e, "entities.assets.byId.".concat(n), function (e) { + return h(h({}, e), {}, { commentPosting: g.commentPosting, errors: h(h({}, e.errors), {}, v({}, r, i)) }); + }) + ); + }), + v(r, u.eE.START, function (e, t) { + var n = t.assetId; + return c().set(e, "entities.assets.byId.".concat(n, ".commentPosting"), !0); + }), + v(r, u.eE.SUCCESS, function (e, t) { + var n = t.assetId, + r = t.cacheComments, + o = t.comment, + a = e.entities.assets.byId[n], + s = i()(o, "target.selector.node.id"), + p = void 0 === s ? a.dirtyComments : h(h({}, a.dirtyComments), {}, v({}, s, null)), + f = h(h({}, o), {}, { recentActivity: u.Uj, replies: o.replies || [] }), + m = c().set(e, "entities.comments.byId.".concat(o.id), f), + y = c().set(m, "entities.comments.allIds", function (e) { + return d(new Set(e.concat(o.id))); + }), + E = c().set(y, "entities.assets.byId.".concat(n), function (e) { + return h(h({}, e), {}, { comments: d(new Set(e.comments.concat(o.id))), commentPosting: g.commentPosting, dirtyComments: p, errors: g.errors }); + }); + if (r) { + var D = (l.Z.get(n) || {}).data, + C = [].concat(d(b(e, n)), [f]); + D && l.Z.set(n, h(h({}, D), {}, { comments: C })); + } + return E; + }), + v(r, u.lP, function (e, t) { + var n, + r = t.assetId, + o = t.id, + a = t.parentCommentId, + i = e.entities.comments.byId; + if (a) { + var s = i[a]; + (n = D(s.replies, o)).parentCommentId = a; + } else n = i[o]; + return c().set(e, "entities.assets.byId.".concat(r, ".commentProposedForDelete"), n); + }), + v(r, u.sf, function (e, t) { + var n = t.assetId, + r = t.mappingData, + o = (e.entities.assets.byId[n] || {}).remappedMap, + a = void 0 === o ? {} : o, + i = e.entities.comments.byId, + s = {}; + Object.keys(r).forEach(function (e) { + var t = r[e]; + if (e && void 0 !== t) + if (a[e]) s[e] = h(h({}, a[e]), {}, { current: t }); + else { + var n = i[e]; + n && (s[e] = { original: n.target.selector.node.id, current: t }); + } + }); + var l = c().merge(e, "entities.comments.byId", w(s, i)); + return c().merge(l, "entities.assets.byId.".concat(n, ".remappedMap"), s); + }), + v(r, u.Tf.ERROR, function (e, t) { + var n = t.assetId, + r = t.commentId, + o = t.error, + a = c().set(e, "entities.comments.byId.".concat(r, ".status"), "open"); + return c().merge(a, "entities.assets.byId.".concat(n, ".errors"), v({}, o, u.Tf.ERROR)); + }), + v(r, u.Tf.START, function (e, t) { + var n = t.commentId; + return c().set(e, "entities.comments.byId.".concat(n, ".status"), "resolved"); + }), + v(r, u.Tf.SUCCESS, function (e, t) { + var n = t.allowUndo, + r = t.assetId, + o = t.cacheComments, + a = t.comment, + i = a.id, + s = e.entities.assets.byId[r].remappedMap, + u = c().merge(e, "entities.comments.byId.".concat(i), C(s, a)); + if (o) { + var d = l.Z.get(r).data, + p = b(u, r); + d && l.Z.set(r, h(h({}, d), {}, { comments: p })); + } + return c().set(u, "entities.assets.byId.".concat(r, ".lastResolvedCommentData"), n ? { assetId: r, commentId: i, newStatus: "resolved" } : g.lastResolvedCommentData); + }), + v(r, u.W$, function (e, t) { + var n = t.assetId, + r = t.artboardID, + o = t.comment, + a = void 0 === o ? "" : o, + i = t.location, + s = t.annotationType; + return c().merge(e, "entities.assets.byId.".concat(n, ".dirtyComments"), v({}, r, { bodyValue: a, location: i, annotationType: s })); + }), + v(r, u.fk, function (e, t) { + var n = t.id, + r = t.draftReplyText; + return e.entities.comments.byId[n] ? c().set(e, "entities.comments.byId.".concat(n, ".draftReplyText"), r) : e; + }), + v(r, u.hY, function (e, t) { + var n = t.parentId, + r = t.replyId, + o = t.recentActivity; + if (r) { + var a = c() + .get(e, "entities.comments.byId.".concat(n, ".replies"), []) + .map(function (e) { + return e.id === r ? h(h({}, e), {}, { recentActivity: o }) : e; + }); + return c().set(e, "entities.comments.byId.".concat(n, ".replies"), a); + } + return c().set(e, "entities.comments.byId.".concat(n, ".recentActivity"), o); + }), + v(r, u.GB, function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, + n = t.id, + r = t.draftReplyText, + o = c().get(e, "entities.comments.byId.".concat(n)); + return o ? c().set(e, "entities.comments.byId.".concat(n, ".repliesOpen"), !!r || !o.repliesOpen) : e; + }), + v(r, u.k8, function () { + return y; + }), + v(r, u.LG, function (e, t) { + var n = t.assetId, + r = c().get(e, "entities.assets.byId.".concat(n, ".comments"), []), + o = e.entities.comments.byId, + a = r.find(function (e) { + var t, + n, + r, + a, + i = o[e]; + return ( + (null == i || null === (t = i.target) || void 0 === t || null === (n = t.selector) || void 0 === n ? void 0 : n.subtype) && + "node" !== (null == i || null === (r = i.target) || void 0 === r || null === (a = r.selector) || void 0 === a ? void 0 : a.subtype) + ); + }); + return a ? c().merge(e, "entities.comments.byId", h({}, o[a])) : e; + }), + v(r, u.fj.ERROR, function (e, t) { + var n = t.assetId, + r = t.error, + o = t.errorObj, + a = c().get(e, "entities.assets.byId.".concat(n, ".comments").length), + i = "".concat(u.fj.ERROR, "_").concat(r.toUpperCase()); + return ( + 400 === (null == o ? void 0 : o.status) && a >= u.bG && (i = "".concat(u.eE.ERROR, "_MAX_COMMENTS")), + c().set(e, "entities.assets.byId.".concat(n), function (e) { + return h(h({}, e), {}, { errors: h(h({}, e.errors), {}, v({}, r, i)), postingReplyParentCommentId: g.postingReplyParentCommentId }); + }) + ); + }), + v(r, u.fj.START, function (e, t) { + var n = t.assetId, + r = t.parentCommentId; + return c().set(e, "entities.assets.byId.".concat(n, ".postingReplyParentCommentId"), r); + }), + v(r, u.fj.SUCCESS, function (e, t) { + var n = t.assetId, + r = t.cacheComments, + o = t.nodeId, + a = t.parentCommentId, + i = t.reply, + s = c().get(e, "entities.assets.byId.".concat(n, ".dirtyComments"), {}); + if ((o && (s[o] = null), r)) { + var d = (l.Z.get(n) || {}).data, + p = b(e, n); + d && l.Z.set(n, h(h({}, d), {}, { comments: p })); + } + var f = c().merge(e, "entities.assets.byId.".concat(n), { dirtyComments: s, errors: g.errors, postingReplyParentCommentId: g.postingReplyParentCommentId }); + return f.entities.comments.byId[a] ? c().merge(f, "entities.comments.byId.".concat(a, ".replies"), [h(h({}, i), {}, { recentActivity: u.Uj })]) : f; + }), + v(r, u.dS, function (e, t) { + var n = t.assetId, + r = t.autoScroll; + return c().set(e, "entities.assets.byId.".concat(n, ".autoScroll"), r); + }), + v(r, u.YE, function (e, t) { + var n = t.assetId, + r = t.mobileEditingCommentId, + o = t.mobileEditingDraft; + return c().merge(e, "entities.assets.byId.".concat(n), { mobileEditingCommentId: r, mobileEditingDraft: o }); + }), + v(r, u.Wm, function (e, t) { + var n = t.assetId, + r = t.parentCommentId; + return c().set(e, "entities.assets.byId.".concat(n, ".parentCommentId"), r); + }), + v(r, u.T3.ERROR, function (e, t) { + var n = t.assetId, + r = t.error; + return c().set(e, "entities.assets.byId.".concat(n), function (e) { + return h(h({}, e), {}, { errors: h(h({}, e.errors), {}, v({}, r, u.T3.ERROR)) }); + }); + }), + v(r, u.T3.SUCCESS, function (e, t) { + var n = t.assetId, + r = t.updatedComment, + o = e.entities.assets.byId[n].remappedMap, + a = c().set(e, "entities.comments.byId.".concat(r.id), h(h({}, C(o, r)), {}, { recentActivity: u.E3 })); + return c().set(a, "entities.assets.byId.".concat(n, ".errors"), g.errors); + }), + r), + y + ); + }, + 69088: (e, t, n) => { + "use strict"; + n.d(t, { m$: () => ue, ZP: () => de, no: () => oe, I0: () => se, v9: () => ce, oR: () => ie }); + var r = n(23469), + o = n.n(r), + a = n(9076); + function i(e) { + return function (t) { + var n = t.dispatch, + r = t.getState; + return function (t) { + return function (o) { + return "function" == typeof o ? o(n, r, e) : t(o); + }; + }; + }; + } + var s = i(); + s.withExtraArgument = i; + const c = s; + var l = n(2442), + u = n(89035), + d = n(98634), + p = n(99894), + f = n(48468); + function m(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function h(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? m(Object(n), !0).forEach(function (t) { + v(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : m(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function v(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var y = [p.FT, p.ML, p.LW, p.jc], + g = (0, f.xr)(); + function b(e, t) { + var n = new Set( + e.map(function (e) { + return e.id; + }) + ); + return t.filter(function (e) { + var t = e.id; + return !n.has(t); + }); + } + const E = (0, d.Z)( + v({}, p.rA, function (e, t) { + return h(h({}, e), {}, { reason: t.reason, data: t.data }); + }), + { reason: void 0, data: {} } + ); + var D, + C = n(90353); + function w(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + function S(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function A(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? S(Object(n), !0).forEach(function (t) { + k(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : S(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function k(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var _ = A( + { + annotationColor: p.uu[4].hex, + annotationLocation: void 0, + creativeOnboarding: null, + commentsListMinimized: !1, + guestUserLoginToastInfo: null, + isPlacingAnnotation: !1, + isLoginVisible: !1, + locale: "en-US", + annotatingItmId: void 0, + registeredSectionIds: [], + showAnnotationMask: !1, + emojiPickerInfo: void 0, + guestSessionState: void 0, + guestSessionRestoreCount: p.JO, + stakeholderOnboarding: null, + }, + (0, C.Pt)("".concat(p.Bq, ":context")) + ), + T = "".concat(p.Bq, "-annotation-color-preferences"), + I = function (e, t) { + return A(A({}, e), {}, { annotationLocation: t.location }); + }, + O = function (e) { + return A(A({}, e), {}, { annotationLocation: void 0, isPlacingAnnotation: !1, annotatingItmId: void 0, newAnnotationType: void 0 }); + }, + F = function (e) { + return A(A({}, e), {}, { imsData: {}, guestSessionState: void 0, guestSessionRestoreCount: p.JO }); + }; + const x = (0, d.Z)( + (k((D = {}), p.k8, function () { + return _; + }), + k(D, p.kt, function (e, t) { + var n = A(A({}, e), {}, { annotationColor: t.color }); + n.annotationLocation && (n.annotationLocation.coordinates.strokeColor = n.annotationColor); + var r = (0, C.Pt)(T) || {}; + return (r[e.newAnnotationType] = t.color), (0, C.m8)(T, r), n; + }), + k(D, p.Ys, I), + k(D, p.QR, function (e, t) { + return A(A({}, e), {}, { mediaData: t.mediaData }); + }), + k(D, p.GY, function (e, t) { + return A(A({}, e), {}, { imageCoordinatesInfo: t.imageCoordinatesInfo }); + }), + k(D, p.lD.SUCCESS, function (e, t) { + return A(A({}, e), {}, { imsData: t.data, guestSessionState: "valid", guestSessionRestoreCount: e.guestSessionRestoreCount - 1 }); + }), + k(D, p.lD.ERROR, F), + k(D, p.LG, function (e, t) { + var n, + r = e.registeredSectionIds; + if (t.isAdd) r.includes(t.sectionId) || r.push(t.sectionId); + else { + var o = r.indexOf(t.sectionId); + if (-1 === o) return e; + r.splice(o, 1); + } + return A( + A({}, e), + {}, + { + registeredSectionIds: + ((n = r), + (function (e) { + if (Array.isArray(e)) return w(e); + })(n) || + (function (e) { + if (("undefined" != typeof Symbol && null != e[Symbol.iterator]) || null != e["@@iterator"]) return Array.from(e); + })(n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return w(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? w(e, t) : void 0; + } + })(n) || + (function () { + throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + } + ); + }), + k(D, p.x7, function (e, t) { + var n, + r = A( + A({}, e), + {}, + { + annotatingItmId: t.itmId || (e.annotationLocation ? e.annotatingItmId : void 0), + isPlacingAnnotation: Boolean(t.isPlacingAnnotation), + newAnnotationType: t.newAnnotationType || e.newAnnotationType, + showAnnotationMask: Boolean(t.showAnnotationMask), + } + ); + return (n = ((0, C.Pt)(T) || {})[t.newAnnotationType]) || (n = p.uu[4].hex), t.isPlacingAnnotation && !e.annotationLocation && (r.annotationColor = n), r; + }), + k(D, p.Gp, function (e, t) { + return A(A({}, e), {}, { showCommentId: t.cmtId }); + }), + k(D, p.eE.SUCCESS, O), + k(D, p.T3.SUCCESS, O), + k(D, p.T3.ERROR, O), + k(D, p.jc, I), + k(D, p.Xb, function (e, t) { + return A(A({}, e), {}, { guestUserLoginToastInfo: t.data }); + }), + k(D, p.yU, function (e, t) { + return A(A({}, e), {}, { focusedInputInfo: t.focusedInputInfo }); + }), + k(D, p.pO, function (e, t) { + return A(A({}, e), {}, { commentsListMinimized: t.commentsListMinimized }); + }), + k(D, p.$o, function (e, t) { + return A(A({}, e), {}, { isLoginVisible: t.isLoginVisible }); + }), + k(D, p.AC, function (e, t) { + return A(A({}, e), {}, { annotatingItmId: t.id }); + }), + k(D, p.WD, function (e, t) { + var n = t.sessionState, + r = A(A({}, e), {}, { guestSessionState: n }); + return "expired" === n && (r.guestSessionRestoreCount = p.JO), r; + }), + k(D, p.oA, F), + k(D, p.Tf.START, O), + k(D, p.FN, function (e, t) { + return A(A({}, e), {}, { emojiPickerInfo: t.emojiPickerInfo }); + }), + k(D, p.jL, function (e, t) { + return A(A({}, e), {}, { stakeholderOnboarding: t.onboardingState }); + }), + k(D, p.Ze, function (e, t) { + return A(A({}, e), {}, { creativeOnboarding: t.onboardingState }); + }), + D), + _ + ); + var N; + function R(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function L(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? R(Object(n), !0).forEach(function (t) { + M(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : R(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function M(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var P = (0, C.Pt)("showAnnotations"), + j = { hoveredAnnotation: null, touchPressed: !1, showAnnotations: void 0 === P || P }; + const B = (0, d.Z)( + (M((N = {}), p.Md, function (e, t) { + return L(L({}, e), {}, { drawingNode: t.drawingNode }); + }), + M(N, p.KT, function (e, t) { + return L(L({}, e), {}, { hoveredAnnotation: t.annotationId }); + }), + M(N, p.Pj, function (e, t) { + return L(L({}, e), {}, { selectedAnnotationId: t.selectedAnnotationId }); + }), + M(N, p.UT, function (e, t) { + return L(L({}, e), {}, { selectedReplyId: t.selectedReplyId }); + }), + M(N, p.vm, function (e, t) { + return L(L({}, e), {}, { touchPressed: t.touchPressed }); + }), + M(N, p.aV, function (e, t) { + return L(L({}, e), {}, { showAnnotations: t.showAnnotations }); + }), + M(N, p.Mw, function (e, t) { + return L(L({}, e), {}, { showDraftAnnotations: t.showDraftAnnotations }); + }), + N), + j + ); + var Z; + function U(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + function z(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function V(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? z(Object(n), !0).forEach(function (t) { + H(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : z(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function H(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var G = { expanded: !1, fullscreen: !1, inputFocused: !1, mentionListShown: !1, subviewStack: [] }; + const W = (0, d.Z)( + (H((Z = {}), p.N2, function (e) { + return V(V({}, e), {}, { subviewStack: e.subviewStack.slice(0, e.subviewStack.length - 1) }); + }), + H(Z, p.do, function (e, t) { + var n, + r = t.subview; + return V( + V({}, e), + {}, + { + subviewStack: e.subviewStack.includes(r) + ? e.subviewStack + : [].concat( + ((n = e.subviewStack), + (function (e) { + if (Array.isArray(e)) return U(e); + })(n) || + (function (e) { + if (("undefined" != typeof Symbol && null != e[Symbol.iterator]) || null != e["@@iterator"]) return Array.from(e); + })(n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return U(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? U(e, t) : void 0; + } + })(n) || + (function () { + throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + [r] + ), + } + ); + }), + H(Z, p.zF, function (e, t) { + var n = t.expanded; + return V(V({}, e), {}, { expanded: n }); + }), + H(Z, p.JV, function (e, t) { + var n = t.fullscreen; + return V(V({}, e), {}, { fullscreen: n }); + }), + H(Z, p.wV, function (e, t) { + var n = t.inputFocused; + return V(V({}, e), {}, { inputFocused: n }); + }), + H(Z, p.nU, function (e, t) { + var n = t.mentionListShown; + return V(V({}, e), {}, { mentionListShown: n }); + }), + H(Z, p.nd, function () { + return G; + }), + Z), + G + ); + var Q; + function J(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function Y(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? J(Object(n), !0).forEach(function (t) { + q(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : J(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function q(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var X = { filterTime: [], filterUsers: [], readInFilterMap: {}, showResolvedComments: !1, showUnreadComments: !1 }, + K = function () { + return X; + }; + const $ = (0, d.Z)( + (q((Q = {}), p.FT, K), + q(Q, p.cT, function (e, t) { + var n = e.readInFilterMap; + return Y(Y({}, e), {}, { readInFilterMap: Y(Y({}, n), t.metadataMap) }); + }), + q(Q, p.ML, function (e, t) { + return Y(Y({}, e), {}, { readInFilterMap: {}, filterTime: t.values }); + }), + q(Q, p.LW, function (e, t) { + return Y(Y({}, e), {}, { readInFilterMap: {}, filterUsers: t.values }); + }), + q(Q, p.jc, function (e) { + return Y(Y({}, e), {}, { readInFilterMap: {}, showResolvedComments: !e.showResolvedComments }); + }), + q(Q, p.PI, function (e) { + return Y(Y({}, e), {}, { readInFilterMap: {}, showUnreadComments: !e.showUnreadComments }); + }), + q(Q, p.k8, K), + Q), + X + ); + var ee; + function te(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var ne = + (te((ee = {}), "".concat(p.Bq, ":comments"), u.ZP), + te(ee, "".concat(p.Bq, ":context"), x), + te(ee, "".concat(p.Bq, ":annotation"), B), + te(ee, "".concat(p.Bq, ":filter"), $), + te(ee, "".concat(p.Bq, ":mobile"), W), + te(ee, "".concat(p.Bq, ":delta"), E), + ee), + re = ("undefined" != typeof REDUX_DEBUG && window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__) || a.qC, + oe = o().createContext(null), + ae = (0, a.UY)(ne), + ie = (0, l.fw)(oe), + se = (0, l.AS)(oe), + ce = (0, l.gR)(oe), + le = (0, a.MT)( + ae, + re( + (0, a.md)(c, function (e) { + return function (t) { + return function (n) { + if (n) { + var r = { type: p.rA, data: { new: [], deleted: [], modified: [] } }, + o = e.getState(), + a = g(o, n.assetId); + t(n); + var i = g(e.getState(), n.assetId); + !(function (e, t) { + return e !== t && JSON.stringify(e) !== JSON.stringify(t) && !(0 === e.length && 0 === t.length); + })(a, i) + ? n.type === p.Ov.ERROR && (r.reason = "initialization") + : n.type !== p.Ov.SUCCESS || n.isPollUpdate + ? ((r.data.new = b(a, i)), + (r.data.deleted = b(i, a)), + (r.data.modified = (function (e, t) { + var n = (function (e) { + var t = {}; + return ( + e.forEach(function (e) { + t[e.id] = e; + }), + t + ); + })(e); + return t.filter(function (e) { + var t = n[e.id]; + return t && t.etag !== e.etag; + }); + })(a, i)), + (r.data.new.length || r.data.deleted.length || r.data.modified.length) && (r.reason = "update")) + : ((r.reason = "initialization"), (r.data.new = i)), + (function (e) { + return y.includes(e.type); + })(n) && (r.reason = "filter"), + r.reason && e.dispatch(r); + } + }; + }; + }) + ) + ), + ue = function (e) { + var t = e.children, + n = e.store, + r = void 0 === n ? le : n; + return o().createElement(l.zt, { context: oe, store: r }, t); + }; + const de = le; + }, + 67733: (e, t, n) => { + "use strict"; + n.d(t, { Qx: () => c, cM: () => l, yU: () => u }); + var r = n(91460), + o = n(57305), + a = n.n(o), + i = n(99894), + s = function (e) { + return a()(e, "".concat(i.Bq, ":context.annotationLocation")) || {}; + }, + c = (0, r.P1)([s], function (e) { + return !!e.coordinates; + }), + l = (0, r.P1)([s], function (e) { + return e && e.coordinates; + }), + u = (0, r.P1)([s], function (e) { + return e && e.nodeId; + }); + }, + 48468: (e, t, n) => { + "use strict"; + n.d(t, { $E: () => H, AR: () => b, BE: () => B, K: () => G, QO: () => U, Wm: () => W, Zv: () => g, _X: () => Z, fD: () => V, kW: () => E, nE: () => z, o8: () => k, s4: () => f, sZ: () => y, v: () => v, xr: () => P }); + var r = n(91460), + o = n(57305), + a = n.n(o), + i = n(47810), + s = n.n(i), + c = n(99894), + l = n(89035); + function u(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function d(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? u(Object(n), !0).forEach(function (t) { + p(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : u(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function p(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var f = function (e) { + return a()(e, "".concat(c.Bq, ":comments.entities.assets.allIds")); + }, + m = function (e) { + return a()(e, "".concat(c.Bq, ":comments.entities.assets.byId")); + }, + h = function (e, t) { + var n, + r = (null == t || null === (n = t.assetData) || void 0 === n ? void 0 : n.id) || t; + return a()(e, "".concat(c.Bq, ":comments.entities.assets.byId[").concat(r, "].comments"), []); + }, + v = function (e) { + return a()(e, "".concat(c.Bq, ":comments.entities.comments.byId"), {}); + }, + y = function (e) { + return a()(e, "".concat(c.Bq, ":comments.entities.comments.allIds")); + }, + g = function (e) { + return a()(e, "".concat(c.Bq, ":annotation.hoveredAnnotation")); + }, + b = function (e) { + return a()(e, "".concat(c.Bq, ":annotation")); + }, + E = function (e) { + return a()(e, "".concat(c.Bq, ":context.showCommentId")); + }, + D = function (e) { + return a()(e, "".concat(c.Bq, ":filter.filterTime")); + }, + C = function (e) { + return a()(e, "".concat(c.Bq, ":filter.filterUsers")); + }, + w = function (e) { + return (arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}).globalCommentsToggle.isActive; + }, + S = function (e) { + return a()(e, "".concat(c.Bq, ":context.registeredSectionIds")); + }, + A = function (e) { + return a()(e, "".concat(c.Bq, ":filter.showResolvedComments")); + }, + k = function (e) { + return a()(e, "".concat(c.Bq, ":comments.entities.metadata.byId")); + }, + _ = function (e) { + return a()(e, "".concat(c.Bq, ":filter.showUnreadComments")); + }, + T = function (e) { + return a()(e, "".concat(c.Bq, ":filter.readInFilterMap")); + }, + I = function (e) { + return (arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}).annotationsMultiPageEnabled; + }, + O = function (e) { + return (arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}).assetData; + }, + F = function (e) { + return (arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}).groupBy; + }, + x = function (e) { + return (arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}).imsData; + }, + N = function (e) { + return (arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}).enableReadUnread; + }, + R = function (e) { + var t = a()(e, "".concat(c.Bq, ":filter.showResolvedComments")), + n = a()(e, "".concat(c.Bq, ":filter.showUnreadComments")), + r = D(e) || [], + o = C(e) || []; + return r.length > 0 || o.length > 0 || t || n; + }, + L = function (e) { + delete e.pinNum, delete e.annotationType; + }, + M = function (e, t) { + var n = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : [], + r = 1; + return e.filter(function (e) { + var o = a()(e, "target.selector.sectionId") || "root", + i = !e.unmapped && (t ? "resolved" === e.status : "open" === e.status), + s = n.indexOf(o) > -1, + c = a()(e, "target.selector.subtype"); + return i && s ? c && "node" !== c && ((e.annotationType = c), (a()(e, "target.selector.noteX") || a()(e, "target.selector.pinModelRootPosition")) && "note" === c && ((e.pinNum = r), r++)) : L(e), i; + }); + }, + P = function () { + return (0, r.P1)([h, v], function (e, t) { + return e.map(function (e) { + return t[e]; + }); + }); + }, + j = (0, r.P1)([O, P()], function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : { validNodes: [] }, + t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : [], + n = e.validNodes + .map(function (e) { + return e.id; + }) + .filter(function (e) { + return e !== c.Qy; + }), + r = [], + o = []; + return ( + t.forEach(function (t) { + var i = a()(t, "target.selector.node.id"); + (e.useNodeIndex && i >= 0 && i < e.validNodes.length) || (!e.useNodeIndex && n.includes(i)) ? (delete t.unmapped, r.push(t)) : ((t.unmapped = !0), o.push(t)); + }), + r.concat(o) + ); + }), + B = (0, r.P1)([m], function (e) { + var t = {}; + return ( + Object.keys(e).forEach(function (n) { + t[n] = e[n].metadata; + }), + t + ); + }), + Z = function (e, t) { + return a()(e, "".concat(c.Bq, ":comments.entities.assets.byId[").concat(t, "]"), d({}, l.Jl)); + }, + U = (0, r.P1)([m], function (e) { + var t = {}; + return ( + Object.keys(e).forEach(function (n) { + t[n] = e[n].comments; + }), + t + ); + }), + z = function () { + return (0, r.P1)([v], function (e, t) { + return e[t]; + }); + }, + V = (0, r.P1)([j], function () { + var e = [], + t = {}; + return ( + (arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : []).forEach(function (n) { + var r = n.creator, + o = void 0 === r ? {} : r, + a = o.email; + a && !t[a] && (e.push(o), (t[a] = a)), a || t[o.name] || (e.push(o), (t[o.name] = o.name)); + }), + e.sort(function (e, t) { + var n = e.name || "", + r = t.name || ""; + return n.localeCompare(r); + }) + ); + }), + H = function () { + var e = (0, r.P1)([O, P(), D, C, S, A, w, V, I, F, k, T, N, x, _], function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : { validNodes: [] }, + t = arguments.length > 1 ? arguments[1] : void 0, + n = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : [], + r = arguments.length > 3 && void 0 !== arguments[3] ? arguments[3] : [], + o = arguments.length > 4 ? arguments[4] : void 0, + i = arguments.length > 5 ? arguments[5] : void 0, + c = arguments.length > 6 ? arguments[6] : void 0, + l = arguments.length > 7 ? arguments[7] : void 0, + u = arguments.length > 8 ? arguments[8] : void 0, + d = arguments.length > 9 ? arguments[9] : void 0, + p = arguments.length > 10 ? arguments[10] : void 0, + f = arguments.length > 11 ? arguments[11] : void 0, + m = arguments.length > 12 ? arguments[12] : void 0, + h = arguments.length > 13 ? arguments[13] : void 0, + v = arguments.length > 14 ? arguments[14] : void 0, + y = t ? t.concat([]) : [], + g = []; + if (r.length > 0) { + var b = s()(l, "id"); + y = y.filter(function (e) { + return ( + void 0 !== + r.find(function (t) { + var n = b[t], + r = !e.creator.email || "None" === e.creator.email; + return "guest-filter" === t ? r && !e.creator.name : !!n && ("" === n.email ? r && n.name === e.creator.name : n.id === e.creator.id); + }) + ); + }); + } + if (n.length > 0) { + var E = -1 !== n.indexOf("today"), + D = -1 !== n.indexOf("yesterday"), + C = -1 !== n.indexOf("last7Days"), + w = -1 !== n.indexOf("older"); + if (!((E && D) || C) || !w) { + var S = new Date().setHours(0, 0, 0, 0), + A = S - 864e5, + k = new Date().getTime() - 6048e5; + y = y.filter(function (e) { + var t = new Date(e.modified).getTime(), + n = t - S, + r = t - k; + return (C && r >= 0) || (E && n >= 0) || (D && t - A >= 0 && n < 0) || (w && r < 0); + }); + } + } + if (m && v) { + var _ = h.id; + y = y.filter(function (e) { + var t = void 0 !== _ && _ === e.creator.id, + n = e.id.toLowerCase(), + r = null == f ? void 0 : f[n]; + return (!p[n] || !p[n].read || r) && !t; + }); + } + if (c && void 0 !== e.nodeId) { + var T = []; + "node" === d + ? e.validNodes.forEach(function (e) { + var t = y.filter(function (t) { + return e.id === a()(t, "target.selector.node.id"); + }); + (t = u ? t.reverse() : M(t, i, o)), (T = T.concat(t)); + }) + : (T = y.sort(function (e, t) { + return new Date(t.modified) - new Date(e.modified); + })), + (u || "node" !== d) && (T = M(T.reverse(), i, o)), + y.forEach(function (e) { + T.find(function (t) { + return t.id === e.id; + }) || ((i && "resolved" === e.status) || (!i && "open" === e.status) ? ((e.unmapped = !0), L(e), g.push(e)) : delete e.unmapped); + }), + (y = T); + } else + void 0 !== e.nodeId && + (y = y.filter(function (t) { + return e.nodeId === a()(t, "target.selector.node.id"); + })); + return c || (y = M(y, i, o)), y.reverse(), g.length && (g.reverse(), (y = y.concat(g))), y; + }); + return e; + }, + G = function () { + var e = (0, r.P1)([R, O, P(), H(), w], function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : { validNodes: [] }, + n = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : [], + r = arguments.length > 4 ? arguments[4] : void 0, + o = {}; + (arguments.length > 3 ? arguments[3] : void 0).forEach(function (e) { + o[e.id] = !0; + }); + var i = {}; + void 0 !== t.nodeId && + t.validNodes.forEach(function (e) { + i[e.id] = !0; + }); + var s, + l, + u, + p, + f, + m, + h, + v = {}, + y = {}, + g = { resolved: 0, unresolved: 0, total: 0, annotations: 0 }, + b = d({}, g), + E = d({}, g); + return ( + n.forEach(function (e) { + var t = e.id, + n = e.status; + "resolved" === n && (b.resolved++, o[t] && E.resolved++), "open" === n && (b.unresolved++, o[t] && E.unresolved++), (b.total = b.resolved + b.unresolved), (E.total = E.resolved + E.unresolved); + var r = a()(e, "target.selector.node.id"), + s = !i[r]; + void 0 === r || s + ? (void 0 === v[c.Qy] && (v[c.Qy] = d({}, g)), + void 0 === y[c.Qy] && o[t] && (y[c.Qy] = d({}, g)), + "open" === n ? (v[c.Qy].unresolved++, o[t] && y[c.Qy].unresolved++) : "resolved" === n && (v[c.Qy].resolved++, o[t] && y[c.Qy].resolved++), + (v[c.Qy].total = v[c.Qy].unresolved + v[c.Qy].resolved), + o[t] && (y[c.Qy].total = y[c.Qy].unresolved + y[c.Qy].resolved)) + : (void 0 === v[r] && (v[r] = d({}, g)), + e.annotationType && v[r].annotations++, + void 0 === y[r] && o[t] && (y[r] = d({}, g)), + "open" === n ? (v[r].unresolved++, o[t] && y[r].unresolved++) : "resolved" === n && (v[r].resolved++, o[t] && y[r].resolved++), + (v[r].total = v[r].unresolved + v[r].resolved), + o[t] && (y[r].total = y[r].unresolved + y[r].resolved)); + }), + (s = void 0 !== t.nodeId ? v[t.nodeId] || d({}, g) : b), + e || (((E = d({}, r ? b : s)).total -= E.resolved), (E.resolved = 0)), + e && + (void 0 === t.nodeId || + r || + ((E.resolved = ((null === (l = y[t.nodeId]) || void 0 === l ? void 0 : l.resolved) || 0) + ((null === (u = y[c.Qy]) || void 0 === u ? void 0 : u.resolved) || 0)), + (E.unresolved = ((null === (p = y[t.nodeId]) || void 0 === p ? void 0 : p.unresolved) || 0) + ((null === (f = y[c.Qy]) || void 0 === f ? void 0 : f.unresolved) || 0)), + (E.total = ((null === (m = y[t.nodeId]) || void 0 === m ? void 0 : m.total) || 0) + ((null === (h = y[c.Qy]) || void 0 === h ? void 0 : h.total) || 0)))), + { allNodes: v, activeNode: s, total: b, visible: E } + ); + }); + return e; + }, + W = (0, r.P1)([P()], function () { + return (arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : []).some(function (e) { + var t = a()(e, "target.selector.subtype"); + return t && "node" !== t; + }); + }); + }, + 5347: (e) => { + e.exports = "30.12.0"; + }, + 64251: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => j }); + var r = {}; + n.r(r); + var o = n(23469), + a = n.n(o), + i = n(47776), + s = n.n(i), + c = n(9076), + l = n(2442), + u = n(94055), + d = n(57305), + p = n.n(d), + f = n(23492), + m = n(67733), + h = n(28386), + v = n(64921), + y = (n(66084), n(84514)), + g = n(92445); + const b = (0, n(9323).Z)(n(40333)).default, + E = (0, y.Z)({ displayName: "AnnotatePen", fallback: b, swcLoader: void 0, swcProps: g.m, tagName: "sp-icon-annotate-pen" }); + var D = n(67586), + C = n(93056), + w = n(77271), + S = n(10326), + A = n(99894); + function k(e) { + return ( + (k = + "function" == typeof Symbol && "symbol" == typeof Symbol.iterator + ? function (e) { + return typeof e; + } + : function (e) { + return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e; + }), + k(e) + ); + } + function _(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + function T(e, t) { + return ( + (T = Object.setPrototypeOf + ? Object.setPrototypeOf.bind() + : function (e, t) { + return (e.__proto__ = t), e; + }), + T(e, t) + ); + } + function I(e) { + return ( + (I = Object.setPrototypeOf + ? Object.getPrototypeOf.bind() + : function (e) { + return e.__proto__ || Object.getPrototypeOf(e); + }), + I(e) + ); + } + var O = (function (e) { + !(function (e, t) { + if ("function" != typeof t && null !== t) throw new TypeError("Super expression must either be null or a function"); + (e.prototype = Object.create(t && t.prototype, { constructor: { value: e, writable: !0, configurable: !0 } })), Object.defineProperty(e, "prototype", { writable: !1 }), t && T(e, t); + })(c, e); + var t, + n, + o, + i, + s = + ((o = c), + (i = (function () { + if ("undefined" == typeof Reflect || !Reflect.construct) return !1; + if (Reflect.construct.sham) return !1; + if ("function" == typeof Proxy) return !0; + try { + return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; + } catch (e) { + return !1; + } + })()), + function () { + var e, + t = I(o); + if (i) { + var n = I(this).constructor; + e = Reflect.construct(t, arguments, n); + } else e = t.apply(this, arguments); + return (function (e, t) { + if (t && ("object" === k(t) || "function" == typeof t)) return t; + if (void 0 !== t) throw new TypeError("Derived constructors may only return object or undefined"); + return (function (e) { + if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); + return e; + })(e); + })(this, e); + }); + function c(e) { + var t; + return ( + (function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + })(this, c), + ((t = s.call(this, e)).state = {}), + t + ); + } + return ( + (t = c), + (n = [ + { + key: "componentDidUpdate", + value: function (e) { + var t = this, + n = this.props, + r = n.isPlacingAnnotation, + o = n.compactLayout, + a = n.showAnnotationMask, + i = n.touchControls; + r && + !e.isPlacingAnnotation && + a && + (o || i) && + (this.setState({ overrideHover: !0 }), + (this.mobileHoverTimer = setTimeout(function () { + t.setState({ overrideHover: !1 }); + }, 5e3))); + }, + }, + { + key: "componentWillUnmount", + value: function () { + clearTimeout(this.mobileHoverTimer); + }, + }, + { + key: "render", + value: function () { + var e, + t, + n, + o = this.props, + i = o.compactLayout, + s = o.hovered, + c = o.drawingNode, + l = o.hasAnnotationLocation, + u = o.isPlacingAnnotation, + d = o.maskTextOverride, + p = o.newAnnotationType, + f = o.spectrumUIScale, + m = o.style, + y = o.theme, + g = o.touchControls, + b = this.state.overrideHover, + k = ((i || g) && !b) || s; + !u || + k || + l || + void 0 !== c || + ("pin" === p && + ((t = d || (i ? a().createElement(h.Z, { id: "comments.annotations.annotation_hint_mobile" }) : a().createElement(h.Z, { id: "comments.annotations.annotation_hint" }))), + (n = a().createElement(D.Z, { style: { "--spectrum-icon-size": "11px" }, size: "XS" }))), + "highlight" === p && + ((t = d || (i ? a().createElement(h.Z, { id: "comments.annotations.annotation_highlight_hint_mobile" }) : a().createElement(h.Z, { id: "comments.annotations.annotation_highlight_hint" }))), + (n = a().createElement(C.Z, null))), + "strikethrough" === p && + ((t = d || (i ? a().createElement(h.Z, { id: "comments.annotations.annotation_strikethrough_hint_mobile" }) : a().createElement(h.Z, { id: "comments.annotations.annotation_strikethrough_hint" }))), + (n = a().createElement(v.Z, { size: "S" }))), + "insert" === p && ((t = d || a().createElement(h.Z, { id: "comments.annotations.annotation_insert_hint" })), (n = a().createElement(w.Z, null))), + "replace" === p && ((t = d || a().createElement(h.Z, { id: "comments.annotations.annotation_replace_hint" })), (n = a().createElement(S.Z, null))), + "draw" === p && + ((t = d || (i ? a().createElement(h.Z, { id: "comments.annotations.annotation_draw_hint_mobile" }) : a().createElement(h.Z, { id: "comments.annotations.annotation_draw_hint" }))), + (n = a().createElement(E, { size: "S" }))), + (e = a().createElement("div", { className: "hint-mask" }, t, n))); + var _ = "".concat(r.default.component, " ").concat(y, "-theme ").concat(f, "-scale"); + (!k && u) || (_ += " no-capture-pointer-events"); + var T = Object.assign({}, m); + return (i || g) && (T.pointerEvents = "none"), a().createElement("div", { id: A.Mu, ref: this.handleOverlayRef, className: _, style: T }, e); + }, + }, + ]) && _(t.prototype, n), + Object.defineProperty(t, "prototype", { writable: !1 }), + c + ); + })(a().Component); + (O.defaultProps = { spectrumUIScale: "medium", theme: "light" }), + (O.propTypes = { + compactLayout: s().bool, + hasAnnotationLocation: s().bool, + hovered: s().bool, + drawingNode: s().oneOfType([s().string, s().number]), + isPlacingAnnotation: s().bool, + maskTextOverride: s().string, + newAnnotationType: s().string, + showAnnotationMask: s().bool, + spectrumUIScale: s().oneOf(["medium", "large"]), + style: s().object, + theme: s().oneOf(["light", "lightest", "dark", "darkest"]), + touchControls: s().bool, + }); + var F = n(24681), + x = n(69088); + function N(e) { + return ( + (N = + "function" == typeof Symbol && "symbol" == typeof Symbol.iterator + ? function (e) { + return typeof e; + } + : function (e) { + return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e; + }), + N(e) + ); + } + function R(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + function L(e, t) { + return ( + (L = Object.setPrototypeOf + ? Object.setPrototypeOf.bind() + : function (e, t) { + return (e.__proto__ = t), e; + }), + L(e, t) + ); + } + function M(e) { + return ( + (M = Object.setPrototypeOf + ? Object.getPrototypeOf.bind() + : function (e) { + return e.__proto__ || Object.getPrototypeOf(e); + }), + M(e) + ); + } + var P = (function (e) { + !(function (e, t) { + if ("function" != typeof t && null !== t) throw new TypeError("Super expression must either be null or a function"); + (e.prototype = Object.create(t && t.prototype, { constructor: { value: e, writable: !0, configurable: !0 } })), Object.defineProperty(e, "prototype", { writable: !1 }), t && L(e, t); + })(c, e); + var t, + n, + r, + o, + i, + s = + ((o = c), + (i = (function () { + if ("undefined" == typeof Reflect || !Reflect.construct) return !1; + if (Reflect.construct.sham) return !1; + if ("function" == typeof Proxy) return !0; + try { + return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; + } catch (e) { + return !1; + } + })()), + function () { + var e, + t = M(o); + if (i) { + var n = M(this).constructor; + e = Reflect.construct(t, arguments, n); + } else e = t.apply(this, arguments); + return (function (e, t) { + if (t && ("object" === N(t) || "function" == typeof t)) return t; + if (void 0 !== t) throw new TypeError("Derived constructors may only return object or undefined"); + return (function (e) { + if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); + return e; + })(e); + })(this, e); + }); + function c(e) { + var t; + return ( + (function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + })(this, c), + ((t = s.call(this, e)).state = { hadError: !1 }), + t + ); + } + return ( + (t = c), + (r = [ + { + key: "getDerivedStateFromError", + value: function () { + return { hadError: !0 }; + }, + }, + ]), + (n = [ + { + key: "componentDidCatch", + value: function (e) { + var t = this.props, + n = t.ccxIngest, + r = t.environment; + n.fireEvent({ event: { subcategory: "general-error", subtype: "error", type: "render", error_type: e.message && e.message.replace(/\s/g, "-"), error_desc: "annotations-mask-js-error", build: r } }); + }, + }, + { + key: "render", + value: function () { + return this.state.hadError + ? null + : a().createElement(F.Z, { style: { backgroundColor: "transparent", height: "100%", left: 0, pointerEvents: "none", position: "absolute", top: 0, width: "100%", zIndex: 3 } }, a().createElement(O, this.props)); + }, + }, + ]) && R(t.prototype, n), + r && R(t, r), + Object.defineProperty(t, "prototype", { writable: !1 }), + c + ); + })(a().Component); + P.propTypes = { ccxIngest: s().object, environment: s().string, style: s().object }; + const j = (0, c.qC)( + f.HJ, + (0, l.$j)( + function (e) { + return { + hasAnnotationLocation: (0, m.Qx)(e), + drawingNode: p()(e, "".concat(A.Bq, ":annotation.drawingNode")), + isPlacingAnnotation: p()(e, "".concat(A.Bq, ":context.isPlacingAnnotation")), + newAnnotationType: p()(e, "".concat(A.Bq, ":context.newAnnotationType")), + showAnnotationMask: p()(e, "".concat(A.Bq, ":context.showAnnotationMask")), + }; + }, + function () { + return {}; + }, + void 0, + { context: x.no } + ), + (0, u.ccxIngest)(A.FH) + )(P); + }, + 78034: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => Be }); + var r = {}; + n.r(r); + var o = {}; + n.r(o); + var a = {}; + n.r(a); + var i = {}; + n.r(i); + var s = {}; + n.r(s); + var c = {}; + n.r(c); + var l = n(23469), + u = n.n(l), + d = n(47776), + p = n.n(d), + f = n(93353), + m = n.n(f), + h = n(48699), + v = n.n(h), + y = n(23492), + g = n(88133), + b = n(99894), + E = !!window.PointerEvent, + D = function (e) { + var t = e.annotation, + n = e.annotationId, + o = e.disableInteraction, + a = e.isHovered, + i = e.isPlacingAnnotation, + s = e.isProposedForDelete, + c = e.isSelected, + d = e.onClick, + p = e.onDrawingDown, + f = e.onDrawingHover, + h = e.scaleFactorX, + v = e.scaleFactorY, + y = e.touchControls, + g = t.target.selector, + D = g.strokeColor, + C = g.strokeWidth, + w = g.boundingBox, + S = w[0] * h - 5, + A = w[1] * v - 5, + k = (w[2] - w[0]) * h + 10, + _ = (w[3] - w[1]) * v + 10, + T = (0, l.useMemo)( + function () { + return { left: "".concat(S, "px"), top: "".concat(A, "px"), height: "".concat(_, "px"), width: "".concat(k, "px") }; + }, + [S, A, _, k] + ), + I = (0, l.useMemo)( + function () { + return g.inkList.map(function (e) { + return e.reduce(function (e, t, n) { + var r = t.x * h, + o = t.y * v; + return isNaN(r) || isNaN(o) ? e : 0 === n ? "M ".concat(r, " ").concat(o) : "".concat(e, " ").concat(r, " ").concat(o); + }, ""); + }); + }, + [h, v, g.inkList] + ), + O = m()(r.default.component, b.TV, { "temp-drawing": "annotation-placeholder" === n, hovered: a && !y, "ignore-mouse-events": i || o, selected: c || s }); + return u().createElement( + "div", + { + "data-html2canvas-ignore": "annotation-placeholder" !== n || null, + className: O, + "data-annotationid": n, + "data-annotationtype": "draw", + style: T, + onClick: d, + onPointerDown: E ? p : void 0, + onMouseDown: E ? void 0 : p, + onTouchStart: E ? void 0 : p, + onMouseEnter: f, + onMouseLeave: f, + }, + u().createElement( + "svg", + { viewBox: "".concat(S, " ").concat(A, " ").concat(k, " ").concat(_) }, + I.map(function (e, t) { + return u().createElement( + u().Fragment, + { key: t }, + u().createElement("path", { d: e, style: { fill: "none", stroke: D || "#000", strokeWidth: C || 5 } }), + u().createElement("path", { d: e, style: { fill: "none", stroke: "none", strokeWidth: 16 } }) + ); + }) + ) + ); + }; + (D.defaultProps = { isHovered: !1, isSelected: !1, isProposedForDelete: !1, onClick: function () {} }), + (D.propTypes = { + allAnnotations: p().array, + annotation: p().object, + annotationId: p().string, + commentProposedForDelete: p().object, + disableInteraction: p().bool, + hoveredAnnotation: p().string, + imsData: p().object, + isHovered: p().bool, + isPlacingAnnotation: p().bool, + isProposedForDelete: p().bool, + isSelected: p().bool, + markHovered: p().bool, + onClick: p().func, + onDrawingDown: p().func, + onDrawingHover: p().func, + scaleFactorX: p().number, + scaleFactorY: p().number, + showResolvedComments: p().bool, + touchControls: p().bool, + touchPressed: p().bool, + }); + const C = D; + var w = n(60954); + function S(e) { + return ( + (S = + "function" == typeof Symbol && "symbol" == typeof Symbol.iterator + ? function (e) { + return typeof e; + } + : function (e) { + return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e; + }), + S(e) + ); + } + function A(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + function k(e, t) { + return ( + (k = Object.setPrototypeOf + ? Object.setPrototypeOf.bind() + : function (e, t) { + return (e.__proto__ = t), e; + }), + k(e, t) + ); + } + function _(e) { + if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); + return e; + } + function T(e) { + return ( + (T = Object.setPrototypeOf + ? Object.getPrototypeOf.bind() + : function (e) { + return e.__proto__ || Object.getPrototypeOf(e); + }), + T(e) + ); + } + var I, + O, + F, + x = { appear: 0, enter: 0, exit: 2e3 }, + N = (function (e) { + !(function (e, t) { + if ("function" != typeof t && null !== t) throw new TypeError("Super expression must either be null or a function"); + (e.prototype = Object.create(t && t.prototype, { constructor: { value: e, writable: !0, configurable: !0 } })), Object.defineProperty(e, "prototype", { writable: !1 }), t && k(e, t); + })(s, e); + var t, + n, + r, + a, + i = + ((r = s), + (a = (function () { + if ("undefined" == typeof Reflect || !Reflect.construct) return !1; + if (Reflect.construct.sham) return !1; + if ("function" == typeof Proxy) return !0; + try { + return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; + } catch (e) { + return !1; + } + })()), + function () { + var e, + t = T(r); + if (a) { + var n = T(this).constructor; + e = Reflect.construct(t, arguments, n); + } else e = t.apply(this, arguments); + return (function (e, t) { + if (t && ("object" === S(t) || "function" == typeof t)) return t; + if (void 0 !== t) throw new TypeError("Derived constructors may only return object or undefined"); + return _(e); + })(this, e); + }); + function s(e) { + var t; + return ( + (function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + })(this, s), + ((t = i.call(this, e)).state = { isComplete: t.props.isVisible, in: !1 }), + (t.onEntered = t.onEntered.bind(_(t))), + (t.onExit = t.onExit.bind(_(t))), + t + ); + } + return ( + (t = s), + (n = [ + { + key: "componentDidMount", + value: function () { + this.setState(function () { + return { in: !0 }; + }); + }, + }, + { + key: "componentWillUnmount", + value: function () { + window.clearTimeout(this.exitTimeout); + }, + }, + { + key: "onEntered", + value: function () { + this.setState(function () { + return { in: !1 }; + }); + }, + }, + { + key: "onExit", + value: function () { + var e = this; + this.exitTimeout = setTimeout(function () { + return e.setState(function () { + return { isComplete: !0 }; + }); + }, 2e3); + }, + }, + { + key: "render", + value: function () { + var e = this, + t = this.props.isVisible, + n = this.state.isComplete; + return u().createElement(w.CSSTransition, { classNames: "fade", in: t || this.state.in, timeout: x, onEntered: this.onEntered, onExit: this.onExit, unmountOnExit: !t }, function () { + return !t && n + ? null + : u().createElement( + "span", + { + className: "" + .concat(o.default.component, " ") + .concat(t ? "is-visible" : "not-visible", " ") + .concat(n ? "is-complete" : ""), + }, + e.props.children + ); + }); + }, + }, + ]) && A(t.prototype, n), + Object.defineProperty(t, "prototype", { writable: !1 }), + s + ); + })(l.Component); + (I = N), (O = "propTypes"), (F = { children: p().node, isVisible: p().bool }), O in I ? Object.defineProperty(I, O, { value: F, enumerable: !0, configurable: !0, writable: !0 }) : (I[O] = F); + const R = N; + function L(e) { + return ( + (function (e) { + if (Array.isArray(e)) return M(e); + })(e) || + (function (e) { + if (("undefined" != typeof Symbol && null != e[Symbol.iterator]) || null != e["@@iterator"]) return Array.from(e); + })(e) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return M(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? M(e, t) : void 0; + } + })(e) || + (function () { + throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function M(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var P = !!window.PointerEvent, + j = function (e) { + var t = e.annotation, + n = e.annotationId, + r = e.disableInteraction, + o = e.isHovered, + i = e.isPlacingAnnotation, + s = e.isProposedForDelete, + c = e.isSelected, + d = e.onClick, + p = e.onHighlightDown, + f = e.onHighlightHover, + h = e.scaleFactorX, + v = e.scaleFactorY, + y = e.touchControls, + g = t.target.selector, + E = g.strokeColor, + D = g.opacity || 0.4, + C = g.boundingBox, + w = C[0] * h - 5, + S = C[3] * v - 5, + A = (C[2] - C[0]) * h + 10, + k = (C[1] - C[3]) * v + 10, + _ = (0, l.useMemo)( + function () { + return g.inkList.map(function (e, t) { + var n = + Math.min.apply( + Math, + L( + e.map(function (e) { + return e.x; + }) + ) + ) * h, + r = + Math.min.apply( + Math, + L( + e.map(function (e) { + return e.y; + }) + ) + ) * v, + o = + Math.max.apply( + Math, + L( + e.map(function (e) { + return e.x; + }) + ) + ) * + h - + n, + a = + Math.max.apply( + Math, + L( + e.map(function (e) { + return e.y; + }) + ) + ) * + v - + r; + return u().createElement("svg", { key: "id-".concat(t), width: o, height: a, style: { left: n - w, top: r - S } }, u().createElement("rect", { width: o, height: a, style: { fill: E, fillOpacity: D }, rx: "4" })); + }); + }, + [w, E, D, h, v, g.inkList, S] + ), + T = m()(a.default.component, b.TV, { hovered: o && !y, "ignore-mouse-events": i || r, selected: c || s }); + return u().createElement( + "div", + { + "data-html2canvas-ignore": "annotation-placeholder" !== n || null, + className: T, + "data-annotationid": n, + "data-annotationtype": "highlight", + style: { left: "".concat(w, "px"), top: "".concat(S, "px"), height: "".concat(k, "px"), width: "".concat(A, "px") }, + onClick: d, + onPointerDown: P ? p : void 0, + onMouseDown: P ? void 0 : p, + onTouchStart: P ? void 0 : p, + onMouseEnter: f, + onMouseLeave: f, + }, + _ + ); + }; + (j.defaultProps = { isHovered: !1, isProposedForDelete: !1, isSelected: !1, onClick: function () {} }), + (j.propTypes = { + allAnnotations: p().array, + annotation: p().object, + annotationId: p().string, + compactLayout: p().bool, + disableInteraction: p().bool, + imsData: p().object, + isHovered: p().bool, + isPlacingAnnotation: p().bool, + isProposedForDelete: p().bool, + isSelected: p().bool, + markHovered: p().bool, + onClick: p().func, + onHighlightDown: p().func, + onHighlightHover: p().func, + scaleFactorX: p().number, + scaleFactorY: p().number, + showResolvedComments: p().bool, + touchControls: p().bool, + touchPressed: p().bool, + }); + const B = j; + var Z = !!window.PointerEvent, + U = function (e) { + var t = e.annotation, + n = e.annotationId, + r = e.disableInteraction, + o = e.isHovered, + a = e.isPlacingAnnotation, + s = e.isProposedForDelete, + c = e.isSelected, + l = e.onClick, + d = e.onInsertDown, + p = e.onInsertHover, + f = e.scaleFactorX, + h = e.scaleFactorY, + v = e.touchControls, + y = t.target.selector, + g = y.strokeColor, + E = y.boundingBox, + D = E[0] * f, + C = E[3] * h, + w = m()(i.default.component, b.TV, { hovered: o && !v, "ignore-mouse-events": a || r, selected: c || s }); + return u().createElement( + "div", + { + "data-html2canvas-ignore": "annotation-placeholder" !== n || null, + className: w, + "data-annotationid": n, + "data-annotationtype": "insert", + style: { fill: g, left: "".concat(D, "px"), top: "".concat(C, "px") }, + onClick: l, + onPointerDown: Z ? d : void 0, + onMouseDown: Z ? void 0 : d, + onTouchStart: Z ? void 0 : d, + onMouseEnter: p, + onMouseLeave: p, + }, + u().createElement( + "svg", + { xmlns: "http://www.w3.org/2000/svg", width: "22", height: "15", viewBox: "0 0 34 24" }, + u().createElement("path", { d: "M0,24 L34,24 C22.6051595,22.7481684 16.9384929,14.4434308 17,-0.91421274 C16.9384929,14.4316616 11.2718262,22.7363991 0,24 Z" }) + ) + ); + }; + (U.displayName = "Insert"), + (U.defaultProps = { isHovered: !1, isPlacingAnnotation: !1, isProposedForDelete: !1, isSelected: !1, onClick: function () {}, onInsertDown: function () {}, onInsertHover: function () {}, scaleFactorX: 1, scaleFactorY: 1 }), + (U.propTypes = { + annotation: p().object, + annotationId: p().string, + disableInteraction: p().bool, + isHovered: p().bool, + isPlacingAnnotation: p().bool, + isProposedForDelete: p().bool, + isSelected: p().bool, + onClick: p().func, + onInsertDown: p().func, + onInsertHover: p().func, + scaleFactorX: p().number, + scaleFactorY: p().number, + touchControls: p().bool, + }); + const z = U; + var V = n(23613), + H = n.n(V), + G = n(57305), + W = n.n(G), + Q = n(67586), + J = n(91712); + function Y(e) { + return ( + (Y = + "function" == typeof Symbol && "symbol" == typeof Symbol.iterator + ? function (e) { + return typeof e; + } + : function (e) { + return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e; + }), + Y(e) + ); + } + function q(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + function X(e, t) { + return ( + (X = Object.setPrototypeOf + ? Object.setPrototypeOf.bind() + : function (e, t) { + return (e.__proto__ = t), e; + }), + X(e, t) + ); + } + function K(e) { + if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); + return e; + } + function $(e) { + return ( + ($ = Object.setPrototypeOf + ? Object.getPrototypeOf.bind() + : function (e) { + return e.__proto__ || Object.getPrototypeOf(e); + }), + $(e) + ); + } + var ee = !!window.PointerEvent, + te = (function (e) { + !(function (e, t) { + if ("function" != typeof t && null !== t) throw new TypeError("Super expression must either be null or a function"); + (e.prototype = Object.create(t && t.prototype, { constructor: { value: e, writable: !0, configurable: !0 } })), Object.defineProperty(e, "prototype", { writable: !1 }), t && X(e, t); + })(i, e); + var t, + n, + r, + o, + a = + ((r = i), + (o = (function () { + if ("undefined" == typeof Reflect || !Reflect.construct) return !1; + if (Reflect.construct.sham) return !1; + if ("function" == typeof Proxy) return !0; + try { + return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; + } catch (e) { + return !1; + } + })()), + function () { + var e, + t = $(r); + if (o) { + var n = $(this).constructor; + e = Reflect.construct(t, arguments, n); + } else e = t.apply(this, arguments); + return (function (e, t) { + if (t && ("object" === Y(t) || "function" == typeof t)) return t; + if (void 0 !== t) throw new TypeError("Derived constructors may only return object or undefined"); + return K(e); + })(this, e); + }); + function i(e) { + var t; + return ( + (function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + })(this, i), + ((t = a.call(this, e)).state = {}), + (t.trackMouseMovement = t.trackMouseMovement.bind(K(t))), + t + ); + } + return ( + (t = i), + (n = [ + { + key: "componentDidMount", + value: function () { + var e = this.props.currentDocument, + t = (void 0 === e ? document : e).defaultView; + ee + ? t.addEventListener("pointermove", this.trackMouseMovement) + : (t.addEventListener("mousemove", this.trackMouseMovement), t.addEventListener("touchstart", this.trackMouseMovement), t.addEventListener("touchmove", this.trackMouseMovement)); + }, + }, + { + key: "componentWillUnmount", + value: function () { + var e = this.props.currentDocument, + t = (void 0 === e ? document : e).defaultView; + ee + ? t.removeEventListener("pointermove", this.trackMouseMovement) + : (t.removeEventListener("mousemove", this.trackMouseMovement), t.removeEventListener("touchstart", this.trackMouseMovement), t.removeEventListener("touchmove", this.trackMouseMovement)); + }, + }, + { + key: "trackMouseMovement", + value: function (e) { + var t = this.props.onMove, + n = (0, J.K)(e), + r = n.x, + o = n.y; + this.setState({ cursorX: r, cursorY: o }), t && t(e); + }, + }, + { + key: "render", + value: function () { + var e = this.props, + t = e.annotationColor, + n = e.annotationTypes, + r = e.currentDocument, + o = void 0 === r ? document : r, + a = e.touchControls, + i = e.offsetX, + s = e.offsetY, + c = e.size, + l = this.state, + d = l.cursorX, + p = l.cursorY, + f = "L" === c ? 48 : 24; + if (d && p) { + var m = { + alignItems: "center", + backgroundColor: "var(--ccx-comments-pin-color, #e7b000)", + border: "1px solid white", + borderRadius: f / 2, + boxSizing: "border-box", + color: "#fff", + cursor: "none", + display: document.body.classList.contains("ccx-comments-adding-annotation-pin") || a ? "flex" : "none", + fill: "#fff", + flexDirection: "column", + height: f, + justifyContent: "center", + left: d - f / 2 - i, + lineHeight: "var(--spectrum-global-dimension-font-size-100, 14px)", + pointerEvents: "none", + position: "fixed", + top: p - f / 2 - s, + width: f, + zIndex: 1e3, + }; + return n && (m.backgroundColor = t), H().createPortal(u().createElement("div", { style: m }, u().createElement(Q.Z, { style: { "--spectrum-icon-size": "11px" }, size: "XS" })), o.body); + } + return null; + }, + }, + ]) && q(t.prototype, n), + Object.defineProperty(t, "prototype", { writable: !1 }), + i + ); + })(u().PureComponent); + te.propTypes = { annotationColor: p().string, annotationTypes: p().object, currentDocument: p().object, offsetX: p().number, offsetY: p().number, onMove: p().func, touchControls: p().bool, size: p().oneOf(["S", "L"]) }; + var ne = function (e) { + var t = e.annotatingItmId, + n = e.annotation, + r = e.annotationColor, + o = e.annotationId, + a = e.annotationTypes, + i = e.commentProposedForDelete, + c = e.compactLayout, + l = e.disableInteraction, + d = e.hasAnnotationLocation, + p = e.imsData, + f = e.isHovered, + h = e.isPlacingAnnotation, + v = e.isProposedForDelete, + y = e.isSelected, + g = e.latestMobileEnabled, + E = e.onClick, + D = e.onPinDown, + C = e.onPinHover, + w = e.scaleFactorX, + S = e.scaleFactorY, + A = e.showDraftAnnotations, + k = e.showResolvedComments, + _ = e.touchControls, + T = e.touchPressed, + I = W()(n, "target.selector.noteX") * w, + O = W()(n, "target.selector.noteY") * S, + F = "annotation-placeholder" === o || a ? u().createElement(Q.Z, { style: { "--spectrum-icon-size": "11px" }, size: "XS" }) : n.pinNum, + x = { "--offset-x": "".concat(I, "px"), "--offset-y": "".concat(O, "px") }, + N = !1; + ((o === t && !T && (h || d) && (!g || A)) || (h && "annotation-placeholder" === o)) && (x.display = "none"), ((k || i || p.id !== W()(n, "creator.id") || d) && ("annotation-placeholder" !== o || (t && "root" !== t))) || (N = !0); + var R = m()(s.default.component, b.TV, { "temp-pin": "annotation-placeholder" === o, "can-move": N, "ignore-mouse-events": h || l, hovered: f && !_, "touch-size": !c && _, selected: y || v }); + if (a) + if ("annotation-placeholder" === o) { + var L = W()(n, "target.selector.strokeColor") || r || "#B80000"; + (x.borderColor = L), (x.color = L); + } else x["--ccx-comments-pin-color"] = W()(n, "target.selector.strokeColor") || "#B80000"; + return u().createElement( + "div", + { + "data-html2canvas-ignore": "annotation-placeholder" !== o || null, + className: R, + style: x, + onClick: E, + onPointerDown: ee ? D : void 0, + onMouseDown: ee ? void 0 : D, + onTouchStart: ee ? void 0 : D, + onMouseEnter: C, + onMouseLeave: C, + "data-annotationid": o, + "data-annotationtype": "pin", + }, + F + ); + }; + (ne.defaultProps = { isHovered: !1, isProposedForDelete: !1, isSelected: !1, onClick: function () {} }), + (ne.propTypes = { + annotatingItmId: p().string, + annotation: p().object, + annotationColor: p().string, + annotationId: p().string, + annotationTypes: p().object, + commentProposedForDelete: p().object, + compactLayout: p().bool, + disableInteraction: p().bool, + hasAnnotationLocation: p().bool, + hoveredAnnotation: p().string, + imsData: p().object, + isHovered: p().bool, + isPlacingAnnotation: p().bool, + isProposedForDelete: p().bool, + isSelected: p().bool, + latestMobileEnabled: p().bool, + markHovered: p().bool, + onClick: p().func, + onPinDown: p().func, + onPinHover: p().func, + scaleFactorX: p().number, + scaleFactorY: p().number, + showDraftAnnotations: p().bool, + showResolvedComments: p().bool, + touchControls: p().bool, + touchPressed: p().bool, + }); + const re = ne; + function oe(e) { + return ( + (function (e) { + if (Array.isArray(e)) return ae(e); + })(e) || + (function (e) { + if (("undefined" != typeof Symbol && null != e[Symbol.iterator]) || null != e["@@iterator"]) return Array.from(e); + })(e) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return ae(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? ae(e, t) : void 0; + } + })(e) || + (function () { + throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function ae(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var ie = !!window.PointerEvent, + se = function (e) { + var t, + n, + r, + o, + i, + s = e.annotation, + c = e.isHovered, + d = e.isProposedForDelete, + p = e.disableInteraction, + f = e.isPlacingAnnotation, + h = e.isSelected, + v = e.annotationId, + y = e.onClick, + g = e.onReplaceDown, + E = e.onReplaceHover, + D = e.scaleFactorX, + C = e.scaleFactorY, + w = e.touchControls, + S = s.target.selector, + A = S.strokeColor, + k = S.opacity || 0.4, + _ = S.strokeWidth || 2, + T = S.boundingBox, + I = T[0] * D - 5, + O = T[3] * C - 5, + F = (T[2] - T[0]) * D + 10, + x = (T[1] - T[3]) * C + 10, + N = (0, l.useMemo)( + function () { + return { left: "".concat(I, "px"), top: "".concat(O, "px"), height: "".concat(x, "px"), width: "".concat(F, "px") }; + }, + [x, I, O, F] + ), + R = []; + if (!S.inkList) return null; + S.inkList.forEach(function (e, a) { + var s = + Math.min.apply( + Math, + oe( + e.map(function (e) { + return e.x; + }) + ) + ) * D, + c = + Math.min.apply( + Math, + oe( + e.map(function (e) { + return e.y; + }) + ) + ) * C, + l = + Math.max.apply( + Math, + oe( + e.map(function (e) { + return e.x; + }) + ) + ) * + D - + s, + d = + Math.max.apply( + Math, + oe( + e.map(function (e) { + return e.y; + }) + ) + ) * + C - + c; + (i = d > l), + (t = s - I), + (n = c - O), + (r = l), + (o = d), + R.push( + u().createElement( + "svg", + { key: "id-".concat(a), width: l, height: d, style: { left: t, top: n } }, + u().createElement("line", { x1: i ? "50%" : "0%", y1: i ? "0%" : "50%", x2: i ? "50%" : "100%", y2: i ? "100%" : "50%", style: { stroke: A, fillOpacity: k, strokeWidth: _ } }) + ) + ); + }); + var L = t + r - 11 * D, + M = n + o / 2; + i && ((L = r / 2 - t), (M = n + o)); + var P = m()(a.default.component, b.TV, { hovered: c && !w, "ignore-mouse-events": f || p, selected: h || d }); + return u().createElement( + "div", + { + "data-html2canvas-ignore": "annotation-placeholder" !== v || null, + className: P, + "data-annotationid": v, + "data-annotationtype": "replace", + style: N, + onClick: y, + onPointerDown: ie ? g : void 0, + onMouseDown: ie ? void 0 : g, + onTouchStart: ie ? void 0 : g, + onMouseEnter: E, + onMouseLeave: E, + }, + R, + u().createElement( + "svg", + { xmlns: "http://www.w3.org/2000/svg", width: 22, height: 15, viewBox: "0 0 34 24", style: { fill: A, left: L, top: M } }, + u().createElement("path", { d: "M0,24 L34,24 C22.6051595,22.7481684 16.9384929,14.4434308 17,-0.91421274 C16.9384929,14.4316616 11.2718262,22.7363991 0,24 Z" }) + ) + ); + }; + (se.displayName = "Replace"), + (se.defaultProps = { isHovered: !1, isPlacingAnnotation: !1, isProposedForDelete: !1, isSelected: !1, onClick: function () {}, onReplaceDown: function () {}, onReplaceHover: function () {}, scaleFactorX: 1, scaleFactorY: 1 }), + (se.propTypes = { + annotation: p().object, + annotationId: p().string, + disableInteraction: p().bool, + isHovered: p().bool, + isPlacingAnnotation: p().bool, + isProposedForDelete: p().bool, + isSelected: p().bool, + onClick: p().func, + onReplaceDown: p().func, + onReplaceHover: p().func, + scaleFactorX: p().number, + scaleFactorY: p().number, + touchControls: p().bool, + }); + const ce = se; + function le(e) { + return ( + (function (e) { + if (Array.isArray(e)) return ue(e); + })(e) || + (function (e) { + if (("undefined" != typeof Symbol && null != e[Symbol.iterator]) || null != e["@@iterator"]) return Array.from(e); + })(e) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return ue(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? ue(e, t) : void 0; + } + })(e) || + (function () { + throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function ue(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var de = !!window.PointerEvent, + pe = function (e) { + var t = e.annotation, + n = e.annotationId, + r = e.disableInteraction, + o = e.isHovered, + i = e.isPlacingAnnotation, + s = e.isProposedForDelete, + c = e.isSelected, + d = e.onClick, + p = e.onStrikethroughDown, + f = e.onStrikethroughHover, + h = e.scaleFactorX, + v = e.scaleFactorY, + y = e.touchControls, + g = t.target.selector, + E = g.strokeColor, + D = g.opacity || 0.4, + C = g.strokeWidth || 2, + w = g.boundingBox, + S = w[0] * h - 5, + A = w[3] * v - 5, + k = (w[2] - w[0]) * h + 10, + _ = (w[1] - w[3]) * v + 10, + T = (0, l.useMemo)( + function () { + return g.inkList.map(function (e, t) { + var n = + Math.min.apply( + Math, + le( + e.map(function (e) { + return e.x; + }) + ) + ) * h, + r = + Math.min.apply( + Math, + le( + e.map(function (e) { + return e.y; + }) + ) + ) * v, + o = + Math.max.apply( + Math, + le( + e.map(function (e) { + return e.x; + }) + ) + ) * + h - + n, + a = + Math.max.apply( + Math, + le( + e.map(function (e) { + return e.y; + }) + ) + ) * + v - + r, + i = a > o; + return u().createElement( + "svg", + { key: "id-".concat(t), width: o, height: a, style: { left: n - S, top: r - A } }, + u().createElement("line", { x1: i ? "50%" : "0%", y1: i ? "0%" : "50%", x2: i ? "50%" : "100%", y2: i ? "100%" : "50%", style: { stroke: E, fillOpacity: D, strokeWidth: C } }) + ); + }); + }, + [S, E, D, C, h, v, g.inkList, A] + ), + I = m()(a.default.component, b.TV, { hovered: o && !y, "ignore-mouse-events": i || r, selected: c || s }); + return u().createElement( + "div", + { + "data-html2canvas-ignore": "annotation-placeholder" !== n || null, + className: I, + "data-annotationid": n, + "data-annotationtype": "strikethrough", + style: { left: "".concat(S, "px"), top: "".concat(A, "px"), height: "".concat(_, "px"), width: "".concat(k, "px") }, + onClick: d, + onPointerDown: de ? p : void 0, + onMouseDown: de ? void 0 : p, + onTouchStart: de ? void 0 : p, + onMouseEnter: f, + onMouseLeave: f, + }, + T + ); + }; + (pe.defaultProps = { isHovered: !1, isProposedForDelete: !1, isSelected: !1, onClick: function () {} }), + (pe.propTypes = { + annotation: p().object, + annotationId: p().string, + disableInteraction: p().bool, + isHovered: p().bool, + isPlacingAnnotation: p().bool, + isProposedForDelete: p().bool, + isSelected: p().bool, + onClick: p().func, + onStrikethroughDown: p().func, + onStrikethroughHover: p().func, + scaleFactorX: p().number, + scaleFactorY: p().number, + touchControls: p().bool, + }); + const fe = pe; + var me = n(46794), + he = n(83896), + ve = n(89941), + ye = n(82950), + ge = n(69522), + be = n(48468), + Ee = n(69088); + function De() { + return ( + (De = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + De.apply(this, arguments) + ); + } + function Ce(e) { + return ( + (function (e) { + if (Array.isArray(e)) return Ae(e); + })(e) || + (function (e) { + if (("undefined" != typeof Symbol && null != e[Symbol.iterator]) || null != e["@@iterator"]) return Array.from(e); + })(e) || + Se(e) || + (function () { + throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function we(e, t) { + return ( + (function (e) { + if (Array.isArray(e)) return e; + })(e) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(e, t) || + Se(e, t) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function Se(e, t) { + if (e) { + if ("string" == typeof e) return Ae(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Ae(e, t) : void 0; + } + } + function Ae(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var ke = "pin", + _e = "draw", + Te = "insert", + Ie = !!window.PointerEvent, + Oe = function (e) { + var t = e.currentDocument, + n = void 0 === t ? document : t, + r = e.disableInteraction, + o = e.mediaData, + a = e.nodeId, + i = e.onPinDrop, + s = e.scaleFactorX, + d = void 0 === s ? 1 : s, + p = e.scaleFactorY, + f = void 0 === p ? 1 : p, + h = e.sectionId, + E = e.showHighlight, + D = e.style, + w = (0, l.useContext)(y.ZP), + S = w.annotationsMultiPageEnabled, + A = w.assetData, + k = w.compactLayout, + _ = w.imsData, + T = w.isOffline, + I = w.latestMobileEnabled, + O = w.spectrumUIScale, + F = w.theme, + x = w.touchControls, + N = (0, me.Z)(), + L = N.annotatingItmId, + M = N.annotationColor, + P = N.annotationLocationCoordinates, + j = N.annotationLocationNodeId, + Z = N.annotationTypes, + U = N.drawingNode, + V = N.hasAnnotationLocation, + H = N.hasTempAnnotation, + G = N.hoveredAnnotation, + W = N.isPlacingAnnotation, + Q = N.newAnnotationType, + Y = N.registerSectionId, + q = N.registeredSectionIds, + X = N.saveAnnotationLocation, + K = N.selectedAnnotationId, + $ = N.setAnnotationMode, + ee = N.setDrawingNode, + ne = N.setHoveredAnnotation, + oe = N.setTouchPressed, + ae = N.showAnnotations, + ie = N.showDraftAnnotations, + se = N.touchPressed, + le = (0, l.useContext)(g.ZP), + ue = le.onCommentHover, + de = le.onCommentSelect, + pe = le.onNodeChange, + Se = (0, he.Z)().comments, + Ae = we((0, l.useState)(!1), 2), + Oe = Ae[0], + Fe = Ae[1], + xe = we((0, l.useState)("S"), 2), + Ne = xe[0], + Re = xe[1], + Le = we((0, l.useState)([]), 2), + Me = Le[0], + Pe = Le[1], + je = we((0, l.useState)([]), 2), + Be = je[0], + Ze = je[1], + Ue = we((0, l.useState)(0), 2), + ze = Ue[0], + Ve = Ue[1], + He = we((0, l.useState)(0), 2), + Ge = He[0], + We = He[1], + Qe = (0, l.useRef)([]), + Je = (0, l.useRef)(null), + Ye = (0, l.useRef)(null), + qe = (0, l.useRef)(null), + Xe = (0, l.useRef)(!1), + Ke = (0, l.useRef)(null), + $e = (0, ye.Z)(h), + et = (0, ye.Z)(V), + tt = (0, ye.Z)(P), + nt = (0, Ee.v9)(function (e) { + return e["".concat(b.Bq, ":context")].focusedInputInfo; + }), + rt = (0, Ee.v9)(function (e) { + return (0, be._X)(e, A.id); + }), + ot = rt.commentProposedForDelete, + at = rt.remappedMap, + it = (0, Ee.v9)(function (e) { + return e["".concat(b.Bq, ":filter")].showResolvedComments; + }), + st = (0, Ee.I0)(), + ct = (0, ve.Z)().fireEvent, + lt = !S || A.nodeId === a, + ut = (0, l.useCallback)( + v()( + function (e) { + if ((S ? a === U : void 0 !== U) && (e.buttons > 0 || 0 === e.button || (e.touches && 1 === e.touches.length))) { + var t, + r = (0, J.e)(e), + o = r.x, + i = r.y, + s = n.body.getBoundingClientRect(), + c = Ye.current.getBoundingClientRect(), + l = c.top - s.top, + u = (o - (c.left - s.left)) / d, + p = (i - l) / f, + m = { x: (u = Math.min(Math.max(0, u), c.width / d)), y: (p = Math.min(Math.max(0, p), c.height / f)) }; + Pe(function (e) { + return (t = [].concat(Ce(e), [m])); + }), + Ze(function (e) { + return [].concat(Ce(e.slice(0, -1)), [t]); + }); + } + }, + 10, + { leading: !0, maxWait: 30 } + ), + [S, n, U, a, d, f] + ), + dt = (0, l.useCallback)( + function (e) { + var t, + n, + r = Se.find(function (t) { + return t.id === e; + }); + return (!T && r && _.id === r.creator.id && "note" === (null === (t = r.target) || void 0 === t || null === (n = t.selector) || void 0 === n ? void 0 : n.subtype)) || "annotation-placeholder" === e; + }, + [Se, _.id, T] + ), + pt = (0, l.useCallback)( + function (e, t) { + var r, + o = (0, J.K)(e), + a = o.x, + i = o.y, + s = null === (r = e.target) || void 0 === r ? void 0 : r.getRootNode(), + c = n.elementFromPoint(a, i); + if ((s instanceof ShadowRoot && (c = s.elementFromPoint(a, i)), !c || (c.getAttribute("id") !== b.iq && !c.dataset.annotationtype))) return !1; + var l = c.getBoundingClientRect(), + u = l.height, + d = l.left, + p = l.top, + f = l.width; + return a >= d && a <= d + f && i >= p && i <= p + u && (void 0 === t || void 0 === c.dataset.nodeid || t.toString() === c.dataset.nodeid); + }, + [n] + ), + ft = (0, l.useCallback)( + function () { + var e = Se.filter(function (e) { + var t, + n, + r, + a, + i, + s, + c, + l, + u, + d, + p, + f = (null == e || null === (t = e.target) || void 0 === t || null === (n = t.selector) || void 0 === n ? void 0 : n.sectionId) || "root", + m = null == e || null === (r = e.target) || void 0 === r || null === (a = r.selector) || void 0 === a || null === (i = a.node) || void 0 === i ? void 0 : i.id; + return ( + e.annotationType && + (m === A.nodeId || S) && + q.includes(f) && + (!o || + (o && + o.frameNum >= (null === (s = e.target) || void 0 === s || null === (c = s.selector) || void 0 === c || null === (l = c.refinedBy) || void 0 === l ? void 0 : l.start) && + o.frameNum <= (null === (u = e.target) || void 0 === u || null === (d = u.selector) || void 0 === d || null === (p = d.refinedBy) || void 0 === p ? void 0 : p.end))) + ); + }); + return ( + (e = h + ? e.filter(function (e) { + var t, n; + return (null == e || null === (t = e.target) || void 0 === t || null === (n = t.selector) || void 0 === n ? void 0 : n.sectionId) === h; + }) + : e.filter(function (e) { + var t, n; + return void 0 === (null == e || null === (t = e.target) || void 0 === t || null === (n = t.selector) || void 0 === n ? void 0 : n.sectionId); + })), + S && + void 0 !== a && + (e = e.filter(function (e) { + var t, n; + return (null == e || null === (t = e.target) || void 0 === t || null === (n = t.selector) || void 0 === n ? void 0 : n.node.id) === a; + })), + e + ); + }, + [S, A.nodeId, Se, o, a, q, h] + ), + mt = (0, l.useCallback)( + function (e) { + var t, n, r; + if (!e) return !1; + var o = e.annotationType, + a = void 0 === o ? (null === (t = e.target) || void 0 === t || null === (n = t.selector) || void 0 === n ? void 0 : n.subtype) : o, + i = (null === (r = Ye.current) || void 0 === r ? void 0 : r.getBoundingClientRect()) || {}, + s = i.height, + c = i.width; + if (s && c && "node" !== a) { + if ("note" === a) { + var l = e.target.selector.noteX * d, + u = e.target.selector.noteY * f; + return l < c && u < s; + } + var p = e.target.selector.boundingBox, + m = p[2] * d, + h = p[3] * f; + return m < c && h < s; + } + return !0; + }, + [d, f] + ), + ht = (0, l.useCallback)( + function () { + var e, t, n, r; + return ( + Be.forEach(function (o) { + o.forEach(function (o) { + (!e || o.x < e) && (e = o.x), (!t || o.y < t) && (t = o.y), (!n || o.x > n) && (n = o.x), (!r || o.y > r) && (r = o.y); + }); + }), + { minX: e, maxX: n, minY: t, maxY: r } + ); + }, + [Be] + ), + vt = (0, l.useCallback)( + function () { + var e = ht(), + t = e.minX, + n = e.maxX, + r = e.minY, + o = e.maxY; + Be.length && X({ subtype: "shape", boundingBox: [t, r, n, o], inkList: Be, sectionId: h, strokeColor: M }, S ? a : A.nodeId), Q === _e && ee(void 0); + }, + [M, S, A.nodeId, Be, ht, Q, a, X, h, ee] + ), + yt = (0, l.useCallback)( + function (e) { + W && (e.touches || (e.pointerType && "mouse" !== e.poitnerType)) && (k && Ke.current && (clearTimeout(Ke.current), (Ke.current = null)), se && oe(!1)); + }, + [k, W, oe, se] + ), + gt = (0, l.useCallback)( + function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] && arguments[1]; + if ((!S || a === A.nodeId || V || (void 0 !== U && U !== a) || pe(a, h), Je.current && (clearTimeout(Je.current), (Je.current = null)), W || t)) { + var r, + o = (0, J.e)(e), + s = o.x, + c = o.y, + l = n.body.getBoundingClientRect(), + u = (0, J.K)(e), + p = u.x, + m = u.y, + v = null === (r = e.target) || void 0 === r ? void 0 : r.getRootNode(), + y = n.elementFromPoint(p, m); + if (("undefined" != typeof ShadowRoot && v instanceof ShadowRoot && (y = v.elementFromPoint(p, m)), W && !et && ct({ event: { subcategory: "".concat(Q, "-comment"), type: "click", subtype: Q } }), Q === ke)) { + var g, + E, + D, + C, + w = !1, + k = y && y.dataset.sectionid; + "DIV" === y.tagName && y.getAttribute("id") === b.iq && (w = !0), + w + ? ((E = (g = y.getBoundingClientRect()).top - l.top), (D = (s - (g.left - l.left)) / y.dataset.scalefactorx), (C = (c - E) / y.dataset.scalefactory)) + : ((E = (g = Ye.current.getBoundingClientRect()).top - l.top), (D = (s - (g.left - l.left)) / d), (C = (c - E) / f)), + oe(!1); + var _ = !!nt, + T = Se.find(function (e) { + return e.id === L; + }), + I = "root" === L, + O = I || (T && !T.pinNum); + if (pt(e) && (!S || !V || j === a) && ((!_ && W) || O || (_ && nt.id === L))) { + var F, + x, + N = A.useNodeIndex ? Number(y.dataset.nodeid) : y.dataset.nodeid; + I + ? X({ noteX: D - ze, noteY: C - Ge, sectionId: w ? k : h, subtype: "note", strokeColor: M }, S ? N : A.nodeId) + : i( + T.id, + { noteX: D - ze, noteY: C - Ge, sectionId: w ? k : h, subtype: "note", strokeColor: null === (F = T.target) || void 0 === F || null === (x = F.selector) || void 0 === x ? void 0 : x.strokeColor }, + S ? N : void 0 + ); + } + $(!1); + } + } + }, + [L, M, j, S, A.nodeId, A.useNodeIndex, Se, n, U, ct, nt, V, pt, W, Q, a, ze, Ge, pe, i, et, X, d, f, h, $, oe] + ), + bt = (0, l.useCallback)( + function () { + Q === ke && W && (Fe(!0), Re("S")); + }, + [W, Q] + ), + Et = (0, l.useCallback)( + function () { + Q === ke && W && Fe(!1); + }, + [W, Q] + ), + Dt = (0, l.useCallback)( + function (e) { + (e.touches && e.touches.length > 1) || + (e.pointerType && (Qe.current.push(e), Qe.current.length > 1)) || + (e.preventDefault(), + "mouse" === e.pointerType || "mousedown" === e.type || Re("L"), + Q !== _e || + void 0 !== U || + !W || + (S && V && j !== a) || + (ee(S ? a : A.nodeId), + Me.length > 1 && + (Ze(function (e) { + return [].concat(Ce(e), [Me]); + }), + Pe([])))); + }, + [j, S, A.nodeId, Me, U, V, W, Q, a, ee] + ), + Ct = (0, l.useCallback)( + function (e) { + (e.touches && e.touches.length > 1) || + (e.pointerType && Qe.current.length > 1) || + (Ie && "touchmove" === e.type ? e.preventDefault() : ((e.touches && 1 === e.touches.length) || 1 === Qe.current.length || 1 === e.buttons) && W && (e.preventDefault(), Q === _e && ut(e))); + }, + [ut, W, Q] + ), + wt = (0, l.useCallback)( + function (e) { + e.preventDefault(), e.pointerType && (Qe.current = []), gt(e); + var t = e.target.closest("[data-annotationid]"), + n = t && t.dataset.annotationid; + n ? n === G || x || ne(n) : ne(null), W && Q === _e && vt(); + }, + [vt, gt, G, W, Q, ne, x] + ), + St = (0, l.useCallback)( + function (e) { + e.stopPropagation(); + var t = e.target.closest("[data-annotationtype]").dataset.annotationid; + de( + e, + Se.find(function (e) { + return e.id === t; + }), + { autoScroll: !0, allowToggle: !0 } + ); + }, + [Se, de] + ), + At = (0, l.useCallback)( + function (e) { + e.preventDefault(), e.stopPropagation(), k && document.activeElement && document.activeElement.classList.contains("textarea") && document.activeElement.blur(); + var t = e.target.closest("[data-annotationtype]").dataset, + n = t.annotationid, + r = t.annotationtype; + if (!H() || ("annotation-placeholder" === n && "root" === L)) { + var o = (0, J.K)(e), + a = o.x, + i = o.y; + r === ke && (Ve(a - (e.target.getBoundingClientRect().left + 12)), We(i - (e.target.getBoundingClientRect().top + 12))), + W || + ot || + ("annotation-placeholder" !== n && + (k && + (Ke.current = setTimeout(function () { + Ke.current && (Ke.current = null); + }, 200)), + ct({ event: { subcategory: "navigation", type: "click", subtype: r } })), + it || + ((!k || "touchstart" === e.type || (e.pointerType && "mouse" !== e.pointerType)) && + ("annotation-placeholder" !== n || (L && "root" !== L) || "note" !== P.subtype + ? dt(n) && + !V && + (Je.current = setTimeout(function () { + Je.current && ((Je.current = null), $(!0, n, !0, ke)); + }, 200)) + : $(!0)))); + } + }, + [L, P, dt, ot, k, ct, V, H, W, $, it] + ), + kt = (0, l.useCallback)( + function (e) { + if (!W) { + var t = e.target.dataset && e.target.dataset.annotationid; + t || (t = e.target.closest("div").dataset.annotationid), + "annotation-placeholder" !== t && + ue( + e, + Se.find(function (e) { + return e.id === t; + }) + ); + } + }, + [Se, W, ue] + ), + _t = (0, l.useCallback)( + function (e) { + var t, + n, + o, + a, + i, + s, + c, + l = null === (t = e.target) || void 0 === t || null === (n = t.selector) || void 0 === n ? void 0 : n.subtype, + p = !!( + (null !== (o = e.target) && void 0 !== o && null !== (a = o.selector) && void 0 !== a && a.pinModelRootPosition) || + (null !== (i = e.target) && void 0 !== i && null !== (s = i.selector) && void 0 !== s && s["3dData"]) + ), + m = e.id || "annotation-placeholder", + h = null == ot ? void 0 : ot.id, + v = e.recentActivity === b.Uj, + y = e.recentActivity === b.E3, + g = m === h, + E = K === e.id, + D = G === m; + if (!(ae || D || "annotation-placeholder" === m || v || y || g || E)) return null; + var w = { + annotatingItmId: L, + annotationColor: M, + annotationTypes: Z, + commentProposedForDelete: ot, + compactLayout: k, + disableInteraction: r, + hasAnnotationLocation: V, + imsData: _, + isPlacingAnnotation: W, + latestMobileEnabled: I, + scaleFactorX: d, + scaleFactorY: f, + showDraftAnnotations: ie, + showResolvedComments: it, + touchControls: x, + }; + return ( + (!Z || (Z && Z.pin)) && "note" === l && !p + ? (c = u().createElement( + re, + De({}, w, { key: "annotation-marker-".concat(m), touchPressed: se, annotation: e, onClick: St, onPinDown: At, onPinHover: k ? null : kt, annotationId: m, isProposedForDelete: g, isSelected: E, isHovered: D }) + )) + : Z && Z.draw && "shape" === l + ? (c = u().createElement( + C, + De({}, w, { key: "annotation-marker-".concat(m), annotation: e, onClick: St, onDrawingDown: At, onDrawingHover: k ? null : kt, annotationId: m, isProposedForDelete: g, isSelected: E, isHovered: D }) + )) + : Z && Z.highlight && "highlight" === l + ? (c = u().createElement( + B, + De({}, w, { key: "annotation-marker-".concat(m), annotation: e, onClick: St, onHighlightDown: At, onHighlightHover: k ? null : kt, annotationId: m, isProposedForDelete: g, isSelected: E, isHovered: D }) + )) + : Z && Z.strikethrough && "strikethrough" === l + ? (c = u().createElement( + fe, + De({}, w, { key: "annotation-marker-".concat(m), annotation: e, onClick: St, onStrikethroughDown: At, onStrikethroughHover: k ? null : kt, annotationId: m, isProposedForDelete: g, isSelected: E, isHovered: D }) + )) + : Z && Z.insert && "insert" === l + ? (c = u().createElement( + z, + De({}, w, { key: "annotation-marker-".concat(m), annotation: e, onClick: St, onInsertDown: At, onInsertHover: k ? null : kt, annotationId: m, isProposedForDelete: g, isSelected: E, isHovered: D }) + )) + : Z && + Z.replace && + "replace" === l && + (c = u().createElement( + ce, + De({}, w, { key: "annotation-marker-".concat(m), annotation: e, onClick: St, onReplaceDown: At, onReplaceHover: k ? null : kt, annotationId: m, isProposedForDelete: g, isSelected: E, isHovered: D }) + )), + (!v && !y) || D || ae || E ? c : u().createElement(R, { key: m, isVisible: !1 }, c) + ); + }, + [L, M, Z, ot, k, r, St, At, kt, V, G, _, W, I, d, f, K, ae, ie, it, x, se] + ); + (0, l.useEffect)( + function () { + return ( + (($e || h) && $e === h) || Y(A.id, h || "root"), + function () { + var e; + (e = A.useNodeIndex + ? A.validNodes.length - 1 >= j + : A.validNodes + .map(function (e) { + return e.id; + }) + .includes(j)), + !H() || (S && e) || (X(), $(!1)), + Y(A.id, $e || "root", !1); + } + ); + }, + [A.id, $e, h] + ), + (0, l.useEffect)( + function () { + var e = function (e) { + var t = !!e.target.closest("#".concat(b.iq)); + (Q && Q !== ke) || Fe(!!t), !W || Q !== _e || t || ("touchend" !== e.type && "pointerup" !== e.type) || (e.pointerType && (Qe.current = []), vt()); + }, + t = n.defaultView; + return ( + lt && (Xe.current || (Ie ? (t.addEventListener("pointerdown", e, !0), t.addEventListener("pointerup", e, !0)) : (t.addEventListener("touchstart", e, !0), t.addEventListener("touchend", e, !0)), (Xe.current = !0))), + function () { + Xe.current && (Ie ? (t.removeEventListener("pointerdown", e, !0), t.removeEventListener("pointerup", e, !0)) : (t.removeEventListener("touchstart", e, !0), t.removeEventListener("touchend", e, !0)), (Xe.current = !1)); + } + ); + }, + [lt, n.defaultView, vt, W, Q] + ), + (0, l.useEffect)( + function () { + if (Ye.current) { + Ie + ? (Ye.current.addEventListener("pointermove", Ct, !0), Ye.current.addEventListener("pointercancel", wt, !0), Ye.current.addEventListener("touchmove", Ct, !0)) + : (Ye.current.addEventListener("touchmove", Ct, !0), Ye.current.addEventListener("touchcancel", wt, !0), Ye.current.addEventListener("mousemove", Ct, !0)); + var e = Ye.current; + return function () { + e && Ie + ? (e.removeEventListener("pointermove", Ct, !0), e.removeEventListener("pointercancel", wt, !0), e.removeEventListener("touchmove", Ct, !0)) + : (e.removeEventListener("touchmove", Ct, !0), e.removeEventListener("touchcancel", wt, !0), e.removeEventListener("mousemove", Ct, !0)); + }; + } + }, + [wt, Ct] + ), + (0, l.useEffect)( + function () { + et && !V && "shape" === tt.subtype && (Ze([]), Pe([])); + }, + [V, tt, et] + ), + (0, l.useEffect)( + function () { + var e = {}; + ft().forEach(function (t) { + var n, r, o; + S && (null === (n = t.target) || void 0 === n || null === (r = n.selector) || void 0 === r || null === (o = r.node) || void 0 === o ? void 0 : o.id) === a && !mt(t) && (e[t.id] = b.Qy); + }), + Object.entries(at).forEach(function (t) { + var n = we(t, 2), + r = n[0], + o = n[1], + i = Se.find(function (e) { + return e.id === r; + }); + o.original === a && o.current === b.Qy && i && mt(i) && (e[r] = a); + }), + Object.keys(e).length && st((0, ge.$k)(A.id, e)); + }, + [S, A.id, mt, Se, st, ft, o, a, q, at, h, d, f] + ); + var Tt, + It = [ + c.default.component, + "".concat(F, "-theme"), + "".concat(O, "-scale"), + { "annotating-new": W && "highlight" !== Q && "strikethrough" !== Q && "replace" !== Q && Q !== Te, "capture-pointer-events": H(h) && !(V && Q === Te), "hide-cursor": W && Q === ke, highlight: W && E, touch: x }, + ], + Ot = ft(); + if ( + (!Q || (I && !ie) || (!W || (!lt && V) ? Q === Te && lt && (Tt = !0) : (Tt = !0)), + Tt && It.push("addining-annotation-".concat(Q)), + (V && (!I || ie) && (!S || a === j) && ((!h && (1 === q.length || S)) || h === P.sectionId)) || (void 0 !== U && Be.length)) + ) { + var Ft = {}; + if (void 0 === U) Ft.target = { selector: P }; + else { + var xt = ht(), + Nt = xt.minX, + Rt = xt.maxX, + Lt = xt.minY, + Mt = xt.maxY; + Ft.target = { selector: { subtype: "shape", boundingBox: [Nt, Lt, Rt, Mt], inkList: Be, strokeColor: M } }; + } + Ot.unshift(Ft); + } + var Pt, + jt, + Bt = Ot.filter(function (e) { + var t, n; + return "note" === (null === (t = e.target) || void 0 === t || null === (n = t.selector) || void 0 === n ? void 0 : n.subtype); + }); + if (L) { + var Zt, + Ut, + zt = Bt.find(function (e) { + return e.id === L; + }); + Pt = null == zt || null === (Zt = zt.target) || void 0 === Zt || null === (Ut = Zt.selector) || void 0 === Ut ? void 0 : Ut.strokeColor; + } + return ( + W && + lt && + ((q.length && q[0] === h) || !h) && + Q === ke && + (!x || (x && Oe)) && + (jt = u().createElement(te, { annotationTypes: Z, annotationColor: Pt || M, currentDocument: n, offsetX: ze, offsetY: Ge, touchControls: x, size: Ne, ref: qe, onMove: yt })), + u().createElement( + "div", + { + className: m()(It), + "data-nodeid": a, + "data-scalefactorx": d, + "data-scalefactory": f, + "data-sectionid": h, + id: b.iq, + onMouseDownCapture: Ie ? void 0 : Dt, + onMouseEnter: bt, + onMouseLeave: Et, + onMouseUpCapture: Ie ? void 0 : wt, + onPointerDownCapture: Ie ? Dt : void 0, + onPointerUpCapture: Ie ? wt : void 0, + onTouchEndCapture: Ie ? void 0 : wt, + onTouchStartCapture: Ie ? void 0 : Dt, + ref: Ye, + style: D, + }, + Ot.reverse().map(function (e) { + return _t(e); + }), + jt + ) + ); + }; + Oe.propTypes = { + currentDocument: p().object, + disableInteraction: p().bool, + mediaData: p().shape({ frameNum: p().number, frameRange: p().shape({ start: p().number, end: p().number }), frameRate: p().number, unit: p().oneOf(["frame", "tick"]) }), + nodeId: p().oneOfType([p().string, p().number]), + onPinDrop: p().func, + scaleFactorX: p().number, + scaleFactorY: p().number, + sectionId: p().string, + showHighlight: p().bool, + style: p().object, + }; + const Fe = Oe; + var xe = n(64251), + Ne = n(99610), + Re = n(30251); + function Le() { + return ( + (Le = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + Le.apply(this, arguments) + ); + } + function Me(e, t, n, r, o, a, i) { + try { + var s = e[a](i), + c = s.value; + } catch (e) { + return void n(e); + } + s.done ? t(c) : Promise.resolve(c).then(r, o); + } + function Pe(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var je = function (e) { + var t, + n, + r = (0, l.useContext)(y.ZP), + o = r.annotationsEnabled, + a = r.assetData, + i = r.environment, + s = r.imsData, + c = (0, l.useContext)(g.ZP).onGuestSession, + d = + ((t = (0, l.useState)(!1)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return Pe(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Pe(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + p = d[0], + f = d[1], + m = (0, ve.Z)().fireEvent, + h = (0, Ee.I0)(), + v = e.maskStyle, + b = e.maskTextOverride, + E = e.mediaData, + D = e.nodeId, + C = e.useMask; + (0, l.useEffect)( + function () { + E && (0, Re.eP)(E); + }, + [E] + ); + var w = (0, l.useCallback)( + function (e) { + m({ event: { subcategory: "general-error", subtype: "error", type: "render", error_type: e.message && e.message.replace(/\s/g, "-"), error_desc: "annotations-js-error", build: i } }); + }, + [i, m] + ), + S = (0, l.useCallback)(function () { + f(!0); + }, []), + A = (0, l.useCallback)(function () { + f(!1); + }, []), + k = (0, l.useCallback)( + (function () { + var e, + t = + ((e = regeneratorRuntime.mark(function e(t, n, r) { + return regeneratorRuntime.wrap( + function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return (e.prev = 0), (e.next = 3), h((0, ge._E)(t, n, r, a)); + case 3: + m({ event: { subcategory: "pin-comment", type: "click", subtype: "drag-drop" } }), (e.next = 10); + break; + case 6: + (e.prev = 6), + (e.t0 = e.catch(0)), + m({ event: { subcategory: "edit-comment", subtype: "error", type: "render", error_code: e.t0.status, error_type: e.t0.message, error_desc: "comment-failed-to-edit" } }), + s.token.includes("AnonBearer") && 401 === e.t0.status && ((0, Re.I3)(), c("destroy", s)); + case 10: + case "end": + return e.stop(); + } + }, + e, + null, + [[0, 6]] + ); + })), + function () { + var t = this, + n = arguments; + return new Promise(function (r, o) { + var a = e.apply(t, n); + function i(e) { + Me(a, r, o, i, s, "next", e); + } + function s(e) { + Me(a, r, o, i, s, "throw", e); + } + i(void 0); + }); + }); + return function (e, n, r) { + return t.apply(this, arguments); + }; + })(), + [a, h, m, s, c] + ), + _ = D; + if ((a.useNodeIndex && (_ = isNaN(Number(D)) ? D : Number(D)), !o)) return null; + var T = u().createElement(Fe, Le({}, e, { nodeId: _, onPinDrop: k })); + return C + ? u().createElement( + Ne.Z, + { onError: w }, + u().createElement( + "div", + { onMouseEnter: S, onMouseLeave: A, style: { pointerEvents: "none", position: "absolute", touchAction: "pinch-zoom", height: "100%", width: "100%", top: 0 } }, + T, + u().createElement(xe.Z, { hovered: p, maskTextOverride: b, style: v }) + ) + ) + : T; + }; + (je.propTypes = { + currentDocument: p().object, + disableInteraction: p().bool, + maskStyle: p().object, + maskTextOverride: p().string, + mediaData: p().object, + nodeId: p().string, + scaleFactorX: p().number, + scaleFactorY: p().number, + sectionId: p().string, + showHighlight: p().bool, + useMask: p().bool, + }), + (je.defaultProps = { disableInteraction: !1, scaleFactorX: 1, scaleFactorY: 1, showHighlight: !1, useMask: !1 }); + const Be = je; + }, + 37370: (e, t, n) => { + "use strict"; + n.d(t, { ZP: () => om }); + var r = {}; + n.r(r); + var o = {}; + n.r(o); + var a = {}; + n.r(a); + var i = {}; + n.r(i); + var s = {}; + n.r(s); + var c = {}; + n.r(c); + var l = {}; + n.r(l); + var u = {}; + n.r(u); + var d = {}; + n.r(d); + var p = {}; + n.r(p); + var f = {}; + n.r(f); + var m = {}; + n.r(m); + var h = {}; + n.r(h); + var v = {}; + n.r(v); + var y = {}; + n.r(y); + var g = {}; + n.r(g); + var b = {}; + n.r(b); + var E = {}; + n.r(E); + var D = {}; + n.r(D); + var C = {}; + n.r(C); + var w = {}; + n.r(w); + var S = {}; + n.r(S); + var A = {}; + n.r(A); + var k = {}; + n.r(k); + var _ = {}; + n.r(_); + var T = {}; + n.r(T); + var I = {}; + n.r(I); + var O = {}; + n.r(O); + var F = {}; + n.r(F); + var x = {}; + n.r(x); + var N = {}; + n.r(N); + var R = {}; + n.r(R); + var L = {}; + n.r(L); + var M = {}; + n.r(M); + var P = {}; + n.r(P); + var j = {}; + n.r(j); + var B = {}; + n.r(B); + var Z = {}; + n.r(Z); + var U = {}; + n.r(U); + var z = n(23469), + V = n.n(z), + H = n(47776), + G = n.n(H), + W = n(57305), + Q = n.n(W), + J = n(54215), + Y = n.n(J), + q = n(93353), + X = n.n(q), + K = n(2442), + $ = n(9076), + ee = n(28386), + te = n(67733), + ne = n(99610), + re = n(23492), + oe = n(69522), + ae = n(30251), + ie = n(73531), + se = n(15686), + ce = n(95545), + le = n(24681), + ue = n(84514), + de = (n(66084), n(80963)), + pe = n(9323), + fe = function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + }; + const me = (0, pe.Z)(n(97915)).default; + function he(e) { + var t, n, r; + if (e) + return V().cloneElement(e, { + key: e.key || `key-${(null === (n = null === (t = e.type) || void 0 === t ? void 0 : t.render) || void 0 === n ? void 0 : n.displayName) || (null === (r = e.type) || void 0 === r ? void 0 : r.displayName)}`, + slot: "icon", + }); + } + const ve = (0, ue.Z)({ + displayName: "Button", + fallback: me, + swcLoader: void 0, + swcProps: (e) => { + const t = he(e.icon), + { autoFocus: n, className: r, children: o, disabled: a, holdAffordance: i, quiet: s, variant: c, dropdownTrigger: l, icon: u, label: d, uxpUseNative: p, treatment: f, selected: m } = e, + h = fe(e, ["autoFocus", "className", "children", "disabled", "holdAffordance", "quiet", "variant", "dropdownTrigger", "icon", "label", "uxpUseNative", "treatment", "selected"]), + v = (0, de.cd)({ autofocus: n, disabled: a, "hold-affordance": i, quiet: s }), + y = (function (e, t) { + switch (e) { + case "cta": + return { variant: "accent", treatment: t || "fill" }; + case "primary": + case "secondary": + return { variant: e, treatment: t || "outline" }; + case "warning": + return { variant: "negative", treatment: t || "outline" }; + case "overBackground": + return { variant: "white", treatment: t || "outline" }; + case "action": + case "tool": + case "and": + case "or": + return {}; + case void 0: + return { variant: "primary", treatment: "outline" }; + default: + return { variant: e }; + } + })(c, f), + g = d || ("string" == typeof o ? o : null); + return Object.assign(Object.assign(Object.assign(Object.assign({}, h), v), y), { children: [t, g, "string" != typeof o && o], class: r }); + }, + tagName: "sp-button", + }), + ye = (0, ue.Z)({ + displayName: "ActionButton", + fallback: me, + swcLoader: void 0, + swcProps: (e) => { + const { autoFocus: t, children: n, className: r, disabled: o, holdAffordance: a, quiet: i, selected: s, variant: c, dropdownTrigger: l, icon: u, label: d, uxpUseNative: p } = e, + f = fe(e, ["autoFocus", "children", "className", "disabled", "holdAffordance", "quiet", "selected", "variant", "dropdownTrigger", "icon", "label", "uxpUseNative"]), + m = he(u), + h = (function (e) { + return "tool" === e ? { quiet: !0 } : {}; + })(c), + v = (0, de.cd)({ autofocus: t, disabled: o, "hold-affordance": a, quiet: i, selected: s }), + y = d || ("string" == typeof n ? n : null); + return Object.assign(Object.assign(Object.assign(Object.assign({}, f), v), h), { children: [m, y, "string" != typeof n && n], class: r }); + }, + tagName: "sp-action-button", + }), + ge = (0, z.forwardRef)(function (e, t) { + return "action" === e.variant || "tool" === e.variant || "and" === e.variant || "or" === e.variant || ("secondary" === e.variant && e.quiet) || ("primary" === e.variant && e.quiet) + ? V().createElement(ye, Object.assign(Object.assign({}, e), { ref: t })) + : V().createElement(ve, Object.assign(Object.assign({}, e), { ref: t })); + }); + const be = (0, pe.Z)(n(9287)).Toast, + Ee = (0, ue.Z)({ + displayName: "Toast", + fallback: be, + swcLoader: void 0, + SWCWrapper: function (e) { + const t = (0, z.useRef)(null), + { variant: n, className: r, actionLabel: o, children: a, closeOnAction: i, onAction: s, onClose: c, closable: l, open: u = !0 } = e, + d = (function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + })(e, ["variant", "className", "actionLabel", "children", "closeOnAction", "onAction", "onClose", "closable", "open"]); + (0, z.useEffect)(() => { + const e = null == t ? void 0 : t.current; + return e && c && e.addEventListener("close", c), () => (e && c ? e.removeEventListener("close", c) : void 0); + }); + const p = "success" === n ? "positive" : "error" === n ? "negative" : n, + f = (0, de.Co)("sp-toast"); + return V().createElement( + f, + Object.assign(Object.assign(Object.assign({}, d), (0, de.cd)({ open: u })), { class: r, ref: t, variant: p }), + a, + o && + V().createElement( + ge, + { + slot: "action", + variant: "overBackground", + onClick: () => { + var e; + null == s || s(), i && (null === (e = t.current) || void 0 === e || e.close()); + }, + }, + o + ) + ); + }, + tagName: "sp-toast", + }); + var De = ["children", "className", "element", "focusable"]; + function Ce() { + return ( + (Ce = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + Ce.apply(this, arguments) + ); + } + function we(e) { + var t = e.children, + n = e.className, + r = e.element, + o = void 0 === r ? "span" : r, + a = e.focusable, + i = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = {}, + a = Object.keys(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (o[n] = e[n]); + return o; + })(e, t); + if (Object.getOwnPropertySymbols) { + var a = Object.getOwnPropertySymbols(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (Object.prototype.propertyIsEnumerable.call(e, n) && (o[n] = e[n])); + } + return o; + })(e, De); + return V().createElement(o, Ce({ className: X()("custom-visually-hidden", { "is-focusable": a }, n) }, i), t); + } + (we.propTypes = { className: G().string, element: G().oneOfType([G().string, G().func]), focusable: G().bool, children: G().node }), (we.defaultProps = { element: "span", focusable: !1 }); + var Se = n(60954), + Ae = n(633); + function ke(e, t) { + if (e) { + if ("string" == typeof e) return _e(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? _e(e, t) : void 0; + } + } + function _e(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var Te = (0, z.createContext)(), + Ie = [ + "input:not([disabled]):not([type=hidden])", + "select:not([disabled])", + "textarea:not([disabled])", + "button:not([disabled])", + "a[href]", + "area[href]", + "summary", + "iframe", + "object", + "embed", + "audio[controls]", + "video[controls]", + "[contenteditable]", + "[tabindex]", + ].join(':not([tabindex="-1"]),'); + function Oe(e) { + var t, + n, + r = e.children, + o = + ((t = (0, z.useState)([])), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + ke(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + a = o[0], + i = o[1], + s = (0, z.useCallback)( + function (e) { + var t = a.find(function (t) { + return t === e; + }); + e && + !t && + i(function (t) { + return [].concat( + (function (e) { + return ( + (function (e) { + if (Array.isArray(e)) return _e(e); + })(e) || + (function (e) { + if (("undefined" != typeof Symbol && null != e[Symbol.iterator]) || null != e["@@iterator"]) return Array.from(e); + })(e) || + ke(e) || + (function () { + throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + })(t), + [e] + ); + }); + }, + [a] + ), + c = (0, z.useCallback)(function (e) { + e && + i(function (t) { + return t.filter(function (t) { + return t !== e; + }); + }); + }, []), + l = (0, z.useMemo)( + function () { + return { focusableElements: a, registerElement: s, unregisterElement: c }; + }, + [a, s, c] + ); + return V().createElement(Te.Provider, { value: l }, r); + } + function Fe(e, t) { + var n = t.key, + r = t.shiftKey, + o = t.target, + a = t.type; + if (e && "keydown" === a && "Tab" === n) { + var i = e.querySelectorAll(Ie) || [], + s = Array.from(i), + c = s.findIndex(function (e) { + return e === o; + }), + l = s[(c + (r ? -1 : 1) + s.length) % s.length]; + l && (t.preventDefault(), t.stopPropagation(), l.focus()); + } + } + Oe.propTypes = { children: G().node }; + const xe = Te; + var Ne = n(76951), + Re = Object.defineProperty, + Le = (e, t, n) => ( + ((e, t, n) => { + t in e ? Re(e, t, { enumerable: !0, configurable: !0, writable: !0, value: n }) : (e[t] = n); + })(e, "symbol" != typeof t ? t + "" : t, n), + n + ), + Me = new Map(), + Pe = new WeakMap(), + je = 0, + Be = void 0; + function Ze(e, t, n = {}, r = Be) { + if (void 0 === window.IntersectionObserver && void 0 !== r) { + const o = e.getBoundingClientRect(); + return t(r, { isIntersecting: r, target: e, intersectionRatio: "number" == typeof n.threshold ? n.threshold : 0, time: 0, boundingClientRect: o, intersectionRect: o, rootBounds: o }), () => {}; + } + const { id: o, observer: a, elements: i } = (function (e) { + const t = (function (e) { + return Object.keys(e) + .sort() + .filter((t) => void 0 !== e[t]) + .map((t) => { + return `${t}_${"root" === t ? ((n = e.root), n ? (Pe.has(n) || ((je += 1), Pe.set(n, je.toString())), Pe.get(n)) : "0") : e[t]}`; + var n; + }) + .toString(); + })(e); + let n = Me.get(t); + if (!n) { + const r = new Map(); + let o; + const a = new IntersectionObserver((t) => { + t.forEach((t) => { + var n; + const a = t.isIntersecting && o.some((e) => t.intersectionRatio >= e); + e.trackVisibility && void 0 === t.isVisible && (t.isVisible = a), + null == (n = r.get(t.target)) || + n.forEach((e) => { + e(a, t); + }); + }); + }, e); + (o = a.thresholds || (Array.isArray(e.threshold) ? e.threshold : [e.threshold || 0])), (n = { id: t, observer: a, elements: r }), Me.set(t, n); + } + return n; + })(n), + s = i.get(e) || []; + return ( + i.has(e) || i.set(e, s), + s.push(t), + a.observe(e), + function () { + s.splice(s.indexOf(t), 1), 0 === s.length && (i.delete(e), a.unobserve(e)), 0 === i.size && (a.disconnect(), Me.delete(o)); + } + ); + } + var Ue = class extends z.Component { + constructor(e) { + super(e), + Le(this, "node", null), + Le(this, "_unobserveCb", null), + Le(this, "handleNode", (e) => { + this.node && (this.unobserve(), e || this.props.triggerOnce || this.props.skip || this.setState({ inView: !!this.props.initialInView, entry: void 0 })), (this.node = e || null), this.observeNode(); + }), + Le(this, "handleChange", (e, t) => { + e && this.props.triggerOnce && this.unobserve(), + (function (e) { + return "function" != typeof e.children; + })(this.props) || this.setState({ inView: e, entry: t }), + this.props.onChange && this.props.onChange(e, t); + }), + (this.state = { inView: !!e.initialInView, entry: void 0 }); + } + componentDidMount() { + this.unobserve(), this.observeNode(); + } + componentDidUpdate(e) { + (e.rootMargin === this.props.rootMargin && e.root === this.props.root && e.threshold === this.props.threshold && e.skip === this.props.skip && e.trackVisibility === this.props.trackVisibility && e.delay === this.props.delay) || + (this.unobserve(), this.observeNode()); + } + componentWillUnmount() { + this.unobserve(); + } + observeNode() { + if (!this.node || this.props.skip) return; + const { threshold: e, root: t, rootMargin: n, trackVisibility: r, delay: o, fallbackInView: a } = this.props; + this._unobserveCb = Ze(this.node, this.handleChange, { threshold: e, root: t, rootMargin: n, trackVisibility: r, delay: o }, a); + } + unobserve() { + this._unobserveCb && (this._unobserveCb(), (this._unobserveCb = null)); + } + render() { + const { children: e } = this.props; + if ("function" == typeof e) { + const { inView: t, entry: n } = this.state; + return e({ inView: t, entry: n, ref: this.handleNode }); + } + const { as: t, triggerOnce: n, threshold: r, root: o, rootMargin: a, onChange: i, skip: s, trackVisibility: c, delay: l, initialInView: u, fallbackInView: d, ...p } = this.props; + return z.createElement(t || "div", { ref: this.handleNode, ...p }, e); + } + }; + function ze({ threshold: e, delay: t, trackVisibility: n, rootMargin: r, root: o, triggerOnce: a, skip: i, initialInView: s, fallbackInView: c, onChange: l } = {}) { + var u; + const [d, p] = z.useState(null), + f = z.useRef(), + [m, h] = z.useState({ inView: !!s, entry: void 0 }); + (f.current = l), + z.useEffect(() => { + if (i || !d) return; + let s; + return ( + (s = Ze( + d, + (e, t) => { + h({ inView: e, entry: t }), f.current && f.current(e, t), t.isIntersecting && a && s && (s(), (s = void 0)); + }, + { root: o, rootMargin: r, threshold: e, trackVisibility: n, delay: t }, + c + )), + () => { + s && s(); + } + ); + }, [Array.isArray(e) ? e.toString() : e, d, o, r, a, i, n, c, t]); + const v = null == (u = m.entry) ? void 0 : u.target, + y = z.useRef(); + d || !v || a || i || y.current === v || ((y.current = v), h({ inView: !!s, entry: void 0 })); + const g = [p, m.inView, m.entry]; + return (g.ref = g[0]), (g.inView = g[1]), (g.entry = g[2]), g; + } + var Ve = n(69088); + function He(e, t) { + if (e) { + if ("string" == typeof e) return Ge(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Ge(e, t) : void 0; + } + } + function Ge(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var We = "ArrowDown", + Qe = "ArrowUp", + Je = "Home", + Ye = [We, "ArrowLeft", "ArrowRight", Qe, "End", Je], + qe = ["textarea"]; + const Xe = function (e) { + var t, + n, + r = ((t = (0, z.useState)(!1)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + He(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })())[1], + o = (0, z.useContext)(xe); + if (void 0 === o) throw new Error("useA11y must be used within a A11yProvider"); + var a = o.registerElement, + i = o.unregisterElement, + s = o.focusableElements, + c = s.findIndex(function (t) { + return t === e; + }), + l = s.length; + return ( + (0, z.useEffect)( + function () { + return ( + e || r(!0), + a(e), + function () { + return i(e); + } + ); + }, + [e] + ), + { + onKeyDown: function (e) { + if ( + Ye.includes(e.key) && + !(function (e) { + return ( + (function (e) { + if (Array.isArray(e)) return Ge(e); + })(e) || + (function (e) { + if (("undefined" != typeof Symbol && null != e[Symbol.iterator]) || null != e["@@iterator"]) return Array.from(e); + })(e) || + He(e) || + (function () { + throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + })(e.target.classList).some(function (e) { + return qe.includes(e); + }) + ) + switch (e.key) { + case We: + e.preventDefault(), s[(c + 1) % l].focus(); + break; + case Qe: + e.preventDefault(), s[(c + l - 1) % l].focus(); + break; + case Je: + e.preventDefault(), s[0].focus(); + break; + case "End": + e.preventDefault(), s[l - 1].focus(); + } + }, + } + ); + }; + var Ke = n(89941), + $e = n(9097), + et = n(39589), + tt = n(88133), + nt = n(13795), + rt = n(52167), + ot = 3600; + function at(e) { + var t = Math.abs(e); + return t < 60 ? "second" : t < ot ? "minute" : t < 86400 ? "hour" : "day"; + } + function it(e) { + switch (e) { + case "second": + return 1; + case "minute": + return 60; + case "hour": + return ot; + default: + return 86400; + } + } + var st = ["second", "minute", "hour"]; + function ct(e) { + return void 0 === e && (e = "second"), st.indexOf(e) > -1; + } + var lt = function (e) { + var t = (0, Ne.Z)(), + n = t.formatRelativeTime, + r = t.textComponent, + o = e.children, + a = n(e.value || 0, e.unit, (0, nt.__rest)(e, ["children", "value", "unit"])); + return "function" == typeof o ? o(a) : r ? z.createElement(r, null, a) : z.createElement(z.Fragment, null, a); + }, + ut = function (e) { + var t = e.value, + n = e.unit, + r = e.updateIntervalInSeconds, + o = (0, nt.__rest)(e, ["value", "unit", "updateIntervalInSeconds"]); + (0, rt.kG)(!r || !(!r || !ct(n)), "Cannot schedule update with unit longer than hour"); + var a, + i = z.useState(), + s = i[0], + c = i[1], + l = z.useState(0), + u = l[0], + d = l[1], + p = z.useState(0), + f = p[0], + m = p[1]; + (n === s && t === u) || + (d(t || 0), + c(n), + m( + ct(n) + ? (function (e, t) { + if (!e) return 0; + switch (t) { + case "second": + return e; + case "minute": + return 60 * e; + default: + return e * ot; + } + })(t, n) + : 0 + )), + z.useEffect( + function () { + function e() { + clearTimeout(a); + } + if ((e(), !r || !ct(n))) return e; + var t = f - r, + o = at(t); + if ("day" === o) return e; + var i = it(o), + s = t - (t % i), + c = s >= f ? s - i : s, + l = Math.abs(c - f); + return ( + f !== c && + (a = setTimeout(function () { + return m(c); + }, 1e3 * l)), + e + ); + }, + [f, r, n] + ); + var h = t || 0, + v = n; + if (ct(n) && "number" == typeof f && r) { + var y = it((v = at(f))); + h = Math.round(f / y); + } + return z.createElement(lt, (0, nt.__assign)({ value: h, unit: v }, o)); + }; + (ut.displayName = "FormattedRelativeTime"), (ut.defaultProps = { value: 0, unit: "second" }); + const dt = ut; + var pt, ft; + !(function (e) { + (e.formatDate = "FormattedDate"), (e.formatTime = "FormattedTime"), (e.formatNumber = "FormattedNumber"), (e.formatList = "FormattedList"), (e.formatDisplayName = "FormattedDisplayName"); + })(pt || (pt = {})), + (function (e) { + (e.formatDate = "FormattedDateParts"), (e.formatTime = "FormattedTimeParts"), (e.formatNumber = "FormattedNumberParts"), (e.formatList = "FormattedListParts"); + })(ft || (ft = {})); + var mt = function (e) { + var t = (0, Ne.Z)(), + n = e.value, + r = e.children, + o = (0, nt.__rest)(e, ["value", "children"]); + return r(t.formatNumberToParts(n, o)); + }; + function ht(e) { + var t = function (t) { + var n = (0, Ne.Z)(), + r = t.value, + o = t.children, + a = (0, nt.__rest)(t, ["value", "children"]), + i = "string" == typeof r ? new Date(r || 0) : r; + return o("formatDate" === e ? n.formatDateToParts(i, a) : n.formatTimeToParts(i, a)); + }; + return (t.displayName = ft[e]), t; + } + function vt(e) { + var t = function (t) { + var n = (0, Ne.Z)(), + r = t.value, + o = t.children, + a = (0, nt.__rest)(t, ["value", "children"]), + i = n[e](r, a); + if ("function" == typeof o) return o(i); + var s = n.textComponent || z.Fragment; + return z.createElement(s, null, i); + }; + return (t.displayName = pt[e]), t; + } + (mt.displayName = "FormattedNumberParts"), (mt.displayName = "FormattedNumberParts"); + var yt = vt("formatDate"), + gt = (vt("formatTime"), vt("formatNumber"), vt("formatList"), vt("formatDisplayName"), ht("formatDate"), ht("formatTime"), n(69050)), + bt = function () { + return ( + (bt = + Object.assign || + function (e) { + for (var t, n = 1, r = arguments.length; n < r; n++) for (var o in (t = arguments[n])) Object.prototype.hasOwnProperty.call(t, o) && (e[o] = t[o]); + return e; + }), + bt.apply(this, arguments) + ); + }, + Et = { second: 45, minute: 45, hour: 22, day: 5 }, + Dt = n(14863); + const Ct = (0, pe.Z)(n(80739)).default, + wt = (0, ue.Z)({ + displayName: "Link", + fallback: Ct, + swcLoader: void 0, + swcProps: (e) => { + const { className: t, variant: n } = e, + r = (function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + })(e, ["className", "variant"]); + return Object.assign(Object.assign(Object.assign({}, r), (0, de.cd)({ quiet: "quiet" !== n })), { class: t, static: "overBackground" === n ? "white" : void 0, variant: "quiet" === n ? "secondary" : void 0 }); + }, + tagName: "sp-link", + }); + const St = (0, pe.Z)(n(26662)).default, + At = { + left: "left", + right: "right", + top: "top", + bottom: "bottom", + "top left": "top-start", + "top right": "top-end", + "bottom left": "bottom-start", + "bottom right": "bottom-end", + "left top": "left-start", + "left bottom": "left-end", + "right top": "right-start", + "right bottom": "right-end", + }, + kt = ["hover", "focus"], + _t = (0, ue.Z)({ + displayName: "OverlayTrigger", + fallback: St, + swcLoader: void 0, + SWCWrapper: function (e) { + var t, n; + const { trigger: r = kt, children: o, className: a, onHide: i, onShow: s, disabled: c, delayShow: l, boundariesElement: u, show: d } = e, + p = (function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + })(e, ["trigger", "children", "className", "onHide", "onShow", "disabled", "delayShow", "boundariesElement", "show"]), + f = V().Children.toArray(o), + m = (0, z.useRef)(null), + h = "object" == typeof r ? r : r ? [r] : [], + v = [], + y = [], + g = e.placement ? At[e.placement] : "left"; + if ( + ((0, z.useEffect)(() => { + const e = null == m ? void 0 : m.current; + return ( + e && s && e.addEventListener("sp-opened", s), + e && i && e.addEventListener("sp-closed", i), + () => { + e && s && e.removeEventListener("sp-opened", s), e && i && e.removeEventListener("sp-closed", i); + } + ); + }, [s, i]), + h.forEach((e) => { + (null == e ? void 0 : e.includes("hover")) || (null == e ? void 0 : e.includes("focus")) + ? v.push("hover-content") + : (null == e ? void 0 : e.includes("click")) + ? v.push("click-content") + : (null == e ? void 0 : e.includes("longClick")) && v.push("longpress-content"); + }), + v.length && 2 === f.length) + ) { + const e = f[0], + r = f[1]; + if (null === (t = e.props) || void 0 === t ? void 0 : t.slot) y.push(e); + else { + const t = V().cloneElement(e, { slot: "trigger" }); + y.push(t); + } + (null === (n = r.props) || void 0 === n ? void 0 : n.slot) + ? y.push(r) + : v.forEach((e) => { + const t = V().cloneElement(r, { slot: e, delayed: !!l || void 0 }); + y.push(t); + }); + } + const b = (0, de.Co)("overlay-trigger"); + return V().createElement(b, Object.assign(Object.assign(Object.assign({}, p), (0, de.cd)({ disabled: c })), { placement: g, class: a, ref: m }), y.length ? y : o); + }, + tagName: "overlay-trigger", + }); + const Tt = (0, pe.Z)(n(68173)).default, + It = (0, ue.Z)({ + displayName: "Tooltip", + fallback: Tt, + swcLoader: void 0, + swcProps: (e) => { + const { className: t } = e, + n = (function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + })(e, ["className"]); + return Object.assign(Object.assign({}, n), { class: t }); + }, + tagName: "sp-tooltip", + }); + var Ot = n(92445); + const Ft = (0, pe.Z)(n(70449)).default, + xt = (0, ue.Z)({ displayName: "Send", fallback: Ft, swcLoader: void 0, swcProps: Ot.m, tagName: "sp-icon-send" }), + Nt = (0, pe.Z)(n(30871)).default, + Rt = (0, ue.Z)({ displayName: "ChevronRight", fallback: Nt, swcLoader: void 0, swcProps: Ot.m, tagName: "sp-icon-chevron-right" }); + var Lt = function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + }; + const Mt = n(67021).default, + Pt = (0, ue.Z)({ + displayName: "DropdownButton", + fallback: (e) => { + const { children: t } = e, + n = Lt(e, ["children"]); + return Mt + ? V().createElement( + Mt, + Object.assign({}, n), + V().Children.map(t, (e) => (V().isValidElement(e) ? V().cloneElement(e, { forceFallback: !0 }) : e)) + ) + : null; + }, + swcLoader: void 0, + SWCWrapper: (e) => { + const t = (0, z.useRef)(null), + { className: n, children: r, icon: o, label: a, onSelect: i, disabled: s, focused: c, invalid: l, open: u, quiet: d, readonly: p, alignRight: f, placement: m, "aria-label": h } = e, + v = Lt(e, ["className", "children", "icon", "label", "onSelect", "disabled", "focused", "invalid", "open", "quiet", "readonly", "alignRight", "placement", "aria-label"]), + y = (function (e) { + if (e) return V().cloneElement(e, { slot: "icon" }); + })(o), + g = a ? V().createElement("span", { slot: "label" }, a) : null, + b = f ? "bottom-end" : m; + (0, z.useEffect)(() => { + const { current: e } = t, + n = (e) => { + const t = e.target; + null == i || i(t.value); + }; + return ( + e && i && e.addEventListener("change", n), + () => { + e && i && e.removeEventListener("change", n); + } + ); + }, [i]); + const E = Object.assign(Object.assign(Object.assign({}, (0, de.cd)({ disabled: s, focused: c, invalid: l, open: u, quiet: d, readonly: p })), { label: h, placement: b }), v), + D = (0, de.Co)("sp-action-menu"); + return V().createElement(D, Object.assign({ ref: t, class: n }, E), y, g, "string" != typeof r && r); + }, + tagName: "sp-action-menu", + }); + var jt = n(23613); + const Bt = (0, pe.Z)(n(80410)).default, + Zt = { small: "s", medium: "m", large: "l" }, + Ut = (0, ue.Z)({ + displayName: "Rule", + fallback: Bt, + swcLoader: void 0, + swcProps: (e) => { + const { className: t, variant: n = "large" } = e, + r = (function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + })(e, ["className", "variant"]), + o = Zt[n]; + return Object.assign(Object.assign({}, r), { class: t, size: o }); + }, + tagName: "sp-divider", + }); + const zt = (0, pe.Z)(n(35326)).default, + Vt = ({ text: e }) => + V().createElement( + "span", + { + style: { + fontSize: "var(--spectrum-global-dimension-static-font-size-300)", + fontWeight: "var(--spectrum-global-font-weight-bold)", + color: "var(--spectrum-alias-heading-text-color)", + paddingBottom: "var( --spectrum-global-dimension-size-175)", + }, + }, + e + ), + Ht = (0, ue.Z)({ + displayName: "Popover", + fallback: zt, + swcLoader: void 0, + SWCWrapper: function (e) { + const { children: t, className: n, contentStyle: r, enablePortaling: o = !1, open: a, placement: i, title: s, trapFocus: c, isDialog: l, role: u } = e, + d = (function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + })(e, ["children", "className", "contentStyle", "enablePortaling", "open", "placement", "title", "trapFocus", "isDialog", "role"]), + p = Object.assign({ color: "var(--spectrum-alias-text-color)", fontSize: "var(--spectrum-global-dimension-static-font-size-100)", fontWeight: "var(--spectrum-global-font-weight-regular)" }, r), + f = []; + s && "" != s && f.push(V().createElement(Vt, { key: "heading", text: s }), V().createElement(Ut, { key: "rule", style: { marginBottom: "var( --spectrum-global-dimension-size-175)" }, variant: "medium" })), + f.push(V().createElement("div", { key: "popover-children", style: p }, t)); + const m = (0, z.useRef)(null), + [, h] = (0, z.useState)(!1); + (0, z.useEffect)(() => { + o && h(!0); + }, [o]); + const v = o ? V().createElement("div", { ref: m }) : f, + y = (0, de.Co)("sp-popover"); + return V().createElement( + V().Fragment, + null, + V().createElement(y, Object.assign(Object.assign(Object.assign({}, d), (0, de.cd)({ open: a, tip: !!i })), { class: n, dialog: !0, placement: i }), v), + o && m.current && (0, jt.createPortal)(f, m.current) + ); + }, + tagName: "sp-popover", + }); + function Gt(e) { + return function (t) { + e.forEach((e) => { + e && ("function" != typeof e ? (e.current = t) : e(t)); + }); + }; + } + var Wt = function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + }; + const Qt = (0, pe.Z)(n(87630)); + let Jt; + (0, ue.Z)({ + displayName: "Menu", + fallback: Qt.Menu, + swcLoader: Jt, + SWCWrapper: (0, z.forwardRef)(function (e, t) { + const n = (0, z.useRef)(null), + r = t || n, + { className: o, open: a, slot: i, style: s, onSelect: c, onClose: l } = e, + u = Wt(e, ["className", "open", "slot", "style", "onSelect", "onClose"]); + (0, z.useEffect)(() => { + const { current: e } = r, + t = (e) => { + const t = e.target; + null == c || c(t.value); + }; + return ( + e && c && e.addEventListener("change", t), + () => { + e && c && e.removeEventListener("change", t); + } + ); + }, [c, r]), + (0, z.useEffect)(() => { + const { current: e } = r; + return ( + e && l && e.addEventListener("close", l), + () => { + e && l && e.removeEventListener("close", l); + } + ); + }, [l, r]); + const d = (0, de.Co)("sp-menu"); + return V().createElement(Ht, { open: a, title: "", style: Object.assign({ minWidth: "min-content", padding: 0 }, s), slot: i }, V().createElement(d, Object.assign({ ref: r, class: o }, u))); + }), + tagName: "sp-menu", + }); + const Yt = (0, ue.Z)({ + displayName: "MenuItem", + fallback: Qt.MenuItem, + swcLoader: Jt, + swcProps: function (e) { + const { children: t, description: n, disabled: r, icon: o, selected: a, valueContent: i, className: s } = e, + c = Wt(e, ["children", "description", "disabled", "icon", "selected", "valueContent", "className"]), + l = (function (e) { + if (e) return V().cloneElement(e, { slot: "icon" }); + })(o), + u = (function (e) { + if (e) return V().cloneElement(e, { slot: "value" }); + })(i); + return Object.assign(Object.assign(Object.assign({ class: s }, c), (0, de.cd)({ disabled: r, selected: a })), { + children: V().createElement(V().Fragment, null, l, t, n && V().createElement("span", { slot: "description" }, n), u), + }); + }, + tagName: "sp-menu-item", + }), + qt = (0, ue.Z)({ + displayName: "MenuDivider", + fallback: Qt.MenuDivider, + swcLoader: Jt, + swcProps: function (e) { + const { className: t } = e, + n = Wt(e, ["className"]); + return Object.assign({ class: t }, n); + }, + tagName: "sp-menu-divider", + }); + (0, ue.Z)({ + displayName: "MenuHeading", + fallback: Qt.MenuHeading, + swcLoader: Jt, + swcProps: function (e) { + const { children: t } = e, + n = Wt(e, ["children"]); + return Object.assign(Object.assign({}, n), { children: V().createElement("span", { slot: "header" }, t) }); + }, + tagName: "sp-menu-group", + }), + (0, ue.Z)({ + displayName: "SubMenu", + fallback: Qt.SubMenu, + swcLoader: Jt, + SWCWrapper: function (e) { + const { label: t, children: n } = e, + r = Wt(e, ["label", "children"]), + o = (0, de.Co)("sp-menu"), + a = (0, de.Co)("sp-menu-item"); + return V().createElement(a, Object.assign({}, r), t, V().createElement(o, { slot: "submenu" }, n)); + }, + tagName: "sp-menu-item", + }), + (0, ue.Z)({ + displayName: "MenuGroup", + fallback: void 0, + swcLoader: Jt, + SWCWrapper: (0, z.forwardRef)(function (e, t) { + const n = (0, z.useRef)(null), + { className: r, children: o, onSelect: a } = e, + i = Wt(e, ["className", "children", "onSelect"]); + (0, z.useEffect)(() => { + const { current: e } = n, + t = (e) => { + const t = e.target; + null == a || a(t.value); + }; + return ( + e && a && e.addEventListener("change", t), + () => { + e && a && e.removeEventListener("change", t); + } + ); + }, [a, n]); + const s = (0, de.Co)("sp-menu-group"); + return V().createElement(s, Object.assign({ ref: Gt([t, n]), class: r }, i), o); + }), + tagName: "sp-menu-group", + }); + var Xt = ["icon", "isSwcEnabled", "onMenuItemSelect", "value", "visible", "isDisabled"]; + function Kt() { + return ( + (Kt = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + Kt.apply(this, arguments) + ); + } + var $t = V().memo(function (e) { + var t = e.icon, + n = e.isSwcEnabled, + r = e.onMenuItemSelect, + o = e.value, + a = e.visible, + i = e.isDisabled, + s = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = {}, + a = Object.keys(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (o[n] = e[n]); + return o; + })(e, t); + if (Object.getOwnPropertySymbols) { + var a = Object.getOwnPropertySymbols(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (Object.prototype.propertyIsEnumerable.call(e, n) && (o[n] = e[n])); + } + return o; + })(e, Xt), + c = {}; + return n && (c["--spectrum-listitem-texticon-height"] = "50px"), a ? V().createElement(Yt, Kt({ disabled: i, onClick: r }, s, { role: "menuitem", style: c }), t, o) : null; + }); + ($t.defaultProps = { icon: null, isDisabled: !1, value: null, visible: !1 }), + ($t.propTypes = { icon: G().any, isDisabled: G().bool, isSwcEnabled: G().bool.isRequired, onMenuItemSelect: G().func.isRequired, value: G().any, visible: G().bool }), + ($t.displayName = "CommentMenuItem"); + const en = $t; + function tn(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var nn = function () { + return V().createElement( + "svg", + { viewBox: "0 0 22 22", className: "spectrum-Icon", display: "flex", fill: "currentColor", style: { width: "var(--ccx-comments-resolve-icon-size)", height: "var(--ccx-comments-resolve-icon-size)" } }, + V().createElement("path", { + d: + "M20,5.068A2.041,2.041,0,0,0,17.986,3H4.031A2.041,2.041,0,0,0,2.015,5.054L2,13.94A2.041,2.041,0,0,0,4.016,16H7.007v4.736a.252.252,0,0,0,.246.257h0a.268.268,0,0,0,.184-.072L12,16h6a2.009,2.009,0,0,0,2-2.019V5.068Zm-1.641,9.287a.513.513,0,0,1-.359.154H11.352l-.442.477L8.5,17.588V14.509H4.031a.551.551,0,0,1-.54-.566l.015-8.9a.548.548,0,0,1,.525-.553H17.973a.551.551,0,0,1,.38.166.568.568,0,0,1,.156.411v8.92A.516.516,0,0,1,18.359,14.355Z", + }), + V().createElement("path", { d: "M14.529,8.5H7.471A.486.486,0,0,0,7,9v.5a.486.486,0,0,0,.471.5h7.058A.486.486,0,0,0,15,9.5V9A.486.486,0,0,0,14.529,8.5Z" }) + ); + }; + const rn = function () { + var e, t, n; + return ( + ((t = (0, z.useState)(!1)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return tn(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? tn(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })())[1], + (0, z.useEffect)(function () {}, []), + null !== (e = window.customElements) && void 0 !== e && e.get("ccx-comments-icon-unresolve") ? V().createElement("ccx-comments-icon-unresolve", null) : V().createElement(nn, null) + ); + }; + function on(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var an = function () { + return V().createElement( + "svg", + { viewBox: "0 0 22 22", className: "spectrum-Icon", display: "flex", fill: "currentColor", style: { width: "var(--ccx-comments-resolve-icon-size)", height: "var(--ccx-comments-resolve-icon-size)" } }, + V().createElement("path", { + d: + "M20,5.068A2.041,2.041,0,0,0,17.986,3H4.031A2.041,2.041,0,0,0,2.015,5.054L2,13.94A2.041,2.041,0,0,0,4.016,16H7.007v4.736a.252.252,0,0,0,.246.257.267.267,0,0,0,.188-.072L12,16h6a2.009,2.009,0,0,0,2-2.019V5.068ZM15.385,7.457l-4.87,5.855a.512.512,0,0,1-.713.076.455.455,0,0,1-.04-.035L6.651,10.541a.494.494,0,0,1,0-.708l0,0,.724-.676a.513.513,0,0,1,.719,0l0,0,1.819,1.705L13.8,6.185a.509.509,0,0,1,.708-.078l.01.007.8.631A.5.5,0,0,1,15.385,7.457Z", + }) + ); + }; + const sn = function () { + var e, t, n; + return ( + ((t = (0, z.useState)(!1)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return on(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? on(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })())[1], + (0, z.useEffect)(function () {}, []), + null !== (e = window.customElements) && void 0 !== e && e.get("ccx-comments-icon-resolve") ? V().createElement("ccx-comments-icon-resolve", null) : V().createElement(an, null) + ); + }; + var cn = n(93139), + ln = n(35752), + un = { focus: function () {} }, + dn = V().memo(function (e) { + var t = e.assetData, + n = e.commentId, + r = e.creator, + o = e.enableReadUnread, + a = e.handleDeleteBtnClick, + i = e.handleEditBtnClick, + s = e.handleUnresolveBtnClick, + c = e.handleResolveBtnClick, + l = e.handleMarkUnreadBtnClick, + u = e.handleMarkReadBtnClick, + d = e.imsData, + p = e.isEditing, + f = e.isOffline, + m = e.isReply, + h = e.isResolved, + v = e.isSwcEnabled, + y = e.isUnread, + g = e.latestMobileEnabled, + b = e.onMouseDown, + E = e.touchControls, + D = e.viewingReplies, + C = (function (e, t, n, r, o, a, i, s) { + var c = (function (e, t) { + return (void 0 !== e.id && e.id === t.id) || (void 0 !== e.authId && e.authId === t.id); + })(r, t), + l = (function (e) { + if (e.token) return e.token.includes("AnonBearer") ? "guest" : "user"; + })(r), + u = (function (e, t) { + return e.id === t.ownerId || "owner" === e.userRoleOverride; + })(r, e), + d = (function (e) { + return "editor" === e || "owner" === e; + })(s), + p = ("user" === l || c) && !a, + f = { edit: Boolean(c && !i), delete: Boolean(u || c || (d && !e.ownerId)), unread: n && "user" === l && !c }, + m = { resolve: Boolean(p && !i), unresolve: Boolean(p && i) }, + h = Object.values(f).reduce(function (e, t) { + return e || t; + }, !1), + v = Object.values(m).reduce(function (e, t) { + return e || t; + }, !1); + return { isMenuVisible: !(o || !l || !h), isVisible: !(o || !l || (!h && !v)), menuItems: f, externalItems: m }; + })(t, r, o, d, p, m, h, e.userRole), + w = C.isMenuVisible, + S = C.isVisible, + A = C.externalItems, + k = C.menuItems, + _ = (0, Ne.Z)().formatMessage, + T = (0, cn.cs)(), + I = (0, ln.UP)(), + O = (0, z.useCallback)(function (e) { + e.preventDefault(); + }, []), + F = (0, z.useCallback)( + function (e) { + O(e), e.target.focus(), T.completeCurrentOrResumeCoachMarks({ dismissType: "blur" }), I.completeCurrent({ dismissType: "blur" }), b && b(); + }, + [b, T, I, O] + ), + x = _({ id: h ? "comments.item.unresolve" : "comments.item.resolve" }), + N = V().createElement( + "div", + { className: "external-content-wrapper" }, + A.resolve + ? V().createElement( + V().Fragment, + null, + V().createElement(ge, { + "aria-label": x, + className: "resolve-button", + "data-testid": "resolve", + disabled: f, + icon: V().createElement(sn, { key: "resolve-icon-".concat(n) }), + onClick: c, + onMouseDown: O, + variant: "tool", + }), + r.id === d.id && + D && + V().createElement(cn.SF, { + checkCurrentCoachMarkData: function (e) { + return e.commentId === n; + }, + name: "resolveComment", + placement: "bottom right", + selector: (0, cn.SN)(n), + }) + ) + : null, + A.unresolve + ? V().createElement(ge, { + "aria-label": x, + className: "unresolve-button", + "data-testid": "unresolve", + disabled: f, + icon: V().createElement(rn, { key: "unresolve-icon-".concat(n) }), + onClick: s, + onMouseDown: O, + variant: "tool", + }) + : null + ); + return ( + E || (N = V().createElement(_t, { crossOffset: w ? 0 : -100, placement: "bottom", trigger: "hover" }, N, V().createElement(It, { style: { pointerEvents: "none", alignItems: "stretch" } }, x))), + V().createElement( + "div", + { className: "comment-item-dropdown-wrapper" }, + S + ? V().createElement( + V().Fragment, + null, + !g && N, + w || (g && (A.resolve || A.unresolve)) + ? V().createElement( + Pt, + { + alignRight: !0, + "aria-label": _({ id: "comments.arialabel.button.dropdownMenu" }), + className: "comment-item-dropdown-button", + lastFocus: un, + menuClassName: "comment-item-dropdown-menu", + onMouseDown: F, + onSelect: function (e) { + switch (e) { + case _({ id: "comments.item.resolve" }): + c(); + break; + case _({ id: "comments.item.unresolve" }): + s(); + break; + case _({ id: "comments.item.mark_unread" }): + l(); + break; + case _({ id: "comments.item.mark_read" }): + u(); + break; + case _({ id: "comments.item.edit" }): + i(); + break; + case _({ id: "comments.item.delete" }): + a(); + } + }, + quiet: !0, + }, + V().createElement(en, { "data-testid": "resolve", isDisabled: f, isSwcEnabled: v, onMenuItemSelect: c, value: _({ id: "comments.item.resolve" }), visible: g && A.resolve }), + V().createElement(en, { "data-testid": "unresolve", isDisabled: f, isSwcEnabled: v, onMenuItemSelect: s, value: _({ id: "comments.item.unresolve" }), visible: g && A.unresolve }), + V().createElement(en, { "data-testid": "mark-as-unread", isDisabled: f, isSwcEnabled: v, onMenuItemSelect: l, value: _({ id: "comments.item.mark_unread" }), visible: o && k.unread && !y }), + V().createElement(en, { "data-testid": "mark-as-read", isDisabled: f, isSwcEnabled: v, onMenuItemSelect: u, value: _({ id: "comments.item.mark_read" }), visible: o && k.unread && y }), + V().createElement(en, { "data-testid": "edit", isDisabled: f, isSwcEnabled: v, onMenuItemSelect: i, value: _({ id: "comments.item.edit" }), visible: k.edit }), + V().createElement(en, { "data-testid": "delete", isDisabled: f, isSwcEnabled: v, onMenuItemSelect: a, value: _({ id: "comments.item.delete" }), visible: k.delete }) + ) + : null + ) + : null + ) + ); + }); + (dn.displayName = "CommentDropdownMenu"), + (dn.defaultProps = { + enableReadUnread: !1, + handleMarkReadBtnClick: function () {}, + handleMarkUnreadBtnClick: function () {}, + imsData: {}, + isEditing: !1, + isOffline: !1, + isReply: !1, + isResolved: !1, + isUnread: !1, + latestMobileEnabled: !1, + onMouseDown: function () {}, + touchControls: !1, + userRole: "", + viewingReplies: !1, + }), + (dn.propTypes = { + assetData: G().shape({ ownerId: G().string }).isRequired, + commentId: G().string.isRequired, + creator: G().shape({ id: G().string }).isRequired, + enableReadUnread: G().bool, + handleDeleteBtnClick: G().func.isRequired, + handleEditBtnClick: G().func.isRequired, + handleMarkReadBtnClick: G().func, + handleMarkUnreadBtnClick: G().func, + handleResolveBtnClick: G().func.isRequired, + handleUnresolveBtnClick: G().func.isRequired, + imsData: G().shape({ id: G().string, token: G().string }), + isEditing: G().bool, + isOffline: G().bool, + isReply: G().bool, + isResolved: G().bool, + isSwcEnabled: G().bool.isRequired, + isUnread: G().bool, + latestMobileEnabled: G().bool, + onMouseDown: G().func, + touchControls: G().bool, + userRole: G().string, + viewingReplies: G().bool, + }); + const pn = dn, + fn = function () { + return V().createElement("div", { className: "".concat(r.default.component, " comments-divider") }); + }, + mn = (0, pe.Z)(n(20987)).default, + hn = (0, ue.Z)({ displayName: "At", fallback: mn, swcLoader: void 0, swcProps: Ot.m, tagName: "sp-icon-at" }), + vn = (0, pe.Z)(n(11495)).default, + yn = (0, ue.Z)({ displayName: "Maximize", fallback: vn, swcLoader: void 0, swcProps: Ot.m, tagName: "sp-icon-maximize" }), + gn = (0, pe.Z)(n(42748)).default, + bn = (0, ue.Z)({ displayName: "Minimize", fallback: gn, swcLoader: void 0, swcProps: Ot.m, tagName: "sp-icon-minimize" }); + var En = n(67586); + const Dn = (0, pe.Z)(n(67217)).default, + Cn = (0, ue.Z)({ displayName: "SentimentPositive", fallback: Dn, swcLoader: void 0, swcProps: Ot.m, tagName: "sp-icon-sentiment-positive" }); + var wn = n(90353), + Sn = n(24124), + An = n(99894); + function kn() { + return ( + (kn = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + kn.apply(this, arguments) + ); + } + function _n(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var Tn = V().memo(function (e) { + var t, + n, + r, + o = e.className, + i = e.environment, + s = e.user, + c = + ((n = (0, z.useState)(!1)), + (r = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(n) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(n, r) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return _n(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? _n(e, t) : void 0; + } + })(n, r) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + l = c[0], + u = c[1], + d = (0, z.useContext)(re.ZP).environment, + p = "stage" === (i || d) ? An.Zw : An.oM, + f = (0, z.useCallback)( + function () { + u(!0); + }, + [u] + ), + m = X()(a.default.avatar, o), + h = s && (!s.email || "None" === s.email); + s && !h && (s.src ? (t = s.src) : s.id && (t = "".concat(p).concat(s.id.replace(An.Lx, "")))); + var v = self.crossOriginIsolated ? { crossOrigin: "anonymous" } : {}; + return t && !l + ? V().createElement("img", kn({ "aria-hidden": "true", "data-testid": "ccx-comments-user-avatar", className: m, src: t, onError: f }, v)) + : V().createElement( + "svg", + { + "aria-hidden": "true", + className: "".concat(m, " placeholder"), + version: "1.1", + xmlns: "http://www.w3.org/2000/svg", + height: "24", + width: "24", + x: "0px", + y: "0px", + viewBox: "0 0 50 50", + "data-testid": "ccx-comments-default-avatar", + }, + V().createElement("rect", { width: "50", height: "50" }), + V().createElement("path", { + d: + "M33,33.2c-4.3-0.3-4.6-4-4-5.2c0.6-1.2,0.7-3.1,0.7-3.1s1,0.2,1.3-2.2s-1-1.8-1-1.8s0.7-2.8,0.2-5.8 c-0.1-0.8-1.1-1.5-1.9-2.1c-0.9-0.7-1.4-1.8-2.5-1.8c-1.6,0-6.1,2.3-6.4,3.9c-0.7,3,0.6,5.7,0.6,5.7s-1.3-0.6-1,1.8 s1.3,2.2,1.3,2.2s0.1,1.9,0.7,3.1c0.6,1.2,0.6,5-3.7,5.4S9,35.7,9,35.7v3.1h16h16v-3.1C41,35.7,37.3,33.5,33,33.2z", + }) + ); + }); + (Tn.displayName = "UserAvatar"), (Tn.propTypes = { className: G().string, environment: G().string, user: G().object }); + const In = Tn; + var On = ["children", "className", "style"]; + function Fn() { + return ( + (Fn = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + Fn.apply(this, arguments) + ); + } + function xn(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function Nn(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? xn(Object(n), !0).forEach(function (t) { + Rn(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : xn(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function Rn(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var Ln = function (e) { + var t = e.children, + n = e.className, + r = e.style, + a = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = {}, + a = Object.keys(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (o[n] = e[n]); + return o; + })(e, t); + if (Object.getOwnPropertySymbols) { + var a = Object.getOwnPropertySymbols(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (Object.prototype.propertyIsEnumerable.call(e, n) && (o[n] = e[n])); + } + return o; + })(e, On); + return V().createElement( + Ht, + Fn( + { + className: X()(n, o.default.component, "popover"), + style: Nn( + { + "--ccx-comments-user-card-padding": "5px 10px", + "--ccx-comments-user-card-email-font-size": "var(--spectrum-global-dimension-font-size-75, 12px)", + "--ccx-comments-user-card-name-font-size": "var(--spectrum-global-dimension-font-size-75, 12px)", + "--ccx-comments-avatar-column-margin-right": "8px", + "--spectrum-overlay-animation-distance": "0px", + "--ccx-comments-avatar-foreground": "var(--spectrum-global-color-gray-100, #f5f5f5)", + "--ccx-comments-avatar-background": "var(--spectrum-global-color-gray-400, #cacaca)", + visibility: "visible", + opacity: "1", + }, + r + ), + }, + a + ), + t + ); + }; + Ln.propTypes = { className: G().string, children: G().node.isRequired, style: G().object }; + var Mn = function (e) { + var t = e.children; + return V().createElement("div", { className: "text-wrapper" }, t); + }; + Mn.propTypes = { children: G().node.isRequired }; + var Pn = function (e) { + var t = e.title, + n = e.children; + return n ? V().createElement("div", { className: "name" }, V().createElement("span", { title: t }, n)) : null; + }; + Pn.propTypes = { title: G().string, children: G().node }; + var jn = function (e) { + var t = e.title, + n = e.children; + return n ? V().createElement("div", { className: "email" }, V().createElement("span", { title: t }, n)) : null; + }; + jn.propTypes = { title: G().string, children: G().node }; + var Bn = function (e) { + var t = e.title, + n = e.children; + return n ? V().createElement("div", { className: "org-name" }, V().createElement("span", { title: t }, n)) : null; + }; + Bn.propTypes = { title: G().string, children: G().node }; + var Zn = function (e) { + var t = e.user, + n = e.selected, + r = e.onClick, + a = e.onHover, + i = e.onRender, + s = e.children, + c = e.id, + l = e.environment, + u = (0, z.useRef)(); + (0, z.useEffect)(function () { + i && i(u.current.clientWidth); + }, []), + (0, z.useEffect)( + function () { + n && (0, Ae.Z)(u.current, { block: "nearest" }); + }, + [n] + ); + var d = X()(o.default.component, { selected: n }); + return V().createElement( + "div", + { + ref: u, + "aria-label": "".concat(t.name, ", ").concat(t.email), + "data-testid": "ccx-comments-user-card-container", + className: d, + onMouseEnter: function (e) { + a(e, c); + }, + onMouseDown: function (e) { + e.preventDefault(), r(e, c); + }, + }, + s || + V().createElement( + V().Fragment, + null, + V().createElement("div", { className: "avatar-column" }, V().createElement(In, { environment: l, user: t })), + V().createElement(Mn, null, t.name !== t.email ? V().createElement(Pn, { title: t.name }, t.name) : null, V().createElement(jn, { title: t.email }, t.email), V().createElement(Bn, { title: t.orgName }, t.orgName)) + ) + ); + }; + (Zn.defaultProps = { selected: !1, onClick: function () {}, onHover: function () {}, onRender: void 0 }), + (Zn.propTypes = { + children: G().node, + environment: G().string, + id: G().number, + onClick: G().func, + onHover: G().func, + onRender: G().func, + selected: G().bool, + user: G().shape({ name: G().string, email: G().string, img: G().string, orgName: G().string }).isRequired, + }); + const Un = Zn; + var zn = V().memo(function (e) { + var t = e.suggestions, + n = e.selectedIndex, + r = e.onUserCardClick, + o = e.onUserCardHover, + a = (0, z.useContext)(re.ZP).compactLayout, + s = X()(i.default.component, a ? "above" : "below"), + c = (0, z.useCallback)( + function (e, t) { + r(t); + }, + [r] + ), + l = (0, z.useCallback)( + function (e, t) { + o(t); + }, + [o] + ); + return V().createElement( + "ul", + { className: s, id: "ccx-suggestion-list", role: "listbox" }, + t.map(function (e, t) { + var r = n === t; + return V().createElement( + "li", + { key: e.token, "aria-selected": r, "data-testid": "ccx-comments-suggestion-container", id: "suggestion-".concat(t), role: "option", tabIndex: "-1" }, + V().createElement( + Un, + { id: t, onClick: c, onHover: l, selected: r, user: e }, + V().createElement("div", { className: "avatar-column" }, V().createElement(In, { user: e })), + V().createElement(Mn, null, e.name !== e.email ? V().createElement(Pn, { title: e.name }, e.name) : null, V().createElement(jn, { title: e.email }, e.email), V().createElement(Bn, { title: e.orgName }, e.orgName)) + ) + ); + }) + ); + }); + (zn.displayName = "SuggestionsList"), + (zn.propTypes = { onUserCardClick: G().func, onUserCardHover: G().func, selectedIndex: G().number, suggestions: G().array }), + (zn.defaultProps = { onUserCardClick: function () {}, onUserCardHover: function () {}, selectedIndex: 0, suggestions: [] }); + const Vn = zn; + var Hn = n(82950); + function Gn(e, t) { + return ( + (function (e) { + if (Array.isArray(e)) return e; + })(e) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(e, t) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return Wn(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Wn(e, t) : void 0; + } + })(e, t) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function Wn(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var Qn = V().memo( + (0, z.forwardRef)(function (e, t) { + var n = Gn((0, z.useState)(!1), 2), + r = n[0], + o = n[1], + a = Gn((0, z.useState)(0), 2), + i = a[0], + s = a[1], + c = e.cursorIndex, + l = e.defaultMentions, + u = e.keyPress, + d = e.onAcceptedSuggestionsChange, + p = e.onChange, + f = e.onHide, + m = e.onShow, + h = e.onTextValueChange, + v = e.preventShow, + y = e.textValue, + g = (0, Sn.ZP)(l), + b = g.getSuggestionsFromInput, + E = g.suggestions, + D = g.acceptedSuggestions, + C = g.acceptSuggestion, + w = (0, Hn.Z)(r && E.length > 0); + (0, z.useEffect)( + function () { + d(D); + }, + [d, D] + ), + (0, z.useEffect)( + function () { + var e = b(y, c); + o(e); + }, + [y, c] + ), + (0, z.useImperativeHandle)( + t, + function () { + return { + getShowMentions: function () { + return r; + }, + hide: function () { + return o(!1); + }, + show: function () { + return o(b(y, c)); + }, + }; + }, + [c, r, y] + ); + var S = (0, z.useCallback)( + function (e) { + var t = E[(0, wn.gN)(e || i, E.length)]; + t && + C(t) + .then(function () { + o(!1), s(0); + var e = y.substring(0, c), + n = (0, wn.uV)(e, An.xA), + r = y.substring(0, n + 1) + t.name + " " + y.substring(c), + a = n + 1 + t.name.length + 1; + h(r, a); + }) + .catch(function () {}); + }, + [C, i, c, h, E, y] + ); + return ( + (0, z.useEffect)( + function () { + if (r) + switch (u.keyCode) { + case An.nx.ENTER: + case An.nx.TAB: + S(), o(!1); + break; + case An.nx.UP: + s(function (e) { + return (0, wn.gN)(e - 1, E.length); + }); + break; + case An.nx.DOWN: + s(function (e) { + return (0, wn.gN)(e + 1, E.length); + }); + break; + case An.nx.ESCAPE: + o(!1); + } + }, + [u] + ), + (0, z.useEffect)( + function () { + p(r ? i : -1); + }, + [p, i, r] + ), + (0, z.useEffect)( + function () { + !w && r && E.length > 0 && m(), !w || (r && E.length > 0) || f(); + }, + [f, m, r, E.length, w] + ), + E.length > 0 && r && !v && V().createElement(Vn, { onUserCardClick: S, onUserCardHover: s, selectedIndex: (0, wn.gN)(i, E.length), suggestions: E }) + ); + }) + ); + (Qn.displayName = "Mentions"), + (Qn.propTypes = { + cursorIndex: G().number, + defaultMentions: G().array, + keyPress: G().object, + onAcceptedSuggestionsChange: G().func, + onChange: G().func, + onHide: G().func, + onShow: G().func, + onTextValueChange: G().func, + preventShow: G().bool, + textValue: G().string, + }), + (Qn.defaultProps = { + cursorIndex: 0, + defaultMentions: [], + keyPress: {}, + onAcceptedSuggestionsChange: function () {}, + onChange: function () {}, + onHide: function () {}, + onShow: function () {}, + onTextValueChange: function () {}, + preventShow: !1, + textValue: "", + }); + const Jn = Qn; + var Yn = ["tooltip", "placement", "label"]; + function qn() { + return ( + (qn = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + qn.apply(this, arguments) + ); + } + var Xn = (0, z.forwardRef)(function (e, t) { + var n = e.tooltip, + r = e.placement, + o = e.label, + a = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = {}, + a = Object.keys(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (o[n] = e[n]); + return o; + })(e, t); + if (Object.getOwnPropertySymbols) { + var a = Object.getOwnPropertySymbols(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (Object.prototype.propertyIsEnumerable.call(e, n) && (o[n] = e[n])); + } + return o; + })(e, Yn); + return V().createElement( + "div", + { ref: t }, + V().createElement( + _t, + { placement: r, trigger: "hover" }, + V().createElement(ge, qn({ label: o }, a)), + V().createElement(It, { role: "tooltip", style: { pointerEvents: "none", marginTop: "bottom" === r ? "-4px" : "", marginBottom: "bottom" !== r ? "-3px" : "" } }, n) + ) + ); + }); + (Xn.defaultProps = { placement: "top", variant: "tool", selected: !1, label: null }), + (Xn.propTypes = { tooltip: G().string.isRequired, placement: G().oneOf(["top", "right", "bottom", "left"]), selected: G().bool, label: G().string }), + (Xn.displayName = "TooltipButton"); + const Kn = Xn; + !(function () { + var e, + t = null === (e = window) || void 0 === e ? void 0 : e.navigator.userAgent.toLowerCase().includes("firefox"), + n = /^((?!chrome|android).)*safari/i.test(navigator.userAgent); + (t || n) && + "undefined" != typeof ShadowRoot && + void 0 === ShadowRoot.getSelection && + (ShadowRoot.prototype.getSelection = function () { + return document.getSelection(); + }); + })(); + var $n = function (e) { + return e.getRootNode() instanceof ShadowRoot ? e.getRootNode().getSelection() : window.getSelection(); + }, + er = function (e) { + if (e.isContentEditable) + try { + var t, + n = $n(e); + if (e.getRootNode() instanceof ShadowRoot && "function" == typeof n.getComposedRanges) return (t = n.getComposedRanges(e.getRootNode())[0]).endOffset; + var r = (t = n.getRangeAt(0)).cloneRange(); + return r.selectNodeContents(e), r.setEnd(t.endContainer, t.endOffset), r.toString().length; + } catch (e) { + return 0; + } + return e.selectionEnd || 0; + }, + tr = function (e, t) { + if (e.isContentEditable) { + var n = $n(e), + r = (function e(t, n, r) { + var o = n, + a = r; + return ( + a || ((a = document.createRange()).selectNode(t), a.setStart(t, 0)), + 0 === o + ? a.setEnd(t, o) + : t && + o > 0 && + (t.nodeType === Node.TEXT_NODE + ? t.textContent.length < o + ? (o -= t.textContent.length) + : (a.setEnd(t, o), (o = 0)) + : Array.from(t.childNodes).some(function (t) { + var n = e(t, o, a); + return (o = n.charCount), (a = n.range), 0 === o; + })), + { range: a, charCount: o } + ); + })(e, Math.min(Math.max(t, 0), e.innerText.length)).range; + r.collapse(!1), n.removeAllRanges(), n.addRange(r); + } else e.selectionEnd = t; + }, + nr = function () { + var e = document.activeElement.shadowRoot; + if (!e || e.getSelection) { + var t = window.getSelection(); + if (t.rangeCount) { + var n = t.getRangeAt(0).cloneRange(); + if (n.commonAncestorContainer !== document) { + var r = document.createElement("br"); + n.insertNode(r), (0, Ae.Z)(r, { block: "nearest" }), r.remove(); + } + } + } + }, + rr = n(22086), + or = (0, z.createRef)(); + const ar = function () { + var e = (0, Ve.I0)(), + t = (0, Ve.v9)(function (e) { + return e["".concat(An.Bq, ":mobile")].fullscreen; + }), + n = (0, Ve.v9)(function (e) { + return e["".concat(An.Bq, ":mobile")].inputFocused; + }), + r = (0, Ve.v9)(function (e) { + return e["".concat(An.Bq, ":mobile")].mentionListShown; + }), + o = (0, Ve.v9)(function (e) { + var t = e["".concat(An.Bq, ":mobile")].subviewStack; + return t[t.length - 1]; + }), + a = (0, z.useContext)(tt.ZP), + i = a.onCloseButtonClick, + s = a.onTrayHeightChange, + c = (0, Ke.Z)(), + l = c.fireEvent, + u = c.events, + d = (0, z.useCallback)( + function (t) { + return e(ie.K1(t)); + }, + [e] + ), + p = (0, z.useCallback)( + function (t) { + return e(ie.cN(t)); + }, + [e] + ), + f = (0, z.useCallback)( + function (t) { + return e(ie.Po(t)); + }, + [e] + ), + m = (0, z.useCallback)( + function () { + return e(ie.BH()); + }, + [e] + ), + h = (0, z.useCallback)( + function (t) { + return e(ie.BX(t)); + }, + [e] + ), + v = (0, z.useCallback)( + function () { + return e(ie.mc()); + }, + [e] + ), + y = (0, z.useCallback)( + function () { + t && d(!1); + }, + [t, d] + ), + g = (0, z.useCallback)( + function () { + l(u.closeComponent), i(); + }, + [u, l, i] + ), + b = (0, z.useCallback)( + function () { + y(), t || s("minimized"); + }, + [y, t, s] + ), + E = (0, z.useCallback)( + function () { + (o !== An.p8.COMMENT && o !== An.p8.EDIT) || t || d(!0), s("maximized"); + }, + [t, s, d, o] + ), + D = (0, z.useCallback)( + function () { + s("restored"), y(); + }, + [y, s] + ); + return { + inputFocused: n, + isFullscreen: t, + mentionListShown: r, + onTrayClose: g, + onTrayCollapse: b, + onTrayExpand: E, + onTrayRestore: D, + popSubview: m, + pushSubview: h, + reset: v, + setFullscreen: d, + setInputFocused: p, + setIsFullscreen: d, + setMentionListShown: f, + subview: o, + trayHandleRef: or, + }; + }; + var ir, + sr = n(46794), + cr = n(87220), + lr = n.n(cr), + ur = n(45232), + dr = n.n(ur), + pr = n(5347), + fr = n.n(pr); + function mr() { + return ( + (mr = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + mr.apply(this, arguments) + ); + } + function hr(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function vr(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? hr(Object(n), !0).forEach(function (t) { + yr(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : hr(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function yr(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + function gr(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var br = null === (ir = window) || void 0 === ir ? void 0 : ir.navigator.userAgent.toLowerCase().includes("firefox"), + Er = br ? "" : "

", + Dr = /[&<>"']/g, + Cr = /[|\\{}()[\]^$+*?.]/g, + wr = (0, z.forwardRef)(function (e, t) { + var n, + r, + o = e.ariaAttributes, + a = e.onBlur, + i = e.onChange, + c = e.onClick, + l = e.onFocus, + u = e.onKeyDown, + d = e.onKeyUp, + p = e.onStructuredTextHover, + f = e.placeholder, + m = e.richTextEntry, + h = e.structuredText, + v = (0, z.useRef)(), + y = (0, z.useRef)(), + g = (0, z.useRef)(0), + b = (0, z.useRef)(0), + E = (0, z.useRef)(!1), + D = + ((n = (0, z.useState)(!0)), + (r = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(n) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(n, r) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return gr(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? gr(e, t) : void 0; + } + })(n, r) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + C = D[0], + w = D[1], + S = (0, z.useRef)([]), + A = (0, z.useRef)(-1), + k = (0, Hn.Z)(h); + (0, z.useEffect)( + function () { + m && y.current.replaceChildren(dr().sanitize(Er, { RETURN_DOM_FRAGMENT: !0 })); + }, + [m] + ), + (0, z.useEffect)( + function () { + var e = v.current, + t = function (e) { + var t = e.toElement || e.relatedTarget; + t && t.dataset.structuredtextid && (0 === e.which || 0 === e.buttons) ? p(e, v.current) : p(); + }; + return ( + m && e.addEventListener("mouseout", t), + function () { + m && e.removeEventListener("mouseout", t); + } + ); + }, + [p, m] + ); + var _ = (0, z.useCallback)(function () { + (g.current = 0), (b.current = 0), (E.current = !1); + }, []), + T = (0, z.useCallback)( + function (e) { + var t, + n = !(arguments.length > 1 && void 0 !== arguments[1]) || arguments[1], + r = e, + o = !1; + m + ? (r.length < 1 ? ((o = !0), _()) : 1 === r.length && "\n" === r[r.length - 1] && ((o = !0), (r = r.slice(0, -1)), _()), + y.current.replaceChildren(dr().sanitize(o ? Er : e, { RETURN_DOM_FRAGMENT: !0 })), + w(o), + (t = o ? r : y.current.innerText)) + : ((y.current.value = e), (t = y.current.value)), + n && tr(y.current, g.current), + i(t, g.current); + }, + [i, _, m] + ), + I = (0, z.useCallback)( + function (e, t) { + var n = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : "insert", + r = !(arguments.length > 3 && void 0 !== arguments[3]) || arguments[3], + o = e; + ("commentsversion" !== o && "commentsversion\n" !== o) || (o = fr()), + m && + ("insert" === n ? ((S.current = S.current.slice(0, A.current + 1)), S.current.push(o), (A.current = S.current.length - 1)) : "update" === n && (S.current[A.current] = o), + (o = o.replace(Dr, function (e) { + return { "&": "&", "<": "<", ">": ">", '"': """, "'": "'" }[e]; + })), + h.forEach(function (e) { + var t = e.text.replace(Cr, "\\$&"); + o = o.replace(new RegExp(t, "g"), '').concat(e.text, "")); + })), + (g.current = void 0 !== t ? t : er(y.current) + b.current), + (b.current = 0), + T(o, r); + }, + [m, T, h] + ), + O = (0, z.useCallback)( + function (e) { + if (m) { + e.persist(); + var t, + n, + r = e.nativeEvent, + o = r.inputType, + a = "ignore"; + if ("historyUndo" === o) A.current > -1 && (A.current--, (n = (t = -1 === A.current ? "" : S.current[A.current]).length)); + else if ("historyRedo" === o) { + var s; + A.current < S.current.length - 1 && (A.current++, (n = null === (s = t = S.current[A.current]) || void 0 === s ? void 0 : s.length)); + } else + (t = e.target.innerText), (a = !S.current.length || -1 === A.current || "insertParagraph" === r.inputType || "insertLineBreak" === r.inputType || ("insertText" === r.inputType && " " === r.data) ? "insert" : "update"); + E.current || void 0 === t ? void 0 !== t && i(t, g.current) : I(t, n, a); + } else I(e.target.value); + }, + [i, I, m] + ), + F = (0, z.useCallback)( + function (e) { + e.stopPropagation(), m && e.keyCode === An.nx.ENTER && (void 0 === y.current.innerText[er(y.current) + 1] || br) && (b.current += 1), u(e); + }, + [u, m] + ), + x = (0, z.useCallback)( + function (e) { + d(e, g.current); + }, + [d] + ), + N = (0, z.useCallback)( + function (e) { + var t, n; + m && ((t = y.current), (n = $n(t)).empty ? n.empty() : n.removeAllRanges && n.removeAllRanges()), a(e); + }, + [a, m] + ), + R = (0, z.useCallback)(function () { + E.current = !0; + }, []), + L = (0, z.useCallback)( + function () { + (E.current = !1), m && I(y.current.innerText); + }, + [I, m] + ), + M = (0, z.useCallback)( + function () { + (g.current = er(y.current) + b.current), c(); + }, + [c] + ), + P = (0, z.useCallback)( + function (e) { + tr(y.current, g.current), l(e); + }, + [l] + ), + j = (0, z.useCallback)( + function (e) { + e.preventDefault(); + var t = y.current.innerText, + n = window.getSelection().toString(), + r = (e.clipboardData || window.clipboardData).getData("Text"), + o = er(y.current), + a = t.slice(0, o - n.length), + i = t.slice(o), + s = "".concat(a).concat(r); + I("".concat(s).concat(i), s.length), nr(); + }, + [I] + ); + (0, z.useEffect)( + function () { + var e = (m ? y.current.innerText : y.current.value) || ""; + h && k && !lr()(h, k) && I(e, g.current, "update"); + }, + [h] + ), + (0, z.useImperativeHandle)(t, function () { + return { + clearTextareaInput: function () { + (S.current = []), (A.current = -1), _(), T("", !1), y.current.blur(); + }, + getCursorPosition: function () { + return (g.current = er(y.current)); + }, + setFocus: function () { + y.current.focus({ preventScroll: !0 }); + }, + setText: function (e, t, n) { + I(e, t, "insert", !(arguments.length > 3 && void 0 !== arguments[3]) || arguments[3]), d({}, t, e), n && (y.current.scrollTop = y.current.scrollHeight); + }, + }; + }); + var B = vr( + vr({}, o), + {}, + { + "aria-autocomplete": "list", + "aria-multiline": "true", + "aria-owns": "ccx-suggestion-list", + "aria-placeholder": f, + role: "textbox", + onBlur: N, + onClick: M, + onCompositionStart: R, + onCompositionEnd: L, + onFocus: P, + onKeyDown: F, + onKeyUp: x, + placeholder: f, + } + ); + return ( + m ? ((B.onInput = O), (B.onPaste = j)) : (B.onChange = O), + V().createElement( + "div", + { className: X()(s.default.component, { "rich-text-entry": m, "plain-text-entry": !m }), ref: v }, + m + ? V().createElement("div", mr({ className: "textarea content-editable".concat(C && !E.current ? " empty" : ""), contentEditable: !0 }, B, { ref: y })) + : V().createElement("textarea", mr({ className: "textarea plain", rows: "1" }, B, { ref: y })) + ) + ); + }); + (wr.displayName = "Textarea"), + (wr.defaultProps = { + ariaAttributes: {}, + onBlur: function () {}, + onChange: function () {}, + onClick: function () {}, + onFocus: function () {}, + onKeyDown: function () {}, + onKeyUp: function () {}, + onStructuredTextHover: function () {}, + placeholder: "", + richTextEntry: !1, + structuredText: [], + }), + (wr.propTypes = { + ariaAttributes: G().object, + onBlur: G().func, + onChange: G().func.isRequired, + onClick: G().func, + onFocus: G().func, + onKeyDown: G().func, + onKeyUp: G().func, + onStructuredTextHover: G().func, + placeholder: G().string, + richTextEntry: G().bool, + structuredText: G().array, + }); + const Sr = wr; + var Ar = function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + }; + const kr = (0, pe.Z)(n(60893)).default, + _r = (0, ue.Z)({ + displayName: "ButtonGroup", + fallback: kr, + swcLoader: void 0, + swcProps: (e) => { + const { className: t, orientation: n } = e, + r = Ar(e, ["className", "orientation"]), + o = "vertical" === n || void 0, + a = de.ww ? { variant: n, align: "center" } : { vertical: o }; + return Object.assign(Object.assign(Object.assign({}, r), a), { class: t }); + }, + tagName: "sp-button-group", + }), + Tr = (0, ue.Z)({ + displayName: "ActionGroup", + fallback: kr, + swcLoader: void 0, + SWCWrapper: function (e) { + const t = (0, z.useRef)(null), + { className: n, value: r, multiple: o, orientation: a, onChange: i } = e, + s = Ar(e, ["className", "value", "multiple", "orientation", "onChange"]), + c = "vertical" === a || void 0, + l = o ? "multiple" : "single", + u = "multiple" === l ? r : [r].flat(), + d = de.ww ? { variant: a, align: "center" } : Object.assign({ vertical: c, selected: JSON.stringify(u) }, l && { selects: l }); + (0, z.useEffect)(() => { + const e = t.current, + n = (e) => { + const t = e.target; + null == i || i(t.selected); + }; + return ( + e && i && e.addEventListener("change", n), + () => { + e && i && e.removeEventListener("change", n); + } + ); + }, [i, r]); + const p = (0, de.Co)("sp-action-group"); + return V().createElement(p, Object.assign(Object.assign(Object.assign(Object.assign({ ref: t }, s), d), (0, de.cd)({ vertical: c })), { class: n })); + }, + tagName: "sp-action-group", + }), + Ir = (0, z.forwardRef)(function (e, t) { + return e.onChange ? V().createElement(Tr, Object.assign(Object.assign({}, e), { ref: t })) : V().createElement(_r, Object.assign(Object.assign({}, e), { ref: t })); + }), + Or = (0, pe.Z)(n(81852)).default, + Fr = (0, ue.Z)({ displayName: "Draw", fallback: Or, swcLoader: void 0, swcProps: Ot.m, tagName: "sp-icon-draw" }); + function xr(e, t) { + return ( + (function (e) { + if (Array.isArray(e)) return e; + })(e) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(e, t) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return Nr(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Nr(e, t) : void 0; + } + })(e, t) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function Nr(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var Rr = function (e) { + var t = e.annotationColor, + n = e.onColorSelect, + r = e.onPickerOpen, + o = e.onPickerClose, + a = e.touchControls, + i = (0, Ne.Z)().formatMessage, + s = xr((0, z.useState)(!1), 2), + c = s[0], + l = s[1], + u = ar().mentionListShown; + (0, z.useEffect)( + function () { + u && (l(!1), o()); + }, + [u, o] + ); + var d = (0, z.useCallback)( + function (e) { + l(!1), n(e), o(); + }, + [n, o] + ), + p = (0, z.useCallback)( + function () { + l(!0), r(); + }, + [r] + ); + if (!c) + return a + ? V().createElement(ge, { + "aria-label": i({ id: "comments.arialabel.button.colorPicker" }), + icon: V().createElement("span", { "data-testid": "color-picker-icon", style: { backgroundColor: t, borderRadius: "22px", height: "22px", width: "22px" } }), + onClick: p, + variant: "tool", + style: { "--spectrum-actionbutton-background-color-hover": "transparent" }, + }) + : V().createElement(Kn, { + "aria-label": i({ id: "comments.arialabel.button.colorPicker" }), + icon: V().createElement("span", { "data-testid": "color-picker-icon", style: { backgroundColor: t, borderRadius: "22px", height: "22px", width: "22px" } }), + onClick: p, + placement: "bottom", + tooltip: i({ id: "comments.arialabel.button.colorPicker" }), + variant: "tool", + }); + var f = An.Kz.map(function (e) { + var t = e.hex, + n = e.name; + return a + ? V().createElement(ge, { + "aria-label": i({ id: "comments.colorPicker.colors.".concat(n) }), + icon: V().createElement("span", { style: { backgroundColor: t, borderRadius: "22px", height: "22px", width: "22px" } }), + key: "color-".concat(t), + onClick: function () { + return d(t); + }, + variant: "tool", + style: { "--spectrum-actionbutton-background-color-hover": "transparent" }, + }) + : V().createElement(Kn, { + "aria-label": i({ id: "comments.colorPicker.colors.".concat(n) }), + icon: V().createElement("span", { style: { backgroundColor: t, borderRadius: "22px", height: "22px", width: "22px" } }), + key: "color-".concat(t), + onClick: function () { + return d(t); + }, + placement: "bottom", + tooltip: i({ id: "comments.colorPicker.colors.".concat(n) }), + variant: "tool", + }); + }); + return V().createElement(Ir, { "aria-label": i({ id: "comments.arialabel.button.colorPicker" }), style: { display: "contents" }, readOnly: !0 }, f); + }; + (Rr.defaultProps = { annotationColor: "", onColorSelect: function () {}, onPickerOpen: function () {}, onPickerClose: function () {} }), + (Rr.propTypes = { annotationColor: G().string.isRequired, onPickerOpen: G().func, onPickerClose: G().func, onColorSelect: G().func, touchControls: G().bool }); + var Lr = function (e) { + var t = e.onOpen, + n = void 0 === t ? function () {} : t, + r = e.onClose, + o = void 0 === r ? function () {} : r, + a = xr((0, z.useState)(!1), 2), + i = a[0], + s = a[1], + c = xr((0, z.useState)(!0), 2), + l = c[0], + u = c[1], + d = (0, z.useContext)(re.ZP), + p = d.touchControls, + f = d.compactLayout, + m = (0, Ke.Z)(), + h = (0, sr.Z)(), + v = h.annotationTypes, + y = h.annotationCommentsEnabled, + g = h.clearAnnotation, + b = h.readyToAnnotate, + E = h.legacyAnnotationMode, + D = h.newAnnotationType, + C = h.setAnnotationMode, + w = h.isAnnotating, + S = h.isPlacingAnnotation, + A = h.annotationColor, + k = h.saveAnnotationColor, + _ = (0, Ne.Z)(), + T = (0, z.useCallback)( + function () { + s(!1), C(!1), g(), o(); + }, + [g, o, C] + ), + I = (0, z.useCallback)( + function (e, t) { + e.preventDefault(), t !== D ? (m.fireEvent({ event: { subcategory: "".concat(t, "-comment"), type: "click", subtype: "".concat(t, S ? "-leave" : "-enter") } }), g(), C(!0, "root", !0, t)) : T(); + }, + [C, m, S, g, D, T] + ), + O = (0, z.useCallback)( + function (e) { + e.preventDefault(), E && (m.fireEvent({ event: { subcategory: "pin-comment", type: "click", subtype: S ? "pin-leave" : "pin-enter" } }), w ? C(!1) : C(!0, "root", !0, "pin")); + }, + [E, C, w, m, S] + ), + F = function () { + s(!0), C(!0, "root", !0, "pin"), n(); + }; + return E + ? p + ? V().createElement(ge, { + "aria-label": _.formatMessage({ id: "comments.textarea_input.pin.tooltip" }), + "data-testid": "legacy-annotation-button", + variant: "tool", + icon: V().createElement(En.Z, null), + onMouseDown: f + ? void 0 + : function (e) { + return O(e); + }, + onClick: f + ? function (e) { + return O(e); + } + : void 0, + selected: w, + }) + : V().createElement(Kn, { + "aria-label": _.formatMessage({ id: "comments.textarea_input.pin.tooltip" }), + "data-testid": "legacy-annotation-button", + placement: "bottom", + variant: "tool", + icon: V().createElement(En.Z, null), + tooltip: _.formatMessage({ id: "comments.textarea_input.pin.tooltip" }), + onClick: function (e) { + return O(e); + }, + selected: w, + }) + : y && v + ? V().createElement( + "div", + null, + !i && + !w && + (p + ? V().createElement(ge, { + "aria-label": _.formatMessage({ id: "comments.annotations.annotation_toolbar_hint" }), + "data-testid": "annotation-button", + disabled: !b, + icon: V().createElement(En.Z, null), + variant: "tool", + onMouseDown: f ? void 0 : F, + onClick: f ? F : void 0, + }) + : V().createElement(Kn, { + "aria-label": _.formatMessage({ id: "comments.annotations.annotation_toolbar_hint" }), + "data-testid": "annotation-button", + onClick: F, + disabled: !b, + icon: V().createElement(En.Z, null), + variant: "tool", + placement: "bottom", + tooltip: _.formatMessage({ id: "comments.annotations.annotation_toolbar_hint" }), + })), + (i || w) && + V().createElement( + "div", + { style: { display: "flex", alignItems: "center" } }, + l && + V().createElement( + Ir, + { "aria-label": "AnnotationsToolbar", value: D, style: { display: "contents" } }, + !0 === v.pin && + (p + ? V().createElement(ge, { + "aria-label": _.formatMessage({ id: "comments.textarea_input.pin.tooltip" }), + variant: "tool", + icon: V().createElement(En.Z, null), + onMouseDown: f + ? void 0 + : function (e) { + return I(e, "pin"); + }, + onClick: f + ? function (e) { + return I(e, "pin"); + } + : void 0, + value: "pin", + style: + w && "pin" === D + ? { "--spectrum-actionbutton-background-color-default": "var(--system-spectrum-actionbutton-quiet-background-color-hover)" } + : { "--system-spectrum-actionbutton-quiet-background-color-hover": "transparent" }, + }) + : V().createElement(Kn, { + "aria-label": _.formatMessage({ id: "comments.textarea_input.pin.tooltip" }), + placement: "bottom", + variant: "tool", + icon: V().createElement(En.Z, null), + tooltip: _.formatMessage({ id: "comments.textarea_input.pin.tooltip" }), + onClick: function (e) { + return I(e, "pin"); + }, + value: "pin", + })), + !0 === v.draw && + (p + ? V().createElement(ge, { + "aria-label": _.formatMessage({ id: "comments.textarea_input.draw.tooltip" }), + variant: "tool", + icon: V().createElement(Fr, null), + onMouseDown: f + ? void 0 + : function (e) { + return I(e, "draw"); + }, + onClick: f + ? function (e) { + return I(e, "draw"); + } + : void 0, + value: "draw", + style: + w && "draw" === D + ? { "--spectrum-actionbutton-background-color-default": "var(--system-spectrum-actionbutton-quiet-background-color-hover)" } + : { "--system-spectrum-actionbutton-quiet-background-color-hover": "transparent" }, + }) + : V().createElement(Kn, { + "aria-label": _.formatMessage({ id: "comments.textarea_input.draw.tooltip" }), + placement: "bottom", + icon: V().createElement(Fr, null), + tooltip: _.formatMessage({ id: "comments.textarea_input.draw.tooltip" }), + onClick: function (e) { + return I(e, "draw"); + }, + value: "draw", + })) + ), + V().createElement(Rr, { + annotationColor: A, + onPickerOpen: function () { + return u(!1); + }, + onPickerClose: function () { + return u(!0); + }, + onColorSelect: k, + touchControls: p, + compactLayout: f, + }) + ) + ) + : null; + }; + Lr.propTypes = { onOpen: G().func, onClose: G().func }; + const Mr = Lr; + var Pr = n(48468); + function jr(e, t) { + return ( + (function (e) { + if (Array.isArray(e)) return e; + })(e) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(e, t) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return Br(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Br(e, t) : void 0; + } + })(e, t) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function Br(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + function Zr(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function Ur(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? Zr(Object(n), !0).forEach(function (t) { + zr(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : Zr(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function zr(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var Vr = (0, z.lazy)(function () { + return Promise.all([n.e(9839), n.e(9550)]).then(n.bind(n, 25017)); + }), + Hr = (0, z.lazy)(function () { + return Promise.all([n.e(9839), n.e(7325)]).then(n.bind(n, 38248)); + }), + Gr = function (e, t) { + var n = t.type, + r = t.data, + o = Ur({}, e); + switch (n) { + case "blur": + o = Ur(Ur({}, o), {}, { hasFocus: !1 }); + break; + case "change": + o = Ur(Ur({}, o), {}, { cursorPosition: r.cursorPosition, hasError: r.hasError, showRemainingCharacters: r.showRemainingCharacters, remainingCharacters: r.remainingCharacters, value: r.value || "" }); + break; + case "focus": + o = Ur(Ur({}, o), {}, { focusedAtLeastOnce: !0, hasFocus: !0 }); + break; + case "keyUp": + o = Ur(Ur({}, o), {}, { cursorPosition: r.cursorPosition, mentionData: r.mentionData }); + break; + case "updateAcceptedMentions": + o.acceptedMentions = r; + break; + case "updateCursorPosition": + o.cursorPosition = r; + break; + case "updateMentionData": + o.mentionData = r; + break; + case "updateMentionKeyPress": + o.mentionKeyPress = r; + break; + case "updateSelectedMentionIndex": + o.selectedMentionIndex = r; + break; + case "updateEmojiInputKeyPress": + o.emojiInputKeyPress = r; + break; + case "updateSelectedEmojiIndex": + o.selectedEmojiIndex = r; + } + return o; + }, + Wr = (0, z.forwardRef)(function (e, t) { + var n, + r = e.allowCollapseOverride, + o = e.animationEnabled, + a = e.annotationsEnabledOverride, + i = e.annotationLocationCoordinates, + s = e.className, + l = e.commentSubmit, + u = e.compactLayout, + d = e.defaultMentions, + p = e.hideHeader, + f = e.hideTools, + m = e.initialValue, + h = e.intl, + v = e.isDraft, + y = e.mentionsEnabled, + g = e.onAnnotationClick, + b = e.onBlur, + E = e.onClick, + D = e.onEmojiIconClick, + C = e.onFocus, + w = e.onHeightChange, + S = e.onKeyUp, + A = e.onMentionClick, + k = e.onTextPresent, + _ = e.placeholder, + T = e.posting, + I = e.richTextEntry, + O = e.shouldFocusIfValueExists, + F = e.isEmojiPickerVisible, + x = e.setEmojiPickerInfo, + N = e.theme, + R = e.touchControls, + L = h.formatMessage, + M = (0, z.useRef)(), + P = (0, z.useRef)(), + j = (0, z.useRef)(), + B = (0, z.useRef)(), + Z = (0, z.useRef)(), + U = (0, z.useRef)(), + H = (0, z.useRef)(), + G = (0, z.useContext)(re.ZP), + W = G.assetData, + Q = G.enableEmojiPicker, + J = G.latestMobileEnabled, + Y = (0, sr.Z)({ annotationsEnabledOverride: a }), + q = Y.annotationsEnabled, + K = Y.isAnnotating, + $ = Y.annotationTypes, + te = ar(), + ne = te.isFullscreen, + oe = te.setIsFullscreen, + ae = te.setInputFocused, + ie = te.setMentionListShown, + se = te.subview, + ce = (0, Ve.v9)(function (e) { + return (0, Pr._X)(e, W.id); + }), + le = ce.mobileEditingCommentId, + ue = ce.parentCommentId, + de = (0, Ve.v9)(function (e) { + return (0, Pr.v)(e)[le]; + }), + pe = (0, cn.cs)(), + fe = (0, ln.UP)(), + me = (0, z.useRef)(F), + he = jr( + (0, z.useReducer)(Gr, { + acceptedMentions: d, + cursorPosition: 0, + focusedAtLeastOnce: !1, + hasError: !1, + hasFocus: !1, + mentionData: {}, + mentionKeyPress: {}, + remainingCharacters: null, + selectedMentionIndex: 0, + showRemainingCharacters: !1, + value: m, + emojiInputKeyPress: {}, + }), + 2 + ), + ve = he[0], + ye = ve.acceptedMentions, + be = ve.cursorPosition, + Ee = ve.focusedAtLeastOnce, + De = ve.hasError, + Ce = ve.hasFocus, + we = ve.mentionData, + Se = ve.mentionKeyPress, + Ae = ve.remainingCharacters, + ke = ve.selectedMentionIndex, + _e = ve.showRemainingCharacters, + Te = ve.value, + Ie = ve.emojiInputKeyPress, + Oe = he[1], + Fe = (0, z.useCallback)( + function (e) { + return e ? Te.trim() : Te; + }, + [Te] + ), + xe = jr( + (0, z.useState)(function () { + return !Fe().length > 0; + }), + 2 + ), + Ne = xe[0], + Re = xe[1], + Le = (0, z.useCallback)( + function () { + var e = (arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : "").trim(), + t = y ? (0, wn.WD)(e, ye).length : e.length, + n = An.Ry - t; + return { hasError: t > An.Ry, showRemainingCharacters: n <= 10, remainingCharacters: n }; + }, + [ye, y] + ), + Me = (0, z.useCallback)(function () { + return new Promise(function (e) { + setTimeout(function () { + var t; + null === (t = H.current) || void 0 === t || t.setFocus(), e(); + }, 300); + }); + }, []), + Pe = (0, z.useCallback)( + function () { + F && ((me.current = !1), x()); + }, + [F, x] + ); + (0, z.useEffect)( + function () { + me.current = F; + }, + [F] + ), + (0, z.useEffect)(function () { + return function () { + return me.current && x(); + }; + }, []), + (0, z.useEffect)( + function () { + if (m) { + var e = m.length, + t = Le(m); + k && k(m, t.hasError), H.current.setText(m, e, !0, O), Oe({ type: "updateCursorPosition", data: e }), O && Me(); + } + }, + [Me] + ), + (0, z.useEffect)( + function () { + i && (("insert" !== i.subtype && "replace" !== i.subtype) || Oe({ type: "updateAcceptedMentions", data: [] })); + }, + [i] + ); + var je = (0, z.useCallback)(function () { + Re(!1); + }, []), + Be = (0, z.useCallback)( + function () { + Ce || Re(!0), u && !J && w(); + }, + [u, Ce, J, w] + ), + Ze = (0, z.useCallback)( + function () { + var e; + J && ae(!1), Oe({ type: "blur" }), null === (e = Z.current) || void 0 === e || e.hide(), b && b(); + }, + [J, b, ae] + ), + Ue = (0, z.useCallback)( + function (e, t) { + var n = Le(e); + k && k(e, n.hasError), Oe({ type: "change", data: { cursorPosition: t, hasError: n.hasError, showRemainingCharacters: n.showRemainingCharacters, remainingCharacters: n.remainingCharacters, value: e } }); + }, + [Le, k] + ), + ze = (0, z.useCallback)( + function (e) { + J || ((Ce || u || R) && e.target.closest("[data-annotation-button]")) || F || Me(), E && E(); + }, + [u, Ce, F, J, E, Me, R] + ), + He = (0, z.useCallback)( + function (e) { + var t; + J && ae(!0), + e.persist(), + pe.completeCurrentOrResumeCoachMarks({ dismissType: "blur" }), + fe.completeCurrent({ dismissType: "blur" }), + requestAnimationFrame(function () { + Oe({ type: "focus" }), C(e); + }), + null === (t = Z.current) || void 0 === t || t.show(); + }, + [pe, fe, J, C, ae] + ), + Ge = (0, z.useCallback)( + function (e) { + if (Z.current && Z.current.getShowMentions()) + (e.keyCode !== An.nx.ENTER && e.keyCode !== An.nx.UP && e.keyCode !== An.nx.DOWN && e.keyCode !== An.nx.ESCAPE && e.keyCode !== An.nx.TAB) || + (e.preventDefault(), e.persist(), Oe({ type: "updateMentionKeyPress", data: e })); + else if (P.current && P.current.getShowEmojis()) + (e.keyCode !== An.nx.ENTER && e.keyCode !== An.nx.UP && e.keyCode !== An.nx.DOWN && e.keyCode !== An.nx.ESCAPE && e.keyCode !== An.nx.TAB && e.keyCode !== An.nx.SPACE) || + (e.preventDefault(), e.persist(), Oe({ type: "updateEmojiInputKeyPress", data: e })); + else if ((0, wn.Rz)(e) && e.metaKey) { + var t = Le(Te); + S && S(e, Te.trim(), t.hasError); + } else e.keyCode !== An.nx.ENTER || (0, wn.Rz)(e) || (e.preventDefault(), document.execCommand("insertLineBreak"), nr()); + }, + [Le, S, Te] + ), + We = (0, z.useCallback)( + function (e, t, n) { + var r = void 0 !== n ? n : Te, + o = Le(r); + S && S(e, r, o.hasError), Oe({ type: "keyUp", data: { cursorPosition: t, mentionData: Ur(Ur({}, we), {}, { tooltipUser: null }) } }); + }, + [Oe, Le, S, we, Te] + ), + Qe = (0, z.useCallback)(function (e) { + Oe({ type: "updateSelectedMentionIndex", data: e }); + }, []), + Je = (0, z.useCallback)(function (e) { + Oe({ type: "updateSelectedEmojiIndex", data: e }); + }, []), + Ye = (0, z.useCallback)( + function (e) { + e.preventDefault(); + var t = Ce ? H.current.getCursorPosition() : be, + n = Te.length > 0 ? Te[t - 1] : "", + r = (0, wn.nJ)(n) ? "@" : " @", + o = Te; + if ("@" !== n) { + "\n" === n && t === Te.length && (o = o.slice(0, -1)); + var a = o.split(""); + a.splice(t, 0, r), H.current.setText(a.join(""), t + r.length), Pe(), A(); + } + }, + [be, Pe, Ce, A, Te] + ), + qe = (0, z.useCallback)( + function (e) { + (e.keyCode !== An.nx.ENTER && e.keyCode !== An.nx.SPACE) || Ye(e); + }, + [Ye] + ), + Xe = (0, z.useCallback)( + function (e) { + (e.keyCode !== An.nx.ENTER && e.keyCode !== An.nx.SPACE) || g(e, "pin"); + }, + [g] + ), + Ke = (0, z.useCallback)( + function (e) { + e.preventDefault(), + M.current && + (0, rr.Z)(M.current, { block: "start", inline: "nearest" }).forEach(function (e) { + var t = e.el, + n = e.top, + r = e.left; + (t.scrollTop = n - (p ? 0 : An.Rb)), (t.scrollLeft = r); + }), + D(); + }, + [D, p] + ), + $e = (0, z.useCallback)( + function (e) { + (e.keyCode !== An.nx.ENTER && e.keyCode !== An.nx.SPACE) || Ke(e); + }, + [Ke] + ), + et = (0, z.useCallback)( + function (e) { + Me() + .then(function () { + var t = H.current.getCursorPosition(), + n = Te.length > 0 ? Te[t - 1] : "", + r = e.native, + o = Te; + "\n" === n && t === Te.length && (o = o.slice(0, -1)); + var a = o.split(""); + a.splice(t, 0, r), + H.current.setText(a.join(""), t + r.length), + Pe(), + M.current && + (0, rr.Z)(M.current, { block: "start", inline: "nearest" }).forEach(function (e) { + var t = e.el, + n = e.top, + r = e.left; + (t.scrollTop = n - (p ? 0 : An.Rb)), (t.scrollLeft = r); + }); + }) + .catch(function () {}); + }, + [Pe, p, Me, Te] + ), + tt = (0, z.useCallback)( + function (e, t) { + if (e) { + var n = e.toElement || e.relatedTarget, + r = n.dataset.structuredtextid, + o = ye.find(function (e) { + return e.id === r; + }); + if (o) { + var a = { id: o.id, name: o.name, email: o.email, img: o.src, orgName: o.orgName }, + i = t.getBoundingClientRect(), + s = n.getBoundingClientRect(); + Oe({ type: "updateMentionData", data: Ur(Ur({}, we), {}, { mentionRect: s, mentionOffsetLeft: n.offsetLeft || 0, tooltipY: s.bottom - i.top || 0, tooltipUser: a }) }); + } + } else Oe({ type: "updateMentionData", data: Ur(Ur({}, we), {}, { tooltipUser: null }) }); + }, + [ye, we] + ), + nt = (0, z.useCallback)( + function (e) { + var t = we.mentionRect, + n = we.mentionOffsetLeft, + r = M.current.getBoundingClientRect(), + o = n + t.width / 2, + a = Math.max(n + t.width / 2 - e / 2, -12), + i = "auto", + s = o - a, + c = "auto"; + if (t.height > 20) (a = "auto"), (i = 0), (s = "auto"), (c = 0); + else if (a + e > r.width) { + var l = a + e - r.width; + (a -= l), (s += l); + } + Oe({ type: "updateMentionData", data: Ur(Ur({}, we), {}, { tooltipLeft: a || 0, tooltipRight: i || 0, tooltipCaretLeft: s || 0, tooltipCaretRight: c || 0 }) }); + }, + [we] + ), + rt = (0, z.useCallback)( + function () { + J && window.requestAnimationFrame(nr), se && ie(!0); + }, + [J, ie, se] + ), + ot = (0, z.useCallback)( + function () { + J && window.requestAnimationFrame(nr), ie(!1); + }, + [J, ie] + ), + at = (0, z.useCallback)(function (e, t, n) { + H.current.setText(e, t, n), Oe({ type: "updateCursorPosition", data: t }); + }, []), + it = (0, z.useCallback)(function (e) { + Oe({ type: "updateAcceptedMentions", data: e }); + }, []), + st = (0, z.useCallback)( + function (e) { + e.preventDefault(), oe(!ne), window.requestAnimationFrame(nr); + }, + [ne, oe] + ), + ct = (0, z.useCallback)( + function () { + oe(!0); + }, + [oe] + ), + lt = (0, z.useCallback)( + function () { + oe(!1); + }, + [oe] + ); + (0, z.useImperativeHandle)(t, function () { + return { + clearTextareaInput: function () { + return H.current.clearTextareaInput(); + }, + getAcceptedMentions: function () { + return ye; + }, + getComponentRef: function () { + return M.current; + }, + getTextareaInputValue: Fe, + maximize: ct, + minimize: lt, + setFocus: Me, + setTextareaInputValue: function (e) { + return at(e, e.length, !0); + }, + }; + }); + var ut = X()(c.default.component, s, { "has-error": De }), + dt = Fe().length > 0, + pt = o && (dt || r || F), + ft = Ce && o, + mt = we.tooltipCaretLeft, + ht = we.tooltipCaretRight, + vt = we.tooltipLeft, + yt = we.tooltipRight, + gt = we.tooltipUser, + bt = we.tooltipY, + Et = T || (Fe(!0) === m && !v) || 0 === Fe(!0).length || Ae < 0, + Dt = { top: "".concat(bt, "px"), left: vt, right: yt, zIndex: 1e3 }, + Ct = { left: mt, right: ht }, + wt = (0, z.useMemo)( + function () { + return ke < 0 ? { "aria-expanded": !1 } : { "aria-expanded": !0, "aria-activedescendant": "suggestion-".concat(ke) }; + }, + [ke] + ), + St = (0, z.useMemo)( + function () { + return ( + ye && + ye.map(function (e) { + return { class: "mention", id: e.id, text: "@".concat(e.name) }; + }) + ); + }, + [ye] + ), + At = L({ id: "comments.textarea_input.mention.tooltip" }), + kt = L({ id: "comments.textarea_input.pin.tooltip" }), + _t = L({ id: "comments.submit.submit" }), + Tt = L({ id: "comments.textarea_input.emoji.tooltip" }), + It = L({ id: ne ? "comments.textarea_input.shrink.tooltip" : "comments.textarea_input.expand.tooltip" }), + Ot = R + ? V().createElement( + "div", + null, + V().createElement(ge, { "aria-label": "expand", "data-testid": "expand", className: "expand", icon: ne ? V().createElement(bn, null) : V().createElement(yn, null), variant: "tool", onMouseDown: st }) + ) + : V().createElement(Kn, { "aria-label": "expand", "data-testid": "expand", className: "expand", icon: ne ? V().createElement(bn, null) : V().createElement(yn, null), placement: "bottom", tooltip: It, onClick: st }), + Ft = R + ? V().createElement("div", { ref: j }, V().createElement(ge, { "aria-label": Tt, "data-test": "emoji-button-touch", className: "tool-button", icon: V().createElement(Cn, null), variant: "tool", onMouseDown: Ke })) + : V().createElement(Kn, { "aria-label": Tt, "data-test": "emoji-button", className: "tool-button", icon: V().createElement(Cn, null), placement: "bottom", ref: j, tooltip: Tt, onMouseDown: Ke, onKeyDown: $e }), + Nt = R + ? V().createElement(ge, { + "aria-label": At, + "data-testid": "mention-button-touch", + className: "tool-button", + icon: V().createElement(hn, null), + variant: "tool", + onMouseDown: Ye, + style: { "--spectrum-actionbutton-background-color-hover": "transparent" }, + }) + : V().createElement(Kn, { "aria-label": At, "data-test": "mention-button", className: "tool-button", icon: V().createElement(hn, null), placement: "bottom", tooltip: At, onMouseDown: Ye, onKeyDown: qe }), + Rt = R + ? V().createElement(ge, { + "aria-label": kt, + "data-annotation-button": !0, + "data-test": "pin-button-touch", + className: "tool-button", + icon: V().createElement(En.Z, null), + variant: "tool", + onMouseDown: u + ? void 0 + : function (e) { + return g(e, "pin"); + }, + onClick: u + ? function (e) { + return g(e, "pin"); + } + : void 0, + selected: K, + }) + : V().createElement(Kn, { + "aria-label": kt, + "data-annotation-button": !0, + "data-test": "pin-button", + className: "tool-button", + icon: V().createElement(En.Z, null), + placement: "bottom", + tooltip: kt, + onKeyDown: Xe, + onMouseDown: function (e) { + return g(e, "pin"); + }, + selected: K, + }), + Lt = R + ? V().createElement(ge, { + "aria-label": _t, + "data-annotation-button": !0, + disabled: Et, + "data-testid": "mobile-submit-button", + className: "tool-button", + icon: V().createElement(xt, { className: Et ? "" : "mobile-submit-enabled" }), + id: "mobile-submit-button", + variant: "tool", + onMouseDown: l, + }) + : V().createElement(Kn, { + "aria-label": _t, + "data-annotation-button": !0, + "data-testid": "mobile-submit-button", + disabled: Et, + className: "tool-button", + icon: V().createElement(xt, { className: Et ? "" : "mobile-submit-enabled" }), + id: "mobile-submit-button", + placement: "bottom", + tooltip: _t, + onClick: l, + }), + Mt = V().createElement( + "div", + { className: "action-bar-container", ref: U }, + u && y && Nt, + J && !ue && !de && V().createElement(Mr, null), + V().createElement("div", { className: "action-bar".concat(_e ? " remaining-characters-visible" : "") }, V().createElement("div", { className: "action-container" }, !u && Q && Ft, !u && y && Nt, q && !$ && !J && Rt, J && Lt)) + ); + return V().createElement( + "div", + { className: ut, ref: M, onAnimationStart: je, onAnimationEnd: Be }, + y && V().createElement(Jn, { ref: Z, cursorIndex: be, defaultMentions: d, keyPress: Se, onAcceptedSuggestionsChange: it, onChange: Qe, onHide: ot, onShow: rt, onTextValueChange: at, preventShow: J && !se, textValue: Te }), + !u && Q && V().createElement(z.Suspense, { fallback: null }, V().createElement(Vr, { ref: P, cursorIndex: be, keyPress: Ie, textValue: Te, onTextValueChange: at, onEmojiSelect: Je })), + V().createElement( + "div", + { className: X()("textbox", { focus: Ce, "has-text": dt, "disable-animation": pt, expand: ft, collapse: !ft && Ee && o, collapsed: Ne }), onClick: ze }, + V().createElement( + "div", + { className: X()("textarea-wrapper", { collapsed: f && J, shrunk: !f && J && !ne, expanded: !f && J && ne }) }, + V().createElement(Sr, { + ariaAttributes: wt, + onBlur: Ze, + onChange: Ue, + onClick: function () { + return Oe({ type: "updateCursorPosition", data: H.current.getCursorPosition() }); + }, + onFocus: He, + onKeyDown: Ge, + onKeyUp: We, + onStructuredTextHover: tt, + placeholder: L({ id: _ || "comments.submit.placeholder" }), + ref: H, + richTextEntry: I, + structuredText: St, + }), + J && !f && Ot + ), + gt && !R && V().createElement(Ln, { style: Dt, arrowStyle: Ct, trapFocus: !1, placement: "bottom" }, V().createElement(Un, { user: gt, onRender: nt })), + (!J || !f) && Mt + ), + _e ? V().createElement("div", { id: "ccx-comment-textarea-message", className: "remaining-characters" }, V().createElement(ee.Z, { id: "comments.textarea_input.remaining", values: { num: Ae.toString() } })) : null, + F && + V().createElement( + z.Suspense, + { fallback: null }, + V().createElement(Hr, { intl: h, onEmojiSelect: et, onEmojiPickerClose: Pe, openerRef: j, ref: B, theme: N, width: null === (n = M.current) || void 0 === n ? void 0 : n.offsetWidth }) + ) + ); + }); + (Wr.displayName = "CommentInput"), + (Wr.defaultProps = { commentSubmit: function () {}, enableEmojiPicker: !0, hideTools: !1, initialValue: "", isDraft: !1, posting: !1, setEmojiPickerInfo: function () {}, shouldFocusIfValueExists: !0 }), + (Wr.propTypes = { + allowCollapseOverride: G().bool, + animationEnabled: G().bool, + annotationsEnabledOverride: G().bool, + annotationLocationCoordinates: G().object, + annotationTypes: G().shape({ draw: G().bool, pin: G().bool, text: G().bool }), + className: G().string, + commentSubmit: G().func, + compactLayout: G().bool, + defaultMentions: G().array, + enableEmojiPicker: G().bool, + hideHeader: G().bool, + hideTools: G().bool, + initialValue: G().string, + intl: G().object, + isAnnotating: G().bool, + isDraft: G().bool, + mentionsEnabled: G().bool, + onAnnotationClick: G().func, + onBlur: G().func, + onClick: G().func, + onEmojiIconClick: G().func, + onFocus: G().func, + onKeyUp: G().func, + onHeightChange: G().func, + onMentionClick: G().func, + onTextPresent: G().func, + placeholder: G().string, + posting: G().bool, + richTextEntry: G().bool, + shouldFocusIfValueExists: G().bool, + setEmojiPickerInfo: G().func, + isEmojiPickerVisible: G().bool, + theme: G().string, + touchControls: G().bool, + }); + const Qr = (0, gt.ZP)(Wr, { forwardRef: !0 }); + var Jr = V().memo(function (e) { + var t = e.handlePinClick, + n = e.isAnnotating, + r = e.isPinnable, + o = e.isVisible, + a = e.intl, + i = e.touchControls, + s = { "data-annotation-button": !0, "data-test": "pin-button", className: "tool-button", variant: "tool", icon: V().createElement(En.Z, null), onMouseDown: t, selected: n }, + c = ge; + return i || ((c = Kn), (s.tooltip = a.formatMessage({ id: "comments.textarea_input.pin.tooltip" }))), V().createElement("div", { className: "footer-actions ".concat(i ? "touch-controls" : "") }, o && r && V().createElement(c, s)); + }); + (Jr.displayName = "ItemFooterActions"), + (Jr.defaultProps = { isPinnable: !1, isAnnotating: !1, isVisible: !0, touchControls: !1 }), + (Jr.propTypes = { handlePinClick: G().func.isRequired, isAnnotating: G().bool, intl: G().shape({ formatMessage: G().func.isRequired }).isRequired, isPinnable: G().bool, isVisible: G().bool, touchControls: G().bool }); + const Yr = Jr; + var qr = n(64921), + Xr = n(93056), + Kr = n(77271), + $r = n(10326), + eo = function (e) { + var t = e.annotationTypes, + n = e.pinNum, + r = e.annotationType, + o = e.strokeColor; + if (!e.visible) return null; + var a = null, + i = { backgroundColor: o }; + if ((!t || (t && t.pin)) && n) { + var s = n; + t ? ((s = V().createElement(En.Z, { style: { "--spectrum-icon-size": "12px" }, size: "XS" })), i.backgroundColor || (i = { backgroundColor: "#B80000" })) : (i = {}), + (a = V().createElement("span", { className: "annotation-marker", "data-test": "pin-badge", style: i }, s)); + } else + t && t.draw && "shape" === r + ? (a = V().createElement("span", { className: "annotation-marker", style: i }, V().createElement(Fr, { style: { "--spectrum-icon-size": "12px" }, "data-test": "draw-badge", size: "XS" }))) + : t && t.highlight && "highlight" === r + ? (a = V().createElement("span", { className: "annotation-marker", style: i }, V().createElement(Xr.Z, { "data-test": "highlight-badge" }))) + : t && t.strikethrough && "strikethrough" === r + ? (a = V().createElement("span", { className: "annotation-marker", style: i }, V().createElement(qr.Z, { style: { "--spectrum-icon-size": "12px" }, "data-test": "strikethrough-badge", size: "XS" }))) + : t && t.insert && "insert" === r + ? (a = V().createElement("span", { className: "annotation-marker", style: i }, V().createElement(Kr.Z, { "data-test": "insert-badge" }))) + : t && t.replace && "replace" === r && (a = V().createElement("span", { className: "annotation-marker", style: i }, V().createElement($r.Z, { "data-test": "replace-badge" }))); + return a; + }; + (eo.defaultProps = { pinNum: void 0, annotationType: void 0, strokeColor: "", visible: !1 }), (eo.propTypes = { pinNum: G().number, annotationType: G().string, strokeColor: G().string, visible: G().bool }); + const to = eo; + var no = function (e) { + var t = e.isOffline; + return V().createElement("span", { "data-testid": "unread-circle", className: X()(u.default.component, { "is-offline": t }) }); + }; + (no.defaultProps = { isOffline: !1 }), (no.propTypes = { isOffline: G().bool }); + const ro = no; + function oo(e) { + return ( + (oo = + "function" == typeof Symbol && "symbol" == typeof Symbol.iterator + ? function (e) { + return typeof e; + } + : function (e) { + return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e; + }), + oo(e) + ); + } + var ao = ["isSubmittingReply"]; + function io(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + function so() { + return ( + (so = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + so.apply(this, arguments) + ); + } + function co(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + function lo(e, t) { + return ( + (lo = Object.setPrototypeOf + ? Object.setPrototypeOf.bind() + : function (e, t) { + return (e.__proto__ = t), e; + }), + lo(e, t) + ); + } + function uo(e) { + if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); + return e; + } + function po(e) { + return ( + (po = Object.setPrototypeOf + ? Object.getPrototypeOf.bind() + : function (e) { + return e.__proto__ || Object.getPrototypeOf(e); + }), + po(e) + ); + } + function fo(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var mo = 150, + ho = { weekday: "long", year: "numeric", month: "long", day: "numeric" }, + vo = (function (e) { + !(function (e, t) { + if ("function" != typeof t && null !== t) throw new TypeError("Super expression must either be null or a function"); + (e.prototype = Object.create(t && t.prototype, { constructor: { value: e, writable: !0, configurable: !0 } })), Object.defineProperty(e, "prototype", { writable: !1 }), t && lo(e, t); + })(i, e); + var t, + n, + r, + o, + a = + ((r = i), + (o = (function () { + if ("undefined" == typeof Reflect || !Reflect.construct) return !1; + if (Reflect.construct.sham) return !1; + if ("function" == typeof Proxy) return !0; + try { + return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; + } catch (e) { + return !1; + } + })()), + function () { + var e, + t = po(r); + if (o) { + var n = po(this).constructor; + e = Reflect.construct(t, arguments, n); + } else e = t.apply(this, arguments); + return (function (e, t) { + if (t && ("object" === oo(t) || "function" == typeof t)) return t; + if (void 0 !== t) throw new TypeError("Derived constructors may only return object or undefined"); + return uo(e); + })(this, e); + }); + function i(e) { + var t; + !(function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + })(this, i), + (t = a.call(this, e)); + var n = Q()(e, "commentData.dirtyEdit"), + r = Q()(e, "commentData.bodyValue"); + t.justNowTimer; + var o = r.match( + /[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26D3\uFE0F?(?:\u200D\uD83D\uDCA5)?|\u26F9(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF43\uDF45-\uDF4A\uDF4C-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDF44(?:\u200D\uD83D\uDFEB)?|\uDF4B(?:\u200D\uD83D\uDFE9)?|\uDFC3(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4\uDEB5](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE41\uDE43\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC26(?:\u200D(?:\u2B1B|\uD83D\uDD25))?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE])))?))?|\uDC6F(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDD75(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?|\uDE42(?:\u200D[\u2194\u2195]\uFE0F?)?|\uDEB6(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE88\uDE90-\uDEBD\uDEBF-\uDEC2\uDECE-\uDEDB\uDEE0-\uDEE8]|\uDD3C(?:\u200D[\u2640\u2642]\uFE0F?|\uD83C[\uDFFB-\uDFFF])?|\uDDCE(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1|\uDDD1\u200D\uD83E\uDDD2(?:\u200D\uD83E\uDDD2)?|\uDDD2(?:\u200D\uD83E\uDDD2)?))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g + ); + return ( + (t.state = { + bigText: (null == o ? void 0 : o.length) <= 3 && (null == o ? void 0 : o.join("")) === r, + dirtyReply: "", + isEditing: !!n && n !== r, + isSaving: !1, + overEditTextLimit: !1, + overReplyTextLimit: !1, + replyTextPresent: !1, + editTextPresent: !!r, + updatedJustNow: !1, + }), + (t.isInputFocused = t.isInputFocused.bind(uo(t))), + (t.handleDeleteButtonClick = t.handleDeleteButtonClick.bind(uo(t))), + (t.handleEditBtnClick = t.handleEditBtnClick.bind(uo(t))), + (t.handleReplyButtonClick = t.handleReplyButtonClick.bind(uo(t))), + (t.handleReplyBtnOnMouseDown = t.handleReplyBtnOnMouseDown.bind(uo(t))), + (t.handleResolveButtonClick = t.handleResolveButtonClick.bind(uo(t))), + (t.handleMarkUnreadBtnClick = t.handleMarkUnreadBtnClick.bind(uo(t))), + (t.handleMarkReadBtnClick = t.handleMarkReadBtnClick.bind(uo(t))), + (t.handleUnresolveButtonClick = t.handleUnresolveButtonClick.bind(uo(t))), + (t.handleCommentItemRef = t.handleCommentItemRef.bind(uo(t))), + (t.handleReplyTextareaRef = t.handleReplyTextareaRef.bind(uo(t))), + (t.handleReplyOnKeyUp = t.handleReplyOnKeyUp.bind(uo(t))), + (t.handleReplyOnClick = t.handleReplyOnClick.bind(uo(t))), + (t.handleReplyOnBlur = t.handleReplyOnBlur.bind(uo(t))), + (t.handleDropdownMouseDown = t.handleDropdownMouseDown.bind(uo(t))), + (t.handleCancelEditBtnClick = t.handleCancelEditBtnClick.bind(uo(t))), + (t.handleCancelReply = t.handleCancelReply.bind(uo(t))), + (t.handleSaveEditChangesBtnClick = t.handleSaveEditChangesBtnClick.bind(uo(t))), + (t.handleEditOnKeyUp = t.handleEditOnKeyUp.bind(uo(t))), + (t.handleEditTextareaRef = t.handleEditTextareaRef.bind(uo(t))), + (t.handleEditOnClick = t.handleEditOnClick.bind(uo(t))), + (t.handleEditTextPresent = t.handleEditTextPresent.bind(uo(t))), + (t.handleReplyTextPresent = t.handleReplyTextPresent.bind(uo(t))), + (t.handlePinClick = t.handlePinClick.bind(uo(t))), + (t.handleSubmitReply = t.handleSubmitReply.bind(uo(t))), + (t.handleFocus = t.handleFocus.bind(uo(t))), + (t.handleReplyFocus = t.handleReplyFocus.bind(uo(t))), + (t.handleEditMentionClick = t.handleEditMentionClick.bind(uo(t))), + (t.handleReplyMentionClick = t.handleReplyMentionClick.bind(uo(t))), + (t.handleReplyEmojiClick = t.handleReplyEmojiClick.bind(uo(t))), + (t.handleEditEmojiClick = t.handleEditEmojiClick.bind(uo(t))), + (t.handleLinkClick = t.handleLinkClick.bind(uo(t))), + (t.handleReplyClick = t.handleReplyClick.bind(uo(t))), + (t.handleReplySelect = t.handleReplySelect.bind(uo(t))), + t + ); + } + return ( + (t = i), + (n = [ + { + key: "componentDidMount", + value: function () { + this.props.isSelectedReply && this.handleReplySelect(); + }, + }, + { + key: "componentWillUnmount", + value: function () { + var e = this.props, + t = e.highlight, + n = e.parentCommentId, + r = e.setHoveredAnnotation, + o = e.touchControls; + clearTimeout(this.justNowTimer), t && r && !n && !o && r(void 0); + }, + }, + { + key: "componentDidUpdate", + value: function (e, t) { + var n = this, + r = this.props, + o = r.assetData, + a = r.closeButtonClicked, + i = r.commentData, + s = r.compactLayout, + c = r.errors, + l = r.isSelectedReply, + u = r.isSubmittingReply, + d = r.latestMobileEnabled, + p = r.setShowCommentId, + f = r.showCommentId, + m = r.touchControls, + h = this.state.isEditing, + v = i.id, + y = i.bodyValue, + g = i.repliesOpen, + b = i.replies, + E = !!Q()(e, "commentData.repliesOpen"), + D = e.assetData.nodeId !== o.nodeId, + C = b && 0 === b.length; + if (i.bodyValue !== e.commentData.bodyValue) { + var w = y.match( + /[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26D3\uFE0F?(?:\u200D\uD83D\uDCA5)?|\u26F9(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF43\uDF45-\uDF4A\uDF4C-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDF44(?:\u200D\uD83D\uDFEB)?|\uDF4B(?:\u200D\uD83D\uDFE9)?|\uDFC3(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4\uDEB5](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE41\uDE43\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC26(?:\u200D(?:\u2B1B|\uD83D\uDD25))?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE])))?))?|\uDC6F(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDD75(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?|\uDE42(?:\u200D[\u2194\u2195]\uFE0F?)?|\uDEB6(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE88\uDE90-\uDEBD\uDEBF-\uDEC2\uDECE-\uDEDB\uDEE0-\uDEE8]|\uDD3C(?:\u200D[\u2640\u2642]\uFE0F?|\uD83C[\uDFFB-\uDFFF])?|\uDDCE(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1|\uDDD1\u200D\uD83E\uDDD2(?:\u200D\uD83E\uDDD2)?|\uDDD2(?:\u200D\uD83E\uDDD2)?))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g + ); + this.setState({ bigText: (null == w ? void 0 : w.length) <= 3 && (null == w ? void 0 : w.join("")) === y }); + } + h && + y !== e.commentData.bodyValue && + (this.setState({ isEditing: !1, editTextPresent: !1 }), + s && + requestAnimationFrame(function () { + (0, Ae.Z)(n._element, { block: "center" }); + })), + e.errors[v] !== An.Al.ERROR && c[v] === An.Al.ERROR && y !== e.commentData.bodyValue && this.setState({ isEditing: !0, editTextPresent: !0 }), + !e.isSubmittingReply && + u && + ((0, wn.F_)(An.uX), + this._replyTextareaEl && this._replyTextareaEl.clearTextareaInput(), + b.length > e.commentData.replies.length && this.setState({ dirtyReply: "" }), + s && + !d && + requestAnimationFrame(function () { + (0, Ae.Z)(n._element, { block: "center" }); + })); + var S = this._getTextareaReplyInstance(), + A = null == S ? void 0 : S.getComponentRef(); + !s && !D && !E && C && g && this._replyTextareaEl && A && ((0, Ae.Z)(A.parentElement, { block: m ? "center" : "nearest", duration: mo }), S.setFocus()), + s && C && !E && g && this._replyTextareaEl && A && (0, Ae.Z)(A.parentElement, { block: "end", scrollMode: "if-needed", duration: mo }); + var k = this._getTextareaEditInstance(), + _ = null == k ? void 0 : k.getComponentRef(); + !D && e && !t.isEditing && h && this._editTextareaEl && _ && ((0, Ae.Z)(_, { block: m ? "center" : "nearest", duration: mo }), k.setFocus()), + !e.showCommentId && + f && + f === v && + requestAnimationFrame(function () { + (0, Ae.Z)(n._element, { block: m ? "center" : "nearest", duration: mo }), + setTimeout(function () { + p(); + }, 6e3); + }); + var T = e.focusedInputInfo; + s && + a !== e.closeButtonClicked && + T && + (T.id === v && this.state.isEditing ? this.handleCancelEditBtnClick() : "reply-input" === T.itemType && T.id === v && this.cleanFocusedInputInfo(), + T.id === v && + requestAnimationFrame(function () { + (0, Ae.Z)(n._element, { block: "center" }); + })), + l && this.handleReplySelect(); + }, + }, + { + key: "_getTextareaEditInstance", + value: function () { + var e, t; + return (null === (e = this._editTextareaEl) || void 0 === e || null === (t = e.getWrappedInstance) || void 0 === t ? void 0 : t.call(e)) || this._editTextareaEl; + }, + }, + { + key: "_getTextareaReplyInstance", + value: function () { + var e, t; + return (null === (e = this._replyTextareaEl) || void 0 === e || null === (t = e.getWrappedInstance) || void 0 === t ? void 0 : t.call(e)) || this._replyTextareaEl; + }, + }, + { + key: "isInputFocused", + value: function () { + var e = this.props, + t = e.commentData, + n = e.focusedInputInfo, + r = !1; + switch (n && n.itemType) { + case "edit": + case "reply-input": + r = n.id === t.id; + break; + case "reply-item": + r = n.parentCommentId === t.id; + } + return r; + }, + }, + { + key: "handleDeleteButtonClick", + value: function () { + var e = this.props, + t = e.assetData, + n = e.ccxIngest, + r = e.commentData, + o = e.confirmDelete, + a = e.parentCommentId; + n.fireEvent({ event: { context_guid: a, subcategory: a ? "delete-reply" : "delete-comment", subtype: "delete", type: "click" } }), o(t.id, r.id, a); + }, + }, + { + key: "handleReplyButtonClick", + value: function () { + var e, + t, + n = this.props, + r = n.assetData, + o = n.ccxIngest, + a = n.clearIsReadLocally, + i = n.commentData, + s = n.dispatchStakeholderOnboardingAction, + c = n.enableReadUnread, + l = n.isReadLocally, + u = n.latestMobileEnabled, + d = n.setIsRead, + p = n.setParentCommentId, + f = n.toggleReplyVisibility; + if ( + (n.imsData.id === (null === (e = i.creator) || void 0 === e ? void 0 : e.id) && !i.repliesOpen && i.replies.length >= 1 && s.expandedRepliesToOwnComment({ commentId: i.id }), + o.fireEvent( + { + event: { context_guid: i.id, subcategory: "reply-comment", subtype: "reply", type: "click" }, + custom: { collab: { reply_type: null != i && i.repliesOpen ? "hide-replies" : "show-replies", total_replies: null == i || null === (t = i.replies) || void 0 === t ? void 0 : t.length } }, + }, + !0 + ), + u) + ) + p(r.id, i.id); + else { + f(i.id); + var m = (null == i ? void 0 : i.replies.length) >= 1, + h = !(null == i || !i.repliesOpen); + if (c && m && h) { + var v = {}; + i.replies.forEach(function (e) { + l(e) && ((v[e.id] = { read: !0 }), a(e)); + }), + Object.keys(v).length > 0 && + d(v, r.id, { overrideExplicitlySet: !0 }) + .then(function () { + o.fireEvent({ event: { context_guid: i.id, subcategory: "read-unread", subtype: "mark-as-read-close-reply", type: "click" } }); + }) + .catch(function (e) { + var t = e.status, + n = e.message; + o.fireEvent({ event: { context_guid: i.id, subcategory: "read-unread", subtype: "error", type: "click", error_code: t, error_type: n, error_desc: "failed-to-mark-as-read-on-close-reply" } }); + }); + } + } + }, + }, + { + key: "handleReplyBtnOnMouseDown", + value: function (e) { + e && e.preventDefault(), (this.isClickingReply = !0); + }, + }, + { + key: "handleUnresolveButtonClick", + value: function (e) { + if ((0, wn.Ho)(e)) { + var t = this.props, + n = t.assetData, + r = t.ccxIngest, + o = t.commentData, + a = t.latestMobileEnabled, + i = t.imsData, + s = t.resetGuestUserSession, + c = t.setParentCommentId, + l = t.unresolveComment, + u = this.context.onGuestSession; + r.fireEvent({ event: { subcategory: "resolve", subtype: "move-to-unresolved", type: "click" } }), + a && c(n.id), + l(o) + .then(function () { + return r.fireEvent({ event: { subcategory: "resolve", subtype: "move-to-unresolved", type: "render" } }); + }) + .catch(function (e) { + var t = e.status, + n = e.message; + r.fireEvent({ event: { subcategory: "resolve", subtype: "error", type: "render", error_code: t, error_type: n, error_desc: "comment-failed-to-unresolve" } }), + i.token.includes("AnonBearer") && 401 === t && (s(), u("destroy", i)); + }); + } + }, + }, + { + key: "handleMarkUnreadBtnClick", + value: function (e) { + if ((0, wn.Ho)(e)) { + var t = this.props, + n = t.assetData, + r = t.ccxIngest, + o = t.commentData, + a = t.setIsRead, + i = o.id; + r.fireEvent({ event: { subcategory: "read-unread", subtype: "mark-as-unread", type: "click" } }), + a(fo({}, i, { read: !1 }), n.id, { explicitlySet: !0 }).catch(function (e) { + var t = e.status, + n = e.message; + r.fireEvent({ event: { subcategory: "read-unread", subtype: "error", type: "render", error_code: t, error_type: n, error_desc: "comment-metadata-failed-to-unread" } }); + }); + } + }, + }, + { + key: "handleMarkReadBtnClick", + value: function (e) { + if ((0, wn.Ho)(e)) { + var t = this.props, + n = t.assetData, + r = t.ccxIngest, + o = t.commentData, + a = t.setIsRead, + i = o.id; + r.fireEvent({ event: { subcategory: "read-unread", subtype: "mark-as-read-click-menu", type: "click" } }), + a(fo({}, i, { read: !0 }), n.id, { explicitlySet: !0 }).catch(function (e) { + var t = e.status, + n = e.message; + r.fireEvent({ event: { subcategory: "read-unread", subtype: "error", type: "render", error_code: t, error_type: n, error_desc: "comment-metadata-failed-to-read" } }); + }); + } + }, + }, + { + key: "handleResolveButtonClick", + value: function (e) { + if ((0, wn.Ho)(e)) { + var t = this.props, + n = t.assetData, + r = t.ccxIngest, + o = t.commentData, + a = t.dispatchCreativeOnboardingAction, + i = t.dispatchStakeholderOnboardingAction, + s = t.latestMobileEnabled, + c = t.imsData, + l = t.resetGuestUserSession, + u = t.resolveComment, + d = t.setParentCommentId, + p = t.toggleReplyVisibility, + f = o.id, + m = o.replies, + h = o.repliesOpen, + v = this.context.onGuestSession; + h && + (p(f), + m.forEach(function (e) { + e.dirtyEdit = null; + })), + r.fireEvent({ event: { subcategory: "resolve", subtype: "submit", type: "click" } }), + s && d(n.id), + i.completeCurrentOrResumeCoachMarks({ dismissType: "blur" }), + a.completeCurrent({ dismissType: "blur" }), + u(o) + .then(function () { + r.fireEvent({ event: { subcategory: "resolve", subtype: "resolved-flag", type: "render" } }), i.commentResolved(), a.commentResolved(); + }) + .catch(function (e) { + var t = e.status, + n = e.message; + r.fireEvent({ event: { subcategory: "resolve", subtype: "error", type: "render", error_code: t, error_type: n, error_desc: "comment-failed-to-resolve" } }), + c.token.includes("AnonBearer") && 401 === t && (l(), v("destroy", c)); + }); + } + }, + }, + { + key: "handleCommentItemRef", + value: function (e) { + this._element = e; + }, + }, + { + key: "handleDropdownMouseDown", + value: function () { + var e = this.props.ccxIngest, + t = document.activeElement; + t.classList.contains("textarea") && t.blur(), e.fireEvent({ event: { subcategory: "navigation", subtype: "click-dropdown-menu", type: "click" } }); + }, + }, + { + key: "_getHeader", + value: function () { + var e, + t, + n, + r = this, + o = this.props, + a = o.annotationTypes, + i = o.assetData, + s = o.capabilities, + c = o.compactLayout, + l = o.commentData, + u = o.enableReadUnread, + d = o.focusedInputInfo, + p = o.imsData, + f = o.intl, + m = o.isOffline, + h = o.isResolved, + v = o.isSwcEnabled, + y = o.isUnread, + g = o.latestMobileEnabled, + b = o.parentCommentId, + E = o.touchControls, + D = this.state.isEditing; + if (c && d && d.itemType) return null; + i.isEsm || l.creator.id !== i.ownerId ? l.creator.affiliation === An.Kx && (t = "guest") : (t = "owner"), l && l.created && l.modified && (n = l.created !== l.modified); + var C = this._getSafeDate(l.modified), + w = (function (e, t, n) { + void 0 === t && (t = Date.now()), void 0 === n && (n = {}); + var r = bt(bt({}, Et), n || {}), + o = (+e - +t) / 1e3; + if (Math.abs(o) < r.second) return { value: Math.round(o), unit: "second" }; + var a = o / 60; + if (Math.abs(a) < r.minute) return { value: Math.round(a), unit: "minute" }; + var i = o / 3600; + if (Math.abs(i) < r.hour) return { value: Math.round(i), unit: "hour" }; + var s = o / 86400; + if (Math.abs(s) < r.day) return { value: Math.round(s), unit: "day" }; + var c = new Date(e), + l = new Date(t), + u = c.getFullYear() - l.getFullYear(); + if (Math.round(Math.abs(u)) > 0) return { value: Math.round(u), unit: "year" }; + var d = 12 * u + c.getMonth() - l.getMonth(); + if (Math.round(Math.abs(d)) > 0) return { value: Math.round(d), unit: "month" }; + var p = o / 604800; + return { value: Math.round(p), unit: "week" }; + })(C), + S = w.value, + A = w.unit, + k = new Date(C), + _ = k.getFullYear(), + T = new Date(); + T.setHours(0, 0, 0, 0); + var I = !1; + k.getTime() < T.getTime() && (I = !0); + var O, + F = !1; + if ((_ !== T.getFullYear() && (F = !0), I)) O = F ? V().createElement(yt, { day: "2-digit", month: "short", value: C, year: "numeric" }) : V().createElement(yt, { day: "2-digit", month: "short", value: C }); + else { + var x = 10; + ("day" !== A && "week" !== A && "quarter" !== A && "year" !== A) || (x = 0), + "second" === A + ? ((O = V().createElement(ee.Z, { id: "comments.item.just_now_timestamp" })), + this.justNowTimer || + (this.justNowTimer = setTimeout(function () { + r.setState({ updatedJustNow: !0 }); + }, 6e4))) + : (clearTimeout(this.justNowTimer), (O = V().createElement(dt, { value: S, unit: A, updateIntervalInSeconds: x }))); + } + var N = "guest" === t && !l.creator.name, + R = N ? f.formatMessage({ id: "comments.item.guest" }) : l.creator.name; + return V().createElement( + "div", + { className: "header-row" }, + V().createElement( + "div", + { className: "user-wrap" }, + V().createElement( + "div", + { className: "user-name" }, + V().createElement( + _t, + { placement: "top", trigger: E ? "click" : "hover" }, + V().createElement( + "span", + { className: "comment-creator-name", "data-testid": "comment-creator-name" }, + R, + t && !N && V().createElement("span", { className: "owner-tag", "data-testid": "".concat(t) }, V().createElement(ee.Z, { id: "comments.item.".concat(t) })) + ), + V().createElement(It, { style: { alignItems: "stretch" } }, R, t && !N && " (".concat(f.formatMessage({ id: "comments.item.".concat(t) }), ")")) + ) + ), + V().createElement("div", { className: "timestamp" }, O, n ? V().createElement(ee.Z, { id: "comments.item.edited_notify" }) : "") + ), + V().createElement(to, { pinNum: l.pinNum, annotationType: l.annotationType, strokeColor: Q()(l, "target.selector.strokeColor"), visible: !b, annotationTypes: a }), + V().createElement(pn, { + assetData: i, + commentId: l.id, + creator: l.creator, + enableReadUnread: u, + handleDeleteBtnClick: this.handleDeleteButtonClick, + handleEditBtnClick: this.handleEditBtnClick, + handleUnresolveBtnClick: this.handleUnresolveButtonClick, + handleResolveBtnClick: this.handleResolveButtonClick, + handleMarkUnreadBtnClick: this.handleMarkUnreadBtnClick, + handleMarkReadBtnClick: this.handleMarkReadBtnClick, + imsData: p, + isEditing: D, + isOffline: m, + isReply: !!b, + isSwcEnabled: v, + isUnread: y, + isResolved: "resolved" === l.status || h, + latestMobileEnabled: g, + onMouseDown: this.handleDropdownMouseDown, + touchControls: E, + viewingReplies: !!l.repliesOpen && (null === (e = l.replies) || void 0 === e ? void 0 : e.length) >= 1, + userRole: s.role, + }) + ); + }, + }, + { + key: "_getFooterReplyWrapper", + value: function () { + var e, + t = this.props, + n = t.commentData, + r = t.isOffline, + o = t.isRead, + a = t.isSwcEnabled, + i = n.replies && n.replies.length >= 1, + s = n && !!n.repliesOpen, + c = + i && + n.replies.some(function (e) { + return !o(e); + }), + l = !s && c, + u = function () { + return null; + }, + d = { display: "inline-flex", verticalAlign: "middle" }; + if ( + (a && l && (d.marginLeft = "calc(var(--ccx-comments-unread-reply-thread-margin-left) + 4px)"), + i + ? ((e = V().createElement(ee.Z, { id: "comments.item.replies", values: { noOfReplies: n.replies.length } })), + (u = function (e) { + return V().createElement( + "span", + so({}, e, { style: d, className: X()("", { "row unread-reply-thread": l }) }), + l && V().createElement("span", { className: "unread-container" }, V().createElement(ro, { isOffline: r })), + V().createElement(Rt, { size: "S", style: { transform: s ? "rotate(90deg)" : "" } }) + ); + })) + : (e = V().createElement(ee.Z, { id: "comments.item.reply" })), + "resolved" !== n.status || i) + ) + return V().createElement( + "div", + { className: X()("reply-btn-wrapper", { "replies-open": s, "has-replies": i }) }, + V().createElement( + ge, + { + "aria-expanded": s, + className: X()("reply-btn", { "has-unread-replies": c }), + onClick: this.handleReplyButtonClick, + onMouseDown: this.handleReplyBtnOnMouseDown, + quiet: !0, + variant: "secondary", + icon: V().createElement(u, null), + style: { borderStyle: "none", fontWeight: 600, "--spectrum-actionbutton-icon-size": "auto" }, + }, + e + ) + ); + }, + }, + { + key: "_getFooter", + value: function () { + var e, + t, + n, + r = this.props, + o = r.annotationTypes, + a = r.annotationsMultiPageEnabled, + i = r.annotationsEnabled, + s = r.assetData, + c = r.compactLayout, + l = r.commentData, + u = r.imsData, + d = r.intl, + p = r.isAnnotating, + f = r.isOffline, + m = r.parentCommentId, + h = r.touchControls; + if (m) return null; + var v = l.creator, + y = l.pinNum, + g = l.unmapped, + b = Q()(l, "target.selector.subtype"), + E = void 0 !== u.id && u.id === v.id, + D = !!m, + C = Boolean( + !o && + i && + (a || (null == l || null === (e = l.target) || void 0 === e || null === (t = e.selector) || void 0 === t || null === (n = t.node) || void 0 === n ? void 0 : n.id) === s.nodeId) && + E && + !D && + !g && + "resolved" !== l.status && + ("note" === b || "node" === b) && + (!c || !y) + ); + return V().createElement( + "div", + { className: "footer" }, + this._getFooterReplyWrapper(), + V().createElement(Yr, { touchControls: h, handlePinClick: this.handlePinClick, isPinnable: C, isAnnotating: p, intl: d, isVisible: !f }) + ); + }, + }, + { + key: "handleReplyTextareaRef", + value: function (e) { + this._replyTextareaEl = e; + }, + }, + { + key: "handleReplyOnKeyUp", + value: function (e) { + var t = this.props, + n = t.isOffline, + r = t.isSubmittingReply, + o = this.state, + a = o.dirtyReply, + i = o.overReplyTextLimit; + !(0, wn.Rz)(e) || !a || i || r || n || this.handleSubmitReply(e, !0); + }, + }, + { + key: "handleSubmitReply", + value: function (e, t) { + var n = this, + r = this.props, + o = r.assetData, + a = r.ccxIngest, + i = r.commentData, + s = r.compactLayout, + c = r.imsData, + l = r.isSubmittingReply, + u = r.mentionsEnabled, + d = r.replyComment, + p = r.resetGuestUserSession, + f = r.setIsRead, + m = this.context, + h = m.onGuestSession, + v = m.onInvokeLogin, + y = i.id, + g = this._getTextareaReplyInstance(), + b = null == g ? void 0 : g.getTextareaInputValue(!0); + if (!c || !c.token) return b && (0, wn.fe)(An.uX, { bodyValue: b, id: o.id, nodeId: o.nodeId, commentData: i }), void v(!0); + if ((v(!1), g && b && !l)) { + var E = "icon"; + t && (E = "keystroke"), a.fireEvent({ event: { subcategory: "reply-comment", subtype: "submit", type: E }, content: { parent_id: y } }); + var D = [], + C = b; + u && ((D = g.getAcceptedMentions()), (C = (0, wn.WD)(C, D))), + d(C, i.id, D, o) + .then(function () { + s && n.cleanFocusedInputInfo(), + f(fo({}, y, { read: !0 }), o.id, { recursive: !0 }).catch(function (e) { + console.error("Failed to mark replies as read on reply submit", e); + }); + }) + .catch(function (e) { + var t = e.status, + n = e.message; + a.fireEvent({ event: { context_guid: i.id, subcategory: "reply-comment", subtype: "error", type: "render", error_code: t, error_type: n, error_desc: "reply-failed-to-post" } }), + c.token.includes("AnonBearer") && 401 === t && (p(), h("destroy", c)), + g && g.setTextareaInputValue(b); + }), + document.activeElement.blur(); + } + }, + }, + { + key: "_getSafeDate", + value: function (e) { + return new Date(e) < Date.now() ? +new Date(e) : +Date.now(); + }, + }, + { + key: "handleReplyOnClick", + value: function () { + var e = this.props, + t = e.ccxIngest, + n = e.commentData, + r = e.compactLayout, + o = e.saveFocusedInputInfo, + a = n.id; + r && o({ id: a, itemType: "reply-input" }), t.fireEvent({ event: { subcategory: "reply-comment", subtype: "text-box", type: "click" }, content: { parent_id: a } }); + }, + }, + { + key: "handleReplyOnBlur", + value: function () { + var e = this.props, + t = e.compactLayout, + n = e.touchControls; + t || n || this._toggleReply(); + }, + }, + { + key: "_toggleReply", + value: function () { + var e = this.props, + t = e.commentData, + n = e.toggleReplyVisibility, + r = e.touchControls, + o = this._replyTextareaEl, + a = null == o ? void 0 : o.getTextareaInputValue(!0); + 0 !== (null == a ? void 0 : a.length) || 0 !== t.replies.length || this.isClickingReply ? (a && a.length > 0 ? n(t.id, a) : r && n(t.id)) : n(t.id); + }, + }, + { + key: "handleReplyClick", + value: function (e) { + var t = this.props, + n = t.assetData, + r = t.ccxIngest, + o = t.commentData, + a = t.enableReadUnread, + i = t.isRead, + s = t.setIsRead; + !a || + i(o) || + e.target.closest(".comment-item-dropdown-button") || + s(fo({}, o.id, { read: !0 }), n.id, { overrideExplicitlySet: !0 }) + .then(function () { + r.fireEvent({ event: { context_guid: o.id, subcategory: "read-unread", subtype: "mark-as-read-click-reply", type: "click" } }); + }) + .catch(function (e) { + var t = e.status, + n = e.message; + r.fireEvent({ event: { context_guid: o.id, subcategory: "read-unread", subtype: "error", type: "click", error_code: t, error_type: n, error_desc: "failed-to-mark-as-read-on-click-reply" } }); + }); + }, + }, + { + key: "handleReplySelect", + value: function () { + var e = this, + t = this.props, + n = t.dispatchStakeholderOnboardingAction, + r = t.imsData, + o = t.parentComment, + a = t.setSelectedReplyId; + requestAnimationFrame(function () { + (0, Ae.Z)(e._element, { + scrollMode: "if-needed", + behavior: function (e) { + return ( + e.forEach(function (e) { + var t = e.el, + n = e.top; + t.scrollTop = n; + }), + Promise.resolve("done!") + ); + }, + }) + .then(function () { + r.id === (null == o ? void 0 : o.creator.id) && n.expandedRepliesToOwnComment({ commentId: o.id }); + }) + .catch(function (e) { + return console.warn("error scrolling to comment", e); + }); + }), + a(void 0); + }, + }, + { + key: "_getReplyList", + value: function () { + var e = this.props, + t = e.assetData, + n = e.commentData, + r = e.compactLayout, + o = e.focusedInputInfo, + a = e.hideHeader, + i = e.imsData, + s = e.isRead, + c = e.isReadLocally, + l = e.mentionsEnabled, + u = e.onHeightChange, + d = e.emojiPickerInfo, + p = e.setEmojiPickerInfo, + f = e.touchControls, + m = e.intl, + h = e.isOffline, + v = e.richTextEntry, + y = e.setIsReadLocally, + g = e.theme, + b = n.id, + E = n.repliesOpen, + D = n.replies, + C = void 0 === D ? [] : D, + w = n.creator, + S = this.state, + A = S.dirtyReply, + k = S.overReplyTextLimit, + _ = S.replyTextPresent, + T = C && C.length >= 1, + I = !(!r || !o || "reply-input" !== o.itemType || o.id !== b || this.state.isEditing), + O = !(!r || !o) && "edit" === o.itemType && o.id === b && this.state.isEditing, + F = !(!r || !o) && "reply-item" === o.itemType && o.parentCommentId === b, + x = !i || !i.token, + N = ""; + I && (N = V().createElement("div", { className: "replying-user-name" }, V().createElement(ee.Z, { id: "comments.item.reply_to_user" }), " ", w.name)); + var R, + L, + M, + P = "", + j = this.props, + B = j.isSubmittingReply, + Z = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = {}, + a = Object.keys(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (o[n] = e[n]); + return o; + })(e, t); + if (Object.getOwnPropertySymbols) { + var a = Object.getOwnPropertySymbols(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (Object.prototype.propertyIsEnumerable.call(e, n) && (o[n] = e[n])); + } + return o; + })(j, ao); + if (!I && !O && C.length > 0) { + var U = C.map(function (e) { + var r = ""; + e.creator.id === t.ownerId && (r = m.formatMessage({ id: "comments.item.owner" })), e.creator.affiliation === An.Kx && (r = m.formatMessage({ id: "comments.item.guest" })); + var o = new Date(e.modified).toLocaleDateString(m.locale, ho), + i = m.formatMessage({ id: "comments.arialabel.reply" }, { author: e.creator.name, comment: e.bodyValue, date: o, userType: r }); + return V().createElement( + "li", + { "aria-label": i, role: "listitem", tabIndex: "0", key: "reply-".concat(e.id) }, + V().createElement( + Ue, + { + onChange: function (t) { + !t || s(e) || c(e) || y(e, !0); + }, + triggerOnce: !0, + threshold: 0.95, + }, + V().createElement( + go, + so({}, Z, { + id: "reply-".concat(b), + commentData: e, + hideHeader: a, + itemType: "reply-item", + parentCommentId: b, + isResolved: "resolved" === n.status, + parentNodeId: Q()(n, "target.selector.node.id"), + divider: !1, + }) + ) + ) + ); + }); + P = V().createElement("ul", { className: "replies-list" }, U); + } + var z = k || !A.trim().length || B || h; + "resolved" !== n.status && + E && + ((R = V().createElement( + "div", + { className: "reply-box-wrap".concat(C.length ? " has-replies" : "") }, + V().createElement(Qr, { + animationEnabled: !r, + annotationsEnabledOverride: !1, + compactLayout: r, + hideHeader: a, + initialValue: A || "", + isEmojiPickerVisible: d.id === b && "reply" === d.type, + mentionsEnabled: !h && l && !x, + onBlur: this.handleReplyOnBlur, + onClick: this.handleReplyOnClick, + onEmojiIconClick: this.handleReplyEmojiClick, + onFocus: this.handleReplyFocus, + onHeightChange: u, + onKeyUp: this.handleReplyOnKeyUp, + onMentionClick: this.handleReplyMentionClick, + onTextPresent: this.handleReplyTextPresent, + placeholder: "comments.item.reply_placeholder", + ref: this.handleReplyTextareaRef, + richTextEntry: v, + shouldFocusIfValueExists: !1, + setEmojiPickerInfo: p, + theme: g, + touchControls: f, + }) + )), + (L = V().createElement( + "div", + { className: "submit-icon-container" }, + V().createElement(ge, { disabled: z, icon: V().createElement(xt, { size: "M" }), onClick: z ? void 0 : this.handleSubmitReply, selected: !z, variant: "tool" }) + )), + (M = V().createElement( + "div", + { className: "submit-button-container" }, + V().createElement( + ge, + { disabled: !_ || B, id: "ccx-comments-reply-cancel-btn", onMouseDown: this.handleCancelReply, onClick: this.handleCancelReply, variant: "secondary" }, + V().createElement(ee.Z, { id: "comments.submit.cancel" }) + ), + V().createElement( + ge, + { + disabled: z, + id: "ccx-comments-reply-submit-btn", + variant: "cta", + onClick: this.handleSubmitReply, + onMouseDown: function (e) { + return e.preventDefault(); + }, + style: { marginLeft: "var(--spectrum-global-dimension-size-200, 16px)" }, + }, + V().createElement(ee.Z, { id: "comments.submit.submit" }) + ) + ))); + var H = V().createElement( + "div", + { className: X()("replies-wrapper", { "focused-input": I, "has-replies": T }) }, + P, + N, + V().createElement( + "div", + { className: "comment-text-controls-container icon-layout ".concat(I ? " focused-input" : "") }, + (!I && !E) || this.state.isEditing || F ? "" : R, + (!I && !E) || this.state.isEditing || F ? "" : L + ) + ), + G = V().createElement("div", { className: X()("replies-wrapper", { "has-replies": T }) }, P, V().createElement("div", { className: "comment-text-controls-container" }, R, M)); + return V().createElement(Se.CSSTransition, { in: C && E, timeout: 500, classNames: "fade", unmountOnExit: !0 }, r ? H : G); + }, + }, + { + key: "handleEditTextPresent", + value: function (e, t) { + var n = this.props.commentData, + r = e.length > 0; + (n.dirtyEdit = e.trim()), this.setState({ editTextPresent: r, overEditTextLimit: t }); + }, + }, + { + key: "handleReplyTextPresent", + value: function (e, t) { + var n = e.length > 0; + this.setState({ dirtyReply: e, overReplyTextLimit: t, replyTextPresent: n }); + }, + }, + { + key: "handleFocus", + value: function () { + var e = this.props, + t = e.commentData, + n = e.parentCommentId, + r = e.saveFocusedInputInfo, + o = e.compactLayout, + a = e.itemType; + o && r({ id: t.id, parentCommentId: n, itemType: a || "edit" }); + }, + }, + { + key: "handleReplyFocus", + value: function (e) { + var t = this.props, + n = t.compactLayout, + r = t.touchControls; + e.persist(), + r && + requestAnimationFrame(function () { + var t = e.target.getBoundingClientRect(); + n ? window.scrollTo(0, t.bottom) : window.scrollBy(0, t.top - 32); + }); + }, + }, + { + key: "startEdit", + value: function () { + var e = this.props.commentData; + this.setState( + function () { + return { isEditing: !0 }; + }, + function () { + e.dirtyEdit = Q()(e, "bodyValue"); + } + ); + }, + }, + { + key: "handleEditBtnClick", + value: function (e) { + var t = this.props, + n = t.assetData, + r = t.ccxIngest, + o = t.commentData, + a = t.latestMobileEnabled, + i = t.parentCommentId, + s = t.setMobileEditingComment, + c = this.context.onCommentSelect; + a ? s(n.id, o.id) : (c(e, o, { idForLookup: i }), this.startEdit()), r.fireEvent({ event: { context_guid: i, subcategory: "edit-comment", subtype: "edit", type: "click" }, content: { parent_id: o.id } }); + }, + }, + { + key: "handleCancelEditBtnClick", + value: function () { + var e = this.props, + t = e.ccxIngest, + n = e.commentData, + r = e.parentCommentId; + this.setState({ isEditing: !1, overEditTextLimit: !1 }, function () { + n.dirtyEdit = null; + }), + this.cleanFocusedInputInfo(), + document.activeElement.blur(), + t.fireEvent({ event: { context_guid: r, subcategory: "edit-comment", subtype: "cancel", type: "click" }, content: { parent_id: n.id } }); + }, + }, + { + key: "handleCancelReply", + value: function (e) { + e && e.preventDefault(); + var t = this.props, + n = t.ccxIngest, + r = t.commentData, + o = t.parentCommentId, + a = this._replyTextareaEl; + a && + (document.activeElement.blur(), + a.clearTextareaInput(), + this.setState({ dirtyReply: "" }), + (0, wn.F_)(An.uX), + n.fireEvent({ event: { context_guid: o, subcategory: "reply-comment", subtype: "cancel", type: "click" }, content: { parent_id: r.id } })); + }, + }, + { + key: "handleEditMentionClick", + value: function () { + this.props.ccxIngest.fireEvent({ event: { subcategory: "edit-comment", type: "click", subtype: "mention" } }); + }, + }, + { + key: "handleEditEmojiClick", + value: function () { + var e = this.props, + t = e.ccxIngest, + n = e.commentData, + r = e.emojiPickerInfo, + o = e.setEmojiPickerInfo; + r.id !== n.id ? o({ id: n.id, type: "edit" }) : o(), t.fireEvent({ event: { subcategory: "edit-comment", type: "click", subtype: "emoji" } }); + }, + }, + { + key: "handleReplyMentionClick", + value: function () { + this.props.ccxIngest.fireEvent({ event: { subcategory: "reply-comment", type: "click", subtype: "mention" } }); + }, + }, + { + key: "handleReplyEmojiClick", + value: function () { + var e = this.props, + t = e.ccxIngest, + n = e.commentData, + r = e.emojiPickerInfo, + o = e.setEmojiPickerInfo; + r.id !== n.id ? o({ id: n.id, type: "reply" }) : o(), t.fireEvent({ event: { subcategory: "reply-comment", type: "click", subtype: "emoji" } }); + }, + }, + { + key: "editData", + value: function (e) { + var t = this, + n = this.props, + r = n.ccxIngest, + o = n.commentData, + a = n.compactLayout, + i = n.editComment, + s = n.imsData, + c = n.parentCommentId, + l = n.mentionsEnabled, + u = n.resetGuestUserSession, + d = this.context.onGuestSession, + p = this._editTextareaEl, + f = e.trim(), + m = []; + l && p && ((m = p.getAcceptedMentions(f)), (f = (0, wn.WD)(f, m))), + this.setState({ isSaving: !0 }), + (f || "strikethrough" === o.annotationType) && + i(f, o.id, c, m) + .then(function () { + a && t.cleanFocusedInputInfo(); + var e = + (o && + o.mentions && + o.mentions.map(function (e) { + return e.id; + })) || + []; + m.some(function (t) { + return !e.includes(t.id); + }) && r.fireEvent({ event: { context_guid: c, subcategory: "edit-comment", subtype: "mention", type: "render" } }), + r.fireEvent({ event: { context_guid: c, subcategory: "edit-comment", subtype: "edit-comment", type: "render" } }); + }) + .catch(function (e) { + var n = e.status, + o = e.message; + r.fireEvent({ event: { context_guid: c, subcategory: "edit-comment", subtype: "error", type: "render", error_code: n, error_type: o, error_desc: "comment-failed-to-edit" } }), + s.token.includes("AnonBearer") && 401 === n && (u(), d("destroy", s), t.startEdit()); + }) + .finally(function () { + t.setState({ isSaving: !1 }); + }); + }, + }, + { + key: "handleSaveEditChangesBtnClick", + value: function () { + var e = this._editTextareaEl, + t = null == e ? void 0 : e.getTextareaInputValue(!0); + if (!this.state.overEditTextLimit) { + this.editData(t); + var n = this.props, + r = n.ccxIngest, + o = n.commentData, + a = n.parentCommentId; + r.fireEvent({ event: { context_guid: a, subcategory: "edit-comment", subtype: "submit", type: "click" }, content: { parent_id: o.id } }); + } + document.activeElement.blur(); + }, + }, + { + key: "handleEditOnKeyUp", + value: function (e) { + var t = this.props, + n = t.commentData, + r = t.isOffline, + o = t.annotationType, + a = this.state.overEditTextLimit, + i = n.dirtyEdit; + if ((0, wn.Rz)(e) && (i || "strikethrough" === o) && !a && !this.state.editSaving && !r) { + this.editData(i); + var s = this.props, + c = s.ccxIngest, + l = s.parentCommentId; + c.fireEvent({ event: { context_guid: l, subcategory: "edit-comment", subtype: "submit", type: "keystroke" }, content: { parent_id: n.id } }); + } + }, + }, + { + key: "cleanFocusedInputInfo", + value: function () { + var e = this.props, + t = e.compactLayout, + n = e.saveFocusedInputInfo; + t && n(); + }, + }, + { + key: "handleEditTextareaRef", + value: function (e) { + this._editTextareaEl = e; + }, + }, + { + key: "handleEditOnClick", + value: function () { + var e = this.props, + t = e.ccxIngest, + n = e.commentData, + r = e.parentCommentId, + o = e.saveFocusedInputInfo, + a = e.compactLayout, + i = e.itemType, + s = n.id; + a && o({ id: s, parentCommentId: r, itemType: i || "edit" }), t.fireEvent({ event: { context_guid: r, subcategory: "edit-comment", subtype: "text-box", type: "click" }, content: { parent_id: s } }); + }, + }, + { + key: "handlePinClick", + value: function () { + var e = this.props, + t = e.ccxIngest, + n = e.commentData, + r = e.compactLayout, + o = e.isAnnotating, + a = e.toggleAnnotating, + i = n.id; + o && t.fireEvent({ event: { subcategory: "pin-comment", type: "click", subtype: n.annotationType ? "edit-pin" : "add-pin" } }), a(i, r); + }, + }, + { + key: "handleLinkClick", + value: function (e) { + var t = this.props.onUrlOpen, + n = e.target.href; + e.preventDefault(), t ? t(n) : window.open(n, "_blank"); + }, + }, + { + key: "_parseMentions", + value: function (e) { + var t = this, + n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : [], + r = this.props, + o = r.environment, + a = r.touchControls, + i = [e], + s = [], + c = a ? "click" : "hover"; + return ( + n.forEach(function (e) { + for (var r = 0; r < i.length; r++) + if ( + "string" == typeof i[r] && + (1 === (s = i[r].split("@".concat(e.name))).length && (s = i[r].split("@".concat(e.name.replace(/ /g, "")))), 1 === s.length && (s = i[r].split("[@urn:userID:".concat(e.id, "]"))), s.length > 1) + ) { + var a = + n.find(function (t) { + return t.id === "".concat(An.Lx).concat(e.id); + }) || e; + i.splice.apply( + i, + [r, 1].concat( + (function (e) { + if (Array.isArray(e)) return io(e); + })( + (l = t._commentPopoverBuilder( + s, + V().createElement( + _t, + { key: a.email, placement: "top", trigger: c, style: { whiteSpace: "normal", display: "inline-block", textWrap: "wrap" } }, + V().createElement("span", { className: "mention" }, "@".concat(a.name)), + V().createElement(Ln, { placement: "bottom" }, V().createElement(Un, { environment: o, user: a })) + ) + )) + ) || + (function (e) { + if (("undefined" != typeof Symbol && null != e[Symbol.iterator]) || null != e["@@iterator"]) return Array.from(e); + })(l) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return io(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return ( + "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? io(e, t) : void 0 + ); + } + })(l) || + (function () { + throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ) + ); + } + var l; + }), + i + ); + }, + }, + { + key: "_commentPopoverBuilder", + value: function (e, t) { + for (var n = []; e.length > 1; ) n.push(e.shift()), n.push(t); + return n.push(e.shift()), n; + }, + }, + { + key: "render", + value: function () { + var e = this.props, + t = e.commentData, + n = e.compactLayout, + r = e.divider, + o = e.focusedInputInfo, + a = e.hideFooter, + i = e.hideHeader, + s = e.highlight, + c = e.isOffline, + u = e.isUnread, + d = e.itemType, + p = e.latestMobileEnabled, + f = e.mentionsEnabled, + m = e.onHeightChange, + h = e.parentCommentId, + v = e.richTextEntry, + y = e.showCommentId, + g = e.emojiPickerInfo, + b = e.setEmojiPickerInfo, + E = e.theme, + D = e.touchControls, + C = t.bodyValue, + w = void 0 === C ? "" : C, + S = t.creator, + A = t.dirtyEdit, + k = t.annotationType, + _ = t.id, + T = t.imageContextData, + I = t.mentions, + O = t.replies, + F = t.repliesOpen; + if (n && o && !this.isInputFocused() && o.id !== _) return null; + var x, + N = this.state, + R = N.overEditTextLimit, + L = N.isEditing, + M = N.isSaving; + if (o && d && !(x = n && "reply-item" === o.itemType && "reply-item" === d && o.id === _)) return null; + var P, + j, + B = w; + I && I.length > 0 && (B = (0, wn.UW)(w, I)); + var Z = !h && An.cD.includes(k); + if (L) { + var U = V().createElement( + "div", + { className: "edit-wrapper" }, + V().createElement(Qr, { + allowCollapseOverride: "strikethrough" === k, + animationEnabled: !n, + annotationsEnabledOverride: !1, + compactLayout: n, + defaultMentions: I, + errorMsgKey: "comments.item.edit_error", + hideHeader: i, + initialValue: (0, wn.UW)(A || B.substr(0, An.Ry), I), + isEmojiPickerVisible: g.id === _ && "edit" === g.type, + isOffline: c, + mentionsEnabled: !Z && !c && f, + mobileCommentingMode: Boolean(o), + onClick: this.handleEditOnClick, + onEmojiIconClick: this.handleEditEmojiClick, + onFocus: this.handleFocus, + onHeightChange: m, + onKeyUp: this.handleEditOnKeyUp, + onMentionClick: this.handleEditMentionClick, + onTextPresent: this.handleEditTextPresent, + placeholder: h ? "comments.item.edit_placeholder_reply" : "comments.item.edit_placeholder", + ref: this.handleEditTextareaRef, + richTextEntry: v, + setEmojiPickerInfo: b, + theme: E, + touchControls: D, + }) + ), + z = R || t.dirtyEdit === B || M || c || ((!this.state.editTextPresent || !(t.dirtyEdit || "").trim().length) && "strikethrough" !== k), + H = V().createElement( + "div", + { className: "footer is-editing" }, + V().createElement( + "div", + { className: "button-wrapper" }, + V().createElement( + ge, + { className: "cancel-edited-changes-btn", disabled: M, onClick: this.handleCancelEditBtnClick, onMouseDown: this.handleCancelEditBtnClick, variant: "secondary" }, + V().createElement(ee.Z, { id: "comments.item.cancel" }) + ), + V().createElement( + ge, + { + className: "save-edited-changes-btn", + disabled: z, + onClick: this.handleSaveEditChangesBtnClick, + onMouseDown: this.handleSaveEditChangesBtnClick, + style: { marginLeft: "var(--spectrum-global-dimension-size-200, 16px)" }, + variant: "cta", + }, + V().createElement(ee.Z, { id: "comments.item.save_changes" }) + ) + ) + ), + G = V().createElement( + "div", + { className: "submit-icon-container" }, + V().createElement(ge, { disabled: z, icon: V().createElement(xt, { size: "M" }), onClick: z ? void 0 : this.handleSaveEditChangesBtnClick, selected: !z, variant: "tool" }) + ); + j = V().createElement("div", { className: "comment-text-controls-container ".concat(n ? " icon-layout" : "").concat(x || (o && "edit" === o.itemType && o.id === _) ? " focused-input" : "") }, U, n ? G : H); + } else { + var W; + (W = "strikethrough" !== k || B ? this._parseMentions(B.substr(0, An.Ry), I) : V().createElement("span", { className: "empty-strikethrough" }, V().createElement(ee.Z, { id: "comments.item.empty_strikethrough" }))), + "insert" !== k || h + ? "replace" !== k || + h || + (W = V().createElement( + V().Fragment, + null, + V().createElement(ee.Z, { id: "comments.item.replace_label" }, function (e) { + return V().createElement("span", { className: "comment-text-label" }, e); + }), + " ", + W + )) + : (W = V().createElement( + V().Fragment, + null, + V().createElement(ee.Z, { id: "comments.item.insert_label" }, function (e) { + return V().createElement("span", { className: "comment-text-label" }, e); + }), + " ", + W + )); + var Q = this.state.bigText && "insert" !== k && "replace" !== k, + J = V().createElement("div", { "data-testid": X()({ "big-text": Q }), className: X()({ "big-text": Q }) }, W); + (J = V().createElement(Dt.ZP, { component: wt, properties: { onClick: this.handleLinkClick } }, J)), + (P = V().createElement( + "div", + { className: "comment-text-controls-container" }, + V().createElement("div", { className: "comment-text" }, J), + null != T && T.base64Data ? V().createElement("img", { height: T.height, src: T.base64Data, width: T.width }) : null, + !a && this._getFooter() + )); + } + var Y, + q = + O && O.length > 0 + ? O.map(function (e) { + return e.id; + }).join(" ") + : void 0, + K = X()("comment-wrapper", { "focused-input": n && o }); + h && (Y = this.handleReplyClick); + var $ = V().createElement( + "div", + { id: _, role: "comment", "aria-owns": q, className: K, onClick: Y }, + V().createElement( + "div", + { className: "comment-content-wrapper" }, + L && n + ? null + : V().createElement( + V().Fragment, + null, + V().createElement( + "div", + { className: X()("row", { "unread-item": u }) }, + u && V().createElement("span", { className: "unread-container" }, V().createElement(ro, { isOffline: c })), + V().createElement("div", { className: "avatar-column" }, V().createElement(In, { user: S, className: "item-user-avatar" })), + this._getHeader() + ) + ), + V().createElement("div", { className: "row" }, P) + ), + j + ), + te = n && o && "reply-input" === o.itemType && o.id === _ && !this.state.isEditing, + ne = n && o && "reply-item" === o.itemType && o.parentCommentId === _, + re = X()("comment-li-wrapper", l.default.component, { highlight: ((s && !h) || y === _) && !n, "hovered-pin": s, "replies-open": F }); + return V().createElement( + V().Fragment, + null, + V().createElement("div", { "data-testid": "comment-li-wrapper", className: re, ref: this.handleCommentItemRef }, te || ne ? "" : $, !p && this._getReplyList()), + r && V().createElement(fn, null) + ); + }, + }, + ]), + n && co(t.prototype, n), + Object.defineProperty(t, "prototype", { writable: !1 }), + i + ); + })(V().Component); + fo(vo, "contextType", tt.ZP), + (vo.defaultProps = { + annotationType: void 0, + annotationsEnabled: !1, + cacheComments: !1, + capabilities: {}, + ccxIngest: { fireEvent: function () {} }, + compactLayout: !1, + confirmDelete: function () {}, + dispatchCreativeOnboardingAction: new Proxy( + {}, + { + get: function () { + return function () {}; + }, + } + ), + dispatchStakeholderOnboardingAction: new Proxy( + {}, + { + get: function () { + return function () {}; + }, + } + ), + divider: !1, + editComment: function () {}, + errors: {}, + isOffline: !1, + latestMobileEnabled: !1, + reCaptchaEnabled: !1, + reCaptchaSiteKey: "", + replyComment: function () {}, + resolveComment: function () {}, + saveFocusedInputInfo: function () {}, + setSelectedReplyId: function () {}, + emojiPickerInfo: {}, + spectrumUIScale: "medium", + theme: "light", + toggleAnnotating: function () {}, + toggleReplyVisibility: function () {}, + unresolveComment: function () {}, + }), + (vo.propTypes = { + annotationType: G().string, + annotatingCommentId: G().string, + annotationTypes: G().shape({ draw: G().bool, pin: G().bool, text: G().bool }), + annotationsEnabled: G().bool, + annotationsCreationEnabled: G().bool, + annotationsMultiPageEnabled: G().bool, + assetData: G().shape({ id: G().string, nodeId: G().oneOfType([G().string, G().number]), ownerId: G().string, isEsm: G().bool }), + cacheComments: G().bool, + capabilities: G().shape({ role: G().string }), + ccxIngest: G().object, + clearIsReadLocally: G().func.isRequired, + commentData: G().object, + closeButtonClicked: G().bool, + compactLayout: G().bool, + confirmDelete: G().func, + setShowCommentId: G().func, + dispatchCreativeOnboardingAction: G().object, + dispatchStakeholderOnboardingAction: G().object, + divider: G().bool, + editComment: G().func, + enableReadUnread: G().bool, + environment: G().string, + errors: G().object, + focusedInputInfo: G().object, + globalCommentsToggle: G().shape({ isActive: G().bool.isRequired }).isRequired, + hideFooter: G().bool, + hideHeader: G().bool, + highlight: G().bool, + imageCapture: G().bool, + imageContextData: G().object, + imsData: G().shape({ id: G().string, token: G().string }), + intl: G().object.isRequired, + isAnnotating: G().bool, + isOffline: G().bool, + isRead: G().func.isRequired, + isReadLocally: G().func.isRequired, + isResolved: G().bool, + isUnread: G().bool, + isSelectedReply: G().bool, + isSubmittingReply: G().bool, + itemType: G().string, + latestMobileEnabled: G().bool, + mentionsEnabled: G().bool, + onHeightChange: G().func, + onUrlOpen: G().func, + parentComment: G().object, + parentCommentId: G().string, + parentNodeId: G().oneOfType([G().string, G().number]), + reCaptchaEnabled: G().bool.isRequired, + reCaptchaSiteKey: G().string, + replyComment: G().func, + resetGuestUserSession: G().func, + resolveComment: G().func, + richTextEntry: G().bool, + saveFocusedInputInfo: G().func, + setSelectedReplyId: G().func, + setHoveredAnnotation: G().func, + setIsRead: G().func.isRequired, + setIsReadLocally: G().func.isRequired, + setMobileEditingComment: G().func, + setParentCommentId: G().func, + showCommentId: G().string, + setEmojiPickerInfo: G().func, + emojiPickerInfo: G().object, + spectrumUIScale: G().oneOf(["medium", "large"]), + theme: G().oneOf(["light", "lightest", "dark", "darkest"]), + toggleAnnotating: G().func, + toggleReplyVisibility: G().func, + touchControls: G().bool, + unresolveComment: G().func, + isSwcEnabled: G().bool.isRequired, + }); + var yo = { + confirmDelete: oe.e1, + saveFocusedInputInfo: ae.PM, + setMobileEditingComment: oe.Xq, + setParentCommentId: oe.nx, + setShowCommentId: ae.rG, + toggleAnnotating: ae.xX, + toggleReplyVisibility: oe.jT, + resetGuestUserSession: ae.I3, + setSelectedReplyId: ce.Ef, + setEmojiPickerInfo: ae.Po, + }, + go = (0, $.qC)( + re.HJ, + (0, K.$j)( + function () { + var e = (0, Pr.nE)(); + return function (t, n) { + var r, + o = n.annotationsEnabled, + a = n.assetData, + i = n.commentData, + s = n.compactLayout, + c = n.creativeOnboarding, + l = n.mentionsEnabled, + u = n.imsData, + d = n.isRead, + p = n.parentCommentId, + f = (0, Pr._X)(t, a.id), + m = Q()(t, "".concat(An.Bq, ":context.annotatingItmId")), + h = s ? Q()(t, "".concat(An.Bq, ":context.focusedInputInfo")) : void 0, + v = Q()(t, "".concat(An.Bq, ":annotation.hoveredAnnotation")), + y = Q()(t, "".concat(An.Bq, ":annotation.selectedReplyId")), + g = p && e(p), + b = !d(i); + return { + annotationsEnabled: o, + dispatchStakeholderOnboardingAction: (0, cn.GW)(t), + dispatchCreativeOnboardingAction: (0, ln.M5)(t, c), + commentsListMinimized: Q()(t, "".concat(An.Bq, ":context.commentsListMinimized")), + errors: f.errors, + focusedInputInfo: h, + highlight: v === i.id, + isAnnotating: m === i.id, + isSelectedReply: y === i.id, + isSubmittingReply: f.postingReplyParentCommentId === i.id, + isUnread: b, + mentionsEnabled: l && -1 === (null == u || null === (r = u.token) || void 0 === r ? void 0 : r.indexOf("AnonBearer")), + parentComment: g, + showCommentId: Q()(t, "".concat(An.Bq, ":context.showCommentId")), + emojiPickerInfo: Q()(t, "".concat(An.Bq, ":context.emojiPickerInfo")), + }; + }; + }, + yo, + void 0, + { context: Ve.no } + ) + )((0, gt.ZP)(vo, { forwardRef: !0 })); + const bo = go; + var Eo = ["comment", "hideFooter", "hideHeader", "onScrollToComment", "parentCommentId", "selectedAnnotationId"]; + function Do() { + return ( + (Do = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + Do.apply(this, arguments) + ); + } + function Co(e, t) { + return ( + (function (e) { + if (Array.isArray(e)) return e; + })(e) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(e, t) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return wo(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? wo(e, t) : void 0; + } + })(e, t) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function wo(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var So = { weekday: "long", year: "numeric", month: "long", day: "numeric" }, + Ao = ["#ccx-suggestion-list", ".comment-item-dropdown-button", ".reply-btn", ".textbox", ".reply-box-wrap", ".submit-button-container", ".footer-actions", ".external-content-wrapper"], + ko = (0, z.forwardRef)(function (e, t) { + var n = e.comment, + r = e.hideFooter, + o = e.hideHeader, + a = e.onScrollToComment, + i = e.parentCommentId, + s = e.selectedAnnotationId, + c = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = {}, + a = Object.keys(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (o[n] = e[n]); + return o; + })(e, t); + if (Object.getOwnPropertySymbols) { + var a = Object.getOwnPropertySymbols(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (Object.prototype.propertyIsEnumerable.call(e, n) && (o[n] = e[n])); + } + return o; + })(e, Eo), + l = Co((0, z.useState)(), 2), + u = l[0], + p = l[1], + f = (0, z.useContext)(re.ZP), + m = f.assetData, + h = f.cacheComments, + v = f.compactLayout, + y = f.enableReadUnread, + g = f.imsData, + b = f.isOffline, + E = f.isVisible, + D = f.latestMobileEnabled, + C = f.touchControls, + w = (0, et.Z)(), + S = w.editComment, + A = w.replyComment, + k = w.resolveComment, + _ = w.unresolveComment, + T = (0, $e.Z)(), + I = T.clearIsReadLocally, + O = T.isRead, + F = T.isReadLocally, + x = T.setIsRead, + N = T.setIsReadLocally, + R = O(n), + L = F(n), + M = (0, Ve.v9)(function (e) { + return e["".concat(An.Bq, ":annotation")].selectedReplyId; + }), + P = (0, Ve.v9)(function (e) { + return (0, Pr._X)(e, m.id); + }).autoScroll, + j = (0, z.useContext)(tt.ZP), + B = j.onCommentSelect, + Z = j.onCommentHover, + U = j.onUrlOpen, + H = (0, Ke.Z)(), + G = s === n.id || (D && M === n.id), + W = Xe(u).onKeyDown, + Q = (0, Ne.Z)(), + J = (0, wn.t)(), + Y = n.creator, + q = n.bodyValue, + K = n.annotationType, + $ = n.mentions, + ee = n.modified, + te = n.replies, + ne = void 0 === te ? [] : te, + oe = new Date(ee).toLocaleDateString(Q.locale, So), + ae = !C, + ie = "", + se = Co(ze({ root: document.querySelector("#".concat(An.Ls)), threshold: 0.75 }), 2), + ce = se[0], + le = se[1], + ue = (0, z.useCallback)( + function (e) { + t && ((t.current = e), p(t.current)), ce(e); + }, + [ce, t] + ); + (0, z.useEffect)( + function () { + !y || !le || R || L || P ? R && L && I(n) : le && E && N(n, !0); + }, + [P, I, n, y, le, E, R, L, N] + ); + var de = (0, z.useCallback)( + function (e) { + var t, r, o; + Ao.some(function (t) { + return e.target.closest(t); + }) + ? (s && s !== n.id && B(e, {}), + R || + e.target.closest(".comment-item-dropdown-button") || + x(((t = {}), (r = n.id), (o = { read: !0 }), r in t ? Object.defineProperty(t, r, { value: o, enumerable: !0, configurable: !0, writable: !0 }) : (t[r] = o), t), m.id, { overrideExplicitlySet: !0 }).catch(function ( + e + ) { + return console.error("Failed to mark comment as read on click", e); + })) + : i || B(e, n); + }, + [m.id, n, B, i, R, s, x] + ), + pe = (0, z.useCallback)( + function (e) { + Z(e, n); + }, + [Z, n] + ); + Y.id === m.ownerId && (ie = Q.formatMessage({ id: "comments.item.owner" })), Y.affiliation === An.Kx && (ie = Q.formatMessage({ id: "comments.item.guest" })); + var fe = (null == $ ? void 0 : $.length) > 0 ? (0, wn.UW)(q, $) : q; + if (An.cD.includes(K)) { + var me = "comments.item.".concat(K, "_label"); + fe = "".concat(Q.formatMessage({ id: me }), " ").concat(q); + } + var he = Q.formatMessage({ id: "comments.arialabel.comment" }, { author: Y.name, comment: fe, date: oe, replyCount: ne.length, userType: ie }); + return ( + (0, z.useEffect)( + function () { + G && a(n.id); + }, + [G] + ), + V().createElement( + "li", + { + "aria-label": he, + className: X()("comment-li", d.default.component, { compact: v, touch: C, selected: G }), + onClick: de, + onMouseEnter: ae ? pe : null, + onMouseLeave: ae ? pe : null, + onKeyDown: W, + ref: ue, + role: "listitem", + tabIndex: "0", + }, + V().createElement( + bo, + Do( + { + assetData: m, + cacheComments: h, + ccxIngest: H, + clearIsReadLocally: I, + commentData: n, + compactLayout: v, + editComment: S, + hideFooter: r, + hideHeader: o, + imsData: g, + isOffline: b, + isReadLocally: F, + isRead: O, + isSwcEnabled: J, + onUrlOpen: U, + parentCommentId: i, + replyComment: A, + resolveComment: k, + setIsRead: x, + setIsReadLocally: N, + touchControls: C, + unresolveComment: _, + }, + c + ) + ) + ) + ); + }); + (ko.defaultProps = { onScrollToComment: function () {}, selectedAnnotationId: void 0 }), + (ko.propTypes = { comment: G().object, hideFooter: G().bool, hideHeader: G().bool, onScrollToComment: G().func, parentCommentId: G().string, selectedAnnotationId: G().string }), + (ko.displayName = "Comment"); + const _o = ko; + var To = function (e) { + var t = e.pinNum, + n = e.annotationType, + r = e.strokeColor, + o = e.visible, + a = (0, sr.Z)().annotationTypes; + if (!o) return null; + var i = null, + s = { backgroundColor: r }; + if ((!a || (null != a && a.pin)) && t) { + var c = t; + a ? ((c = V().createElement(En.Z, { "data-testid": "pinoff-badge", style: { "--spectrum-icon-size": "12px" }, size: "XS" })), s.backgroundColor || (s = { backgroundColor: "#B80000" })) : (s = {}), + (i = V().createElement("span", { className: "annotation-marker", "data-testid": "pin-badge", style: s }, c)); + } else + null != a && a.draw && "shape" === n + ? (i = V().createElement("span", { className: "annotation-marker", style: s }, V().createElement(Fr, { style: { "--spectrum-icon-size": "12px" }, "data-testid": "draw-badge", size: "XS" }))) + : null != a && a.highlight && "highlight" === n + ? (i = V().createElement("span", { className: "annotation-marker", "data-testid": "highlight-badge", style: s }, V().createElement(Xr.Z, null))) + : null != a && a.strikethrough && "strikethrough" === n + ? (i = V().createElement("span", { className: "annotation-marker", style: s }, V().createElement(qr.Z, { style: { "--spectrum-icon-size": "12px" }, "data-testid": "strikethrough-badge", size: "XS" }))) + : null != a && a.insert && "insert" === n + ? (i = V().createElement("span", { className: "annotation-marker", "data-testid": "insert-badge", style: s }, V().createElement(Kr.Z, null))) + : null != a && a.replace && "replace" === n && (i = V().createElement("span", { className: "annotation-marker", "data-testid": "replace-badge", style: s }, V().createElement($r.Z, null))); + return i; + }; + (To.defaultProps = { pinNum: void 0, annotationType: void 0, strokeColor: "", visible: !1 }), (To.propTypes = { pinNum: G().number, annotationType: G().string, strokeColor: G().string, visible: G().bool }); + const Io = To; + var Oo = ["testId", "disabled", "onClick", "value", "visible"]; + function Fo() { + return ( + (Fo = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + Fo.apply(this, arguments) + ); + } + var xo = function (e) { + var t = e.testId, + n = e.disabled, + r = e.onClick, + o = e.value, + a = e.visible, + i = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = {}, + a = Object.keys(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (o[n] = e[n]); + return o; + })(e, t); + if (Object.getOwnPropertySymbols) { + var a = Object.getOwnPropertySymbols(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (Object.prototype.propertyIsEnumerable.call(e, n) && (o[n] = e[n])); + } + return o; + })(e, Oo); + return a ? V().createElement(Yt, Fo({ "data-testid": t, disabled: n, onClick: r, role: "menuitem", value: o }, i), o) : null; + }, + No = function (e) { + var t, + n, + r, + o = e.capabilities, + a = e.comment, + i = e.isEditing, + s = e.isResolved, + c = e.onEdit, + l = e.parentCommentId, + u = (0, z.useContext)(re.ZP), + d = u.assetData, + p = u.enableReadUnread, + f = u.imsData, + m = u.isOffline, + h = u.compactLayout, + v = u.touchControls, + y = (0, z.useContext)(tt.ZP).onCommentSelect, + g = (0, Ve.I0)(), + b = (0, $e.Z)(), + E = b.isRead, + D = b.setIsRead, + C = (0, et.Z)(), + w = C.resolveComment, + S = C.unresolveComment, + A = a.creator, + k = !!l, + _ = !E(a), + T = (0, cn.cs)(), + I = (0, ln.UP)(), + O = (function (e, t, n, r, o, a, i, s) { + var c = (function (e, t) { + return (void 0 !== e.id && e.id === t.id) || (void 0 !== e.authId && e.authId === t.id); + })(r, t), + l = (function (e) { + if (e.token) return e.token.includes("AnonBearer") ? "guest" : "user"; + })(r), + u = (function (e, t) { + return e.id === t.ownerId || "owner" === e.userRoleOverride; + })(r, e), + d = (function (e) { + return "editor" === e || "owner" === e; + })(s), + p = ("user" === l || c) && !a, + f = { edit: Boolean(c && !i), delete: Boolean(u || c || (d && !e.ownerId)), unread: n && "user" === l && !c }, + m = { resolve: Boolean(p && !i), unresolve: Boolean(p && i) }, + h = Object.values(f).reduce(function (e, t) { + return e || t; + }, !1), + v = Object.values(m).reduce(function (e, t) { + return e || t; + }, !1); + return { isMenuVisible: !(o || !l || !h), isVisible: !(o || !l || (!h && !v)), menuItems: f, externalItems: m }; + })(d, A, p, f, i, k, "resolved" === a.status || s, null == o ? void 0 : o.role), + F = O.isMenuVisible, + x = O.isVisible, + N = O.externalItems, + R = O.menuItems, + L = (0, Ne.Z)().formatMessage, + M = (0, Ke.Z)(), + P = (0, z.useCallback)(function (e) { + e.preventDefault(); + }, []), + j = (0, z.useCallback)( + function (e) { + P(e), e.target.focus(), T.completeCurrentOrResumeCoachMarks({ dismissType: "blur" }), I.completeCurrent({ dismissType: "blur" }); + var t = document.activeElement; + t.classList.contains("textarea") && t.blur(), M.fireEvent({ event: { subcategory: "navigation", subtype: "click-dropdown-menu", type: "click" } }); + }, + [P, T, I, M] + ), + B = (0, z.useCallback)( + function (e, t) { + if ((0, wn.Ho)(e)) { + if (t) { + var n = a.replies; + a.repliesOpen && + n.forEach(function (e) { + g((0, oe.jT)(d.id)), (e.dirtyEdit = null); + }); + } + M.fireEvent({ event: { subcategory: "resolve", subtype: t ? "submit" : "move-to-unresolved", type: "click" } }), + h && g((0, oe.nx)(d.id)), + (t ? w : S)(a) + .then(function () { + M.fireEvent({ event: { subcategory: "resolve", subtype: t ? "resolved-flag" : "move-to-unresolved", type: "render" } }), t && (T.commentResolved(), I.commentResolved()); + }) + .catch(function (e) { + var n = e.status, + r = e.message; + M.fireEvent({ event: { subcategory: "resolve", subtype: "error", type: "render", error_code: n, error_type: r, error_desc: t ? "comment-failed-to-resolve" : "comment-failed-to-unresolve" } }), + f.token.includes("AnonBearer") && 401 === n && (g((0, ae.I3)()), g(Ve.no.onGuestSession("destroy", f))); + }); + } + }, + [d.id, M, a, h, g, I, T, f, w, S] + ), + Z = (0, z.useCallback)( + function (e, t) { + var n, r, o; + (0, wn.Ho)(e) && + (M.fireEvent({ event: { subcategory: "read-unread", subtype: t ? "mark-as-read-click-menu" : "mark-as-unread", type: "click" } }), + D(((n = {}), (r = a.id), (o = { read: t }), r in n ? Object.defineProperty(n, r, { value: o, enumerable: !0, configurable: !0, writable: !0 }) : (n[r] = o), n), d.id, { explicitlySet: !0 }).catch(function (e) { + var n = e.status, + r = e.message; + M.fireEvent({ event: { subcategory: "read-unread", subtype: "error", type: "render", error_code: n, error_type: r, error_desc: t ? "comment-metadata-failed-to-read" : "comment-metadata-failed-to-unread" } }); + })); + }, + [d.id, M, a.id, D] + ), + U = (0, z.useCallback)( + function (e) { + h ? g((0, oe.Xq)(d.id, a.id)) : (y(e, a, { idForLookup: l }), c()), M.fireEvent({ event: { context_guid: l, subcategory: "edit-comment", subtype: "edit", type: "click" }, content: { parent_id: a.id } }); + }, + [d.id, M, a, h, g, y, c, l] + ), + H = (0, z.useCallback)( + function () { + M.fireEvent({ event: { context_guid: l, subcategory: l ? "delete-reply" : "delete-comment", subtype: "delete", type: "click" } }), g((0, oe.e1)(d.id, a.id, l)); + }, + [d.id, M, a.id, g, l] + ), + G = L({ id: s ? "comments.item.unresolve" : "comments.item.resolve" }), + W = !!a.repliesOpen && (null === (t = a.replies) || void 0 === t ? void 0 : t.length) >= 1, + Q = V().createElement( + "div", + { className: "external-content-wrapper" }, + N.resolve + ? V().createElement( + V().Fragment, + null, + V().createElement(ge, { + "aria-label": G, + className: "resolve-button", + "data-testid": "resolve", + disabled: m, + icon: V().createElement(sn, { key: "resolve-icon-".concat(a.id) }), + onClick: function (e) { + B(e, !0); + }, + onMouseDown: function (e) { + P(e); + }, + variant: "tool", + }), + A.id === f.id && + W && + V().createElement(cn.SF, { + checkCurrentCoachMarkData: function (e) { + return e.commentId === a.id; + }, + name: "resolveComment", + placement: "bottom right", + selector: (0, cn.SN)(a.id), + }) + ) + : null, + N.unresolve + ? V().createElement(ge, { + "aria-label": G, + className: "unresolve-button", + "data-testid": "unresolve", + disabled: m, + icon: V().createElement(rn, { key: "unresolve-icon-".concat(a.id) }), + onClick: function (e) { + B(e, !1); + }, + onMouseDown: function (e) { + P(e); + }, + variant: "tool", + }) + : null + ); + return ( + v || (Q = V().createElement(_t, { crossOffset: F ? 0 : -100, placement: "bottom", trigger: "hover" }, Q, V().createElement(It, { style: { pointerEvents: "none", alignItems: "stretch" } }, G))), + V().createElement( + V().Fragment, + null, + V().createElement(Io, { pinNum: a.pinNum, annotationType: a.annotationType, strokeColor: null === (n = a.target) || void 0 === n || null === (r = n.selector) || void 0 === r ? void 0 : r.strokeColor, visible: !l }), + V().createElement( + "div", + { className: "comment-item-dropdown-wrapper" }, + x && !h && Q, + F || (h && (N.resolve || N.unresolve)) + ? V().createElement( + Pt, + { + alignRight: !0, + "aria-label": L({ id: "comments.arialabel.button.dropdownMenu" }), + className: "comment-item-dropdown-button", + "data-testid": "comment-item-dropdown-button", + menuClassName: "comment-item-dropdown-menu", + onMouseDown: j, + quiet: !0, + }, + V().createElement(xo, { + testId: "resolve", + disabled: m, + onClick: function (e) { + B(e, !0); + }, + value: L({ id: "comments.item.resolve" }), + visible: h && N.resolve, + }), + V().createElement(xo, { + testId: "unresolve", + disabled: m, + onClick: function (e) { + B(e, !1); + }, + value: L({ id: "comments.item.unresolve" }), + visible: h && N.unresolve, + }), + V().createElement(xo, { + testId: "mark-as-unread", + disabled: m, + onClick: function (e) { + Z(e, !1); + }, + value: L({ id: "comments.item.mark_unread" }), + visible: p && R.unread && !_, + }), + V().createElement(xo, { + testId: "mark-as-read", + disabled: m, + onClick: function (e) { + Z(e, !0); + }, + value: L({ id: "comments.item.mark_read" }), + visible: p && R.unread && _, + }), + V().createElement(xo, { testId: "edit", disabled: m, onClick: U, value: L({ id: "comments.item.edit" }), visible: R.edit }), + V().createElement(xo, { testId: "delete", disabled: m, onClick: H, value: L({ id: "comments.item.delete" }), visible: R.delete }) + ) + : null + ) + ) + ); + }; + (xo.propTypes = { testId: G().string, disabled: G().bool, onClick: G().func, value: G().string, visible: G().bool }), + (No.defaultProps = { isEditing: !1, isResolved: !1 }), + (No.propTypes = { capabilities: G().object, comment: G().object, isEditing: G().bool, isResolved: G().bool, onEdit: G().func, parentCommentId: G().string }); + const Ro = No; + function Lo(e, t) { + return ( + (function (e) { + if (Array.isArray(e)) return e; + })(e) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(e, t) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return Mo(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Mo(e, t) : void 0; + } + })(e, t) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function Mo(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var Po = ["#ccx-suggestion-list", ".comment-item-dropdown-button", ".reply-btn", ".textbox", ".reply-box-wrap", ".submit-button-container", ".footer-actions", ".external-content-wrapper"], + jo = (0, z.forwardRef)(function (e, t) { + var n, + r = e.comment, + o = e.hideHeader, + a = e.parentCommentId, + i = Lo((0, z.useState)(), 2), + s = i[0], + c = i[1], + l = Lo((0, z.useState)(!1), 2), + u = l[0], + d = l[1], + f = (0, z.useRef)(!0), + m = (0, z.useContext)(re.ZP), + h = m.assetData, + v = m.compactLayout, + y = m.enableReadUnread, + g = m.latestMobileEnabled, + b = m.isOffline, + E = m.isVisible, + D = m.touchControls, + C = (0, z.useContext)(tt.ZP), + w = C.onCommentSelect, + S = C.onCommentHover, + A = (0, $e.Z)(), + k = A.clearIsReadLocally, + _ = A.isRead, + T = A.isReadLocally, + I = A.setIsRead, + O = A.setIsReadLocally, + F = Xe(s).onKeyDown, + x = + (0, Ve.v9)(function (e) { + return (0, Pr.Zv)(e); + }) === r.id, + N = (0, Ve.v9)(function (e) { + return (0, Pr.AR)(e).selectedReplyId; + }), + R = (0, Ve.v9)(function (e) { + return (0, Pr.AR)(e).selectedAnnotationId; + }), + L = (0, Ve.v9)(function (e) { + return (0, Pr.kW)(e); + }), + M = (0, Ve.v9)(function (e) { + return (0, Pr._X)(e, h.id); + }).autoScroll, + P = R === r.id || (g && N === r.id), + j = _(r), + B = T(r), + Z = !D; + (0, z.useEffect)( + function () { + if (u) { + if (f.current) return void (f.current = !1); + r.dirtyEdit = r.bodyValue; + } + }, + [r, u] + ); + var U = Lo(ze({ root: document.querySelector("#".concat(An.Ls)), threshold: 0.75 }), 2), + H = U[0], + G = U[1], + W = (0, z.useCallback)( + function (e) { + t && ((t.current = e), c(t.current)), H(e); + }, + [H, t] + ); + (0, z.useEffect)( + function () { + !y || !G || j || B || M ? j && B && k(r) : G && E && O(r, !0); + }, + [M, k, r, y, G, E, j, B, O] + ); + var Q = (0, z.useCallback)( + function (e) { + var t, n, o; + Po.some(function (t) { + return e.target.closest(t); + }) + ? (R && R !== r.id && w(e, {}), + j || + e.target.closest(".comment-item-dropdown-button") || + I(((t = {}), (n = r.id), (o = { read: !0 }), n in t ? Object.defineProperty(t, n, { value: o, enumerable: !0, configurable: !0, writable: !0 }) : (t[n] = o), t), h.id, { overrideExplicitlySet: !0 }).catch(function ( + e + ) { + return console.error("Failed to mark comment as read on click", e); + })) + : a || w(e, r); + }, + [h.id, r, w, a, j, R, I] + ), + J = (0, z.useCallback)( + function (e) { + S(e, r); + }, + [S, r] + ); + return V().createElement( + "li", + { + className: X()("comment-li", p.default.component, { compact: v, highlight: ((x && !a) || L === r.id) && !v, "hovered-pin": x, "replies-open": r.repliesOpen, touch: D, selected: P }), + onClick: Q, + onMouseEnter: Z ? J : null, + onMouseLeave: Z ? J : null, + onKeyDown: F, + ref: W, + role: "listitem", + tabIndex: "0", + }, + V().createElement( + "div", + { className: "comment-wrapper" }, + !j && V().createElement("span", { className: "unread-container" }, V().createElement(ro, { isOffline: b })), + !o && + V().createElement( + "div", + { className: "header-row" }, + V().createElement("div", { style: { flex: 1, width: "100%" } }, V().createElement("b", null, (null === (n = r.creator) || void 0 === n ? void 0 : n.name) || "Guest")), + V().createElement(Ro, { + comment: r, + isEditing: u, + onEdit: function () { + d(!0); + }, + parentCommentId: a, + }) + ), + u && + V().createElement( + "div", + { + onClick: function () { + return d(!1); + }, + }, + "Editing... (click to turn off)" + ), + V().createElement("div", null, r.bodyValue) + ) + ); + }); + (jo.defaultProps = { onScrollToComment: function () {} }), (jo.propTypes = { comment: G().object, hideFooter: G().bool, hideHeader: G().bool, onScrollToComment: G().func, parentCommentId: G().string }); + const Bo = jo, + Zo = (0, pe.Z)(n(52472)).default, + Uo = (0, ue.Z)({ displayName: "UserAdd", fallback: Zo, swcLoader: void 0, swcProps: Ot.m, tagName: "sp-icon-user-add" }); + var zo = function (e) { + var t = e.children, + n = e.className, + r = e.testId; + return V().createElement("div", { className: X()(f.default.component, n) }, V().createElement("div", { className: f.default.emptyStateContent, "data-testid": r }, t)); + }; + (zo.defultProps = { title: "", subtitle: "", illustration: void 0, children: void 0, testId: "empty-state" }), + (zo.propTypes = { title: G().string, subtitle: G().string, illustration: G().node, children: G().node, className: G().string, testId: G().string }), + ((zo.Title = function (e) { + var t = e.children; + return V().createElement("div", { className: f.default.emptyStateTitle }, t); + }).displayName = "EmptyState.Title"), + (zo.Title.propTypes = { children: G().node.isRequired }), + ((zo.Illustration = function (e) { + var t = e.children, + n = e.className; + return V().createElement("div", { className: X()(f.default.emptyStateIllustration, n) }, t); + }).displayName = "EmptyState.Illustration"), + (zo.Illustration.propTypes = { children: G().node.isRequired, className: G().string }), + ((zo.OfflineIllustration = function (e) { + var t = e.children, + n = e.className; + return V().createElement("div", { className: X()(f.default.offlineEmptyStateIllustration, n) }, t); + }).displayName = "EmptyState.OfflineIllustration"), + (zo.OfflineIllustration.propTypes = { children: G().node.isRequired, className: G().string }), + ((zo.Subtitle = function (e) { + var t = e.children, + n = e.className; + return V().createElement("div", { className: X()(f.default.emptyStateSubtitle, n) }, t); + }).displayName = "EmptyState.Subtitle"), + (zo.Subtitle.propTypes = { children: G().node.isRequired, className: G().string }); + const Vo = zo; + function Ho(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var Go = function () { + return V().createElement( + "svg", + { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 118 78", height: "79", width: "120" }, + V().createElement( + "g", + null, + V().createElement( + "g", + null, + V().createElement( + "g", + null, + V().createElement( + "g", + null, + V().createElement( + "g", + null, + V().createElement("path", { + d: + "M78.918,69.4209H43.9209a5.8028,5.8028,0,0,1-5.86035-5.73047V35.09961a1,1,0,0,1,2,0V63.69043A3.80141,3.80141,0,0,0,43.9209,67.4209H78.918a3.80141,3.80141,0,0,0,3.86035-3.73047V62.45215a1,1,0,0,1,2,0v1.23828A5.80281,5.80281,0,0,1,78.918,69.4209Z", + }), + V().createElement("path", { + d: + "M83.77832,42.18066a.99942.99942,0,0,1-1-1V26.17188a3.64548,3.64548,0,0,0-1.11719-2.62452l-8.248-8.05664A3.95648,3.95648,0,0,0,70.669,14.38428H52.78809a1,1,0,0,1,0-2H70.669a5.97226,5.97226,0,0,1,4.1416,1.67578l8.248,8.05664a5.62936,5.62936,0,0,1,1.71973,4.05518V41.18066A.99942.99942,0,0,1,83.77832,42.18066Z", + }) + ) + ) + ), + V().createElement( + "g", + null, + V().createElement( + "g", + null, + V().createElement("path", { + d: + "M92.89062,58.71777a1.62756,1.62756,0,0,1-.84082-.23339L77.27539,49.59766a1.62967,1.62967,0,0,1,.31836-2.94043l23.96582-8.07373a1.00008,1.00008,0,0,1,1.22363,1.375L94.36328,57.78418h0a1.627,1.627,0,0,1-1.47266.93359Zm.56836-1.36035h0Zm-.90332-.42871-.001.002ZM78.99219,48.29688l13.7373,8.26269L99.9707,41.22949Z", + }), + V().createElement("path", { + d: + "M84.2666,59.20215a1.54176,1.54176,0,0,1-.54-.09863,1.51442,1.51442,0,0,1-.99218-1.43067V52.31641a1.00059,1.00059,0,0,1,.42382-.81739l18.14453-12.78515a1,1,0,1,1,1.15235,1.63476L84.73438,52.835v3.55859l.55957-.65429a.99949.99949,0,0,1,1.51953,1.29883L85.4209,58.669A1.52525,1.52525,0,0,1,84.2666,59.20215Z", + }) + ) + ), + V().createElement( + "g", + null, + V().createElement( + "g", + null, + V().createElement("path", { + d: "M24.40039,20.50732c-.01562,0-.03027-.00048-.04492-.00146a5.2627,5.2627,0,1,1,.04883.00146Zm-.001-9.30566a3.90235,3.90235,0,0,0,.00391,7.80469l.02832.00049a3.90268,3.90268,0,0,0-.03223-7.80518Z", + }), + V().createElement("path", { + d: + "M21.17383,19.19238a.73236.73236,0,0,1-.1211-.00976.74969.74969,0,0,1-.62011-.85987A2.7438,2.7438,0,0,1,22.69824,16.105l.00488-.04394a3.1502,3.1502,0,0,1-.5498-1.73536,2.27287,2.27287,0,1,1,4.52051-.0083,3.19344,3.19344,0,0,1-.5752,1.752l.00293.02343a2.647,2.647,0,0,1,2.26856,2.24073.74985.74985,0,0,1-1.48438.21386c-.06054-.418-.35254-.93554-1.40527-1.02734a.86693.86693,0,0,1-.7334-.61621c-.00391-.01074-.38477-1.1167.05078-1.59863a1.6562,1.6562,0,0,0,.376-1.00928c0-.43848-.13379-.98633-.76856-.98633-.18554,0-.752,0-.752,1.00781a1.64376,1.64376,0,0,0,.373,1.01465c.41211.459.03125,1.56445.02734,1.5752a.85857.85857,0,0,1-.69824.61084c-1.12988.11474-1.38672.70312-1.44238,1.04394A.74983.74983,0,0,1,21.17383,19.19238Z", + }), + V().createElement("path", { + d: + "M39.167,32.26074a.99916.99916,0,0,1-.70019-.28613L30.27734,23.936H19.80176a4.68622,4.68622,0,0,1-4.68067-4.68116V11.252A4.68622,4.68622,0,0,1,19.80176,6.5708H45.08887A4.68706,4.68706,0,0,1,49.77051,11.252v8.00244A4.68716,4.68716,0,0,1,45.08887,23.936H40.167v7.3247a1.00095,1.00095,0,0,1-1,1ZM19.80176,8.5708A2.68362,2.68362,0,0,0,17.12109,11.252v8.00293A2.68362,2.68362,0,0,0,19.80176,21.936H30.68652a1.00058,1.00058,0,0,1,.7002.28613L38.167,28.87793V22.936a.99974.99974,0,0,1,1-1h5.92188a2.68487,2.68487,0,0,0,2.68164-2.68165V11.252A2.68445,2.68445,0,0,0,45.08887,8.5708Z", + }), + V().createElement("path", { d: "M43.96875,14.65869H32.98926a.75.75,0,0,1,0-1.5H43.96875a.75.75,0,0,1,0,1.5Z" }), + V().createElement("path", { d: "M41.38477,17.604H32.98926a.75.75,0,0,1,0-1.5h8.39551a.75.75,0,0,1,0,1.5Z" }) + ) + ), + V().createElement( + "g", + null, + V().createElement("path", { + d: + "M55.26562,53.625a6.67041,6.67041,0,0,1-4.71874-11.38965l4.60449-4.604a6.66709,6.66709,0,0,1,11.33105,3.85693,1.0004,1.0004,0,1,1-1.98437.25586,4.67494,4.67494,0,0,0-7.93262-2.69873l-4.60449,4.604a4.67388,4.67388,0,0,0,6.60937,6.61036l2.85254-2.85254a.99989.99989,0,0,1,1.41406,1.41406l-2.85253,2.85254A6.65261,6.65261,0,0,1,55.26562,53.625Z", + }), + V().createElement("path", { + d: + "M62.57812,46.625a6.64633,6.64633,0,0,1-6.51757-5.25977.99962.99962,0,1,1,1.95507-.418,4.67587,4.67587,0,0,0,7.86719,2.31543l4.60449-4.604a4.67371,4.67371,0,0,0-6.60937-6.60986l-2.417,2.4165a.99989.99989,0,0,1-1.41406-1.41406l2.417-2.4165a6.67367,6.67367,0,0,1,9.4375,9.43847l-4.60449,4.60352A6.62684,6.62684,0,0,1,62.57812,46.625Z", + }) + ) + ) + ) + ); + }; + const Wo = function () { + var e, t, n; + return ( + ((t = (0, z.useState)(!1)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return Ho(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Ho(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })())[1], + (0, z.useEffect)(function () {}, []), + null !== (e = window.customElements) && void 0 !== e && e.get("ccx-comments-icon-unshared-illustration") ? V().createElement("ccx-comments-icon-unshared-illustration", null) : V().createElement(Go, null) + ); + }; + function Qo(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var Jo = function (e) { + var t = e.size; + return V().createElement( + "svg", + { width: "M" === t ? 72 : 120, height: "M" === t ? 56 : 93, viewBox: "0 0 72 56", className: "ccx-comment-illustration" }, + V().createElement("path", { d: "M44,18.75H19a.75.75,0,0,1,0-1.5H44a.75.75,0,0,1,0,1.5Z" }), + V().createElement("path", { d: "M37,24.75H19a.75.75,0,0,1,0-1.5H37a.75.75,0,0,1,0,1.5Z" }), + V().createElement("path", { + d: + "M23.00391,44.76465A2.00777,2.00777,0,0,1,21,42.7627V35H14a5.00588,5.00588,0,0,1-5-5V12a5.00588,5.00588,0,0,1,5-5H49a5.00588,5.00588,0,0,1,5,5V30a5.00588,5.00588,0,0,1-5,5H33.103l-8.65088,9.1377A1.99246,1.99246,0,0,1,23.00391,44.76465ZM14,9a3.00328,3.00328,0,0,0-3,3V30a3.00328,3.00328,0,0,0,3,3h8a.99974.99974,0,0,1,1,1v8.7627l8.94678-9.4502A1.00064,1.00064,0,0,1,32.67285,33H49a3.00328,3.00328,0,0,0,3-3V12a3.00328,3.00328,0,0,0-3-3Z", + }), + V().createElement("path", { + d: + "M47.99512,50.21582a1.98957,1.98957,0,0,1-1.46582-.64648L40.47559,43H32a6.9751,6.9751,0,0,1-2.334-.39941.99982.99982,0,0,1,.668-1.88477A4.97724,4.97724,0,0,0,32,41h8.91406a1.00164,1.00164,0,0,1,.73535.32227L48,48.21387V42a.99974.99974,0,0,1,1-1H59a3.00328,3.00328,0,0,0,3-3V24a3.00328,3.00328,0,0,0-3-3H56a1,1,0,0,1,0-2h3a5.00588,5.00588,0,0,1,5,5V38a5.00588,5.00588,0,0,1-5,5H50v5.21387a1.98808,1.98808,0,0,1-1.27246,1.86328A2.00831,2.00831,0,0,1,47.99512,50.21582Z", + }) + ); + }, + Yo = function (e) { + var t, + n, + r, + o = e.size; + return ( + ((n = (0, z.useState)(!1)), + (r = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(n) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(n, r) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return Qo(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Qo(e, t) : void 0; + } + })(n, r) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })())[1], + (0, z.useEffect)(function () {}, []), + null !== (t = window.customElements) && void 0 !== t && t.get("ccx-comments-icon-comment-illustration") ? V().createElement("ccx-comments-icon-comment-illustration", { size: o }) : V().createElement(Jo, { size: o }) + ); + }; + (Yo.propTypes = { size: G().string }), (Jo.propTypes = { size: G().string }); + const qo = Yo; + var Xo = function (e) { + var t, + n, + r, + o, + a, + i, + s, + c, + l, + u, + d = e.onShare, + p = (0, z.useContext)(re.ZP), + f = p.assetData, + h = f.reviewType, + v = f.shareStatus, + y = p.latestMobileEnabled, + g = p.s4rEnabled, + b = (0, Ne.Z)().formatMessage, + E = (0, z.useCallback)( + function () { + d(); + }, + [d] + ), + D = !1; + if (g && ["unshared", "unknown"].includes(v)) { + var C = "cloudDoc" === h ? "cloud-doc" : "review"; + (r = V().createElement(Wo, null)), + (t = "comments.empty-state.with-asset.title"), + (n = "comments.empty-state.with-asset.subtitle.".concat(C)), + (D = !!d), + (o = "empty-state-".concat(C)), + (i = "comments-empty-state-cta-".concat(C)), + (a = "comments.empty-state.with-asset.share.".concat(C)); + } else + "unshared" === v && "cloudDoc" === h + ? ((r = V().createElement(Wo, null)), + (t = "comments.empty-state.unshared.title"), + (n = "comments.empty-state.unshared.subtitle"), + (D = !!d), + (o = "empty-state-cloud-unshared"), + (i = "comments-empty-state-cta"), + (a = "comments.empty-state.unshared.share"), + (s = V().createElement(Uo, { style: { maxHeight: "100%" }, size: "M" }))) + : ((r = V().createElement(qo, { size: "L" })), (t = "comments.empty-state.shared.title"), (n = "comments.empty-state.shared.subtitle"), (o = "empty-state")); + return V().createElement( + Vo, + { testId: o }, + V().createElement(Vo.Illustration, null, r), + V().createElement(Vo.Title, null, V().createElement(ee.Z, { id: t })), + V().createElement( + Vo.Subtitle, + { className: X()(((c = {}), (l = m.default.mobile), (u = y), l in c ? Object.defineProperty(c, l, { value: u, enumerable: !0, configurable: !0, writable: !0 }) : (c[l] = u), c)) }, + V().createElement(ee.Z, { id: n }) + ), + D && V().createElement(ge, { className: m.default.commentsShareForReviewBtn, "data-testid": i, variant: "cta", onClick: E, icon: s, label: b({ id: a }) }) + ); + }; + Xo.propTypes = { onShare: G().func }; + const Ko = Xo, + $o = function () { + return V().createElement( + Vo, + null, + V().createElement(Vo.Illustration, null, V().createElement(qo, { size: "L" })), + V().createElement(Vo.Title, null, V().createElement(ee.Z, { id: "comments.empty-state.disabled.title" })), + V().createElement(Vo.Subtitle, null, V().createElement(ee.Z, { id: "comments.empty-state.nocomment.subtitle" })) + ); + }, + ea = function () { + return V().createElement( + Vo, + { className: m.default.globalEmptyStateContent }, + V().createElement(Vo.Illustration, { className: m.default.globalEmptyStateIllustration }, V().createElement(qo, { size: "M" })), + V().createElement(Vo.Subtitle, null, V().createElement(ee.Z, { id: "comments.list.no-comments-active-node" })) + ); + }; + function ta(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var na = function () { + return V().createElement( + "svg", + { xmlns: "http://www.w3.org/2000/svg", width: "58.672", height: "67.168", viewBox: "0 0 58.672 67.168" }, + V().createElement( + "g", + { transform: "translate(-29.663 -5.415)" }, + V().createElement( + "g", + { id: "Group_296544", "data-name": "Group 296544" }, + V().createElement("path", { id: "Path_883725", "data-name": "Path 883725", d: "M30.663,22.951a1,1,0,0,1-.707-1.707L45.492,5.708a1,1,0,0,1,1.414,1.414L31.37,22.658A.993.993,0,0,1,30.663,22.951Z", fill: "#b3b3b3" }), + V().createElement("path", { id: "Path_883726", "data-name": "Path 883726", d: "M46.2,22.951a1,1,0,0,1-.707-.293L29.956,7.122A1,1,0,1,1,31.37,5.708L46.906,21.244a1,1,0,0,1-.707,1.707Z", fill: "#b3b3b3" }) + ), + V().createElement( + "g", + { id: "filter_lg_1_" }, + V().createElement("path", { + id: "Path_883727", + "data-name": "Path 883727", + d: + "M55.693,72.583a2.716,2.716,0,0,1-2.714-2.711V45.358L39.446,28.5a1,1,0,1,1,1.56-1.252L54.76,44.38a1,1,0,0,1,.22.626V69.873a.708.708,0,0,0,1.223.486l6.235-6.609a3.58,3.58,0,0,0,.979-2.466V45.006a1,1,0,0,1,.2-.6l22.456-30a1.3,1.3,0,0,0-1.037-2.074H53.62a1,1,0,1,1,0-2H85.036a3.3,3.3,0,0,1,2.638,5.273L65.418,45.339V61.284a5.575,5.575,0,0,1-1.524,3.838l-6.235,6.609A2.7,2.7,0,0,1,55.693,72.583Z", + fill: "#b3b3b3", + }) + ) + ) + ); + }; + const ra = function () { + var e, t, n; + return ( + ((t = (0, z.useState)(!1)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return ta(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? ta(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })())[1], + (0, z.useEffect)(function () {}, []), + null !== (e = window.customElements) && void 0 !== e && e.get("ccx-comments-icon-filter-illustration") ? V().createElement("ccx-comments-icon-filter-illustration", null) : V().createElement(na, null) + ); + }; + var oa = function (e) { + var t, + n, + r, + o = e.allScreenCommentsOn, + a = e.clearFilter; + return V().createElement( + Vo, + { + className: X()(h.default.component, ((t = {}), (n = h.default.globalEmptyStateContent), (r = o), n in t ? Object.defineProperty(t, n, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : (t[n] = r), t)), + testId: "no-filter-result", + }, + V().createElement(Vo.Illustration, null, V().createElement(ra, null)), + V().createElement(Vo.Title, null, V().createElement(ee.Z, { id: "comments.list.no-filter-result-title" })), + V().createElement(Vo.Subtitle, null, V().createElement(ee.Z, { id: "comments.list.no-filter-result-body" })), + V().createElement(ge, { className: h.default.clearLink, id: "no-filter-result-clear-link", onClick: a }, V().createElement(ee.Z, { id: "comments.list.no-filter-result.clear" })) + ); + }; + (oa.defaultProps = { allScreenCommentsOn: !1, clearFilter: function () {} }), (oa.propTypes = { allScreenCommentsOn: G().bool, clearFilter: G().func }); + var aa = { clearFilter: se.ER }; + const ia = (0, K.$j)(null, aa, void 0, { context: Ve.no })(oa); + function sa(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function ca(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? sa(Object(n), !0).forEach(function (t) { + la(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : sa(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function la(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var ua = (0, z.memo)(function (e) { + var t, + n = e.ariaLabelledBy, + r = e.closeButtonClicked, + o = e.comments, + a = e.emptyStateType, + i = e.hideHeader, + s = e.isFilterApplied, + c = e.onHeightChange, + l = e.selectedAnnotationId, + u = e.showRefactoredComment, + d = e.onShare, + p = (0, z.useRef)({}), + f = (0, z.useCallback)(function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : { behavior: "smooth", block: "center" }, + n = p.current[e]; + n && + n.current && + (0, Ae.Z)(n.current, ca(ca({}, t), {}, { scrollMode: "if-needed", boundary: n.current.getRootNode() instanceof ShadowRoot ? n.current.getRootNode().querySelector("#".concat(An.Ls)) : document.getElementById(An.Ls) })); + }, []); + switch (a) { + case "disabledCommentCreation": + t = V().createElement($o, null); + break; + case "global": + t = V().createElement(ea, null); + break; + default: + t = V().createElement(Ko, { onShare: d }); + } + return V().createElement( + Oe, + null, + V().createElement( + Se.TransitionGroup, + { "aria-labelledby": n, role: "list", className: v.default.component, component: "ul", "data-testid": "comment-list" }, + 0 === o.length + ? V().createElement(Se.CSSTransition, { timeout: 0, exit: !1 }, s ? V().createElement(ia, { allScreenCommentsOn: "global" === a }) : t) + : o.map(function (e) { + var t = e.recentActivity === An.Uj; + return ( + p.current[e.id] || (p.current[e.id] = (0, z.createRef)()), + V().createElement( + Se.CSSTransition, + { + key: e.id, + classNames: "fade", + timeout: 500, + onEnter: t + ? function () { + return f(e.id, { behavior: "auto" }); + } + : void 0, + enter: !s, + exit: !1, + }, + u + ? V().createElement( + V().Fragment, + null, + V().createElement(_o, { ref: p.current[e.id], closeButtonClicked: r, comment: e, hideHeader: i, onHeightChange: c, onScrollToComment: f, selectedAnnotationId: l }), + V().createElement(Bo, { comment: e }) + ) + : V().createElement(_o, { ref: p.current[e.id], closeButtonClicked: r, comment: e, hideHeader: i, onHeightChange: c, onScrollToComment: f, selectedAnnotationId: l }) + ) + ); + }) + ) + ); + }); + (ua.displayName = "BaseCommentList"), + (ua.propTypes = { + ariaLabelledBy: G().string, + closeButtonClicked: G().bool, + comments: G().array, + emptyStateType: G().string, + hideHeader: G().bool, + isFilterApplied: G().bool, + onHeightChange: G().func, + onShare: G().func, + selectedAnnotationId: G().string, + showRefactoredComment: G().bool, + }); + const da = ua; + var pa = (0, z.forwardRef)(function (e, t) { + var n, + r, + o, + a = (0, z.useRef)(), + i = Xe(a.current).onKeyDown, + s = e.id, + c = e.title, + l = e.subtitle, + u = void 0 === l ? "" : l, + d = e.sticky, + p = e.onClick, + f = void 0 === p ? function () {} : p, + m = X()(y.default.component, ((n = {}), (o = d), (r = y.default.sticky) in n ? Object.defineProperty(n, r, { value: o, enumerable: !0, configurable: !0, writable: !0 }) : (n[r] = o), n)); + return V().createElement( + "h3", + { ref: t, id: s, className: m }, + V().createElement( + "button", + { ref: a, "aria-expanded": "true", className: y.default.headingButton, onClick: f, onKeyDown: i }, + V().createElement("span", null, c), + u && V().createElement("span", { className: y.default.subtitle }, u && ": ".concat(u)) + ) + ); + }); + pa.propTypes = { id: G().string, onClick: G().func, sticky: G().bool, subtitle: G().string, title: G().oneOfType([G().string, G().element]).isRequired }; + const fa = pa; + function ma(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + function ha(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var va = (0, z.forwardRef)(function (e, t) { + var n, + r, + o, + a = e.children, + i = e.compactCommentingMode, + s = e.disableActiveStyling, + c = e.hideHeader, + l = e.id, + u = e.isActive, + d = e.isEmpty, + p = e.sectionId, + f = e.onHeaderSelect, + m = e.scrollTop, + h = e.subtitle, + v = e.title, + y = (0, z.useRef)(), + b = + ((r = (0, z.useState)(!1)), + (o = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(r) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(r, o) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return ha(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? ha(e, t) : void 0; + } + })(r, o) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + E = b[0], + D = b[1]; + (0, z.useEffect)( + function () { + y && y.current && 0 !== y.current.offsetTop && y.current.offsetTop - 5 <= m ? D(!0) : D(!1); + }, + [i, m] + ); + var C = (0, z.useCallback)( + function (e) { + "Enter" === e.key && e.target === (null == t ? void 0 : t.current) && f(p); + }, + [p, f, t] + ), + w = (0, z.useCallback)( + function () { + f(p); + }, + [f, p] + ), + S = X()(g.default.component, (ma((n = {}), g.default.active, u && !s), ma(n, g.default.compactCommentingMode, i), ma(n, g.default.inactive, !u), n)); + return d && !u + ? null + : V().createElement("section", { ref: t, "aria-disabled": !u, className: S, onKeyDown: C, "data-testid": l }, !i && !c && v && V().createElement(fa, { ref: y, id: l, title: v, subtitle: h, sticky: E, onClick: w }), a); + }); + (va.defaultProps = { onHeaderSelect: function () {} }), + (va.propTypes = { + children: G().node.isRequired, + compactCommentingMode: G().bool, + disableActiveStyling: G().bool, + hideHeader: G().bool, + id: G().string, + isActive: G().bool, + isEmpty: G().bool, + sectionId: G().oneOfType([G().string, G().number]), + onHeaderSelect: G().func, + scrollTop: G().number, + subtitle: G().string, + title: G().oneOfType([G().string, G().element]), + }); + const ya = va; + function ga(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var ba = function () { + return V().createElement( + "svg", + { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 118 78", height: "79", width: "120" }, + V().createElement( + "g", + null, + V().createElement( + "g", + null, + V().createElement( + "g", + null, + V().createElement("path", { d: "M83.93457,26.56982H41.771a1,1,0,0,1,0-2H83.93457a1,1,0,0,1,0,2Z" }), + V().createElement("path", { d: "M67.06055,36.49756H41.771a1,1,0,0,1,0-2H67.06055a1,1,0,0,1,0,2Z" }), + V().createElement("path", { + d: + "M48.50439,70.17383A2.69352,2.69352,0,0,1,45.811,67.48438V53.69824H33.31152a7.75858,7.75858,0,0,1-7.74951-7.75V43.70605a1,1,0,1,1,2,0v2.24219a5.756,5.756,0,0,0,5.74951,5.75H46.811a.99974.99974,0,0,1,1,1V67.48438a.68749.68749,0,0,0,1.18652.47265L64.09473,52.01074a1.00338,1.00338,0,0,1,.72656-.3125H92.37207a5.75608,5.75608,0,0,0,5.75-5.75v-30.374a5.756,5.756,0,0,0-5.75-5.74951H33.31152A5.75587,5.75587,0,0,0,27.562,15.57422V18.2959a1,1,0,1,1-2,0V15.57422a7.75847,7.75847,0,0,1,7.74951-7.74951H92.37207a7.75858,7.75858,0,0,1,7.75,7.74951v30.374a7.75868,7.75868,0,0,1-7.75,7.75H65.25195L50.4502,69.332A2.674,2.674,0,0,1,48.50439,70.17383Z", + }) + ), + V().createElement( + "g", + null, + V().createElement("path", { d: "M18.87842,39.56885a1,1,0,0,1-.707-1.707L33.70752,22.32568a.99989.99989,0,1,1,1.41406,1.41407L19.58545,39.27588A.99676.99676,0,0,1,18.87842,39.56885Z" }), + V().createElement("path", { d: "M34.41455,39.56885a.99676.99676,0,0,1-.707-.293L18.17139,23.73975a.99989.99989,0,1,1,1.41406-1.41407L35.12158,37.86182a1,1,0,0,1-.707,1.707Z" }) + ) + ) + ) + ); + }; + const Ea = function () { + var e, t, n; + return ( + ((t = (0, z.useState)(!1)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return ga(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? ga(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })())[1], + (0, z.useEffect)(function () {}, []), + null !== (e = window.customElements) && void 0 !== e && e.get("ccx-comments-icon-error-illustration") ? V().createElement("ccx-comments-icon-error-illustration", null) : V().createElement(ba, null) + ); + }, + Da = function () { + var e = (0, z.useContext)(re.ZP), + t = e.asset.setAsset, + n = e.assetData, + r = void 0 === n ? {} : n, + o = e.latestMobileEnabled, + a = (0, et.Z)().fetchComments, + i = (0, z.useContext)(tt.ZP), + s = i.onCommentsError, + c = i.onErrorRetry, + l = (0, z.useCallback)( + function () { + c(), + a(r) + .then(function (e) { + t(e, { type: An.Ud.FETCHED }); + }) + .catch(function (e) { + s({ assetId: r.id, sourceId: r.sourceId, statusCode: e.status, type: "retry" }), t(void 0, { type: An.Ud.ERROR, statusCode: e.status }); + }); + }, + [r, a, s, c, t] + ); + return V().createElement( + Vo, + { className: b.default.component }, + o + ? V().createElement("div", null, V().createElement(Vo.OfflineIllustration, null, V().createElement(Ea, null)), V().createElement(Vo.Subtitle, null, V().createElement(ee.Z, { id: "comments.list.error" }))) + : V().createElement("div", null, V().createElement(Vo.Illustration, null, V().createElement(Ea, null)), V().createElement(Vo.Title, null, V().createElement(ee.Z, { id: "comments.list.error" }))), + V().createElement(ge, { onClick: l, "data-testid": "comments-error-state-primary" }, V().createElement(ee.Z, { id: "comments.list.error-retry" })) + ); + }; + const Ca = (0, pe.Z)(n(77249)).default, + wa = { S: "s", M: "m", L: "l" }, + Sa = (0, ue.Z)({ + displayName: "Wait", + fallback: Ca, + swcLoader: void 0, + swcProps: (e) => { + const { className: t, variant: n, value: r, indeterminate: o, size: a = "M" } = e, + i = (function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + })(e, ["className", "variant", "value", "indeterminate", "size"]); + return Object.assign(Object.assign(Object.assign({}, i), (0, de.cd)({ indeterminate: void 0 === r || o })), { class: t, progress: r, size: wa[a], static: n && "overBackground" === n ? "white" : void 0 }); + }, + tagName: "sp-progress-circle", + }); + var Aa = function (e) { + var t = e.children, + n = e.testId; + return V().createElement("div", { className: "".concat(E.default.component), "data-testid": n }, V().createElement(Sa, null), V().createElement("div", { className: E.default.loadingMessage }, t)); + }; + (Aa.defaultProps = { children: void 0, testId: "loading" }), (Aa.propTypes = { children: G().node, testId: G().string }); + const ka = Aa, + _a = function () { + var e = (0, Ke.Z)(); + return ( + (0, z.useEffect)(function () { + e.fireEvent(e.events.commentsRenderEvent("offline")); + }, []), + V().createElement( + Vo, + { testId: "offline-empty-state" }, + V().createElement(Vo.Illustration, null, V().createElement(Ea, null)), + V().createElement(Vo.Title, null, V().createElement(ee.Z, { id: "comments.offline-empty-state.title" })), + V().createElement(Vo.Subtitle, null, V().createElement(ee.Z, { id: "comments.offline-empty-state.subtitle" })) + ) + ); + }, + Ta = (0, pe.Z)(n(31142)).default, + Ia = (0, ue.Z)({ displayName: "Info", fallback: Ta, swcLoader: void 0, swcProps: Ot.m, tagName: "sp-icon-info" }), + Oa = function () { + var e = (0, z.useContext)(re.ZP).latestMobileEnabled, + t = (0, (0, Ne.Z)().formatMessage)({ id: "comments.list.unmapped_explanation" }); + return V().createElement( + "div", + { className: D.default.component }, + V().createElement(ee.Z, { id: "comments.list.unmapped" }), + V().createElement( + _t, + { className: D.default.overlayTrigger, placement: "top", trigger: e ? "click" : "hover" }, + V().createElement("div", { className: D.default.iconWrapper }, V().createElement(Ia, { style: { color: "var(--ccx-comments-badge-color)" }, className: D.default.icon, size: "S" })), + V().createElement(Ht, { placement: "bottom", style: { maxWidth: "calc(var(--ccx-comments-panel-width) - var(--ccx-comments-margin-xl)", textWrap: "wrap" } }, t) + ) + ); + }; + var Fa = n(83896); + const xa = function () { + var e = (0, Ve.I0)(), + t = (0, z.useContext)(re.ZP), + n = t.assetData, + r = t.globalCommentsToggle, + o = t.groupBy, + a = (0, z.useMemo)(Pr.K, []), + i = (0, Ve.v9)(function (e) { + return (0, Pr.fD)(e, { assetData: n }); + }), + s = (0, Ve.v9)(function (e) { + return e["".concat(An.Bq, ":filter")].filterTime; + }), + c = (0, Ve.v9)(function (e) { + return e["".concat(An.Bq, ":filter")].filterUsers; + }), + l = (0, Ve.v9)(function (e) { + return e["".concat(An.Bq, ":filter")].showResolvedComments; + }), + u = (0, Ve.v9)(function (e) { + return e["".concat(An.Bq, ":filter")].showUnreadComments; + }), + d = (0, Ve.v9)(function (e) { + return 0 === a(e, { assetData: n, globalCommentsToggle: r, groupBy: o }).total.total; + }), + p = (0, z.useContext)(tt.ZP).onCommentSelect, + f = s.length > 0 || c.length > 0 || l || u, + m = (0, z.useCallback)( + function (t, n) { + switch (t) { + case "status": + e((0, se.Eu)()), p(); + break; + case "time": + e((0, se.BS)(n)), p(); + break; + case "user": + e((0, se.nv)(n)), p(); + break; + case "unread": + e((0, se.wZ)()), p(); + } + }, + [e, p] + ), + h = (0, z.useCallback)( + function () { + e((0, se.ER)()), p(); + }, + [e, p] + ), + v = (0, z.useMemo)( + function () { + return { status: l, time: s, user: c, unread: u }; + }, + [s, c, l, u] + ), + y = (0, z.useMemo)( + function () { + return { status: "resolved", time: ["today", "yesterday", "last7Days", "older"], users: i, unread: "unread" }; + }, + [i] + ); + return (0, z.useMemo)( + function () { + return { disabled: d, filterOptions: y, isFilterApplied: f, onFilterChange: m, onFilterClear: h, selectedFilters: v }; + }, + [d, y, f, m, h, v] + ); + }; + function Na(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + const Ra = function (e) { + var t, + n, + r = + ((t = (0, z.useState)(function () { + return window.matchMedia(e).matches; + })), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return Na(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Na(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + o = r[0], + a = r[1]; + return ( + (0, z.useEffect)( + function () { + var t, + n = function (e) { + return a(e.matches); + }, + r = window.matchMedia(e); + return ( + null === (t = r.addEventListener) || void 0 === t || t.call(r, "change", n), + function () { + var e; + return null === (e = r.removeEventListener) || void 0 === e ? void 0 : e.call(r, "change", n); + } + ); + }, + [e] + ), + o + ); + }; + function La(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function Ma(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? La(Object(n), !0).forEach(function (t) { + Pa(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : La(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function Pa(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + function ja(e, t) { + return ( + (function (e) { + if (Array.isArray(e)) return e; + })(e) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(e, t) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return Ba(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Ba(e, t) : void 0; + } + })(e, t) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function Ba(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var Za = function (e) { + var t, + n = e.activeSectionInputFocused, + r = e.closeButtonClicked, + o = e.commentListMinimized, + a = e.hasError, + i = e.isLoading, + s = e.onHeightChange, + c = e.onShare, + l = e.selectedAnnotationId, + u = (0, z.useContext)(re.ZP), + d = u.assetData, + p = u.disableCommentCreation, + f = u.enableReadUnread, + m = u.globalCommentsToggle, + h = u.groupBy, + v = u.isOffline, + y = u.latestMobileEnabled, + g = u.showRefactoredComment, + b = (0, Ve.I0)(), + E = Ra("(orientation: landscape)"), + D = (0, Fa.Z)(), + w = D.comments, + S = D.hasUnmappedComments, + A = xa(), + k = A.isFilterApplied, + _ = A.selectedFilters, + T = (0, $e.Z)().hasUnreadComments, + I = (0, Ve.v9)(function (e) { + return (0, Pr._X)(e, d.id); + }).fetchingMetadata, + O = (0, Ke.Z)(), + F = (0, z.useContext)(tt.ZP).onNodeChange, + x = ja((0, z.useState)(0), 2), + N = x[0], + R = x[1], + L = ja((0, z.useState)(!1), 2), + M = L[0], + P = L[1], + j = (0, z.useRef)(), + B = (0, Hn.Z)(l), + Z = (0, Hn.Z)(N), + U = (0, Hn.Z)(I), + H = (0, z.useRef)(0), + G = ja((0, cn.p1)(), 2), + W = G[0], + J = G[1], + Y = d.validNodes, + q = void 0 === Y ? [] : Y, + K = (d.validNodes.length > 1 || S) && m.isActive, + $ = (0, z.useRef)(), + te = (0, z.useCallback)( + function () { + R(j.current.scrollTop), + $.current && clearTimeout($.current), + ($.current = setTimeout(function () { + return b((0, oe.lH)(d.id, !1)); + }, 66)); + }, + [d.id, b] + ); + (0, z.useEffect)( + function () { + M || !U || I || P(!0); + }, + [I, M, U] + ), + (0, z.useEffect)( + function () { + !i && M && f && T(d.id) && O.fireEvent({ event: { subcategory: "read-unread", type: "render", subtype: "load" }, content: { id: d.id } }); + }, + [d.id, O, i, f, M] + ), + (0, z.useEffect)( + function () { + j.current && !i && y && (H.current = j.current.scrollHeight); + }, + [i, y] + ), + (0, z.useEffect)( + function () { + if (j.current) { + var e = Math.round(Z * (j.current.scrollHeight / H.current)); + (j.current.scrollTop = e), (H.current = j.current.scrollHeight); + } + }, + [E] + ), + (0, z.useEffect)( + function () { + _.status && O.fireEvent({ event: { subcategory: "resolve", subtype: "resolved-comments", type: "render" } }); + }, + [O, _.status] + ); + var ne = (0, z.useMemo)( + function () { + var e = []; + if ("node" === h) + e = q.map(function (e) { + var t; + return ( + (t = + e.id === An.Qy + ? w.filter(function (e) { + return e.unmapped; + }) + : w.filter(function (t) { + return Q()(t, "target.selector.node.id") === e.id; + })), + Ma(Ma({}, e), {}, { comments: t }) + ); + }); + else { + var t = w.reduce(function (e, t) { + var n; + return e[(n = t.unmapped ? An.Qy : An.lz)] || (e[n] = []), e[n].push(t), e; + }, {}); + e = [ + { id: An.lz, comments: t[An.lz] || [] }, + { id: An.Qy, comments: t[An.Qy] || [] }, + ]; + } + return e; + }, + [w, h, q] + ), + ae = (0, z.useMemo)( + function () { + return q.reduce(function (e, t) { + return (e[t.id] = (0, z.createRef)()), e; + }, {}); + }, + [q] + ); + (0, z.useEffect)( + function () { + if ("node" === h) { + var e, + t = ae[d.nodeId]; + if (i || null == t || !t.current) return; + !d.isExternalNodeChange || (l && l !== B) || null === (e = t.current) || void 0 === e || e.scrollIntoView(); + } + }, + [d.nodeId, d.isExternalNodeChange, h, i, k, ae] + ); + var ie = (0, z.useCallback)( + function (e) { + b((0, oe.lH)(d.id, !0)), ae[e].current.scrollIntoView({ behavior: "smooth" }), O.fireEvent({ event: { subcategory: "navigation", subtype: "switch-active-artboard", type: "click" } }), F(e); + }, + [d.id, O, b, F, ae] + ); + if (v && (i || a)) return V().createElement(_a, null); + if (i) return V().createElement(ka, { testId: "loading" }, V().createElement(ee.Z, { id: "comments.list.loading" })); + if (a) return V().createElement(Da, null); + if (k && 0 === w.length) return V().createElement(ia, null); + var se, + ce = X()(C.default.component, (Pa((t = {}), C.default.preventScroll, W), Pa(t, C.default.minimized, o), Pa(t, C.default.compactInputFocused, n), t)), + le = + 1 === + ne.filter(function (e) { + return e.id !== An.Qy; + }).length; + return ( + (se = p ? "disabledCommentCreation" : "normal"), + V().createElement( + "div", + { "data-testid": "comment-list-heading", "aria-labelledby": "comment-list-heading", ref: j, id: An.Ls, className: ce, onScroll: te, onWheel: J }, + V().createElement(we, { id: "comment-list-heading", element: "h2", focusable: !1 }, V().createElement(ee.Z, { id: "comments.sections.commentList" })), + K && w.length + ? V().createElement( + Oe, + null, + ne.map(function (e) { + var t = e.id, + o = e.title, + a = e.subtitle, + i = e.comments; + return V().createElement( + ya, + { + key: t, + ref: ae[t], + compactCommentingMode: n, + disableActiveStyling: le, + hideHeader: le && t !== An.Qy, + id: "section--".concat(t), + isActive: "node" === h ? t === d.nodeId : t !== An.Qy, + isEmpty: 0 === i.length, + sectionId: t, + onHeaderSelect: ie, + scrollTop: N, + subtitle: a, + title: t !== An.Qy ? o : V().createElement(Oa, null), + }, + V().createElement(da, { + ariaLabelledBy: "section--".concat(t), + closeButtonClicked: r, + comments: i, + emptyStateType: "global", + hideHeader: le && t !== An.Qy, + isFilterApplied: k, + onHeightChange: s, + onShare: c, + selectedAnnotationId: l, + showRefactoredComment: g, + }) + ); + }) + ) + : V().createElement(da, { closeButtonClicked: r, comments: w, emptyStateType: se, hideHeader: !0, isFilterApplied: k, onHeightChange: s, onShare: c, selectedAnnotationId: l }) + ) + ); + }; + (Za.defaultProps = {}), + (Za.propTypes = { + activeSectionInputFocused: G().bool, + closeButtonClicked: G().bool, + commentListMinimized: G().bool, + hasError: G().bool, + isLoading: G().bool, + onHeightChange: G().func, + onShare: G().func, + selectedAnnotationId: G().string, + }); + const Ua = Za; + function za(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var Va = function (e) { + var t, + n, + r = e.isOffline, + o = + ((t = (0, z.useState)(!1)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return za(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? za(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + a = o[0], + i = o[1], + s = (0, z.useCallback)(function () { + i(!1); + }, []); + return ( + (0, z.useEffect)( + function () { + i(!!r); + }, + [r] + ), + a ? V().createElement(Ee, { closable: !0, onClose: s, "data-test": "offline-toast" }, V().createElement(ee.Z, { id: "comments.offline-empty-state.toast.message" })) : null + ); + }; + (Va.defaultProps = { isOffline: !1 }), (Va.propTypes = { isOffline: G().bool }); + const Ha = Va; + var Ga = function (e) { + var t = e.onAction, + n = e.onClose, + r = e.resolved, + o = e.visible, + a = (0, Ne.Z)().formatMessage; + return o + ? V().createElement( + Ee, + { actionLabel: a({ id: "comments.resolve.toast.undo" }), closable: !0, "data-testid": "resolve-toast", onAction: t, onClose: n, variant: "info" }, + V().createElement(ee.Z, { id: r ? "comments.resolve.toast.resolved" : "comments.resolve.toast.unresolved" }) + ) + : null; + }; + (Ga.defaultProps = { onAction: function () {}, onClose: function () {}, resolved: !1, visible: !1 }), (Ga.propTypes = { onAction: G().func, onClose: G().func, resolved: G().bool, visible: G().bool }); + const Wa = Ga; + function Qa(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var Ja = function (e) { + var t; + return V().createElement( + "svg", + { xmlns: "http://www.w3.org/2000/svg", width: "51", height: "58" }, + V().createElement("title", null, null === (t = e.intl) || void 0 === t ? void 0 : t.formatMessage({ id: "comments.svg-title.frame-logo" })), + V().createElement("path", { + d: + "M4.807 29c0 8.566-1.586 16.797-4.566 24.31-.145.383-.241.814-.241 1.244C0 56.326 1.395 58 3.365 58c1.25 0 2.451-.766 2.932-1.962A74.12 74.12 0 0 0 11.393 29 74.12 74.12 0 0 0 6.297 1.96C5.817.766 4.614 0 3.365 0 1.394 0 0 1.674 0 3.446c0 .43.096.86.24 1.244C3.22 12.202 4.808 20.435 4.808 29ZM17.977 29c0 6.268-.72 12.394-2.066 18.232v-.002c-.049.24-.097.527-.097.767 0 1.819 1.443 3.446 3.365 3.446a3.176 3.176 0 0 0 3.077-2.441 85.712 85.712 0 0 0 2.355-20.004c0-6.89-.817-13.59-2.355-20.002a3.177 3.177 0 0 0-3.077-2.44c-1.922 0-3.365 1.578-3.365 3.397 0 .24.048.526.097.766a82.053 82.053 0 0 1 2.066 18.28Z", + }), + V().createElement("path", { + fillRule: "evenodd", + d: + "M31.197 28.998c0-3.014-.145-5.933-.433-8.852-.192-2.01 1.346-3.733 3.317-3.733 1.682 0 3.077 1.244 3.221 2.871.336 3.207.481 6.413.481 9.714 0 3.302-.144 6.508-.48 9.715-.145 1.627-1.539 2.87-3.222 2.87-1.97 0-3.509-1.77-3.317-3.732.288-2.92.432-5.886.433-8.853Zm0 0V29v-.003.001Z", + clipRule: "evenodd", + }), + V().createElement("path", { + d: "M50.039 31.296A3.298 3.298 0 0 0 51 29c0-.861-.336-1.722-.961-2.345l-1.923-1.866a2.186 2.186 0 0 0-1.538-.622c-1.105 0-2.21.861-2.21 2.201v5.264c0 1.339 1.105 2.2 2.21 2.2.53 0 1.106-.191 1.538-.622l1.923-1.914Z", + }) + ); + }, + Ya = function (e) { + var t, n, r; + return ( + ((n = (0, z.useState)(!1)), + (r = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(n) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(n, r) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return Qa(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Qa(e, t) : void 0; + } + })(n, r) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })())[1], + (0, z.useEffect)(function () {}, []), + null !== (t = window.customElements) && void 0 !== t && t.get("ccx-comments-icon-frame-illustration") ? V().createElement("ccx-comments-icon-frame-illustration", null) : V().createElement(Ja, { intl: e.intl }) + ); + }; + (Ya.propTypes = { intl: G().object }), (Ja.propTypes = { intl: G().object }); + const qa = Ya; + var Xa = n(56841), + Ka = function (e) { + var t = e.onFrameLinkClick, + n = (0, Ne.Z)(), + r = (0, Ke.Z)().fireEvent, + o = (0, z.useContext)(re.ZP).backgroundModeEnabled; + return ( + (0, z.useEffect)(function () { + r(Xa.Z.commentsRenderEventHelper("frameReview", o)); + }, []), + V().createElement( + Vo, + { className: "frame-empty-state", testId: "empty-state-s4r-frame" }, + V().createElement(Vo.Illustration, null, V().createElement(qa, { intl: n })), + V().createElement(Vo.Title, null, n.formatMessage({ id: "comments.asset-empty-state.s4r.artifact.frame-title" })), + V().createElement(ge, { className: m.default.commentsShareForReviewBtn, "data-testid": "frame-cta", variant: "cta", onClick: t }, n.formatMessage({ id: "comments.asset-empty-state.s4r.artifact.frame" })) + ) + ); + }; + (Ka.defaultProps = { onFrameLinkClick: function () {} }), (Ka.propTypes = { onFrameLinkClick: G().func }); + const $a = Ka; + var ei = function (e) { + var t, + n, + r, + o = e.activeSectionInputFocused, + a = e.assetData, + i = e.clearLastResolved, + s = e.closeButtonClicked, + c = e.commentListMinimized, + l = e.enableFrameS4R, + u = e.guestLoginToast, + d = e.hasError, + p = e.isLoading, + f = void 0 === p || p, + m = e.isOffline, + h = e.lastResolvedCommentData, + v = e.onHeightChange, + y = e.onShare, + g = e.onToastClose, + b = e.selectedAnnotationId, + E = e.undoLastResolvedAction, + D = e.urlCopied, + C = e.setUrlCopied, + S = (0, z.useContext)(tt.ZP).onUrlOpen, + A = (0, z.useCallback)( + function () { + return C(!1); + }, + [C] + ), + k = (0, z.useCallback)( + function () { + return i(null == h ? void 0 : h.assetId); + }, + [i, h] + ), + _ = (0, z.useCallback)( + function () { + E(), k(); + }, + [E, k] + ), + T = (0, z.useCallback)( + function (e) { + return null == e || e.preventDefault(), S ? S(a.shortUrl) : window.open(a.shortUrl, "_blank"); + }, + [a.shortUrl, S] + ); + return ( + (0, z.useEffect)( + function () { + u && "success" === u.toastType && setTimeout(g, An.Lg); + }, + [u, g] + ), + (0, z.useEffect)( + function () { + D && setTimeout(A, An.Lg); + }, + [A, C, D] + ), + (0, z.useEffect)( + function () { + var e; + return ( + h && + (e = setTimeout(function () { + return i(h.assetId); + }, An.Lg)), + function () { + return clearTimeout(e); + } + ); + }, + [h, i] + ), + V().createElement( + "div", + { className: X()(w.default.component, ((t = {}), (n = w.default.compactInputFocused), (r = o), n in t ? Object.defineProperty(t, n, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : (t[n] = r), t)) }, + l && a.isFrameArtifact + ? V().createElement($a, { onFrameLinkClick: T }) + : V().createElement(Ua, { activeSectionInputFocused: o, closeButtonClicked: s, commentListMinimized: c, hasError: d, isLoading: f, onHeightChange: v, onShare: y, selectedAnnotationId: b }), + V().createElement( + "div", + { className: w.default.toastContainer }, + u && V().createElement(Ee, { "data-testid": "guest-toast", closable: !0, onClose: g, variant: u.toastType }, V().createElement(ee.Z, { id: u.toastMessageId })), + V().createElement(Ha, { isOffline: m }), + V().createElement(Wa, { onAction: _, onClose: k, resolved: "resolved" === (null == h ? void 0 : h.newStatus), visible: !!h }), + D && V().createElement(Ee, { "data-testid": "url-copy-toast", closable: !0, onClose: A, variant: "success" }, V().createElement(ee.Z, { id: "comments.shareLink.copied" })) + ) + ) + ); + }; + (ei.defaultProps = { assetData: { shortUrl: "", isFrameArtifact: !1 } }), + (ei.propTypes = { + activeSectionInputFocused: G().bool, + assetData: G().shape({ shortUrl: G().string, isFrameArtifact: G().bool }), + clearLastResolved: G().func, + closeButtonClicked: G().bool, + commentListMinimized: G().bool, + enableFrameS4R: G().bool, + guestLoginToast: G().object, + hasError: G().bool, + isLoading: G().bool, + isOffline: G().bool, + lastResolvedCommentData: G().shape({ assetId: G().string, commentId: G().string, newStatus: G().string }), + onHeightChange: G().func, + onShare: G().func, + onToastClose: G().func, + selectedAnnotationId: G().string, + undoLastResolvedAction: G().func, + urlCopied: G().bool, + setUrlCopied: G().func, + }); + const ti = ei; + var ni = n(94055); + function ri(e) { + return ( + (ri = + "function" == typeof Symbol && "symbol" == typeof Symbol.iterator + ? function (e) { + return typeof e; + } + : function (e) { + return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e; + }), + ri(e) + ); + } + function oi(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + function ai(e, t) { + return ( + (ai = Object.setPrototypeOf + ? Object.setPrototypeOf.bind() + : function (e, t) { + return (e.__proto__ = t), e; + }), + ai(e, t) + ); + } + function ii(e) { + if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); + return e; + } + function si(e) { + return ( + (si = Object.setPrototypeOf + ? Object.getPrototypeOf.bind() + : function (e) { + return e.__proto__ || Object.getPrototypeOf(e); + }), + si(e) + ); + } + function ci(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function li(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? ci(Object(n), !0).forEach(function (t) { + ui(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : ci(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function ui(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + function di(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var pi = function (e) { + var t, + n, + r = e.annotationColor, + o = e.hex, + a = e.label, + i = e.name, + s = e.onClick, + c = e.onKeyDown, + l = + ((t = (0, z.useState)(!1)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return di(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? di(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + u = l[0], + d = l[1], + p = { backgroundColor: o, border: "none", cursor: "pointer", display: "inline-block", height: "25px", outline: "none", padding: 0, width: "25px" }; + return ( + (u || o === r) && (p = li(li({}, p), {}, { boxShadow: "rgba(0, 0, 0, 0.25) 0 0 5px 2px", outline: "#fff solid 2px", position: "relative", zIndex: 2 })), + V().createElement("button", { + "aria-label": a, + "data-color": o, + "data-testid": "annotation-color-option-".concat(i), + style: p, + onClick: function () { + return s(o); + }, + onKeyDown: c, + onBlur: function () { + return d(!1); + }, + onFocus: function () { + return d(!0); + }, + onMouseEnter: function () { + return d(!0); + }, + onMouseLeave: function () { + return d(!1); + }, + tabIndex: o === r ? 0 : -1, + }) + ); + }; + (pi.defaultProps = { onClick: function () {}, onKeyDown: function () {} }), (pi.propTypes = { annotationColor: G().string, hex: G().string, label: G().string, name: G().string, onClick: G().func, onKeyDown: G().func }); + var fi = (function (e) { + !(function (e, t) { + if ("function" != typeof t && null !== t) throw new TypeError("Super expression must either be null or a function"); + (e.prototype = Object.create(t && t.prototype, { constructor: { value: e, writable: !0, configurable: !0 } })), Object.defineProperty(e, "prototype", { writable: !1 }), t && ai(e, t); + })(i, e); + var t, + n, + r, + o, + a = + ((r = i), + (o = (function () { + if ("undefined" == typeof Reflect || !Reflect.construct) return !1; + if (Reflect.construct.sham) return !1; + if ("function" == typeof Proxy) return !0; + try { + return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; + } catch (e) { + return !1; + } + })()), + function () { + var e, + t = si(r); + if (o) { + var n = si(this).constructor; + e = Reflect.construct(t, arguments, n); + } else e = t.apply(this, arguments); + return (function (e, t) { + if (t && ("object" === ri(t) || "function" == typeof t)) return t; + if (void 0 !== t) throw new TypeError("Derived constructors may only return object or undefined"); + return ii(e); + })(this, e); + }); + function i(e) { + var t; + return ( + (function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + })(this, i), + ui(ii((t = a.call(this, e))), "handleKeyDown", function (e) { + "Tab" === e.key && Fe(t.colorPickerDivRef, e); + }), + (t.state = { calculatePosition: !0 }), + (t.handleOverlayTriggerRef = t.handleOverlayTriggerRef.bind(ii(t))), + (t.handleColorPickerButtonRef = t.handleColorPickerButtonRef.bind(ii(t))), + (t.handleColorPickerDivRef = t.handleColorPickerDivRef.bind(ii(t))), + (t.handleColorSelection = t.handleColorSelection.bind(ii(t))), + (t.handleOverlayShow = t.handleOverlayShow.bind(ii(t))), + (t.handleComponentRef = t.handleComponentRef.bind(ii(t))), + t + ); + } + return ( + (t = i), + (n = [ + { + key: "handleComponentRef", + value: function (e) { + this.componentRef = e; + }, + }, + { + key: "handleOverlayTriggerRef", + value: function (e) { + this.overlayTriggerRef = e; + }, + }, + { + key: "handleColorPickerButtonRef", + value: function (e) { + this.colorPickerButtonRef = e; + }, + }, + { + key: "handleColorPickerDivRef", + value: function (e) { + this.colorPickerDivRef = e; + }, + }, + { + key: "componentDidUpdate", + value: function (e) { + var t = this.props.annotationTypes; + !lr()(t, e.annotationTypes) && this.setState({ calculatePosition: !0 }); + }, + }, + { + key: "handleOverlayShow", + value: function () { + var e = this; + requestAnimationFrame(function () { + var t, + n = e.props.annotationColor, + r = e.state.calculatePosition, + o = document.getElementById(null === (t = e.overlayTriggerRef) || void 0 === t ? void 0 : t.overlayId); + if (o) { + if (r) { + var a, + i = e.componentRef.getBoundingClientRect(), + s = i.left + i.width, + c = o.getBoundingClientRect(), + l = c.left + c.width, + u = { calculatePosition: !1 }; + l > s + ? ((u.overlayOffset = s - l), + (a = function () { + e.overlayTriggerRef.hide(), + requestAnimationFrame(function () { + return e.overlayTriggerRef.show(); + }); + })) + : (u.overlayOffset = void 0), + e.setState(u, a); + } + var d = o.querySelector('[data-color="'.concat(n, '"]')); + d && d.focus(); + } + }); + }, + }, + { + key: "handleColorSelection", + value: function (e) { + var t = this.props, + n = t.onColorChange, + r = t.saveAnnotationColor; + this.colorPickerButtonRef.click(), r(e), n(e); + }, + }, + { + key: "render", + value: function () { + var e = this, + t = this.props, + n = t.annotationColor, + r = t.annotationTypes, + o = t.intl, + a = t.isAnnotating, + i = t.disabled, + s = t.onAnnotationClick, + c = t.newAnnotationType, + l = t.touchControls, + u = t.compactLayout, + d = this.state.overlayOffset, + p = []; + if (!0 === r.pin) { + var f = "pin" === c, + m = o.formatMessage({ id: "comments.textarea_input.pin.tooltip" }); + p.push( + V().createElement( + "div", + { className: "annotation-tool-wrapper", key: "pin-tool" }, + l + ? V().createElement(ge, { + "aria-label": m, + "data-annotation-button": !0, + "data-test": "pin-button", + id: "annotation-pin-button", + variant: "tool", + selected: a && f, + disabled: i || (a && !f), + icon: V().createElement(En.Z, null), + onMouseDown: u + ? void 0 + : function (e) { + return s(e, "pin"); + }, + onClick: u + ? function (e) { + return s(e, "pin"); + } + : void 0, + }) + : V().createElement(Kn, { + "aria-label": m, + id: "annotation-pin-button", + placement: "bottom", + "data-annotation-button": !0, + "data-test": "pin-button", + selected: a && f, + disabled: i || (a && !f), + icon: V().createElement(En.Z, null), + tooltip: m, + onClick: function (e) { + return s(e, "pin"); + }, + }) + ) + ); + } + if (!0 === r.highlight) { + var h = "highlight" === c, + v = o.formatMessage({ id: "comments.textarea_input.highlight.tooltip" }); + p.push( + V().createElement( + "div", + { className: "annotation-tool-wrapper", key: "highlight-tool" }, + l + ? V().createElement(ge, { + "aria-label": v, + "data-annotation-button": !0, + "data-test": "highlight-button", + variant: "tool", + selected: a && h, + disabled: i || (a && !h), + icon: V().createElement(Xr.Z, { size: "S" }), + onMouseDown: function (e) { + return s(e, "highlight"); + }, + }) + : V().createElement(Kn, { + "aria-label": v, + placement: "bottom", + "data-annotation-button": !0, + "data-test": "highlight-button", + selected: a && h, + disabled: i || (a && !h), + icon: V().createElement(Xr.Z, { size: "S" }), + tooltip: v, + onClick: function (e) { + return s(e, "highlight"); + }, + }) + ) + ); + } + if (!0 === r.strikethrough) { + var y = "strikethrough" === c, + g = o.formatMessage({ id: "comments.textarea_input.strikethrough.tooltip" }); + p.push( + V().createElement( + "div", + { className: "annotation-tool-wrapper", key: "strikethrough-tool" }, + l + ? V().createElement(ge, { + "aria-label": g, + "data-annotation-button": !0, + "data-test": "strikethrough-button", + variant: "tool", + selected: a && y, + disabled: i || (a && !y), + icon: V().createElement(qr.Z, null), + onMouseDown: function (e) { + return s(e, "strikethrough"); + }, + }) + : V().createElement(Kn, { + "aria-label": g, + placement: "bottom", + "data-annotation-button": !0, + "data-test": "strikethrough-button", + selected: a && y, + disabled: i || (a && !y), + icon: V().createElement(qr.Z, null), + tooltip: g, + onClick: function (e) { + return s(e, "strikethrough"); + }, + }) + ) + ); + } + if (!0 === r.insert) { + var b = "insert" === c, + E = o.formatMessage({ id: "comments.textarea_input.insert.tooltip" }); + p.push( + V().createElement( + "div", + { className: "annotation-tool-wrapper", key: "insert-tool" }, + l + ? V().createElement(ge, { + "aria-label": E, + "data-annotation-button": !0, + "data-test": "insert-button", + variant: "tool", + selected: a && b, + disabled: i || (a && !b), + icon: V().createElement(Kr.Z, { size: "S" }), + onMouseDown: function (e) { + return s(e, "insert"); + }, + }) + : V().createElement(Kn, { + "aria-label": E, + placement: "bottom", + "data-annotation-button": !0, + "data-test": "insert-button", + selected: a && b, + disabled: i || (a && !b), + icon: V().createElement(Kr.Z, { size: "S" }), + tooltip: E, + onClick: function (e) { + return s(e, "insert"); + }, + }) + ) + ); + } + if (!0 === r.replace) { + var D = "replace" === c, + C = o.formatMessage({ id: "comments.textarea_input.replace.tooltip" }); + p.push( + V().createElement( + "div", + { className: "annotation-tool-wrapper", key: "replace-tool" }, + l + ? V().createElement(ge, { + "aria-label": C, + "data-annotation-button": !0, + "data-test": "replace-button", + variant: "tool", + selected: a && D, + disabled: i || (a && !D), + icon: V().createElement($r.Z, { size: "S" }), + onMouseDown: function (e) { + return s(e, "replace"); + }, + }) + : V().createElement(Kn, { + "aria-label": C, + placement: "bottom", + "data-annotation-button": !0, + "data-test": "replace-button", + selected: a && D, + disabled: i || (a && !D), + icon: V().createElement($r.Z, { size: "S" }), + tooltip: C, + onClick: function (e) { + return s(e, "replace"); + }, + }) + ) + ); + } + if (!0 === r.draw) { + var w = "draw" === c, + A = o.formatMessage({ id: "comments.textarea_input.draw.tooltip" }); + p.push( + V().createElement( + "div", + { className: "annotation-tool-wrapper", key: "draw-tool" }, + l + ? V().createElement(ge, { + "aria-label": A, + "data-annotation-button": !0, + "data-test": "draw-button", + variant: "tool", + selected: a && w, + disabled: i || (a && !w), + icon: V().createElement(Fr, null), + onMouseDown: function (e) { + return s(e, "draw"); + }, + }) + : V().createElement(Kn, { + "aria-label": A, + placement: "bottom", + "data-annotation-button": !0, + "data-test": "draw-button", + selected: a && w, + disabled: i || (a && !w), + icon: V().createElement(Fr, null), + tooltip: A, + onClick: function (e) { + return s(e, "draw"); + }, + }) + ) + ); + } + return ( + p.push( + V().createElement( + "div", + { className: "annotation-tool-wrapper", key: "color-tool" }, + a + ? V().createElement( + _t, + { ref: this.handleOverlayTriggerRef, placement: "bottom", trigger: "click", crossOffset: d || void 0, onShow: this.handleOverlayShow, type: "replace" }, + V().createElement( + "div", + { ref: this.handleColorPickerButtonRef }, + V().createElement( + ge, + { "aria-label": o.formatMessage({ id: "comments.arialabel.button.colorPicker" }), id: "color-picker-button", style: { padding: "0px" }, variant: "tool" }, + V().createElement("span", { className: "annotation-color-display", style: { backgroundColor: n } }) + ) + ), + V().createElement( + Ht, + { + "aria-label": o.formatMessage({ id: "comments.arialabel.button.colorPicker" }), + className: S.default.popover, + contentStyle: { fontSize: 0 }, + style: { fontSize: 0, minWidth: "initial", padding: "4px", width: "210px" }, + enablePortaling: !0, + tip: !0, + }, + V().createElement( + "div", + { ref: this.handleColorPickerDivRef, style: { width: "200px" } }, + An.uu.map(function (t) { + var r = t.hex, + a = t.name; + return V().createElement(pi, { + annotationColor: n, + hex: r, + key: "color-".concat(r), + label: o.formatMessage({ id: "comments.colorPicker.colors.".concat(a) }), + name: a, + onClick: e.handleColorSelection, + onKeyDown: e.handleKeyDown, + }); + }) + ) + ) + ) + : null + ) + ), + V().createElement("div", { className: S.default.component, ref: this.handleComponentRef }, V().createElement(cn.SF, { name: "addAnnotation", selector: "#annotation-pin-button", placement: "bottom left" }), p) + ); + }, + }, + ]) && oi(t.prototype, n), + Object.defineProperty(t, "prototype", { writable: !1 }), + i + ); + })(V().Component); + (fi.defaultProps = { onAnnotationClick: function () {}, onColorChange: function () {} }), + (fi.propTypes = { + annotationColor: G().string, + annotationTypes: G().shape({ draw: G().bool, highlight: G().bool, insert: G().bool, pin: G().bool, replace: G().bool, strikethrough: G().bool, text: G().bool }), + disabled: G().bool, + intl: G().object.isRequired, + isAnnotating: G().bool, + onAnnotationClick: G().func, + onColorChange: G().func, + touchControls: G().bool, + newAnnotationType: G().string, + saveAnnotationColor: G().func, + compactLayout: G().bool, + }); + const mi = (0, gt.ZP)(fi); + function hi(e) { + return ( + (hi = + "function" == typeof Symbol && "symbol" == typeof Symbol.iterator + ? function (e) { + return typeof e; + } + : function (e) { + return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e; + }), + hi(e) + ); + } + function vi(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function yi(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? vi(Object(n), !0).forEach(function (t) { + Ci(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : vi(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function gi(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + function bi(e, t) { + return ( + (bi = Object.setPrototypeOf + ? Object.setPrototypeOf.bind() + : function (e, t) { + return (e.__proto__ = t), e; + }), + bi(e, t) + ); + } + function Ei(e) { + if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); + return e; + } + function Di(e) { + return ( + (Di = Object.setPrototypeOf + ? Object.getPrototypeOf.bind() + : function (e) { + return e.__proto__ || Object.getPrototypeOf(e); + }), + Di(e) + ); + } + function Ci(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var wi = (function (e) { + !(function (e, t) { + if ("function" != typeof t && null !== t) throw new TypeError("Super expression must either be null or a function"); + (e.prototype = Object.create(t && t.prototype, { constructor: { value: e, writable: !0, configurable: !0 } })), Object.defineProperty(e, "prototype", { writable: !1 }), t && bi(e, t); + })(i, e); + var t, + n, + r, + o, + a = + ((r = i), + (o = (function () { + if ("undefined" == typeof Reflect || !Reflect.construct) return !1; + if (Reflect.construct.sham) return !1; + if ("function" == typeof Proxy) return !0; + try { + return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; + } catch (e) { + return !1; + } + })()), + function () { + var e, + t = Di(r); + if (o) { + var n = Di(this).constructor; + e = Reflect.construct(t, arguments, n); + } else e = t.apply(this, arguments); + return (function (e, t) { + if (t && ("object" === hi(t) || "function" == typeof t)) return t; + if (void 0 !== t) throw new TypeError("Derived constructors may only return object or undefined"); + return Ei(e); + })(this, e); + }); + function i(e) { + var t; + return ( + (function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + })(this, i), + ((t = a.call(this, e)).state = { commentText: "", overTextLimit: !1, paddingOffset: 0, posting: !1 }), + (t.handleIngestEvents = t.handleIngestEvents.bind(Ei(t))), + (t.handleOnFocus = t.handleOnFocus.bind(Ei(t))), + (t.handleOnKeyUp = t.handleOnKeyUp.bind(Ei(t))), + (t.handleTextareaRef = t.handleTextareaRef.bind(Ei(t))), + (t.handleCommentSubmit = t.handleCommentSubmit.bind(Ei(t))), + (t.handleTextPresent = t.handleTextPresent.bind(Ei(t))), + (t.handleSubmitCancel = t.handleSubmitCancel.bind(Ei(t))), + (t.handleReset = t.handleReset.bind(Ei(t))), + (t.handleAnnotationClick = t.handleAnnotationClick.bind(Ei(t))), + (t.handleColorChange = t.handleColorChange.bind(Ei(t))), + (t.handleMentionClick = t.handleMentionClick.bind(Ei(t))), + (t.adjustOffset = t.adjustOffset.bind(Ei(t))), + (t.handleEmojiClick = t.handleEmojiClick.bind(Ei(t))), + t + ); + } + return ( + (t = i), + (n = [ + { + key: "_attachedViewportListeners", + value: function () { + this.props.repositionSubmitForTouch && (window.visualViewport.addEventListener("resize", this.adjustOffset), window.visualViewport.addEventListener("scroll", this.adjustOffset)); + }, + }, + { + key: "_removeViewportListeners", + value: function () { + window.visualViewport.removeEventListener("resize", this.adjustOffset), window.visualViewport.removeEventListener("scroll", this.adjustOffset); + }, + }, + { + key: "componentDidMount", + value: function () { + this._attachedViewportListeners(); + }, + }, + { + key: "componentWillUnmount", + value: function () { + this._removeViewportListeners(); + }, + }, + { + key: "componentDidUpdate", + value: function (e, t) { + var n, + r = this.props, + o = r.annotatingItmId, + a = r.assetData, + i = r.hasAnnotationLocation, + s = r.guestSessionState, + c = r.imsData, + l = r.isSubmittingComment, + u = r.repositionSubmitForTouch, + d = this.context.onInvokeLogin, + p = this._textareaEl; + if ( + (!e.hasAnnotationLocation && i && "root" === o && (e.touchControls || p.setFocus()), + e.focusedInputInfo && "root" === e.focusedInputInfo.itemType && this.handleReset(), + e.assetData.nodeId !== a.nodeId && !e.annotationsMultiPageEnabled) + ) { + e.commentsSetDirtyComment(e.assetData.id, e.assetData.nodeId, t.commentText || "", { coordinates: e.annotationLocationCoordinates, nodeId: e.annotationLocationNodeId }, e.newAnnotationType); + var f = Q()(e.dirtyComments, "".concat(a.nodeId, ".location")); + null != f && f.coordinates && e.saveAnnotationLocation(f.coordinates, f.nodeId), this.setState({ commentText: "" }), d(!1); + } + e.guestSessionState === s || ("expires-soon" !== s && "expired" !== s) || d(!0), + ((!e.isSubmittingComment && l) || ((null === (n = e.imsData) || void 0 === n || !n.token) && null != c && c.token)) && p && p.clearTextareaInput(), + u && !e.repositionSubmitForTouch ? this._attachedViewportListeners() : !u && e.repositionSubmitForTouch && this._removeViewportListeners(); + }, + }, + { + key: "adjustOffset", + value: function () { + var e = this.props, + t = e.compactLayout, + n = e.repositionSubmitForTouch, + r = e.touchControls; + !t && n && r && this.setState({ paddingOffset: window.visualViewport.offsetTop }); + }, + }, + { + key: "handleTextPresent", + value: function (e, t) { + var n = e.length > 0; + this.setState({ commentText: e, overTextLimit: t, textPresent: n }); + }, + }, + { + key: "handleIngestEvents", + value: function (e, t) { + var n = this.props, + r = n.ccxIngest, + o = n.newAnnotationType; + return r.fireEvent({ event: yi({ subcategory: o ? "".concat(o, "-comment") : "post-comment" }, e) }, t); + }, + }, + { + key: "handleOnFocus", + value: function () { + var e = this.props, + t = e.saveFocusedInputInfo, + n = e.compactLayout; + this.handleIngestEvents({ subtype: "text-box", type: "click" }), n && t({ itemType: "root" }), this.adjustOffset(); + }, + }, + { + key: "handleOnKeyUp", + value: function (e) { + var t = this.props, + n = t.annotationLocationCoordinates, + r = t.isOffline, + o = this.state, + a = o.commentText, + i = o.posting, + s = o.overTextLimit, + c = o.textPresent, + l = n && "strikethrough" === n.subtype, + u = r || s || i || ((!c || !a.trim().length) && !l); + (0, wn.Rz)(e) && !u && this.handleCommentSubmit(null, a); + }, + }, + { + key: "handleMentionClick", + value: function () { + this.props.ccxIngest.fireEvent({ event: { subcategory: "post-comment", type: "click", subtype: "mention" } }); + }, + }, + { + key: "handleEmojiClick", + value: function () { + var e = this.props, + t = e.ccxIngest, + n = e.setEmojiPickerInfo; + "root" !== e.emojiPickerInfo.id ? n({ id: "root" }) : n(), t.fireEvent({ event: { subcategory: "post-comment", type: "click", subtype: "emoji" } }); + }, + }, + { + key: "handleCommentSubmit", + value: function (e, t) { + var n = this.props, + r = n.annotationLocationCoordinates, + o = n.annotationLocationNodeId, + a = n.assetData, + i = n.annotatingItmId, + s = n.imsData, + c = this._textareaEl, + l = null == c ? void 0 : c.getTextareaInputValue(!0), + u = this.context.onInvokeLogin; + if (!s || !s.token) return l && (0, wn.fe)(An.oi, { annotationLocation: { coordinates: r, nodeId: o }, annotatingItmId: i, id: a.id, nodeId: a.nodeId, bodyValue: l }), void u(!0); + var d = t || l; + document.activeElement.blur(), this.submitComment(d); + }, + }, + { + key: "cleanFocusedInputInfo", + value: function () { + var e = this.props, + t = e.compactLayout, + n = e.saveFocusedInputInfo; + t && n(); + }, + }, + { + key: "submitComment", + value: function (e) { + var t = this, + n = this.props, + r = n.annotatingItmId, + o = n.mentionsEnabled, + a = n.compactLayout, + i = n.commentsListMinimized, + s = n.contextSetCommentsListMinimized, + c = n.imsData, + l = n.postComment, + u = n.resetGuestUserSession, + d = this.context, + p = d.onGuestSession, + f = d.onInvokeLogin; + a && i && s(!1); + var m = this._textareaEl, + h = []; + this.handleIngestEvents({ subtype: "submit", type: "keystroke" }); + var v = e.trim(); + o && ((h = m && m.getAcceptedMentions()), (v = (0, wn.WD)(v, h))), + this.setState({ textPresent: !1, posting: !0 }), + f(!1), + (this.postingText = v), + m && m.clearTextareaInput(), + this.cleanFocusedInputInfo(), + l(v, void 0, h, { shouldUseAnnotationLocation: "root" === r }) + .then(function () { + t.setState({ posting: !1 }), (0, wn.F_)(An.oi), a && t.handleReset(); + }) + .catch(function (e) { + t.setState({ posting: !1 }), + (0, wn.F_)(An.oi), + m && m.setTextareaInputValue(t.postingText), + t.handleIngestEvents({ subtype: "error", type: "render", error_code: e.status, error_type: e.message, error_desc: "comment-failed-to-post" }), + c.token.includes("AnonBearer") && 401 === e.status && (u(), p("destroy", c)); + }); + }, + }, + { + key: "handleAnnotationClick", + value: function (e, t) { + var n = this.props, + r = n.annotationLocationNodeId, + o = n.annotationsMultiPageEnabled, + a = n.assetData, + i = n.ccxIngest, + s = n.hasAnnotationLocation, + c = n.isPlacingAnnotation, + l = n.annotatingItmId, + u = n.dispatchStakeholderOnboardingAction, + d = n.dispatchCreativeOnboardingAction, + p = n.saveAnnotationLocation, + f = n.setAnnotationMode, + m = n.compactLayout, + h = n.commentsListMinimized, + v = n.contextSetCommentsListMinimized, + y = n.touchControls; + if ( + (e && e.preventDefault(), + !m || h || s || v(!0), + (m || y) && document.activeElement && document.activeElement.classList.contains("textarea") && document.activeElement.blur(), + i.fireEvent({ event: { subcategory: "".concat(t, "-comment"), type: "click", subtype: "".concat(t, c ? "-leave" : "-enter") } }), + !s || (o && a.nodeId !== r)) + ) { + var g = !(c && "root" === l); + o && s && (g = r !== a.nodeId); + var b = g; + s && o && a.nodeId !== r && p(), f(g, "root", b, t); + } else f(!1), p(); + u.completeCurrentOrResumeCoachMarks({ dismissType: "blur" }), d.completeCurrent({ dismissType: "blur" }); + }, + }, + { + key: "handleColorChange", + value: function () { + this.props.compactLayout || this._textareaEl.setFocus(); + }, + }, + { + key: "handleReset", + value: function () { + var e = this.props, + t = e.assetData, + n = e.commentsSetDirtyComment, + r = e.saveAnnotationLocation, + o = e.setAnnotationMode, + a = this._textareaEl; + a && a.clearTextareaInput(), o(!1), r(), n(t.id, t.nodeId, ""), this.cleanFocusedInputInfo(), this.setState({ commentText: "" }), document.activeElement.blur(); + }, + }, + { + key: "handleSubmitCancel", + value: function () { + this.handleReset(), this.handleIngestEvents({ subtype: "cancel", type: "click" }); + }, + }, + { + key: "handleTextareaRef", + value: function (e) { + this._textareaEl = e; + }, + }, + { + key: "_getContentBody", + value: function (e) { + var t = this.props, + n = t.annotationColor, + r = t.annotationLocationCoordinates, + o = t.annotationTypes, + a = t.annotationsEnabled, + i = t.annotationsCreationEnabled, + s = t.annotationsMultiPageEnabled, + c = t.assetData, + l = t.compactLayout, + u = t.dirtyComments, + d = t.errors, + p = t.focusedInputInfo, + f = t.hasAnnotationLocation, + m = t.isPlacingAnnotation, + h = t.isReadyToAnnotate, + v = t.mentionsEnabled, + y = t.onHeightChange, + g = t.newAnnotationType, + b = t.annotatingItmId, + E = t.saveAnnotationColor, + D = t.emojiPickerInfo, + C = t.setEmojiPickerInfo, + w = t.theme, + S = t.touchControls, + A = t.isOffline, + k = t.richTextEntry, + _ = this.state, + T = _.overTextLimit, + I = _.posting, + O = _.textPresent, + F = _.commentText, + x = !(!m && !f) && "root" === b, + N = !e || !e.token, + R = r && "strikethrough" === r.subtype, + L = Boolean(d.list) || A || T || I || ((!O || !F.trim().length) && !R), + M = V().createElement( + ge, + { disabled: L, id: "ccx-comments-submit-btn", variant: "cta", onClick: this.handleCommentSubmit, style: { marginLeft: "var(--spectrum-global-dimension-size-200, 16px)" } }, + V().createElement(ee.Z, { id: "comments.submit.submit" }) + ), + P = V().createElement( + ge, + { disabled: (!O || I) && !x, id: "ccx-comments-cancel-btn", onMouseDown: this.handleSubmitCancel, onClick: this.handleSubmitCancel, variant: "secondary" }, + V().createElement(ee.Z, { id: "comments.submit.cancel" }) + ), + j = V().createElement("div", { className: "submit-button-container" }, P, M), + B = V().createElement( + "div", + { className: "submit-icon-container" }, + V().createElement(ge, { + "data-testid": "ccx-comments-submit-button", + icon: V().createElement(xt, { size: "M" }), + variant: "tool", + disabled: L && !F.length, + selected: !L, + onClick: L ? void 0 : this.handleCommentSubmit, + }) + ), + Z = "comments.submit.placeholder", + U = (m || (r && "insert" === r.subtype)) && "insert" === g, + z = (m || (r && "replace" === r.subtype)) && "replace" === g; + U ? (Z = "comments.submit.placeholder_insert") : z && (Z = "comments.submit.placeholder_replace"); + var H, + G = V().createElement(Qr, { + animationEnabled: !l, + annotationsEnabled: a && i, + annotationLocationCoordinates: r, + annotationTypes: o, + allowCollapseOverride: R, + className: "new-comment-textarea", + compactLayout: l, + initialValue: Q()(u, "".concat(c.nodeId, ".bodyValue"), ""), + isAnnotating: x, + isEmojiPickerVisible: "root" === D.id, + key: s ? "single-submit-box" : c.nodeId, + mentionsEnabled: !U && !z && !A && v && !N, + onAnnotationClick: this.handleAnnotationClick, + onBlur: this.adjustOffset, + onEmojiIconClick: this.handleEmojiClick, + onFocus: this.handleOnFocus, + onHeightChange: y, + onKeyUp: this.handleOnKeyUp, + onMentionClick: this.handleMentionClick, + onTextPresent: this.handleTextPresent, + placeholder: Z, + ref: this.handleTextareaRef, + richTextEntry: k, + setEmojiPickerInfo: C, + theme: w, + touchControls: S, + }); + a && + i && + o && + (H = V().createElement(mi, { + annotationColor: n, + annotationTypes: o, + disabled: !h, + touchControls: S, + onAnnotationClick: this.handleAnnotationClick, + onColorChange: this.handleColorChange, + isAnnotating: x, + newAnnotationType: g, + saveAnnotationColor: E, + compactLayout: l, + })); + var W = V().createElement("div", { className: "sign-in-buttons-container" }, H, G, j), + J = V().createElement("div", { className: "new-comment-form" }, H, V().createElement("div", { className: "submit-textbox-container" }, G, B)), + Y = p && "root" !== p.itemType; + return l ? (Y ? null : J) : W; + }, + }, + { + key: "render", + value: function () { + var e = this.props, + t = e.imsData, + n = e.latestMobileEnabled, + r = this.state.paddingOffset, + o = this._getContentBody(t); + return V().createElement( + "div", + { "aria-labelledby": "new-comment-heading", className: A.default.component, id: An.VY, style: n ? void 0 : { paddingTop: r } }, + V().createElement("h2", { id: "new-comment-heading", className: "visually-hidden" }, V().createElement(ee.Z, { id: "comments.sections.newComment" })), + o ? V().createElement(V().Fragment, null, o, !n && V().createElement(fn, null)) : null, + V().createElement(cn.SF, { name: "addComment", selector: "#ccx-comments-submit-btn", placement: "bottom right" }) + ); + }, + }, + ]), + n && gi(t.prototype, n), + Object.defineProperty(t, "prototype", { writable: !1 }), + i + ); + })(V().Component); + Ci(wi, "contextType", tt.ZP), + (wi.defaultProps = { + cacheComments: !1, + ccxIngest: { fireEvent: function () {} }, + commentsSetDirtyComment: function () {}, + dispatchStakeholderOnboardingAction: new Proxy( + {}, + { + get: function () { + return function () {}; + }, + } + ), + dispatchCreativeOnboardingAction: new Proxy( + {}, + { + get: function () { + return function () {}; + }, + } + ), + errors: {}, + isOffline: !1, + saveFocusedInputInfo: function () {}, + emojiPickerInfo: {}, + postComment: function () {}, + }), + (wi.propTypes = { + annotationColor: G().string, + annotationLocationNodeId: G().oneOfType([G().string, G().number]), + annotationLocationCoordinates: G().object, + annotationsEnabled: G().bool.isRequired, + annotationsCreationEnabled: G().bool.isRequired, + annotationsMultiPageEnabled: G().bool.isRequired, + annotationTypes: G().shape({ draw: G().bool, pin: G().bool, text: G().bool }), + assetData: G().shape({ id: G().string, nodeId: G().oneOfType([G().string, G().number]), ownerId: G().string }), + cacheComments: G().bool, + commentsSetDirtyComment: G().func, + dirtyComments: G().object, + dispatchStakeholderOnboardingAction: G().object, + dispatchCreativeOnboardingAction: G().object, + currentView: G().oneOf(["resolved", "unresolved"]), + ccxIngest: G().object.isRequired, + errors: G().object, + hasAnnotationLocation: G().bool, + isOffline: G().bool, + isPlacingAnnotation: G().bool, + isReadyToAnnotate: G().bool, + imageCapture: G().bool, + imageContextData: G().object, + imsData: G().shape({ id: G().string, token: G().string }), + isSubmittingComment: G().bool, + latestMobileEnabled: G().bool, + mentionsEnabled: G().bool, + annotatingItmId: G().string, + saveAnnotationLocation: G().func, + setAnnotationMode: G().func, + compactLayout: G().bool, + saveFocusedInputInfo: G().func, + focusedInputInfo: G().object, + onHeightChange: G().func, + newAnnotationType: G().string, + saveAnnotationColor: G().func, + commentsListMinimized: G().bool, + theme: G().oneOf(["light", "lightest", "dark", "darkest"]), + touchControls: G().bool, + contextSetCommentsListMinimized: G().func, + guestSessionState: G().string, + resetGuestUserSession: G().func, + richTextEntry: G().bool, + repositionSubmitForTouch: G().bool, + emojiPickerInfo: G().object, + setEmojiPickerInfo: G().func, + postComment: G().func, + }); + const Si = (0, $.qC)( + re.HJ, + (0, K.$j)( + function (e, t) { + var n = (0, Pr._X)(e, t.assetData.id).commentPosting; + return { + dispatchStakeholderOnboardingAction: (0, cn.GW)(e), + dispatchCreativeOnboardingAction: (0, ln.M5)(e, t.creativeOnboarding), + annotationLocationCoordinates: (0, te.cM)(e), + guestSessionState: Q()(e, "".concat(An.Bq, ":context.guestSessionState")), + emojiPickerInfo: Q()(e, "".concat(An.Bq, ":context.emojiPickerInfo")), + isSubmittingComment: n, + }; + }, + function (e) { + return (0, $.DE)({ resetGuestUserSession: ae.I3, setEmojiPickerInfo: ae.Po }, e); + }, + void 0, + { context: Ve.no } + ), + (0, ni.ccxIngest)(An.FH) + )(wi), + Ai = (0, pe.Z)(n(54781)).default, + ki = (0, ue.Z)({ displayName: "Close", fallback: Ai, swcLoader: void 0, swcProps: Ot.m, tagName: "sp-icon-close" }), + _i = (0, pe.Z)(n(31945)).default, + Ti = (0, ue.Z)({ displayName: "Filter", fallback: _i, swcLoader: void 0, swcProps: Ot.m, tagName: "sp-icon-filter" }), + Ii = (0, pe.Z)(n(947)).default, + Oi = (0, ue.Z)({ displayName: "ChevronLeft", fallback: Ii, swcLoader: void 0, swcProps: Ot.m, tagName: "sp-icon-chevron-left" }); + var Fi = ["children", "className", "variant"]; + function xi() { + return ( + (xi = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + xi.apply(this, arguments) + ); + } + var Ni = { display: "h1", pageTitle: "h2", subtitle1: "h2", subtitle2: "h3", subtitle3: "h4" }, + Ri = function (e) { + var t = e.children, + n = e.className, + r = e.variant, + o = void 0 === r ? "display" : r, + a = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = {}, + a = Object.keys(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (o[n] = e[n]); + return o; + })(e, t); + if (Object.getOwnPropertySymbols) { + var a = Object.getOwnPropertySymbols(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (Object.prototype.propertyIsEnumerable.call(e, n) && (o[n] = e[n])); + } + return o; + })(e, Fi), + i = Ni[o]; + return V().createElement(i, xi({ className: X()("spectrum-Heading", "spectrum-Heading--".concat(o), n) }, a), t); + }; + Ri.propTypes = { children: G().node, className: G().string, variant: G().oneOf(["display", "pageTitle", "subtitle1", "subtitle2", "subtitle3"]) }; + const Li = Ri; + function Mi(e) { + var t = e.children, + n = e.className, + r = e.onBack, + o = e.pageTitle, + a = e.title, + i = (0, Ne.Z)().formatMessage; + return V().createElement( + "div", + { className: X()(n, k.default.component) }, + o && V().createElement("h2", { className: k.default.pageTitle }, o), + V().createElement( + "div", + { className: k.default.title }, + r && V().createElement(ge, { "aria-label": i({ id: "comments.arialabel.button.backButton" }), className: k.default.backButton, icon: V().createElement(Oi, null), onClick: r, variant: "tool" }), + V().createElement(Li, { className: k.default.heading }, a), + t && V().createElement("div", { className: k.default.buttonContainer }, t) + ) + ); + } + (Mi.defaultProps = { classNames: "", pageTitle: "", title: "" }), (Mi.propTypes = { children: G().node, className: G().string, onBack: G().func, pageTitle: G().string, title: G().oneOfType([G().string, G().element]) }); + const Pi = Mi; + function ji(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var Bi = function () { + return V().createElement( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + viewBox: "0 0 22 22", + className: "spectrum-Icon", + display: "flex", + fill: "currentColor", + style: { + position: "absolute", + top: "var( --ccx-comments-custom-icon-position)", + left: "var( --ccx-comments-custom-icon-position)", + height: "var(--ccx-comments-annotation-visibility-toggle-icon-size)", + width: "var(--ccx-comments-annotation-visibility-toggle-icon-size)", + }, + }, + V().createElement( + "g", + null, + V().createElement("path", { + d: "M7.3,12.714c0-2.046,3.7-6.214,8-6.214a7.089,7.089,0,0,1,1.7.21V6a2.5,2.5,0,0,0-2.5-2.5H2.5A2.5,2.5,0,0,0,0,6v6.471a2.5,2.5,0,0,0,2.5,2.5H3v4.5a.5.5,0,0,0,.854.354L8.519,15.3A3.913,3.913,0,0,1,7.3,12.714Z", + }), + V().createElement("path", { + d: + "M18.029,8.678A6.18,6.18,0,0,0,15.3,8c-3.576,0-6.5,3.56-6.5,4.715,0,1.236,3.078,4.417,6.474,4.417,3.423,0,6.526-3.181,6.526-4.417C21.8,11.739,20.061,9.685,18.029,8.678Zm-2.729,7.7a3.807,3.807,0,1,1,3.807-3.807A3.807,3.807,0,0,1,15.3,16.373Z", + }), + V().createElement("path", { d: "M16.4,12.6a1.1,1.1,0,0,1-1.1-1.1,1.086,1.086,0,0,1,.557-.937,2.045,2.045,0,0,0-.557-.086,2.089,2.089,0,1,0,2.089,2.089,1.906,1.906,0,0,0-.072-.493A1.082,1.082,0,0,1,16.4,12.6Z" }) + ) + ); + }, + Zi = function () { + var e, t, n; + return ( + ((t = (0, z.useState)(!1)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return ji(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? ji(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })())[1], + (0, z.useEffect)(function () {}, []), + null !== (e = window.customElements) && void 0 !== e && e.get("ccx-comments-icon-visibility") ? V().createElement("ccx-comments-icon-visibility", null) : V().createElement(Bi, null) + ); + }; + Zi.displayName = "Visibility"; + const Ui = Zi; + function zi(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var Vi = function () { + return V().createElement( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + viewBox: "0 0 22 22", + className: "spectrum-Icon", + display: "flex", + fill: "currentColor", + style: { + position: "absolute", + top: "var( --ccx-comments-custom-icon-position)", + left: "var( --ccx-comments-custom-icon-position)", + height: "var(--ccx-comments-annotation-visibility-toggle-icon-size)", + width: "var(--ccx-comments-annotation-visibility-toggle-icon-size)", + }, + }, + V().createElement( + "g", + null, + V().createElement("path", { + d: + "M7.574,13.862l-.23.236L4.5,17.009V14.471a1,1,0,0,0-1-1h-1a1,1,0,0,1-1-1V6a1,1,0,0,1,1-1h12a1,1,0,0,1,1,1v.515a7.736,7.736,0,0,1,1.5.2V6a2.5,2.5,0,0,0-2.5-2.5H2.5A2.5,2.5,0,0,0,0,6v6.471a2.5,2.5,0,0,0,2.5,2.5H3v4.534a.5.5,0,0,0,.859.348l4.572-4.718A5.656,5.656,0,0,1,7.574,13.862Z", + }), + V().createElement("path", { + d: + "M21.48,17.991,17.1,13.615a2.085,2.085,0,0,0,.285-1.05,1.967,1.967,0,0,0-.073-.494,1.08,1.08,0,0,1-.916.528,1.1,1.1,0,0,1-1.1-1.1,1.083,1.083,0,0,1,.557-.936,2.029,2.029,0,0,0-.557-.087,2.078,2.078,0,0,0-1.05.284L9.874,6.384a.357.357,0,0,0-.5,0l-.25.25a.356.356,0,0,0,0,.5h0l2.256,2.256C9.814,10.523,8.8,12.033,8.8,12.712c0,1.237,3.078,4.417,6.473,4.417a6.788,6.788,0,0,0,3.05-.788l2.4,2.4a.355.355,0,0,0,.5,0h0l.25-.25A.356.356,0,0,0,21.48,17.991ZM15.3,16.373a3.8,3.8,0,0,1-3.039-6.091L13.5,11.516a2.086,2.086,0,0,0,2.854,2.854l1.234,1.235A3.781,3.781,0,0,1,15.3,16.373Z", + }), + V().createElement("path", { d: "M14,8.991a3.8,3.8,0,0,1,4.874,4.874l1.259,1.258A4.283,4.283,0,0,0,21.8,12.714c0-.975-1.739-3.029-3.771-4.036A6.169,6.169,0,0,0,15.3,8a5.888,5.888,0,0,0-1.946.343Z" }) + ) + ); + }, + Hi = function () { + var e, t, n; + return ( + ((t = (0, z.useState)(!1)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return zi(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? zi(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })())[1], + (0, z.useEffect)(function () {}, []), + null !== (e = window.customElements) && void 0 !== e && e.get("ccx-comments-icon-visibilityoff") ? V().createElement("ccx-comments-icon-visibilityoff", null) : V().createElement(Vi, null) + ); + }; + Hi.displayName = "VisibilityOff"; + const Gi = Hi; + var Wi = function (e) { + var t, + n, + r, + o = e.commentsSetShowAnnotations, + a = e.disable, + i = e.iconClassName, + s = e.isAnnotationsVisible, + c = e.onAnnotationToggle, + l = e.touchControls, + u = e.visible, + d = (0, Ke.Z)(), + p = (0, Ne.Z)().formatMessage, + f = (0, cn.cs)(), + m = (0, ln.UP)(), + h = (0, z.useCallback)( + function () { + var e = !s; + f.completeCurrentOrResumeCoachMarks({ dismissType: "blur" }), m.completeCurrent({ dismissType: "blur" }), o(e), e ? d.fireEvent(d.events.annotationToggleVisible) : d.fireEvent(d.events.annotationToggleHidden), c(e); + }, + [c, o, d, s, f, m] + ); + s + ? ((t = V().createElement(Ui, { className: X()("annotation-visibility-icon", i) })), (n = "comments.filter.annotation-toggle.hide"), (r = "annotation-visible")) + : ((t = V().createElement(Gi, { className: X()("annotation-visibility-icon", i) })), (n = "comments.filter.annotation-toggle.show"), (r = "annotation-hidden")); + var v = p({ id: "comments.filter.annotation-toggle.show" }), + y = p({ id: n }), + g = V().createElement(ge, { + "aria-label": v, + "aria-pressed": s, + className: "annotation-toggle-icon ".concat(r), + "data-testid": "annotation-switch", + disabled: a, + icon: t, + id: "ccx-comments-hide-annotations-button", + onClick: h, + variant: "tool", + }); + return ( + l || (g = V().createElement(_t, { placement: "left", trigger: "hover" }, g, V().createElement(It, { style: { alignItems: "stretch" } }, y))), + u + ? V().createElement( + V().Fragment, + null, + g, + V().createElement(cn.SF, { name: "hideAnnotations", placement: "top right", selector: "#ccx-comments-hide-annotations-button" }), + V().createElement(ln.Py, { name: "hideAnnotations", placement: "top right", selector: "#ccx-comments-hide-annotations-button" }) + ) + : null + ); + }; + (Wi.defaultProps = { disable: !1, iconClassName: "", isAnnotationsVisible: !1, onAnnotationToggle: function () {}, touchControls: !1, visible: !0 }), + (Wi.propTypes = { commentsSetShowAnnotations: G().func.isRequired, disable: G().bool, iconClassName: G().string, isAnnotationsVisible: G().bool, onAnnotationToggle: G().func, touchControls: G().bool, visible: G().bool }); + const Qi = Wi, + Ji = (0, pe.Z)(n(70697)).default, + Yi = (0, ue.Z)({ displayName: "FilterCheck", fallback: Ji, swcLoader: void 0, swcProps: Ot.m, tagName: "sp-icon-filter-check" }); + var qi = (0, z.forwardRef)(function (e, t) { + var n = e.onFilterClick, + r = (0, Ve.I0)(), + o = (0, Ne.Z)().formatMessage, + a = (0, Ke.Z)().fireEvent, + i = (0, Fa.Z)(), + s = i.filteredCommentCount, + c = void 0 === s ? 0 : s, + l = i.commentCounts, + u = (0, z.useContext)(re.ZP), + d = u.annotationsEnabled, + p = u.touchControls, + f = (0, z.useContext)(tt.ZP), + m = f.onAnnotationToggle, + h = f.onCloseButtonClick, + v = xa(), + y = v.disabled, + g = v.isFilterApplied, + b = (0, Ve.v9)(function (e) { + return e["".concat(An.Bq, ":annotation")].showAnnotations; + }), + E = o({ id: "comments.mobile.header.title.default" }, { count: c }), + D = o({ id: "comments.arialabel.button.filter" }), + C = o({ id: "comments.arialabel.status.".concat(g ? "filterApplied" : "filterNotApplied") }), + w = 0 === l.total.total, + S = (0, z.useCallback)( + function () { + a(Xa.Z.closeComponent), h(); + }, + [a, h] + ), + A = (0, z.useCallback)( + function (e) { + r((0, ce.xD)(e)); + }, + [r] + ); + return V().createElement( + "div", + { ref: t }, + V().createElement( + Pi, + { title: E }, + V().createElement(Qi, { commentsSetShowAnnotations: A, disable: w, iconClassName: _.default.annotationVisibilityIcon, isAnnotationsVisible: b, onAnnotationToggle: m, touchControls: p, visible: d }), + p + ? V().createElement(ge, { + "aria-label": "".concat(D, " ").concat(C), + "data-testid": "ccx-comments-filter-button", + disabled: y, + icon: g ? V().createElement(Yi, { className: _.default.filterIconApplied, size: "S" }) : V().createElement(Ti, { className: _.default.filterIcon, size: "S" }), + id: "ccx-filter-button", + onClick: n, + variant: "tool", + }) + : V().createElement(Kn, { + "aria-label": o({ id: "comments.filter.tooltip" }), + "data-testid": "ccx-comments-filter-button", + disabled: y, + icon: g ? V().createElement(Yi, { className: _.default.filterIconApplied, size: "S" }) : V().createElement(Ti, { className: _.default.filterIcon, size: "S" }), + onClick: n, + placement: "left", + tooltip: o({ id: "comments.filter.tooltip" }), + variant: "tool", + }), + V().createElement("div", { className: _.default.vr }), + V().createElement(ge, { "data-testid": "close-button", icon: V().createElement(ki, { className: _.default.closeIcon, size: "M" }), onClick: S, variant: "tool" }) + ) + ); + }); + (qi.defaultProps = { onFilterClick: function () {} }), (qi.propTypes = { onFilterClick: G().func }); + const Xi = qi; + function Ki(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function $i(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? Ki(Object(n), !0).forEach(function (t) { + es(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : Ki(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function es(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + function ts(e, t) { + return ( + (function (e) { + if (Array.isArray(e)) return e; + })(e) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(e, t) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return ns(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? ns(e, t) : void 0; + } + })(e, t) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function ns(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var rs = function (e) { + var t, + n = e.editingComment, + r = e.focusIfTextPresent, + o = e.hideTools, + a = e.onFocus, + i = e.onSubmit, + s = e.parentComment, + c = e.placeholder, + l = (0, z.useContext)(re.ZP), + u = l.annotationsMultiPageEnabled, + d = l.annotationTypes, + p = l.assetData, + f = l.imsData, + m = l.isOffline, + h = l.mentionsEnabled, + v = l.richTextEntry, + y = l.theme, + g = l.touchControls, + b = (0, et.Z)(), + E = b.editComment, + D = b.postComment, + C = b.replyComment, + w = ts((0, z.useState)("auto"), 2), + S = w[0], + A = w[1], + k = ts((0, z.useState)(!1), 2), + _ = k[0], + I = k[1], + O = (0, Ve.I0)(), + F = (0, z.useContext)(tt.ZP), + x = F.onGuestSession, + N = F.onInvokeLogin, + R = (0, sr.Z)().saveAnnotationLocation, + L = (0, z.useRef)(), + M = !f || !f.token, + P = (0, Ke.Z)(), + j = ar(), + B = j.inputFocused, + Z = j.mentionListShown, + U = j.setFullscreen, + H = (0, Ve.v9)(function (e) { + return (0, te.cM)(e); + }), + G = (0, Ve.v9)(function (e) { + return (0, te.yU)(e); + }), + W = (0, Ve.v9)(function (e) { + return e["".concat(An.Bq, ":context")].annotatingItmId; + }), + Q = (0, Ve.v9)(function (e) { + return e["".concat(An.Bq, ":context")].newAnnotationType; + }), + J = (0, Ve.v9)(function (e) { + return (0, Pr._X)(e, p.id); + }), + Y = J.commentPosting, + q = J.dirtyComments, + K = J.mobileEditingDraft, + $ = J.postingReplyParentCommentId === (null == s ? void 0 : s.id), + ee = q[p.nodeId], + ne = (0, Hn.Z)(p.nodeId), + ie = (0, Hn.Z)(H), + se = q[ne], + le = (0, Hn.Z)(Q), + ue = K || (null == n ? void 0 : n.bodyValue), + de = s ? s.draftReplyText : ""; + n + ? ((null === (t = n.mentions) || void 0 === t ? void 0 : t.length) > 0 && (ue = (0, wn.UW)(ue, n.mentions)), (de = (0, wn.UW)(K || n.bodyValue || ue.substr(0, An.Ry), n.mentions))) + : n || s || (de = null == ee ? void 0 : ee.bodyValue); + var pe = !(null == ee || !ee.bodyValue) || !(null == s || !s.draftReplyText) || (null == n ? void 0 : n.bodyValue) !== de; + (0, z.useEffect)( + function () { + A(Z ? 0 : "auto"); + }, + [Z] + ), + (0, z.useEffect)( + function () { + B || U(!1); + }, + [B, U] + ), + (0, z.useEffect)( + function () { + p.nodeId !== ne && void 0 !== ne && (O((0, oe.Gt)(p.id, ne, null == se ? void 0 : se.bodyValue, ie, le)), null != ee && ee.location && O(R(null == ee ? void 0 : ee.location, p.nodeId))); + }, + [p.nodeId] + ), + (0, z.useEffect)( + function () { + (Y || $) && (L.current.clearTextareaInput(), Y && null != ee && ee.bodyValue && O((0, oe.Gt)(p.id, p.nodeId, "")), $ && void 0 !== (null == s ? void 0 : s.draftReplyText) && O((0, oe.TA)(s.id)), i()); + }, + [Y, $] + ); + var fe = (0, z.useCallback)( + function (e, t) { + return P.fireEvent({ event: $i({ subcategory: "post-comment" }, e) }, t); + }, + [P] + ), + me = (0, z.useCallback)( + function () { + var e = null == L ? void 0 : L.current.getTextareaInputValue(!1); + if (!f || !f.token) return (0, wn.fe)(An.oi, { annotationLocation: { coordinates: H, nodeId: G }, annotatingItmId: W, id: p.id, nodeId: p.nodeId, bodyValue: e }), void N(!0); + var t = []; + fe({ subtype: "submit", type: "keystroke" }); + var n = e.trim(); + h && ((t = L && L.current.getAcceptedMentions()), (n = (0, wn.WD)(n, t))), + N(!1), + O((0, ae.PM)()), + I(!0), + D(n, void 0, t, { shouldUseAnnotationLocation: "root" === W }) + .then(function () { + (0, wn.F_)(An.oi); + }) + .catch(function (t) { + (0, wn.F_)(An.oi), + fe({ subtype: "error", type: "render", error_code: t.status, error_type: t.message, error_desc: "comment-failed-to-post" }), + f.token.includes("AnonBearer") && 401 === t.status && (O((0, ae.I3)()), x("destroy", f)), + L.current.setTextareaInputValue(e); + }) + .finally(function () { + return I(!1); + }); + }, + [W, H, G, p.id, p.nodeId, O, fe, f, h, N, x, D] + ), + he = (0, z.useCallback)( + function () { + return P.fireEvent({ event: { subcategory: "post-comment", type: "click", subtype: "mention" } }); + }, + [P] + ), + ve = (0, z.useCallback)( + function () { + var e = s.id, + t = null == L ? void 0 : L.current.getTextareaInputValue(!1), + n = t.trim(); + if (!f || !f.token) return n && (0, wn.fe)(An.uX, { bodyValue: n, id: p.id, nodeId: p.nodeId, commentData: s }), void N(!0); + if ((N(!1), n)) { + P.fireEvent({ event: { subcategory: "reply-comment", subtype: "submit", type: "icon" }, content: { parent_id: e } }); + var r = [], + o = n; + h && ((r = L && L.current.getAcceptedMentions()), (o = (0, wn.WD)(o, r))), + I(!0), + C(o, e, r) + .then(function (e) { + O((0, ce.Ef)(e.id)); + }) + .catch(function (e) { + var n = e.status, + r = e.message; + P.fireEvent({ event: { context_guid: s.id, subcategory: "reply-comment", subtype: "error", type: "render", error_code: n, error_type: r, error_desc: "reply-failed-to-post" } }), + f.token.includes("AnonBearer") && 401 === n && (O((0, ae.I3)()), x("destroy", f)), + L && L.current.setTextareaInputValue(t); + }) + .finally(function () { + return I(!1); + }); + } + }, + [p.id, p.nodeId, P, O, f, h, N, x, s, C] + ), + ye = (0, z.useCallback)( + function (e) { + fe({ subtype: "text-box", type: "click" }), a(e); + }, + [fe, a] + ), + ge = (0, z.useCallback)( + function () { + var e = null == L ? void 0 : L.current.getTextareaInputValue(!1); + P.fireEvent({ event: { context_guid: null == s ? void 0 : s.id, subcategory: "edit-comment", subtype: "submit", type: "click" }, content: { parent_id: n.id } }); + var t = e.trim(), + r = []; + h && ((r = L && L.current.getAcceptedMentions()), (t = (0, wn.WD)(t, r))), + (t || "strikethrough" === n.annotationType) && + (I(!0), + E(t, n.id, null == s ? void 0 : s.id, r) + .then(function () { + var e = + (n && + n.mentions && + n.mentions.map(function (e) { + return e.id; + })) || + []; + r.some(function (t) { + return !e.includes(t.id); + }) && P.fireEvent({ event: { context_guid: null == s ? void 0 : s.id, subcategory: "edit-comment", subtype: "mention", type: "render" } }), + P.fireEvent({ event: { context_guid: null == s ? void 0 : s.id, subcategory: "edit-comment", subtype: "edit-comment", type: "render" } }), + I(!1), + i(); + }) + .catch(function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = e.status, + n = e.message; + P.fireEvent({ event: { context_guid: null == s ? void 0 : s.id, subcategory: "edit-comment", subtype: "error", type: "render", error_code: t, error_type: n, error_desc: "comment-failed-to-edit" } }), + f.token.includes("AnonBearer") && 401 === t && (O((0, ae.I3)()), x("destroy", f)), + I(!1); + })); + }, + [P, O, E, n, f, h, x, i, s] + ), + be = (0, z.useCallback)( + function () { + if (s || n) { + if (s && !n) { + var e = null == L ? void 0 : L.current.getTextareaInputValue(!1); + O((0, oe.TA)(s.id, e)); + } else if (n) { + var t = null == L ? void 0 : L.current.getTextareaInputValue(!1); + O((0, oe.Xq)(p.id, n.id, t)); + } + } else { + var r = null == L ? void 0 : L.current.getTextareaInputValue(!1); + O((0, oe.Gt)(p.id, p.nodeId, r, { coordinates: H, nodeId: G })); + } + }, + [H, G, p.id, p.nodeId, O, n, s] + ), + Ee = (0, z.useCallback)( + function (e) { + n && O((0, oe.Xq)(p.id, n.id, e)); + }, + [p.id, O, n] + ), + De = s ? ve : me; + return ( + n && (De = ge), + V().createElement( + "div", + { id: An.VY, className: X()(T.default.component, { comment: !s }), style: { minHeight: S } }, + V().createElement(Qr, { + animationEnabled: !1, + annotationLocationCoordinates: H, + annotationTypes: d, + className: "new-comment-textarea", + commentSubmit: De, + compactLayout: !0, + defaultMentions: null == n ? void 0 : n.mentions, + hideTools: o, + initialValue: de, + isDraft: pe, + key: u ? "single-submit-box" : p.nodeId, + mentionsEnabled: !m && h && !M, + onBlur: be, + onFocus: ye, + onMentionClick: he, + onTextPresent: Ee, + posting: _, + placeholder: c, + ref: L, + richTextEntry: v, + shouldFocusIfValueExists: r, + theme: y, + touchControls: g, + }) + ) + ); + }; + (rs.defaultProps = { focusIfTextPresent: !0, hideTools: !1, isOffline: !1, onFocus: function () {}, onSubmit: function () {} }), + (rs.propTypes = { editingComment: G().object, focusIfTextPresent: G().bool, hideTools: G().bool, onFocus: G().func, onSubmit: G().func, parentComment: G().object, placeholder: G().string }); + const os = rs; + var as = function (e) { + var t = e.editingCommentId, + n = e.focusIfTextPresent, + r = e.onSubmit, + o = e.parentCommentId, + a = (0, Ve.v9)(function (e) { + return (0, Pr.v)(e); + }), + i = a[o], + s = + a[t] || + (null == i + ? void 0 + : i.replies.find(function (e) { + return e.id === t; + })); + return V().createElement("div", { className: I.default.subview }, V().createElement(os, { editingComment: s, focusIfTextPresent: n, onSubmit: r, parentComment: i })); + }; + (as.defaultProps = { onSubmit: function () {} }), (as.propTypes = { editingCommentId: G().string, focusIfTextPresent: G().bool, onSubmit: G().func, parentCommentId: G().string }); + const is = as, + ss = function (e) { + var t = e.onBack, + n = void 0 === t ? function () {} : t, + r = (0, Fa.Z)().filteredCommentCount, + o = xa(), + a = o.isFilterApplied, + i = o.onFilterClear, + s = V().createElement("div", { className: O.default.title }, V().createElement(Ti, { size: "S" }), V().createElement(ee.Z, { id: "comments.mobile.header.title.filter" }), a && " (".concat(r, ")")); + return V().createElement(Pi, { onBack: n, title: s }, V().createElement(ge, { className: O.default.clearButton, onClick: i, quiet: !0 }, V().createElement(ee.Z, { id: "comments.filter.clear" }))); + }, + cs = function () { + var e = (0, Ne.Z)().formatMessage, + t = (0, z.useContext)(re.ZP), + n = t.enableReadUnread, + r = t.environment, + o = t.touchControls, + a = xa(), + i = a.filterOptions, + s = a.onFilterChange, + c = a.selectedFilters, + l = (0, z.useCallback)( + function (e) { + return s("user", e); + }, + [s] + ), + u = (0, z.useCallback)( + function (e) { + return s("time", e); + }, + [s] + ), + d = (0, z.useCallback)( + function () { + return s("status"); + }, + [s] + ), + p = (0, z.useCallback)( + function () { + return s("unread"); + }, + [s] + ); + return V().createElement( + "div", + { className: F.default.component }, + V().createElement( + "div", + { className: F.default.filterGroup }, + V().createElement(Li, { className: F.default.header, id: "ccx-comments-filter--reviewer", variant: "subtitle2" }, V().createElement(ee.Z, { id: "comments.filter.reviewers" })), + V().createElement( + "div", + { className: "filter-group-content filter-group-content--names" }, + V().createElement( + Ir, + { "aria-labelledby": "ccx-comments-filter--reviewer", "data-testid": "filter-users-group", multiple: !0, onChange: l, selects: "multiple", style: { flexWrap: "wrap" }, value: c.user }, + i.users.map(function (e) { + return o + ? V().createElement(ge, { key: e.id, style: { maxWidth: "100%", margin: "0 var(--ccx-comments-margin-sm) var(--ccx-comments-margin-sm) 0" }, value: e.id, variant: "action" }, e.name) + : V().createElement( + _t, + { key: e.id, placement: "top", style: { maxWidth: "100%", margin: "0 var(--ccx-comments-margin-sm) var(--ccx-comments-margin-sm) 0" }, trigger: "hover", value: e.id }, + V().createElement(ge, { key: e.id, style: { maxWidth: "100%" }, value: e.id, variant: "action" }, e.name), + V().createElement(Ln, { placement: "bottom" }, V().createElement(Un, { environment: r, user: e })) + ); + }) + ) + ) + ), + V().createElement( + "div", + { className: F.default.filterGroup }, + V().createElement(Li, { className: F.default.header, id: "ccx-comments-filter--time", variant: "subtitle2" }, V().createElement(ee.Z, { id: "comments.filter.time" })), + V().createElement( + "div", + { className: "filter-group-content filter-group-content--names" }, + V().createElement( + Ir, + { "aria-labelledby": "ccx-comments-filter--time", "data-testid": "filter-time-group", multiple: !0, onChange: u, style: { display: "block" }, value: c.time }, + i.time.map(function (t) { + return V().createElement( + ge, + { key: t, "aria-label": e({ id: "comments.arialabel.button.filter.".concat(t) }), style: { margin: "0 var(--ccx-comments-margin-sm) var(--ccx-comments-margin-sm) 0", maxWidth: "100%" }, value: t, variant: "action" }, + V().createElement(ee.Z, { id: "comments.filter.".concat(t) }) + ); + }) + ) + ) + ), + V().createElement( + "div", + { className: F.default.filterGroup }, + V().createElement(Li, { className: F.default.header, variant: "subtitle2" }, V().createElement(ee.Z, { id: "comments.filter.status" })), + V().createElement( + "div", + { className: "filter-group-content filter-group-content--names" }, + V().createElement( + ge, + { + "aria-label": e({ id: "comments.arialabel.button.filter.".concat(i.status) }), + "aria-pressed": c.status, + className: F.default.filterButton, + "data-testid": "filter-".concat(i.status, "-button"), + onClick: d, + selected: c.status, + variant: "action", + }, + V().createElement(ee.Z, { id: "comments.filter.".concat(i.status) }) + ) + ) + ), + n && + V().createElement( + "div", + { className: F.default.filterGroup }, + V().createElement(Li, { className: F.default.header, variant: "subtitle2" }, V().createElement(ee.Z, { id: "comments.filter.unread.header" })), + V().createElement( + "div", + { className: "filter-group-content filter-group-content--names" }, + V().createElement( + ge, + { + "aria-label": e({ id: "comments.arialabel.button.filter.".concat(i.unread) }), + "aria-pressed": c.unread, + className: F.default.filterButton, + "data-testid": "filter-".concat(i.unread, "-button"), + onClick: p, + selected: c.unread, + variant: "action", + }, + V().createElement(ee.Z, { id: "comments.filter.".concat(i.unread) }) + ) + ) + ) + ); + }, + ls = function () { + return V().createElement("div", { className: I.default.subview }, V().createElement("div", { className: I.default.filter }, V().createElement(cs, null))); + }; + function us(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function ds(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? us(Object(n), !0).forEach(function (t) { + ps(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : us(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function ps(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + function fs(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var ms = function (e) { + var t, + n, + r, + o = e.focusIfTextPresent, + a = e.parentComment, + i = ar(), + s = i.isFullscreen, + c = i.setIsFullscreen, + l = i.mentionListShown, + u = (0, z.useRef)(), + d = + ((n = (0, z.useState)(!1)), + (r = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(n) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(n, r) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return fs(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? fs(e, t) : void 0; + } + })(n, r) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + p = d[0], + f = d[1], + m = (0, z.useMemo)( + function () { + var e; + return null == a || null === (e = a.replies) || void 0 === e + ? void 0 + : e.reduce(function (e, t) { + return (e[t.id] = V().createRef()), e; + }, {}); + }, + [a] + ), + h = (0, z.useCallback)( + function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : { behavior: "smooth", block: "center" }, + n = m[e]; + n && n.current && (0, Ae.Z)(n.current, ds(ds({}, t), {}, { scrollMode: "if-needed" })); + }, + [m] + ), + v = (0, z.useCallback)( + function () { + c(!1), f(!1); + }, + [c, f] + ); + return a + ? V().createElement( + "div", + { className: I.default.subview }, + !l && + V().createElement( + Oe, + null, + V().createElement( + "ul", + { className: X()(I.default.replyThread, ps({}, I.default.hidden, s)) }, + V().createElement(_o, { ref: u, comment: a, hideFooter: !0 }), + V().createElement( + "ul", + { className: I.default.replies }, + null === (t = a.replies) || void 0 === t + ? void 0 + : t.map(function (e) { + return V().createElement(_o, { comment: e, key: e.id, onScrollToComment: h, parentCommentId: a.id, ref: m[e.id] }); + }) + ) + ) + ), + "resolved" !== a.status && + V().createElement(os, { + focusIfTextPresent: o, + hideTools: !p, + onFocus: function () { + return f(!0); + }, + onSubmit: v, + parentComment: a, + placeholder: "comments.item.reply_placeholder", + }) + ) + : null; + }; + ms.propTypes = { focusIfTextPresent: G().bool, parentComment: G().object }; + const hs = ms; + var vs = ["guestLoginToast", "landscape", "showResolvedComments"]; + function ys() { + return ( + (ys = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + ys.apply(this, arguments) + ); + } + function gs(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var bs = function (e) { + var t, + n, + r, + o = e.guestLoginToast, + a = e.landscape, + i = e.showResolvedComments, + s = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = {}, + a = Object.keys(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (o[n] = e[n]); + return o; + })(e, t); + if (Object.getOwnPropertySymbols) { + var a = Object.getOwnPropertySymbols(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (Object.prototype.propertyIsEnumerable.call(e, n) && (o[n] = e[n])); + } + return o; + })(e, vs), + c = (0, Ve.I0)(), + l = (0, Ne.Z)().formatMessage, + u = ar(), + d = u.mentionListShown, + p = u.popSubview, + f = u.pushSubview, + m = u.setIsFullscreen, + h = u.subview, + v = u.trayHandleRef, + y = (0, Fa.Z)().comments, + g = + ((n = (0, z.useState)("")), + (r = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(n) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(n, r) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return gs(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? gs(e, t) : void 0; + } + })(n, r) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + b = g[0], + E = g[1], + D = (0, z.useContext)(re.ZP).assetData, + C = D.id, + w = D.nodeId, + S = D.validNodes, + A = (0, Ve.v9)(function (e) { + var t = e["".concat(An.Bq, ":mobile")].expanded; + return !(0 !== y.length || t || s.hasError || s.isLoading || s.isOffline || a); + }), + k = (0, Ve.v9)(function (e) { + return (0, Pr._X)(e, C); + }), + _ = k.mobileEditingCommentId, + T = k.parentCommentId, + I = (0, Ve.v9)(function (e) { + return (0, Pr.v)(e)[T]; + }), + O = (0, Hn.Z)(h) !== h; + (0, z.useEffect)( + function () { + if (h === An.p8.COMMENT) { + var e, + t = S.find(function (e) { + return e.id === w; + }); + E(null !== (e = null == t ? void 0 : t.title) && void 0 !== e ? e : ""); + } + }, + [w, h, S] + ); + var F = (0, sr.Z)(), + N = F.isPlacingAnnotation, + R = F.setShowDraftAnnotations, + L = (0, z.useCallback)( + function () { + h === An.p8.REPLY && c((0, oe.nx)(C)), h === An.p8.EDIT && c((0, oe.Xq)(C)), m(!1), p(); + }, + [C, c, p, m, h] + ), + M = (0, z.useCallback)( + function () { + L(), R(!1), N && c((0, ae.V0)(!1)); + }, + [c, N, L, R] + ), + P = (0, z.useCallback)( + function () { + f(An.p8.FILTER); + }, + [f] + ), + j = (0, z.useCallback)( + function () { + c((0, ce.K8)()), R(!0), f(An.p8.COMMENT); + }, + [c, f, R] + ); + (0, z.useEffect)( + function () { + _ ? f(An.p8.EDIT) : T && h !== An.p8.REPLY ? f(An.p8.REPLY) : T || h !== An.p8.REPLY ? f(null) : M(); + }, + [_, M, T, f, h] + ), + (0, z.useEffect)( + function () { + "error" === (null == o ? void 0 : o.toastType) && M(); + }, + [o] + ); + var B, + Z, + U, + H, + G = !h && V().createElement(Xi, { onFilterClick: P }); + switch (h) { + case An.p8.FILTER: + (G = V().createElement(ss, { onBack: M })), (B = V().createElement(ls, null)); + break; + case An.p8.COMMENT: + G = V().createElement(Pi, { onBack: M, pageTitle: b, title: l({ id: "comments.sections.newCommentMobile" }) }); + break; + case An.p8.EDIT: + (G = V().createElement(Pi, { onBack: M, title: l({ id: "comments.item.edit" }) })), (B = V().createElement(is, { editingCommentId: _, focusIfTextPresent: O, onSubmit: L, parentCommentId: _ !== T ? T : void 0 })); + break; + case An.p8.REPLY: + (G = V().createElement(Pi, { onBack: M, title: l({ id: "comments.mobile.header.title.reply" }, { count: null == I || null === (t = I.replies) || void 0 === t ? void 0 : t.length }) })), + (B = V().createElement(hs, { focusIfTextPresent: O, parentComment: I })); + break; + default: + G = V().createElement(Xi, { onFilterClick: P }); + } + return V().createElement( + "div", + { className: x.default.component }, + V().createElement("div", { ref: v }, !d && G), + B, + V().createElement( + "div", + { className: X()(x.default.mainView, ((Z = {}), (U = x.default.hidden), (H = !!h), U in Z ? Object.defineProperty(Z, U, { value: H, enumerable: !0, configurable: !0, writable: !0 }) : (Z[U] = H), Z)) }, + !A && V().createElement(ti, ys({ guestLoginToast: o }, s)) + ), + !i && (!h || h === An.p8.COMMENT) && V().createElement(os, { focusIfTextPresent: !1, hideTools: !h, onFocus: j, onSubmit: L }) + ); + }; + bs.propTypes = { + clearLastResolved: G().func, + guestLoginToast: G().object, + hasError: G().bool, + landscape: G().bool, + lastResolvedCommentData: G().shape({ assetId: G().string, commentId: G().string, newStatus: G().string }), + onShare: G().func, + onToastClose: G().func, + selectedAnnotationId: G().string, + showResolvedComments: G().bool, + undoLastResolvedAction: G().func, + }; + const Es = bs; + function Ds(e) { + var t = e.commentProposedForDelete, + n = void 0 === t ? {} : t, + r = e.onCancel, + o = e.onDelete, + a = n.parentCommentId, + i = !!n.parentCommentId, + s = (0, Ke.Z)(), + c = (0, z.useRef)(); + return ( + (0, z.useEffect)(function () { + c.current.focus(), s.fireEvent({ event: { context_guid: a, subcategory: a ? "delete-reply" : "delete-comment", subtype: "overlay", type: "render" } }); + }, []), + V().createElement( + "div", + { + role: "dialog", + "aria-labelledby": "delete-dialog-heading", + "aria-describedby": "delete-dialog-message", + ref: c, + className: N.default.component, + id: "comment-delete-view", + onKeyDown: function (e) { + switch (e.key) { + case "Esc": + case "Escape": + r(); + break; + case "Tab": + Fe(c.current, e); + } + }, + tabIndex: "0", + }, + V().createElement( + "div", + { className: "delete-background" }, + V().createElement( + "div", + { className: "delete-wrapper" }, + V().createElement("h2", { id: "delete-dialog-heading", className: "delete-header" }, V().createElement(ee.Z, { id: i ? "comments.delete.header_reply" : "comments.delete.header_comment" })), + V().createElement("p", { id: "delete-dialog-message", className: "delete-message" }, V().createElement(ee.Z, { id: i ? "comments.delete.message_reply" : "comments.delete.message_comment" })), + V().createElement( + "div", + { className: "button-wrapper" }, + V().createElement( + ge, + { + variant: "secondary", + onClick: function () { + s.fireEvent({ event: { context_guid: a, subcategory: a ? "delete-reply" : "delete-comment", subtype: "cancel", type: "click" } }), r(); + }, + }, + V().createElement(ee.Z, { id: "comments.delete.cancel" }) + ), + V().createElement( + ge, + { + onClick: function () { + s.fireEvent({ event: { context_guid: a, subcategory: a ? "delete-reply" : "delete-comment", subtype: "confirm-delete", type: "click" } }), o(); + }, + style: { marginLeft: "var(--spectrum-global-dimension-size-200, 16px)" }, + treatment: "fill", + variant: "warning", + }, + V().createElement(ee.Z, { id: "comments.delete.confirm_delete" }) + ) + ) + ) + ) + ) + ); + } + (Ds.defaultProps = { onCancel: function () {}, onDelete: function () {} }), + (Ds.propTypes = { assetData: G().shape({ id: G().string, ownerId: G().string }), ccxIngest: G().object, commentProposedForDelete: G().object, onCancel: G().func, onDelete: G().func }); + const Cs = Ds; + var ws = n(67961); + const Ss = (0, pe.Z)(n(42115)).default, + As = (0, ue.Z)({ + displayName: "FieldLabel", + fallback: Ss, + swcLoader: void 0, + SWCWrapper: function (e) { + const { className: t, label: n, necessity: r, position: o, labelFor: a, children: i } = e, + s = (function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + })(e, ["className", "label", "necessity", "position", "labelFor", "children"]), + c = "required" === r, + l = "left" === o ? "start" : "right" === o ? "end" : void 0, + u = Object.assign(Object.assign(Object.assign({}, s), (0, de.cd)({ required: c })), { "side-aligned": l, children: n, class: t, for: a }), + d = (0, de.Co)("sp-field-label"); + return V().createElement(V().Fragment, null, V().createElement(d, Object.assign({}, u)), i); + }, + tagName: "sp-field-label", + }); + var ks = function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + }; + const _s = (0, pe.Z)(n(46081)).default, + Ts = (0, ue.Z)({ + displayName: "Select", + fallback: (0, z.forwardRef)(function (e, t) { + const { children: n } = e, + r = ks(e, ["children"]); + return _s + ? V().createElement( + _s, + Object.assign(Object.assign({}, r), { ref: t }), + V().Children.map(n, (e) => (V().isValidElement(e) ? V().cloneElement(e, { forceFallback: !0 }) : e)) + ) + : null; + }), + swcLoader: void 0, + SWCWrapper: function (e) { + const t = (0, z.useRef)(null), + { defaultValue: n, className: r, value: o, quiet: a, disabled: i, placeholder: s, placement: c, invalid: l, options: u, alignRight: d, flexible: p, menuClassName: f, onChange: m, onClose: h, onOpen: v, renderItem: y } = e, + g = ks(e, ["defaultValue", "className", "value", "quiet", "disabled", "placeholder", "placement", "invalid", "options", "alignRight", "flexible", "menuClassName", "onChange", "onClose", "onOpen", "renderItem"]); + (0, z.useEffect)(() => { + const e = t.current, + n = (e) => { + const t = e.target; + m && m(t.value); + }; + return ( + e && m && e.addEventListener("change", n), + () => { + e && m && e.removeEventListener("change", n); + } + ); + }, [m]), + (0, z.useEffect)(() => { + const e = t.current, + n = (e) => { + h && h(e); + }; + return ( + e && h && e.addEventListener("sp-closed", n), + () => { + e && h && e.removeEventListener("sp-closed", n); + } + ); + }, [h]), + (0, z.useEffect)(() => { + const e = t.current, + n = (e) => { + v && v(e); + }; + return ( + e && v && e.addEventListener("sp-opened", n), + () => { + e && v && e.removeEventListener("sp-opened", n); + } + ); + }, [v]); + const b = Object.assign({ label: s, value: n || o, placement: d ? "bottom-end" : c }, g), + E = (0, de.cd)({ invalid: l, disabled: i, quiet: a }), + D = + u && + u.map((e, t) => + "divider" === e ? V().createElement(qt, { key: `divider-${t}` }) : V().createElement(Yt, { description: e.description, icon: e.icon, key: e.value, value: e.value, valueContent: e.valueContent }, y ? y(e) : e.label) + ), + C = (0, de.Co)("sp-picker"); + return V().createElement(C, Object.assign(Object.assign({ ref: t, class: r }, b), E), D); + }, + tagName: "sp-picker", + }), + Is = (0, pe.Z)(n(56805)).default, + Os = (0, ue.Z)({ displayName: "Share", fallback: Is, swcLoader: void 0, swcProps: Ot.m, tagName: "sp-icon-share" }); + var Fs = n(43235), + xs = n.n(Fs); + function Ns(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function Rs(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? Ns(Object(n), !0).forEach(function (t) { + Ls(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : Ns(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function Ls(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var Ms = function (e) { + var t = e.onShare, + n = e.onCopy, + r = (0, Ne.Z)().formatMessage, + o = (0, Ke.Z)(), + a = (0, z.useContext)(re.ZP), + i = a.assetData, + s = a.enableFrameS4R, + c = a.enableReadUnread, + l = a.environment, + u = a.isOffline, + d = a.multipleAssets, + p = a.s4rEnabled, + f = a.spectrumUIScale, + m = a.theme, + h = (0, z.useContext)(tt.ZP).onUrlOpen, + v = d || {}, + y = v.assets, + g = v.selectedId, + b = v.setAsset, + E = null == y ? void 0 : y.length, + D = (0, Hn.Z)(E), + C = (0, ln.UP)(), + w = (0, $e.Z)().hasUnreadComments, + S = (0, z.useCallback)( + function (e) { + var t, + n = y.find(function (t) { + return t.id === e; + }); + (t = s && n.isFrameArtifact ? "Frame.io Review" : n.isArtifact ? "Artifact Review" : "Cloud Doc Review"), + b(e), + o.fireEvent(xs()({}, { event: Rs(Rs({}, o.events.multipleAssetsDropdownChange.event), {}, { value: w(n.id) ? "has-unread" : void 0 }), content: { category: t } })); + }, + [y, o, s, w, b] + ), + A = (0, z.useCallback)( + function (e) { + var t = e.target.href; + e.preventDefault(), h ? h(t) : window.open(t, "_blank"), o.fireEvent(o.events.clickAssetUrl); + }, + [o, h] + ); + (0, z.useEffect)( + function () { + E && E !== D && o.fireEvent(o.events.multipleAssetsDropdownRender); + }, + [E, o] + ); + var k, + _, + T = function () { + if (!i.id) return null; + var e = s && i.isFrameArtifact ? i.shortUrl : (0, ws.getTargetUrl)({ assetId: i.id, environment: l, isArtifact: "artifact" === i.reviewType, mimeType: i.mimeType, useProductViewUrl: i.useProductViewUrl }), + o = r({ id: "comments.arialabel.button.shareAsset" }), + a = r({ id: "comments.arialabel.button.copyShareLink" }); + return V().createElement( + "div", + { className: "url-copy-and-share-wrapper" }, + V().createElement( + "div", + { className: "url-container" }, + V().createElement("div", { className: "link-wrapper" }, V().createElement(wt, { className: "asset-link", href: e, target: "_blank", onClick: A, "data-testid": "asset-link" }, e)) + ), + V().createElement(Kn, { + className: "url-copy-button", + "data-testid": "url-copy-button", + label: a, + variant: "action", + onClick: function () { + return n(e); + }, + "aria-label": a, + tooltip: a, + }), + V().createElement(Kn, { + className: "asset-share-button", + "data-testid": "asset-share-button", + variant: "action", + icon: V().createElement(Os, null), + quiet: !0, + onClick: function () { + return t("header"); + }, + "aria-label": o, + tooltip: o, + }) + ); + }; + return ( + (k = s && i.isFrameArtifact ? "comments.multipleAssetsDropdown.frameReviewLabel" : "cloudDoc" === i.reviewType ? "comments.multipleAssetsDropdown.sourceLabel" : "comments.multipleAssetsDropdown.reviewLabel"), + (_ = p + ? null != y && y.length + ? V().createElement( + V().Fragment, + null, + V().createElement( + "div", + { className: "dropdown-wrapper" }, + V().createElement( + As, + { label: r({ id: "comments.multipleAssetsDropdown.dropdownLabel" }) }, + V().createElement(Ts, { + id: "multiple-asset-dropdown", + "data-testid": "multiple-asset-dropdown", + onChange: S, + onOpen: function () { + return C.completeCurrent({ dismissType: "blur" }); + }, + options: y.map(function (e) { + var t; + return ( + (t = + s && e.isFrameArtifact + ? r({ id: "comments.multipleAssetsDropdown.frameReviewLabel" }) + : e.isArtifact + ? r({ id: "comments.multipleAssetsDropdown.reviewLabel" }) + : r({ id: "comments.multipleAssetsDropdown.sourceLabel" })), + { label: e.name, value: e.id, subLabel: t, hasUnread: !!c && w(e.id) && e.id !== g } + ); + }), + style: { width: "100%" }, + renderItem: function (e) { + var t = e.label, + n = e.subLabel, + r = e.hasUnread; + return V().createElement( + "div", + { className: "".concat(R.default.dropdownItem, " ").concat(f, "-scale ").concat(m, "-theme"), "data-testid": "multiple-asset-dropdown-item" }, + V().createElement("div", { className: "asset-details" }, V().createElement("div", null, t), V().createElement("div", { className: "asset-type" }, n)), + r && V().createElement("span", { className: "unread-container" }, V().createElement(ro, { isOffline: u })) + ); + }, + value: g, + }) + ), + V().createElement(T, null) + ), + V().createElement(fn, null) + ) + : i.id && i.name + ? V().createElement( + V().Fragment, + null, + V().createElement( + "div", + { className: "header-wrapper", "data-testid": "asset-name-header" }, + V().createElement("div", { className: "header-title" }, i.name), + V().createElement("div", { className: "header-subtitle" }, V().createElement(ee.Z, { id: k })), + V().createElement(T, null) + ), + V().createElement(fn, null) + ) + : null + : null), + V().createElement("div", { className: R.default.component }, V().createElement(ln.Py, { name: "multipleConversations", selector: "#multiple-asset-dropdown .spectrum-Dropdown-icon", placement: "bottom right" }), _) + ); + }; + (Ms.defaultProps = {}), (Ms.propTypes = { onShare: G().func, onCopy: G().func }); + const Ps = Ms; + function js(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var Bs = function () { + return V().createElement( + "svg", + { xmlns: "http://www.w3.org/2000/svg", width: "58", height: "99", viewBox: "0 0 37.943 66.219", className: "ccx-share-illustration" }, + V().createElement( + "g", + { id: "Group_68966", "data-name": "Group 68966", transform: "translate(1.5 1.5)" }, + V().createElement( + "g", + { id: "Group_18", "data-name": "Group 18" }, + V().createElement("path", { + id: "Path_33", + "data-name": "Path 33", + d: + "M1118.438-2655.353a4.909,4.909,0,0,1,.374-2.569,8.872,8.872,0,0,1,1.4-2.127,5.386,5.386,0,0,0,1.218-3.815c-.048-.694-.948-5.764-.99-6.268a3.932,3.932,0,0,1,.365-2.557,2.333,2.333,0,0,1,.71-.628,1.365,1.365,0,0,1,2.1.837c.893,3.053,2.5,8.429,3.15,11.544a23.979,23.979,0,0,1,.514,3.412c.263,4.271-1.362,8.417-1.856,12.668l.121,2.7", + transform: "translate(-1101.709 2705.306)", + fill: "none", + stroke: "#909090", + strokeLinecap: "round", + strokeLinejoin: "round", + strokeWidth: "3", + }), + V().createElement("path", { + id: "Path_34", + "data-name": "Path 34", + d: "M1108.448-2632.69c-.139-4.117-.653-3.5-1.834-5.785-.522-1.009-1.152-1.982-1.646-3a7.484,7.484,0,0,1-.74-3.267l.5-6.247", + transform: "translate(-1095.399 2695.838)", + fill: "none", + stroke: "#909090", + strokeLinecap: "round", + strokeLinejoin: "round", + strokeWidth: "3", + }), + V().createElement("path", { + id: "Path_35", + "data-name": "Path 35", + d: "M1105.972-2688.688h-13.4a4.048,4.048,0,0,1-4.075-4.02v-34.772a4.047,4.047,0,0,1,4.075-4.02h20.287a4.512,4.512,0,0,1,3.174,1.3l6.1,6.032a4.392,4.392,0,0,1,1.309,3.123v28.337a4.048,4.048,0,0,1-4.075,4.02h-3.252", + transform: "translate(-1088.5 2731.5)", + fill: "none", + stroke: "#909090", + strokeLinecap: "round", + strokeLinejoin: "round", + strokeWidth: "3", + }), + V().createElement("line", { id: "Line_39", "data-name": "Line 39", x2: "21.471", transform: "translate(6.197 30.716)", fill: "none", stroke: "#909090", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), + V().createElement("line", { id: "Line_40", "data-name": "Line 40", x2: "10.445", transform: "translate(6.403 35.225)", fill: "none", stroke: "#909090", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), + V().createElement("line", { id: "Line_41", "data-name": "Line 41", x2: "2.321", transform: "translate(25.029 35.225)", fill: "none", stroke: "#909090", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }) + ) + ) + ); + }; + const Zs = function () { + var e, t, n; + return ( + ((t = (0, z.useState)(!1)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return js(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? js(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })())[1], + (0, z.useEffect)(function () {}, []), + null !== (e = window.customElements) && void 0 !== e && e.get("ccx-comments-icon-share-illustration") ? V().createElement("ccx-comments-icon-share-illustration", null) : V().createElement(Bs, null) + ); + }; + function Us(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var zs = function () { + return V().createElement( + "svg", + { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 118 78", height: "79", width: "120" }, + V().createElement( + "g", + null, + V().createElement( + "g", + null, + V().createElement( + "g", + null, + V().createElement( + "g", + null, + V().createElement("path", { + d: + "M81.67285,64.7002l-13.125-.001a1,1,0,0,1,0-2h0l13.125.001c3.90527,0,11.291-2.40918,11.291-11.5254,0-7.041-4.70508-11.875-12.28028-12.61523a.99979.99979,0,0,1-.88281-1.19238,13.22089,13.22089,0,0,0-2.45215-10.35694,1.00015,1.00015,0,0,1,1.61328-1.18261,15.362,15.362,0,0,1,2.97071,10.87158c7.9541,1.188,13.03125,6.77441,13.03125,14.47558C94.96387,61.09863,87.01562,64.7002,81.67285,64.7002Z", + }), + V().createElement("path", { + d: + "M50.36133,64.69922h0l-17.46094-.001c-6.77734,0-9.86426-4.76269-9.86426-9.1875a10.19482,10.19482,0,0,1,3.3291-6.97851,8.78238,8.78238,0,0,1,5.043-2.39258C30.169,40.49414,33.60645,34.49121,39.709,32.04053a1.00038,1.00038,0,0,1,.7461,1.85644c-5.57813,2.23926-8.55957,7.897-6.78809,12.8794a1.00034,1.00034,0,0,1-1.01269,1.332,6.61077,6.61077,0,0,0-4.92481,1.88672,8.23622,8.23622,0,0,0-2.69336,5.51562c0,2.66992,1.65625,7.1875,7.86426,7.1875l17.46094.001a1,1,0,1,1,0,2Z", + }) + ) + ), + V().createElement( + "g", + null, + V().createElement("path", { d: "M59.32227,74.68555a.99942.99942,0,0,1-1-1V47.88867a1,1,0,1,1,2,0V73.68555A.99943.99943,0,0,1,59.32227,74.68555Z" }), + V().createElement("path", { + d: "M52.377,55.37891a1,1,0,0,1-.706-1.708l6.46777-6.44531a1.68042,1.68042,0,0,1,2.36914,0L66.97363,53.669a.99989.99989,0,1,1-1.41211,1.416l-6.23828-6.2168L53.083,55.08691A.99926.99926,0,0,1,52.377,55.37891Z", + }) + ), + V().createElement("path", { d: "M67.54785,34.72119H51.36133a.75.75,0,0,1,0-1.5H67.54785a.75.75,0,0,1,0,1.5Z" }), + V().createElement("path", { d: "M67.54785,29.09131H51.36133a.75.75,0,0,1,0-1.5H67.54785a.75.75,0,0,1,0,1.5Z" }), + V().createElement("path", { + d: + "M70.01953,41.08105H48.83105a3.93876,3.93876,0,0,1-3.94238-3.92626V8.97119a3.93866,3.93866,0,0,1,3.94238-3.92578H65.02539a3.97265,3.97265,0,0,1,2.79,1.15283l4.99414,4.98194a3.89031,3.89031,0,0,1,1.15234,2.77294V37.15479A3.93875,3.93875,0,0,1,70.01953,41.08105ZM48.83105,7.04541a1.93608,1.93608,0,0,0-1.94238,1.92578v28.1836a1.93649,1.93649,0,0,0,1.94238,1.92626H70.01953a1.93648,1.93648,0,0,0,1.94238-1.92626V13.95312a1.90415,1.90415,0,0,0-.56445-1.35693L66.40332,7.61377a1.96388,1.96388,0,0,0-1.37793-.56836Z", + }) + ) + ) + ); + }; + const Vs = function () { + var e, t, n; + return ( + ((t = (0, z.useState)(!1)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return Us(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Us(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })())[1], + (0, z.useEffect)(function () {}, []), + null !== (e = window.customElements) && void 0 !== e && e.get("ccx-comments-icon-unsaved-illustration") ? V().createElement("ccx-comments-icon-unsaved-illustration", null) : V().createElement(zs, null) + ); + }; + var Hs = function (e) { + var t, + n, + r, + o, + a, + i, + s = e.documentState, + c = e.isDocumentSupported, + l = e.isOffline, + u = e.onShare, + d = e.onCloudSave, + p = e.onCreateReviewLink, + f = e.reviewType, + m = (0, z.useContext)(re.ZP), + h = m.s4rEnabled, + v = m.cloudDocSupported, + y = (0, z.useCallback)( + function () { + u(); + }, + [u] + ); + if ("noDocument" === s) return V().createElement(Vo, { testId: "no-documents-active" }); + if ("documentLoading" === s) return V().createElement(Vo, { testId: "no-documents-active" }, V().createElement(ka, { testId: "loading" }, V().createElement(ee.Z, { id: "comments.list.loading" }))); + var g = !!u, + b = y; + return ( + c + ? h + ? ((t = "comments.asset-empty-state.s4r.artifact.share-title"), + (n = "comments.asset-empty-state.s4r.artifact.share-subtitle"), + (r = "comments.asset-empty-state.s4r.artifact.share"), + (o = V().createElement(Wo, null)), + (a = "cta"), + (i = "empty-state-s4r-unpublished-artifact"), + (b = p)) + : "cloudDoc" === f + ? ((t = "comments.asset-empty-state.cloud-doc.save-title"), + (n = "comments.asset-empty-state.cloud-doc.save-subtitle"), + (r = "comments.asset-empty-state.cloud-doc.save"), + (o = V().createElement(Vs, null)), + (a = "primary"), + (i = "empty-state-unsaved-cloud")) + : ((t = "comments.asset-empty-state.artifact.share-title"), + (n = "comments.asset-empty-state.artifact.share-subtitle"), + (r = "comments.asset-empty-state.artifact.share"), + (o = V().createElement(Zs, null)), + (a = "cta"), + (i = "empty-state-unpublished-artifact")) + : ((t = "comments.asset-empty-state.unsupported.title"), (o = V().createElement(Ea, null)), (i = "unsupported-document"), (g = !1)), + V().createElement( + Vo, + { testId: i }, + V().createElement(Vo.Illustration, null, o), + t ? V().createElement(Vo.Title, null, V().createElement(ee.Z, { id: t })) : null, + n ? V().createElement(Vo.Subtitle, null, V().createElement(ee.Z, { id: n })) : null, + g && V().createElement(ge, { className: L.default.commentsShareForReviewBtn, "data-testid": "empty-state-cta", disabled: l, variant: a, onClick: b }, r ? V().createElement(ee.Z, { id: r }) : null), + h && + v && + V().createElement( + "div", + { className: L.default.saveToCloudWrapper }, + V().createElement(fn, null), + V().createElement("div", { className: L.default.alternateActionSubtitle }, V().createElement(ee.Z, { id: "comments.asset-empty-state.s4r.artifact.share-alternate-action-subtitle" })), + V().createElement( + ge, + { className: L.default.alternateActionButton, "data-testid": "empty-state-cta-cloud-save", disabled: l, variant: "primary", onClick: d }, + V().createElement(ee.Z, { id: "comments.asset-empty-state.cloud-doc.save-title" }) + ) + ), + V().createElement("div", { className: L.default.toastContainer }, V().createElement(Ha, { isOffline: l })) + ) + ); + }; + (Hs.defaultProps = { documentState: "documentOpen", isDocumentSupported: !0, onShare: void 0, onCloudSave: function () {}, onCreateReviewLink: function () {}, reviewType: "artifact" }), + (Hs.propTypes = { + documentState: G().oneOf(["documentOpen", "noDocument", "documentLoading"]), + isDocumentSupported: G().bool, + isOffline: G().bool, + onShare: G().func, + onCloudSave: G().func, + onCreateReviewLink: G().func, + reviewType: G().oneOf(["artifact", "cloudDoc"]), + }); + const Gs = Hs; + var Ws; + function Qs(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var Js = + (Qs((Ws = {}), An.Ov.ERROR, "comments.error.load"), + Qs(Ws, An.Al.ERROR, "comments.error.edit"), + Qs(Ws, An.Tf.ERROR, "comments.error.edit"), + Qs(Ws, An.b$.ERROR, "comments.error.edit"), + Qs(Ws, An.xH.ERROR, "comments.error.edit"), + Qs(Ws, "".concat(An.eE.ERROR, "_ROOT"), "comments.error.post"), + Qs(Ws, "".concat(An.fj.ERROR, "_REPLY"), "comments.error.reply"), + Qs(Ws, "".concat(An.eE.ERROR, "_MAX_COMMENTS"), { artifact: "comments.error.post.max.comments.artifact", cloudDoc: "comments.error.post.max.comments.cloudDoc" }), + Ws), + Ys = function (e) { + var t = e.onClose, + n = e.errorLocation, + r = e.errorType, + o = e.reviewType, + a = (0, z.useCallback)( + function () { + t(n); + }, + [t, n] + ); + if ("list" === n || !Js[r]) return null; + var i, + s = Js[r]; + return ( + (i = r === "".concat(An.eE.ERROR, "_MAX_COMMENTS") ? ("artifact" === o ? s.artifact : s.cloudDoc) : s), + V().createElement(Ee, { className: "comments-error", closable: !0, onClose: a, variant: "error" }, V().createElement(ee.Z, { id: i })) + ); + }; + (Ys.defaultProps = { onClose: function () {} }), (Ys.propTypes = { children: G().node, errorLocation: G().string.isRequired, errorType: G().string.isRequired, onClose: G().func, reviewType: G().oneOf(["artifact", "cloudDoc"]) }); + const qs = Ys; + var Xs = function (e) { + var t = e.assetId, + n = e.errors, + r = void 0 === n ? {} : n, + o = e.reviewType, + a = (0, Ve.I0)(), + i = (0, z.useCallback)( + function (e) { + return a((0, oe.H6)(t, e)); + }, + [a, t] + ); + return V().createElement( + "div", + { className: M.default.component }, + Object.keys(r).map(function (e) { + return V().createElement(qs, { onClose: i, errorLocation: e, errorType: r[e], key: e, reviewType: o }); + }) + ); + }; + Xs.propTypes = { assetId: G().string, errors: G().object, reviewType: G().oneOf(["artifact", "cloudDoc"]) }; + const Ks = Xs; + const $s = (0, pe.Z)(n(866)).default, + ec = (0, ue.Z)({ + displayName: "Switch", + fallback: $s, + swcLoader: void 0, + SWCWrapper: (e) => { + const t = (0, z.useRef)(null), + { renderLabel: n = !0, label: r, className: o, checked: a, defaultChecked: i, disabled: s, children: c, quiet: l, onChange: u } = e, + d = (function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + })(e, ["renderLabel", "label", "className", "checked", "defaultChecked", "disabled", "children", "quiet", "onChange"]); + (0, z.useEffect)(() => { + const e = t.current, + n = (e) => { + const t = e.target; + null == u || u(t.checked, e); + }; + return ( + e && u && e.addEventListener("change", n), + () => { + e && u && e.removeEventListener("change", n); + } + ); + }, [u]); + const p = (0, de.Co)("sp-switch"); + return V().createElement(p, Object.assign(Object.assign(Object.assign({}, d), (0, de.cd)({ checked: null != a ? a : i, disabled: s, emphasized: !l })), { class: o, ref: t }), n ? r : "", c); + }, + tagName: "sp-switch", + }); + var tc = function (e) { + var t = e.visible, + n = e.defaultChecked, + r = e.onToggle, + o = e.disable, + a = e.globalCommentsMode, + i = (0, Ke.Z)(), + s = (0, z.useCallback)( + function (e) { + r(e), a ? i.fireEvent(i.events.showNonGlobal) : i.fireEvent(i.events.showGlobal); + }, + [i, a, r] + ); + return t + ? V().createElement( + "div", + { className: "view-switch-wrapper" }, + V().createElement( + ec, + { defaultChecked: n, disabled: o, id: "ccx-comments-switch-view", onChange: s }, + V().createElement("label", { className: "switch-label", htmlFor: "ccx-comments-switch-view" }, V().createElement(ee.Z, { id: "comments.filter.all_screens" })) + ) + ) + : null; + }; + (tc.defaultProps = { disable: !1 }), (tc.propTypes = { defaultChecked: G().bool.isRequired, disable: G().bool, globalCommentsMode: G().bool.isRequired, onToggle: G().func.isRequired, visible: G().bool.isRequired }); + const nc = tc, + rc = (0, pe.Z)(n(95190)).default, + oc = (0, ue.Z)({ displayName: "CloudDisconnected", fallback: rc, swcLoader: void 0, swcProps: Ot.m, tagName: "sp-icon-cloud-disconnected" }), + ac = (0, pe.Z)(n(60922)).default, + ic = (0, ue.Z)({ displayName: "Cloud", fallback: ac, swcLoader: void 0, swcProps: Ot.m, tagName: "sp-icon-cloud" }), + sc = ({ className: e, isOffline: t, tooltipDirection: n, touchControls: r }) => { + const { formatMessage: o } = (0, Ne.Z)(); + let a, i; + t + ? ((a = V().createElement(oc, { className: "network-status-icon", size: "M" })), (i = "comments.network.status.offline")) + : ((a = V().createElement(ic, { className: "network-status-icon", size: "M" })), (i = "comments.network.status.online")); + const s = o({ id: i }), + c = o({ id: "comments.arialabel.button.networkIndicator" }), + l = o({ id: "comments.network.status." + (t ? "offline" : "online") }); + let u = V().createElement(ge, { "aria-disabled": !0, "aria-label": `${c} ${l}`, className: e, "data-test": "network-icon", icon: a, variant: "tool" }); + return r || (u = V().createElement(_t, { placement: "right" === n ? "right" : "left", trigger: "hover" }, u, V().createElement(It, { style: { alignItems: "stretch" } }, s))), u; + }; + (sc.defaultProps = { className: "", isOffline: !1, tooltipDirection: "right", touchControls: !1 }), + (sc.propTypes = { className: G().string, isOffline: G().bool, tooltipDirection: G().oneOf(["right", "left"]), touchControls: G().bool }); + const cc = sc; + function lc(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var uc = function (e, t) { + var n = e.showUnreadFilter, + r = e.environment, + o = e.filteredCommentsCount, + a = e.intl, + i = e.touchControls, + s = e.users, + c = e.onFilterChange, + l = e.onFilterClear, + u = e.selectedFilters, + d = (0, z.useCallback)( + function (e) { + return c("user", e); + }, + [c] + ), + p = (0, z.useCallback)( + function (e) { + return c("time", e); + }, + [c] + ), + f = (0, z.useCallback)( + function () { + return c("status"); + }, + [c] + ), + m = (0, z.useCallback)( + function () { + return c("unread"); + }, + [c] + ), + h = (0, z.useRef)(), + v = (0, z.useRef)(); + (0, z.useImperativeHandle)(t, function () { + return { firstReviewerBtn: h.current, filterContainer: v.current }; + }); + var y = (0, z.useMemo)( + function () { + return s.reduce(function (e, t) { + return e || (!t.email && t.affiliation === An.Kx && !t.name); + }, !1); + }, + [s] + ), + g = (0, z.useMemo)( + function () { + return (y + ? [].concat( + ((e = s), + (function (e) { + if (Array.isArray(e)) return lc(e); + })(e) || + (function (e) { + if (("undefined" != typeof Symbol && null != e[Symbol.iterator]) || null != e["@@iterator"]) return Array.from(e); + })(e) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return lc(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? lc(e, t) : void 0; + } + })(e) || + (function () { + throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + [{ name: a.formatMessage({ id: "comments.filter.guests" }), id: "guest-filter" }] + ) + : s + ).filter(function (e) { + return !!e.name; + }); + var e; + }, + [y, a, s] + ); + return V().createElement( + "div", + { className: "filters-wrapper", ref: v, style: { outline: "none" }, tabIndex: 0 }, + V().createElement( + "div", + { + style: { + paddingRight: "calc(var(--ccx-comments-margin-xxs) + var(--ccx-comments-margin-lg))", + maxHeight: "var(--ccx-comments-filter-panel-max-height)", + overflow: "hidden auto", + paddingBottom: "var(--ccx-comments-margin-xs)", + paddingLeft: "var(--ccx-comments-margin-xs)", + }, + }, + V().createElement( + "div", + { className: "filter-group" }, + V().createElement(Li, { className: "filter-group-header", id: "ccx-filter--reviewer", variant: "subtitle2" }, a.formatMessage({ id: "comments.filter.reviewers" })), + V().createElement( + "div", + { className: "filter-group-content filter-group-content--names" }, + V().createElement( + Ir, + { "aria-labelledby": "ccx-filter--reviewer", "data-testid": "filter-users-group", multiple: !0, onChange: d, selects: "multiple", style: { display: "flow-root" }, value: u.user }, + g.map(function (e, t) { + return i + ? e.name + : V().createElement( + _t, + { key: e.id, placement: "top", style: { maxWidth: "100%", margin: "0 var(--ccx-comments-margin-sm) var(--ccx-comments-margin-sm) 0" }, trigger: "hover", value: e.id }, + V().createElement(ge, { key: e.id, ref: 0 === t ? h : null, style: { maxWidth: "100%" }, value: e.id, variant: "action" }, e.name), + V().createElement(Ln, { placement: "bottom" }, V().createElement(Un, { environment: r, user: e })) + ); + }) + ) + ) + ), + V().createElement( + "div", + { className: "filter-group" }, + V().createElement(Li, { className: "filter-group-header", id: "ccx-filter--time", variant: "subtitle2" }, a.formatMessage({ id: "comments.filter.time" })), + V().createElement( + "div", + { className: "filter-group-content filter-group-content--names" }, + V().createElement( + Ir, + { "aria-labelledby": "ccx-filter--time", "data-testid": "filter-time-group", multiple: !0, onChange: p, style: { display: "block" }, value: u.time }, + V().createElement( + ge, + { + "aria-label": a.formatMessage({ id: "comments.arialabel.button.filter.today" }), + style: { margin: "0 var(--ccx-comments-margin-sm) var(--ccx-comments-margin-sm) 0", maxWidth: "100%" }, + value: "today", + variant: "action", + }, + a.formatMessage({ id: "comments.filter.today" }) + ), + V().createElement( + ge, + { + "aria-label": a.formatMessage({ id: "comments.arialabel.button.filter.yesterday" }), + style: { margin: "0 var(--ccx-comments-margin-sm) var(--ccx-comments-margin-sm) 0", maxWidth: "100%" }, + value: "yesterday", + variant: "action", + }, + a.formatMessage({ id: "comments.filter.yesterday" }) + ), + V().createElement( + ge, + { + "aria-label": a.formatMessage({ id: "comments.arialabel.button.filter.last7Days" }), + style: { margin: "0 var(--ccx-comments-margin-sm) var(--ccx-comments-margin-sm) 0", maxWidth: "100%" }, + value: "last7Days", + variant: "action", + }, + a.formatMessage({ id: "comments.filter.last7Days" }) + ), + V().createElement( + ge, + { + "aria-label": a.formatMessage({ id: "comments.arialabel.button.filter.older" }), + style: { margin: "0 var(--ccx-comments-margin-sm) var(--ccx-comments-margin-sm) 0", maxWidth: "100%" }, + value: "older", + variant: "action", + }, + a.formatMessage({ id: "comments.filter.older" }) + ) + ) + ) + ), + V().createElement( + "div", + { className: "filter-group" }, + V().createElement(Li, { className: "filter-group-header", variant: "subtitle2" }, a.formatMessage({ id: "comments.filter.status" })), + V().createElement( + "div", + { className: "filter-group-content filter-group-content--names" }, + V().createElement( + ge, + { + "aria-label": a.formatMessage({ id: "comments.arialabel.button.filter.resolved" }), + "aria-pressed": u.status, + className: "filter-resolved", + "data-testid": "filter-resolved-button", + onClick: f, + selected: u.status, + variant: "action", + }, + a.formatMessage({ id: "comments.filter.resolved" }) + ) + ) + ), + n && + V().createElement( + "div", + { className: "filter-group" }, + V().createElement(Li, { className: "filter-group-header", variant: "subtitle2" }, a.formatMessage({ id: "comments.filter.unread.header" })), + V().createElement( + "div", + { className: "filter-group-content filter-group-content--names" }, + V().createElement( + ge, + { + "aria-label": a.formatMessage({ id: "comments.arialabel.button.filter.unread" }), + "aria-pressed": u.unread, + className: "filter-unread", + "data-testid": "filter-unread-button", + onClick: m, + selected: u.unread, + variant: "action", + }, + a.formatMessage({ id: "comments.filter.unread" }) + ) + ) + ) + ), + V().createElement( + "div", + { className: "filter-footer", style: { marginTop: "var(--ccx-comments-margin-md)" } }, + V().createElement( + ge, + { "aria-label": a.formatMessage({ id: "comments.arialabel.button.filterClear" }), className: "float-right filter-clear", "data-testid": "filter-clear-button", onClick: l, quiet: !0 }, + a.formatMessage({ id: "comments.filter.clear" }) + ) + ), + V().createElement(we, { "aria-live": "polite" }, a.formatMessage({ id: "comments.ariaLive.filterResult" }, { count: o })) + ); + }; + (uc.displayName = "FilterPopover"), + (uc.defaultProps = { environment: void 0, onFilterChange: function () {}, onFilterClear: function () {}, selectedFilters: { time: [], user: [], status: !1 }, showUnreadFilter: !1, users: [] }), + (uc.propTypes = { + environment: G().string, + filteredCommentsCount: G().number.isRequired, + intl: G().object.isRequired, + onFilterChange: G().func, + onFilterClear: G().func, + selectedFilters: G().shape({ time: G().array, user: G().array, status: G().bool, unread: G().bool }), + showUnreadFilter: G().bool, + touchControls: G().bool.isRequired, + users: G().array, + }); + const dc = V().forwardRef(uc); + function pc(e, t) { + return ( + (function (e) { + if (Array.isArray(e)) return e; + })(e) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(e, t) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return fc(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? fc(e, t) : void 0; + } + })(e, t) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function fc(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var mc = function (e) { + var t, + n, + r, + o = e.disable, + a = e.filteredCommentsCount, + i = e.touchControls, + s = e.visible, + c = pc((0, z.useState)(!1), 2), + l = c[0], + u = c[1], + d = (0, Ne.Z)(), + p = (0, Ke.Z)(), + f = xa(), + m = f.filterOptions, + h = f.isFilterApplied, + v = f.onFilterChange, + y = f.onFilterClear, + g = f.selectedFilters, + b = (0, z.useContext)(re.ZP), + E = b.enableReadUnread, + D = b.environment, + C = (0, cn.cs)(), + w = (0, ln.UP)(), + S = d.formatMessage, + A = S({ id: "comments.arialabel.button.filter" }), + k = S({ id: "comments.arialabel.status.".concat(h ? "filterApplied" : "filterNotApplied") }), + _ = S({ id: "comments.filter.tooltip" }), + T = (0, z.useRef)(null === (t = document) || void 0 === t || null === (n = t.documentElement) || void 0 === n || null === (r = n.style) || void 0 === r ? void 0 : r.overflow), + I = (0, z.useRef)(), + O = pc((0, z.useState)(!1), 2), + F = O[0], + x = O[1]; + (0, z.useEffect)( + function () { + var e, t; + null !== (e = document) && void 0 !== e && null !== (t = e.documentElement) && void 0 !== t && t.style && (document.documentElement.style.overflow = l ? "hidden" : T.current); + }, + [l] + ); + var N = (0, z.useCallback)( + function (e, t) { + v(e, t); + }, + [v] + ), + R = (0, z.useCallback)( + function () { + u(!1), p.fireEvent(p.events.filterHide); + }, + [p] + ), + L = (0, z.useCallback)( + function (e) { + C.completeCurrentOrResumeCoachMarks({ dismissType: "blur" }), w.completeCurrent({ dismissType: "blur" }), x(0 === e.screenX && 0 === e.screenY); + }, + [w, C] + ), + M = (0, z.useCallback)( + function () { + u(!0), + requestAnimationFrame(function () { + var e, t, n, r; + F + ? null == I || null === (e = I.current) || void 0 === e || null === (t = e.firstReviewerBtn) || void 0 === t || t.focus() + : null == I || null === (n = I.current) || void 0 === n || null === (r = n.filterContainer) || void 0 === r || r.focus(); + }), + p.fireEvent(p.events.filterShow); + }, + [p, F] + ), + j = (0, z.useCallback)(function (e) { + e.preventDefault(); + }, []), + B = V().createElement( + "div", + null, + V().createElement( + _t, + { crossOffset: -1e3, "data-testid": "filter-popover-overlay", onHide: R, onShow: M, placement: "top", trigger: "click" }, + V().createElement( + "div", + null, + V().createElement(ge, { + "aria-expanded": l, + "aria-label": "".concat(A, " ").concat(k), + "data-testid": "ccx-comments-filter-button", + disabled: o, + icon: h ? V().createElement(Yi, { className: "filter-icon--applied", size: i ? "M" : "S" }) : V().createElement(Ti, { className: "filter-icon", size: i ? "M" : "S" }), + id: "ccx-filter-button", + onClick: L, + selected: l, + variant: "tool", + }) + ), + V().createElement( + Ht, + { + "aria-labelledby": "ccx-filter-button", + className: P.default.filterPopover, + enablePortaling: !0, + onMouseDown: j, + placement: "top", + style: { + "--ccx-comments-filter-panel-max-height": "50vh", + "--ccx-comments-margin-xxs": "2px", + "--ccx-comments-margin-xs": "4px", + "--ccx-comments-margin-sm": "8px", + "--ccx-comments-margin-md": "12px", + "--ccx-comments-margin-lg": "16px", + "--ccx-comments-margin-xl": "20px", + "--spectrum-popover-dialog-padding": "var(--ccx-comments-margin-lg) 0 var(--ccx-comments-margin-md) var(--ccx-comments-margin-lg)", + width: "calc(var(--ccx-comments-panel-width) - var(--ccx-comments-margin-xl)", + }, + title: null, + }, + V().createElement(dc, { environment: D, filteredCommentsCount: a, intl: d, onFilterChange: N, onFilterClear: y, ref: I, selectedFilters: g, showUnreadFilter: E, touchControls: i, users: m.users }) + ) + ), + V().createElement(cn.SF, { name: "viewResolvedComments", placement: "top right", selector: "#ccx-filter-button" }), + V().createElement(ln.Py, { name: "viewResolvedComments", placement: "top right", selector: "#ccx-filter-button" }) + ); + return i || (B = V().createElement(_t, { "data-testid": "ccx-comments-tooltip-overlay", disabled: o || null, placement: "left", trigger: "hover" }, B, V().createElement(It, null, _))), s ? B : null; + }; + (mc.defaultProps = { disable: !1, filteredCommentsCount: 0, touchControls: !1, users: [], visible: !1 }), + (mc.propTypes = { disable: G().bool, filteredCommentsCount: G().number, touchControls: G().bool, users: G().array, visible: G().bool }); + const hc = mc; + var vc = (0, Pr.K)(), + yc = (0, Pr.$E)(), + gc = function (e) { + var t = e.assetData, + n = e.annotationToggleDisabled, + r = e.commentsSetShowAnnotations, + o = e.disableFooterControls, + a = e.canFilterComments, + i = e.filteredCommentsCount, + s = e.isAnnotationsVisible, + c = e.multiPageAsset, + l = e.showGlobalCommentsToggle, + u = e.visible, + d = e.isOffline, + p = e.isMapping, + f = (0, z.useContext)(tt.ZP).onAnnotationToggle, + m = (0, z.useContext)(re.ZP), + h = m.annotationsEnabled, + v = m.annotationsMultiPageEnabled, + y = m.enableFrameS4R, + g = m.compactLayout, + b = m.touchControls, + E = m.disableNetworkIndicator, + D = m.globalCommentsToggle, + C = m.globalCommentsViewAll, + w = a && h, + S = l && !v && C, + A = Boolean(c && D.isActive); + return u + ? V().createElement( + "footer", + { "aria-labelledby": "footer-heading", className: P.default.component, id: "ccx-comments-filter" }, + V().createElement("h2", { className: "visually-hidden", id: "footer-heading" }, V().createElement(ee.Z, { id: "comments.sections.commentListFooter" })), + V().createElement( + "div", + { className: "filter-container" }, + V().createElement(nc, { defaultChecked: D.isActive, disable: o, globalCommentsMode: A, onToggle: D.onToggle, visible: S }), + S || g || E ? null : V().createElement(cc, { className: "network-indicator-left-column", isOffline: d, touchControls: b }), + V().createElement( + "div", + { className: "toggle-right-container" }, + p + ? V().createElement("div", { className: "mapping-indicator" }, V().createElement(Sa, { size: "S" })) + : V().createElement(Qi, { commentsSetShowAnnotations: r, disable: o || n, isAnnotationsVisible: s, onAnnotationToggle: f, touchControls: b, visible: w }), + V().createElement(hc, { disable: o || (t.isFrameArtifact && y), filteredCommentsCount: i, touchControls: b, visible: a }), + S && !E ? V().createElement(cc, { isOffline: d, tooltipDirection: "left", touchControls: b }) : null + ) + ) + ) + : null; + }; + (gc.defaultProps = { annotationToggleDisabled: !1, assetData: { isFrameArtifact: !1 }, disableFooterControls: !1, filteredCommentsCount: 0, isMapping: !1, isOffline: !1 }), + (gc.propTypes = { + annotationToggleDisabled: G().bool, + assetData: G().shape({ isFrameArtifact: G().bool }), + canFilterComments: G().bool.isRequired, + commentsSetShowAnnotations: G().func.isRequired, + disableFooterControls: G().bool, + filteredCommentsCount: G().number, + isAnnotationsVisible: G().bool.isRequired, + isMapping: G().bool, + isOffline: G().bool, + multiPageAsset: G().bool.isRequired, + showGlobalCommentsToggle: G().bool.isRequired, + visible: G().bool.isRequired, + }); + const bc = (0, K.$j)( + function (e, t) { + var n = t.compactLayout, + r = t.isOffline, + o = t.isMapping, + a = t.assetData, + i = yc(e, t), + s = !n, + c = n ? Q()(e, "".concat(An.Bq, ":context.focusedInputInfo")) : void 0, + l = !n && Q()(e, "".concat(An.Bq, ":annotation.showAnnotations")), + u = vc(e, t), + d = Boolean(Q()(u, "allNodes.".concat(An.Qy))), + p = Boolean(a.validNodes.length > 1 || d), + f = Boolean(p), + m = (s || f) && (!n || !c), + h = 0 === u.total.total; + return { + annotationToggleDisabled: !(0, Pr.Wm)(e, a.id), + disableFooterControls: h, + canFilterComments: s, + filteredCommentsCount: i ? i.length : 0, + isAnnotationsVisible: l, + multiPageAsset: p, + showGlobalCommentsToggle: f, + visible: m, + isOffline: r, + isMapping: o, + }; + }, + function (e) { + return (0, $.DE)({ commentsSetShowAnnotations: ce.xD }, e); + }, + void 0, + { context: Ve.no } + )(gc); + function Ec(e) { + return ( + (Ec = + "function" == typeof Symbol && "symbol" == typeof Symbol.iterator + ? function (e) { + return typeof e; + } + : function (e) { + return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e; + }), + Ec(e) + ); + } + function Dc(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + function Cc(e, t) { + return ( + (Cc = Object.setPrototypeOf + ? Object.setPrototypeOf.bind() + : function (e, t) { + return (e.__proto__ = t), e; + }), + Cc(e, t) + ); + } + function wc(e) { + return ( + (wc = Object.setPrototypeOf + ? Object.getPrototypeOf.bind() + : function (e) { + return e.__proto__ || Object.getPrototypeOf(e); + }), + wc(e) + ); + } + var Sc = (function (e) { + !(function (e, t) { + if ("function" != typeof t && null !== t) throw new TypeError("Super expression must either be null or a function"); + (e.prototype = Object.create(t && t.prototype, { constructor: { value: e, writable: !0, configurable: !0 } })), Object.defineProperty(e, "prototype", { writable: !1 }), t && Cc(e, t); + })(i, e); + var t, + n, + r, + o, + a = + ((r = i), + (o = (function () { + if ("undefined" == typeof Reflect || !Reflect.construct) return !1; + if (Reflect.construct.sham) return !1; + if ("function" == typeof Proxy) return !0; + try { + return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; + } catch (e) { + return !1; + } + })()), + function () { + var e, + t = wc(r); + if (o) { + var n = wc(this).constructor; + e = Reflect.construct(t, arguments, n); + } else e = t.apply(this, arguments); + return (function (e, t) { + if (t && ("object" === Ec(t) || "function" == typeof t)) return t; + if (void 0 !== t) throw new TypeError("Derived constructors may only return object or undefined"); + return (function (e) { + if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); + return e; + })(e); + })(this, e); + }); + function i() { + return ( + (function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + })(this, i), + a.apply(this, arguments) + ); + } + return ( + (t = i), + (n = [ + { + key: "render", + value: function () { + var e = this.props, + t = e.imageData, + n = e.width, + r = e.height; + return t + ? V().createElement( + "div", + { className: j.default.component }, + V().createElement("span", { className: "preview-text" }, V().createElement("b", null, "Image Preview:")), + V().createElement("span", { className: "img-container" }, V().createElement("img", { src: t, id: "image-preview", width: n, height: r })) + ) + : null; + }, + }, + ]) && Dc(t.prototype, n), + Object.defineProperty(t, "prototype", { writable: !1 }), + i + ); + })(V().Component); + function Ac(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + Sc.propTypes = { imageData: G().string, width: G().number, height: G().number }; + var kc = function () { + return V().createElement( + "svg", + { id: "Layer_1", "data-name": "Layer 1", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 150 110", width: "120", className: "ccx-no-access-illustration" }, + V().createElement( + "g", + { id: "chat_sm", "data-name": "chat sm" }, + V().createElement("line", { fill: "none", stroke: "#b3b3b3", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2px", x1: "77.76", y1: "33.32", x2: "31.41", y2: "33.32" }), + V().createElement("line", { fill: "none", stroke: "#b3b3b3", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2px", x1: "31.41", y1: "44.23", x2: "59.21", y2: "44.23" }), + V().createElement("path", { + fill: "none", + stroke: "#b3b3b3", + strokeLinecap: "round", + strokeLinejoin: "round", + strokeWidth: "2px", + d: "M22.12,14.91H87a7.42,7.42,0,0,1,7.42,7.42V55.72A7.42,7.42,0,0,1,87,63.13H56.75L40.16,80.66A1.86,1.86,0,0,1,37,79.39V63.13H22.12a7.42,7.42,0,0,1-7.42-7.41V22.33A7.42,7.42,0,0,1,22.12,14.91Z", + }), + V().createElement("path", { fill: "none", stroke: "#b3b3b3", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2px", d: "M113,47.38V44.59a7.42,7.42,0,0,0-7.41-7.42H100" }), + V().createElement("path", { fill: "none", stroke: "#b3b3b3", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2px", d: "M51.79,77.34A11.12,11.12,0,0,0,55.5,78H72L83.81,90.75A1.85,1.85,0,0,0,87,89.5V78h3.56" }) + ), + V().createElement("circle", { fill: "none", stroke: "#b3b3b3", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2px", cx: "117.44", cy: "73.01", r: "20.46" }), + V().createElement("line", { fill: "none", stroke: "#b3b3b3", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2px", x1: "103.46", y1: "58.49", x2: "131.17", y2: "86.2" }) + ); + }; + const _c = function () { + var e, t, n; + return ( + ((t = (0, z.useState)(!1)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return Ac(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Ac(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })())[1], + (0, z.useEffect)(function () {}, []), + null !== (e = window.customElements) && void 0 !== e && e.get("ccx-comments-icon-no-access-illustration") ? V().createElement("ccx-comments-icon-no-access-illustration", null) : V().createElement(kc, null) + ); + }, + Tc = function () { + var e = (0, Ke.Z)(); + return ( + (0, z.useEffect)(function () { + e.fireEvent(e.events.commentsRenderEvent("noReviewAccess")); + }, []), + V().createElement( + Vo, + { testId: "no-review-access-empty-state" }, + V().createElement(Vo.Illustration, null, V().createElement(_c, null)), + V().createElement(Vo.Title, null, V().createElement(ee.Z, { id: "comments.no-access-empty-state.title" })), + V().createElement(Vo.Subtitle, null, V().createElement(ee.Z, { id: "comments.no-access-empty-state.subtitle" })) + ) + ); + }; + const Ic = (0, pe.Z)(n(61298)).default, + Oc = (0, ue.Z)({ + displayName: "Dialog", + fallback: Ic, + swcLoader: void 0, + SWCWrapper: function (e) { + var t; + const n = (0, z.useRef)(null), + { backdropClickable: r, cancelLabel: o, children: a, className: i, confirmLabel: s, isDismissible: c, onCancel: l, onClose: u, onConfirm: d, open: p, secondaryLabel: f, title: m, underlay: h } = e, + v = (function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + })(e, ["backdropClickable", "cancelLabel", "children", "className", "confirmLabel", "isDismissible", "onCancel", "onClose", "onConfirm", "open", "secondaryLabel", "title", "underlay"]); + (0, z.useEffect)(() => { + const e = null == n ? void 0 : n.current; + return ( + e && u && e.addEventListener("close", u), + () => { + e && u && e.removeEventListener("close", u); + } + ); + }, [u]), + (0, z.useEffect)(() => { + const e = null == n ? void 0 : n.current, + t = (t) => { + null == d || d(t.type, t), e && (e.open = !1); + }; + return ( + e && d && (e.addEventListener("confirm", t), e.addEventListener("secondary", t)), + () => { + e && d && (e.removeEventListener("confirm", t), e.removeEventListener("secondary", t)); + } + ); + }, [d]), + (0, z.useEffect)(() => { + const e = null == n ? void 0 : n.current, + t = () => { + null == l || l(), e && (e.open = !1); + }; + return ( + e && l && e.addEventListener("cancel", t), + () => { + e && l && e.removeEventListener("cancel", t); + } + ); + }, [l]); + const y = (0, z.useRef)(null), + [, g] = (0, z.useState)(!1); + (0, z.useEffect)(() => { + g(!0); + }, []); + const b = (0, de.Co)("sp-dialog-wrapper"); + return V().createElement( + V().Fragment, + null, + V().createElement( + b, + Object.assign(Object.assign(Object.assign({}, v), (0, de.cd)({ dismissable: c, open: p, underlay: null === (t = h || r || p) || void 0 === t || t })), { + ref: n, + class: i, + headline: m, + "confirm-label": s, + "cancel-label": o, + "secondary-label": f, + }), + V().createElement("div", { ref: y }) + ), + y.current && (0, jt.createPortal)(a, y.current) + ); + }, + tagName: "sp-dialog-wrapper", + }); + var Fc = n(57568); + const xc = (0, pe.Z)(n(6750)).default, + Nc = (0, z.forwardRef)(function (e, t) { + const n = (0, z.useRef)(null), + { onChange: r } = e; + (0, z.useEffect)(() => { + const { current: e } = n, + t = (e) => { + const t = e.target; + null == r || r(t.value, e); + }; + return ( + e && r && e.addEventListener("input", t), + () => { + e && r && e.removeEventListener("input", t); + } + ); + }, [r]); + const o = (0, de.Co)("sp-textfield"); + return V().createElement( + o, + Object.assign( + { ref: Gt([t, n]) }, + (function (e) { + const { autoFocus: t, className: n, disabled: r, invalid: o, maxLength: a, multiLine: i, quiet: s, readOnly: c, required: l, spellCheck: u, disableOnOverlay: d, validationState: p, onChange: f } = e, + m = (function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + })(e, ["autoFocus", "className", "disabled", "invalid", "maxLength", "multiLine", "quiet", "readOnly", "required", "spellCheck", "disableOnOverlay", "validationState", "onChange"]); + return Object.assign(Object.assign(Object.assign({}, m), (0, de.cd)({ autofocus: t, disabled: r, invalid: "invalid" === p || o, multiline: i, quiet: s, readonly: c, required: l, valid: "valid" === p })), { + class: n, + maxlength: a, + spellcheck: "false" !== u, + }); + })(e) + ) + ); + }), + Rc = (0, ue.Z)({ + displayName: "Textfield", + fallback: xc, + swcLoader: void 0, + SWCWrapper: (0, z.forwardRef)(function (e, t) { + return V().createElement(Nc, Object.assign(Object.assign({}, e), { ref: t })); + }), + tagName: "sp-textfield", + }); + function Lc(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var Mc = function () { + return V().createElement( + "svg", + { width: "50", height: "50", viewBox: "0 0 52 52" }, + V().createElement("path", { d: "M26,2h0c13.25484,0,24,10.74517,24,24h0c0,13.25484-10.74516,24-24,24h0c-13.25483,0-24-10.74516-24-24h0C2,12.74517,12.74517,2,26,2Z", fill: "#ffffff" }), + V().createElement("path", { d: "M26,52C11.66357,52,0,40.33643,0,26S11.66357,0,26,0s26,11.66357,26,26-11.66357,26-26,26Zm0-50C12.7666,2,2,12.7666,2,26s10.7666,24,24,24,24-10.7666,24-24S39.2334,2,26,2Z", fill: "#cacaca" }), + V().createElement("path", { + d: + "M30.30363,32.08179c-1.07454,.72005-2.44906,1.14551-4.06364,1.14551-3.12549,0-5.77091-2.11092-6.71452-4.94735l-4.00911,3.10913c1.97453,3.92188,6.03271,6.61092,10.72363,6.61092,3.23999,0,5.95638-1.07454,7.94181-2.90731l-3.87817-3.0109Z", + fill: "#32a753", + fillRule: "evenodd", + }), + V().createElement("path", { + d: "M37.54183,23.8182h-11.30184v4.64176h6.45817c-.27816,1.5-1.12362,2.771-2.39453,3.62183l3.87817,3.0109c2.26912-2.08911,3.57821-5.16536,3.57821-8.81999,0-.85091-.07633-1.66911-.21818-2.45451Z", + fill: "#3e82f1", + fillRule: "evenodd", + }), + V().createElement("path", { + d: + "M26.24002,18.77273c1.7618,0,3.34363,.60547,4.58728,1.79456l3.44177-3.44181c-2.07817-1.93636-4.79451-3.12549-8.02905-3.12549-4.69096,0-8.7491,2.68913-10.72363,6.61096l4.00907,3.10905c.9436-2.83639,3.58907-4.94727,6.71456-4.94727h0Zm0,0", + fill: "#e74235", + fillRule: "evenodd", + }), + V().createElement("path", { + d: "M15.51636,20.61092c-.81274,1.62004-1.27637,3.45272-1.27637,5.38908s.46362,3.76912,1.27637,5.38908l4.00911-3.10913c-.24007-.71997-.37638-1.48901-.37638-2.27995s.13631-1.55998,.37638-2.28003l-4.00911-3.10905Z", + fill: "#f9bb00", + fillRule: "evenodd", + }) + ); + }, + Pc = function () { + var e, t, n; + return ( + ((t = (0, z.useState)(!1)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return Lc(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Lc(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })())[1], + (0, z.useEffect)(function () {}, []), + null !== (e = window.customElements) && void 0 !== e && e.get("ccx-comments-icon-google") ? V().createElement("ccx-comments-icon-google", null) : V().createElement(Mc, null) + ); + }; + Pc.displayName = "Google"; + const jc = Pc; + function Bc(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var Zc = function () { + return V().createElement( + "svg", + { width: "50", height: "50", viewBox: "0 0 52 52" }, + V().createElement("path", { d: "M26,2h0c13.25484,0,24,10.74517,24,24h0c0,13.25484-10.74516,24-24,24h0c-13.25483,0-24-10.74516-24-24h0C2,12.74517,12.74517,2,26,2Z", fill: "#1877f2" }), + V().createElement("path", { d: "M26,52C11.66357,52,0,40.33643,0,26S11.66357,0,26,0s26,11.66357,26,26-11.66357,26-26,26Zm0-50C12.7666,2,2,12.7666,2,26s10.7666,24,24,24,24-10.7666,24-24S39.2334,2,26,2Z", fill: "#1877f2" }), + V().createElement("path", { + d: + "M38,26c0-6.62742-5.37258-12-12-12s-12,5.37258-12,12c0,5.98955,4.38823,10.95399,10.12499,11.85417v-8.38542h-3.04687v-3.46875h3.04687v-2.64375c0-3.0075,1.79153-4.66875,4.53257-4.66875,1.31293,0,2.68619,.23438,2.68619,.23438v2.95312h-1.51319c-1.49067,0-1.95556,.925-1.95556,1.874v2.251h3.32813l-.53203,3.46875h-2.7961v8.38542c5.73678-.90018,10.12501-5.86462,10.12501-11.85417Z", + fill: "#ffffff", + }) + ); + }, + Uc = function () { + var e, t, n; + return ( + ((t = (0, z.useState)(!1)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return Bc(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Bc(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })())[1], + (0, z.useEffect)(function () {}, []), + null !== (e = window.customElements) && void 0 !== e && e.get("ccx-comments-icon-facebook") ? V().createElement("ccx-comments-icon-facebook", null) : V().createElement(Zc, null) + ); + }; + Uc.displayName = "Facebook"; + const zc = Uc; + function Vc(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var Hc = function () { + return V().createElement( + "svg", + { width: "50", height: "50", viewBox: "0 0 52 52" }, + V().createElement("path", { d: "M26,2h0c13.25484,0,24,10.74517,24,24h0c0,13.25484-10.74516,24-24,24h0c-13.25483,0-24-10.74516-24-24h0C2,12.74517,12.74517,2,26,2Z", fill: "#000000" }), + V().createElement("path", { d: "M26,52C11.66357,52,0,40.33643,0,26S11.66357,0,26,0s26,11.66357,26,26-11.66357,26-26,26Zm0-50C12.7666,2,2,12.7666,2,26s10.7666,24,24,24,24-10.7666,24-24S39.2334,2,26,2Z", fill: "#000000" }), + V().createElement("path", { + d: + "M35.78982,32.42893c-.37703,.87103-.82331,1.6728-1.34039,2.40994-.70482,1.00491-1.28191,1.7005-1.72666,2.08677-.68943,.63403-1.42811,.95874-2.21911,.97721-.56786,0-1.25267-.16159-2.04983-.48937-.79977-.32625-1.53476-.48784-2.2068-.48784-.70482,0-1.46074,.16159-2.26928,.48784-.80978,.32779-1.46212,.49861-1.96088,.51554-.75853,.03232-1.5146-.30163-2.26928-1.00337-.48168-.42012-1.08416-1.14033-1.80591-2.16063-.77438-1.08955-1.41103-2.353-1.90979-3.79342-.53416-1.55584-.80193-3.06244-.80193-4.52102,0-1.6708,.36103-3.11184,1.08416-4.31942,.56832-.96998,1.32439-1.73512,2.27067-2.29683s1.96873-.84794,3.06982-.86625c.60248,0,1.39256,.18636,2.37439,.55262,.97906,.36749,1.6077,.55385,1.88332,.55385,.20606,0,.90442-.21791,2.0883-.65234,1.11956-.40289,2.06445-.56971,2.83852-.50399,2.09754,.16928,3.67338,.99614,4.72138,2.48581-1.87593,1.13664-2.8039,2.72865-2.78543,4.77094,.01693,1.59077,.59402,2.91455,1.7282,3.96562,.514,.48784,1.08801,.86487,1.72666,1.13264-.1385,.40166-.2847,.78638-.44013,1.15572Zm-4.81064-18.93018c0,1.24684-.45552,2.41103-1.36348,3.48858-1.09571,1.28099-2.42102,2.02121-3.85821,1.9044-.01831-.14958-.02893-.30701-.02893-.47245,0-1.19697,.52108-2.47796,1.44642-3.52534,.46198-.53031,1.04954-.97125,1.76205-1.323,.71098-.3465,1.38348-.53813,2.01598-.57094,.01847,.16668,.02616,.33337,.02616,.49875Z", + fill: "#ffffff", + }) + ); + }, + Gc = function () { + var e, t, n; + return ( + ((t = (0, z.useState)(!1)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return Vc(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Vc(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })())[1], + (0, z.useEffect)(function () {}, []), + null !== (e = window.customElements) && void 0 !== e && e.get("ccx-comments-icon-apple") ? V().createElement("ccx-comments-icon-apple", null) : V().createElement(Hc, null) + ); + }; + Gc.displayName = "Apple"; + const Wc = Gc; + function Qc(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var Jc = function () { + return V().createElement( + "svg", + { viewBox: "0 0 48 48", height: "15", width: "15", focusable: "false", "aria-hidden": "true", role: "img", fill: "#fff", display: "flex" }, + V().createElement("path", { d: "M29.219 6H44v36L29.219 6zM18.798 6H4v36L18.798 6zm5.207 13.265l9.422 22.733h-6.173l-2.823-7.24h-6.896l6.47-15.493z" }) + ); + }, + Yc = function () { + var e, t, n; + return ( + ((t = (0, z.useState)(!1)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return Qc(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Qc(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })())[1], + (0, z.useEffect)(function () {}, []), + null !== (e = window.customElements) && void 0 !== e && e.get("ccx-comments-icon-adobe") ? V().createElement("ccx-comments-icon-adobe", null) : V().createElement(Jc, null) + ); + }; + Yc.displayName = "Adobe"; + const qc = Yc; + function Xc() { + return ( + (Xc = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + Xc.apply(this, arguments) + ); + } + function Kc(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var $c = function (e) { + var t, + n, + r = e.autoFocus, + o = e.compactView, + a = e.executeRecaptcha, + i = e.fireIngestEvent, + s = e.guestCommentingAutomationMode, + c = e.guestName, + l = void 0 === c ? "" : c, + u = e.intl, + d = e.isShowing, + p = void 0 !== d && d, + f = e.onChange, + m = void 0 === f ? function () {} : f, + h = e.onGuestLogin, + v = e.onLogin, + y = e.onSignUp, + g = e.onSocialSignIn, + b = e.reCaptchaSiteKey, + E = e.socialSignIn, + D = void 0 !== E && E, + C = + ((t = V().useState(l)), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return Kc(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Kc(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + w = C[0], + S = C[1], + A = u.formatMessage, + k = u.locale, + _ = (0, z.useCallback)( + function (e) { + var t = dr().sanitize(e, { RETURN_DOM_FRAGMENT: !0 }).textContent; + S(t), m(t); + }, + [m] + ), + T = (0, z.useCallback)( + function (e) { + var t = { captchaSiteKey: b, captchaResponseCode: e, userName: null == w ? void 0 : w.trim() }; + h(t); + }, + [w, h, b] + ), + I = (0, z.useCallback)( + function () { + null == a || + a() + .then(function (e) { + T(e); + }) + .catch(function () {}); + }, + [a, T] + ), + O = function () { + w && !s ? I() : T("randomString"); + }; + (0, z.useEffect)( + function () { + p && i({ event: { subcategory: "sign-in", subtype: "sign-in", type: "render" } }); + }, + [i, p] + ), + (0, z.useEffect)( + function () { + S(l); + }, + [l] + ); + var F = An.MF - w.length, + x = function (e) { + return V().createElement("div", Xc({}, e, { className: "adobe-logo-container" }), V().createElement(qc, { className: "adobe-logo" })); + }; + x.displayName = "AdobeIcon"; + var N = A({ id: "comments.login.guest.adobe-tou-url" }), + R = A({ id: "comments.login.guest.adobe-privacy-url" }); + return V().createElement( + "div", + { className: "form-wrapper" }, + V().createElement("h2", { className: X()("dialog-header", !o && "dialog-header-medium") }, u.formatMessage({ id: "comments.login.title" })), + V().createElement("h3", { className: "guest-header" }, u.formatMessage({ id: "comments.login.guest.header" })), + V().createElement( + "div", + { className: "sign-in-as-guest" }, + V().createElement( + As, + { label: u.formatMessage({ id: "comments.login.guest.label" }) }, + F <= 10 && V().createElement("span", { className: X()("guest-input-length", { "characters-remaining": F >= 0 }), "data-testid": "ccx-comments-guest-input-remaining-characters" }, F), + V().createElement(Rc, { + autoFocus: r, + id: "ccx-comments-login-guest-input", + invalid: w.length > An.MF, + onChange: _, + onClick: function () { + i({ event: { subcategory: "sign-in-guest", subtype: "textbox", type: "click" } }); + }, + onKeyUp: function (e) { + e.keyCode === An.nx.ENTER && !e.shiftKey && w.trim() && w.length <= An.MF && O(); + }, + value: w, + }), + w.length > An.MF && V().createElement("span", { className: "guest-input-error-message", "data-testid": "ccx-comments-guest-input-error-message" }, A({ id: "comments.login.guest.error" })) + ), + V().createElement( + "div", + { className: "legal-container" }, + V().createElement( + "span", + { id: "ccx-comments-login-adobe-tou", className: X()(!o && "legal-copy-block") }, + A( + { id: "comments.login.guest.adobe-tou" }, + { + tou: function (e) { + return V().createElement(wt, { variant: "quiet", href: N, target: "_blank", rel: "noreferrer" }, e); + }, + privacy: function (e) { + return V().createElement(wt, { variant: "quiet", href: R, target: "_blank", rel: "noreferrer" }, e); + }, + } + ) + ) + ), + V().createElement( + "div", + { className: "login-btn-container" }, + V().createElement(ge, { + disabled: !w || (null == w ? void 0 : w.length) > An.MF || !w.trim(), + id: "ccx-comments-login-guest-submit", + "data-testid": "ccx-comments-login-guest-submit", + label: A({ id: "comments.login.guest.submit" }), + onClick: O, + variant: "cta", + }) + ) + ), + V().createElement( + "div", + { className: "ccx-comments-login-rule" }, + V().createElement("span", { className: "line" }, V().createElement(Ut, { variant: "medium" })), + V().createElement("span", { className: "ccx-comments-login-rule-text" }, A({ id: "comments.login.rule" })), + V().createElement("span", { className: "line" }, V().createElement(Ut, { variant: "medium" })) + ), + V().createElement("p", { className: "login-dialog-description" }, A({ id: "comments.login.description" })), + D && + V().createElement( + "div", + { className: "social-sign-in-icons" }, + V().createElement( + Ir, + { size: "xl" }, + V().createElement(ge, { + className: "icon-container google-container", + "aria-label": A({ id: "comments.login.social.google" }), + onClick: function () { + return g("google"); + }, + icon: V().createElement(jc, null), + variant: "tool", + style: { "--spectrum-actionbutton-icon-size": "50px" }, + }), + V().createElement(ge, { + className: "icon-container facebook-container", + "aria-label": A({ id: "comments.login.social.facebook" }), + onClick: function () { + return g("facebook"); + }, + icon: V().createElement(zc, null), + variant: "tool", + style: { "--spectrum-actionbutton-icon-size": "50px" }, + }), + V().createElement(ge, { + className: "icon-container apple-container", + "aria-label": A({ id: "comments.login.social.apple" }), + onClick: function () { + return g("apple"); + }, + icon: V().createElement(Wc, null), + variant: "tool", + style: { "--spectrum-actionbutton-icon-size": "50px" }, + }) + ) + ), + V().createElement( + "div", + { className: "adobe-sign-in-container" }, + V().createElement(ge, { + icon: V().createElement(x, null), + id: "ccx-comments-login-signin", + onClick: v, + label: A({ id: "comments.login.sign_in" }), + variant: "action", + style: { borderColor: "var(--ccx-comments-border-color-1)" }, + }) + ), + V().createElement( + "div", + { className: "adobe-sign-up" }, + V().createElement( + "span", + null, + A( + { id: "comments.login.sign_up" }, + { + signUp: function (e) { + return V().createElement(wt, { onClick: y, target: "_blank", rel: "noreferrer", href: "#" }, e); + }, + } + ) + ) + ), + V().createElement( + "div", + { className: "legal-container" }, + V().createElement( + "span", + { id: "ccx-comments-login-google-tou", className: X()(!o && "legal-copy-block") }, + A( + { id: "comments.login.guest.google-tou" }, + { + tou: function (e) { + return V().createElement(wt, { variant: "quiet", href: "https://policies.google.com/terms?hl=".concat(k), target: "_blank", rel: "noreferrer" }, e); + }, + privacy: function (e) { + return V().createElement(wt, { variant: "quiet", href: "https://policies.google.com/privacy?hl=".concat(k), target: "_blank", rel: "noreferrer" }, e); + }, + } + ) + ) + ) + ); + }; + $c.propTypes = { + autoFocus: G().bool, + compactView: G().bool, + executeRecaptcha: G().func, + fireIngestEvent: G().func, + guestCommentingAutomationMode: G().bool, + guestName: G().string, + intl: G().shape({ formatMessage: G().func, locale: G().string }).isRequired, + isShowing: G().bool, + onChange: G().func, + onGuestLogin: G().func.isRequired, + onLogin: G().func.isRequired, + onSignUp: G().func.isRequired, + onSocialSignIn: G().func.isRequired, + reCaptchaSiteKey: G().string, + socialSignIn: G().bool, + }; + const el = $c; + const tl = (0, pe.Z)(n(54209)).default, + nl = (e, t) => { + var n; + return (0, z.cloneElement)(e, Object.assign(Object.assign({}, t), { onClick: (0, de.tS)(null === (n = null == e ? void 0 : e.props) || void 0 === n ? void 0 : n.onClick, null == t ? void 0 : t.onClick) })); + }, + rl = (0, ue.Z)({ + displayName: "ModalTrigger", + fallback: tl, + swcLoader: void 0, + swcProps: (e) => { + const { children: t, className: n } = e, + r = (function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + })(e, ["children", "className"]), + o = ((e, t) => { + if ( + e.find((e) => { + var t; + return "trigger" === (null === (t = e.props) || void 0 === t ? void 0 : t.slot); + }) && + e.find((e) => { + var t; + return "click-content" === (null === (t = e.props) || void 0 === t ? void 0 : t.slot); + }) + ) + return e.map((e) => { + var n; + return "trigger" === (null === (n = e.props) || void 0 === n ? void 0 : n.slot) ? nl(e, t) : e; + }); + const n = + e.find((e) => { + var t; + return null === (t = e.props) || void 0 === t ? void 0 : t.modalTrigger; + }) || e[0], + r = + e.find((e) => { + var t; + return null === (t = e.props) || void 0 === t ? void 0 : t.modalContent; + }) || e[1]; + return e.map((e) => (e === n ? nl(e, Object.assign(Object.assign({}, t), { slot: "trigger" })) : e === r ? nl(e, Object.assign(Object.assign({}, t), { slot: "click-content" })) : e)); + })(V().Children.toArray(t), r); + return Object.assign(Object.assign({}, r), { children: o, class: n, type: "modal" }); + }, + tagName: "overlay-trigger", + }); + var ol = function (e) { + var t = e.isShowing, + n = e.children, + r = e.dismissed, + o = (0, z.useRef)(null), + a = (0, z.useRef)(null), + i = (0, Hn.Z)(t); + return ( + (0, z.useEffect)( + function () { + if (i !== t) + if (t) a.current.click(); + else if (void 0 !== i && !r) { + var e, n; + null !== (e = o.current) && void 0 !== e && e.hide ? o.current.hide() : null === (n = a.current) || void 0 === n || n.click(); + } + }, + [t, i, r] + ), + V().createElement(rl, { ref: o }, V().createElement("button", { ref: a, style: { display: "none" }, "aria-hidden": "true", modaltrigger: t.toString() }), n) + ); + }; + ol.propTypes = { isShowing: G().bool, children: G().node.isRequired, dismissed: G().bool }; + const al = ol; + function il(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + const sl = function () { + var e, + t, + n, + r = "screen and (min-width: 1280px)", + o = "screen and (max-width: 1279px) and (min-width: 510px)", + a = "screen and (max-width: 509px)", + i = + ((t = (0, z.useState)({ + large: window.matchMedia(r).matches, + medium: window.matchMedia(o).matches, + small: window.matchMedia(a).matches, + landscape: null === (e = window.screen.orientation) || void 0 === e ? void 0 : e.type.includes("landscape"), + })), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return il(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? il(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + s = i[0], + c = i[1]; + return ( + (0, z.useEffect)(function () { + var e, + t, + n, + i, + s = window.matchMedia(r), + l = window.matchMedia(o), + u = window.matchMedia(a), + d = function () { + var e; + return c({ large: s.matches, medium: l.matches, small: u.matches, landscape: null === (e = window.screen.orientation) || void 0 === e ? void 0 : e.type.includes("landscape") }); + }; + return ( + null === (e = s.addEventListener) || void 0 === e || e.call(s, "change", d), + null === (t = l.addEventListener) || void 0 === t || t.call(l, "change", d), + null === (n = u.addEventListener) || void 0 === n || n.call(u, "change", d), + null === (i = window.screen.orientation) || void 0 === i || i.addEventListener("change", d), + function () { + var e, t, n, r; + null === (e = s.removeEventListener) || void 0 === e || e.call(s, "change", d), + null === (t = l.removeEventListener) || void 0 === t || t.call(l, "change", d), + null === (n = u.removeEventListener) || void 0 === n || n.call(u, "change", d), + null === (r = window.screen.orientation) || void 0 === r || r.removeEventListener("change", d); + } + ); + }), + s + ); + }; + function cl(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function ll(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? cl(Object(n), !0).forEach(function (t) { + ul(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : cl(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function ul(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + function dl(e, t) { + return ( + (function (e) { + if (Array.isArray(e)) return e; + })(e) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(e, t) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return pl(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? pl(e, t) : void 0; + } + })(e, t) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function pl(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var fl = function (e) { + var t = e.createGuestUserSession, + n = e.guestSessionState, + r = e.intl, + o = e.onGuestLogin, + a = e.onLoginCancel, + i = e.guestCommentingAutomationMode, + s = e.reCaptchaSiteKey, + c = e.resetGuestUserSession, + l = e.setGuestUserLoginToast, + u = e.show, + d = e.spectrumUIScale, + p = e.theme, + f = (0, Ke.Z)().fireEvent, + m = (0, z.useContext)(re.ZP), + h = m.compactLayout, + v = m.imsData, + y = m.socialSignIn, + g = m.touchControls, + b = (0, z.useContext)(tt.ZP), + E = b.onGuestSession, + D = b.onAdobeIMS, + C = dl((0, z.useState)(""), 2), + w = C[0], + S = C[1], + A = dl((0, z.useState)(""), 2), + k = A[0], + _ = A[1], + T = dl((0, z.useState)(!1), 2), + I = T[0], + O = T[1], + F = sl(), + x = (0, Fc.xX)().executeRecaptcha, + N = (0, z.useCallback)( + function (e, t) { + var r = ll({}, e); + return ("expires-soon" !== n && "expired" !== n) || xs()(r, { user: { service_code: "guest", service_level: "expires-soon" === n ? "restore-guest" : "expired-guest" } }), f(r, t); + }, + [f, n] + ), + R = (0, z.useCallback)( + function () { + a(), S(""), O(!0), "expires-soon" === n && (c(), E("destroy", v)); + }, + [a, n, c, E, v] + ), + L = function (e) { + ("ArrowLeft" !== e.key && "ArrowRight" !== e.key) || e.stopPropagation(); + }; + (0, z.useEffect)( + function () { + u && O(!1); + }, + [u] + ), + (0, z.useEffect)( + function () { + "expired" === n && E("destroy", v); + }, + [n, E, v] + ), + (0, z.useEffect)(function () { + return ( + window.addEventListener("keydown", L, !0), + function () { + return window.removeEventListener("keydown", L, !0); + } + ); + }, []), + (0, z.useEffect)( + function () { + u && S("expires-soon" === n || "expired" === n ? k : ""); + }, + [k, n, u] + ); + var M = V().createElement(el, { + autoFocus: !g, + compactView: h && F.small, + fireIngestEvent: N, + executeRecaptcha: x, + guestCommentingAutomationMode: i, + guestName: w, + guestSessionState: n, + intl: r, + isShowing: u, + onChange: S, + onGuestLogin: function (e) { + var r = "expires-soon" === n && k === e.userName; + t(e, r) + .then(function (t) { + N({ event: { subcategory: "sign-in-guest", subtype: "sign-in", type: "click" } }), + E("create", ll(ll({}, t), {}, { name: e.userName })), + o(!n), + r || (_(e.userName), l({ toastType: "success", toastMessageId: "comments.submit.comment_as_guest_login_success", guestInfo: ll(ll({}, t), {}, { name: e.userName }) })); + }) + .catch(function (e) { + N({ event: { subcategory: "sign-in-guest", subtype: "sign-in", type: "click", error_code: e.status, error_type: e.message, error_desc: "failed-to-create-guest-session" } }), + o(!0), + l({ toastType: "error", toastMessageId: "comments.submit.comment_as_guest_login_error" }), + c(); + }); + }, + onLogin: function () { + N({ event: { subcategory: "sign-in", subtype: "sign-in", type: "click" } }, !0) + .then(function () { + return D({ method: "signIn" }); + }) + .catch(function () { + return D({ method: "signIn" }); + }); + }, + onSignUp: function () { + return D({ method: "signUp" }); + }, + onSocialSignIn: function (e) { + N({ event: { event: { subcategory: "sign-in", subtype: e, type: "click" } } }, !0) + .then(function () { + return D({ method: "signInWithSocialProvider", providerName: e }); + }) + .catch(function () { + return D({ method: "signInWithSocialProvider", providerName: e }); + }); + }, + reCaptchaSiteKey: s, + socialSignIn: y, + }); + return V().createElement( + al, + { isShowing: u, dismissed: I }, + V().createElement( + Oc, + { + id: "login-dialog", + className: X()(Z.default.component, "".concat(p, "-theme"), "".concat(d, "-scale"), { compact: h }), + backdropClickable: !0, + isDismissible: !0, + modalContent: !0, + role: "dialog", + onClose: R, + mode: h && F.small ? "fullscreenTakeover" : void 0, + trapFocus: !0, + title: " ", + "no-divider": !0, + }, + M + ) + ); + }; + (fl.defaultProps = { onGuestLogin: function () {}, onLoginCancel: function () {}, show: !1, spectrumUIScale: "medium", theme: "light" }), + (fl.propTypes = { + createGuestUserSession: G().func.isRequired, + guestCommentingAutomationMode: G().bool, + guestSessionState: G().string, + intl: G().object, + onGuestLogin: G().func, + onLoginCancel: G().func, + reCaptchaSiteKey: G().string, + resetGuestUserSession: G().func, + setGuestUserLoginToast: G().func.isRequired, + show: G().bool, + spectrumUIScale: G().oneOf(["medium", "large"]), + theme: G().oneOf(["light", "lightest", "dark", "darkest"]), + }); + var ml = { createGuestUserSession: ae.Om, resetGuestUserSession: ae.I3, setGuestUserLoginToast: ae.Fu }, + hl = (0, gt.ZP)(fl); + const vl = (0, K.$j)( + function (e) { + return { guestSessionState: Q()(e, "".concat(An.Bq, ":context.guestSessionState")) }; + }, + ml, + void 0, + { context: Ve.no } + )(hl); + var yl = n(48699), + gl = n.n(yl); + const bl = { + toVector: (e, t) => (void 0 === e && (e = t), Array.isArray(e) ? e : [e, e]), + add: (e, t) => [e[0] + t[0], e[1] + t[1]], + sub: (e, t) => [e[0] - t[0], e[1] - t[1]], + addTo(e, t) { + (e[0] += t[0]), (e[1] += t[1]); + }, + subTo(e, t) { + (e[0] -= t[0]), (e[1] -= t[1]); + }, + }; + function El(e, t, n) { + return 0 === t || Math.abs(t) === 1 / 0 ? Math.pow(e, 5 * n) : (e * t * n) / (t + n * e); + } + function Dl(e, t, n, r = 0.15) { + return 0 === r + ? (function (e, t, n) { + return Math.max(t, Math.min(e, n)); + })(e, t, n) + : e < t + ? -El(t - e, n - t, r) + t + : e > n + ? +El(e - n, n - t, r) + n + : e; + } + function Cl(e, t, n) { + return ( + (t = (function (e) { + var t = (function (e, t) { + if ("object" != typeof e || null === e) return e; + var n = e[Symbol.toPrimitive]; + if (void 0 !== n) { + var r = n.call(e, "string"); + if ("object" != typeof r) return r; + throw new TypeError("@@toPrimitive must return a primitive value."); + } + return String(e); + })(e); + return "symbol" == typeof t ? t : String(t); + })(t)) in e + ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) + : (e[t] = n), + e + ); + } + function wl(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function Sl(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? wl(Object(n), !0).forEach(function (t) { + Cl(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : wl(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + const Al = { + pointer: { start: "down", change: "move", end: "up" }, + mouse: { start: "down", change: "move", end: "up" }, + touch: { start: "start", change: "move", end: "end" }, + gesture: { start: "start", change: "change", end: "end" }, + }; + function kl(e) { + return e ? e[0].toUpperCase() + e.slice(1) : ""; + } + const _l = ["enter", "leave"]; + const Tl = ["gotpointercapture", "lostpointercapture"]; + function Il(e) { + let t = e.substring(2).toLowerCase(); + const n = !!~t.indexOf("passive"); + n && (t = t.replace("passive", "")); + const r = Tl.includes(t) ? "capturecapture" : "capture", + o = !!~t.indexOf(r); + return o && (t = t.replace("capture", "")), { device: t, capture: o, passive: n }; + } + function Ol(e) { + return "touches" in e; + } + function Fl(e) { + return Ol(e) ? "touch" : "pointerType" in e ? e.pointerType : "mouse"; + } + function xl(e) { + return Ol(e) + ? (function (e) { + return "touchend" === e.type || "touchcancel" === e.type ? e.changedTouches : e.targetTouches; + })(e)[0] + : e; + } + function Nl(e) { + const t = xl(e); + return Ol(e) ? t.identifier : t.pointerId; + } + function Rl(e) { + const t = xl(e); + return [t.clientX, t.clientY]; + } + function Ll(e, ...t) { + return "function" == typeof e ? e(...t) : e; + } + function Ml() {} + function Pl(...e) { + return 0 === e.length + ? Ml + : 1 === e.length + ? e[0] + : function () { + let t; + for (const n of e) t = n.apply(this, arguments) || t; + return t; + }; + } + function jl(e, t) { + return Object.assign({}, t, e || {}); + } + class Bl { + constructor(e, t, n) { + (this.ctrl = e), (this.args = t), (this.key = n), this.state || ((this.state = {}), this.computeValues([0, 0]), this.computeInitial(), this.init && this.init(), this.reset()); + } + get state() { + return this.ctrl.state[this.key]; + } + set state(e) { + this.ctrl.state[this.key] = e; + } + get shared() { + return this.ctrl.state.shared; + } + get eventStore() { + return this.ctrl.gestureEventStores[this.key]; + } + get timeoutStore() { + return this.ctrl.gestureTimeoutStores[this.key]; + } + get config() { + return this.ctrl.config[this.key]; + } + get sharedConfig() { + return this.ctrl.config.shared; + } + get handler() { + return this.ctrl.handlers[this.key]; + } + reset() { + const { state: e, shared: t, ingKey: n, args: r } = this; + (t[n] = e._active = e.active = e._blocked = e._force = !1), + (e._step = [!1, !1]), + (e.intentional = !1), + (e._movement = [0, 0]), + (e._distance = [0, 0]), + (e._direction = [0, 0]), + (e._delta = [0, 0]), + (e._bounds = [ + [-1 / 0, 1 / 0], + [-1 / 0, 1 / 0], + ]), + (e.args = r), + (e.axis = void 0), + (e.memo = void 0), + (e.elapsedTime = e.timeDelta = 0), + (e.direction = [0, 0]), + (e.distance = [0, 0]), + (e.overflow = [0, 0]), + (e._movementBound = [!1, !1]), + (e.velocity = [0, 0]), + (e.movement = [0, 0]), + (e.delta = [0, 0]), + (e.timeStamp = 0); + } + start(e) { + const t = this.state, + n = this.config; + t._active || + (this.reset(), + this.computeInitial(), + (t._active = !0), + (t.target = e.target), + (t.currentTarget = e.currentTarget), + (t.lastOffset = n.from ? Ll(n.from, t) : t.offset), + (t.offset = t.lastOffset), + (t.startTime = t.timeStamp = e.timeStamp)); + } + computeValues(e) { + const t = this.state; + (t._values = e), (t.values = this.config.transform(e)); + } + computeInitial() { + const e = this.state; + (e._initial = e._values), (e.initial = e.values); + } + compute(e) { + const { state: t, config: n, shared: r } = this; + t.args = this.args; + let o = 0; + if ( + (e && + ((t.event = e), + n.preventDefault && e.cancelable && t.event.preventDefault(), + (t.type = e.type), + (r.touches = this.ctrl.pointerIds.size || this.ctrl.touchIds.size), + (r.locked = !!document.pointerLockElement), + Object.assign( + r, + (function (e) { + const t = {}; + if (("buttons" in e && (t.buttons = e.buttons), "shiftKey" in e)) { + const { shiftKey: n, altKey: r, metaKey: o, ctrlKey: a } = e; + Object.assign(t, { shiftKey: n, altKey: r, metaKey: o, ctrlKey: a }); + } + return t; + })(e) + ), + (r.down = r.pressed = r.buttons % 2 == 1 || r.touches > 0), + (o = e.timeStamp - t.timeStamp), + (t.timeStamp = e.timeStamp), + (t.elapsedTime = t.timeStamp - t.startTime)), + t._active) + ) { + const e = t._delta.map(Math.abs); + bl.addTo(t._distance, e); + } + this.axisIntent && this.axisIntent(e); + const [a, i] = t._movement, + [s, c] = n.threshold, + { _step: l, values: u } = t; + if ( + (n.hasCustomTransform + ? (!1 === l[0] && (l[0] = Math.abs(a) >= s && u[0]), !1 === l[1] && (l[1] = Math.abs(i) >= c && u[1])) + : (!1 === l[0] && (l[0] = Math.abs(a) >= s && Math.sign(a) * s), !1 === l[1] && (l[1] = Math.abs(i) >= c && Math.sign(i) * c)), + (t.intentional = !1 !== l[0] || !1 !== l[1]), + !t.intentional) + ) + return; + const d = [0, 0]; + if (n.hasCustomTransform) { + const [e, t] = u; + (d[0] = !1 !== l[0] ? e - l[0] : 0), (d[1] = !1 !== l[1] ? t - l[1] : 0); + } else (d[0] = !1 !== l[0] ? a - l[0] : 0), (d[1] = !1 !== l[1] ? i - l[1] : 0); + this.restrictToAxis && !t._blocked && this.restrictToAxis(d); + const p = t.offset, + f = (t._active && !t._blocked) || t.active; + f && + ((t.first = t._active && !t.active), + (t.last = !t._active && t.active), + (t.active = r[this.ingKey] = t._active), + e && (t.first && ("bounds" in n && (t._bounds = Ll(n.bounds, t)), this.setup && this.setup()), (t.movement = d), this.computeOffset())); + const [m, h] = t.offset, + [[v, y], [g, b]] = t._bounds; + (t.overflow = [m < v ? -1 : m > y ? 1 : 0, h < g ? -1 : h > b ? 1 : 0]), + (t._movementBound[0] = !!t.overflow[0] && (!1 === t._movementBound[0] ? t._movement[0] : t._movementBound[0])), + (t._movementBound[1] = !!t.overflow[1] && (!1 === t._movementBound[1] ? t._movement[1] : t._movementBound[1])); + const E = (t._active && n.rubberband) || [0, 0]; + if ( + ((t.offset = (function (e, [t, n], [r, o]) { + const [[a, i], [s, c]] = e; + return [Dl(t, a, i, r), Dl(n, s, c, o)]; + })(t._bounds, t.offset, E)), + (t.delta = bl.sub(t.offset, p)), + this.computeMovement(), + f && (!t.last || o > 32)) + ) { + t.delta = bl.sub(t.offset, p); + const e = t.delta.map(Math.abs); + bl.addTo(t.distance, e), (t.direction = t.delta.map(Math.sign)), (t._direction = t._delta.map(Math.sign)), !t.first && o > 0 && ((t.velocity = [e[0] / o, e[1] / o]), (t.timeDelta = o)); + } + } + emit() { + const e = this.state, + t = this.shared, + n = this.config; + if ((e._active || this.clean(), (e._blocked || !e.intentional) && !e._force && !n.triggerAllEvents)) return; + const r = this.handler(Sl(Sl(Sl({}, t), e), {}, { [this.aliasKey]: e.values })); + void 0 !== r && (e.memo = r); + } + clean() { + this.eventStore.clean(), this.timeoutStore.clean(); + } + } + class Zl extends Bl { + constructor(...e) { + super(...e), Cl(this, "aliasKey", "xy"); + } + reset() { + super.reset(), (this.state.axis = void 0); + } + init() { + (this.state.offset = [0, 0]), (this.state.lastOffset = [0, 0]); + } + computeOffset() { + this.state.offset = bl.add(this.state.lastOffset, this.state.movement); + } + computeMovement() { + this.state.movement = bl.sub(this.state.offset, this.state.lastOffset); + } + axisIntent(e) { + const t = this.state, + n = this.config; + if (!t.axis && e) { + const r = "object" == typeof n.axisThreshold ? n.axisThreshold[Fl(e)] : n.axisThreshold; + t.axis = (function ([e, t], n) { + const r = Math.abs(e), + o = Math.abs(t); + return r > o && r > n ? "x" : o > r && o > n ? "y" : void 0; + })(t._movement, r); + } + t._blocked = ((n.lockDirection || !!n.axis) && !t.axis) || (!!n.axis && n.axis !== t.axis); + } + restrictToAxis(e) { + if (this.config.axis || this.config.lockDirection) + switch (this.state.axis) { + case "x": + e[1] = 0; + break; + case "y": + e[0] = 0; + } + } + } + const Ul = (e) => e, + zl = { + enabled: (e = !0) => e, + eventOptions: (e, t, n) => Sl(Sl({}, n.shared.eventOptions), e), + preventDefault: (e = !1) => e, + triggerAllEvents: (e = !1) => e, + rubberband(e = 0) { + switch (e) { + case !0: + return [0.15, 0.15]; + case !1: + return [0, 0]; + default: + return bl.toVector(e); + } + }, + from: (e) => ("function" == typeof e ? e : null != e ? bl.toVector(e) : void 0), + transform(e, t, n) { + const r = e || n.shared.transform; + return (this.hasCustomTransform = !!r), r || Ul; + }, + threshold: (e) => bl.toVector(e, 0), + }, + Vl = Sl( + Sl({}, zl), + {}, + { + axis(e, t, { axis: n }) { + if (((this.lockDirection = "lock" === n), !this.lockDirection)) return n; + }, + axisThreshold: (e = 0) => e, + bounds(e = {}) { + if ("function" == typeof e) return (t) => Vl.bounds(e(t)); + if ("current" in e) return () => e.current; + if ("function" == typeof HTMLElement && e instanceof HTMLElement) return e; + const { left: t = -1 / 0, right: n = 1 / 0, top: r = -1 / 0, bottom: o = 1 / 0 } = e; + return [ + [t, n], + [r, o], + ]; + }, + } + ), + Hl = { ArrowRight: (e, t = 1) => [e * t, 0], ArrowLeft: (e, t = 1) => [-1 * e * t, 0], ArrowUp: (e, t = 1) => [0, -1 * e * t], ArrowDown: (e, t = 1) => [0, e * t] }, + Gl = "undefined" != typeof window && window.document && window.document.createElement; + function Wl() { + return Gl && "ontouchstart" in window; + } + const Ql = { + isBrowser: Gl, + gesture: (function () { + try { + return "constructor" in GestureEvent; + } catch (e) { + return !1; + } + })(), + touch: Wl(), + touchscreen: Wl() || (Gl && window.navigator.maxTouchPoints > 1), + pointer: Gl && "onpointerdown" in window, + pointerLock: Gl && "exitPointerLock" in window.document, + }, + Jl = { mouse: 0, touch: 0, pen: 8 }, + Yl = Sl( + Sl({}, Vl), + {}, + { + device(e, t, { pointer: { touch: n = !1, lock: r = !1, mouse: o = !1 } = {} }) { + return (this.pointerLock = r && Ql.pointerLock), Ql.touch && n ? "touch" : this.pointerLock ? "mouse" : Ql.pointer && !o ? "pointer" : Ql.touch ? "touch" : "mouse"; + }, + preventScrollAxis(e, t, { preventScroll: n }) { + if (((this.preventScrollDelay = "number" == typeof n ? n : n || (void 0 === n && e) ? 250 : void 0), Ql.touchscreen && !1 !== n)) return e || (void 0 !== n ? "y" : void 0); + }, + pointerCapture(e, t, { pointer: { capture: n = !0, buttons: r = 1, keys: o = !0 } = {} }) { + return (this.pointerButtons = r), (this.keys = o), !this.pointerLock && "pointer" === this.device && n; + }, + threshold(e, t, { filterTaps: n = !1, tapsThreshold: r = 3, axis: o }) { + const a = bl.toVector(e, n ? r : o ? 1 : 0); + return (this.filterTaps = n), (this.tapsThreshold = r), a; + }, + swipe({ velocity: e = 0.5, distance: t = 50, duration: n = 250 } = {}) { + return { velocity: this.transform(bl.toVector(e)), distance: this.transform(bl.toVector(t)), duration: n }; + }, + delay(e = 0) { + switch (e) { + case !0: + return 180; + case !1: + return 0; + default: + return e; + } + }, + axisThreshold: (e) => (e ? Sl(Sl({}, Jl), e) : Jl), + keyboardDisplacement: (e = 10) => e, + } + ); + Sl( + Sl({}, zl), + {}, + { + device(e, t, { shared: n, pointer: { touch: r = !1 } = {} }) { + if (n.target && !Ql.touch && Ql.gesture) return "gesture"; + if (Ql.touch && r) return "touch"; + if (Ql.touchscreen) { + if (Ql.pointer) return "pointer"; + if (Ql.touch) return "touch"; + } + }, + bounds(e, t, { scaleBounds: n = {}, angleBounds: r = {} }) { + const o = (e) => { + const t = jl(Ll(n, e), { min: -1 / 0, max: 1 / 0 }); + return [t.min, t.max]; + }, + a = (e) => { + const t = jl(Ll(r, e), { min: -1 / 0, max: 1 / 0 }); + return [t.min, t.max]; + }; + return "function" != typeof n && "function" != typeof r ? [o(), a()] : (e) => [o(e), a(e)]; + }, + threshold(e, t, n) { + return (this.lockDirection = "lock" === n.axis), bl.toVector(e, this.lockDirection ? [0.1, 3] : 0); + }, + modifierKey: (e) => (void 0 === e ? "ctrlKey" : e), + pinchOnWheel: (e = !0) => e, + } + ), + Sl(Sl({}, Vl), {}, { mouseOnly: (e = !0) => e }), + Sl(Sl({}, Vl), {}, { mouseOnly: (e = !0) => e }); + const ql = new Map(), + Xl = new Map(), + Kl = { + key: "drag", + engine: class extends Zl { + constructor(...e) { + super(...e), Cl(this, "ingKey", "dragging"); + } + reset() { + super.reset(); + const e = this.state; + (e._pointerId = void 0), (e._pointerActive = !1), (e._keyboardActive = !1), (e._preventScroll = !1), (e._delayed = !1), (e.swipe = [0, 0]), (e.tap = !1), (e.canceled = !1), (e.cancel = this.cancel.bind(this)); + } + setup() { + const e = this.state; + if (e._bounds instanceof HTMLElement) { + const t = e._bounds.getBoundingClientRect(), + n = e.currentTarget.getBoundingClientRect(), + r = { left: t.left - n.left + e.offset[0], right: t.right - n.right + e.offset[0], top: t.top - n.top + e.offset[1], bottom: t.bottom - n.bottom + e.offset[1] }; + e._bounds = Vl.bounds(r); + } + } + cancel() { + const e = this.state; + e.canceled || + ((e.canceled = !0), + (e._active = !1), + setTimeout(() => { + this.compute(), this.emit(); + }, 0)); + } + setActive() { + this.state._active = this.state._pointerActive || this.state._keyboardActive; + } + clean() { + this.pointerClean(), (this.state._pointerActive = !1), (this.state._keyboardActive = !1), super.clean(); + } + pointerDown(e) { + const t = this.config, + n = this.state; + if (null != e.buttons && (Array.isArray(t.pointerButtons) ? !t.pointerButtons.includes(e.buttons) : -1 !== t.pointerButtons && t.pointerButtons !== e.buttons)) return; + const r = this.ctrl.setEventIds(e); + t.pointerCapture && e.target.setPointerCapture(e.pointerId), + (r && r.size > 1 && n._pointerActive) || + (this.start(e), + this.setupPointer(e), + (n._pointerId = Nl(e)), + (n._pointerActive = !0), + this.computeValues(Rl(e)), + this.computeInitial(), + t.preventScrollAxis && "mouse" !== Fl(e) ? ((n._active = !1), this.setupScrollPrevention(e)) : t.delay > 0 ? (this.setupDelayTrigger(e), t.triggerAllEvents && (this.compute(e), this.emit())) : this.startPointerDrag(e)); + } + startPointerDrag(e) { + const t = this.state; + (t._active = !0), (t._preventScroll = !0), (t._delayed = !1), this.compute(e), this.emit(); + } + pointerMove(e) { + const t = this.state, + n = this.config; + if (!t._pointerActive) return; + const r = Nl(e); + if (void 0 !== t._pointerId && r !== t._pointerId) return; + const o = Rl(e); + return ( + document.pointerLockElement === e.target ? (t._delta = [e.movementX, e.movementY]) : ((t._delta = bl.sub(o, t._values)), this.computeValues(o)), + bl.addTo(t._movement, t._delta), + this.compute(e), + t._delayed && t.intentional + ? (this.timeoutStore.remove("dragDelay"), (t.active = !1), void this.startPointerDrag(e)) + : n.preventScrollAxis && !t._preventScroll + ? t.axis + ? t.axis === n.preventScrollAxis || "xy" === n.preventScrollAxis + ? ((t._active = !1), void this.clean()) + : (this.timeoutStore.remove("startPointerDrag"), void this.startPointerDrag(e)) + : void 0 + : void this.emit() + ); + } + pointerUp(e) { + this.ctrl.setEventIds(e); + try { + this.config.pointerCapture && e.target.hasPointerCapture(e.pointerId) && e.target.releasePointerCapture(e.pointerId); + } catch (e) {} + const t = this.state, + n = this.config; + if (!t._active || !t._pointerActive) return; + const r = Nl(e); + if (void 0 !== t._pointerId && r !== t._pointerId) return; + (this.state._pointerActive = !1), this.setActive(), this.compute(e); + const [o, a] = t._distance; + if (((t.tap = o <= n.tapsThreshold && a <= n.tapsThreshold), t.tap && n.filterTaps)) t._force = !0; + else { + const [e, r] = t._delta, + [o, a] = t._movement, + [i, s] = n.swipe.velocity, + [c, l] = n.swipe.distance, + u = n.swipe.duration; + if (t.elapsedTime < u) { + const n = Math.abs(e / t.timeDelta), + u = Math.abs(r / t.timeDelta); + n > i && Math.abs(o) > c && (t.swipe[0] = Math.sign(e)), u > s && Math.abs(a) > l && (t.swipe[1] = Math.sign(r)); + } + } + this.emit(); + } + pointerClick(e) { + !this.state.tap && e.detail > 0 && (e.preventDefault(), e.stopPropagation()); + } + setupPointer(e) { + const t = this.config, + n = t.device; + t.pointerLock && e.currentTarget.requestPointerLock(), + t.pointerCapture || + (this.eventStore.add(this.sharedConfig.window, n, "change", this.pointerMove.bind(this)), + this.eventStore.add(this.sharedConfig.window, n, "end", this.pointerUp.bind(this)), + this.eventStore.add(this.sharedConfig.window, n, "cancel", this.pointerUp.bind(this))); + } + pointerClean() { + this.config.pointerLock && document.pointerLockElement === this.state.currentTarget && document.exitPointerLock(); + } + preventScroll(e) { + this.state._preventScroll && e.cancelable && e.preventDefault(); + } + setupScrollPrevention(e) { + (this.state._preventScroll = !1), + (function (e) { + "persist" in e && "function" == typeof e.persist && e.persist(); + })(e); + const t = this.eventStore.add(this.sharedConfig.window, "touch", "change", this.preventScroll.bind(this), { passive: !1 }); + this.eventStore.add(this.sharedConfig.window, "touch", "end", t), + this.eventStore.add(this.sharedConfig.window, "touch", "cancel", t), + this.timeoutStore.add("startPointerDrag", this.startPointerDrag.bind(this), this.config.preventScrollDelay, e); + } + setupDelayTrigger(e) { + (this.state._delayed = !0), + this.timeoutStore.add( + "dragDelay", + () => { + (this.state._step = [0, 0]), this.startPointerDrag(e); + }, + this.config.delay + ); + } + keyDown(e) { + const t = Hl[e.key]; + if (t) { + const n = this.state, + r = e.shiftKey ? 10 : e.altKey ? 0.1 : 1; + this.start(e), (n._delta = t(this.config.keyboardDisplacement, r)), (n._keyboardActive = !0), bl.addTo(n._movement, n._delta), this.compute(e), this.emit(); + } + } + keyUp(e) { + e.key in Hl && ((this.state._keyboardActive = !1), this.setActive(), this.compute(e), this.emit()); + } + bind(e) { + const t = this.config.device; + e(t, "start", this.pointerDown.bind(this)), + this.config.pointerCapture && (e(t, "change", this.pointerMove.bind(this)), e(t, "end", this.pointerUp.bind(this)), e(t, "cancel", this.pointerUp.bind(this)), e("lostPointerCapture", "", this.pointerUp.bind(this))), + this.config.keys && (e("key", "down", this.keyDown.bind(this)), e("key", "up", this.keyUp.bind(this))), + this.config.filterTaps && e("click", "", this.pointerClick.bind(this), { capture: !0, passive: !1 }); + } + }, + resolver: Yl, + }; + const $l = { + target(e) { + if (e) return () => ("current" in e ? e.current : e); + }, + enabled: (e = !0) => e, + window: (e = Ql.isBrowser ? window : void 0) => e, + eventOptions: ({ passive: e = !0, capture: t = !1 } = {}) => ({ passive: e, capture: t }), + transform: (e) => e, + }, + eu = ["target", "eventOptions", "window", "enabled", "transform"]; + function tu(e = {}, t) { + const n = {}; + for (const [r, o] of Object.entries(t)) + switch (typeof o) { + case "function": + n[r] = o.call(n, e[r], r, e); + break; + case "object": + n[r] = tu(e[r], o); + break; + case "boolean": + o && (n[r] = e[r]); + } + return n; + } + class nu { + constructor(e, t) { + Cl(this, "_listeners", new Set()), (this._ctrl = e), (this._gestureKey = t); + } + add(e, t, n, r, o) { + const a = this._listeners, + i = (function (e, t = "") { + const n = Al[e]; + return e + ((n && n[t]) || t); + })(t, n), + s = Sl(Sl({}, this._gestureKey ? this._ctrl.config[this._gestureKey].eventOptions : {}), o); + e.addEventListener(i, r, s); + const c = () => { + e.removeEventListener(i, r, s), a.delete(c); + }; + return a.add(c), c; + } + clean() { + this._listeners.forEach((e) => e()), this._listeners.clear(); + } + } + class ru { + constructor() { + Cl(this, "_timeouts", new Map()); + } + add(e, t, n = 140, ...r) { + this.remove(e), this._timeouts.set(e, window.setTimeout(t, n, ...r)); + } + remove(e) { + const t = this._timeouts.get(e); + t && window.clearTimeout(t); + } + clean() { + this._timeouts.forEach((e) => { + window.clearTimeout(e); + }), + this._timeouts.clear(); + } + } + class ou { + constructor(e) { + var t, n; + Cl(this, "gestures", new Set()), + Cl(this, "_targetEventStore", new nu(this)), + Cl(this, "gestureEventStores", {}), + Cl(this, "gestureTimeoutStores", {}), + Cl(this, "handlers", {}), + Cl(this, "config", {}), + Cl(this, "pointerIds", new Set()), + Cl(this, "touchIds", new Set()), + Cl(this, "state", { shared: { shiftKey: !1, metaKey: !1, ctrlKey: !1, altKey: !1 } }), + (t = this), + (n = e).drag && au(t, "drag"), + n.wheel && au(t, "wheel"), + n.scroll && au(t, "scroll"), + n.move && au(t, "move"), + n.pinch && au(t, "pinch"), + n.hover && au(t, "hover"); + } + setEventIds(e) { + return Ol(e) + ? ((this.touchIds = new Set( + (function (e) { + return (function (e) { + return Array.from(e.touches).filter((t) => { + var n, r; + return t.target === e.currentTarget || (null === (n = e.currentTarget) || void 0 === n || null === (r = n.contains) || void 0 === r ? void 0 : r.call(n, t.target)); + }); + })(e).map((e) => e.identifier); + })(e) + )), + this.touchIds) + : "pointerId" in e + ? ("pointerup" === e.type || "pointercancel" === e.type ? this.pointerIds.delete(e.pointerId) : "pointerdown" === e.type && this.pointerIds.add(e.pointerId), this.pointerIds) + : void 0; + } + applyHandlers(e, t) { + (this.handlers = e), (this.nativeHandlers = t); + } + applyConfig(e, t) { + this.config = (function (e, t, n = {}) { + const r = e, + { target: o, eventOptions: a, window: i, enabled: s, transform: c } = r, + l = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = {}, + a = Object.keys(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (o[n] = e[n]); + return o; + })(e, t); + if (Object.getOwnPropertySymbols) { + var a = Object.getOwnPropertySymbols(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (Object.prototype.propertyIsEnumerable.call(e, n) && (o[n] = e[n])); + } + return o; + })(r, eu); + if (((n.shared = tu({ target: o, eventOptions: a, window: i, enabled: s, transform: c }, $l)), t)) { + const e = Xl.get(t); + n[t] = tu(Sl({ shared: n.shared }, l), e); + } else + for (const e in l) { + const t = Xl.get(e); + t && (n[e] = tu(Sl({ shared: n.shared }, l[e]), t)); + } + return n; + })(e, t, this.config); + } + clean() { + this._targetEventStore.clean(); + for (const e of this.gestures) this.gestureEventStores[e].clean(), this.gestureTimeoutStores[e].clean(); + } + effect() { + return this.config.shared.target && this.bind(), () => this._targetEventStore.clean(); + } + bind(...e) { + const t = this.config.shared, + n = {}; + let r; + if (!t.target || ((r = t.target()), r)) { + if (t.enabled) { + for (const t of this.gestures) { + const o = this.config[t], + a = iu(n, o.eventOptions, !!r); + o.enabled && new (ql.get(t))(this, e, t).bind(a); + } + const o = iu(n, t.eventOptions, !!r); + for (const t in this.nativeHandlers) o(t, "", (n) => this.nativeHandlers[t](Sl(Sl({}, this.state.shared), {}, { event: n, args: e })), void 0, !0); + } + for (const e in n) n[e] = Pl(...n[e]); + if (!r) return n; + for (const e in n) { + const { device: t, capture: o, passive: a } = Il(e); + this._targetEventStore.add(r, t, "", n[e], { capture: o, passive: a }); + } + } + } + } + function au(e, t) { + e.gestures.add(t), (e.gestureEventStores[t] = new nu(e, t)), (e.gestureTimeoutStores[t] = new ru()); + } + const iu = (e, t, n) => (r, o, a, i = {}, s = !1) => { + var c, l; + const u = null !== (c = i.capture) && void 0 !== c ? c : t.capture, + d = null !== (l = i.passive) && void 0 !== l ? l : t.passive; + let p = s + ? r + : (function (e, t = "", n = !1) { + const r = Al[e], + o = (r && r[t]) || t; + return ( + "on" + + kl(e) + + kl(o) + + ((function (e = !1, t) { + return e && !_l.includes(t); + })(n, o) + ? "Capture" + : "") + ); + })(r, o, u); + n && d && (p += "Passive"), (e[p] = e[p] || []), e[p].push(a); + }; + function su(e, t) { + var n; + return ( + (n = Kl), + ql.set(n.key, n.engine), + Xl.set(n.key, n.resolver), + (function (e, t = {}, n, r) { + const o = V().useMemo(() => new ou(e), []); + if ((o.applyHandlers(e, r), o.applyConfig(t, n), V().useEffect(o.effect.bind(o)), V().useEffect(() => o.clean.bind(o), []), void 0 === t.target)) return o.bind.bind(o); + })({ drag: e }, t || {}, "drag") + ); + } + var cu = Object.defineProperty, + lu = {}; + ((e, t) => { + for (var n in t) cu(e, n, { get: t[n], enumerable: !0 }); + })(lu, { assign: () => zu, colors: () => Bu, createStringInterpolator: () => Lu, skipAnimation: () => Zu, to: () => Mu, willAdvance: () => Uu }); + var uu = ku(), + du = (e) => Cu(e, uu), + pu = ku(); + du.write = (e) => Cu(e, pu); + var fu = ku(); + du.onStart = (e) => Cu(e, fu); + var mu = ku(); + du.onFrame = (e) => Cu(e, mu); + var hu = ku(); + du.onFinish = (e) => Cu(e, hu); + var vu = []; + du.setTimeout = (e, t) => { + const n = du.now() + t, + r = () => { + const e = vu.findIndex((e) => e.cancel == r); + ~e && vu.splice(e, 1), (Eu -= ~e ? 1 : 0); + }, + o = { time: n, handler: e, cancel: r }; + return vu.splice(yu(n), 0, o), (Eu += 1), wu(), o; + }; + var yu = (e) => ~(~vu.findIndex((t) => t.time > e) || ~vu.length); + (du.cancel = (e) => { + fu.delete(e), mu.delete(e), hu.delete(e), uu.delete(e), pu.delete(e); + }), + (du.sync = (e) => { + (Du = !0), du.batchedUpdates(e), (Du = !1); + }), + (du.throttle = (e) => { + let t; + function n() { + try { + e(...t); + } finally { + t = null; + } + } + function r(...e) { + (t = e), du.onStart(n); + } + return ( + (r.handler = e), + (r.cancel = () => { + fu.delete(n), (t = null); + }), + r + ); + }); + var gu = "undefined" != typeof window ? window.requestAnimationFrame : () => {}; + (du.use = (e) => (gu = e)), + (du.now = "undefined" != typeof performance ? () => performance.now() : Date.now), + (du.batchedUpdates = (e) => e()), + (du.catch = console.error), + (du.frameLoop = "always"), + (du.advance = () => { + "demand" !== du.frameLoop ? console.warn("Cannot call the manual advancement of rafz whilst frameLoop is not set as demand") : Au(); + }); + var bu = -1, + Eu = 0, + Du = !1; + function Cu(e, t) { + Du ? (t.delete(e), e(0)) : (t.add(e), wu()); + } + function wu() { + bu < 0 && ((bu = 0), "demand" !== du.frameLoop && gu(Su)); + } + function Su() { + ~bu && (gu(Su), du.batchedUpdates(Au)); + } + function Au() { + const e = bu; + bu = du.now(); + const t = yu(bu); + t && (_u(vu.splice(0, t), (e) => e.handler()), (Eu -= t)), Eu ? (fu.flush(), uu.flush(e ? Math.min(64, bu - e) : 16.667), mu.flush(), pu.flush(), hu.flush()) : (bu = -1); + } + function ku() { + let e = new Set(), + t = e; + return { + add(n) { + (Eu += t != e || e.has(n) ? 0 : 1), e.add(n); + }, + delete: (n) => ((Eu -= t == e && e.has(n) ? 1 : 0), e.delete(n)), + flush(n) { + t.size && ((e = new Set()), (Eu -= t.size), _u(t, (t) => t(n) && e.add(t)), (Eu += e.size), (t = e)); + }, + }; + } + function _u(e, t) { + e.forEach((e) => { + try { + t(e); + } catch (e) { + du.catch(e); + } + }); + } + function Tu() {} + var Iu = { arr: Array.isArray, obj: (e) => !!e && "Object" === e.constructor.name, fun: (e) => "function" == typeof e, str: (e) => "string" == typeof e, num: (e) => "number" == typeof e, und: (e) => void 0 === e }; + function Ou(e, t) { + if (Iu.arr(e)) { + if (!Iu.arr(t) || e.length !== t.length) return !1; + for (let n = 0; n < e.length; n++) if (e[n] !== t[n]) return !1; + return !0; + } + return e === t; + } + var Fu = (e, t) => e.forEach(t); + function xu(e, t, n) { + if (Iu.arr(e)) for (let r = 0; r < e.length; r++) t.call(n, e[r], `${r}`); + else for (const r in e) e.hasOwnProperty(r) && t.call(n, e[r], r); + } + var Nu = (e) => (Iu.und(e) ? [] : Iu.arr(e) ? e : [e]); + function Ru(e, t) { + if (e.size) { + const n = Array.from(e); + e.clear(), Fu(n, t); + } + } + var Lu, + Mu, + Pu = (e, ...t) => Ru(e, (e) => e(...t)), + ju = () => "undefined" == typeof window || !window.navigator || /ServerSideRendering|^Deno\//.test(window.navigator.userAgent), + Bu = null, + Zu = !1, + Uu = Tu, + zu = (e) => { + e.to && (Mu = e.to), + e.now && (du.now = e.now), + void 0 !== e.colors && (Bu = e.colors), + null != e.skipAnimation && (Zu = e.skipAnimation), + e.createStringInterpolator && (Lu = e.createStringInterpolator), + e.requestAnimationFrame && du.use(e.requestAnimationFrame), + e.batchedUpdates && (du.batchedUpdates = e.batchedUpdates), + e.willAdvance && (Uu = e.willAdvance), + e.frameLoop && (du.frameLoop = e.frameLoop); + }, + Vu = new Set(), + Hu = [], + Gu = [], + Wu = 0, + Qu = { + get idle() { + return !Vu.size && !Hu.length; + }, + start(e) { + Wu > e.priority ? (Vu.add(e), du.onStart(Ju)) : (Yu(e), du(Xu)); + }, + advance: Xu, + sort(e) { + if (Wu) du.onFrame(() => Qu.sort(e)); + else { + const t = Hu.indexOf(e); + ~t && (Hu.splice(t, 1), qu(e)); + } + }, + clear() { + (Hu = []), Vu.clear(); + }, + }; + function Ju() { + Vu.forEach(Yu), Vu.clear(), du(Xu); + } + function Yu(e) { + Hu.includes(e) || qu(e); + } + function qu(e) { + Hu.splice( + (function (t, n) { + const r = t.findIndex((t) => t.priority > e.priority); + return r < 0 ? t.length : r; + })(Hu), + 0, + e + ); + } + function Xu(e) { + const t = Gu; + for (let n = 0; n < Hu.length; n++) { + const r = Hu[n]; + (Wu = r.priority), r.idle || (Uu(r), r.advance(e), r.idle || t.push(r)); + } + return (Wu = 0), ((Gu = Hu).length = 0), (Hu = t).length > 0; + } + var Ku = "[-+]?\\d*\\.?\\d+", + $u = Ku + "%"; + function ed(...e) { + return "\\(\\s*(" + e.join(")\\s*,\\s*(") + ")\\s*\\)"; + } + var td = new RegExp("rgb" + ed(Ku, Ku, Ku)), + nd = new RegExp("rgba" + ed(Ku, Ku, Ku, Ku)), + rd = new RegExp("hsl" + ed(Ku, $u, $u)), + od = new RegExp("hsla" + ed(Ku, $u, $u, Ku)), + ad = /^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/, + id = /^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/, + sd = /^#([0-9a-fA-F]{6})$/, + cd = /^#([0-9a-fA-F]{8})$/; + function ld(e, t, n) { + return n < 0 && (n += 1), n > 1 && (n -= 1), n < 1 / 6 ? e + 6 * (t - e) * n : n < 0.5 ? t : n < 2 / 3 ? e + (t - e) * (2 / 3 - n) * 6 : e; + } + function ud(e, t, n) { + const r = n < 0.5 ? n * (1 + t) : n + t - n * t, + o = 2 * n - r, + a = ld(o, r, e + 1 / 3), + i = ld(o, r, e), + s = ld(o, r, e - 1 / 3); + return (Math.round(255 * a) << 24) | (Math.round(255 * i) << 16) | (Math.round(255 * s) << 8); + } + function dd(e) { + const t = parseInt(e, 10); + return t < 0 ? 0 : t > 255 ? 255 : t; + } + function pd(e) { + return (((parseFloat(e) % 360) + 360) % 360) / 360; + } + function fd(e) { + const t = parseFloat(e); + return t < 0 ? 0 : t > 1 ? 255 : Math.round(255 * t); + } + function md(e) { + const t = parseFloat(e); + return t < 0 ? 0 : t > 100 ? 1 : t / 100; + } + function hd(e) { + let t = (function (e) { + let t; + return "number" == typeof e + ? e >>> 0 === e && e >= 0 && e <= 4294967295 + ? e + : null + : (t = sd.exec(e)) + ? parseInt(t[1] + "ff", 16) >>> 0 + : Bu && void 0 !== Bu[e] + ? Bu[e] + : (t = td.exec(e)) + ? ((dd(t[1]) << 24) | (dd(t[2]) << 16) | (dd(t[3]) << 8) | 255) >>> 0 + : (t = nd.exec(e)) + ? ((dd(t[1]) << 24) | (dd(t[2]) << 16) | (dd(t[3]) << 8) | fd(t[4])) >>> 0 + : (t = ad.exec(e)) + ? parseInt(t[1] + t[1] + t[2] + t[2] + t[3] + t[3] + "ff", 16) >>> 0 + : (t = cd.exec(e)) + ? parseInt(t[1], 16) >>> 0 + : (t = id.exec(e)) + ? parseInt(t[1] + t[1] + t[2] + t[2] + t[3] + t[3] + t[4] + t[4], 16) >>> 0 + : (t = rd.exec(e)) + ? (255 | ud(pd(t[1]), md(t[2]), md(t[3]))) >>> 0 + : (t = od.exec(e)) + ? (ud(pd(t[1]), md(t[2]), md(t[3])) | fd(t[4])) >>> 0 + : null; + })(e); + return null === t ? e : ((t = t || 0), `rgba(${(4278190080 & t) >>> 24}, ${(16711680 & t) >>> 16}, ${(65280 & t) >>> 8}, ${(255 & t) / 255})`); + } + var vd = (e, t, n) => { + if (Iu.fun(e)) return e; + if (Iu.arr(e)) return vd({ range: e, output: t, extrapolate: n }); + if (Iu.str(e.output[0])) return Lu(e); + const r = e, + o = r.output, + a = r.range || [0, 1], + i = r.extrapolateLeft || r.extrapolate || "extend", + s = r.extrapolateRight || r.extrapolate || "extend", + c = r.easing || ((e) => e); + return (e) => { + const t = (function (e, t) { + for (var n = 1; n < t.length - 1 && !(t[n] >= e); ++n); + return n - 1; + })(e, a); + return (function (e, t, n, r, o, a, i, s, c) { + let l = c ? c(e) : e; + if (l < t) { + if ("identity" === i) return l; + "clamp" === i && (l = t); + } + if (l > n) { + if ("identity" === s) return l; + "clamp" === s && (l = n); + } + return r === o ? r : t === n ? (e <= t ? r : o) : (t === -1 / 0 ? (l = -l) : n === 1 / 0 ? (l -= t) : (l = (l - t) / (n - t)), (l = a(l)), r === -1 / 0 ? (l = -l) : o === 1 / 0 ? (l += r) : (l = l * (o - r) + r), l); + })(e, a[t], a[t + 1], o[t], o[t + 1], c, i, s, r.map); + }; + }, + yd = 1.70158, + gd = 1.525 * yd, + bd = yd + 1, + Ed = (2 * Math.PI) / 3, + Dd = (2 * Math.PI) / 4.5, + Cd = (e) => { + const t = 7.5625, + n = 2.75; + return e < 1 / n ? t * e * e : e < 2 / n ? t * (e -= 1.5 / n) * e + 0.75 : e < 2.5 / n ? t * (e -= 2.25 / n) * e + 0.9375 : t * (e -= 2.625 / n) * e + 0.984375; + }, + wd = { + linear: (e) => e, + easeInQuad: (e) => e * e, + easeOutQuad: (e) => 1 - (1 - e) * (1 - e), + easeInOutQuad: (e) => (e < 0.5 ? 2 * e * e : 1 - Math.pow(-2 * e + 2, 2) / 2), + easeInCubic: (e) => e * e * e, + easeOutCubic: (e) => 1 - Math.pow(1 - e, 3), + easeInOutCubic: (e) => (e < 0.5 ? 4 * e * e * e : 1 - Math.pow(-2 * e + 2, 3) / 2), + easeInQuart: (e) => e * e * e * e, + easeOutQuart: (e) => 1 - Math.pow(1 - e, 4), + easeInOutQuart: (e) => (e < 0.5 ? 8 * e * e * e * e : 1 - Math.pow(-2 * e + 2, 4) / 2), + easeInQuint: (e) => e * e * e * e * e, + easeOutQuint: (e) => 1 - Math.pow(1 - e, 5), + easeInOutQuint: (e) => (e < 0.5 ? 16 * e * e * e * e * e : 1 - Math.pow(-2 * e + 2, 5) / 2), + easeInSine: (e) => 1 - Math.cos((e * Math.PI) / 2), + easeOutSine: (e) => Math.sin((e * Math.PI) / 2), + easeInOutSine: (e) => -(Math.cos(Math.PI * e) - 1) / 2, + easeInExpo: (e) => (0 === e ? 0 : Math.pow(2, 10 * e - 10)), + easeOutExpo: (e) => (1 === e ? 1 : 1 - Math.pow(2, -10 * e)), + easeInOutExpo: (e) => (0 === e ? 0 : 1 === e ? 1 : e < 0.5 ? Math.pow(2, 20 * e - 10) / 2 : (2 - Math.pow(2, -20 * e + 10)) / 2), + easeInCirc: (e) => 1 - Math.sqrt(1 - Math.pow(e, 2)), + easeOutCirc: (e) => Math.sqrt(1 - Math.pow(e - 1, 2)), + easeInOutCirc: (e) => (e < 0.5 ? (1 - Math.sqrt(1 - Math.pow(2 * e, 2))) / 2 : (Math.sqrt(1 - Math.pow(-2 * e + 2, 2)) + 1) / 2), + easeInBack: (e) => bd * e * e * e - yd * e * e, + easeOutBack: (e) => 1 + bd * Math.pow(e - 1, 3) + yd * Math.pow(e - 1, 2), + easeInOutBack: (e) => (e < 0.5 ? (Math.pow(2 * e, 2) * (7.189819 * e - gd)) / 2 : (Math.pow(2 * e - 2, 2) * ((gd + 1) * (2 * e - 2) + gd) + 2) / 2), + easeInElastic: (e) => (0 === e ? 0 : 1 === e ? 1 : -Math.pow(2, 10 * e - 10) * Math.sin((10 * e - 10.75) * Ed)), + easeOutElastic: (e) => (0 === e ? 0 : 1 === e ? 1 : Math.pow(2, -10 * e) * Math.sin((10 * e - 0.75) * Ed) + 1), + easeInOutElastic: (e) => (0 === e ? 0 : 1 === e ? 1 : e < 0.5 ? (-Math.pow(2, 20 * e - 10) * Math.sin((20 * e - 11.125) * Dd)) / 2 : (Math.pow(2, -20 * e + 10) * Math.sin((20 * e - 11.125) * Dd)) / 2 + 1), + easeInBounce: (e) => 1 - Cd(1 - e), + easeOutBounce: Cd, + easeInOutBounce: (e) => (e < 0.5 ? (1 - Cd(1 - 2 * e)) / 2 : (1 + Cd(2 * e - 1)) / 2), + steps: (e, t = "end") => (n) => { + const r = (n = "end" === t ? Math.min(n, 0.999) : Math.max(n, 0.001)) * e; + return 0, 1, (o = ("end" === t ? Math.floor(r) : Math.ceil(r)) / e), Math.min(Math.max(o, 0), 1); + var o; + }, + }, + Sd = Symbol.for("FluidValue.get"), + Ad = Symbol.for("FluidValue.observers"), + kd = (e) => Boolean(e && e[Sd]), + _d = (e) => (e && e[Sd] ? e[Sd]() : e), + Td = (e) => e[Ad] || null; + function Id(e, t) { + const n = e[Ad]; + n && + n.forEach((e) => { + !(function (e, t) { + e.eventObserved ? e.eventObserved(t) : e(t); + })(e, t); + }); + } + var Od = class { + constructor(e) { + if (!e && !(e = this.get)) throw Error("Unknown getter"); + Fd(this, e); + } + }, + Fd = (e, t) => Ld(e, Sd, t); + function xd(e, t) { + if (e[Sd]) { + let n = e[Ad]; + n || Ld(e, Ad, (n = new Set())), n.has(t) || (n.add(t), e.observerAdded && e.observerAdded(n.size, t)); + } + return t; + } + function Nd(e, t) { + const n = e[Ad]; + if (n && n.has(t)) { + const r = n.size - 1; + r ? n.delete(t) : (e[Ad] = null), e.observerRemoved && e.observerRemoved(r, t); + } + } + var Rd, + Ld = (e, t, n) => Object.defineProperty(e, t, { value: n, writable: !0, configurable: !0 }), + Md = /[+\-]?(?:0|[1-9]\d*)(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, + Pd = /(#(?:[0-9a-f]{2}){2,4}|(#[0-9a-f]{3})|(rgb|hsl)a?\((-?\d+%?[,\s]+){2,3}\s*[\d\.]+%?\))/gi, + jd = new RegExp(`(${Md.source})(%|[a-z]+)`, "i"), + Bd = /rgba\(([0-9\.-]+), ([0-9\.-]+), ([0-9\.-]+), ([0-9\.-]+)\)/gi, + Zd = /var\((--[a-zA-Z0-9-_]+),? ?([a-zA-Z0-9 ()%#.,-]+)?\)/, + Ud = (e) => { + const [t, n] = zd(e); + if (!t || ju()) return e; + const r = window.getComputedStyle(document.documentElement).getPropertyValue(t); + if (r) return r.trim(); + if (n && n.startsWith("--")) { + return window.getComputedStyle(document.documentElement).getPropertyValue(n) || e; + } + return n && Zd.test(n) ? Ud(n) : n || e; + }, + zd = (e) => { + const t = Zd.exec(e); + if (!t) return [,]; + const [, n, r] = t; + return [n, r]; + }, + Vd = (e, t, n, r, o) => `rgba(${Math.round(t)}, ${Math.round(n)}, ${Math.round(r)}, ${o})`, + Hd = (e) => { + Rd || (Rd = Bu ? new RegExp(`(${Object.keys(Bu).join("|")})(?!\\w)`, "g") : /^\b$/); + const t = e.output.map((e) => _d(e).replace(Zd, Ud).replace(Pd, hd).replace(Rd, hd)), + n = t.map((e) => e.match(Md).map(Number)), + r = n[0] + .map((e, t) => + n.map((e) => { + if (!(t in e)) throw Error('The arity of each "output" value must be equal'); + return e[t]; + }) + ) + .map((t) => vd({ ...e, output: t })); + return (e) => { + const n = !jd.test(t[0]) && t.find((e) => jd.test(e))?.replace(Md, ""); + let o = 0; + return t[0].replace(Md, () => `${r[o++](e)}${n || ""}`).replace(Bd, Vd); + }; + }, + Gd = "react-spring: ", + Wd = (e) => { + const t = e; + let n = !1; + if ("function" != typeof t) throw new TypeError(`${Gd}once requires a function parameter`); + return (...e) => { + n || (t(...e), (n = !0)); + }; + }, + Qd = Wd(console.warn), + Jd = Wd(console.warn); + function Yd(e) { + return Iu.str(e) && ("#" == e[0] || /\d/.test(e) || (!ju() && Zd.test(e)) || e in (Bu || {})); + } + var qd = ju() ? z.useEffect : z.useLayoutEffect, + Xd = () => { + const e = (0, z.useRef)(!1); + return ( + qd( + () => ( + (e.current = !0), + () => { + e.current = !1; + } + ), + [] + ), + e + ); + }; + function Kd() { + const e = (0, z.useState)()[1], + t = Xd(); + return () => { + t.current && e(Math.random()); + }; + } + var $d = (e) => (0, z.useEffect)(e, ep), + ep = []; + function tp(e) { + const t = (0, z.useRef)(); + return ( + (0, z.useEffect)(() => { + t.current = e; + }), + t.current + ); + } + var np = Symbol.for("Animated:node"), + rp = (e) => e && e[np], + op = (e, t) => { + return (n = e), (r = np), (o = t), Object.defineProperty(n, r, { value: o, writable: !0, configurable: !0 }); + var n, r, o; + }, + ap = (e) => e && e[np] && e[np].getPayload(), + ip = class { + constructor() { + op(this, this); + } + getPayload() { + return this.payload || []; + } + }, + sp = class extends ip { + constructor(e) { + super(), (this._value = e), (this.done = !0), (this.durationProgress = 0), Iu.num(this._value) && (this.lastPosition = this._value); + } + static create(e) { + return new sp(e); + } + getPayload() { + return [this]; + } + getValue() { + return this._value; + } + setValue(e, t) { + return Iu.num(e) && ((this.lastPosition = e), t && ((e = Math.round(e / t) * t), this.done && (this.lastPosition = e))), this._value !== e && ((this._value = e), !0); + } + reset() { + const { done: e } = this; + (this.done = !1), Iu.num(this._value) && ((this.elapsedTime = 0), (this.durationProgress = 0), (this.lastPosition = this._value), e && (this.lastVelocity = null), (this.v0 = null)); + } + }, + cp = class extends sp { + constructor(e) { + super(0), (this._string = null), (this._toString = vd({ output: [e, e] })); + } + static create(e) { + return new cp(e); + } + getValue() { + const e = this._string; + return null == e ? (this._string = this._toString(this._value)) : e; + } + setValue(e) { + if (Iu.str(e)) { + if (e == this._string) return !1; + (this._string = e), (this._value = 1); + } else { + if (!super.setValue(e)) return !1; + this._string = null; + } + return !0; + } + reset(e) { + e && (this._toString = vd({ output: [this.getValue(), e] })), (this._value = 0), super.reset(); + } + }, + lp = { dependencies: null }, + up = class extends ip { + constructor(e) { + super(), (this.source = e), this.setValue(e); + } + getValue(e) { + const t = {}; + return ( + xu(this.source, (n, r) => { + var o; + (o = n) && o[np] === o ? (t[r] = n.getValue(e)) : kd(n) ? (t[r] = _d(n)) : e || (t[r] = n); + }), + t + ); + } + setValue(e) { + (this.source = e), (this.payload = this._makePayload(e)); + } + reset() { + this.payload && Fu(this.payload, (e) => e.reset()); + } + _makePayload(e) { + if (e) { + const t = new Set(); + return xu(e, this._addToPayload, t), Array.from(t); + } + } + _addToPayload(e) { + lp.dependencies && kd(e) && lp.dependencies.add(e); + const t = ap(e); + t && Fu(t, (e) => this.add(e)); + } + }, + dp = class extends up { + constructor(e) { + super(e); + } + static create(e) { + return new dp(e); + } + getValue() { + return this.source.map((e) => e.getValue()); + } + setValue(e) { + const t = this.getPayload(); + return e.length == t.length ? t.map((t, n) => t.setValue(e[n])).some(Boolean) : (super.setValue(e.map(pp)), !0); + } + }; + function pp(e) { + return (Yd(e) ? cp : sp).create(e); + } + function fp(e) { + const t = rp(e); + return t ? t.constructor : Iu.arr(e) ? dp : Yd(e) ? cp : sp; + } + var mp = (e, t) => { + const n = !Iu.fun(e) || (e.prototype && e.prototype.isReactComponent); + return (0, z.forwardRef)((r, o) => { + const a = (0, z.useRef)(null), + i = + n && + (0, z.useCallback)( + (e) => { + a.current = (function (e, t) { + return e && (Iu.fun(e) ? e(t) : (e.current = t)), t; + })(o, e); + }, + [o] + ), + [s, c] = (function (e, t) { + const n = new Set(); + return (lp.dependencies = n), e.style && (e = { ...e, style: t.createAnimatedStyle(e.style) }), (e = new up(e)), (lp.dependencies = null), [e, n]; + })(r, t), + l = Kd(), + u = () => { + const e = a.current; + (n && !e) || (!1 === (!!e && t.applyAnimatedValues(e, s.getValue(!0))) && l()); + }, + d = new hp(u, c), + p = (0, z.useRef)(); + qd( + () => ( + (p.current = d), + Fu(c, (e) => xd(e, d)), + () => { + p.current && (Fu(p.current.deps, (e) => Nd(e, p.current)), du.cancel(p.current.update)); + } + ) + ), + (0, z.useEffect)(u, []), + $d(() => () => { + const e = p.current; + Fu(e.deps, (t) => Nd(t, e)); + }); + const f = t.getComponentProps(s.getValue()); + return z.createElement(e, { ...f, ref: i }); + }); + }, + hp = class { + constructor(e, t) { + (this.update = e), (this.deps = t); + } + eventObserved(e) { + "change" == e.type && du.write(this.update); + } + }, + vp = Symbol.for("AnimatedComponent"), + yp = (e) => (Iu.str(e) ? e : e && Iu.str(e.displayName) ? e.displayName : (Iu.fun(e) && e.name) || null); + function gp(e, ...t) { + return Iu.fun(e) ? e(...t) : e; + } + var bp = (e, t) => !0 === e || !!(t && e && (Iu.fun(e) ? e(t) : Nu(e).includes(t))), + Ep = (e, t) => (Iu.obj(e) ? t && e[t] : e), + Dp = (e, t) => (!0 === e.default ? e[t] : e.default ? e.default[t] : void 0), + Cp = (e) => e, + wp = (e, t = Cp) => { + let n = Sp; + e.default && !0 !== e.default && ((e = e.default), (n = Object.keys(e))); + const r = {}; + for (const o of n) { + const n = t(e[o], o); + Iu.und(n) || (r[o] = n); + } + return r; + }, + Sp = ["config", "onProps", "onStart", "onChange", "onPause", "onResume", "onRest"], + Ap = { + config: 1, + from: 1, + to: 1, + ref: 1, + loop: 1, + reset: 1, + pause: 1, + cancel: 1, + reverse: 1, + immediate: 1, + default: 1, + delay: 1, + onProps: 1, + onStart: 1, + onChange: 1, + onPause: 1, + onResume: 1, + onRest: 1, + onResolve: 1, + items: 1, + trail: 1, + sort: 1, + expires: 1, + initial: 1, + enter: 1, + update: 1, + leave: 1, + children: 1, + onDestroyed: 1, + keys: 1, + callId: 1, + parentId: 1, + }; + function kp(e) { + const t = (function (e) { + const t = {}; + let n = 0; + if ( + (xu(e, (e, r) => { + Ap[r] || ((t[r] = e), n++); + }), + n) + ) + return t; + })(e); + if (t) { + const n = { to: t }; + return xu(e, (e, r) => r in t || (n[r] = e)), n; + } + return { ...e }; + } + function _p(e) { + return (e = _d(e)), Iu.arr(e) ? e.map(_p) : Yd(e) ? lu.createStringInterpolator({ range: [0, 1], output: [e, e] })(1) : e; + } + function Tp(e) { + return Iu.fun(e) || (Iu.arr(e) && Iu.obj(e[0])); + } + var Ip = { + default: { tension: 170, friction: 26 }, + gentle: { tension: 120, friction: 14 }, + wobbly: { tension: 180, friction: 12 }, + stiff: { tension: 210, friction: 20 }, + slow: { tension: 280, friction: 60 }, + molasses: { tension: 280, friction: 120 }, + }, + Op = { ...Ip.default, mass: 1, damping: 1, easing: wd.linear, clamp: !1 }, + Fp = class { + constructor() { + (this.velocity = 0), Object.assign(this, Op); + } + }; + function xp(e, t) { + if (Iu.und(t.decay)) { + const n = !Iu.und(t.tension) || !Iu.und(t.friction); + (!n && Iu.und(t.frequency) && Iu.und(t.damping) && Iu.und(t.mass)) || ((e.duration = void 0), (e.decay = void 0)), n && (e.frequency = void 0); + } else e.duration = void 0; + } + var Np = [], + Rp = class { + constructor() { + (this.changed = !1), (this.values = Np), (this.toValues = null), (this.fromValues = Np), (this.config = new Fp()), (this.immediate = !1); + } + }; + function Lp(e, { key: t, props: n, defaultProps: r, state: o, actions: a }) { + return new Promise((i, s) => { + let c, + l, + u = bp(n.cancel ?? r?.cancel, t); + if (u) f(); + else { + Iu.und(n.pause) || (o.paused = bp(n.pause, t)); + let e = r?.pause; + !0 !== e && (e = o.paused || bp(e, t)), (c = gp(n.delay || 0, t)), e ? (o.resumeQueue.add(p), a.pause()) : (a.resume(), p()); + } + function d() { + o.resumeQueue.add(p), o.timeouts.delete(l), l.cancel(), (c = l.time - du.now()); + } + function p() { + c > 0 && !lu.skipAnimation ? ((o.delayed = !0), (l = du.setTimeout(f, c)), o.pauseQueue.add(d), o.timeouts.add(l)) : f(); + } + function f() { + o.delayed && (o.delayed = !1), o.pauseQueue.delete(d), o.timeouts.delete(l), e <= (o.cancelId || 0) && (u = !0); + try { + a.start({ ...n, callId: e, cancel: u }, i); + } catch (e) { + s(e); + } + } + }); + } + var Mp = (e, t) => + 1 == t.length + ? t[0] + : t.some((e) => e.cancelled) + ? Bp(e.get()) + : t.every((e) => e.noop) + ? Pp(e.get()) + : jp( + e.get(), + t.every((e) => e.finished) + ), + Pp = (e) => ({ value: e, noop: !0, finished: !0, cancelled: !1 }), + jp = (e, t, n = !1) => ({ value: e, finished: t, cancelled: n }), + Bp = (e) => ({ value: e, cancelled: !0, finished: !1 }); + function Zp(e, t, n, r) { + const { callId: o, parentId: a, onRest: i } = t, + { asyncTo: s, promise: c } = n; + return a || e !== s || t.reset + ? (n.promise = (async () => { + (n.asyncId = o), (n.asyncTo = e); + const l = wp(t, (e, t) => ("onRest" === t ? void 0 : e)); + let u, d; + const p = new Promise((e, t) => ((u = e), (d = t))), + f = (e) => { + const t = (o <= (n.cancelId || 0) && Bp(r)) || (o !== n.asyncId && jp(r, !1)); + if (t) throw ((e.result = t), d(e), e); + }, + m = (e, t) => { + const a = new zp(), + i = new Vp(); + return (async () => { + if (lu.skipAnimation) throw (Up(n), (i.result = jp(r, !1)), d(i), i); + f(a); + const s = Iu.obj(e) ? { ...e } : { ...t, to: e }; + (s.parentId = o), + xu(l, (e, t) => { + Iu.und(s[t]) && (s[t] = e); + }); + const c = await r.start(s); + return ( + f(a), + n.paused && + (await new Promise((e) => { + n.resumeQueue.add(e); + })), + c + ); + })(); + }; + let h; + if (lu.skipAnimation) return Up(n), jp(r, !1); + try { + let t; + (t = Iu.arr(e) + ? (async (e) => { + for (const t of e) await m(t); + })(e) + : Promise.resolve(e(m, r.stop.bind(r)))), + await Promise.all([t.then(u), p]), + (h = jp(r.get(), !0, !1)); + } catch (e) { + if (e instanceof zp) h = e.result; + else { + if (!(e instanceof Vp)) throw e; + h = e.result; + } + } finally { + o == n.asyncId && ((n.asyncId = a), (n.asyncTo = a ? s : void 0), (n.promise = a ? c : void 0)); + } + return ( + Iu.fun(i) && + du.batchedUpdates(() => { + i(h, r, r.item); + }), + h + ); + })()) + : c; + } + function Up(e, t) { + Ru(e.timeouts, (e) => e.cancel()), e.pauseQueue.clear(), e.resumeQueue.clear(), (e.asyncId = e.asyncTo = e.promise = void 0), t && (e.cancelId = t); + } + var zp = class extends Error { + constructor() { + super("An async animation has been interrupted. You see this error because you forgot to use `await` or `.catch(...)` on its returned promise."); + } + }, + Vp = class extends Error { + constructor() { + super("SkipAnimationSignal"); + } + }, + Hp = (e) => e instanceof Wp, + Gp = 1, + Wp = class extends Od { + constructor() { + super(...arguments), (this.id = Gp++), (this._priority = 0); + } + get priority() { + return this._priority; + } + set priority(e) { + this._priority != e && ((this._priority = e), this._onPriorityChange(e)); + } + get() { + const e = rp(this); + return e && e.getValue(); + } + to(...e) { + return lu.to(this, e); + } + interpolate(...e) { + return Qd(`${Gd}The "interpolate" function is deprecated in v9 (use "to" instead)`), lu.to(this, e); + } + toJSON() { + return this.get(); + } + observerAdded(e) { + 1 == e && this._attach(); + } + observerRemoved(e) { + 0 == e && this._detach(); + } + _attach() {} + _detach() {} + _onChange(e, t = !1) { + Id(this, { type: "change", parent: this, value: e, idle: t }); + } + _onPriorityChange(e) { + this.idle || Qu.sort(this), Id(this, { type: "priority", parent: this, priority: e }); + } + }, + Qp = Symbol.for("SpringPhase"), + Jp = (e) => (1 & e[Qp]) > 0, + Yp = (e) => (2 & e[Qp]) > 0, + qp = (e) => (4 & e[Qp]) > 0, + Xp = (e, t) => (t ? (e[Qp] |= 3) : (e[Qp] &= -3)), + Kp = (e, t) => (t ? (e[Qp] |= 4) : (e[Qp] &= -5)), + $p = class extends Wp { + constructor(e, t) { + if ( + (super(), + (this.animation = new Rp()), + (this.defaultProps = {}), + (this._state = { paused: !1, delayed: !1, pauseQueue: new Set(), resumeQueue: new Set(), timeouts: new Set() }), + (this._pendingCalls = new Set()), + (this._lastCallId = 0), + (this._lastToId = 0), + (this._memoizedDuration = 0), + !Iu.und(e) || !Iu.und(t)) + ) { + const n = Iu.obj(e) ? { ...e } : { ...t, from: e }; + Iu.und(n.default) && (n.default = !0), this.start(n); + } + } + get idle() { + return !(Yp(this) || this._state.asyncTo) || qp(this); + } + get goal() { + return _d(this.animation.to); + } + get velocity() { + const e = rp(this); + return e instanceof sp ? e.lastVelocity || 0 : e.getPayload().map((e) => e.lastVelocity || 0); + } + get hasAnimated() { + return Jp(this); + } + get isAnimating() { + return Yp(this); + } + get isPaused() { + return qp(this); + } + get isDelayed() { + return this._state.delayed; + } + advance(e) { + let t = !0, + n = !1; + const r = this.animation; + let { toValues: o } = r; + const { config: a } = r, + i = ap(r.to); + !i && kd(r.to) && (o = Nu(_d(r.to))), + r.values.forEach((s, c) => { + if (s.done) return; + const l = s.constructor == cp ? 1 : i ? i[c].lastPosition : o[c]; + let u = r.immediate, + d = l; + if (!u) { + if (((d = s.lastPosition), a.tension <= 0)) return void (s.done = !0); + let t = (s.elapsedTime += e); + const n = r.fromValues[c], + o = null != s.v0 ? s.v0 : (s.v0 = Iu.arr(a.velocity) ? a.velocity[c] : a.velocity); + let i; + const p = a.precision || (n == l ? 0.005 : Math.min(1, 0.001 * Math.abs(l - n))); + if (Iu.und(a.duration)) + if (a.decay) { + const e = !0 === a.decay ? 0.998 : a.decay, + r = Math.exp(-(1 - e) * t); + (d = n + (o / (1 - e)) * (1 - r)), (u = Math.abs(s.lastPosition - d) <= p), (i = o * r); + } else { + i = null == s.lastVelocity ? o : s.lastVelocity; + const t = a.restVelocity || p / 10, + r = a.clamp ? 0 : a.bounce, + c = !Iu.und(r), + f = n == l ? s.v0 > 0 : n < l; + let m, + h = !1; + const v = 1, + y = Math.ceil(e / v); + for (let e = 0; e < y && ((m = Math.abs(i) > t), m || ((u = Math.abs(l - d) <= p), !u)); ++e) + c && ((h = d == l || d > l == f), h && ((i = -i * r), (d = l))), (i += ((1e-6 * -a.tension * (d - l) + 0.001 * -a.friction * i) / a.mass) * v), (d += i * v); + } + else { + let r = 1; + a.duration > 0 && + (this._memoizedDuration !== a.duration && ((this._memoizedDuration = a.duration), s.durationProgress > 0 && ((s.elapsedTime = a.duration * s.durationProgress), (t = s.elapsedTime += e))), + (r = (a.progress || 0) + t / this._memoizedDuration), + (r = r > 1 ? 1 : r < 0 ? 0 : r), + (s.durationProgress = r)), + (d = n + a.easing(r) * (l - n)), + (i = (d - s.lastPosition) / e), + (u = 1 == r); + } + (s.lastVelocity = i), Number.isNaN(d) && (console.warn("Got NaN while animating:", this), (u = !0)); + } + i && !i[c].done && (u = !1), u ? (s.done = !0) : (t = !1), s.setValue(d, a.round) && (n = !0); + }); + const s = rp(this), + c = s.getValue(); + if (t) { + const e = _d(r.to); + (c === e && !n) || a.decay ? n && a.decay && this._onChange(c) : (s.setValue(e), this._onChange(e)), this._stop(); + } else n && this._onChange(c); + } + set(e) { + return ( + du.batchedUpdates(() => { + this._stop(), this._focus(e), this._set(e); + }), + this + ); + } + pause() { + this._update({ pause: !0 }); + } + resume() { + this._update({ pause: !1 }); + } + finish() { + if (Yp(this)) { + const { to: e, config: t } = this.animation; + du.batchedUpdates(() => { + this._onStart(), t.decay || this._set(e, !1), this._stop(); + }); + } + return this; + } + update(e) { + return (this.queue || (this.queue = [])).push(e), this; + } + start(e, t) { + let n; + return Iu.und(e) ? ((n = this.queue || []), (this.queue = [])) : (n = [Iu.obj(e) ? e : { ...t, to: e }]), Promise.all(n.map((e) => this._update(e))).then((e) => Mp(this, e)); + } + stop(e) { + const { to: t } = this.animation; + return this._focus(this.get()), Up(this._state, e && this._lastCallId), du.batchedUpdates(() => this._stop(t, e)), this; + } + reset() { + this._update({ reset: !0 }); + } + eventObserved(e) { + "change" == e.type ? this._start() : "priority" == e.type && (this.priority = e.priority + 1); + } + _prepareNode(e) { + const t = this.key || ""; + let { to: n, from: r } = e; + (n = Iu.obj(n) ? n[t] : n), (null == n || Tp(n)) && (n = void 0), (r = Iu.obj(r) ? r[t] : r), null == r && (r = void 0); + const o = { to: n, from: r }; + return Jp(this) || (e.reverse && ([n, r] = [r, n]), (r = _d(r)), Iu.und(r) ? rp(this) || this._set(n) : this._set(r)), o; + } + _update({ ...e }, t) { + const { key: n, defaultProps: r } = this; + e.default && + Object.assign( + r, + wp(e, (e, t) => (/^on/.test(t) ? Ep(e, n) : e)) + ), + sf(this, e, "onProps"), + cf(this, "onProps", e, this); + const o = this._prepareNode(e); + if (Object.isFrozen(this)) throw Error("Cannot animate a `SpringValue` object that is frozen. Did you forget to pass your component to `animated(...)` before animating its props?"); + const a = this._state; + return Lp(++this._lastCallId, { + key: n, + props: e, + defaultProps: r, + state: a, + actions: { + pause: () => { + qp(this) || (Kp(this, !0), Pu(a.pauseQueue), cf(this, "onPause", jp(this, ef(this, this.animation.to)), this)); + }, + resume: () => { + qp(this) && (Kp(this, !1), Yp(this) && this._resume(), Pu(a.resumeQueue), cf(this, "onResume", jp(this, ef(this, this.animation.to)), this)); + }, + start: this._merge.bind(this, o), + }, + }).then((n) => { + if (e.loop && n.finished && (!t || !n.noop)) { + const t = tf(e); + if (t) return this._update(t, !0); + } + return n; + }); + } + _merge(e, t, n) { + if (t.cancel) return this.stop(!0), n(Bp(this)); + const r = !Iu.und(e.to), + o = !Iu.und(e.from); + if (r || o) { + if (!(t.callId > this._lastToId)) return n(Bp(this)); + this._lastToId = t.callId; + } + const { key: a, defaultProps: i, animation: s } = this, + { to: c, from: l } = s; + let { to: u = c, from: d = l } = e; + !o || r || (t.default && !Iu.und(u)) || (u = d), t.reverse && ([u, d] = [d, u]); + const p = !Ou(d, l); + p && (s.from = d), (d = _d(d)); + const f = !Ou(u, c); + f && this._focus(u); + const m = Tp(t.to), + { config: h } = s, + { decay: v, velocity: y } = h; + (r || o) && (h.velocity = 0), + t.config && + !m && + (function (e, t, n) { + n && (xp((n = { ...n }), t), (t = { ...n, ...t })), xp(e, t), Object.assign(e, t); + for (const t in Op) null == e[t] && (e[t] = Op[t]); + let { frequency: r, damping: o } = e; + const { mass: a } = e; + Iu.und(r) || (r < 0.01 && (r = 0.01), o < 0 && (o = 0), (e.tension = Math.pow((2 * Math.PI) / r, 2) * a), (e.friction = (4 * Math.PI * o * a) / r)); + })(h, gp(t.config, a), t.config !== i.config ? gp(i.config, a) : void 0); + let g = rp(this); + if (!g || Iu.und(u)) return n(jp(this, !0)); + const b = Iu.und(t.reset) ? o && !t.default : !Iu.und(d) && bp(t.reset, a), + E = b ? d : this.get(), + D = _p(u), + C = Iu.num(D) || Iu.arr(D) || Yd(D), + w = !m && (!C || bp(i.immediate || t.immediate, a)); + if (f) { + const e = fp(u); + if (e !== g.constructor) { + if (!w) throw Error(`Cannot animate between ${g.constructor.name} and ${e.name}, as the "to" prop suggests`); + g = this._set(D); + } + } + const S = g.constructor; + let A = kd(u), + k = !1; + if (!A) { + const e = b || (!Jp(this) && p); + (f || e) && ((k = Ou(_p(E), D)), (A = !k)), ((Ou(s.immediate, w) || w) && Ou(h.decay, v) && Ou(h.velocity, y)) || (A = !0); + } + if ( + (k && Yp(this) && (s.changed && !b ? (A = !0) : A || this._stop(c)), + !m && ((A || kd(c)) && ((s.values = g.getPayload()), (s.toValues = kd(u) ? null : S == cp ? [1] : Nu(D))), s.immediate != w && ((s.immediate = w), w || b || this._set(c)), A)) + ) { + const { onRest: e } = s; + Fu(af, (e) => sf(this, t, e)); + const r = jp(this, ef(this, c)); + Pu(this._pendingCalls, r), + this._pendingCalls.add(n), + s.changed && + du.batchedUpdates(() => { + (s.changed = !b), e?.(r, this), b ? gp(i.onRest, r) : s.onStart?.(r, this); + }); + } + b && this._set(E), m ? n(Zp(t.to, t, this._state, this)) : A ? this._start() : Yp(this) && !f ? this._pendingCalls.add(n) : n(Pp(E)); + } + _focus(e) { + const t = this.animation; + e !== t.to && (Td(this) && this._detach(), (t.to = e), Td(this) && this._attach()); + } + _attach() { + let e = 0; + const { to: t } = this.animation; + kd(t) && (xd(t, this), Hp(t) && (e = t.priority + 1)), (this.priority = e); + } + _detach() { + const { to: e } = this.animation; + kd(e) && Nd(e, this); + } + _set(e, t = !0) { + const n = _d(e); + if (!Iu.und(n)) { + const e = rp(this); + if (!e || !Ou(n, e.getValue())) { + const r = fp(n); + e && e.constructor == r ? e.setValue(n) : op(this, r.create(n)), + e && + du.batchedUpdates(() => { + this._onChange(n, t); + }); + } + } + return rp(this); + } + _onStart() { + const e = this.animation; + e.changed || ((e.changed = !0), cf(this, "onStart", jp(this, ef(this, e.to)), this)); + } + _onChange(e, t) { + t || (this._onStart(), gp(this.animation.onChange, e, this)), gp(this.defaultProps.onChange, e, this), super._onChange(e, t); + } + _start() { + const e = this.animation; + rp(this).reset(_d(e.to)), e.immediate || (e.fromValues = e.values.map((e) => e.lastPosition)), Yp(this) || (Xp(this, !0), qp(this) || this._resume()); + } + _resume() { + lu.skipAnimation ? this.finish() : Qu.start(this); + } + _stop(e, t) { + if (Yp(this)) { + Xp(this, !1); + const n = this.animation; + Fu(n.values, (e) => { + e.done = !0; + }), + n.toValues && (n.onChange = n.onPause = n.onResume = void 0), + Id(this, { type: "idle", parent: this }); + const r = t ? Bp(this.get()) : jp(this.get(), ef(this, e ?? n.to)); + Pu(this._pendingCalls, r), n.changed && ((n.changed = !1), cf(this, "onRest", r, this)); + } + } + }; + function ef(e, t) { + const n = _p(t); + return Ou(_p(e.get()), n); + } + function tf(e, t = e.loop, n = e.to) { + const r = gp(t); + if (r) { + const o = !0 !== r && kp(r), + a = (o || e).reverse, + i = !o || o.reset; + return nf({ ...e, loop: t, default: !1, pause: void 0, to: !a || Tp(n) ? n : void 0, from: i ? e.from : void 0, reset: i, ...o }); + } + } + function nf(e) { + const { to: t, from: n } = (e = kp(e)), + r = new Set(); + return Iu.obj(t) && of(t, r), Iu.obj(n) && of(n, r), (e.keys = r.size ? Array.from(r) : null), e; + } + function rf(e) { + const t = nf(e); + return Iu.und(t.default) && (t.default = wp(t)), t; + } + function of(e, t) { + xu(e, (e, n) => null != e && t.add(n)); + } + var af = ["onStart", "onRest", "onChange", "onPause", "onResume"]; + function sf(e, t, n) { + e.animation[n] = t[n] !== Dp(t, n) ? Ep(t[n], e.key) : void 0; + } + function cf(e, t, ...n) { + e.animation[t]?.(...n), e.defaultProps[t]?.(...n); + } + var lf = ["onStart", "onChange", "onRest"], + uf = 1, + df = class { + constructor(e, t) { + (this.id = uf++), + (this.springs = {}), + (this.queue = []), + (this._lastAsyncId = 0), + (this._active = new Set()), + (this._changed = new Set()), + (this._started = !1), + (this._state = { paused: !1, pauseQueue: new Set(), resumeQueue: new Set(), timeouts: new Set() }), + (this._events = { onStart: new Map(), onChange: new Map(), onRest: new Map() }), + (this._onFrame = this._onFrame.bind(this)), + t && (this._flush = t), + e && this.start({ default: !0, ...e }); + } + get idle() { + return !this._state.asyncTo && Object.values(this.springs).every((e) => e.idle && !e.isDelayed && !e.isPaused); + } + get item() { + return this._item; + } + set item(e) { + this._item = e; + } + get() { + const e = {}; + return this.each((t, n) => (e[n] = t.get())), e; + } + set(e) { + for (const t in e) { + const n = e[t]; + Iu.und(n) || this.springs[t].set(n); + } + } + update(e) { + return e && this.queue.push(nf(e)), this; + } + start(e) { + let { queue: t } = this; + return e ? (t = Nu(e).map(nf)) : (this.queue = []), this._flush ? this._flush(this, t) : (gf(this, t), pf(this, t)); + } + stop(e, t) { + if ((e !== !!e && (t = e), t)) { + const n = this.springs; + Fu(Nu(t), (t) => n[t].stop(!!e)); + } else Up(this._state, this._lastAsyncId), this.each((t) => t.stop(!!e)); + return this; + } + pause(e) { + if (Iu.und(e)) this.start({ pause: !0 }); + else { + const t = this.springs; + Fu(Nu(e), (e) => t[e].pause()); + } + return this; + } + resume(e) { + if (Iu.und(e)) this.start({ pause: !1 }); + else { + const t = this.springs; + Fu(Nu(e), (e) => t[e].resume()); + } + return this; + } + each(e) { + xu(this.springs, e); + } + _onFrame() { + const { onStart: e, onChange: t, onRest: n } = this._events, + r = this._active.size > 0, + o = this._changed.size > 0; + ((r && !this._started) || (o && !this._started)) && + ((this._started = !0), + Ru(e, ([e, t]) => { + (t.value = this.get()), e(t, this, this._item); + })); + const a = !r && this._started, + i = o || (a && n.size) ? this.get() : null; + o && + t.size && + Ru(t, ([e, t]) => { + (t.value = i), e(t, this, this._item); + }), + a && + ((this._started = !1), + Ru(n, ([e, t]) => { + (t.value = i), e(t, this, this._item); + })); + } + eventObserved(e) { + if ("change" == e.type) this._changed.add(e.parent), e.idle || this._active.add(e.parent); + else { + if ("idle" != e.type) return; + this._active.delete(e.parent); + } + du.onFrame(this._onFrame); + } + }; + function pf(e, t) { + return Promise.all(t.map((t) => ff(e, t))).then((t) => Mp(e, t)); + } + async function ff(e, t, n) { + const { keys: r, to: o, from: a, loop: i, onRest: s, onResolve: c } = t, + l = Iu.obj(t.default) && t.default; + i && (t.loop = !1), !1 === o && (t.to = null), !1 === a && (t.from = null); + const u = Iu.arr(o) || Iu.fun(o) ? o : void 0; + u + ? ((t.to = void 0), (t.onRest = void 0), l && (l.onRest = void 0)) + : Fu(lf, (n) => { + const r = t[n]; + if (Iu.fun(r)) { + const o = e._events[n]; + (t[n] = ({ finished: e, cancelled: t }) => { + const n = o.get(r); + n ? (e || (n.finished = !1), t && (n.cancelled = !0)) : o.set(r, { value: null, finished: e || !1, cancelled: t || !1 }); + }), + l && (l[n] = t[n]); + } + }); + const d = e._state; + t.pause === !d.paused ? ((d.paused = t.pause), Pu(t.pause ? d.pauseQueue : d.resumeQueue)) : d.paused && (t.pause = !0); + const p = (r || Object.keys(e.springs)).map((n) => e.springs[n].start(t)), + f = !0 === t.cancel || !0 === Dp(t, "cancel"); + (u || (f && d.asyncId)) && + p.push( + Lp(++e._lastAsyncId, { + props: t, + state: d, + actions: { + pause: Tu, + resume: Tu, + start(t, n) { + f ? (Up(d, e._lastAsyncId), n(Bp(e))) : ((t.onRest = s), n(Zp(u, t, d, e))); + }, + }, + }) + ), + d.paused && + (await new Promise((e) => { + d.resumeQueue.add(e); + })); + const m = Mp(e, await Promise.all(p)); + if (i && m.finished && (!n || !m.noop)) { + const n = tf(t, i, o); + if (n) return gf(e, [n]), ff(e, n, !0); + } + return c && du.batchedUpdates(() => c(m, e, e.item)), m; + } + function mf(e, t) { + const n = { ...e.springs }; + return ( + t && + Fu(Nu(t), (e) => { + Iu.und(e.keys) && (e = nf(e)), Iu.obj(e.to) || (e = { ...e, to: void 0 }), yf(n, e, (e) => vf(e)); + }), + hf(e, n), + n + ); + } + function hf(e, t) { + xu(t, (t, n) => { + e.springs[n] || ((e.springs[n] = t), xd(t, e)); + }); + } + function vf(e, t) { + const n = new $p(); + return (n.key = e), t && xd(n, t), n; + } + function yf(e, t, n) { + t.keys && + Fu(t.keys, (r) => { + (e[r] || (e[r] = n(r)))._prepareNode(t); + }); + } + function gf(e, t) { + Fu(t, (t) => { + yf(e.springs, t, (t) => vf(t, e)); + }); + } + var bf, + Ef, + Df = ({ children: e, ...t }) => { + const n = (0, z.useContext)(Cf), + r = t.pause || !!n.pause, + o = t.immediate || !!n.immediate; + t = (function (e, t) { + const [n] = (0, z.useState)(() => ({ inputs: t, result: e() })), + r = (0, z.useRef)(), + o = r.current; + let a = o; + return ( + a + ? Boolean( + t && + a.inputs && + (function (e, t) { + if (e.length !== t.length) return !1; + for (let n = 0; n < e.length; n++) if (e[n] !== t[n]) return !1; + return !0; + })(t, a.inputs) + ) || (a = { inputs: t, result: e() }) + : (a = n), + (0, z.useEffect)(() => { + (r.current = a), o == n && (n.inputs = n.result = void 0); + }, [a]), + a.result + ); + })(() => ({ pause: r, immediate: o }), [r, o]); + const { Provider: a } = Cf; + return z.createElement(a, { value: t }, e); + }, + Cf = ((bf = Df), (Ef = {}), Object.assign(bf, z.createContext(Ef)), (bf.Provider._context = bf), (bf.Consumer._context = bf), bf); + (Df.Provider = Cf.Provider), (Df.Consumer = Cf.Consumer); + var wf = () => { + const e = [], + t = function (t) { + Jd(`${Gd}Directly calling start instead of using the api object is deprecated in v9 (use ".start" instead), this will be removed in later 0.X.0 versions`); + const r = []; + return ( + Fu(e, (e, o) => { + if (Iu.und(t)) r.push(e.start()); + else { + const a = n(t, e, o); + a && r.push(e.start(a)); + } + }), + r + ); + }; + (t.current = e), + (t.add = function (t) { + e.includes(t) || e.push(t); + }), + (t.delete = function (t) { + const n = e.indexOf(t); + ~n && e.splice(n, 1); + }), + (t.pause = function () { + return Fu(e, (e) => e.pause(...arguments)), this; + }), + (t.resume = function () { + return Fu(e, (e) => e.resume(...arguments)), this; + }), + (t.set = function (t) { + Fu(e, (e, n) => { + const r = Iu.fun(t) ? t(n, e) : t; + r && e.set(r); + }); + }), + (t.start = function (t) { + const n = []; + return ( + Fu(e, (e, r) => { + if (Iu.und(t)) n.push(e.start()); + else { + const o = this._getProps(t, e, r); + o && n.push(e.start(o)); + } + }), + n + ); + }), + (t.stop = function () { + return Fu(e, (e) => e.stop(...arguments)), this; + }), + (t.update = function (t) { + return Fu(e, (e, n) => e.update(this._getProps(t, e, n))), this; + }); + const n = function (e, t, n) { + return Iu.fun(e) ? e(n, t) : e; + }; + return (t._getProps = n), t; + }; + function Sf(e, t) { + const n = Iu.fun(e), + [[r], o] = (function (e, t, n) { + const r = Iu.fun(t) && t; + r && !n && (n = []); + const o = (0, z.useMemo)(() => (r || 3 == arguments.length ? wf() : void 0), []), + a = (0, z.useRef)(0), + i = Kd(), + s = (0, z.useMemo)( + () => ({ + ctrls: [], + queue: [], + flush(e, t) { + const n = mf(e, t); + return a.current > 0 && !s.queue.length && !Object.keys(n).some((t) => !e.springs[t]) + ? pf(e, t) + : new Promise((r) => { + hf(e, n), + s.queue.push(() => { + r(pf(e, t)); + }), + i(); + }); + }, + }), + [] + ), + c = (0, z.useRef)([...s.ctrls]), + l = [], + u = tp(e) || 0; + function d(e, n) { + for (let o = e; o < n; o++) { + const e = c.current[o] || (c.current[o] = new df(null, s.flush)), + n = r ? r(o, e) : t[o]; + n && (l[o] = rf(n)); + } + } + (0, z.useMemo)(() => { + Fu(c.current.slice(e, u), (e) => { + (function (e, t) { + e.ref?.delete(e), t?.delete(e); + })(e, o), + e.stop(!0); + }), + (c.current.length = e), + d(u, e); + }, [e]), + (0, z.useMemo)(() => { + d(0, Math.min(u, e)); + }, n); + const p = c.current.map((e, t) => mf(e, l[t])), + f = (0, z.useContext)(Df), + m = tp(f), + h = + f !== m && + (function (e) { + for (const t in e) return !0; + return !1; + })(f); + qd(() => { + a.current++, (s.ctrls = c.current); + const { queue: e } = s; + e.length && ((s.queue = []), Fu(e, (e) => e())), + Fu(c.current, (e, t) => { + o?.add(e), h && e.start({ default: f }); + const n = l[t]; + n && + ((function (e, t) { + t && e.ref !== t && (e.ref?.delete(e), t.add(e), (e.ref = t)); + })(e, n.ref), + e.ref ? e.queue.push(n) : e.start(n)); + }); + }), + $d(() => () => { + Fu(s.ctrls, (e) => e.stop(!0)); + }); + const v = p.map((e) => ({ ...e })); + return o ? [v, o] : v; + })(1, n ? e : [e], n ? t || [] : t); + return n || 2 == arguments.length ? [r, o] : r; + } + var Af = class extends Wp { + constructor(e, t) { + super(), (this.source = e), (this.idle = !0), (this._active = new Set()), (this.calc = vd(...t)); + const n = this._get(), + r = fp(n); + op(this, r.create(n)); + } + advance(e) { + const t = this._get(); + Ou(t, this.get()) || (rp(this).setValue(t), this._onChange(t, this.idle)), !this.idle && _f(this._active) && Tf(this); + } + _get() { + const e = Iu.arr(this.source) ? this.source.map(_d) : Nu(_d(this.source)); + return this.calc(...e); + } + _start() { + this.idle && + !_f(this._active) && + ((this.idle = !1), + Fu(ap(this), (e) => { + e.done = !1; + }), + lu.skipAnimation ? (du.batchedUpdates(() => this.advance()), Tf(this)) : Qu.start(this)); + } + _attach() { + let e = 1; + Fu(Nu(this.source), (t) => { + kd(t) && xd(t, this), Hp(t) && (t.idle || this._active.add(t), (e = Math.max(e, t.priority + 1))); + }), + (this.priority = e), + this._start(); + } + _detach() { + Fu(Nu(this.source), (e) => { + kd(e) && Nd(e, this); + }), + this._active.clear(), + Tf(this); + } + eventObserved(e) { + "change" == e.type + ? e.idle + ? this.advance() + : (this._active.add(e.parent), this._start()) + : "idle" == e.type + ? this._active.delete(e.parent) + : "priority" == e.type && (this.priority = Nu(this.source).reduce((e, t) => Math.max(e, (Hp(t) ? t.priority : 0) + 1), 0)); + } + }; + function kf(e) { + return !1 !== e.idle; + } + function _f(e) { + return !e.size || Array.from(e).every(kf); + } + function Tf(e) { + e.idle || + ((e.idle = !0), + Fu(ap(e), (e) => { + e.done = !0; + }), + Id(e, { type: "idle", parent: e })); + } + lu.assign({ createStringInterpolator: Hd, to: (e, t) => new Af(e, t) }), Qu.advance; + var If = /^--/; + function Of(e, t) { + return null == t || "boolean" == typeof t || "" === t ? "" : "number" != typeof t || 0 === t || If.test(e) || (xf.hasOwnProperty(e) && xf[e]) ? ("" + t).trim() : t + "px"; + } + var Ff = {}, + xf = { + animationIterationCount: !0, + borderImageOutset: !0, + borderImageSlice: !0, + borderImageWidth: !0, + boxFlex: !0, + boxFlexGroup: !0, + boxOrdinalGroup: !0, + columnCount: !0, + columns: !0, + flex: !0, + flexGrow: !0, + flexPositive: !0, + flexShrink: !0, + flexNegative: !0, + flexOrder: !0, + gridRow: !0, + gridRowEnd: !0, + gridRowSpan: !0, + gridRowStart: !0, + gridColumn: !0, + gridColumnEnd: !0, + gridColumnSpan: !0, + gridColumnStart: !0, + fontWeight: !0, + lineClamp: !0, + lineHeight: !0, + opacity: !0, + order: !0, + orphans: !0, + tabSize: !0, + widows: !0, + zIndex: !0, + zoom: !0, + fillOpacity: !0, + floodOpacity: !0, + stopOpacity: !0, + strokeDasharray: !0, + strokeDashoffset: !0, + strokeMiterlimit: !0, + strokeOpacity: !0, + strokeWidth: !0, + }, + Nf = ["Webkit", "Ms", "Moz", "O"]; + xf = Object.keys(xf).reduce((e, t) => (Nf.forEach((n) => (e[((e, t) => e + t.charAt(0).toUpperCase() + t.substring(1))(n, t)] = e[t])), e), xf); + var Rf = /^(matrix|translate|scale|rotate|skew)/, + Lf = /^(translate)/, + Mf = /^(rotate|skew)/, + Pf = (e, t) => (Iu.num(e) && 0 !== e ? e + t : e), + jf = (e, t) => (Iu.arr(e) ? e.every((e) => jf(e, t)) : Iu.num(e) ? e === t : parseFloat(e) === t), + Bf = class extends up { + constructor({ x: e, y: t, z: n, ...r }) { + const o = [], + a = []; + (e || t || n) && (o.push([e || 0, t || 0, n || 0]), a.push((e) => [`translate3d(${e.map((e) => Pf(e, "px")).join(",")})`, jf(e, 0)])), + xu(r, (e, t) => { + if ("transform" === t) o.push([e || ""]), a.push((e) => [e, "" === e]); + else if (Rf.test(t)) { + if ((delete r[t], Iu.und(e))) return; + const n = Lf.test(t) ? "px" : Mf.test(t) ? "deg" : ""; + o.push(Nu(e)), a.push("rotate3d" === t ? ([e, t, r, o]) => [`rotate3d(${e},${t},${r},${Pf(o, n)})`, jf(o, 0)] : (e) => [`${t}(${e.map((e) => Pf(e, n)).join(",")})`, jf(e, t.startsWith("scale") ? 1 : 0)]); + } + }), + o.length && (r.transform = new Zf(o, a)), + super(r); + } + }, + Zf = class extends Od { + constructor(e, t) { + super(), (this.inputs = e), (this.transforms = t), (this._value = null); + } + get() { + return this._value || (this._value = this._get()); + } + _get() { + let e = "", + t = !0; + return ( + Fu(this.inputs, (n, r) => { + const o = _d(n[0]), + [a, i] = this.transforms[r](Iu.arr(o) ? o : n.map(_d)); + (e += " " + a), (t = t && i); + }), + t ? "none" : e + ); + } + observerAdded(e) { + 1 == e && Fu(this.inputs, (e) => Fu(e, (e) => kd(e) && xd(e, this))); + } + observerRemoved(e) { + 0 == e && Fu(this.inputs, (e) => Fu(e, (e) => kd(e) && Nd(e, this))); + } + eventObserved(e) { + "change" == e.type && (this._value = null), Id(this, e); + } + }; + lu.assign({ + batchedUpdates: jt.unstable_batchedUpdates, + createStringInterpolator: Hd, + colors: { + transparent: 0, + aliceblue: 4042850303, + antiquewhite: 4209760255, + aqua: 16777215, + aquamarine: 2147472639, + azure: 4043309055, + beige: 4126530815, + bisque: 4293182719, + black: 255, + blanchedalmond: 4293643775, + blue: 65535, + blueviolet: 2318131967, + brown: 2771004159, + burlywood: 3736635391, + burntsienna: 3934150143, + cadetblue: 1604231423, + chartreuse: 2147418367, + chocolate: 3530104575, + coral: 4286533887, + cornflowerblue: 1687547391, + cornsilk: 4294499583, + crimson: 3692313855, + cyan: 16777215, + darkblue: 35839, + darkcyan: 9145343, + darkgoldenrod: 3095792639, + darkgray: 2846468607, + darkgreen: 6553855, + darkgrey: 2846468607, + darkkhaki: 3182914559, + darkmagenta: 2332068863, + darkolivegreen: 1433087999, + darkorange: 4287365375, + darkorchid: 2570243327, + darkred: 2332033279, + darksalmon: 3918953215, + darkseagreen: 2411499519, + darkslateblue: 1211993087, + darkslategray: 793726975, + darkslategrey: 793726975, + darkturquoise: 13554175, + darkviolet: 2483082239, + deeppink: 4279538687, + deepskyblue: 12582911, + dimgray: 1768516095, + dimgrey: 1768516095, + dodgerblue: 512819199, + firebrick: 2988581631, + floralwhite: 4294635775, + forestgreen: 579543807, + fuchsia: 4278255615, + gainsboro: 3705462015, + ghostwhite: 4177068031, + gold: 4292280575, + goldenrod: 3668254975, + gray: 2155905279, + green: 8388863, + greenyellow: 2919182335, + grey: 2155905279, + honeydew: 4043305215, + hotpink: 4285117695, + indianred: 3445382399, + indigo: 1258324735, + ivory: 4294963455, + khaki: 4041641215, + lavender: 3873897215, + lavenderblush: 4293981695, + lawngreen: 2096890111, + lemonchiffon: 4294626815, + lightblue: 2916673279, + lightcoral: 4034953471, + lightcyan: 3774873599, + lightgoldenrodyellow: 4210742015, + lightgray: 3553874943, + lightgreen: 2431553791, + lightgrey: 3553874943, + lightpink: 4290167295, + lightsalmon: 4288707327, + lightseagreen: 548580095, + lightskyblue: 2278488831, + lightslategray: 2005441023, + lightslategrey: 2005441023, + lightsteelblue: 2965692159, + lightyellow: 4294959359, + lime: 16711935, + limegreen: 852308735, + linen: 4210091775, + magenta: 4278255615, + maroon: 2147483903, + mediumaquamarine: 1724754687, + mediumblue: 52735, + mediumorchid: 3126187007, + mediumpurple: 2473647103, + mediumseagreen: 1018393087, + mediumslateblue: 2070474495, + mediumspringgreen: 16423679, + mediumturquoise: 1221709055, + mediumvioletred: 3340076543, + midnightblue: 421097727, + mintcream: 4127193855, + mistyrose: 4293190143, + moccasin: 4293178879, + navajowhite: 4292783615, + navy: 33023, + oldlace: 4260751103, + olive: 2155872511, + olivedrab: 1804477439, + orange: 4289003775, + orangered: 4282712319, + orchid: 3664828159, + palegoldenrod: 4008225535, + palegreen: 2566625535, + paleturquoise: 2951671551, + palevioletred: 3681588223, + papayawhip: 4293907967, + peachpuff: 4292524543, + peru: 3448061951, + pink: 4290825215, + plum: 3718307327, + powderblue: 2967529215, + purple: 2147516671, + rebeccapurple: 1714657791, + red: 4278190335, + rosybrown: 3163525119, + royalblue: 1097458175, + saddlebrown: 2336560127, + salmon: 4202722047, + sandybrown: 4104413439, + seagreen: 780883967, + seashell: 4294307583, + sienna: 2689740287, + silver: 3233857791, + skyblue: 2278484991, + slateblue: 1784335871, + slategray: 1887473919, + slategrey: 1887473919, + snow: 4294638335, + springgreen: 16744447, + steelblue: 1182971135, + tan: 3535047935, + teal: 8421631, + thistle: 3636451583, + tomato: 4284696575, + turquoise: 1088475391, + violet: 4001558271, + wheat: 4125012991, + white: 4294967295, + whitesmoke: 4126537215, + yellow: 4294902015, + yellowgreen: 2597139199, + }, + }); + var Uf = ((e, { applyAnimatedValues: t = () => !1, createAnimatedStyle: n = (e) => new up(e), getComponentProps: r = (e) => e } = {}) => { + const o = { applyAnimatedValues: t, createAnimatedStyle: n, getComponentProps: r }, + a = (e) => { + const t = yp(e) || "Anonymous"; + return ((e = Iu.str(e) ? a[e] || (a[e] = mp(e, o)) : e[vp] || (e[vp] = mp(e, o))).displayName = `Animated(${t})`), e; + }; + return ( + xu(e, (t, n) => { + Iu.arr(e) && (n = yp(t)), (a[n] = a(t)); + }), + { animated: a } + ); + })( + [ + "a", + "abbr", + "address", + "area", + "article", + "aside", + "audio", + "b", + "base", + "bdi", + "bdo", + "big", + "blockquote", + "body", + "br", + "button", + "canvas", + "caption", + "cite", + "code", + "col", + "colgroup", + "data", + "datalist", + "dd", + "del", + "details", + "dfn", + "dialog", + "div", + "dl", + "dt", + "em", + "embed", + "fieldset", + "figcaption", + "figure", + "footer", + "form", + "h1", + "h2", + "h3", + "h4", + "h5", + "h6", + "head", + "header", + "hgroup", + "hr", + "html", + "i", + "iframe", + "img", + "input", + "ins", + "kbd", + "keygen", + "label", + "legend", + "li", + "link", + "main", + "map", + "mark", + "menu", + "menuitem", + "meta", + "meter", + "nav", + "noscript", + "object", + "ol", + "optgroup", + "option", + "output", + "p", + "param", + "picture", + "pre", + "progress", + "q", + "rp", + "rt", + "ruby", + "s", + "samp", + "script", + "section", + "select", + "small", + "source", + "span", + "strong", + "style", + "sub", + "summary", + "sup", + "table", + "tbody", + "td", + "textarea", + "tfoot", + "th", + "thead", + "time", + "title", + "tr", + "track", + "u", + "ul", + "var", + "video", + "wbr", + "circle", + "clipPath", + "defs", + "ellipse", + "foreignObject", + "g", + "image", + "line", + "linearGradient", + "mask", + "path", + "pattern", + "polygon", + "polyline", + "radialGradient", + "rect", + "stop", + "svg", + "text", + "tspan", + ], + { + applyAnimatedValues: function (e, t) { + if (!e.nodeType || !e.setAttribute) return !1; + const n = "filter" === e.nodeName || (e.parentNode && "filter" === e.parentNode.nodeName), + { style: r, children: o, scrollTop: a, scrollLeft: i, viewBox: s, ...c } = t, + l = Object.values(c), + u = Object.keys(c).map((t) => (n || e.hasAttribute(t) ? t : Ff[t] || (Ff[t] = t.replace(/([A-Z])/g, (e) => "-" + e.toLowerCase())))); + void 0 !== o && (e.textContent = o); + for (const t in r) + if (r.hasOwnProperty(t)) { + const n = Of(t, r[t]); + If.test(t) ? e.style.setProperty(t, n) : (e.style[t] = n); + } + u.forEach((t, n) => { + e.setAttribute(t, l[n]); + }), + void 0 !== a && (e.scrollTop = a), + void 0 !== i && (e.scrollLeft = i), + void 0 !== s && e.setAttribute("viewBox", s); + }, + createAnimatedStyle: (e) => new Bf(e), + getComponentProps: ({ scrollTop: e, scrollLeft: t, ...n }) => n, + } + ), + zf = Uf.animated; + function Vf(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + const Hf = function (e) { + var t, + n, + r = + ((t = (0, z.useState)({})), + (n = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(t) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(t, n) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return Vf(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? Vf(e, t) : void 0; + } + })(t, n) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + o = r[0], + a = r[1], + i = (0, z.useRef)(null); + return ( + (0, z.useEffect)( + function () { + return ( + (function (t) { + (i.current = new t(function (e) { + var t = e[0].contentRect, + n = t.width, + r = t.height, + o = t.top, + i = t.right, + s = t.bottom, + c = t.left, + l = e[0].target.offsetHeight; + a({ width: n, height: r, top: o, right: i, bottom: s, left: c, offsetHeight: l }); + })), + e.current && i.current.observe(e.current); + })(ResizeObserver), + function () { + i.current && i.current.disconnect(); + } + ); + }, + [e] + ), + o + ); + }; + var Gf = ["y"]; + function Wf(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function Qf(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? Wf(Object(n), !0).forEach(function (t) { + Jf(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : Wf(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function Jf(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + function Yf(e, t) { + return ( + (function (e) { + if (Array.isArray(e)) return e; + })(e) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(e, t) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return qf(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? qf(e, t) : void 0; + } + })(e, t) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function qf(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var Xf = function () {}, + Kf = (0, z.forwardRef)(function (e, t) { + var n = e.children, + r = e.collapsedHeight, + o = void 0 === r ? 0 : r, + a = e.defaultHeight, + i = void 0 === a ? "auto" : a, + s = e.expandedMaxHeight, + c = void 0 === s ? "calc(100% - 64px)" : s, + l = e.fullscreen, + u = e.inputFocused, + d = e.landscape, + p = e.maxHeight, + f = void 0 === p ? "60vh" : p, + m = e.onClose, + h = void 0 === m ? function () {} : m, + v = e.onCollapse, + y = void 0 === v ? function () {} : v, + g = e.onExpand, + b = void 0 === g ? function () {} : g, + E = e.onRestore, + D = void 0 === E ? function () {} : E, + C = e.trayHandleRef, + w = Yf((0, z.useState)(!1), 2), + S = w[0], + A = w[1], + k = Yf((0, z.useState)(!1), 2), + _ = k[0], + T = k[1], + I = Yf((0, z.useState)(!1), 2), + O = I[0], + F = I[1], + x = (0, z.useRef)(), + N = (0, z.useRef)(), + R = (0, z.useRef)(), + L = (0, z.useRef)(document.documentElement.clientHeight), + M = (0, z.useRef)(!1), + P = Hf(x).offsetHeight, + j = Yf( + Sf(function () { + return { y: 0, height: i, maxHeight: f, touchAction: "none", zIndex: 999 }; + }), + 2 + ), + B = j[0], + Z = B.y, + H = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = (function (e, t) { + if (null == e) return {}; + var n, + r, + o = {}, + a = Object.keys(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (o[n] = e[n]); + return o; + })(e, t); + if (Object.getOwnPropertySymbols) { + var a = Object.getOwnPropertySymbols(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (Object.prototype.propertyIsEnumerable.call(e, n) && (o[n] = e[n])); + } + return o; + })(B, Gf), + G = j[1], + W = (0, Hn.Z)(P), + Q = (0, z.useMemo)( + function () { + return { + bounds: { top: 0 }, + filterTaps: !0, + from: function () { + return [0, Z.get()]; + }, + rubberband: !0, + pointer: { mouse: !0 }, + }; + }, + [Z] + ); + W !== P && S && G.set({ y: P - R.current }), + (0, z.useEffect)( + function () { + d || ((R.current = N.current.clientHeight + o), S && G.set({ y: P - R.current })); + }, + [o, d] + ); + var J = (0, z.useCallback)( + gl()(function () { + M.current = !0; + }, 1e3), + [] + ); + (0, z.useEffect)( + function () { + (M.current = !1), J.cancel(), (L.current = document.documentElement.clientHeight); + }, + [d, J] + ), + (0, z.useEffect)( + function () { + F(u), u || (T(!1), (M.current = !1), J.cancel()); + }, + [u, J] + ), + (0, z.useEffect)( + function () { + var e = function () { + L.current - window.visualViewport.height > 0 && + u && + !M.current && + (G.set({ maxHeight: window.visualViewport.height }), (document.documentElement.scrollTop = L.current - window.visualViewport.height), requestAnimationFrame(nr), J()); + }; + return ( + window.visualViewport.addEventListener("resize", e), + function () { + return window.visualViewport.removeEventListener("resize", e); + } + ); + }, + [G, u, J] + ), + (0, z.useEffect)( + function () { + O || G.set({ maxHeight: _ ? c : f }); + }, + [G, _, c, O, f] + ), + (0, z.useEffect)( + function () { + G.set({ height: _ ? "100%" : i }); + }, + [G, i, _] + ); + var Y = function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : 0; + G.start({ y: 0, immediate: !1, config: Qf(Qf({}, Ip.stiff), {}, { velocity: e }) }), A(!1), T(!0), b(); + }, + q = function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : 0; + if (l) G.start({ y: 0, immediate: !1, config: Qf(Qf({}, Ip.stiff), {}, { velocity: e }) }); + else { + G.start({ y: P - R.current, immediate: !1, config: Qf(Qf({}, Ip.stiff), {}, { velocity: e }) }), A(!0); + var t = document.activeElement; + x.current.contains(t) && t.classList.contains("textarea") && t.blur(); + } + y(); + }, + K = (0, z.useCallback)( + function () { + var e = (arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}).canceled; + G.start({ y: 0, immediate: !1, config: e ? Ip.wobbly : Ip.stiff }), A(!1), T(!1), D(); + }, + [G, D] + ), + $ = (0, z.useCallback)( + function (e) { + var t = e.cancel, + n = e.canceled, + r = Yf(e.direction, 2)[1], + o = e.intentional, + a = e.last, + i = e.lastOffset, + s = Yf(e.movement, 2)[1], + c = Yf(e.swipe, 2)[1], + l = Yf(e.velocity, 2)[1]; + o && + (!S && !_ && s < -70 && t(), + a + ? S || _ + ? (S && + (r >= 0 && s > 0 + ? s >= R.current || l > 0.5 + ? (function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : 0; + G.start({ y: R.current, immediate: !1, config: Qf(Qf({}, Ip.stiff), {}, { velocity: e }) }), h(); + })(l) + : q(l) + : K({ canceled: n })), + _ && (c <= 0 && s <= 0 ? Y(l) : K({ canceled: n }))) + : s > 0.5 * P || c > 0 + ? q(l) + : s <= 0 || (l > 0.5 && c < 0) + ? Y(l) + : K({ canceled: n }) + : G.start({ y: s + i[1], immediate: !0 })); + }, + [G, S, _, Y, P, K] + ); + return ( + su($, Qf(Qf({}, Q), {}, { target: N.current })), + su($, Qf(Qf({}, Q), {}, { target: null == C ? void 0 : C.current })), + (0, z.useImperativeHandle)( + t, + function () { + return { + restore: d ? Xf : K, + isCollapsed: d + ? Xf + : function () { + return S; + }, + }; + }, + [S, d, K] + ), + V().createElement( + zf.div, + { ref: x, "data-testid": "ccx-comments-tray", className: X()(U.default.component, { landscape: d }), style: d ? { touchAction: "none" } : Qf({ y: Z }, H) }, + !d && + V().createElement( + "div", + { ref: N, className: "resize-handle" }, + V().createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "42", height: "4", viewBox: "0 0 42 4" }, V().createElement("rect", { className: "tray-handle", width: "42", height: "4", rx: "2" })) + ), + V().createElement("div", { className: "content-container" }, n) + ) + ); + }); + (Kf.propTypes = { + children: G().node.isRequired, + collapsedHeight: G().number, + defaultHeight: G().oneOf([G().string, G().number]), + expandedMaxHeight: G().oneOf([G().string, G().number]), + fullscreen: G().bool, + inputFocused: G().bool, + landscape: G().bool, + maxHeight: G().oneOf([G().string, G().number]), + onClose: G().func, + onCollapse: G().func, + onExpand: G().func, + onRestore: G().func, + trayHandleRef: G().shape({ current: G().object }), + }), + (Kf.displayName = "Tray"); + const $f = Kf; + function em() { + return ( + (em = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + em.apply(this, arguments) + ); + } + function tm(e, t) { + return ( + (function (e) { + if (Array.isArray(e)) return e; + })(e) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(e, t) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return nm(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? nm(e, t) : void 0; + } + })(e, t) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })() + ); + } + function nm(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var rm = function (e) { + var t = e.assetData, + n = e.cacheComments, + r = e.clearLastResolved, + o = e.commentCancelForDelete, + a = e.commentProposedForDelete, + i = e.commentsListMinimized, + s = e.compactLayout, + c = e.contextSetGuestUserLoginToastInfo, + l = e.contextSetLoginVisibility, + u = e.disableCommentCreation, + d = e.documentState, + p = e.environment, + f = e.errors, + m = e.focusedInputInfo, + h = e.globalCommentsToggle, + v = e.groupBy, + y = e.guestCommentingAutomationMode, + g = e.guestUserLoginToastInfo, + b = e.hasAnnotationLocation, + E = e.hasReviewAccess, + D = e.imageCapture, + C = e.imageContextData, + w = e.imsData, + S = e.isDocumentSupported, + A = e.isFetching, + k = e.isLoginVisible, + _ = e.isMapping, + T = e.isOffline, + I = e.isTrayExpanded, + O = e.lastResolvedCommentData, + F = e.latestMobileEnabled, + x = e.localeStringOverrides, + N = e.onInvokeLogin, + R = e.reCaptchaSiteKey, + L = e.registeredSectionIds, + M = e.resetGuestUserSession, + P = e.selectedAnnotationId, + j = e.setTrayExpanded, + Z = e.showResolvedComments, + U = e.spectrumUIScale, + H = e.style, + G = e.theme, + W = e.themeType, + Q = e.touchControls, + J = e.unhighlightComment, + q = (0, z.useContext)(tt.ZP), + K = (0, Ke.Z)(), + $ = (0, et.Z)(), + te = $.confirmDeleteComment, + oe = $.postComment, + ae = $.undoResolveComment, + ie = tm((0, z.useState)(!1), 2), + se = ie[0], + ce = ie[1], + ue = tm((0, z.useState)(void 0), 2), + de = ue[0], + pe = ue[1], + fe = tm((0, z.useState)(0), 2), + me = fe[0], + he = fe[1], + ve = tm((0, z.useState)(!1), 2), + ye = ve[0], + ge = ve[1], + be = ar(), + Ee = be.inputFocused, + De = be.isFullscreen, + Ce = be.onTrayClose, + we = be.onTrayCollapse, + Se = be.onTrayExpand, + Ae = be.onTrayRestore, + ke = be.subview, + _e = be.trayHandleRef, + Te = (0, cn.cs)(), + Ie = (0, ln.UP)(), + Oe = Ra("(orientation: landscape)"), + Fe = (0, z.useContext)(re.ZP), + xe = Fe.locale, + Ne = Fe.enableFrameS4R, + Re = (0, z.useCallback)( + function () { + return Y()(pe, 300, { leading: !1 }); + }, + [pe] + ), + Le = (0, z.useRef)(), + Me = (0, z.useRef)(), + Pe = q.onShare, + je = Hf(Le).width, + Be = (0, z.useCallback)( + function () { + j(!0), Se(); + }, + [Se, j] + ), + Ze = (0, z.useCallback)( + function () { + j(!1), Ae(); + }, + [Ae, j] + ), + Ue = (0, z.useCallback)( + function () { + var e = q.onMobileCommentsListHeightChange; + if ("function" == typeof e) { + var t = Le.current && Le.current.clientHeight; + de !== t && (Re(t), e(t)); + } + }, + [q, de, Re] + ), + ze = (0, z.useCallback)( + function (e) { + K.fireEvent(K.events.generalError(p, e)), ce(!0); + }, + [ce, K, p] + ), + Ve = (0, z.useCallback)( + function () { + k && l(!1); + }, + [l, k] + ), + He = (0, z.useCallback)( + function () { + k && (l(!1), (0, wn.F_)(An.uX), (0, wn.F_)(An.oi)); + }, + [k, l] + ), + Ge = (0, z.useCallback)( + function () { + return c(); + }, + [c] + ), + We = (0, z.useCallback)( + function (e) { + var n; + Pe(t.reviewType), (n = t.id || "artifact" === t.reviewType ? "share-link" : "save-doc"), e && (n += "-".concat(e)), K.fireEvent(K.events.shareAssetUrl(n)); + }, + [t, K, Pe] + ), + Qe = (0, z.useCallback)( + function () { + Pe("artifact"), K.fireEvent({ event: { subcategory: "navigation", subtype: "create-review", type: "click" } }); + }, + [K, Pe] + ), + Je = (0, z.useCallback)( + function () { + Pe("cloudDoc"), K.fireEvent({ event: { subcategory: "navigation", subtype: "save-doc", type: "click" } }); + }, + [K, Pe] + ), + Ye = (0, z.useCallback)( + function () { + Te.undoCommentResolved(), Ie.undoCommentResolved(), ae(); + }, + [Te, Ie, ae] + ), + qe = (0, z.useCallback)( + function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : ""; + navigator.clipboard + .writeText(e) + .then(function () { + ge(!0), K.fireEvent(K.events.copyAssetUrl); + }) + .catch(function () {}); + }, + [K] + ); + (0, z.useEffect)(function () { + return function () { + null == l || l(!1), J(); + }; + }, []), + (0, z.useEffect)( + function () { + var e; + document.documentElement.style.setProperty("--ccx-comments-panel-width", "".concat(null === (e = Le.current) || void 0 === e ? void 0 : e.clientWidth, "px")); + }, + [je] + ), + (0, z.useEffect)( + function () { + var e; + F && (!I || De || (ke !== An.p8.COMMENT && ke !== An.p8.EDIT) || null === (e = Me.current) || void 0 === e || e.restore()); + }, + [De, I, F, ke] + ), + (0, z.useEffect)( + function () { + var e, t; + F && P && null !== (e = Me.current) && void 0 !== e && e.isCollapsed() && (null === (t = Me.current) || void 0 === t || t.restore()); + }, + [F, P] + ), + (0, z.useEffect)( + function () { + if (F) { + var e = new ResizeObserver(function (e) { + he(e[0].target.clientHeight); + }); + return ( + e.observe(_e.current), + function () { + return e.disconnect(); + } + ); + } + }, + [F, _e] + ), + (0, z.useEffect)( + function () { + if (!F) + return ( + s && Ue(), + function () { + if (s) { + var e = q.onMobileCommentsListHeightChange; + "function" == typeof e && e(0); + } + } + ); + }, + [q, s, Ue, F] + ); + var Xe, + $e = b && C ? C.base64Data : ""; + if (se) return null; + Z || u || (t.isFrameArtifact && Ne) || (Xe = V().createElement(Si, em({}, e, { isReadyToAnnotate: L.length > 0, onHeightChange: Ue, cacheComments: n, postComment: oe }))); + var nt, + rt = "root" === (null == m ? void 0 : m.itemType); + nt = E + ? t.isSaving + ? V().createElement(ka, { testId: "saving" }, V().createElement(ee.Z, { id: "comments.list.saving" })) + : t.id && "documentOpen" === d && S + ? V().createElement( + "div", + { className: X()("flex-flow-wrapper", { fullscreen: De }) }, + V().createElement(Ks, { assetId: t.id, errors: f, reviewType: t.reviewType }), + F + ? V().createElement(Es, { + clearLastResolved: r, + guestLoginToast: g, + hasError: f && Boolean(f.list), + isLoading: A || "unknown" === (null == t ? void 0 : t.shareStatus), + isOffline: T, + landscape: Oe, + lastResolvedCommentData: O, + onShare: Pe ? We : void 0, + onToastClose: Ge, + selectedAnnotationId: P, + showResolvedComments: Z, + undoLastResolvedAction: Ye, + }) + : V().createElement( + V().Fragment, + null, + V().createElement(Ps, { onShare: Pe ? We : void 0, onCopy: qe }), + Xe, + D && C && b && V().createElement(Sc, { imageData: $e, width: 100, height: 100 }), + V().createElement(ti, { + activeSectionInputFocused: Boolean(null == m ? void 0 : m.id), + assetData: t, + clearLastResolved: r, + commentListMinimized: i || rt, + enableFrameS4R: Ne, + guestLoginToast: g, + hasError: f && Boolean(f.list), + isLoading: A || "unknown" === (null == t ? void 0 : t.shareStatus), + isOffline: T, + lastResolvedCommentData: O, + onHeightChange: Ue, + onShare: Pe ? We : void 0, + onToastClose: Ge, + selectedAnnotationId: P, + undoLastResolvedAction: Ye, + urlCopied: ye, + setUrlCopied: ge, + }), + V().createElement(fn, null), + V().createElement(bc, { globalCommentsToggle: h, assetData: t, compactLayout: s, isMapping: _, isOffline: T, groupBy: v }) + ) + ) + : V().createElement(Gs, { documentState: d, isDocumentSupported: S, isOffline: T, onShare: Pe ? We : void 0, onCloudSave: Pe ? Je : void 0, onCreateReviewLink: Pe ? Qe : void 0, reviewType: t.reviewType }) + : V().createElement(Tc, null); + var ot, + at = X()("comments-list-wrapper", { touch: Q, compact: s, "focused-input": ((s && m) || i) && !F }); + N || (ot = V().createElement(vl, { guestCommentingAutomationMode: y, onGuestLogin: Ve, onLoginCancel: He, reCaptchaSiteKey: R, show: k, spectrumUIScale: U, theme: G, themeType: W })); + var it = V().createElement( + "div", + { ref: Le, className: at }, + nt, + a && + V().createElement(Cs, { + commentProposedForDelete: a, + onCancel: function () { + return o(t.id); + }, + onDelete: function () { + var e = a.parentCommentId, + t = q.onGuestSession; + return te() + .then(function () { + K.fireEvent({ event: { context_guid: e, subcategory: e ? "delete-reply" : "delete-comment", subtype: "fade-out", type: "render" } }); + }) + .catch(function (n) { + K.fireEvent({ event: { context_guid: e, subcategory: e ? "delete-reply" : "delete-comment", subtype: "error", type: "render", error_code: n.status, error_type: n.message, error_desc: "comment-failed-to-delete" } }), + w.token.includes("AnonBearer") && 401 === n.status && (M(), t("destroy", w)); + }); + }, + }), + ot + ); + return V().createElement( + ne.Z, + { onError: ze }, + V().createElement( + "div", + { className: X()(B.default.component, "".concat(G, "-theme"), "".concat(U, "-scale"), { compact: s, landscape: Oe, "latest-mobile": F }), "data-lang": xe, id: An.WJ, style: H }, + V().createElement( + le.Z, + { localeStringOverrides: x }, + F ? V().createElement($f, { ref: Me, collapsedHeight: me, fullscreen: De, inputFocused: Ee, landscape: Oe, onClose: Ce, onCollapse: we, onExpand: Be, onRestore: Ze, trayHandleRef: _e }, it) : it + ) + ) + ); + }; + (rm.propTypes = { + annotatingItmId: G().string, + annotationsEnabled: G().bool, + assetData: G().shape({ + id: G().string, + documentId: G().string, + isSaving: G().bool, + nodeId: G().oneOfType([G().string, G().number]), + ownerId: G().string, + reviewType: G().string, + shareStatus: G().oneOf(["public", "orgShared", "shared", "unshared", "unknown"]), + isFrameArtifact: G().bool, + }), + cacheComments: G().bool, + clearLastResolved: G().func, + commentCancelForDelete: G().func, + commentProposedForDelete: G().object, + comments: G().array, + commentsSetDirtyComment: G().func, + commentsListMinimized: G().bool, + commentsOpen: G().func, + commentsResolve: G().func, + commentsToggleReply: G().func, + compactLayout: G().bool, + contextCreateGuestUserSession: G().func, + contextSaveFrameData: G().func, + contextSetCommentsListMinimized: G().func, + contextSetGuestUserLoginToastInfo: G().func, + contextSetLoginVisibility: G().func, + disableCommentCreation: G().bool, + documentState: G().oneOf(["documentOpen", "noDocument", "documentLoading"]), + environment: G().string, + errors: G().object, + focusedInputInfo: G().object, + globalCommentsToggle: G().shape({ isActive: G().bool.isRequired, onToggle: G().func.isRequired }).isRequired, + groupBy: G().oneOf(["node", "none"]), + guestCommentingAutomationMode: G().bool, + guestUserLoginToastInfo: G().object, + hasAnnotationLocation: G().bool, + hasReviewAccess: G().bool, + imageCapture: G().bool, + imageContextData: G().object, + imsData: G().shape({ id: G().string, token: G().string }), + isDocumentSupported: G().bool, + isFetching: G().bool, + isLoginVisible: G().bool, + isMapping: G().bool, + isOffline: G().bool, + isTrayExpanded: G().bool, + lastResolvedCommentData: G().shape({ assetId: G().string, commentId: G().string, newStatus: G().string }), + latestMobileEnabled: G().bool, + localeStringOverrides: G().object, + onInvokeLogin: G().func, + reCaptchaEnabled: G().bool, + reCaptchaSiteKey: G().string, + registeredSectionIds: G().array, + resetGuestUserSession: G().func, + saveFocusedInputInfo: G().func, + selectedAnnotationId: G().string, + setTrayExpanded: G().func, + showResolvedComments: G().bool, + spectrumUIScale: G().oneOf(["medium", "large"]), + style: G().object, + theme: G().oneOf(["light", "lightest", "dark", "darkest"]), + themeType: G().oneOf(["spectrum", "express"]), + touchControls: G().bool, + unhighlightComment: G().func, + }), + (rm.defaultProps = { + assetData: { reviewType: "artifact", validNodes: [], isFrameArtifact: !1 }, + commentProposedForDelete: null, + comments: [], + errors: {}, + imsData: {}, + isLoading: !1, + isLoginVisible: !1, + onInvokeLogin: void 0, + registeredSectionIds: [], + users: [], + selectedAnnotationId: void 0, + }); + const om = (0, $.qC)( + re.HJ, + (0, K.$j)( + function (e, t) { + var n = t.compactLayout, + r = t.assetData, + o = t.annotationsEnabled, + a = t.latestMobileEnabled, + i = (0, Pr._X)(e, r.id), + s = i.commentProposedForDelete, + c = i.dirtyComments, + l = i.errors, + u = i.fetching, + d = i.lastResolvedCommentData, + p = !(n && !a) && Q()(e, "".concat(An.Bq, ":filter.showResolvedComments")), + f = n ? Q()(e, "".concat(An.Bq, ":context.focusedInputInfo")) : void 0; + return { + annotatingItmId: Q()(e, "".concat(An.Bq, ":context.annotatingItmId")), + annotationColor: Q()(e, "".concat(An.Bq, ":context.annotationColor")), + annotationLocationNodeId: (0, te.yU)(e), + annotationsEnabled: o, + assetData: r, + clickedAnnotation: Q()(e, "".concat(An.Bq, ":context.clickedAnnotation")), + commentProposedForDelete: s, + commentsListMinimized: Q()(e, "".concat(An.Bq, ":context.commentsListMinimized")), + dirtyComments: c, + errors: l, + focusedInputInfo: f, + guestUserLoginToastInfo: Q()(e, "".concat(An.Bq, ":context.guestUserLoginToastInfo")), + hasAnnotationLocation: (0, te.Qx)(e), + isFetching: u, + isLoginVisible: Q()(e, "".concat(An.Bq, ":context.isLoginVisible")), + isPlacingAnnotation: Q()(e, "".concat(An.Bq, ":context.isPlacingAnnotation")), + isTrayExpanded: Q()(e, "".concat(An.Bq, ":mobile.expanded")), + lastResolvedCommentData: d, + newAnnotationType: Q()(e, "".concat(An.Bq, ":context.newAnnotationType")), + registeredSectionIds: Q()(e, "".concat(An.Bq, ":context.registeredSectionIds")), + showCommentId: Q()(e, "".concat(An.Bq, ":context.showCommentId")), + selectedAnnotationId: e["".concat(An.Bq, ":annotation")].selectedAnnotationId, + showResolvedComments: p, + }; + }, + function (e) { + return (0, $.DE)( + { + clearLastResolved: oe.IK, + commentCancelForDelete: oe.bi, + commentDeletePropose: oe.e1, + commentsSetDirtyComment: oe.Gt, + filterClear: se.ER, + commentsOpen: oe.Gv, + commentsResolve: oe.fx, + commentsToggleReply: oe.jT, + contextCreateGuestUserSession: ae.Om, + contextSaveFrameData: ae.eP, + contextSetCommentsListMinimized: ae.XH, + contextSetLoginVisibility: ae.Sp, + contextSetGuestUserLoginToastInfo: ae.Fu, + resetGuestUserSession: ae.I3, + saveAnnotationColor: ae.Iz, + saveAnnotationLocation: ae.yC, + saveFocusedInputInfo: ae.PM, + setAnnotationMode: ae.V0, + setTrayExpanded: ie.YT, + unhighlightComment: ce.K8, + }, + e + ); + }, + void 0, + { context: Ve.no } + ) + )(rm); + }, + 24681: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => yn }); + var r = n(23469), + o = n.n(r), + a = n(47776), + i = n.n(a), + s = n(13795), + c = n(69050), + l = n(53268), + u = n(85767), + d = n(56160), + p = n(11425); + function f(e, t) { + return Object.keys(e).reduce(function (n, r) { + return (n[r] = (0, s.__assign)({ timeZone: t }, e[r])), n; + }, {}); + } + function m(e, t) { + return Object.keys((0, s.__assign)((0, s.__assign)({}, e), t)).reduce(function (n, r) { + return (n[r] = (0, s.__assign)((0, s.__assign)({}, e[r] || {}), t[r] || {})), n; + }, {}); + } + function h(e, t) { + if (!t) return e; + var n = u.C.formats; + return (0, s.__assign)((0, s.__assign)((0, s.__assign)({}, n), e), { date: m(f(n.date, t), f(e.date || {}, t)), time: m(f(n.time, t), f(e.time || {}, t)) }); + } + function v(e, t, n, r, o) { + var a = e.locale, + i = e.formats, + c = e.messages, + l = e.defaultLocale, + u = e.defaultFormats, + f = e.fallbackOnEmptyString, + m = e.onError, + v = e.timeZone, + y = e.defaultRichTextElements; + void 0 === n && (n = { id: "" }); + var g = n.id, + b = n.defaultMessage; + !(function (e, t, n) { + if ((void 0 === n && (n = Error), !e)) + throw new n( + "[@formatjs/intl] An `id` must be provided to format a message. You can either:\n1. Configure your build toolchain with [babel-plugin-formatjs](https://formatjs.io/docs/tooling/babel-plugin)\nor [@formatjs/ts-transformer](https://formatjs.io/docs/tooling/ts-transformer) OR\n2. Configure your `eslint` config to include [eslint-plugin-formatjs](https://formatjs.io/docs/tooling/linter#enforce-id)\nto autofix this issue" + ); + })(!!g); + var E = String(g), + D = c && Object.prototype.hasOwnProperty.call(c, E) && c[E]; + if (Array.isArray(D) && 1 === D.length && D[0].type === p.wD.literal) return D[0].value; + if (!r && D && "string" == typeof D && !y) return D.replace(/'\{(.*?)\}'/gi, "{$1}"); + if (((r = (0, s.__assign)((0, s.__assign)({}, y), r || {})), (i = h(i, v)), (u = h(u, v)), !D)) { + if (!1 === f && "" === D) return D; + if (((!b || (a && a.toLowerCase() !== l.toLowerCase())) && m(new d.$6(n, a)), b)) + try { + return t.getMessageFormat(b, l, u, o).format(r); + } catch (e) { + return m(new d.X9('Error formatting default message for: "'.concat(E, '", rendering default message verbatim'), a, n, e)), "string" == typeof b ? b : E; + } + return E; + } + try { + return t.getMessageFormat(D, a, i, (0, s.__assign)({ formatters: t }, o || {})).format(r); + } catch (e) { + m(new d.X9('Error formatting message: "'.concat(E, '", using ').concat(b ? "default message" : "id", " as fallback."), a, n, e)); + } + if (b) + try { + return t.getMessageFormat(b, l, u, o).format(r); + } catch (e) { + m(new d.X9('Error formatting the default message for: "'.concat(E, '", rendering message verbatim'), a, n, e)); + } + return "string" == typeof D ? D : "string" == typeof b ? b : E; + } + var y = n(956), + g = [ + "localeMatcher", + "style", + "currency", + "currencyDisplay", + "unit", + "unitDisplay", + "useGrouping", + "minimumIntegerDigits", + "minimumFractionDigits", + "maximumFractionDigits", + "minimumSignificantDigits", + "maximumSignificantDigits", + "compactDisplay", + "currencyDisplay", + "currencySign", + "notation", + "signDisplay", + "unit", + "unitDisplay", + "numberingSystem", + ]; + function b(e, t, n) { + var r = e.locale, + o = e.formats, + a = e.onError; + void 0 === n && (n = {}); + var i = n.format, + s = (i && (0, y.TB)(o, "number", i, a)) || {}; + return t(r, (0, y.L6)(n, g, s)); + } + function E(e, t, n, r) { + void 0 === r && (r = {}); + try { + return b(e, t, r).format(n); + } catch (t) { + e.onError(new d.Rw(d.bc.FORMAT_ERROR, "Error formatting number.", t)); + } + return String(n); + } + function D(e, t, n, r) { + void 0 === r && (r = {}); + try { + return b(e, t, r).formatToParts(n); + } catch (t) { + e.onError(new d.Rw(d.bc.FORMAT_ERROR, "Error formatting number.", t)); + } + return []; + } + var C = n(91842), + w = ["numeric", "style"]; + function S(e, t, n, r, o) { + void 0 === o && (o = {}), + r || (r = "second"), + Intl.RelativeTimeFormat || e.onError(new C.u_('Intl.RelativeTimeFormat is not available in this environment.\nTry polyfilling it using "@formatjs/intl-relativetimeformat"\n', C.jK.MISSING_INTL_API)); + try { + return (function (e, t, n) { + var r = e.locale, + o = e.formats, + a = e.onError; + void 0 === n && (n = {}); + var i = n.format, + s = (!!i && (0, y.TB)(o, "relative", i, a)) || {}; + return t(r, (0, y.L6)(n, w, s)); + })(e, t, o).format(n, r); + } catch (t) { + e.onError(new d.Qe("Error formatting relative time.", e.locale, t)); + } + return String(n); + } + var A = ["localeMatcher", "formatMatcher", "timeZone", "hour12", "weekday", "era", "year", "month", "day", "hour", "minute", "second", "timeZoneName", "hourCycle", "dateStyle", "timeStyle", "calendar", "numberingSystem"]; + function k(e, t, n, r) { + var o = e.locale, + a = e.formats, + i = e.onError, + c = e.timeZone; + void 0 === r && (r = {}); + var l = r.format, + u = (0, s.__assign)((0, s.__assign)({}, c && { timeZone: c }), l && (0, y.TB)(a, t, l, i)), + d = (0, y.L6)(r, A, u); + return "time" !== t || d.hour || d.minute || d.second || d.timeStyle || d.dateStyle || (d = (0, s.__assign)((0, s.__assign)({}, d), { hour: "numeric", minute: "numeric" })), n(o, d); + } + function _(e, t) { + for (var n = [], r = 2; r < arguments.length; r++) n[r - 2] = arguments[r]; + var o = n[0], + a = n[1], + i = void 0 === a ? {} : a, + s = "string" == typeof o ? new Date(o || 0) : o; + try { + return k(e, "date", t, i).format(s); + } catch (t) { + e.onError(new d.Rw(d.bc.FORMAT_ERROR, "Error formatting date.", t)); + } + return String(s); + } + function T(e, t) { + for (var n = [], r = 2; r < arguments.length; r++) n[r - 2] = arguments[r]; + var o = n[0], + a = n[1], + i = void 0 === a ? {} : a, + s = "string" == typeof o ? new Date(o || 0) : o; + try { + return k(e, "time", t, i).format(s); + } catch (t) { + e.onError(new d.Rw(d.bc.FORMAT_ERROR, "Error formatting time.", t)); + } + return String(s); + } + function I(e, t) { + for (var n = [], r = 2; r < arguments.length; r++) n[r - 2] = arguments[r]; + var o = n[0], + a = n[1], + i = n[2], + s = void 0 === i ? {} : i, + c = e.timeZone, + l = e.locale, + u = e.onError, + p = (0, y.L6)(s, A, c ? { timeZone: c } : {}); + try { + return t(l, p).formatRange(o, a); + } catch (e) { + u(new d.Rw(d.bc.FORMAT_ERROR, "Error formatting date time range.", e)); + } + return String(o); + } + function O(e, t) { + for (var n = [], r = 2; r < arguments.length; r++) n[r - 2] = arguments[r]; + var o = n[0], + a = n[1], + i = void 0 === a ? {} : a, + s = "string" == typeof o ? new Date(o || 0) : o; + try { + return k(e, "date", t, i).formatToParts(s); + } catch (t) { + e.onError(new d.Rw(d.bc.FORMAT_ERROR, "Error formatting date.", t)); + } + return []; + } + function F(e, t) { + for (var n = [], r = 2; r < arguments.length; r++) n[r - 2] = arguments[r]; + var o = n[0], + a = n[1], + i = void 0 === a ? {} : a, + s = "string" == typeof o ? new Date(o || 0) : o; + try { + return k(e, "time", t, i).formatToParts(s); + } catch (t) { + e.onError(new d.Rw(d.bc.FORMAT_ERROR, "Error formatting time.", t)); + } + return []; + } + var x = ["localeMatcher", "type"]; + function N(e, t, n, r) { + var o = e.locale, + a = e.onError; + void 0 === r && (r = {}), Intl.PluralRules || a(new C.u_('Intl.PluralRules is not available in this environment.\nTry polyfilling it using "@formatjs/intl-pluralrules"\n', C.jK.MISSING_INTL_API)); + var i = (0, y.L6)(r, x); + try { + return t(o, i).select(n); + } catch (e) { + a(new d.Qe("Error formatting plural.", o, e)); + } + return "other"; + } + var R = ["localeMatcher", "type", "style"], + L = Date.now(); + function M(e, t, n, r) { + void 0 === r && (r = {}); + var o = P(e, t, n, r).reduce(function (e, t) { + var n = t.value; + return "string" != typeof n ? e.push(n) : "string" == typeof e[e.length - 1] ? (e[e.length - 1] += n) : e.push(n), e; + }, []); + return 1 === o.length ? o[0] : o; + } + function P(e, t, n, r) { + var o = e.locale, + a = e.onError; + void 0 === r && (r = {}), Intl.ListFormat || a(new C.u_('Intl.ListFormat is not available in this environment.\nTry polyfilling it using "@formatjs/intl-listformat"\n', C.jK.MISSING_INTL_API)); + var i = (0, y.L6)(r, R); + try { + var c = {}, + l = n.map(function (e, t) { + if ("object" == typeof e) { + var n = (function (e) { + return "".concat(L, "_").concat(e, "_").concat(L); + })(t); + return (c[n] = e), n; + } + return String(e); + }); + return t(o, i) + .formatToParts(l) + .map(function (e) { + return "literal" === e.type ? e : (0, s.__assign)((0, s.__assign)({}, e), { value: c[e.value] || e.value }); + }); + } catch (e) { + a(new d.Rw(d.bc.FORMAT_ERROR, "Error formatting list.", e)); + } + return n; + } + var j = ["localeMatcher", "style", "type", "fallback"]; + function B(e, t, n, r) { + var o = e.locale, + a = e.onError; + Intl.DisplayNames || a(new C.u_('Intl.DisplayNames is not available in this environment.\nTry polyfilling it using "@formatjs/intl-displaynames"\n', C.jK.MISSING_INTL_API)); + var i = (0, y.L6)(r, j); + try { + return t(o, i).of(n); + } catch (e) { + a(new d.Rw(d.bc.FORMAT_ERROR, "Error formatting display name.", e)); + } + } + var Z = n(49154); + function U(e) { + return { + locale: e.locale, + timeZone: e.timeZone, + fallbackOnEmptyString: e.fallbackOnEmptyString, + formats: e.formats, + textComponent: e.textComponent, + messages: e.messages, + defaultLocale: e.defaultLocale, + defaultFormats: e.defaultFormats, + onError: e.onError, + onWarn: e.onWarn, + wrapRichTextChunksInFragment: e.wrapRichTextChunksInFragment, + defaultRichTextElements: e.defaultRichTextElements, + }; + } + function z(e) { + return e + ? Object.keys(e).reduce(function (t, n) { + var r = e[n]; + return (t[n] = (0, Z.Gt)(r) ? (0, l.dt)(r) : r), t; + }, {}) + : e; + } + var V = function (e, t, n, o) { + for (var a = [], i = 4; i < arguments.length; i++) a[i - 4] = arguments[i]; + var c = z(o), + l = v.apply(void 0, (0, s.__spreadArray)([e, t, n, c], a, !1)); + return Array.isArray(l) ? r.Children.toArray(l) : l; + }, + H = function (e, t) { + var n = e.defaultRichTextElements, + r = (0, s.__rest)(e, ["defaultRichTextElements"]), + o = z(n), + a = (function (e, t) { + var n = (0, y.ax)(t), + r = (0, s.__assign)((0, s.__assign)({}, y.Z0), e), + o = r.locale, + a = r.defaultLocale, + i = r.onError; + return ( + o + ? !Intl.NumberFormat.supportedLocalesOf(o).length && i + ? i(new d.gb('Missing locale data for locale: "'.concat(o, '" in Intl.NumberFormat. Using default locale: "').concat(a, '" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))) + : !Intl.DateTimeFormat.supportedLocalesOf(o).length && + i && + i( + new d.gb('Missing locale data for locale: "'.concat(o, '" in Intl.DateTimeFormat. Using default locale: "').concat(a, '" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details')) + ) + : (i && i(new d.OV('"locale" was not configured, using "'.concat(a, '" as fallback. See https://formatjs.io/docs/react-intl/api#intlshape for more details'))), (r.locale = r.defaultLocale || "en")), + (function (e) { + var t; + e.onWarn && + e.defaultRichTextElements && + "string" == typeof ((t = e.messages || {}) ? t[Object.keys(t)[0]] : void 0) && + e.onWarn( + '[@formatjs/intl] "defaultRichTextElements" was specified but "message" was not pre-compiled. \nPlease consider using "@formatjs/cli" to pre-compile your messages for performance.\nFor more details see https://formatjs.io/docs/getting-started/message-distribution' + ); + })(r), + (0, s.__assign)((0, s.__assign)({}, r), { + formatters: n, + formatNumber: E.bind(null, r, n.getNumberFormat), + formatNumberToParts: D.bind(null, r, n.getNumberFormat), + formatRelativeTime: S.bind(null, r, n.getRelativeTimeFormat), + formatDate: _.bind(null, r, n.getDateTimeFormat), + formatDateToParts: O.bind(null, r, n.getDateTimeFormat), + formatTime: T.bind(null, r, n.getDateTimeFormat), + formatDateTimeRange: I.bind(null, r, n.getDateTimeFormat), + formatTimeToParts: F.bind(null, r, n.getDateTimeFormat), + formatPlural: N.bind(null, r, n.getPluralRules), + formatMessage: v.bind(null, r, n), + $t: v.bind(null, r, n), + formatList: M.bind(null, r, n.getListFormat), + formatListToParts: P.bind(null, r, n.getListFormat), + formatDisplayName: B.bind(null, r, n.getDisplayNames), + }) + ); + })((0, s.__assign)((0, s.__assign)((0, s.__assign)({}, l.Z0), r), { defaultRichTextElements: o }), t); + return (0, s.__assign)((0, s.__assign)({}, a), { + formatMessage: V.bind( + null, + { + locale: a.locale, + timeZone: a.timeZone, + fallbackOnEmptyString: a.fallbackOnEmptyString, + formats: a.formats, + defaultLocale: a.defaultLocale, + defaultFormats: a.defaultFormats, + messages: a.messages, + onError: a.onError, + defaultRichTextElements: o, + }, + a.formatters + ), + }); + }; + const G = (function (e) { + function t() { + var t = (null !== e && e.apply(this, arguments)) || this; + return (t.cache = (0, y.Sn)()), (t.state = { cache: t.cache, intl: H(U(t.props), t.cache), prevConfig: U(t.props) }), t; + } + return ( + (0, s.__extends)(t, e), + (t.getDerivedStateFromProps = function (e, t) { + var n = t.prevConfig, + r = t.cache, + o = U(e); + return (0, l.wU)(n, o) ? null : { intl: H(o, r), prevConfig: o }; + }), + (t.prototype.render = function () { + return (0, l.lq)(this.state.intl), r.createElement(c.zt, { value: this.state.intl }, this.props.children); + }), + (t.displayName = "IntlProvider"), + (t.defaultProps = l.Z0), + t + ); + })(r.PureComponent); + var W = n(22807), + Q = n.n(W), + J = (n(81123), n(23492)), + Y = n(56429), + q = n(70075); + function X(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function K(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? X(Object(n), !0).forEach(function (t) { + $(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : X(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function $(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + function ee(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + function te(e, t, n, r, o, a, i) { + try { + var s = e[a](i), + c = s.value; + } catch (e) { + return void n(e); + } + s.done ? t(c) : Promise.resolve(c).then(r, o); + } + function ne(e) { + return function () { + var t = this, + n = arguments; + return new Promise(function (r, o) { + var a = e.apply(t, n); + function i(e) { + te(a, r, o, i, s, "next", e); + } + function s(e) { + te(a, r, o, i, s, "throw", e); + } + i(void 0); + }); + }; + } + n(42059), n(12782), n(18871), n(4728), n(14211), n(90739); + var re, + oe, + ae, + ie, + se, + ce, + le, + ue, + de, + pe, + fe, + me, + he, + ve, + ye, + ge, + be, + Ee, + De, + Ce, + we, + Se, + Ae, + ke, + _e, + Te, + Ie, + Oe, + Fe, + xe, + Ne, + Re, + Le, + Me, + Pe, + je, + Be, + Ze, + Ue, + ze, + Ve, + He, + Ge, + We, + Qe, + Je, + Ye, + qe, + Xe, + Ke, + $e, + et, + tt, + nt, + rt, + ot, + at, + it, + st, + ct, + lt, + ut, + dt, + pt, + ft, + mt, + ht, + vt, + yt, + gt, + bt, + Et, + Dt, + Ct, + wt, + St, + At, + kt, + _t, + Tt, + It, + Ot, + Ft, + xt, + Nt, + Rt, + Lt, + Mt, + Pt, + jt, + Bt, + Zt, + Ut, + zt, + Vt, + Ht, + Gt, + Wt, + Qt, + Jt, + Yt, + qt, + Xt, + Kt, + $t, + en, + tn, + nn, + rn, + on, + an, + sn, + cn, + ln, + un, + dn, + pn, + fn = { + bn: "bn-BD", + cs: "cs-CZ", + cy: "cy-GB", + da: "da-DK", + de: "de-DE", + el: "el-GR", + en: "en-US", + es: "es-ES", + fi: "fi-FI", + fil: "fil-PH", + fr: "fr-FR", + hi: "hi-IN", + hu: "hu-HU", + id: "id-ID", + it: "it-IT", + ja: "ja-JP", + ko: "ko-KR", + ms: "ms-MY", + nb: "nb-NO", + ne: "ne-NP", + nl: "nl-NL", + pl: "pl-PL", + pt: "pt-BR", + ro: "ro-RO", + ru: "ru-RU", + sv: "sv-SE", + ta: "ta-IN", + th: "th-TH", + tr: "tr-TR", + uk: "uk-UA", + vi: "vi-VI", + zh: "zh-CN", + zhhans: "zh-CN", + "zh-hans": "zh-CN", + "zh-hant": "zh-TW", + zhhant: "zh-TW", + }, + mn = n(89535), + hn = { + bn: { + pluralRules: + ((pn = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(9796).then(n.t.bind(n, 33306, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return pn.apply(this, arguments); + }), + relativeTimeFormat: + ((dn = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(8243).then(n.t.bind(n, 76783, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return dn.apply(this, arguments); + }), + translation: + ((un = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(5817).then(n.t.bind(n, 80824, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return un.apply(this, arguments); + }), + }, + cs: { + pluralRules: + ((ln = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(9466).then(n.t.bind(n, 65434, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return ln.apply(this, arguments); + }), + relativeTimeFormat: + ((cn = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(6707).then(n.t.bind(n, 99856, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return cn.apply(this, arguments); + }), + translation: + ((sn = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(1308).then(n.t.bind(n, 16524, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return sn.apply(this, arguments); + }), + }, + cy: { + pluralRules: + ((an = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(582).then(n.t.bind(n, 30993, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return an.apply(this, arguments); + }), + relativeTimeFormat: + ((on = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(7112).then(n.t.bind(n, 80644, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return on.apply(this, arguments); + }), + translation: + ((rn = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(527).then(n.t.bind(n, 33063, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return rn.apply(this, arguments); + }), + }, + da: { + pluralRules: + ((nn = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(7879).then(n.t.bind(n, 93199, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return nn.apply(this, arguments); + }), + relativeTimeFormat: + ((tn = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(9670).then(n.t.bind(n, 15225, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return tn.apply(this, arguments); + }), + translation: + ((en = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(3250).then(n.t.bind(n, 47116, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return en.apply(this, arguments); + }), + }, + de: { + pluralRules: + (($t = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(3284).then(n.t.bind(n, 40869, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return $t.apply(this, arguments); + }), + relativeTimeFormat: + ((Kt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(7954).then(n.t.bind(n, 46938, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Kt.apply(this, arguments); + }), + translation: + ((Xt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(9084).then(n.t.bind(n, 55946, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Xt.apply(this, arguments); + }), + }, + el: { + pluralRules: + ((qt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(9513).then(n.t.bind(n, 81833, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return qt.apply(this, arguments); + }), + relativeTimeFormat: + ((Yt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(4803).then(n.t.bind(n, 23156, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Yt.apply(this, arguments); + }), + translation: + ((Jt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(5081).then(n.t.bind(n, 73242, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Jt.apply(this, arguments); + }), + }, + es: { + pluralRules: + ((Qt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(4262).then(n.t.bind(n, 55467, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Qt.apply(this, arguments); + }), + relativeTimeFormat: + ((Wt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(5978).then(n.t.bind(n, 39952, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Wt.apply(this, arguments); + }), + translation: + ((Gt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(5002).then(n.t.bind(n, 64013, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Gt.apply(this, arguments); + }), + }, + fi: { + pluralRules: + ((Ht = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(2406).then(n.t.bind(n, 25395, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Ht.apply(this, arguments); + }), + relativeTimeFormat: + ((Vt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(6970).then(n.t.bind(n, 93918, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Vt.apply(this, arguments); + }), + translation: + ((zt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(4707).then(n.t.bind(n, 8828, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return zt.apply(this, arguments); + }), + }, + fil: { + pluralRules: + ((Ut = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(1525).then(n.t.bind(n, 78253, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Ut.apply(this, arguments); + }), + relativeTimeFormat: + ((Zt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(4974).then(n.t.bind(n, 7039, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Zt.apply(this, arguments); + }), + translation: + ((Bt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(9700).then(n.t.bind(n, 11402, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Bt.apply(this, arguments); + }), + }, + fr: { + pluralRules: + ((jt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(9877).then(n.t.bind(n, 90327, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return jt.apply(this, arguments); + }), + relativeTimeFormat: + ((Pt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(7181).then(n.t.bind(n, 42011, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Pt.apply(this, arguments); + }), + translation: + ((Mt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(7059).then(n.t.bind(n, 36868, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Mt.apply(this, arguments); + }), + }, + hi: { + pluralRules: + ((Lt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(9789).then(n.t.bind(n, 56153, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Lt.apply(this, arguments); + }), + relativeTimeFormat: + ((Rt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(5339).then(n.t.bind(n, 30328, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Rt.apply(this, arguments); + }), + translation: + ((Nt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(8661).then(n.t.bind(n, 85717, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Nt.apply(this, arguments); + }), + }, + hu: { + pluralRules: + ((xt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(4591).then(n.t.bind(n, 97387, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return xt.apply(this, arguments); + }), + relativeTimeFormat: + ((Ft = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(3364).then(n.t.bind(n, 91919, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Ft.apply(this, arguments); + }), + translation: + ((Ot = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(5910).then(n.t.bind(n, 46043, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Ot.apply(this, arguments); + }), + }, + id: { + pluralRules: + ((It = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(4472).then(n.t.bind(n, 32861, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return It.apply(this, arguments); + }), + relativeTimeFormat: + ((Tt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(1888).then(n.t.bind(n, 95724, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Tt.apply(this, arguments); + }), + translation: + ((_t = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(5066).then(n.t.bind(n, 91, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return _t.apply(this, arguments); + }), + }, + it: { + pluralRules: + ((kt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(9563).then(n.t.bind(n, 8935, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return kt.apply(this, arguments); + }), + relativeTimeFormat: + ((At = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(6138).then(n.t.bind(n, 87386, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return At.apply(this, arguments); + }), + translation: + ((St = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(7201).then(n.t.bind(n, 47007, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return St.apply(this, arguments); + }), + }, + ja: { + pluralRules: + ((wt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(7864).then(n.t.bind(n, 67987, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return wt.apply(this, arguments); + }), + relativeTimeFormat: + ((Ct = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(9495).then(n.t.bind(n, 93057, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Ct.apply(this, arguments); + }), + translation: + ((Dt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(9455).then(n.t.bind(n, 66884, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Dt.apply(this, arguments); + }), + }, + ko: { + pluralRules: + ((Et = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(5792).then(n.t.bind(n, 5871, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Et.apply(this, arguments); + }), + relativeTimeFormat: + ((bt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(8752).then(n.t.bind(n, 71609, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return bt.apply(this, arguments); + }), + translation: + ((gt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(7216).then(n.t.bind(n, 58796, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return gt.apply(this, arguments); + }), + }, + ms: { + pluralRules: + ((yt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(7384).then(n.t.bind(n, 64793, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return yt.apply(this, arguments); + }), + relativeTimeFormat: + ((vt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(5566).then(n.t.bind(n, 82064, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return vt.apply(this, arguments); + }), + translation: + ((ht = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(9051).then(n.t.bind(n, 8167, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return ht.apply(this, arguments); + }), + }, + nb: { + pluralRules: + ((mt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(7667).then(n.t.bind(n, 35400, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return mt.apply(this, arguments); + }), + relativeTimeFormat: + ((ft = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(4251).then(n.t.bind(n, 54494, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return ft.apply(this, arguments); + }), + translation: + ((pt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(9965).then(n.t.bind(n, 41945, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return pt.apply(this, arguments); + }), + }, + ne: { + pluralRules: + ((dt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(8676).then(n.t.bind(n, 83354, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return dt.apply(this, arguments); + }), + relativeTimeFormat: + ((ut = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(1703).then(n.t.bind(n, 18673, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return ut.apply(this, arguments); + }), + translation: + ((lt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(9464).then(n.t.bind(n, 36862, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return lt.apply(this, arguments); + }), + }, + nl: { + pluralRules: + ((ct = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(8683).then(n.t.bind(n, 64279, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return ct.apply(this, arguments); + }), + relativeTimeFormat: + ((st = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(1834).then(n.t.bind(n, 40551, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return st.apply(this, arguments); + }), + translation: + ((it = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(763).then(n.t.bind(n, 35538, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return it.apply(this, arguments); + }), + }, + pl: { + pluralRules: + ((at = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(6070).then(n.t.bind(n, 10072, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return at.apply(this, arguments); + }), + relativeTimeFormat: + ((ot = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(6284).then(n.t.bind(n, 47051, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return ot.apply(this, arguments); + }), + translation: + ((rt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(162).then(n.t.bind(n, 17826, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return rt.apply(this, arguments); + }), + }, + pt: { + pluralRules: + ((nt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(316).then(n.t.bind(n, 64224, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return nt.apply(this, arguments); + }), + relativeTimeFormat: + ((tt = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(9331).then(n.t.bind(n, 84197, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return tt.apply(this, arguments); + }), + translation: + ((et = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(2430).then(n.t.bind(n, 88744, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return et.apply(this, arguments); + }), + }, + ro: { + pluralRules: + (($e = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(1516).then(n.t.bind(n, 77500, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return $e.apply(this, arguments); + }), + relativeTimeFormat: + ((Ke = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(789).then(n.t.bind(n, 79285, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Ke.apply(this, arguments); + }), + translation: + ((Xe = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(7645).then(n.t.bind(n, 29807, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Xe.apply(this, arguments); + }), + }, + ru: { + pluralRules: + ((qe = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(5855).then(n.t.bind(n, 2838, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return qe.apply(this, arguments); + }), + relativeTimeFormat: + ((Ye = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(6496).then(n.t.bind(n, 41865, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Ye.apply(this, arguments); + }), + translation: + ((Je = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(9618).then(n.t.bind(n, 48672, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Je.apply(this, arguments); + }), + }, + sv: { + pluralRules: + ((Qe = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(8718).then(n.t.bind(n, 32424, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Qe.apply(this, arguments); + }), + relativeTimeFormat: + ((We = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(450).then(n.t.bind(n, 79996, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return We.apply(this, arguments); + }), + translation: + ((Ge = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(3265).then(n.t.bind(n, 33452, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Ge.apply(this, arguments); + }), + }, + ta: { + pluralRules: + ((He = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(1193).then(n.t.bind(n, 1574, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return He.apply(this, arguments); + }), + relativeTimeFormat: + ((Ve = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(6957).then(n.t.bind(n, 85326, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Ve.apply(this, arguments); + }), + translation: + ((ze = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(4932).then(n.t.bind(n, 9494, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return ze.apply(this, arguments); + }), + }, + th: { + pluralRules: + ((Ue = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(4037).then(n.t.bind(n, 18112, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Ue.apply(this, arguments); + }), + relativeTimeFormat: + ((Ze = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(2047).then(n.t.bind(n, 85957, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Ze.apply(this, arguments); + }), + translation: + ((Be = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(5245).then(n.t.bind(n, 96575, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Be.apply(this, arguments); + }), + }, + tr: { + pluralRules: + ((je = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(3342).then(n.t.bind(n, 97329, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return je.apply(this, arguments); + }), + relativeTimeFormat: + ((Pe = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(3501).then(n.t.bind(n, 16454, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Pe.apply(this, arguments); + }), + translation: + ((Me = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(9330).then(n.t.bind(n, 39030, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Me.apply(this, arguments); + }), + }, + uk: { + pluralRules: + ((Le = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(3565).then(n.t.bind(n, 72918, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Le.apply(this, arguments); + }), + relativeTimeFormat: + ((Re = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(8726).then(n.t.bind(n, 38396, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Re.apply(this, arguments); + }), + translation: + ((Ne = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(7063).then(n.t.bind(n, 45901, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Ne.apply(this, arguments); + }), + }, + vi: { + pluralRules: + ((xe = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(3363).then(n.t.bind(n, 90408, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return xe.apply(this, arguments); + }), + relativeTimeFormat: + ((Fe = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(6854).then(n.t.bind(n, 71614, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Fe.apply(this, arguments); + }), + translation: + ((Oe = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(2082).then(n.t.bind(n, 95295, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Oe.apply(this, arguments); + }), + }, + zh: { + pluralRules: + ((Ie = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(906).then(n.t.bind(n, 56786, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Ie.apply(this, arguments); + }), + relativeTimeFormat: + ((Te = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(2977).then(n.t.bind(n, 10136, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Te.apply(this, arguments); + }), + translation: + ((_e = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(5586).then(n.t.bind(n, 55996, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return _e.apply(this, arguments); + }), + }, + "zh-hans": { + pluralRules: + ((ke = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(906).then(n.t.bind(n, 56786, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return ke.apply(this, arguments); + }), + relativeTimeFormat: + ((Ae = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(2977).then(n.t.bind(n, 10136, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Ae.apply(this, arguments); + }), + translation: + ((Se = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(5586).then(n.t.bind(n, 55996, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Se.apply(this, arguments); + }), + }, + "zh-cn": { + pluralRules: + ((we = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(906).then(n.t.bind(n, 56786, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return we.apply(this, arguments); + }), + relativeTimeFormat: + ((Ce = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(2977).then(n.t.bind(n, 10136, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Ce.apply(this, arguments); + }), + translation: + ((De = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(5586).then(n.t.bind(n, 55996, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return De.apply(this, arguments); + }), + }, + "zh-hant": { + pluralRules: + ((Ee = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(906).then(n.t.bind(n, 56786, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return Ee.apply(this, arguments); + }), + relativeTimeFormat: + ((be = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(2977).then(n.t.bind(n, 10136, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return be.apply(this, arguments); + }), + translation: + ((ge = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(4544).then(n.t.bind(n, 53575, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return ge.apply(this, arguments); + }), + }, + "zh-tw": { + pluralRules: + ((ye = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(906).then(n.t.bind(n, 56786, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return ye.apply(this, arguments); + }), + relativeTimeFormat: + ((ve = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(2977).then(n.t.bind(n, 10136, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return ve.apply(this, arguments); + }), + translation: + ((he = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(4544).then(n.t.bind(n, 53575, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return he.apply(this, arguments); + }), + }, + zz: { + pluralRules: + ((me = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(906).then(n.t.bind(n, 56786, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return me.apply(this, arguments); + }), + relativeTimeFormat: + ((fe = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(2977).then(n.t.bind(n, 10136, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return fe.apply(this, arguments); + }), + translation: + ((pe = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(4360).then(n.t.bind(n, 68407, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return pe.apply(this, arguments); + }), + }, + "zz-zz": { + pluralRules: + ((de = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(906).then(n.t.bind(n, 56786, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return de.apply(this, arguments); + }), + relativeTimeFormat: + ((ue = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(2977).then(n.t.bind(n, 10136, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return ue.apply(this, arguments); + }), + translation: + ((le = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(4360).then(n.t.bind(n, 68407, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return le.apply(this, arguments); + }), + }, + zu: { + pluralRules: + ((ce = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(906).then(n.t.bind(n, 56786, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return ce.apply(this, arguments); + }), + relativeTimeFormat: + ((se = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(2977).then(n.t.bind(n, 10136, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return se.apply(this, arguments); + }), + translation: + ((ie = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(4360).then(n.t.bind(n, 68407, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return ie.apply(this, arguments); + }), + }, + "zu-zu": { + pluralRules: + ((ae = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(906).then(n.t.bind(n, 56786, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return ae.apply(this, arguments); + }), + relativeTimeFormat: + ((oe = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(2977).then(n.t.bind(n, 10136, 23))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return oe.apply(this, arguments); + }), + translation: + ((re = ne( + regeneratorRuntime.mark(function e() { + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return e.abrupt("return", n.e(4360).then(n.t.bind(n, 68407, 19))); + case 1: + case "end": + return e.stop(); + } + }, e); + }) + )), + function () { + return re.apply(this, arguments); + }), + }, + }, + vn = function (e) { + var t = (0, r.useContext)(J.ZP), + a = t.typekitId, + i = t.locale, + s = t.theme, + c = t.spectrumUIScale, + l = (t.themeType, e.addSpectrum), + u = e.children, + d = e.style, + p = e.localeStringOverrides, + f = i.toLowerCase(); + hn[f] || (f = "fil-ph" === f ? "fil" : hn[f.substring(0, 2)] ? f.substring(0, 2) : "en"); + var m, + h, + v = + ((m = (0, r.useState)(mn)), + (h = 2), + (function (e) { + if (Array.isArray(e)) return e; + })(m) || + (function (e, t) { + var n = null == e ? null : ("undefined" != typeof Symbol && e[Symbol.iterator]) || e["@@iterator"]; + if (null != n) { + var r, + o, + a = [], + i = !0, + s = !1; + try { + for (n = n.call(e); !(i = (r = n.next()).done) && (a.push(r.value), !t || a.length !== t); i = !0); + } catch (e) { + (s = !0), (o = e); + } finally { + try { + i || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return a; + } + })(m, h) || + (function (e, t) { + if (e) { + if ("string" == typeof e) return ee(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + return "Object" === n && e.constructor && (n = e.constructor.name), "Map" === n || "Set" === n ? Array.from(e) : "Arguments" === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? ee(e, t) : void 0; + } + })(m, h) || + (function () { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + })()), + y = v[0], + g = v[1]; + (0, r.useEffect)( + function () { + var e = (function () { + var e = ne( + regeneratorRuntime.mark(function e(t) { + var r, o; + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + if (((r = (0, q.shouldPolyfill)(t)), (o = (0, Y.shouldPolyfill)(t)), !r)) { + e.next = 7; + break; + } + return (e.next = 5), n.e(5223).then(n.bind(n, 85223)); + case 5: + return (e.next = 7), hn[t].pluralRules(); + case 7: + if (!o) { + e.next = 12; + break; + } + return (e.next = 10), n.e(3784).then(n.bind(n, 43784)); + case 10: + return (e.next = 12), hn[t].relativeTimeFormat(); + case 12: + case "end": + return e.stop(); + } + }, e); + }) + ); + return function (t) { + return e.apply(this, arguments); + }; + })(), + t = (function () { + var e = ne( + regeneratorRuntime.mark(function e(t) { + var n; + return regeneratorRuntime.wrap(function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + return (e.next = 2), hn[t].translation(); + case 2: + (n = e.sent), g(n); + case 4: + case "end": + return e.stop(); + } + }, e); + }) + ); + return function (t) { + return e.apply(this, arguments); + }; + })(); + "en" === f ? g(mn) : (e(f), t(f)); + }, + [f] + ); + var b = (0, r.useMemo)( + function () { + return K({ height: "100%" }, d); + }, + [d] + ), + E = (0, r.useMemo)( + function () { + return K(K({}, y), p[f]); + }, + [p, f, y] + ), + D = u; + return l && (D = o().createElement(Q(), { locale: fn[f], scale: c, style: b, theme: s, typekitId: a }, D)), o().createElement(G, { key: f, locale: f, messages: E }, D); + }; + (vn.propTypes = { addSpectrum: i().bool, children: i().node, style: i().object, localeStringOverrides: i().object }), (vn.defaultProps = { addSpectrum: !0, localeStringOverrides: {} }); + const yn = vn; + }, + 47107: (e, t, n) => { + "use strict"; + function r(e) { + return ( + (r = + "function" == typeof Symbol && "symbol" == typeof Symbol.iterator + ? function (e) { + return typeof e; + } + : function (e) { + return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e; + }), + r(e) + ); + } + t.Z = void 0; + var o = (function (e) { + if (e && e.__esModule) return e; + if (null === e || ("object" !== r(e) && "function" != typeof e)) return { default: e }; + var t = l(); + if (t && t.has(e)) return t.get(e); + var n = {}, + o = Object.defineProperty && Object.getOwnPropertyDescriptor; + for (var a in e) + if (Object.prototype.hasOwnProperty.call(e, a)) { + var i = o ? Object.getOwnPropertyDescriptor(e, a) : null; + i && (i.get || i.set) ? Object.defineProperty(n, a, i) : (n[a] = e[a]); + } + return (n.default = e), t && t.set(e, n), n; + })(n(23469)), + a = c(n(47776)), + i = c(n(7846)), + s = n(2589); + function c(e) { + return e && e.__esModule ? e : { default: e }; + } + function l() { + if ("function" != typeof WeakMap) return null; + var e = new WeakMap(); + return ( + (l = function () { + return e; + }), + e + ); + } + function u(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function d(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? u(Object(n), !0).forEach(function (t) { + p(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : u(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function p(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var f = function (e) { + var t = !0; + if ( + (e.disabled && (t = !1), + "prod" !== e.env && + "production" !== e.env && + (e.project || (console.error("When instantiated the Ingest Provider component must be given a project prop."), (t = !1)), + e.apiKey || (console.error("When instantiated the Ingest Provider component must be given an apiKey prop."), (t = !1)), + e.token || e.allowNoToken || (console.error("When instantiated the Ingest Provider component must be given a token prop."), (t = !1))), + t) + ) + return (0, i.default)(e); + }, + m = o.default.forwardRef(function (e, t) { + var n = (0, o.useContext)(s.IngestContext) || {}, + r = f(e), + a = (0, o.useMemo)( + function () { + return r ? d({}, n, p({}, e.project, r)) : d({}, n); + }, + [r] + ); + return ( + (0, o.useEffect)( + function () { + return function () { + var t = f(e); + (t || (e.disabled && t)) && t.delete(); + }; + }, + [e.project, e.disabled] + ), + (0, o.useImperativeHandle)( + t, + function () { + return { + getController: function () { + return a[e.project]; + }, + }; + }, + [a] + ), + o.default.createElement(s.IngestContext.Provider, { value: a }, e.children) + ); + }); + (m.displayName = "IngestProvider"), + (m.defaultProps = { disabled: !1, env: "stage" }), + (m.propTypes = { + allowNoToken: a.default.bool, + apiKey: a.default.string.isRequired, + data: a.default.object, + debounce: a.default.number, + disabled: a.default.bool, + children: a.default.node, + env: a.default.string, + ingestType: a.default.string, + maQueuedEvents: a.default.number, + onLog: a.default.func, + product: a.default.string, + productLocation: a.default.string, + project: a.default.string.isRequired, + timestampPropertyName: a.default.string, + token: a.default.string, + userRegion: a.default.string, + }); + var h = m; + t.Z = h; + }, + 2589: (e, t, n) => { + "use strict"; + var r; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.IngestContext = void 0); + var o = ((r = n(23469)) && r.__esModule ? r : { default: r }).default.createContext({ + fireEvent: function () { + return new Promise(function (e) { + return e(); + }); + }, + }); + t.IngestContext = o; + }, + 7846: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var r = i(n(43235)), + o = i(n(69611)), + a = i(n(21429)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + function s(e) { + return ( + (s = + "function" == typeof Symbol && "symbol" == typeof Symbol.iterator + ? function (e) { + return typeof e; + } + : function (e) { + return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e; + }), + s(e) + ); + } + function c(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + var l = { + fireEvent: function () { + return Promise.resolve(); + }, + flush: function () { + return Promise.resolve(); + }, + }, + u = (function () { + function e(t) { + !(function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + })(this, e), + this.configure(t), + (this.offlineQueue = []), + (this.fireEvent = this.fireEvent.bind(this)), + (this.fireQueuedEvents = this.fireQueuedEvents.bind(this)), + (this._sessionGuid = (0, o.default)()), + window.addEventListener("online", this.fireQueuedEvents); + } + var t, n; + return ( + (t = e), + (n = [ + { + key: "configure", + value: function (e) { + var t = e.token, + n = e.onLog; + if (e.apiInstance) this._ingestApi = e.apiInstance; + else { + var r = { + getAccessToken: function (e) { + e(null, t); + }, + log: function (e) { + n && n(e); + }, + }, + o = { + ENVIRONMENT: e.env, + ALLOW_NO_TOKEN: e.allowNoToken, + ANALYTICS_API_KEY: e.apiKey, + ANALYTICS_PROJECT: e.project, + ANALYTICS_X_PRODUCT: e.product, + ANALYTICS_X_PRODUCT_LOCATION: e.productLocation, + ANALYTICS_MAX_QUEUED_EVENTS: e.maxQueuedEvents, + ANALYTICS_DEBOUNCE: e.debounce, + ANALYTICS_USER_REGION: e.userRegion, + ANALYTICS_INGEST_TYPE: e.ingestType, + TIMESTAMP_PROPERTY_NAME: e.timestampPropertyName, + }, + i = new a.default(r, o); + i.enable(!0), (this._ingestApi = i); + } + this.updateData(e.data), (this.project = e.project), (this.fireEventCb = e.fireEventCallback || function () {}); + }, + }, + { + key: "updateData", + value: function (e) { + this._baseData = e; + }, + }, + { + key: "_flattenObj", + value: function (e, t, n) { + var r = this; + return ( + Object.keys(e).forEach(function (o) { + var a = e[o], + i = n ? "".concat(n, ".").concat(o) : o; + !a || "object" !== s(a) || a instanceof Date ? (t[i] = a) : r._flattenObj(a, t, i); + }), + t + ); + }, + }, + { + key: "fireQueuedEvents", + value: function () { + var e = this; + this.offlineQueue.forEach(function (t) { + var n = t.augmentedData, + r = t.fireImmediately, + o = t.options, + a = t.mergeBaseData; + e.fireEvent(n, r, o, a); + }), + (this.offlineQueue = []); + }, + }, + { + key: "fireEvent", + value: function () { + var e = this, + t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + n = arguments.length > 1 ? arguments[1] : void 0, + a = arguments.length > 2 ? arguments[2] : void 0, + i = !(arguments.length > 3 && void 0 !== arguments[3]) || arguments[3]; + return new Promise(function (s, c) { + var l = {}; + if (i) { + var u, + d, + p, + f = (0, r.default)({}, e._baseData) || {}; + f.event || (f.event = {}), + (f.event.session_guid = null !== (u = f.event.session_guid) && void 0 !== u ? u : e._sessionGuid), + (f.event.guid = null !== (d = f.event.guid) && void 0 !== d ? d : (0, o.default)()), + (f.event.offline = null !== (p = f.event.offline) && void 0 !== p ? p : (!navigator.onLine).toString()), + (0, r.default)(l, f, t); + } else l = t; + var m = e._flattenObj(l, {}), + h = function (t) { + t ? c(t) : (e.fireEventCb(l), s(m)); + }; + navigator.onLine ? (e._ingestApi.postEvent(m, n ? void 0 : h, a), n && e._ingestApi.flush(!0, h)) : (s(m), e.offlineQueue.push({ augmentedData: l, fireImmediately: n, options: a, mergeBaseData: !1 })); + }); + }, + }, + { + key: "flush", + value: function () { + var e = this; + return new Promise(function (t, n) { + e._ingestApi.flush(!0, function (e) { + e ? n(e) : t(); + }); + }); + }, + }, + { + key: "delete", + value: function () { + window.removeEventListener("online", this.fireQueuedEvents), (this.offlineQueue = []), delete l[this.project]; + }, + }, + ]), + n && c(t.prototype, n), + e + ); + })(); + function d(e) { + var t; + return l[e.project] ? (t = l[e.project]).configure(e) : ((t = new u(e)), (l[e.project] = t)), t; + } + d.getInstance = function (e) { + return l[e] || l; + }; + var p = d; + t.default = p; + }, + 79883: (e, t, n) => { + "use strict"; + t.default = function (e) { + return function (t) { + return (function (n) { + function r(e) { + var t; + return ( + (function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + })(this, r), + ((t = (function (e, t) { + return !t || ("object" !== i(t) && "function" != typeof t) ? u(e) : t; + })(this, l(r).call(this, e))).handleWrappedRef = t.handleWrappedRef.bind(u(t))), + t + ); + } + return ( + (function (e, t) { + if ("function" != typeof t && null !== t) throw new TypeError("Super expression must either be null or a function"); + (e.prototype = Object.create(t && t.prototype, { constructor: { value: e, writable: !0, configurable: !0 } })), t && d(e, t); + })(r, n), + (p = r), + (f = [ + { + key: "getWrappedInstance", + value: function () { + return this._wrappedRef; + }, + }, + { + key: "handleWrappedRef", + value: function (e) { + this._wrappedRef = e; + }, + }, + { + key: "render", + value: function () { + var n = this; + return o.default.createElement(a.IngestContext.Consumer, null, function (r) { + var a; + return (a = e && r && r[e] ? r[e] : r), o.default.createElement(t, s({ ref: n.handleWrappedRef }, n.props, { ccxIngest: a })); + }); + }, + }, + ]) && c(p.prototype, f), + r + ); + var p, f; + })(o.default.Component); + }; + }; + var r, + o = (r = n(23469)) && r.__esModule ? r : { default: r }, + a = n(2589); + function i(e) { + return ( + (i = + "function" == typeof Symbol && "symbol" == typeof Symbol.iterator + ? function (e) { + return typeof e; + } + : function (e) { + return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e; + }), + i(e) + ); + } + function s() { + return ( + (s = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + s.apply(this, arguments) + ); + } + function c(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + function l(e) { + return ( + (l = Object.setPrototypeOf + ? Object.getPrototypeOf + : function (e) { + return e.__proto__ || Object.getPrototypeOf(e); + }), + l(e) + ); + } + function u(e) { + if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); + return e; + } + function d(e, t) { + return ( + (d = + Object.setPrototypeOf || + function (e, t) { + return (e.__proto__ = t), e; + }), + d(e, t) + ); + } + }, + 48422: (e, t, n) => { + "use strict"; + t.default = void 0; + var r = n(23469), + o = n(2589); + t.default = function (e) { + var t = (0, r.useContext)(o.IngestContext); + return t[e] || t; + }; + }, + 94055: (e, t, n) => { + n(47107).Z, (t.ccxController = n(7846).default), (t.ccxIngest = n(79883).default), n(2589).IngestContext, (t.useCCXIngest = n(48422).default); + }, + 99682: (e, t, n) => { + "use strict"; + var r = n(86633); + t.Z = void 0; + var o = r(n(17555)), + a = r(n(2400)), + i = r(n(80034)), + s = r(n(15270)), + c = r(n(19854)), + l = r(n(33470)), + u = r(n(69892)), + d = n(12434); + function p(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function f(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? p(Object(n), !0).forEach(function (t) { + (0, o.default)(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : p(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + var m = (function (e) { + (0, s.default)(o, e); + var t, + n, + r = + ((t = o), + (n = (function () { + if ("undefined" == typeof Reflect || !Reflect.construct) return !1; + if (Reflect.construct.sham) return !1; + if ("function" == typeof Proxy) return !0; + try { + return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; + } catch (e) { + return !1; + } + })()), + function () { + var e, + r = (0, l.default)(t); + if (n) { + var o = (0, l.default)(this).constructor; + e = Reflect.construct(r, arguments, o); + } else e = r.apply(this, arguments); + return (0, c.default)(this, e); + }); + function o() { + return (0, a.default)(this, o), r.apply(this, arguments); + } + return ( + (0, i.default)(o, [ + { + key: "_createUrl", + value: function (e) { + return "v4" === this.apiVersion.toLowerCase() ? "".concat(this._endpoint, "/accessrequests/").concat(e) : "".concat(this._endpoint, "/accessrequests"); + }, + }, + { + key: "get", + value: function (e) { + var t = e.orderBy, + n = void 0 === t ? "-requesttime" : t, + r = e.types, + o = void 0 === r ? [] : r, + a = e.limit, + i = void 0 === a ? 10 : a, + s = e.resourceUrn, + c = { limit: i, orderBy: n, resourceUrn: void 0, types: o }, + l = this._createUrl(s); + return "V3" === this.apiVersion.toUpperCase() && (c.resourceUrn = s), this.getRequest({ params: c, url: l }); + }, + }, + { + key: "getNextPage", + value: function (e) { + return this.getRequest({ url: e }); + }, + }, + { + key: "request", + value: function (e) { + var t = e.canComment, + n = e.canShare, + r = e.locale, + o = void 0 === r ? "EN_US" : r, + a = e.message, + i = e.notifyCollaborators, + s = e.resourceUrn, + c = e.role, + l = e.targetUrl, + u = e.templateName; + if (s && u) { + var d = { email: { locale: o, templateName: u }, notifyCollaborators: i, parameters: { message: a, targetUrl: l } }, + p = c ? { notification: d, requestedPermissions: { canComment: t, canShare: n, role: c }, resourceUrn: s } : { notification: d, resourceUrn: s }, + f = "".concat(this._endpoint, "/accessrequests"); + return this.postRequest({ params: p, url: f }); + } + throw new Error("Access Requests create failed."); + }, + }, + { + key: "respond", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = e.action, + n = e.canComment, + r = e.canShare, + o = e.locale, + a = void 0 === o ? "EN_US" : o, + i = e.message, + s = e.requesterId, + c = e.targetUrl, + l = e.resourceUrn, + u = e.role, + d = e.templateName, + p = e.useMounts; + if (l && s && t && d && (("grant" === t && u) || "reject" === t)) { + var m = { action: t, role: u, requesterId: s, resourceUrn: l, notification: { email: { templateName: d, locale: a }, parameters: { targetUrl: c, message: i } }, useMounts: p }, + h = "".concat(this._endpoint, "/accessrequests/ops"); + if ("grant" === t) { + var v = f(f({}, m), {}, { canComment: n, canShare: r }); + return this.postRequest({ params: v, url: h }); + } + return this.postRequest({ params: m, url: h }); + } + throw new Error("accessrequests.respond failed"); + }, + }, + { + key: "grant", + value: function (e) { + var t = f(f({}, e), {}, { action: "grant" }); + return this.respond(t); + }, + }, + { + key: "reject", + value: function (e) { + var t = f(f({}, e), {}, { action: "reject" }); + return this.respond(t); + }, + }, + ]), + o + ); + })(u.default), + h = (0, d.InstanceCreator)(m, {}); + t.Z = h; + }, + 52081: (e, t, n) => { + "use strict"; + var r = n(86633); + t.Z = void 0; + var o = r(n(2400)), + a = r(n(80034)), + i = r(n(15270)), + s = r(n(19854)), + c = r(n(33470)), + l = r(n(22779)), + u = r(n(69892)), + d = n(12434); + var p = (function (e) { + (0, i.default)(u, e); + var t, + n, + r = + ((t = u), + (n = (function () { + if ("undefined" == typeof Reflect || !Reflect.construct) return !1; + if (Reflect.construct.sham) return !1; + if ("function" == typeof Proxy) return !0; + try { + return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; + } catch (e) { + return !1; + } + })()), + function () { + var e, + r = (0, c.default)(t); + if (n) { + var o = (0, c.default)(this).constructor; + e = Reflect.construct(r, arguments, o); + } else e = r.apply(this, arguments); + return (0, s.default)(this, e); + }); + function u() { + return (0, o.default)(this, u), r.apply(this, arguments); + } + return ( + (0, a.default)(u, [ + { + key: "_createUrl", + value: function (e) { + if (!e && "V4" === this.apiVersion.toUpperCase()) throw new Error("Missing Resource URN"); + if (e) return "V4" === this.apiVersion.toUpperCase() ? "".concat(this.endpoint, "/auth/").concat(encodeURIComponent(e)) : "".concat(this.endpoint, "/auth/urn/").concat(encodeURIComponent(e)); + }, + }, + { + key: "get", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = e.cdnAcceleration, + n = void 0 !== t && t, + r = e.resourceUrn, + o = e.sharingPassword, + a = this._createUrl(r), + i = { cdnAcceleration: n }, + s = o || this.sharingPassword, + c = s ? { "X-Sharing-Password": (0, l.default)(s) } : null; + if (!r) throw new Error("Missing Resource Urn"); + return this.getRequest({ url: a, headers: c, params: i }); + }, + }, + ]), + u + ); + })(u.default), + f = (0, d.InstanceCreator)(p, {}); + t.Z = f; + }, + 6650: (e, t, n) => { + "use strict"; + var r = n(86633); + t.Z = void 0; + var o = r(n(2400)), + a = r(n(80034)), + i = r(n(15270)), + s = r(n(19854)), + c = r(n(33470)), + l = r(n(69892)), + u = n(12434); + var d = (function (e) { + (0, i.default)(l, e); + var t, + n, + r = + ((t = l), + (n = (function () { + if ("undefined" == typeof Reflect || !Reflect.construct) return !1; + if (Reflect.construct.sham) return !1; + if ("function" == typeof Proxy) return !0; + try { + return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; + } catch (e) { + return !1; + } + })()), + function () { + var e, + r = (0, c.default)(t); + if (n) { + var o = (0, c.default)(this).constructor; + e = Reflect.construct(r, arguments, o); + } else e = r.apply(this, arguments); + return (0, s.default)(this, e); + }); + function l() { + return (0, o.default)(this, l), r.apply(this, arguments); + } + return ( + (0, a.default)(l, [ + { + key: "_createUrl", + value: function (e, t) { + var n = (0, u.getUrn)(e); + if (!n && "V4" === this.apiVersion.toUpperCase()) throw new Error("Missing Resource URN"); + return n + ? "V4" === this.apiVersion.toUpperCase() + ? "".concat(this.endpoint, "/capabilities/").concat(t ? n : encodeURIComponent(n)) + : "".concat(this.endpoint, "/capabilities/urn/").concat(t ? n : encodeURIComponent(n)) + : "".concat(this.endpoint, "/capabilities/").concat(t ? (0, u.getUrlPath)(e) : (0, u.encodeURIComponentEachSubdomain)((0, u.getUrlPath)(e))); + }, + }, + { + key: "get", + value: function (e) { + var t = e || {}, + n = t.resourceUrl, + r = t.skipUriEncoding, + o = t.params, + a = void 0 === o ? { extraFeatures: "orgEverybody" } : o; + if (!n) throw new Error("Missing Resource Path"); + return this.getRequest({ params: a, url: this._createUrl(n, r) }); + }, + }, + ]), + l + ); + })(l.default), + p = (0, u.InstanceCreator)(d, {}); + t.Z = p; + }, + 99533: (e, t, n) => { + "use strict"; + var r = n(86633); + t.ZP = void 0; + var o = r(n(2400)), + a = r(n(80034)), + i = r(n(15270)), + s = r(n(19854)), + c = r(n(33470)), + l = r(n(69892)), + u = n(12434); + var d = { stage: "https://platform-cs-stage.adobe.io/index", prod: "https://platform-cs.adobe.io/index" }, + p = (function (e) { + (0, i.default)(l, e); + var t, + n, + r = + ((t = l), + (n = (function () { + if ("undefined" == typeof Reflect || !Reflect.construct) return !1; + if (Reflect.construct.sham) return !1; + if ("function" == typeof Proxy) return !0; + try { + return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; + } catch (e) { + return !1; + } + })()), + function () { + var e, + r = (0, c.default)(t); + if (n) { + var o = (0, c.default)(this).constructor; + e = Reflect.construct(r, arguments, o); + } else e = r.apply(this, arguments); + return (0, s.default)(this, e); + }); + function l() { + return (0, o.default)(this, l), r.apply(this, arguments); + } + return ( + (0, a.default)(l, [ + { + key: "get", + value: function () { + var e = d[this.environment]; + return this.getRequest({ url: e }); + }, + }, + ]), + l + ); + })(l.default), + f = (0, u.InstanceCreator)(p, {}); + t.ZP = f; + }, + 56415: (e, t, n) => { + "use strict"; + var r = n(86633); + t.Z = void 0; + var o = r(n(2400)), + a = r(n(80034)), + i = r(n(15270)), + s = r(n(19854)), + c = r(n(33470)), + l = r(n(69892)), + u = n(12434); + var d = (function (e) { + (0, i.default)(l, e); + var t, + n, + r = + ((t = l), + (n = (function () { + if ("undefined" == typeof Reflect || !Reflect.construct) return !1; + if (Reflect.construct.sham) return !1; + if ("function" == typeof Proxy) return !0; + try { + return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; + } catch (e) { + return !1; + } + })()), + function () { + var e, + r = (0, c.default)(t); + if (n) { + var o = (0, c.default)(this).constructor; + e = Reflect.construct(r, arguments, o); + } else e = r.apply(this, arguments); + return (0, s.default)(this, e); + }); + function l() { + return (0, o.default)(this, l), r.apply(this, arguments); + } + return ( + (0, a.default)(l, [ + { + key: "create", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = "".concat(this._endpoint, "/invitations"), + n = e.resourceUrl, + r = e.recipients, + o = e.role, + a = e.useMounts, + i = e.acceptanceRequired, + s = e.ansNotification, + c = e.emailNotification, + l = e.message, + u = { acceptanceRequired: i, captcha: e.recaptcha, notification: { ans: s, email: c, parameters: { message: l, resourceViewUrl: e.resourceViewUrl } }, recipients: r, resourceUrl: n, role: o, useMounts: a }; + return this.postRequest({ url: t, params: u }); + }, + }, + ]), + l + ); + })(l.default), + p = (0, u.InstanceCreator)(d, {}); + t.Z = p; + }, + 50307: (e, t, n) => { + "use strict"; + var r = n(86633); + t.Z = void 0; + var o = r(n(2400)), + a = r(n(80034)), + i = r(n(15270)), + s = r(n(19854)), + c = r(n(33470)), + l = r(n(69892)), + u = n(12434); + var d = (function (e) { + (0, i.default)(l, e); + var t, + n, + r = + ((t = l), + (n = (function () { + if ("undefined" == typeof Reflect || !Reflect.construct) return !1; + if (Reflect.construct.sham) return !1; + if ("function" == typeof Proxy) return !0; + try { + return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; + } catch (e) { + return !1; + } + })()), + function () { + var e, + r = (0, c.default)(t); + if (n) { + var o = (0, c.default)(this).constructor; + e = Reflect.construct(r, arguments, o); + } else e = r.apply(this, arguments); + return (0, s.default)(this, e); + }); + function l() { + return (0, o.default)(this, l), r.apply(this, arguments); + } + return ( + (0, a.default)(l, [ + { + key: "get", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + t = e.orderBy, + n = void 0 === t ? "+sharedate" : t, + r = e.types, + o = void 0 === r ? [] : r, + a = e.limit, + i = void 0 === a ? 10 : a, + s = "" + .concat(this.endpoint, "/resources?orderBy=") + .concat(encodeURIComponent(n), "&type=") + .concat(encodeURIComponent(o.join(",")), "&limit=") + .concat(i); + return this.getRequest({ url: s }); + }, + }, + { + key: "getNextPage", + value: function (e) { + return this.getRequest({ url: e }); + }, + }, + ]), + l + ); + })(l.default), + p = (0, u.InstanceCreator)(d, {}); + t.Z = p; + }, + 84626: (e, t, n) => { + "use strict"; + var r = n(86633); + t.Z = void 0; + var o = r(n(2400)), + a = r(n(80034)), + i = r(n(15270)), + s = r(n(19854)), + c = r(n(33470)), + l = r(n(69892)), + u = n(12434); + var d = (function (e) { + (0, i.default)(l, e); + var t, + n, + r = + ((t = l), + (n = (function () { + if ("undefined" == typeof Reflect || !Reflect.construct) return !1; + if (Reflect.construct.sham) return !1; + if ("function" == typeof Proxy) return !0; + try { + return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; + } catch (e) { + return !1; + } + })()), + function () { + var e, + r = (0, c.default)(t); + if (n) { + var o = (0, c.default)(this).constructor; + e = Reflect.construct(r, arguments, o); + } else e = r.apply(this, arguments); + return (0, s.default)(this, e); + }); + function l() { + return (0, o.default)(this, l), r.apply(this, arguments); + } + return ( + (0, a.default)(l, [ + { + key: "get", + value: function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] && arguments[1], + n = "".concat(this._endpoint, "/share/urn/").concat(e), + r = { cdnAcceleration: t }, + o = { "x-sharing-password": btoa(this.sharingPassword) }; + return this.getRequest({ url: n, headers: o, params: r }); + }, + }, + ]), + l + ); + })(l.default), + p = (0, u.InstanceCreator)(d, {}); + t.Z = p; + }, + 30658: (e, t, n) => { + "use strict"; + var r = n(86633); + t.Z = void 0; + var o = r(n(2400)), + a = r(n(80034)), + i = r(n(15270)), + s = r(n(19854)), + c = r(n(33470)), + l = r(n(20097)), + u = r(n(69892)), + d = n(12434); + var p = (function (e) { + (0, i.default)(u, e); + var t, + n, + r = + ((t = u), + (n = (function () { + if ("undefined" == typeof Reflect || !Reflect.construct) return !1; + if (Reflect.construct.sham) return !1; + if ("function" == typeof Proxy) return !0; + try { + return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; + } catch (e) { + return !1; + } + })()), + function () { + var e, + r = (0, c.default)(t); + if (n) { + var o = (0, c.default)(this).constructor; + e = Reflect.construct(r, arguments, o); + } else e = r.apply(this, arguments); + return (0, s.default)(this, e); + }); + function u() { + return (0, o.default)(this, u), r.apply(this, arguments); + } + return ( + (0, a.default)(u, [ + { + key: "_createUrl", + value: function (e) { + var t = (0, d.getUrn)(e); + if (!t && "V4" === this.apiVersion.toUpperCase()) throw new Error("Missing Resource URN"); + return t + ? "V4" === this.apiVersion.toUpperCase() + ? "".concat(this.endpoint, "/share/").concat(encodeURIComponent(t)) + : "".concat(this.endpoint, "/share/urn/").concat(encodeURIComponent(t)) + : "".concat(this.endpoint, "/share/").concat((0, d.encodeURIComponentEachSubdomain)((0, d.getUrlPath)(e))); + }, + }, + { + key: "get", + value: function (e) { + var t = e || {}, + n = t.params, + r = void 0 === n ? { fields: "descendants", extraFeatures: "orgEverybody" } : n, + o = t.resourceUrl; + if (!o) throw new Error("Missing Resource resource Url"); + return this.getRequest({ url: this._createUrl(o), params: r }); + }, + }, + { + key: "patch", + value: function (e) { + var t = e || { request: {} }, + n = t.direct, + r = t.request, + o = void 0 === r ? {} : r, + a = t.resourceUrl; + if (!a || (0, l.default)(o) < 1) throw new Error("Missing Resource Path or Request paramaters"); + var i = n ? "".concat(this._createUrl(a), "?mode=direct_acl") : this._createUrl(a); + return this.patchRequest({ url: i, params: o }); + }, + }, + { + key: "post", + value: function (e) { + var t = e || { request: {} }, + n = t.direct, + r = t.request, + o = void 0 === r ? {} : r, + a = t.resourceUrl; + if (!a || (0, l.default)(o) < 1) throw new Error("Missing Resource Path or Request paramaters"); + var i = n ? "".concat(this._createUrl(a), "?mode=direct_acl") : this._createUrl(a); + return this.postRequest({ url: i, params: o }); + }, + }, + ]), + u + ); + })(u.default), + f = (0, d.InstanceCreator)(p, {}); + t.Z = f; + }, + 79027: (e, t, n) => { + "use strict"; + var r = n(86633); + t.ZP = void 0; + var o = r(n(17555)), + a = r(n(2400)), + i = r(n(80034)), + s = r(n(15270)), + c = r(n(19854)), + l = r(n(33470)), + u = r(n(20097)), + d = r(n(69892)), + p = n(12434); + function f(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function m(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? f(Object(n), !0).forEach(function (t) { + (0, o.default)(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : f(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + var h = { stage: "https://platform-cs-stage.adobe.io/content", prod: "https://platform-cs.adobe.io/content" }, + v = (function (e) { + (0, s.default)(o, e); + var t, + n, + r = + ((t = o), + (n = (function () { + if ("undefined" == typeof Reflect || !Reflect.construct) return !1; + if (Reflect.construct.sham) return !1; + if ("function" == typeof Proxy) return !0; + try { + return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; + } catch (e) { + return !1; + } + })()), + function () { + var e, + r = (0, l.default)(t); + if (n) { + var o = (0, l.default)(this).constructor; + e = Reflect.construct(r, arguments, o); + } else e = r.apply(this, arguments); + return (0, c.default)(this, e); + }); + function o() { + return (0, a.default)(this, o), r.apply(this, arguments); + } + return ( + (0, i.default)(o, [ + { + key: "get", + value: function (e, t, n) { + var r = m(m({}, n), t && { etag: t }); + if (!e) throw new Error("Missing request paramaters url"); + return this.getRequest({ headers: r, url: e }); + }, + }, + { + key: "head", + value: function (e) { + var t = "".concat(h[this.environment], "/directory/resolve?id=").concat(e); + if (!e) throw new Error("Missing request id"); + return this.headRequest({ headers: { "content-type": "application/vnd.adobecloud.accesscontrolpolicy+json" }, url: t }); + }, + }, + { + key: "patch", + value: function (e, t, n) { + var r = { "content-type": "application/json-patch+json", "If-Match": n }; + if (!e || (0, u.default)(t) < 1 || !n) throw new Error("Missing request paramaters"); + return this.patchRequest({ headers: r, params: t, url: e }); + }, + }, + { + key: "put", + value: function (e, t, n) { + var r = { etag: n }; + if (!e || (0, u.default)(t) < 1 || !n) throw new Error("Missing request paramaters"); + return this.putRequest({ headers: r, params: t, url: e }); + }, + }, + ]), + o + ); + })(d.default), + y = (0, p.InstanceCreator)(v, {}); + t.ZP = y; + }, + 69892: (e, t, n) => { + "use strict"; + var r = n(86633); + Object.defineProperty(t, "__esModule", { value: !0 }), (t.NormalizeApiResponseException = m), (t.default = void 0); + var o = r(n(20578)), + a = r(n(8012)), + i = r(n(2400)), + s = r(n(80034)), + c = r(n(17555)), + l = r(n(20097)), + u = r(n(47169)), + d = n(12434); + function p(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function f(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? p(Object(n), !0).forEach(function (t) { + (0, c.default)(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : p(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function m(e) { + (this.error = e), (this.statusCode = e.status), (this.statusText = e.statusText); + } + var h = (function () { + function e(t) { + var n = this; + (0, i.default)(this, e), + (0, c.default)(this, "_apiKey", void 0), + (0, c.default)(this, "_apiVersion", void 0), + (0, c.default)(this, "_accessToken", void 0), + (0, c.default)(this, "_environment", void 0), + (0, c.default)(this, "_endpoint", void 0), + (0, c.default)(this, "_refreshToken", void 0), + (0, c.default)(this, "_sharingPassword", void 0), + (0, c.default)(this, "_token", void 0), + (0, c.default)(this, "normalizeApiResponse", function (e) { + var t = (function () { + var r = (0, a.default)( + o.default.mark(function r(a) { + var i, s; + return o.default.wrap(function (r) { + for (;;) + switch ((r.prev = r.next)) { + case 0: + if (401 !== a.status || !n._refreshToken) { + r.next = 5; + break; + } + return (r.next = 3), n._refreshToken(); + case 3: + return ( + (n._token = r.sent), + r.abrupt( + "return", + e().then( + function (e) { + return 401 === e.status ? new m(e) : t(e); + }, + function (e) { + return e; + } + ) + ) + ); + case 5: + if (a.ok) { + r.next = 7; + break; + } + throw new m(a); + case 7: + if ( + !( + a.headers && + a.headers.has("content-type") && + (a.headers.get("content-type").indexOf("application/json") >= 0 || + a.headers.get("content-type").indexOf("application/vnd.adobecloud.repository+json") >= 0 || + a.headers.get("content-type").indexOf("application/vnd.adobecloud.index+json") >= 0) + ) + ) { + r.next = 11; + break; + } + return ( + (i = a.json()), + (s = a.headers.get("etag")), + r.abrupt( + "return", + s + ? i.then(function (e) { + return f(f({}, e), {}, { etag: s }); + }) + : i + ) + ); + case 11: + return r.abrupt("return", a); + case 12: + case "end": + return r.stop(); + } + }, r); + }) + ); + return function (e) { + return r.apply(this, arguments); + }; + })(); + return e().then(t, function (e) { + return e; + }); + }), + (0, c.default)(this, "deleteRequest", function (e) { + var t = e.params, + r = void 0 === t ? {} : t, + o = e.url, + a = void 0 === o ? "" : o; + return n.normalizeApiResponse(function () { + return fetch(a, { body: JSON.stringify(r), headers: n.getHeaders(), method: "DELETE" }); + }); + }), + (0, c.default)(this, "getRequest", function (e) { + var t = e.headers, + r = e.headersOverride, + o = e.params, + a = void 0 === o ? {} : o, + i = e.url, + s = void 0 === i ? "" : i, + c = (0, l.default)(a) ? "".concat(s, "?").concat((0, d.buildParamUrl)(a)) : s; + return n.normalizeApiResponse(function () { + return fetch(c, { headers: n.getHeaders(t, r), method: "GET" }); + }); + }), + (0, c.default)(this, "headRequest", function (e) { + var t = e.headers, + r = e.headersOverride, + o = e.params, + a = void 0 === o ? {} : o, + i = e.url, + s = void 0 === i ? "" : i, + c = (0, l.default)(a) ? "".concat(s, "?").concat((0, d.buildParamUrl)(a)) : s; + return n.normalizeApiResponse(function () { + return fetch(c, { headers: n.getHeaders(t, r), method: "HEAD" }); + }); + }), + (0, c.default)(this, "optionsRequest", function (e) { + var t = e.headers, + r = e.params, + o = void 0 === r ? {} : r, + a = e.url, + i = void 0 === a ? "" : a, + s = (0, l.default)(o) ? "".concat(i, "?").concat((0, d.buildParamUrl)(o)) : i; + return n.normalizeApiResponse(function () { + return fetch(s, { body: JSON.stringify(o), headers: t || n.getHeaders(), method: "OPTIONS" }); + }); + }), + (0, c.default)(this, "patchRequest", function (e) { + var t = e.headers, + r = e.headersOverride, + o = e.params, + a = void 0 === o ? {} : o, + i = e.url, + s = void 0 === i ? "" : i; + return n.normalizeApiResponse(function () { + return fetch(s, { body: JSON.stringify(a), headers: n.getHeaders(t, r), method: "PATCH" }); + }); + }), + (0, c.default)(this, "postRequest", function (e) { + var t = e.headers, + r = e.headersOverride, + o = e.params, + a = void 0 === o ? {} : o, + i = e.url, + s = void 0 === i ? "" : i; + return n.normalizeApiResponse(function () { + return fetch(s, { body: JSON.stringify(a), headers: n.getHeaders(t, r), method: "POST" }); + }); + }), + (0, c.default)(this, "putRequest", function (e) { + var t = e.headers, + r = e.headersOverride, + o = e.params, + a = void 0 === o ? {} : o, + i = e.url, + s = void 0 === i ? "" : i; + return n.normalizeApiResponse(function () { + return fetch(s, { body: JSON.stringify(a), headers: n.getHeaders(t, r), method: "PUT" }); + }); + }); + var r = t.apiKey, + s = t.accessToken, + p = t.apiVersion, + h = void 0 === p ? "V3" : p, + v = t.environment, + y = void 0 === v ? "stage" : v, + g = t.refreshToken, + b = t.sharingPassword, + E = t.token; + (this._apiKey = r), + (this._accessToken = s), + (this._apiVersion = h), + (this._environment = y), + (this._endpoint = u.default[y].INVITATIONS_SERVICE_ENDPOINT.replace("{VERSION}", h.toLowerCase())), + (this._refreshToken = g), + (this._sharingPassword = b), + (this._token = E); + } + return ( + (0, s.default)(e, [ + { + key: "apiKey", + get: function () { + return this._apiKey; + }, + set: function (e) { + this._apiKey = e; + }, + }, + { + key: "accessToken", + get: function () { + return this._accessToken; + }, + set: function (e) { + this._accessToken = e; + }, + }, + { + key: "apiVersion", + get: function () { + return this._apiVersion; + }, + set: function (e) { + this._apiVersion = e; + }, + }, + { + key: "endpoint", + get: function () { + return this._endpoint; + }, + set: function (e) { + this._endpoint = e; + }, + }, + { + key: "environment", + get: function () { + return this._environment; + }, + set: function (e) { + if (!u.default[e]) throw new Error("Setting the environment to ".concat(e, " is not accepted")); + (this._environment = e), (this._endpoint = u.default[e].INVITATIONS_SERVICE_ENDPOINT); + }, + }, + { + key: "sharingPassword", + get: function () { + return this._sharingPassword; + }, + set: function (e) { + this._sharingPassword = e; + }, + }, + { + key: "token", + get: function () { + return this._token; + }, + set: function (e) { + this._token = e; + }, + }, + { + key: "getHeaders", + value: function (e, t) { + var n = this.apiKey, + r = this.token, + o = this.accessToken, + a = { "content-type": "application/json", "x-api-key": n }; + return r && (a.authorization = "string" == typeof r && r.indexOf("Bearer ") > -1 ? r : "Bearer ".concat(r)), o && (a["X-Access-Token"] = o), e ? (t ? e : f(f({}, a), e)) : a; + }, + }, + ]), + e + ); + })(); + t.default = h; + }, + 12434: (e, t, n) => { + "use strict"; + var r = n(86633); + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.InstanceCreator = function (e, t) { + function n(n) { + var r = t.instance, + o = t.params; + if (!n && r) return r; + if (n && r) return (t.params = n), (t.instance = new e(n)), t.instance; + if (!o && !n) throw new Error("Service Class is not configured."); + return (t.params = n || o), (t.instance = new e(t.params)), t.instance; + } + return ( + (n.configure = function (e) { + t.params = e; + }), + n + ); + }), + (t.buildParamUrl = function (e) { + return (0, o.default)(e) > 0 ? new URLSearchParams(e).toString() : ""; + }), + (t.encodeURIComponentEachSubdomain = function (e) { + return e ? e.split("/").map(encodeURIComponent).join("/") : e; + }), + (t.getUrlPath = function (e) { + if (a(e)) { + var t = new URL(e).origin, + n = e.substring(t.length); + return "/" === n.charAt(0) ? n.substring(1) : n; + } + return e; + }), + (t.getUrn = function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : ""; + return a(e) && e.indexOf("urn:") > -1 ? e.substring(e.indexOf("urn:")) : null; + }), + (t.isValidUrl = a), + n(24527); + var o = r(n(20097)); + function a() { + return /((([A-Za-z]{3,9}:(?:\/\/)?)(?:[-;:&=\+\$,\w]+@)?[A-Za-z0-9.-]+|(?:www.|[-;:&=\+\$,\w]+@)[A-Za-z0-9.-]+)((?:\/[\+~%\/.\w-_ ]*)?\??(?:[-\+=&;%@.\w_]*)#?(?:[\w]*))?)/.test( + arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : "" + ); + } + }, + 47169: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.default = void 0), + (t.default = { + mock: { INVITATIONS_SERVICE_ENDPOINT: "/api/{VERSION}" }, + prod: { INVITATIONS_SERVICE_ENDPOINT: "https://invitations.adobe.io/api/{VERSION}" }, + stage: { INVITATIONS_SERVICE_ENDPOINT: "https://invitations-stage.adobe.io/api/{VERSION}" }, + }); + }, + 93387: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.XD_TARGET_URL_STAGE = t.XD_TARGET_URL_PROD = t.XD_MIME_TYPES = t.XD_ARTIFACT_MIME_TYPES = t.PHOTOSHOP_TARGET_URL_STAGE = t.PHOTOSHOP_TARGET_URL_PROD = t.PHOTOSHOP_MIME_TYPES = t.LIBRARY_MIME_TYPE = t.INDESIGN_MIME_TYPES = t.ILLUSTRATOR_TARGET_URL_STAGE = t.ILLUSTRATOR_TARGET_URL_PROD = t.ILLUSTRATOR_MIME_TYPES = t.CLOUD_DOC_TYPES = t.CANVAS_TARGET_URL_STAGE = t.CANVAS_TARGET_URL_PROD = t.CANVAS_MIME_TYPES = t.ASSETS_WEB_STAGE = t.ASSETS_WEB_SPACES_URL_SUFFIX = t.ASSETS_WEB_PUBLISHED_URL_SUFFIX = t.ASSETS_WEB_PROD = t.ASSETS_WEB_FILE_URL_SUFFIX = t.ASSETS_WEB_CLOUD_DOC_URL_SUFFIX = void 0), + (t.ASSETS_WEB_CLOUD_DOC_URL_SUFFIX = "?view=difile"), + (t.ASSETS_WEB_FILE_URL_SUFFIX = "?view=file"), + (t.ASSETS_WEB_PROD = "https://assets.adobe.com"), + (t.ASSETS_WEB_PUBLISHED_URL_SUFFIX = "?view=published"), + (t.ASSETS_WEB_SPACES_URL_SUFFIX = "?view=spaces"), + (t.ASSETS_WEB_STAGE = "https://assets-stage.adobecc.com"), + (t.CANVAS_MIME_TYPES = ["application/vnd.adobe.hz.canvas+dcx"]), + (t.CANVAS_TARGET_URL_PROD = "https://canvas.adobe.com/id/"), + (t.CANVAS_TARGET_URL_STAGE = "https://stage.fred.corp.adobe.com/id/"), + (t.LIBRARY_MIME_TYPE = "application/vnd.adobe.library+dcx"); + var n = ["document/vnd.adobe.indesign+dcx"]; + t.INDESIGN_MIME_TYPES = n; + var r = ["document/vnd.adobe.illustrator+dcx"]; + (t.ILLUSTRATOR_MIME_TYPES = r), (t.ILLUSTRATOR_TARGET_URL_PROD = "https://illustrator.adobe.com/id/"), (t.ILLUSTRATOR_TARGET_URL_STAGE = "https://stage.illustrator.adobe.com/id/"); + var o = ["document/vnd.adobe.psdc+dcx", "document/vnd.adobe.cpsd+dcx"]; + (t.PHOTOSHOP_MIME_TYPES = o), + (t.PHOTOSHOP_TARGET_URL_PROD = "https://photoshop.adobe.com/id/"), + (t.PHOTOSHOP_TARGET_URL_STAGE = "https://stage.photoshop.adobe.com/id/"), + (t.XD_TARGET_URL_PROD = "https://xd.adobe.com/view/"), + (t.XD_TARGET_URL_STAGE = "https://stage.xd.adobe.com/view/"); + var a = ["application/vnd.adobe.xd.cloudproject+dcx"]; + (t.XD_MIME_TYPES = a), (t.XD_ARTIFACT_MIME_TYPES = ["application/vnd.adobe.xd.sharedartifact+dcx"]); + var i = [].concat(o, r, n, a, ["application/vnd.adobe.gemini+dcx"]); + t.CLOUD_DOC_TYPES = i; + }, + 98482: (e, t, n) => { + "use strict"; + t.Z = function (e) { + var t = e.assetId, + n = e.environment, + o = e.isArtifact, + a = e.mimeType, + i = e.spaceUrn, + s = e.type, + c = e.useProductViewUrl, + l = "stage" === n ? r.ASSETS_WEB_STAGE : r.ASSETS_WEB_PROD; + return t + ? c && r.PHOTOSHOP_MIME_TYPES.includes(a) + ? "stage" === n + ? "".concat(r.PHOTOSHOP_TARGET_URL_STAGE).concat(t) + : "".concat(r.PHOTOSHOP_TARGET_URL_PROD).concat(t) + : c && r.ILLUSTRATOR_MIME_TYPES.includes(a) + ? "stage" === n + ? "".concat(r.ILLUSTRATOR_TARGET_URL_STAGE).concat(t) + : "".concat(r.ILLUSTRATOR_TARGET_URL_PROD).concat(t) + : r.CANVAS_MIME_TYPES.includes(a) + ? "stage" === n + ? "".concat(r.CANVAS_TARGET_URL_STAGE).concat(t) + : "".concat(r.CANVAS_TARGET_URL_PROD).concat(t) + : r.XD_ARTIFACT_MIME_TYPES.includes(a) + ? "stage" === n + ? "".concat(r.XD_TARGET_URL_STAGE).concat(t) + : "".concat(r.XD_TARGET_URL_PROD).concat(t) + : "spaceDocument" === s + ? "".concat(l, "/id/").concat(t).concat(r.ASSETS_WEB_SPACES_URL_SUFFIX) + : "space" === s || (i && ("space" === s || i.toLowerCase() === t.toLowerCase())) + ? "".concat(l, "/projects/").concat(t) + : "team" === s + ? "".concat(l, "/teams/").concat(t) + : r.CLOUD_DOC_TYPES.includes(a) + ? "".concat(l, "/id/").concat(t).concat(r.ASSETS_WEB_CLOUD_DOC_URL_SUFFIX) + : o + ? "".concat(l, "/id/").concat(t).concat(r.ASSETS_WEB_PUBLISHED_URL_SUFFIX) + : "".concat(l, "/id/").concat(t).concat(r.ASSETS_WEB_FILE_URL_SUFFIX) + : ""; + }; + var r = n(93387); + }, + 67961: (e, t, n) => { + e.exports = { + AccessRequestsService: n(99682).Z, + AuthService: n(52081).Z, + CapabilitiesService: n(6650).Z, + getTargetUrl: n(98482).Z, + IndexRepositoryService: n(99533).ZP, + InvitationService: n(56415).Z, + ResourcesService: n(50307).Z, + ShareContentService: n(84626).Z, + ShareService: n(30658).Z, + StorageRepositoryService: n(79027).ZP, + }; + }, + 89807: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = (function () { + function e(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + return function (t, n, r) { + return n && e(t.prototype, n), r && e(t, r), t; + }; + })(), + o = n(95134), + a = (function () { + function e() { + !(function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + })(this, e), + (this._environment = "stage"), + (this._apiKey = null); + } + return ( + r(e, [ + { + key: "_validate", + value: function () { + if (!this._suggestionApiHref) { + if (this._environment && this._endpoint && this._apiKey) return this.discover(); + throw new Error("People Graph SDK has not been properly configured yet."); + } + return Promise.resolve(); + }, + }, + { + key: "configure", + value: function (e) { + var t = e.acceptHeaderVersion, + n = e.accessToken, + r = e.apiKey, + a = e.environment, + i = e.token; + a && (this.setEnvironment(a), (this._endpoint = (0, o.getConfigValue)(this._environment, "PGS_ENDPOINT"))), + r && (this._apiKey = r), + i && (this._token = i), + n && (this._accessToken = n), + (this._acceptHeaderVersion = "application/vnd.adobe.people-graph." + ((t && t.toLowerCase()) || "v1") + "+json"), + (this._suggestionApiHref = void 0), + delete this._pendingDiscover; + }, + }, + { + key: "setEnvironment", + value: function (e) { + var t = ["stage", "prod"], + n = ""; + if ( + (t.forEach(function (e, r) { + var o = r + 1 === t.length ? "" : ", "; + n += e + o; + }), + -1 === t.indexOf(e)) + ) + throw new Error("Setting the environment to " + e + " is not accepted. Acceptable values are " + n); + (this._environment = e), (this._endpoint = (0, o.getConfigValue)(this._environment, "PGS_ENDPOINT")); + }, + }, + { + key: "discover", + value: function () { + var e = this; + return ( + this._pendingDiscover || + (this._pendingDiscover = this.fetch(this._endpoint, "GET") + .then(function (t) { + if (!t || !t._links) throw new Error("Links not found from discovery entry point"); + var n = t._links; + (e._suggestionApiHref = n.suggest && n.suggest.href ? n.suggest.href : void 0), + (e._acceptApiHref = n.accept && n.accept.href ? n.accept.href : void 0), + (e._acceptMaxItems = n.accept && n.accept.limits && n.accept.limits.max_items ? n.accept.limits.max_items : void 0); + }) + .catch(function (e) { + console.log(e); + }) + .finally(function () { + return delete e._pendingDiscover; + })), + this._pendingDiscover + ); + }, + }, + { + key: "getQuery", + value: function (e, t) { + var n = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : [], + r = { type: "PERSON" === t || "GROUP" === t ? [t] : ["PERSON", "GROUP"], value: e }; + return n.length && (r.tags = n), r; + }, + }, + { + key: "getSuggestions", + value: function () { + var e = this, + t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + n = t.peopleType, + r = t.relationship, + a = void 0 === r ? "INVITE" : r, + i = t.resourceType, + s = t.resourceUrl, + c = t.resourceUrn, + l = t.searchText, + u = void 0 === l ? "" : l, + d = t.tags; + if (i) { + if (u.length > (0, o.getConfigValue)(this._environment, "MAX_LENGTH")) return Promise.resolve([]); + var p = { resourceType: i, resourceUrn: c, resourceUrl: s, relationship: a, query: this.getQuery(u, n, d) }; + return this._validate() + .then(function () { + return e.fetch(e._suggestionApiHref, "POST", p, { "x-ccx-workflow": !0 }); + }) + .then(function (e) { + if (e && e._embedded && e._embedded.suggestions) return e._embedded.suggestions; + throw new Error("Response did not contain suggestions."); + }); + } + return Promise.reject("Missing resourceType. resourceType is required to get PGC suggestions."); + }, + }, + { + key: "acceptTokens", + value: function (e) { + var t = this, + n = { tokens: e }; + return this._validate() + .then(function () { + if (e.length > t._acceptMaxItems) return Promise.reject("Attempting to accept more tokens than the service max limit."); + }) + .then(function () { + return t.fetch(t._acceptApiHref, "POST", n); + }) + .then(function (e) { + if (e && e._embedded) return e._embedded; + throw new Error("Response did not contain addresses"); + }); + }, + }, + { + key: "fetch", + value: (function (e) { + function t(t, n, r, o) { + return e.apply(this, arguments); + } + return ( + (t.toString = function () { + return e.toString(); + }), + t + ); + })(function (e, t, n, r) { + var o = t || "GET", + a = this._token; + if ("GET" !== o && !a) return Promise.reject("Authorization not configured. Please set the bearer token before calling this method."); + var i = Object.assign({ "Content-Type": "application/json", "X-API-Key": this._apiKey, Authorization: a ? (a.indexOf("Bearer ") > -1 ? a : "Bearer " + a) : void 0, Accept: this._acceptHeaderVersion }, r); + return ( + this._accessToken && (i["X-Access-Token"] = this._accessToken), + fetch(e, { method: o, headers: i, body: n ? JSON.stringify(n) : void 0 }).then(function (e) { + if (e.ok) return e.json(); + var t = new Error(e.statusText); + throw ((t.response = e), t); + }) + ); + }), + }, + ]), + e + ); + })(); + (t.default = a), (e.exports = t.default); + }, + 95134: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.getConfigValue = function (e, t) { + return ("prod" === e ? o : r)[t]; + }); + var r = a(n(89923)), + o = a(n(45935)); + function a(e) { + if (e && e.__esModule) return e; + var t = {}; + if (null != e) for (var n in e) Object.prototype.hasOwnProperty.call(e, n) && (t[n] = e[n]); + return (t.default = e), t; + } + }, + 45935: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.PGS_ENDPOINT = "https://pgc.adobe.io/api/discovery"), (t.MAX_LENGTH = 256), (t.COLLABORATOR_TAG = "COLLABORATOR"), (t.OWNER_TAG = "OWNER"), (t.ANNOTATOR_TAG = "ANNOTATOR"); + }, + 89923: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.PGS_ENDPOINT = "https://pgc-stage.adobe.io/api/discovery"), + (t.MAX_LENGTH = 256), + (t.COLLABORATOR_TAG = "COLLABORATOR"), + (t.OWNER_TAG = "OWNER"), + (t.ANNOTATOR_TAG = "ANNOTATOR"); + }, + 25343: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r, + o = (r = n(89807)) && r.__esModule ? r : { default: r }; + (t.default = { Client: o.default }), (e.exports = t.default); + }, + 67586: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => i }), n(66084); + var r = n(84514), + o = n(92445); + const a = (0, n(9323).Z)(n(2255)).default, + i = (0, r.Z)({ displayName: "PinOff", fallback: a, swcLoader: void 0, swcProps: o.m, tagName: "sp-icon-pin-off" }); + }, + 64921: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => i }), n(66084); + var r = n(84514), + o = n(92445); + const a = (0, n(9323).Z)(n(12839)).default, + i = (0, r.Z)({ displayName: "TextStrikethrough", fallback: a, swcLoader: void 0, swcProps: o.m, tagName: "sp-icon-text-strikethrough" }); + }, + 92445: (e, t, n) => { + "use strict"; + n.d(t, { m: () => a }); + var r = function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + }; + function o(e) { + switch (e) { + case "XS": + return "s"; + case "S": + return "m"; + case "M": + default: + return "xl"; + case "L": + case "XL": + case "XXL": + return "xxl"; + } + } + function a(e) { + const { alt: t, className: n, "aria-label": a, size: i } = e, + s = r(e, ["alt", "className", "aria-label", "size"]); + return Object.assign(Object.assign({}, s), { class: n, label: t || a, size: o(i) }); + } + }, + 81123: (e, t, n) => { + "use strict"; + var r = n(23469), + o = n.n(r), + a = n(84514), + i = (n(66084), n(80963)), + s = n(9323), + c = (n(99219), n(369)), + l = function (e, t, n, r) { + return new (n || (n = Promise))(function (o, a) { + function i(e) { + try { + c(r.next(e)); + } catch (e) { + a(e); + } + } + function s(e) { + try { + c(r.throw(e)); + } catch (e) { + a(e); + } + } + function c(e) { + var t; + e.done + ? o(e.value) + : ((t = e.value), + t instanceof n + ? t + : new n(function (e) { + e(t); + })).then(i, s); + } + c((r = r.apply(e, t || [])).next()); + }); + }; + const u = (0, s.Z)(n(22807)).default, + d = "sp-theme"; + let p; + function f(e) { + return l(this, void 0, void 0, function* () { + return e.scale, e.theme, Promise.resolve(); + }); + } + function m(e) { + return l(this, void 0, void 0, function* () { + return e.color, e.theme, Promise.resolve(); + }); + } + (0, c.I)(function (e) { + const { scale: t, spectrumTheme: n, theme: r, typekitId: o } = e, + a = [f({ scale: t, theme: n }), m({ color: r, theme: n }), (0, i.Yn)(o)]; + return (0, i.Vc)(d) && a.push((0, i.A2)(d, e, p)), Promise.all(a); + }), + (0, a.Z)({ + displayName: "Provider", + fallback: u, + swcLoader: p, + SWCWrapper: function (e) { + const { className: t, locale: n, scale: a, spectrumTheme: s, theme: c, typekitId: l = "ruf7eed" } = e, + u = (function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + })(e, ["className", "locale", "scale", "spectrumTheme", "theme", "typekitId"]); + (0, r.useEffect)(() => { + f({ scale: a, theme: s }).catch(console.error); + }, [a, s]), + (0, r.useEffect)(() => { + m({ color: c, theme: s }).catch(console.error); + }, [s, c]), + (0, r.useEffect)(() => { + (0, i.Yn)(l).catch(console.error); + }, [l]); + const p = (0, i.Co)(d); + return o().createElement(p, Object.assign(Object.assign({}, u), { class: t, color: c, lang: n, scale: a, theme: s })); + }, + tagName: d, + }); + }, + 369: (e, t, n) => { + "use strict"; + n.d(t, { I: () => a, Z: () => i }); + var r = n(99219); + const o = []; + function a(e) { + o.push(e); + } + function i(e = {}) { + const t = (0, r.V)(e), + n = [...o.map((e) => e(t))]; + return Promise.all(n); + } + }, + 66084: (e, t, n) => { + "use strict"; + n(48181); + }, + 99219: (e, t, n) => { + "use strict"; + n.d(t, { N: () => a, V: () => o }); + var r = n(23469); + const o = ({ scale: e, spectrumTheme: t, theme: n, typekitId: r } = {}) => ({ scale: e || "medium", spectrumTheme: t || "spectrum", theme: n || "light", typekitId: r || "ruf7eed" }), + a = n.n(r)().createContext(o()); + }, + 84514: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => c }); + var r = n(23469), + o = n.n(r), + a = n(80963), + i = n(369), + s = function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + }; + function c(e) { + (0, i.I)(e.loadSwc || ((t) => (0, a.A2)(e.tagName, t, e.swcLoader))); + const t = (t, n) => { + const { needsFallback: r, tagName: i } = (0, a.Lo)(e.tagName, e.swcLoader), + { fallback: c, forceFallback: l } = t, + u = s(t, ["fallback", "forceFallback"]); + if (r || l) { + const { fallback: t } = e; + if (c) return o().createElement(o().Fragment, null, c); + if (t) return o().createElement(t, Object.assign(Object.assign({}, u), { ref: n })); + } + if (e.SWCWrapper) return o().createElement(e.SWCWrapper, Object.assign(Object.assign({}, t), { ref: n })); + const d = Object.assign(Object.assign({}, e.swcProps(t)), { ref: n }), + p = i; + return o().createElement(p, Object.assign({}, d)); + }; + return (t.displayName = e.displayName), (0, r.forwardRef)(t); + } + }, + 80963: (e, t, n) => { + "use strict"; + n.d(t, { tS: () => C, Yn: () => w, Vc: () => v, cd: () => D, ww: () => d, A2: () => y, Co: () => b, Lo: () => E }); + var r = n(23469), + o = n(50813), + a = n.n(o), + i = n(48181), + s = n(99219); + const c = function () { + return window.__disable_swc__ || (window.__SPECTRUM_WRAPPER_STORYBOOK_FORCE_RS2__ && "undefined" != typeof process && process.env.STORYBOOK); + }, + l = !1; + let u = !1; + try { + u = !!window.require("uxp"); + } catch (e) {} + const d = u, + p = new Map(); + function f(e) { + var t, n; + const r = p.get(e); + if (void 0 !== r) return r; + let o = null === (t = window.customElements) || void 0 === t ? void 0 : t.get(e); + return !o && d && l && (o = null === (n = document.createElement(e)) || void 0 === n ? void 0 : n.constructor), p.set(e, o), o; + } + function m(e) { + const t = f(e); + return !!t && t !== HTMLElement; + } + const h = "^0.42.0"; + function v(e) { + if (d || !l) return !1; + if (!m(e)) return !0; + const t = f(e); + return !t || !t.VERSION || !a()(t.VERSION, h); + } + const y = (e, t, n) => (v(e) && (null == n ? void 0 : n.load(t))) || Promise.resolve(); + function g(e) { + return (0, r.useMemo)(() => v(e), [e]); + } + function b(e) { + return g(e) ? (0, i.fallbackTagName)(e) : e; + } + function E(e, t) { + const n = g(e), + [, o] = (0, r.useState)(!1), + a = (0, r.useRef)(!0), + i = (0, r.useContext)(s.N); + (0, r.useEffect)(() => { + if (((a.current = !1), n)) + return ( + null == t || + t.load(i).then( + () => { + a.current || o(!0); + }, + (t) => console.error(`Error loading fallback for ${e}`, t) + ), + () => { + a.current = !0; + } + ); + }, [e, t, n]); + const l = c(), + u = b(e); + return { needsFallback: !m(u) || !!l, tagName: u }; + } + function D(e) { + const t = {}; + return ( + Object.keys(e).forEach((n) => { + e[n] && (t[n] = e[n]); + }), + t + ); + } + function C(...e) { + return (...t) => { + for (const n of e) "function" == typeof n && n(...t); + }; + } + function w(e) { + return new Promise((t) => { + var n; + if (window.Typekit) t(null); + else { + const r = { kitId: e, scriptTimeout: 3e3 }, + o = setTimeout(() => { + t(null); + }, r.scriptTimeout), + a = document.createElement("script"); + let i = !1; + (a.src = `https://use.typekit.net/${r.kitId}.js`), + (a.type = "text/javascript"), + (a.async = !0), + (a.onload = function () { + if (i) t(null); + else { + (i = !0), clearTimeout(o); + try { + window.Typekit.load(r); + } catch (e) {} + t(null); + } + }); + const s = document.getElementsByTagName("script")[0]; + null === (n = null == s ? void 0 : s.parentNode) || void 0 === n || n.insertBefore(a, s); + } + }); + } + }, + 9323: (e, t, n) => { + "use strict"; + function r(e) { + return (null == e ? void 0 : e.__esModule) ? e : { default: e }; + } + n.d(t, { Z: () => r }); + }, + 26616: function (e, t, n) { + "use strict"; + var r = + (this && this.__importDefault) || + function (e) { + return e && e.__esModule ? e : { default: e }; + }; + Object.defineProperty(t, "__esModule", { value: !0 }); + const o = n(2667), + a = r(n(72852)), + i = r(n(50828)), + s = n(67439), + c = n(23150); + class l { + constructor(e, t) { + var n; + (this.basePayload = { env: { com: { name: o.COMPONENT_NAME, version: o.COMPONENT_VERSION } } }), + (this.config = e), + (this.basePayload = (0, a.default)({}, this.basePayload, t)), + null === (n = this.basePayload.event) || void 0 === n || delete n.user_guid, + delete this.basePayload.user; + } + sendEvent(e) { + let t = Promise.resolve(); + const n = (0, a.default)({}, this.basePayload, e, { event: { dts_end: this.formattedTimestamp(), guid: (0, c.v4)() } }), + r = { events: [{ project: this.config.projectKey, environment: this.config.environment, time: this.formattedTimestamp(), ingesttype: o.INGEST_TYPE, data: (0, s.flatten)(n) }] }; + return (t = l.axiosInstance.post((0, o.getIngestEndpoint)(this.config.environment), r, { headers: { "Content-Type": "application/json", "x-api-key": this.config.apiKey } })), t; + } + formattedTimestamp() { + const e = new Date(), + t = e.getTimezoneOffset(), + n = t < 0 ? "+" : "-", + r = Math.floor(Math.abs(t) / 60).toString(), + o = (Math.abs(t) % 60).toString(), + a = n + r.padStart(2, "0") + o.padStart(2, "0"); + return e.toISOString().slice(0, -1) + a; + } + } + (t.default = l), (l.axiosInstance = i.default.create()); + }, + 28235: function (e, t, n) { + "use strict"; + var r = + (this && this.__importDefault) || + function (e) { + return e && e.__esModule ? e : { default: e }; + }; + Object.defineProperty(t, "__esModule", { value: !0 }); + const o = n(2667), + a = r(n(26616)); + t.default = class { + constructor(e, t) { + this.dunamisAnalytics = new a.default({ projectKey: o.COMMENTS_PROJECT_KEY, apiKey: o.COMMENTS_API_KEY, environment: e }, t); + } + sendCreateCommentEvent(e) { + return this.dunamisAnalytics.sendEvent({ event: { workflow: o.WORKFLOW.Collaboration, subcategory: o.SUBCATEGORY.Review, type: e, subtype: o.SUBTYPE.Comment } }); + } + }; + }, + 2667: (e, t) => { + "use strict"; + var n; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.CrudResult = t.getIngestEndpoint = t.WORKFLOW = t.VIEW_TYPE = t.TYPE = t.SUBTYPE = t.SUBCATEGORY = t.PROD_ENV = t.STAGE_ENV = t.INGEST_TYPE = t.COMMENTS_API_KEY = t.COMMENTS_PROJECT_KEY = t.SHARE_SHEET_API_KEY = t.SHARE_SHEET_PROJECT_KEY = t.COMPONENT_VERSION = t.COMPONENT_NAME = void 0), + (t.COMPONENT_NAME = "Share4Review"), + (t.COMPONENT_VERSION = "1.0"), + (t.SHARE_SHEET_PROJECT_KEY = "ss-web-service"), + (t.SHARE_SHEET_API_KEY = "ss-web-service"), + (t.COMMENTS_PROJECT_KEY = "comment-service"), + (t.COMMENTS_API_KEY = "CCXComments1"), + (t.INGEST_TYPE = "dunamis"), + (t.STAGE_ENV = "stage"), + (t.PROD_ENV = "prod"), + (t.SUBCATEGORY = { ShareForReview: "Share for Review", Review: "Review" }), + (t.SUBTYPE = { Comment: "comment", Create: "create", InviteToView: "invite-to-view", PermanentDelete: "permanent-delete", SetPublicComments: "set-public-comments", ShareForReview: "share-for-review", UpdateLink: "update-link" }), + (t.TYPE = { Error: "error", Success: "success" }), + (t.VIEW_TYPE = { NewReview: "New Review" }), + (t.WORKFLOW = { Collaboration: "Collaboration" }), + (t.getIngestEndpoint = function (e) { + switch (e) { + case "stage": + return "https://cc-api-data-stage.adobe.io/ingest"; + case "prod": + return "https://cc-api-data.adobe.io/ingest"; + default: + return ""; + } + }), + ((n = t.CrudResult || (t.CrudResult = {})).Success = "success"), + (n.Error = "error"); + }, + 73550: function (e, t, n) { + "use strict"; + var r = + (this && this.__importDefault) || + function (e) { + return e && e.__esModule ? e : { default: e }; + }; + Object.defineProperty(t, "__esModule", { value: !0 }); + const o = n(2667), + a = r(n(26616)); + t.default = class { + constructor(e, t) { + this.dunamisAnalytics = new a.default({ projectKey: o.SHARE_SHEET_PROJECT_KEY, apiKey: o.SHARE_SHEET_API_KEY, environment: e }, t); + } + sendCreateShareForReviewEvent(e) { + return this.dunamisAnalytics.sendEvent({ event: { workflow: o.WORKFLOW.Collaboration, subcategory: o.SUBCATEGORY.ShareForReview, type: e, subtype: o.SUBTYPE.Create }, ui: { view_type: o.VIEW_TYPE.NewReview } }); + } + sendDeleteShareForReviewEvent(e) { + return this.dunamisAnalytics.sendEvent({ event: { workflow: o.WORKFLOW.Collaboration, subcategory: o.SUBCATEGORY.ShareForReview, type: e, subtype: o.SUBTYPE.PermanentDelete } }); + } + sendInviteToViewEvent(e) { + return this.dunamisAnalytics.sendEvent({ event: { workflow: o.WORKFLOW.Collaboration, subcategory: o.SUBCATEGORY.ShareForReview, type: e, subtype: o.SUBTYPE.InviteToView } }); + } + sendSetPublicCommentsEvent(e, t) { + return this.dunamisAnalytics.sendEvent({ event: { workflow: o.WORKFLOW.Collaboration, subcategory: o.SUBCATEGORY.ShareForReview, type: e, subtype: o.SUBTYPE.SetPublicComments }, ui: { filter: String(t) } }); + } + sendUpdateLinkEvent(e) { + return this.dunamisAnalytics.sendEvent({ event: { workflow: o.WORKFLOW.Collaboration, subcategory: o.SUBCATEGORY.ShareForReview, type: e, subtype: o.SUBTYPE.UpdateLink } }); + } + }; + }, + 19990: function (e, t, n) { + "use strict"; + var r = + (this && this.__createBinding) || + (Object.create + ? function (e, t, n, r) { + void 0 === r && (r = n); + var o = Object.getOwnPropertyDescriptor(t, n); + (o && !("get" in o ? !t.__esModule : o.writable || o.configurable)) || + (o = { + enumerable: !0, + get: function () { + return t[n]; + }, + }), + Object.defineProperty(e, r, o); + } + : function (e, t, n, r) { + void 0 === r && (r = n), (e[r] = t[n]); + }), + o = + (this && this.__setModuleDefault) || + (Object.create + ? function (e, t) { + Object.defineProperty(e, "default", { enumerable: !0, value: t }); + } + : function (e, t) { + e.default = t; + }), + a = + (this && this.__importStar) || + function (e) { + if (e && e.__esModule) return e; + var t = {}; + if (null != e) for (var n in e) "default" !== n && Object.prototype.hasOwnProperty.call(e, n) && r(t, e, n); + return o(t, e), t; + }, + i = + (this && this.__importDefault) || + function (e) { + return e && e.__esModule ? e : { default: e }; + }; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.DunamisCommentsInterface = t.DunamisShareSheetInterface = t.DunamisConstants = void 0), (t.DunamisConstants = a(n(2667))); + var s = n(73550); + Object.defineProperty(t, "DunamisShareSheetInterface", { + enumerable: !0, + get: function () { + return i(s).default; + }, + }); + var c = n(28235); + Object.defineProperty(t, "DunamisCommentsInterface", { + enumerable: !0, + get: function () { + return i(c).default; + }, + }); + }, + 23150: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + Object.defineProperty(t, "NIL", { + enumerable: !0, + get: function () { + return s.default; + }, + }), + Object.defineProperty(t, "parse", { + enumerable: !0, + get: function () { + return d.default; + }, + }), + Object.defineProperty(t, "stringify", { + enumerable: !0, + get: function () { + return u.default; + }, + }), + Object.defineProperty(t, "v1", { + enumerable: !0, + get: function () { + return r.default; + }, + }), + Object.defineProperty(t, "v3", { + enumerable: !0, + get: function () { + return o.default; + }, + }), + Object.defineProperty(t, "v4", { + enumerable: !0, + get: function () { + return a.default; + }, + }), + Object.defineProperty(t, "v5", { + enumerable: !0, + get: function () { + return i.default; + }, + }), + Object.defineProperty(t, "validate", { + enumerable: !0, + get: function () { + return l.default; + }, + }), + Object.defineProperty(t, "version", { + enumerable: !0, + get: function () { + return c.default; + }, + }); + var r = p(n(34682)), + o = p(n(84570)), + a = p(n(85370)), + i = p(n(82394)), + s = p(n(97008)), + c = p(n(18967)), + l = p(n(30333)), + u = p(n(41929)), + d = p(n(65754)); + function p(e) { + return e && e.__esModule ? e : { default: e }; + } + }, + 75759: (e, t) => { + "use strict"; + function n(e) { + return 14 + (((e + 64) >>> 9) << 4) + 1; + } + function r(e, t) { + const n = (65535 & e) + (65535 & t); + return (((e >> 16) + (t >> 16) + (n >> 16)) << 16) | (65535 & n); + } + function o(e, t, n, o, a, i) { + return r(((s = r(r(t, e), r(o, i))) << (c = a)) | (s >>> (32 - c)), n); + var s, c; + } + function a(e, t, n, r, a, i, s) { + return o((t & n) | (~t & r), e, t, a, i, s); + } + function i(e, t, n, r, a, i, s) { + return o((t & r) | (n & ~r), e, t, a, i, s); + } + function s(e, t, n, r, a, i, s) { + return o(t ^ n ^ r, e, t, a, i, s); + } + function c(e, t, n, r, a, i, s) { + return o(n ^ (t | ~r), e, t, a, i, s); + } + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + t.default = function (e) { + if ("string" == typeof e) { + const t = unescape(encodeURIComponent(e)); + e = new Uint8Array(t.length); + for (let n = 0; n < t.length; ++n) e[n] = t.charCodeAt(n); + } + return (function (e) { + const t = [], + n = 32 * e.length, + r = "0123456789abcdef"; + for (let o = 0; o < n; o += 8) { + const n = (e[o >> 5] >>> o % 32) & 255, + a = parseInt(r.charAt((n >>> 4) & 15) + r.charAt(15 & n), 16); + t.push(a); + } + return t; + })( + (function (e, t) { + (e[t >> 5] |= 128 << t % 32), (e[n(t) - 1] = t); + let o = 1732584193, + l = -271733879, + u = -1732584194, + d = 271733878; + for (let t = 0; t < e.length; t += 16) { + const n = o, + p = l, + f = u, + m = d; + (o = a(o, l, u, d, e[t], 7, -680876936)), + (d = a(d, o, l, u, e[t + 1], 12, -389564586)), + (u = a(u, d, o, l, e[t + 2], 17, 606105819)), + (l = a(l, u, d, o, e[t + 3], 22, -1044525330)), + (o = a(o, l, u, d, e[t + 4], 7, -176418897)), + (d = a(d, o, l, u, e[t + 5], 12, 1200080426)), + (u = a(u, d, o, l, e[t + 6], 17, -1473231341)), + (l = a(l, u, d, o, e[t + 7], 22, -45705983)), + (o = a(o, l, u, d, e[t + 8], 7, 1770035416)), + (d = a(d, o, l, u, e[t + 9], 12, -1958414417)), + (u = a(u, d, o, l, e[t + 10], 17, -42063)), + (l = a(l, u, d, o, e[t + 11], 22, -1990404162)), + (o = a(o, l, u, d, e[t + 12], 7, 1804603682)), + (d = a(d, o, l, u, e[t + 13], 12, -40341101)), + (u = a(u, d, o, l, e[t + 14], 17, -1502002290)), + (l = a(l, u, d, o, e[t + 15], 22, 1236535329)), + (o = i(o, l, u, d, e[t + 1], 5, -165796510)), + (d = i(d, o, l, u, e[t + 6], 9, -1069501632)), + (u = i(u, d, o, l, e[t + 11], 14, 643717713)), + (l = i(l, u, d, o, e[t], 20, -373897302)), + (o = i(o, l, u, d, e[t + 5], 5, -701558691)), + (d = i(d, o, l, u, e[t + 10], 9, 38016083)), + (u = i(u, d, o, l, e[t + 15], 14, -660478335)), + (l = i(l, u, d, o, e[t + 4], 20, -405537848)), + (o = i(o, l, u, d, e[t + 9], 5, 568446438)), + (d = i(d, o, l, u, e[t + 14], 9, -1019803690)), + (u = i(u, d, o, l, e[t + 3], 14, -187363961)), + (l = i(l, u, d, o, e[t + 8], 20, 1163531501)), + (o = i(o, l, u, d, e[t + 13], 5, -1444681467)), + (d = i(d, o, l, u, e[t + 2], 9, -51403784)), + (u = i(u, d, o, l, e[t + 7], 14, 1735328473)), + (l = i(l, u, d, o, e[t + 12], 20, -1926607734)), + (o = s(o, l, u, d, e[t + 5], 4, -378558)), + (d = s(d, o, l, u, e[t + 8], 11, -2022574463)), + (u = s(u, d, o, l, e[t + 11], 16, 1839030562)), + (l = s(l, u, d, o, e[t + 14], 23, -35309556)), + (o = s(o, l, u, d, e[t + 1], 4, -1530992060)), + (d = s(d, o, l, u, e[t + 4], 11, 1272893353)), + (u = s(u, d, o, l, e[t + 7], 16, -155497632)), + (l = s(l, u, d, o, e[t + 10], 23, -1094730640)), + (o = s(o, l, u, d, e[t + 13], 4, 681279174)), + (d = s(d, o, l, u, e[t], 11, -358537222)), + (u = s(u, d, o, l, e[t + 3], 16, -722521979)), + (l = s(l, u, d, o, e[t + 6], 23, 76029189)), + (o = s(o, l, u, d, e[t + 9], 4, -640364487)), + (d = s(d, o, l, u, e[t + 12], 11, -421815835)), + (u = s(u, d, o, l, e[t + 15], 16, 530742520)), + (l = s(l, u, d, o, e[t + 2], 23, -995338651)), + (o = c(o, l, u, d, e[t], 6, -198630844)), + (d = c(d, o, l, u, e[t + 7], 10, 1126891415)), + (u = c(u, d, o, l, e[t + 14], 15, -1416354905)), + (l = c(l, u, d, o, e[t + 5], 21, -57434055)), + (o = c(o, l, u, d, e[t + 12], 6, 1700485571)), + (d = c(d, o, l, u, e[t + 3], 10, -1894986606)), + (u = c(u, d, o, l, e[t + 10], 15, -1051523)), + (l = c(l, u, d, o, e[t + 1], 21, -2054922799)), + (o = c(o, l, u, d, e[t + 8], 6, 1873313359)), + (d = c(d, o, l, u, e[t + 15], 10, -30611744)), + (u = c(u, d, o, l, e[t + 6], 15, -1560198380)), + (l = c(l, u, d, o, e[t + 13], 21, 1309151649)), + (o = c(o, l, u, d, e[t + 4], 6, -145523070)), + (d = c(d, o, l, u, e[t + 11], 10, -1120210379)), + (u = c(u, d, o, l, e[t + 2], 15, 718787259)), + (l = c(l, u, d, o, e[t + 9], 21, -343485551)), + (o = r(o, n)), + (l = r(l, p)), + (u = r(u, f)), + (d = r(d, m)); + } + return [o, l, u, d]; + })( + (function (e) { + if (0 === e.length) return []; + const t = 8 * e.length, + r = new Uint32Array(n(t)); + for (let n = 0; n < t; n += 8) r[n >> 5] |= (255 & e[n / 8]) << n % 32; + return r; + })(e), + 8 * e.length + ) + ); + }; + }, + 53919: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var n = { randomUUID: "undefined" != typeof crypto && crypto.randomUUID && crypto.randomUUID.bind(crypto) }; + t.default = n; + }, + 97008: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0), (t.default = "00000000-0000-0000-0000-000000000000"); + }, + 65754: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var r, + o = (r = n(30333)) && r.__esModule ? r : { default: r }; + t.default = function (e) { + if (!(0, o.default)(e)) throw TypeError("Invalid UUID"); + let t; + const n = new Uint8Array(16); + return ( + (n[0] = (t = parseInt(e.slice(0, 8), 16)) >>> 24), + (n[1] = (t >>> 16) & 255), + (n[2] = (t >>> 8) & 255), + (n[3] = 255 & t), + (n[4] = (t = parseInt(e.slice(9, 13), 16)) >>> 8), + (n[5] = 255 & t), + (n[6] = (t = parseInt(e.slice(14, 18), 16)) >>> 8), + (n[7] = 255 & t), + (n[8] = (t = parseInt(e.slice(19, 23), 16)) >>> 8), + (n[9] = 255 & t), + (n[10] = ((t = parseInt(e.slice(24, 36), 16)) / 1099511627776) & 255), + (n[11] = (t / 4294967296) & 255), + (n[12] = (t >>> 24) & 255), + (n[13] = (t >>> 16) & 255), + (n[14] = (t >>> 8) & 255), + (n[15] = 255 & t), + n + ); + }; + }, + 51060: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0), (t.default = /^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i); + }, + 21862: (e, t) => { + "use strict"; + let n; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.default = function () { + if (!n && ((n = "undefined" != typeof crypto && crypto.getRandomValues && crypto.getRandomValues.bind(crypto)), !n)) + throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported"); + return n(r); + }); + const r = new Uint8Array(16); + }, + 31963: (e, t) => { + "use strict"; + function n(e, t, n, r) { + switch (e) { + case 0: + return (t & n) ^ (~t & r); + case 1: + case 3: + return t ^ n ^ r; + case 2: + return (t & n) ^ (t & r) ^ (n & r); + } + } + function r(e, t) { + return (e << t) | (e >>> (32 - t)); + } + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + t.default = function (e) { + const t = [1518500249, 1859775393, 2400959708, 3395469782], + o = [1732584193, 4023233417, 2562383102, 271733878, 3285377520]; + if ("string" == typeof e) { + const t = unescape(encodeURIComponent(e)); + e = []; + for (let n = 0; n < t.length; ++n) e.push(t.charCodeAt(n)); + } else Array.isArray(e) || (e = Array.prototype.slice.call(e)); + e.push(128); + const a = e.length / 4 + 2, + i = Math.ceil(a / 16), + s = new Array(i); + for (let t = 0; t < i; ++t) { + const n = new Uint32Array(16); + for (let r = 0; r < 16; ++r) n[r] = (e[64 * t + 4 * r] << 24) | (e[64 * t + 4 * r + 1] << 16) | (e[64 * t + 4 * r + 2] << 8) | e[64 * t + 4 * r + 3]; + s[t] = n; + } + (s[i - 1][14] = (8 * (e.length - 1)) / Math.pow(2, 32)), (s[i - 1][14] = Math.floor(s[i - 1][14])), (s[i - 1][15] = (8 * (e.length - 1)) & 4294967295); + for (let e = 0; e < i; ++e) { + const a = new Uint32Array(80); + for (let t = 0; t < 16; ++t) a[t] = s[e][t]; + for (let e = 16; e < 80; ++e) a[e] = r(a[e - 3] ^ a[e - 8] ^ a[e - 14] ^ a[e - 16], 1); + let i = o[0], + c = o[1], + l = o[2], + u = o[3], + d = o[4]; + for (let e = 0; e < 80; ++e) { + const o = Math.floor(e / 20), + s = (r(i, 5) + n(o, c, l, u) + d + t[o] + a[e]) >>> 0; + (d = u), (u = l), (l = r(c, 30) >>> 0), (c = i), (i = s); + } + (o[0] = (o[0] + i) >>> 0), (o[1] = (o[1] + c) >>> 0), (o[2] = (o[2] + l) >>> 0), (o[3] = (o[3] + u) >>> 0), (o[4] = (o[4] + d) >>> 0); + } + return [ + (o[0] >> 24) & 255, + (o[0] >> 16) & 255, + (o[0] >> 8) & 255, + 255 & o[0], + (o[1] >> 24) & 255, + (o[1] >> 16) & 255, + (o[1] >> 8) & 255, + 255 & o[1], + (o[2] >> 24) & 255, + (o[2] >> 16) & 255, + (o[2] >> 8) & 255, + 255 & o[2], + (o[3] >> 24) & 255, + (o[3] >> 16) & 255, + (o[3] >> 8) & 255, + 255 & o[3], + (o[4] >> 24) & 255, + (o[4] >> 16) & 255, + (o[4] >> 8) & 255, + 255 & o[4], + ]; + }; + }, + 41929: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0), (t.unsafeStringify = i); + var r, + o = (r = n(30333)) && r.__esModule ? r : { default: r }; + const a = []; + for (let e = 0; e < 256; ++e) a.push((e + 256).toString(16).slice(1)); + function i(e, t = 0) { + return ( + a[e[t + 0]] + + a[e[t + 1]] + + a[e[t + 2]] + + a[e[t + 3]] + + "-" + + a[e[t + 4]] + + a[e[t + 5]] + + "-" + + a[e[t + 6]] + + a[e[t + 7]] + + "-" + + a[e[t + 8]] + + a[e[t + 9]] + + "-" + + a[e[t + 10]] + + a[e[t + 11]] + + a[e[t + 12]] + + a[e[t + 13]] + + a[e[t + 14]] + + a[e[t + 15]] + ).toLowerCase(); + } + t.default = function (e, t = 0) { + const n = i(e, t); + if (!(0, o.default)(n)) throw TypeError("Stringified UUID is invalid"); + return n; + }; + }, + 34682: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var r, + o = (r = n(21862)) && r.__esModule ? r : { default: r }, + a = n(41929); + let i, + s, + c = 0, + l = 0; + t.default = function (e, t, n) { + let r = (t && n) || 0; + const u = t || new Array(16); + let d = (e = e || {}).node || i, + p = void 0 !== e.clockseq ? e.clockseq : s; + if (null == d || null == p) { + const t = e.random || (e.rng || o.default)(); + null == d && (d = i = [1 | t[0], t[1], t[2], t[3], t[4], t[5]]), null == p && (p = s = 16383 & ((t[6] << 8) | t[7])); + } + let f = void 0 !== e.msecs ? e.msecs : Date.now(), + m = void 0 !== e.nsecs ? e.nsecs : l + 1; + const h = f - c + (m - l) / 1e4; + if ((h < 0 && void 0 === e.clockseq && (p = (p + 1) & 16383), (h < 0 || f > c) && void 0 === e.nsecs && (m = 0), m >= 1e4)) throw new Error("uuid.v1(): Can't create more than 10M uuids/sec"); + (c = f), (l = m), (s = p), (f += 122192928e5); + const v = (1e4 * (268435455 & f) + m) % 4294967296; + (u[r++] = (v >>> 24) & 255), (u[r++] = (v >>> 16) & 255), (u[r++] = (v >>> 8) & 255), (u[r++] = 255 & v); + const y = ((f / 4294967296) * 1e4) & 268435455; + (u[r++] = (y >>> 8) & 255), (u[r++] = 255 & y), (u[r++] = ((y >>> 24) & 15) | 16), (u[r++] = (y >>> 16) & 255), (u[r++] = (p >>> 8) | 128), (u[r++] = 255 & p); + for (let e = 0; e < 6; ++e) u[r + e] = d[e]; + return t || (0, a.unsafeStringify)(u); + }; + }, + 84570: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var r = a(n(75168)), + o = a(n(75759)); + function a(e) { + return e && e.__esModule ? e : { default: e }; + } + var i = (0, r.default)("v3", 48, o.default); + t.default = i; + }, + 75168: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.URL = t.DNS = void 0), + (t.default = function (e, t, n) { + function r(e, r, i, s) { + var c; + if ( + ("string" == typeof e && + (e = (function (e) { + e = unescape(encodeURIComponent(e)); + const t = []; + for (let n = 0; n < e.length; ++n) t.push(e.charCodeAt(n)); + return t; + })(e)), + "string" == typeof r && (r = (0, a.default)(r)), + 16 !== (null === (c = r) || void 0 === c ? void 0 : c.length)) + ) + throw TypeError("Namespace must be array-like (16 iterable integer values, 0-255)"); + let l = new Uint8Array(16 + e.length); + if ((l.set(r), l.set(e, r.length), (l = n(l)), (l[6] = (15 & l[6]) | t), (l[8] = (63 & l[8]) | 128), i)) { + s = s || 0; + for (let e = 0; e < 16; ++e) i[s + e] = l[e]; + return i; + } + return (0, o.unsafeStringify)(l); + } + try { + r.name = e; + } catch (e) {} + return (r.DNS = i), (r.URL = s), r; + }); + var r, + o = n(41929), + a = (r = n(65754)) && r.__esModule ? r : { default: r }; + const i = "6ba7b810-9dad-11d1-80b4-00c04fd430c8"; + t.DNS = i; + const s = "6ba7b811-9dad-11d1-80b4-00c04fd430c8"; + t.URL = s; + }, + 85370: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var r = i(n(53919)), + o = i(n(21862)), + a = n(41929); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + t.default = function (e, t, n) { + if (r.default.randomUUID && !t && !e) return r.default.randomUUID(); + const i = (e = e || {}).random || (e.rng || o.default)(); + if (((i[6] = (15 & i[6]) | 64), (i[8] = (63 & i[8]) | 128), t)) { + n = n || 0; + for (let e = 0; e < 16; ++e) t[n + e] = i[e]; + return t; + } + return (0, a.unsafeStringify)(i); + }; + }, + 82394: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var r = a(n(75168)), + o = a(n(31963)); + function a(e) { + return e && e.__esModule ? e : { default: e }; + } + var i = (0, r.default)("v5", 80, o.default); + t.default = i; + }, + 30333: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var r, + o = (r = n(51060)) && r.__esModule ? r : { default: r }; + t.default = function (e) { + return "string" == typeof e && o.default.test(e); + }; + }, + 18967: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var r, + o = (r = n(30333)) && r.__esModule ? r : { default: r }; + t.default = function (e) { + if (!(0, o.default)(e)) throw TypeError("Invalid UUID"); + return parseInt(e.slice(14, 15), 16); + }; + }, + 57781: (e, t, n) => { + "use strict"; + function r(e) { + if ("symbol" == typeof e) throw TypeError("Cannot convert a Symbol value to a string"); + return String(e); + } + function o(e) { + if (void 0 === e) return NaN; + if (null === e) return 0; + if ("boolean" == typeof e) return e ? 1 : 0; + if ("number" == typeof e) return e; + if ("symbol" == typeof e || "bigint" == typeof e) throw new TypeError("Cannot convert symbol/bigint to number"); + return Number(e); + } + function a(e) { + return isFinite(e) + ? Math.abs(e) > 8640000000000001 + ? NaN + : (function (e) { + var t = o(e); + if (isNaN(t) || s(t, -0)) return 0; + if (isFinite(t)) return t; + var n = Math.floor(Math.abs(t)); + return t < 0 && (n = -n), s(n, -0) ? 0 : n; + })(e) + : NaN; + } + function i(e) { + if (null == e) throw new TypeError("undefined/null cannot be converted to object"); + return Object(e); + } + function s(e, t) { + return Object.is ? Object.is(e, t) : e === t ? 0 !== e || 1 / e == 1 / t : e != e && t != t; + } + function c(e) { + return new Array(e); + } + function l(e, t) { + return Object.prototype.hasOwnProperty.call(e, t); + } + function u(e) { + return null === e + ? "Null" + : void 0 === e + ? "Undefined" + : "function" == typeof e || "object" == typeof e + ? "Object" + : "number" == typeof e + ? "Number" + : "boolean" == typeof e + ? "Boolean" + : "string" == typeof e + ? "String" + : "symbol" == typeof e + ? "Symbol" + : "bigint" == typeof e + ? "BigInt" + : void 0; + } + n.d(t, { + $i: () => E, + CU: () => o, + Dy: () => u, + J1: () => D, + Jc: () => f, + Ml: () => r, + My: () => g, + QP: () => s, + R2: () => x, + TA: () => i, + U6: () => c, + VR: () => m, + Vg: () => N, + XB: () => C, + XH: () => a, + Zq: () => I, + gL: () => h, + n7: () => y, + oD: () => b, + py: () => O, + rf: () => v, + uY: () => l, + xk: () => F, + }); + var d = 864e5; + function p(e, t) { + return e - Math.floor(e / t) * t; + } + function f(e) { + return Math.floor(e / d); + } + function m(e) { + return p(f(e) + 4, 7); + } + function h(e) { + return Date.UTC(e, 0) / d; + } + function v(e) { + return Date.UTC(e, 0); + } + function y(e) { + return new Date(e).getUTCFullYear(); + } + function g(e) { + return e % 4 != 0 ? 365 : e % 100 != 0 ? 366 : e % 400 != 0 ? 365 : 366; + } + function b(e) { + return f(e) - h(y(e)); + } + function E(e) { + return 365 === g(y(e)) ? 0 : 1; + } + function D(e) { + var t = b(e), + n = E(e); + if (t >= 0 && t < 31) return 0; + if (t < 59 + n) return 1; + if (t < 90 + n) return 2; + if (t < 120 + n) return 3; + if (t < 151 + n) return 4; + if (t < 181 + n) return 5; + if (t < 212 + n) return 6; + if (t < 243 + n) return 7; + if (t < 273 + n) return 8; + if (t < 304 + n) return 9; + if (t < 334 + n) return 10; + if (t < 365 + n) return 11; + throw new Error("Invalid time"); + } + function C(e) { + var t = b(e), + n = D(e), + r = E(e); + if (0 === n) return t + 1; + if (1 === n) return t - 30; + if (2 === n) return t - 58 - r; + if (3 === n) return t - 89 - r; + if (4 === n) return t - 119 - r; + if (5 === n) return t - 150 - r; + if (6 === n) return t - 180 - r; + if (7 === n) return t - 211 - r; + if (8 === n) return t - 242 - r; + if (9 === n) return t - 272 - r; + if (10 === n) return t - 303 - r; + if (11 === n) return t - 333 - r; + throw new Error("Invalid time"); + } + var w = 24, + S = 60, + A = 60, + k = 1e3, + _ = k * A, + T = _ * S; + function I(e) { + return p(Math.floor(e / T), w); + } + function O(e) { + return p(Math.floor(e / _), S); + } + function F(e) { + return p(Math.floor(e / k), A); + } + function x(e, t, n) { + if ("function" != typeof e) return !1; + if (null == n ? void 0 : n.boundTargetFunction) return t instanceof (null == n ? void 0 : n.boundTargetFunction); + if ("object" != typeof t) return !1; + var r = e.prototype; + if ("object" != typeof r) throw new TypeError("OrdinaryHasInstance called on an object with an invalid prototype property."); + return Object.prototype.isPrototypeOf.call(r, t); + } + function N(e) { + return p(e, k); + } + }, + 31850: (e, t, n) => { + "use strict"; + function r(e) { + return Intl.getCanonicalLocales(e); + } + n.d(t, { L: () => r }); + }, + 59854: (e, t, n) => { + "use strict"; + function r(e, t) { + var n = t.tzData, + r = t.uppercaseLinks, + o = e.toUpperCase(), + a = Object.keys(n).reduce(function (e, t) { + return (e[t.toUpperCase()] = t), e; + }, {}), + i = r[o] || a[o]; + return "Etc/UTC" === i || "Etc/GMT" === i ? "UTC" : i; + } + n.d(t, { a: () => r }); + }, + 20875: (e, t, n) => { + "use strict"; + n.d(t, { U: () => o }); + var r = n(57781); + function o(e) { + return void 0 === e ? Object.create(null) : (0, r.TA)(e); + } + }, + 26575: (e, t, n) => { + "use strict"; + function r(e, t, n, r) { + if (void 0 !== e) { + if (((e = Number(e)), isNaN(e) || e < t || e > n)) throw new RangeError("".concat(e, " is outside of range [").concat(t, ", ").concat(n, "]")); + return Math.floor(e); + } + return r; + } + n.d(t, { Q: () => r }); + }, + 1414: (e, t, n) => { + "use strict"; + n.d(t, { _: () => o }); + var r = n(26575); + function o(e, t, n, o, a) { + var i = e[t]; + return (0, r.Q)(i, n, o, a); + } + }, + 13458: (e, t, n) => { + "use strict"; + n.d(t, { u: () => o }); + var r = n(57781); + function o(e, t, n, o, a) { + if ("object" != typeof e) throw new TypeError("Options must be an object"); + var i = e[t]; + if (void 0 !== i) { + if ("boolean" !== n && "string" !== n) throw new TypeError("invalid type"); + if ( + ("boolean" === n && (i = Boolean(i)), + "string" === n && (i = (0, r.Ml)(i)), + void 0 !== o && + !o.filter(function (e) { + return e == i; + }).length) + ) + throw new RangeError("".concat(i, " is not within ").concat(o.join(", "))); + return i; + } + return a; + } + }, + 63481: (e, t, n) => { + "use strict"; + function r(e) { + if (void 0 === e) return Object.create(null); + if ("object" == typeof e) return e; + throw new TypeError("Options must be an object"); + } + n.d(t, { F: () => r }); + }, + 70620: (e, t, n) => { + "use strict"; + n.d(t, { Hr: () => o, Js: () => r, UQ: () => i, oO: () => a }); + var r = [ + "angle-degree", + "area-acre", + "area-hectare", + "concentr-percent", + "digital-bit", + "digital-byte", + "digital-gigabit", + "digital-gigabyte", + "digital-kilobit", + "digital-kilobyte", + "digital-megabit", + "digital-megabyte", + "digital-petabyte", + "digital-terabit", + "digital-terabyte", + "duration-day", + "duration-hour", + "duration-millisecond", + "duration-minute", + "duration-month", + "duration-second", + "duration-week", + "duration-year", + "length-centimeter", + "length-foot", + "length-inch", + "length-kilometer", + "length-meter", + "length-mile-scandinavian", + "length-mile", + "length-millimeter", + "length-yard", + "mass-gram", + "mass-kilogram", + "mass-ounce", + "mass-pound", + "mass-stone", + "temperature-celsius", + "temperature-fahrenheit", + "volume-fluid-ounce", + "volume-gallon", + "volume-liter", + "volume-milliliter", + ]; + function o(e) { + return e.slice(e.indexOf("-") + 1); + } + var a = r.map(o); + function i(e) { + return a.indexOf(e) > -1; + } + }, + 96510: (e, t, n) => { + "use strict"; + function r(e, t) { + var n = t.tzData, + r = t.uppercaseLinks, + o = e.toUpperCase(), + a = new Set(), + i = new Set(); + return ( + Object.keys(n) + .map(function (e) { + return e.toUpperCase(); + }) + .forEach(function (e) { + return a.add(e); + }), + Object.keys(r).forEach(function (e) { + i.add(e.toUpperCase()), a.add(r[e].toUpperCase()); + }), + a.has(o) || i.has(o) + ); + } + n.d(t, { s: () => r }); + }, + 63210: (e, t, n) => { + "use strict"; + n.d(t, { K: () => o }); + var r = /[^A-Z]/; + function o(e) { + return ( + 3 === + (e = e.replace(/([a-z])/g, function (e, t) { + return t.toUpperCase(); + })).length && !r.test(e) + ); + } + }, + 68642: (e, t, n) => { + "use strict"; + n.d(t, { L: () => o }); + var r = n(70620); + function o(e) { + if ( + ((e = e.replace(/([A-Z])/g, function (e, t) { + return t.toLowerCase(); + })), + (0, r.UQ)(e)) + ) + return !0; + var t = e.split("-per-"); + if (2 !== t.length) return !1; + var n = t[0], + o = t[1]; + return !(!(0, r.UQ)(n) || !(0, r.UQ)(o)); + } + }, + 7011: (e, t, n) => { + "use strict"; + n.d(t, { V: () => i }); + var r = n(85665), + o = n(70993), + a = n(88751); + function i(e, t, n) { + var i = n.getInternalSlots; + if (0 === t) return [0, 0]; + t < 0 && (t = -t); + var s = (0, r.Tg)(t), + c = (0, o.b)(e, s, { getInternalSlots: i }); + t = c < 0 ? t * Math.pow(10, -c) : t / Math.pow(10, c); + var l = (0, a.E)(i(e), t); + return 0 === l.roundedNumber || (0, r.Tg)(l.roundedNumber) === s - c ? [c, s] : [(0, o.b)(e, s + 1, { getInternalSlots: i }), s + 1]; + } + }, + 70993: (e, t, n) => { + "use strict"; + function r(e, t, n) { + var r = (0, n.getInternalSlots)(e), + o = r.notation, + a = r.dataLocaleData, + i = r.numberingSystem; + switch (o) { + case "standard": + return 0; + case "scientific": + return t; + case "engineering": + return 3 * Math.floor(t / 3); + default: + var s = r.compactDisplay, + c = r.style, + l = r.currencyDisplay, + u = void 0; + if ("currency" === c && "name" !== l) u = (a.numbers.currency[i] || a.numbers.currency[a.numbers.nu[0]]).short; + else { + var d = a.numbers.decimal[i] || a.numbers.decimal[a.numbers.nu[0]]; + u = "long" === s ? d.long : d.short; + } + if (!u) return 0; + var p = String(Math.pow(10, t)), + f = Object.keys(u); + if (p < f[0]) return 0; + if (p > f[f.length - 1]) return f[f.length - 1].length - 1; + var m = f.indexOf(p); + if (-1 === m) return 0; + var h = f[m]; + return "0" === u[h].other ? 0 : h.length - u[h].other.match(/0+/)[0].length; + } + } + n.d(t, { b: () => r }); + }, + 76306: (e, t, n) => { + "use strict"; + n.d(t, { T: () => o }); + var r = n(57781); + function o(e, t) { + var n = t.currencyDigitsData; + return (0, r.uY)(n, e) ? n[e] : 2; + } + }, + 8986: (e, t, n) => { + "use strict"; + n.d(t, { M: () => a }); + var r = n(12264), + o = n(57781); + function a(e, t, n) { + for (var a = (0, r.I)(e, t, n), i = (0, o.U6)(0), s = 0, c = a; s < c.length; s++) { + var l = c[s]; + i.push({ type: l.type, value: l.value }); + } + return i; + } + }, + 88751: (e, t, n) => { + "use strict"; + n.d(t, { E: () => s }); + var r = n(57781), + o = n(74698), + a = n(85665), + i = n(9094); + function s(e, t) { + var n, + s = t < 0 || (0, r.QP)(t, -0); + switch ((s && (t = -t), e.roundingType)) { + case "significantDigits": + n = (0, o.w)(t, e.minimumSignificantDigits, e.maximumSignificantDigits); + break; + case "fractionDigits": + n = (0, i.W)(t, e.minimumFractionDigits, e.maximumFractionDigits); + break; + default: + (n = (0, o.w)(t, 1, 2)).integerDigitsCount > 1 && (n = (0, i.W)(t, 0, 0)); + } + t = n.roundedNumber; + var c = n.formattedString, + l = n.integerDigitsCount, + u = e.minimumIntegerDigits; + return l < u && (c = (0, a.rx)("0", u - l) + c), s && (t = -t), { roundedNumber: t, formattedString: c }; + } + }, + 27647: (e, t, n) => { + "use strict"; + n.d(t, { o: () => d }); + var r = n(31850), + o = n(13458), + a = n(14871), + i = n(43117), + s = n(76306), + c = n(72288), + l = n(85665), + u = n(20875); + function d(e, t, n, d) { + var p = d.getInternalSlots, + f = d.localeData, + m = d.availableLocales, + h = d.numberingSystemNames, + v = d.getDefaultLocale, + y = d.currencyDigitsData, + g = (0, r.L)(t), + b = (0, u.U)(n), + E = Object.create(null), + D = (0, o.u)(b, "localeMatcher", "string", ["lookup", "best fit"], "best fit"); + E.localeMatcher = D; + var C = (0, o.u)(b, "numberingSystem", "string", void 0, void 0); + if (void 0 !== C && h.indexOf(C) < 0) throw RangeError("Invalid numberingSystems: ".concat(C)); + E.nu = C; + var w = (0, a.f)(m, g, E, ["nu"], f, v), + S = f[w.dataLocale]; + (0, l.kG)(!!S, "Missing locale data for ".concat(w.dataLocale)); + var A = p(e); + (A.locale = w.locale), (A.dataLocale = w.dataLocale), (A.numberingSystem = w.nu), (A.dataLocaleData = S), (0, i.x)(e, b, { getInternalSlots: p }); + var k, + _, + T = A.style; + if ("currency" === T) { + var I = A.currency, + O = (0, s.T)(I, { currencyDigitsData: y }); + (k = O), (_ = O); + } else (k = 0), (_ = "percent" === T ? 0 : 3); + var F = (0, o.u)(b, "notation", "string", ["standard", "scientific", "engineering", "compact"], "standard"); + (A.notation = F), (0, c.W)(A, b, k, _, F); + var x = (0, o.u)(b, "compactDisplay", "string", ["short", "long"], "short"); + "compact" === F && (A.compactDisplay = x); + var N = (0, o.u)(b, "useGrouping", "boolean", void 0, !0); + A.useGrouping = N; + var R = (0, o.u)(b, "signDisplay", "string", ["auto", "never", "always", "exceptZero"], "auto"); + return (A.signDisplay = R), e; + } + }, + 12264: (e, t, n) => { + "use strict"; + n.d(t, { I: () => s }); + var r = n(88751), + o = n(57781), + a = n(7011), + i = n(23423); + function s(e, t, n) { + var s, + c, + l, + u = n.getInternalSlots, + d = u(e), + p = d.pl, + f = d.dataLocaleData, + m = d.numberingSystem, + h = f.numbers.symbols[m] || f.numbers.symbols[f.numbers.nu[0]], + v = 0, + y = 0; + if (isNaN(t)) c = h.nan; + else if (isFinite(t)) { + "percent" === d.style && (t *= 100), (y = (s = (0, a.V)(e, t, { getInternalSlots: u }))[0]), (v = s[1]), (t = y < 0 ? t * Math.pow(10, -y) : t / Math.pow(10, y)); + var g = (0, r.E)(d, t); + (c = g.formattedString), (t = g.roundedNumber); + } else c = h.infinity; + switch (d.signDisplay) { + case "never": + l = 0; + break; + case "auto": + l = (0, o.QP)(t, 0) || t > 0 || isNaN(t) ? 0 : -1; + break; + case "always": + l = (0, o.QP)(t, 0) || t > 0 || isNaN(t) ? 1 : -1; + break; + default: + l = 0 === t || isNaN(t) ? 0 : t > 0 ? 1 : -1; + } + return (0, i.Z)({ roundedNumber: t, formattedString: c, exponent: y, magnitude: v, sign: l }, d.dataLocaleData, p, d); + } + }, + 72288: (e, t, n) => { + "use strict"; + n.d(t, { W: () => a }); + var r = n(1414), + o = n(26575); + function a(e, t, n, a, i) { + var s = (0, r._)(t, "minimumIntegerDigits", 1, 21, 1), + c = t.minimumFractionDigits, + l = t.maximumFractionDigits, + u = t.minimumSignificantDigits, + d = t.maximumSignificantDigits; + if (((e.minimumIntegerDigits = s), void 0 !== u || void 0 !== d)) + (e.roundingType = "significantDigits"), (u = (0, o.Q)(u, 1, 21, 1)), (d = (0, o.Q)(d, u, 21, 21)), (e.minimumSignificantDigits = u), (e.maximumSignificantDigits = d); + else if (void 0 !== c || void 0 !== l) { + (e.roundingType = "fractionDigits"), (c = (0, o.Q)(c, 0, 20, n)); + var p = Math.max(c, a); + (l = (0, o.Q)(l, c, 20, p)), (e.minimumFractionDigits = c), (e.maximumFractionDigits = l); + } else "compact" === i ? (e.roundingType = "compactRounding") : ((e.roundingType = "fractionDigits"), (e.minimumFractionDigits = n), (e.maximumFractionDigits = a)); + } + }, + 43117: (e, t, n) => { + "use strict"; + n.d(t, { x: () => i }); + var r = n(13458), + o = n(63210), + a = n(68642); + function i(e, t, n) { + void 0 === t && (t = Object.create(null)); + var i = (0, n.getInternalSlots)(e), + s = (0, r.u)(t, "style", "string", ["decimal", "percent", "currency", "unit"], "decimal"); + i.style = s; + var c = (0, r.u)(t, "currency", "string", void 0, void 0); + if (void 0 !== c && !(0, o.K)(c)) throw RangeError("Malformed currency code"); + if ("currency" === s && void 0 === c) throw TypeError("currency cannot be undefined"); + var l = (0, r.u)(t, "currencyDisplay", "string", ["code", "symbol", "narrowSymbol", "name"], "symbol"), + u = (0, r.u)(t, "currencySign", "string", ["standard", "accounting"], "standard"), + d = (0, r.u)(t, "unit", "string", void 0, void 0); + if (void 0 !== d && !(0, a.L)(d)) throw RangeError("Invalid unit argument for Intl.NumberFormat()"); + if ("unit" === s && void 0 === d) throw TypeError("unit cannot be undefined"); + var p = (0, r.u)(t, "unitDisplay", "string", ["short", "narrow", "long"], "short"); + "currency" === s && ((i.currency = c.toUpperCase()), (i.currencyDisplay = l), (i.currencySign = u)), "unit" === s && ((i.unit = d), (i.unitDisplay = p)); + } + }, + 9094: (e, t, n) => { + "use strict"; + n.d(t, { W: () => o }); + var r = n(85665); + function o(e, t, n) { + var o, + a, + i = n, + s = Math.round(e * Math.pow(10, i)), + c = s / Math.pow(10, i); + if (s < 1e21) o = s.toString(); + else { + var l = (o = s.toString()).split("e"), + u = l[0], + d = l[1]; + (o = u.replace(".", "")), (o += (0, r.rx)("0", Math.max(+d - o.length + 1, 0))); + } + if (0 !== i) { + var p = o.length; + p <= i && ((o = (0, r.rx)("0", i + 1 - p) + o), (p = i + 1)); + var f = o.slice(0, p - i), + m = o.slice(p - i); + (o = "".concat(f, ".").concat(m)), (a = f.length); + } else a = o.length; + for (var h = n - t; h > 0 && "0" === o[o.length - 1]; ) (o = o.slice(0, -1)), h--; + return "." === o[o.length - 1] && (o = o.slice(0, -1)), { formattedString: o, roundedNumber: c, integerDigitsCount: a }; + } + }, + 74698: (e, t, n) => { + "use strict"; + n.d(t, { w: () => o }); + var r = n(85665); + function o(e, t, n) { + var o, + a, + i, + s, + c = n; + if (0 === e) (o = (0, r.rx)("0", c)), (a = 0), (i = 0); + else { + var l = e.toString(), + u = l.indexOf("e"), + d = l.split("e"), + p = d[0], + f = d[1], + m = p.replace(".", ""); + if (u >= 0 && m.length <= c) (a = +f), (o = m + (0, r.rx)("0", c - m.length)), (i = e); + else { + var h = (a = (0, r.Tg)(e)) - c + 1, + v = Math.round(g(e, h)); + g(v, c - 1) >= 10 && ((a += 1), (v = Math.floor(v / 10))), (o = v.toString()), (i = g(v, c - 1 - a)); + } + } + if ( + (a >= c - 1 ? ((o += (0, r.rx)("0", a - c + 1)), (s = a + 1)) : a >= 0 ? ((o = "".concat(o.slice(0, a + 1), ".").concat(o.slice(a + 1))), (s = a + 1)) : ((o = "0.".concat((0, r.rx)("0", -a - 1)).concat(o)), (s = 1)), + o.indexOf(".") >= 0 && n > t) + ) { + for (var y = n - t; y > 0 && "0" === o[o.length - 1]; ) (o = o.slice(0, -1)), y--; + "." === o[o.length - 1] && (o = o.slice(0, -1)); + } + return { formattedString: o, roundedNumber: i, integerDigitsCount: s }; + function g(e, t) { + return t < 0 ? e * Math.pow(10, -t) : e / Math.pow(10, t); + } + } + }, + 23423: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => l }); + var r = n(9094), + o = { + adlm: ["𞥐", "𞥑", "𞥒", "𞥓", "𞥔", "𞥕", "𞥖", "𞥗", "𞥘", "𞥙"], + ahom: ["𑜰", "𑜱", "𑜲", "𑜳", "𑜴", "𑜵", "𑜶", "𑜷", "𑜸", "𑜹"], + arab: ["٠", "١", "٢", "٣", "٤", "٥", "٦", "٧", "٨", "٩"], + arabext: ["۰", "۱", "۲", "۳", "۴", "۵", "۶", "۷", "۸", "۹"], + bali: ["᭐", "᭑", "᭒", "᭓", "᭔", "᭕", "᭖", "᭗", "᭘", "᭙"], + beng: ["০", "১", "২", "৩", "৪", "৫", "৬", "৭", "৮", "৯"], + bhks: ["𑱐", "𑱑", "𑱒", "𑱓", "𑱔", "𑱕", "𑱖", "𑱗", "𑱘", "𑱙"], + brah: ["𑁦", "𑁧", "𑁨", "𑁩", "𑁪", "𑁫", "𑁬", "𑁭", "𑁮", "𑁯"], + cakm: ["𑄶", "𑄷", "𑄸", "𑄹", "𑄺", "𑄻", "𑄼", "𑄽", "𑄾", "𑄿"], + cham: ["꩐", "꩑", "꩒", "꩓", "꩔", "꩕", "꩖", "꩗", "꩘", "꩙"], + deva: ["०", "१", "२", "३", "४", "५", "६", "७", "८", "९"], + diak: ["𑥐", "𑥑", "𑥒", "𑥓", "𑥔", "𑥕", "𑥖", "𑥗", "𑥘", "𑥙"], + fullwide: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"], + gong: ["𑶠", "𑶡", "𑶢", "𑶣", "𑶤", "𑶥", "𑶦", "𑶧", "𑶨", "𑶩"], + gonm: ["𑵐", "𑵑", "𑵒", "𑵓", "𑵔", "𑵕", "𑵖", "𑵗", "𑵘", "𑵙"], + gujr: ["૦", "૧", "૨", "૩", "૪", "૫", "૬", "૭", "૮", "૯"], + guru: ["੦", "੧", "੨", "੩", "੪", "੫", "੬", "੭", "੮", "੯"], + hanidec: ["〇", "一", "二", "三", "四", "五", "六", "七", "八", "九"], + hmng: ["𖭐", "𖭑", "𖭒", "𖭓", "𖭔", "𖭕", "𖭖", "𖭗", "𖭘", "𖭙"], + hmnp: ["𞅀", "𞅁", "𞅂", "𞅃", "𞅄", "𞅅", "𞅆", "𞅇", "𞅈", "𞅉"], + java: ["꧐", "꧑", "꧒", "꧓", "꧔", "꧕", "꧖", "꧗", "꧘", "꧙"], + kali: ["꤀", "꤁", "꤂", "꤃", "꤄", "꤅", "꤆", "꤇", "꤈", "꤉"], + khmr: ["០", "១", "២", "៣", "៤", "៥", "៦", "៧", "៨", "៩"], + knda: ["೦", "೧", "೨", "೩", "೪", "೫", "೬", "೭", "೮", "೯"], + lana: ["᪀", "᪁", "᪂", "᪃", "᪄", "᪅", "᪆", "᪇", "᪈", "᪉"], + lanatham: ["᪐", "᪑", "᪒", "᪓", "᪔", "᪕", "᪖", "᪗", "᪘", "᪙"], + laoo: ["໐", "໑", "໒", "໓", "໔", "໕", "໖", "໗", "໘", "໙"], + lepc: ["᪐", "᪑", "᪒", "᪓", "᪔", "᪕", "᪖", "᪗", "᪘", "᪙"], + limb: ["᥆", "᥇", "᥈", "᥉", "᥊", "᥋", "᥌", "᥍", "᥎", "᥏"], + mathbold: ["𝟎", "𝟏", "𝟐", "𝟑", "𝟒", "𝟓", "𝟔", "𝟕", "𝟖", "𝟗"], + mathdbl: ["𝟘", "𝟙", "𝟚", "𝟛", "𝟜", "𝟝", "𝟞", "𝟟", "𝟠", "𝟡"], + mathmono: ["𝟶", "𝟷", "𝟸", "𝟹", "𝟺", "𝟻", "𝟼", "𝟽", "𝟾", "𝟿"], + mathsanb: ["𝟬", "𝟭", "𝟮", "𝟯", "𝟰", "𝟱", "𝟲", "𝟳", "𝟴", "𝟵"], + mathsans: ["𝟢", "𝟣", "𝟤", "𝟥", "𝟦", "𝟧", "𝟨", "𝟩", "𝟪", "𝟫"], + mlym: ["൦", "൧", "൨", "൩", "൪", "൫", "൬", "൭", "൮", "൯"], + modi: ["𑙐", "𑙑", "𑙒", "𑙓", "𑙔", "𑙕", "𑙖", "𑙗", "𑙘", "𑙙"], + mong: ["᠐", "᠑", "᠒", "᠓", "᠔", "᠕", "᠖", "᠗", "᠘", "᠙"], + mroo: ["𖩠", "𖩡", "𖩢", "𖩣", "𖩤", "𖩥", "𖩦", "𖩧", "𖩨", "𖩩"], + mtei: ["꯰", "꯱", "꯲", "꯳", "꯴", "꯵", "꯶", "꯷", "꯸", "꯹"], + mymr: ["၀", "၁", "၂", "၃", "၄", "၅", "၆", "၇", "၈", "၉"], + mymrshan: ["႐", "႑", "႒", "႓", "႔", "႕", "႖", "႗", "႘", "႙"], + mymrtlng: ["꧰", "꧱", "꧲", "꧳", "꧴", "꧵", "꧶", "꧷", "꧸", "꧹"], + newa: ["𑑐", "𑑑", "𑑒", "𑑓", "𑑔", "𑑕", "𑑖", "𑑗", "𑑘", "𑑙"], + nkoo: ["߀", "߁", "߂", "߃", "߄", "߅", "߆", "߇", "߈", "߉"], + olck: ["᱐", "᱑", "᱒", "᱓", "᱔", "᱕", "᱖", "᱗", "᱘", "᱙"], + orya: ["୦", "୧", "୨", "୩", "୪", "୫", "୬", "୭", "୮", "୯"], + osma: ["𐒠", "𐒡", "𐒢", "𐒣", "𐒤", "𐒥", "𐒦", "𐒧", "𐒨", "𐒩"], + rohg: ["𐴰", "𐴱", "𐴲", "𐴳", "𐴴", "𐴵", "𐴶", "𐴷", "𐴸", "𐴹"], + saur: ["꣐", "꣑", "꣒", "꣓", "꣔", "꣕", "꣖", "꣗", "꣘", "꣙"], + segment: ["🯰", "🯱", "🯲", "🯳", "🯴", "🯵", "🯶", "🯷", "🯸", "🯹"], + shrd: ["𑇐", "𑇑", "𑇒", "𑇓", "𑇔", "𑇕", "𑇖", "𑇗", "𑇘", "𑇙"], + sind: ["𑋰", "𑋱", "𑋲", "𑋳", "𑋴", "𑋵", "𑋶", "𑋷", "𑋸", "𑋹"], + sinh: ["෦", "෧", "෨", "෩", "෪", "෫", "෬", "෭", "෮", "෯"], + sora: ["𑃰", "𑃱", "𑃲", "𑃳", "𑃴", "𑃵", "𑃶", "𑃷", "𑃸", "𑃹"], + sund: ["᮰", "᮱", "᮲", "᮳", "᮴", "᮵", "᮶", "᮷", "᮸", "᮹"], + takr: ["𑛀", "𑛁", "𑛂", "𑛃", "𑛄", "𑛅", "𑛆", "𑛇", "𑛈", "𑛉"], + talu: ["᧐", "᧑", "᧒", "᧓", "᧔", "᧕", "᧖", "᧗", "᧘", "᧙"], + tamldec: ["௦", "௧", "௨", "௩", "௪", "௫", "௬", "௭", "௮", "௯"], + telu: ["౦", "౧", "౨", "౩", "౪", "౫", "౬", "౭", "౮", "౯"], + thai: ["๐", "๑", "๒", "๓", "๔", "๕", "๖", "๗", "๘", "๙"], + tibt: ["༠", "༡", "༢", "༣", "༤", "༥", "༦", "༧", "༨", "༩"], + tirh: ["𑓐", "𑓑", "𑓒", "𑓓", "𑓔", "𑓕", "𑓖", "𑓗", "𑓘", "𑓙"], + vaii: ["ᘠ", "ᘡ", "ᘢ", "ᘣ", "ᘤ", "ᘥ", "ᘦ", "ᘧ", "ᘨ", "ᘩ"], + wara: ["𑣠", "𑣡", "𑣢", "𑣣", "𑣤", "𑣥", "𑣦", "𑣧", "𑣨", "𑣩"], + wcho: ["𞋰", "𞋱", "𞋲", "𞋳", "𞋴", "𞋵", "𞋶", "𞋷", "𞋸", "𞋹"], + }, + a = /[\$\+<->\^`\|~\xA2-\xA6\xA8\xA9\xAC\xAE-\xB1\xB4\xB8\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0384\u0385\u03F6\u0482\u058D-\u058F\u0606-\u0608\u060B\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u07FE\u07FF\u09F2\u09F3\u09FA\u09FB\u0AF1\u0B70\u0BF3-\u0BFA\u0C7F\u0D4F\u0D79\u0E3F\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u166D\u17DB\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u2044\u2052\u207A-\u207C\u208A-\u208C\u20A0-\u20BF\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F\u218A\u218B\u2190-\u2307\u230C-\u2328\u232B-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u2767\u2794-\u27C4\u27C7-\u27E5\u27F0-\u2982\u2999-\u29D7\u29DC-\u29FB\u29FE-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2CE5-\u2CEA\u2E50\u2E51\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u309B\u309C\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA700-\uA716\uA720\uA721\uA789\uA78A\uA828-\uA82B\uA836-\uA839\uAA77-\uAA79\uAB5B\uAB6A\uAB6B\uFB29\uFBB2-\uFBC1\uFDFC\uFDFD\uFE62\uFE64-\uFE66\uFE69\uFF04\uFF0B\uFF1C-\uFF1E\uFF3E\uFF40\uFF5C\uFF5E\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFFC\uFFFD]|\uD800[\uDD37-\uDD3F\uDD79-\uDD89\uDD8C-\uDD8E\uDD90-\uDD9C\uDDA0\uDDD0-\uDDFC]|\uD802[\uDC77\uDC78\uDEC8]|\uD805\uDF3F|\uD807[\uDFD5-\uDFF1]|\uD81A[\uDF3C-\uDF3F\uDF45]|\uD82F\uDC9C|\uD834[\uDC00-\uDCF5\uDD00-\uDD26\uDD29-\uDD64\uDD6A-\uDD6C\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDDE8\uDE00-\uDE41\uDE45\uDF00-\uDF56]|\uD835[\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85\uDE86]|\uD838[\uDD4F\uDEFF]|\uD83B[\uDCAC\uDCB0\uDD2E\uDEF0\uDEF1]|\uD83C[\uDC00-\uDC2B\uDC30-\uDC93\uDCA0-\uDCAE\uDCB1-\uDCBF\uDCC1-\uDCCF\uDCD1-\uDCF5\uDD0D-\uDDAD\uDDE6-\uDE02\uDE10-\uDE3B\uDE40-\uDE48\uDE50\uDE51\uDE60-\uDE65\uDF00-\uDFFF]|\uD83D[\uDC00-\uDED7\uDEE0-\uDEEC\uDEF0-\uDEFC\uDF00-\uDF73\uDF80-\uDFD8\uDFE0-\uDFEB]|\uD83E[\uDC00-\uDC0B\uDC10-\uDC47\uDC50-\uDC59\uDC60-\uDC87\uDC90-\uDCAD\uDCB0\uDCB1\uDD00-\uDD78\uDD7A-\uDDCB\uDDCD-\uDE53\uDE60-\uDE6D\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6\uDF00-\uDF92\uDF94-\uDFCA]/, + i = new RegExp("^".concat(a.source)), + s = new RegExp("".concat(a.source, "$")), + c = /[#0](?:[\.,][#0]+)*/g; + function l(e, t, n, r) { + var o, + a, + l = e.sign, + f = e.exponent, + m = e.magnitude, + h = r.notation, + v = r.style, + y = r.numberingSystem, + g = t.numbers.nu[0], + b = null; + if ( + ("compact" === h && + m && + (b = (function (e, t, n, r, o, a, i) { + var s, + c, + l = e.roundedNumber, + u = e.sign, + f = e.magnitude, + m = String(Math.pow(10, f)), + h = n.numbers.nu[0]; + if ("currency" === r && "name" !== a) { + var v = null === (s = ((y = n.numbers.currency)[i] || y[h]).short) || void 0 === s ? void 0 : s[m]; + if (!v) return null; + c = p(t, l, v); + } else { + var y, + g = ((y = n.numbers.decimal)[i] || y[h])[o][m]; + if (!g) return null; + c = p(t, l, g); + } + return "0" === c + ? null + : (c = d(c, u) + .replace(/([^\s;\-\+\d¤]+)/g, "{c:$1}") + .replace(/0+/, "0")); + })(e, n, t, v, r.compactDisplay, r.currencyDisplay, y)), + "currency" === v && "name" !== r.currencyDisplay) + ) { + var E = t.currencies[r.currency]; + if (E) + switch (r.currencyDisplay) { + case "code": + o = r.currency; + break; + case "symbol": + o = E.symbol; + break; + default: + o = E.narrow; + } + else o = r.currency; + } + a = + b || + ("decimal" === v || "unit" === v || ("currency" === v && "name" === r.currencyDisplay) + ? d((t.numbers.decimal[y] || t.numbers.decimal[g]).standard, l) + : d("currency" === v ? (C = t.numbers.currency[y] || t.numbers.currency[g])[r.currencySign] : t.numbers.percent[y] || t.numbers.percent[g], l)); + var D = c.exec(a)[0]; + if (((a = a.replace(c, "{0}").replace(/'(.)'/g, "$1")), "currency" === v && "name" !== r.currencyDisplay)) { + var C, + w = (C = t.numbers.currency[y] || t.numbers.currency[g]).currencySpacing.afterInsertBetween; + w && !s.test(o) && (a = a.replace("¤{0}", "¤".concat(w, "{0}"))); + var S = C.currencySpacing.beforeInsertBetween; + S && !i.test(o) && (a = a.replace("{0}¤", "{0}".concat(S, "¤"))); + } + for (var A = a.split(/({c:[^}]+}|\{0\}|[¤%\-\+])/g), k = [], _ = t.numbers.symbols[y] || t.numbers.symbols[g], T = 0, I = A; T < I.length; T++) + if ((J = I[T])) + switch (J) { + case "{0}": + k.push.apply(k, u(_, e, h, f, y, !b && r.useGrouping, D)); + break; + case "-": + k.push({ type: "minusSign", value: _.minusSign }); + break; + case "+": + k.push({ type: "plusSign", value: _.plusSign }); + break; + case "%": + k.push({ type: "percentSign", value: _.percentSign }); + break; + case "¤": + k.push({ type: "currency", value: o }); + break; + default: + /^\{c:/.test(J) ? k.push({ type: "compact", value: J.substring(3, J.length - 1) }) : k.push({ type: "literal", value: J }); + } + switch (v) { + case "currency": + if ("name" === r.currencyDisplay) { + var O, + F = (t.numbers.currency[y] || t.numbers.currency[g]).unitPattern, + x = t.currencies[r.currency]; + O = x ? p(n, e.roundedNumber * Math.pow(10, f), x.displayName) : r.currency; + for (var N = [], R = 0, L = F.split(/(\{[01]\})/g); R < L.length; R++) + switch ((J = L[R])) { + case "{0}": + N.push.apply(N, k); + break; + case "{1}": + N.push({ type: "currency", value: O }); + break; + default: + J && N.push({ type: "literal", value: J }); + } + return N; + } + return k; + case "unit": + var M = r.unit, + P = r.unitDisplay, + j = t.units.simple[M]; + if (((F = void 0), j)) F = p(n, e.roundedNumber * Math.pow(10, f), t.units.simple[M][P]); + else { + var B = M.split("-per-"), + Z = B[0], + U = B[1]; + j = t.units.simple[Z]; + var z = p(n, e.roundedNumber * Math.pow(10, f), t.units.simple[Z][P]), + V = t.units.simple[U].perUnit[P]; + if (V) F = V.replace("{0}", z); + else { + var H = t.units.compound.per[P], + G = p(n, 1, t.units.simple[U][P]); + F = F = H.replace("{0}", z).replace("{1}", G.replace("{0}", "")); + } + } + N = []; + for (var W = 0, Q = F.split(/(\s*\{0\}\s*)/); W < Q.length; W++) { + var J = Q[W], + Y = /^(\s*)\{0\}(\s*)$/.exec(J); + Y ? (Y[1] && N.push({ type: "literal", value: Y[1] }), N.push.apply(N, k), Y[2] && N.push({ type: "literal", value: Y[2] })) : J && N.push({ type: "unit", value: J }); + } + return N; + default: + return k; + } + } + function u(e, t, n, a, i, s, c) { + var l = [], + u = t.formattedString, + d = t.roundedNumber; + if (isNaN(d)) return [{ type: "nan", value: u }]; + if (!isFinite(d)) return [{ type: "infinity", value: u }]; + var p = o[i]; + p && + (u = u.replace(/\d/g, function (e) { + return p[+e] || e; + })); + var f, + m, + h = u.indexOf("."); + if ((h > 0 ? ((f = u.slice(0, h)), (m = u.slice(h + 1))) : (f = u), s && ("compact" !== n || d >= 1e4))) { + var v = e.group, + y = [], + g = c.split(".")[0].split(","), + b = 3, + E = 3; + g.length > 1 && (b = g[g.length - 1].length), g.length > 2 && (E = g[g.length - 2].length); + var D = f.length - b; + if (D > 0) { + for (y.push(f.slice(D, D + b)), D -= E; D > 0; D -= E) y.push(f.slice(D, D + E)); + y.push(f.slice(0, D + E)); + } else y.push(f); + for (; y.length > 0; ) { + var C = y.pop(); + l.push({ type: "integer", value: C }), y.length > 0 && l.push({ type: "group", value: v }); + } + } else l.push({ type: "integer", value: f }); + if ((void 0 !== m && l.push({ type: "decimal", value: e.decimal }, { type: "fraction", value: m }), ("scientific" === n || "engineering" === n) && isFinite(d))) { + l.push({ type: "exponentSeparator", value: e.exponential }), a < 0 && (l.push({ type: "exponentMinusSign", value: e.minusSign }), (a = -a)); + var w = (0, r.W)(a, 0, 0); + l.push({ type: "exponentInteger", value: w.formattedString }); + } + return l; + } + function d(e, t) { + e.indexOf(";") < 0 && (e = "".concat(e, ";-").concat(e)); + var n = e.split(";"), + r = n[0], + o = n[1]; + switch (t) { + case 0: + return r; + case -1: + return o; + default: + return o.indexOf("-") >= 0 ? o.replace(/-/g, "+") : "+".concat(r); + } + } + function p(e, t, n) { + return n[e.select(t)] || n.other; + } + }, + 56081: (e, t, n) => { + "use strict"; + n.d(t, { i: () => o }); + var r = n(85665); + function o(e) { + for (var t = [], n = e.indexOf("{"), o = 0, a = 0, i = e.length; n < e.length && n > -1; ) + (o = e.indexOf("}", n)), + (0, r.kG)(o > n, "Invalid pattern ".concat(e)), + n > a && t.push({ type: "literal", value: e.substring(a, n) }), + t.push({ type: e.substring(n + 1, o), value: void 0 }), + (a = o + 1), + (n = e.indexOf("{", a)); + return a < i && t.push({ type: "literal", value: e.substring(a, i) }), t; + } + }, + 3056: (e, t, n) => { + "use strict"; + n.d(t, { Q: () => i }); + var r = n(57781), + o = n(13458), + a = n(14871); + function i(e, t, n) { + return void 0 !== n && ((n = (0, r.TA)(n)), (0, o.u)(n, "localeMatcher", "string", ["lookup", "best fit"], "best fit")), (0, a.Tm)(e, t); + } + }, + 34306: (e, t, n) => { + "use strict"; + n.d(t, { N: () => a }); + var r, + o = n(13795); + function a(e) { + return "MISSING_LOCALE_DATA" === e.type; + } + (r = Error), + (0, o.__extends)(function () { + var e = (null !== r && r.apply(this, arguments)) || this; + return (e.type = "MISSING_LOCALE_DATA"), e; + }, r); + }, + 95489: (e, t, n) => { + "use strict"; + n.r(t), + n.d(t, { + ArrayCreate: () => M.U6, + CanonicalizeLocaleList: () => r.L, + CanonicalizeTimeZoneName: () => o.a, + CoerceOptionsToObject: () => a.U, + ComputeExponent: () => f.V, + ComputeExponentForMagnitude: () => m.b, + CurrencyDigits: () => h.T, + DateFromTime: () => M.XB, + Day: () => M.Jc, + DayFromYear: () => M.gL, + DayWithinYear: () => M.oD, + DaysInYear: () => M.My, + FormatNumericToParts: () => v.M, + FormatNumericToString: () => y.E, + GetNumberOption: () => i._, + GetOption: () => s.u, + GetOptionsObject: () => c.F, + HasOwnProperty: () => M.uY, + HourFromTime: () => M.Zq, + InLeapYear: () => M.$i, + InitializeNumberFormat: () => g.o, + IsSanctionedSimpleUnitIdentifier: () => l.UQ, + IsValidTimeZoneName: () => u.s, + IsWellFormedCurrencyCode: () => d.K, + IsWellFormedUnitIdentifier: () => p.L, + MinFromTime: () => M.py, + MonthFromTime: () => M.J1, + OrdinaryHasInstance: () => M.R2, + PartitionNumberPattern: () => b.I, + PartitionPattern: () => A.i, + RangePatternType: () => F._, + SANCTIONED_UNITS: () => l.Js, + SIMPLE_UNITS: () => l.oO, + SameValue: () => M.QP, + SecFromTime: () => M.xk, + SetNumberFormatDigitOptions: () => E.W, + SetNumberFormatUnitOptions: () => D.x, + SupportedLocales: () => k.Q, + TimeClip: () => M.XH, + TimeFromYear: () => M.rf, + ToNumber: () => M.CU, + ToObject: () => M.TA, + ToRawFixed: () => C.W, + ToRawPrecision: () => w.w, + ToString: () => M.Ml, + Type: () => M.Dy, + WeekDay: () => M.VR, + YearFromTime: () => M.n7, + _formatToParts: () => S.Z, + defineProperty: () => _._x, + getInternalSlot: () => _.q, + getMagnitude: () => _.Tg, + getMultiInternalSlots: () => _.$0, + invariant: () => _.kG, + isLiteralPart: () => _.eY, + isMissingLocaleDataError: () => T.N, + msFromTime: () => M.Vg, + removeUnitNamespace: () => l.Hr, + setInternalSlot: () => _.LS, + setMultiInternalSlots: () => _.e7, + }); + var r = n(31850), + o = n(59854), + a = n(20875), + i = n(1414), + s = n(13458), + c = n(63481), + l = n(70620), + u = n(96510), + d = n(63210), + p = n(68642), + f = n(7011), + m = n(70993), + h = n(76306), + v = n(8986), + y = n(88751), + g = n(27647), + b = n(12264), + E = n(72288), + D = n(43117), + C = n(9094), + w = n(74698), + S = n(23423), + A = n(56081), + k = n(3056), + _ = n(85665), + T = n(34306), + I = n(40903), + O = {}; + for (const e in I) + [ + "default", + "_formatToParts", + "getInternalSlot", + "getMultiInternalSlots", + "isLiteralPart", + "setInternalSlot", + "setMultiInternalSlots", + "getMagnitude", + "defineProperty", + "isMissingLocaleDataError", + "invariant", + "CanonicalizeLocaleList", + "CanonicalizeTimeZoneName", + "CoerceOptionsToObject", + "GetNumberOption", + "GetOption", + "GetOptionsObject", + "IsSanctionedSimpleUnitIdentifier", + "SANCTIONED_UNITS", + "SIMPLE_UNITS", + "removeUnitNamespace", + "IsValidTimeZoneName", + "IsWellFormedCurrencyCode", + "IsWellFormedUnitIdentifier", + "ComputeExponent", + "ComputeExponentForMagnitude", + "CurrencyDigits", + "FormatNumericToParts", + "FormatNumericToString", + "InitializeNumberFormat", + "PartitionNumberPattern", + "SetNumberFormatDigitOptions", + "SetNumberFormatUnitOptions", + "ToRawFixed", + "ToRawPrecision", + "PartitionPattern", + "SupportedLocales", + ].indexOf(e) < 0 && (O[e] = () => I[e]); + n.d(t, O); + var F = n(63325), + x = n(54406); + O = {}; + for (const e in x) + [ + "default", + "_formatToParts", + "getInternalSlot", + "getMultiInternalSlots", + "isLiteralPart", + "setInternalSlot", + "setMultiInternalSlots", + "getMagnitude", + "defineProperty", + "isMissingLocaleDataError", + "invariant", + "CanonicalizeLocaleList", + "CanonicalizeTimeZoneName", + "CoerceOptionsToObject", + "GetNumberOption", + "GetOption", + "GetOptionsObject", + "IsSanctionedSimpleUnitIdentifier", + "SANCTIONED_UNITS", + "SIMPLE_UNITS", + "removeUnitNamespace", + "IsValidTimeZoneName", + "IsWellFormedCurrencyCode", + "IsWellFormedUnitIdentifier", + "ComputeExponent", + "ComputeExponentForMagnitude", + "CurrencyDigits", + "FormatNumericToParts", + "FormatNumericToString", + "InitializeNumberFormat", + "PartitionNumberPattern", + "SetNumberFormatDigitOptions", + "SetNumberFormatUnitOptions", + "ToRawFixed", + "ToRawPrecision", + "PartitionPattern", + "SupportedLocales", + "RangePatternType", + ].indexOf(e) < 0 && (O[e] = () => x[e]); + n.d(t, O); + var N = n(52169); + O = {}; + for (const e in N) + [ + "default", + "_formatToParts", + "getInternalSlot", + "getMultiInternalSlots", + "isLiteralPart", + "setInternalSlot", + "setMultiInternalSlots", + "getMagnitude", + "defineProperty", + "isMissingLocaleDataError", + "invariant", + "CanonicalizeLocaleList", + "CanonicalizeTimeZoneName", + "CoerceOptionsToObject", + "GetNumberOption", + "GetOption", + "GetOptionsObject", + "IsSanctionedSimpleUnitIdentifier", + "SANCTIONED_UNITS", + "SIMPLE_UNITS", + "removeUnitNamespace", + "IsValidTimeZoneName", + "IsWellFormedCurrencyCode", + "IsWellFormedUnitIdentifier", + "ComputeExponent", + "ComputeExponentForMagnitude", + "CurrencyDigits", + "FormatNumericToParts", + "FormatNumericToString", + "InitializeNumberFormat", + "PartitionNumberPattern", + "SetNumberFormatDigitOptions", + "SetNumberFormatUnitOptions", + "ToRawFixed", + "ToRawPrecision", + "PartitionPattern", + "SupportedLocales", + "RangePatternType", + ].indexOf(e) < 0 && (O[e] = () => N[e]); + n.d(t, O); + var R = n(46249); + O = {}; + for (const e in R) + [ + "default", + "_formatToParts", + "getInternalSlot", + "getMultiInternalSlots", + "isLiteralPart", + "setInternalSlot", + "setMultiInternalSlots", + "getMagnitude", + "defineProperty", + "isMissingLocaleDataError", + "invariant", + "CanonicalizeLocaleList", + "CanonicalizeTimeZoneName", + "CoerceOptionsToObject", + "GetNumberOption", + "GetOption", + "GetOptionsObject", + "IsSanctionedSimpleUnitIdentifier", + "SANCTIONED_UNITS", + "SIMPLE_UNITS", + "removeUnitNamespace", + "IsValidTimeZoneName", + "IsWellFormedCurrencyCode", + "IsWellFormedUnitIdentifier", + "ComputeExponent", + "ComputeExponentForMagnitude", + "CurrencyDigits", + "FormatNumericToParts", + "FormatNumericToString", + "InitializeNumberFormat", + "PartitionNumberPattern", + "SetNumberFormatDigitOptions", + "SetNumberFormatUnitOptions", + "ToRawFixed", + "ToRawPrecision", + "PartitionPattern", + "SupportedLocales", + "RangePatternType", + ].indexOf(e) < 0 && (O[e] = () => R[e]); + n.d(t, O); + var L = n(82656); + O = {}; + for (const e in L) + [ + "default", + "_formatToParts", + "getInternalSlot", + "getMultiInternalSlots", + "isLiteralPart", + "setInternalSlot", + "setMultiInternalSlots", + "getMagnitude", + "defineProperty", + "isMissingLocaleDataError", + "invariant", + "CanonicalizeLocaleList", + "CanonicalizeTimeZoneName", + "CoerceOptionsToObject", + "GetNumberOption", + "GetOption", + "GetOptionsObject", + "IsSanctionedSimpleUnitIdentifier", + "SANCTIONED_UNITS", + "SIMPLE_UNITS", + "removeUnitNamespace", + "IsValidTimeZoneName", + "IsWellFormedCurrencyCode", + "IsWellFormedUnitIdentifier", + "ComputeExponent", + "ComputeExponentForMagnitude", + "CurrencyDigits", + "FormatNumericToParts", + "FormatNumericToString", + "InitializeNumberFormat", + "PartitionNumberPattern", + "SetNumberFormatDigitOptions", + "SetNumberFormatUnitOptions", + "ToRawFixed", + "ToRawPrecision", + "PartitionPattern", + "SupportedLocales", + "RangePatternType", + ].indexOf(e) < 0 && (O[e] = () => L[e]); + n.d(t, O); + var M = n(57781); + }, + 63325: (e, t, n) => { + "use strict"; + var r; + n.d(t, { _: () => r }), + (function (e) { + (e.startRange = "startRange"), (e.shared = "shared"), (e.endRange = "endRange"); + })(r || (r = {})); + }, + 82656: () => {}, + 54406: () => {}, + 46249: () => {}, + 52169: () => {}, + 40903: () => {}, + 85665: (e, t, n) => { + "use strict"; + function r(e) { + return Math.floor(Math.log(e) * Math.LOG10E); + } + function o(e, t) { + if ("function" == typeof e.repeat) return e.repeat(t); + for (var n = new Array(t), r = 0; r < n.length; r++) n[r] = e; + return n.join(""); + } + function a(e, t, n, r) { + e.get(t) || e.set(t, Object.create(null)), (e.get(t)[n] = r); + } + function i(e, t, n) { + for (var r = 0, o = Object.keys(n); r < o.length; r++) { + var i = o[r]; + a(e, t, i, n[i]); + } + } + function s(e, t, n) { + return c(e, t, n)[n]; + } + function c(e, t) { + for (var n = [], r = 2; r < arguments.length; r++) n[r - 2] = arguments[r]; + var o = e.get(t); + if (!o) throw new TypeError("".concat(t, " InternalSlot has not been initialized")); + return n.reduce(function (e, t) { + return (e[t] = o[t]), e; + }, Object.create(null)); + } + function l(e) { + return "literal" === e.type; + } + function u(e, t, n) { + var r = n.value; + Object.defineProperty(e, t, { configurable: !0, enumerable: !1, writable: !0, value: r }); + } + function d(e, t, n) { + if ((void 0 === n && (n = Error), !e)) throw new n(t); + } + n.d(t, { $0: () => c, LS: () => a, Tg: () => r, _x: () => u, e7: () => i, eY: () => l, kG: () => d, q: () => s, rx: () => o }); + }, + 17618: (e, t, n) => { + "use strict"; + function r(e, t) { + var n = t && t.cache ? t.cache : u, + r = t && t.serializer ? t.serializer : c; + return (t && t.strategy ? t.strategy : s)(e, { cache: n, serializer: r }); + } + function o(e, t, n, r) { + var o, + a = null == (o = r) || "number" == typeof o || "boolean" == typeof o ? r : n(r), + i = t.get(a); + return void 0 === i && ((i = e.call(this, r)), t.set(a, i)), i; + } + function a(e, t, n) { + var r = Array.prototype.slice.call(arguments, 3), + o = n(r), + a = t.get(o); + return void 0 === a && ((a = e.apply(this, r)), t.set(o, a)), a; + } + function i(e, t, n, r, o) { + return n.bind(t, e, r, o); + } + function s(e, t) { + return i(e, this, 1 === e.length ? o : a, t.cache.create(), t.serializer); + } + n.d(t, { A: () => d, Z: () => r }); + var c = function () { + return JSON.stringify(arguments); + }; + function l() { + this.cache = Object.create(null); + } + (l.prototype.get = function (e) { + return this.cache[e]; + }), + (l.prototype.set = function (e, t) { + this.cache[e] = t; + }); + var u = { + create: function () { + return new l(); + }, + }, + d = { + variadic: function (e, t) { + return i(e, this, a, t.cache.create(), t.serializer); + }, + monadic: function (e, t) { + return i(e, this, o, t.cache.create(), t.serializer); + }, + }; + }, + 11425: (e, t, n) => { + "use strict"; + n.d(t, { wD: () => o, VG: () => c, rp: () => u, Ii: () => y, O4: () => s, uf: () => l, Wh: () => v, Jo: () => f, yx: () => m, Wi: () => p, HI: () => h, pe: () => d, Qc: () => ae }); + var r, + o, + a, + i = n(13795); + function s(e) { + return e.type === o.literal; + } + function c(e) { + return e.type === o.argument; + } + function l(e) { + return e.type === o.number; + } + function u(e) { + return e.type === o.date; + } + function d(e) { + return e.type === o.time; + } + function p(e) { + return e.type === o.select; + } + function f(e) { + return e.type === o.plural; + } + function m(e) { + return e.type === o.pound; + } + function h(e) { + return e.type === o.tag; + } + function v(e) { + return !(!e || "object" != typeof e || e.type !== a.number); + } + function y(e) { + return !(!e || "object" != typeof e || e.type !== a.dateTime); + } + !(function (e) { + (e[(e.EXPECT_ARGUMENT_CLOSING_BRACE = 1)] = "EXPECT_ARGUMENT_CLOSING_BRACE"), + (e[(e.EMPTY_ARGUMENT = 2)] = "EMPTY_ARGUMENT"), + (e[(e.MALFORMED_ARGUMENT = 3)] = "MALFORMED_ARGUMENT"), + (e[(e.EXPECT_ARGUMENT_TYPE = 4)] = "EXPECT_ARGUMENT_TYPE"), + (e[(e.INVALID_ARGUMENT_TYPE = 5)] = "INVALID_ARGUMENT_TYPE"), + (e[(e.EXPECT_ARGUMENT_STYLE = 6)] = "EXPECT_ARGUMENT_STYLE"), + (e[(e.INVALID_NUMBER_SKELETON = 7)] = "INVALID_NUMBER_SKELETON"), + (e[(e.INVALID_DATE_TIME_SKELETON = 8)] = "INVALID_DATE_TIME_SKELETON"), + (e[(e.EXPECT_NUMBER_SKELETON = 9)] = "EXPECT_NUMBER_SKELETON"), + (e[(e.EXPECT_DATE_TIME_SKELETON = 10)] = "EXPECT_DATE_TIME_SKELETON"), + (e[(e.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE = 11)] = "UNCLOSED_QUOTE_IN_ARGUMENT_STYLE"), + (e[(e.EXPECT_SELECT_ARGUMENT_OPTIONS = 12)] = "EXPECT_SELECT_ARGUMENT_OPTIONS"), + (e[(e.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE = 13)] = "EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE"), + (e[(e.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE = 14)] = "INVALID_PLURAL_ARGUMENT_OFFSET_VALUE"), + (e[(e.EXPECT_SELECT_ARGUMENT_SELECTOR = 15)] = "EXPECT_SELECT_ARGUMENT_SELECTOR"), + (e[(e.EXPECT_PLURAL_ARGUMENT_SELECTOR = 16)] = "EXPECT_PLURAL_ARGUMENT_SELECTOR"), + (e[(e.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT = 17)] = "EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT"), + (e[(e.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT = 18)] = "EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT"), + (e[(e.INVALID_PLURAL_ARGUMENT_SELECTOR = 19)] = "INVALID_PLURAL_ARGUMENT_SELECTOR"), + (e[(e.DUPLICATE_PLURAL_ARGUMENT_SELECTOR = 20)] = "DUPLICATE_PLURAL_ARGUMENT_SELECTOR"), + (e[(e.DUPLICATE_SELECT_ARGUMENT_SELECTOR = 21)] = "DUPLICATE_SELECT_ARGUMENT_SELECTOR"), + (e[(e.MISSING_OTHER_CLAUSE = 22)] = "MISSING_OTHER_CLAUSE"), + (e[(e.INVALID_TAG = 23)] = "INVALID_TAG"), + (e[(e.INVALID_TAG_NAME = 25)] = "INVALID_TAG_NAME"), + (e[(e.UNMATCHED_CLOSING_TAG = 26)] = "UNMATCHED_CLOSING_TAG"), + (e[(e.UNCLOSED_TAG = 27)] = "UNCLOSED_TAG"); + })(r || (r = {})), + (function (e) { + (e[(e.literal = 0)] = "literal"), + (e[(e.argument = 1)] = "argument"), + (e[(e.number = 2)] = "number"), + (e[(e.date = 3)] = "date"), + (e[(e.time = 4)] = "time"), + (e[(e.select = 5)] = "select"), + (e[(e.plural = 6)] = "plural"), + (e[(e.pound = 7)] = "pound"), + (e[(e.tag = 8)] = "tag"); + })(o || (o = {})), + (function (e) { + (e[(e.number = 0)] = "number"), (e[(e.dateTime = 1)] = "dateTime"); + })(a || (a = {})); + var g = /[ \xA0\u1680\u2000-\u200A\u202F\u205F\u3000]/, + b = /(?:[Eec]{1,6}|G{1,5}|[Qq]{1,5}|(?:[yYur]+|U{1,5})|[ML]{1,5}|d{1,2}|D{1,3}|F{1}|[abB]{1,5}|[hkHK]{1,2}|w{1,2}|W{1}|m{1,2}|s{1,2}|[zZOvVxX]{1,4})(?=([^']*'[^']*')*[^']*$)/g; + function E(e) { + var t = {}; + return ( + e.replace(b, function (e) { + var n = e.length; + switch (e[0]) { + case "G": + t.era = 4 === n ? "long" : 5 === n ? "narrow" : "short"; + break; + case "y": + t.year = 2 === n ? "2-digit" : "numeric"; + break; + case "Y": + case "u": + case "U": + case "r": + throw new RangeError("`Y/u/U/r` (year) patterns are not supported, use `y` instead"); + case "q": + case "Q": + throw new RangeError("`q/Q` (quarter) patterns are not supported"); + case "M": + case "L": + t.month = ["numeric", "2-digit", "short", "long", "narrow"][n - 1]; + break; + case "w": + case "W": + throw new RangeError("`w/W` (week) patterns are not supported"); + case "d": + t.day = ["numeric", "2-digit"][n - 1]; + break; + case "D": + case "F": + case "g": + throw new RangeError("`D/F/g` (day) patterns are not supported, use `d` instead"); + case "E": + t.weekday = 4 === n ? "short" : 5 === n ? "narrow" : "short"; + break; + case "e": + if (n < 4) throw new RangeError("`e..eee` (weekday) patterns are not supported"); + t.weekday = ["short", "long", "narrow", "short"][n - 4]; + break; + case "c": + if (n < 4) throw new RangeError("`c..ccc` (weekday) patterns are not supported"); + t.weekday = ["short", "long", "narrow", "short"][n - 4]; + break; + case "a": + t.hour12 = !0; + break; + case "b": + case "B": + throw new RangeError("`b/B` (period) patterns are not supported, use `a` instead"); + case "h": + (t.hourCycle = "h12"), (t.hour = ["numeric", "2-digit"][n - 1]); + break; + case "H": + (t.hourCycle = "h23"), (t.hour = ["numeric", "2-digit"][n - 1]); + break; + case "K": + (t.hourCycle = "h11"), (t.hour = ["numeric", "2-digit"][n - 1]); + break; + case "k": + (t.hourCycle = "h24"), (t.hour = ["numeric", "2-digit"][n - 1]); + break; + case "j": + case "J": + case "C": + throw new RangeError("`j/J/C` (hour) patterns are not supported, use `h/H/K/k` instead"); + case "m": + t.minute = ["numeric", "2-digit"][n - 1]; + break; + case "s": + t.second = ["numeric", "2-digit"][n - 1]; + break; + case "S": + case "A": + throw new RangeError("`S/A` (second) patterns are not supported, use `s` instead"); + case "z": + t.timeZoneName = n < 4 ? "short" : "long"; + break; + case "Z": + case "O": + case "v": + case "V": + case "X": + case "x": + throw new RangeError("`Z/O/v/V/X/x` (timeZone) patterns are not supported, use `z` instead"); + } + return ""; + }), + t + ); + } + var D = /[\t-\r \x85\u200E\u200F\u2028\u2029]/i, + C = /^\.(?:(0+)(\*)?|(#+)|(0+)(#+))$/g, + w = /^(@+)?(\+|#+)?[rs]?$/g, + S = /(\*)(0+)|(#+)(0+)|(0+)/g, + A = /^(0+)$/; + function k(e) { + var t = {}; + return ( + "r" === e[e.length - 1] ? (t.roundingPriority = "morePrecision") : "s" === e[e.length - 1] && (t.roundingPriority = "lessPrecision"), + e.replace(w, function (e, n, r) { + return ( + "string" != typeof r + ? ((t.minimumSignificantDigits = n.length), (t.maximumSignificantDigits = n.length)) + : "+" === r + ? (t.minimumSignificantDigits = n.length) + : "#" === n[0] + ? (t.maximumSignificantDigits = n.length) + : ((t.minimumSignificantDigits = n.length), (t.maximumSignificantDigits = n.length + ("string" == typeof r ? r.length : 0))), + "" + ); + }), + t + ); + } + function _(e) { + switch (e) { + case "sign-auto": + return { signDisplay: "auto" }; + case "sign-accounting": + case "()": + return { currencySign: "accounting" }; + case "sign-always": + case "+!": + return { signDisplay: "always" }; + case "sign-accounting-always": + case "()!": + return { signDisplay: "always", currencySign: "accounting" }; + case "sign-except-zero": + case "+?": + return { signDisplay: "exceptZero" }; + case "sign-accounting-except-zero": + case "()?": + return { signDisplay: "exceptZero", currencySign: "accounting" }; + case "sign-never": + case "+_": + return { signDisplay: "never" }; + } + } + function T(e) { + var t; + if (("E" === e[0] && "E" === e[1] ? ((t = { notation: "engineering" }), (e = e.slice(2))) : "E" === e[0] && ((t = { notation: "scientific" }), (e = e.slice(1))), t)) { + var n = e.slice(0, 2); + if (("+!" === n ? ((t.signDisplay = "always"), (e = e.slice(2))) : "+?" === n && ((t.signDisplay = "exceptZero"), (e = e.slice(2))), !A.test(e))) throw new Error("Malformed concise eng/scientific notation"); + t.minimumIntegerDigits = e.length; + } + return t; + } + function I(e) { + return _(e) || {}; + } + function O(e) { + for (var t = {}, n = 0, r = e; n < r.length; n++) { + var o = r[n]; + switch (o.stem) { + case "percent": + case "%": + t.style = "percent"; + continue; + case "%x100": + (t.style = "percent"), (t.scale = 100); + continue; + case "currency": + (t.style = "currency"), (t.currency = o.options[0]); + continue; + case "group-off": + case ",_": + t.useGrouping = !1; + continue; + case "precision-integer": + case ".": + t.maximumFractionDigits = 0; + continue; + case "measure-unit": + case "unit": + (t.style = "unit"), (t.unit = o.options[0].replace(/^(.*?)-/, "")); + continue; + case "compact-short": + case "K": + (t.notation = "compact"), (t.compactDisplay = "short"); + continue; + case "compact-long": + case "KK": + (t.notation = "compact"), (t.compactDisplay = "long"); + continue; + case "scientific": + t = (0, i.__assign)( + (0, i.__assign)((0, i.__assign)({}, t), { notation: "scientific" }), + o.options.reduce(function (e, t) { + return (0, i.__assign)((0, i.__assign)({}, e), I(t)); + }, {}) + ); + continue; + case "engineering": + t = (0, i.__assign)( + (0, i.__assign)((0, i.__assign)({}, t), { notation: "engineering" }), + o.options.reduce(function (e, t) { + return (0, i.__assign)((0, i.__assign)({}, e), I(t)); + }, {}) + ); + continue; + case "notation-simple": + t.notation = "standard"; + continue; + case "unit-width-narrow": + (t.currencyDisplay = "narrowSymbol"), (t.unitDisplay = "narrow"); + continue; + case "unit-width-short": + (t.currencyDisplay = "code"), (t.unitDisplay = "short"); + continue; + case "unit-width-full-name": + (t.currencyDisplay = "name"), (t.unitDisplay = "long"); + continue; + case "unit-width-iso-code": + t.currencyDisplay = "symbol"; + continue; + case "scale": + t.scale = parseFloat(o.options[0]); + continue; + case "integer-width": + if (o.options.length > 1) throw new RangeError("integer-width stems only accept a single optional option"); + o.options[0].replace(S, function (e, n, r, o, a, i) { + if (n) t.minimumIntegerDigits = r.length; + else { + if (o && a) throw new Error("We currently do not support maximum integer digits"); + if (i) throw new Error("We currently do not support exact integer digits"); + } + return ""; + }); + continue; + } + if (A.test(o.stem)) t.minimumIntegerDigits = o.stem.length; + else if (C.test(o.stem)) { + if (o.options.length > 1) throw new RangeError("Fraction-precision stems only accept a single optional option"); + o.stem.replace(C, function (e, n, r, o, a, i) { + return ( + "*" === r + ? (t.minimumFractionDigits = n.length) + : o && "#" === o[0] + ? (t.maximumFractionDigits = o.length) + : a && i + ? ((t.minimumFractionDigits = a.length), (t.maximumFractionDigits = a.length + i.length)) + : ((t.minimumFractionDigits = n.length), (t.maximumFractionDigits = n.length)), + "" + ); + }); + var a = o.options[0]; + "w" === a ? (t = (0, i.__assign)((0, i.__assign)({}, t), { trailingZeroDisplay: "stripIfInteger" })) : a && (t = (0, i.__assign)((0, i.__assign)({}, t), k(a))); + } else if (w.test(o.stem)) t = (0, i.__assign)((0, i.__assign)({}, t), k(o.stem)); + else { + var s = _(o.stem); + s && (t = (0, i.__assign)((0, i.__assign)({}, t), s)); + var c = T(o.stem); + c && (t = (0, i.__assign)((0, i.__assign)({}, t), c)); + } + } + return t; + } + var F, + x = { + AX: ["H"], + BQ: ["H"], + CP: ["H"], + CZ: ["H"], + DK: ["H"], + FI: ["H"], + ID: ["H"], + IS: ["H"], + ML: ["H"], + NE: ["H"], + RU: ["H"], + SE: ["H"], + SJ: ["H"], + SK: ["H"], + AS: ["h", "H"], + BT: ["h", "H"], + DJ: ["h", "H"], + ER: ["h", "H"], + GH: ["h", "H"], + IN: ["h", "H"], + LS: ["h", "H"], + PG: ["h", "H"], + PW: ["h", "H"], + SO: ["h", "H"], + TO: ["h", "H"], + VU: ["h", "H"], + WS: ["h", "H"], + "001": ["H", "h"], + AL: ["h", "H", "hB"], + TD: ["h", "H", "hB"], + "ca-ES": ["H", "h", "hB"], + CF: ["H", "h", "hB"], + CM: ["H", "h", "hB"], + "fr-CA": ["H", "h", "hB"], + "gl-ES": ["H", "h", "hB"], + "it-CH": ["H", "h", "hB"], + "it-IT": ["H", "h", "hB"], + LU: ["H", "h", "hB"], + NP: ["H", "h", "hB"], + PF: ["H", "h", "hB"], + SC: ["H", "h", "hB"], + SM: ["H", "h", "hB"], + SN: ["H", "h", "hB"], + TF: ["H", "h", "hB"], + VA: ["H", "h", "hB"], + CY: ["h", "H", "hb", "hB"], + GR: ["h", "H", "hb", "hB"], + CO: ["h", "H", "hB", "hb"], + DO: ["h", "H", "hB", "hb"], + KP: ["h", "H", "hB", "hb"], + KR: ["h", "H", "hB", "hb"], + NA: ["h", "H", "hB", "hb"], + PA: ["h", "H", "hB", "hb"], + PR: ["h", "H", "hB", "hb"], + VE: ["h", "H", "hB", "hb"], + AC: ["H", "h", "hb", "hB"], + AI: ["H", "h", "hb", "hB"], + BW: ["H", "h", "hb", "hB"], + BZ: ["H", "h", "hb", "hB"], + CC: ["H", "h", "hb", "hB"], + CK: ["H", "h", "hb", "hB"], + CX: ["H", "h", "hb", "hB"], + DG: ["H", "h", "hb", "hB"], + FK: ["H", "h", "hb", "hB"], + GB: ["H", "h", "hb", "hB"], + GG: ["H", "h", "hb", "hB"], + GI: ["H", "h", "hb", "hB"], + IE: ["H", "h", "hb", "hB"], + IM: ["H", "h", "hb", "hB"], + IO: ["H", "h", "hb", "hB"], + JE: ["H", "h", "hb", "hB"], + LT: ["H", "h", "hb", "hB"], + MK: ["H", "h", "hb", "hB"], + MN: ["H", "h", "hb", "hB"], + MS: ["H", "h", "hb", "hB"], + NF: ["H", "h", "hb", "hB"], + NG: ["H", "h", "hb", "hB"], + NR: ["H", "h", "hb", "hB"], + NU: ["H", "h", "hb", "hB"], + PN: ["H", "h", "hb", "hB"], + SH: ["H", "h", "hb", "hB"], + SX: ["H", "h", "hb", "hB"], + TA: ["H", "h", "hb", "hB"], + ZA: ["H", "h", "hb", "hB"], + "af-ZA": ["H", "h", "hB", "hb"], + AR: ["H", "h", "hB", "hb"], + CL: ["H", "h", "hB", "hb"], + CR: ["H", "h", "hB", "hb"], + CU: ["H", "h", "hB", "hb"], + EA: ["H", "h", "hB", "hb"], + "es-BO": ["H", "h", "hB", "hb"], + "es-BR": ["H", "h", "hB", "hb"], + "es-EC": ["H", "h", "hB", "hb"], + "es-ES": ["H", "h", "hB", "hb"], + "es-GQ": ["H", "h", "hB", "hb"], + "es-PE": ["H", "h", "hB", "hb"], + GT: ["H", "h", "hB", "hb"], + HN: ["H", "h", "hB", "hb"], + IC: ["H", "h", "hB", "hb"], + KG: ["H", "h", "hB", "hb"], + KM: ["H", "h", "hB", "hb"], + LK: ["H", "h", "hB", "hb"], + MA: ["H", "h", "hB", "hb"], + MX: ["H", "h", "hB", "hb"], + NI: ["H", "h", "hB", "hb"], + PY: ["H", "h", "hB", "hb"], + SV: ["H", "h", "hB", "hb"], + UY: ["H", "h", "hB", "hb"], + JP: ["H", "h", "K"], + AD: ["H", "hB"], + AM: ["H", "hB"], + AO: ["H", "hB"], + AT: ["H", "hB"], + AW: ["H", "hB"], + BE: ["H", "hB"], + BF: ["H", "hB"], + BJ: ["H", "hB"], + BL: ["H", "hB"], + BR: ["H", "hB"], + CG: ["H", "hB"], + CI: ["H", "hB"], + CV: ["H", "hB"], + DE: ["H", "hB"], + EE: ["H", "hB"], + FR: ["H", "hB"], + GA: ["H", "hB"], + GF: ["H", "hB"], + GN: ["H", "hB"], + GP: ["H", "hB"], + GW: ["H", "hB"], + HR: ["H", "hB"], + IL: ["H", "hB"], + IT: ["H", "hB"], + KZ: ["H", "hB"], + MC: ["H", "hB"], + MD: ["H", "hB"], + MF: ["H", "hB"], + MQ: ["H", "hB"], + MZ: ["H", "hB"], + NC: ["H", "hB"], + NL: ["H", "hB"], + PM: ["H", "hB"], + PT: ["H", "hB"], + RE: ["H", "hB"], + RO: ["H", "hB"], + SI: ["H", "hB"], + SR: ["H", "hB"], + ST: ["H", "hB"], + TG: ["H", "hB"], + TR: ["H", "hB"], + WF: ["H", "hB"], + YT: ["H", "hB"], + BD: ["h", "hB", "H"], + PK: ["h", "hB", "H"], + AZ: ["H", "hB", "h"], + BA: ["H", "hB", "h"], + BG: ["H", "hB", "h"], + CH: ["H", "hB", "h"], + GE: ["H", "hB", "h"], + LI: ["H", "hB", "h"], + ME: ["H", "hB", "h"], + RS: ["H", "hB", "h"], + UA: ["H", "hB", "h"], + UZ: ["H", "hB", "h"], + XK: ["H", "hB", "h"], + AG: ["h", "hb", "H", "hB"], + AU: ["h", "hb", "H", "hB"], + BB: ["h", "hb", "H", "hB"], + BM: ["h", "hb", "H", "hB"], + BS: ["h", "hb", "H", "hB"], + CA: ["h", "hb", "H", "hB"], + DM: ["h", "hb", "H", "hB"], + "en-001": ["h", "hb", "H", "hB"], + FJ: ["h", "hb", "H", "hB"], + FM: ["h", "hb", "H", "hB"], + GD: ["h", "hb", "H", "hB"], + GM: ["h", "hb", "H", "hB"], + GU: ["h", "hb", "H", "hB"], + GY: ["h", "hb", "H", "hB"], + JM: ["h", "hb", "H", "hB"], + KI: ["h", "hb", "H", "hB"], + KN: ["h", "hb", "H", "hB"], + KY: ["h", "hb", "H", "hB"], + LC: ["h", "hb", "H", "hB"], + LR: ["h", "hb", "H", "hB"], + MH: ["h", "hb", "H", "hB"], + MP: ["h", "hb", "H", "hB"], + MW: ["h", "hb", "H", "hB"], + NZ: ["h", "hb", "H", "hB"], + SB: ["h", "hb", "H", "hB"], + SG: ["h", "hb", "H", "hB"], + SL: ["h", "hb", "H", "hB"], + SS: ["h", "hb", "H", "hB"], + SZ: ["h", "hb", "H", "hB"], + TC: ["h", "hb", "H", "hB"], + TT: ["h", "hb", "H", "hB"], + UM: ["h", "hb", "H", "hB"], + US: ["h", "hb", "H", "hB"], + VC: ["h", "hb", "H", "hB"], + VG: ["h", "hb", "H", "hB"], + VI: ["h", "hb", "H", "hB"], + ZM: ["h", "hb", "H", "hB"], + BO: ["H", "hB", "h", "hb"], + EC: ["H", "hB", "h", "hb"], + ES: ["H", "hB", "h", "hb"], + GQ: ["H", "hB", "h", "hb"], + PE: ["H", "hB", "h", "hb"], + AE: ["h", "hB", "hb", "H"], + "ar-001": ["h", "hB", "hb", "H"], + BH: ["h", "hB", "hb", "H"], + DZ: ["h", "hB", "hb", "H"], + EG: ["h", "hB", "hb", "H"], + EH: ["h", "hB", "hb", "H"], + HK: ["h", "hB", "hb", "H"], + IQ: ["h", "hB", "hb", "H"], + JO: ["h", "hB", "hb", "H"], + KW: ["h", "hB", "hb", "H"], + LB: ["h", "hB", "hb", "H"], + LY: ["h", "hB", "hb", "H"], + MO: ["h", "hB", "hb", "H"], + MR: ["h", "hB", "hb", "H"], + OM: ["h", "hB", "hb", "H"], + PH: ["h", "hB", "hb", "H"], + PS: ["h", "hB", "hb", "H"], + QA: ["h", "hB", "hb", "H"], + SA: ["h", "hB", "hb", "H"], + SD: ["h", "hB", "hb", "H"], + SY: ["h", "hB", "hb", "H"], + TN: ["h", "hB", "hb", "H"], + YE: ["h", "hB", "hb", "H"], + AF: ["H", "hb", "hB", "h"], + LA: ["H", "hb", "hB", "h"], + CN: ["H", "hB", "hb", "h"], + LV: ["H", "hB", "hb", "h"], + TL: ["H", "hB", "hb", "h"], + "zu-ZA": ["H", "hB", "hb", "h"], + CD: ["hB", "H"], + IR: ["hB", "H"], + "hi-IN": ["hB", "h", "H"], + "kn-IN": ["hB", "h", "H"], + "ml-IN": ["hB", "h", "H"], + "te-IN": ["hB", "h", "H"], + KH: ["hB", "h", "H", "hb"], + "ta-IN": ["hB", "h", "hb", "H"], + BN: ["hb", "hB", "h", "H"], + MY: ["hb", "hB", "h", "H"], + ET: ["hB", "hb", "h", "H"], + "gu-IN": ["hB", "hb", "h", "H"], + "mr-IN": ["hB", "hb", "h", "H"], + "pa-IN": ["hB", "hb", "h", "H"], + TW: ["hB", "hb", "h", "H"], + KE: ["hB", "hb", "H", "h"], + MM: ["hB", "hb", "H", "h"], + TZ: ["hB", "hb", "H", "h"], + UG: ["hB", "hb", "H", "h"], + }; + function N(e) { + var t = e.hourCycle; + if ((void 0 === t && e.hourCycles && e.hourCycles.length && (t = e.hourCycles[0]), t)) + switch (t) { + case "h24": + return "k"; + case "h23": + return "H"; + case "h12": + return "h"; + case "h11": + return "K"; + default: + throw new Error("Invalid hourCycle"); + } + var n, + r = e.language; + return "root" !== r && (n = e.maximize().region), (x[n || ""] || x[r || ""] || x["".concat(r, "-001")] || x["001"])[0]; + } + var R = new RegExp("^".concat(g.source, "*")), + L = new RegExp("".concat(g.source, "*$")); + function M(e, t) { + return { start: e, end: t }; + } + var P = !!String.prototype.startsWith, + j = !!String.fromCodePoint, + B = !!Object.fromEntries, + Z = !!String.prototype.codePointAt, + U = !!String.prototype.trimStart, + z = !!String.prototype.trimEnd, + V = Number.isSafeInteger + ? Number.isSafeInteger + : function (e) { + return "number" == typeof e && isFinite(e) && Math.floor(e) === e && Math.abs(e) <= 9007199254740991; + }, + H = !0; + try { + H = "a" === (null === (F = K("([^\\p{White_Space}\\p{Pattern_Syntax}]*)", "yu").exec("a")) || void 0 === F ? void 0 : F[0]); + } catch (e) { + H = !1; + } + var G, + W = P + ? function (e, t, n) { + return e.startsWith(t, n); + } + : function (e, t, n) { + return e.slice(n, n + t.length) === t; + }, + Q = j + ? String.fromCodePoint + : function () { + for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t]; + for (var n, r = "", o = e.length, a = 0; o > a; ) { + if ((n = e[a++]) > 1114111) throw RangeError(n + " is not a valid code point"); + r += n < 65536 ? String.fromCharCode(n) : String.fromCharCode(55296 + ((n -= 65536) >> 10), (n % 1024) + 56320); + } + return r; + }, + J = B + ? Object.fromEntries + : function (e) { + for (var t = {}, n = 0, r = e; n < r.length; n++) { + var o = r[n], + a = o[0], + i = o[1]; + t[a] = i; + } + return t; + }, + Y = Z + ? function (e, t) { + return e.codePointAt(t); + } + : function (e, t) { + var n = e.length; + if (!(t < 0 || t >= n)) { + var r, + o = e.charCodeAt(t); + return o < 55296 || o > 56319 || t + 1 === n || (r = e.charCodeAt(t + 1)) < 56320 || r > 57343 ? o : r - 56320 + ((o - 55296) << 10) + 65536; + } + }, + q = U + ? function (e) { + return e.trimStart(); + } + : function (e) { + return e.replace(R, ""); + }, + X = z + ? function (e) { + return e.trimEnd(); + } + : function (e) { + return e.replace(L, ""); + }; + function K(e, t) { + return new RegExp(e, t); + } + if (H) { + var $ = K("([^\\p{White_Space}\\p{Pattern_Syntax}]*)", "yu"); + G = function (e, t) { + var n; + return ($.lastIndex = t), null !== (n = $.exec(e)[1]) && void 0 !== n ? n : ""; + }; + } else + G = function (e, t) { + for (var n = []; ; ) { + var r = Y(e, t); + if (void 0 === r || ne(r) || re(r)) break; + n.push(r), (t += r >= 65536 ? 2 : 1); + } + return Q.apply(void 0, n); + }; + var ee = (function () { + function e(e, t) { + void 0 === t && (t = {}), + (this.message = e), + (this.position = { offset: 0, line: 1, column: 1 }), + (this.ignoreTag = !!t.ignoreTag), + (this.locale = t.locale), + (this.requiresOtherClause = !!t.requiresOtherClause), + (this.shouldParseSkeletons = !!t.shouldParseSkeletons); + } + return ( + (e.prototype.parse = function () { + if (0 !== this.offset()) throw Error("parser can only be used once"); + return this.parseMessage(0, "", !1); + }), + (e.prototype.parseMessage = function (e, t, n) { + for (var a = []; !this.isEOF(); ) { + var i = this.char(); + if (123 === i) { + if ((s = this.parseArgument(e, n)).err) return s; + a.push(s.val); + } else { + if (125 === i && e > 0) break; + if (35 !== i || ("plural" !== t && "selectordinal" !== t)) { + if (60 === i && !this.ignoreTag && 47 === this.peek()) { + if (n) break; + return this.error(r.UNMATCHED_CLOSING_TAG, M(this.clonePosition(), this.clonePosition())); + } + if (60 === i && !this.ignoreTag && te(this.peek() || 0)) { + if ((s = this.parseTag(e, t)).err) return s; + a.push(s.val); + } else { + var s; + if ((s = this.parseLiteral(e, t)).err) return s; + a.push(s.val); + } + } else { + var c = this.clonePosition(); + this.bump(), a.push({ type: o.pound, location: M(c, this.clonePosition()) }); + } + } + } + return { val: a, err: null }; + }), + (e.prototype.parseTag = function (e, t) { + var n = this.clonePosition(); + this.bump(); + var a = this.parseTagName(); + if ((this.bumpSpace(), this.bumpIf("/>"))) return { val: { type: o.literal, value: "<".concat(a, "/>"), location: M(n, this.clonePosition()) }, err: null }; + if (this.bumpIf(">")) { + var i = this.parseMessage(e + 1, t, !0); + if (i.err) return i; + var s = i.val, + c = this.clonePosition(); + if (this.bumpIf("") ? { val: { type: o.tag, value: a, children: s, location: M(n, this.clonePosition()) }, err: null } : this.error(r.INVALID_TAG, M(c, this.clonePosition()))); + } + return this.error(r.UNCLOSED_TAG, M(n, this.clonePosition())); + } + return this.error(r.INVALID_TAG, M(n, this.clonePosition())); + }), + (e.prototype.parseTagName = function () { + var e, + t = this.offset(); + for ( + this.bump(); + !this.isEOF() && + (45 === (e = this.char()) || + 46 === e || + (e >= 48 && e <= 57) || + 95 === e || + (e >= 97 && e <= 122) || + (e >= 65 && e <= 90) || + 183 == e || + (e >= 192 && e <= 214) || + (e >= 216 && e <= 246) || + (e >= 248 && e <= 893) || + (e >= 895 && e <= 8191) || + (e >= 8204 && e <= 8205) || + (e >= 8255 && e <= 8256) || + (e >= 8304 && e <= 8591) || + (e >= 11264 && e <= 12271) || + (e >= 12289 && e <= 55295) || + (e >= 63744 && e <= 64975) || + (e >= 65008 && e <= 65533) || + (e >= 65536 && e <= 983039)); + + ) + this.bump(); + return this.message.slice(t, this.offset()); + }), + (e.prototype.parseLiteral = function (e, t) { + for (var n = this.clonePosition(), r = ""; ; ) { + var a = this.tryParseQuote(t); + if (a) r += a; + else { + var i = this.tryParseUnquoted(e, t); + if (i) r += i; + else { + var s = this.tryParseLeftAngleBracket(); + if (!s) break; + r += s; + } + } + } + var c = M(n, this.clonePosition()); + return { val: { type: o.literal, value: r, location: c }, err: null }; + }), + (e.prototype.tryParseLeftAngleBracket = function () { + return this.isEOF() || 60 !== this.char() || (!this.ignoreTag && (te((e = this.peek() || 0)) || 47 === e)) ? null : (this.bump(), "<"); + var e; + }), + (e.prototype.tryParseQuote = function (e) { + if (this.isEOF() || 39 !== this.char()) return null; + switch (this.peek()) { + case 39: + return this.bump(), this.bump(), "'"; + case 123: + case 60: + case 62: + case 125: + break; + case 35: + if ("plural" === e || "selectordinal" === e) break; + return null; + default: + return null; + } + this.bump(); + var t = [this.char()]; + for (this.bump(); !this.isEOF(); ) { + var n = this.char(); + if (39 === n) { + if (39 !== this.peek()) { + this.bump(); + break; + } + t.push(39), this.bump(); + } else t.push(n); + this.bump(); + } + return Q.apply(void 0, t); + }), + (e.prototype.tryParseUnquoted = function (e, t) { + if (this.isEOF()) return null; + var n = this.char(); + return 60 === n || 123 === n || (35 === n && ("plural" === t || "selectordinal" === t)) || (125 === n && e > 0) ? null : (this.bump(), Q(n)); + }), + (e.prototype.parseArgument = function (e, t) { + var n = this.clonePosition(); + if ((this.bump(), this.bumpSpace(), this.isEOF())) return this.error(r.EXPECT_ARGUMENT_CLOSING_BRACE, M(n, this.clonePosition())); + if (125 === this.char()) return this.bump(), this.error(r.EMPTY_ARGUMENT, M(n, this.clonePosition())); + var a = this.parseIdentifierIfPossible().value; + if (!a) return this.error(r.MALFORMED_ARGUMENT, M(n, this.clonePosition())); + if ((this.bumpSpace(), this.isEOF())) return this.error(r.EXPECT_ARGUMENT_CLOSING_BRACE, M(n, this.clonePosition())); + switch (this.char()) { + case 125: + return this.bump(), { val: { type: o.argument, value: a, location: M(n, this.clonePosition()) }, err: null }; + case 44: + return this.bump(), this.bumpSpace(), this.isEOF() ? this.error(r.EXPECT_ARGUMENT_CLOSING_BRACE, M(n, this.clonePosition())) : this.parseArgumentOptions(e, t, a, n); + default: + return this.error(r.MALFORMED_ARGUMENT, M(n, this.clonePosition())); + } + }), + (e.prototype.parseIdentifierIfPossible = function () { + var e = this.clonePosition(), + t = this.offset(), + n = G(this.message, t), + r = t + n.length; + return this.bumpTo(r), { value: n, location: M(e, this.clonePosition()) }; + }), + (e.prototype.parseArgumentOptions = function (e, t, n, s) { + var c, + l = this.clonePosition(), + u = this.parseIdentifierIfPossible().value, + d = this.clonePosition(); + switch (u) { + case "": + return this.error(r.EXPECT_ARGUMENT_TYPE, M(l, d)); + case "number": + case "date": + case "time": + this.bumpSpace(); + var p = null; + if (this.bumpIf(",")) { + this.bumpSpace(); + var f = this.clonePosition(); + if ((C = this.parseSimpleArgStyleIfPossible()).err) return C; + if (0 === (y = X(C.val)).length) return this.error(r.EXPECT_ARGUMENT_STYLE, M(this.clonePosition(), this.clonePosition())); + p = { style: y, styleLocation: M(f, this.clonePosition()) }; + } + if ((w = this.tryParseArgumentClose(s)).err) return w; + var m = M(s, this.clonePosition()); + if (p && W(null == p ? void 0 : p.style, "::", 0)) { + var h = q(p.style.slice(2)); + if ("number" === u) return (C = this.parseNumberSkeletonFromString(h, p.styleLocation)).err ? C : { val: { type: o.number, value: n, location: m, style: C.val }, err: null }; + if (0 === h.length) return this.error(r.EXPECT_DATE_TIME_SKELETON, m); + var v = h; + this.locale && + (v = (function (e, t) { + for (var n = "", r = 0; r < e.length; r++) { + var o = e.charAt(r); + if ("j" === o) { + for (var a = 0; r + 1 < e.length && e.charAt(r + 1) === o; ) a++, r++; + var i = 1 + (1 & a), + s = a < 2 ? 1 : 3 + (a >> 1), + c = N(t); + for (("H" != c && "k" != c) || (s = 0); s-- > 0; ) n += "a"; + for (; i-- > 0; ) n = c + n; + } else n += "J" === o ? "H" : o; + } + return n; + })(h, this.locale)); + var y = { type: a.dateTime, pattern: v, location: p.styleLocation, parsedOptions: this.shouldParseSkeletons ? E(v) : {} }; + return { val: { type: "date" === u ? o.date : o.time, value: n, location: m, style: y }, err: null }; + } + return { val: { type: "number" === u ? o.number : "date" === u ? o.date : o.time, value: n, location: m, style: null !== (c = null == p ? void 0 : p.style) && void 0 !== c ? c : null }, err: null }; + case "plural": + case "selectordinal": + case "select": + var g = this.clonePosition(); + if ((this.bumpSpace(), !this.bumpIf(","))) return this.error(r.EXPECT_SELECT_ARGUMENT_OPTIONS, M(g, (0, i.__assign)({}, g))); + this.bumpSpace(); + var b = this.parseIdentifierIfPossible(), + D = 0; + if ("select" !== u && "offset" === b.value) { + if (!this.bumpIf(":")) return this.error(r.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE, M(this.clonePosition(), this.clonePosition())); + var C; + if ((this.bumpSpace(), (C = this.tryParseDecimalInteger(r.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE, r.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE)).err)) return C; + this.bumpSpace(), (b = this.parseIdentifierIfPossible()), (D = C.val); + } + var w, + S = this.tryParsePluralOrSelectOptions(e, u, t, b); + if (S.err) return S; + if ((w = this.tryParseArgumentClose(s)).err) return w; + var A = M(s, this.clonePosition()); + return "select" === u + ? { val: { type: o.select, value: n, options: J(S.val), location: A }, err: null } + : { val: { type: o.plural, value: n, options: J(S.val), offset: D, pluralType: "plural" === u ? "cardinal" : "ordinal", location: A }, err: null }; + default: + return this.error(r.INVALID_ARGUMENT_TYPE, M(l, d)); + } + }), + (e.prototype.tryParseArgumentClose = function (e) { + return this.isEOF() || 125 !== this.char() ? this.error(r.EXPECT_ARGUMENT_CLOSING_BRACE, M(e, this.clonePosition())) : (this.bump(), { val: !0, err: null }); + }), + (e.prototype.parseSimpleArgStyleIfPossible = function () { + for (var e = 0, t = this.clonePosition(); !this.isEOF(); ) + switch (this.char()) { + case 39: + this.bump(); + var n = this.clonePosition(); + if (!this.bumpUntil("'")) return this.error(r.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE, M(n, this.clonePosition())); + this.bump(); + break; + case 123: + (e += 1), this.bump(); + break; + case 125: + if (!(e > 0)) return { val: this.message.slice(t.offset, this.offset()), err: null }; + e -= 1; + break; + default: + this.bump(); + } + return { val: this.message.slice(t.offset, this.offset()), err: null }; + }), + (e.prototype.parseNumberSkeletonFromString = function (e, t) { + var n = []; + try { + n = (function (e) { + if (0 === e.length) throw new Error("Number skeleton cannot be empty"); + for ( + var t = [], + n = 0, + r = e.split(D).filter(function (e) { + return e.length > 0; + }); + n < r.length; + n++ + ) { + var o = r[n].split("/"); + if (0 === o.length) throw new Error("Invalid number skeleton"); + for (var a = o[0], i = o.slice(1), s = 0, c = i; s < c.length; s++) if (0 === c[s].length) throw new Error("Invalid number skeleton"); + t.push({ stem: a, options: i }); + } + return t; + })(e); + } catch (e) { + return this.error(r.INVALID_NUMBER_SKELETON, t); + } + return { val: { type: a.number, tokens: n, location: t, parsedOptions: this.shouldParseSkeletons ? O(n) : {} }, err: null }; + }), + (e.prototype.tryParsePluralOrSelectOptions = function (e, t, n, o) { + for (var a, i = !1, s = [], c = new Set(), l = o.value, u = o.location; ; ) { + if (0 === l.length) { + var d = this.clonePosition(); + if ("select" === t || !this.bumpIf("=")) break; + var p = this.tryParseDecimalInteger(r.EXPECT_PLURAL_ARGUMENT_SELECTOR, r.INVALID_PLURAL_ARGUMENT_SELECTOR); + if (p.err) return p; + (u = M(d, this.clonePosition())), (l = this.message.slice(d.offset, this.offset())); + } + if (c.has(l)) return this.error("select" === t ? r.DUPLICATE_SELECT_ARGUMENT_SELECTOR : r.DUPLICATE_PLURAL_ARGUMENT_SELECTOR, u); + "other" === l && (i = !0), this.bumpSpace(); + var f = this.clonePosition(); + if (!this.bumpIf("{")) return this.error("select" === t ? r.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT : r.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT, M(this.clonePosition(), this.clonePosition())); + var m = this.parseMessage(e + 1, t, n); + if (m.err) return m; + var h = this.tryParseArgumentClose(f); + if (h.err) return h; + s.push([l, { value: m.val, location: M(f, this.clonePosition()) }]), c.add(l), this.bumpSpace(), (l = (a = this.parseIdentifierIfPossible()).value), (u = a.location); + } + return 0 === s.length + ? this.error("select" === t ? r.EXPECT_SELECT_ARGUMENT_SELECTOR : r.EXPECT_PLURAL_ARGUMENT_SELECTOR, M(this.clonePosition(), this.clonePosition())) + : this.requiresOtherClause && !i + ? this.error(r.MISSING_OTHER_CLAUSE, M(this.clonePosition(), this.clonePosition())) + : { val: s, err: null }; + }), + (e.prototype.tryParseDecimalInteger = function (e, t) { + var n = 1, + r = this.clonePosition(); + this.bumpIf("+") || (this.bumpIf("-") && (n = -1)); + for (var o = !1, a = 0; !this.isEOF(); ) { + var i = this.char(); + if (!(i >= 48 && i <= 57)) break; + (o = !0), (a = 10 * a + (i - 48)), this.bump(); + } + var s = M(r, this.clonePosition()); + return o ? (V((a *= n)) ? { val: a, err: null } : this.error(t, s)) : this.error(e, s); + }), + (e.prototype.offset = function () { + return this.position.offset; + }), + (e.prototype.isEOF = function () { + return this.offset() === this.message.length; + }), + (e.prototype.clonePosition = function () { + return { offset: this.position.offset, line: this.position.line, column: this.position.column }; + }), + (e.prototype.char = function () { + var e = this.position.offset; + if (e >= this.message.length) throw Error("out of bound"); + var t = Y(this.message, e); + if (void 0 === t) throw Error("Offset ".concat(e, " is at invalid UTF-16 code unit boundary")); + return t; + }), + (e.prototype.error = function (e, t) { + return { val: null, err: { kind: e, message: this.message, location: t } }; + }), + (e.prototype.bump = function () { + if (!this.isEOF()) { + var e = this.char(); + 10 === e ? ((this.position.line += 1), (this.position.column = 1), (this.position.offset += 1)) : ((this.position.column += 1), (this.position.offset += e < 65536 ? 1 : 2)); + } + }), + (e.prototype.bumpIf = function (e) { + if (W(this.message, e, this.offset())) { + for (var t = 0; t < e.length; t++) this.bump(); + return !0; + } + return !1; + }), + (e.prototype.bumpUntil = function (e) { + var t = this.offset(), + n = this.message.indexOf(e, t); + return n >= 0 ? (this.bumpTo(n), !0) : (this.bumpTo(this.message.length), !1); + }), + (e.prototype.bumpTo = function (e) { + if (this.offset() > e) throw Error("targetOffset ".concat(e, " must be greater than or equal to the current offset ").concat(this.offset())); + for (e = Math.min(e, this.message.length); ; ) { + var t = this.offset(); + if (t === e) break; + if (t > e) throw Error("targetOffset ".concat(e, " is at invalid UTF-16 code unit boundary")); + if ((this.bump(), this.isEOF())) break; + } + }), + (e.prototype.bumpSpace = function () { + for (; !this.isEOF() && ne(this.char()); ) this.bump(); + }), + (e.prototype.peek = function () { + if (this.isEOF()) return null; + var e = this.char(), + t = this.offset(), + n = this.message.charCodeAt(t + (e >= 65536 ? 2 : 1)); + return null != n ? n : null; + }), + e + ); + })(); + function te(e) { + return (e >= 97 && e <= 122) || (e >= 65 && e <= 90); + } + function ne(e) { + return (e >= 9 && e <= 13) || 32 === e || 133 === e || (e >= 8206 && e <= 8207) || 8232 === e || 8233 === e; + } + function re(e) { + return ( + (e >= 33 && e <= 35) || + 36 === e || + (e >= 37 && e <= 39) || + 40 === e || + 41 === e || + 42 === e || + 43 === e || + 44 === e || + 45 === e || + (e >= 46 && e <= 47) || + (e >= 58 && e <= 59) || + (e >= 60 && e <= 62) || + (e >= 63 && e <= 64) || + 91 === e || + 92 === e || + 93 === e || + 94 === e || + 96 === e || + 123 === e || + 124 === e || + 125 === e || + 126 === e || + 161 === e || + (e >= 162 && e <= 165) || + 166 === e || + 167 === e || + 169 === e || + 171 === e || + 172 === e || + 174 === e || + 176 === e || + 177 === e || + 182 === e || + 187 === e || + 191 === e || + 215 === e || + 247 === e || + (e >= 8208 && e <= 8213) || + (e >= 8214 && e <= 8215) || + 8216 === e || + 8217 === e || + 8218 === e || + (e >= 8219 && e <= 8220) || + 8221 === e || + 8222 === e || + 8223 === e || + (e >= 8224 && e <= 8231) || + (e >= 8240 && e <= 8248) || + 8249 === e || + 8250 === e || + (e >= 8251 && e <= 8254) || + (e >= 8257 && e <= 8259) || + 8260 === e || + 8261 === e || + 8262 === e || + (e >= 8263 && e <= 8273) || + 8274 === e || + 8275 === e || + (e >= 8277 && e <= 8286) || + (e >= 8592 && e <= 8596) || + (e >= 8597 && e <= 8601) || + (e >= 8602 && e <= 8603) || + (e >= 8604 && e <= 8607) || + 8608 === e || + (e >= 8609 && e <= 8610) || + 8611 === e || + (e >= 8612 && e <= 8613) || + 8614 === e || + (e >= 8615 && e <= 8621) || + 8622 === e || + (e >= 8623 && e <= 8653) || + (e >= 8654 && e <= 8655) || + (e >= 8656 && e <= 8657) || + 8658 === e || + 8659 === e || + 8660 === e || + (e >= 8661 && e <= 8691) || + (e >= 8692 && e <= 8959) || + (e >= 8960 && e <= 8967) || + 8968 === e || + 8969 === e || + 8970 === e || + 8971 === e || + (e >= 8972 && e <= 8991) || + (e >= 8992 && e <= 8993) || + (e >= 8994 && e <= 9e3) || + 9001 === e || + 9002 === e || + (e >= 9003 && e <= 9083) || + 9084 === e || + (e >= 9085 && e <= 9114) || + (e >= 9115 && e <= 9139) || + (e >= 9140 && e <= 9179) || + (e >= 9180 && e <= 9185) || + (e >= 9186 && e <= 9254) || + (e >= 9255 && e <= 9279) || + (e >= 9280 && e <= 9290) || + (e >= 9291 && e <= 9311) || + (e >= 9472 && e <= 9654) || + 9655 === e || + (e >= 9656 && e <= 9664) || + 9665 === e || + (e >= 9666 && e <= 9719) || + (e >= 9720 && e <= 9727) || + (e >= 9728 && e <= 9838) || + 9839 === e || + (e >= 9840 && e <= 10087) || + 10088 === e || + 10089 === e || + 10090 === e || + 10091 === e || + 10092 === e || + 10093 === e || + 10094 === e || + 10095 === e || + 10096 === e || + 10097 === e || + 10098 === e || + 10099 === e || + 10100 === e || + 10101 === e || + (e >= 10132 && e <= 10175) || + (e >= 10176 && e <= 10180) || + 10181 === e || + 10182 === e || + (e >= 10183 && e <= 10213) || + 10214 === e || + 10215 === e || + 10216 === e || + 10217 === e || + 10218 === e || + 10219 === e || + 10220 === e || + 10221 === e || + 10222 === e || + 10223 === e || + (e >= 10224 && e <= 10239) || + (e >= 10240 && e <= 10495) || + (e >= 10496 && e <= 10626) || + 10627 === e || + 10628 === e || + 10629 === e || + 10630 === e || + 10631 === e || + 10632 === e || + 10633 === e || + 10634 === e || + 10635 === e || + 10636 === e || + 10637 === e || + 10638 === e || + 10639 === e || + 10640 === e || + 10641 === e || + 10642 === e || + 10643 === e || + 10644 === e || + 10645 === e || + 10646 === e || + 10647 === e || + 10648 === e || + (e >= 10649 && e <= 10711) || + 10712 === e || + 10713 === e || + 10714 === e || + 10715 === e || + (e >= 10716 && e <= 10747) || + 10748 === e || + 10749 === e || + (e >= 10750 && e <= 11007) || + (e >= 11008 && e <= 11055) || + (e >= 11056 && e <= 11076) || + (e >= 11077 && e <= 11078) || + (e >= 11079 && e <= 11084) || + (e >= 11085 && e <= 11123) || + (e >= 11124 && e <= 11125) || + (e >= 11126 && e <= 11157) || + 11158 === e || + (e >= 11159 && e <= 11263) || + (e >= 11776 && e <= 11777) || + 11778 === e || + 11779 === e || + 11780 === e || + 11781 === e || + (e >= 11782 && e <= 11784) || + 11785 === e || + 11786 === e || + 11787 === e || + 11788 === e || + 11789 === e || + (e >= 11790 && e <= 11798) || + 11799 === e || + (e >= 11800 && e <= 11801) || + 11802 === e || + 11803 === e || + 11804 === e || + 11805 === e || + (e >= 11806 && e <= 11807) || + 11808 === e || + 11809 === e || + 11810 === e || + 11811 === e || + 11812 === e || + 11813 === e || + 11814 === e || + 11815 === e || + 11816 === e || + 11817 === e || + (e >= 11818 && e <= 11822) || + 11823 === e || + (e >= 11824 && e <= 11833) || + (e >= 11834 && e <= 11835) || + (e >= 11836 && e <= 11839) || + 11840 === e || + 11841 === e || + 11842 === e || + (e >= 11843 && e <= 11855) || + (e >= 11856 && e <= 11857) || + 11858 === e || + (e >= 11859 && e <= 11903) || + (e >= 12289 && e <= 12291) || + 12296 === e || + 12297 === e || + 12298 === e || + 12299 === e || + 12300 === e || + 12301 === e || + 12302 === e || + 12303 === e || + 12304 === e || + 12305 === e || + (e >= 12306 && e <= 12307) || + 12308 === e || + 12309 === e || + 12310 === e || + 12311 === e || + 12312 === e || + 12313 === e || + 12314 === e || + 12315 === e || + 12316 === e || + 12317 === e || + (e >= 12318 && e <= 12319) || + 12320 === e || + 12336 === e || + 64830 === e || + 64831 === e || + (e >= 65093 && e <= 65094) + ); + } + function oe(e) { + e.forEach(function (e) { + if ((delete e.location, p(e) || f(e))) for (var t in e.options) delete e.options[t].location, oe(e.options[t].value); + else (l(e) && v(e.style)) || ((u(e) || d(e)) && y(e.style)) ? delete e.style.location : h(e) && oe(e.children); + }); + } + function ae(e, t) { + void 0 === t && (t = {}), (t = (0, i.__assign)({ shouldParseSkeletons: !0, requiresOtherClause: !0 }, t)); + var n = new ee(e, t).parse(); + if (n.err) { + var o = SyntaxError(r[n.err.kind]); + throw ((o.location = n.err.location), (o.originalMessage = n.err.message), o); + } + return (null == t ? void 0 : t.captureLocation) || oe(n.val), n.val; + } + }, + 28627: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var n = new WeakMap(); + t.default = function (e) { + var t = n.get(e); + return t || ((t = Object.create(null)), n.set(e, t)), t; + }; + }, + 73481: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.Locale = void 0); + var r = n(13795), + o = n(95489), + a = n(26295), + i = (0, r.__importDefault)(n(28627)), + s = ["ca", "co", "hc", "kf", "kn", "nu"], + c = /^[a-z0-9]{3,8}(-[a-z0-9]{3,8})*$/i; + function l(e, t, n, o, a) { + return ( + void 0 === o && (o = []), + a ? { lang: e && "und" !== e ? e : a.lang, script: t || a.script, region: n || a.region, variants: (0, r.__spreadArray)((0, r.__spreadArray)([], o, !0), a.variants, !0) } : { lang: e || "und", script: t, region: n, variants: o } + ); + } + function u(e) { + var t = (0, a.parseUnicodeLocaleId)(e), + n = t.lang, + r = n.lang, + o = n.script, + i = n.region, + s = n.variants; + if (o && i) { + var c = a.likelySubtags[(0, a.emitUnicodeLanguageId)({ lang: r, script: o, region: i, variants: [] })]; + if (c) { + var u = (0, a.parseUnicodeLanguageId)(c); + return (t.lang = l(void 0, void 0, void 0, s, u)), (0, a.emitUnicodeLocaleId)(t); + } + } + if (o) { + var d = a.likelySubtags[(0, a.emitUnicodeLanguageId)({ lang: r, script: o, variants: [] })]; + if (d) { + var p = (0, a.parseUnicodeLanguageId)(d); + return (t.lang = l(void 0, void 0, i, s, p)), (0, a.emitUnicodeLocaleId)(t); + } + } + if (i) { + var f = a.likelySubtags[(0, a.emitUnicodeLanguageId)({ lang: r, region: i, variants: [] })]; + if (f) { + var m = (0, a.parseUnicodeLanguageId)(f); + return (t.lang = l(void 0, o, void 0, s, m)), (0, a.emitUnicodeLocaleId)(t); + } + } + var h = a.likelySubtags[r] || a.likelySubtags[(0, a.emitUnicodeLanguageId)({ lang: "und", script: o, variants: [] })]; + if (!h) throw new Error("No match for addLikelySubtags"); + var v = (0, a.parseUnicodeLanguageId)(h); + return (t.lang = l(void 0, o, i, s, v)), (0, a.emitUnicodeLocaleId)(t); + } + var d = (function () { + function e(t, n) { + if (!(this && this instanceof e ? this.constructor : void 0)) throw new TypeError("Intl.Locale must be called with 'new'"); + var s, + l = e.relevantExtensionKeys, + u = ["initializedLocale", "locale", "calendar", "collation", "hourCycle", "numberingSystem"]; + if ((l.indexOf("kf") > -1 && u.push("caseFirst"), l.indexOf("kn") > -1 && u.push("numeric"), void 0 === t)) throw new TypeError("First argument to Intl.Locale constructor can't be empty or missing"); + if ("string" != typeof t && "object" != typeof t) throw new TypeError("tag must be a string or object"); + (t = "object" == typeof t && (s = (0, i.default)(t)) && s.initializedLocale ? s.locale : t.toString()), (s = (0, i.default)(this)); + var d = (0, o.CoerceOptionsToObject)(n); + t = (function (e, t) { + (0, o.invariant)("string" == typeof e, "language tag must be a string"), (0, o.invariant)((0, a.isStructurallyValidLanguageTag)(e), "malformed language tag", RangeError); + var n = (0, o.GetOption)(t, "language", "string", void 0, void 0); + void 0 !== n && (0, o.invariant)((0, a.isUnicodeLanguageSubtag)(n), "Malformed unicode_language_subtag", RangeError); + var i = (0, o.GetOption)(t, "script", "string", void 0, void 0); + void 0 !== i && (0, o.invariant)((0, a.isUnicodeScriptSubtag)(i), "Malformed unicode_script_subtag", RangeError); + var s = (0, o.GetOption)(t, "region", "string", void 0, void 0); + void 0 !== s && (0, o.invariant)((0, a.isUnicodeRegionSubtag)(s), "Malformed unicode_region_subtag", RangeError); + var c = (0, a.parseUnicodeLanguageId)(e); + return ( + void 0 !== n && (c.lang = n), + void 0 !== i && (c.script = i), + void 0 !== s && (c.region = s), + Intl.getCanonicalLocales((0, a.emitUnicodeLocaleId)((0, r.__assign)((0, r.__assign)({}, (0, a.parseUnicodeLocaleId)(e)), { lang: c })))[0] + ); + })(t, d); + var p = Object.create(null), + f = (0, o.GetOption)(d, "calendar", "string", void 0, void 0); + if (void 0 !== f && !c.test(f)) throw new RangeError("invalid calendar"); + p.ca = f; + var m = (0, o.GetOption)(d, "collation", "string", void 0, void 0); + if (void 0 !== m && !c.test(m)) throw new RangeError("invalid collation"); + p.co = m; + var h = (0, o.GetOption)(d, "hourCycle", "string", ["h11", "h12", "h23", "h24"], void 0); + p.hc = h; + var v = (0, o.GetOption)(d, "caseFirst", "string", ["upper", "lower", "false"], void 0); + p.kf = v; + var y, + g = (0, o.GetOption)(d, "numeric", "boolean", void 0, void 0); + void 0 !== g && (y = String(g)), (p.kn = y); + var b = (0, o.GetOption)(d, "numberingSystem", "string", void 0, void 0); + if (void 0 !== b && !c.test(b)) throw new RangeError("Invalid numberingSystem"); + p.nu = b; + var E = (function (e, t, n) { + for (var r, i = [], s = (0, a.parseUnicodeLocaleId)(e), c = 0, l = s.extensions; c < l.length; c++) { + var u = l[c]; + "u" === u.type && ((r = u), Array.isArray(u.keywords) && (i = u.keywords)); + } + for (var d = Object.create(null), p = 0, f = n; p < f.length; p++) { + for (var m = f[p], h = void 0, v = void 0, y = 0, g = i; y < g.length; y++) { + var b = g[y]; + b[0] === m && (h = (v = b)[1]); + } + (0, o.invariant)(m in t, "".concat(m, " must be in options")); + var E = t[m]; + void 0 !== E && ((0, o.invariant)("string" == typeof E, "Value for ".concat(m, " must be a string")), (h = E), v ? (v[1] = h) : i.push([m, h])), (d[m] = h); + } + return r ? (r.keywords = i) : i.length && s.extensions.push({ type: "u", keywords: i, attributes: [] }), (d.locale = Intl.getCanonicalLocales((0, a.emitUnicodeLocaleId)(s))[0]), d; + })(t, p, l); + (s.locale = E.locale), + (s.calendar = E.ca), + (s.collation = E.co), + (s.hourCycle = E.hc), + l.indexOf("kf") > -1 && (s.caseFirst = E.kf), + l.indexOf("kn") > -1 && (s.numeric = (0, o.SameValue)(E.kn, "true")), + (s.numberingSystem = E.nu); + } + return ( + (e.prototype.maximize = function () { + var t = (0, i.default)(this).locale; + try { + return new e(u(t)); + } catch (n) { + return new e(t); + } + }), + (e.prototype.minimize = function () { + var t = (0, i.default)(this).locale; + try { + return new e( + (function (e) { + var t = u(e); + if (!t) return e; + t = (0, a.emitUnicodeLanguageId)((0, r.__assign)((0, r.__assign)({}, (0, a.parseUnicodeLanguageId)(t)), { variants: [] })); + var n = (0, a.parseUnicodeLocaleId)(e), + o = n.lang, + i = o.lang, + s = o.script, + c = o.region, + d = o.variants; + return u((0, a.emitUnicodeLanguageId)({ lang: i, variants: [] })) === t + ? (0, a.emitUnicodeLocaleId)((0, r.__assign)((0, r.__assign)({}, n), { lang: l(i, void 0, void 0, d) })) + : c && u((0, a.emitUnicodeLanguageId)({ lang: i, region: c, variants: [] })) === t + ? (0, a.emitUnicodeLocaleId)((0, r.__assign)((0, r.__assign)({}, n), { lang: l(i, void 0, c, d) })) + : s && u((0, a.emitUnicodeLanguageId)({ lang: i, script: s, variants: [] })) === t + ? (0, a.emitUnicodeLocaleId)((0, r.__assign)((0, r.__assign)({}, n), { lang: l(i, s, void 0, d) })) + : e; + })(t) + ); + } catch (n) { + return new e(t); + } + }), + (e.prototype.toString = function () { + return (0, i.default)(this).locale; + }), + Object.defineProperty(e.prototype, "baseName", { + get: function () { + var e = (0, i.default)(this).locale; + return (0, a.emitUnicodeLanguageId)((0, a.parseUnicodeLanguageId)(e)); + }, + enumerable: !1, + configurable: !0, + }), + Object.defineProperty(e.prototype, "calendar", { + get: function () { + return (0, i.default)(this).calendar; + }, + enumerable: !1, + configurable: !0, + }), + Object.defineProperty(e.prototype, "collation", { + get: function () { + return (0, i.default)(this).collation; + }, + enumerable: !1, + configurable: !0, + }), + Object.defineProperty(e.prototype, "hourCycle", { + get: function () { + return (0, i.default)(this).hourCycle; + }, + enumerable: !1, + configurable: !0, + }), + Object.defineProperty(e.prototype, "caseFirst", { + get: function () { + return (0, i.default)(this).caseFirst; + }, + enumerable: !1, + configurable: !0, + }), + Object.defineProperty(e.prototype, "numeric", { + get: function () { + return (0, i.default)(this).numeric; + }, + enumerable: !1, + configurable: !0, + }), + Object.defineProperty(e.prototype, "numberingSystem", { + get: function () { + return (0, i.default)(this).numberingSystem; + }, + enumerable: !1, + configurable: !0, + }), + Object.defineProperty(e.prototype, "language", { + get: function () { + var e = (0, i.default)(this).locale; + return (0, a.parseUnicodeLanguageId)(e).lang; + }, + enumerable: !1, + configurable: !0, + }), + Object.defineProperty(e.prototype, "script", { + get: function () { + var e = (0, i.default)(this).locale; + return (0, a.parseUnicodeLanguageId)(e).script; + }, + enumerable: !1, + configurable: !0, + }), + Object.defineProperty(e.prototype, "region", { + get: function () { + var e = (0, i.default)(this).locale; + return (0, a.parseUnicodeLanguageId)(e).region; + }, + enumerable: !1, + configurable: !0, + }), + (e.relevantExtensionKeys = s), + e + ); + })(); + t.Locale = d; + try { + "undefined" != typeof Symbol && Object.defineProperty(d.prototype, Symbol.toStringTag, { value: "Intl.Locale", writable: !1, enumerable: !1, configurable: !0 }), + Object.defineProperty(d.prototype.constructor, "length", { value: 1, writable: !1, enumerable: !1, configurable: !0 }); + } catch (e) {} + t.default = d; + }, + 42059: (e, t, n) => { + "use strict"; + var r = n(73481); + (0, n(66040).shouldPolyfill)() && Object.defineProperty(Intl, "Locale", { value: r.Locale, writable: !0, enumerable: !1, configurable: !0 }); + }, + 66040: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.shouldPolyfill = void 0), + (t.shouldPolyfill = function () { + return ( + !("Locale" in Intl) || + (function () { + try { + return "x-private" === new Intl.Locale("und-x-private").toString(); + } catch (e) { + return !0; + } + })() + ); + }); + }, + 61395: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.BestAvailableLocale = void 0), + (t.BestAvailableLocale = function (e, t) { + for (var n = t; ; ) { + if (e.has(n)) return n; + var r = n.lastIndexOf("-"); + if (!~r) return; + r >= 2 && "-" === n[r - 2] && (r -= 2), (n = n.slice(0, r)); + } + }); + }, + 36343: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.BestFitMatcher = void 0); + var r = n(61395), + o = n(51417); + t.BestFitMatcher = function (e, t, n) { + var a, + i = {}, + s = {}, + c = {}, + l = new Set(); + e.forEach(function (e) { + var t = new Intl.Locale(e).minimize().toString(), + n = Intl.getCanonicalLocales(e)[0] || e; + (i[t] = e), (s[e] = e), (c[n] = e), l.add(t), l.add(e), l.add(n); + }); + for (var u = 0, d = t; u < d.length; u++) { + var p = d[u]; + if (a) break; + var f = p.replace(o.UNICODE_EXTENSION_SEQUENCE_REGEX, ""); + if (e.has(f)) { + a = f; + break; + } + if (l.has(f)) { + a = f; + break; + } + var m = new Intl.Locale(f), + h = m.maximize().toString(), + v = m.minimize().toString(); + if (l.has(v)) { + a = v; + break; + } + a = (0, r.BestAvailableLocale)(l, h); + } + return a ? { locale: s[a] || c[a] || i[a] || a } : { locale: n() }; + }; + }, + 64901: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.CanonicalizeLocaleList = void 0), + (t.CanonicalizeLocaleList = function (e) { + return Intl.getCanonicalLocales(e); + }); + }, + 40946: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.LookupMatcher = void 0); + var r = n(51417), + o = n(61395); + t.LookupMatcher = function (e, t, n) { + for (var a = { locale: "" }, i = 0, s = t; i < s.length; i++) { + var c = s[i], + l = c.replace(r.UNICODE_EXTENSION_SEQUENCE_REGEX, ""), + u = (0, o.BestAvailableLocale)(e, l); + if (u) return (a.locale = u), c !== l && (a.extension = c.slice(l.length + 1, c.length)), a; + } + return (a.locale = n()), a; + }; + }, + 12453: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.LookupSupportedLocales = void 0); + var r = n(51417), + o = n(61395); + t.LookupSupportedLocales = function (e, t) { + for (var n = [], a = 0, i = t; a < i.length; a++) { + var s = i[a].replace(r.UNICODE_EXTENSION_SEQUENCE_REGEX, ""), + c = (0, o.BestAvailableLocale)(e, s); + c && n.push(c); + } + return n; + }; + }, + 66991: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.ResolveLocale = void 0); + var r = n(40946), + o = n(36343), + a = n(51417), + i = n(99446); + t.ResolveLocale = function (e, t, n, s, c, l) { + for (var u, d = (u = "lookup" === n.localeMatcher ? (0, r.LookupMatcher)(e, t, l) : (0, o.BestFitMatcher)(e, t, l)).locale, p = { locale: "", dataLocale: d }, f = "-u", m = 0, h = s; m < h.length; m++) { + var v = h[m]; + (0, a.invariant)(d in c, "Missing locale data for ".concat(d)); + var y = c[d]; + (0, a.invariant)("object" == typeof y && null !== y, "locale data ".concat(v, " must be an object")); + var g = y[v]; + (0, a.invariant)(Array.isArray(g), "keyLocaleData for ".concat(v, " must be an array")); + var b = g[0]; + (0, a.invariant)("string" == typeof b || null === b, "value must be string or null but got ".concat(typeof b, " in key ").concat(v)); + var E = ""; + if (u.extension) { + var D = (0, i.UnicodeExtensionValue)(u.extension, v); + void 0 !== D && ("" !== D ? ~g.indexOf(D) && ((b = D), (E = "-".concat(v, "-").concat(b))) : ~D.indexOf("true") && ((b = "true"), (E = "-".concat(v)))); + } + if (v in n) { + var C = n[v]; + (0, a.invariant)("string" == typeof C || null == C, "optionsValue must be String, Undefined or Null"), ~g.indexOf(C) && C !== b && ((b = C), (E = "")); + } + (p[v] = b), (f += E); + } + if (f.length > 2) { + var w = d.indexOf("-x-"); + if (-1 === w) d += f; + else { + var S = d.slice(0, w), + A = d.slice(w, d.length); + d = S + f + A; + } + d = Intl.getCanonicalLocales(d)[0]; + } + return (p.locale = d), p; + }; + }, + 99446: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.UnicodeExtensionValue = void 0); + var r = n(51417); + t.UnicodeExtensionValue = function (e, t) { + (0, r.invariant)(2 === t.length, "key must have 2 elements"); + var n = e.length, + o = "-".concat(t, "-"), + a = e.indexOf(o); + if (-1 !== a) { + for (var i = a + 4, s = i, c = i, l = !1; !l; ) { + var u = e.indexOf("-", c); + 2 == (-1 === u ? n - c : u - c) ? (l = !0) : -1 === u ? ((s = n), (l = !0)) : ((s = u), (c = u + 1)); + } + return e.slice(i, s); + } + if (((o = "-".concat(t)), -1 !== (a = e.indexOf(o)) && a + 3 === n)) return ""; + }; + }, + 51417: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.invariant = t.UNICODE_EXTENSION_SEQUENCE_REGEX = void 0), + (t.UNICODE_EXTENSION_SEQUENCE_REGEX = /-u(?:-[0-9a-z]{2,8})+/gi), + (t.invariant = function (e, t, n) { + if ((void 0 === n && (n = Error), !e)) throw new n(t); + }); + }, + 14871: (e, t, n) => { + "use strict"; + t.f = t.Tm = void 0; + n(64901), n(66991); + var r = n(12453); + Object.defineProperty(t, "Tm", { + enumerable: !0, + get: function () { + return r.LookupSupportedLocales; + }, + }); + var o = n(66991); + Object.defineProperty(t, "f", { + enumerable: !0, + get: function () { + return o.ResolveLocale; + }, + }); + }, + 56677: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var n = new WeakMap(); + t.default = function (e) { + var t = n.get(e); + return t || ((t = Object.create(null)), n.set(e, t)), t; + }; + }, + 62553: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = n(13795), + o = n(50044), + a = r.__importDefault(n(56677)), + i = (function () { + function e(t, n) { + if (!(this && this instanceof e ? this.constructor : void 0)) throw new TypeError("Intl.RelativeTimeFormat must be called with 'new'"); + return o.InitializeRelativeTimeFormat(this, t, n, { + getInternalSlots: a.default, + availableLocales: e.availableLocales, + relevantExtensionKeys: e.relevantExtensionKeys, + localeData: e.localeData, + getDefaultLocale: e.getDefaultLocale, + }); + } + return ( + (e.prototype.format = function (e, t) { + if ("object" != typeof this) throw new TypeError("format was called on a non-object"); + if (!a.default(this).initializedRelativeTimeFormat) throw new TypeError("format was called on a invalid context"); + return o + .PartitionRelativeTimePattern(this, Number(e), o.ToString(t), { getInternalSlots: a.default }) + .map(function (e) { + return e.value; + }) + .join(""); + }), + (e.prototype.formatToParts = function (e, t) { + if ("object" != typeof this) throw new TypeError("formatToParts was called on a non-object"); + if (!a.default(this).initializedRelativeTimeFormat) throw new TypeError("formatToParts was called on a invalid context"); + return o.PartitionRelativeTimePattern(this, Number(e), o.ToString(t), { getInternalSlots: a.default }); + }), + (e.prototype.resolvedOptions = function () { + if ("object" != typeof this) throw new TypeError("resolvedOptions was called on a non-object"); + var e = a.default(this); + if (!e.initializedRelativeTimeFormat) throw new TypeError("resolvedOptions was called on a invalid context"); + return { locale: e.locale, style: e.style, numeric: e.numeric, numberingSystem: e.numberingSystem }; + }), + (e.supportedLocalesOf = function (t, n) { + return o.SupportedLocales(e.availableLocales, o.CanonicalizeLocaleList(t), n); + }), + (e.__addLocaleData = function () { + for (var t = [], n = 0; n < arguments.length; n++) t[n] = arguments[n]; + for (var r = 0, o = t; r < o.length; r++) { + var a = o[r], + i = a.data, + s = a.locale, + c = new Intl.Locale(s).minimize().toString(); + (e.localeData[s] = e.localeData[c] = i), e.availableLocales.add(c), e.availableLocales.add(s), e.__defaultLocale || (e.__defaultLocale = c); + } + }), + (e.getDefaultLocale = function () { + return e.__defaultLocale; + }), + (e.localeData = {}), + (e.availableLocales = new Set()), + (e.__defaultLocale = ""), + (e.relevantExtensionKeys = ["nu"]), + (e.polyfilled = !0), + e + ); + })(); + t.default = i; + try { + "undefined" != typeof Symbol && Object.defineProperty(i.prototype, Symbol.toStringTag, { value: "Intl.RelativeTimeFormat", writable: !1, enumerable: !1, configurable: !0 }), + Object.defineProperty(i.prototype.constructor, "length", { value: 0, writable: !1, enumerable: !1, configurable: !0 }), + Object.defineProperty(i.supportedLocalesOf, "length", { value: 1, writable: !1, enumerable: !1, configurable: !0 }); + } catch (e) {} + }, + 90739: () => { + Intl.RelativeTimeFormat && + "function" == typeof Intl.RelativeTimeFormat.__addLocaleData && + Intl.RelativeTimeFormat.__addLocaleData({ + data: { + nu: ["latn"], + year: { 0: "this year", 1: "next year", future: { one: "in {0} year", other: "in {0} years" }, past: { one: "{0} year ago", other: "{0} years ago" }, "-1": "last year" }, + "year-short": { 0: "this yr.", 1: "next yr.", future: { one: "in {0} yr.", other: "in {0} yr." }, past: { one: "{0} yr. ago", other: "{0} yr. ago" }, "-1": "last yr." }, + "year-narrow": { 0: "this yr.", 1: "next yr.", future: { one: "in {0} yr.", other: "in {0} yr." }, past: { one: "{0} yr. ago", other: "{0} yr. ago" }, "-1": "last yr." }, + quarter: { 0: "this quarter", 1: "next quarter", future: { one: "in {0} quarter", other: "in {0} quarters" }, past: { one: "{0} quarter ago", other: "{0} quarters ago" }, "-1": "last quarter" }, + "quarter-short": { 0: "this qtr.", 1: "next qtr.", future: { one: "in {0} qtr.", other: "in {0} qtrs." }, past: { one: "{0} qtr. ago", other: "{0} qtrs. ago" }, "-1": "last qtr." }, + "quarter-narrow": { 0: "this qtr.", 1: "next qtr.", future: { one: "in {0} qtr.", other: "in {0} qtrs." }, past: { one: "{0} qtr. ago", other: "{0} qtrs. ago" }, "-1": "last qtr." }, + month: { 0: "this month", 1: "next month", future: { one: "in {0} month", other: "in {0} months" }, past: { one: "{0} month ago", other: "{0} months ago" }, "-1": "last month" }, + "month-short": { 0: "this mo.", 1: "next mo.", future: { one: "in {0} mo.", other: "in {0} mo." }, past: { one: "{0} mo. ago", other: "{0} mo. ago" }, "-1": "last mo." }, + "month-narrow": { 0: "this mo.", 1: "next mo.", future: { one: "in {0} mo.", other: "in {0} mo." }, past: { one: "{0} mo. ago", other: "{0} mo. ago" }, "-1": "last mo." }, + week: { 0: "this week", 1: "next week", future: { one: "in {0} week", other: "in {0} weeks" }, past: { one: "{0} week ago", other: "{0} weeks ago" }, "-1": "last week" }, + "week-short": { 0: "this wk.", 1: "next wk.", future: { one: "in {0} wk.", other: "in {0} wk." }, past: { one: "{0} wk. ago", other: "{0} wk. ago" }, "-1": "last wk." }, + "week-narrow": { 0: "this wk.", 1: "next wk.", future: { one: "in {0} wk.", other: "in {0} wk." }, past: { one: "{0} wk. ago", other: "{0} wk. ago" }, "-1": "last wk." }, + day: { 0: "today", 1: "tomorrow", future: { one: "in {0} day", other: "in {0} days" }, past: { one: "{0} day ago", other: "{0} days ago" }, "-1": "yesterday" }, + "day-short": { 0: "today", 1: "tomorrow", future: { one: "in {0} day", other: "in {0} days" }, past: { one: "{0} day ago", other: "{0} days ago" }, "-1": "yesterday" }, + "day-narrow": { 0: "today", 1: "tomorrow", future: { one: "in {0} day", other: "in {0} days" }, past: { one: "{0} day ago", other: "{0} days ago" }, "-1": "yesterday" }, + hour: { 0: "this hour", future: { one: "in {0} hour", other: "in {0} hours" }, past: { one: "{0} hour ago", other: "{0} hours ago" } }, + "hour-short": { 0: "this hour", future: { one: "in {0} hr.", other: "in {0} hr." }, past: { one: "{0} hr. ago", other: "{0} hr. ago" } }, + "hour-narrow": { 0: "this hour", future: { one: "in {0} hr.", other: "in {0} hr." }, past: { one: "{0} hr. ago", other: "{0} hr. ago" } }, + minute: { 0: "this minute", future: { one: "in {0} minute", other: "in {0} minutes" }, past: { one: "{0} minute ago", other: "{0} minutes ago" } }, + "minute-short": { 0: "this minute", future: { one: "in {0} min.", other: "in {0} min." }, past: { one: "{0} min. ago", other: "{0} min. ago" } }, + "minute-narrow": { 0: "this minute", future: { one: "in {0} min.", other: "in {0} min." }, past: { one: "{0} min. ago", other: "{0} min. ago" } }, + second: { 0: "now", future: { one: "in {0} second", other: "in {0} seconds" }, past: { one: "{0} second ago", other: "{0} seconds ago" } }, + "second-short": { 0: "now", future: { one: "in {0} sec.", other: "in {0} sec." }, past: { one: "{0} sec. ago", other: "{0} sec. ago" } }, + "second-narrow": { 0: "now", future: { one: "in {0} sec.", other: "in {0} sec." }, past: { one: "{0} sec. ago", other: "{0} sec. ago" } }, + }, + locale: "en", + }); + }, + 39514: (e, t, n) => { + "use strict"; + function r(e) { + if ("symbol" == typeof e) throw TypeError("Cannot convert a Symbol value to a string"); + return String(e); + } + function o(e) { + if (void 0 === e) return NaN; + if (null === e) return 0; + if ("boolean" == typeof e) return e ? 1 : 0; + if ("number" == typeof e) return e; + if ("symbol" == typeof e || "bigint" == typeof e) throw new TypeError("Cannot convert symbol/bigint to number"); + return Number(e); + } + function a(e) { + return isFinite(e) + ? Math.abs(e) > 8640000000000001 + ? NaN + : (function (e) { + var t = o(e); + if (isNaN(t) || s(t, -0)) return 0; + if (isFinite(t)) return t; + var n = Math.floor(Math.abs(t)); + return t < 0 && (n = -n), s(n, -0) ? 0 : n; + })(e) + : NaN; + } + function i(e) { + if (null == e) throw new TypeError("undefined/null cannot be converted to object"); + return Object(e); + } + function s(e, t) { + return Object.is ? Object.is(e, t) : e === t ? 0 !== e || 1 / e == 1 / t : e != e && t != t; + } + function c(e) { + return new Array(e); + } + function l(e, t) { + return Object.prototype.hasOwnProperty.call(e, t); + } + function u(e) { + return null === e + ? "Null" + : void 0 === e + ? "Undefined" + : "function" == typeof e || "object" == typeof e + ? "Object" + : "number" == typeof e + ? "Number" + : "boolean" == typeof e + ? "Boolean" + : "string" == typeof e + ? "String" + : "symbol" == typeof e + ? "Symbol" + : "bigint" == typeof e + ? "BigInt" + : void 0; + } + n.d(t, { + $i: () => E, + CU: () => o, + Dy: () => u, + J1: () => D, + Jc: () => f, + Ml: () => r, + My: () => g, + QP: () => s, + R2: () => x, + TA: () => i, + U6: () => c, + VR: () => m, + Vg: () => N, + XB: () => C, + XH: () => a, + Zq: () => I, + gL: () => h, + n7: () => y, + oD: () => b, + py: () => O, + rf: () => v, + uY: () => l, + xk: () => F, + }); + var d = 864e5; + function p(e, t) { + return e - Math.floor(e / t) * t; + } + function f(e) { + return Math.floor(e / d); + } + function m(e) { + return p(f(e) + 4, 7); + } + function h(e) { + return Date.UTC(e, 0) / d; + } + function v(e) { + return Date.UTC(e, 0); + } + function y(e) { + return new Date(e).getUTCFullYear(); + } + function g(e) { + return e % 4 != 0 ? 365 : e % 100 != 0 ? 366 : e % 400 != 0 ? 365 : 366; + } + function b(e) { + return f(e) - h(y(e)); + } + function E(e) { + return 365 === g(y(e)) ? 0 : 1; + } + function D(e) { + var t = b(e), + n = E(e); + if (t >= 0 && t < 31) return 0; + if (t < 59 + n) return 1; + if (t < 90 + n) return 2; + if (t < 120 + n) return 3; + if (t < 151 + n) return 4; + if (t < 181 + n) return 5; + if (t < 212 + n) return 6; + if (t < 243 + n) return 7; + if (t < 273 + n) return 8; + if (t < 304 + n) return 9; + if (t < 334 + n) return 10; + if (t < 365 + n) return 11; + throw new Error("Invalid time"); + } + function C(e) { + var t = b(e), + n = D(e), + r = E(e); + if (0 === n) return t + 1; + if (1 === n) return t - 30; + if (2 === n) return t - 58 - r; + if (3 === n) return t - 89 - r; + if (4 === n) return t - 119 - r; + if (5 === n) return t - 150 - r; + if (6 === n) return t - 180 - r; + if (7 === n) return t - 211 - r; + if (8 === n) return t - 242 - r; + if (9 === n) return t - 272 - r; + if (10 === n) return t - 303 - r; + if (11 === n) return t - 333 - r; + throw new Error("Invalid time"); + } + var w = 24, + S = 60, + A = 60, + k = 1e3, + _ = k * A, + T = _ * S; + function I(e) { + return p(Math.floor(e / T), w); + } + function O(e) { + return p(Math.floor(e / _), S); + } + function F(e) { + return p(Math.floor(e / k), A); + } + function x(e, t, n) { + if ("function" != typeof e) return !1; + if (null == n ? void 0 : n.boundTargetFunction) return t instanceof (null == n ? void 0 : n.boundTargetFunction); + if ("object" != typeof t) return !1; + var r = e.prototype; + if ("object" != typeof r) throw new TypeError("OrdinaryHasInstance called on an object with an invalid prototype property."); + return Object.prototype.isPrototypeOf.call(r, t); + } + function N(e) { + return p(e, k); + } + }, + 33305: (e, t, n) => { + "use strict"; + function r(e, t) { + for (var n = t; ; ) { + if (e.has(n)) return n; + var r = n.lastIndexOf("-"); + if (!~r) return; + r >= 2 && "-" === n[r - 2] && (r -= 2), (n = n.slice(0, r)); + } + } + n.d(t, { t: () => r }); + }, + 94855: (e, t, n) => { + "use strict"; + function r(e) { + return Intl.getCanonicalLocales(e); + } + n.d(t, { L: () => r }); + }, + 11679: (e, t, n) => { + "use strict"; + function r(e, t) { + var n = t.tzData, + r = t.uppercaseLinks, + o = e.toUpperCase(), + a = Object.keys(n).reduce(function (e, t) { + return (e[t.toUpperCase()] = t), e; + }, {}), + i = r[o] || a[o]; + return "Etc/UTC" === i || "Etc/GMT" === i ? "UTC" : i; + } + n.d(t, { a: () => r }); + }, + 73257: (e, t, n) => { + "use strict"; + n.d(t, { U: () => o }); + var r = n(39514); + function o(e) { + return void 0 === e ? Object.create(null) : (0, r.TA)(e); + } + }, + 56900: (e, t, n) => { + "use strict"; + n.d(t, { k: () => i }); + var r = n(13795), + o = n(71089), + a = n(82316); + function i(e, t) { + var n = -1 / 0, + i = t[0]; + (0, o.kG)(Array.isArray(t), "formats should be a list of things"); + for (var s = 0, c = t; s < c.length; s++) { + for (var l = c[s], u = 0, d = 0, p = a.ll; d < p.length; d++) { + var f = p[d], + m = e[f], + h = l[f]; + if (void 0 === m && void 0 !== h) u -= a.wQ; + else if (void 0 !== m && void 0 === h) u -= a.H0; + else if (m !== h) { + var v = void 0, + y = (v = "fractionalSecondDigits" === f ? [1, 2, 3] : ["2-digit", "numeric", "narrow", "short", "long"]).indexOf(m), + g = v.indexOf(h), + b = Math.max(-2, Math.min(g - y, 2)); + 2 === b ? (u -= a.Nt) : 1 === b ? (u -= a.Q7) : -1 === b ? (u -= a.bu) : -2 === b && (u -= a.N4); + } + } + u > n && ((n = u), (i = l)); + } + return (0, r.__assign)({}, i); + } + }, + 57529: (e, t, n) => { + "use strict"; + n.d(t, { S: () => l }); + var r = n(13795), + o = n(71089), + a = n(82316), + i = n(10015); + function s(e) { + return "numeric" === e || "2-digit" === e; + } + function c(e, t) { + var n = 0; + e.hour12 && !t.hour12 ? (n -= a.H0) : !e.hour12 && t.hour12 && (n -= a.wQ); + for (var r = 0, o = a.ll; r < o.length; r++) { + var i = o[r], + c = e[i], + l = t[i]; + if (void 0 === c && void 0 !== l) n -= a.wQ; + else if (void 0 !== c && void 0 === l) n -= a.H0; + else if (c !== l) + if (s(c) !== s(l)) n -= a.zY; + else { + var u = ["2-digit", "numeric", "narrow", "short", "long"], + d = u.indexOf(c), + p = u.indexOf(l), + f = Math.max(-2, Math.min(p - d, 2)); + 2 === f ? (n -= a.Nt) : 1 === f ? (n -= a.Q7) : -1 === f ? (n -= a.bu) : -2 === f && (n -= a.N4); + } + } + return n; + } + function l(e, t) { + var n = -1 / 0, + a = t[0]; + (0, o.kG)(Array.isArray(t), "formats should be a list of things"); + for (var l = 0, u = t; l < u.length; l++) { + var d = u[l], + p = c(e, d); + p > n && ((n = p), (a = d)); + } + var f = (0, r.__assign)({}, a), + m = { rawPattern: a.rawPattern }; + for (var h in ((0, i.aK)(a.rawPattern, m), f)) { + var v = f[h], + y = m[h], + g = e[h]; + "minute" !== h && "second" !== h && g && ((s(y) && !s(g)) || (v !== g && (m[h] = g))); + } + return (m.pattern = f.pattern), (m.pattern12 = f.pattern12), (m.skeleton = f.skeleton), (m.rangePatterns = f.rangePatterns), (m.rangePatterns12 = f.rangePatterns12), m; + } + }, + 4603: (e, t, n) => { + "use strict"; + n.d(t, { R: () => o }); + var r = n(71089); + function o(e, t, n) { + var o, a; + if ( + (void 0 !== t && ((0, r.kG)("full" === t || "long" === t || "medium" === t || "short" === t, "invalid timeStyle"), (a = n.timeFormat[t])), + void 0 !== e && ((0, r.kG)("full" === e || "long" === e || "medium" === e || "short" === e, "invalid dateStyle"), (o = n.dateFormat[e])), + void 0 !== e && void 0 !== t) + ) { + var i = {}; + for (var s in o) "pattern" !== s && (i[s] = o[s]); + for (var s in a) "pattern" !== s && "pattern12" !== s && (i[s] = a[s]); + var c = n.dateTimeFormat[e], + l = c.replace("{0}", a.pattern).replace("{1}", o.pattern); + if (((i.pattern = l), "pattern12" in a)) { + var u = c.replace("{0}", a.pattern12).replace("{1}", o.pattern); + i.pattern12 = u; + } + return i; + } + return void 0 !== t ? a : ((0, r.kG)(void 0 !== e, "dateStyle should not be undefined"), o); + } + }, + 45902: (e, t, n) => { + "use strict"; + n.d(t, { J: () => o }); + var r = n(87147); + function o(e, t, n) { + for (var o = "", a = 0, i = (0, r.b)(e, t, n); a < i.length; a++) o += i[a].value; + return o; + } + }, + 88271: (e, t, n) => { + "use strict"; + n.d(t, { T: () => c }); + var r = n(82316), + o = n(87054), + a = n(39514); + function i(e) { + return e < 10 ? "0" + e : String(e); + } + function s(e, t, n, r) { + var o = Math.floor(n / 6e4), + a = Math.abs(o) % 60, + s = Math.floor(Math.abs(o) / 60), + c = t.split(";"), + l = c[0], + u = c[1], + d = "", + p = n < 0 ? u : l; + return ( + "long" === r ? (d = p.replace("HH", i(s)).replace("H", String(s)).replace("mm", i(a)).replace("m", String(a))) : (a || s) && (a || (p = p.replace(/:?m+/, "")), (d = p.replace(/H+/, String(s)).replace(/m+/, String(a)))), + e.replace("{0}", d) + ); + } + function c(e, t, n, i) { + var c = i.getInternalSlots, + l = i.localeData, + u = i.getDefaultTimeZone, + d = i.tzData; + n = (0, a.XH)(n); + var p = c(e), + f = l[p.dataLocale], + m = p.locale, + h = Object.create(null); + h.useGrouping = !1; + var v = new Intl.NumberFormat(m, h), + y = Object.create(null); + (y.minimumIntegerDigits = 2), (y.useGrouping = !1); + var g, + b = new Intl.NumberFormat(m, y), + E = p.fractionalSecondDigits; + if (void 0 !== E) { + var D = Object.create(null); + (D.minimumIntegerDigits = E), (D.useGrouping = !1), (g = new Intl.NumberFormat(m, D)); + } + for (var C = (0, o.K)(n, p.calendar, p.timeZone, { tzData: d }), w = [], S = 0, A = t; S < A.length; S++) { + var k = A[S], + _ = k.type; + if ("literal" === _) w.push({ type: "literal", value: k.value }); + else if ("fractionalSecondDigits" === _) { + var T = Math.floor(C.millisecond * Math.pow(10, (E || 0) - 3)); + w.push({ type: "fractionalSecond", value: g.format(T) }); + } else if (r.ll.indexOf(_) > -1) { + var I = "", + O = p[_]; + (T = C[_]), "year" === _ && T <= 0 && (T = 1 - T), "month" === _ && T++; + var F = p.hourCycle; + if (("hour" !== _ || ("h11" !== F && "h12" !== F) || (0 == (T %= 12) && "h12" === F && (T = 12)), "hour" === _ && "h24" === F && 0 === T && (T = 24), "numeric" === O)) I = v.format(T); + else if ("2-digit" === O) (I = b.format(T)).length > 2 && (I = I.slice(I.length - 2, I.length)); + else if ("narrow" === O || "short" === O || "long" === O) + if ("era" === _) I = f[_][O][T]; + else if ("timeZoneName" === _) { + var x = f.timeZoneName, + N = f.gmtFormat, + R = f.hourFormat, + L = x[p.timeZone || u()]; + I = L && L[O] ? L[O][+C.inDST] : s(N, R, C.timeZoneOffset, O); + } else I = "month" === _ ? f.month[O][T - 1] : f[_][O][T]; + w.push({ type: _, value: I }); + } else + "ampm" === _ + ? ((I = void 0), (I = (T = C.hour) > 11 ? f.pm : f.am), w.push({ type: "dayPeriod", value: I })) + : "relatedYear" === _ + ? ((T = C.relatedYear), (I = v.format(T)), w.push({ type: "relatedYear", value: I })) + : "yearName" === _ && ((T = C.yearName), (I = v.format(T)), w.push({ type: "yearName", value: I })); + } + return w; + } + }, + 39366: (e, t, n) => { + "use strict"; + n.d(t, { a: () => o }); + var r = n(59736); + function o(e, t, n, o) { + for (var a = "", i = 0, s = (0, r.l)(e, t, n, o); i < s.length; i++) a += s[i].value; + return a; + } + }, + 45310: (e, t, n) => { + "use strict"; + n.d(t, { P: () => o }); + var r = n(59736); + function o(e, t, n, o) { + for (var a = (0, r.l)(e, t, n, o), i = new Array(0), s = 0, c = a; s < c.length; s++) { + var l = c[s]; + i.push({ type: l.type, value: l.value, source: l.source }); + } + return i; + } + }, + 36352: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => a }); + var r = n(87147), + o = n(39514); + function a(e, t, n) { + for (var a = (0, r.b)(e, t, n), i = (0, o.U6)(0), s = 0, c = a; s < c.length; s++) { + var l = c[s]; + i.push({ type: l.type, value: l.value }); + } + return i; + } + }, + 39504: (e, t, n) => { + "use strict"; + n.d(t, { h: () => y }); + var r = n(94855), + o = n(50961), + a = n(8831), + i = n(42184), + s = n(58281), + c = n(11679), + l = n(56900), + u = n(57529), + d = n(71089), + p = n(82316), + f = n(4603), + m = n(79568); + function h(e, t, n) { + return null == e && (e = t), void 0 !== n && (n ? (e = "h11" === t || "h23" === t ? "h11" : "h12") : ((0, d.kG)(!n, "hour12 must not be set"), (e = "h11" === t || "h23" === t ? "h23" : "h24"))), e; + } + var v = /^[a-z0-9]{3,8}$/i; + function y(e, t, n, y) { + var g = y.getInternalSlots, + b = y.availableLocales, + E = y.localeData, + D = y.getDefaultLocale, + C = y.getDefaultTimeZone, + w = y.relevantExtensionKeys, + S = y.tzData, + A = y.uppercaseLinks, + k = (0, r.L)(t), + _ = (0, o.W)(n, "any", "date"), + T = Object.create(null), + I = (0, a.u)(_, "localeMatcher", "string", ["lookup", "best fit"], "best fit"); + T.localeMatcher = I; + var O = (0, a.u)(_, "calendar", "string", void 0, void 0); + if (void 0 !== O && !v.test(O)) throw new RangeError("Malformed calendar"); + var F = g(e); + T.ca = O; + var x = (0, a.u)(_, "numberingSystem", "string", void 0, void 0); + if (void 0 !== x && !v.test(x)) throw new RangeError("Malformed numbering system"); + T.nu = x; + var N = (0, a.u)(_, "hour12", "boolean", void 0, void 0), + R = (0, a.u)(_, "hourCycle", "string", ["h11", "h12", "h23", "h24"], void 0); + void 0 !== N && (R = null), (T.hc = R); + var L = (0, i.f)(b, k, T, w, E, D); + (F.locale = L.locale), (O = L.ca), (F.calendar = O), (F.hourCycle = L.hc), (F.numberingSystem = L.nu); + var M = L.dataLocale; + F.dataLocale = M; + var P = _.timeZone; + if (void 0 !== P) { + if (((P = String(P)), !(0, s.s)(P, { tzData: S, uppercaseLinks: A }))) throw new RangeError("Invalid timeZoneName"); + P = (0, c.a)(P, { tzData: S, uppercaseLinks: A }); + } else P = C(); + (F.timeZone = P), + ((T = Object.create(null)).weekday = (0, a.u)(_, "weekday", "string", ["narrow", "short", "long"], void 0)), + (T.era = (0, a.u)(_, "era", "string", ["narrow", "short", "long"], void 0)), + (T.year = (0, a.u)(_, "year", "string", ["2-digit", "numeric"], void 0)), + (T.month = (0, a.u)(_, "month", "string", ["2-digit", "numeric", "narrow", "short", "long"], void 0)), + (T.day = (0, a.u)(_, "day", "string", ["2-digit", "numeric"], void 0)), + (T.hour = (0, a.u)(_, "hour", "string", ["2-digit", "numeric"], void 0)), + (T.minute = (0, a.u)(_, "minute", "string", ["2-digit", "numeric"], void 0)), + (T.second = (0, a.u)(_, "second", "string", ["2-digit", "numeric"], void 0)), + (T.timeZoneName = (0, a.u)(_, "timeZoneName", "string", ["short", "long"], void 0)), + (T.fractionalSecondDigits = (0, m._)(_, "fractionalSecondDigits", 1, 3, void 0)); + var j = E[M]; + (0, d.kG)(!!j, "Missing locale data for " + M); + var B = j.formats[O]; + if (!B) throw new RangeError('Calendar "' + O + '" is not supported. Try setting "calendar" to 1 of the following: ' + Object.keys(j.formats).join(", ")); + var Z = (0, a.u)(_, "formatMatcher", "string", ["basic", "best fit"], "best fit"), + U = (0, a.u)(_, "dateStyle", "string", ["full", "long", "medium", "short"], void 0); + F.dateStyle = U; + var z, + V, + H, + G = (0, a.u)(_, "timeStyle", "string", ["full", "long", "medium", "short"], void 0); + if (((F.timeStyle = G), void 0 === U && void 0 === G)) + if ("basic" === Z) z = (0, l.k)(T, B); + else { + if ( + (function (e) { + for (var t = 0, n = ["hour", "minute", "second"]; t < n.length; t++) if (void 0 !== e[n[t]]) return !0; + return !1; + })(T) + ) { + var W = h(F.hourCycle, j.hourCycle, N); + T.hour12 = "h11" === W || "h12" === W; + } + z = (0, u.S)(T, B); + } + else { + for (var Q = 0, J = p.ll; Q < J.length; Q++) if (void 0 !== (q = T[(Y = J[Q])])) throw new TypeError("Intl.DateTimeFormat can't set option " + Y + " when " + (U ? "dateStyle" : "timeStyle") + " is used"); + z = (0, f.R)(U, G, j); + } + for (var Y in ((F.format = z), T)) { + var q; + void 0 !== (q = z[Y]) && (F[Y] = q); + } + return ( + void 0 !== F.hour + ? ((W = h(F.hourCycle, j.hourCycle, N)), (F.hourCycle = W), "h11" === W || "h12" === W ? ((V = z.pattern12), (H = z.rangePatterns12)) : ((V = z.pattern), (H = z.rangePatterns))) + : ((F.hourCycle = void 0), (V = z.pattern), (H = z.rangePatterns)), + (F.pattern = V), + (F.rangePatterns = H), + e + ); + } + }, + 87147: (e, t, n) => { + "use strict"; + n.d(t, { b: () => i }); + var r = n(39514), + o = n(88271), + a = n(65587); + function i(e, t, n) { + if (((t = (0, r.XH)(t)), isNaN(t))) throw new RangeError("invalid time"); + var i = (0, n.getInternalSlots)(e).pattern; + return (0, o.T)(e, (0, a.i)(i), t, n); + } + }, + 59736: (e, t, n) => { + "use strict"; + n.d(t, { l: () => l }); + var r = n(30180), + o = n(39514), + a = n(87054), + i = n(88271), + s = n(65587), + c = ["era", "year", "month", "day", "ampm", "hour", "minute", "second", "fractionalSecondDigits"]; + function l(e, t, n, l) { + if (((t = (0, o.XH)(t)), isNaN(t))) throw new RangeError("Invalid start time"); + if (((n = (0, o.XH)(n)), isNaN(n))) throw new RangeError("Invalid end time"); + for ( + var u, + d = l.getInternalSlots, + p = l.tzData, + f = d(e), + m = (0, a.K)(t, f.calendar, f.timeZone, { tzData: p }), + h = (0, a.K)(n, f.calendar, f.timeZone, { tzData: p }), + v = f.pattern, + y = f.rangePatterns, + g = !0, + b = !1, + E = 0, + D = c; + E < D.length; + E++ + ) { + var C = D[E]; + if (g && !b) + if ("ampm" === C) { + var w = y.ampm; + if (void 0 !== u && void 0 === w) b = !0; + else { + var S = m.hour, + A = h.hour; + ((S > 11 && A < 11) || (S < 11 && A > 11)) && (g = !1), (u = w); + } + } else if ("fractionalSecondDigits" === C) { + var k = f.fractionalSecondDigits; + void 0 === k && (k = 3), (S = Math.floor(m.millisecond * Math.pow(10, k - 3))) !== (A = Math.floor(h.millisecond * Math.pow(10, k - 3))) && (g = !1); + } else (w = y[C]), void 0 !== u && void 0 === w ? (b = !0) : ((S = m[C]), (A = h[C]), (0, o.QP)(S, A) || (g = !1), (u = w)); + } + if (g) { + for (var _ = (0, i.T)(e, (0, s.i)(v), t, l), T = 0, I = _; T < I.length; T++) I[T].source = r._.shared; + return _; + } + var O = []; + if (void 0 === u) + for (var F = 0, x = (u = y.default).patternParts; F < x.length; F++) { + var N = x[F]; + ("{0}" !== N.pattern && "{1}" !== N.pattern) || (N.pattern = v); + } + for (var R = 0, L = u.patternParts; R < L.length; R++) { + var M, + P = L[R], + j = P.source, + B = P.pattern; + M = j === r._.startRange || j === r._.shared ? t : n; + for (var Z = (0, s.i)(B), U = (0, i.T)(e, Z, M, l), z = 0, V = U; z < V.length; z++) V[z].source = j; + O = O.concat(U); + } + return O; + } + }, + 50961: (e, t, n) => { + "use strict"; + n.d(t, { W: () => o }); + var r = n(39514); + function o(e, t, n) { + (e = void 0 === e ? null : (0, r.TA)(e)), (e = Object.create(e)); + var o = !0; + if ("date" === t || "any" === t) for (var a = 0, i = ["weekday", "year", "month", "day"]; a < i.length; a++) void 0 !== e[i[a]] && (o = !1); + if ("time" === t || "any" === t) for (var s = 0, c = ["dayPeriod", "hour", "minute", "second", "fractionalSecondDigits"]; s < c.length; s++) void 0 !== e[c[s]] && (o = !1); + if (((void 0 === e.dateStyle && void 0 === e.timeStyle) || (o = !1), "date" === t && e.timeStyle)) throw new TypeError("Intl.DateTimeFormat date was required but timeStyle was included"); + if ("time" === t && e.dateStyle) throw new TypeError("Intl.DateTimeFormat time was required but dateStyle was included"); + if (o && ("date" === n || "all" === n)) for (var l = 0, u = ["year", "month", "day"]; l < u.length; l++) e[u[l]] = "numeric"; + if (o && ("time" === n || "all" === n)) for (var d = 0, p = ["hour", "minute", "second"]; d < p.length; d++) e[p[d]] = "numeric"; + return e; + } + }, + 87054: (e, t, n) => { + "use strict"; + n.d(t, { K: () => a }); + var r = n(71089), + o = n(39514); + function a(e, t, n, a) { + var i = a.tzData; + (0, r.kG)("Number" === (0, o.Dy)(e), "invalid time"), (0, r.kG)("gregory" === t, "We only support Gregory calendar right now"); + var s = (function (e, t, n) { + var r, + o = n[t]; + if (!o) return [0, !1]; + for (var a = 0, i = 0, s = !1; a <= o.length; a++) + if (a === o.length || 1e3 * o[a][0] > e) { + (i = (r = o[a - 1])[2]), (s = r[3]); + break; + } + return [1e3 * i, s]; + })(e, n, i), + c = s[0], + l = s[1], + u = e + c, + d = (0, o.n7)(u); + return { + weekday: (0, o.VR)(u), + era: d < 0 ? "BC" : "AD", + year: d, + relatedYear: void 0, + yearName: void 0, + month: (0, o.J1)(u), + day: (0, o.XB)(u), + hour: (0, o.Zq)(u), + minute: (0, o.py)(u), + second: (0, o.xk)(u), + millisecond: (0, o.Vg)(u), + inDST: l, + timeZoneOffset: c, + }; + } + }, + 10015: (e, t, n) => { + "use strict"; + n.d(t, { TE: () => u, aK: () => l }); + var r = n(13795), + o = n(30180), + a = /(?:[Eec]{1,6}|G{1,5}|[Qq]{1,5}|(?:[yYur]+|U{1,5})|[ML]{1,5}|d{1,2}|D{1,3}|F{1}|[abB]{1,5}|[hkHK]{1,2}|w{1,2}|W{1}|m{1,2}|s{1,2}|[zZOvVxX]{1,4})(?=([^']*'[^']*')*[^']*$)/g, + i = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g; + function s(e, t) { + var n = e.length; + switch (e[0]) { + case "G": + return (t.era = 4 === n ? "long" : 5 === n ? "narrow" : "short"), "{era}"; + case "y": + case "Y": + case "u": + case "U": + case "r": + return (t.year = 2 === n ? "2-digit" : "numeric"), "{year}"; + case "q": + case "Q": + throw new RangeError("`w/Q` (quarter) patterns are not supported"); + case "M": + case "L": + return (t.month = ["numeric", "2-digit", "short", "long", "narrow"][n - 1]), "{month}"; + case "w": + case "W": + throw new RangeError("`w/W` (week of year) patterns are not supported"); + case "d": + return (t.day = ["numeric", "2-digit"][n - 1]), "{day}"; + case "D": + case "F": + case "g": + return (t.day = "numeric"), "{day}"; + case "E": + return (t.weekday = 4 === n ? "long" : 5 === n ? "narrow" : "short"), "{weekday}"; + case "e": + case "c": + return (t.weekday = [void 0, void 0, "short", "long", "narrow", "short"][n - 1]), "{weekday}"; + case "a": + case "b": + case "B": + return (t.hour12 = !0), "{ampm}"; + case "h": + case "K": + return (t.hour = ["numeric", "2-digit"][n - 1]), (t.hour12 = !0), "{hour}"; + case "H": + case "k": + return (t.hour = ["numeric", "2-digit"][n - 1]), "{hour}"; + case "j": + case "J": + case "C": + throw new RangeError("`j/J/C` (hour) patterns are not supported, use `h/H/K/k` instead"); + case "m": + return (t.minute = ["numeric", "2-digit"][n - 1]), "{minute}"; + case "s": + return (t.second = ["numeric", "2-digit"][n - 1]), "{second}"; + case "S": + case "A": + return (t.second = "numeric"), "{second}"; + case "z": + case "Z": + case "O": + case "v": + case "V": + case "X": + case "x": + return (t.timeZoneName = n < 4 ? "short" : "long"), "{timeZoneName}"; + } + return ""; + } + function c(e) { + switch (e) { + case "G": + return "era"; + case "y": + case "Y": + case "u": + case "U": + case "r": + return "year"; + case "M": + case "L": + return "month"; + case "d": + case "D": + case "F": + case "g": + return "day"; + case "a": + case "b": + case "B": + return "ampm"; + case "h": + case "H": + case "K": + case "k": + return "hour"; + case "m": + return "minute"; + case "s": + case "S": + case "A": + return "second"; + default: + throw new RangeError("Invalid range pattern token"); + } + } + function l(e, t) { + var n = [], + r = e + .replace(/'{2}/g, "{apostrophe}") + .replace(/'(.*?)'/g, function (e, t) { + return n.push(t), "$$" + (n.length - 1) + "$$"; + }) + .replace(a, function (e) { + return s(e, t || {}); + }); + return ( + n.length && + (r = r + .replace(/\$\$(\d+)\$\$/g, function (e, t) { + return n[+t]; + }) + .replace(/\{apostrophe\}/g, "'")), + [ + r + .replace(/([\s\uFEFF\xA0])\{ampm\}([\s\uFEFF\xA0])/, "$1") + .replace("{ampm}", "") + .replace(i, ""), + r, + ] + ); + } + function u(e, t, n, i) { + void 0 === t && (t = e); + var u = { pattern: "", pattern12: "", skeleton: e, rawPattern: t, rangePatterns: {}, rangePatterns12: {} }; + if (n) + for (var p in n) { + var f = c(p), + m = { patternParts: [] }, + h = l(n[p], m), + v = h[0], + y = h[1]; + (u.rangePatterns[f] = (0, r.__assign)((0, r.__assign)({}, m), { patternParts: d(v) })), (u.rangePatterns12[f] = (0, r.__assign)((0, r.__assign)({}, m), { patternParts: d(y) })); + } + else if (i) { + var g = (function (e) { + return e + .split(/(\{[0|1]\})/g) + .filter(Boolean) + .map(function (e) { + switch (e) { + case "{0}": + return { source: o._.startRange, pattern: e }; + case "{1}": + return { source: o._.endRange, pattern: e }; + default: + return { source: o._.shared, pattern: e }; + } + }); + })(i); + (u.rangePatterns.default = { patternParts: g }), (u.rangePatterns12.default = { patternParts: g }); + } + e.replace(a, function (e) { + return s(e, u); + }); + var b = l(t), + E = b[0], + D = b[1]; + return (u.pattern = E), (u.pattern12 = D), u; + } + function d(e) { + for (var t, n = /\{(.*?)\}/g, r = {}, a = 0; (t = n.exec(e)); ) { + if (t[0] in r) { + a = t.index; + break; + } + r[t[0]] = t.index; + } + return a + ? [ + { source: o._.startRange, pattern: e.slice(0, a) }, + { source: o._.endRange, pattern: e.slice(a) }, + ] + : [{ source: o._.startRange, pattern: e }]; + } + }, + 82316: (e, t, n) => { + "use strict"; + n.d(t, { H0: () => o, N4: () => s, Nt: () => c, Q7: () => u, bu: () => l, ll: () => r, wQ: () => a, zY: () => i }); + var r = ["weekday", "era", "year", "month", "day", "hour", "minute", "second", "timeZoneName"], + o = 120, + a = 20, + i = 15, + s = 8, + c = 6, + l = 6, + u = 3; + }, + 81425: (e, t, n) => { + "use strict"; + function r(e, t, n, r) { + if (void 0 !== e) { + if (((e = Number(e)), isNaN(e) || e < t || e > n)) throw new RangeError(e + " is outside of range [" + t + ", " + n + "]"); + return Math.floor(e); + } + return r; + } + n.d(t, { Q: () => r }); + }, + 72011: (e, t, n) => { + "use strict"; + n.d(t, { A: () => c }); + var r = n(94855), + o = n(71089), + a = n(54595), + i = /^([a-z]{2}|[0-9]{3})$/i, + s = /^[a-z]{4}$/i; + function c(e, t) { + if ("language" === e) return (0, r.L)([t])[0]; + if ("region" === e) { + if (((n = t), !i.test(n))) throw RangeError("invalid region"); + return t.toUpperCase(); + } + var n, c; + if ("script" === e) { + if (((c = t), !s.test(c))) throw RangeError("invalid script"); + return "" + t[0].toUpperCase() + t.slice(1).toLowerCase(); + } + if (((0, o.kG)("currency" === e, "invalid type"), !(0, a.K)(t))) throw RangeError("invalid currency"); + return t.toUpperCase(); + } + }, + 79568: (e, t, n) => { + "use strict"; + n.d(t, { _: () => o }); + var r = n(81425); + function o(e, t, n, o, a) { + var i = e[t]; + return (0, r.Q)(i, n, o, a); + } + }, + 8831: (e, t, n) => { + "use strict"; + n.d(t, { u: () => o }); + var r = n(39514); + function o(e, t, n, o, a) { + if ("object" != typeof e) throw new TypeError("Options must be an object"); + var i = e[t]; + if (void 0 !== i) { + if ("boolean" !== n && "string" !== n) throw new TypeError("invalid type"); + if ( + ("boolean" === n && (i = Boolean(i)), + "string" === n && (i = (0, r.Ml)(i)), + void 0 !== o && + !o.filter(function (e) { + return e == i; + }).length) + ) + throw new RangeError(i + " is not within " + o.join(", ")); + return i; + } + return a; + } + }, + 90160: (e, t, n) => { + "use strict"; + function r(e) { + if (void 0 === e) return Object.create(null); + if ("object" == typeof e) return e; + throw new TypeError("Options must be an object"); + } + n.d(t, { F: () => r }); + }, + 67152: (e, t, n) => { + "use strict"; + n.d(t, { Hr: () => o, Js: () => r, UQ: () => i, oO: () => a }); + var r = [ + "angle-degree", + "area-acre", + "area-hectare", + "concentr-percent", + "digital-bit", + "digital-byte", + "digital-gigabit", + "digital-gigabyte", + "digital-kilobit", + "digital-kilobyte", + "digital-megabit", + "digital-megabyte", + "digital-petabyte", + "digital-terabit", + "digital-terabyte", + "duration-day", + "duration-hour", + "duration-millisecond", + "duration-minute", + "duration-month", + "duration-second", + "duration-week", + "duration-year", + "length-centimeter", + "length-foot", + "length-inch", + "length-kilometer", + "length-meter", + "length-mile-scandinavian", + "length-mile", + "length-millimeter", + "length-yard", + "mass-gram", + "mass-kilogram", + "mass-ounce", + "mass-pound", + "mass-stone", + "temperature-celsius", + "temperature-fahrenheit", + "volume-fluid-ounce", + "volume-gallon", + "volume-liter", + "volume-milliliter", + ]; + function o(e) { + return e.slice(e.indexOf("-") + 1); + } + var a = r.map(o); + function i(e) { + return a.indexOf(e) > -1; + } + }, + 58281: (e, t, n) => { + "use strict"; + function r(e, t) { + var n = t.tzData, + r = t.uppercaseLinks, + o = e.toUpperCase(), + a = new Set(); + return ( + Object.keys(n) + .map(function (e) { + return e.toUpperCase(); + }) + .forEach(function (e) { + return a.add(e); + }), + a.has(o) || o in r + ); + } + n.d(t, { s: () => r }); + }, + 54595: (e, t, n) => { + "use strict"; + n.d(t, { K: () => o }); + var r = /[^A-Z]/; + function o(e) { + return ( + 3 === + (e = e.replace(/([a-z])/g, function (e, t) { + return t.toUpperCase(); + })).length && !r.test(e) + ); + } + }, + 98769: (e, t, n) => { + "use strict"; + n.d(t, { L: () => o }); + var r = n(67152); + function o(e) { + if ( + ((e = e.replace(/([A-Z])/g, function (e, t) { + return t.toLowerCase(); + })), + (0, r.UQ)(e)) + ) + return !0; + var t = e.split("-per-"); + if (2 !== t.length) return !1; + var n = t[0], + o = t[1]; + return !(!(0, r.UQ)(n) || !(0, r.UQ)(o)); + } + }, + 83774: (e, t, n) => { + "use strict"; + n.d(t, { V: () => i }); + var r = n(71089), + o = n(65821), + a = n(10516); + function i(e, t, n) { + var i = n.getInternalSlots; + if (0 === t) return [0, 0]; + t < 0 && (t = -t); + var s = (0, r.Tg)(t), + c = (0, o.b)(e, s, { getInternalSlots: i }); + t = c < 0 ? t * Math.pow(10, -c) : t / Math.pow(10, c); + var l = (0, a.E)(i(e), t); + return 0 === l.roundedNumber || (0, r.Tg)(l.roundedNumber) === s - c ? [c, s] : [(0, o.b)(e, s + 1, { getInternalSlots: i }), s + 1]; + } + }, + 65821: (e, t, n) => { + "use strict"; + function r(e, t, n) { + var r = (0, n.getInternalSlots)(e), + o = r.notation, + a = r.dataLocaleData, + i = r.numberingSystem; + switch (o) { + case "standard": + return 0; + case "scientific": + return t; + case "engineering": + return 3 * Math.floor(t / 3); + default: + var s = r.compactDisplay, + c = r.style, + l = r.currencyDisplay, + u = void 0; + if ("currency" === c && "name" !== l) u = (a.numbers.currency[i] || a.numbers.currency[a.numbers.nu[0]]).short; + else { + var d = a.numbers.decimal[i] || a.numbers.decimal[a.numbers.nu[0]]; + u = "long" === s ? d.long : d.short; + } + if (!u) return 0; + var p = String(Math.pow(10, t)), + f = Object.keys(u); + if (p < f[0]) return 0; + if (p > f[f.length - 1]) return f[f.length - 1].length - 1; + var m = f.indexOf(p); + if (-1 === m) return 0; + var h = f[m]; + return "0" === u[h].other ? 0 : h.length - u[h].other.match(/0+/)[0].length; + } + } + n.d(t, { b: () => r }); + }, + 2139: (e, t, n) => { + "use strict"; + n.d(t, { T: () => o }); + var r = n(39514); + function o(e, t) { + var n = t.currencyDigitsData; + return (0, r.uY)(n, e) ? n[e] : 2; + } + }, + 26724: (e, t, n) => { + "use strict"; + n.d(t, { M: () => a }); + var r = n(32536), + o = n(39514); + function a(e, t, n) { + for (var a = (0, r.I)(e, t, n), i = (0, o.U6)(0), s = 0, c = a; s < c.length; s++) { + var l = c[s]; + i.push({ type: l.type, value: l.value }); + } + return i; + } + }, + 10516: (e, t, n) => { + "use strict"; + n.d(t, { E: () => s }); + var r = n(39514), + o = n(78151), + a = n(71089), + i = n(32452); + function s(e, t) { + var n, + s = t < 0 || (0, r.QP)(t, -0); + switch ((s && (t = -t), e.roundingType)) { + case "significantDigits": + n = (0, o.w)(t, e.minimumSignificantDigits, e.maximumSignificantDigits); + break; + case "fractionDigits": + n = (0, i.W)(t, e.minimumFractionDigits, e.maximumFractionDigits); + break; + default: + (n = (0, o.w)(t, 1, 2)).integerDigitsCount > 1 && (n = (0, i.W)(t, 0, 0)); + } + t = n.roundedNumber; + var c = n.formattedString, + l = n.integerDigitsCount, + u = e.minimumIntegerDigits; + return l < u && (c = (0, a.rx)("0", u - l) + c), s && (t = -t), { roundedNumber: t, formattedString: c }; + } + }, + 12448: (e, t, n) => { + "use strict"; + n.d(t, { o: () => d }); + var r = n(94855), + o = n(8831), + a = n(42184), + i = n(90287), + s = n(2139), + c = n(64269), + l = n(71089), + u = n(73257); + function d(e, t, n, d) { + var p = d.getInternalSlots, + f = d.localeData, + m = d.availableLocales, + h = d.numberingSystemNames, + v = d.getDefaultLocale, + y = d.currencyDigitsData, + g = (0, r.L)(t), + b = (0, u.U)(n), + E = Object.create(null), + D = (0, o.u)(b, "localeMatcher", "string", ["lookup", "best fit"], "best fit"); + E.localeMatcher = D; + var C = (0, o.u)(b, "numberingSystem", "string", void 0, void 0); + if (void 0 !== C && h.indexOf(C) < 0) throw RangeError("Invalid numberingSystems: " + C); + E.nu = C; + var w = (0, a.f)(m, g, E, ["nu"], f, v), + S = f[w.dataLocale]; + (0, l.kG)(!!S, "Missing locale data for " + w.dataLocale); + var A = p(e); + (A.locale = w.locale), (A.dataLocale = w.dataLocale), (A.numberingSystem = w.nu), (A.dataLocaleData = S), (0, i.x)(e, b, { getInternalSlots: p }); + var k, + _, + T = A.style; + if ("currency" === T) { + var I = A.currency, + O = (0, s.T)(I, { currencyDigitsData: y }); + (k = O), (_ = O); + } else (k = 0), (_ = "percent" === T ? 0 : 3); + var F = (0, o.u)(b, "notation", "string", ["standard", "scientific", "engineering", "compact"], "standard"); + (A.notation = F), (0, c.W)(A, b, k, _, F); + var x = (0, o.u)(b, "compactDisplay", "string", ["short", "long"], "short"); + "compact" === F && (A.compactDisplay = x); + var N = (0, o.u)(b, "useGrouping", "boolean", void 0, !0); + A.useGrouping = N; + var R = (0, o.u)(b, "signDisplay", "string", ["auto", "never", "always", "exceptZero"], "auto"); + return (A.signDisplay = R), e; + } + }, + 32536: (e, t, n) => { + "use strict"; + n.d(t, { I: () => s }); + var r = n(10516), + o = n(39514), + a = n(83774), + i = n(57715); + function s(e, t, n) { + var s, + c, + l, + u = n.getInternalSlots, + d = u(e), + p = d.pl, + f = d.dataLocaleData, + m = d.numberingSystem, + h = f.numbers.symbols[m] || f.numbers.symbols[f.numbers.nu[0]], + v = 0, + y = 0; + if (isNaN(t)) c = h.nan; + else if (isFinite(t)) { + "percent" === d.style && (t *= 100), (y = (s = (0, a.V)(e, t, { getInternalSlots: u }))[0]), (v = s[1]), (t = y < 0 ? t * Math.pow(10, -y) : t / Math.pow(10, y)); + var g = (0, r.E)(d, t); + (c = g.formattedString), (t = g.roundedNumber); + } else c = h.infinity; + switch (d.signDisplay) { + case "never": + l = 0; + break; + case "auto": + l = (0, o.QP)(t, 0) || t > 0 || isNaN(t) ? 0 : -1; + break; + case "always": + l = (0, o.QP)(t, 0) || t > 0 || isNaN(t) ? 1 : -1; + break; + default: + l = 0 === t || isNaN(t) ? 0 : t > 0 ? 1 : -1; + } + return (0, i.Z)({ roundedNumber: t, formattedString: c, exponent: y, magnitude: v, sign: l }, d.dataLocaleData, p, d); + } + }, + 64269: (e, t, n) => { + "use strict"; + n.d(t, { W: () => a }); + var r = n(79568), + o = n(81425); + function a(e, t, n, a, i) { + var s = (0, r._)(t, "minimumIntegerDigits", 1, 21, 1), + c = t.minimumFractionDigits, + l = t.maximumFractionDigits, + u = t.minimumSignificantDigits, + d = t.maximumSignificantDigits; + if (((e.minimumIntegerDigits = s), void 0 !== u || void 0 !== d)) + (e.roundingType = "significantDigits"), (u = (0, o.Q)(u, 1, 21, 1)), (d = (0, o.Q)(d, u, 21, 21)), (e.minimumSignificantDigits = u), (e.maximumSignificantDigits = d); + else if (void 0 !== c || void 0 !== l) { + (e.roundingType = "fractionDigits"), (c = (0, o.Q)(c, 0, 20, n)); + var p = Math.max(c, a); + (l = (0, o.Q)(l, c, 20, p)), (e.minimumFractionDigits = c), (e.maximumFractionDigits = l); + } else "compact" === i ? (e.roundingType = "compactRounding") : ((e.roundingType = "fractionDigits"), (e.minimumFractionDigits = n), (e.maximumFractionDigits = a)); + } + }, + 90287: (e, t, n) => { + "use strict"; + n.d(t, { x: () => i }); + var r = n(8831), + o = n(54595), + a = n(98769); + function i(e, t, n) { + void 0 === t && (t = Object.create(null)); + var i = (0, n.getInternalSlots)(e), + s = (0, r.u)(t, "style", "string", ["decimal", "percent", "currency", "unit"], "decimal"); + i.style = s; + var c = (0, r.u)(t, "currency", "string", void 0, void 0); + if (void 0 !== c && !(0, o.K)(c)) throw RangeError("Malformed currency code"); + if ("currency" === s && void 0 === c) throw TypeError("currency cannot be undefined"); + var l = (0, r.u)(t, "currencyDisplay", "string", ["code", "symbol", "narrowSymbol", "name"], "symbol"), + u = (0, r.u)(t, "currencySign", "string", ["standard", "accounting"], "standard"), + d = (0, r.u)(t, "unit", "string", void 0, void 0); + if (void 0 !== d && !(0, a.L)(d)) throw RangeError("Invalid unit argument for Intl.NumberFormat()"); + if ("unit" === s && void 0 === d) throw TypeError("unit cannot be undefined"); + var p = (0, r.u)(t, "unitDisplay", "string", ["short", "narrow", "long"], "short"); + "currency" === s && ((i.currency = c.toUpperCase()), (i.currencyDisplay = l), (i.currencySign = u)), "unit" === s && ((i.unit = d), (i.unitDisplay = p)); + } + }, + 32452: (e, t, n) => { + "use strict"; + n.d(t, { W: () => o }); + var r = n(71089); + function o(e, t, n) { + var o, + a, + i = n, + s = Math.round(e * Math.pow(10, i)), + c = s / Math.pow(10, i); + if (s < 1e21) o = s.toString(); + else { + var l = (o = s.toString()).split("e"), + u = l[0], + d = l[1]; + (o = u.replace(".", "")), (o += (0, r.rx)("0", Math.max(+d - o.length + 1, 0))); + } + if (0 !== i) { + var p = o.length; + p <= i && ((o = (0, r.rx)("0", i + 1 - p) + o), (p = i + 1)); + var f = o.slice(0, p - i), + m = o.slice(p - i); + (o = f + "." + m), (a = f.length); + } else a = o.length; + for (var h = n - t; h > 0 && "0" === o[o.length - 1]; ) (o = o.slice(0, -1)), h--; + return "." === o[o.length - 1] && (o = o.slice(0, -1)), { formattedString: o, roundedNumber: c, integerDigitsCount: a }; + } + }, + 78151: (e, t, n) => { + "use strict"; + n.d(t, { w: () => o }); + var r = n(71089); + function o(e, t, n) { + var o, + a, + i, + s, + c = n; + if (0 === e) (o = (0, r.rx)("0", c)), (a = 0), (i = 0); + else { + var l = e.toString(), + u = l.indexOf("e"), + d = l.split("e"), + p = d[0], + f = d[1], + m = p.replace(".", ""); + if (u >= 0 && m.length <= c) (a = +f), (o = m + (0, r.rx)("0", c - m.length)), (i = e); + else { + var h = (a = (0, r.Tg)(e)) - c + 1, + v = Math.round(g(e, h)); + g(v, c - 1) >= 10 && ((a += 1), (v = Math.floor(v / 10))), (o = v.toString()), (i = g(v, c - 1 - a)); + } + } + if ((a >= c - 1 ? ((o += (0, r.rx)("0", a - c + 1)), (s = a + 1)) : a >= 0 ? ((o = o.slice(0, a + 1) + "." + o.slice(a + 1)), (s = a + 1)) : ((o = "0." + (0, r.rx)("0", -a - 1) + o), (s = 1)), o.indexOf(".") >= 0 && n > t)) { + for (var y = n - t; y > 0 && "0" === o[o.length - 1]; ) (o = o.slice(0, -1)), y--; + "." === o[o.length - 1] && (o = o.slice(0, -1)); + } + return { formattedString: o, roundedNumber: i, integerDigitsCount: s }; + function g(e, t) { + return t < 0 ? e * Math.pow(10, -t) : e / Math.pow(10, t); + } + } + }, + 57715: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => u }); + var r = n(32452); + const o = JSON.parse( + '{"adlm":["𞥐","𞥑","𞥒","𞥓","𞥔","𞥕","𞥖","𞥗","𞥘","𞥙"],"ahom":["𑜰","𑜱","𑜲","𑜳","𑜴","𑜵","𑜶","𑜷","𑜸","𑜹"],"arab":["٠","١","٢","٣","٤","٥","٦","٧","٨","٩"],"arabext":["۰","۱","۲","۳","۴","۵","۶","۷","۸","۹"],"bali":["᭐","᭑","᭒","᭓","᭔","᭕","᭖","᭗","᭘","᭙"],"beng":["০","১","২","৩","৪","৫","৬","৭","৮","৯"],"bhks":["𑱐","𑱑","𑱒","𑱓","𑱔","𑱕","𑱖","𑱗","𑱘","𑱙"],"brah":["𑁦","𑁧","𑁨","𑁩","𑁪","𑁫","𑁬","𑁭","𑁮","𑁯"],"cakm":["𑄶","𑄷","𑄸","𑄹","𑄺","𑄻","𑄼","𑄽","𑄾","𑄿"],"cham":["꩐","꩑","꩒","꩓","꩔","꩕","꩖","꩗","꩘","꩙"],"deva":["०","१","२","३","४","५","६","७","८","९"],"diak":["𑥐","𑥑","𑥒","𑥓","𑥔","𑥕","𑥖","𑥗","𑥘","𑥙"],"fullwide":["0","1","2","3","4","5","6","7","8","9"],"gong":["𑶠","𑶡","𑶢","𑶣","𑶤","𑶥","𑶦","𑶧","𑶨","𑶩"],"gonm":["𑵐","𑵑","𑵒","𑵓","𑵔","𑵕","𑵖","𑵗","𑵘","𑵙"],"gujr":["૦","૧","૨","૩","૪","૫","૬","૭","૮","૯"],"guru":["੦","੧","੨","੩","੪","੫","੬","੭","੮","੯"],"hanidec":["〇","一","二","三","四","五","六","七","八","九"],"hmng":["𖭐","𖭑","𖭒","𖭓","𖭔","𖭕","𖭖","𖭗","𖭘","𖭙"],"hmnp":["𞅀","𞅁","𞅂","𞅃","𞅄","𞅅","𞅆","𞅇","𞅈","𞅉"],"java":["꧐","꧑","꧒","꧓","꧔","꧕","꧖","꧗","꧘","꧙"],"kali":["꤀","꤁","꤂","꤃","꤄","꤅","꤆","꤇","꤈","꤉"],"khmr":["០","១","២","៣","៤","៥","៦","៧","៨","៩"],"knda":["೦","೧","೨","೩","೪","೫","೬","೭","೮","೯"],"lana":["᪀","᪁","᪂","᪃","᪄","᪅","᪆","᪇","᪈","᪉"],"lanatham":["᪐","᪑","᪒","᪓","᪔","᪕","᪖","᪗","᪘","᪙"],"laoo":["໐","໑","໒","໓","໔","໕","໖","໗","໘","໙"],"lepc":["᪐","᪑","᪒","᪓","᪔","᪕","᪖","᪗","᪘","᪙"],"limb":["᥆","᥇","᥈","᥉","᥊","᥋","᥌","᥍","᥎","᥏"],"mathbold":["𝟎","𝟏","𝟐","𝟑","𝟒","𝟓","𝟔","𝟕","𝟖","𝟗"],"mathdbl":["𝟘","𝟙","𝟚","𝟛","𝟜","𝟝","𝟞","𝟟","𝟠","𝟡"],"mathmono":["𝟶","𝟷","𝟸","𝟹","𝟺","𝟻","𝟼","𝟽","𝟾","𝟿"],"mathsanb":["𝟬","𝟭","𝟮","𝟯","𝟰","𝟱","𝟲","𝟳","𝟴","𝟵"],"mathsans":["𝟢","𝟣","𝟤","𝟥","𝟦","𝟧","𝟨","𝟩","𝟪","𝟫"],"mlym":["൦","൧","൨","൩","൪","൫","൬","൭","൮","൯"],"modi":["𑙐","𑙑","𑙒","𑙓","𑙔","𑙕","𑙖","𑙗","𑙘","𑙙"],"mong":["᠐","᠑","᠒","᠓","᠔","᠕","᠖","᠗","᠘","᠙"],"mroo":["𖩠","𖩡","𖩢","𖩣","𖩤","𖩥","𖩦","𖩧","𖩨","𖩩"],"mtei":["꯰","꯱","꯲","꯳","꯴","꯵","꯶","꯷","꯸","꯹"],"mymr":["၀","၁","၂","၃","၄","၅","၆","၇","၈","၉"],"mymrshan":["႐","႑","႒","႓","႔","႕","႖","႗","႘","႙"],"mymrtlng":["꧰","꧱","꧲","꧳","꧴","꧵","꧶","꧷","꧸","꧹"],"newa":["𑑐","𑑑","𑑒","𑑓","𑑔","𑑕","𑑖","𑑗","𑑘","𑑙"],"nkoo":["߀","߁","߂","߃","߄","߅","߆","߇","߈","߉"],"olck":["᱐","᱑","᱒","᱓","᱔","᱕","᱖","᱗","᱘","᱙"],"orya":["୦","୧","୨","୩","୪","୫","୬","୭","୮","୯"],"osma":["𐒠","𐒡","𐒢","𐒣","𐒤","𐒥","𐒦","𐒧","𐒨","𐒩"],"rohg":["𐴰","𐴱","𐴲","𐴳","𐴴","𐴵","𐴶","𐴷","𐴸","𐴹"],"saur":["꣐","꣑","꣒","꣓","꣔","꣕","꣖","꣗","꣘","꣙"],"segment":["🯰","🯱","🯲","🯳","🯴","🯵","🯶","🯷","🯸","🯹"],"shrd":["𑇐","𑇑","𑇒","𑇓","𑇔","𑇕","𑇖","𑇗","𑇘","𑇙"],"sind":["𑋰","𑋱","𑋲","𑋳","𑋴","𑋵","𑋶","𑋷","𑋸","𑋹"],"sinh":["෦","෧","෨","෩","෪","෫","෬","෭","෮","෯"],"sora":["𑃰","𑃱","𑃲","𑃳","𑃴","𑃵","𑃶","𑃷","𑃸","𑃹"],"sund":["᮰","᮱","᮲","᮳","᮴","᮵","᮶","᮷","᮸","᮹"],"takr":["𑛀","𑛁","𑛂","𑛃","𑛄","𑛅","𑛆","𑛇","𑛈","𑛉"],"talu":["᧐","᧑","᧒","᧓","᧔","᧕","᧖","᧗","᧘","᧙"],"tamldec":["௦","௧","௨","௩","௪","௫","௬","௭","௮","௯"],"telu":["౦","౧","౨","౩","౪","౫","౬","౭","౮","౯"],"thai":["๐","๑","๒","๓","๔","๕","๖","๗","๘","๙"],"tibt":["༠","༡","༢","༣","༤","༥","༦","༧","༨","༩"],"tirh":["𑓐","𑓑","𑓒","𑓓","𑓔","𑓕","𑓖","𑓗","𑓘","𑓙"],"vaii":["ᘠ","ᘡ","ᘢ","ᘣ","ᘤ","ᘥ","ᘦ","ᘧ","ᘨ","ᘩ"],"wara":["𑣠","𑣡","𑣢","𑣣","𑣤","𑣥","𑣦","𑣧","𑣨","𑣩"],"wcho":["𞋰","𞋱","𞋲","𞋳","𞋴","𞋵","𞋶","𞋷","𞋸","𞋹"]}' + ); + var a = n.t(o, 2), + i = /[\$\+<->\^`\|~\xA2-\xA6\xA8\xA9\xAC\xAE-\xB1\xB4\xB8\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0384\u0385\u03F6\u0482\u058D-\u058F\u0606-\u0608\u060B\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u07FE\u07FF\u09F2\u09F3\u09FA\u09FB\u0AF1\u0B70\u0BF3-\u0BFA\u0C7F\u0D4F\u0D79\u0E3F\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u166D\u17DB\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u2044\u2052\u207A-\u207C\u208A-\u208C\u20A0-\u20BF\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F\u218A\u218B\u2190-\u2307\u230C-\u2328\u232B-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u2767\u2794-\u27C4\u27C7-\u27E5\u27F0-\u2982\u2999-\u29D7\u29DC-\u29FB\u29FE-\u2B73\u2B76-\u2B95\u2B98-\u2BFF\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u309B\u309C\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA700-\uA716\uA720\uA721\uA789\uA78A\uA828-\uA82B\uA836-\uA839\uAA77-\uAA79\uAB5B\uFB29\uFBB2-\uFBC1\uFDFC\uFDFD\uFE62\uFE64-\uFE66\uFE69\uFF04\uFF0B\uFF1C-\uFF1E\uFF3E\uFF40\uFF5C\uFF5E\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFFC\uFFFD]|\uD800[\uDD37-\uDD3F\uDD79-\uDD89\uDD8C-\uDD8E\uDD90-\uDD9B\uDDA0\uDDD0-\uDDFC]|\uD802[\uDC77\uDC78\uDEC8]|\uD805\uDF3F|\uD807[\uDFD5-\uDFF1]|\uD81A[\uDF3C-\uDF3F\uDF45]|\uD82F\uDC9C|\uD834[\uDC00-\uDCF5\uDD00-\uDD26\uDD29-\uDD64\uDD6A-\uDD6C\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDDE8\uDE00-\uDE41\uDE45\uDF00-\uDF56]|\uD835[\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85\uDE86]|\uD838[\uDD4F\uDEFF]|\uD83B[\uDCAC\uDCB0\uDD2E\uDEF0\uDEF1]|\uD83C[\uDC00-\uDC2B\uDC30-\uDC93\uDCA0-\uDCAE\uDCB1-\uDCBF\uDCC1-\uDCCF\uDCD1-\uDCF5\uDD10-\uDD6C\uDD70-\uDDAC\uDDE6-\uDE02\uDE10-\uDE3B\uDE40-\uDE48\uDE50\uDE51\uDE60-\uDE65\uDF00-\uDFFF]|\uD83D[\uDC00-\uDED5\uDEE0-\uDEEC\uDEF0-\uDEFA\uDF00-\uDF73\uDF80-\uDFD8\uDFE0-\uDFEB]|\uD83E[\uDC00-\uDC0B\uDC10-\uDC47\uDC50-\uDC59\uDC60-\uDC87\uDC90-\uDCAD\uDD00-\uDD0B\uDD0D-\uDD71\uDD73-\uDD76\uDD7A-\uDDA2\uDDA5-\uDDAA\uDDAE-\uDDCA\uDDCD-\uDE53\uDE60-\uDE6D\uDE70-\uDE73\uDE78-\uDE7A\uDE80-\uDE82\uDE90-\uDE95]/, + s = new RegExp("^" + i.source), + c = new RegExp(i.source + "$"), + l = /[#0](?:[\.,][#0]+)*/g; + function u(e, t, n, r) { + var o, + a, + i = e.sign, + u = e.exponent, + m = e.magnitude, + h = r.notation, + v = r.style, + y = r.numberingSystem, + g = t.numbers.nu[0], + b = null; + if ( + ("compact" === h && + m && + (b = (function (e, t, n, r, o, a, i) { + var s, + c, + l = e.roundedNumber, + u = e.sign, + d = e.magnitude, + m = String(Math.pow(10, d)), + h = n.numbers.nu[0]; + if ("currency" === r && "name" !== a) { + var v = null === (s = ((y = n.numbers.currency)[i] || y[h]).short) || void 0 === s ? void 0 : s[m]; + if (!v) return null; + c = f(t, l, v); + } else { + var y, + g = ((y = n.numbers.decimal)[i] || y[h])[o][m]; + if (!g) return null; + c = f(t, l, g); + } + return "0" === c + ? null + : (c = p(c, u) + .replace(/([^\s;\-\+\d¤]+)/g, "{c:$1}") + .replace(/0+/, "0")); + })(e, n, t, v, r.compactDisplay, r.currencyDisplay, y)), + "currency" === v && "name" !== r.currencyDisplay) + ) { + var E = t.currencies[r.currency]; + if (E) + switch (r.currencyDisplay) { + case "code": + o = r.currency; + break; + case "symbol": + o = E.symbol; + break; + default: + o = E.narrow; + } + else o = r.currency; + } + a = + b || + ("decimal" === v || "unit" === v || ("currency" === v && "name" === r.currencyDisplay) + ? p((t.numbers.decimal[y] || t.numbers.decimal[g]).standard, i) + : p("currency" === v ? (C = t.numbers.currency[y] || t.numbers.currency[g])[r.currencySign] : t.numbers.percent[y] || t.numbers.percent[g], i)); + var D = l.exec(a)[0]; + if (((a = a.replace(l, "{0}").replace(/'(.)'/g, "$1")), "currency" === v && "name" !== r.currencyDisplay)) { + var C, + w = (C = t.numbers.currency[y] || t.numbers.currency[g]).currencySpacing.afterInsertBetween; + w && !c.test(o) && (a = a.replace("¤{0}", "¤" + w + "{0}")); + var S = C.currencySpacing.beforeInsertBetween; + S && !s.test(o) && (a = a.replace("{0}¤", "{0}" + S + "¤")); + } + for (var A = a.split(/({c:[^}]+}|\{0\}|[¤%\-\+])/g), k = [], _ = t.numbers.symbols[y] || t.numbers.symbols[g], T = 0, I = A; T < I.length; T++) + if ((J = I[T])) + switch (J) { + case "{0}": + k.push.apply(k, d(_, e, h, u, y, !b && r.useGrouping, D)); + break; + case "-": + k.push({ type: "minusSign", value: _.minusSign }); + break; + case "+": + k.push({ type: "plusSign", value: _.plusSign }); + break; + case "%": + k.push({ type: "percentSign", value: _.percentSign }); + break; + case "¤": + k.push({ type: "currency", value: o }); + break; + default: + /^\{c:/.test(J) ? k.push({ type: "compact", value: J.substring(3, J.length - 1) }) : k.push({ type: "literal", value: J }); + } + switch (v) { + case "currency": + if ("name" === r.currencyDisplay) { + var O, + F = (t.numbers.currency[y] || t.numbers.currency[g]).unitPattern, + x = t.currencies[r.currency]; + O = x ? f(n, e.roundedNumber * Math.pow(10, u), x.displayName) : r.currency; + for (var N = [], R = 0, L = F.split(/(\{[01]\})/g); R < L.length; R++) + switch ((J = L[R])) { + case "{0}": + N.push.apply(N, k); + break; + case "{1}": + N.push({ type: "currency", value: O }); + break; + default: + J && N.push({ type: "literal", value: J }); + } + return N; + } + return k; + case "unit": + var M = r.unit, + P = r.unitDisplay, + j = t.units.simple[M]; + if (((F = void 0), j)) F = f(n, e.roundedNumber * Math.pow(10, u), t.units.simple[M][P]); + else { + var B = M.split("-per-"), + Z = B[0], + U = B[1]; + j = t.units.simple[Z]; + var z = f(n, e.roundedNumber * Math.pow(10, u), t.units.simple[Z][P]), + V = t.units.simple[U].perUnit[P]; + if (V) F = V.replace("{0}", z); + else { + var H = t.units.compound.per[P], + G = f(n, 1, t.units.simple[U][P]); + F = F = H.replace("{0}", z).replace("{1}", G.replace("{0}", "")); + } + } + N = []; + for (var W = 0, Q = F.split(/(\s*\{0\}\s*)/); W < Q.length; W++) { + var J = Q[W], + Y = /^(\s*)\{0\}(\s*)$/.exec(J); + Y ? (Y[1] && N.push({ type: "literal", value: Y[1] }), N.push.apply(N, k), Y[2] && N.push({ type: "literal", value: Y[2] })) : J && N.push({ type: "unit", value: J }); + } + return N; + default: + return k; + } + } + function d(e, t, n, o, i, s, c) { + var l = [], + u = t.formattedString, + d = t.roundedNumber; + if (isNaN(d)) return [{ type: "nan", value: u }]; + if (!isFinite(d)) return [{ type: "infinity", value: u }]; + var p = a[i]; + p && + (u = u.replace(/\d/g, function (e) { + return p[+e] || e; + })); + var f, + m, + h = u.indexOf("."); + if ((h > 0 ? ((f = u.slice(0, h)), (m = u.slice(h + 1))) : (f = u), s && ("compact" !== n || d >= 1e4))) { + var v = e.group, + y = [], + g = c.split(".")[0].split(","), + b = 3, + E = 3; + g.length > 1 && (b = g[g.length - 1].length), g.length > 2 && (E = g[g.length - 2].length); + var D = f.length - b; + if (D > 0) { + for (y.push(f.slice(D, D + b)), D -= E; D > 0; D -= E) y.push(f.slice(D, D + E)); + y.push(f.slice(0, D + E)); + } else y.push(f); + for (; y.length > 0; ) { + var C = y.pop(); + l.push({ type: "integer", value: C }), y.length > 0 && l.push({ type: "group", value: v }); + } + } else l.push({ type: "integer", value: f }); + if ((void 0 !== m && l.push({ type: "decimal", value: e.decimal }, { type: "fraction", value: m }), ("scientific" === n || "engineering" === n) && isFinite(d))) { + l.push({ type: "exponentSeparator", value: e.exponential }), o < 0 && (l.push({ type: "exponentMinusSign", value: e.minusSign }), (o = -o)); + var w = (0, r.W)(o, 0, 0); + l.push({ type: "exponentInteger", value: w.formattedString }); + } + return l; + } + function p(e, t) { + e.indexOf(";") < 0 && (e = e + ";-" + e); + var n = e.split(";"), + r = n[0], + o = n[1]; + switch (t) { + case 0: + return r; + case -1: + return o; + default: + return o.indexOf("-") >= 0 ? o.replace(/-/g, "+") : "+" + r; + } + } + function f(e, t, n) { + return n[e.select(t)] || n.other; + } + }, + 65587: (e, t, n) => { + "use strict"; + n.d(t, { i: () => o }); + var r = n(71089); + function o(e) { + for (var t = [], n = e.indexOf("{"), o = 0, a = 0, i = e.length; n < e.length && n > -1; ) + (o = e.indexOf("}", n)), (0, r.kG)(o > n, "Invalid pattern " + e), n > a && t.push({ type: "literal", value: e.substring(a, n) }), t.push({ type: e.substring(n + 1, o), value: void 0 }), (a = o + 1), (n = e.indexOf("{", a)); + return a < i && t.push({ type: "literal", value: e.substring(a, i) }), t; + } + }, + 61232: (e, t, n) => { + "use strict"; + n.d(t, { F: () => a }); + var r = n(71089), + o = n(39514); + function a(e) { + (0, r.kG)("string" == typeof e, "GetOperands should have been called with a string"); + var t = (0, o.CU)(e); + (0, r.kG)(isFinite(t), "n should be finite"); + var n, + a, + i, + s = e.indexOf("."), + c = ""; + -1 === s ? ((n = t), (a = 0), (i = 0)) : ((n = e.slice(0, s)), (c = e.slice(s, e.length)), (a = (0, o.CU)(c)), (i = c.length)); + var l, + u, + d = Math.abs((0, o.CU)(n)); + if (0 !== a) { + var p = c.replace(/0+$/, ""); + (l = p.length), (u = (0, o.CU)(p)); + } else (l = 0), (u = 0); + return { Number: t, IntegerDigits: d, NumberOfFractionDigits: i, NumberOfFractionDigitsWithoutTrailing: l, FractionDigits: a, FractionDigitsWithoutTrailing: u }; + } + }, + 25739: (e, t, n) => { + "use strict"; + n.d(t, { q: () => c }); + var r = n(94855), + o = n(8831), + a = n(64269), + i = n(42184), + s = n(73257); + function c(e, t, n, c) { + var l = c.availableLocales, + u = c.relevantExtensionKeys, + d = c.localeData, + p = c.getDefaultLocale, + f = c.getInternalSlots, + m = (0, r.L)(t), + h = Object.create(null), + v = (0, s.U)(n), + y = f(e); + y.initializedPluralRules = !0; + var g = (0, o.u)(v, "localeMatcher", "string", ["best fit", "lookup"], "best fit"); + (h.localeMatcher = g), (y.type = (0, o.u)(v, "type", "string", ["cardinal", "ordinal"], "cardinal")), (0, a.W)(y, v, 0, 3, "standard"); + var b = (0, i.f)(l, m, h, u, d, p); + return (y.locale = b.locale), e; + } + }, + 94752: (e, t, n) => { + "use strict"; + n.d(t, { j: () => s }); + var r = n(71089), + o = n(39514), + a = n(10516), + i = n(61232); + function s(e, t, n) { + var s = n.getInternalSlots, + c = n.PluralRuleSelect, + l = s(e); + if (((0, r.kG)("Object" === (0, o.Dy)(l), "pl has to be an object"), (0, r.kG)("initializedPluralRules" in l, "pluralrules must be initialized"), (0, r.kG)("Number" === (0, o.Dy)(t), "n must be a number"), !isFinite(t))) + return "other"; + var u = l.locale, + d = l.type, + p = (0, a.E)(l, t).formattedString; + return c(u, d, t, (0, i.F)(p)); + } + }, + 24830: (e, t, n) => { + "use strict"; + n.d(t, { e: () => o }); + var r = n(84112); + function o(e, t, n, o) { + for (var a = "", i = 0, s = (0, r.J)(e, t, n, o); i < s.length; i++) a += s[i].value; + return a; + } + }, + 404: (e, t, n) => { + "use strict"; + n.d(t, { p: () => a }); + var r = n(84112), + o = n(39514); + function a(e, t, n, a) { + for (var i = (0, r.J)(e, t, n, a), s = (0, o.U6)(0), c = 0, l = i; c < l.length; c++) { + var u = l[c], + d = { type: u.type, value: u.value }; + "unit" in u && (d.unit = u.unit), s.push(d); + } + return s; + } + }, + 23868: (e, t, n) => { + "use strict"; + n.d(t, { Q: () => l }); + var r = n(94855), + o = n(8831), + a = n(42184), + i = n(71089), + s = n(73257), + c = /^[a-z0-9]{3,8}(-[a-z0-9]{3,8})*$/i; + function l(e, t, n, l) { + var u = l.getInternalSlots, + d = l.availableLocales, + p = l.relevantExtensionKeys, + f = l.localeData, + m = l.getDefaultLocale, + h = u(e); + h.initializedRelativeTimeFormat = !0; + var v = (0, r.L)(t), + y = Object.create(null), + g = (0, s.U)(n), + b = (0, o.u)(g, "localeMatcher", "string", ["best fit", "lookup"], "best fit"); + y.localeMatcher = b; + var E = (0, o.u)(g, "numberingSystem", "string", void 0, void 0); + if (void 0 !== E && !c.test(E)) throw new RangeError("Invalid numbering system " + E); + y.nu = E; + var D = (0, a.f)(d, v, y, p, f, m), + C = D.locale, + w = D.nu; + (h.locale = C), (h.style = (0, o.u)(g, "style", "string", ["long", "narrow", "short"], "long")), (h.numeric = (0, o.u)(g, "numeric", "string", ["always", "auto"], "always")); + var S = f[D.dataLocale]; + return (0, i.kG)(!!S, "Missing locale data for " + D.dataLocale), (h.fields = S), (h.numberFormat = new Intl.NumberFormat(t)), (h.pluralRules = new Intl.PluralRules(t)), (h.numberingSystem = w), e; + } + }, + 44755: (e, t, n) => { + "use strict"; + n.d(t, { W: () => a }); + var r = n(65587), + o = n(71089); + function a(e, t, n) { + for (var a = [], i = 0, s = (0, r.i)(e); i < s.length; i++) { + var c = s[i]; + if ("literal" === c.type) a.push({ type: "literal", value: c.value }); + else { + (0, o.kG)("0" === c.type, "Malformed pattern " + e); + for (var l = 0, u = n; l < u.length; l++) { + var d = u[l]; + a.push({ type: d.type, value: d.value, unit: t }); + } + } + } + return a; + } + }, + 84112: (e, t, n) => { + "use strict"; + n.d(t, { J: () => s }); + var r = n(71089), + o = n(6777), + a = n(44755), + i = n(39514); + function s(e, t, n, s) { + var c = s.getInternalSlots; + if (((0, r.kG)("Number" === (0, i.Dy)(t), "value must be number, instead got " + typeof t, TypeError), (0, r.kG)("String" === (0, i.Dy)(n), "unit must be number, instead got " + typeof t, TypeError), isNaN(t) || !isFinite(t))) + throw new RangeError("Invalid value " + t); + var l = (0, o.Y)(n), + u = c(e), + d = u.fields, + p = u.style, + f = u.numeric, + m = u.pluralRules, + h = u.numberFormat, + v = l; + "short" === p ? (v = l + "-short") : "narrow" === p && (v = l + "-narrow"), v in d || (v = l); + var y = d[v]; + if ("auto" === f && (0, i.Ml)(t) in y) return [{ type: "literal", value: y[(0, i.Ml)(t)] }]; + var g = "future"; + ((0, i.QP)(t, -0) || t < 0) && (g = "past"); + var b = y[g], + E = "function" == typeof h.formatToParts ? h.formatToParts(Math.abs(t)) : [{ type: "literal", value: h.format(Math.abs(t)), unit: n }], + D = b[m.select(t)]; + return (0, a.W)(D, l, E); + } + }, + 6777: (e, t, n) => { + "use strict"; + n.d(t, { Y: () => a }); + var r = n(71089), + o = n(39514); + function a(e) { + if (((0, r.kG)("String" === (0, o.Dy)(e), "unit must be a string"), "seconds" === e)) return "second"; + if ("minutes" === e) return "minute"; + if ("hours" === e) return "hour"; + if ("days" === e) return "day"; + if ("weeks" === e) return "week"; + if ("months" === e) return "month"; + if ("quarters" === e) return "quarter"; + if ("years" === e) return "year"; + if ("second" !== e && "minute" !== e && "hour" !== e && "day" !== e && "week" !== e && "month" !== e && "quarter" !== e && "year" !== e) throw new RangeError("invalid unit"); + return e; + } + }, + 42184: (e, t, n) => { + "use strict"; + n.d(t, { f: () => i }); + var r = n(71089), + o = n(33305); + function a(e, t) { + (0, r.kG)(2 === t.length, "key must have 2 elements"); + var n = e.length, + o = "-" + t + "-", + a = e.indexOf(o); + if (-1 !== a) { + for (var i = a + 4, s = i, c = i, l = !1; !l; ) { + var u = e.indexOf("-", c); + 2 == (-1 === u ? n - c : u - c) ? (l = !0) : -1 === u ? ((s = n), (l = !0)) : ((s = u), (c = u + 1)); + } + return e.slice(i, s); + } + if (((o = "-" + t), -1 !== (a = e.indexOf(o)) && a + 3 === n)) return ""; + } + function i(e, t, n, i, s, c) { + var l; + l = + "lookup" === n.localeMatcher + ? (function (e, t, n) { + for (var a = { locale: "" }, i = 0, s = t; i < s.length; i++) { + var c = s[i], + l = c.replace(r.pk, ""), + u = (0, o.t)(e, l); + if (u) return (a.locale = u), c !== l && (a.extension = c.slice(l.length + 1, c.length)), a; + } + return (a.locale = n()), a; + })(e, t, c) + : (function (e, t, n) { + var a, + i = {}, + s = new Set(); + e.forEach(function (e) { + var t = new Intl.Locale(e).minimize().toString(); + (i[t] = e), s.add(t); + }); + for (var c = 0, l = t; c < l.length; c++) { + var u = l[c]; + if (a) break; + var d = u.replace(r.pk, ""); + if (e.has(d)) { + a = d; + break; + } + if (s.has(d)) { + a = i[d]; + break; + } + var p = new Intl.Locale(d), + f = p.maximize().toString(), + m = p.minimize().toString(); + if (s.has(m)) { + a = i[m]; + break; + } + a = (0, o.t)(s, f); + } + return { locale: a || n() }; + })(e, t, c); + for (var u = l.locale, d = { locale: "", dataLocale: u }, p = "-u", f = 0, m = i; f < m.length; f++) { + var h = m[f]; + (0, r.kG)(u in s, "Missing locale data for " + u); + var v = s[u]; + (0, r.kG)("object" == typeof v && null !== v, "locale data " + h + " must be an object"); + var y = v[h]; + (0, r.kG)(Array.isArray(y), "keyLocaleData for " + h + " must be an array"); + var g = y[0]; + (0, r.kG)("string" == typeof g || null === g, "value must be string or null but got " + typeof g + " in key " + h); + var b = ""; + if (l.extension) { + var E = a(l.extension, h); + void 0 !== E && ("" !== E ? ~y.indexOf(E) && (b = "-" + h + "-" + (g = E)) : ~E.indexOf("true") && ((g = "true"), (b = "-" + h))); + } + if (h in n) { + var D = n[h]; + (0, r.kG)("string" == typeof D || null == D, "optionsValue must be String, Undefined or Null"), ~y.indexOf(D) && D !== g && ((g = D), (b = "")); + } + (d[h] = g), (p += b); + } + if (p.length > 2) { + var C = u.indexOf("-x-"); + if (-1 === C) u += p; + else { + var w = u.slice(0, C), + S = u.slice(C, u.length); + u = w + p + S; + } + u = Intl.getCanonicalLocales(u)[0]; + } + return (d.locale = u), d; + } + }, + 1657: (e, t, n) => { + "use strict"; + n.d(t, { Q: () => s }); + var r = n(39514), + o = n(8831), + a = n(71089), + i = n(33305); + function s(e, t, n) { + return ( + void 0 !== n && ((n = (0, r.TA)(n)), (0, o.u)(n, "localeMatcher", "string", ["lookup", "best fit"], "best fit")), + (function (e, t) { + for (var n = [], r = 0, o = t; r < o.length; r++) { + var s = o[r].replace(a.pk, ""), + c = (0, i.t)(e, s); + c && n.push(c); + } + return n; + })(e, t) + ); + } + }, + 581: (e, t, n) => { + "use strict"; + n.d(t, { N: () => a }); + var r, + o = n(13795); + function a(e) { + return "MISSING_LOCALE_DATA" === e.type; + } + (r = Error), + (0, o.__extends)(function () { + var e = (null !== r && r.apply(this, arguments)) || this; + return (e.type = "MISSING_LOCALE_DATA"), e; + }, r); + }, + 50044: (e, t, n) => { + "use strict"; + n.r(t), + n.d(t, { + ArrayCreate: () => ae.U6, + BasicFormatMatcher: () => s.k, + BestFitFormatMatcher: () => r.S, + CanonicalCodeForDisplayNames: () => v.A, + CanonicalizeLocaleList: () => o.L, + CanonicalizeTimeZoneName: () => a.a, + CoerceOptionsToObject: () => i.U, + ComputeExponent: () => S.V, + ComputeExponentForMagnitude: () => A.b, + CurrencyDigits: () => k.T, + DATE_TIME_PROPS: () => J.ll, + DateFromTime: () => ae.XB, + DateTimeStyleFormat: () => c.R, + Day: () => ae.Jc, + DayFromYear: () => ae.gL, + DayWithinYear: () => ae.oD, + DaysInYear: () => ae.My, + FormatDateTime: () => l.J, + FormatDateTimeRange: () => u.a, + FormatDateTimeRangeToParts: () => d.P, + FormatDateTimeToParts: () => p.Z, + FormatNumericToParts: () => _.M, + FormatNumericToString: () => T.E, + FormatRelativeTime: () => B.e, + FormatRelativeTimeToParts: () => Z.p, + GetNumberOption: () => y._, + GetOperands: () => M.F, + GetOption: () => g.u, + GetOptionsObject: () => b.F, + HasOwnProperty: () => ae.uY, + HourFromTime: () => ae.Zq, + InLeapYear: () => ae.$i, + InitializeDateTimeFormat: () => f.h, + InitializeNumberFormat: () => I.o, + InitializePluralRules: () => P.q, + InitializeRelativeTimeFormat: () => U.Q, + IsSanctionedSimpleUnitIdentifier: () => E.UQ, + IsValidTimeZoneName: () => D.s, + IsWellFormedCurrencyCode: () => C.K, + IsWellFormedUnitIdentifier: () => w.L, + MakePartsList: () => z.W, + MinFromTime: () => ae.py, + MonthFromTime: () => ae.J1, + OrdinaryHasInstance: () => ae.R2, + PartitionDateTimePattern: () => m.b, + PartitionNumberPattern: () => O.I, + PartitionPattern: () => L.i, + PartitionRelativeTimePattern: () => V.J, + RangePatternType: () => ee._, + ResolveLocale: () => G.f, + ResolvePlural: () => j.j, + SANCTIONED_UNITS: () => E.Js, + SIMPLE_UNITS: () => E.oO, + SameValue: () => ae.QP, + SecFromTime: () => ae.xk, + SetNumberFormatDigitOptions: () => F.W, + SetNumberFormatUnitOptions: () => x.x, + SingularRelativeTimeUnit: () => H.Y, + SupportedLocales: () => W.Q, + TimeClip: () => ae.XH, + TimeFromYear: () => ae.rf, + ToDateTimeOptions: () => h.W, + ToNumber: () => ae.CU, + ToObject: () => ae.TA, + ToRawFixed: () => N.W, + ToRawPrecision: () => R.w, + ToString: () => ae.Ml, + Type: () => ae.Dy, + WeekDay: () => ae.VR, + YearFromTime: () => ae.n7, + _formatToParts: () => Q.Z, + defineProperty: () => q._x, + getInternalSlot: () => q.q, + getMagnitude: () => q.Tg, + getMultiInternalSlots: () => q.$0, + invariant: () => q.kG, + isLiteralPart: () => q.eY, + isMissingLocaleDataError: () => X.N, + msFromTime: () => ae.Vg, + parseDateTimeSkeleton: () => Y.TE, + removeUnitNamespace: () => E.Hr, + setInternalSlot: () => q.LS, + setMultiInternalSlots: () => q.e7, + }); + var r = n(57529), + o = n(94855), + a = n(11679), + i = n(73257), + s = n(56900), + c = n(4603), + l = n(45902), + u = n(39366), + d = n(45310), + p = n(36352), + f = n(39504), + m = n(87147), + h = n(50961), + v = n(72011), + y = n(79568), + g = n(8831), + b = n(90160), + E = n(67152), + D = n(58281), + C = n(54595), + w = n(98769), + S = n(83774), + A = n(65821), + k = n(2139), + _ = n(26724), + T = n(10516), + I = n(12448), + O = n(32536), + F = n(64269), + x = n(90287), + N = n(32452), + R = n(78151), + L = n(65587), + M = n(61232), + P = n(25739), + j = n(94752), + B = n(24830), + Z = n(404), + U = n(23868), + z = n(44755), + V = n(84112), + H = n(6777), + G = n(42184), + W = n(1657), + Q = n(57715), + J = n(82316), + Y = n(10015), + q = n(71089), + X = n(581), + K = n(62690), + $ = {}; + for (const e in K) + [ + "default", + "BestFitFormatMatcher", + "_formatToParts", + "DATE_TIME_PROPS", + "parseDateTimeSkeleton", + "getInternalSlot", + "getMultiInternalSlots", + "isLiteralPart", + "setInternalSlot", + "setMultiInternalSlots", + "getMagnitude", + "defineProperty", + "isMissingLocaleDataError", + "invariant", + "CanonicalizeLocaleList", + "CanonicalizeTimeZoneName", + "CoerceOptionsToObject", + "BasicFormatMatcher", + "DateTimeStyleFormat", + "FormatDateTime", + "FormatDateTimeRange", + "FormatDateTimeRangeToParts", + "FormatDateTimeToParts", + "InitializeDateTimeFormat", + "PartitionDateTimePattern", + "ToDateTimeOptions", + "CanonicalCodeForDisplayNames", + "GetNumberOption", + "GetOption", + "GetOptionsObject", + "IsSanctionedSimpleUnitIdentifier", + "SANCTIONED_UNITS", + "SIMPLE_UNITS", + "removeUnitNamespace", + "IsValidTimeZoneName", + "IsWellFormedCurrencyCode", + "IsWellFormedUnitIdentifier", + "ComputeExponent", + "ComputeExponentForMagnitude", + "CurrencyDigits", + "FormatNumericToParts", + "FormatNumericToString", + "InitializeNumberFormat", + "PartitionNumberPattern", + "SetNumberFormatDigitOptions", + "SetNumberFormatUnitOptions", + "ToRawFixed", + "ToRawPrecision", + "PartitionPattern", + "GetOperands", + "InitializePluralRules", + "ResolvePlural", + "FormatRelativeTime", + "FormatRelativeTimeToParts", + "InitializeRelativeTimeFormat", + "MakePartsList", + "PartitionRelativeTimePattern", + "SingularRelativeTimeUnit", + "ResolveLocale", + "SupportedLocales", + ].indexOf(e) < 0 && ($[e] = () => K[e]); + n.d(t, $); + var ee = n(30180), + te = n(81812); + $ = {}; + for (const e in te) + [ + "default", + "BestFitFormatMatcher", + "_formatToParts", + "DATE_TIME_PROPS", + "parseDateTimeSkeleton", + "getInternalSlot", + "getMultiInternalSlots", + "isLiteralPart", + "setInternalSlot", + "setMultiInternalSlots", + "getMagnitude", + "defineProperty", + "isMissingLocaleDataError", + "invariant", + "CanonicalizeLocaleList", + "CanonicalizeTimeZoneName", + "CoerceOptionsToObject", + "BasicFormatMatcher", + "DateTimeStyleFormat", + "FormatDateTime", + "FormatDateTimeRange", + "FormatDateTimeRangeToParts", + "FormatDateTimeToParts", + "InitializeDateTimeFormat", + "PartitionDateTimePattern", + "ToDateTimeOptions", + "CanonicalCodeForDisplayNames", + "GetNumberOption", + "GetOption", + "GetOptionsObject", + "IsSanctionedSimpleUnitIdentifier", + "SANCTIONED_UNITS", + "SIMPLE_UNITS", + "removeUnitNamespace", + "IsValidTimeZoneName", + "IsWellFormedCurrencyCode", + "IsWellFormedUnitIdentifier", + "ComputeExponent", + "ComputeExponentForMagnitude", + "CurrencyDigits", + "FormatNumericToParts", + "FormatNumericToString", + "InitializeNumberFormat", + "PartitionNumberPattern", + "SetNumberFormatDigitOptions", + "SetNumberFormatUnitOptions", + "ToRawFixed", + "ToRawPrecision", + "PartitionPattern", + "GetOperands", + "InitializePluralRules", + "ResolvePlural", + "FormatRelativeTime", + "FormatRelativeTimeToParts", + "InitializeRelativeTimeFormat", + "MakePartsList", + "PartitionRelativeTimePattern", + "SingularRelativeTimeUnit", + "ResolveLocale", + "SupportedLocales", + "RangePatternType", + ].indexOf(e) < 0 && ($[e] = () => te[e]); + n.d(t, $); + var ne = n(56566); + $ = {}; + for (const e in ne) + [ + "default", + "BestFitFormatMatcher", + "_formatToParts", + "DATE_TIME_PROPS", + "parseDateTimeSkeleton", + "getInternalSlot", + "getMultiInternalSlots", + "isLiteralPart", + "setInternalSlot", + "setMultiInternalSlots", + "getMagnitude", + "defineProperty", + "isMissingLocaleDataError", + "invariant", + "CanonicalizeLocaleList", + "CanonicalizeTimeZoneName", + "CoerceOptionsToObject", + "BasicFormatMatcher", + "DateTimeStyleFormat", + "FormatDateTime", + "FormatDateTimeRange", + "FormatDateTimeRangeToParts", + "FormatDateTimeToParts", + "InitializeDateTimeFormat", + "PartitionDateTimePattern", + "ToDateTimeOptions", + "CanonicalCodeForDisplayNames", + "GetNumberOption", + "GetOption", + "GetOptionsObject", + "IsSanctionedSimpleUnitIdentifier", + "SANCTIONED_UNITS", + "SIMPLE_UNITS", + "removeUnitNamespace", + "IsValidTimeZoneName", + "IsWellFormedCurrencyCode", + "IsWellFormedUnitIdentifier", + "ComputeExponent", + "ComputeExponentForMagnitude", + "CurrencyDigits", + "FormatNumericToParts", + "FormatNumericToString", + "InitializeNumberFormat", + "PartitionNumberPattern", + "SetNumberFormatDigitOptions", + "SetNumberFormatUnitOptions", + "ToRawFixed", + "ToRawPrecision", + "PartitionPattern", + "GetOperands", + "InitializePluralRules", + "ResolvePlural", + "FormatRelativeTime", + "FormatRelativeTimeToParts", + "InitializeRelativeTimeFormat", + "MakePartsList", + "PartitionRelativeTimePattern", + "SingularRelativeTimeUnit", + "ResolveLocale", + "SupportedLocales", + "RangePatternType", + ].indexOf(e) < 0 && ($[e] = () => ne[e]); + n.d(t, $); + var re = n(13540); + $ = {}; + for (const e in re) + [ + "default", + "BestFitFormatMatcher", + "_formatToParts", + "DATE_TIME_PROPS", + "parseDateTimeSkeleton", + "getInternalSlot", + "getMultiInternalSlots", + "isLiteralPart", + "setInternalSlot", + "setMultiInternalSlots", + "getMagnitude", + "defineProperty", + "isMissingLocaleDataError", + "invariant", + "CanonicalizeLocaleList", + "CanonicalizeTimeZoneName", + "CoerceOptionsToObject", + "BasicFormatMatcher", + "DateTimeStyleFormat", + "FormatDateTime", + "FormatDateTimeRange", + "FormatDateTimeRangeToParts", + "FormatDateTimeToParts", + "InitializeDateTimeFormat", + "PartitionDateTimePattern", + "ToDateTimeOptions", + "CanonicalCodeForDisplayNames", + "GetNumberOption", + "GetOption", + "GetOptionsObject", + "IsSanctionedSimpleUnitIdentifier", + "SANCTIONED_UNITS", + "SIMPLE_UNITS", + "removeUnitNamespace", + "IsValidTimeZoneName", + "IsWellFormedCurrencyCode", + "IsWellFormedUnitIdentifier", + "ComputeExponent", + "ComputeExponentForMagnitude", + "CurrencyDigits", + "FormatNumericToParts", + "FormatNumericToString", + "InitializeNumberFormat", + "PartitionNumberPattern", + "SetNumberFormatDigitOptions", + "SetNumberFormatUnitOptions", + "ToRawFixed", + "ToRawPrecision", + "PartitionPattern", + "GetOperands", + "InitializePluralRules", + "ResolvePlural", + "FormatRelativeTime", + "FormatRelativeTimeToParts", + "InitializeRelativeTimeFormat", + "MakePartsList", + "PartitionRelativeTimePattern", + "SingularRelativeTimeUnit", + "ResolveLocale", + "SupportedLocales", + "RangePatternType", + ].indexOf(e) < 0 && ($[e] = () => re[e]); + n.d(t, $); + var oe = n(61511); + $ = {}; + for (const e in oe) + [ + "default", + "BestFitFormatMatcher", + "_formatToParts", + "DATE_TIME_PROPS", + "parseDateTimeSkeleton", + "getInternalSlot", + "getMultiInternalSlots", + "isLiteralPart", + "setInternalSlot", + "setMultiInternalSlots", + "getMagnitude", + "defineProperty", + "isMissingLocaleDataError", + "invariant", + "CanonicalizeLocaleList", + "CanonicalizeTimeZoneName", + "CoerceOptionsToObject", + "BasicFormatMatcher", + "DateTimeStyleFormat", + "FormatDateTime", + "FormatDateTimeRange", + "FormatDateTimeRangeToParts", + "FormatDateTimeToParts", + "InitializeDateTimeFormat", + "PartitionDateTimePattern", + "ToDateTimeOptions", + "CanonicalCodeForDisplayNames", + "GetNumberOption", + "GetOption", + "GetOptionsObject", + "IsSanctionedSimpleUnitIdentifier", + "SANCTIONED_UNITS", + "SIMPLE_UNITS", + "removeUnitNamespace", + "IsValidTimeZoneName", + "IsWellFormedCurrencyCode", + "IsWellFormedUnitIdentifier", + "ComputeExponent", + "ComputeExponentForMagnitude", + "CurrencyDigits", + "FormatNumericToParts", + "FormatNumericToString", + "InitializeNumberFormat", + "PartitionNumberPattern", + "SetNumberFormatDigitOptions", + "SetNumberFormatUnitOptions", + "ToRawFixed", + "ToRawPrecision", + "PartitionPattern", + "GetOperands", + "InitializePluralRules", + "ResolvePlural", + "FormatRelativeTime", + "FormatRelativeTimeToParts", + "InitializeRelativeTimeFormat", + "MakePartsList", + "PartitionRelativeTimePattern", + "SingularRelativeTimeUnit", + "ResolveLocale", + "SupportedLocales", + "RangePatternType", + ].indexOf(e) < 0 && ($[e] = () => oe[e]); + n.d(t, $); + var ae = n(39514); + }, + 30180: (e, t, n) => { + "use strict"; + var r; + n.d(t, { _: () => r }), + (function (e) { + (e.startRange = "startRange"), (e.shared = "shared"), (e.endRange = "endRange"); + })(r || (r = {})); + }, + 61511: () => {}, + 81812: () => {}, + 13540: () => {}, + 56566: () => {}, + 62690: () => {}, + 71089: (e, t, n) => { + "use strict"; + function r(e) { + return Math.floor(Math.log(e) * Math.LOG10E); + } + function o(e, t) { + if ("function" == typeof e.repeat) return e.repeat(t); + for (var n = new Array(t), r = 0; r < n.length; r++) n[r] = e; + return n.join(""); + } + function a(e, t, n, r) { + e.get(t) || e.set(t, Object.create(null)), (e.get(t)[n] = r); + } + function i(e, t, n) { + for (var r = 0, o = Object.keys(n); r < o.length; r++) { + var i = o[r]; + a(e, t, i, n[i]); + } + } + function s(e, t, n) { + return c(e, t, n)[n]; + } + function c(e, t) { + for (var n = [], r = 2; r < arguments.length; r++) n[r - 2] = arguments[r]; + var o = e.get(t); + if (!o) throw new TypeError(t + " InternalSlot has not been initialized"); + return n.reduce(function (e, t) { + return (e[t] = o[t]), e; + }, Object.create(null)); + } + function l(e) { + return "literal" === e.type; + } + function u(e, t, n) { + var r = n.value; + Object.defineProperty(e, t, { configurable: !0, enumerable: !1, writable: !0, value: r }); + } + n.d(t, { $0: () => c, LS: () => a, Tg: () => r, _x: () => u, e7: () => i, eY: () => l, kG: () => p, pk: () => d, q: () => s, rx: () => o }); + var d = /-u(?:-[0-9a-z]{2,8})+/gi; + function p(e, t, n) { + if ((void 0 === n && (n = Error), !e)) throw new n(t); + } + }, + 14211: (e, t, n) => { + "use strict"; + var r = n(13795).__importDefault(n(62553)); + n(56429).shouldPolyfill() && Object.defineProperty(Intl, "RelativeTimeFormat", { value: r.default, writable: !0, enumerable: !1, configurable: !0 }); + }, + 56429: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.shouldPolyfill = void 0), + (t.shouldPolyfill = function () { + return "undefined" == typeof Intl || !("RelativeTimeFormat" in Intl); + }); + }, + 56160: (e, t, n) => { + "use strict"; + n.d(t, { $6: () => d, OV: () => s, Qe: () => l, Rw: () => a, X9: () => u, bc: () => r, gb: () => c, wI: () => i }); + var r, + o = n(13795); + !(function (e) { + (e.FORMAT_ERROR = "FORMAT_ERROR"), (e.UNSUPPORTED_FORMATTER = "UNSUPPORTED_FORMATTER"), (e.INVALID_CONFIG = "INVALID_CONFIG"), (e.MISSING_DATA = "MISSING_DATA"), (e.MISSING_TRANSLATION = "MISSING_TRANSLATION"); + })(r || (r = {})); + var a = (function (e) { + function t(n, r, o) { + var a = this, + i = o ? (o instanceof Error ? o : new Error(String(o))) : void 0; + return ( + ((a = + e.call( + this, + "[@formatjs/intl Error " + .concat(n, "] ") + .concat(r, " \n") + .concat(i ? "\n".concat(i.message, "\n").concat(i.stack) : "") + ) || this).code = n), + "function" == typeof Error.captureStackTrace && Error.captureStackTrace(a, t), + a + ); + } + return (0, o.__extends)(t, e), t; + })(Error), + i = (function (e) { + function t(t, n) { + return e.call(this, r.UNSUPPORTED_FORMATTER, t, n) || this; + } + return (0, o.__extends)(t, e), t; + })(a), + s = (function (e) { + function t(t, n) { + return e.call(this, r.INVALID_CONFIG, t, n) || this; + } + return (0, o.__extends)(t, e), t; + })(a), + c = (function (e) { + function t(t, n) { + return e.call(this, r.MISSING_DATA, t, n) || this; + } + return (0, o.__extends)(t, e), t; + })(a), + l = (function (e) { + function t(t, n, o) { + return e.call(this, r.FORMAT_ERROR, "".concat(t, " \nLocale: ").concat(n, "\n"), o) || this; + } + return (0, o.__extends)(t, e), t; + })(a), + u = (function (e) { + function t(t, n, r, o) { + var a = + e.call( + this, + "" + .concat(t, " \nMessageID: ") + .concat(null == r ? void 0 : r.id, "\nDefault Message: ") + .concat(null == r ? void 0 : r.defaultMessage, "\nDescription: ") + .concat(null == r ? void 0 : r.description, " \n"), + n, + o + ) || this; + return (a.descriptor = r), a; + } + return (0, o.__extends)(t, e), t; + })(l), + d = (function (e) { + function t(t, n) { + var o = + e.call( + this, + r.MISSING_TRANSLATION, + 'Missing message: "' + .concat(t.id, '" for locale "') + .concat(n, '", using ') + .concat(t.defaultMessage ? "default message" : "id", " as fallback.") + ) || this; + return (o.descriptor = t), o; + } + return (0, o.__extends)(t, e), t; + })(a); + }, + 956: (e, t, n) => { + "use strict"; + n.d(t, { L6: () => s, Sn: () => l, TB: () => p, Z0: () => c, ax: () => d }); + var r = n(13795), + o = n(85767), + a = n(17618), + i = n(56160); + function s(e, t, n) { + return ( + void 0 === n && (n = {}), + t.reduce(function (t, r) { + return r in e ? (t[r] = e[r]) : r in n && (t[r] = n[r]), t; + }, {}) + ); + } + var c = { formats: {}, messages: {}, timeZone: void 0, defaultLocale: "en", defaultFormats: {}, fallbackOnEmptyString: !0, onError: function (e) {}, onWarn: function (e) {} }; + function l() { + return { dateTime: {}, number: {}, message: {}, relativeTime: {}, pluralRules: {}, list: {}, displayNames: {} }; + } + function u(e) { + return { + create: function () { + return { + get: function (t) { + return e[t]; + }, + set: function (t, n) { + e[t] = n; + }, + }; + }, + }; + } + function d(e) { + void 0 === e && (e = { dateTime: {}, number: {}, message: {}, relativeTime: {}, pluralRules: {}, list: {}, displayNames: {} }); + var t = Intl.RelativeTimeFormat, + n = Intl.ListFormat, + i = Intl.DisplayNames, + s = (0, a.Z)( + function () { + for (var e, t = [], n = 0; n < arguments.length; n++) t[n] = arguments[n]; + return new ((e = Intl.DateTimeFormat).bind.apply(e, (0, r.__spreadArray)([void 0], t, !1)))(); + }, + { cache: u(e.dateTime), strategy: a.A.variadic } + ), + c = (0, a.Z)( + function () { + for (var e, t = [], n = 0; n < arguments.length; n++) t[n] = arguments[n]; + return new ((e = Intl.NumberFormat).bind.apply(e, (0, r.__spreadArray)([void 0], t, !1)))(); + }, + { cache: u(e.number), strategy: a.A.variadic } + ), + l = (0, a.Z)( + function () { + for (var e, t = [], n = 0; n < arguments.length; n++) t[n] = arguments[n]; + return new ((e = Intl.PluralRules).bind.apply(e, (0, r.__spreadArray)([void 0], t, !1)))(); + }, + { cache: u(e.pluralRules), strategy: a.A.variadic } + ); + return { + getDateTimeFormat: s, + getNumberFormat: c, + getMessageFormat: (0, a.Z)( + function (e, t, n, a) { + return new o.C(e, t, n, (0, r.__assign)({ formatters: { getNumberFormat: c, getDateTimeFormat: s, getPluralRules: l } }, a || {})); + }, + { cache: u(e.message), strategy: a.A.variadic } + ), + getRelativeTimeFormat: (0, a.Z)( + function () { + for (var e = [], n = 0; n < arguments.length; n++) e[n] = arguments[n]; + return new (t.bind.apply(t, (0, r.__spreadArray)([void 0], e, !1)))(); + }, + { cache: u(e.relativeTime), strategy: a.A.variadic } + ), + getPluralRules: l, + getListFormat: (0, a.Z)( + function () { + for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t]; + return new (n.bind.apply(n, (0, r.__spreadArray)([void 0], e, !1)))(); + }, + { cache: u(e.list), strategy: a.A.variadic } + ), + getDisplayNames: (0, a.Z)( + function () { + for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t]; + return new (i.bind.apply(i, (0, r.__spreadArray)([void 0], e, !1)))(); + }, + { cache: u(e.displayNames), strategy: a.A.variadic } + ), + }; + } + function p(e, t, n, r) { + var o, + a = e && e[t]; + if ((a && (o = a[n]), o)) return o; + r(new i.wI("No ".concat(t, " format named: ").concat(n))); + } + }, + 50828: (e, t, n) => { + e.exports = n(31178); + }, + 13544: (e, t, n) => { + "use strict"; + var r = n(44952), + o = n(89083), + a = n(77491), + i = n(82470), + s = n(26423), + c = n(17462), + l = n(943), + u = n(89750), + d = n(87597), + p = n(17488); + e.exports = function (e) { + return new Promise(function (t, n) { + var f, + m = e.data, + h = e.headers, + v = e.responseType; + function y() { + e.cancelToken && e.cancelToken.unsubscribe(f), e.signal && e.signal.removeEventListener("abort", f); + } + r.isFormData(m) && delete h["Content-Type"]; + var g = new XMLHttpRequest(); + if (e.auth) { + var b = e.auth.username || "", + E = e.auth.password ? unescape(encodeURIComponent(e.auth.password)) : ""; + h.Authorization = "Basic " + btoa(b + ":" + E); + } + var D = s(e.baseURL, e.url); + function C() { + if (g) { + var r = "getAllResponseHeaders" in g ? c(g.getAllResponseHeaders()) : null, + a = { data: v && "text" !== v && "json" !== v ? g.response : g.responseText, status: g.status, statusText: g.statusText, headers: r, config: e, request: g }; + o( + function (e) { + t(e), y(); + }, + function (e) { + n(e), y(); + }, + a + ), + (g = null); + } + } + if ( + (g.open(e.method.toUpperCase(), i(D, e.params, e.paramsSerializer), !0), + (g.timeout = e.timeout), + "onloadend" in g + ? (g.onloadend = C) + : (g.onreadystatechange = function () { + g && 4 === g.readyState && (0 !== g.status || (g.responseURL && 0 === g.responseURL.indexOf("file:"))) && setTimeout(C); + }), + (g.onabort = function () { + g && (n(u("Request aborted", e, "ECONNABORTED", g)), (g = null)); + }), + (g.onerror = function () { + n(u("Network Error", e, null, g)), (g = null); + }), + (g.ontimeout = function () { + var t = e.timeout ? "timeout of " + e.timeout + "ms exceeded" : "timeout exceeded", + r = e.transitional || d; + e.timeoutErrorMessage && (t = e.timeoutErrorMessage), n(u(t, e, r.clarifyTimeoutError ? "ETIMEDOUT" : "ECONNABORTED", g)), (g = null); + }), + r.isStandardBrowserEnv()) + ) { + var w = (e.withCredentials || l(D)) && e.xsrfCookieName ? a.read(e.xsrfCookieName) : void 0; + w && (h[e.xsrfHeaderName] = w); + } + "setRequestHeader" in g && + r.forEach(h, function (e, t) { + void 0 === m && "content-type" === t.toLowerCase() ? delete h[t] : g.setRequestHeader(t, e); + }), + r.isUndefined(e.withCredentials) || (g.withCredentials = !!e.withCredentials), + v && "json" !== v && (g.responseType = e.responseType), + "function" == typeof e.onDownloadProgress && g.addEventListener("progress", e.onDownloadProgress), + "function" == typeof e.onUploadProgress && g.upload && g.upload.addEventListener("progress", e.onUploadProgress), + (e.cancelToken || e.signal) && + ((f = function (e) { + g && (n(!e || (e && e.type) ? new p("canceled") : e), g.abort(), (g = null)); + }), + e.cancelToken && e.cancelToken.subscribe(f), + e.signal && (e.signal.aborted ? f() : e.signal.addEventListener("abort", f))), + m || (m = null), + g.send(m); + }); + }; + }, + 31178: (e, t, n) => { + "use strict"; + var r = n(44952), + o = n(44893), + a = n(835), + i = n(52226), + s = (function e(t) { + var n = new a(t), + s = o(a.prototype.request, n); + return ( + r.extend(s, a.prototype, n), + r.extend(s, n), + (s.create = function (n) { + return e(i(t, n)); + }), + s + ); + })(n(4576)); + (s.Axios = a), + (s.Cancel = n(17488)), + (s.CancelToken = n(99167)), + (s.isCancel = n(11707)), + (s.VERSION = n(50120).version), + (s.all = function (e) { + return Promise.all(e); + }), + (s.spread = n(17885)), + (s.isAxiosError = n(34319)), + (e.exports = s), + (e.exports.default = s); + }, + 17488: (e) => { + "use strict"; + function t(e) { + this.message = e; + } + (t.prototype.toString = function () { + return "Cancel" + (this.message ? ": " + this.message : ""); + }), + (t.prototype.__CANCEL__ = !0), + (e.exports = t); + }, + 99167: (e, t, n) => { + "use strict"; + var r = n(17488); + function o(e) { + if ("function" != typeof e) throw new TypeError("executor must be a function."); + var t; + this.promise = new Promise(function (e) { + t = e; + }); + var n = this; + this.promise.then(function (e) { + if (n._listeners) { + var t, + r = n._listeners.length; + for (t = 0; t < r; t++) n._listeners[t](e); + n._listeners = null; + } + }), + (this.promise.then = function (e) { + var t, + r = new Promise(function (e) { + n.subscribe(e), (t = e); + }).then(e); + return ( + (r.cancel = function () { + n.unsubscribe(t); + }), + r + ); + }), + e(function (e) { + n.reason || ((n.reason = new r(e)), t(n.reason)); + }); + } + (o.prototype.throwIfRequested = function () { + if (this.reason) throw this.reason; + }), + (o.prototype.subscribe = function (e) { + this.reason ? e(this.reason) : this._listeners ? this._listeners.push(e) : (this._listeners = [e]); + }), + (o.prototype.unsubscribe = function (e) { + if (this._listeners) { + var t = this._listeners.indexOf(e); + -1 !== t && this._listeners.splice(t, 1); + } + }), + (o.source = function () { + var e; + return { + token: new o(function (t) { + e = t; + }), + cancel: e, + }; + }), + (e.exports = o); + }, + 11707: (e) => { + "use strict"; + e.exports = function (e) { + return !(!e || !e.__CANCEL__); + }; + }, + 835: (e, t, n) => { + "use strict"; + var r = n(44952), + o = n(82470), + a = n(74538), + i = n(22058), + s = n(52226), + c = n(72298), + l = c.validators; + function u(e) { + (this.defaults = e), (this.interceptors = { request: new a(), response: new a() }); + } + (u.prototype.request = function (e, t) { + "string" == typeof e ? ((t = t || {}).url = e) : (t = e || {}), (t = s(this.defaults, t)).method ? (t.method = t.method.toLowerCase()) : this.defaults.method ? (t.method = this.defaults.method.toLowerCase()) : (t.method = "get"); + var n = t.transitional; + void 0 !== n && c.assertOptions(n, { silentJSONParsing: l.transitional(l.boolean), forcedJSONParsing: l.transitional(l.boolean), clarifyTimeoutError: l.transitional(l.boolean) }, !1); + var r = [], + o = !0; + this.interceptors.request.forEach(function (e) { + ("function" == typeof e.runWhen && !1 === e.runWhen(t)) || ((o = o && e.synchronous), r.unshift(e.fulfilled, e.rejected)); + }); + var a, + u = []; + if ( + (this.interceptors.response.forEach(function (e) { + u.push(e.fulfilled, e.rejected); + }), + !o) + ) { + var d = [i, void 0]; + for (Array.prototype.unshift.apply(d, r), d = d.concat(u), a = Promise.resolve(t); d.length; ) a = a.then(d.shift(), d.shift()); + return a; + } + for (var p = t; r.length; ) { + var f = r.shift(), + m = r.shift(); + try { + p = f(p); + } catch (e) { + m(e); + break; + } + } + try { + a = i(p); + } catch (e) { + return Promise.reject(e); + } + for (; u.length; ) a = a.then(u.shift(), u.shift()); + return a; + }), + (u.prototype.getUri = function (e) { + return (e = s(this.defaults, e)), o(e.url, e.params, e.paramsSerializer).replace(/^\?/, ""); + }), + r.forEach(["delete", "get", "head", "options"], function (e) { + u.prototype[e] = function (t, n) { + return this.request(s(n || {}, { method: e, url: t, data: (n || {}).data })); + }; + }), + r.forEach(["post", "put", "patch"], function (e) { + u.prototype[e] = function (t, n, r) { + return this.request(s(r || {}, { method: e, url: t, data: n })); + }; + }), + (e.exports = u); + }, + 74538: (e, t, n) => { + "use strict"; + var r = n(44952); + function o() { + this.handlers = []; + } + (o.prototype.use = function (e, t, n) { + return this.handlers.push({ fulfilled: e, rejected: t, synchronous: !!n && n.synchronous, runWhen: n ? n.runWhen : null }), this.handlers.length - 1; + }), + (o.prototype.eject = function (e) { + this.handlers[e] && (this.handlers[e] = null); + }), + (o.prototype.forEach = function (e) { + r.forEach(this.handlers, function (t) { + null !== t && e(t); + }); + }), + (e.exports = o); + }, + 26423: (e, t, n) => { + "use strict"; + var r = n(57451), + o = n(99310); + e.exports = function (e, t) { + return e && !r(t) ? o(e, t) : t; + }; + }, + 89750: (e, t, n) => { + "use strict"; + var r = n(65194); + e.exports = function (e, t, n, o, a) { + var i = new Error(e); + return r(i, t, n, o, a); + }; + }, + 22058: (e, t, n) => { + "use strict"; + var r = n(44952), + o = n(69837), + a = n(11707), + i = n(4576), + s = n(17488); + function c(e) { + if ((e.cancelToken && e.cancelToken.throwIfRequested(), e.signal && e.signal.aborted)) throw new s("canceled"); + } + e.exports = function (e) { + return ( + c(e), + (e.headers = e.headers || {}), + (e.data = o.call(e, e.data, e.headers, e.transformRequest)), + (e.headers = r.merge(e.headers.common || {}, e.headers[e.method] || {}, e.headers)), + r.forEach(["delete", "get", "head", "post", "put", "patch", "common"], function (t) { + delete e.headers[t]; + }), + (e.adapter || i.adapter)(e).then( + function (t) { + return c(e), (t.data = o.call(e, t.data, t.headers, e.transformResponse)), t; + }, + function (t) { + return a(t) || (c(e), t && t.response && (t.response.data = o.call(e, t.response.data, t.response.headers, e.transformResponse))), Promise.reject(t); + } + ) + ); + }; + }, + 65194: (e) => { + "use strict"; + e.exports = function (e, t, n, r, o) { + return ( + (e.config = t), + n && (e.code = n), + (e.request = r), + (e.response = o), + (e.isAxiosError = !0), + (e.toJSON = function () { + return { + message: this.message, + name: this.name, + description: this.description, + number: this.number, + fileName: this.fileName, + lineNumber: this.lineNumber, + columnNumber: this.columnNumber, + stack: this.stack, + config: this.config, + code: this.code, + status: this.response && this.response.status ? this.response.status : null, + }; + }), + e + ); + }; + }, + 52226: (e, t, n) => { + "use strict"; + var r = n(44952); + e.exports = function (e, t) { + t = t || {}; + var n = {}; + function o(e, t) { + return r.isPlainObject(e) && r.isPlainObject(t) ? r.merge(e, t) : r.isPlainObject(t) ? r.merge({}, t) : r.isArray(t) ? t.slice() : t; + } + function a(n) { + return r.isUndefined(t[n]) ? (r.isUndefined(e[n]) ? void 0 : o(void 0, e[n])) : o(e[n], t[n]); + } + function i(e) { + if (!r.isUndefined(t[e])) return o(void 0, t[e]); + } + function s(n) { + return r.isUndefined(t[n]) ? (r.isUndefined(e[n]) ? void 0 : o(void 0, e[n])) : o(void 0, t[n]); + } + function c(n) { + return n in t ? o(e[n], t[n]) : n in e ? o(void 0, e[n]) : void 0; + } + var l = { + url: i, + method: i, + data: i, + baseURL: s, + transformRequest: s, + transformResponse: s, + paramsSerializer: s, + timeout: s, + timeoutMessage: s, + withCredentials: s, + adapter: s, + responseType: s, + xsrfCookieName: s, + xsrfHeaderName: s, + onUploadProgress: s, + onDownloadProgress: s, + decompress: s, + maxContentLength: s, + maxBodyLength: s, + transport: s, + httpAgent: s, + httpsAgent: s, + cancelToken: s, + socketPath: s, + responseEncoding: s, + validateStatus: c, + }; + return ( + r.forEach(Object.keys(e).concat(Object.keys(t)), function (e) { + var t = l[e] || a, + o = t(e); + (r.isUndefined(o) && t !== c) || (n[e] = o); + }), + n + ); + }; + }, + 89083: (e, t, n) => { + "use strict"; + var r = n(89750); + e.exports = function (e, t, n) { + var o = n.config.validateStatus; + n.status && o && !o(n.status) ? t(r("Request failed with status code " + n.status, n.config, null, n.request, n)) : e(n); + }; + }, + 69837: (e, t, n) => { + "use strict"; + var r = n(44952), + o = n(4576); + e.exports = function (e, t, n) { + var a = this || o; + return ( + r.forEach(n, function (n) { + e = n.call(a, e, t); + }), + e + ); + }; + }, + 4576: (e, t, n) => { + "use strict"; + var r = n(44952), + o = n(54218), + a = n(65194), + i = n(87597), + s = { "Content-Type": "application/x-www-form-urlencoded" }; + function c(e, t) { + !r.isUndefined(e) && r.isUndefined(e["Content-Type"]) && (e["Content-Type"] = t); + } + var l, + u = { + transitional: i, + adapter: (("undefined" != typeof XMLHttpRequest || ("undefined" != typeof process && "[object process]" === Object.prototype.toString.call(process))) && (l = n(13544)), l), + transformRequest: [ + function (e, t) { + return ( + o(t, "Accept"), + o(t, "Content-Type"), + r.isFormData(e) || r.isArrayBuffer(e) || r.isBuffer(e) || r.isStream(e) || r.isFile(e) || r.isBlob(e) + ? e + : r.isArrayBufferView(e) + ? e.buffer + : r.isURLSearchParams(e) + ? (c(t, "application/x-www-form-urlencoded;charset=utf-8"), e.toString()) + : r.isObject(e) || (t && "application/json" === t["Content-Type"]) + ? (c(t, "application/json"), + (function (e, t, n) { + if (r.isString(e)) + try { + return (0, JSON.parse)(e), r.trim(e); + } catch (e) { + if ("SyntaxError" !== e.name) throw e; + } + return (0, JSON.stringify)(e); + })(e)) + : e + ); + }, + ], + transformResponse: [ + function (e) { + var t = this.transitional || u.transitional, + n = t && t.silentJSONParsing, + o = t && t.forcedJSONParsing, + i = !n && "json" === this.responseType; + if (i || (o && r.isString(e) && e.length)) + try { + return JSON.parse(e); + } catch (e) { + if (i) { + if ("SyntaxError" === e.name) throw a(e, this, "E_JSON_PARSE"); + throw e; + } + } + return e; + }, + ], + timeout: 0, + xsrfCookieName: "XSRF-TOKEN", + xsrfHeaderName: "X-XSRF-TOKEN", + maxContentLength: -1, + maxBodyLength: -1, + validateStatus: function (e) { + return e >= 200 && e < 300; + }, + headers: { common: { Accept: "application/json, text/plain, */*" } }, + }; + r.forEach(["delete", "get", "head"], function (e) { + u.headers[e] = {}; + }), + r.forEach(["post", "put", "patch"], function (e) { + u.headers[e] = r.merge(s); + }), + (e.exports = u); + }, + 87597: (e) => { + "use strict"; + e.exports = { silentJSONParsing: !0, forcedJSONParsing: !0, clarifyTimeoutError: !1 }; + }, + 50120: (e) => { + e.exports = { version: "0.26.1" }; + }, + 44893: (e) => { + "use strict"; + e.exports = function (e, t) { + return function () { + for (var n = new Array(arguments.length), r = 0; r < n.length; r++) n[r] = arguments[r]; + return e.apply(t, n); + }; + }; + }, + 82470: (e, t, n) => { + "use strict"; + var r = n(44952); + function o(e) { + return encodeURIComponent(e).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]"); + } + e.exports = function (e, t, n) { + if (!t) return e; + var a; + if (n) a = n(t); + else if (r.isURLSearchParams(t)) a = t.toString(); + else { + var i = []; + r.forEach(t, function (e, t) { + null != e && + (r.isArray(e) ? (t += "[]") : (e = [e]), + r.forEach(e, function (e) { + r.isDate(e) ? (e = e.toISOString()) : r.isObject(e) && (e = JSON.stringify(e)), i.push(o(t) + "=" + o(e)); + })); + }), + (a = i.join("&")); + } + if (a) { + var s = e.indexOf("#"); + -1 !== s && (e = e.slice(0, s)), (e += (-1 === e.indexOf("?") ? "?" : "&") + a); + } + return e; + }; + }, + 99310: (e) => { + "use strict"; + e.exports = function (e, t) { + return t ? e.replace(/\/+$/, "") + "/" + t.replace(/^\/+/, "") : e; + }; + }, + 77491: (e, t, n) => { + "use strict"; + var r = n(44952); + e.exports = r.isStandardBrowserEnv() + ? { + write: function (e, t, n, o, a, i) { + var s = []; + s.push(e + "=" + encodeURIComponent(t)), + r.isNumber(n) && s.push("expires=" + new Date(n).toGMTString()), + r.isString(o) && s.push("path=" + o), + r.isString(a) && s.push("domain=" + a), + !0 === i && s.push("secure"), + (document.cookie = s.join("; ")); + }, + read: function (e) { + var t = document.cookie.match(new RegExp("(^|;\\s*)(" + e + ")=([^;]*)")); + return t ? decodeURIComponent(t[3]) : null; + }, + remove: function (e) { + this.write(e, "", Date.now() - 864e5); + }, + } + : { + write: function () {}, + read: function () { + return null; + }, + remove: function () {}, + }; + }, + 57451: (e) => { + "use strict"; + e.exports = function (e) { + return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(e); + }; + }, + 34319: (e, t, n) => { + "use strict"; + var r = n(44952); + e.exports = function (e) { + return r.isObject(e) && !0 === e.isAxiosError; + }; + }, + 943: (e, t, n) => { + "use strict"; + var r = n(44952); + e.exports = r.isStandardBrowserEnv() + ? (function () { + var e, + t = /(msie|trident)/i.test(navigator.userAgent), + n = document.createElement("a"); + function o(e) { + var r = e; + return ( + t && (n.setAttribute("href", r), (r = n.href)), + n.setAttribute("href", r), + { + href: n.href, + protocol: n.protocol ? n.protocol.replace(/:$/, "") : "", + host: n.host, + search: n.search ? n.search.replace(/^\?/, "") : "", + hash: n.hash ? n.hash.replace(/^#/, "") : "", + hostname: n.hostname, + port: n.port, + pathname: "/" === n.pathname.charAt(0) ? n.pathname : "/" + n.pathname, + } + ); + } + return ( + (e = o(window.location.href)), + function (t) { + var n = r.isString(t) ? o(t) : t; + return n.protocol === e.protocol && n.host === e.host; + } + ); + })() + : function () { + return !0; + }; + }, + 54218: (e, t, n) => { + "use strict"; + var r = n(44952); + e.exports = function (e, t) { + r.forEach(e, function (n, r) { + r !== t && r.toUpperCase() === t.toUpperCase() && ((e[t] = n), delete e[r]); + }); + }; + }, + 17462: (e, t, n) => { + "use strict"; + var r = n(44952), + o = [ + "age", + "authorization", + "content-length", + "content-type", + "etag", + "expires", + "from", + "host", + "if-modified-since", + "if-unmodified-since", + "last-modified", + "location", + "max-forwards", + "proxy-authorization", + "referer", + "retry-after", + "user-agent", + ]; + e.exports = function (e) { + var t, + n, + a, + i = {}; + return e + ? (r.forEach(e.split("\n"), function (e) { + if (((a = e.indexOf(":")), (t = r.trim(e.substr(0, a)).toLowerCase()), (n = r.trim(e.substr(a + 1))), t)) { + if (i[t] && o.indexOf(t) >= 0) return; + i[t] = "set-cookie" === t ? (i[t] ? i[t] : []).concat([n]) : i[t] ? i[t] + ", " + n : n; + } + }), + i) + : i; + }; + }, + 17885: (e) => { + "use strict"; + e.exports = function (e) { + return function (t) { + return e.apply(null, t); + }; + }; + }, + 72298: (e, t, n) => { + "use strict"; + var r = n(50120).version, + o = {}; + ["object", "boolean", "number", "function", "string", "symbol"].forEach(function (e, t) { + o[e] = function (n) { + return typeof n === e || "a" + (t < 1 ? "n " : " ") + e; + }; + }); + var a = {}; + (o.transitional = function (e, t, n) { + function o(e, t) { + return "[Axios v" + r + "] Transitional option '" + e + "'" + t + (n ? ". " + n : ""); + } + return function (n, r, i) { + if (!1 === e) throw new Error(o(r, " has been removed" + (t ? " in " + t : ""))); + return t && !a[r] && ((a[r] = !0), console.warn(o(r, " has been deprecated since v" + t + " and will be removed in the near future"))), !e || e(n, r, i); + }; + }), + (e.exports = { + assertOptions: function (e, t, n) { + if ("object" != typeof e) throw new TypeError("options must be an object"); + for (var r = Object.keys(e), o = r.length; o-- > 0; ) { + var a = r[o], + i = t[a]; + if (i) { + var s = e[a], + c = void 0 === s || i(s, a, e); + if (!0 !== c) throw new TypeError("option " + a + " must be " + c); + } else if (!0 !== n) throw Error("Unknown option " + a); + } + }, + validators: o, + }); + }, + 44952: (e, t, n) => { + "use strict"; + var r = n(44893), + o = Object.prototype.toString; + function a(e) { + return Array.isArray(e); + } + function i(e) { + return void 0 === e; + } + function s(e) { + return "[object ArrayBuffer]" === o.call(e); + } + function c(e) { + return null !== e && "object" == typeof e; + } + function l(e) { + if ("[object Object]" !== o.call(e)) return !1; + var t = Object.getPrototypeOf(e); + return null === t || t === Object.prototype; + } + function u(e) { + return "[object Function]" === o.call(e); + } + function d(e, t) { + if (null != e) + if (("object" != typeof e && (e = [e]), a(e))) for (var n = 0, r = e.length; n < r; n++) t.call(null, e[n], n, e); + else for (var o in e) Object.prototype.hasOwnProperty.call(e, o) && t.call(null, e[o], o, e); + } + e.exports = { + isArray: a, + isArrayBuffer: s, + isBuffer: function (e) { + return null !== e && !i(e) && null !== e.constructor && !i(e.constructor) && "function" == typeof e.constructor.isBuffer && e.constructor.isBuffer(e); + }, + isFormData: function (e) { + return "[object FormData]" === o.call(e); + }, + isArrayBufferView: function (e) { + return "undefined" != typeof ArrayBuffer && ArrayBuffer.isView ? ArrayBuffer.isView(e) : e && e.buffer && s(e.buffer); + }, + isString: function (e) { + return "string" == typeof e; + }, + isNumber: function (e) { + return "number" == typeof e; + }, + isObject: c, + isPlainObject: l, + isUndefined: i, + isDate: function (e) { + return "[object Date]" === o.call(e); + }, + isFile: function (e) { + return "[object File]" === o.call(e); + }, + isBlob: function (e) { + return "[object Blob]" === o.call(e); + }, + isFunction: u, + isStream: function (e) { + return c(e) && u(e.pipe); + }, + isURLSearchParams: function (e) { + return "[object URLSearchParams]" === o.call(e); + }, + isStandardBrowserEnv: function () { + return ("undefined" == typeof navigator || ("ReactNative" !== navigator.product && "NativeScript" !== navigator.product && "NS" !== navigator.product)) && "undefined" != typeof window && "undefined" != typeof document; + }, + forEach: d, + merge: function e() { + var t = {}; + function n(n, r) { + l(t[r]) && l(n) ? (t[r] = e(t[r], n)) : l(n) ? (t[r] = e({}, n)) : a(n) ? (t[r] = n.slice()) : (t[r] = n); + } + for (var r = 0, o = arguments.length; r < o; r++) d(arguments[r], n); + return t; + }, + extend: function (e, t, n) { + return ( + d(t, function (t, o) { + e[o] = n && "function" == typeof t ? r(t, n) : t; + }), + e + ); + }, + trim: function (e) { + return e.trim ? e.trim() : e.replace(/^\s+|\s+$/g, ""); + }, + stripBOM: function (e) { + return 65279 === e.charCodeAt(0) && (e = e.slice(1)), e; + }, + }; + }, + 85767: (e, t, n) => { + "use strict"; + n.d(t, { C: () => c }); + var r = n(13795), + o = n(11425), + a = n(17618), + i = n(49154); + function s(e) { + return { + create: function () { + return { + get: function (t) { + return e[t]; + }, + set: function (t, n) { + e[t] = n; + }, + }; + }, + }; + } + var c = (function () { + function e(t, n, o, c) { + var l, + u, + d, + p = this; + if ( + (void 0 === n && (n = e.defaultLocale), + (this.formatterCache = { number: {}, dateTime: {}, pluralRules: {} }), + (this.format = function (e) { + var t = p.formatToParts(e); + if (1 === t.length) return t[0].value; + var n = t.reduce(function (e, t) { + return e.length && t.type === i.du.literal && "string" == typeof e[e.length - 1] ? (e[e.length - 1] += t.value) : e.push(t.value), e; + }, []); + return n.length <= 1 ? n[0] || "" : n; + }), + (this.formatToParts = function (e) { + return (0, i.FK)(p.ast, p.locales, p.formatters, p.formats, e, void 0, p.message); + }), + (this.resolvedOptions = function () { + return { locale: p.resolvedLocale.toString() }; + }), + (this.getAst = function () { + return p.ast; + }), + (this.locales = n), + (this.resolvedLocale = e.resolveLocale(n)), + "string" == typeof t) + ) { + if (((this.message = t), !e.__parse)) throw new TypeError("IntlMessageFormat.__parse must be set to process `message` of type `string`"); + this.ast = e.__parse(t, { ignoreTag: null == c ? void 0 : c.ignoreTag, locale: this.resolvedLocale }); + } else this.ast = t; + if (!Array.isArray(this.ast)) throw new TypeError("A message must be provided as a String or AST."); + (this.formats = + ((u = e.formats), + (d = o) + ? Object.keys(u).reduce(function (e, t) { + var n, o; + return ( + (e[t] = + ((n = u[t]), + (o = d[t]) + ? (0, r.__assign)( + (0, r.__assign)((0, r.__assign)({}, n || {}), o || {}), + Object.keys(n).reduce(function (e, t) { + return (e[t] = (0, r.__assign)((0, r.__assign)({}, n[t]), o[t] || {})), e; + }, {}) + ) + : n)), + e + ); + }, (0, r.__assign)({}, u)) + : u)), + (this.formatters = + (c && c.formatters) || + (void 0 === (l = this.formatterCache) && (l = { number: {}, dateTime: {}, pluralRules: {} }), + { + getNumberFormat: (0, a.Z)( + function () { + for (var e, t = [], n = 0; n < arguments.length; n++) t[n] = arguments[n]; + return new ((e = Intl.NumberFormat).bind.apply(e, (0, r.__spreadArray)([void 0], t, !1)))(); + }, + { cache: s(l.number), strategy: a.A.variadic } + ), + getDateTimeFormat: (0, a.Z)( + function () { + for (var e, t = [], n = 0; n < arguments.length; n++) t[n] = arguments[n]; + return new ((e = Intl.DateTimeFormat).bind.apply(e, (0, r.__spreadArray)([void 0], t, !1)))(); + }, + { cache: s(l.dateTime), strategy: a.A.variadic } + ), + getPluralRules: (0, a.Z)( + function () { + for (var e, t = [], n = 0; n < arguments.length; n++) t[n] = arguments[n]; + return new ((e = Intl.PluralRules).bind.apply(e, (0, r.__spreadArray)([void 0], t, !1)))(); + }, + { cache: s(l.pluralRules), strategy: a.A.variadic } + ), + })); + } + return ( + Object.defineProperty(e, "defaultLocale", { + get: function () { + return e.memoizedDefaultLocale || (e.memoizedDefaultLocale = new Intl.NumberFormat().resolvedOptions().locale), e.memoizedDefaultLocale; + }, + enumerable: !1, + configurable: !0, + }), + (e.memoizedDefaultLocale = null), + (e.resolveLocale = function (e) { + var t = Intl.NumberFormat.supportedLocalesOf(e); + return t.length > 0 ? new Intl.Locale(t[0]) : new Intl.Locale("string" == typeof e ? e : e[0]); + }), + (e.__parse = o.Qc), + (e.formats = { + number: { integer: { maximumFractionDigits: 0 }, currency: { style: "currency" }, percent: { style: "percent" } }, + date: { + short: { month: "numeric", day: "numeric", year: "2-digit" }, + medium: { month: "short", day: "numeric", year: "numeric" }, + long: { month: "long", day: "numeric", year: "numeric" }, + full: { weekday: "long", month: "long", day: "numeric", year: "numeric" }, + }, + time: { + short: { hour: "numeric", minute: "numeric" }, + medium: { hour: "numeric", minute: "numeric", second: "numeric" }, + long: { hour: "numeric", minute: "numeric", second: "numeric", timeZoneName: "short" }, + full: { hour: "numeric", minute: "numeric", second: "numeric", timeZoneName: "short" }, + }, + }), + e + ); + })(); + }, + 91842: (e, t, n) => { + "use strict"; + n.d(t, { C8: () => i, HR: () => c, YR: () => s, jK: () => r, u_: () => a }); + var r, + o = n(13795); + !(function (e) { + (e.MISSING_VALUE = "MISSING_VALUE"), (e.INVALID_VALUE = "INVALID_VALUE"), (e.MISSING_INTL_API = "MISSING_INTL_API"); + })(r || (r = {})); + var a = (function (e) { + function t(t, n, r) { + var o = e.call(this, t) || this; + return (o.code = n), (o.originalMessage = r), o; + } + return ( + (0, o.__extends)(t, e), + (t.prototype.toString = function () { + return "[formatjs Error: ".concat(this.code, "] ").concat(this.message); + }), + t + ); + })(Error), + i = (function (e) { + function t(t, n, o, a) { + return e.call(this, 'Invalid values for "'.concat(t, '": "').concat(n, '". Options are "').concat(Object.keys(o).join('", "'), '"'), r.INVALID_VALUE, a) || this; + } + return (0, o.__extends)(t, e), t; + })(a), + s = (function (e) { + function t(t, n, o) { + return e.call(this, 'Value for "'.concat(t, '" must be of type ').concat(n), r.INVALID_VALUE, o) || this; + } + return (0, o.__extends)(t, e), t; + })(a), + c = (function (e) { + function t(t, n) { + return e.call(this, 'The intl string context variable "'.concat(t, '" was not provided to the string "').concat(n, '"'), r.MISSING_VALUE, n) || this; + } + return (0, o.__extends)(t, e), t; + })(a); + }, + 49154: (e, t, n) => { + "use strict"; + n.d(t, { FK: () => s, Gt: () => i, du: () => r }); + var r, + o = n(11425), + a = n(91842); + function i(e) { + return "function" == typeof e; + } + function s(e, t, n, c, l, u, d) { + if (1 === e.length && (0, o.O4)(e[0])) return [{ type: r.literal, value: e[0].value }]; + for (var p = [], f = 0, m = e; f < m.length; f++) { + var h = m[f]; + if ((0, o.O4)(h)) p.push({ type: r.literal, value: h.value }); + else if ((0, o.yx)(h)) "number" == typeof u && p.push({ type: r.literal, value: n.getNumberFormat(t).format(u) }); + else { + var v = h.value; + if (!l || !(v in l)) throw new a.HR(v, d); + var y = l[v]; + if ((0, o.VG)(h)) (y && "string" != typeof y && "number" != typeof y) || (y = "string" == typeof y || "number" == typeof y ? String(y) : ""), p.push({ type: "string" == typeof y ? r.literal : r.object, value: y }); + else if ((0, o.rp)(h)) { + var g = "string" == typeof h.style ? c.date[h.style] : (0, o.Ii)(h.style) ? h.style.parsedOptions : void 0; + p.push({ type: r.literal, value: n.getDateTimeFormat(t, g).format(y) }); + } else if ((0, o.pe)(h)) (g = "string" == typeof h.style ? c.time[h.style] : (0, o.Ii)(h.style) ? h.style.parsedOptions : c.time.medium), p.push({ type: r.literal, value: n.getDateTimeFormat(t, g).format(y) }); + else if ((0, o.uf)(h)) + (g = "string" == typeof h.style ? c.number[h.style] : (0, o.Wh)(h.style) ? h.style.parsedOptions : void 0) && g.scale && (y *= g.scale || 1), p.push({ type: r.literal, value: n.getNumberFormat(t, g).format(y) }); + else { + if ((0, o.HI)(h)) { + var b = h.children, + E = h.value, + D = l[E]; + if (!i(D)) throw new a.YR(E, "function", d); + var C = D( + s(b, t, n, c, l, u).map(function (e) { + return e.value; + }) + ); + Array.isArray(C) || (C = [C]), + p.push.apply( + p, + C.map(function (e) { + return { type: "string" == typeof e ? r.literal : r.object, value: e }; + }) + ); + } + if ((0, o.Wi)(h)) { + if (!(w = h.options[y] || h.options.other)) throw new a.C8(h.value, y, Object.keys(h.options), d); + p.push.apply(p, s(w.value, t, n, c, l)); + } else if ((0, o.Jo)(h)) { + var w; + if (!(w = h.options["=".concat(y)])) { + if (!Intl.PluralRules) throw new a.u_('Intl.PluralRules is not available in this environment.\nTry polyfilling it using "@formatjs/intl-pluralrules"\n', a.jK.MISSING_INTL_API, d); + var S = n.getPluralRules(t, { type: h.pluralType }).select(y - (h.offset || 0)); + w = h.options[S] || h.options.other; + } + if (!w) throw new a.C8(h.value, y, Object.keys(h.options), d); + p.push.apply(p, s(w.value, t, n, c, l, y - (h.offset || 0))); + } + } + } + } + return (A = p).length < 2 + ? A + : A.reduce(function (e, t) { + var n = e[e.length - 1]; + return n && n.type === r.literal && t.type === r.literal ? (n.value += t.value) : e.push(t), e; + }, []); + var A; + } + !(function (e) { + (e[(e.literal = 0)] = "literal"), (e[(e.object = 1)] = "object"); + })(r || (r = {})); + }, + 69050: (e, t, n) => { + "use strict"; + n.d(t, { ZP: () => p, _y: () => d, zt: () => u }); + var r = n(13795), + o = n(23469), + a = n(608), + i = n.n(a), + s = n(53268), + c = o.createContext(null), + l = c.Consumer, + u = c.Provider, + d = c; + function p(e, t) { + var n, + a = t || {}, + c = a.intlPropName, + u = void 0 === c ? "intl" : c, + d = a.forwardRef, + p = void 0 !== d && d, + f = a.enforceContext, + m = void 0 === f || f, + h = function (t) { + return o.createElement(l, null, function (n) { + var a; + m && (0, s.lq)(n); + var i = (((a = {})[u] = n), a); + return o.createElement(e, (0, r.__assign)({}, t, i, { ref: p ? t.forwardedRef : null })); + }); + }; + return ( + (h.displayName = "injectIntl(".concat((n = e).displayName || n.name || "Component", ")")), + (h.WrappedComponent = e), + p + ? i()( + o.forwardRef(function (e, t) { + return o.createElement(h, (0, r.__assign)({}, e, { forwardedRef: t })); + }), + e + ) + : i()(h, e) + ); + } + }, + 28386: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => l }); + var r = n(13795), + o = n(23469), + a = n(76951), + i = n(53268); + function s(e) { + var t = (0, a.Z)(), + n = t.formatMessage, + r = t.textComponent, + i = void 0 === r ? o.Fragment : r, + s = e.id, + c = e.description, + l = e.defaultMessage, + u = e.values, + d = e.children, + p = e.tagName, + f = void 0 === p ? i : p, + m = n({ id: s, description: c, defaultMessage: l }, u, { ignoreTag: e.ignoreTag }); + return "function" == typeof d ? d(Array.isArray(m) ? m : [m]) : f ? o.createElement(f, null, o.Children.toArray(m)) : o.createElement(o.Fragment, null, m); + } + s.displayName = "FormattedMessage"; + var c = o.memo(s, function (e, t) { + var n = e.values, + o = (0, r.__rest)(e, ["values"]), + a = t.values, + s = (0, r.__rest)(t, ["values"]); + return (0, i.wU)(a, n) && (0, i.wU)(o, s); + }); + c.displayName = "MemoizedFormattedMessage"; + const l = c; + }, + 76951: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => i }); + var r = n(23469), + o = n(69050), + a = n(53268); + function i() { + var e = r.useContext(o._y); + return (0, a.lq)(e), e; + } + }, + 53268: (e, t, n) => { + "use strict"; + n.d(t, { Z0: () => c, dt: () => l, lq: () => s, wU: () => u }); + var r = n(13795), + o = n(23469), + a = n(52167), + i = n(956); + function s(e) { + (0, a.kG)(e, "[React Intl] Could not find required `intl` object. needs to exist in the component ancestry."); + } + var c = (0, r.__assign)((0, r.__assign)({}, i.Z0), { textComponent: o.Fragment }); + function l(e) { + return function (t) { + return e(o.Children.toArray(t)); + }; + } + function u(e, t) { + if (e === t) return !0; + if (!e || !t) return !1; + var n = Object.keys(e), + r = Object.keys(t), + o = n.length; + if (r.length !== o) return !1; + for (var a = 0; a < o; a++) { + var i = n[a]; + if (e[i] !== t[i] || !Object.prototype.hasOwnProperty.call(t, i)) return !1; + } + return !0; + } + }, + 52167: (e, t, n) => { + "use strict"; + function r(e, t, n) { + if ((void 0 === n && (n = Error), !e)) throw new n(t); + } + n.d(t, { kG: () => r }); + }, + 23840: (e, t) => { + "use strict"; + var n = 60103, + r = 60106, + o = 60107, + a = 60108, + i = 60114, + s = 60109, + c = 60110, + l = 60112, + u = 60113, + d = 60120, + p = 60115, + f = 60116; + if ("function" == typeof Symbol && Symbol.for) { + var m = Symbol.for; + (n = m("react.element")), + (r = m("react.portal")), + (o = m("react.fragment")), + (a = m("react.strict_mode")), + (i = m("react.profiler")), + (s = m("react.provider")), + (c = m("react.context")), + (l = m("react.forward_ref")), + (u = m("react.suspense")), + (d = m("react.suspense_list")), + (p = m("react.memo")), + (f = m("react.lazy")), + m("react.block"), + m("react.server.block"), + m("react.fundamental"), + m("react.debug_trace_mode"), + m("react.legacy_hidden"); + } + t.isContextConsumer = function (e) { + return ( + (function (e) { + if ("object" == typeof e && null !== e) { + var t = e.$$typeof; + switch (t) { + case n: + switch ((e = e.type)) { + case o: + case i: + case a: + case u: + case d: + return e; + default: + switch ((e = e && e.$$typeof)) { + case c: + case l: + case f: + case p: + case s: + return e; + default: + return t; + } + } + case r: + return t; + } + } + })(e) === c + ); + }; + }, + 49718: (e, t, n) => { + "use strict"; + e.exports = n(23840); + }, + 2442: (e, t, n) => { + "use strict"; + n.d(t, { zt: () => d, dC: () => K.unstable_batchedUpdates, $j: () => H, AS: () => J, gR: () => q, fw: () => W }); + var r = n(23469), + o = n.n(r), + a = (n(47776), o().createContext(null)), + i = function (e) { + e(); + }, + s = function () { + return i; + }, + c = { + notify: function () {}, + get: function () { + return []; + }, + }; + function l(e, t) { + var n, + r = c; + function o() { + i.onStateChange && i.onStateChange(); + } + function a() { + n || + ((n = t ? t.addNestedSub(o) : e.subscribe(o)), + (r = (function () { + var e = s(), + t = null, + n = null; + return { + clear: function () { + (t = null), (n = null); + }, + notify: function () { + e(function () { + for (var e = t; e; ) e.callback(), (e = e.next); + }); + }, + get: function () { + for (var e = [], n = t; n; ) e.push(n), (n = n.next); + return e; + }, + subscribe: function (e) { + var r = !0, + o = (n = { callback: e, next: null, prev: n }); + return ( + o.prev ? (o.prev.next = o) : (t = o), + function () { + r && null !== t && ((r = !1), o.next ? (o.next.prev = o.prev) : (n = o.prev), o.prev ? (o.prev.next = o.next) : (t = o.next)); + } + ); + }, + }; + })())); + } + var i = { + addNestedSub: function (e) { + return a(), r.subscribe(e); + }, + notifyNestedSubs: function () { + r.notify(); + }, + handleChangeWrapper: o, + isSubscribed: function () { + return Boolean(n); + }, + trySubscribe: a, + tryUnsubscribe: function () { + n && (n(), (n = void 0), r.clear(), (r = c)); + }, + getListeners: function () { + return r; + }, + }; + return i; + } + var u = "undefined" != typeof window && void 0 !== window.document && void 0 !== window.document.createElement ? r.useLayoutEffect : r.useEffect; + const d = function (e) { + var t = e.store, + n = e.context, + i = e.children, + s = (0, r.useMemo)( + function () { + var e = l(t); + return (e.onStateChange = e.notifyNestedSubs), { store: t, subscription: e }; + }, + [t] + ), + c = (0, r.useMemo)( + function () { + return t.getState(); + }, + [t] + ); + u( + function () { + var e = s.subscription; + return ( + e.trySubscribe(), + c !== t.getState() && e.notifyNestedSubs(), + function () { + e.tryUnsubscribe(), (e.onStateChange = null); + } + ); + }, + [s, c] + ); + var d = n || a; + return o().createElement(d.Provider, { value: s }, i); + }; + function p() { + return ( + (p = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + p.apply(this, arguments) + ); + } + function f(e, t) { + if (null == e) return {}; + var n, + r, + o = {}, + a = Object.keys(e); + for (r = 0; r < a.length; r++) (n = a[r]), t.indexOf(n) >= 0 || (o[n] = e[n]); + return o; + } + var m = n(608), + h = n.n(m), + v = n(49718), + y = ["getDisplayName", "methodName", "renderCountProp", "shouldHandleStateChanges", "storeKey", "withRef", "forwardRef", "context"], + g = ["reactReduxForwardedRef"], + b = [], + E = [null, null]; + function D(e, t) { + var n = e[1]; + return [t.payload, n + 1]; + } + function C(e, t, n) { + u(function () { + return e.apply(void 0, t); + }, n); + } + function w(e, t, n, r, o, a, i) { + (e.current = r), (t.current = o), (n.current = !1), a.current && ((a.current = null), i()); + } + function S(e, t, n, r, o, a, i, s, c, l) { + if (e) { + var u = !1, + d = null, + p = function () { + if (!u) { + var e, + n, + p = t.getState(); + try { + e = r(p, o.current); + } catch (e) { + (n = e), (d = e); + } + n || (d = null), e === a.current ? i.current || c() : ((a.current = e), (s.current = e), (i.current = !0), l({ type: "STORE_UPDATED", payload: { error: n } })); + } + }; + return ( + (n.onStateChange = p), + n.trySubscribe(), + p(), + function () { + if (((u = !0), n.tryUnsubscribe(), (n.onStateChange = null), d)) throw d; + } + ); + } + } + var A = function () { + return [null, 0]; + }; + function k(e, t) { + void 0 === t && (t = {}); + var n = t, + i = n.getDisplayName, + s = + void 0 === i + ? function (e) { + return "ConnectAdvanced(" + e + ")"; + } + : i, + c = n.methodName, + u = void 0 === c ? "connectAdvanced" : c, + d = n.renderCountProp, + m = void 0 === d ? void 0 : d, + k = n.shouldHandleStateChanges, + _ = void 0 === k || k, + T = n.storeKey, + I = void 0 === T ? "store" : T, + O = (n.withRef, n.forwardRef), + F = void 0 !== O && O, + x = n.context, + N = void 0 === x ? a : x, + R = f(n, y), + L = N; + return function (t) { + var n = t.displayName || t.name || "Component", + a = s(n), + i = p({}, R, { getDisplayName: s, methodName: u, renderCountProp: m, shouldHandleStateChanges: _, storeKey: I, displayName: a, wrappedComponentName: n, WrappedComponent: t }), + c = R.pure, + d = c + ? r.useMemo + : function (e) { + return e(); + }; + function y(n) { + var a = (0, r.useMemo)( + function () { + var e = n.reactReduxForwardedRef, + t = f(n, g); + return [n.context, e, t]; + }, + [n] + ), + s = a[0], + c = a[1], + u = a[2], + m = (0, r.useMemo)( + function () { + return s && s.Consumer && (0, v.isContextConsumer)(o().createElement(s.Consumer, null)) ? s : L; + }, + [s, L] + ), + h = (0, r.useContext)(m), + y = Boolean(n.store) && Boolean(n.store.getState) && Boolean(n.store.dispatch); + Boolean(h) && Boolean(h.store); + var k = y ? n.store : h.store, + T = (0, r.useMemo)( + function () { + return (function (t) { + return e(t.dispatch, i); + })(k); + }, + [k] + ), + I = (0, r.useMemo)( + function () { + if (!_) return E; + var e = l(k, y ? null : h.subscription), + t = e.notifyNestedSubs.bind(e); + return [e, t]; + }, + [k, y, h] + ), + O = I[0], + F = I[1], + x = (0, r.useMemo)( + function () { + return y ? h : p({}, h, { subscription: O }); + }, + [y, h, O] + ), + N = (0, r.useReducer)(D, b, A), + R = N[0][0], + M = N[1]; + if (R && R.error) throw R.error; + var P = (0, r.useRef)(), + j = (0, r.useRef)(u), + B = (0, r.useRef)(), + Z = (0, r.useRef)(!1), + U = d( + function () { + return B.current && u === j.current ? B.current : T(k.getState(), u); + }, + [k, R, u] + ); + C(w, [j, P, Z, u, U, B, F]), C(S, [_, k, O, T, j, P, Z, B, F, M], [k, O, T]); + var z = (0, r.useMemo)( + function () { + return o().createElement(t, p({}, U, { ref: c })); + }, + [c, t, U] + ); + return (0, r.useMemo)( + function () { + return _ ? o().createElement(m.Provider, { value: x }, z) : z; + }, + [m, z, x] + ); + } + var k = c ? o().memo(y) : y; + if (((k.WrappedComponent = t), (k.displayName = y.displayName = a), F)) { + var T = o().forwardRef(function (e, t) { + return o().createElement(k, p({}, e, { reactReduxForwardedRef: t })); + }); + return (T.displayName = a), (T.WrappedComponent = t), h()(T, t); + } + return h()(k, t); + }; + } + function _(e, t) { + return e === t ? 0 !== e || 0 !== t || 1 / e == 1 / t : e != e && t != t; + } + function T(e, t) { + if (_(e, t)) return !0; + if ("object" != typeof e || null === e || "object" != typeof t || null === t) return !1; + var n = Object.keys(e), + r = Object.keys(t); + if (n.length !== r.length) return !1; + for (var o = 0; o < n.length; o++) if (!Object.prototype.hasOwnProperty.call(t, n[o]) || !_(e[n[o]], t[n[o]])) return !1; + return !0; + } + function I(e) { + return function (t, n) { + var r = e(t, n); + function o() { + return r; + } + return (o.dependsOnOwnProps = !1), o; + }; + } + function O(e) { + return null !== e.dependsOnOwnProps && void 0 !== e.dependsOnOwnProps ? Boolean(e.dependsOnOwnProps) : 1 !== e.length; + } + function F(e, t) { + return function (t, n) { + n.displayName; + var r = function (e, t) { + return r.dependsOnOwnProps ? r.mapToProps(e, t) : r.mapToProps(e); + }; + return ( + (r.dependsOnOwnProps = !0), + (r.mapToProps = function (t, n) { + (r.mapToProps = e), (r.dependsOnOwnProps = O(e)); + var o = r(t, n); + return "function" == typeof o && ((r.mapToProps = o), (r.dependsOnOwnProps = O(o)), (o = r(t, n))), o; + }), + r + ); + }; + } + const x = [ + function (e) { + return "function" == typeof e ? F(e) : void 0; + }, + function (e) { + return e + ? void 0 + : I(function (e) { + return { dispatch: e }; + }); + }, + function (e) { + return e && "object" == typeof e + ? I(function (t) { + return (function (e, t) { + var n = {}, + r = function (r) { + var o = e[r]; + "function" == typeof o && + (n[r] = function () { + return t(o.apply(void 0, arguments)); + }); + }; + for (var o in e) r(o); + return n; + })(e, t); + }) + : void 0; + }, + ], + N = [ + function (e) { + return "function" == typeof e ? F(e) : void 0; + }, + function (e) { + return e + ? void 0 + : I(function () { + return {}; + }); + }, + ]; + function R(e, t, n) { + return p({}, n, e, t); + } + const L = [ + function (e) { + return "function" == typeof e + ? (function (e) { + return function (t, n) { + n.displayName; + var r, + o = n.pure, + a = n.areMergedPropsEqual, + i = !1; + return function (t, n, s) { + var c = e(t, n, s); + return i ? (o && a(c, r)) || (r = c) : ((i = !0), (r = c)), r; + }; + }; + })(e) + : void 0; + }, + function (e) { + return e + ? void 0 + : function () { + return R; + }; + }, + ]; + var M = ["initMapStateToProps", "initMapDispatchToProps", "initMergeProps"]; + function P(e, t, n, r) { + return function (o, a) { + return n(e(o, a), t(r, a), a); + }; + } + function j(e, t, n, r, o) { + var a, + i, + s, + c, + l, + u = o.areStatesEqual, + d = o.areOwnPropsEqual, + p = o.areStatePropsEqual, + f = !1; + return function (o, m) { + return f + ? (function (o, f) { + var m, + h, + v = !d(f, i), + y = !u(o, a); + return ( + (a = o), + (i = f), + v && y + ? ((s = e(a, i)), t.dependsOnOwnProps && (c = t(r, i)), (l = n(s, c, i))) + : v + ? (e.dependsOnOwnProps && (s = e(a, i)), t.dependsOnOwnProps && (c = t(r, i)), (l = n(s, c, i))) + : y + ? ((m = e(a, i)), (h = !p(m, s)), (s = m), h && (l = n(s, c, i)), l) + : l + ); + })(o, m) + : ((s = e((a = o), (i = m))), (c = t(r, i)), (l = n(s, c, i)), (f = !0), l); + }; + } + function B(e, t) { + var n = t.initMapStateToProps, + r = t.initMapDispatchToProps, + o = t.initMergeProps, + a = f(t, M), + i = n(e, a), + s = r(e, a), + c = o(e, a); + return (a.pure ? j : P)(i, s, c, e, a); + } + var Z = ["pure", "areStatesEqual", "areOwnPropsEqual", "areStatePropsEqual", "areMergedPropsEqual"]; + function U(e, t, n) { + for (var r = t.length - 1; r >= 0; r--) { + var o = t[r](e); + if (o) return o; + } + return function (t, r) { + throw new Error("Invalid value of type " + typeof e + " for " + n + " argument when connecting component " + r.wrappedComponentName + "."); + }; + } + function z(e, t) { + return e === t; + } + function V(e) { + var t = void 0 === e ? {} : e, + n = t.connectHOC, + r = void 0 === n ? k : n, + o = t.mapStateToPropsFactories, + a = void 0 === o ? N : o, + i = t.mapDispatchToPropsFactories, + s = void 0 === i ? x : i, + c = t.mergePropsFactories, + l = void 0 === c ? L : c, + u = t.selectorFactory, + d = void 0 === u ? B : u; + return function (e, t, n, o) { + void 0 === o && (o = {}); + var i = o, + c = i.pure, + u = void 0 === c || c, + m = i.areStatesEqual, + h = void 0 === m ? z : m, + v = i.areOwnPropsEqual, + y = void 0 === v ? T : v, + g = i.areStatePropsEqual, + b = void 0 === g ? T : g, + E = i.areMergedPropsEqual, + D = void 0 === E ? T : E, + C = f(i, Z), + w = U(e, a, "mapStateToProps"), + S = U(t, s, "mapDispatchToProps"), + A = U(n, l, "mergeProps"); + return r( + d, + p( + { + methodName: "connect", + getDisplayName: function (e) { + return "Connect(" + e + ")"; + }, + shouldHandleStateChanges: Boolean(e), + initMapStateToProps: w, + initMapDispatchToProps: S, + initMergeProps: A, + pure: u, + areStatesEqual: h, + areOwnPropsEqual: y, + areStatePropsEqual: b, + areMergedPropsEqual: D, + }, + C + ) + ); + }; + } + const H = V(); + function G() { + return (0, r.useContext)(a); + } + function W(e) { + void 0 === e && (e = a); + var t = + e === a + ? G + : function () { + return (0, r.useContext)(e); + }; + return function () { + return t().store; + }; + } + var Q = W(); + function J(e) { + void 0 === e && (e = a); + var t = e === a ? Q : W(e); + return function () { + return t().dispatch; + }; + } + var Y = function (e, t) { + return e === t; + }; + function q(e) { + void 0 === e && (e = a); + var t = + e === a + ? G + : function () { + return (0, r.useContext)(e); + }; + return function (e, n) { + void 0 === n && (n = Y); + var o = t(), + a = (function (e, t, n, o) { + var a, + i = (0, r.useReducer)(function (e) { + return e + 1; + }, 0)[1], + s = (0, r.useMemo)( + function () { + return l(n, o); + }, + [n, o] + ), + c = (0, r.useRef)(), + d = (0, r.useRef)(), + p = (0, r.useRef)(), + f = (0, r.useRef)(), + m = n.getState(); + try { + if (e !== d.current || m !== p.current || c.current) { + var h = e(m); + a = void 0 !== f.current && t(h, f.current) ? f.current : h; + } else a = f.current; + } catch (e) { + throw (c.current && (e.message += "\nThe error may be correlated with this previous error:\n" + c.current.stack + "\n\n"), e); + } + return ( + u(function () { + (d.current = e), (p.current = m), (f.current = a), (c.current = void 0); + }), + u( + function () { + function e() { + try { + var e = n.getState(); + if (e === p.current) return; + var r = d.current(e); + if (t(r, f.current)) return; + (f.current = r), (p.current = e); + } catch (e) { + c.current = e; + } + i(); + } + return ( + (s.onStateChange = e), + s.trySubscribe(), + e(), + function () { + return s.tryUnsubscribe(); + } + ); + }, + [n, s] + ), + a + ); + })(e, n, o.store, o.subscription); + return (0, r.useDebugValue)(a), a; + }; + } + var X, + K = n(23613); + (X = K.unstable_batchedUpdates), (i = X); + }, + 81606: (e) => { + var t = (function (e) { + "use strict"; + var t, + n = Object.prototype, + r = n.hasOwnProperty, + o = "function" == typeof Symbol ? Symbol : {}, + a = o.iterator || "@@iterator", + i = o.asyncIterator || "@@asyncIterator", + s = o.toStringTag || "@@toStringTag"; + function c(e, t, n) { + return Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }), e[t]; + } + try { + c({}, ""); + } catch (e) { + c = function (e, t, n) { + return (e[t] = n); + }; + } + function l(e, t, n, r) { + var o = t && t.prototype instanceof v ? t : v, + a = Object.create(o.prototype), + i = new T(r || []); + return ( + (a._invoke = (function (e, t, n) { + var r = d; + return function (o, a) { + if (r === f) throw new Error("Generator is already running"); + if (r === m) { + if ("throw" === o) throw a; + return O(); + } + for (n.method = o, n.arg = a; ; ) { + var i = n.delegate; + if (i) { + var s = A(i, n); + if (s) { + if (s === h) continue; + return s; + } + } + if ("next" === n.method) n.sent = n._sent = n.arg; + else if ("throw" === n.method) { + if (r === d) throw ((r = m), n.arg); + n.dispatchException(n.arg); + } else "return" === n.method && n.abrupt("return", n.arg); + r = f; + var c = u(e, t, n); + if ("normal" === c.type) { + if (((r = n.done ? m : p), c.arg === h)) continue; + return { value: c.arg, done: n.done }; + } + "throw" === c.type && ((r = m), (n.method = "throw"), (n.arg = c.arg)); + } + }; + })(e, n, i)), + a + ); + } + function u(e, t, n) { + try { + return { type: "normal", arg: e.call(t, n) }; + } catch (e) { + return { type: "throw", arg: e }; + } + } + e.wrap = l; + var d = "suspendedStart", + p = "suspendedYield", + f = "executing", + m = "completed", + h = {}; + function v() {} + function y() {} + function g() {} + var b = {}; + b[a] = function () { + return this; + }; + var E = Object.getPrototypeOf, + D = E && E(E(I([]))); + D && D !== n && r.call(D, a) && (b = D); + var C = (g.prototype = v.prototype = Object.create(b)); + function w(e) { + ["next", "throw", "return"].forEach(function (t) { + c(e, t, function (e) { + return this._invoke(t, e); + }); + }); + } + function S(e, t) { + function n(o, a, i, s) { + var c = u(e[o], e, a); + if ("throw" !== c.type) { + var l = c.arg, + d = l.value; + return d && "object" == typeof d && r.call(d, "__await") + ? t.resolve(d.__await).then( + function (e) { + n("next", e, i, s); + }, + function (e) { + n("throw", e, i, s); + } + ) + : t.resolve(d).then( + function (e) { + (l.value = e), i(l); + }, + function (e) { + return n("throw", e, i, s); + } + ); + } + s(c.arg); + } + var o; + this._invoke = function (e, r) { + function a() { + return new t(function (t, o) { + n(e, r, t, o); + }); + } + return (o = o ? o.then(a, a) : a()); + }; + } + function A(e, n) { + var r = e.iterator[n.method]; + if (r === t) { + if (((n.delegate = null), "throw" === n.method)) { + if (e.iterator.return && ((n.method = "return"), (n.arg = t), A(e, n), "throw" === n.method)) return h; + (n.method = "throw"), (n.arg = new TypeError("The iterator does not provide a 'throw' method")); + } + return h; + } + var o = u(r, e.iterator, n.arg); + if ("throw" === o.type) return (n.method = "throw"), (n.arg = o.arg), (n.delegate = null), h; + var a = o.arg; + return a + ? a.done + ? ((n[e.resultName] = a.value), (n.next = e.nextLoc), "return" !== n.method && ((n.method = "next"), (n.arg = t)), (n.delegate = null), h) + : a + : ((n.method = "throw"), (n.arg = new TypeError("iterator result is not an object")), (n.delegate = null), h); + } + function k(e) { + var t = { tryLoc: e[0] }; + 1 in e && (t.catchLoc = e[1]), 2 in e && ((t.finallyLoc = e[2]), (t.afterLoc = e[3])), this.tryEntries.push(t); + } + function _(e) { + var t = e.completion || {}; + (t.type = "normal"), delete t.arg, (e.completion = t); + } + function T(e) { + (this.tryEntries = [{ tryLoc: "root" }]), e.forEach(k, this), this.reset(!0); + } + function I(e) { + if (e) { + var n = e[a]; + if (n) return n.call(e); + if ("function" == typeof e.next) return e; + if (!isNaN(e.length)) { + var o = -1, + i = function n() { + for (; ++o < e.length; ) if (r.call(e, o)) return (n.value = e[o]), (n.done = !1), n; + return (n.value = t), (n.done = !0), n; + }; + return (i.next = i); + } + } + return { next: O }; + } + function O() { + return { value: t, done: !0 }; + } + return ( + (y.prototype = C.constructor = g), + (g.constructor = y), + (y.displayName = c(g, s, "GeneratorFunction")), + (e.isGeneratorFunction = function (e) { + var t = "function" == typeof e && e.constructor; + return !!t && (t === y || "GeneratorFunction" === (t.displayName || t.name)); + }), + (e.mark = function (e) { + return Object.setPrototypeOf ? Object.setPrototypeOf(e, g) : ((e.__proto__ = g), c(e, s, "GeneratorFunction")), (e.prototype = Object.create(C)), e; + }), + (e.awrap = function (e) { + return { __await: e }; + }), + w(S.prototype), + (S.prototype[i] = function () { + return this; + }), + (e.AsyncIterator = S), + (e.async = function (t, n, r, o, a) { + void 0 === a && (a = Promise); + var i = new S(l(t, n, r, o), a); + return e.isGeneratorFunction(n) + ? i + : i.next().then(function (e) { + return e.done ? e.value : i.next(); + }); + }), + w(C), + c(C, s, "Generator"), + (C[a] = function () { + return this; + }), + (C.toString = function () { + return "[object Generator]"; + }), + (e.keys = function (e) { + var t = []; + for (var n in e) t.push(n); + return ( + t.reverse(), + function n() { + for (; t.length; ) { + var r = t.pop(); + if (r in e) return (n.value = r), (n.done = !1), n; + } + return (n.done = !0), n; + } + ); + }), + (e.values = I), + (T.prototype = { + constructor: T, + reset: function (e) { + if (((this.prev = 0), (this.next = 0), (this.sent = this._sent = t), (this.done = !1), (this.delegate = null), (this.method = "next"), (this.arg = t), this.tryEntries.forEach(_), !e)) + for (var n in this) "t" === n.charAt(0) && r.call(this, n) && !isNaN(+n.slice(1)) && (this[n] = t); + }, + stop: function () { + this.done = !0; + var e = this.tryEntries[0].completion; + if ("throw" === e.type) throw e.arg; + return this.rval; + }, + dispatchException: function (e) { + if (this.done) throw e; + var n = this; + function o(r, o) { + return (s.type = "throw"), (s.arg = e), (n.next = r), o && ((n.method = "next"), (n.arg = t)), !!o; + } + for (var a = this.tryEntries.length - 1; a >= 0; --a) { + var i = this.tryEntries[a], + s = i.completion; + if ("root" === i.tryLoc) return o("end"); + if (i.tryLoc <= this.prev) { + var c = r.call(i, "catchLoc"), + l = r.call(i, "finallyLoc"); + if (c && l) { + if (this.prev < i.catchLoc) return o(i.catchLoc, !0); + if (this.prev < i.finallyLoc) return o(i.finallyLoc); + } else if (c) { + if (this.prev < i.catchLoc) return o(i.catchLoc, !0); + } else { + if (!l) throw new Error("try statement without catch or finally"); + if (this.prev < i.finallyLoc) return o(i.finallyLoc); + } + } + } + }, + abrupt: function (e, t) { + for (var n = this.tryEntries.length - 1; n >= 0; --n) { + var o = this.tryEntries[n]; + if (o.tryLoc <= this.prev && r.call(o, "finallyLoc") && this.prev < o.finallyLoc) { + var a = o; + break; + } + } + a && ("break" === e || "continue" === e) && a.tryLoc <= t && t <= a.finallyLoc && (a = null); + var i = a ? a.completion : {}; + return (i.type = e), (i.arg = t), a ? ((this.method = "next"), (this.next = a.finallyLoc), h) : this.complete(i); + }, + complete: function (e, t) { + if ("throw" === e.type) throw e.arg; + return ( + "break" === e.type || "continue" === e.type ? (this.next = e.arg) : "return" === e.type ? ((this.rval = this.arg = e.arg), (this.method = "return"), (this.next = "end")) : "normal" === e.type && t && (this.next = t), h + ); + }, + finish: function (e) { + for (var t = this.tryEntries.length - 1; t >= 0; --t) { + var n = this.tryEntries[t]; + if (n.finallyLoc === e) return this.complete(n.completion, n.afterLoc), _(n), h; + } + }, + catch: function (e) { + for (var t = this.tryEntries.length - 1; t >= 0; --t) { + var n = this.tryEntries[t]; + if (n.tryLoc === e) { + var r = n.completion; + if ("throw" === r.type) { + var o = r.arg; + _(n); + } + return o; + } + } + throw new Error("illegal catch attempt"); + }, + delegateYield: function (e, n, r) { + return (this.delegate = { iterator: I(e), resultName: n, nextLoc: r }), "next" === this.method && (this.arg = t), h; + }, + }), + e + ); + })(e.exports); + try { + regeneratorRuntime = t; + } catch (e) { + Function("r", "regeneratorRuntime = r")(t); + } + }, + 633: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => a }); + var r = n(22086); + function o(e) { + return e === Object(e) && 0 !== Object.keys(e).length; + } + const a = function (e, t) { + if (o(t) && "function" == typeof t.behavior) return t.behavior((0, r.Z)(e, t)); + var n = (function (e) { + return !1 === e ? { block: "end", inline: "nearest" } : o(e) ? e : { block: "start", inline: "nearest" }; + })(t); + return (function (e, t) { + void 0 === t && (t = "auto"); + var n = "scrollBehavior" in document.body.style; + e.forEach(function (e) { + var r = e.el, + o = e.top, + a = e.left; + r.scroll && n ? r.scroll({ top: o, left: a, behavior: t }) : ((r.scrollTop = o), (r.scrollLeft = a)); + }); + })((0, r.Z)(e, n), n.behavior); + }; + }, + 34171: (e, t, n) => { + const r = Symbol("SemVer ANY"); + class o { + static get ANY() { + return r; + } + constructor(e, t) { + if (((t = a(t)), e instanceof o)) { + if (e.loose === !!t.loose) return e; + e = e.value; + } + (e = e.trim().split(/\s+/).join(" ")), + l("comparator", e, t), + (this.options = t), + (this.loose = !!t.loose), + this.parse(e), + this.semver === r ? (this.value = "") : (this.value = this.operator + this.semver.version), + l("comp", this); + } + parse(e) { + const t = this.options.loose ? i[s.COMPARATORLOOSE] : i[s.COMPARATOR], + n = e.match(t); + if (!n) throw new TypeError(`Invalid comparator: ${e}`); + (this.operator = void 0 !== n[1] ? n[1] : ""), "=" === this.operator && (this.operator = ""), n[2] ? (this.semver = new u(n[2], this.options.loose)) : (this.semver = r); + } + toString() { + return this.value; + } + test(e) { + if ((l("Comparator.test", e, this.options.loose), this.semver === r || e === r)) return !0; + if ("string" == typeof e) + try { + e = new u(e, this.options); + } catch (e) { + return !1; + } + return c(e, this.operator, this.semver, this.options); + } + intersects(e, t) { + if (!(e instanceof o)) throw new TypeError("a Comparator is required"); + return "" === this.operator + ? "" === this.value || new d(e.value, t).test(this.value) + : "" === e.operator + ? "" === e.value || new d(this.value, t).test(e.semver) + : !( + ((t = a(t)).includePrerelease && ("<0.0.0-0" === this.value || "<0.0.0-0" === e.value)) || + (!t.includePrerelease && (this.value.startsWith("<0.0.0") || e.value.startsWith("<0.0.0"))) || + ((!this.operator.startsWith(">") || !e.operator.startsWith(">")) && + (!this.operator.startsWith("<") || !e.operator.startsWith("<")) && + (this.semver.version !== e.semver.version || !this.operator.includes("=") || !e.operator.includes("=")) && + !(c(this.semver, "<", e.semver, t) && this.operator.startsWith(">") && e.operator.startsWith("<")) && + !(c(this.semver, ">", e.semver, t) && this.operator.startsWith("<") && e.operator.startsWith(">"))) + ); + } + } + e.exports = o; + const a = n(36325), + { safeRe: i, t: s } = n(73994), + c = n(94769), + l = n(50743), + u = n(25659), + d = n(70445); + }, + 70445: (e, t, n) => { + class r { + constructor(e, t) { + if (((t = a(t)), e instanceof r)) return e.loose === !!t.loose && e.includePrerelease === !!t.includePrerelease ? e : new r(e.raw, t); + if (e instanceof i) return (this.raw = e.value), (this.set = [[e]]), this.format(), this; + if ( + ((this.options = t), + (this.loose = !!t.loose), + (this.includePrerelease = !!t.includePrerelease), + (this.raw = e.trim().split(/\s+/).join(" ")), + (this.set = this.raw + .split("||") + .map((e) => this.parseRange(e.trim())) + .filter((e) => e.length)), + !this.set.length) + ) + throw new TypeError(`Invalid SemVer Range: ${this.raw}`); + if (this.set.length > 1) { + const e = this.set[0]; + if (((this.set = this.set.filter((e) => !v(e[0]))), 0 === this.set.length)) this.set = [e]; + else if (this.set.length > 1) + for (const e of this.set) + if (1 === e.length && y(e[0])) { + this.set = [e]; + break; + } + } + this.format(); + } + format() { + return ( + (this.range = this.set + .map((e) => e.join(" ").trim()) + .join("||") + .trim()), + this.range + ); + } + toString() { + return this.range; + } + parseRange(e) { + const t = ((this.options.includePrerelease && m) | (this.options.loose && h)) + ":" + e, + n = o.get(t); + if (n) return n; + const r = this.options.loose, + a = r ? l[u.HYPHENRANGELOOSE] : l[u.HYPHENRANGE]; + (e = e.replace(a, I(this.options.includePrerelease))), + s("hyphen replace", e), + (e = e.replace(l[u.COMPARATORTRIM], d)), + s("comparator trim", e), + (e = e.replace(l[u.TILDETRIM], p)), + s("tilde trim", e), + (e = e.replace(l[u.CARETTRIM], f)), + s("caret trim", e); + let c = e + .split(" ") + .map((e) => b(e, this.options)) + .join(" ") + .split(/\s+/) + .map((e) => T(e, this.options)); + r && (c = c.filter((e) => (s("loose invalid filter", e, this.options), !!e.match(l[u.COMPARATORLOOSE])))), s("range list", c); + const y = new Map(), + g = c.map((e) => new i(e, this.options)); + for (const e of g) { + if (v(e)) return [e]; + y.set(e.value, e); + } + y.size > 1 && y.has("") && y.delete(""); + const E = [...y.values()]; + return o.set(t, E), E; + } + intersects(e, t) { + if (!(e instanceof r)) throw new TypeError("a Range is required"); + return this.set.some((n) => g(n, t) && e.set.some((e) => g(e, t) && n.every((n) => e.every((e) => n.intersects(e, t))))); + } + test(e) { + if (!e) return !1; + if ("string" == typeof e) + try { + e = new c(e, this.options); + } catch (e) { + return !1; + } + for (let t = 0; t < this.set.length; t++) if (O(this.set[t], e, this.options)) return !0; + return !1; + } + } + e.exports = r; + const o = new (n(58402))(), + a = n(36325), + i = n(34171), + s = n(50743), + c = n(25659), + { safeRe: l, t: u, comparatorTrimReplace: d, tildeTrimReplace: p, caretTrimReplace: f } = n(73994), + { FLAG_INCLUDE_PRERELEASE: m, FLAG_LOOSE: h } = n(34380), + v = (e) => "<0.0.0-0" === e.value, + y = (e) => "" === e.value, + g = (e, t) => { + let n = !0; + const r = e.slice(); + let o = r.pop(); + for (; n && r.length; ) (n = r.every((e) => o.intersects(e, t))), (o = r.pop()); + return n; + }, + b = (e, t) => (s("comp", e, t), (e = w(e, t)), s("caret", e), (e = D(e, t)), s("tildes", e), (e = A(e, t)), s("xrange", e), (e = _(e, t)), s("stars", e), e), + E = (e) => !e || "x" === e.toLowerCase() || "*" === e, + D = (e, t) => + e + .trim() + .split(/\s+/) + .map((e) => C(e, t)) + .join(" "), + C = (e, t) => { + const n = t.loose ? l[u.TILDELOOSE] : l[u.TILDE]; + return e.replace(n, (t, n, r, o, a) => { + let i; + return ( + s("tilde", e, t, n, r, o, a), + E(n) + ? (i = "") + : E(r) + ? (i = `>=${n}.0.0 <${+n + 1}.0.0-0`) + : E(o) + ? (i = `>=${n}.${r}.0 <${n}.${+r + 1}.0-0`) + : a + ? (s("replaceTilde pr", a), (i = `>=${n}.${r}.${o}-${a} <${n}.${+r + 1}.0-0`)) + : (i = `>=${n}.${r}.${o} <${n}.${+r + 1}.0-0`), + s("tilde return", i), + i + ); + }); + }, + w = (e, t) => + e + .trim() + .split(/\s+/) + .map((e) => S(e, t)) + .join(" "), + S = (e, t) => { + s("caret", e, t); + const n = t.loose ? l[u.CARETLOOSE] : l[u.CARET], + r = t.includePrerelease ? "-0" : ""; + return e.replace(n, (t, n, o, a, i) => { + let c; + return ( + s("caret", e, t, n, o, a, i), + E(n) + ? (c = "") + : E(o) + ? (c = `>=${n}.0.0${r} <${+n + 1}.0.0-0`) + : E(a) + ? (c = "0" === n ? `>=${n}.${o}.0${r} <${n}.${+o + 1}.0-0` : `>=${n}.${o}.0${r} <${+n + 1}.0.0-0`) + : i + ? (s("replaceCaret pr", i), (c = "0" === n ? ("0" === o ? `>=${n}.${o}.${a}-${i} <${n}.${o}.${+a + 1}-0` : `>=${n}.${o}.${a}-${i} <${n}.${+o + 1}.0-0`) : `>=${n}.${o}.${a}-${i} <${+n + 1}.0.0-0`)) + : (s("no pr"), (c = "0" === n ? ("0" === o ? `>=${n}.${o}.${a}${r} <${n}.${o}.${+a + 1}-0` : `>=${n}.${o}.${a}${r} <${n}.${+o + 1}.0-0`) : `>=${n}.${o}.${a} <${+n + 1}.0.0-0`)), + s("caret return", c), + c + ); + }); + }, + A = (e, t) => ( + s("replaceXRanges", e, t), + e + .split(/\s+/) + .map((e) => k(e, t)) + .join(" ") + ), + k = (e, t) => { + e = e.trim(); + const n = t.loose ? l[u.XRANGELOOSE] : l[u.XRANGE]; + return e.replace(n, (n, r, o, a, i, c) => { + s("xRange", e, n, r, o, a, i, c); + const l = E(o), + u = l || E(a), + d = u || E(i), + p = d; + return ( + "=" === r && p && (r = ""), + (c = t.includePrerelease ? "-0" : ""), + l + ? (n = ">" === r || "<" === r ? "<0.0.0-0" : "*") + : r && p + ? (u && (a = 0), + (i = 0), + ">" === r ? ((r = ">="), u ? ((o = +o + 1), (a = 0), (i = 0)) : ((a = +a + 1), (i = 0))) : "<=" === r && ((r = "<"), u ? (o = +o + 1) : (a = +a + 1)), + "<" === r && (c = "-0"), + (n = `${r + o}.${a}.${i}${c}`)) + : u + ? (n = `>=${o}.0.0${c} <${+o + 1}.0.0-0`) + : d && (n = `>=${o}.${a}.0${c} <${o}.${+a + 1}.0-0`), + s("xRange return", n), + n + ); + }); + }, + _ = (e, t) => (s("replaceStars", e, t), e.trim().replace(l[u.STAR], "")), + T = (e, t) => (s("replaceGTE0", e, t), e.trim().replace(l[t.includePrerelease ? u.GTE0PRE : u.GTE0], "")), + I = (e) => (t, n, r, o, a, i, s, c, l, u, d, p) => + `${(n = E(r) ? "" : E(o) ? `>=${r}.0.0${e ? "-0" : ""}` : E(a) ? `>=${r}.${o}.0${e ? "-0" : ""}` : i ? `>=${n}` : `>=${n}${e ? "-0" : ""}`)} ${(c = E(l) + ? "" + : E(u) + ? `<${+l + 1}.0.0-0` + : E(d) + ? `<${l}.${+u + 1}.0-0` + : p + ? `<=${l}.${u}.${d}-${p}` + : e + ? `<${l}.${u}.${+d + 1}-0` + : `<=${c}`)}`.trim(), + O = (e, t, n) => { + for (let n = 0; n < e.length; n++) if (!e[n].test(t)) return !1; + if (t.prerelease.length && !n.includePrerelease) { + for (let n = 0; n < e.length; n++) + if ((s(e[n].semver), e[n].semver !== i.ANY && e[n].semver.prerelease.length > 0)) { + const r = e[n].semver; + if (r.major === t.major && r.minor === t.minor && r.patch === t.patch) return !0; + } + return !1; + } + return !0; + }; + }, + 25659: (e, t, n) => { + const r = n(50743), + { MAX_LENGTH: o, MAX_SAFE_INTEGER: a } = n(34380), + { safeRe: i, t: s } = n(73994), + c = n(36325), + { compareIdentifiers: l } = n(23919); + class u { + constructor(e, t) { + if (((t = c(t)), e instanceof u)) { + if (e.loose === !!t.loose && e.includePrerelease === !!t.includePrerelease) return e; + e = e.version; + } else if ("string" != typeof e) throw new TypeError(`Invalid version. Must be a string. Got type "${typeof e}".`); + if (e.length > o) throw new TypeError(`version is longer than ${o} characters`); + r("SemVer", e, t), (this.options = t), (this.loose = !!t.loose), (this.includePrerelease = !!t.includePrerelease); + const n = e.trim().match(t.loose ? i[s.LOOSE] : i[s.FULL]); + if (!n) throw new TypeError(`Invalid Version: ${e}`); + if (((this.raw = e), (this.major = +n[1]), (this.minor = +n[2]), (this.patch = +n[3]), this.major > a || this.major < 0)) throw new TypeError("Invalid major version"); + if (this.minor > a || this.minor < 0) throw new TypeError("Invalid minor version"); + if (this.patch > a || this.patch < 0) throw new TypeError("Invalid patch version"); + n[4] + ? (this.prerelease = n[4].split(".").map((e) => { + if (/^[0-9]+$/.test(e)) { + const t = +e; + if (t >= 0 && t < a) return t; + } + return e; + })) + : (this.prerelease = []), + (this.build = n[5] ? n[5].split(".") : []), + this.format(); + } + format() { + return (this.version = `${this.major}.${this.minor}.${this.patch}`), this.prerelease.length && (this.version += `-${this.prerelease.join(".")}`), this.version; + } + toString() { + return this.version; + } + compare(e) { + if ((r("SemVer.compare", this.version, this.options, e), !(e instanceof u))) { + if ("string" == typeof e && e === this.version) return 0; + e = new u(e, this.options); + } + return e.version === this.version ? 0 : this.compareMain(e) || this.comparePre(e); + } + compareMain(e) { + return e instanceof u || (e = new u(e, this.options)), l(this.major, e.major) || l(this.minor, e.minor) || l(this.patch, e.patch); + } + comparePre(e) { + if ((e instanceof u || (e = new u(e, this.options)), this.prerelease.length && !e.prerelease.length)) return -1; + if (!this.prerelease.length && e.prerelease.length) return 1; + if (!this.prerelease.length && !e.prerelease.length) return 0; + let t = 0; + do { + const n = this.prerelease[t], + o = e.prerelease[t]; + if ((r("prerelease compare", t, n, o), void 0 === n && void 0 === o)) return 0; + if (void 0 === o) return 1; + if (void 0 === n) return -1; + if (n !== o) return l(n, o); + } while (++t); + } + compareBuild(e) { + e instanceof u || (e = new u(e, this.options)); + let t = 0; + do { + const n = this.build[t], + o = e.build[t]; + if ((r("build compare", t, n, o), void 0 === n && void 0 === o)) return 0; + if (void 0 === o) return 1; + if (void 0 === n) return -1; + if (n !== o) return l(n, o); + } while (++t); + } + inc(e, t, n) { + switch (e) { + case "premajor": + (this.prerelease.length = 0), (this.patch = 0), (this.minor = 0), this.major++, this.inc("pre", t, n); + break; + case "preminor": + (this.prerelease.length = 0), (this.patch = 0), this.minor++, this.inc("pre", t, n); + break; + case "prepatch": + (this.prerelease.length = 0), this.inc("patch", t, n), this.inc("pre", t, n); + break; + case "prerelease": + 0 === this.prerelease.length && this.inc("patch", t, n), this.inc("pre", t, n); + break; + case "major": + (0 === this.minor && 0 === this.patch && 0 !== this.prerelease.length) || this.major++, (this.minor = 0), (this.patch = 0), (this.prerelease = []); + break; + case "minor": + (0 === this.patch && 0 !== this.prerelease.length) || this.minor++, (this.patch = 0), (this.prerelease = []); + break; + case "patch": + 0 === this.prerelease.length && this.patch++, (this.prerelease = []); + break; + case "pre": { + const e = Number(n) ? 1 : 0; + if (!t && !1 === n) throw new Error("invalid increment argument: identifier is empty"); + if (0 === this.prerelease.length) this.prerelease = [e]; + else { + let r = this.prerelease.length; + for (; --r >= 0; ) "number" == typeof this.prerelease[r] && (this.prerelease[r]++, (r = -2)); + if (-1 === r) { + if (t === this.prerelease.join(".") && !1 === n) throw new Error("invalid increment argument: identifier already exists"); + this.prerelease.push(e); + } + } + if (t) { + let r = [t, e]; + !1 === n && (r = [t]), 0 === l(this.prerelease[0], t) ? isNaN(this.prerelease[1]) && (this.prerelease = r) : (this.prerelease = r); + } + break; + } + default: + throw new Error(`invalid increment argument: ${e}`); + } + return (this.raw = this.format()), this.build.length && (this.raw += `+${this.build.join(".")}`), this; + } + } + e.exports = u; + }, + 94769: (e, t, n) => { + const r = n(12217), + o = n(43226), + a = n(99160), + i = n(60637), + s = n(24821), + c = n(4249); + e.exports = (e, t, n, l) => { + switch (t) { + case "===": + return "object" == typeof e && (e = e.version), "object" == typeof n && (n = n.version), e === n; + case "!==": + return "object" == typeof e && (e = e.version), "object" == typeof n && (n = n.version), e !== n; + case "": + case "=": + case "==": + return r(e, n, l); + case "!=": + return o(e, n, l); + case ">": + return a(e, n, l); + case ">=": + return i(e, n, l); + case "<": + return s(e, n, l); + case "<=": + return c(e, n, l); + default: + throw new TypeError(`Invalid operator: ${t}`); + } + }; + }, + 19305: (e, t, n) => { + const r = n(25659); + e.exports = (e, t, n) => new r(e, n).compare(new r(t, n)); + }, + 12217: (e, t, n) => { + const r = n(19305); + e.exports = (e, t, n) => 0 === r(e, t, n); + }, + 99160: (e, t, n) => { + const r = n(19305); + e.exports = (e, t, n) => r(e, t, n) > 0; + }, + 60637: (e, t, n) => { + const r = n(19305); + e.exports = (e, t, n) => r(e, t, n) >= 0; + }, + 24821: (e, t, n) => { + const r = n(19305); + e.exports = (e, t, n) => r(e, t, n) < 0; + }, + 4249: (e, t, n) => { + const r = n(19305); + e.exports = (e, t, n) => r(e, t, n) <= 0; + }, + 43226: (e, t, n) => { + const r = n(19305); + e.exports = (e, t, n) => 0 !== r(e, t, n); + }, + 50813: (e, t, n) => { + const r = n(70445); + e.exports = (e, t, n) => { + try { + t = new r(t, n); + } catch (e) { + return !1; + } + return t.test(e); + }; + }, + 34380: (e) => { + const t = Number.MAX_SAFE_INTEGER || 9007199254740991; + e.exports = { + MAX_LENGTH: 256, + MAX_SAFE_COMPONENT_LENGTH: 16, + MAX_SAFE_BUILD_LENGTH: 250, + MAX_SAFE_INTEGER: t, + RELEASE_TYPES: ["major", "premajor", "minor", "preminor", "patch", "prepatch", "prerelease"], + SEMVER_SPEC_VERSION: "2.0.0", + FLAG_INCLUDE_PRERELEASE: 1, + FLAG_LOOSE: 2, + }; + }, + 50743: (e) => { + const t = "object" == typeof process && process.env && process.env.NODE_DEBUG && /\bsemver\b/i.test(process.env.NODE_DEBUG) ? (...e) => console.error("SEMVER", ...e) : () => {}; + e.exports = t; + }, + 23919: (e) => { + const t = /^[0-9]+$/, + n = (e, n) => { + const r = t.test(e), + o = t.test(n); + return r && o && ((e = +e), (n = +n)), e === n ? 0 : r && !o ? -1 : o && !r ? 1 : e < n ? -1 : 1; + }; + e.exports = { compareIdentifiers: n, rcompareIdentifiers: (e, t) => n(t, e) }; + }, + 58402: (e) => { + e.exports = class { + constructor() { + (this.max = 1e3), (this.map = new Map()); + } + get(e) { + const t = this.map.get(e); + return void 0 === t ? void 0 : (this.map.delete(e), this.map.set(e, t), t); + } + delete(e) { + return this.map.delete(e); + } + set(e, t) { + if (!this.delete(e) && void 0 !== t) { + if (this.map.size >= this.max) { + const e = this.map.keys().next().value; + this.delete(e); + } + this.map.set(e, t); + } + return this; + } + }; + }, + 36325: (e) => { + const t = Object.freeze({ loose: !0 }), + n = Object.freeze({}); + e.exports = (e) => (e ? ("object" != typeof e ? t : e) : n); + }, + 73994: (e, t, n) => { + const { MAX_SAFE_COMPONENT_LENGTH: r, MAX_SAFE_BUILD_LENGTH: o, MAX_LENGTH: a } = n(34380), + i = n(50743), + s = ((t = e.exports = {}).re = []), + c = (t.safeRe = []), + l = (t.src = []), + u = (t.t = {}); + let d = 0; + const p = "[a-zA-Z0-9-]", + f = [ + ["\\s", 1], + ["\\d", a], + [p, o], + ], + m = (e, t, n) => { + const r = ((e) => { + for (const [t, n] of f) e = e.split(`${t}*`).join(`${t}{0,${n}}`).split(`${t}+`).join(`${t}{1,${n}}`); + return e; + })(t), + o = d++; + i(e, o, t), (u[e] = o), (l[o] = t), (s[o] = new RegExp(t, n ? "g" : void 0)), (c[o] = new RegExp(r, n ? "g" : void 0)); + }; + m("NUMERICIDENTIFIER", "0|[1-9]\\d*"), + m("NUMERICIDENTIFIERLOOSE", "\\d+"), + m("NONNUMERICIDENTIFIER", `\\d*[a-zA-Z-]${p}*`), + m("MAINVERSION", `(${l[u.NUMERICIDENTIFIER]})\\.(${l[u.NUMERICIDENTIFIER]})\\.(${l[u.NUMERICIDENTIFIER]})`), + m("MAINVERSIONLOOSE", `(${l[u.NUMERICIDENTIFIERLOOSE]})\\.(${l[u.NUMERICIDENTIFIERLOOSE]})\\.(${l[u.NUMERICIDENTIFIERLOOSE]})`), + m("PRERELEASEIDENTIFIER", `(?:${l[u.NUMERICIDENTIFIER]}|${l[u.NONNUMERICIDENTIFIER]})`), + m("PRERELEASEIDENTIFIERLOOSE", `(?:${l[u.NUMERICIDENTIFIERLOOSE]}|${l[u.NONNUMERICIDENTIFIER]})`), + m("PRERELEASE", `(?:-(${l[u.PRERELEASEIDENTIFIER]}(?:\\.${l[u.PRERELEASEIDENTIFIER]})*))`), + m("PRERELEASELOOSE", `(?:-?(${l[u.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${l[u.PRERELEASEIDENTIFIERLOOSE]})*))`), + m("BUILDIDENTIFIER", `${p}+`), + m("BUILD", `(?:\\+(${l[u.BUILDIDENTIFIER]}(?:\\.${l[u.BUILDIDENTIFIER]})*))`), + m("FULLPLAIN", `v?${l[u.MAINVERSION]}${l[u.PRERELEASE]}?${l[u.BUILD]}?`), + m("FULL", `^${l[u.FULLPLAIN]}$`), + m("LOOSEPLAIN", `[v=\\s]*${l[u.MAINVERSIONLOOSE]}${l[u.PRERELEASELOOSE]}?${l[u.BUILD]}?`), + m("LOOSE", `^${l[u.LOOSEPLAIN]}$`), + m("GTLT", "((?:<|>)?=?)"), + m("XRANGEIDENTIFIERLOOSE", `${l[u.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`), + m("XRANGEIDENTIFIER", `${l[u.NUMERICIDENTIFIER]}|x|X|\\*`), + m("XRANGEPLAIN", `[v=\\s]*(${l[u.XRANGEIDENTIFIER]})(?:\\.(${l[u.XRANGEIDENTIFIER]})(?:\\.(${l[u.XRANGEIDENTIFIER]})(?:${l[u.PRERELEASE]})?${l[u.BUILD]}?)?)?`), + m("XRANGEPLAINLOOSE", `[v=\\s]*(${l[u.XRANGEIDENTIFIERLOOSE]})(?:\\.(${l[u.XRANGEIDENTIFIERLOOSE]})(?:\\.(${l[u.XRANGEIDENTIFIERLOOSE]})(?:${l[u.PRERELEASELOOSE]})?${l[u.BUILD]}?)?)?`), + m("XRANGE", `^${l[u.GTLT]}\\s*${l[u.XRANGEPLAIN]}$`), + m("XRANGELOOSE", `^${l[u.GTLT]}\\s*${l[u.XRANGEPLAINLOOSE]}$`), + m("COERCEPLAIN", `(^|[^\\d])(\\d{1,${r}})(?:\\.(\\d{1,${r}}))?(?:\\.(\\d{1,${r}}))?`), + m("COERCE", `${l[u.COERCEPLAIN]}(?:$|[^\\d])`), + m("COERCEFULL", l[u.COERCEPLAIN] + `(?:${l[u.PRERELEASE]})?` + `(?:${l[u.BUILD]})?(?:$|[^\\d])`), + m("COERCERTL", l[u.COERCE], !0), + m("COERCERTLFULL", l[u.COERCEFULL], !0), + m("LONETILDE", "(?:~>?)"), + m("TILDETRIM", `(\\s*)${l[u.LONETILDE]}\\s+`, !0), + (t.tildeTrimReplace = "$1~"), + m("TILDE", `^${l[u.LONETILDE]}${l[u.XRANGEPLAIN]}$`), + m("TILDELOOSE", `^${l[u.LONETILDE]}${l[u.XRANGEPLAINLOOSE]}$`), + m("LONECARET", "(?:\\^)"), + m("CARETTRIM", `(\\s*)${l[u.LONECARET]}\\s+`, !0), + (t.caretTrimReplace = "$1^"), + m("CARET", `^${l[u.LONECARET]}${l[u.XRANGEPLAIN]}$`), + m("CARETLOOSE", `^${l[u.LONECARET]}${l[u.XRANGEPLAINLOOSE]}$`), + m("COMPARATORLOOSE", `^${l[u.GTLT]}\\s*(${l[u.LOOSEPLAIN]})$|^$`), + m("COMPARATOR", `^${l[u.GTLT]}\\s*(${l[u.FULLPLAIN]})$|^$`), + m("COMPARATORTRIM", `(\\s*)${l[u.GTLT]}\\s*(${l[u.LOOSEPLAIN]}|${l[u.XRANGEPLAIN]})`, !0), + (t.comparatorTrimReplace = "$1$2$3"), + m("HYPHENRANGE", `^\\s*(${l[u.XRANGEPLAIN]})\\s+-\\s+(${l[u.XRANGEPLAIN]})\\s*$`), + m("HYPHENRANGELOOSE", `^\\s*(${l[u.XRANGEPLAINLOOSE]})\\s+-\\s+(${l[u.XRANGEPLAINLOOSE]})\\s*$`), + m("STAR", "(<|>)?=?\\s*\\*"), + m("GTE0", "^\\s*>=\\s*0\\.0\\.0\\s*$"), + m("GTE0PRE", "^\\s*>=\\s*0\\.0\\.0-0\\s*$"); + }, + 54920: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var r = i(n(56155)), + o = i(n(89085)), + a = n(8888); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + function s(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + var c = (function () { + function e() { + var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, + r = n.id, + o = n.useNodeIndex, + a = n.validNodes; + !(function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + })(this, e), + (this.assetId = r), + (this.annotationId = t.id), + (this.annotationObject = t), + (this.useNodeIndex = o), + (this.validNodes = a); + } + var t, n; + return ( + (t = e), + (n = [ + { + key: "getPathRoot", + value: function () { + return "assets/".concat(this.assetId, "/annots/"); + }, + }, + { + key: "get", + value: function () { + return o.default.instance.request(this.assetId, "annotation.get", this.annotationId, "GET", null, { "If-Match": this.annotationObject.etag }); + }, + }, + { + key: "reply", + value: function (e, t) { + try { + var n = (0, a.getCommentPayload)(this.annotationId, e, null, null, t, a.MOTIVATIONS.REPLY, null, this.useNodeIndex); + return o.default.instance.request(this.assetId, "annotation.reply", this.getPathRoot(), "POST", n, {}); + } catch (e) { + return Promise.reject(e); + } + }, + }, + { + key: "update", + value: function (e, t, n, i, s) { + var c = this; + try { + var l = (0, r.default)(this.annotationObject); + l.bodyValue = e; + var u = []; + return ( + l.replies && ((u = l.replies), delete l.replies), + n && n.length > 0 && (l.mentions = n), + (l = (0, a.setTargetNode)(l, i, this.useNodeIndex)), + (l = (0, a.updateCoordinates)(l, t, !0)), + s && (l = (0, a.updateMediaData)(l, t, s)), + new Promise(function (e, t) { + o.default.instance + .request(c.assetId, "annotation.update", c.annotationId, "PUT", l, { "If-Match": c.annotationObject.etag }) + .then(function (t) { + t.motivation === a.MOTIVATIONS.COMMENT && (t.replies = u), e(t); + }) + .catch(t); + }) + ); + } catch (e) { + return Promise.reject(e); + } + }, + }, + { + key: "delete", + value: function () { + return o.default.instance.request(this.assetId, "annotation.delete", "".concat(this.annotationId, "?recursive=true"), "DELETE", null, { "If-Match": this.annotationObject.etag }); + }, + }, + { + key: "resolve", + value: function () { + return this._perform("annotation.resolve"); + }, + }, + { + key: "open", + value: function () { + return this._perform("annotation.open"); + }, + }, + { + key: "_perform", + value: function (e) { + var t = this; + try { + var n = (0, r.default)(this.annotationObject), + i = []; + return ( + n.replies && ((i = n.replies), delete n.replies), + (n.status = "annotation.resolve" === e ? a.STATUS.RESOLVED : a.STATUS.OPEN), + (n = (0, a.updateCoordinates)(n, null, !0)), + new Promise(function (r, s) { + o.default.instance + .request(t.assetId, e, t.annotationId, "PUT", n, { "If-Match": t.annotationObject.etag }) + .then(function (e) { + e.motivation === a.MOTIVATIONS.COMMENT && (e.replies = i), r(e); + }) + .catch(s); + }) + ); + } catch (e) { + return console.log(e), Promise.reject(e); + } + }, + }, + ]) && s(t.prototype, n), + Object.defineProperty(t, "prototype", { writable: !1 }), + e + ); + })(); + t.default = c; + }, + 27357: (e, t, n) => { + "use strict"; + function r(e) { + return ( + (r = + "function" == typeof Symbol && "symbol" == typeof Symbol.iterator + ? function (e) { + return typeof e; + } + : function (e) { + return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e; + }), + r(e) + ); + } + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var o = n(92682), + a = c(n(87220)), + i = c(n(89085)), + s = n(8888); + function c(e) { + return e && e.__esModule ? e : { default: e }; + } + function l(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + function u(e, t) { + return ( + (u = Object.setPrototypeOf + ? Object.setPrototypeOf.bind() + : function (e, t) { + return (e.__proto__ = t), e; + }), + u(e, t) + ); + } + function d(e) { + if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); + return e; + } + function p(e) { + return ( + (p = Object.setPrototypeOf + ? Object.getPrototypeOf.bind() + : function (e) { + return e.__proto__ || Object.getPrototypeOf(e); + }), + p(e) + ); + } + var f = 3e3, + m = {}, + h = (function (e) { + !(function (e, t) { + if ("function" != typeof t && null !== t) throw new TypeError("Super expression must either be null or a function"); + (e.prototype = Object.create(t && t.prototype, { constructor: { value: e, writable: !0, configurable: !0 } })), Object.defineProperty(e, "prototype", { writable: !1 }), t && u(e, t); + })(y, e); + var t, + n, + o, + c, + h, + v = + ((c = y), + (h = (function () { + if ("undefined" == typeof Reflect || !Reflect.construct) return !1; + if (Reflect.construct.sham) return !1; + if ("function" == typeof Proxy) return !0; + try { + return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; + } catch (e) { + return !1; + } + })()), + function () { + var e, + t = p(c); + if (h) { + var n = p(this).constructor; + e = Reflect.construct(t, arguments, n); + } else e = t.apply(this, arguments); + return (function (e, t) { + if (t && ("object" === r(t) || "function" == typeof t)) return t; + if (void 0 !== t) throw new TypeError("Derived constructors may only return object or undefined"); + return d(e); + })(this, e); + }); + function y(e) { + var t, + n = e.commentType, + r = e.id, + o = e.pollForUpdates, + a = e.useNodeIndex, + i = e.validNodes; + return ( + (function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + })(this, y), + ((t = v.call(this)).commentType = null == n ? void 0 : n.join()), + (t.etag = null), + (t.id = r), + (t.pollingTimer = null), + (t.pollForUpdates = o), + (t.useNodeIndex = a), + (t.validNodes = i), + (t.fetchDelay = f), + (t.checkForUpdates = t.checkForUpdates.bind(d(t))), + t + ); + } + return ( + (t = y), + (n = [ + { + key: "getPathRoot", + value: function () { + return "assets/".concat(this.id); + }, + }, + { + key: "getMetadata", + value: function () { + var e = this; + return new Promise(function (t, n) { + var r = "".concat(e.getPathRoot(), "?operation=").concat(s.OPERATIONS.FETCH_COMMENT_METADATA); + i.default.instance + .request(e.id, "asset.getMetadata", r, "GET", void 0, void 0, { useNodeIndex: e.useNodeIndex, validNodes: e.validNodes }) + .then(function (e) { + t(e); + }) + .catch(function (e) { + n(e); + }); + }); + }, + }, + { + key: "get", + value: function (e) { + var t = this; + return new Promise(function (n, r) { + var o = "".concat(t.getPathRoot(), "/annots/?status=").concat(t.commentType), + a = +new Date(), + c = t.lastFetchTimestamp + t.fetchDelay; + if (!t.lastFetchTimestamp || c <= a) + (t.lastFetchTimestamp = a), + i.default.instance + .request(t.id, "asset.get", o, "GET", null, e ? { "If-None-Match": t.etag } : {}, { useNodeIndex: t.useNodeIndex, validNodes: t.validNodes }) + .then(function (e) { + if (((e && e.retryAfter) || t.disableUpdates(), e && e.annotations)) { + t.etag = e.etag ? e.etag : null; + var r = e.annotations.filter(function (e) { + return e.motivation === s.MOTIVATIONS.REPLY; + }), + o = e.annotations + .filter(function (e) { + return e.motivation !== s.MOTIVATIONS.REPLY; + }) + .map(function (e) { + var t = r.filter(function (t) { + return t.target.source.includes(e.id); + }); + return t && (e.replies = t), e; + }), + a = e.retryAfter ? 1e3 * parseInt(e.retryAfter, 10) : f; + (t.fetchDelay = a), t.pollForUpdates && !t.pollingTimer && ((t.pollingInterval = a), (t.pollingTimer = setInterval(t.checkForUpdates, t.pollingInterval))); + var i = Object.assign({}, e); + (i.annotations = o), n(i); + } else if (t.pollForUpdates) { + var c = e.retryAfter ? 1e3 * parseInt(e.retryAfter, 10) : f; + (t.fetchDelay = c), + t.pollingInterval !== c && ((t.pollingInterval = c), t.pollingTimer && (clearInterval(t.pollingTimer), (t.pollingTimer = null))), + t.pollingTimer || void 0 === t.pollingInterval || (t.pollingTimer = setInterval(t.checkForUpdates, t.pollingInterval)), + n(null); + } else n(null); + }) + .catch(function (e) { + t.disableUpdates(), r(e); + }); + else if (t.pendingRequestTimer || t.pollingInterval) n(null); + else { + var l = c - a; + (t.pendingRequestTimer = setTimeout(function () { + t.checkForUpdates(), (t.pendingRequestTimer = void 0); + }, l)), + n(null); + } + }); + }, + }, + { + key: "checkForUpdates", + value: function () { + var e = this; + i.default.instance.fetchInProgressMap["asset.get"][this.id] || + this.get(!0) + .then(function (t) { + !i.default.instance.fetchInProgressMap["asset.get"][e.id] && t && e.emit("update", t); + }) + .catch(function (t) { + e.emit("update-error", t); + }); + }, + }, + { + key: "disableUpdates", + value: function () { + clearInterval(this.pollingTimer), (this.pollingTimer = null); + }, + }, + { + key: "comment", + value: function (e, t, n, r, o) { + try { + var a = (0, s.getCommentPayload)(this.id, e, t, n, r, s.MOTIVATIONS.COMMENT, o, this.useNodeIndex); + return i.default.instance.request(this.id, "asset.comment", "".concat(this.getPathRoot(), "/annots/"), "POST", a, {}, { useNodeIndex: this.useNodeIndex, validNodes: this.validNodes }); + } catch (e) { + return Promise.reject(e); + } + }, + }, + { + key: "remap", + value: function (e) { + var t = { requests: [] }; + if (e && Object.keys(e).length) { + Object.keys(e).forEach(function (n) { + var r = { target: e[n] }; + t.requests.push({ + method: "put", + headers: { "X-Feature-Override": "NoNotifications,NoModificationDateUpdate", "If-Match": "*" }, + body: { "x-request-id": "", id: n.split("/").pop(), content: (0, s.updateCoordinates)(r, void 0, !0) }, + }); + }); + var n = "sync/collections/".concat(this.id, ":aec/entities/"); + return i.default.instance.request(this.id, "asset.batchRemap", n, "POST", t, {}, { useNodeIndex: this.useNodeIndex, validNodes: this.validNodes }); + } + return Promise.reject("Invalid remap data"); + }, + }, + { + key: "batchCommentMetadataUpdate", + value: function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] && arguments[1]; + if (e) { + if (1 === Object.keys(e).length) { + var n = Object.keys(e)[0]; + return i.default.instance.request( + this.id, + "annotation.updateMetadata", + "".concat(n, "/metadata?recursive=").concat(t), + "PUT", + { annotId: n, read: e[n].read }, + { "If-Match": "*" }, + { useNodeIndex: this.useNodeIndex, validNodes: this.validNodes } + ); + } + if (Object.keys(e).length > 1) { + var r = { requests: [] }; + Object.keys(e).forEach(function (t) { + r.requests.push({ + method: "put", + headers: { "X-Feature-Override": "NoNotifications,NoModificationDateUpdate", "If-Match": "*" }, + body: { "x-request-id": "", id: t.split("/").pop(), content: { annotId: t, read: e[t].read } }, + }); + }); + var o = "sync/collections/".concat(this.id, ":umec/entities/"); + return i.default.instance.request(this.id, "asset.batchUpdateMetadata", o, "POST", r, {}, { useNodeIndex: this.useNodeIndex, validNodes: this.validNodes }); + } + } + return Promise.reject("Invalid batch metadata"); + }, + }, + ]), + (o = [ + { + key: "getInstance", + value: function (e) { + var t = e.id; + return (m[t] && (0, a.default)(m[t].config, e)) || (m[t] && m[t].instance.disableUpdates(), (m[t] = { instance: new y(e), config: e })), m[t].instance; + }, + }, + { + key: "removeInstance", + value: function (e) { + m[e] && (m[e].instance.disableUpdates(), delete m[e]); + }, + }, + ]), + n && l(t.prototype, n), + o && l(t, o), + Object.defineProperty(t, "prototype", { writable: !1 }), + y + ); + })(o.EventEmitter2); + t.default = h; + }, + 89085: (e, t, n) => { + "use strict"; + function r(e) { + return ( + (r = + "function" == typeof Symbol && "symbol" == typeof Symbol.iterator + ? function (e) { + return typeof e; + } + : function (e) { + return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e; + }), + r(e) + ); + } + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var o = n(52839), + a = n(8888), + i = u(n(97740)), + s = u(n(82862)), + c = u(n(17683)), + l = u(n(76446)); + function u(e) { + return e && e.__esModule ? e : { default: e }; + } + function d(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + function p(e, t, n) { + return t && d(e.prototype, t), n && d(e, n), Object.defineProperty(e, "prototype", { writable: !1 }), e; + } + function f(e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + } + function m(e) { + var t = "function" == typeof Map ? new Map() : void 0; + return ( + (m = function (e) { + if (null === e || ((n = e), -1 === Function.toString.call(n).indexOf("[native code]"))) return e; + var n; + if ("function" != typeof e) throw new TypeError("Super expression must either be null or a function"); + if (void 0 !== t) { + if (t.has(e)) return t.get(e); + t.set(e, r); + } + function r() { + return h(e, arguments, g(this).constructor); + } + return (r.prototype = Object.create(e.prototype, { constructor: { value: r, enumerable: !1, writable: !0, configurable: !0 } })), y(r, e); + }), + m(e) + ); + } + function h(e, t, n) { + return ( + (h = v() + ? Reflect.construct.bind() + : function (e, t, n) { + var r = [null]; + r.push.apply(r, t); + var o = new (Function.bind.apply(e, r))(); + return n && y(o, n.prototype), o; + }), + h.apply(null, arguments) + ); + } + function v() { + if ("undefined" == typeof Reflect || !Reflect.construct) return !1; + if (Reflect.construct.sham) return !1; + if ("function" == typeof Proxy) return !0; + try { + return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; + } catch (e) { + return !1; + } + } + function y(e, t) { + return ( + (y = Object.setPrototypeOf + ? Object.setPrototypeOf.bind() + : function (e, t) { + return (e.__proto__ = t), e; + }), + y(e, t) + ); + } + function g(e) { + return ( + (g = Object.setPrototypeOf + ? Object.getPrototypeOf.bind() + : function (e) { + return e.__proto__ || Object.getPrototypeOf(e); + }), + g(e) + ); + } + var b = Symbol("client"), + E = Symbol("client-enforcer"), + D = 'application/ld+json; profile="https://www.w3.org/ns/anno.jsonld"', + C = 'application/json; profile="https://comments.adobe.io/schemas/bulk_entity_v1.json"', + w = 'application/vnd.adobe.dc+json;profile="https://comments.adobe.io/schemas/annots_metadata.jsonld"', + S = (function (e) { + !(function (e, t) { + if ("function" != typeof t && null !== t) throw new TypeError("Super expression must either be null or a function"); + (e.prototype = Object.create(t && t.prototype, { constructor: { value: e, writable: !0, configurable: !0 } })), Object.defineProperty(e, "prototype", { writable: !1 }), t && y(e, t); + })(a, e); + var t, + n, + o = + ((t = a), + (n = v()), + function () { + var e, + o = g(t); + if (n) { + var a = g(this).constructor; + e = Reflect.construct(o, arguments, a); + } else e = o.apply(this, arguments); + return (function (e, t) { + if (t && ("object" === r(t) || "function" == typeof t)) return t; + if (void 0 !== t) throw new TypeError("Derived constructors may only return object or undefined"); + return (function (e) { + if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); + return e; + })(e); + })(this, e); + }); + function a(e, t) { + var n; + return f(this, a), ((n = o.call(this, e)).status = t), n; + } + return p(a); + })(m(Error)), + A = (function () { + function e(t) { + if ( + (f(this, e), + (this.appKey = ""), + (this.appName = ""), + (this.commentsApiUrl = ""), + (this.disableGetAuthorization = !1), + (this.environment = "dev"), + (this.fetchInProgressMap = { "asset.get": {}, "asset.getMetadata": {} }), + (this.invitationServiceAccessToken = ""), + (this.token = ""), + (this.userId = ""), + t !== E) + ) + throw new Error("Cannot create singleton"); + } + return ( + p( + e, + [ + { + key: "configure", + value: function (e) { + var t = e.appKey, + n = void 0 === t ? "" : t, + r = e.appName, + o = void 0 === r ? "" : r, + a = e.disableGetAuthorization, + i = void 0 !== a && a, + s = e.environment, + c = void 0 === s ? "dev" : s, + l = e.invitationServiceAccessToken, + u = void 0 === l ? "" : l, + d = e.token, + p = void 0 === d ? "" : d, + f = e.userId, + m = void 0 === f ? "" : f; + (this.appKey = n), + (this.appName = o), + (this.disableGetAuthorization = i), + (this.environment = c), + (this.invitationServiceAccessToken = u), + (this.token = p), + (this.userId = m), + this.environment.startsWith("st") + ? (this.commentsApiUrl = "https://comments-stage.adobe.io/") + : this.environment.startsWith("pr") + ? (this.commentsApiUrl = "https://comments.adobe.io/") + : (this.commentsApiUrl = "https://comments-dev.adobe.io/"); + }, + }, + { + key: "_transformResponse", + value: function (e, t, n) { + var r = t.data, + o = t.headers, + u = null; + if (!r.type) { + if (r.responses && r.responses.length) { + var d = r.responses; + return ( + (u = {}), + d.forEach(function (t) { + var r = t.body.id; + if (200 === t.status) { + var s = t.body.content.annotId; + e.includes(a.OPERATIONS.BATCH_UPDATE_COMMENT) + ? (u[r] = new i.default(t.body.content, n)) + : e.includes(a.OPERATIONS.BATCH_UPDATE_COMMENT_METADATA) && (u[s.toLowerCase()] = new c.default(t.body.content, o, n)); + } else u[r] = t.body.msg; + }), + u + ); + } + if (e.includes(a.OPERATIONS.FETCH_COMMENT_METADATA)) return new l.default(r); + if (e.includes(a.OPERATIONS.UPDATE_COMMENT_METADATA)) { + u = {}; + var p = new c.default(r); + return (u[p.id.toLowerCase()] = p), u; + } + throw new Error("unknown result type"); + } + switch (r.type) { + case "AnnotationCollection": + return (u = new s.default(r, o, n)); + case "Annotation": + return (u = new i.default(r, n)); + default: + throw new Error("unknown result type"); + } + }, + }, + { + key: "request", + value: function (e, t, n, r, o, a, i) { + var s, + c = this; + return (null !== (s = this.fetchInProgressMap[t]) && void 0 !== s && s[e] ? this.fetchInProgressMap[t][e] : this.fetch(e, t, n, r, o, a)) + .then(function (e) { + return e ? (e.data ? c._transformResponse(n, e, i) : e) : null; + }) + .catch(function (e) { + return Promise.reject(e); + }); + }, + }, + { + key: "formatAuthorizationToken", + value: function () { + return this.token ? (this.token.includes("Bearer ") ? this.token : "Bearer ".concat(this.token)) : ""; + }, + }, + { + key: "joinPath", + value: function (e, t) { + return e && e.endsWith("/") ? (t.startsWith("/") ? "".concat(e).concat(t.substring(1)) : "".concat(e).concat(t)) : t.startsWith("/") ? "".concat(e).concat(t) : "".concat(e, "/").concat(t); + }, + }, + { + key: "fetch", + value: (function (e) { + function t(t, n, r, o, a) { + return e.apply(this, arguments); + } + return ( + (t.toString = function () { + return e.toString(); + }), + t + ); + })(function (e, t, n, r, a) { + var i = this, + s = arguments.length > 5 && void 0 !== arguments[5] ? arguments[5] : {}, + c = { "x-ccx-workflow": !0 }; + if ( + ("asset.batchRemap" === t || "asset.batchUpdateMetadata" === t + ? ((c["Content-Type"] = C), (c.Accept = C)) + : "asset.getMetadata" === t + ? (c.Accept = 'application/vnd.adobe.dc+json; profile="https://comments.adobe.io/schemas/user_comment_metadata_result_v1.json"') + : "annotation.updateMetadata" === t + ? ((c["Content-Type"] = w), (c.Accept = w)) + : ((c["Content-Type"] = D), + (c.Accept = n.indexOf("annots/acl") > -1 ? 'application/vnd.adobe.dc+json;profile="https://comments.acrobat.com/schemas/acl_v1.json"' : D), + (c.Prefer = 'return=representation;include="https://www.w3.org/ns/oa#PreferContainedDescriptions"')), + this.token && (c.Authorization = this.formatAuthorizationToken()), + "asset.get" === t && this.disableGetAuthorization && (c.Authorization = null), + s["If-None-Match"] ? (c["If-None-Match"] = s["If-None-Match"]) : s["If-Match"] && (c["If-Match"] = s["If-Match"]), + s.Accept && (c.Accept = s.Accept), + s["Content-Type"] && (c["Content-Type"] = s["Content-Type"]), + this.appKey && ((c["x-api-key"] = this.appKey), (c["x-mentions"] = !0)), + this.appName && (c["x-api-app-info"] = this.appName), + "string" != typeof r) + ) + throw new Error("method must be defined"); + if ("GET" !== r && !this.token) throw new Error("Authorization not configured. Please set the bearer token before calling this method."); + this.invitationServiceAccessToken && ((c["X-Access-Token"] = this.invitationServiceAccessToken), (c["X-Feature-Override"] = "ValidateCapabilitiesPassword")); + var l = (0, o.v4)(); + c["x-request-id"] = s["x-request-id"] || l; + var u = fetch(this.joinPath(this.commentsApiUrl, n), { method: r, headers: c, body: a ? JSON.stringify(a) : void 0, keepalive: "annotation.updateMetadata" === t || "asset.batchUpdateMetadata" === t }) + .then(function (e) { + return (function (e) { + if (e.status >= 200 && e.status < 300) return e; + var t = e.headers.get("x-request-id"); + throw new S("".concat(e.status, " - ").concat(e.statusText, " x-request-id [").concat(t, "] on URL [").concat(e.url, "]"), e.status); + })(e); + }) + .then(function (e) { + return ( + (n = (t = e).headers.get("ETag")), + (r = t.headers.get("Retry-After")), + (o = t.headers.get("Link")), + new Promise(function (e, a) { + [204, 208, 304, 429].indexOf(t.status) > -1 + ? t + .text() + .then(function () { + e({ retryAfter: r }); + }) + .catch(function () { + return a(); + }) + : t + .json() + .then(function (t) { + e({ data: t, headers: { etag: n, retryAfter: r, link: o } }); + }) + .catch(function () { + return a(); + }); + }) + ); + var t, n, r, o; + }) + .catch(function (e) { + return (e.message = "".concat(e.message, " - x-request-id [").concat(l, "]")), Promise.reject(e); + }) + .finally(function () { + i.fetchInProgressMap[t] && delete i.fetchInProgressMap[t][e]; + }); + return this.fetchInProgressMap[t] && (this.fetchInProgressMap[t][e] = u), u; + }), + }, + { + key: "createAnonymousSession", + value: function (e, t) { + var n = (0, o.v4)(), + r = { + "Content-Type": 'application/vnd.adobe.dc+json;profile="https://comments.acrobat.com/schemas/anon_session_req_v1.json"', + Accept: 'application/vnd.adobe.dc+json;profile="https://comments.acrobat.com/schemas/anon_session_res_v1.json"', + "x-request-id": n, + }; + this.appKey && (r["x-api-key"] = this.appKey), this.appName && (r["x-api-app-info"] = this.appName), t && ((r.Authorization = this.formatAuthorizationToken()), delete e.userName); + var a = "".concat(this.commentsApiUrl).concat(t ? "refresh_anonymous_session" : "create_anonymous_session"); + if (!e || (!e.userName && !t)) throw new Error("Guest username not provided. Please provide a username before calling this method."); + if (!e.captchaSiteKey) throw new Error("reCaptcha site key not provided. Please provide a reCaptcha site key before calling this method."); + if (!e.captchaResponseCode) throw new Error("reCaptcha response code not provided. Please provide a reCaptcha response code before calling this method."); + var i = function (e) { + return new Promise(function (t, r) { + if (201 === e.status) + e.json() + .then(function (n) { + n.ticket && n.id ? t({ token: "AnonBearer ".concat(n.ticket), id: n.id, expires: e.headers.get("expires") }) : r(new Error("missing data.ticket or data.id")); + }) + .catch(function () { + return r(); + }); + else { + var o = e.statusText ? "".concat(e.status, " - ").concat(e.statusText, " x-request-id [").concat(n, "] on URL [").concat(e.url, "]") : e; + r(new S(o, e.status)); + } + }); + }; + return fetch(a, { method: "POST", headers: r, body: JSON.stringify(e) }) + .then(i) + .catch(i); + }, + }, + ], + [ + { + key: "instance", + get: function () { + return this[b] || (this[b] = new e(E)), this[b]; + }, + }, + ] + ), + e + ); + })(); + t.default = A; + }, + 8888: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.STATUS = t.OPERATIONS = t.MOTIVATIONS = void 0), + (t.getCommentPayload = function (e, t, n, r, o, a, i, s) { + var c = { "@context": ["https://www.w3.org/ns/anno.jsonld", "https://comments.acrobat.com/ns/anno.jsonld"], type: "Annotation", bodyValue: t, motivation: a, target: { source: e } }; + return o && (c.mentions = o), d(n) && (p(c, n, s, !(null == r || !r["3dData"])), r && v(c, r, !1), i && (c = h(c, r, i))), c; + }), + (t.setTargetNode = p), + (t.updateCoordinates = v), + (t.updateMediaData = h); + var r = i(n(57305)), + o = i(n(56155)), + a = i(n(89085)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + function s(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function c(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? s(Object(n), !0).forEach(function (t) { + l(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : s(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + function l(e, t, n) { + return t in e ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + } + var u = { COMMENT: "commenting", REPLY: "replying" }; + (t.MOTIVATIONS = u), + (t.STATUS = { OPEN: "open", RESOLVED: "resolved" }), + (t.OPERATIONS = { FETCH_COMMENT_METADATA: "fetch_user_comment_metadata", UPDATE_COMMENT_METADATA: "metadata", BATCH_UPDATE_COMMENT_METADATA: ":umec/entities/", BATCH_UPDATE_COMMENT: ":aec/entities/" }); + var d = function (e) { + return null != e; + }; + function p(e, t, n, r) { + if (d(t) && e) { + var o = {}; + n ? (o.index = t) : (o.id = t), (e.target = r ? { selector: { type: "AdobeMultiDimensionSelector", subtype: "note", node: o } } : { selector: { type: "AdobeAnnoSelector", subtype: "node", node: o } }); + } + return e; + } + function f(e) { + var t = []; + return ( + e.inkList.forEach(function (e) { + if (e.length) { + var n = []; + e.forEach(function (e) { + n.push(e.x, e.y); + }), + t.push(n); + } + }), + t + ); + } + function m(e) { + var t = []; + return ( + e.inkList.forEach(function (e) { + if (e.length) { + var n = e.reduce(function (e, t) { + return e.concat(t.x, t.y); + }, []); + t = t.concat(n); + } + }), + t + ); + } + function h(e, t, n) { + var r = (0, o.default)(e), + a = { type: "AdobeTemporalSelector", unit: n.unit || "frame", frameRateRatio: { num: 3e4, denom: 1001 }, start: n.frameRange.start, end: n.frameRange.end }; + return t && (r.target.selector.refinedBy = a), r; + } + function v(e, t, n) { + if (n) { + if (e.motivation === u.REPLY) return e; + var i = (0, r.default)(e, "target.selector.subtype"), + s = (0, r.default)(e, "target.selector.sectionId"); + if ("highlight" === i || "replace" === i || "strikethrough" === i) + delete e.target.selector.inkList, + "strikethrough" === i && (e.target.selector.subtype = "strikeout"), + s && ((e.target.selector.refinedBy = { type: "AdobeDynamicViewSelector", startStructId: s }), delete e.target.selector.sectionId); + else if ("shape" === i) (e.target.selector.inkList = f(e.target.selector)), s && ((e.target.selector.refinedBy = { type: "AdobeDynamicViewSelector", startStructId: s }), delete e.target.selector.sectionId); + else if ("note" === i) + if (s) { + var l = (0, r.default)(e, "target.selector.noteX"), + d = (0, r.default)(e, "target.selector.noteY"); + (e.target.selector.refinedBy = { type: "AdobeDynamicViewSelector", leftOffset: l, topOffset: d, startStructId: s }), delete e.target.selector.noteX, delete e.target.selector.noteY, delete e.target.selector.sectionId; + } else (0, r.default)(e, "target.selector.pinModelRootPosition") ? delete e.target.selector.subtype : (e.target.selector.refinedBy = null); + if ( + ((0, r.default)(e, "target.selector.node.clientAddedNode") && (delete e.target.selector.node.clientAddedNode, -1 === e.creator.id.indexOf(a.default.instance.userId) && delete e.target.selector), + (0, r.default)(e, "target.selector.node.clientAdjustedIndexToId")) + ) { + var p = e.target.selector.node.id; + if ( + ((e.target.selector.node.index = p), + delete e.target.selector.node.id, + delete e.target.selector.node.clientAdjustedIndexToId, + ("highlight" === i || "replace" === i || "strikethrough" === i) && e.target.selector.node.indices && e.target.selector.node.indices.length) + ) { + var h = (0, o.default)(e.target.selector.node.indices); + e.target.selector.node.indices = h.map(function (e) { + return (e.index = p), e; + }); + } + } + } + if (t) + if ("highlight" === t.subtype || "strikethrough" === t.subtype) + (e.target.selector = Object.assign({}, e.target.selector, { subtype: "highlight" === t.subtype ? "highlight" : "strikeout", opacity: t.opacity || 0.4, strokeColor: t.strokeColor || "#000000", boundingBox: t.boundingBox })), + (e.target.selector.quadPoints = m(t)), + t.sectionId && (e.target.selector.refinedBy = { type: "AdobeDynamicViewSelector", startStructId: t.sectionId }); + else if ("replace" === t.subtype) + (e.target.selector = Object.assign({}, e.target.selector, { subtype: "replace", opacity: t.opacity || 0.4, strokeColor: t.strokeColor || "#000000", boundingBox: t.boundingBox, rect: t.boundingBox })), + (e.target.selector.quadPoints = m(t)), + t.sectionId && (e.target.selector.refinedBy = { type: "AdobeDynamicViewSelector", startStructId: t.sectionId }); + else if ("shape" === t.subtype) + (e.target.selector = Object.assign({}, e.target.selector, { subtype: "shape", opacity: t.opacity || 1, strokeWidth: t.strokeWidth || 5, strokeColor: t.strokeColor || "#000000", boundingBox: t.boundingBox })), + (e.target.selector.inkList = f(t)), + t.sectionId && (e.target.selector.refinedBy = { type: "AdobeDynamicViewSelector", startStructId: t.sectionId }); + else if ("insert" === t.subtype) + e.target.selector = Object.assign({}, e.target.selector, { subtype: "insert", boundingBox: t.boundingBox, rect: t.boundingBox, strokeColor: t.strokeColor || "#000000", noteX: t.noteX, noteY: t.noteY }); + else { + var v = t["3dData"]; + (e.target.selector.subtype = "note"), + null != v && v.pinModelRootPosition + ? ((e.target.selector.subtype = void 0), (e.target.selector = Object.assign({}, e.target.selector, c(c({}, v), {}, { "3dContext": "PIN" })))) + : t.sectionId + ? ((e.target.selector.refinedBy = { type: "AdobeDynamicViewSelector", leftOffset: t.noteX, topOffset: t.noteY, startStructId: t.sectionId }), (e.target.selector.strokeColor = t.strokeColor)) + : ((e.target.selector.noteX = t.noteX), (e.target.selector.noteY = t.noteY), (e.target.selector.strokeColor = t.strokeColor)); + } + return e; + } + }, + 19212: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "q6", { + enumerable: !0, + get: function () { + return a.default; + }, + }), + Object.defineProperty(t, "xR", { + enumerable: !0, + get: function () { + return o.default; + }, + }), + Object.defineProperty(t, "KU", { + enumerable: !0, + get: function () { + return r.default; + }, + }); + var r = i(n(89085)), + o = i(n(27357)), + a = i(n(54920)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + }, + 97740: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var r = i(n(57305)), + o = i(n(43235)), + a = i(n(89085)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + function s(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + function c(e, t, n) { + return t && s(e.prototype, t), n && s(e, n), Object.defineProperty(e, "prototype", { writable: !1 }), e; + } + var l = c(function e() { + var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, + i = n.useNodeIndex, + s = n.validNodes; + if ( + ((function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + })(this, e), + (this["@context"] = t["@context"]), + (this.type = t.type), + (this.id = t.id), + (this.bodyValue = t.bodyValue), + (this.motivation = t.motivation), + (this.target = t.target), + (this.creator = t.creator), + (this.created = t.created), + (this.modified = t.modified), + (this.status = t.status), + (this.etag = t.etag), + (this.mentions = t.mentions), + t.url && (this.url = t.url), + "replying" !== this.motivation) + ) { + var c, l, u, d, p, f, m; + if (s && s.length) { + var h = (0, r.default)(this, "target.selector.node.id"), + v = (0, r.default)(this, "target.selector.node.index"); + if (void 0 === h && void 0 === v) { + var y = { clientAddedNode: !0 }; + i ? (y.index = 0) : (y.id = (0, r.default)(a.default, "instance.validNodes[0].id")), (this.target = (0, o.default)(this.target, { selector: { node: y, subtype: "node", type: "AdobeAnnoSelector" } })); + } + } + if ( + (void 0 !== (0, r.default)(this.target, "selector.node.index") && ((this.target.selector.node.id = (0, r.default)(this.target, "selector.node.index")), (this.target.selector.node.clientAdjustedIndexToId = !0)), + null !== (c = this.target) && + void 0 !== c && + null !== (l = c.selector) && + void 0 !== l && + l.refinedBy && + "AdobeTemporalSelector" !== this.target.selector.refinedBy.type && + ((this.target.selector.noteX = this.target.selector.refinedBy.leftOffset), + (this.target.selector.noteY = this.target.selector.refinedBy.topOffset), + (this.target.selector.sectionId = this.target.selector.refinedBy.startStructId), + delete this.target.selector.refinedBy), + "shape" === (null === (u = this.target) || void 0 === u || null === (d = u.selector) || void 0 === d ? void 0 : d.subtype)) + ) { + var g = []; + this.target.selector.inkList.forEach(function (e) { + if (e.length) { + for (var t = [], n = 0; n < e.length; n += 2) t.push({ x: e[n], y: e[n + 1] }); + g.push(t); + } + }), + (this.target.selector.inkList = g); + } else if (null !== (p = this.target) && void 0 !== p && null !== (f = p.selector) && void 0 !== f && f.pinModelRootPosition) this.target.selector.subtype = "note"; + else if (null !== (m = this.target) && void 0 !== m && m.selector && ("highlight" === this.target.selector.subtype || "replace" === this.target.selector.subtype || "strikeout" === this.target.selector.subtype)) { + var b = this.target.selector.quadPoints, + E = []; + if (b && b.length) { + for (var D = 0; D < b.length; D += 8) { + var C = []; + C.push({ x: b[D], y: b[D + 1] }), C.push({ x: b[D + 2], y: b[D + 3] }), C.push({ x: b[D + 4], y: b[D + 5] }), C.push({ x: b[D + 6], y: b[D + 7] }), E.push(C); + } + (this.target.selector.inkList = E), "strikeout" === this.target.selector.subtype && (this.target.selector.subtype = "strikethrough"); + } + } + } + }); + t.default = l; + }, + 82862: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var r = a(n(97740)), + o = a(n(22344)); + function a(e) { + return e && e.__esModule ? e : { default: e }; + } + function i(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + function s(e, t, n) { + return t && i(e.prototype, t), n && i(e, n), Object.defineProperty(e, "prototype", { writable: !1 }), e; + } + var c = s(function e() { + var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, + a = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : {}; + !(function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + })(this, e), + (this.type = t.type), + (this.id = t.id), + (this.count = t.total), + (this.annotations = t.first.items.map(function (e) { + return new r.default(e, a); + })), + (this.etag = n.etag), + (this.retryAfter = n.retryAfter); + var i = t["adobe:annotCollectionMetadata"] && t["adobe:annotCollectionMetadata"]["adobe:userInfo"]; + if (i) { + var s = []; + Object.keys(i).forEach(function (e) { + s.push(new o.default(i[e], e)); + }), + (this.commenters = s); + } + }); + t.default = c; + }, + 17683: (e, t) => { + "use strict"; + function n(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + function r(e, t, r) { + return t && n(e.prototype, t), r && n(e, r), Object.defineProperty(e, "prototype", { writable: !1 }), e; + } + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var o = r(function e() { + var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}; + !(function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + })(this, e), + (this.id = t.annotId.toLowerCase()), + (this.read = t.read), + (this.etag = t.etag), + (this.creationId = t.creationId), + (this.requestId = t["x-request-id"]); + }); + t.default = o; + }, + 76446: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var r, + o = (r = n(17683)) && r.__esModule ? r : { default: r }; + function a(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + function i(e, t, n) { + return t && a(e.prototype, t), n && a(e, n), Object.defineProperty(e, "prototype", { writable: !1 }), e; + } + var s = i(function e() { + var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}; + !(function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + })(this, e); + var n = {}; + t + .map(function (e) { + return new o.default(e); + }) + .forEach(function (e) { + n[e.id.toLowerCase()] = e; + }), + (this.metadataCollection = n); + }); + t.default = s; + }, + 22344: (e, t) => { + "use strict"; + function n(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), Object.defineProperty(e, r.key, r); + } + } + function r(e, t, r) { + return t && n(e.prototype, t), r && n(e, r), Object.defineProperty(e, "prototype", { writable: !1 }), e; + } + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var o = r(function e() { + var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, + n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : ""; + !(function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + })(this, e), + (this.id = n), + (this.type = t.type), + (this.name = t.name), + (this.email = t.email), + (this.isGuest = !t.email || "None" === t.email); + }); + t.default = o; + }, + 92682: (e, t, n) => { + var r; + !(function (o) { + var a = Array.isArray + ? Array.isArray + : function (e) { + return "[object Array]" === Object.prototype.toString.call(e); + }, + i = 10; + function s() { + (this._events = {}), this._conf && c.call(this, this._conf); + } + function c(e) { + e + ? ((this._conf = e), + e.delimiter && (this.delimiter = e.delimiter), + (this._events.maxListeners = e.maxListeners !== o ? e.maxListeners : i), + e.wildcard && (this.wildcard = e.wildcard), + e.newListener && (this.newListener = e.newListener), + e.verboseMemoryLeak && (this.verboseMemoryLeak = e.verboseMemoryLeak), + this.wildcard && (this.listenerTree = {})) + : (this._events.maxListeners = i); + } + function l(e, t) { + var n = "(node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit."; + this.verboseMemoryLeak ? ((n += " Event name: %s."), console.error(n, e, t)) : console.error(n, e), console.trace && console.trace(); + } + function u(e) { + (this._events = {}), (this.newListener = !1), (this.verboseMemoryLeak = !1), c.call(this, e); + } + function d(e, t, n, r) { + if (!n) return []; + var o, + a, + i, + s, + c, + l, + u, + p = [], + f = t.length, + m = t[r], + h = t[r + 1]; + if (r === f && n._listeners) { + if ("function" == typeof n._listeners) return e && e.push(n._listeners), [n]; + for (o = 0, a = n._listeners.length; o < a; o++) e && e.push(n._listeners[o]); + return [n]; + } + if ("*" === m || "**" === m || n[m]) { + if ("*" === m) { + for (i in n) "_listeners" !== i && n.hasOwnProperty(i) && (p = p.concat(d(e, t, n[i], r + 1))); + return p; + } + if ("**" === m) { + for (i in ((u = r + 1 === f || (r + 2 === f && "*" === h)) && n._listeners && (p = p.concat(d(e, t, n, f))), n)) + "_listeners" !== i && + n.hasOwnProperty(i) && + ("*" === i || "**" === i ? (n[i]._listeners && !u && (p = p.concat(d(e, t, n[i], f))), (p = p.concat(d(e, t, n[i], r)))) : (p = i === h ? p.concat(d(e, t, n[i], r + 2)) : p.concat(d(e, t, n[i], r)))); + return p; + } + p = p.concat(d(e, t, n[m], r + 1)); + } + if (((s = n["*"]) && d(e, t, s, r + 1), (c = n["**"]))) + if (r < f) for (i in (c._listeners && d(e, t, c, f), c)) "_listeners" !== i && c.hasOwnProperty(i) && (i === h ? d(e, t, c[i], r + 2) : i === m ? d(e, t, c[i], r + 1) : (((l = {})[i] = c[i]), d(e, t, { "**": l }, r + 1))); + else c._listeners ? d(e, t, c, f) : c["*"] && c["*"]._listeners && d(e, t, c["*"], f); + return p; + } + function p(e, t) { + for (var n = 0, r = (e = "string" == typeof e ? e.split(this.delimiter) : e.slice()).length; n + 1 < r; n++) if ("**" === e[n] && "**" === e[n + 1]) return; + for (var a = this.listenerTree, i = e.shift(); i !== o; ) { + if ((a[i] || (a[i] = {}), (a = a[i]), 0 === e.length)) + return ( + a._listeners + ? ("function" == typeof a._listeners && (a._listeners = [a._listeners]), + a._listeners.push(t), + !a._listeners.warned && this._events.maxListeners > 0 && a._listeners.length > this._events.maxListeners && ((a._listeners.warned = !0), l.call(this, a._listeners.length, i))) + : (a._listeners = t), + !0 + ); + i = e.shift(); + } + return !0; + } + (u.EventEmitter2 = u), + (u.prototype.delimiter = "."), + (u.prototype.setMaxListeners = function (e) { + e !== o && (this._events || s.call(this), (this._events.maxListeners = e), this._conf || (this._conf = {}), (this._conf.maxListeners = e)); + }), + (u.prototype.event = ""), + (u.prototype.once = function (e, t) { + return this.many(e, 1, t), this; + }), + (u.prototype.many = function (e, t, n) { + var r = this; + if ("function" != typeof n) throw new Error("many only accepts instances of Function"); + function o() { + 0 == --t && r.off(e, o), n.apply(this, arguments); + } + return (o._origin = n), this.on(e, o), r; + }), + (u.prototype.emit = function () { + this._events || s.call(this); + var e = arguments[0]; + if ("newListener" === e && !this.newListener && !this._events.newListener) return !1; + var t, + n, + r, + o, + a, + i = arguments.length; + if (this._all && this._all.length) { + if (((a = this._all.slice()), i > 3)) for (t = new Array(i), o = 0; o < i; o++) t[o] = arguments[o]; + for (r = 0, n = a.length; r < n; r++) + switch (((this.event = e), i)) { + case 1: + a[r].call(this, e); + break; + case 2: + a[r].call(this, e, arguments[1]); + break; + case 3: + a[r].call(this, e, arguments[1], arguments[2]); + break; + default: + a[r].apply(this, t); + } + } + if (this.wildcard) { + a = []; + var c = "string" == typeof e ? e.split(this.delimiter) : e.slice(); + d.call(this, a, c, this.listenerTree, 0); + } else { + if ("function" == typeof (a = this._events[e])) { + switch (((this.event = e), i)) { + case 1: + a.call(this); + break; + case 2: + a.call(this, arguments[1]); + break; + case 3: + a.call(this, arguments[1], arguments[2]); + break; + default: + for (t = new Array(i - 1), o = 1; o < i; o++) t[o - 1] = arguments[o]; + a.apply(this, t); + } + return !0; + } + a && (a = a.slice()); + } + if (a && a.length) { + if (i > 3) for (t = new Array(i - 1), o = 1; o < i; o++) t[o - 1] = arguments[o]; + for (r = 0, n = a.length; r < n; r++) + switch (((this.event = e), i)) { + case 1: + a[r].call(this); + break; + case 2: + a[r].call(this, arguments[1]); + break; + case 3: + a[r].call(this, arguments[1], arguments[2]); + break; + default: + a[r].apply(this, t); + } + return !0; + } + if (!this._all && "error" === e) throw arguments[1] instanceof Error ? arguments[1] : new Error("Uncaught, unspecified 'error' event."); + return !!this._all; + }), + (u.prototype.emitAsync = function () { + this._events || s.call(this); + var e = arguments[0]; + if ("newListener" === e && !this.newListener && !this._events.newListener) return Promise.resolve([!1]); + var t, + n, + r, + o, + a, + i = [], + c = arguments.length; + if (this._all) { + if (c > 3) for (t = new Array(c), o = 1; o < c; o++) t[o] = arguments[o]; + for (r = 0, n = this._all.length; r < n; r++) + switch (((this.event = e), c)) { + case 1: + i.push(this._all[r].call(this, e)); + break; + case 2: + i.push(this._all[r].call(this, e, arguments[1])); + break; + case 3: + i.push(this._all[r].call(this, e, arguments[1], arguments[2])); + break; + default: + i.push(this._all[r].apply(this, t)); + } + } + if (this.wildcard) { + a = []; + var l = "string" == typeof e ? e.split(this.delimiter) : e.slice(); + d.call(this, a, l, this.listenerTree, 0); + } else a = this._events[e]; + if ("function" == typeof a) + switch (((this.event = e), c)) { + case 1: + i.push(a.call(this)); + break; + case 2: + i.push(a.call(this, arguments[1])); + break; + case 3: + i.push(a.call(this, arguments[1], arguments[2])); + break; + default: + for (t = new Array(c - 1), o = 1; o < c; o++) t[o - 1] = arguments[o]; + i.push(a.apply(this, t)); + } + else if (a && a.length) { + if (c > 3) for (t = new Array(c - 1), o = 1; o < c; o++) t[o - 1] = arguments[o]; + for (r = 0, n = a.length; r < n; r++) + switch (((this.event = e), c)) { + case 1: + i.push(a[r].call(this)); + break; + case 2: + i.push(a[r].call(this, arguments[1])); + break; + case 3: + i.push(a[r].call(this, arguments[1], arguments[2])); + break; + default: + i.push(a[r].apply(this, t)); + } + } else if (!this._all && "error" === e) return arguments[1] instanceof Error ? Promise.reject(arguments[1]) : Promise.reject("Uncaught, unspecified 'error' event."); + return Promise.all(i); + }), + (u.prototype.on = function (e, t) { + if ("function" == typeof e) return this.onAny(e), this; + if ("function" != typeof t) throw new Error("on only accepts instances of Function"); + return ( + this._events || s.call(this), + this.emit("newListener", e, t), + this.wildcard + ? (p.call(this, e, t), this) + : (this._events[e] + ? ("function" == typeof this._events[e] && (this._events[e] = [this._events[e]]), + this._events[e].push(t), + !this._events[e].warned && this._events.maxListeners > 0 && this._events[e].length > this._events.maxListeners && ((this._events[e].warned = !0), l.call(this, this._events[e].length, e))) + : (this._events[e] = t), + this) + ); + }), + (u.prototype.onAny = function (e) { + if ("function" != typeof e) throw new Error("onAny only accepts instances of Function"); + return this._all || (this._all = []), this._all.push(e), this; + }), + (u.prototype.addListener = u.prototype.on), + (u.prototype.off = function (e, t) { + if ("function" != typeof t) throw new Error("removeListener only takes instances of Function"); + var n, + r = []; + if (this.wildcard) { + var i = "string" == typeof e ? e.split(this.delimiter) : e.slice(); + r = d.call(this, null, i, this.listenerTree, 0); + } else { + if (!this._events[e]) return this; + (n = this._events[e]), r.push({ _listeners: n }); + } + for (var s = 0; s < r.length; s++) { + var c = r[s]; + if (((n = c._listeners), a(n))) { + for (var l = -1, u = 0, p = n.length; u < p; u++) + if (n[u] === t || (n[u].listener && n[u].listener === t) || (n[u]._origin && n[u]._origin === t)) { + l = u; + break; + } + if (l < 0) continue; + return this.wildcard ? c._listeners.splice(l, 1) : this._events[e].splice(l, 1), 0 === n.length && (this.wildcard ? delete c._listeners : delete this._events[e]), this.emit("removeListener", e, t), this; + } + (n === t || (n.listener && n.listener === t) || (n._origin && n._origin === t)) && (this.wildcard ? delete c._listeners : delete this._events[e], this.emit("removeListener", e, t)); + } + return ( + (function e(t) { + if (t !== o) { + var n = Object.keys(t); + for (var r in n) { + var a = n[r], + i = t[a]; + i instanceof Function || "object" != typeof i || null === i || (Object.keys(i).length > 0 && e(t[a]), 0 === Object.keys(i).length && delete t[a]); + } + } + })(this.listenerTree), + this + ); + }), + (u.prototype.offAny = function (e) { + var t, + n = 0, + r = 0; + if (e && this._all && this._all.length > 0) { + for (n = 0, r = (t = this._all).length; n < r; n++) if (e === t[n]) return t.splice(n, 1), this.emit("removeListenerAny", e), this; + } else { + for (n = 0, r = (t = this._all).length; n < r; n++) this.emit("removeListenerAny", t[n]); + this._all = []; + } + return this; + }), + (u.prototype.removeListener = u.prototype.off), + (u.prototype.removeAllListeners = function (e) { + if (0 === arguments.length) return !this._events || s.call(this), this; + if (this.wildcard) for (var t = "string" == typeof e ? e.split(this.delimiter) : e.slice(), n = d.call(this, null, t, this.listenerTree, 0), r = 0; r < n.length; r++) n[r]._listeners = null; + else this._events && (this._events[e] = null); + return this; + }), + (u.prototype.listeners = function (e) { + if (this.wildcard) { + var t = [], + n = "string" == typeof e ? e.split(this.delimiter) : e.slice(); + return d.call(this, t, n, this.listenerTree, 0), t; + } + return this._events || s.call(this), this._events[e] || (this._events[e] = []), a(this._events[e]) || (this._events[e] = [this._events[e]]), this._events[e]; + }), + (u.prototype.listenerCount = function (e) { + return this.listeners(e).length; + }), + (u.prototype.listenersAny = function () { + return this._all ? this._all : []; + }), + (r = function () { + return u; + }.call(t, n, t, e)) === o || (e.exports = r); + })(); + }, + 52839: (e, t, n) => { + "use strict"; + var r; + n.r(t), n.d(t, { NIL: () => O, parse: () => v, stringify: () => u, v1: () => h, v3: () => A, v4: () => k, v5: () => I, validate: () => s, version: () => F }); + var o = new Uint8Array(16); + function a() { + if ( + !r && + !(r = + ("undefined" != typeof crypto && crypto.getRandomValues && crypto.getRandomValues.bind(crypto)) || ("undefined" != typeof msCrypto && "function" == typeof msCrypto.getRandomValues && msCrypto.getRandomValues.bind(msCrypto))) + ) + throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported"); + return r(o); + } + const i = /^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i, + s = function (e) { + return "string" == typeof e && i.test(e); + }; + for (var c = [], l = 0; l < 256; ++l) c.push((l + 256).toString(16).substr(1)); + const u = function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0, + n = ( + c[e[t + 0]] + + c[e[t + 1]] + + c[e[t + 2]] + + c[e[t + 3]] + + "-" + + c[e[t + 4]] + + c[e[t + 5]] + + "-" + + c[e[t + 6]] + + c[e[t + 7]] + + "-" + + c[e[t + 8]] + + c[e[t + 9]] + + "-" + + c[e[t + 10]] + + c[e[t + 11]] + + c[e[t + 12]] + + c[e[t + 13]] + + c[e[t + 14]] + + c[e[t + 15]] + ).toLowerCase(); + if (!s(n)) throw TypeError("Stringified UUID is invalid"); + return n; + }; + var d, + p, + f = 0, + m = 0; + const h = function (e, t, n) { + var r = (t && n) || 0, + o = t || new Array(16), + i = (e = e || {}).node || d, + s = void 0 !== e.clockseq ? e.clockseq : p; + if (null == i || null == s) { + var c = e.random || (e.rng || a)(); + null == i && (i = d = [1 | c[0], c[1], c[2], c[3], c[4], c[5]]), null == s && (s = p = 16383 & ((c[6] << 8) | c[7])); + } + var l = void 0 !== e.msecs ? e.msecs : Date.now(), + h = void 0 !== e.nsecs ? e.nsecs : m + 1, + v = l - f + (h - m) / 1e4; + if ((v < 0 && void 0 === e.clockseq && (s = (s + 1) & 16383), (v < 0 || l > f) && void 0 === e.nsecs && (h = 0), h >= 1e4)) throw new Error("uuid.v1(): Can't create more than 10M uuids/sec"); + (f = l), (m = h), (p = s); + var y = (1e4 * (268435455 & (l += 122192928e5)) + h) % 4294967296; + (o[r++] = (y >>> 24) & 255), (o[r++] = (y >>> 16) & 255), (o[r++] = (y >>> 8) & 255), (o[r++] = 255 & y); + var g = ((l / 4294967296) * 1e4) & 268435455; + (o[r++] = (g >>> 8) & 255), (o[r++] = 255 & g), (o[r++] = ((g >>> 24) & 15) | 16), (o[r++] = (g >>> 16) & 255), (o[r++] = (s >>> 8) | 128), (o[r++] = 255 & s); + for (var b = 0; b < 6; ++b) o[r + b] = i[b]; + return t || u(o); + }, + v = function (e) { + if (!s(e)) throw TypeError("Invalid UUID"); + var t, + n = new Uint8Array(16); + return ( + (n[0] = (t = parseInt(e.slice(0, 8), 16)) >>> 24), + (n[1] = (t >>> 16) & 255), + (n[2] = (t >>> 8) & 255), + (n[3] = 255 & t), + (n[4] = (t = parseInt(e.slice(9, 13), 16)) >>> 8), + (n[5] = 255 & t), + (n[6] = (t = parseInt(e.slice(14, 18), 16)) >>> 8), + (n[7] = 255 & t), + (n[8] = (t = parseInt(e.slice(19, 23), 16)) >>> 8), + (n[9] = 255 & t), + (n[10] = ((t = parseInt(e.slice(24, 36), 16)) / 1099511627776) & 255), + (n[11] = (t / 4294967296) & 255), + (n[12] = (t >>> 24) & 255), + (n[13] = (t >>> 16) & 255), + (n[14] = (t >>> 8) & 255), + (n[15] = 255 & t), + n + ); + }; + function y(e, t, n) { + function r(e, r, o, a) { + if ( + ("string" == typeof e && + (e = (function (e) { + e = unescape(encodeURIComponent(e)); + for (var t = [], n = 0; n < e.length; ++n) t.push(e.charCodeAt(n)); + return t; + })(e)), + "string" == typeof r && (r = v(r)), + 16 !== r.length) + ) + throw TypeError("Namespace must be array-like (16 iterable integer values, 0-255)"); + var i = new Uint8Array(16 + e.length); + if ((i.set(r), i.set(e, r.length), ((i = n(i))[6] = (15 & i[6]) | t), (i[8] = (63 & i[8]) | 128), o)) { + a = a || 0; + for (var s = 0; s < 16; ++s) o[a + s] = i[s]; + return o; + } + return u(i); + } + try { + r.name = e; + } catch (e) {} + return (r.DNS = "6ba7b810-9dad-11d1-80b4-00c04fd430c8"), (r.URL = "6ba7b811-9dad-11d1-80b4-00c04fd430c8"), r; + } + function g(e) { + return 14 + (((e + 64) >>> 9) << 4) + 1; + } + function b(e, t) { + var n = (65535 & e) + (65535 & t); + return (((e >> 16) + (t >> 16) + (n >> 16)) << 16) | (65535 & n); + } + function E(e, t, n, r, o, a) { + return b(((i = b(b(t, e), b(r, a))) << (s = o)) | (i >>> (32 - s)), n); + var i, s; + } + function D(e, t, n, r, o, a, i) { + return E((t & n) | (~t & r), e, t, o, a, i); + } + function C(e, t, n, r, o, a, i) { + return E((t & r) | (n & ~r), e, t, o, a, i); + } + function w(e, t, n, r, o, a, i) { + return E(t ^ n ^ r, e, t, o, a, i); + } + function S(e, t, n, r, o, a, i) { + return E(n ^ (t | ~r), e, t, o, a, i); + } + const A = y("v3", 48, function (e) { + if ("string" == typeof e) { + var t = unescape(encodeURIComponent(e)); + e = new Uint8Array(t.length); + for (var n = 0; n < t.length; ++n) e[n] = t.charCodeAt(n); + } + return (function (e) { + for (var t = [], n = 32 * e.length, r = "0123456789abcdef", o = 0; o < n; o += 8) { + var a = (e[o >> 5] >>> o % 32) & 255, + i = parseInt(r.charAt((a >>> 4) & 15) + r.charAt(15 & a), 16); + t.push(i); + } + return t; + })( + (function (e, t) { + (e[t >> 5] |= 128 << t % 32), (e[g(t) - 1] = t); + for (var n = 1732584193, r = -271733879, o = -1732584194, a = 271733878, i = 0; i < e.length; i += 16) { + var s = n, + c = r, + l = o, + u = a; + (n = D(n, r, o, a, e[i], 7, -680876936)), + (a = D(a, n, r, o, e[i + 1], 12, -389564586)), + (o = D(o, a, n, r, e[i + 2], 17, 606105819)), + (r = D(r, o, a, n, e[i + 3], 22, -1044525330)), + (n = D(n, r, o, a, e[i + 4], 7, -176418897)), + (a = D(a, n, r, o, e[i + 5], 12, 1200080426)), + (o = D(o, a, n, r, e[i + 6], 17, -1473231341)), + (r = D(r, o, a, n, e[i + 7], 22, -45705983)), + (n = D(n, r, o, a, e[i + 8], 7, 1770035416)), + (a = D(a, n, r, o, e[i + 9], 12, -1958414417)), + (o = D(o, a, n, r, e[i + 10], 17, -42063)), + (r = D(r, o, a, n, e[i + 11], 22, -1990404162)), + (n = D(n, r, o, a, e[i + 12], 7, 1804603682)), + (a = D(a, n, r, o, e[i + 13], 12, -40341101)), + (o = D(o, a, n, r, e[i + 14], 17, -1502002290)), + (n = C(n, (r = D(r, o, a, n, e[i + 15], 22, 1236535329)), o, a, e[i + 1], 5, -165796510)), + (a = C(a, n, r, o, e[i + 6], 9, -1069501632)), + (o = C(o, a, n, r, e[i + 11], 14, 643717713)), + (r = C(r, o, a, n, e[i], 20, -373897302)), + (n = C(n, r, o, a, e[i + 5], 5, -701558691)), + (a = C(a, n, r, o, e[i + 10], 9, 38016083)), + (o = C(o, a, n, r, e[i + 15], 14, -660478335)), + (r = C(r, o, a, n, e[i + 4], 20, -405537848)), + (n = C(n, r, o, a, e[i + 9], 5, 568446438)), + (a = C(a, n, r, o, e[i + 14], 9, -1019803690)), + (o = C(o, a, n, r, e[i + 3], 14, -187363961)), + (r = C(r, o, a, n, e[i + 8], 20, 1163531501)), + (n = C(n, r, o, a, e[i + 13], 5, -1444681467)), + (a = C(a, n, r, o, e[i + 2], 9, -51403784)), + (o = C(o, a, n, r, e[i + 7], 14, 1735328473)), + (n = w(n, (r = C(r, o, a, n, e[i + 12], 20, -1926607734)), o, a, e[i + 5], 4, -378558)), + (a = w(a, n, r, o, e[i + 8], 11, -2022574463)), + (o = w(o, a, n, r, e[i + 11], 16, 1839030562)), + (r = w(r, o, a, n, e[i + 14], 23, -35309556)), + (n = w(n, r, o, a, e[i + 1], 4, -1530992060)), + (a = w(a, n, r, o, e[i + 4], 11, 1272893353)), + (o = w(o, a, n, r, e[i + 7], 16, -155497632)), + (r = w(r, o, a, n, e[i + 10], 23, -1094730640)), + (n = w(n, r, o, a, e[i + 13], 4, 681279174)), + (a = w(a, n, r, o, e[i], 11, -358537222)), + (o = w(o, a, n, r, e[i + 3], 16, -722521979)), + (r = w(r, o, a, n, e[i + 6], 23, 76029189)), + (n = w(n, r, o, a, e[i + 9], 4, -640364487)), + (a = w(a, n, r, o, e[i + 12], 11, -421815835)), + (o = w(o, a, n, r, e[i + 15], 16, 530742520)), + (n = S(n, (r = w(r, o, a, n, e[i + 2], 23, -995338651)), o, a, e[i], 6, -198630844)), + (a = S(a, n, r, o, e[i + 7], 10, 1126891415)), + (o = S(o, a, n, r, e[i + 14], 15, -1416354905)), + (r = S(r, o, a, n, e[i + 5], 21, -57434055)), + (n = S(n, r, o, a, e[i + 12], 6, 1700485571)), + (a = S(a, n, r, o, e[i + 3], 10, -1894986606)), + (o = S(o, a, n, r, e[i + 10], 15, -1051523)), + (r = S(r, o, a, n, e[i + 1], 21, -2054922799)), + (n = S(n, r, o, a, e[i + 8], 6, 1873313359)), + (a = S(a, n, r, o, e[i + 15], 10, -30611744)), + (o = S(o, a, n, r, e[i + 6], 15, -1560198380)), + (r = S(r, o, a, n, e[i + 13], 21, 1309151649)), + (n = S(n, r, o, a, e[i + 4], 6, -145523070)), + (a = S(a, n, r, o, e[i + 11], 10, -1120210379)), + (o = S(o, a, n, r, e[i + 2], 15, 718787259)), + (r = S(r, o, a, n, e[i + 9], 21, -343485551)), + (n = b(n, s)), + (r = b(r, c)), + (o = b(o, l)), + (a = b(a, u)); + } + return [n, r, o, a]; + })( + (function (e) { + if (0 === e.length) return []; + for (var t = 8 * e.length, n = new Uint32Array(g(t)), r = 0; r < t; r += 8) n[r >> 5] |= (255 & e[r / 8]) << r % 32; + return n; + })(e), + 8 * e.length + ) + ); + }), + k = function (e, t, n) { + var r = (e = e || {}).random || (e.rng || a)(); + if (((r[6] = (15 & r[6]) | 64), (r[8] = (63 & r[8]) | 128), t)) { + n = n || 0; + for (var o = 0; o < 16; ++o) t[n + o] = r[o]; + return t; + } + return u(r); + }; + function _(e, t, n, r) { + switch (e) { + case 0: + return (t & n) ^ (~t & r); + case 1: + case 3: + return t ^ n ^ r; + case 2: + return (t & n) ^ (t & r) ^ (n & r); + } + } + function T(e, t) { + return (e << t) | (e >>> (32 - t)); + } + const I = y("v5", 80, function (e) { + var t = [1518500249, 1859775393, 2400959708, 3395469782], + n = [1732584193, 4023233417, 2562383102, 271733878, 3285377520]; + if ("string" == typeof e) { + var r = unescape(encodeURIComponent(e)); + e = []; + for (var o = 0; o < r.length; ++o) e.push(r.charCodeAt(o)); + } else Array.isArray(e) || (e = Array.prototype.slice.call(e)); + e.push(128); + for (var a = e.length / 4 + 2, i = Math.ceil(a / 16), s = new Array(i), c = 0; c < i; ++c) { + for (var l = new Uint32Array(16), u = 0; u < 16; ++u) l[u] = (e[64 * c + 4 * u] << 24) | (e[64 * c + 4 * u + 1] << 16) | (e[64 * c + 4 * u + 2] << 8) | e[64 * c + 4 * u + 3]; + s[c] = l; + } + (s[i - 1][14] = (8 * (e.length - 1)) / Math.pow(2, 32)), (s[i - 1][14] = Math.floor(s[i - 1][14])), (s[i - 1][15] = (8 * (e.length - 1)) & 4294967295); + for (var d = 0; d < i; ++d) { + for (var p = new Uint32Array(80), f = 0; f < 16; ++f) p[f] = s[d][f]; + for (var m = 16; m < 80; ++m) p[m] = T(p[m - 3] ^ p[m - 8] ^ p[m - 14] ^ p[m - 16], 1); + for (var h = n[0], v = n[1], y = n[2], g = n[3], b = n[4], E = 0; E < 80; ++E) { + var D = Math.floor(E / 20), + C = (T(h, 5) + _(D, v, y, g) + b + t[D] + p[E]) >>> 0; + (b = g), (g = y), (y = T(v, 30) >>> 0), (v = h), (h = C); + } + (n[0] = (n[0] + h) >>> 0), (n[1] = (n[1] + v) >>> 0), (n[2] = (n[2] + y) >>> 0), (n[3] = (n[3] + g) >>> 0), (n[4] = (n[4] + b) >>> 0); + } + return [ + (n[0] >> 24) & 255, + (n[0] >> 16) & 255, + (n[0] >> 8) & 255, + 255 & n[0], + (n[1] >> 24) & 255, + (n[1] >> 16) & 255, + (n[1] >> 8) & 255, + 255 & n[1], + (n[2] >> 24) & 255, + (n[2] >> 16) & 255, + (n[2] >> 8) & 255, + 255 & n[2], + (n[3] >> 24) & 255, + (n[3] >> 16) & 255, + (n[3] >> 8) & 255, + 255 & n[3], + (n[4] >> 24) & 255, + (n[4] >> 16) & 255, + (n[4] >> 8) & 255, + 255 & n[4], + ]; + }), + O = "00000000-0000-0000-0000-000000000000", + F = function (e) { + if (!s(e)) throw TypeError("Invalid UUID"); + return parseInt(e.substr(14, 1), 16); + }; + }, + 21429: (e) => { + function t(e, t) { + var n = e.toString(); + if (n.length < t) { + var r = []; + (r.length = t - n.length + 1), (n = r.join("0") + n); + } + return n; + } + function n(e, t) { + return ( + Object.getOwnPropertyNames(t).forEach(function (r) { + if ("object" == typeof t[r]) "object" != typeof e[r] && (e[r] = {}), n(e[r], t[r]); + else { + var o = Object.getOwnPropertyDescriptor(t, r); + Object.defineProperty(e, r, o); + } + }), + e + ); + } + function r(e, t, n) { + e.forEach(function (e) { + setTimeout(function () { + e(t, n); + }); + }); + } + var o = { prod: "cc-api-data.adobe.io", stage: "cc-api-data-stage.adobe.io", dev: "cc-api-data-dev.adobe.io" }, + a = "/ingest", + i = { + ENVIRONMENT: "prod", + ALLOW_NO_TOKEN: !1, + ANALYTICS_INGEST_TYPE: "dunamis", + ANALYTICS_MAX_QUEUED_EVENTS: 50, + ANALYTICS_DEBOUNCE: 1e4, + ANALYTICS_API_KEY: null, + ANALYTICS_X_PRODUCT: null, + ANALYTICS_X_PRODUCT_LOCATION: void 0, + ANALYTICS_PROJECT: null, + ANALYTICS_USER_REGION: "UNKNOWN", + TIMESTAMP_PROPERTY_NAME: "event.dts_end", + }, + s = ["ANALYTICS_API_KEY", "ANALYTICS_X_PRODUCT", "ANALYTICS_PROJECT"]; + function c(e, t) { + (e = e || {}), (t = t || {}); + var r = (e) => { + throw (this._log(e), new Error("ERROR: " + e)); + }; + (this._queuedEvents = []), + (this._queuedCallbacks = []), + (this._lastSendTime = 0), + (this._isEnabled = !1), + (this._dependencies = n({}, e)), + (e.getAccessToken && "function" == typeof e.getAccessToken) || r("Missing dependency: getAccessToken"), + (this._options = {}), + Object.keys(i).forEach((e) => { + this._options[e] = t[e] || i[e]; + }), + s.forEach((e) => { + this._options[e] || r("Missing option: " + e); + }), + "undefined" == typeof fetch && r("Ingest requires fetch - if in a node environment, set 'global.fetch = require('node-fetch');'"); + } + (c.prototype._log = function (e) { + var t = this._dependencies.log; + t && t("Ingest :: " + e); + }), + (c.prototype._getAgent = function (e, t) { + this._dependencies.getAgent ? this._dependencies.getAgent(e, t) : t(null, {}); + }), + (c.prototype._getAccessToken = function (e) { + this._dependencies.getAccessToken(e); + }), + (c.prototype._clearAccessToken = function () { + this._dependencies.clearAccessToken && this._dependencies.clearAccessToken(); + }), + (c.prototype._getEnvironment = function () { + return o[this._options.ENVIRONMENT] ? this._options.ENVIRONMENT : "prod"; + }), + (c.prototype._getAnalyticsHost = function () { + return o[this._getEnvironment()]; + }), + (c.prototype._formatTimestamp = function (e) { + var n = e.getFullYear(), + r = t(e.getMonth() + 1, 2), + o = t(e.getDate(), 2), + a = t(e.getHours(), 2), + i = t(e.getMinutes(), 2), + s = t(e.getSeconds(), 2), + c = t(e.getMilliseconds(), 3), + l = e.getTimezoneOffset(), + u = l < 0 ? "+" : "-", + d = Math.floor(Math.abs(l) / 60), + p = Math.abs(l) % 60; + return n + "-" + r + "-" + o + "T" + a + ":" + i + ":" + s + "." + c + (u + t(d, 2) + t(p, 2)); + }), + (c.prototype._updateDebounce = function (e) { + var t = e && (e["retry-after"] || e["Retry-After"]), + n = 0; + if (t) { + var r; + try { + r = parseInt(t, 10); + } catch (e) {} + if (r) n = Math.max(0, r); + else { + var o = Date.parse(t); + if (o) { + var a = new Date().valueOf(); + n = Math.max(0, o - a) / 1e3 + Math.floor(10 * Math.random()); + } + } + } + this._options.ANALYTICS_DEBOUNCE = Math.max(1e3 * n, this._options.ANALYTICS_DEBOUNCE); + }), + (c.prototype._queueEvent = function (e) { + this._queuedEvents.length >= this._options.ANALYTICS_MAX_QUEUED_EVENTS && this._queuedEvents.shift(), this._queuedEvents.push(e); + }), + (c.prototype._requeueEvents = function (e) { + (this._queuedEvents = e.concat(this._queuedEvents)), + (this._queuedEvents = (function (e, t) { + var n = e; + if (e && e.length > t && t > 0) { + var r = e.length - t; + n = e.slice(r, e.length); + } + return n; + })(this._queuedEvents, this._options.ANALYTICS_MAX_QUEUED_EVENTS)); + }), + (c.prototype._sendAnalytics = function (e, t, o) { + if (((o = o || 0), t && this._queuedCallbacks.push(t), !this._isEnabled || 0 === this._queuedEvents.length)) { + var i = this._queuedCallbacks; + return (this._queuedCallbacks = []), void (this._isEnabled ? r(i, null, 0) : r(i, new Error("Analytics Disabled"))); + } + var s = this._options.ANALYTICS_DEBOUNCE; + if ((e && ((s = 0), clearTimeout(this._pendingSendAnalyticsTimeout), (this._pendingSendAnalyticsTimeout = void 0)), this._sendingEvents || this._pendingSendAnalyticsTimeout)) e && (this._fastFollow = !0); + else { + var c = new Date().valueOf(); + if (c - this._lastSendTime < s) + this._pendingSendAnalyticsTimeout = setTimeout(() => { + (this._pendingSendAnalyticsTimeout = void 0), this._sendAnalytics(); + }, s); + else { + (this._lastSendTime = c), (this._sendingEvents = this._queuedEvents), (this._sendingCallbacks = this._queuedCallbacks), (this._queuedEvents = []), (this._queuedCallbacks = []); + var l, + u = + (l = function () { + return Math.floor(65536 * (1 + Math.random())) + .toString(16) + .substring(1); + })() + + l() + + "-" + + l() + + "-" + + l() + + "-" + + l() + + "-" + + l() + + l() + + l(), + d = "[" + u + "] ", + p = { events: this._sendingEvents }, + f = (e) => { + var t = this._queuedEvents ? this._queuedEvents.length : 0; + if (this._sendingEvents) { + var n = this._sendingEvents.length; + e ? (this._requeueEvents(this._sendingEvents), this._log(d + "Error sending " + n + " events: " + e)) : this._log(d + "Success sending " + n + " events: " + JSON.stringify(this._sendingEvents)), + delete this._sendingEvents; + var o = this._sendingCallbacks; + delete this._sendingCallbacks, e ? r(o, e) : r(o, null, n); + } + t > 0 && this._sendAnalytics(this._fastFollow), (this._fastFollow = !1); + }, + m = (e, t) => { + if ((this._updateDebounce(t), 401 === e && 0 === o)) + return ( + this._clearAccessToken(), + this._requeueEvents(this._sendingEvents), + delete this._sendingEvents, + (this._queuedCallbacks = this._sendingCallbacks.concat(this._queuedCallbacks)), + delete this._sendingCallbacks, + this._log(d + "Access token is expired. Retry one more time."), + void this._sendAnalytics(!0, void 0, o + 1) + ); + 200 === e ? f() : f(new Error("Unexpected Response: " + e)); + }; + this._getAccessToken((e, t) => { + if (e && !this._options.ALLOW_NO_TOKEN) return void f(e); + if (!((t && 0 !== t.length) || this._options.ALLOW_NO_TOKEN)) return void f(new Error("No access token")); + var r = "https://" + this._getAnalyticsHost(); + this._log(d + "Sending analytics to " + r + a); + const o = { + "x-api-key": this._options.ANALYTICS_API_KEY, + "X-Product": this._options.ANALYTICS_X_PRODUCT, + "User-Agent": this._options.ANALYTICS_USER_AGENT || this._options.ANALYTICS_API_KEY, + "X-Request-Id": u, + "Content-Type": "application/json", + }; + t && (o.Authorization = "Bearer " + t), + this._options.ANALYTICS_X_PRODUCT_LOCATION && (o["X-Product-Location"] = this._options.ANALYTICS_X_PRODUCT_LOCATION), + this._getAgent(r, (e, t) => { + const i = { method: "POST", headers: o, body: JSON.stringify(p) }; + t && t.agent ? (i.agent = t && t.agent) : n(i, t || {}), + fetch(r + a, i).then((e) => { + m(e.status, e.headers); + }, f); + }); + }); + } + } + }), + (c.prototype.enable = function (e) { + (this._isEnabled = e), e && this._sendAnalytics(!0); + }), + (c.prototype.postEvent = function (e, t, n) { + var o = n || {}, + a = "event.dts_start", + i = "event.coll_dts", + s = o.TIMESTAMP_PROPERTY_NAME || this._options.TIMESTAMP_PROPERTY_NAME, + c = o.ANALYTICS_PROJECT || this._options.ANALYTICS_PROJECT, + l = o.ANALYTICS_INGEST_TYPE || this._options.ANALYTICS_INGEST_TYPE; + e[i] && e[i] instanceof Date && (e[i] = this._formatTimestamp(e[i])), + e[a] && e[a] instanceof Date && (e[a] = this._formatTimestamp(e[a])), + e[s] || (e[s] = this._formatTimestamp(new Date())), + e[s] instanceof Date && (e[s] = this._formatTimestamp(e[s])); + var u = { time: e[s], project: c, environment: this._getEnvironment(), ingesttype: l, data: e }; + e.simulate ? (this._log("event sim:" + JSON.stringify(u)), t && r([t], null, 0)) : (this._queueEvent(u), this._sendAnalytics(!1, t)); + }), + (c.prototype.flush = function (e, t) { + this._sendAnalytics(e, t); + }), + (e.exports = c); + }, + 48181: (e, t, n) => { + const r = "-" + n(88770).replace(/[\^~]/g, "").replace(/\./g, "-"); + e.exports = { + fallbackTagName: function (e) { + return `${e}${r}`; + }, + fallbackTagNameSuffix: r, + }; + }, + 88770: (e) => { + e.exports = "1.0.89"; + }, + 92815: (e) => { + "use strict"; + var t = /^utf-?8|ascii|utf-?16-?le|ucs-?2|base-?64|latin-?1$/i, + n = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, + r = /\s|\uFEFF|\xA0/, + o = /\r?\n[\x20\x09]+/g, + a = /[;,"]/, + i = /[;,"]|\s/, + s = /^[!#$%&'*+\-\.^_`|~\da-zA-Z]+$/; + function c(e) { + return e.replace(n, ""); + } + function l(e) { + return r.test(e); + } + function u(e, t) { + for (; l(e[t]); ) t++; + return t; + } + function d(e) { + return i.test(e) || !s.test(e); + } + class p { + constructor(e) { + (this.refs = []), e && this.parse(e); + } + rel(e) { + for (var t = [], n = e.toLowerCase(), r = 0; r < this.refs.length; r++) this.refs[r].rel.toLowerCase() === n && t.push(this.refs[r]); + return t; + } + get(e, t) { + e = e.toLowerCase(); + for (var n = [], r = 0; r < this.refs.length; r++) this.refs[r][e] === t && n.push(this.refs[r]); + return n; + } + set(e) { + return this.refs.push(e), this; + } + has(e, t) { + e = e.toLowerCase(); + for (var n = 0; n < this.refs.length; n++) if (this.refs[n][e] === t) return !0; + return !1; + } + parse(e, t) { + for (var n = 1, r = (e = c((e = (t = t || 0) ? e.slice(t) : e)).replace(o, "")).length, i = ((t = 0), null); t < r; ) + if (1 === n) { + if (l(e[t])) { + t++; + continue; + } + if ("<" !== e[t]) throw new Error('Unexpected character "' + e[t] + '" at offset ' + t); + if ((null != i && (null != i.rel ? this.refs.push(...p.expandRelations(i)) : this.refs.push(i)), -1 === (f = e.indexOf(">", t)))) throw new Error("Expected end of URI delimiter at offset " + t); + (i = { uri: e.slice(t + 1, f) }), (t = f), (n = 2), t++; + } else if (2 === n) { + if (l(e[t])) { + t++; + continue; + } + if (";" === e[t]) (n = 4), t++; + else { + if ("," !== e[t]) throw new Error('Unexpected character "' + e[t] + '" at offset ' + t); + (n = 1), t++; + } + } else { + if (4 !== n) throw new Error('Unknown parser state "' + n + '"'); + if (";" === e[t] || l(e[t])) { + t++; + continue; + } + if (-1 === (f = e.indexOf("=", t))) throw new Error("Expected attribute delimiter at offset " + t); + var s = c(e.slice(t, f)).toLowerCase(), + d = ""; + if ('"' === e[(t = u(e, (t = f + 1)))]) + for (t++; t < r; ) { + if ('"' === e[t]) { + t++; + break; + } + "\\" === e[t] && t++, (d += e[t]), t++; + } + else { + for (var f = t + 1; !a.test(e[f]) && f < r; ) f++; + (d = e.slice(t, f)), (t = f); + } + switch ( + ((i[s] && p.isSingleOccurenceAttr(s)) || + ("*" === s[s.length - 1] ? (i[s] = p.parseExtendedValue(d)) : ((d = "type" === s ? d.toLowerCase() : d), null != i[s] ? (Array.isArray(i[s]) ? i[s].push(d) : (i[s] = [i[s], d])) : (i[s] = d))), + e[t]) + ) { + case ",": + n = 1; + break; + case ";": + n = 4; + } + t++; + } + return null != i && (null != i.rel ? this.refs.push(...p.expandRelations(i)) : this.refs.push(i)), (i = null), this; + } + toString() { + for (var e = [], t = "", n = null, r = 0; r < this.refs.length; r++) + (n = this.refs[r]), + (t = Object.keys(this.refs[r]).reduce(function (e, t) { + return "uri" === t ? e : e + "; " + p.formatAttribute(t, n[t]); + }, "<" + n.uri + ">")), + e.push(t); + return e.join(", "); + } + } + (p.isCompatibleEncoding = function (e) { + return t.test(e); + }), + (p.parse = function (e, t) { + return new p().parse(e, t); + }), + (p.isSingleOccurenceAttr = function (e) { + return "rel" === e || "type" === e || "media" === e || "title" === e || "title*" === e; + }), + (p.isTokenAttr = function (e) { + return "rel" === e || "type" === e || "anchor" === e; + }), + (p.escapeQuotes = function (e) { + return e.replace(/"/g, '\\"'); + }), + (p.expandRelations = function (e) { + return e.rel.split(" ").map(function (t) { + var n = Object.assign({}, e); + return (n.rel = t), n; + }); + }), + (p.parseExtendedValue = function (e) { + var t = /([^']+)?(?:'([^']+)')?(.+)/.exec(e); + return { language: t[2].toLowerCase(), encoding: p.isCompatibleEncoding(t[1]) ? null : t[1].toLowerCase(), value: p.isCompatibleEncoding(t[1]) ? decodeURIComponent(t[3]) : t[3] }; + }), + (p.formatExtendedAttribute = function (e, t) { + var n = (t.encoding || "utf-8").toUpperCase(); + return ( + e + + "=" + + n + + "'" + + (t.language || "en") + + "'" + + (Buffer.isBuffer(t.value) && p.isCompatibleEncoding(n) ? t.value.toString(n) : Buffer.isBuffer(t.value) ? t.value.toString("hex").replace(/[0-9a-f]{2}/gi, "%$1") : encodeURIComponent(t.value)) + ); + }), + (p.formatAttribute = function (e, t) { + return Array.isArray(t) + ? t.map((t) => p.formatAttribute(e, t)).join("; ") + : "*" === e[e.length - 1] || "string" != typeof t + ? p.formatExtendedAttribute(e, t) + : (p.isTokenAttr(e) ? (t = d(t) ? '"' + p.escapeQuotes(t) + '"' : p.escapeQuotes(t)) : d(t) && (t = '"' + (t = (t = encodeURIComponent(t)).replace(/%20/g, " ").replace(/%2C/g, ",").replace(/%3B/g, ";")) + '"'), e + "=" + t); + }), + (e.exports = p); + }, + 82318: (e, t, n) => { + e.exports = n(3899); + }, + 3899: (e, t, n) => { + "use strict"; + n.d(t, { default: () => l }); + var r = n(23469), + o = n.n(r), + a = n(93353), + i = n.n(a), + s = n(77249), + c = n.n(s); + const l = (e) => { + const { size: t = "M", className: n = "", indeterminate: r = !0 } = e, + a = (function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && "function" == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + })(e, ["size", "className", "indeterminate"]); + return r + ? o().createElement("div", Object.assign({ className: i()("simplified-wait", { "simplified-wait--small": "S" === t, "simplified-wait--medium": "M" === t, "simplified-wait--large": "L" === t }, n) }, a)) + : o().createElement(c(), Object.assign({}, e)); + }; + }, + 26295: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.isUnicodeLanguageSubtag = t.isUnicodeScriptSubtag = t.isUnicodeRegionSubtag = t.isStructurallyValidLanguageTag = t.parseUnicodeLanguageId = t.parseUnicodeLocaleId = t.getCanonicalLocales = void 0); + var r = n(13795), + o = n(62056), + a = n(50986), + i = n(14927); + t.getCanonicalLocales = function (e) { + return (function (e) { + if (void 0 === e) return []; + var t = []; + "string" == typeof e && (e = [e]); + for (var n = 0, r = e; n < r.length; n++) { + var s = r[n], + c = (0, a.emitUnicodeLocaleId)((0, i.canonicalizeUnicodeLocaleId)((0, o.parseUnicodeLocaleId)(s))); + t.indexOf(c) < 0 && t.push(c); + } + return t; + })(e); + }; + var s = n(62056); + Object.defineProperty(t, "parseUnicodeLocaleId", { + enumerable: !0, + get: function () { + return s.parseUnicodeLocaleId; + }, + }), + Object.defineProperty(t, "parseUnicodeLanguageId", { + enumerable: !0, + get: function () { + return s.parseUnicodeLanguageId; + }, + }), + Object.defineProperty(t, "isStructurallyValidLanguageTag", { + enumerable: !0, + get: function () { + return s.isStructurallyValidLanguageTag; + }, + }), + Object.defineProperty(t, "isUnicodeRegionSubtag", { + enumerable: !0, + get: function () { + return s.isUnicodeRegionSubtag; + }, + }), + Object.defineProperty(t, "isUnicodeScriptSubtag", { + enumerable: !0, + get: function () { + return s.isUnicodeScriptSubtag; + }, + }), + Object.defineProperty(t, "isUnicodeLanguageSubtag", { + enumerable: !0, + get: function () { + return s.isUnicodeLanguageSubtag; + }, + }), + (0, r.__exportStar)(n(86648), t), + (0, r.__exportStar)(n(50986), t), + (0, r.__exportStar)(n(28685), t); + }, + 12782: (e, t, n) => { + "use strict"; + var r = n(26295), + o = n(89755); + "undefined" == typeof Intl && ("undefined" != typeof window ? Object.defineProperty(window, "Intl", { value: {} }) : void 0 !== n.g && Object.defineProperty(n.g, "Intl", { value: {} })), + (0, o.shouldPolyfill)() && Object.defineProperty(Intl, "getCanonicalLocales", { value: r.getCanonicalLocales, writable: !0, enumerable: !1, configurable: !0 }); + }, + 89755: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.shouldPolyfill = void 0), + (t.shouldPolyfill = function () { + return "undefined" == typeof Intl || !("getCanonicalLocales" in Intl) || "x-private" === Intl.getCanonicalLocales("und-x-private")[0]; + }); + }, + 46228: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.variantAlias = t.scriptAlias = t.territoryAlias = t.languageAlias = void 0), + (t.languageAlias = { + "aa-saaho": "ssy", + aam: "aas", + aar: "aa", + abk: "ab", + adp: "dz", + afr: "af", + agp: "apf", + ais: "ami", + aju: "jrb", + aka: "ak", + alb: "sq", + als: "sq", + amh: "am", + ara: "ar", + arb: "ar", + arg: "an", + arm: "hy", + "art-lojban": "jbo", + asd: "snz", + asm: "as", + aue: "ktz", + ava: "av", + ave: "ae", + aym: "ay", + ayr: "ay", + ayx: "nun", + aze: "az", + azj: "az", + bak: "ba", + bam: "bm", + baq: "eu", + baz: "nvo", + bcc: "bal", + bcl: "bik", + bel: "be", + ben: "bn", + bgm: "bcg", + bh: "bho", + bhk: "fbl", + bic: "bir", + bih: "bho", + bis: "bi", + bjd: "drl", + bjq: "bzc", + bkb: "ebk", + blg: "iba", + bod: "bo", + bos: "bs", + bre: "br", + btb: "beb", + bul: "bg", + bur: "my", + bxk: "luy", + bxr: "bua", + cat: "ca", + ccq: "rki", + "cel-gaulish": "xtg", + ces: "cs", + cha: "ch", + che: "ce", + chi: "zh", + chu: "cu", + chv: "cv", + cjr: "mom", + cka: "cmr", + cld: "syr", + cmk: "xch", + cmn: "zh", + cnr: "sr-ME", + cor: "kw", + cos: "co", + coy: "pij", + cqu: "quh", + cre: "cr", + cwd: "cr", + cym: "cy", + cze: "cs", + daf: "dnj", + dan: "da", + dap: "njz", + deu: "de", + dgo: "doi", + dhd: "mwr", + dik: "din", + diq: "zza", + dit: "dif", + div: "dv", + djl: "dze", + dkl: "aqd", + drh: "mn", + drr: "kzk", + drw: "fa-AF", + dud: "uth", + duj: "dwu", + dut: "nl", + dwl: "dbt", + dzo: "dz", + ekk: "et", + ell: "el", + elp: "amq", + emk: "man", + "en-GB-oed": "en-GB-oxendict", + eng: "en", + epo: "eo", + esk: "ik", + est: "et", + eus: "eu", + ewe: "ee", + fao: "fo", + fas: "fa", + fat: "ak", + fij: "fj", + fin: "fi", + fra: "fr", + fre: "fr", + fry: "fy", + fuc: "ff", + ful: "ff", + gav: "dev", + gaz: "om", + gbc: "wny", + gbo: "grb", + geo: "ka", + ger: "de", + gfx: "vaj", + ggn: "gvr", + ggo: "esg", + ggr: "gtu", + gio: "aou", + gla: "gd", + gle: "ga", + glg: "gl", + gli: "kzk", + glv: "gv", + gno: "gon", + gre: "el", + grn: "gn", + gti: "nyc", + gug: "gn", + guj: "gu", + guv: "duz", + gya: "gba", + hat: "ht", + hau: "ha", + hbs: "sr-Latn", + hdn: "hai", + hea: "hmn", + heb: "he", + her: "hz", + him: "srx", + hin: "hi", + hmo: "ho", + hrr: "jal", + hrv: "hr", + hun: "hu", + "hy-arevmda": "hyw", + hye: "hy", + "i-ami": "ami", + "i-bnn": "bnn", + "i-default": "en-x-i-default", + "i-enochian": "und-x-i-enochian", + "i-hak": "hak", + "i-klingon": "tlh", + "i-lux": "lb", + "i-mingo": "see-x-i-mingo", + "i-navajo": "nv", + "i-pwn": "pwn", + "i-tao": "tao", + "i-tay": "tay", + "i-tsu": "tsu", + ibi: "opa", + ibo: "ig", + ice: "is", + ido: "io", + iii: "ii", + ike: "iu", + iku: "iu", + ile: "ie", + ill: "ilm", + ilw: "gal", + in: "id", + ina: "ia", + ind: "id", + ipk: "ik", + isl: "is", + ita: "it", + iw: "he", + izi: "eza", + jar: "jgk", + jav: "jv", + jeg: "oyb", + ji: "yi", + jpn: "ja", + jw: "jv", + kal: "kl", + kan: "kn", + kas: "ks", + kat: "ka", + kau: "kr", + kaz: "kk", + kdv: "zkd", + kgc: "tdf", + kgd: "ncq", + kgh: "kml", + khk: "mn", + khm: "km", + kik: "ki", + kin: "rw", + kir: "ky", + kmr: "ku", + knc: "kr", + kng: "kg", + knn: "kok", + koj: "kwv", + kom: "kv", + kon: "kg", + kor: "ko", + kpp: "jkm", + kpv: "kv", + krm: "bmf", + ktr: "dtp", + kua: "kj", + kur: "ku", + kvs: "gdj", + kwq: "yam", + kxe: "tvd", + kxl: "kru", + kzh: "dgl", + kzj: "dtp", + kzt: "dtp", + lao: "lo", + lat: "la", + lav: "lv", + lbk: "bnc", + leg: "enl", + lii: "raq", + lim: "li", + lin: "ln", + lit: "lt", + llo: "ngt", + lmm: "rmx", + ltz: "lb", + lub: "lu", + lug: "lg", + lvs: "lv", + mac: "mk", + mah: "mh", + mal: "ml", + mao: "mi", + mar: "mr", + may: "ms", + meg: "cir", + mgx: "jbk", + mhr: "chm", + mkd: "mk", + mlg: "mg", + mlt: "mt", + mnk: "man", + mnt: "wnn", + mo: "ro", + mof: "xnt", + mol: "ro", + mon: "mn", + mri: "mi", + msa: "ms", + mst: "mry", + mup: "raj", + mwd: "dmw", + mwj: "vaj", + mya: "my", + myd: "aog", + myt: "mry", + nad: "xny", + nau: "na", + nav: "nv", + nbf: "nru", + nbl: "nr", + nbx: "ekc", + ncp: "kdz", + nde: "nd", + ndo: "ng", + nep: "ne", + nld: "nl", + nln: "azd", + nlr: "nrk", + nno: "nn", + nns: "nbr", + nnx: "ngv", + "no-bok": "nb", + "no-bokmal": "nb", + "no-nyn": "nn", + "no-nynorsk": "nn", + nob: "nb", + noo: "dtd", + nor: "no", + npi: "ne", + nts: "pij", + nxu: "bpp", + nya: "ny", + oci: "oc", + ojg: "oj", + oji: "oj", + ori: "or", + orm: "om", + ory: "or", + oss: "os", + oun: "vaj", + pan: "pa", + pat: "kxr", + pbu: "ps", + pcr: "adx", + per: "fa", + pes: "fa", + pli: "pi", + plt: "mg", + pmc: "huw", + pmu: "phr", + pnb: "lah", + pol: "pl", + por: "pt", + ppa: "bfy", + ppr: "lcq", + prs: "fa-AF", + pry: "prt", + pus: "ps", + puz: "pub", + que: "qu", + quz: "qu", + rmr: "emx", + rmy: "rom", + roh: "rm", + ron: "ro", + rum: "ro", + run: "rn", + rus: "ru", + sag: "sg", + san: "sa", + sap: "aqt", + sca: "hle", + scc: "sr", + scr: "hr", + sgl: "isk", + "sgn-BE-FR": "sfb", + "sgn-BE-NL": "vgt", + "sgn-BR": "bzs", + "sgn-CH-DE": "sgg", + "sgn-CO": "csn", + "sgn-DE": "gsg", + "sgn-DK": "dsl", + "sgn-ES": "ssp", + "sgn-FR": "fsl", + "sgn-GB": "bfi", + "sgn-GR": "gss", + "sgn-IE": "isg", + "sgn-IT": "ise", + "sgn-JP": "jsl", + "sgn-MX": "mfs", + "sgn-NI": "ncs", + "sgn-NL": "dse", + "sgn-NO": "nsi", + "sgn-PT": "psr", + "sgn-SE": "swl", + "sgn-US": "ase", + "sgn-ZA": "sfs", + sh: "sr-Latn", + sin: "si", + skk: "oyb", + slk: "sk", + slo: "sk", + slv: "sl", + sme: "se", + smo: "sm", + sna: "sn", + snd: "sd", + som: "so", + sot: "st", + spa: "es", + spy: "kln", + sqi: "sq", + src: "sc", + srd: "sc", + srp: "sr", + ssw: "ss", + sul: "sgd", + sum: "ulw", + sun: "su", + swa: "sw", + swc: "sw-CD", + swe: "sv", + swh: "sw", + tah: "ty", + tam: "ta", + tat: "tt", + tdu: "dtp", + tel: "te", + tgg: "bjp", + tgk: "tg", + tgl: "fil", + tha: "th", + thc: "tpo", + thw: "ola", + thx: "oyb", + tib: "bo", + tid: "itd", + tie: "ras", + tir: "ti", + tkk: "twm", + tl: "fil", + tlw: "weo", + tmp: "tyj", + tne: "kak", + tnf: "fa-AF", + ton: "to", + tsf: "taj", + tsn: "tn", + tso: "ts", + ttq: "tmh", + tuk: "tk", + tur: "tr", + tw: "ak", + twi: "ak", + uig: "ug", + ukr: "uk", + umu: "del", + "und-aaland": "und-AX", + "und-arevela": "und", + "und-arevmda": "und", + "und-bokmal": "und", + "und-hakka": "und", + "und-hepburn-heploc": "und-alalc97", + "und-lojban": "und", + "und-nynorsk": "und", + "und-saaho": "und", + "und-xiang": "und", + unp: "wro", + uok: "ema", + urd: "ur", + uzb: "uz", + uzn: "uz", + ven: "ve", + vie: "vi", + vol: "vo", + wel: "cy", + wgw: "wgb", + wit: "nol", + wiw: "nwo", + wln: "wa", + wol: "wo", + xba: "cax", + xho: "xh", + xia: "acn", + xkh: "waw", + xpe: "kpe", + xrq: "dmw", + xsj: "suj", + xsl: "den", + ybd: "rki", + ydd: "yi", + yen: "ynq", + yid: "yi", + yiy: "yrm", + yma: "lrr", + ymt: "mtm", + yor: "yo", + yos: "zom", + yuu: "yug", + zai: "zap", + "zh-cmn": "zh", + "zh-cmn-Hans": "zh-Hans", + "zh-cmn-Hant": "zh-Hant", + "zh-gan": "gan", + "zh-guoyu": "zh", + "zh-hakka": "hak", + "zh-min": "nan-x-zh-min", + "zh-min-nan": "nan", + "zh-wuu": "wuu", + "zh-xiang": "hsn", + "zh-yue": "yue", + zha: "za", + zho: "zh", + zir: "scv", + zsm: "ms", + zul: "zu", + zyb: "za", + }), + (t.territoryAlias = { + 100: "BG", + 104: "MM", + 108: "BI", + 112: "BY", + 116: "KH", + 120: "CM", + 124: "CA", + 132: "CV", + 136: "KY", + 140: "CF", + 144: "LK", + 148: "TD", + 152: "CL", + 156: "CN", + 158: "TW", + 162: "CX", + 166: "CC", + 170: "CO", + 172: "RU AM AZ BY GE KG KZ MD TJ TM UA UZ", + 174: "KM", + 175: "YT", + 178: "CG", + 180: "CD", + 184: "CK", + 188: "CR", + 191: "HR", + 192: "CU", + 196: "CY", + 200: "CZ SK", + 203: "CZ", + 204: "BJ", + 208: "DK", + 212: "DM", + 214: "DO", + 218: "EC", + 222: "SV", + 226: "GQ", + 230: "ET", + 231: "ET", + 232: "ER", + 233: "EE", + 234: "FO", + 238: "FK", + 239: "GS", + 242: "FJ", + 246: "FI", + 248: "AX", + 249: "FR", + 250: "FR", + 254: "GF", + 258: "PF", + 260: "TF", + 262: "DJ", + 266: "GA", + 268: "GE", + 270: "GM", + 275: "PS", + 276: "DE", + 278: "DE", + 280: "DE", + 288: "GH", + 292: "GI", + 296: "KI", + 300: "GR", + 304: "GL", + 308: "GD", + 312: "GP", + 316: "GU", + 320: "GT", + 324: "GN", + 328: "GY", + 332: "HT", + 334: "HM", + 336: "VA", + 340: "HN", + 344: "HK", + 348: "HU", + 352: "IS", + 356: "IN", + 360: "ID", + 364: "IR", + 368: "IQ", + 372: "IE", + 376: "IL", + 380: "IT", + 384: "CI", + 388: "JM", + 392: "JP", + 398: "KZ", + 400: "JO", + 404: "KE", + 408: "KP", + 410: "KR", + 414: "KW", + 417: "KG", + 418: "LA", + 422: "LB", + 426: "LS", + 428: "LV", + 430: "LR", + 434: "LY", + 438: "LI", + 440: "LT", + 442: "LU", + 446: "MO", + 450: "MG", + 454: "MW", + 458: "MY", + 462: "MV", + 466: "ML", + 470: "MT", + 474: "MQ", + 478: "MR", + 480: "MU", + 484: "MX", + 492: "MC", + 496: "MN", + 498: "MD", + 499: "ME", + 500: "MS", + 504: "MA", + 508: "MZ", + 512: "OM", + 516: "NA", + 520: "NR", + 524: "NP", + 528: "NL", + 530: "CW SX BQ", + 531: "CW", + 532: "CW SX BQ", + 533: "AW", + 534: "SX", + 535: "BQ", + 536: "SA IQ", + 540: "NC", + 548: "VU", + 554: "NZ", + 558: "NI", + 562: "NE", + 566: "NG", + 570: "NU", + 574: "NF", + 578: "NO", + 580: "MP", + 581: "UM", + 582: "FM MH MP PW", + 583: "FM", + 584: "MH", + 585: "PW", + 586: "PK", + 591: "PA", + 598: "PG", + 600: "PY", + 604: "PE", + 608: "PH", + 612: "PN", + 616: "PL", + 620: "PT", + 624: "GW", + 626: "TL", + 630: "PR", + 634: "QA", + 638: "RE", + 642: "RO", + 643: "RU", + 646: "RW", + 652: "BL", + 654: "SH", + 659: "KN", + 660: "AI", + 662: "LC", + 663: "MF", + 666: "PM", + 670: "VC", + 674: "SM", + 678: "ST", + 682: "SA", + 686: "SN", + 688: "RS", + 690: "SC", + 694: "SL", + 702: "SG", + 703: "SK", + 704: "VN", + 705: "SI", + 706: "SO", + 710: "ZA", + 716: "ZW", + 720: "YE", + 724: "ES", + 728: "SS", + 729: "SD", + 732: "EH", + 736: "SD", + 740: "SR", + 744: "SJ", + 748: "SZ", + 752: "SE", + 756: "CH", + 760: "SY", + 762: "TJ", + 764: "TH", + 768: "TG", + 772: "TK", + 776: "TO", + 780: "TT", + 784: "AE", + 788: "TN", + 792: "TR", + 795: "TM", + 796: "TC", + 798: "TV", + 800: "UG", + 804: "UA", + 807: "MK", + 810: "RU AM AZ BY EE GE KZ KG LV LT MD TJ TM UA UZ", + 818: "EG", + 826: "GB", + 830: "JE GG", + 831: "GG", + 832: "JE", + 833: "IM", + 834: "TZ", + 840: "US", + 850: "VI", + 854: "BF", + 858: "UY", + 860: "UZ", + 862: "VE", + 876: "WF", + 882: "WS", + 886: "YE", + 887: "YE", + 890: "RS ME SI HR MK BA", + 891: "RS ME", + 894: "ZM", + 958: "AA", + 959: "QM", + 960: "QN", + 962: "QP", + 963: "QQ", + 964: "QR", + 965: "QS", + 966: "QT", + 967: "EU", + 968: "QV", + 969: "QW", + 970: "QX", + 971: "QY", + 972: "QZ", + 973: "XA", + 974: "XB", + 975: "XC", + 976: "XD", + 977: "XE", + 978: "XF", + 979: "XG", + 980: "XH", + 981: "XI", + 982: "XJ", + 983: "XK", + 984: "XL", + 985: "XM", + 986: "XN", + 987: "XO", + 988: "XP", + 989: "XQ", + 990: "XR", + 991: "XS", + 992: "XT", + 993: "XU", + 994: "XV", + 995: "XW", + 996: "XX", + 997: "XY", + 998: "XZ", + 999: "ZZ", + "004": "AF", + "008": "AL", + "010": "AQ", + "012": "DZ", + "016": "AS", + "020": "AD", + "024": "AO", + "028": "AG", + "031": "AZ", + "032": "AR", + "036": "AU", + "040": "AT", + "044": "BS", + "048": "BH", + "050": "BD", + "051": "AM", + "052": "BB", + "056": "BE", + "060": "BM", + "062": "034 143", + "064": "BT", + "068": "BO", + "070": "BA", + "072": "BW", + "074": "BV", + "076": "BR", + "084": "BZ", + "086": "IO", + "090": "SB", + "092": "VG", + "096": "BN", + AAA: "AA", + ABW: "AW", + AFG: "AF", + AGO: "AO", + AIA: "AI", + ALA: "AX", + ALB: "AL", + AN: "CW SX BQ", + AND: "AD", + ANT: "CW SX BQ", + ARE: "AE", + ARG: "AR", + ARM: "AM", + ASC: "AC", + ASM: "AS", + ATA: "AQ", + ATF: "TF", + ATG: "AG", + AUS: "AU", + AUT: "AT", + AZE: "AZ", + BDI: "BI", + BEL: "BE", + BEN: "BJ", + BES: "BQ", + BFA: "BF", + BGD: "BD", + BGR: "BG", + BHR: "BH", + BHS: "BS", + BIH: "BA", + BLM: "BL", + BLR: "BY", + BLZ: "BZ", + BMU: "BM", + BOL: "BO", + BRA: "BR", + BRB: "BB", + BRN: "BN", + BTN: "BT", + BU: "MM", + BUR: "MM", + BVT: "BV", + BWA: "BW", + CAF: "CF", + CAN: "CA", + CCK: "CC", + CHE: "CH", + CHL: "CL", + CHN: "CN", + CIV: "CI", + CMR: "CM", + COD: "CD", + COG: "CG", + COK: "CK", + COL: "CO", + COM: "KM", + CPT: "CP", + CPV: "CV", + CRI: "CR", + CS: "RS ME", + CT: "KI", + CUB: "CU", + CUW: "CW", + CXR: "CX", + CYM: "KY", + CYP: "CY", + CZE: "CZ", + DD: "DE", + DDR: "DE", + DEU: "DE", + DGA: "DG", + DJI: "DJ", + DMA: "DM", + DNK: "DK", + DOM: "DO", + DY: "BJ", + DZA: "DZ", + ECU: "EC", + EGY: "EG", + ERI: "ER", + ESH: "EH", + ESP: "ES", + EST: "EE", + ETH: "ET", + FIN: "FI", + FJI: "FJ", + FLK: "FK", + FQ: "AQ TF", + FRA: "FR", + FRO: "FO", + FSM: "FM", + FX: "FR", + FXX: "FR", + GAB: "GA", + GBR: "GB", + GEO: "GE", + GGY: "GG", + GHA: "GH", + GIB: "GI", + GIN: "GN", + GLP: "GP", + GMB: "GM", + GNB: "GW", + GNQ: "GQ", + GRC: "GR", + GRD: "GD", + GRL: "GL", + GTM: "GT", + GUF: "GF", + GUM: "GU", + GUY: "GY", + HKG: "HK", + HMD: "HM", + HND: "HN", + HRV: "HR", + HTI: "HT", + HUN: "HU", + HV: "BF", + IDN: "ID", + IMN: "IM", + IND: "IN", + IOT: "IO", + IRL: "IE", + IRN: "IR", + IRQ: "IQ", + ISL: "IS", + ISR: "IL", + ITA: "IT", + JAM: "JM", + JEY: "JE", + JOR: "JO", + JPN: "JP", + JT: "UM", + KAZ: "KZ", + KEN: "KE", + KGZ: "KG", + KHM: "KH", + KIR: "KI", + KNA: "KN", + KOR: "KR", + KWT: "KW", + LAO: "LA", + LBN: "LB", + LBR: "LR", + LBY: "LY", + LCA: "LC", + LIE: "LI", + LKA: "LK", + LSO: "LS", + LTU: "LT", + LUX: "LU", + LVA: "LV", + MAC: "MO", + MAF: "MF", + MAR: "MA", + MCO: "MC", + MDA: "MD", + MDG: "MG", + MDV: "MV", + MEX: "MX", + MHL: "MH", + MI: "UM", + MKD: "MK", + MLI: "ML", + MLT: "MT", + MMR: "MM", + MNE: "ME", + MNG: "MN", + MNP: "MP", + MOZ: "MZ", + MRT: "MR", + MSR: "MS", + MTQ: "MQ", + MUS: "MU", + MWI: "MW", + MYS: "MY", + MYT: "YT", + NAM: "NA", + NCL: "NC", + NER: "NE", + NFK: "NF", + NGA: "NG", + NH: "VU", + NIC: "NI", + NIU: "NU", + NLD: "NL", + NOR: "NO", + NPL: "NP", + NQ: "AQ", + NRU: "NR", + NT: "SA IQ", + NTZ: "SA IQ", + NZL: "NZ", + OMN: "OM", + PAK: "PK", + PAN: "PA", + PC: "FM MH MP PW", + PCN: "PN", + PER: "PE", + PHL: "PH", + PLW: "PW", + PNG: "PG", + POL: "PL", + PRI: "PR", + PRK: "KP", + PRT: "PT", + PRY: "PY", + PSE: "PS", + PU: "UM", + PYF: "PF", + PZ: "PA", + QAT: "QA", + QMM: "QM", + QNN: "QN", + QPP: "QP", + QQQ: "QQ", + QRR: "QR", + QSS: "QS", + QTT: "QT", + QU: "EU", + QUU: "EU", + QVV: "QV", + QWW: "QW", + QXX: "QX", + QYY: "QY", + QZZ: "QZ", + REU: "RE", + RH: "ZW", + ROU: "RO", + RUS: "RU", + RWA: "RW", + SAU: "SA", + SCG: "RS ME", + SDN: "SD", + SEN: "SN", + SGP: "SG", + SGS: "GS", + SHN: "SH", + SJM: "SJ", + SLB: "SB", + SLE: "SL", + SLV: "SV", + SMR: "SM", + SOM: "SO", + SPM: "PM", + SRB: "RS", + SSD: "SS", + STP: "ST", + SU: "RU AM AZ BY EE GE KZ KG LV LT MD TJ TM UA UZ", + SUN: "RU AM AZ BY EE GE KZ KG LV LT MD TJ TM UA UZ", + SUR: "SR", + SVK: "SK", + SVN: "SI", + SWE: "SE", + SWZ: "SZ", + SXM: "SX", + SYC: "SC", + SYR: "SY", + TAA: "TA", + TCA: "TC", + TCD: "TD", + TGO: "TG", + THA: "TH", + TJK: "TJ", + TKL: "TK", + TKM: "TM", + TLS: "TL", + TMP: "TL", + TON: "TO", + TP: "TL", + TTO: "TT", + TUN: "TN", + TUR: "TR", + TUV: "TV", + TWN: "TW", + TZA: "TZ", + UGA: "UG", + UK: "GB", + UKR: "UA", + UMI: "UM", + URY: "UY", + USA: "US", + UZB: "UZ", + VAT: "VA", + VCT: "VC", + VD: "VN", + VEN: "VE", + VGB: "VG", + VIR: "VI", + VNM: "VN", + VUT: "VU", + WK: "UM", + WLF: "WF", + WSM: "WS", + XAA: "XA", + XBB: "XB", + XCC: "XC", + XDD: "XD", + XEE: "XE", + XFF: "XF", + XGG: "XG", + XHH: "XH", + XII: "XI", + XJJ: "XJ", + XKK: "XK", + XLL: "XL", + XMM: "XM", + XNN: "XN", + XOO: "XO", + XPP: "XP", + XQQ: "XQ", + XRR: "XR", + XSS: "XS", + XTT: "XT", + XUU: "XU", + XVV: "XV", + XWW: "XW", + XXX: "XX", + XYY: "XY", + XZZ: "XZ", + YD: "YE", + YEM: "YE", + YMD: "YE", + YU: "RS ME", + YUG: "RS ME", + ZAF: "ZA", + ZAR: "CD", + ZMB: "ZM", + ZR: "CD", + ZWE: "ZW", + ZZZ: "ZZ", + }), + (t.scriptAlias = { Qaai: "Zinh" }), + (t.variantAlias = { heploc: "alalc97", polytoni: "polyton" }); + }, + 14927: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.canonicalizeUnicodeLocaleId = t.canonicalizeUnicodeLanguageId = void 0); + var r = n(13795), + o = n(46228), + a = n(62056), + i = n(28685), + s = n(50986); + function c(e) { + for (var t = {}, n = [], r = 0, o = e; r < o.length; r++) { + var a = o[r]; + a[0] in t || ((t[a[0]] = 1), a[1] && "true" !== a[1] ? n.push([a[0].toLowerCase(), a[1].toLowerCase()]) : n.push([a[0].toLowerCase()])); + } + return n.sort(l); + } + function l(e, t) { + return e[0] < t[0] ? -1 : e[0] > t[0] ? 1 : 0; + } + function u(e, t) { + return e.type < t.type ? -1 : e.type > t.type ? 1 : 0; + } + function d(e, t) { + for (var n = (0, r.__spreadArray)([], e, !0), o = 0, a = t; o < a.length; o++) { + var i = a[o]; + e.indexOf(i) < 0 && n.push(i); + } + return n; + } + function p(e) { + var t = e; + if (e.variants.length) + for (var n = "", r = 0, c = e.variants; r < c.length; r++) { + var l = c[r]; + if ((n = o.languageAlias[(0, s.emitUnicodeLanguageId)({ lang: e.lang, variants: [l] })])) { + t = { lang: (f = (0, a.parseUnicodeLanguageId)(n.split(a.SEPARATOR))).lang, script: t.script || f.script, region: t.region || f.region, variants: d(t.variants, f.variants) }; + break; + } + } + if (t.script && t.region) { + var u = o.languageAlias[(0, s.emitUnicodeLanguageId)({ lang: t.lang, script: t.script, region: t.region, variants: [] })]; + u && (t = { lang: (f = (0, a.parseUnicodeLanguageId)(u.split(a.SEPARATOR))).lang, script: f.script, region: f.region, variants: t.variants }); + } + if (t.region) { + var p = o.languageAlias[(0, s.emitUnicodeLanguageId)({ lang: t.lang, region: t.region, variants: [] })]; + p && (t = { lang: (f = (0, a.parseUnicodeLanguageId)(p.split(a.SEPARATOR))).lang, script: t.script || f.script, region: f.region, variants: t.variants }); + } + var f, + m = o.languageAlias[(0, s.emitUnicodeLanguageId)({ lang: t.lang, variants: [] })]; + if ((m && (t = { lang: (f = (0, a.parseUnicodeLanguageId)(m.split(a.SEPARATOR))).lang, script: t.script || f.script, region: t.region || f.region, variants: t.variants }), t.region)) { + var h = t.region.toUpperCase(), + v = o.territoryAlias[h], + y = void 0; + if (v) { + var g = v.split(" "); + y = g[0]; + var b = i.likelySubtags[(0, s.emitUnicodeLanguageId)({ lang: t.lang, script: t.script, variants: [] })]; + if (b) { + var E = (0, a.parseUnicodeLanguageId)(b.split(a.SEPARATOR)).region; + E && g.indexOf(E) > -1 && (y = E); + } + } + y && (t.region = y), (t.region = t.region.toUpperCase()); + } + if ((t.script && ((t.script = t.script[0].toUpperCase() + t.script.slice(1).toLowerCase()), o.scriptAlias[t.script] && (t.script = o.scriptAlias[t.script])), t.variants.length)) { + for (var D = 0; D < t.variants.length; D++) + if (((l = t.variants[D].toLowerCase()), o.variantAlias[l])) { + var C = o.variantAlias[l]; + (0, a.isUnicodeVariantSubtag)(C) ? (t.variants[D] = C) : (0, a.isUnicodeLanguageSubtag)(C) && (t.lang = C); + } + t.variants.sort(); + } + return t; + } + (t.canonicalizeUnicodeLanguageId = p), + (t.canonicalizeUnicodeLocaleId = function (e) { + if (((e.lang = p(e.lang)), e.extensions)) { + for (var t = 0, n = e.extensions; t < n.length; t++) { + var r = n[t]; + switch (r.type) { + case "u": + (r.keywords = c(r.keywords)), + r.attributes && + (r.attributes = + ((o = r.attributes), + Object.keys( + o.reduce(function (e, t) { + return (e[t.toLowerCase()] = 1), e; + }, {}) + ).sort())); + break; + case "t": + r.lang && (r.lang = p(r.lang)), (r.fields = c(r.fields)); + break; + default: + r.value = r.value.toLowerCase(); + } + } + e.extensions.sort(u); + } + var o; + return e; + }); + }, + 50986: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.emitUnicodeLocaleId = t.emitUnicodeLanguageId = void 0); + var r = n(13795); + function o(e) { + return e + ? (0, r.__spreadArray)([e.lang, e.script, e.region], e.variants || [], !0) + .filter(Boolean) + .join("-") + : ""; + } + (t.emitUnicodeLanguageId = o), + (t.emitUnicodeLocaleId = function (e) { + for (var t = e.lang, n = e.extensions, a = [o(t)], i = 0, s = n; i < s.length; i++) { + var c = s[i]; + switch ((a.push(c.type), c.type)) { + case "u": + a.push.apply( + a, + (0, r.__spreadArray)( + (0, r.__spreadArray)([], c.attributes, !1), + c.keywords.reduce(function (e, t) { + return e.concat(t); + }, []), + !1 + ) + ); + break; + case "t": + a.push.apply( + a, + (0, r.__spreadArray)( + [o(c.lang)], + c.fields.reduce(function (e, t) { + return e.concat(t); + }, []), + !1 + ) + ); + break; + default: + a.push(c.value); + } + } + return a.filter(Boolean).join("-"); + }); + }, + 28685: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.likelySubtags = void 0), + (t.likelySubtags = { + aa: "aa-Latn-ET", + aai: "aai-Latn-ZZ", + aak: "aak-Latn-ZZ", + aau: "aau-Latn-ZZ", + ab: "ab-Cyrl-GE", + abi: "abi-Latn-ZZ", + abq: "abq-Cyrl-ZZ", + abr: "abr-Latn-GH", + abt: "abt-Latn-ZZ", + aby: "aby-Latn-ZZ", + acd: "acd-Latn-ZZ", + ace: "ace-Latn-ID", + ach: "ach-Latn-UG", + ada: "ada-Latn-GH", + ade: "ade-Latn-ZZ", + adj: "adj-Latn-ZZ", + adp: "adp-Tibt-BT", + ady: "ady-Cyrl-RU", + adz: "adz-Latn-ZZ", + ae: "ae-Avst-IR", + aeb: "aeb-Arab-TN", + aey: "aey-Latn-ZZ", + af: "af-Latn-ZA", + agc: "agc-Latn-ZZ", + agd: "agd-Latn-ZZ", + agg: "agg-Latn-ZZ", + agm: "agm-Latn-ZZ", + ago: "ago-Latn-ZZ", + agq: "agq-Latn-CM", + aha: "aha-Latn-ZZ", + ahl: "ahl-Latn-ZZ", + aho: "aho-Ahom-IN", + ajg: "ajg-Latn-ZZ", + ak: "ak-Latn-GH", + akk: "akk-Xsux-IQ", + ala: "ala-Latn-ZZ", + ali: "ali-Latn-ZZ", + aln: "aln-Latn-XK", + alt: "alt-Cyrl-RU", + am: "am-Ethi-ET", + amm: "amm-Latn-ZZ", + amn: "amn-Latn-ZZ", + amo: "amo-Latn-NG", + amp: "amp-Latn-ZZ", + an: "an-Latn-ES", + anc: "anc-Latn-ZZ", + ank: "ank-Latn-ZZ", + ann: "ann-Latn-ZZ", + any: "any-Latn-ZZ", + aoj: "aoj-Latn-ZZ", + aom: "aom-Latn-ZZ", + aoz: "aoz-Latn-ID", + apc: "apc-Arab-ZZ", + apd: "apd-Arab-TG", + ape: "ape-Latn-ZZ", + apr: "apr-Latn-ZZ", + aps: "aps-Latn-ZZ", + apz: "apz-Latn-ZZ", + ar: "ar-Arab-EG", + arc: "arc-Armi-IR", + "arc-Nbat": "arc-Nbat-JO", + "arc-Palm": "arc-Palm-SY", + arh: "arh-Latn-ZZ", + arn: "arn-Latn-CL", + aro: "aro-Latn-BO", + arq: "arq-Arab-DZ", + ars: "ars-Arab-SA", + ary: "ary-Arab-MA", + arz: "arz-Arab-EG", + as: "as-Beng-IN", + asa: "asa-Latn-TZ", + ase: "ase-Sgnw-US", + asg: "asg-Latn-ZZ", + aso: "aso-Latn-ZZ", + ast: "ast-Latn-ES", + ata: "ata-Latn-ZZ", + atg: "atg-Latn-ZZ", + atj: "atj-Latn-CA", + auy: "auy-Latn-ZZ", + av: "av-Cyrl-RU", + avl: "avl-Arab-ZZ", + avn: "avn-Latn-ZZ", + avt: "avt-Latn-ZZ", + avu: "avu-Latn-ZZ", + awa: "awa-Deva-IN", + awb: "awb-Latn-ZZ", + awo: "awo-Latn-ZZ", + awx: "awx-Latn-ZZ", + ay: "ay-Latn-BO", + ayb: "ayb-Latn-ZZ", + az: "az-Latn-AZ", + "az-Arab": "az-Arab-IR", + "az-IQ": "az-Arab-IQ", + "az-IR": "az-Arab-IR", + "az-RU": "az-Cyrl-RU", + ba: "ba-Cyrl-RU", + bal: "bal-Arab-PK", + ban: "ban-Latn-ID", + bap: "bap-Deva-NP", + bar: "bar-Latn-AT", + bas: "bas-Latn-CM", + bav: "bav-Latn-ZZ", + bax: "bax-Bamu-CM", + bba: "bba-Latn-ZZ", + bbb: "bbb-Latn-ZZ", + bbc: "bbc-Latn-ID", + bbd: "bbd-Latn-ZZ", + bbj: "bbj-Latn-CM", + bbp: "bbp-Latn-ZZ", + bbr: "bbr-Latn-ZZ", + bcf: "bcf-Latn-ZZ", + bch: "bch-Latn-ZZ", + bci: "bci-Latn-CI", + bcm: "bcm-Latn-ZZ", + bcn: "bcn-Latn-ZZ", + bco: "bco-Latn-ZZ", + bcq: "bcq-Ethi-ZZ", + bcu: "bcu-Latn-ZZ", + bdd: "bdd-Latn-ZZ", + be: "be-Cyrl-BY", + bef: "bef-Latn-ZZ", + beh: "beh-Latn-ZZ", + bej: "bej-Arab-SD", + bem: "bem-Latn-ZM", + bet: "bet-Latn-ZZ", + bew: "bew-Latn-ID", + bex: "bex-Latn-ZZ", + bez: "bez-Latn-TZ", + bfd: "bfd-Latn-CM", + bfq: "bfq-Taml-IN", + bft: "bft-Arab-PK", + bfy: "bfy-Deva-IN", + bg: "bg-Cyrl-BG", + bgc: "bgc-Deva-IN", + bgn: "bgn-Arab-PK", + bgx: "bgx-Grek-TR", + bhb: "bhb-Deva-IN", + bhg: "bhg-Latn-ZZ", + bhi: "bhi-Deva-IN", + bhl: "bhl-Latn-ZZ", + bho: "bho-Deva-IN", + bhy: "bhy-Latn-ZZ", + bi: "bi-Latn-VU", + bib: "bib-Latn-ZZ", + big: "big-Latn-ZZ", + bik: "bik-Latn-PH", + bim: "bim-Latn-ZZ", + bin: "bin-Latn-NG", + bio: "bio-Latn-ZZ", + biq: "biq-Latn-ZZ", + bjh: "bjh-Latn-ZZ", + bji: "bji-Ethi-ZZ", + bjj: "bjj-Deva-IN", + bjn: "bjn-Latn-ID", + bjo: "bjo-Latn-ZZ", + bjr: "bjr-Latn-ZZ", + bjt: "bjt-Latn-SN", + bjz: "bjz-Latn-ZZ", + bkc: "bkc-Latn-ZZ", + bkm: "bkm-Latn-CM", + bkq: "bkq-Latn-ZZ", + bku: "bku-Latn-PH", + bkv: "bkv-Latn-ZZ", + blg: "blg-Latn-MY", + blt: "blt-Tavt-VN", + bm: "bm-Latn-ML", + bmh: "bmh-Latn-ZZ", + bmk: "bmk-Latn-ZZ", + bmq: "bmq-Latn-ML", + bmu: "bmu-Latn-ZZ", + bn: "bn-Beng-BD", + bng: "bng-Latn-ZZ", + bnm: "bnm-Latn-ZZ", + bnp: "bnp-Latn-ZZ", + bo: "bo-Tibt-CN", + boj: "boj-Latn-ZZ", + bom: "bom-Latn-ZZ", + bon: "bon-Latn-ZZ", + bpy: "bpy-Beng-IN", + bqc: "bqc-Latn-ZZ", + bqi: "bqi-Arab-IR", + bqp: "bqp-Latn-ZZ", + bqv: "bqv-Latn-CI", + br: "br-Latn-FR", + bra: "bra-Deva-IN", + brh: "brh-Arab-PK", + brx: "brx-Deva-IN", + brz: "brz-Latn-ZZ", + bs: "bs-Latn-BA", + bsj: "bsj-Latn-ZZ", + bsq: "bsq-Bass-LR", + bss: "bss-Latn-CM", + bst: "bst-Ethi-ZZ", + bto: "bto-Latn-PH", + btt: "btt-Latn-ZZ", + btv: "btv-Deva-PK", + bua: "bua-Cyrl-RU", + buc: "buc-Latn-YT", + bud: "bud-Latn-ZZ", + bug: "bug-Latn-ID", + buk: "buk-Latn-ZZ", + bum: "bum-Latn-CM", + buo: "buo-Latn-ZZ", + bus: "bus-Latn-ZZ", + buu: "buu-Latn-ZZ", + bvb: "bvb-Latn-GQ", + bwd: "bwd-Latn-ZZ", + bwr: "bwr-Latn-ZZ", + bxh: "bxh-Latn-ZZ", + bye: "bye-Latn-ZZ", + byn: "byn-Ethi-ER", + byr: "byr-Latn-ZZ", + bys: "bys-Latn-ZZ", + byv: "byv-Latn-CM", + byx: "byx-Latn-ZZ", + bza: "bza-Latn-ZZ", + bze: "bze-Latn-ML", + bzf: "bzf-Latn-ZZ", + bzh: "bzh-Latn-ZZ", + bzw: "bzw-Latn-ZZ", + ca: "ca-Latn-ES", + cad: "cad-Latn-US", + can: "can-Latn-ZZ", + cbj: "cbj-Latn-ZZ", + cch: "cch-Latn-NG", + ccp: "ccp-Cakm-BD", + ce: "ce-Cyrl-RU", + ceb: "ceb-Latn-PH", + cfa: "cfa-Latn-ZZ", + cgg: "cgg-Latn-UG", + ch: "ch-Latn-GU", + chk: "chk-Latn-FM", + chm: "chm-Cyrl-RU", + cho: "cho-Latn-US", + chp: "chp-Latn-CA", + chr: "chr-Cher-US", + cic: "cic-Latn-US", + cja: "cja-Arab-KH", + cjm: "cjm-Cham-VN", + cjv: "cjv-Latn-ZZ", + ckb: "ckb-Arab-IQ", + ckl: "ckl-Latn-ZZ", + cko: "cko-Latn-ZZ", + cky: "cky-Latn-ZZ", + cla: "cla-Latn-ZZ", + cme: "cme-Latn-ZZ", + cmg: "cmg-Soyo-MN", + co: "co-Latn-FR", + cop: "cop-Copt-EG", + cps: "cps-Latn-PH", + cr: "cr-Cans-CA", + crh: "crh-Cyrl-UA", + crj: "crj-Cans-CA", + crk: "crk-Cans-CA", + crl: "crl-Cans-CA", + crm: "crm-Cans-CA", + crs: "crs-Latn-SC", + cs: "cs-Latn-CZ", + csb: "csb-Latn-PL", + csw: "csw-Cans-CA", + ctd: "ctd-Pauc-MM", + cu: "cu-Cyrl-RU", + "cu-Glag": "cu-Glag-BG", + cv: "cv-Cyrl-RU", + cy: "cy-Latn-GB", + da: "da-Latn-DK", + dad: "dad-Latn-ZZ", + daf: "daf-Latn-CI", + dag: "dag-Latn-ZZ", + dah: "dah-Latn-ZZ", + dak: "dak-Latn-US", + dar: "dar-Cyrl-RU", + dav: "dav-Latn-KE", + dbd: "dbd-Latn-ZZ", + dbq: "dbq-Latn-ZZ", + dcc: "dcc-Arab-IN", + ddn: "ddn-Latn-ZZ", + de: "de-Latn-DE", + ded: "ded-Latn-ZZ", + den: "den-Latn-CA", + dga: "dga-Latn-ZZ", + dgh: "dgh-Latn-ZZ", + dgi: "dgi-Latn-ZZ", + dgl: "dgl-Arab-ZZ", + dgr: "dgr-Latn-CA", + dgz: "dgz-Latn-ZZ", + dia: "dia-Latn-ZZ", + dje: "dje-Latn-NE", + dmf: "dmf-Medf-NG", + dnj: "dnj-Latn-CI", + dob: "dob-Latn-ZZ", + doi: "doi-Deva-IN", + dop: "dop-Latn-ZZ", + dow: "dow-Latn-ZZ", + drh: "drh-Mong-CN", + dri: "dri-Latn-ZZ", + drs: "drs-Ethi-ZZ", + dsb: "dsb-Latn-DE", + dtm: "dtm-Latn-ML", + dtp: "dtp-Latn-MY", + dts: "dts-Latn-ZZ", + dty: "dty-Deva-NP", + dua: "dua-Latn-CM", + duc: "duc-Latn-ZZ", + dud: "dud-Latn-ZZ", + dug: "dug-Latn-ZZ", + dv: "dv-Thaa-MV", + dva: "dva-Latn-ZZ", + dww: "dww-Latn-ZZ", + dyo: "dyo-Latn-SN", + dyu: "dyu-Latn-BF", + dz: "dz-Tibt-BT", + dzg: "dzg-Latn-ZZ", + ebu: "ebu-Latn-KE", + ee: "ee-Latn-GH", + efi: "efi-Latn-NG", + egl: "egl-Latn-IT", + egy: "egy-Egyp-EG", + eka: "eka-Latn-ZZ", + eky: "eky-Kali-MM", + el: "el-Grek-GR", + ema: "ema-Latn-ZZ", + emi: "emi-Latn-ZZ", + en: "en-Latn-US", + "en-Shaw": "en-Shaw-GB", + enn: "enn-Latn-ZZ", + enq: "enq-Latn-ZZ", + eo: "eo-Latn-001", + eri: "eri-Latn-ZZ", + es: "es-Latn-ES", + esg: "esg-Gonm-IN", + esu: "esu-Latn-US", + et: "et-Latn-EE", + etr: "etr-Latn-ZZ", + ett: "ett-Ital-IT", + etu: "etu-Latn-ZZ", + etx: "etx-Latn-ZZ", + eu: "eu-Latn-ES", + ewo: "ewo-Latn-CM", + ext: "ext-Latn-ES", + eza: "eza-Latn-ZZ", + fa: "fa-Arab-IR", + faa: "faa-Latn-ZZ", + fab: "fab-Latn-ZZ", + fag: "fag-Latn-ZZ", + fai: "fai-Latn-ZZ", + fan: "fan-Latn-GQ", + ff: "ff-Latn-SN", + "ff-Adlm": "ff-Adlm-GN", + ffi: "ffi-Latn-ZZ", + ffm: "ffm-Latn-ML", + fi: "fi-Latn-FI", + fia: "fia-Arab-SD", + fil: "fil-Latn-PH", + fit: "fit-Latn-SE", + fj: "fj-Latn-FJ", + flr: "flr-Latn-ZZ", + fmp: "fmp-Latn-ZZ", + fo: "fo-Latn-FO", + fod: "fod-Latn-ZZ", + fon: "fon-Latn-BJ", + for: "for-Latn-ZZ", + fpe: "fpe-Latn-ZZ", + fqs: "fqs-Latn-ZZ", + fr: "fr-Latn-FR", + frc: "frc-Latn-US", + frp: "frp-Latn-FR", + frr: "frr-Latn-DE", + frs: "frs-Latn-DE", + fub: "fub-Arab-CM", + fud: "fud-Latn-WF", + fue: "fue-Latn-ZZ", + fuf: "fuf-Latn-GN", + fuh: "fuh-Latn-ZZ", + fuq: "fuq-Latn-NE", + fur: "fur-Latn-IT", + fuv: "fuv-Latn-NG", + fuy: "fuy-Latn-ZZ", + fvr: "fvr-Latn-SD", + fy: "fy-Latn-NL", + ga: "ga-Latn-IE", + gaa: "gaa-Latn-GH", + gaf: "gaf-Latn-ZZ", + gag: "gag-Latn-MD", + gah: "gah-Latn-ZZ", + gaj: "gaj-Latn-ZZ", + gam: "gam-Latn-ZZ", + gan: "gan-Hans-CN", + gaw: "gaw-Latn-ZZ", + gay: "gay-Latn-ID", + gba: "gba-Latn-ZZ", + gbf: "gbf-Latn-ZZ", + gbm: "gbm-Deva-IN", + gby: "gby-Latn-ZZ", + gbz: "gbz-Arab-IR", + gcr: "gcr-Latn-GF", + gd: "gd-Latn-GB", + gde: "gde-Latn-ZZ", + gdn: "gdn-Latn-ZZ", + gdr: "gdr-Latn-ZZ", + geb: "geb-Latn-ZZ", + gej: "gej-Latn-ZZ", + gel: "gel-Latn-ZZ", + gez: "gez-Ethi-ET", + gfk: "gfk-Latn-ZZ", + ggn: "ggn-Deva-NP", + ghs: "ghs-Latn-ZZ", + gil: "gil-Latn-KI", + gim: "gim-Latn-ZZ", + gjk: "gjk-Arab-PK", + gjn: "gjn-Latn-ZZ", + gju: "gju-Arab-PK", + gkn: "gkn-Latn-ZZ", + gkp: "gkp-Latn-ZZ", + gl: "gl-Latn-ES", + glk: "glk-Arab-IR", + gmm: "gmm-Latn-ZZ", + gmv: "gmv-Ethi-ZZ", + gn: "gn-Latn-PY", + gnd: "gnd-Latn-ZZ", + gng: "gng-Latn-ZZ", + god: "god-Latn-ZZ", + gof: "gof-Ethi-ZZ", + goi: "goi-Latn-ZZ", + gom: "gom-Deva-IN", + gon: "gon-Telu-IN", + gor: "gor-Latn-ID", + gos: "gos-Latn-NL", + got: "got-Goth-UA", + grb: "grb-Latn-ZZ", + grc: "grc-Cprt-CY", + "grc-Linb": "grc-Linb-GR", + grt: "grt-Beng-IN", + grw: "grw-Latn-ZZ", + gsw: "gsw-Latn-CH", + gu: "gu-Gujr-IN", + gub: "gub-Latn-BR", + guc: "guc-Latn-CO", + gud: "gud-Latn-ZZ", + gur: "gur-Latn-GH", + guw: "guw-Latn-ZZ", + gux: "gux-Latn-ZZ", + guz: "guz-Latn-KE", + gv: "gv-Latn-IM", + gvf: "gvf-Latn-ZZ", + gvr: "gvr-Deva-NP", + gvs: "gvs-Latn-ZZ", + gwc: "gwc-Arab-ZZ", + gwi: "gwi-Latn-CA", + gwt: "gwt-Arab-ZZ", + gyi: "gyi-Latn-ZZ", + ha: "ha-Latn-NG", + "ha-CM": "ha-Arab-CM", + "ha-SD": "ha-Arab-SD", + hag: "hag-Latn-ZZ", + hak: "hak-Hans-CN", + ham: "ham-Latn-ZZ", + haw: "haw-Latn-US", + haz: "haz-Arab-AF", + hbb: "hbb-Latn-ZZ", + hdy: "hdy-Ethi-ZZ", + he: "he-Hebr-IL", + hhy: "hhy-Latn-ZZ", + hi: "hi-Deva-IN", + hia: "hia-Latn-ZZ", + hif: "hif-Latn-FJ", + hig: "hig-Latn-ZZ", + hih: "hih-Latn-ZZ", + hil: "hil-Latn-PH", + hla: "hla-Latn-ZZ", + hlu: "hlu-Hluw-TR", + hmd: "hmd-Plrd-CN", + hmt: "hmt-Latn-ZZ", + hnd: "hnd-Arab-PK", + hne: "hne-Deva-IN", + hnj: "hnj-Hmnp-US", + hnn: "hnn-Latn-PH", + hno: "hno-Arab-PK", + ho: "ho-Latn-PG", + hoc: "hoc-Deva-IN", + hoj: "hoj-Deva-IN", + hot: "hot-Latn-ZZ", + hr: "hr-Latn-HR", + hsb: "hsb-Latn-DE", + hsn: "hsn-Hans-CN", + ht: "ht-Latn-HT", + hu: "hu-Latn-HU", + hui: "hui-Latn-ZZ", + hy: "hy-Armn-AM", + hz: "hz-Latn-NA", + ia: "ia-Latn-001", + ian: "ian-Latn-ZZ", + iar: "iar-Latn-ZZ", + iba: "iba-Latn-MY", + ibb: "ibb-Latn-NG", + iby: "iby-Latn-ZZ", + ica: "ica-Latn-ZZ", + ich: "ich-Latn-ZZ", + id: "id-Latn-ID", + idd: "idd-Latn-ZZ", + idi: "idi-Latn-ZZ", + idu: "idu-Latn-ZZ", + ife: "ife-Latn-TG", + ig: "ig-Latn-NG", + igb: "igb-Latn-ZZ", + ige: "ige-Latn-ZZ", + ii: "ii-Yiii-CN", + ijj: "ijj-Latn-ZZ", + ik: "ik-Latn-US", + ikk: "ikk-Latn-ZZ", + ikt: "ikt-Latn-CA", + ikw: "ikw-Latn-ZZ", + ikx: "ikx-Latn-ZZ", + ilo: "ilo-Latn-PH", + imo: "imo-Latn-ZZ", + in: "in-Latn-ID", + inh: "inh-Cyrl-RU", + io: "io-Latn-001", + iou: "iou-Latn-ZZ", + iri: "iri-Latn-ZZ", + is: "is-Latn-IS", + it: "it-Latn-IT", + iu: "iu-Cans-CA", + iw: "iw-Hebr-IL", + iwm: "iwm-Latn-ZZ", + iws: "iws-Latn-ZZ", + izh: "izh-Latn-RU", + izi: "izi-Latn-ZZ", + ja: "ja-Jpan-JP", + jab: "jab-Latn-ZZ", + jam: "jam-Latn-JM", + jar: "jar-Latn-ZZ", + jbo: "jbo-Latn-001", + jbu: "jbu-Latn-ZZ", + jen: "jen-Latn-ZZ", + jgk: "jgk-Latn-ZZ", + jgo: "jgo-Latn-CM", + ji: "ji-Hebr-UA", + jib: "jib-Latn-ZZ", + jmc: "jmc-Latn-TZ", + jml: "jml-Deva-NP", + jra: "jra-Latn-ZZ", + jut: "jut-Latn-DK", + jv: "jv-Latn-ID", + jw: "jw-Latn-ID", + ka: "ka-Geor-GE", + kaa: "kaa-Cyrl-UZ", + kab: "kab-Latn-DZ", + kac: "kac-Latn-MM", + kad: "kad-Latn-ZZ", + kai: "kai-Latn-ZZ", + kaj: "kaj-Latn-NG", + kam: "kam-Latn-KE", + kao: "kao-Latn-ML", + kbd: "kbd-Cyrl-RU", + kbm: "kbm-Latn-ZZ", + kbp: "kbp-Latn-ZZ", + kbq: "kbq-Latn-ZZ", + kbx: "kbx-Latn-ZZ", + kby: "kby-Arab-NE", + kcg: "kcg-Latn-NG", + kck: "kck-Latn-ZW", + kcl: "kcl-Latn-ZZ", + kct: "kct-Latn-ZZ", + kde: "kde-Latn-TZ", + kdh: "kdh-Latn-TG", + kdl: "kdl-Latn-ZZ", + kdt: "kdt-Thai-TH", + kea: "kea-Latn-CV", + ken: "ken-Latn-CM", + kez: "kez-Latn-ZZ", + kfo: "kfo-Latn-CI", + kfr: "kfr-Deva-IN", + kfy: "kfy-Deva-IN", + kg: "kg-Latn-CD", + kge: "kge-Latn-ID", + kgf: "kgf-Latn-ZZ", + kgp: "kgp-Latn-BR", + kha: "kha-Latn-IN", + khb: "khb-Talu-CN", + khn: "khn-Deva-IN", + khq: "khq-Latn-ML", + khs: "khs-Latn-ZZ", + kht: "kht-Mymr-IN", + khw: "khw-Arab-PK", + khz: "khz-Latn-ZZ", + ki: "ki-Latn-KE", + kij: "kij-Latn-ZZ", + kiu: "kiu-Latn-TR", + kiw: "kiw-Latn-ZZ", + kj: "kj-Latn-NA", + kjd: "kjd-Latn-ZZ", + kjg: "kjg-Laoo-LA", + kjs: "kjs-Latn-ZZ", + kjy: "kjy-Latn-ZZ", + kk: "kk-Cyrl-KZ", + "kk-AF": "kk-Arab-AF", + "kk-Arab": "kk-Arab-CN", + "kk-CN": "kk-Arab-CN", + "kk-IR": "kk-Arab-IR", + "kk-MN": "kk-Arab-MN", + kkc: "kkc-Latn-ZZ", + kkj: "kkj-Latn-CM", + kl: "kl-Latn-GL", + kln: "kln-Latn-KE", + klq: "klq-Latn-ZZ", + klt: "klt-Latn-ZZ", + klx: "klx-Latn-ZZ", + km: "km-Khmr-KH", + kmb: "kmb-Latn-AO", + kmh: "kmh-Latn-ZZ", + kmo: "kmo-Latn-ZZ", + kms: "kms-Latn-ZZ", + kmu: "kmu-Latn-ZZ", + kmw: "kmw-Latn-ZZ", + kn: "kn-Knda-IN", + knf: "knf-Latn-GW", + knp: "knp-Latn-ZZ", + ko: "ko-Kore-KR", + koi: "koi-Cyrl-RU", + kok: "kok-Deva-IN", + kol: "kol-Latn-ZZ", + kos: "kos-Latn-FM", + koz: "koz-Latn-ZZ", + kpe: "kpe-Latn-LR", + kpf: "kpf-Latn-ZZ", + kpo: "kpo-Latn-ZZ", + kpr: "kpr-Latn-ZZ", + kpx: "kpx-Latn-ZZ", + kqb: "kqb-Latn-ZZ", + kqf: "kqf-Latn-ZZ", + kqs: "kqs-Latn-ZZ", + kqy: "kqy-Ethi-ZZ", + kr: "kr-Latn-ZZ", + krc: "krc-Cyrl-RU", + kri: "kri-Latn-SL", + krj: "krj-Latn-PH", + krl: "krl-Latn-RU", + krs: "krs-Latn-ZZ", + kru: "kru-Deva-IN", + ks: "ks-Arab-IN", + ksb: "ksb-Latn-TZ", + ksd: "ksd-Latn-ZZ", + ksf: "ksf-Latn-CM", + ksh: "ksh-Latn-DE", + ksj: "ksj-Latn-ZZ", + ksr: "ksr-Latn-ZZ", + ktb: "ktb-Ethi-ZZ", + ktm: "ktm-Latn-ZZ", + kto: "kto-Latn-ZZ", + ktr: "ktr-Latn-MY", + ku: "ku-Latn-TR", + "ku-Arab": "ku-Arab-IQ", + "ku-LB": "ku-Arab-LB", + "ku-Yezi": "ku-Yezi-GE", + kub: "kub-Latn-ZZ", + kud: "kud-Latn-ZZ", + kue: "kue-Latn-ZZ", + kuj: "kuj-Latn-ZZ", + kum: "kum-Cyrl-RU", + kun: "kun-Latn-ZZ", + kup: "kup-Latn-ZZ", + kus: "kus-Latn-ZZ", + kv: "kv-Cyrl-RU", + kvg: "kvg-Latn-ZZ", + kvr: "kvr-Latn-ID", + kvx: "kvx-Arab-PK", + kw: "kw-Latn-GB", + kwj: "kwj-Latn-ZZ", + kwo: "kwo-Latn-ZZ", + kwq: "kwq-Latn-ZZ", + kxa: "kxa-Latn-ZZ", + kxc: "kxc-Ethi-ZZ", + kxe: "kxe-Latn-ZZ", + kxl: "kxl-Deva-IN", + kxm: "kxm-Thai-TH", + kxp: "kxp-Arab-PK", + kxw: "kxw-Latn-ZZ", + kxz: "kxz-Latn-ZZ", + ky: "ky-Cyrl-KG", + "ky-Arab": "ky-Arab-CN", + "ky-CN": "ky-Arab-CN", + "ky-Latn": "ky-Latn-TR", + "ky-TR": "ky-Latn-TR", + kye: "kye-Latn-ZZ", + kyx: "kyx-Latn-ZZ", + kzh: "kzh-Arab-ZZ", + kzj: "kzj-Latn-MY", + kzr: "kzr-Latn-ZZ", + kzt: "kzt-Latn-MY", + la: "la-Latn-VA", + lab: "lab-Lina-GR", + lad: "lad-Hebr-IL", + lag: "lag-Latn-TZ", + lah: "lah-Arab-PK", + laj: "laj-Latn-UG", + las: "las-Latn-ZZ", + lb: "lb-Latn-LU", + lbe: "lbe-Cyrl-RU", + lbu: "lbu-Latn-ZZ", + lbw: "lbw-Latn-ID", + lcm: "lcm-Latn-ZZ", + lcp: "lcp-Thai-CN", + ldb: "ldb-Latn-ZZ", + led: "led-Latn-ZZ", + lee: "lee-Latn-ZZ", + lem: "lem-Latn-ZZ", + lep: "lep-Lepc-IN", + leq: "leq-Latn-ZZ", + leu: "leu-Latn-ZZ", + lez: "lez-Cyrl-RU", + lg: "lg-Latn-UG", + lgg: "lgg-Latn-ZZ", + li: "li-Latn-NL", + lia: "lia-Latn-ZZ", + lid: "lid-Latn-ZZ", + lif: "lif-Deva-NP", + "lif-Limb": "lif-Limb-IN", + lig: "lig-Latn-ZZ", + lih: "lih-Latn-ZZ", + lij: "lij-Latn-IT", + lis: "lis-Lisu-CN", + ljp: "ljp-Latn-ID", + lki: "lki-Arab-IR", + lkt: "lkt-Latn-US", + lle: "lle-Latn-ZZ", + lln: "lln-Latn-ZZ", + lmn: "lmn-Telu-IN", + lmo: "lmo-Latn-IT", + lmp: "lmp-Latn-ZZ", + ln: "ln-Latn-CD", + lns: "lns-Latn-ZZ", + lnu: "lnu-Latn-ZZ", + lo: "lo-Laoo-LA", + loj: "loj-Latn-ZZ", + lok: "lok-Latn-ZZ", + lol: "lol-Latn-CD", + lor: "lor-Latn-ZZ", + los: "los-Latn-ZZ", + loz: "loz-Latn-ZM", + lrc: "lrc-Arab-IR", + lt: "lt-Latn-LT", + ltg: "ltg-Latn-LV", + lu: "lu-Latn-CD", + lua: "lua-Latn-CD", + luo: "luo-Latn-KE", + luy: "luy-Latn-KE", + luz: "luz-Arab-IR", + lv: "lv-Latn-LV", + lwl: "lwl-Thai-TH", + lzh: "lzh-Hans-CN", + lzz: "lzz-Latn-TR", + mad: "mad-Latn-ID", + maf: "maf-Latn-CM", + mag: "mag-Deva-IN", + mai: "mai-Deva-IN", + mak: "mak-Latn-ID", + man: "man-Latn-GM", + "man-GN": "man-Nkoo-GN", + "man-Nkoo": "man-Nkoo-GN", + mas: "mas-Latn-KE", + maw: "maw-Latn-ZZ", + maz: "maz-Latn-MX", + mbh: "mbh-Latn-ZZ", + mbo: "mbo-Latn-ZZ", + mbq: "mbq-Latn-ZZ", + mbu: "mbu-Latn-ZZ", + mbw: "mbw-Latn-ZZ", + mci: "mci-Latn-ZZ", + mcp: "mcp-Latn-ZZ", + mcq: "mcq-Latn-ZZ", + mcr: "mcr-Latn-ZZ", + mcu: "mcu-Latn-ZZ", + mda: "mda-Latn-ZZ", + mde: "mde-Arab-ZZ", + mdf: "mdf-Cyrl-RU", + mdh: "mdh-Latn-PH", + mdj: "mdj-Latn-ZZ", + mdr: "mdr-Latn-ID", + mdx: "mdx-Ethi-ZZ", + med: "med-Latn-ZZ", + mee: "mee-Latn-ZZ", + mek: "mek-Latn-ZZ", + men: "men-Latn-SL", + mer: "mer-Latn-KE", + met: "met-Latn-ZZ", + meu: "meu-Latn-ZZ", + mfa: "mfa-Arab-TH", + mfe: "mfe-Latn-MU", + mfn: "mfn-Latn-ZZ", + mfo: "mfo-Latn-ZZ", + mfq: "mfq-Latn-ZZ", + mg: "mg-Latn-MG", + mgh: "mgh-Latn-MZ", + mgl: "mgl-Latn-ZZ", + mgo: "mgo-Latn-CM", + mgp: "mgp-Deva-NP", + mgy: "mgy-Latn-TZ", + mh: "mh-Latn-MH", + mhi: "mhi-Latn-ZZ", + mhl: "mhl-Latn-ZZ", + mi: "mi-Latn-NZ", + mif: "mif-Latn-ZZ", + min: "min-Latn-ID", + miw: "miw-Latn-ZZ", + mk: "mk-Cyrl-MK", + mki: "mki-Arab-ZZ", + mkl: "mkl-Latn-ZZ", + mkp: "mkp-Latn-ZZ", + mkw: "mkw-Latn-ZZ", + ml: "ml-Mlym-IN", + mle: "mle-Latn-ZZ", + mlp: "mlp-Latn-ZZ", + mls: "mls-Latn-SD", + mmo: "mmo-Latn-ZZ", + mmu: "mmu-Latn-ZZ", + mmx: "mmx-Latn-ZZ", + mn: "mn-Cyrl-MN", + "mn-CN": "mn-Mong-CN", + "mn-Mong": "mn-Mong-CN", + mna: "mna-Latn-ZZ", + mnf: "mnf-Latn-ZZ", + mni: "mni-Beng-IN", + mnw: "mnw-Mymr-MM", + mo: "mo-Latn-RO", + moa: "moa-Latn-ZZ", + moe: "moe-Latn-CA", + moh: "moh-Latn-CA", + mos: "mos-Latn-BF", + mox: "mox-Latn-ZZ", + mpp: "mpp-Latn-ZZ", + mps: "mps-Latn-ZZ", + mpt: "mpt-Latn-ZZ", + mpx: "mpx-Latn-ZZ", + mql: "mql-Latn-ZZ", + mr: "mr-Deva-IN", + mrd: "mrd-Deva-NP", + mrj: "mrj-Cyrl-RU", + mro: "mro-Mroo-BD", + ms: "ms-Latn-MY", + "ms-CC": "ms-Arab-CC", + mt: "mt-Latn-MT", + mtc: "mtc-Latn-ZZ", + mtf: "mtf-Latn-ZZ", + mti: "mti-Latn-ZZ", + mtr: "mtr-Deva-IN", + mua: "mua-Latn-CM", + mur: "mur-Latn-ZZ", + mus: "mus-Latn-US", + mva: "mva-Latn-ZZ", + mvn: "mvn-Latn-ZZ", + mvy: "mvy-Arab-PK", + mwk: "mwk-Latn-ML", + mwr: "mwr-Deva-IN", + mwv: "mwv-Latn-ID", + mww: "mww-Hmnp-US", + mxc: "mxc-Latn-ZW", + mxm: "mxm-Latn-ZZ", + my: "my-Mymr-MM", + myk: "myk-Latn-ZZ", + mym: "mym-Ethi-ZZ", + myv: "myv-Cyrl-RU", + myw: "myw-Latn-ZZ", + myx: "myx-Latn-UG", + myz: "myz-Mand-IR", + mzk: "mzk-Latn-ZZ", + mzm: "mzm-Latn-ZZ", + mzn: "mzn-Arab-IR", + mzp: "mzp-Latn-ZZ", + mzw: "mzw-Latn-ZZ", + mzz: "mzz-Latn-ZZ", + na: "na-Latn-NR", + nac: "nac-Latn-ZZ", + naf: "naf-Latn-ZZ", + nak: "nak-Latn-ZZ", + nan: "nan-Hans-CN", + nap: "nap-Latn-IT", + naq: "naq-Latn-NA", + nas: "nas-Latn-ZZ", + nb: "nb-Latn-NO", + nca: "nca-Latn-ZZ", + nce: "nce-Latn-ZZ", + ncf: "ncf-Latn-ZZ", + nch: "nch-Latn-MX", + nco: "nco-Latn-ZZ", + ncu: "ncu-Latn-ZZ", + nd: "nd-Latn-ZW", + ndc: "ndc-Latn-MZ", + nds: "nds-Latn-DE", + ne: "ne-Deva-NP", + neb: "neb-Latn-ZZ", + new: "new-Deva-NP", + nex: "nex-Latn-ZZ", + nfr: "nfr-Latn-ZZ", + ng: "ng-Latn-NA", + nga: "nga-Latn-ZZ", + ngb: "ngb-Latn-ZZ", + ngl: "ngl-Latn-MZ", + nhb: "nhb-Latn-ZZ", + nhe: "nhe-Latn-MX", + nhw: "nhw-Latn-MX", + nif: "nif-Latn-ZZ", + nii: "nii-Latn-ZZ", + nij: "nij-Latn-ID", + nin: "nin-Latn-ZZ", + niu: "niu-Latn-NU", + niy: "niy-Latn-ZZ", + niz: "niz-Latn-ZZ", + njo: "njo-Latn-IN", + nkg: "nkg-Latn-ZZ", + nko: "nko-Latn-ZZ", + nl: "nl-Latn-NL", + nmg: "nmg-Latn-CM", + nmz: "nmz-Latn-ZZ", + nn: "nn-Latn-NO", + nnf: "nnf-Latn-ZZ", + nnh: "nnh-Latn-CM", + nnk: "nnk-Latn-ZZ", + nnm: "nnm-Latn-ZZ", + nnp: "nnp-Wcho-IN", + no: "no-Latn-NO", + nod: "nod-Lana-TH", + noe: "noe-Deva-IN", + non: "non-Runr-SE", + nop: "nop-Latn-ZZ", + nou: "nou-Latn-ZZ", + nqo: "nqo-Nkoo-GN", + nr: "nr-Latn-ZA", + nrb: "nrb-Latn-ZZ", + nsk: "nsk-Cans-CA", + nsn: "nsn-Latn-ZZ", + nso: "nso-Latn-ZA", + nss: "nss-Latn-ZZ", + nst: "nst-Tnsa-IN", + ntm: "ntm-Latn-ZZ", + ntr: "ntr-Latn-ZZ", + nui: "nui-Latn-ZZ", + nup: "nup-Latn-ZZ", + nus: "nus-Latn-SS", + nuv: "nuv-Latn-ZZ", + nux: "nux-Latn-ZZ", + nv: "nv-Latn-US", + nwb: "nwb-Latn-ZZ", + nxq: "nxq-Latn-CN", + nxr: "nxr-Latn-ZZ", + ny: "ny-Latn-MW", + nym: "nym-Latn-TZ", + nyn: "nyn-Latn-UG", + nzi: "nzi-Latn-GH", + oc: "oc-Latn-FR", + ogc: "ogc-Latn-ZZ", + okr: "okr-Latn-ZZ", + okv: "okv-Latn-ZZ", + om: "om-Latn-ET", + ong: "ong-Latn-ZZ", + onn: "onn-Latn-ZZ", + ons: "ons-Latn-ZZ", + opm: "opm-Latn-ZZ", + or: "or-Orya-IN", + oro: "oro-Latn-ZZ", + oru: "oru-Arab-ZZ", + os: "os-Cyrl-GE", + osa: "osa-Osge-US", + ota: "ota-Arab-ZZ", + otk: "otk-Orkh-MN", + oui: "oui-Ougr-143", + ozm: "ozm-Latn-ZZ", + pa: "pa-Guru-IN", + "pa-Arab": "pa-Arab-PK", + "pa-PK": "pa-Arab-PK", + pag: "pag-Latn-PH", + pal: "pal-Phli-IR", + "pal-Phlp": "pal-Phlp-CN", + pam: "pam-Latn-PH", + pap: "pap-Latn-AW", + pau: "pau-Latn-PW", + pbi: "pbi-Latn-ZZ", + pcd: "pcd-Latn-FR", + pcm: "pcm-Latn-NG", + pdc: "pdc-Latn-US", + pdt: "pdt-Latn-CA", + ped: "ped-Latn-ZZ", + peo: "peo-Xpeo-IR", + pex: "pex-Latn-ZZ", + pfl: "pfl-Latn-DE", + phl: "phl-Arab-ZZ", + phn: "phn-Phnx-LB", + pil: "pil-Latn-ZZ", + pip: "pip-Latn-ZZ", + pka: "pka-Brah-IN", + pko: "pko-Latn-KE", + pl: "pl-Latn-PL", + pla: "pla-Latn-ZZ", + pms: "pms-Latn-IT", + png: "png-Latn-ZZ", + pnn: "pnn-Latn-ZZ", + pnt: "pnt-Grek-GR", + pon: "pon-Latn-FM", + ppa: "ppa-Deva-IN", + ppo: "ppo-Latn-ZZ", + pra: "pra-Khar-PK", + prd: "prd-Arab-IR", + prg: "prg-Latn-001", + ps: "ps-Arab-AF", + pss: "pss-Latn-ZZ", + pt: "pt-Latn-BR", + ptp: "ptp-Latn-ZZ", + puu: "puu-Latn-GA", + pwa: "pwa-Latn-ZZ", + qu: "qu-Latn-PE", + quc: "quc-Latn-GT", + qug: "qug-Latn-EC", + rai: "rai-Latn-ZZ", + raj: "raj-Deva-IN", + rao: "rao-Latn-ZZ", + rcf: "rcf-Latn-RE", + rej: "rej-Latn-ID", + rel: "rel-Latn-ZZ", + res: "res-Latn-ZZ", + rgn: "rgn-Latn-IT", + rhg: "rhg-Rohg-MM", + ria: "ria-Latn-IN", + rif: "rif-Tfng-MA", + "rif-NL": "rif-Latn-NL", + rjs: "rjs-Deva-NP", + rkt: "rkt-Beng-BD", + rm: "rm-Latn-CH", + rmf: "rmf-Latn-FI", + rmo: "rmo-Latn-CH", + rmt: "rmt-Arab-IR", + rmu: "rmu-Latn-SE", + rn: "rn-Latn-BI", + rna: "rna-Latn-ZZ", + rng: "rng-Latn-MZ", + ro: "ro-Latn-RO", + rob: "rob-Latn-ID", + rof: "rof-Latn-TZ", + roo: "roo-Latn-ZZ", + rro: "rro-Latn-ZZ", + rtm: "rtm-Latn-FJ", + ru: "ru-Cyrl-RU", + rue: "rue-Cyrl-UA", + rug: "rug-Latn-SB", + rw: "rw-Latn-RW", + rwk: "rwk-Latn-TZ", + rwo: "rwo-Latn-ZZ", + ryu: "ryu-Kana-JP", + sa: "sa-Deva-IN", + saf: "saf-Latn-GH", + sah: "sah-Cyrl-RU", + saq: "saq-Latn-KE", + sas: "sas-Latn-ID", + sat: "sat-Olck-IN", + sav: "sav-Latn-SN", + saz: "saz-Saur-IN", + sba: "sba-Latn-ZZ", + sbe: "sbe-Latn-ZZ", + sbp: "sbp-Latn-TZ", + sc: "sc-Latn-IT", + sck: "sck-Deva-IN", + scl: "scl-Arab-ZZ", + scn: "scn-Latn-IT", + sco: "sco-Latn-GB", + scs: "scs-Latn-CA", + sd: "sd-Arab-PK", + "sd-Deva": "sd-Deva-IN", + "sd-Khoj": "sd-Khoj-IN", + "sd-Sind": "sd-Sind-IN", + sdc: "sdc-Latn-IT", + sdh: "sdh-Arab-IR", + se: "se-Latn-NO", + sef: "sef-Latn-CI", + seh: "seh-Latn-MZ", + sei: "sei-Latn-MX", + ses: "ses-Latn-ML", + sg: "sg-Latn-CF", + sga: "sga-Ogam-IE", + sgs: "sgs-Latn-LT", + sgw: "sgw-Ethi-ZZ", + sgz: "sgz-Latn-ZZ", + shi: "shi-Tfng-MA", + shk: "shk-Latn-ZZ", + shn: "shn-Mymr-MM", + shu: "shu-Arab-ZZ", + si: "si-Sinh-LK", + sid: "sid-Latn-ET", + sig: "sig-Latn-ZZ", + sil: "sil-Latn-ZZ", + sim: "sim-Latn-ZZ", + sjr: "sjr-Latn-ZZ", + sk: "sk-Latn-SK", + skc: "skc-Latn-ZZ", + skr: "skr-Arab-PK", + sks: "sks-Latn-ZZ", + sl: "sl-Latn-SI", + sld: "sld-Latn-ZZ", + sli: "sli-Latn-PL", + sll: "sll-Latn-ZZ", + sly: "sly-Latn-ID", + sm: "sm-Latn-WS", + sma: "sma-Latn-SE", + smj: "smj-Latn-SE", + smn: "smn-Latn-FI", + smp: "smp-Samr-IL", + smq: "smq-Latn-ZZ", + sms: "sms-Latn-FI", + sn: "sn-Latn-ZW", + snc: "snc-Latn-ZZ", + snk: "snk-Latn-ML", + snp: "snp-Latn-ZZ", + snx: "snx-Latn-ZZ", + sny: "sny-Latn-ZZ", + so: "so-Latn-SO", + sog: "sog-Sogd-UZ", + sok: "sok-Latn-ZZ", + soq: "soq-Latn-ZZ", + sou: "sou-Thai-TH", + soy: "soy-Latn-ZZ", + spd: "spd-Latn-ZZ", + spl: "spl-Latn-ZZ", + sps: "sps-Latn-ZZ", + sq: "sq-Latn-AL", + sr: "sr-Cyrl-RS", + "sr-ME": "sr-Latn-ME", + "sr-RO": "sr-Latn-RO", + "sr-RU": "sr-Latn-RU", + "sr-TR": "sr-Latn-TR", + srb: "srb-Sora-IN", + srn: "srn-Latn-SR", + srr: "srr-Latn-SN", + srx: "srx-Deva-IN", + ss: "ss-Latn-ZA", + ssd: "ssd-Latn-ZZ", + ssg: "ssg-Latn-ZZ", + ssy: "ssy-Latn-ER", + st: "st-Latn-ZA", + stk: "stk-Latn-ZZ", + stq: "stq-Latn-DE", + su: "su-Latn-ID", + sua: "sua-Latn-ZZ", + sue: "sue-Latn-ZZ", + suk: "suk-Latn-TZ", + sur: "sur-Latn-ZZ", + sus: "sus-Latn-GN", + sv: "sv-Latn-SE", + sw: "sw-Latn-TZ", + swb: "swb-Arab-YT", + swc: "swc-Latn-CD", + swg: "swg-Latn-DE", + swp: "swp-Latn-ZZ", + swv: "swv-Deva-IN", + sxn: "sxn-Latn-ID", + sxw: "sxw-Latn-ZZ", + syl: "syl-Beng-BD", + syr: "syr-Syrc-IQ", + szl: "szl-Latn-PL", + ta: "ta-Taml-IN", + taj: "taj-Deva-NP", + tal: "tal-Latn-ZZ", + tan: "tan-Latn-ZZ", + taq: "taq-Latn-ZZ", + tbc: "tbc-Latn-ZZ", + tbd: "tbd-Latn-ZZ", + tbf: "tbf-Latn-ZZ", + tbg: "tbg-Latn-ZZ", + tbo: "tbo-Latn-ZZ", + tbw: "tbw-Latn-PH", + tbz: "tbz-Latn-ZZ", + tci: "tci-Latn-ZZ", + tcy: "tcy-Knda-IN", + tdd: "tdd-Tale-CN", + tdg: "tdg-Deva-NP", + tdh: "tdh-Deva-NP", + tdu: "tdu-Latn-MY", + te: "te-Telu-IN", + ted: "ted-Latn-ZZ", + tem: "tem-Latn-SL", + teo: "teo-Latn-UG", + tet: "tet-Latn-TL", + tfi: "tfi-Latn-ZZ", + tg: "tg-Cyrl-TJ", + "tg-Arab": "tg-Arab-PK", + "tg-PK": "tg-Arab-PK", + tgc: "tgc-Latn-ZZ", + tgo: "tgo-Latn-ZZ", + tgu: "tgu-Latn-ZZ", + th: "th-Thai-TH", + thl: "thl-Deva-NP", + thq: "thq-Deva-NP", + thr: "thr-Deva-NP", + ti: "ti-Ethi-ET", + tif: "tif-Latn-ZZ", + tig: "tig-Ethi-ER", + tik: "tik-Latn-ZZ", + tim: "tim-Latn-ZZ", + tio: "tio-Latn-ZZ", + tiv: "tiv-Latn-NG", + tk: "tk-Latn-TM", + tkl: "tkl-Latn-TK", + tkr: "tkr-Latn-AZ", + tkt: "tkt-Deva-NP", + tl: "tl-Latn-PH", + tlf: "tlf-Latn-ZZ", + tlx: "tlx-Latn-ZZ", + tly: "tly-Latn-AZ", + tmh: "tmh-Latn-NE", + tmy: "tmy-Latn-ZZ", + tn: "tn-Latn-ZA", + tnh: "tnh-Latn-ZZ", + to: "to-Latn-TO", + tof: "tof-Latn-ZZ", + tog: "tog-Latn-MW", + toq: "toq-Latn-ZZ", + tpi: "tpi-Latn-PG", + tpm: "tpm-Latn-ZZ", + tpz: "tpz-Latn-ZZ", + tqo: "tqo-Latn-ZZ", + tr: "tr-Latn-TR", + tru: "tru-Latn-TR", + trv: "trv-Latn-TW", + trw: "trw-Arab-PK", + ts: "ts-Latn-ZA", + tsd: "tsd-Grek-GR", + tsf: "tsf-Deva-NP", + tsg: "tsg-Latn-PH", + tsj: "tsj-Tibt-BT", + tsw: "tsw-Latn-ZZ", + tt: "tt-Cyrl-RU", + ttd: "ttd-Latn-ZZ", + tte: "tte-Latn-ZZ", + ttj: "ttj-Latn-UG", + ttr: "ttr-Latn-ZZ", + tts: "tts-Thai-TH", + ttt: "ttt-Latn-AZ", + tuh: "tuh-Latn-ZZ", + tul: "tul-Latn-ZZ", + tum: "tum-Latn-MW", + tuq: "tuq-Latn-ZZ", + tvd: "tvd-Latn-ZZ", + tvl: "tvl-Latn-TV", + tvu: "tvu-Latn-ZZ", + twh: "twh-Latn-ZZ", + twq: "twq-Latn-NE", + txg: "txg-Tang-CN", + txo: "txo-Toto-IN", + ty: "ty-Latn-PF", + tya: "tya-Latn-ZZ", + tyv: "tyv-Cyrl-RU", + tzm: "tzm-Latn-MA", + ubu: "ubu-Latn-ZZ", + udi: "udi-Aghb-RU", + udm: "udm-Cyrl-RU", + ug: "ug-Arab-CN", + "ug-Cyrl": "ug-Cyrl-KZ", + "ug-KZ": "ug-Cyrl-KZ", + "ug-MN": "ug-Cyrl-MN", + uga: "uga-Ugar-SY", + uk: "uk-Cyrl-UA", + uli: "uli-Latn-FM", + umb: "umb-Latn-AO", + und: "en-Latn-US", + "und-002": "en-Latn-NG", + "und-003": "en-Latn-US", + "und-005": "pt-Latn-BR", + "und-009": "en-Latn-AU", + "und-011": "en-Latn-NG", + "und-013": "es-Latn-MX", + "und-014": "sw-Latn-TZ", + "und-015": "ar-Arab-EG", + "und-017": "sw-Latn-CD", + "und-018": "en-Latn-ZA", + "und-019": "en-Latn-US", + "und-021": "en-Latn-US", + "und-029": "es-Latn-CU", + "und-030": "zh-Hans-CN", + "und-034": "hi-Deva-IN", + "und-035": "id-Latn-ID", + "und-039": "it-Latn-IT", + "und-053": "en-Latn-AU", + "und-054": "en-Latn-PG", + "und-057": "en-Latn-GU", + "und-061": "sm-Latn-WS", + "und-142": "zh-Hans-CN", + "und-143": "uz-Latn-UZ", + "und-145": "ar-Arab-SA", + "und-150": "ru-Cyrl-RU", + "und-151": "ru-Cyrl-RU", + "und-154": "en-Latn-GB", + "und-155": "de-Latn-DE", + "und-202": "en-Latn-NG", + "und-419": "es-Latn-419", + "und-AD": "ca-Latn-AD", + "und-Adlm": "ff-Adlm-GN", + "und-AE": "ar-Arab-AE", + "und-AF": "fa-Arab-AF", + "und-Aghb": "udi-Aghb-RU", + "und-Ahom": "aho-Ahom-IN", + "und-AL": "sq-Latn-AL", + "und-AM": "hy-Armn-AM", + "und-AO": "pt-Latn-AO", + "und-AQ": "und-Latn-AQ", + "und-AR": "es-Latn-AR", + "und-Arab": "ar-Arab-EG", + "und-Arab-CC": "ms-Arab-CC", + "und-Arab-CN": "ug-Arab-CN", + "und-Arab-GB": "ks-Arab-GB", + "und-Arab-ID": "ms-Arab-ID", + "und-Arab-IN": "ur-Arab-IN", + "und-Arab-KH": "cja-Arab-KH", + "und-Arab-MM": "rhg-Arab-MM", + "und-Arab-MN": "kk-Arab-MN", + "und-Arab-MU": "ur-Arab-MU", + "und-Arab-NG": "ha-Arab-NG", + "und-Arab-PK": "ur-Arab-PK", + "und-Arab-TG": "apd-Arab-TG", + "und-Arab-TH": "mfa-Arab-TH", + "und-Arab-TJ": "fa-Arab-TJ", + "und-Arab-TR": "az-Arab-TR", + "und-Arab-YT": "swb-Arab-YT", + "und-Armi": "arc-Armi-IR", + "und-Armn": "hy-Armn-AM", + "und-AS": "sm-Latn-AS", + "und-AT": "de-Latn-AT", + "und-Avst": "ae-Avst-IR", + "und-AW": "nl-Latn-AW", + "und-AX": "sv-Latn-AX", + "und-AZ": "az-Latn-AZ", + "und-BA": "bs-Latn-BA", + "und-Bali": "ban-Bali-ID", + "und-Bamu": "bax-Bamu-CM", + "und-Bass": "bsq-Bass-LR", + "und-Batk": "bbc-Batk-ID", + "und-BD": "bn-Beng-BD", + "und-BE": "nl-Latn-BE", + "und-Beng": "bn-Beng-BD", + "und-BF": "fr-Latn-BF", + "und-BG": "bg-Cyrl-BG", + "und-BH": "ar-Arab-BH", + "und-Bhks": "sa-Bhks-IN", + "und-BI": "rn-Latn-BI", + "und-BJ": "fr-Latn-BJ", + "und-BL": "fr-Latn-BL", + "und-BN": "ms-Latn-BN", + "und-BO": "es-Latn-BO", + "und-Bopo": "zh-Bopo-TW", + "und-BQ": "pap-Latn-BQ", + "und-BR": "pt-Latn-BR", + "und-Brah": "pka-Brah-IN", + "und-Brai": "fr-Brai-FR", + "und-BT": "dz-Tibt-BT", + "und-Bugi": "bug-Bugi-ID", + "und-Buhd": "bku-Buhd-PH", + "und-BV": "und-Latn-BV", + "und-BY": "be-Cyrl-BY", + "und-Cakm": "ccp-Cakm-BD", + "und-Cans": "cr-Cans-CA", + "und-Cari": "xcr-Cari-TR", + "und-CD": "sw-Latn-CD", + "und-CF": "fr-Latn-CF", + "und-CG": "fr-Latn-CG", + "und-CH": "de-Latn-CH", + "und-Cham": "cjm-Cham-VN", + "und-Cher": "chr-Cher-US", + "und-Chrs": "xco-Chrs-UZ", + "und-CI": "fr-Latn-CI", + "und-CL": "es-Latn-CL", + "und-CM": "fr-Latn-CM", + "und-CN": "zh-Hans-CN", + "und-CO": "es-Latn-CO", + "und-Copt": "cop-Copt-EG", + "und-CP": "und-Latn-CP", + "und-Cpmn": "und-Cpmn-CY", + "und-Cpmn-CY": "und-Cpmn-CY", + "und-Cprt": "grc-Cprt-CY", + "und-CR": "es-Latn-CR", + "und-CU": "es-Latn-CU", + "und-CV": "pt-Latn-CV", + "und-CW": "pap-Latn-CW", + "und-CY": "el-Grek-CY", + "und-Cyrl": "ru-Cyrl-RU", + "und-Cyrl-AL": "mk-Cyrl-AL", + "und-Cyrl-BA": "sr-Cyrl-BA", + "und-Cyrl-GE": "os-Cyrl-GE", + "und-Cyrl-GR": "mk-Cyrl-GR", + "und-Cyrl-MD": "uk-Cyrl-MD", + "und-Cyrl-RO": "bg-Cyrl-RO", + "und-Cyrl-SK": "uk-Cyrl-SK", + "und-Cyrl-TR": "kbd-Cyrl-TR", + "und-Cyrl-XK": "sr-Cyrl-XK", + "und-CZ": "cs-Latn-CZ", + "und-DE": "de-Latn-DE", + "und-Deva": "hi-Deva-IN", + "und-Deva-BT": "ne-Deva-BT", + "und-Deva-FJ": "hif-Deva-FJ", + "und-Deva-MU": "bho-Deva-MU", + "und-Deva-PK": "btv-Deva-PK", + "und-Diak": "dv-Diak-MV", + "und-DJ": "aa-Latn-DJ", + "und-DK": "da-Latn-DK", + "und-DO": "es-Latn-DO", + "und-Dogr": "doi-Dogr-IN", + "und-Dupl": "fr-Dupl-FR", + "und-DZ": "ar-Arab-DZ", + "und-EA": "es-Latn-EA", + "und-EC": "es-Latn-EC", + "und-EE": "et-Latn-EE", + "und-EG": "ar-Arab-EG", + "und-Egyp": "egy-Egyp-EG", + "und-EH": "ar-Arab-EH", + "und-Elba": "sq-Elba-AL", + "und-Elym": "arc-Elym-IR", + "und-ER": "ti-Ethi-ER", + "und-ES": "es-Latn-ES", + "und-ET": "am-Ethi-ET", + "und-Ethi": "am-Ethi-ET", + "und-EU": "en-Latn-IE", + "und-EZ": "de-Latn-EZ", + "und-FI": "fi-Latn-FI", + "und-FO": "fo-Latn-FO", + "und-FR": "fr-Latn-FR", + "und-GA": "fr-Latn-GA", + "und-GE": "ka-Geor-GE", + "und-Geor": "ka-Geor-GE", + "und-GF": "fr-Latn-GF", + "und-GH": "ak-Latn-GH", + "und-GL": "kl-Latn-GL", + "und-Glag": "cu-Glag-BG", + "und-GN": "fr-Latn-GN", + "und-Gong": "wsg-Gong-IN", + "und-Gonm": "esg-Gonm-IN", + "und-Goth": "got-Goth-UA", + "und-GP": "fr-Latn-GP", + "und-GQ": "es-Latn-GQ", + "und-GR": "el-Grek-GR", + "und-Gran": "sa-Gran-IN", + "und-Grek": "el-Grek-GR", + "und-Grek-TR": "bgx-Grek-TR", + "und-GS": "und-Latn-GS", + "und-GT": "es-Latn-GT", + "und-Gujr": "gu-Gujr-IN", + "und-Guru": "pa-Guru-IN", + "und-GW": "pt-Latn-GW", + "und-Hanb": "zh-Hanb-TW", + "und-Hang": "ko-Hang-KR", + "und-Hani": "zh-Hani-CN", + "und-Hano": "hnn-Hano-PH", + "und-Hans": "zh-Hans-CN", + "und-Hant": "zh-Hant-TW", + "und-Hebr": "he-Hebr-IL", + "und-Hebr-CA": "yi-Hebr-CA", + "und-Hebr-GB": "yi-Hebr-GB", + "und-Hebr-SE": "yi-Hebr-SE", + "und-Hebr-UA": "yi-Hebr-UA", + "und-Hebr-US": "yi-Hebr-US", + "und-Hira": "ja-Hira-JP", + "und-HK": "zh-Hant-HK", + "und-Hluw": "hlu-Hluw-TR", + "und-HM": "und-Latn-HM", + "und-Hmng": "hnj-Hmng-LA", + "und-Hmnp": "hnj-Hmnp-US", + "und-HN": "es-Latn-HN", + "und-HR": "hr-Latn-HR", + "und-HT": "ht-Latn-HT", + "und-HU": "hu-Latn-HU", + "und-Hung": "hu-Hung-HU", + "und-IC": "es-Latn-IC", + "und-ID": "id-Latn-ID", + "und-IL": "he-Hebr-IL", + "und-IN": "hi-Deva-IN", + "und-IQ": "ar-Arab-IQ", + "und-IR": "fa-Arab-IR", + "und-IS": "is-Latn-IS", + "und-IT": "it-Latn-IT", + "und-Ital": "ett-Ital-IT", + "und-Jamo": "ko-Jamo-KR", + "und-Java": "jv-Java-ID", + "und-JO": "ar-Arab-JO", + "und-JP": "ja-Jpan-JP", + "und-Jpan": "ja-Jpan-JP", + "und-Kali": "eky-Kali-MM", + "und-Kana": "ja-Kana-JP", + "und-KE": "sw-Latn-KE", + "und-KG": "ky-Cyrl-KG", + "und-KH": "km-Khmr-KH", + "und-Khar": "pra-Khar-PK", + "und-Khmr": "km-Khmr-KH", + "und-Khoj": "sd-Khoj-IN", + "und-Kits": "zkt-Kits-CN", + "und-KM": "ar-Arab-KM", + "und-Knda": "kn-Knda-IN", + "und-Kore": "ko-Kore-KR", + "und-KP": "ko-Kore-KP", + "und-KR": "ko-Kore-KR", + "und-Kthi": "bho-Kthi-IN", + "und-KW": "ar-Arab-KW", + "und-KZ": "ru-Cyrl-KZ", + "und-LA": "lo-Laoo-LA", + "und-Lana": "nod-Lana-TH", + "und-Laoo": "lo-Laoo-LA", + "und-Latn-AF": "tk-Latn-AF", + "und-Latn-AM": "ku-Latn-AM", + "und-Latn-CN": "za-Latn-CN", + "und-Latn-CY": "tr-Latn-CY", + "und-Latn-DZ": "fr-Latn-DZ", + "und-Latn-ET": "en-Latn-ET", + "und-Latn-GE": "ku-Latn-GE", + "und-Latn-IR": "tk-Latn-IR", + "und-Latn-KM": "fr-Latn-KM", + "und-Latn-MA": "fr-Latn-MA", + "und-Latn-MK": "sq-Latn-MK", + "und-Latn-MM": "kac-Latn-MM", + "und-Latn-MO": "pt-Latn-MO", + "und-Latn-MR": "fr-Latn-MR", + "und-Latn-RU": "krl-Latn-RU", + "und-Latn-SY": "fr-Latn-SY", + "und-Latn-TN": "fr-Latn-TN", + "und-Latn-TW": "trv-Latn-TW", + "und-Latn-UA": "pl-Latn-UA", + "und-LB": "ar-Arab-LB", + "und-Lepc": "lep-Lepc-IN", + "und-LI": "de-Latn-LI", + "und-Limb": "lif-Limb-IN", + "und-Lina": "lab-Lina-GR", + "und-Linb": "grc-Linb-GR", + "und-Lisu": "lis-Lisu-CN", + "und-LK": "si-Sinh-LK", + "und-LS": "st-Latn-LS", + "und-LT": "lt-Latn-LT", + "und-LU": "fr-Latn-LU", + "und-LV": "lv-Latn-LV", + "und-LY": "ar-Arab-LY", + "und-Lyci": "xlc-Lyci-TR", + "und-Lydi": "xld-Lydi-TR", + "und-MA": "ar-Arab-MA", + "und-Mahj": "hi-Mahj-IN", + "und-Maka": "mak-Maka-ID", + "und-Mand": "myz-Mand-IR", + "und-Mani": "xmn-Mani-CN", + "und-Marc": "bo-Marc-CN", + "und-MC": "fr-Latn-MC", + "und-MD": "ro-Latn-MD", + "und-ME": "sr-Latn-ME", + "und-Medf": "dmf-Medf-NG", + "und-Mend": "men-Mend-SL", + "und-Merc": "xmr-Merc-SD", + "und-Mero": "xmr-Mero-SD", + "und-MF": "fr-Latn-MF", + "und-MG": "mg-Latn-MG", + "und-MK": "mk-Cyrl-MK", + "und-ML": "bm-Latn-ML", + "und-Mlym": "ml-Mlym-IN", + "und-MM": "my-Mymr-MM", + "und-MN": "mn-Cyrl-MN", + "und-MO": "zh-Hant-MO", + "und-Modi": "mr-Modi-IN", + "und-Mong": "mn-Mong-CN", + "und-MQ": "fr-Latn-MQ", + "und-MR": "ar-Arab-MR", + "und-Mroo": "mro-Mroo-BD", + "und-MT": "mt-Latn-MT", + "und-Mtei": "mni-Mtei-IN", + "und-MU": "mfe-Latn-MU", + "und-Mult": "skr-Mult-PK", + "und-MV": "dv-Thaa-MV", + "und-MX": "es-Latn-MX", + "und-MY": "ms-Latn-MY", + "und-Mymr": "my-Mymr-MM", + "und-Mymr-IN": "kht-Mymr-IN", + "und-Mymr-TH": "mnw-Mymr-TH", + "und-MZ": "pt-Latn-MZ", + "und-NA": "af-Latn-NA", + "und-Nand": "sa-Nand-IN", + "und-Narb": "xna-Narb-SA", + "und-Nbat": "arc-Nbat-JO", + "und-NC": "fr-Latn-NC", + "und-NE": "ha-Latn-NE", + "und-Newa": "new-Newa-NP", + "und-NI": "es-Latn-NI", + "und-Nkoo": "man-Nkoo-GN", + "und-NL": "nl-Latn-NL", + "und-NO": "nb-Latn-NO", + "und-NP": "ne-Deva-NP", + "und-Nshu": "zhx-Nshu-CN", + "und-Ogam": "sga-Ogam-IE", + "und-Olck": "sat-Olck-IN", + "und-OM": "ar-Arab-OM", + "und-Orkh": "otk-Orkh-MN", + "und-Orya": "or-Orya-IN", + "und-Osge": "osa-Osge-US", + "und-Osma": "so-Osma-SO", + "und-Ougr": "oui-Ougr-143", + "und-PA": "es-Latn-PA", + "und-Palm": "arc-Palm-SY", + "und-Pauc": "ctd-Pauc-MM", + "und-PE": "es-Latn-PE", + "und-Perm": "kv-Perm-RU", + "und-PF": "fr-Latn-PF", + "und-PG": "tpi-Latn-PG", + "und-PH": "fil-Latn-PH", + "und-Phag": "lzh-Phag-CN", + "und-Phli": "pal-Phli-IR", + "und-Phlp": "pal-Phlp-CN", + "und-Phnx": "phn-Phnx-LB", + "und-PK": "ur-Arab-PK", + "und-PL": "pl-Latn-PL", + "und-Plrd": "hmd-Plrd-CN", + "und-PM": "fr-Latn-PM", + "und-PR": "es-Latn-PR", + "und-Prti": "xpr-Prti-IR", + "und-PS": "ar-Arab-PS", + "und-PT": "pt-Latn-PT", + "und-PW": "pau-Latn-PW", + "und-PY": "gn-Latn-PY", + "und-QA": "ar-Arab-QA", + "und-QO": "en-Latn-DG", + "und-RE": "fr-Latn-RE", + "und-Rjng": "rej-Rjng-ID", + "und-RO": "ro-Latn-RO", + "und-Rohg": "rhg-Rohg-MM", + "und-RS": "sr-Cyrl-RS", + "und-RU": "ru-Cyrl-RU", + "und-Runr": "non-Runr-SE", + "und-RW": "rw-Latn-RW", + "und-SA": "ar-Arab-SA", + "und-Samr": "smp-Samr-IL", + "und-Sarb": "xsa-Sarb-YE", + "und-Saur": "saz-Saur-IN", + "und-SC": "fr-Latn-SC", + "und-SD": "ar-Arab-SD", + "und-SE": "sv-Latn-SE", + "und-Sgnw": "ase-Sgnw-US", + "und-Shaw": "en-Shaw-GB", + "und-Shrd": "sa-Shrd-IN", + "und-SI": "sl-Latn-SI", + "und-Sidd": "sa-Sidd-IN", + "und-Sind": "sd-Sind-IN", + "und-Sinh": "si-Sinh-LK", + "und-SJ": "nb-Latn-SJ", + "und-SK": "sk-Latn-SK", + "und-SM": "it-Latn-SM", + "und-SN": "fr-Latn-SN", + "und-SO": "so-Latn-SO", + "und-Sogd": "sog-Sogd-UZ", + "und-Sogo": "sog-Sogo-UZ", + "und-Sora": "srb-Sora-IN", + "und-Soyo": "cmg-Soyo-MN", + "und-SR": "nl-Latn-SR", + "und-ST": "pt-Latn-ST", + "und-Sund": "su-Sund-ID", + "und-SV": "es-Latn-SV", + "und-SY": "ar-Arab-SY", + "und-Sylo": "syl-Sylo-BD", + "und-Syrc": "syr-Syrc-IQ", + "und-Tagb": "tbw-Tagb-PH", + "und-Takr": "doi-Takr-IN", + "und-Tale": "tdd-Tale-CN", + "und-Talu": "khb-Talu-CN", + "und-Taml": "ta-Taml-IN", + "und-Tang": "txg-Tang-CN", + "und-Tavt": "blt-Tavt-VN", + "und-TD": "fr-Latn-TD", + "und-Telu": "te-Telu-IN", + "und-TF": "fr-Latn-TF", + "und-Tfng": "zgh-Tfng-MA", + "und-TG": "fr-Latn-TG", + "und-Tglg": "fil-Tglg-PH", + "und-TH": "th-Thai-TH", + "und-Thaa": "dv-Thaa-MV", + "und-Thai": "th-Thai-TH", + "und-Thai-CN": "lcp-Thai-CN", + "und-Thai-KH": "kdt-Thai-KH", + "und-Thai-LA": "kdt-Thai-LA", + "und-Tibt": "bo-Tibt-CN", + "und-Tirh": "mai-Tirh-IN", + "und-TJ": "tg-Cyrl-TJ", + "und-TK": "tkl-Latn-TK", + "und-TL": "pt-Latn-TL", + "und-TM": "tk-Latn-TM", + "und-TN": "ar-Arab-TN", + "und-Tnsa": "nst-Tnsa-IN", + "und-TO": "to-Latn-TO", + "und-Toto": "txo-Toto-IN", + "und-TR": "tr-Latn-TR", + "und-TV": "tvl-Latn-TV", + "und-TW": "zh-Hant-TW", + "und-TZ": "sw-Latn-TZ", + "und-UA": "uk-Cyrl-UA", + "und-UG": "sw-Latn-UG", + "und-Ugar": "uga-Ugar-SY", + "und-UY": "es-Latn-UY", + "und-UZ": "uz-Latn-UZ", + "und-VA": "it-Latn-VA", + "und-Vaii": "vai-Vaii-LR", + "und-VE": "es-Latn-VE", + "und-Vith": "sq-Vith-AL", + "und-VN": "vi-Latn-VN", + "und-VU": "bi-Latn-VU", + "und-Wara": "hoc-Wara-IN", + "und-Wcho": "nnp-Wcho-IN", + "und-WF": "fr-Latn-WF", + "und-WS": "sm-Latn-WS", + "und-XK": "sq-Latn-XK", + "und-Xpeo": "peo-Xpeo-IR", + "und-Xsux": "akk-Xsux-IQ", + "und-YE": "ar-Arab-YE", + "und-Yezi": "ku-Yezi-GE", + "und-Yiii": "ii-Yiii-CN", + "und-YT": "fr-Latn-YT", + "und-Zanb": "cmg-Zanb-MN", + "und-ZW": "sn-Latn-ZW", + unr: "unr-Beng-IN", + "unr-Deva": "unr-Deva-NP", + "unr-NP": "unr-Deva-NP", + unx: "unx-Beng-IN", + uok: "uok-Latn-ZZ", + ur: "ur-Arab-PK", + uri: "uri-Latn-ZZ", + urt: "urt-Latn-ZZ", + urw: "urw-Latn-ZZ", + usa: "usa-Latn-ZZ", + uth: "uth-Latn-ZZ", + utr: "utr-Latn-ZZ", + uvh: "uvh-Latn-ZZ", + uvl: "uvl-Latn-ZZ", + uz: "uz-Latn-UZ", + "uz-AF": "uz-Arab-AF", + "uz-Arab": "uz-Arab-AF", + "uz-CN": "uz-Cyrl-CN", + vag: "vag-Latn-ZZ", + vai: "vai-Vaii-LR", + van: "van-Latn-ZZ", + ve: "ve-Latn-ZA", + vec: "vec-Latn-IT", + vep: "vep-Latn-RU", + vi: "vi-Latn-VN", + vic: "vic-Latn-SX", + viv: "viv-Latn-ZZ", + vls: "vls-Latn-BE", + vmf: "vmf-Latn-DE", + vmw: "vmw-Latn-MZ", + vo: "vo-Latn-001", + vot: "vot-Latn-RU", + vro: "vro-Latn-EE", + vun: "vun-Latn-TZ", + vut: "vut-Latn-ZZ", + wa: "wa-Latn-BE", + wae: "wae-Latn-CH", + waj: "waj-Latn-ZZ", + wal: "wal-Ethi-ET", + wan: "wan-Latn-ZZ", + war: "war-Latn-PH", + wbp: "wbp-Latn-AU", + wbq: "wbq-Telu-IN", + wbr: "wbr-Deva-IN", + wci: "wci-Latn-ZZ", + wer: "wer-Latn-ZZ", + wgi: "wgi-Latn-ZZ", + whg: "whg-Latn-ZZ", + wib: "wib-Latn-ZZ", + wiu: "wiu-Latn-ZZ", + wiv: "wiv-Latn-ZZ", + wja: "wja-Latn-ZZ", + wji: "wji-Latn-ZZ", + wls: "wls-Latn-WF", + wmo: "wmo-Latn-ZZ", + wnc: "wnc-Latn-ZZ", + wni: "wni-Arab-KM", + wnu: "wnu-Latn-ZZ", + wo: "wo-Latn-SN", + wob: "wob-Latn-ZZ", + wos: "wos-Latn-ZZ", + wrs: "wrs-Latn-ZZ", + wsg: "wsg-Gong-IN", + wsk: "wsk-Latn-ZZ", + wtm: "wtm-Deva-IN", + wuu: "wuu-Hans-CN", + wuv: "wuv-Latn-ZZ", + wwa: "wwa-Latn-ZZ", + xav: "xav-Latn-BR", + xbi: "xbi-Latn-ZZ", + xco: "xco-Chrs-UZ", + xcr: "xcr-Cari-TR", + xes: "xes-Latn-ZZ", + xh: "xh-Latn-ZA", + xla: "xla-Latn-ZZ", + xlc: "xlc-Lyci-TR", + xld: "xld-Lydi-TR", + xmf: "xmf-Geor-GE", + xmn: "xmn-Mani-CN", + xmr: "xmr-Merc-SD", + xna: "xna-Narb-SA", + xnr: "xnr-Deva-IN", + xog: "xog-Latn-UG", + xon: "xon-Latn-ZZ", + xpr: "xpr-Prti-IR", + xrb: "xrb-Latn-ZZ", + xsa: "xsa-Sarb-YE", + xsi: "xsi-Latn-ZZ", + xsm: "xsm-Latn-ZZ", + xsr: "xsr-Deva-NP", + xwe: "xwe-Latn-ZZ", + yam: "yam-Latn-ZZ", + yao: "yao-Latn-MZ", + yap: "yap-Latn-FM", + yas: "yas-Latn-ZZ", + yat: "yat-Latn-ZZ", + yav: "yav-Latn-CM", + yay: "yay-Latn-ZZ", + yaz: "yaz-Latn-ZZ", + yba: "yba-Latn-ZZ", + ybb: "ybb-Latn-CM", + yby: "yby-Latn-ZZ", + yer: "yer-Latn-ZZ", + ygr: "ygr-Latn-ZZ", + ygw: "ygw-Latn-ZZ", + yi: "yi-Hebr-001", + yko: "yko-Latn-ZZ", + yle: "yle-Latn-ZZ", + ylg: "ylg-Latn-ZZ", + yll: "yll-Latn-ZZ", + yml: "yml-Latn-ZZ", + yo: "yo-Latn-NG", + yon: "yon-Latn-ZZ", + yrb: "yrb-Latn-ZZ", + yre: "yre-Latn-ZZ", + yrl: "yrl-Latn-BR", + yss: "yss-Latn-ZZ", + yua: "yua-Latn-MX", + yue: "yue-Hant-HK", + "yue-CN": "yue-Hans-CN", + "yue-Hans": "yue-Hans-CN", + yuj: "yuj-Latn-ZZ", + yut: "yut-Latn-ZZ", + yuw: "yuw-Latn-ZZ", + za: "za-Latn-CN", + zag: "zag-Latn-SD", + zdj: "zdj-Arab-KM", + zea: "zea-Latn-NL", + zgh: "zgh-Tfng-MA", + zh: "zh-Hans-CN", + "zh-AU": "zh-Hant-AU", + "zh-BN": "zh-Hant-BN", + "zh-Bopo": "zh-Bopo-TW", + "zh-GB": "zh-Hant-GB", + "zh-GF": "zh-Hant-GF", + "zh-Hanb": "zh-Hanb-TW", + "zh-Hant": "zh-Hant-TW", + "zh-HK": "zh-Hant-HK", + "zh-ID": "zh-Hant-ID", + "zh-MO": "zh-Hant-MO", + "zh-PA": "zh-Hant-PA", + "zh-PF": "zh-Hant-PF", + "zh-PH": "zh-Hant-PH", + "zh-SR": "zh-Hant-SR", + "zh-TH": "zh-Hant-TH", + "zh-TW": "zh-Hant-TW", + "zh-US": "zh-Hant-US", + "zh-VN": "zh-Hant-VN", + zhx: "zhx-Nshu-CN", + zia: "zia-Latn-ZZ", + zkt: "zkt-Kits-CN", + zlm: "zlm-Latn-TG", + zmi: "zmi-Latn-MY", + zne: "zne-Latn-ZZ", + zu: "zu-Latn-ZA", + zza: "zza-Latn-TR", + }); + }, + 62056: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.parseUnicodeLocaleId = t.parseUnicodeLanguageId = t.isUnicodeVariantSubtag = t.isUnicodeScriptSubtag = t.isUnicodeRegionSubtag = t.isStructurallyValidLanguageTag = t.isUnicodeLanguageSubtag = t.SEPARATOR = void 0); + var r = n(13795), + o = /^[a-z0-9]{1,8}$/i, + a = /^[a-z0-9]{2,8}$/i, + i = /^[a-z0-9]{3,8}$/i, + s = /^[a-z0-9][a-z]$/i, + c = /^[a-z0-9]{3,8}$/i, + l = /^[a-z]{4}$/i, + u = /^[0-9a-svwyz]$/i, + d = /^([a-z]{2}|[0-9]{3})$/i, + p = /^([a-z0-9]{5,8}|[0-9][a-z0-9]{3})$/i, + f = /^([a-z]{2,3}|[a-z]{5,8})$/i, + m = /^[a-z][0-9]$/i; + function h(e) { + return f.test(e); + } + function v(e) { + return d.test(e); + } + function y(e) { + return l.test(e); + } + function g(e) { + return p.test(e); + } + function b(e) { + "string" == typeof e && (e = e.split(t.SEPARATOR)); + var n, + r, + o = e.shift(); + if (!o) throw new RangeError("Missing unicode_language_subtag"); + if ("root" === o) return { lang: "root", variants: [] }; + if (!h(o)) throw new RangeError("Malformed unicode_language_subtag"); + e.length && y(e[0]) && (n = e.shift()), e.length && v(e[0]) && (r = e.shift()); + for (var a = {}; e.length && g(e[0]); ) { + var i = e.shift(); + if (i in a) throw new RangeError('Duplicate variant "'.concat(i, '"')); + a[i] = 1; + } + return { lang: o, script: n, region: r, variants: Object.keys(a) }; + } + function E(e) { + for (var t, n = []; e.length && (t = D(e)); ) n.push(t); + if (n.length) return { type: "u", keywords: n, attributes: [] }; + for (var r = []; e.length && i.test(e[0]); ) r.push(e.shift()); + for (; e.length && (t = D(e)); ) n.push(t); + if (n.length || r.length) return { type: "u", attributes: r, keywords: n }; + throw new RangeError("Malformed unicode_extension"); + } + function D(e) { + var n; + if (s.test(e[0])) { + n = e.shift(); + for (var r = []; e.length && c.test(e[0]); ) r.push(e.shift()); + var o = ""; + return r.length && (o = r.join(t.SEPARATOR)), [n, o]; + } + } + function C(e) { + var n; + try { + n = b(e); + } catch (e) {} + for (var r = []; e.length && m.test(e[0]); ) { + for (var o = e.shift(), a = []; e.length && i.test(e[0]); ) a.push(e.shift()); + if (!a.length) throw new RangeError('Missing tvalue for tkey "'.concat(o, '"')); + r.push([o, a.join(t.SEPARATOR)]); + } + if (r.length) return { type: "t", fields: r, lang: n }; + throw new RangeError("Malformed transformed_extension"); + } + function w(e) { + for (var n = []; e.length && o.test(e[0]); ) n.push(e.shift()); + if (n.length) return { type: "x", value: n.join(t.SEPARATOR) }; + throw new RangeError("Malformed private_use_extension"); + } + function S(e) { + for (var n = []; e.length && a.test(e[0]); ) n.push(e.shift()); + return n.length ? n.join(t.SEPARATOR) : ""; + } + (t.SEPARATOR = "-"), + (t.isUnicodeLanguageSubtag = h), + (t.isStructurallyValidLanguageTag = function (e) { + try { + b(e.split(t.SEPARATOR)); + } catch (e) { + return !1; + } + return !0; + }), + (t.isUnicodeRegionSubtag = v), + (t.isUnicodeScriptSubtag = y), + (t.isUnicodeVariantSubtag = g), + (t.parseUnicodeLanguageId = b), + (t.parseUnicodeLocaleId = function (e) { + var n = e.split(t.SEPARATOR), + o = b(n); + return (0, r.__assign)( + { lang: o }, + (function (e) { + if (!e.length) return { extensions: [] }; + var t, + n, + r, + o = [], + a = {}; + do { + var i = e.shift(); + switch (i) { + case "u": + case "U": + if (t) throw new RangeError("There can only be 1 -u- extension"); + (t = E(e)), o.push(t); + break; + case "t": + case "T": + if (n) throw new RangeError("There can only be 1 -t- extension"); + (n = C(e)), o.push(n); + break; + case "x": + case "X": + if (r) throw new RangeError("There can only be 1 -x- extension"); + (r = w(e)), o.push(r); + break; + default: + if (!u.test(i)) throw new RangeError("Malformed extension type"); + if (i in a) throw new RangeError("There can only be 1 -".concat(i, "- extension")); + var s = { type: i, value: S(e) }; + (a[s.type] = s), o.push(s); + } + } while (e.length); + return { extensions: o }; + })(n) + ); + }); + }, + 86648: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + }, + 68990: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.GetOperands = void 0); + var r = n(52562); + t.GetOperands = function (e) { + r.invariant("string" == typeof e, "GetOperands should have been called with a string"); + var t = r.ToNumber(e); + r.invariant(isFinite(t), "n should be finite"); + var n, + o, + a, + i = e.indexOf("."), + s = ""; + -1 === i ? ((n = t), (o = 0), (a = 0)) : ((n = e.slice(0, i)), (s = e.slice(i, e.length)), (o = r.ToNumber(s)), (a = s.length)); + var c, + l, + u = Math.abs(r.ToNumber(n)); + if (0 !== o) { + var d = s.replace(/0+$/, ""); + (c = d.length), (l = r.ToNumber(d)); + } else (c = 0), (l = 0); + return { Number: t, IntegerDigits: u, NumberOfFractionDigits: a, NumberOfFractionDigitsWithoutTrailing: c, FractionDigits: o, FractionDigitsWithoutTrailing: l }; + }; + }, + 82893: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.InitializePluralRules = void 0); + var r = n(52562); + t.InitializePluralRules = function (e, t, n, o) { + var a = o.availableLocales, + i = o.relevantExtensionKeys, + s = o.localeData, + c = o.getDefaultLocale, + l = o.getInternalSlots, + u = r.CanonicalizeLocaleList(t), + d = Object.create(null), + p = r.CoerceOptionsToObject(n), + f = l(e); + f.initializedPluralRules = !0; + var m = r.GetOption(p, "localeMatcher", "string", ["best fit", "lookup"], "best fit"); + (d.localeMatcher = m), (f.type = r.GetOption(p, "type", "string", ["cardinal", "ordinal"], "cardinal")), r.SetNumberFormatDigitOptions(f, p, 0, 3, "standard"); + var h = r.ResolveLocale(a, u, d, i, s, c); + return (f.locale = h.locale), e; + }; + }, + 43208: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.ResolvePlural = void 0); + var r = n(52562), + o = n(68990); + t.ResolvePlural = function (e, t, n) { + var a = n.getInternalSlots, + i = n.PluralRuleSelect, + s = a(e); + if ((r.invariant("Object" === r.Type(s), "pl has to be an object"), r.invariant("initializedPluralRules" in s, "pluralrules must be initialized"), r.invariant("Number" === r.Type(t), "n must be a number"), !isFinite(t))) + return "other"; + var c = s.locale, + l = s.type, + u = r.FormatNumericToString(s, t).formattedString; + return i(c, l, t, o.GetOperands(u)); + }; + }, + 53570: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var n = new WeakMap(); + t.default = function (e) { + var t = n.get(e); + return t || ((t = Object.create(null)), n.set(e, t)), t; + }; + }, + 86988: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.PluralRules = void 0); + var r = n(13795), + o = n(52562), + a = n(82893), + i = n(43208), + s = r.__importDefault(n(53570)); + function c(e, t) { + if (!(e instanceof u)) throw new TypeError("Method Intl.PluralRules.prototype." + t + " called on incompatible receiver " + String(e)); + } + function l(e, t, n, r) { + var o = r.IntegerDigits, + a = r.NumberOfFractionDigits, + i = r.FractionDigits; + return u.localeData[e].fn(a ? o + "." + i : o, "ordinal" === t); + } + var u = (function () { + function e(t, n) { + if (!(this && this instanceof e ? this.constructor : void 0)) throw new TypeError("Intl.PluralRules must be called with 'new'"); + return a.InitializePluralRules(this, t, n, { availableLocales: e.availableLocales, relevantExtensionKeys: e.relevantExtensionKeys, localeData: e.localeData, getDefaultLocale: e.getDefaultLocale, getInternalSlots: s.default }); + } + return ( + (e.prototype.resolvedOptions = function () { + c(this, "resolvedOptions"); + var t = Object.create(null), + n = s.default(this); + return ( + (t.locale = n.locale), + (t.type = n.type), + ["minimumIntegerDigits", "minimumFractionDigits", "maximumFractionDigits", "minimumSignificantDigits", "maximumSignificantDigits"].forEach(function (e) { + var r = n[e]; + void 0 !== r && (t[e] = r); + }), + (t.pluralCategories = r.__spreadArray([], e.localeData[t.locale].categories[t.type])), + t + ); + }), + (e.prototype.select = function (e) { + c(this, "select"); + var t = o.ToNumber(e); + return i.ResolvePlural(this, t, { getInternalSlots: s.default, PluralRuleSelect: l }); + }), + (e.prototype.toString = function () { + return "[object Intl.PluralRules]"; + }), + (e.supportedLocalesOf = function (t, n) { + return o.SupportedLocales(e.availableLocales, o.CanonicalizeLocaleList(t), n); + }), + (e.__addLocaleData = function () { + for (var t = [], n = 0; n < arguments.length; n++) t[n] = arguments[n]; + for (var r = 0, o = t; r < o.length; r++) { + var a = o[r], + i = a.data, + s = a.locale; + (e.localeData[s] = i), e.availableLocales.add(s), e.__defaultLocale || (e.__defaultLocale = s); + } + }), + (e.getDefaultLocale = function () { + return e.__defaultLocale; + }), + (e.localeData = {}), + (e.availableLocales = new Set()), + (e.__defaultLocale = ""), + (e.relevantExtensionKeys = []), + (e.polyfilled = !0), + e + ); + })(); + t.PluralRules = u; + try { + "undefined" != typeof Symbol && Object.defineProperty(u.prototype, Symbol.toStringTag, { value: "Intl.PluralRules", writable: !1, enumerable: !1, configurable: !0 }); + try { + Object.defineProperty(u, "length", { value: 0, writable: !1, enumerable: !1, configurable: !0 }); + } catch (e) {} + Object.defineProperty(u.prototype.constructor, "length", { value: 0, writable: !1, enumerable: !1, configurable: !0 }), + Object.defineProperty(u.supportedLocalesOf, "length", { value: 1, writable: !1, enumerable: !1, configurable: !0 }); + } catch (e) {} + }, + 4728: () => { + Intl.PluralRules && + "function" == typeof Intl.PluralRules.__addLocaleData && + Intl.PluralRules.__addLocaleData({ + data: { + categories: { cardinal: ["one", "other"], ordinal: ["one", "two", "few", "other"] }, + fn: function (e, t) { + var n = String(e).split("."), + r = !n[1], + o = Number(n[0]) == e, + a = o && n[0].slice(-1), + i = o && n[0].slice(-2); + return t ? (1 == a && 11 != i ? "one" : 2 == a && 12 != i ? "two" : 3 == a && 13 != i ? "few" : "other") : 1 == e && r ? "one" : "other"; + }, + }, + locale: "en", + }); + }, + 2406: (e, t, n) => { + "use strict"; + function r(e) { + if ("symbol" == typeof e) throw TypeError("Cannot convert a Symbol value to a string"); + return String(e); + } + function o(e) { + if (void 0 === e) return NaN; + if (null === e) return 0; + if ("boolean" == typeof e) return e ? 1 : 0; + if ("number" == typeof e) return e; + if ("symbol" == typeof e || "bigint" == typeof e) throw new TypeError("Cannot convert symbol/bigint to number"); + return Number(e); + } + function a(e) { + return isFinite(e) + ? Math.abs(e) > 8640000000000001 + ? NaN + : (function (e) { + var t = o(e); + if (isNaN(t) || s(t, -0)) return 0; + if (isFinite(t)) return t; + var n = Math.floor(Math.abs(t)); + return t < 0 && (n = -n), s(n, -0) ? 0 : n; + })(e) + : NaN; + } + function i(e) { + if (null == e) throw new TypeError("undefined/null cannot be converted to object"); + return Object(e); + } + function s(e, t) { + return Object.is ? Object.is(e, t) : e === t ? 0 !== e || 1 / e == 1 / t : e != e && t != t; + } + function c(e) { + return new Array(e); + } + function l(e, t) { + return Object.prototype.hasOwnProperty.call(e, t); + } + function u(e) { + return null === e + ? "Null" + : void 0 === e + ? "Undefined" + : "function" == typeof e || "object" == typeof e + ? "Object" + : "number" == typeof e + ? "Number" + : "boolean" == typeof e + ? "Boolean" + : "string" == typeof e + ? "String" + : "symbol" == typeof e + ? "Symbol" + : "bigint" == typeof e + ? "BigInt" + : void 0; + } + n.d(t, { + $i: () => E, + CU: () => o, + Dy: () => u, + J1: () => D, + Jc: () => f, + Ml: () => r, + My: () => g, + QP: () => s, + R2: () => x, + TA: () => i, + U6: () => c, + VR: () => m, + Vg: () => N, + XB: () => C, + XH: () => a, + Zq: () => I, + gL: () => h, + n7: () => y, + oD: () => b, + py: () => O, + rf: () => v, + uY: () => l, + xk: () => F, + }); + var d = 864e5; + function p(e, t) { + return e - Math.floor(e / t) * t; + } + function f(e) { + return Math.floor(e / d); + } + function m(e) { + return p(f(e) + 4, 7); + } + function h(e) { + return Date.UTC(e, 0) / d; + } + function v(e) { + return Date.UTC(e, 0); + } + function y(e) { + return new Date(e).getUTCFullYear(); + } + function g(e) { + return e % 4 != 0 ? 365 : e % 100 != 0 ? 366 : e % 400 != 0 ? 365 : 366; + } + function b(e) { + return f(e) - h(y(e)); + } + function E(e) { + return 365 === g(y(e)) ? 0 : 1; + } + function D(e) { + var t = b(e), + n = E(e); + if (t >= 0 && t < 31) return 0; + if (t < 59 + n) return 1; + if (t < 90 + n) return 2; + if (t < 120 + n) return 3; + if (t < 151 + n) return 4; + if (t < 181 + n) return 5; + if (t < 212 + n) return 6; + if (t < 243 + n) return 7; + if (t < 273 + n) return 8; + if (t < 304 + n) return 9; + if (t < 334 + n) return 10; + if (t < 365 + n) return 11; + throw new Error("Invalid time"); + } + function C(e) { + var t = b(e), + n = D(e), + r = E(e); + if (0 === n) return t + 1; + if (1 === n) return t - 30; + if (2 === n) return t - 58 - r; + if (3 === n) return t - 89 - r; + if (4 === n) return t - 119 - r; + if (5 === n) return t - 150 - r; + if (6 === n) return t - 180 - r; + if (7 === n) return t - 211 - r; + if (8 === n) return t - 242 - r; + if (9 === n) return t - 272 - r; + if (10 === n) return t - 303 - r; + if (11 === n) return t - 333 - r; + throw new Error("Invalid time"); + } + var w = 24, + S = 60, + A = 60, + k = 1e3, + _ = k * A, + T = _ * S; + function I(e) { + return p(Math.floor(e / T), w); + } + function O(e) { + return p(Math.floor(e / _), S); + } + function F(e) { + return p(Math.floor(e / k), A); + } + function x(e, t, n) { + if ("function" != typeof e) return !1; + if (null == n ? void 0 : n.boundTargetFunction) return t instanceof (null == n ? void 0 : n.boundTargetFunction); + if ("object" != typeof t) return !1; + var r = e.prototype; + if ("object" != typeof r) throw new TypeError("OrdinaryHasInstance called on an object with an invalid prototype property."); + return Object.prototype.isPrototypeOf.call(r, t); + } + function N(e) { + return p(e, k); + } + }, + 63830: (e, t, n) => { + "use strict"; + function r(e, t) { + for (var n = t; ; ) { + if (e.has(n)) return n; + var r = n.lastIndexOf("-"); + if (!~r) return; + r >= 2 && "-" === n[r - 2] && (r -= 2), (n = n.slice(0, r)); + } + } + n.d(t, { t: () => r }); + }, + 58491: (e, t, n) => { + "use strict"; + function r(e) { + return Intl.getCanonicalLocales(e); + } + n.d(t, { L: () => r }); + }, + 83437: (e, t, n) => { + "use strict"; + function r(e, t) { + var n = t.tzData, + r = t.uppercaseLinks, + o = e.toUpperCase(), + a = Object.keys(n).reduce(function (e, t) { + return (e[t.toUpperCase()] = t), e; + }, {}), + i = r[o] || a[o]; + return "Etc/UTC" === i || "Etc/GMT" === i ? "UTC" : i; + } + n.d(t, { a: () => r }); + }, + 41316: (e, t, n) => { + "use strict"; + n.d(t, { U: () => o }); + var r = n(2406); + function o(e) { + return void 0 === e ? Object.create(null) : (0, r.TA)(e); + } + }, + 95859: (e, t, n) => { + "use strict"; + function r(e, t, n, r) { + if (void 0 !== e) { + if (((e = Number(e)), isNaN(e) || e < t || e > n)) throw new RangeError(e + " is outside of range [" + t + ", " + n + "]"); + return Math.floor(e); + } + return r; + } + n.d(t, { Q: () => r }); + }, + 39182: (e, t, n) => { + "use strict"; + n.d(t, { _: () => o }); + var r = n(95859); + function o(e, t, n, o, a) { + var i = e[t]; + return (0, r.Q)(i, n, o, a); + } + }, + 44074: (e, t, n) => { + "use strict"; + n.d(t, { u: () => o }); + var r = n(2406); + function o(e, t, n, o, a) { + if ("object" != typeof e) throw new TypeError("Options must be an object"); + var i = e[t]; + if (void 0 !== i) { + if ("boolean" !== n && "string" !== n) throw new TypeError("invalid type"); + if ( + ("boolean" === n && (i = Boolean(i)), + "string" === n && (i = (0, r.Ml)(i)), + void 0 !== o && + !o.filter(function (e) { + return e == i; + }).length) + ) + throw new RangeError(i + " is not within " + o.join(", ")); + return i; + } + return a; + } + }, + 28520: (e, t, n) => { + "use strict"; + function r(e) { + if (void 0 === e) return Object.create(null); + if ("object" == typeof e) return e; + throw new TypeError("Options must be an object"); + } + n.d(t, { F: () => r }); + }, + 4280: (e, t, n) => { + "use strict"; + n.d(t, { Hr: () => o, Js: () => r, UQ: () => i, oO: () => a }); + var r = [ + "angle-degree", + "area-acre", + "area-hectare", + "concentr-percent", + "digital-bit", + "digital-byte", + "digital-gigabit", + "digital-gigabyte", + "digital-kilobit", + "digital-kilobyte", + "digital-megabit", + "digital-megabyte", + "digital-petabyte", + "digital-terabit", + "digital-terabyte", + "duration-day", + "duration-hour", + "duration-millisecond", + "duration-minute", + "duration-month", + "duration-second", + "duration-week", + "duration-year", + "length-centimeter", + "length-foot", + "length-inch", + "length-kilometer", + "length-meter", + "length-mile-scandinavian", + "length-mile", + "length-millimeter", + "length-yard", + "mass-gram", + "mass-kilogram", + "mass-ounce", + "mass-pound", + "mass-stone", + "temperature-celsius", + "temperature-fahrenheit", + "volume-fluid-ounce", + "volume-gallon", + "volume-liter", + "volume-milliliter", + ]; + function o(e) { + return e.slice(e.indexOf("-") + 1); + } + var a = r.map(o); + function i(e) { + return a.indexOf(e) > -1; + } + }, + 94670: (e, t, n) => { + "use strict"; + function r(e, t) { + var n = t.tzData, + r = t.uppercaseLinks, + o = e.toUpperCase(), + a = new Set(), + i = new Set(); + return ( + Object.keys(n) + .map(function (e) { + return e.toUpperCase(); + }) + .forEach(function (e) { + return a.add(e); + }), + Object.keys(r).forEach(function (e) { + i.add(e.toUpperCase()), a.add(r[e].toUpperCase()); + }), + a.has(o) || i.has(o) + ); + } + n.d(t, { s: () => r }); + }, + 75086: (e, t, n) => { + "use strict"; + n.d(t, { K: () => o }); + var r = /[^A-Z]/; + function o(e) { + return ( + 3 === + (e = e.replace(/([a-z])/g, function (e, t) { + return t.toUpperCase(); + })).length && !r.test(e) + ); + } + }, + 59057: (e, t, n) => { + "use strict"; + n.d(t, { L: () => o }); + var r = n(4280); + function o(e) { + if ( + ((e = e.replace(/([A-Z])/g, function (e, t) { + return t.toLowerCase(); + })), + (0, r.UQ)(e)) + ) + return !0; + var t = e.split("-per-"); + if (2 !== t.length) return !1; + var n = t[0], + o = t[1]; + return !(!(0, r.UQ)(n) || !(0, r.UQ)(o)); + } + }, + 58243: (e, t, n) => { + "use strict"; + n.d(t, { V: () => i }); + var r = n(56457), + o = n(81645), + a = n(76206); + function i(e, t, n) { + var i = n.getInternalSlots; + if (0 === t) return [0, 0]; + t < 0 && (t = -t); + var s = (0, r.Tg)(t), + c = (0, o.b)(e, s, { getInternalSlots: i }); + t = c < 0 ? t * Math.pow(10, -c) : t / Math.pow(10, c); + var l = (0, a.E)(i(e), t); + return 0 === l.roundedNumber || (0, r.Tg)(l.roundedNumber) === s - c ? [c, s] : [(0, o.b)(e, s + 1, { getInternalSlots: i }), s + 1]; + } + }, + 81645: (e, t, n) => { + "use strict"; + function r(e, t, n) { + var r = (0, n.getInternalSlots)(e), + o = r.notation, + a = r.dataLocaleData, + i = r.numberingSystem; + switch (o) { + case "standard": + return 0; + case "scientific": + return t; + case "engineering": + return 3 * Math.floor(t / 3); + default: + var s = r.compactDisplay, + c = r.style, + l = r.currencyDisplay, + u = void 0; + if ("currency" === c && "name" !== l) u = (a.numbers.currency[i] || a.numbers.currency[a.numbers.nu[0]]).short; + else { + var d = a.numbers.decimal[i] || a.numbers.decimal[a.numbers.nu[0]]; + u = "long" === s ? d.long : d.short; + } + if (!u) return 0; + var p = String(Math.pow(10, t)), + f = Object.keys(u); + if (p < f[0]) return 0; + if (p > f[f.length - 1]) return f[f.length - 1].length - 1; + var m = f.indexOf(p); + if (-1 === m) return 0; + var h = f[m]; + return "0" === u[h].other ? 0 : h.length - u[h].other.match(/0+/)[0].length; + } + } + n.d(t, { b: () => r }); + }, + 51864: (e, t, n) => { + "use strict"; + n.d(t, { T: () => o }); + var r = n(2406); + function o(e, t) { + var n = t.currencyDigitsData; + return (0, r.uY)(n, e) ? n[e] : 2; + } + }, + 46392: (e, t, n) => { + "use strict"; + n.d(t, { M: () => a }); + var r = n(82081), + o = n(2406); + function a(e, t, n) { + for (var a = (0, r.I)(e, t, n), i = (0, o.U6)(0), s = 0, c = a; s < c.length; s++) { + var l = c[s]; + i.push({ type: l.type, value: l.value }); + } + return i; + } + }, + 76206: (e, t, n) => { + "use strict"; + n.d(t, { E: () => s }); + var r = n(2406), + o = n(6655), + a = n(56457), + i = n(91069); + function s(e, t) { + var n, + s = t < 0 || (0, r.QP)(t, -0); + switch ((s && (t = -t), e.roundingType)) { + case "significantDigits": + n = (0, o.w)(t, e.minimumSignificantDigits, e.maximumSignificantDigits); + break; + case "fractionDigits": + n = (0, i.W)(t, e.minimumFractionDigits, e.maximumFractionDigits); + break; + default: + (n = (0, o.w)(t, 1, 2)).integerDigitsCount > 1 && (n = (0, i.W)(t, 0, 0)); + } + t = n.roundedNumber; + var c = n.formattedString, + l = n.integerDigitsCount, + u = e.minimumIntegerDigits; + return l < u && (c = (0, a.rx)("0", u - l) + c), s && (t = -t), { roundedNumber: t, formattedString: c }; + } + }, + 49810: (e, t, n) => { + "use strict"; + n.d(t, { o: () => d }); + var r = n(58491), + o = n(44074), + a = n(26320), + i = n(41268), + s = n(51864), + c = n(9674), + l = n(56457), + u = n(41316); + function d(e, t, n, d) { + var p = d.getInternalSlots, + f = d.localeData, + m = d.availableLocales, + h = d.numberingSystemNames, + v = d.getDefaultLocale, + y = d.currencyDigitsData, + g = (0, r.L)(t), + b = (0, u.U)(n), + E = Object.create(null), + D = (0, o.u)(b, "localeMatcher", "string", ["lookup", "best fit"], "best fit"); + E.localeMatcher = D; + var C = (0, o.u)(b, "numberingSystem", "string", void 0, void 0); + if (void 0 !== C && h.indexOf(C) < 0) throw RangeError("Invalid numberingSystems: " + C); + E.nu = C; + var w = (0, a.f)(m, g, E, ["nu"], f, v), + S = f[w.dataLocale]; + (0, l.kG)(!!S, "Missing locale data for " + w.dataLocale); + var A = p(e); + (A.locale = w.locale), (A.dataLocale = w.dataLocale), (A.numberingSystem = w.nu), (A.dataLocaleData = S), (0, i.x)(e, b, { getInternalSlots: p }); + var k, + _, + T = A.style; + if ("currency" === T) { + var I = A.currency, + O = (0, s.T)(I, { currencyDigitsData: y }); + (k = O), (_ = O); + } else (k = 0), (_ = "percent" === T ? 0 : 3); + var F = (0, o.u)(b, "notation", "string", ["standard", "scientific", "engineering", "compact"], "standard"); + (A.notation = F), (0, c.W)(A, b, k, _, F); + var x = (0, o.u)(b, "compactDisplay", "string", ["short", "long"], "short"); + "compact" === F && (A.compactDisplay = x); + var N = (0, o.u)(b, "useGrouping", "boolean", void 0, !0); + A.useGrouping = N; + var R = (0, o.u)(b, "signDisplay", "string", ["auto", "never", "always", "exceptZero"], "auto"); + return (A.signDisplay = R), e; + } + }, + 82081: (e, t, n) => { + "use strict"; + n.d(t, { I: () => s }); + var r = n(76206), + o = n(2406), + a = n(58243), + i = n(26657); + function s(e, t, n) { + var s, + c, + l, + u = n.getInternalSlots, + d = u(e), + p = d.pl, + f = d.dataLocaleData, + m = d.numberingSystem, + h = f.numbers.symbols[m] || f.numbers.symbols[f.numbers.nu[0]], + v = 0, + y = 0; + if (isNaN(t)) c = h.nan; + else if (isFinite(t)) { + "percent" === d.style && (t *= 100), (y = (s = (0, a.V)(e, t, { getInternalSlots: u }))[0]), (v = s[1]), (t = y < 0 ? t * Math.pow(10, -y) : t / Math.pow(10, y)); + var g = (0, r.E)(d, t); + (c = g.formattedString), (t = g.roundedNumber); + } else c = h.infinity; + switch (d.signDisplay) { + case "never": + l = 0; + break; + case "auto": + l = (0, o.QP)(t, 0) || t > 0 || isNaN(t) ? 0 : -1; + break; + case "always": + l = (0, o.QP)(t, 0) || t > 0 || isNaN(t) ? 1 : -1; + break; + default: + l = 0 === t || isNaN(t) ? 0 : t > 0 ? 1 : -1; + } + return (0, i.Z)({ roundedNumber: t, formattedString: c, exponent: y, magnitude: v, sign: l }, d.dataLocaleData, p, d); + } + }, + 9674: (e, t, n) => { + "use strict"; + n.d(t, { W: () => a }); + var r = n(39182), + o = n(95859); + function a(e, t, n, a, i) { + var s = (0, r._)(t, "minimumIntegerDigits", 1, 21, 1), + c = t.minimumFractionDigits, + l = t.maximumFractionDigits, + u = t.minimumSignificantDigits, + d = t.maximumSignificantDigits; + if (((e.minimumIntegerDigits = s), void 0 !== u || void 0 !== d)) + (e.roundingType = "significantDigits"), (u = (0, o.Q)(u, 1, 21, 1)), (d = (0, o.Q)(d, u, 21, 21)), (e.minimumSignificantDigits = u), (e.maximumSignificantDigits = d); + else if (void 0 !== c || void 0 !== l) { + (e.roundingType = "fractionDigits"), (c = (0, o.Q)(c, 0, 20, n)); + var p = Math.max(c, a); + (l = (0, o.Q)(l, c, 20, p)), (e.minimumFractionDigits = c), (e.maximumFractionDigits = l); + } else "compact" === i ? (e.roundingType = "compactRounding") : ((e.roundingType = "fractionDigits"), (e.minimumFractionDigits = n), (e.maximumFractionDigits = a)); + } + }, + 41268: (e, t, n) => { + "use strict"; + n.d(t, { x: () => i }); + var r = n(44074), + o = n(75086), + a = n(59057); + function i(e, t, n) { + void 0 === t && (t = Object.create(null)); + var i = (0, n.getInternalSlots)(e), + s = (0, r.u)(t, "style", "string", ["decimal", "percent", "currency", "unit"], "decimal"); + i.style = s; + var c = (0, r.u)(t, "currency", "string", void 0, void 0); + if (void 0 !== c && !(0, o.K)(c)) throw RangeError("Malformed currency code"); + if ("currency" === s && void 0 === c) throw TypeError("currency cannot be undefined"); + var l = (0, r.u)(t, "currencyDisplay", "string", ["code", "symbol", "narrowSymbol", "name"], "symbol"), + u = (0, r.u)(t, "currencySign", "string", ["standard", "accounting"], "standard"), + d = (0, r.u)(t, "unit", "string", void 0, void 0); + if (void 0 !== d && !(0, a.L)(d)) throw RangeError("Invalid unit argument for Intl.NumberFormat()"); + if ("unit" === s && void 0 === d) throw TypeError("unit cannot be undefined"); + var p = (0, r.u)(t, "unitDisplay", "string", ["short", "narrow", "long"], "short"); + "currency" === s && ((i.currency = c.toUpperCase()), (i.currencyDisplay = l), (i.currencySign = u)), "unit" === s && ((i.unit = d), (i.unitDisplay = p)); + } + }, + 91069: (e, t, n) => { + "use strict"; + n.d(t, { W: () => o }); + var r = n(56457); + function o(e, t, n) { + var o, + a, + i = n, + s = Math.round(e * Math.pow(10, i)), + c = s / Math.pow(10, i); + if (s < 1e21) o = s.toString(); + else { + var l = (o = s.toString()).split("e"), + u = l[0], + d = l[1]; + (o = u.replace(".", "")), (o += (0, r.rx)("0", Math.max(+d - o.length + 1, 0))); + } + if (0 !== i) { + var p = o.length; + p <= i && ((o = (0, r.rx)("0", i + 1 - p) + o), (p = i + 1)); + var f = o.slice(0, p - i), + m = o.slice(p - i); + (o = f + "." + m), (a = f.length); + } else a = o.length; + for (var h = n - t; h > 0 && "0" === o[o.length - 1]; ) (o = o.slice(0, -1)), h--; + return "." === o[o.length - 1] && (o = o.slice(0, -1)), { formattedString: o, roundedNumber: c, integerDigitsCount: a }; + } + }, + 6655: (e, t, n) => { + "use strict"; + n.d(t, { w: () => o }); + var r = n(56457); + function o(e, t, n) { + var o, + a, + i, + s, + c = n; + if (0 === e) (o = (0, r.rx)("0", c)), (a = 0), (i = 0); + else { + var l = e.toString(), + u = l.indexOf("e"), + d = l.split("e"), + p = d[0], + f = d[1], + m = p.replace(".", ""); + if (u >= 0 && m.length <= c) (a = +f), (o = m + (0, r.rx)("0", c - m.length)), (i = e); + else { + var h = (a = (0, r.Tg)(e)) - c + 1, + v = Math.round(g(e, h)); + g(v, c - 1) >= 10 && ((a += 1), (v = Math.floor(v / 10))), (o = v.toString()), (i = g(v, c - 1 - a)); + } + } + if ((a >= c - 1 ? ((o += (0, r.rx)("0", a - c + 1)), (s = a + 1)) : a >= 0 ? ((o = o.slice(0, a + 1) + "." + o.slice(a + 1)), (s = a + 1)) : ((o = "0." + (0, r.rx)("0", -a - 1) + o), (s = 1)), o.indexOf(".") >= 0 && n > t)) { + for (var y = n - t; y > 0 && "0" === o[o.length - 1]; ) (o = o.slice(0, -1)), y--; + "." === o[o.length - 1] && (o = o.slice(0, -1)); + } + return { formattedString: o, roundedNumber: i, integerDigitsCount: s }; + function g(e, t) { + return t < 0 ? e * Math.pow(10, -t) : e / Math.pow(10, t); + } + } + }, + 26657: (e, t, n) => { + "use strict"; + n.d(t, { Z: () => u }); + var r = n(91069); + const o = JSON.parse( + '{"adlm":["𞥐","𞥑","𞥒","𞥓","𞥔","𞥕","𞥖","𞥗","𞥘","𞥙"],"ahom":["𑜰","𑜱","𑜲","𑜳","𑜴","𑜵","𑜶","𑜷","𑜸","𑜹"],"arab":["٠","١","٢","٣","٤","٥","٦","٧","٨","٩"],"arabext":["۰","۱","۲","۳","۴","۵","۶","۷","۸","۹"],"bali":["᭐","᭑","᭒","᭓","᭔","᭕","᭖","᭗","᭘","᭙"],"beng":["০","১","২","৩","৪","৫","৬","৭","৮","৯"],"bhks":["𑱐","𑱑","𑱒","𑱓","𑱔","𑱕","𑱖","𑱗","𑱘","𑱙"],"brah":["𑁦","𑁧","𑁨","𑁩","𑁪","𑁫","𑁬","𑁭","𑁮","𑁯"],"cakm":["𑄶","𑄷","𑄸","𑄹","𑄺","𑄻","𑄼","𑄽","𑄾","𑄿"],"cham":["꩐","꩑","꩒","꩓","꩔","꩕","꩖","꩗","꩘","꩙"],"deva":["०","१","२","३","४","५","६","७","८","९"],"diak":["𑥐","𑥑","𑥒","𑥓","𑥔","𑥕","𑥖","𑥗","𑥘","𑥙"],"fullwide":["0","1","2","3","4","5","6","7","8","9"],"gong":["𑶠","𑶡","𑶢","𑶣","𑶤","𑶥","𑶦","𑶧","𑶨","𑶩"],"gonm":["𑵐","𑵑","𑵒","𑵓","𑵔","𑵕","𑵖","𑵗","𑵘","𑵙"],"gujr":["૦","૧","૨","૩","૪","૫","૬","૭","૮","૯"],"guru":["੦","੧","੨","੩","੪","੫","੬","੭","੮","੯"],"hanidec":["〇","一","二","三","四","五","六","七","八","九"],"hmng":["𖭐","𖭑","𖭒","𖭓","𖭔","𖭕","𖭖","𖭗","𖭘","𖭙"],"hmnp":["𞅀","𞅁","𞅂","𞅃","𞅄","𞅅","𞅆","𞅇","𞅈","𞅉"],"java":["꧐","꧑","꧒","꧓","꧔","꧕","꧖","꧗","꧘","꧙"],"kali":["꤀","꤁","꤂","꤃","꤄","꤅","꤆","꤇","꤈","꤉"],"khmr":["០","១","២","៣","៤","៥","៦","៧","៨","៩"],"knda":["೦","೧","೨","೩","೪","೫","೬","೭","೮","೯"],"lana":["᪀","᪁","᪂","᪃","᪄","᪅","᪆","᪇","᪈","᪉"],"lanatham":["᪐","᪑","᪒","᪓","᪔","᪕","᪖","᪗","᪘","᪙"],"laoo":["໐","໑","໒","໓","໔","໕","໖","໗","໘","໙"],"lepc":["᪐","᪑","᪒","᪓","᪔","᪕","᪖","᪗","᪘","᪙"],"limb":["᥆","᥇","᥈","᥉","᥊","᥋","᥌","᥍","᥎","᥏"],"mathbold":["𝟎","𝟏","𝟐","𝟑","𝟒","𝟓","𝟔","𝟕","𝟖","𝟗"],"mathdbl":["𝟘","𝟙","𝟚","𝟛","𝟜","𝟝","𝟞","𝟟","𝟠","𝟡"],"mathmono":["𝟶","𝟷","𝟸","𝟹","𝟺","𝟻","𝟼","𝟽","𝟾","𝟿"],"mathsanb":["𝟬","𝟭","𝟮","𝟯","𝟰","𝟱","𝟲","𝟳","𝟴","𝟵"],"mathsans":["𝟢","𝟣","𝟤","𝟥","𝟦","𝟧","𝟨","𝟩","𝟪","𝟫"],"mlym":["൦","൧","൨","൩","൪","൫","൬","൭","൮","൯"],"modi":["𑙐","𑙑","𑙒","𑙓","𑙔","𑙕","𑙖","𑙗","𑙘","𑙙"],"mong":["᠐","᠑","᠒","᠓","᠔","᠕","᠖","᠗","᠘","᠙"],"mroo":["𖩠","𖩡","𖩢","𖩣","𖩤","𖩥","𖩦","𖩧","𖩨","𖩩"],"mtei":["꯰","꯱","꯲","꯳","꯴","꯵","꯶","꯷","꯸","꯹"],"mymr":["၀","၁","၂","၃","၄","၅","၆","၇","၈","၉"],"mymrshan":["႐","႑","႒","႓","႔","႕","႖","႗","႘","႙"],"mymrtlng":["꧰","꧱","꧲","꧳","꧴","꧵","꧶","꧷","꧸","꧹"],"newa":["𑑐","𑑑","𑑒","𑑓","𑑔","𑑕","𑑖","𑑗","𑑘","𑑙"],"nkoo":["߀","߁","߂","߃","߄","߅","߆","߇","߈","߉"],"olck":["᱐","᱑","᱒","᱓","᱔","᱕","᱖","᱗","᱘","᱙"],"orya":["୦","୧","୨","୩","୪","୫","୬","୭","୮","୯"],"osma":["𐒠","𐒡","𐒢","𐒣","𐒤","𐒥","𐒦","𐒧","𐒨","𐒩"],"rohg":["𐴰","𐴱","𐴲","𐴳","𐴴","𐴵","𐴶","𐴷","𐴸","𐴹"],"saur":["꣐","꣑","꣒","꣓","꣔","꣕","꣖","꣗","꣘","꣙"],"segment":["🯰","🯱","🯲","🯳","🯴","🯵","🯶","🯷","🯸","🯹"],"shrd":["𑇐","𑇑","𑇒","𑇓","𑇔","𑇕","𑇖","𑇗","𑇘","𑇙"],"sind":["𑋰","𑋱","𑋲","𑋳","𑋴","𑋵","𑋶","𑋷","𑋸","𑋹"],"sinh":["෦","෧","෨","෩","෪","෫","෬","෭","෮","෯"],"sora":["𑃰","𑃱","𑃲","𑃳","𑃴","𑃵","𑃶","𑃷","𑃸","𑃹"],"sund":["᮰","᮱","᮲","᮳","᮴","᮵","᮶","᮷","᮸","᮹"],"takr":["𑛀","𑛁","𑛂","𑛃","𑛄","𑛅","𑛆","𑛇","𑛈","𑛉"],"talu":["᧐","᧑","᧒","᧓","᧔","᧕","᧖","᧗","᧘","᧙"],"tamldec":["௦","௧","௨","௩","௪","௫","௬","௭","௮","௯"],"telu":["౦","౧","౨","౩","౪","౫","౬","౭","౮","౯"],"thai":["๐","๑","๒","๓","๔","๕","๖","๗","๘","๙"],"tibt":["༠","༡","༢","༣","༤","༥","༦","༧","༨","༩"],"tirh":["𑓐","𑓑","𑓒","𑓓","𑓔","𑓕","𑓖","𑓗","𑓘","𑓙"],"vaii":["ᘠ","ᘡ","ᘢ","ᘣ","ᘤ","ᘥ","ᘦ","ᘧ","ᘨ","ᘩ"],"wara":["𑣠","𑣡","𑣢","𑣣","𑣤","𑣥","𑣦","𑣧","𑣨","𑣩"],"wcho":["𞋰","𞋱","𞋲","𞋳","𞋴","𞋵","𞋶","𞋷","𞋸","𞋹"]}' + ); + var a = n.t(o, 2), + i = /[\$\+<->\^`\|~\xA2-\xA6\xA8\xA9\xAC\xAE-\xB1\xB4\xB8\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0384\u0385\u03F6\u0482\u058D-\u058F\u0606-\u0608\u060B\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u07FE\u07FF\u09F2\u09F3\u09FA\u09FB\u0AF1\u0B70\u0BF3-\u0BFA\u0C7F\u0D4F\u0D79\u0E3F\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u166D\u17DB\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u2044\u2052\u207A-\u207C\u208A-\u208C\u20A0-\u20BF\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F\u218A\u218B\u2190-\u2307\u230C-\u2328\u232B-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u2767\u2794-\u27C4\u27C7-\u27E5\u27F0-\u2982\u2999-\u29D7\u29DC-\u29FB\u29FE-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2CE5-\u2CEA\u2E50\u2E51\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u309B\u309C\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA700-\uA716\uA720\uA721\uA789\uA78A\uA828-\uA82B\uA836-\uA839\uAA77-\uAA79\uAB5B\uAB6A\uAB6B\uFB29\uFBB2-\uFBC1\uFDFC\uFDFD\uFE62\uFE64-\uFE66\uFE69\uFF04\uFF0B\uFF1C-\uFF1E\uFF3E\uFF40\uFF5C\uFF5E\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFFC\uFFFD]|\uD800[\uDD37-\uDD3F\uDD79-\uDD89\uDD8C-\uDD8E\uDD90-\uDD9C\uDDA0\uDDD0-\uDDFC]|\uD802[\uDC77\uDC78\uDEC8]|\uD805\uDF3F|\uD807[\uDFD5-\uDFF1]|\uD81A[\uDF3C-\uDF3F\uDF45]|\uD82F\uDC9C|\uD834[\uDC00-\uDCF5\uDD00-\uDD26\uDD29-\uDD64\uDD6A-\uDD6C\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDDE8\uDE00-\uDE41\uDE45\uDF00-\uDF56]|\uD835[\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85\uDE86]|\uD838[\uDD4F\uDEFF]|\uD83B[\uDCAC\uDCB0\uDD2E\uDEF0\uDEF1]|\uD83C[\uDC00-\uDC2B\uDC30-\uDC93\uDCA0-\uDCAE\uDCB1-\uDCBF\uDCC1-\uDCCF\uDCD1-\uDCF5\uDD0D-\uDDAD\uDDE6-\uDE02\uDE10-\uDE3B\uDE40-\uDE48\uDE50\uDE51\uDE60-\uDE65\uDF00-\uDFFF]|\uD83D[\uDC00-\uDED7\uDEE0-\uDEEC\uDEF0-\uDEFC\uDF00-\uDF73\uDF80-\uDFD8\uDFE0-\uDFEB]|\uD83E[\uDC00-\uDC0B\uDC10-\uDC47\uDC50-\uDC59\uDC60-\uDC87\uDC90-\uDCAD\uDCB0\uDCB1\uDD00-\uDD78\uDD7A-\uDDCB\uDDCD-\uDE53\uDE60-\uDE6D\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6\uDF00-\uDF92\uDF94-\uDFCA]/, + s = new RegExp("^" + i.source), + c = new RegExp(i.source + "$"), + l = /[#0](?:[\.,][#0]+)*/g; + function u(e, t, n, r) { + var o, + a, + i = e.sign, + u = e.exponent, + m = e.magnitude, + h = r.notation, + v = r.style, + y = r.numberingSystem, + g = t.numbers.nu[0], + b = null; + if ( + ("compact" === h && + m && + (b = (function (e, t, n, r, o, a, i) { + var s, + c, + l = e.roundedNumber, + u = e.sign, + d = e.magnitude, + m = String(Math.pow(10, d)), + h = n.numbers.nu[0]; + if ("currency" === r && "name" !== a) { + var v = null === (s = ((y = n.numbers.currency)[i] || y[h]).short) || void 0 === s ? void 0 : s[m]; + if (!v) return null; + c = f(t, l, v); + } else { + var y, + g = ((y = n.numbers.decimal)[i] || y[h])[o][m]; + if (!g) return null; + c = f(t, l, g); + } + return "0" === c + ? null + : (c = p(c, u) + .replace(/([^\s;\-\+\d¤]+)/g, "{c:$1}") + .replace(/0+/, "0")); + })(e, n, t, v, r.compactDisplay, r.currencyDisplay, y)), + "currency" === v && "name" !== r.currencyDisplay) + ) { + var E = t.currencies[r.currency]; + if (E) + switch (r.currencyDisplay) { + case "code": + o = r.currency; + break; + case "symbol": + o = E.symbol; + break; + default: + o = E.narrow; + } + else o = r.currency; + } + a = + b || + ("decimal" === v || "unit" === v || ("currency" === v && "name" === r.currencyDisplay) + ? p((t.numbers.decimal[y] || t.numbers.decimal[g]).standard, i) + : p("currency" === v ? (C = t.numbers.currency[y] || t.numbers.currency[g])[r.currencySign] : t.numbers.percent[y] || t.numbers.percent[g], i)); + var D = l.exec(a)[0]; + if (((a = a.replace(l, "{0}").replace(/'(.)'/g, "$1")), "currency" === v && "name" !== r.currencyDisplay)) { + var C, + w = (C = t.numbers.currency[y] || t.numbers.currency[g]).currencySpacing.afterInsertBetween; + w && !c.test(o) && (a = a.replace("¤{0}", "¤" + w + "{0}")); + var S = C.currencySpacing.beforeInsertBetween; + S && !s.test(o) && (a = a.replace("{0}¤", "{0}" + S + "¤")); + } + for (var A = a.split(/({c:[^}]+}|\{0\}|[¤%\-\+])/g), k = [], _ = t.numbers.symbols[y] || t.numbers.symbols[g], T = 0, I = A; T < I.length; T++) + if ((J = I[T])) + switch (J) { + case "{0}": + k.push.apply(k, d(_, e, h, u, y, !b && r.useGrouping, D)); + break; + case "-": + k.push({ type: "minusSign", value: _.minusSign }); + break; + case "+": + k.push({ type: "plusSign", value: _.plusSign }); + break; + case "%": + k.push({ type: "percentSign", value: _.percentSign }); + break; + case "¤": + k.push({ type: "currency", value: o }); + break; + default: + /^\{c:/.test(J) ? k.push({ type: "compact", value: J.substring(3, J.length - 1) }) : k.push({ type: "literal", value: J }); + } + switch (v) { + case "currency": + if ("name" === r.currencyDisplay) { + var O, + F = (t.numbers.currency[y] || t.numbers.currency[g]).unitPattern, + x = t.currencies[r.currency]; + O = x ? f(n, e.roundedNumber * Math.pow(10, u), x.displayName) : r.currency; + for (var N = [], R = 0, L = F.split(/(\{[01]\})/g); R < L.length; R++) + switch ((J = L[R])) { + case "{0}": + N.push.apply(N, k); + break; + case "{1}": + N.push({ type: "currency", value: O }); + break; + default: + J && N.push({ type: "literal", value: J }); + } + return N; + } + return k; + case "unit": + var M = r.unit, + P = r.unitDisplay, + j = t.units.simple[M]; + if (((F = void 0), j)) F = f(n, e.roundedNumber * Math.pow(10, u), t.units.simple[M][P]); + else { + var B = M.split("-per-"), + Z = B[0], + U = B[1]; + j = t.units.simple[Z]; + var z = f(n, e.roundedNumber * Math.pow(10, u), t.units.simple[Z][P]), + V = t.units.simple[U].perUnit[P]; + if (V) F = V.replace("{0}", z); + else { + var H = t.units.compound.per[P], + G = f(n, 1, t.units.simple[U][P]); + F = F = H.replace("{0}", z).replace("{1}", G.replace("{0}", "")); + } + } + N = []; + for (var W = 0, Q = F.split(/(\s*\{0\}\s*)/); W < Q.length; W++) { + var J = Q[W], + Y = /^(\s*)\{0\}(\s*)$/.exec(J); + Y ? (Y[1] && N.push({ type: "literal", value: Y[1] }), N.push.apply(N, k), Y[2] && N.push({ type: "literal", value: Y[2] })) : J && N.push({ type: "unit", value: J }); + } + return N; + default: + return k; + } + } + function d(e, t, n, o, i, s, c) { + var l = [], + u = t.formattedString, + d = t.roundedNumber; + if (isNaN(d)) return [{ type: "nan", value: u }]; + if (!isFinite(d)) return [{ type: "infinity", value: u }]; + var p = a[i]; + p && + (u = u.replace(/\d/g, function (e) { + return p[+e] || e; + })); + var f, + m, + h = u.indexOf("."); + if ((h > 0 ? ((f = u.slice(0, h)), (m = u.slice(h + 1))) : (f = u), s && ("compact" !== n || d >= 1e4))) { + var v = e.group, + y = [], + g = c.split(".")[0].split(","), + b = 3, + E = 3; + g.length > 1 && (b = g[g.length - 1].length), g.length > 2 && (E = g[g.length - 2].length); + var D = f.length - b; + if (D > 0) { + for (y.push(f.slice(D, D + b)), D -= E; D > 0; D -= E) y.push(f.slice(D, D + E)); + y.push(f.slice(0, D + E)); + } else y.push(f); + for (; y.length > 0; ) { + var C = y.pop(); + l.push({ type: "integer", value: C }), y.length > 0 && l.push({ type: "group", value: v }); + } + } else l.push({ type: "integer", value: f }); + if ((void 0 !== m && l.push({ type: "decimal", value: e.decimal }, { type: "fraction", value: m }), ("scientific" === n || "engineering" === n) && isFinite(d))) { + l.push({ type: "exponentSeparator", value: e.exponential }), o < 0 && (l.push({ type: "exponentMinusSign", value: e.minusSign }), (o = -o)); + var w = (0, r.W)(o, 0, 0); + l.push({ type: "exponentInteger", value: w.formattedString }); + } + return l; + } + function p(e, t) { + e.indexOf(";") < 0 && (e = e + ";-" + e); + var n = e.split(";"), + r = n[0], + o = n[1]; + switch (t) { + case 0: + return r; + case -1: + return o; + default: + return o.indexOf("-") >= 0 ? o.replace(/-/g, "+") : "+" + r; + } + } + function f(e, t, n) { + return n[e.select(t)] || n.other; + } + }, + 43176: (e, t, n) => { + "use strict"; + n.d(t, { i: () => o }); + var r = n(56457); + function o(e) { + for (var t = [], n = e.indexOf("{"), o = 0, a = 0, i = e.length; n < e.length && n > -1; ) + (o = e.indexOf("}", n)), (0, r.kG)(o > n, "Invalid pattern " + e), n > a && t.push({ type: "literal", value: e.substring(a, n) }), t.push({ type: e.substring(n + 1, o), value: void 0 }), (a = o + 1), (n = e.indexOf("{", a)); + return a < i && t.push({ type: "literal", value: e.substring(a, i) }), t; + } + }, + 26320: (e, t, n) => { + "use strict"; + n.d(t, { f: () => i }); + var r = n(56457), + o = n(63830); + function a(e, t) { + (0, r.kG)(2 === t.length, "key must have 2 elements"); + var n = e.length, + o = "-" + t + "-", + a = e.indexOf(o); + if (-1 !== a) { + for (var i = a + 4, s = i, c = i, l = !1; !l; ) { + var u = e.indexOf("-", c); + 2 == (-1 === u ? n - c : u - c) ? (l = !0) : -1 === u ? ((s = n), (l = !0)) : ((s = u), (c = u + 1)); + } + return e.slice(i, s); + } + if (((o = "-" + t), -1 !== (a = e.indexOf(o)) && a + 3 === n)) return ""; + } + function i(e, t, n, i, s, c) { + var l; + l = + "lookup" === n.localeMatcher + ? (function (e, t, n) { + for (var a = { locale: "" }, i = 0, s = t; i < s.length; i++) { + var c = s[i], + l = c.replace(r.pk, ""), + u = (0, o.t)(e, l); + if (u) return (a.locale = u), c !== l && (a.extension = c.slice(l.length + 1, c.length)), a; + } + return (a.locale = n()), a; + })(e, t, c) + : (function (e, t, n) { + var a, + i = {}, + s = new Set(); + e.forEach(function (e) { + var t = new Intl.Locale(e).minimize().toString(); + (i[t] = e), s.add(t); + }); + for (var c = 0, l = t; c < l.length; c++) { + var u = l[c]; + if (a) break; + var d = u.replace(r.pk, ""); + if (e.has(d)) { + a = d; + break; + } + if (s.has(d)) { + a = i[d]; + break; + } + var p = new Intl.Locale(d), + f = p.maximize().toString(), + m = p.minimize().toString(); + if (s.has(m)) { + a = i[m]; + break; + } + a = (0, o.t)(s, f); + } + return { locale: a || n() }; + })(e, t, c); + for (var u = l.locale, d = { locale: "", dataLocale: u }, p = "-u", f = 0, m = i; f < m.length; f++) { + var h = m[f]; + (0, r.kG)(u in s, "Missing locale data for " + u); + var v = s[u]; + (0, r.kG)("object" == typeof v && null !== v, "locale data " + h + " must be an object"); + var y = v[h]; + (0, r.kG)(Array.isArray(y), "keyLocaleData for " + h + " must be an array"); + var g = y[0]; + (0, r.kG)("string" == typeof g || null === g, "value must be string or null but got " + typeof g + " in key " + h); + var b = ""; + if (l.extension) { + var E = a(l.extension, h); + void 0 !== E && ("" !== E ? ~y.indexOf(E) && (b = "-" + h + "-" + (g = E)) : ~E.indexOf("true") && ((g = "true"), (b = "-" + h))); + } + if (h in n) { + var D = n[h]; + (0, r.kG)("string" == typeof D || null == D, "optionsValue must be String, Undefined or Null"), ~y.indexOf(D) && D !== g && ((g = D), (b = "")); + } + (d[h] = g), (p += b); + } + if (p.length > 2) { + var C = u.indexOf("-x-"); + if (-1 === C) u += p; + else { + var w = u.slice(0, C), + S = u.slice(C, u.length); + u = w + p + S; + } + u = Intl.getCanonicalLocales(u)[0]; + } + return (d.locale = u), d; + } + }, + 16243: (e, t, n) => { + "use strict"; + n.d(t, { Q: () => s }); + var r = n(2406), + o = n(44074), + a = n(56457), + i = n(63830); + function s(e, t, n) { + return ( + void 0 !== n && ((n = (0, r.TA)(n)), (0, o.u)(n, "localeMatcher", "string", ["lookup", "best fit"], "best fit")), + (function (e, t) { + for (var n = [], r = 0, o = t; r < o.length; r++) { + var s = o[r].replace(a.pk, ""), + c = (0, i.t)(e, s); + c && n.push(c); + } + return n; + })(e, t) + ); + } + }, + 61733: (e, t, n) => { + "use strict"; + n.d(t, { N: () => a }); + var r, + o = n(13795); + function a(e) { + return "MISSING_LOCALE_DATA" === e.type; + } + (r = Error), + (0, o.__extends)(function () { + var e = (null !== r && r.apply(this, arguments)) || this; + return (e.type = "MISSING_LOCALE_DATA"), e; + }, r); + }, + 52562: (e, t, n) => { + "use strict"; + n.r(t), + n.d(t, { + ArrayCreate: () => P.U6, + CanonicalizeLocaleList: () => r.L, + CanonicalizeTimeZoneName: () => o.a, + CoerceOptionsToObject: () => a.U, + ComputeExponent: () => f.V, + ComputeExponentForMagnitude: () => m.b, + CurrencyDigits: () => h.T, + DateFromTime: () => P.XB, + Day: () => P.Jc, + DayFromYear: () => P.gL, + DayWithinYear: () => P.oD, + DaysInYear: () => P.My, + FormatNumericToParts: () => v.M, + FormatNumericToString: () => y.E, + GetNumberOption: () => i._, + GetOption: () => s.u, + GetOptionsObject: () => c.F, + HasOwnProperty: () => P.uY, + HourFromTime: () => P.Zq, + InLeapYear: () => P.$i, + InitializeNumberFormat: () => g.o, + IsSanctionedSimpleUnitIdentifier: () => l.UQ, + IsValidTimeZoneName: () => u.s, + IsWellFormedCurrencyCode: () => d.K, + IsWellFormedUnitIdentifier: () => p.L, + MinFromTime: () => P.py, + MonthFromTime: () => P.J1, + OrdinaryHasInstance: () => P.R2, + PartitionNumberPattern: () => b.I, + PartitionPattern: () => A.i, + RangePatternType: () => x._, + ResolveLocale: () => k.f, + SANCTIONED_UNITS: () => l.Js, + SIMPLE_UNITS: () => l.oO, + SameValue: () => P.QP, + SecFromTime: () => P.xk, + SetNumberFormatDigitOptions: () => E.W, + SetNumberFormatUnitOptions: () => D.x, + SupportedLocales: () => _.Q, + TimeClip: () => P.XH, + TimeFromYear: () => P.rf, + ToNumber: () => P.CU, + ToObject: () => P.TA, + ToRawFixed: () => C.W, + ToRawPrecision: () => w.w, + ToString: () => P.Ml, + Type: () => P.Dy, + WeekDay: () => P.VR, + YearFromTime: () => P.n7, + _formatToParts: () => S.Z, + defineProperty: () => T._x, + getInternalSlot: () => T.q, + getMagnitude: () => T.Tg, + getMultiInternalSlots: () => T.$0, + invariant: () => T.kG, + isLiteralPart: () => T.eY, + isMissingLocaleDataError: () => I.N, + msFromTime: () => P.Vg, + removeUnitNamespace: () => l.Hr, + setInternalSlot: () => T.LS, + setMultiInternalSlots: () => T.e7, + }); + var r = n(58491), + o = n(83437), + a = n(41316), + i = n(39182), + s = n(44074), + c = n(28520), + l = n(4280), + u = n(94670), + d = n(75086), + p = n(59057), + f = n(58243), + m = n(81645), + h = n(51864), + v = n(46392), + y = n(76206), + g = n(49810), + b = n(82081), + E = n(9674), + D = n(41268), + C = n(91069), + w = n(6655), + S = n(26657), + A = n(43176), + k = n(26320), + _ = n(16243), + T = n(56457), + I = n(61733), + O = n(15307), + F = {}; + for (const e in O) + [ + "default", + "_formatToParts", + "getInternalSlot", + "getMultiInternalSlots", + "isLiteralPart", + "setInternalSlot", + "setMultiInternalSlots", + "getMagnitude", + "defineProperty", + "isMissingLocaleDataError", + "invariant", + "CanonicalizeLocaleList", + "CanonicalizeTimeZoneName", + "CoerceOptionsToObject", + "GetNumberOption", + "GetOption", + "GetOptionsObject", + "IsSanctionedSimpleUnitIdentifier", + "SANCTIONED_UNITS", + "SIMPLE_UNITS", + "removeUnitNamespace", + "IsValidTimeZoneName", + "IsWellFormedCurrencyCode", + "IsWellFormedUnitIdentifier", + "ComputeExponent", + "ComputeExponentForMagnitude", + "CurrencyDigits", + "FormatNumericToParts", + "FormatNumericToString", + "InitializeNumberFormat", + "PartitionNumberPattern", + "SetNumberFormatDigitOptions", + "SetNumberFormatUnitOptions", + "ToRawFixed", + "ToRawPrecision", + "PartitionPattern", + "ResolveLocale", + "SupportedLocales", + ].indexOf(e) < 0 && (F[e] = () => O[e]); + n.d(t, F); + var x = n(93255), + N = n(89777); + F = {}; + for (const e in N) + [ + "default", + "_formatToParts", + "getInternalSlot", + "getMultiInternalSlots", + "isLiteralPart", + "setInternalSlot", + "setMultiInternalSlots", + "getMagnitude", + "defineProperty", + "isMissingLocaleDataError", + "invariant", + "CanonicalizeLocaleList", + "CanonicalizeTimeZoneName", + "CoerceOptionsToObject", + "GetNumberOption", + "GetOption", + "GetOptionsObject", + "IsSanctionedSimpleUnitIdentifier", + "SANCTIONED_UNITS", + "SIMPLE_UNITS", + "removeUnitNamespace", + "IsValidTimeZoneName", + "IsWellFormedCurrencyCode", + "IsWellFormedUnitIdentifier", + "ComputeExponent", + "ComputeExponentForMagnitude", + "CurrencyDigits", + "FormatNumericToParts", + "FormatNumericToString", + "InitializeNumberFormat", + "PartitionNumberPattern", + "SetNumberFormatDigitOptions", + "SetNumberFormatUnitOptions", + "ToRawFixed", + "ToRawPrecision", + "PartitionPattern", + "ResolveLocale", + "SupportedLocales", + "RangePatternType", + ].indexOf(e) < 0 && (F[e] = () => N[e]); + n.d(t, F); + var R = n(81514); + F = {}; + for (const e in R) + [ + "default", + "_formatToParts", + "getInternalSlot", + "getMultiInternalSlots", + "isLiteralPart", + "setInternalSlot", + "setMultiInternalSlots", + "getMagnitude", + "defineProperty", + "isMissingLocaleDataError", + "invariant", + "CanonicalizeLocaleList", + "CanonicalizeTimeZoneName", + "CoerceOptionsToObject", + "GetNumberOption", + "GetOption", + "GetOptionsObject", + "IsSanctionedSimpleUnitIdentifier", + "SANCTIONED_UNITS", + "SIMPLE_UNITS", + "removeUnitNamespace", + "IsValidTimeZoneName", + "IsWellFormedCurrencyCode", + "IsWellFormedUnitIdentifier", + "ComputeExponent", + "ComputeExponentForMagnitude", + "CurrencyDigits", + "FormatNumericToParts", + "FormatNumericToString", + "InitializeNumberFormat", + "PartitionNumberPattern", + "SetNumberFormatDigitOptions", + "SetNumberFormatUnitOptions", + "ToRawFixed", + "ToRawPrecision", + "PartitionPattern", + "ResolveLocale", + "SupportedLocales", + "RangePatternType", + ].indexOf(e) < 0 && (F[e] = () => R[e]); + n.d(t, F); + var L = n(29919); + F = {}; + for (const e in L) + [ + "default", + "_formatToParts", + "getInternalSlot", + "getMultiInternalSlots", + "isLiteralPart", + "setInternalSlot", + "setMultiInternalSlots", + "getMagnitude", + "defineProperty", + "isMissingLocaleDataError", + "invariant", + "CanonicalizeLocaleList", + "CanonicalizeTimeZoneName", + "CoerceOptionsToObject", + "GetNumberOption", + "GetOption", + "GetOptionsObject", + "IsSanctionedSimpleUnitIdentifier", + "SANCTIONED_UNITS", + "SIMPLE_UNITS", + "removeUnitNamespace", + "IsValidTimeZoneName", + "IsWellFormedCurrencyCode", + "IsWellFormedUnitIdentifier", + "ComputeExponent", + "ComputeExponentForMagnitude", + "CurrencyDigits", + "FormatNumericToParts", + "FormatNumericToString", + "InitializeNumberFormat", + "PartitionNumberPattern", + "SetNumberFormatDigitOptions", + "SetNumberFormatUnitOptions", + "ToRawFixed", + "ToRawPrecision", + "PartitionPattern", + "ResolveLocale", + "SupportedLocales", + "RangePatternType", + ].indexOf(e) < 0 && (F[e] = () => L[e]); + n.d(t, F); + var M = n(28374); + F = {}; + for (const e in M) + [ + "default", + "_formatToParts", + "getInternalSlot", + "getMultiInternalSlots", + "isLiteralPart", + "setInternalSlot", + "setMultiInternalSlots", + "getMagnitude", + "defineProperty", + "isMissingLocaleDataError", + "invariant", + "CanonicalizeLocaleList", + "CanonicalizeTimeZoneName", + "CoerceOptionsToObject", + "GetNumberOption", + "GetOption", + "GetOptionsObject", + "IsSanctionedSimpleUnitIdentifier", + "SANCTIONED_UNITS", + "SIMPLE_UNITS", + "removeUnitNamespace", + "IsValidTimeZoneName", + "IsWellFormedCurrencyCode", + "IsWellFormedUnitIdentifier", + "ComputeExponent", + "ComputeExponentForMagnitude", + "CurrencyDigits", + "FormatNumericToParts", + "FormatNumericToString", + "InitializeNumberFormat", + "PartitionNumberPattern", + "SetNumberFormatDigitOptions", + "SetNumberFormatUnitOptions", + "ToRawFixed", + "ToRawPrecision", + "PartitionPattern", + "ResolveLocale", + "SupportedLocales", + "RangePatternType", + ].indexOf(e) < 0 && (F[e] = () => M[e]); + n.d(t, F); + var P = n(2406); + }, + 93255: (e, t, n) => { + "use strict"; + var r; + n.d(t, { _: () => r }), + (function (e) { + (e.startRange = "startRange"), (e.shared = "shared"), (e.endRange = "endRange"); + })(r || (r = {})); + }, + 28374: () => {}, + 89777: () => {}, + 29919: () => {}, + 81514: () => {}, + 15307: () => {}, + 56457: (e, t, n) => { + "use strict"; + function r(e) { + return Math.floor(Math.log(e) * Math.LOG10E); + } + function o(e, t) { + if ("function" == typeof e.repeat) return e.repeat(t); + for (var n = new Array(t), r = 0; r < n.length; r++) n[r] = e; + return n.join(""); + } + function a(e, t, n, r) { + e.get(t) || e.set(t, Object.create(null)), (e.get(t)[n] = r); + } + function i(e, t, n) { + for (var r = 0, o = Object.keys(n); r < o.length; r++) { + var i = o[r]; + a(e, t, i, n[i]); + } + } + function s(e, t, n) { + return c(e, t, n)[n]; + } + function c(e, t) { + for (var n = [], r = 2; r < arguments.length; r++) n[r - 2] = arguments[r]; + var o = e.get(t); + if (!o) throw new TypeError(t + " InternalSlot has not been initialized"); + return n.reduce(function (e, t) { + return (e[t] = o[t]), e; + }, Object.create(null)); + } + function l(e) { + return "literal" === e.type; + } + function u(e, t, n) { + var r = n.value; + Object.defineProperty(e, t, { configurable: !0, enumerable: !1, writable: !0, value: r }); + } + n.d(t, { $0: () => c, LS: () => a, Tg: () => r, _x: () => u, e7: () => i, eY: () => l, kG: () => p, pk: () => d, q: () => s, rx: () => o }); + var d = /-u(?:-[0-9a-z]{2,8})+/gi; + function p(e, t, n) { + if ((void 0 === n && (n = Error), !e)) throw new n(t); + } + }, + 18871: (e, t, n) => { + "use strict"; + var r = n(86988); + n(70075).shouldPolyfill() && Object.defineProperty(Intl, "PluralRules", { value: r.PluralRules, writable: !0, enumerable: !1, configurable: !0 }); + }, + 70075: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.shouldPolyfill = void 0), + (t.shouldPolyfill = function () { + return !("PluralRules" in Intl) || "one" === new Intl.PluralRules("en", { minimumFractionDigits: 2 }).select(1); + }); + }, + 16404: (e, t, n) => { + e.exports = n(35073); + }, + 35073: (e, t, n) => { + "use strict"; + var r = n(86633); + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var o, + a, + i, + s = r(n(2001)), + c = r(n(2400)), + l = r(n(80034)), + u = r(n(19854)), + d = r(n(33470)), + p = r(n(15270)), + f = r(n(17555)), + m = r(n(4837)), + h = r(n(8531)), + v = r(n(44455)), + y = r(n(30602)), + g = r(n(40151)), + b = r(n(72807)), + E = r(n(47776)), + D = r(n(23469)); + function C(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function w(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? C(Object(n), !0).forEach(function (t) { + (0, f.default)(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : C(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + n(35912), n(26787); + var S = + (0, m.default)( + ((i = a = (function (e) { + function t(e) { + var n; + return (0, c.default)(this, t), ((n = (0, u.default)(this, (0, d.default)(t).call(this, e))).state = { overlayContainer: null, indicatorPositioned: !1 }), (n.shouldUpdatePosition = !0), n; + } + return ( + (0, p.default)(t, e), + (0, l.default)(t, [ + { + key: "getOverlayContainer", + value: function () { + return this.node ? (0, h.default)(this.node, ".react-spectrum-provider") || document.body : null; + }, + }, + { + key: "componentDidMount", + value: function () { + var e = this.getOverlayContainer(); + e && this.setState({ overlayContainer: e }); + }, + }, + { + key: "onHide", + value: function () { + this.props.onHide && this.props.onHide(); + }, + }, + { + key: "onIndicatorPositioned", + value: function () { + !this.state.indicatorPositioned && this.shouldUpdatePosition + ? this.setState({ indicatorPositioned: !0 }) + : this.state.indicatorPositioned && !this.shouldUpdatePosition && (this.setState({ indicatorPositioned: !0 }), (this.shouldUpdatePosition = !0)); + }, + }, + { + key: "componentDidUpdate", + value: function () { + this.state.indicatorPositioned && (this.shouldUpdatePosition = !1); + }, + }, + { + key: "render", + value: function () { + var e = this, + n = this.props, + r = n.quiet, + o = n.selector, + a = n.children, + i = n.dismissible, + c = n.flip, + l = n.placement, + u = (0, s.default)(n, ["quiet", "selector", "children", "dismissible", "flip", "placement"]), + d = this.state.overlayContainer; + return D.default.createElement( + "div", + { + ref: function (t) { + return (e.node = t); + }, + style: { display: "none" }, + }, + " ", + d && + D.default.createElement( + b.default, + { container: d }, + D.default.createElement( + g.default, + { + trigger: i ? "click" : void 0, + show: !i || void 0, + defaultShow: !0, + flip: c, + placement: l, + offset: t.INDICATOR_OFFSET, + onHide: this.onHide, + shouldUpdatePosition: this.state.indicatorPositioned && this.shouldUpdatePosition, + }, + D.default.createElement(v.default, { selector: o, quiet: r, onPositioned: this.onIndicatorPositioned }), + D.default.createElement(y.default, u, a) + ) + ) + ); + }, + }, + ]), + t + ); + })(D.default.Component)), + (0, f.default)( + a, + "propTypes", + w( + { + parentNode: E.default.any, + flip: E.default.bool, + placement: E.default.oneOf(["bottom", "bottom left", "bottom right", "top", "top left", "top right", "right", "right bottom", "right top", "left", "left bottom", "left top"]), + dismissible: E.default.bool, + }, + y.default.propTypes, + {}, + v.default.propTypes + ) + ), + (0, f.default)(a, "defaultProps", w({ flip: !0, placement: "right" }, y.default.defaultProps, {}, v.default.defaultProps)), + (0, f.default)(a, "INDICATOR_OFFSET", 6), + (o = i)) + ) || o; + t.default = S; + }, + 44455: (e, t, n) => { + "use strict"; + var r = n(86633); + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var o, + a, + i, + s = r(n(62665)), + c = r(n(2001)), + l = r(n(20578)), + u = r(n(8012)), + d = r(n(2400)), + p = r(n(80034)), + f = r(n(19854)), + m = r(n(33470)), + h = r(n(15270)), + v = r(n(17555)), + y = r(n(4837)), + g = r(n(93353)), + b = r(n(35073)), + E = r(n(98606)), + D = r(n(47776)), + C = r(n(23469)), + w = + (0, y.default)( + ((i = a = (function (e) { + function t(e) { + var n; + return (0, d.default)(this, t), ((n = (0, f.default)(this, (0, m.default)(t).call(this, e))).state = { style: { position: "relative" } }), (n.indicatorRef = null), (n.debouncedResizeUpdate = null), n; + } + var n; + return ( + (0, h.default)(t, e), + (0, p.default)(t, [ + { + key: "calculateDOMLocation", + value: function (e) { + var t = e.getBoundingClientRect(), + n = t.left, + r = t.top, + o = t.width, + a = t.height; + if (this.indicatorRef) { + var i = this.indicatorRef.getBoundingClientRect().height; + (i += b.default.INDICATOR_OFFSET), this.setState({ style: { position: "absolute", pointerEvents: "none", top: r + a / 2 - i / 2, left: n + o / 2 - i / 2 } }); + } + }, + }, + { + key: "resizeListener", + value: function () { + var e = this; + this.debouncedResizeUpdate || + (this.debouncedResizeUpdate = setTimeout(function () { + e.updateTargetNode(), (e.debouncedResizeUpdate = null); + }, 50)); + }, + }, + { + key: "updateTargetNode", + value: function () { + if (this.indicatorRef) { + var e = document.querySelector(this.props.selector); + return e && this.calculateDOMLocation(e), e; + } + return null; + }, + }, + { + key: "tryAttachToDOM", + value: function () { + var e = this; + if (!this.updateTargetNode()) { + var t = 0; + this.attachInterval && this.clearAttachInterval(), + (this.attachInterval = setInterval(function () { + (e.updateTargetNode() || t > 10) && e.clearAttachInterval(), t++; + }, 10)); + } + }, + }, + { + key: "componentDidMount", + value: + ((n = (0, u.default)( + l.default.mark(function e() { + return l.default.wrap( + function (e) { + for (;;) + switch ((e.prev = e.next)) { + case 0: + this.tryAttachToDOM(), window.addEventListener("resize", this.resizeListener); + case 2: + case "end": + return e.stop(); + } + }, + e, + this + ); + }) + )), + function () { + return n.apply(this, arguments); + }), + }, + { + key: "componentDidUpdate", + value: function (e, t) { + e.selector !== this.props.selector && this.tryAttachToDOM(), (t.style.top === this.state.style.top && t.style.left === this.state.style.left) || this.props.onPositioned(); + }, + }, + { + key: "componentWillUnmount", + value: function () { + window.removeEventListener("resize", this.resizeListener), this.clearDebouncedResizeUpdateInterval(), this.clearAttachInterval(); + }, + }, + { + key: "clearDebouncedResizeUpdateInterval", + value: function () { + this.debouncedResizeUpdate && (clearTimeout(this.debouncedResizeUpdate), (this.debouncedResizeUpdate = null)); + }, + }, + { + key: "clearAttachInterval", + value: function () { + this.attachInterval && (clearInterval(this.attachInterval), (this.attachInterval = null)); + }, + }, + { + key: "setReference", + value: function (e) { + this.indicatorRef = e; + }, + }, + { + key: "render", + value: function () { + var e = this.props, + t = e.quiet, + n = e.onClick, + r = (0, c.default)(e, ["quiet", "onClick"]), + o = this.state.style; + return C.default.createElement( + "div", + (0, s.default)({}, (0, E.default)(r), { className: (0, g.default)("spectrum-CoachMarkIndicator", { "spectrum-CoachMarkIndicator--quiet": t }), role: "presentation", onClick: n, ref: this.setReference, style: o }), + C.default.createElement("div", { className: "spectrum-CoachMarkIndicator-ring" }), + C.default.createElement("div", { className: "spectrum-CoachMarkIndicator-ring" }), + C.default.createElement("div", { className: "spectrum-CoachMarkIndicator-ring" }) + ); + }, + }, + ]), + t + ); + })(C.default.Component)), + (0, v.default)(a, "propTypes", { selector: D.default.string.isRequired, quiet: D.default.bool, onPositioned: D.default.func }), + (0, v.default)(a, "defaultProps", { quiet: !1, onPositioned: function () {} }), + (o = i)) + ) || o; + t.default = w; + }, + 30602: (e, t, n) => { + "use strict"; + var r = n(86633); + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var o, + a, + i, + s = r(n(62665)), + c = r(n(2001)), + l = r(n(2400)), + u = r(n(80034)), + d = r(n(19854)), + p = r(n(33470)), + f = r(n(15270)), + m = r(n(17555)), + h = r(n(86633)), + v = r(n(4837)), + y = r(n(97915)), + g = r(n(82463)), + b = r(n(98606)), + E = n(79370), + D = r(n(47776)), + C = r(n(23469)), + w = n(12555); + n(52918); + var S = { + "cs-CZ": (0, h.default)(n(71221)).default, + "da-DK": (0, h.default)(n(84266)).default, + "de-DE": (0, h.default)(n(63949)).default, + "en-US": (0, h.default)(n(49807)).default, + "es-ES": (0, h.default)(n(63041)).default, + "fi-FI": (0, h.default)(n(88831)).default, + "fr-FR": (0, h.default)(n(28093)).default, + "hu-HU": (0, h.default)(n(82330)).default, + "it-IT": (0, h.default)(n(53472)).default, + "ja-JP": (0, h.default)(n(10135)).default, + "ko-KR": (0, h.default)(n(93943)).default, + "nb-NO": (0, h.default)(n(98934)).default, + "nl-NL": (0, h.default)(n(88594)).default, + "pl-PL": (0, h.default)(n(7254)).default, + "pt-BR": (0, h.default)(n(36853)).default, + "ru-RU": (0, h.default)(n(61952)).default, + "sv-SE": (0, h.default)(n(28645)).default, + "tr-TR": (0, h.default)(n(26437)).default, + "uk-UA": (0, h.default)(n(44695)).default, + "zh-CN": (0, h.default)(n(22107)).default, + "zh-TW": (0, h.default)(n(12671)).default, + }, + A = (0, E.messageFormatter)(S), + k = + (0, v.default)( + ((i = a = (function (e) { + function t(e) { + var n; + return (0, l.default)(this, t), ((n = (0, d.default)(this, (0, p.default)(t).call(this, e))).coachmarkId = (0, g.default)()), n; + } + return ( + (0, f.default)(t, e), + (0, u.default)(t, [ + { + key: "componentDidMount", + value: function () { + var e = this; + this.props.trapFocus && + (this._trapFocusTimeout = requestAnimationFrame(function () { + e.coachmarkRef && !e.coachmarkRef.contains(document.activeElement) && e.coachmarkRef.focus(); + })); + }, + }, + { + key: "componentWillUnmount", + value: function () { + this._trapFocusTimeout && cancelAnimationFrame(this._trapFocusTimeout); + }, + }, + { + key: "onFocus", + value: function (e) { + this.props.onFocus && this.props.onFocus(e), this.props.trapFocus && (0, w.trapFocus)(this, e); + }, + }, + { + key: "onKeyDown", + value: function (e) { + (this.props.onKeyDown && (this.props.onKeyDown(e), e.isPropagationStopped && e.isPropagationStopped())) || (this.props.trapFocus && (0, w.trapFocus)(this, e)); + }, + }, + { + key: "render", + value: function () { + var e = this, + t = this.props, + n = t.title, + r = t.confirmLabel, + o = t.onConfirm, + a = t.cancelLabel, + i = t.onCancel, + l = t.disableProgress, + u = t.currentStep, + d = t.totalSteps, + p = t.image, + f = t.children, + m = t.id, + h = void 0 === m ? this.coachmarkId : m, + v = t.tabIndex, + g = t.imageAlt, + E = void 0 === g ? "" : g, + D = t.autoFocus, + w = t.trapFocus, + S = (0, c.default)(t, ["title", "confirmLabel", "onConfirm", "cancelLabel", "onCancel", "disableProgress", "currentStep", "totalSteps", "image", "children", "id", "tabIndex", "imageAlt", "autoFocus", "trapFocus"]); + return ( + (l = l || "number" != typeof u || "number" != typeof d), + C.default.createElement( + "div", + (0, s.default)({}, (0, b.default)(S), { + className: "spectrum-CoachMarkPopover", + role: "dialog", + "aria-labelledby": "".concat(h, "-header"), + "aria-describedby": "".concat(h, "-content"), + id: h, + ref: function (t) { + return (e.coachmarkRef = t); + }, + onFocus: this.onFocus, + onKeyDown: this.onKeyDown, + tabIndex: w && null == v ? 1 : v, + }), + p && C.default.createElement("img", { src: p, alt: E, className: "spectrum-CoachMarkPopover-image" }), + C.default.createElement( + "div", + { className: "spectrum-CoachMarkPopover-header", id: "".concat(h, "-header") }, + C.default.createElement("div", { className: "spectrum-CoachMarkPopover-title" }, n), + !l && C.default.createElement("div", { className: "spectrum-CoachMarkPopover-step" }, A("steps", { currentStep: u, totalSteps: d })) + ), + C.default.createElement("div", { className: "spectrum-CoachMarkPopover-content", id: "".concat(h, "-content") }, f), + C.default.createElement( + "div", + { className: "spectrum-CoachMarkPopover-footer" }, + a && C.default.createElement(y.default, { quiet: !0, onClick: i, autoFocus: r ? null : D }, a), + r && C.default.createElement(y.default, { variant: "primary", onClick: o, autoFocus: D }, r) + ) + ) + ); + }, + }, + ]), + t + ); + })(C.default.Component)), + (0, m.default)(a, "propTypes", { + title: D.default.string.isRequired, + confirmLabel: D.default.string, + onConfirm: D.default.func, + cancelLabel: D.default.string, + onCancel: D.default.func, + disableProgress: D.default.bool, + image: D.default.string, + imageAlt: D.default.string, + currentStep: D.default.number, + totalSteps: D.default.number, + autoFocus: D.default.bool, + trapFocus: D.default.bool, + tabIndex: D.default.number, + id: D.default.string, + }), + (0, m.default)(a, "defaultProps", { autoFocus: !0, imageAlt: "", trapFocus: !0 }), + (o = i)) + ) || o; + t.default = k; + }, + 13653: (e, t, n) => { + "use strict"; + var r = n(86633); + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.default = function (e) { + var t = e.autoFocusButton, + n = e.confirmLabel, + r = e.secondaryLabel, + c = e.cancelLabel, + l = e.confirmDisabled, + u = e.onConfirm, + d = e.onCancel, + p = e.className, + f = e.variant, + m = s[f] || "primary", + h = function (e) { + (" " !== e.key && "Enter" !== e.key) || e.stopPropagation(); + }; + return i.default.createElement( + "div", + { className: (0, a.default)("react-spectrum-Dialog-buttons", p) }, + c && i.default.createElement(o.default, { variant: "secondary", label: c, onClick: d, autoFocus: "cancel" === t, onKeyDown: h }), + r && i.default.createElement(o.default, { variant: "secondary", label: r, onClick: u ? u.bind(null, "secondary") : null, autoFocus: "secondary" === t, disabled: l || null, onKeyDown: h }), + n && i.default.createElement(o.default, { variant: m, label: n, onClick: u ? u.bind(null, "primary") : null, autoFocus: "confirm" === t, disabled: l || null, onKeyDown: h }) + ); + }); + var o = r(n(97915)), + a = r(n(93353)), + i = r(n(23469)); + n(82851); + var s = { confirmation: "cta", information: "primary", error: "primary", destructive: "warning" }; + }, + 27644: (e, t, n) => { + "use strict"; + var r = n(86633); + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.default = function (e) { + var t = e.title, + n = e.variant, + r = e.fullscreen, + i = e.confirmDisabled, + h = e.confirmLabel, + v = e.secondaryLabel, + y = e.cancelLabel, + g = e.onConfirm, + b = e.onCancel, + E = e.onClose, + D = e.className, + C = e.autoFocusButton, + w = e.id, + S = e.isDismissible, + A = (0, a.default)(e, ["title", "variant", "fullscreen", "confirmDisabled", "confirmLabel", "secondaryLabel", "cancelLabel", "onConfirm", "onCancel", "onClose", "className", "autoFocusButton", "id", "isDismissible"]), + k = m[n]; + return f.default.createElement( + "div", + (0, o.default)({}, (0, d.default)(A), { className: (0, c.default)("spectrum-Dialog-header", "spectrum-Dialog-header--".concat(n), D) }), + f.default.createElement(p.default, { size: 3, className: "spectrum-Dialog-title", id: w }, t), + k && f.default.createElement(k, { size: null, className: "spectrum-Dialog-typeIcon" }), + S && !r && f.default.createElement(s.default, { className: "spectrum-Dialog-closeButton", variant: "action", onClick: E, quiet: !0, icon: f.default.createElement(l.default, { size: "L" }) }), + r && h && f.default.createElement(u.default, { autoFocusButton: C, variant: n, cancelLabel: y, secondaryLabel: v, confirmLabel: h, confirmDisabled: i, onConfirm: g, onCancel: b }) + ); + }); + var o = r(n(62665)), + a = r(n(2001)), + i = r(n(1335)), + s = r(n(97915)), + c = r(n(93353)), + l = r(n(97931)), + u = r(n(13653)), + d = r(n(98606)), + p = r(n(57765)), + f = r(n(23469)), + m = { error: i.default }; + }, + 42115: (e, t, n) => { + e.exports = n(87526); + }, + 87526: (e, t, n) => { + "use strict"; + var r = n(86633); + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = u); + var o = r(n(62665)), + a = r(n(2001)), + i = r(n(93353)), + s = r(n(7899)), + c = r(n(47776)), + l = r(n(23469)); + function u(e) { + var t = e.label, + n = e.position, + r = e.children, + c = e.className, + u = e.labelFor, + d = e.necessity, + p = e.necessityIndicator, + f = (0, a.default)(e, ["label", "position", "children", "className", "labelFor", "necessity", "necessityIndicator"]); + return l.default.createElement( + s.default, + (0, o.default)( + { + label: t, + className: c, + necessity: d, + necessityIndicator: p, + componentName: "FieldLabel", + labelClassName: (0, i.default)("spectrum-FieldLabel", { "spectrum-FieldLabel--left": "left" === n, "spectrum-FieldLabel--right": "right" === n }), + labelFor: u, + }, + f + ), + r + ); + } + n(86404), + n(57268), + (u.displayName = "FieldLabel"), + (u.propTypes = { + label: c.default.string.isRequired, + position: c.default.oneOf(["left", "right"]), + className: c.default.string, + labelFor: c.default.string, + necessity: c.default.oneOf(["required", "optional"]), + necessityIndicator: c.default.oneOf(["icon", "label"]), + }), + (u.defaultProps = { necessityIndicator: "icon" }); + }, + 7899: (e, t, n) => { + "use strict"; + var r = n(86633); + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = h); + var o = r(n(62665)), + a = r(n(2001)), + i = r(n(86633)), + s = r(n(43286)), + c = r(n(93353)), + l = r(n(82463)), + u = r(n(98606)), + d = n(79370), + p = r(n(23469)), + f = { + "cs-CZ": (0, i.default)(n(23770)).default, + "da-DK": (0, i.default)(n(61774)).default, + "de-DE": (0, i.default)(n(79181)).default, + "en-US": (0, i.default)(n(95315)).default, + "es-ES": (0, i.default)(n(17823)).default, + "fi-FI": (0, i.default)(n(90107)).default, + "fr-FR": (0, i.default)(n(71407)).default, + "hu-HU": (0, i.default)(n(28033)).default, + "it-IT": (0, i.default)(n(1458)).default, + "ja-JP": (0, i.default)(n(77426)).default, + "ko-KR": (0, i.default)(n(21021)).default, + "nb-NO": (0, i.default)(n(45953)).default, + "nl-NL": (0, i.default)(n(30606)).default, + "pl-PL": (0, i.default)(n(40999)).default, + "pt-BR": (0, i.default)(n(28603)).default, + "ru-RU": (0, i.default)(n(86039)).default, + "sv-SE": (0, i.default)(n(14770)).default, + "tr-TR": (0, i.default)(n(10134)).default, + "uk-UA": (0, i.default)(n(60396)).default, + "zh-CN": (0, i.default)(n(56149)).default, + "zh-TW": (0, i.default)(n(94206)).default, + }, + m = (0, d.messageFormatter)(f); + function h(e) { + var t = e.label, + n = e.children, + r = e.className, + i = e.labelClassName, + d = e.wrapperClassName, + f = e.labelFor, + h = e.componentName, + v = e.necessity, + y = e.necessityIndicator, + g = (0, a.default)(e, ["label", "children", "className", "labelClassName", "wrapperClassName", "labelFor", "componentName", "necessity", "necessityIndicator"]), + b = { required: "".concat(t, " ").concat(m("(required)")), optional: "".concat(t, " ").concat(m("(optional)")) }, + E = null; + "icon" === y && "required" === v && (E = p.default.createElement(s.default, { role: "presentation", className: "spectrum-UIIcon-Asterisk spectrum-fieldLabel-requiredIcon", size: "S", alt: m("(required)") })); + var D, + C = p.default.Children.toArray(n), + w = g.id || (0, l.default)(); + if ((delete g.id, 1 === C.length)) { + D = C[0].props.id || (0, l.default)(); + var S = C[0].props["aria-labelledby"] || (t ? w : null); + C[0] = p.default.cloneElement(C[0], { id: D, "aria-labelledby": S }); + } + D && !f && (f = D), f || console.warn("Missing labelFor attribute on ".concat(h, ' with label "').concat(t, '"')); + var A = (0, c.default)(i, 0 === C.length ? r : null), + k = t + ? p.default.createElement("label", (0, o.default)({ className: A, id: w, htmlFor: f }, (0, u.default)(g)), v && "label" === y ? b[v] : t, E && " ", E && E) + : p.default.createElement("div", (0, o.default)({ className: A }, (0, u.default)(g))); + return C.length > 0 ? (d && (C = p.default.createElement("div", { className: d }, C)), p.default.createElement("div", { className: r }, k, C)) : k; + } + h.defaultProps = { necessityIndicator: "icon" }; + }, + 265: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { + d: + "M28.023 4.36A.965.965 0 0 0 27.98 3a.963.963 0 0 0-1.362-.044 1.373 1.373 0 0 0-.118.144l-.012-.015-8.739 8.735.012.016a.68.68 0 0 0-.145.119.995.995 0 0 0 1.4 1.4.916.916 0 0 0 .119-.145l.013.013 8.739-8.738-.015-.013a.847.847 0 0 0 .151-.112zM29.8 5.883c-.721.721-9.538 9.645-9.589 9.7a2.214 2.214 0 0 1-2.362.029l-.767-.725L6.286 25.474a1.5 1.5 0 0 0-.327.48L4.088 32.36a.375.375 0 0 0 .495.491l6.433-1.956a1.5 1.5 0 0 0 .46-.312L33.06 9.079zm1.014-1.711l3.106 2.956a2.78 2.78 0 0 0-.807-3.228 3.3 3.3 0 0 0-3.22-1.06c-.179.064.065.3.138.375s.735.861.783.957zM3.723 27.486c-3.054-9.06.3-16.932 8.725-21.51 1.269-.69.268-2.706-1.009-2.011C2.19 8.992-1.077 17.405 2.286 27.5c1.437 4.314 1.437-.014 1.437-.014z", + }) + ); + }, + 8233: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { + d: + "M37.262 6.224a1.287 1.287 0 0 0-.057-1.816 1.284 1.284 0 0 0-1.816-.059 1.807 1.807 0 0 0-.156.193l-.016-.02-11.652 11.649.016.022a.906.906 0 0 0-.193.158 1.327 1.327 0 0 0 1.873 1.871 1.217 1.217 0 0 0 .158-.193l.018.018L37.089 6.4l-.02-.017a1.146 1.146 0 0 0 .193-.159zm2.369 2.031c-.961.961-12.717 12.859-12.785 12.928a2.951 2.951 0 0 1-3.149.039l-1.023-.967-14.393 14.12a2 2 0 0 0-.436.64L5.35 43.558a.5.5 0 0 0 .66.654l8.578-2.612a2 2 0 0 0 .613-.417l28.778-28.667zm1.354-2.281l4.141 3.941c.506-.949.549-2.678-1.076-4.311a4.4 4.4 0 0 0-4.294-1.414c-.238.086.086.406.184.5s.981 1.155 1.045 1.284zM4.964 36.649c-4.071-12.08.4-22.576 11.634-28.68 1.692-.92.357-3.607-1.346-2.682-12.333 6.7-16.688 17.92-12.2 31.379 1.912 5.753 1.912-.017 1.912-.017z", + }) + ); + }, + 40333: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(265), 24: n(8233) } })); + }; + (s.displayName = "AnnotatePen"), (t.default = s); + }, + 63817: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { + d: + "M29.585 29.5c.249.25.417.583 0 .917l-5.168 3.333c-.417.25-.583.083-.75-.334l-6.416-11.168L8.833 31.5c-.083.167-.334.333-.583 0l-4-4.167c-.417-.25-.334-.5 0-.75l9.5-7.917L2.917 14.58c-.168 0-.417-.333-.251-.75L5.5 8.164A.439.439 0 0 1 6.25 8l9.5 6.167L16.335 2a.438.438 0 0 1 .5-.5l6.917.916c.417 0 .5.167.417.583l-3.25 11.917 11-3.333c.249-.167.5-.167.666.333l1.084 6.167c.083.417 0 .583-.334.583l-11.5.917z", + }) + ); + }, + 11562: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { + d: + "M37.9 37.8c.3.3.5.7 0 1.1l-6.2 4c-.5.3-.7.1-.9-.4l-7.7-13.4L13 40.2c-.1.2-.4.4-.7 0l-4.8-5c-.5-.3-.4-.6 0-.9l11.4-9.5-13-4.9c-.2 0-.5-.4-.3-.9L9 12.2a.526.526 0 0 1 .9-.2l11.4 7.4.7-14.6a.526.526 0 0 1 .6-.6l8.3 1.1c.5 0 .6.2.5.7l-3.9 14.3 13.2-4c.3-.2.6-.2.8.4l1.3 7.4c.1.5 0 .7-.4.7l-13.8 1.1z", + }) + ); + }, + 43286: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(63817), 24: n(11562) } })); + }; + (s.displayName = "Asterisk"), (t.default = s); + }, + 72927: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { + d: + "M24.194 25.154c2.1-.429 6.515-2.615 6.515-9.387 0-7.2-4.844-11.53-11.53-11.53-7.587 0-13.759 5.1-13.759 14.4 0 6.472 2.915 10.93 8.015 13.545a.41.41 0 0 1 .214.386l-.085 2.832c0 .214-.043.214-.214.171A17.33 17.33 0 0 1 2.162 18.81c0-10.116 7.03-17.4 17.145-17.4 8.058 0 14.531 5.229 14.531 14.1 0 8.7-6.387 12.945-13.673 12.945-5.658 0-9.559-3.172-9.559-9.3A9.728 9.728 0 0 1 20.593 9.08a11.4 11.4 0 0 1 4.286.686c.171.043.214.086.214.257zm-2.272-13.116a5.751 5.751 0 0 0-1.757-.214c-3.943 0-6.429 3.129-6.429 7.072 0 3.729 1.972 6.687 6.087 6.687a5.313 5.313 0 0 0 1.329-.129z", + }) + ); + }, + 17025: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { + d: + "M31.737 34.212c2.624-.535 8.138-3.266 8.138-11.725 0-8.995-6.05-14.4-14.4-14.4C16 8.084 8.286 14.455 8.286 26.073c0 8.085 3.641 13.653 10.012 16.919a.513.513 0 0 1 .268.482l-.107 3.534c0 .268-.054.268-.268.214C9.731 43.9 4.217 36.3 4.217 26.288 4.217 13.652 13 4.55 25.633 4.55c10.066 0 18.15 6.532 18.15 17.615 0 10.869-7.978 16.169-17.08 16.169-7.067 0-11.94-3.962-11.94-11.618a12.152 12.152 0 0 1 12.476-12.582 14.239 14.239 0 0 1 5.354.857c.214.054.268.107.268.321zM28.9 17.828a7.183 7.183 0 0 0-2.2-.268c-4.926 0-8.031 3.908-8.031 8.834 0 4.658 2.463 8.352 7.6 8.352a6.636 6.636 0 0 0 1.66-.161z", + }) + ); + }, + 20987: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(72927), 24: n(17025) } })); + }; + (s.displayName = "At"), (t.default = s); + }, + 95611: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { d: "M8 14.02a2 2 0 0 1 3.411-1.411l6.578 6.572 6.578-6.572a2 2 0 0 1 2.874 2.773l-.049.049-7.992 7.984a2 2 0 0 1-2.825 0l-7.989-7.983A1.989 1.989 0 0 1 8 14.02z" }) + ); + }, + 80649: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { d: "M22.585 31.7L11.94 21.05a2 2 0 0 1 0-2.828l.282-.282a2.006 2.006 0 0 1 2.828 0L24 26.888l8.949-8.948a2.006 2.006 0 0 1 2.828 0l.282.282a2 2 0 0 1 0 2.828L25.414 31.7a2 2 0 0 1-2.829 0z" }) + ); + }, + 2736: (e, t, n) => { + "use strict"; + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(95611), 24: n(80649) } })); + }; + (s.displayName = "ChevronDown"), (t.Z = s); + }, + 47885: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { d: "M12 18a1.988 1.988 0 0 0 .585 1.409l7.983 7.98a2 2 0 1 0 2.871-2.772l-.049-.049L16.819 18l6.572-6.57a2 2 0 0 0-2.773-2.87l-.049.049-7.983 7.98A1.988 1.988 0 0 0 12 18z" }) + ); + }, + 90907: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { d: "M16.3 22.585L26.949 11.94a2 2 0 0 1 2.828 0l.282.282a2.006 2.006 0 0 1 0 2.828L21.112 24l8.948 8.949a2.006 2.006 0 0 1 0 2.828l-.282.282a2 2 0 0 1-2.828 0L16.3 25.414a2 2 0 0 1 0-2.829z" }) + ); + }, + 947: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(47885), 24: n(90907) } })); + }; + (s.displayName = "ChevronLeft"), (t.default = s); + }, + 28570: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { d: "M24 18a1.988 1.988 0 0 1-.585 1.409l-7.983 7.98a2 2 0 1 1-2.871-2.772l.049-.049L19.181 18l-6.572-6.57a2 2 0 0 1 2.773-2.87l.049.049 7.983 7.98A1.988 1.988 0 0 1 24 18z" }) + ); + }, + 32463: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { d: "M31.7 25.414L21.05 36.059a2 2 0 0 1-2.828 0l-.282-.282a2.006 2.006 0 0 1 0-2.828L26.888 24l-8.948-8.949a2.006 2.006 0 0 1 0-2.828l.282-.282a2 2 0 0 1 2.828 0L31.7 22.585a2 2 0 0 1 0 2.829z" }) + ); + }, + 30871: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(28570), 24: n(32463) } })); + }; + (s.displayName = "ChevronRight"), (t.default = s); + }, + 44648: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { d: "M28 21.98a2 2 0 0 1-3.411 1.411l-6.578-6.572-6.578 6.572a2 2 0 0 1-2.874-2.773l.049-.049 7.992-7.984a2 2 0 0 1 2.825 0l7.989 7.983A1.989 1.989 0 0 1 28 21.98z" }) + ); + }, + 30703: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { d: "M25.414 16.3l10.645 10.65a2 2 0 0 1 0 2.828l-.282.282a2.006 2.006 0 0 1-2.828 0L24 21.112l-8.95 8.948a2.006 2.006 0 0 1-2.828 0l-.282-.282a2 2 0 0 1 0-2.828L22.585 16.3a2 2 0 0 1 2.829 0z" }) + ); + }, + 18664: (e, t, n) => { + "use strict"; + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(44648), 24: n(30703) } })); + }; + (s.displayName = "ChevronUp"), (t.Z = s); + }, + 38786: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { + d: + "M26.485 6.686L18 15.172 9.515 6.686a1 1 0 0 0-1.414 0L6.686 8.1a1 1 0 0 0 0 1.414L15.172 18l-8.486 8.485a1 1 0 0 0 0 1.414L8.1 29.314a1 1 0 0 0 1.414 0L18 20.828l8.485 8.485a1 1 0 0 0 1.414 0l1.415-1.413a1 1 0 0 0 0-1.414L20.828 18l8.485-8.485a1 1 0 0 0 0-1.414L27.9 6.686a1 1 0 0 0-1.415 0z", + }) + ); + }, + 50717: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { + d: + "M35.314 8.444L24 19.757 12.686 8.444a1 1 0 0 0-1.414 0l-2.828 2.828a1 1 0 0 0 0 1.414L19.757 24 8.444 35.314a1 1 0 0 0 0 1.414l2.828 2.828a1 1 0 0 0 1.414 0L24 28.243l11.314 11.313a1 1 0 0 0 1.414 0l2.828-2.828a1 1 0 0 0 0-1.414L28.243 24l11.313-11.314a1 1 0 0 0 0-1.414l-2.828-2.828a1 1 0 0 0-1.414 0z", + }) + ); + }, + 54781: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(38786), 24: n(50717) } })); + }; + (s.displayName = "Close"), (t.default = s); + }, + 33461: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { + d: + "M27.688 14.026Q27.348 14 27 14a9.001 9.001 0 0 0-7.484 14H3.718A3.92 3.92 0 0 1 0 23.854c0-1.73 1.792-4.261 4.092-4.261a4.815 4.815 0 0 1-.134-1.577 6.254 6.254 0 0 1 6.399-6.075 7.743 7.743 0 0 1 2.098.291c.936-3.166 3.622-6.17 7.607-6.17a7.296 7.296 0 0 1 7.641 7.57c0 .133-.005.264-.015.394z", + }), + r.createElement("path", { + d: + "M26.969 15.813a7.25 7.25 0 1 0 7.25 7.25 7.255 7.255 0 0 0-7.25-7.25zm3.87 9.915a.92.92 0 0 1-.65 1.57.925.925 0 0 1-.65-.27L27.111 24.6l-2.426 2.427a.919.919 0 0 1-1.57-.65.914.914 0 0 1 .27-.65l2.426-2.427-2.393-2.418a.818.818 0 0 1-.307-.589 1.007 1.007 0 0 1 .957-.982.925.925 0 0 1 .65.27L27.111 22l2.393-2.419a.925.925 0 0 1 .65-.27 1.007 1.007 0 0 1 .957.982.818.818 0 0 1-.306.589L28.412 23.3z", + }) + ); + }, + 46948: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { + d: + "M4.946 38H27.61a11.995 11.995 0 0 1 9.98-17.99s-.01-.947-.01-1.476A10.31 10.31 0 0 0 27.124 8c-5.392 0-9.008 4.182-10.274 8.499a10.404 10.404 0 0 0-2.839-.396 8.492 8.492 0 0 0-8.657 8.282 6.627 6.627 0 0 0 .18 2.15C2.426 26.535 0 29.987 0 32.347 0 35.748 1.774 38 4.946 38z", + }), + r.createElement("path", { + d: + "M38 22a10 10 0 1 0 10 10 10.01 10.01 0 0 0-10-10zm5.246 13.416a1.295 1.295 0 0 1-.915 2.211 1.302 1.302 0 0 1-.916-.381L38 33.83l-3.415 3.416a1.293 1.293 0 0 1-2.21-.915 1.286 1.286 0 0 1 .379-.915L36.17 32l-3.37-3.404a1.151 1.151 0 0 1-.43-.828 1.417 1.417 0 0 1 1.346-1.383 1.302 1.302 0 0 1 .916.38L38 30.17l3.368-3.404a1.302 1.302 0 0 1 .916-.381 1.417 1.417 0 0 1 1.346 1.383 1.151 1.151 0 0 1-.43.828L39.83 32z", + }) + ); + }, + 95190: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(33461), 24: n(46948) } })); + }; + (s.displayName = "CloudDisconnected"), (t.default = s); + }, + 89132: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { d: "M28.286 28a5.714 5.714 0 1 0 0-11.429 5.777 5.777 0 0 0-.645.037 7.239 7.239 0 1 0-14.153-2.876 6.1 6.1 0 0 0-7.473 7.461A3.429 3.429 0 1 0 5.43 28z" }) + ); + }, + 29184: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { d: "M38.143 36a7.857 7.857 0 0 0 0-15.714 7.94 7.94 0 0 0-.887.05 9.954 9.954 0 1 0-19.46-3.954A8.386 8.386 0 0 0 7.522 26.64 4.715 4.715 0 1 0 6.714 36z" }) + ); + }, + 60922: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(89132), 24: n(29184) } })); + }; + (s.displayName = "Cloud"), (t.default = s); + }, + 54668: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement("svg", { viewBox: "0 0 36 36" }, r.createElement("path", { d: "M6 4a4 4 0 0 0-4 4v14a4 4 0 0 0 4 4h2v8.793a.5.5 0 0 0 .854.354L18 26h12a4 4 0 0 0 4-4V8a4 4 0 0 0-4-4z" })); + }, + 68745: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement("svg", { viewBox: "0 0 48 48" }, r.createElement("path", { d: "M4 12v18a6 6 0 0 0 6 6h2v9.586a1 1 0 0 0 1.707.707L24 36l13.993-.007a6 6 0 0 0 6.007-6V12a6 6 0 0 0-6-6H10a6 6 0 0 0-6 6z" })); + }, + 41818: (e, t, n) => { + "use strict"; + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(54668), 24: n(68745) } })); + }; + (s.displayName = "Comment"), (t.Z = s); + }, + 56343: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { d: "M17.757 2H7a1 1 0 0 0-1 1v30a1 1 0 0 0 1 1h22a1 1 0 0 0 1-1V14.243a3 3 0 0 0-.879-2.121l-9.242-9.243A3 3 0 0 0 17.757 2zM28 14H18V4h.172L28 13.828zm0 18H8V4h8v11a1 1 0 0 0 1 1h11z" }) + ); + }, + 25441: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { d: "M25.343 4H8a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2h30a2 2 0 0 0 2-2V18.657a4 4 0 0 0-1.172-2.828L28.172 5.172A4 4 0 0 0 25.343 4zM34.5 17H27V9.5zM36 40H10V8h13v11a2 2 0 0 0 2 2h11z" }) + ); + }, + 11900: (e, t, n) => { + "use strict"; + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(56343), 24: n(25441) } })); + }; + (s.displayName = "DocumentOutline"), (t.Z = s); + }, + 24252: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { + d: + "M20.454 8L5.084 23.372a1 1 0 0 0-.251.421L2.055 33.1c-.114.376.459.851.783.851a.274.274 0 0 0 .061-.006c.276-.064 7.867-2.344 9.312-2.779a.981.981 0 0 0 .414-.249L28 15.544zM11.4 29.316c-2.161.649-4.862 1.465-6.729 2.022l2.009-6.73zM33.567 8.2L27.8 2.432a1.214 1.214 0 0 0-.866-.353H26.9a1.371 1.371 0 0 0-.927.406l-4.1 4.1 7.543 7.542 4.1-4.1a1.374 1.374 0 0 0 .4-.883 1.222 1.222 0 0 0-.349-.944z", + }) + ); + }, + 51468: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { + d: + "M43.763 11.621l-7.42-7.382a1.888 1.888 0 0 0-2.649.18L29.4 8.712l9.88 9.88 4.31-4.319a1.886 1.886 0 0 0 .173-2.652zM26.712 11.4L8.82 29.292a2.232 2.232 0 0 0-.521.813L4.115 41.659a1.654 1.654 0 0 0 2.171 2.186L17.9 39.713a2.231 2.231 0 0 0 .826-.526l17.87-17.9zm-9.658 25.745c-3.1 1.116-6.975 2.517-9.652 3.475l3.456-9.653z", + }) + ); + }, + 81852: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(24252), 24: n(51468) } })); + }; + (s.displayName = "Draw"), (t.default = s); + }, + 88397: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { + d: "M14.8 27a13.146 13.146 0 0 1 3.2-8.411c2.083-2.694 11.733-14.972 11.733-14.972A1 1 0 0 0 28.946 2H1.054a1 1 0 0 0-.787 1.617L12 18.589V33.9a.992.992 0 0 0 1.68.825l2.338-2.439A12.131 12.131 0 0 1 14.8 27z", + }), + r.createElement("path", { + d: + "M27 18.1a8.9 8.9 0 1 0 8.9 8.9 8.9 8.9 0 0 0-8.9-8.9zm-2.338 14.312l-4.128-4.127a.5.5 0 0 1 0-.707l1.036-1.036a.5.5 0 0 1 .707 0l2.731 2.731 6.106-6.106a.5.5 0 0 1 .707 0l1.043 1.043a.5.5 0 0 1 0 .707l-7.5 7.5a.5.5 0 0 1-.702-.005z", + }) + ); + }, + 70630: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { + d: "M20.3 36c0-4.157 1.449-7.322 4.265-10.735S39.621 6.388 39.621 6.388A1.464 1.464 0 0 0 38.486 4H1.529A1.464 1.464 0 0 0 .393 6.388l15.686 19.671v18.417a1.464 1.464 0 0 0 2.46 1.073l3.256-2.886A14.465 14.465 0 0 1 20.3 36z", + }), + r.createElement("path", { + d: + "M36 24.1A11.9 11.9 0 1 0 47.9 36 11.9 11.9 0 0 0 36 24.1zm-2.229 19.8l-6.133-6.133a.5.5 0 0 1 0-.707L29.4 35.3a.5.5 0 0 1 .707 0L34 39.188l8.939-8.94a.5.5 0 0 1 .707 0l1.887 1.887a.5.5 0 0 1 0 .707L34.479 43.9a.5.5 0 0 1-.708 0z", + }) + ); + }, + 70697: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(88397), 24: n(70630) } })); + }; + (s.displayName = "FilterCheck"), (t.default = s); + }, + 58426: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { d: "M30.946 2H3.054a1 1 0 0 0-.787 1.617L14 18.589V33.9a.992.992 0 0 0 1.68.825l3.98-4.153a1.221 1.221 0 0 0 .34-.845V18.589L31.733 3.617A1 1 0 0 0 30.946 2z" }) + ); + }, + 39919: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { d: "M42.885 4H5.119a1.464 1.464 0 0 0-1.136 2.388l16.1 19.671v18.417a1.464 1.464 0 0 0 2.46 1.073l4.93-5.445a1.464 1.464 0 0 0 .49-1.093V26.027L44.021 6.388A1.464 1.464 0 0 0 42.885 4z" }) + ); + }, + 31945: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(58426), 24: n(39919) } })); + }; + (s.displayName = "Filter"), (t.default = s); + }, + 73693: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { d: "M33 10H18.625l-5.293-5.39A2 2 0 0 0 11.893 4H2a2 2 0 0 0-2 2v25a1 1 0 0 0 1 1h32a1 1 0 0 0 1-1V11a1 1 0 0 0-1-1zM11.893 6l3.929 4H2V6zM32 30H2V12h30z" }) + ); + }, + 33670: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { d: "M44 12H22l-3.9-5.2a2 2 0 0 0-1.6-.8H4a2 2 0 0 0-2 2v32a2 2 0 0 0 2 2h40a2 2 0 0 0 2-2V14a2 2 0 0 0-2-2zM6 10h10l2.963 4H6zm36 28H6V16h36z" }) + ); + }, + 50626: (e, t, n) => { + "use strict"; + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(73693), 24: n(33670) } })); + }; + (s.displayName = "FolderOutline"), (t.Z = s); + }, + 94577: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { + d: + "M18 2a16 16 0 1 0 16 16A16 16 0 0 0 18 2zm-.3 4.3a2.718 2.718 0 0 1 2.864 2.824 2.665 2.665 0 0 1-2.864 2.863 2.706 2.706 0 0 1-2.864-2.864A2.717 2.717 0 0 1 17.7 6.3zM22 27a1 1 0 0 1-1 1h-6a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h1v-6h-1a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v9h1a1 1 0 0 1 1 1z", + }) + ); + }, + 47530: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { + d: + "M24 4.1A19.9 19.9 0 1 0 43.9 24 19.9 19.9 0 0 0 24 4.1zm-.3 6.2a2.718 2.718 0 0 1 2.864 2.824 2.665 2.665 0 0 1-2.864 2.863 2.706 2.706 0 0 1-2.864-2.864A2.717 2.717 0 0 1 23.7 10.3zM28 35a1 1 0 0 1-1 1h-6a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h1v-8h-1a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v11h1a1 1 0 0 1 1 1z", + }) + ); + }, + 31142: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(94577), 24: n(47530) } })); + }; + (s.displayName = "Info"), (t.default = s); + }, + 1396: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { + d: + "M24.514 2a.5.5 0 0 0-.353.854l3.181 3.174-6.988 6.988a.5.5 0 0 0 0 .707l1.923 1.923a.5.5 0 0 0 .707 0l6.991-6.991 3.172 3.166a.5.5 0 0 0 .853-.354V2zM11.486 34a.5.5 0 0 0 .353-.854l-3.181-3.174 6.988-6.988a.5.5 0 0 0 0-.707l-1.923-1.923a.5.5 0 0 0-.707 0l-6.991 6.99-3.171-3.165a.5.5 0 0 0-.854.354V34z", + }) + ); + }, + 40415: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { + d: + "M31.352 4a.667.667 0 0 0-.471 1.139l4.242 4.233-9.323 9.316a.667.667 0 0 0 0 .943l2.568 2.569a.667.667 0 0 0 .943 0l9.322-9.321 4.229 4.221A.667.667 0 0 0 44 16.623V4zM16.648 44a.667.667 0 0 0 .471-1.139l-4.242-4.233 9.323-9.316a.667.667 0 0 0 0-.943L19.632 25.8a.667.667 0 0 0-.943 0l-9.322 9.326L5.138 30.9A.667.667 0 0 0 4 31.377V44z", + }) + ); + }, + 11495: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(1396), 24: n(40415) } })); + }; + (s.displayName = "Maximize"), (t.default = s); + }, + 31511: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { + d: + "M6.513 20a.5.5 0 0 0-.353.854l3.182 3.175-6.988 6.987a.5.5 0 0 0 0 .707l1.923 1.923a.5.5 0 0 0 .707 0l6.991-6.991 3.172 3.166a.5.5 0 0 0 .853-.354V20zm22.974-4a.5.5 0 0 0 .353-.854l-3.182-3.175 6.988-6.988a.5.5 0 0 0 0-.707l-1.922-1.922a.5.5 0 0 0-.707 0l-6.992 6.99-3.171-3.165a.5.5 0 0 0-.854.354V16z", + }) + ); + }, + 55986: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { + d: + "M9.352 26a.667.667 0 0 0-.471 1.139l4.242 4.233L3.8 40.688a.667.667 0 0 0 0 .943L6.368 44.2a.667.667 0 0 0 .943 0l9.322-9.321 4.229 4.221A.667.667 0 0 0 22 38.623V26zm29.296-6a.667.667 0 0 0 .471-1.139l-4.242-4.233L44.2 5.312a.667.667 0 0 0 0-.943L41.632 1.8a.667.667 0 0 0-.943 0l-9.322 9.321L27.138 6.9A.667.667 0 0 0 26 7.377V20z", + }) + ); + }, + 42748: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(31511), 24: n(55986) } })); + }; + (s.displayName = "Minimize"), (t.default = s); + }, + 53181: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("circle", { cx: "18", cy: "18", r: "4.1" }), + r.createElement("circle", { cx: "30", cy: "18", r: "4.1" }), + r.createElement("circle", { cx: "6", cy: "18", r: "4.1" }) + ); + }, + 30592: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("circle", { cx: "24", cy: "24", r: "6" }), + r.createElement("circle", { cx: "42", cy: "24", r: "6" }), + r.createElement("circle", { cx: "6", cy: "24", r: "6" }) + ); + }, + 63099: (e, t, n) => { + "use strict"; + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(53181), 24: n(30592) } })); + }; + (s.displayName = "More"), (t.Z = s); + }, + 38226: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { + d: + "M11.646 21.998l2.379 2.381L3.924 34.406 0 36l1.645-3.975 10.001-10.027zm12.305 4.322h.008L24 20.289 32.293 12l2.27-.023.006-.009a1.446 1.446 0 0 0 1.01-2.47L31.041 4.96 26.5.483a1.445 1.445 0 0 0-2.469 1.011h-.008L24 3.708 15.707 12l-6.025.044v.007a1.44 1.44 0 0 0-1.106 2.461l6.459 6.458 6.457 6.459a1.442 1.442 0 0 0 2.463-1.107z", + }) + ); + }, + 83714: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { + d: + "M16.375 28.719l2.938 2.937L6.844 44.031 2 46l2.031-4.906 12.344-12.375zm15.186 5.334h.01l.051-7.441 10.235-10.235 2.8-.03.006-.011a1.784 1.784 0 0 0 1.248-3.048l-5.6-5.6-5.6-5.6a1.784 1.784 0 0 0-3.047 1.248h-.01l-.033 2.8-10.232 10.242-7.439.054v.009a1.761 1.761 0 0 0-1.363.511 1.784 1.784 0 0 0 0 2.526l7.971 7.972 7.969 7.971a1.779 1.779 0 0 0 3.039-1.367z", + }) + ); + }, + 2255: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(38226), 24: n(83714) } })); + }; + (s.displayName = "PinOff"), (t.default = s); + }, + 83386: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { d: "M33.191 5.113L1.8 14.478a.5.5 0 0 0-.08.926l7.92 3.954zM13.089 21.032l11.937 6a1 1 0 0 0 1.344-.446l9.266-20.222zM10.08 23.25v7.639a.713.713 0 0 0 1.174.544l5.36-4.516z" }) + ); + }, + 91402: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { d: "M44.194 6.424L2 19a1.065 1.065 0 0 0-.191 1.978l9.669 4.834zM16.078 28.042l16.149 8.143a1.065 1.065 0 0 0 1.445-.511L47.455 8.091zM12.066 31v10.185a.95.95 0 0 0 1.565.725l7.147-6.021z" }) + ); + }, + 70449: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(83386), 24: n(91402) } })); + }; + (s.displayName = "Send"), (t.default = s); + }, + 36274: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { + d: + "M18 2a16 16 0 1 0 16 16A16 16 0 0 0 18 2zm-5.635 6.534c1.657 0 3 1.679 3 3.75s-1.343 3.75-3 3.75-3-1.679-3-3.75 1.343-3.75 3-3.75zm11.108-.1c1.657 0 3 1.679 3 3.75s-1.343 3.75-3 3.75-3-1.679-3-3.75 1.343-3.752 3-3.752zM18 28.04c-5.033 0-9.556-3.633-10-8.14h20c-.444 4.507-4.967 8.14-10 8.14z", + }) + ); + }, + 95152: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { + d: + "M24 4.1A19.9 19.9 0 1 0 43.9 24 19.9 19.9 0 0 0 24 4.1zm7 7.9c1.767 0 3.2 1.791 3.2 4s-1.433 4-3.2 4-3.2-1.791-3.2-4 1.433-4 3.2-4zm-14 0c1.767 0 3.2 1.791 3.2 4s-1.433 4-3.2 4-3.2-1.791-3.2-4 1.433-4 3.2-4zm7 24c-6.259 0-11.393-4.494-11.945-10.1h23.89C35.393 31.506 30.259 36 24 36z", + }) + ); + }, + 67217: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(36274), 24: n(95152) } })); + }; + (s.displayName = "SentimentPositive"), (t.default = s); + }, + 63392: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { d: "M24.476 7.165L18 0l-6.46 7.165a.5.5 0 0 0 .371.835H16v11.5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5V8h4.1a.5.5 0 0 0 .376-.835z" }), + r.createElement("path", { d: "M33 8h-6.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5H30v16H6V12h3.5a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5H3a1 1 0 0 0-1 1v22a1 1 0 0 0 1 1h30a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1z" }) + ); + }, + 11643: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { d: "M45 12h-6.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5H42v22H6V16h3.5a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5H3a1 1 0 0 0-1 1v28a1 1 0 0 0 1 1h42a1 1 0 0 0 1-1V13a1 1 0 0 0-1-1z" }), + r.createElement("path", { d: "M33.722 10.331L24 0l-9.708 10.331A1 1 0 0 0 15.035 12H20v13.5a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5V12h4.979a1 1 0 0 0 .743-1.669z" }) + ); + }, + 56805: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(63392), 24: n(11643) } })); + }; + (s.displayName = "Share"), (t.default = s); + }, + 47155: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { + d: "M23 28h-3v-6h-4v6h-3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1zm8-24H5a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V8h8v8h4V8h8v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1z", + }), + r.createElement("path", { + d: "M23 28h-3v-6h-4v6h-3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1zm8-24H5a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V8h8v8h4V8h8v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1z", + }), + r.createElement("rect", { height: "2", rx: ".5", ry: ".5", width: "28", x: "4", y: "18" }) + ); + }, + 20583: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("rect", { height: "4", rx: ".5", ry: ".5", width: "34", x: "6", y: "22" }), + r.createElement("path", { + d: "M29 38h-3v-8h-6v8h-3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1zm9-32H8a2 2 0 0 0-2 2v7a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-5h10v8h6v-8h10v5a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V8a2 2 0 0 0-2-2z", + }) + ); + }, + 12839: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(47155), 24: n(20583) } })); + }; + (s.displayName = "TextStrikethrough"), (t.default = s); + }, + 61814: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { + d: + "M15 27a12 12 0 0 1 9.529-11.743A11.557 11.557 0 0 0 25.388 11c0-5.547-2.942-8.647-7.387-8.647s-7.47 3.222-7.47 8.647a11.874 11.874 0 0 0 2.8 7.329 1.539 1.539 0 0 1 .392.993v2.214a1.528 1.528 0 0 1-1.333 1.542c-8.931.777-10.326 6.886-10.326 9.3 0 .268.031 1.321.051 1.585h15.122A11.933 11.933 0 0 1 15 27z", + }), + r.createElement("path", { + d: + "M27 18.1a8.9 8.9 0 1 0 8.9 8.9 8.9 8.9 0 0 0-8.9-8.9zm5 9.4a.5.5 0 0 1-.5.5H28v3.5a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5V28h-3.5a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5H26v-3.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5V26h3.5a.5.5 0 0 1 .5.5z", + }) + ); + }, + 81148: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { + d: + "M20.5 36a15.493 15.493 0 0 1 10.4-14.622 18.66 18.66 0 0 0 1.689-7.465c0-7-3.419-10.3-8.585-10.3s-8.683 3.456-8.683 10.3a17.633 17.633 0 0 0 3.253 9.86 2.038 2.038 0 0 1 .455 1.253v2.794a1.888 1.888 0 0 1-1.549 1.946C6.182 30.881 4 38.96 4 42c0 .338.037 1.667.06 2h18.683a15.405 15.405 0 0 1-2.243-8z", + }), + r.createElement("path", { + d: + "M36 24.1A11.9 11.9 0 1 0 47.9 36 11.9 11.9 0 0 0 36 24.1zm8 13.4a.5.5 0 0 1-.5.5H38v5.5a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5V38h-5.5a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5H34v-5.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5V34h5.5a.5.5 0 0 1 .5.5z", + }) + ); + }, + 52472: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(61814), 24: n(81148) } })); + }; + (s.displayName = "UserAdd"), (t.default = s); + }, + 61256: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { + d: + "M19.011 20.333v-2.084a1.442 1.442 0 0 1 .367-.93 11 11 0 0 0 2.5-6.866c0-5.2-2.756-8.1-6.919-8.1s-7 3.018-7 8.1a11.121 11.121 0 0 0 2.622 6.865 1.442 1.442 0 0 1 .367.93v2.074A1.431 1.431 0 0 1 9.7 21.768C1.338 22.5.031 28.218.031 30.474c0 .251.03 3.237.048 3.484h29.842s.026-3.234.026-3.484c0-2.163-1.478-7.864-9.691-8.7a1.437 1.437 0 0 1-1.245-1.441z", + }), + r.createElement("path", { + d: + "M27.374 19.534a1.342 1.342 0 0 1-1.16-1.346v-1.013a1.531 1.531 0 0 1 .342-.867 12.144 12.144 0 0 0 1.869-6.4c0-4.354-2.57-7.552-6.452-7.552-.232 0-.445.042-.668.062a10.931 10.931 0 0 1 2.974 8.037 13.46 13.46 0 0 1-2.869 8.171v.874c8.622 1.281 10.936 7.667 10.936 10.972 0 .108 0 .768-.01 1.484h3.586s.024-3.15.024-3.384a9.564 9.564 0 0 0-8.572-9.038z", + }) + ); + }, + 34646: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { + d: + "M24.025 28.479v-2.694a1.958 1.958 0 0 1 .438-1.2 16.805 16.805 0 0 0 2.98-9.465c0-6.72-3.283-9.89-8.242-9.89s-8.336 3.317-8.336 9.89a16.925 16.925 0 0 0 3.126 9.469 1.948 1.948 0 0 1 .434 1.2v2.683a1.947 1.947 0 0 1-1.67 1.887C2.071 31.494 0 38.7 0 41.6V44h38v-2.4c0-2.782-1.59-10.024-12.319-11.235a1.949 1.949 0 0 1-1.656-1.886z", + }), + r.createElement("path", { + d: + "M36.559 27.851a1.755 1.755 0 0 1-1.5-1.7v-2.422a1.762 1.762 0 0 1 .394-1.083 15.125 15.125 0 0 0 2.682-8.519c0-6.048-2.954-8.9-7.418-8.9a8.337 8.337 0 0 0-2.289.338c1.729 2.17 2.851 5.273 2.851 9.552a20.732 20.732 0 0 1-3.417 11.32v.369C37.706 28.6 41.816 35.42 42 40h6v-2.4c0-2.5-1.787-8.664-11.441-9.749z", + }) + ); + }, + 94758: (e, t, n) => { + "use strict"; + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(61256), 24: n(34646) } })); + }; + (s.displayName = "UserGroup"), (t.Z = s); + }, + 40386: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { d: "M35.338 32.3L23.865 20.824a12.013 12.013 0 1 0-3.04 3.04L32.3 35.338a2.155 2.155 0 0 0 3.04-3.04zM4 14a10 10 0 1 1 10 10A10 10 0 0 1 4 14z" }), + r.createElement("path", { d: "M19.5 12H16V8.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5V12H8.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5H12v3.5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5V16h3.5a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5z" }) + ); + }, + 81330: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { d: "M4 20a16 16 0 0 0 24.991 13.233l9.888 9.888a3 3 0 0 0 4.242-4.242l-9.888-9.888A16 16 0 1 0 4 20zm3.9 0A12.1 12.1 0 1 1 20 32.1 12.114 12.114 0 0 1 7.9 20z" }), + r.createElement("path", { d: "M27 18h-5v-5a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v5h-5a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h5v5a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-5h5a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1z" }) + ); + }, + 49943: (e, t, n) => { + "use strict"; + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(40386), 24: n(81330) } })); + }; + (s.displayName = "ZoomIn"), (t.Z = s); + }, + 31964: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 36 36" }, + r.createElement("path", { d: "M35.338 32.3L23.865 20.824a12.013 12.013 0 1 0-3.04 3.04L32.3 35.338a2.155 2.155 0 0 0 3.04-3.04zM4 14a10 10 0 1 1 10 10A10 10 0 0 1 4 14z" }), + r.createElement("rect", { height: "4", rx: ".5", ry: ".5", width: "12", x: "8", y: "12" }) + ); + }, + 91123: (e, t, n) => { + "use strict"; + var r = n(23469); + e.exports = r.createElement( + "svg", + { viewBox: "0 0 48 48" }, + r.createElement("path", { d: "M4 20a16 16 0 0 0 24.991 13.233l9.888 9.888a3 3 0 0 0 4.242-4.242l-9.888-9.888A16 16 0 1 0 4 20zm3.9 0A12.1 12.1 0 1 1 20 32.1 12.114 12.114 0 0 1 7.9 20z" }), + r.createElement("rect", { height: "4", rx: "1", ry: "1", width: "16", x: "12", y: "18" }) + ); + }, + 54376: (e, t, n) => { + "use strict"; + var r = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }, + o = i(n(93140)), + a = i(n(23469)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + var s = function (e) { + return a.default.createElement(o.default, r({}, e, { icon: { 18: n(31964), 24: n(91123) } })); + }; + (s.displayName = "ZoomOut"), (t.Z = s); + }, + 1335: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = a(n(93140)), + o = a(n(23469)); + function a(e) { + return e && e.__esModule ? e : { default: e }; + } + var i = function (e) { + return o.default.createElement( + r.default, + e, + o.default.createElement( + "svg", + { className: "spectrum-UIIcon-AlertMedium" }, + o.default.createElement("path", { + d: + "M8.564 1.289L.2 16.256A.5.5 0 0 0 .636 17h16.728a.5.5 0 0 0 .5-.5.494.494 0 0 0-.064-.244L9.436 1.289a.5.5 0 0 0-.872 0zM10 14.75a.25.25 0 0 1-.25.25h-1.5a.25.25 0 0 1-.25-.25v-1.5a.25.25 0 0 1 .25-.25h1.5a.25.25 0 0 1 .25.25zm0-3a.25.25 0 0 1-.25.25h-1.5a.25.25 0 0 1-.25-.25v-6a.25.25 0 0 1 .25-.25h1.5a.25.25 0 0 1 .25.25z", + className: "spectrum-UIIcon--medium", + }), + o.default.createElement("path", { + d: + "M10.563 2.206l-9.249 16.55a.5.5 0 0 0 .436.744h18.5a.5.5 0 0 0 .5-.5.494.494 0 0 0-.064-.244l-9.251-16.55a.5.5 0 0 0-.872 0zM12 17.25a.25.25 0 0 1-.25.25h-1.5a.25.25 0 0 1-.25-.25v-1.5a.25.25 0 0 1 .25-.25h1.5a.25.25 0 0 1 .25.25zm0-3.5a.25.25 0 0 1-.25.25h-1.5a.25.25 0 0 1-.25-.25v-6a.25.25 0 0 1 .25-.25h1.5a.25.25 0 0 1 .25.25z", + className: "spectrum-UIIcon--large", + }) + ) + ); + }; + (i.displayName = "AlertMedium"), (t.default = i); + }, + 97931: (e, t, n) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }); + var r = a(n(93140)), + o = a(n(23469)); + function a(e) { + return e && e.__esModule ? e : { default: e }; + } + var i = function (e) { + return o.default.createElement( + r.default, + e, + o.default.createElement( + "svg", + { className: "spectrum-UIIcon-CrossLarge" }, + o.default.createElement("path", { + d: "M11.7 10.283L7.414 6 11.7 1.717A1 1 0 1 0 10.283.3L6 4.586 1.717.3A1 1 0 1 0 .3 1.717L4.586 6 .3 10.283A1 1 0 1 0 1.717 11.7L6 7.414l4.283 4.286a1 1 0 1 0 1.417-1.417z", + className: "spectrum-UIIcon--medium", + }), + o.default.createElement("path", { + d: "M15.7 14.283L9.414 8 15.7 1.717A1 1 0 1 0 14.283.3L8 6.586 1.717.3A1 1 0 1 0 .3 1.717L6.586 8 .3 14.283A1 1 0 1 0 1.717 15.7L8 9.414l6.283 6.286a1 1 0 1 0 1.417-1.417z", + className: "spectrum-UIIcon--large", + }) + ) + ); + }; + (i.displayName = "CrossLarge"), (t.default = i); + }, + 60690: (e, t, n) => { + e.exports = n(93140); + }, + 93140: (e, t, n) => { + "use strict"; + var r = n(86633); + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = d); + var o = r(n(17555)), + a = r(n(2001)), + i = r(n(93353)), + s = r(n(47776)), + c = r(n(23469)); + function l(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + n(45337); + var u = { XXS: 18, XS: 24, S: 18, M: 24, L: 18, XL: 24, XXL: 24 }; + function d(e) { + var t = e.icon, + n = e.size, + r = void 0 === n ? "M" : n, + s = e.className, + d = e.children, + p = e["aria-label"], + f = e["aria-hidden"], + m = e.role, + h = void 0 === m ? "img" : m, + v = e.alt, + y = (0, a.default)(e, ["icon", "size", "className", "children", "aria-label", "aria-hidden", "role", "alt"]), + g = u[r], + b = (t && t[g]) || t || d; + if ("string" == typeof b) throw new Error("String icon names are deprecated. Please import icons from react-spectrum/Icon/IconName and render as ."); + return ( + (f && "false" !== f) || (f = void 0), + c.default.cloneElement( + b, + (function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? l(Object(n), !0).forEach(function (t) { + (0, o.default)(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : l(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + })({ focusable: "false", "aria-label": p || v, "aria-hidden": (!p && !v) || f, role: h, className: (0, i.default)(b.props.className, "spectrum-Icon", (0, o.default)({}, "spectrum-Icon--size".concat(r), r), s) }, y) + ) + ); + } + (d.displayName = "Icon"), (d.propTypes = { size: s.default.string }); + }, + 54758: (e, t, n) => { + "use strict"; + var r = n(86633), + o = n(43061); + Object.defineProperty(t, "__esModule", { value: !0 }), (t.modalManager = t.Modal = t.default = void 0); + var a, + i, + s = r(n(19854)), + c = r(n(33470)), + l = r(n(23170)), + u = r(n(15270)), + d = r(n(62665)), + p = r(n(17555)), + f = r(n(2001)), + m = r(n(2400)), + h = r(n(80034)), + v = r(n(4837)), + y = r(n(74942)), + g = n(78742), + b = r(n(93353)), + E = r(n(8531)), + D = r(n(98606)), + C = r(n(9804)), + w = r(n(51113)), + S = r(n(23257)), + A = o(n(23469)), + k = r(n(23613)); + function _(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + n(19353), n(48327); + var T = ["onBackdropClick", "onEnter", "onEntering", "onEntered", "onEscapeKeyDown", "onExit", "onExiting", "onExited", "onHide", "onShow"], + I = new C.default({ handleContainerOverflow: !1 }); + t.modalManager = I; + var O = 1, + F = (function () { + function e() { + (0, m.default)(this, e); + } + return ( + (0, h.default)(e, null, [ + { + key: "show", + value: function (e, t, n) { + var r = O++; + !n && t + ? (n = function () { + return (0, E.default)(k.default.findDOMNode(t), ".react-spectrum-provider"); + }) + : n || + (n = function () { + return document.querySelector(".react-spectrum-provider") || document.body; + }); + var o = e.props, + a = o.disableEscKey, + i = o.role, + s = o.onClose, + c = o.onHide, + l = o.onExited, + u = (0, f.default)(o, ["disableEscKey", "role", "onClose", "onHide", "onExited"]); + (i = i && -1 !== i.indexOf("dialog") ? "presentation" : "dialog"), + (u = T.reduce(function (e, t) { + return (function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? _(Object(n), !0).forEach(function (t) { + (0, p.default)(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : _(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + })({}, e, (0, p.default)({}, t, u[t])); + }, {})); + var m = A.default.createElement(x, (0, d.default)({}, u, { container: n, key: r, keyboard: !a, role: i, onClose: s, onHide: (0, g.chain)(this.hide.bind(this, r), c, l) }), e); + return S.default.add(m, t), r; + }, + }, + { + key: "hide", + value: function (e) { + S.default.remove({ key: e }); + }, + }, + ]), + e + ); + })(); + t.default = F; + var x = + (0, v.default)( + ((i = (function (e) { + function t() { + var e, n; + (0, m.default)(this, t); + for (var r = arguments.length, o = new Array(r), a = 0; a < r; a++) o[a] = arguments[a]; + return (n = (0, s.default)(this, (e = (0, c.default)(t)).call.apply(e, [this].concat(o)))), (0, p.default)((0, l.default)(n), "state", { show: !0 }), n; + } + return ( + (0, u.default)(t, e), + (0, h.default)(t, [ + { + key: "onClose", + value: function () { + this.setState({ show: !1 }), this.props.onClose && this.props.onClose(); + }, + }, + { + key: "onEntering", + value: function (e) { + var t = this; + this.props.onEntering && this.props.onEntering(e), + cancelAnimationFrame(this._autoFocusRAF), + (this._autoFocusRAF = requestAnimationFrame(function () { + if (t.baseModal && t.baseModal.dialog) { + var e = k.default.findDOMNode(t.baseModal.dialog); + (e !== document.activeElement || (e && !e.contains(document.activeElement))) && t.baseModal.autoFocus(), + clearTimeout(t._autoFocusTimeout), + (t._autoFocusTimeout = setTimeout(function () { + document.activeElement === e && (e.blur(), e.focus()); + }, 500)); + } + })); + }, + }, + { + key: "backdropMode", + value: function () { + var e = this.props.children.props, + t = "static"; + return e.backdropClickable && (t = !0), "fullscreenTakeover" === e.mode && (t = !1), t; + }, + }, + { + key: "render", + value: function () { + var e = this, + t = this.backdropMode(), + n = this.props, + r = n.children, + o = n.onHide, + a = (0, f.default)(n, ["children", "onHide"]); + return A.default.createElement( + y.default, + (0, d.default)({}, a, { + style: { zIndex: 1e5, position: "relative" }, + show: this.state.show, + ref: function (t) { + return (e.baseModal = t); + }, + onEntering: this.onEntering, + onExited: o, + onHide: this.onClose, + backdrop: t, + manager: I, + renderBackdrop: function (e) { + return A.default.createElement(N, e); + }, + transition: w.default, + backdropTransition: w.default, + }), + (0, A.cloneElement)(r, { onClose: this.onClose }) + ); + }, + }, + ]), + t + ); + })(A.default.Component)), + (a = i)) + ) || a; + t.Modal = x; + var N = (function (e) { + function t() { + return (0, m.default)(this, t), (0, s.default)(this, (0, c.default)(t).apply(this, arguments)); + } + return ( + (0, u.default)(t, e), + (0, h.default)(t, [ + { + key: "render", + value: function () { + var e = this.props, + t = e.open, + n = (0, f.default)(e, ["open"]); + return A.default.createElement("div", (0, d.default)({}, (0, D.default)(n), { className: (0, b.default)("spectrum-Underlay", { "is-open": t }) })); + }, + }, + ]), + t + ); + })(A.default.Component); + }, + 9804: (e, t, n) => { + "use strict"; + var r = n(86633); + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var o = r(n(2400)), + a = r(n(80034)), + i = r(n(19854)), + s = r(n(33470)), + c = r(n(23170)), + l = r(n(15270)), + u = r(n(17555)), + d = (function (e) { + function t() { + var e, n; + (0, o.default)(this, t); + for (var r = arguments.length, a = new Array(r), l = 0; l < r; l++) a[l] = arguments[l]; + return ( + (n = (0, i.default)(this, (e = (0, s.default)(t)).call.apply(e, [this].concat(a)))), + (0, u.default)((0, c.default)(n), "overflowMap", new Map()), + (0, u.default)((0, c.default)(n), "superAdd", n.add), + (0, u.default)((0, c.default)(n), "superRemove", n.remove), + (0, u.default)((0, c.default)(n), "add", function (e, t, r, o) { + n.superAdd(e, t, r), n.hideBodyOverflow(e, o); + }), + (0, u.default)((0, c.default)(n), "hideBodyOverflow", function (e, t) { + var r = getComputedStyle(document.body).overflow; + t || "hidden" === r || (n.overflowMap.set(e, r), (document.body.style.overflow = "hidden")); + }), + (0, u.default)((0, c.default)(n), "remove", function (e, t, r) { + n.superRemove(e, t, r), n.resetBodyOverflow(e); + }), + (0, u.default)((0, c.default)(n), "resetBodyOverflow", function (e) { + n.overflowMap.has(e) && ((document.body.style.overflow = n.overflowMap.get(e)), n.overflowMap.delete(e)); + }), + n + ); + } + return ( + (0, l.default)(t, e), + (0, a.default)(t, [ + { + key: "addToModal", + value: function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] && arguments[1], + n = this.hideSiblingNodes; + (this.hideSiblingNodes = !1), this.add(e, document.body, null, t), (this.hideSiblingNodes = n); + }, + }, + { + key: "removeFromModal", + value: function (e) { + var t = this.hideSiblingNodes; + (this.hideSiblingNodes = !1), this.remove(e), (this.hideSiblingNodes = t); + }, + }, + ]), + t + ); + })(r(n(23509)).default); + t.default = d; + }, + 26662: (e, t, n) => { + e.exports = n(40151); + }, + 73549: (e, t, n) => { + "use strict"; + var r = n(86633); + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var o, + a, + i, + s = r(n(2400)), + c = r(n(80034)), + l = r(n(19854)), + u = r(n(33470)), + d = r(n(15270)), + p = r(n(17555)), + f = r(n(4837)), + m = r(n(8531)), + h = r(n(81994)), + v = r(n(51113)), + y = r(n(93411)), + g = r(n(72807)), + b = r(n(70946)), + E = r(n(23469)), + D = r(n(23613)), + C = r(n(14227)); + function w(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function S(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? w(Object(n), !0).forEach(function (t) { + (0, p.default)(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : w(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + var A = new Map(), + k = + (0, h.default)( + (o = + (0, f.default)( + ((i = a = (function (e) { + function t(e) { + var n; + return (0, s.default)(this, t), ((n = (0, l.default)(this, (0, u.default)(t).call(this, e))).state = { exited: !n.props.show }), n; + } + return ( + (0, d.default)(t, e), + (0, c.default)(t, [ + { + key: "componentDidMount", + value: function () { + this.setState({ targetNode: D.default.findDOMNode(this.props.target) }), (this.mounted = !0), this.addOverlay(); + }, + }, + { + key: "componentWillUnmount", + value: function () { + (this.mounted = !1), this.removeOverlay(); + }, + }, + { + key: "addOverlay", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : this.props, + t = this.overlayBucketKey, + n = A.get(t); + n || (A.set(t, []), (n = A.get(t))), e.show && this.mounted && !n.includes(this) && n.push(this); + }, + }, + { + key: "removeOverlay", + value: function () { + var e = A.get(this.overlayBucketKey), + t = e.indexOf(this); + t >= 0 && e.splice(t, 1); + }, + }, + { + key: "UNSAFE_componentWillReceiveProps", + value: function (e) { + e.target && e.target !== this.props.target && this.setState(S({}, this.state, { targetNode: D.default.findDOMNode(e.target) })); + }, + }, + { + key: "onEntered", + value: function () { + var e; + this.setState(S({}, this.state, { exited: !1 })), this.addOverlay(), this.props.onEntered && (e = this.props).onEntered.apply(e, arguments); + }, + }, + { + key: "onExited", + value: function () { + var e; + this.setState(S({}, this.state, { exited: !0 })), this.removeOverlay(), this.props.onExited && (e = this.props).onExited.apply(e, arguments); + }, + }, + { + key: "getOverlayContainer", + value: function (e) { + var t = (0, m.default)(this.state.targetNode, ".react-spectrum-provider"); + return this.props.container || t; + }, + }, + { + key: "hide", + value: function (e) { + var t = A.get(this.overlayBucketKey); + t[t.length - 1] === this && this.props.onHide && this.props.onHide(e); + }, + }, + { + key: "render", + value: function () { + var e = this, + t = this.props, + n = t.containerPadding, + r = t.target, + o = t.container, + a = void 0 === o ? this.getOverlayContainer(r) : o, + i = t.placement, + s = t.offset, + c = t.crossOffset, + l = t.flip, + u = t.boundariesElement, + d = + void 0 === u + ? function () { + return (0, y.default)(e).body; + } + : u, + p = t.shouldUpdatePosition, + f = t.rootClose, + m = t.children, + h = t.show, + D = t.onExit, + w = t.onExiting, + S = t.onEnter, + A = t.onEntering; + if (!h && this.state.exited) return null; + var k = m; + return ( + (k = E.default.createElement(b.default, { container: a, containerPadding: n, target: r, placement: i, shouldUpdatePosition: p, offset: s, crossOffset: c, flip: l, boundariesElement: d }, k)), + (k = E.default.createElement(v.default, { in: h, appear: !0, onExit: D, onExiting: w, onExited: this.onExited, onEnter: S, onEntering: A, onEntered: this.onEntered }, k)), + f && (k = E.default.createElement(C.default, { onRootClose: this.hide }, k)), + E.default.createElement(g.default, { container: a }, k) + ); + }, + }, + { + key: "overlayBucketKey", + get: function () { + var e = this.props.children; + return e && e.props && "tooltip" === e.props.role ? "tooltip" : "all"; + }, + }, + ]), + t + ); + })(E.default.Component)), + (0, p.default)(a, "defaultProps", { placement: "left" }), + (o = i)) + ) || o) + ) || o; + t.default = k; + }, + 40151: (e, t, n) => { + "use strict"; + var r = n(86633), + o = n(43061); + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var a, + i, + s, + c = r(n(59395)), + l = r(n(85199)), + u = r(n(62665)), + d = r(n(2001)), + p = r(n(2400)), + f = r(n(80034)), + m = r(n(19854)), + h = r(n(33470)), + v = r(n(23170)), + y = r(n(15270)), + g = r(n(17555)), + b = r(n(4837)), + E = n(78742), + D = r(n(81994)), + C = r(n(82463)), + w = r(n(98606)), + S = n(54758), + A = r(n(73549)), + k = r(n(93411)), + _ = r(n(47776)), + T = o(n(23469)), + I = r(n(23613)); + function O(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function F(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? O(Object(n), !0).forEach(function (t) { + (0, g.default)(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : O(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + var x = _.default.oneOf(["click", "longClick", "hover", "focus"]); + function N(e, t) { + return Array.isArray(t) ? t.indexOf(e) >= 0 : e === t; + } + var R = + (0, D.default)( + (a = + (0, b.default)( + ((s = i = (function (e) { + function t(e, n) { + var r; + return ( + (0, p.default)(this, t), + (r = (0, m.default)(this, (0, h.default)(t).call(this, e, n))), + (0, g.default)((0, v.default)(r), "onMouseDown", function (e) { + if (!r.props.disabled && 0 === e.button) { + var t = e.currentTarget; + r.longPressTimeout = setTimeout(function () { + (r.longPressTimeout = null), (r._lastFocus = t), r.show(e); + }, 250); + } + }), + (0, g.default)((0, v.default)(r), "onMouseUp", function (e) { + r.longPressTimeout || e.preventDefault(), + !r.props.disabled && r.longPressTimeout && 0 === e.button && (r.props.onClick && r.props.onClick(e), r.hide(e), clearTimeout(r.longPressTimeout), (r.longPressTimeout = null)); + }), + (0, g.default)((0, v.default)(r), "windowMouseUp", function (e) { + 0 === e.button && !I.default.findDOMNode((0, v.default)(r)).contains(e.target) && r.longPressTimeout && (clearTimeout(r.longPressTimeout), (r.longPressTimeout = null)); + }), + (r.overlayId = (0, C.default)()), + (r._mountNode = null), + (r.longPressTimeout = null), + (r._lastFocus = e.lastFocus), + (r.boundariesElement = e.boundariesElement + ? e.boundariesElement + : function () { + return (0, k.default)((0, v.default)(r)).body; + }), + (r._scrollParents = null), + (r.state = { show: void 0 === e.show ? e.defaultShow : e.show }), + r + ); + } + return ( + (0, y.default)(t, e), + (0, f.default)(t, [ + { + key: "UNSAFE_componentWillReceiveProps", + value: function (e) { + "lastFocus" in e && e.lastFocus !== this.props.lastFocus && (this._lastFocus = e.lastFocus), e.show !== this.props.show && (e.show ? this.handleDelayedShow() : this.handleDelayedHide()); + }, + }, + { + key: "componentDidMount", + value: function () { + (this._mountNode = document.createElement("div")), this.renderOverlay(), document.body.addEventListener("mouseUp", this.windowMouseUp); + }, + }, + { + key: "componentDidUpdate", + value: function (e) { + var t = e.disabled, + n = this.props.disabled; + !t && n && this.hide(), this.renderOverlay(); + }, + }, + { + key: "componentWillUnmount", + value: function () { + S.modalManager.removeFromModal(this._overlay), + I.default.unmountComponentAtNode(this._mountNode), + (this._mountNode = null), + clearTimeout(this._hoverShowDelay), + clearTimeout(this._hoverHideDelay), + this.removeListenersFromScrollParents(), + document.body.removeEventListener("mouseUp", this.windowMouseUp); + }, + }, + { + key: "handleToggle", + value: function (e) { + this.state.show ? this.hide(e) : this.show(e); + }, + }, + { + key: "handleDelayedShow", + value: function (e) { + var t = this; + if (null != this._hoverHideDelay) return clearTimeout(this._hoverHideDelay), void (this._hoverHideDelay = null); + if (!this.state.show && null == this._hoverShowDelay) { + var n = null != this.props.delayShow ? this.props.delayShow : this.props.delay; + n + ? (this._hoverShowDelay = setTimeout(function () { + (t._hoverShowDelay = null), t.show(e); + }, n)) + : this.show(e); + } + }, + }, + { + key: "handleDelayedHide", + value: function (e) { + var n = this; + if (null != this._hoverShowDelay) return clearTimeout(this._hoverShowDelay), void (this._hoverShowDelay = null); + if (this.state.show && null == this._hoverHideDelay) { + var r = (this.props.delayHide && this.props.delayHide !== t.defaultProps.delayHide) || null == this.props.delay ? this.props.delayHide : this.props.delay; + r + ? (this._hoverHideDelay = setTimeout(function () { + (n._hoverHideDelay = null), n.hide(e); + }, r)) + : this.hide(e); + } + }, + }, + { + key: "handleMouseOverOut", + value: function (e, t) { + var n = t.currentTarget, + r = t.relatedTarget || t.nativeEvent.toElement; + (r && (r === n || n.contains(r))) || e(t); + }, + }, + { + key: "show", + value: function (e) { + this.state.show || this.props.disabled || ((this._lastFocus = this.rememberedFocus()), this.listenToScrollParents(), this.setState({ show: !0 }), this.props.onShow && this.props.onShow(e)); + }, + }, + { + key: "listenToScrollParents", + value: function () { + this._scrollParents && this.removeListenersFromScrollParents(), + (this._scrollParents = (function (e) { + for (var t = []; e.parentNode; ) { + var n = window.getComputedStyle(e); + (/auto|scroll/.test(n.overflow + n.overflowY) || e.hasAttribute("data-scrollable")) && t.push(e), (e = e.parentNode); + } + return t; + })(I.default.findDOMNode(this))); + var e = !0, + t = !1, + n = void 0; + try { + for (var r, o = this._scrollParents[Symbol.iterator](); !(e = (r = o.next()).done); e = !0) r.value.addEventListener("scroll", this.hide, !1); + } catch (e) { + (t = !0), (n = e); + } finally { + try { + e || null == o.return || o.return(); + } finally { + if (t) throw n; + } + } + }, + }, + { + key: "removeListenersFromScrollParents", + value: function () { + if (this._scrollParents) { + var e = !0, + t = !1, + n = void 0; + try { + for (var r, o = this._scrollParents[Symbol.iterator](); !(e = (r = o.next()).done); e = !0) r.value.removeEventListener("scroll", this.hide, !1); + } catch (e) { + (t = !0), (n = e); + } finally { + try { + e || null == o.return || o.return(); + } finally { + if (t) throw n; + } + } + this._scrollParents = null; + } + }, + }, + { + key: "hide", + value: function (e) { + this.removeListenersFromScrollParents(), this.state.show && (this.setState({ show: !1 }), this.props.onHide && this.props.onHide(e)); + }, + }, + { + key: "onKeyDown", + value: function (e) { + "ArrowDown" === e.key || "Down" === e.key + ? (e.altKey || (this.dropdownRef && e.target === I.default.findDOMNode(this.dropdownRef.triggerRef))) && (e.preventDefault(), e.stopPropagation(), this.show(e)) + : ("Enter" !== e.key && " " !== e.key) || (this.props.onClick && (e.preventDefault(), this.props.onClick(e))); + }, + }, + { + key: "onHide", + value: function (e) { + (N("longClick", this.props.trigger) && I.default.findDOMNode(this).contains(e.target)) || (void 0 === this.props.show ? this.hide(e) : this.props.onHide && this.props.onHide(e)); + }, + }, + { + key: "onExited", + value: function (e) { + this.restoreFocus(e), this.props.onExited && this.props.onExited(e); + }, + }, + { + key: "rememberedFocus", + value: function () { + return !this._lastFocus && document && document.activeElement !== document.body && (this._lastFocus = document.activeElement), this._lastFocus; + }, + }, + { + key: "restoreFocus", + value: function (e) { + var t; + this._lastFocus && + "function" == typeof this._lastFocus.focus && + (document && + (e && (t = I.default.findDOMNode(e)), + ((t && (t === document.activeElement || t.contains(document.activeElement))) || document.activeElement === document.body || document.activeElement.contains(this._lastFocus)) && this._lastFocus.focus()), + this.props.lastFocus || (this._lastFocus = null)); + }, + }, + { + key: "makeOverlay", + value: function (e, t) { + var n = this.props.target, + r = void 0 === n ? this : n, + o = t.rootClose, + a = void 0 === o || o, + i = (0, d.default)(t, ["rootClose"]); + delete i.crossOffset, delete i.defaultShow, delete i.flip, delete i.boundariesElement, delete i.role; + var s = F({ id: e.props.id || i.id }, t); + return ( + e.props.id || (i.id = this.overlayId), + T.default.createElement(A.default, (0, u.default)({}, s, { show: this.state.show, onHide: this.onHide, onExited: this.onExited, target: r, rootClose: a }), (0, T.cloneElement)(e, i)) + ); + }, + }, + { + key: "renderOverlay", + value: function () { + this._overlay.props.show && S.modalManager.addToModal(this._overlay, !0), I.default.unstable_renderSubtreeIntoContainer(this, this._overlay, this._mountNode); + }, + }, + { + key: "render", + value: function () { + var e = this.props, + t = e.trigger, + n = e.show, + r = e.selected, + o = void 0 === r ? this.state.show : r, + a = (0, d.default)(e, ["trigger", "show", "selected"]); + delete a.delay, delete a.delayShow, delete a.delayHide, delete a.defaultShow, delete a.onShow, delete a.onHide; + var i = T.default.Children.toArray(this.props.children), + s = (0, l.default)(i, 2), + u = s[0], + p = s[1], + f = L((0, w.default)(a), ["target", "disabled"]), + m = L( + a, + [].concat( + (0, c.default)( + Object.keys(f).filter(function (e) { + return "onClick" !== e; + }) + ), + ["children", "disabled"] + ) + ); + return ( + this.state.show && p.type && "tooltip" === p.props.role && (a.id || (a.id = p.props.id || this.overlayId), (f["aria-describedby"] = a.id)), + void 0 === n && + (N("click", t) && !N("longClick", t) && (f.onClick = (0, E.chain)(this.props.onClick, this.handleToggle)), + N("longClick", t) && (delete f.onClick, delete m.onClick, (f.onMouseDown = this.onMouseDown), (f.onMouseUp = this.onMouseUp), (f.onKeyDown = this.onKeyDown)), + N("hover", t) && + ((f.onMouseOver = this.handleMouseOverOut.bind(this, this.handleDelayedShow)), + (f.onMouseOut = this.handleMouseOverOut.bind(this, this.handleDelayedHide)), + (m.onMouseOver = this.handleMouseOverOut.bind(this, this.handleDelayedShow)), + (m.onMouseOut = this.handleMouseOverOut.bind(this, this.handleDelayedHide)), + (m.trapFocus = !1)), + N("focus", t) && + ((f.onFocus = (0, E.chain)(u.props.onFocus, this.handleDelayedShow)), + (f.onBlur = (0, E.chain)(u.props.onBlur, this.handleDelayedHide)), + (m.onFocus = this.handleDelayedShow), + (m.onBlur = this.handleDelayedHide), + (m.trapFocus = !1))), + "tooltip" !== p.props.role && (f.selected = o), + this._overlay && S.modalManager.removeFromModal(this._overlay), + (this._overlay = this.makeOverlay(p, m)), + (0, T.cloneElement)(u, f) + ); + }, + }, + ]), + t + ); + })(T.Component)), + (0, g.default)( + i, + "propTypes", + F({}, A.default.propTypes, { + trigger: _.default.oneOfType([x, _.default.arrayOf(x)]), + delay: _.default.number, + delayShow: _.default.number, + delayHide: _.default.number, + defaultShow: _.default.bool, + placement: _.default.string, + onBlur: _.default.func, + onClick: _.default.func, + onFocus: _.default.func, + onMouseOut: _.default.func, + onMouseOver: _.default.func, + onShow: _.default.func, + onHide: _.default.func, + show: _.default.bool, + offset: _.default.number, + crossOffset: _.default.number, + flip: _.default.bool, + disabled: _.default.bool, + boundariesElement: _.default.oneOfType([_.default.func, _.default.string]), + lastFocus: _.default.oneOfType([_.default.element, _.default.object]), + }) + ), + (0, g.default)(i, "defaultProps", { defaultShow: !1, trigger: ["hover", "focus"], placement: "left", offset: 0, crossOffset: 0, flip: !0, delayHide: 100 }), + (a = s)) + ) || a) + ) || a; + function L(e, t) { + var n = F({}, e); + return ( + t.forEach(function (e) { + delete n[e]; + }), + n + ); + } + t.default = R; + }, + 70946: (e, t, n) => { + "use strict"; + var r = n(86633), + o = n(43061); + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var a, + i, + s, + c = r(n(2001)), + l = r(n(2400)), + u = r(n(80034)), + d = r(n(19854)), + p = r(n(33470)), + f = r(n(15270)), + m = r(n(17555)), + h = r(n(4837)), + v = r(n(48252)), + y = r(n(93353)), + g = r(n(81994)), + b = r(n(98606)), + E = r(n(33295)), + D = r(n(93411)), + C = o(n(23469)), + w = r(n(23613)); + function S(e, t) { + var n = Object.keys(e); + if (Object.getOwnPropertySymbols) { + var r = Object.getOwnPropertySymbols(e); + t && + (r = r.filter(function (t) { + return Object.getOwnPropertyDescriptor(e, t).enumerable; + })), + n.push.apply(n, r); + } + return n; + } + function A(e) { + for (var t = 1; t < arguments.length; t++) { + var n = null != arguments[t] ? arguments[t] : {}; + t % 2 + ? S(Object(n), !0).forEach(function (t) { + (0, m.default)(e, t, n[t]); + }) + : Object.getOwnPropertyDescriptors + ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) + : S(Object(n)).forEach(function (t) { + Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t)); + }); + } + return e; + } + var k = + (0, g.default)( + (a = + (0, h.default)( + ((s = i = (function (e) { + function t(e, n) { + var r; + return ( + (0, l.default)(this, t), + ((r = (0, d.default)(this, (0, p.default)(t).call(this, e, n))).state = { positionLeft: 0, positionTop: 0, arrowOffsetLeft: null, arrowOffsetTop: null, placement: r.props.placement }), + (r._needsFlush = !1), + (r._lastTarget = null), + r + ); + } + return ( + (0, f.default)(t, e), + (0, u.default)(t, [ + { + key: "componentDidMount", + value: function () { + this.updatePosition(this.getTarget()), window.addEventListener("resize", this.maybeUpdatePosition, !1); + }, + }, + { + key: "UNSAFE_componentWillReceiveProps", + value: function () { + this._needsFlush = !0; + }, + }, + { + key: "componentDidUpdate", + value: function (e) { + this._needsFlush && ((this._needsFlush = !1), this.maybeUpdatePosition(this.props.placement !== e.placement)); + }, + }, + { + key: "componentWillUnmount", + value: function () { + window.removeEventListener("resize", this.maybeUpdatePosition, !1); + }, + }, + { + key: "render", + value: function () { + var e = this.props, + t = e.children, + n = e.className, + r = (0, c.default)(e, ["children", "className"]), + o = this.state, + a = o.positionLeft, + i = o.positionTop, + s = o.maxHeight, + l = o.arrowOffsetLeft, + u = o.arrowOffsetTop, + d = o.placement; + delete r.target; + var p = C.default.Children.only(t); + return (0, C.cloneElement)( + p, + A({}, (0, b.default)(r), { + placement: d, + className: (0, y.default)(n, p.props.className), + arrowStyle: { left: l, top: u }, + style: A({}, p.props.style, { position: "absolute", zIndex: 1e5, left: a, top: i, maxHeight: s }), + }) + ); + }, + }, + { + key: "getTarget", + value: function () { + var e = this.props.target, + t = "function" == typeof e ? e() : e; + return (t && w.default.findDOMNode(t)) || null; + }, + }, + { + key: "maybeUpdatePosition", + value: function (e) { + var t = this.getTarget(); + (this.props.shouldUpdatePosition || t !== this._lastTarget || e) && this.updatePosition(t); + }, + }, + { + key: "updatePosition", + value: function (e) { + var t = this.props, + n = t.placement, + r = t.containerPadding, + o = t.offset, + a = t.crossOffset, + i = t.flip, + s = t.boundariesElement; + if (((this._lastTarget = e), e)) { + var c = w.default.findDOMNode(this), + l = (0, E.default)(this.props.container, (0, D.default)(this).body); + this.setState((0, v.default)(n, c, e, l, r, i, s, o, a)); + } else this.setState({ positionLeft: 0, positionTop: 0, arrowOffsetLeft: null, arrowOffsetTop: null }); + }, + }, + ]), + t + ); + })(C.default.Component)), + (0, m.default)(i, "defaultProps", { containerPadding: 10, offset: 0, crossOffset: 0 }), + (a = s)) + ) || a) + ) || a; + t.default = k; + }, + 48252: (e, t, n) => { + "use strict"; + var r = n(86633); + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.calculatePositionInternal = C), + (t.default = function (e, t, n, r, o, c, l, u, d) { + var p = "BODY" === r.tagName, + f = p ? (0, i.default)(n) : (0, s.default)(n, r); + p || ((f.top += parseInt((0, a.default)(n, "marginTop"), 10) || 0), (f.left += parseInt((0, a.default)(n, "marginLeft"), 10) || 0)); + var m, + h, + v = (0, i.default)(t), + g = ((m = t), (h = window.getComputedStyle(m)), { top: parseInt(h.marginTop, 10) || 0, bottom: parseInt(h.marginBottom, 10) || 0, left: parseInt(h.marginLeft, 10) || 0, right: parseInt(h.marginRight, 10) || 0 }); + (v.width += g.left + g.right), (v.height += g.top + g.bottom); + y(r); + var b = "container" === l ? r : l(); + return C(e, 0, f, v, g, o, c, y(b), "BODY" === b.tagName ? (0, i.default)(r) : (0, s.default)(r, b), u, d); + }); + var o = r(n(85199)), + a = r(n(90638)), + i = r(n(23274)), + s = r(n(52788)), + c = r(n(55878)), + l = r(n(87792)), + u = r(n(43291)), + d = r(n(23613)), + p = { top: "top", bottom: "top", left: "left", right: "left", center: "left" }, + f = { top: "bottom", bottom: "top", left: "right", right: "left" }, + m = { top: "left", left: "top" }, + h = { top: "height", left: "width" }, + v = {}; + function y(e) { + var t, + n, + r = 0, + o = 0, + a = {}, + s = d.default.findDOMNode(e); + if ("BODY" === s.tagName) + (t = window.innerWidth), (n = window.innerHeight), (a.top = (0, l.default)((0, u.default)(s).documentElement) || (0, l.default)(s)), (a.left = (0, c.default)((0, u.default)(s).documentElement) || (0, c.default)(s)); + else { + var p = (0, i.default)(s); + (t = p.width), (n = p.height), (r = p.top), (o = p.left), (a.top = (0, l.default)(s)), (a.left = (0, c.default)(s)); + } + return { width: t, height: n, scroll: a, top: r, left: o }; + } + function g(e, t, n, r, o) { + var a = r.scroll[e], + i = r[h[e]], + s = t - o - a, + c = t + o - a + n; + return s < 0 ? -s : c > i ? Math.max(i - c, -s) : 0; + } + function b(e, t, n, r, o, a, i) { + var s = a.scroll[e], + c = a[h[e]], + l = i[e] + t - r - s, + u = i[e] + t + r - s + n; + return (l < 0 && ("top" === o || "left" === o)) || (u > c && ("bottom" === o || "right" === o)); + } + function E(e) { + if (v[e]) return v[e]; + var t = e.split(" "), + n = (0, o.default)(t, 2), + r = n[0], + a = n[1], + i = p[r] || "right", + s = m[i]; + p[a] || (a = "center"); + var c = h[i], + l = h[s]; + return (v[e] = { placement: r, crossPlacement: a, axis: i, crossAxis: s, size: c, crossSize: l }), v[e]; + } + function D(e, t, n, r, o, a) { + var i = r.placement, + s = r.crossPlacement, + c = r.axis, + l = r.crossAxis, + u = r.size, + d = r.crossSize, + p = {}; + if (((p[l] = e[l] + a), "center" === s ? (p[l] += (e[d] - n[d]) / 2) : s !== l && (p[l] += e[d] - n[d]), e[d] < n[d])) { + var f = Math.min(p[l], e[l]); + p[l] = Math.max(f, e[l] - n[d] + e[d]); + } + return (p[c] = i === c ? e[c] - n[u] + o : e[c] + e[u] + o), p; + } + function C(e, t, n, r, o, a, i, s, c, l, u) { + var d = E(e), + p = d, + m = p.axis, + h = p.size, + v = p.crossAxis, + y = p.crossSize, + C = p.placement, + w = p.crossPlacement, + S = D(n, 0, r, d, l, u), + A = l; + if (i && b(m, S[m], r[h], a, C, s, c)) { + var k = E("".concat(f[C], " ").concat(w)), + _ = k.axis, + T = k.size, + I = D(n, 0, r, k, -1 * l, u); + b(_, I[_], r[T], a, f[C], s, c) || ((d = k), (S = I), (A = -1 * l)); + } + var O = g(v, S[v], r[y], s, a); + S[v] += O; + var F = Math.max(0, s.height + s.top + s.scroll.top - c.top - S.top - o.top - o.bottom - a); + (r.height = Math.min(r.height, F)), (O = O = g(v, (S = D(n, 0, r, d, A, u))[v], r[y], s, a)), (S[v] += O); + var x = {}; + return (x[v] = n[y] > r[y] ? null : n[v] - S[v] + n[y] / 2), { positionLeft: S.left, positionTop: S.top, maxHeight: F, arrowOffsetLeft: x.left, arrowOffsetTop: x.top, placement: d.placement }; + } + }, + 35326: (e, t, n) => { + e.exports = n(49671); + }, + 49671: (e, t, n) => { + "use strict"; + var r = n(86633), + o = n(43061); + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var a, + i, + s, + c = r(n(62665)), + l = r(n(2001)), + u = r(n(2400)), + d = r(n(80034)), + p = r(n(19854)), + f = r(n(33470)), + m = r(n(15270)), + h = r(n(17555)), + v = r(n(4837)), + y = r(n(93353)), + g = r(n(82463)), + b = r(n(27644)), + E = r(n(98606)), + D = r(n(47776)), + C = o(n(23469)), + w = n(12555); + n(28849), n(31853), n(59240), n(26705), n(49523); + var S = + (0, v.default)( + ((s = i = (function (e) { + function t(e, n) { + var r; + return (0, u.default)(this, t), ((r = (0, p.default)(this, (0, f.default)(t).call(this, e, n))).defaultId = (0, g.default)()), r; + } + return ( + (0, m.default)(t, e), + (0, d.default)(t, [ + { + key: "componentDidMount", + value: function () { + var e = this; + this.props.trapFocus && + (this._trapFocusTimeout = requestAnimationFrame(function () { + e.popoverRef && !e.popoverRef.contains(document.activeElement) && e.popoverRef.focus(); + })); + }, + }, + { + key: "componentWillUnmount", + value: function () { + this._trapFocusTimeout && cancelAnimationFrame(this._trapFocusTimeout); + }, + }, + { + key: "onFocus", + value: function (e) { + this.props.onFocus && this.props.onFocus(e), this.props.trapFocus && e.target === this.popoverRef && !this.popoverRef.contains(e.relatedTarget) && (0, w.trapFocus)(this, e); + }, + }, + { + key: "onKeyDown", + value: function (e) { + (this.props.onKeyDown && (this.props.onKeyDown(e), e.isPropagationStopped && e.isPropagationStopped())) || (this.props.trapFocus && (0, w.trapFocus)(this, e)); + }, + }, + { + key: "render", + value: function () { + var e, + t = this, + n = this.props, + r = n.variant, + o = n.placement, + a = n.arrowStyle, + i = n.open, + s = n.title, + u = n.children, + d = n.className, + p = n.isDialog, + f = void 0 === p || p, + m = n.trapFocus, + v = n.tabIndex, + g = void 0 === v ? null : v, + D = n.id, + w = void 0 === D ? this.defaultId : D, + S = n["aria-label"], + A = n["aria-labelledby"], + k = n["aria-describedby"], + _ = (0, l.default)(n, ["variant", "placement", "arrowStyle", "open", "title", "children", "className", "isDialog", "trapFocus", "tabIndex", "id", "aria-label", "aria-labelledby", "aria-describedby"]); + delete _.target; + var T = f ? C.default.createElement("div", { className: "spectrum-Dialog-content", role: "presentation", id: "".concat(w, "-content") }, u) : u; + return C.default.createElement( + "div", + (0, c.default)( + { + ref: function (e) { + return (t.popoverRef = e); + }, + className: (0, y.default)( + "spectrum-Popover", + "react-spectrum-Popover", + "spectrum-Popover--".concat(o.split(" ")[0]), + ((e = { "spectrum-Popover--withTip": f, "spectrum-Popover--dialog": f }), (0, h.default)(e, "spectrum-Dialog--".concat(r), f), (0, h.default)(e, "is-open", i), e), + d + ), + role: f ? "dialog" : "presentation", + id: w, + "aria-label": S, + "aria-labelledby": A || (f && s && !S ? "".concat(w, "-heading") : null), + "aria-describedby": k || (f && s && u ? "".concat(w, "-content") : null), + }, + (0, E.default)(_), + { onFocus: this.onFocus, onKeyDown: this.onKeyDown, tabIndex: m && null === g ? 1 : g } + ), + f && s && C.default.createElement(b.default, { id: "".concat(w, "-heading"), title: s, variant: r }), + T, + f && C.default.createElement("div", { className: "spectrum-Popover-tip", style: a, "aria-hidden": "true" }) + ); + }, + }, + ]), + t + ); + })(C.Component)), + (0, h.default)(i, "propTypes", { + variant: D.default.oneOf(["default", "error"]), + placement: D.default.oneOf(["bottom", "bottom left", "bottom right", "top", "top left", "top right", "left", "left top", "left bottom", "right", "right top", "right bottom"]), + open: D.default.bool, + title: D.default.node, + className: D.default.string, + trapFocus: D.default.bool, + }), + (0, h.default)(i, "defaultProps", { variant: "default", placement: "bottom", open: !0, trapFocus: !0 }), + (a = s)) + ) || a; + (t.default = S), (S.displayName = "Popover"); + }, + 23257: (e, t, n) => { + e.exports = n(56191); + }, + 56191: (e, t, n) => { + "use strict"; + var r = n(86633); + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var o = r(n(2400)), + a = r(n(80034)), + i = (r(n(23469)), r(n(23613))), + s = {}, + c = (function () { + function e() { + (0, o.default)(this, e); + } + return ( + (0, a.default)(e, null, [ + { + key: "add", + value: function (e, t) { + var n = s[e.key] || document.createElement("div"); + t ? i.default.unstable_renderSubtreeIntoContainer(t, e, n) : i.default.render(e, n), (s[e.key] = n); + }, + }, + { + key: "remove", + value: function (e) { + i.default.unmountComponentAtNode(s[e.key]), delete s[e.key]; + }, + }, + { + key: "removeAll", + value: function () { + for (var e in s) s.hasOwnProperty(e) && (i.default.unmountComponentAtNode(s[e]), delete s[e]); + }, + }, + ]), + e + ); + })(); + t.default = c; + }, + 80410: (e, t, n) => { + e.exports = n(90089); + }, + 90089: (e, t, n) => { + "use strict"; + var r = n(86633); + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = u); + var o = r(n(62665)), + a = r(n(2001)), + i = r(n(93353)), + s = r(n(98606)), + c = r(n(47776)), + l = r(n(23469)); + function u(e) { + var t = e.className, + n = e.variant, + r = void 0 === n ? "large" : n, + c = (0, a.default)(e, ["className", "variant"]); + return l.default.createElement("hr", (0, o.default)({}, (0, s.default)(c), { className: (0, i.default)("spectrum-Rule", "spectrum-Rule--".concat(r), t) })); + } + n(3419), n(60497), (u.propTypes = { variant: c.default.oneOf(["large", "medium", "small"]) }); + }, + 6750: (e, t, n) => { + e.exports = n(3848); + }, + 3848: (e, t, n) => { + "use strict"; + var r = n(86633), + o = n(43061); + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var a, + i, + s, + c = r(n(62665)), + l = r(n(2001)), + u = r(n(2400)), + d = r(n(80034)), + p = r(n(19854)), + f = r(n(33470)), + m = r(n(15270)), + h = r(n(17555)), + v = r(n(4837)), + y = r(n(93353)), + g = r(n(98606)), + b = r(n(47776)), + E = o(n(23469)), + D = r(n(23613)); + n(32674), n(86072); + var C = + (0, v.default)( + ((s = i = (function (e) { + function t() { + return (0, u.default)(this, t), (0, p.default)(this, (0, f.default)(t).apply(this, arguments)); + } + return ( + (0, m.default)(t, e), + (0, d.default)(t, [ + { + key: "componentDidMount", + value: function () { + var e = this; + this.props.autoFocus && + requestAnimationFrame(function () { + return e.focus(); + }); + }, + }, + { + key: "focus", + value: function () { + this.props.disabled || D.default.findDOMNode(this).focus(); + }, + }, + { + key: "onChange", + value: function (e) { + this.props.onChange && this.props.onChange(e.target.value, e); + }, + }, + { + key: "render", + value: function () { + var e = this.props, + t = e.className, + n = e.quiet, + r = e.disabled, + o = e.required, + a = e.invalid, + i = e.readOnly, + s = e.multiLine, + u = e.validationState, + d = (0, l.default)(e, ["className", "quiet", "disabled", "required", "invalid", "readOnly", "multiLine", "validationState"]), + p = s ? "textarea" : "input", + f = a || "invalid" === u; + return ( + delete d.autoFocus, + delete d.autocompleteInput, + a && console.warn('The "invalid" prop of Textfield is deprecated. Please use validationState="invalid" instead.'), + E.default.createElement( + p, + (0, c.default)( + { + type: "text", + className: (0, y.default)("spectrum-Textfield", { "spectrum-Textfield--multiline": s, "is-invalid": f, "is-valid": "valid" === u, "spectrum-Textfield--quiet": n }, t), + disabled: r, + required: o, + readOnly: i, + "aria-invalid": f || null, + defaultValue: d.defaultValue, + }, + (0, g.default)(d), + { onChange: this.onChange, rows: s && !n ? d.rows : 1 } + ) + ) + ); + }, + }, + ]), + t + ); + })(E.Component)), + (0, h.default)(i, "propTypes", { + autoFocus: b.default.bool, + className: b.default.string, + disabled: b.default.bool, + invalid: b.default.bool, + multiLine: b.default.bool, + onBlur: b.default.func, + onChange: b.default.func, + onFocus: b.default.func, + placeholder: b.default.string, + quiet: b.default.bool, + readOnly: b.default.bool, + required: b.default.bool, + validationState: b.default.oneOf(["valid", "invalid"]), + }), + (0, h.default)(i, "defaultProps", { autoFocus: !1, disabled: !1, quiet: !1, required: !1, invalid: !1, readOnly: !1 }), + (a = s)) + ) || a; + (t.default = C), (C.displayName = "Textfield"); + }, + 68173: (e, t, n) => { + e.exports = n(41827); + }, + 41827: (e, t, n) => { + "use strict"; + var r = n(43061), + o = n(86633); + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var a = o(n(62665)), + i = o(n(2001)), + s = o(n(2400)), + c = o(n(80034)), + l = o(n(19854)), + u = o(n(33470)), + d = o(n(15270)), + p = o(n(17555)), + f = o(n(93353)), + m = o(n(82463)), + h = o(n(98606)), + v = o(n(47776)), + y = r(n(23469)); + n(89645), n(81500); + var g = (function (e) { + function t(e, n) { + var r; + return (0, s.default)(this, t), ((r = (0, l.default)(this, (0, u.default)(t).call(this, e, n))).tooltipId = (0, m.default)()), r; + } + return ( + (0, d.default)(t, e), + (0, c.default)(t, [ + { + key: "render", + value: function () { + var e = this.props, + t = e.variant, + n = e.children, + r = e.arrowStyle, + o = e.className, + s = e.placement, + c = e.open, + l = e.id, + u = void 0 === l ? this.tooltipId : l, + d = (0, i.default)(e, ["variant", "children", "arrowStyle", "className", "placement", "open", "id"]); + return y.default.createElement( + "span", + (0, a.default)({ className: (0, f.default)("spectrum-Tooltip", "spectrum-Tooltip--".concat(t), "spectrum-Tooltip--".concat(s.split(" ")[0]), { "is-open": c }, o), id: u }, (0, h.default)(d)), + y.default.createElement("span", { className: "spectrum-Tooltip-label" }, n), + y.default.createElement("span", { className: "spectrum-Tooltip-tip", style: r }) + ); + }, + }, + ]), + t + ); + })(y.Component); + (t.default = g), + (0, p.default)(g, "propTypes", { + placement: v.default.oneOf(["bottom", "top", "left", "right"]), + variant: v.default.oneOf(["inspect", "info", "success", "error"]), + className: v.default.string, + id: v.default.string, + role: v.default.oneOf(["tooltip"]), + open: v.default.bool, + }), + (0, p.default)(g, "defaultProps", { variant: "inspect", placement: "right", open: !0, role: "tooltip" }); + }, + 90710: (e, t, n) => { + e.exports = n(69501); + }, + 69501: (e, t, n) => { + "use strict"; + var r = n(86633); + t.default = void 0; + var o, + a, + i, + s = r(n(2400)), + c = r(n(80034)), + l = r(n(19854)), + u = r(n(33470)), + d = r(n(15270)), + p = r(n(17555)), + f = r(n(86633)), + m = r(n(4837)), + h = n(78742), + v = n(79370), + y = r(n(47776)), + g = r(n(23469)), + b = { + "cs-CZ": (0, f.default)(n(55326)).default, + "da-DK": (0, f.default)(n(15971)).default, + "de-DE": (0, f.default)(n(87113)).default, + "en-US": (0, f.default)(n(78894)).default, + "es-ES": (0, f.default)(n(36167)).default, + "fi-FI": (0, f.default)(n(52871)).default, + "fr-FR": (0, f.default)(n(70182)).default, + "hu-HU": (0, f.default)(n(44126)).default, + "it-IT": (0, f.default)(n(91424)).default, + "ja-JP": (0, f.default)(n(11161)).default, + "ko-KR": (0, f.default)(n(61864)).default, + "nb-NO": (0, f.default)(n(29215)).default, + "nl-NL": (0, f.default)(n(40360)).default, + "pl-PL": (0, f.default)(n(7338)).default, + "pt-BR": (0, f.default)(n(93232)).default, + "ru-RU": (0, f.default)(n(72316)).default, + "sv-SE": (0, f.default)(n(43985)).default, + "tr-TR": (0, f.default)(n(88779)).default, + "uk-UA": (0, f.default)(n(14774)).default, + "zh-CN": (0, f.default)(n(83414)).default, + "zh-TW": (0, f.default)(n(47032)).default, + }, + E = (0, v.messageFormatter)(b), + D = + (0, m.default)( + ((i = a = (function (e) { + function t(e) { + var n; + return (0, s.default)(this, t), ((n = (0, l.default)(this, (0, u.default)(t).call(this, e))).state = { current: 0, total: 0, hidden: !1 }), n; + } + return ( + (0, d.default)(t, e), + (0, c.default)(t, [ + { + key: "componentDidMount", + value: function () { + this.props.children && this.setState({ total: g.default.Children.count(this.props.children) }); + }, + }, + { + key: "onConfirm", + value: function () { + this.state.current === this.state.total - 1 ? (this.setState({ hidden: !0 }), this.props.onTourEnd && this.props.onTourEnd("complete")) : this.setState({ current: this.state.current + 1 }); + }, + }, + { + key: "onCancel", + value: function () { + this.setState({ current: 0, hidden: !0 }), this.props.onTourEnd && this.props.onTourEnd("cancel"); + }, + }, + { + key: "onHide", + value: function (e, t) { + "next" === this.props.clickOutsideAction ? (0, h.chain)(this.onConfirm, t.props.onConfirm)(e) : "skip" === this.props.clickOutsideAction && (0, h.chain)(this.onCancel, t.props.onCancel)(e); + }, + }, + { + key: "render", + value: function () { + var e = this, + t = this.props, + n = t.children, + r = t.disableProgress, + o = t.clickOutsideAction, + a = this.state, + i = a.current, + s = a.total, + c = a.hidden; + if (!n || g.default.Children.count(n) <= this.state.current) throw new Error("Tour should always have children!"); + if (c) return null; + var l = g.default.Children.toArray(this.props.children)[i]; + return g.default.cloneElement(l, { + disableProgress: r, + currentStep: i + 1, + totalSteps: s, + dismissible: "skip" === o || "next" === o || void 0, + onConfirm: (0, h.chain)(this.onConfirm, l.props.onConfirm), + onCancel: (0, h.chain)(this.onCancel, l.props.onCancel), + onHide: function (t) { + return e.onHide(t, l); + }, + confirmLabel: l.props.confirmLabel || E(i < s - 1 ? "next" : "done"), + cancelLabel: l.props.cancelLabel || (i < s - 1 ? E("skip") : null), + }); + }, + }, + ]), + t + ); + })(g.default.Component)), + (0, p.default)(a, "propTypes", { disableProgress: y.default.bool, clickOutsideAction: y.default.oneOf(["next", "skip", "noop"]), onTourEnd: y.default.func }), + (0, p.default)(a, "defaultProps", { disableProgress: !1, clickOutsideAction: "noop" }), + (o = i)) + ) || o; + t.default = D; + }, + 12555: (e, t, n) => { + "use strict"; + var r = n(86633); + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.trapFocus = function (e, t) { + var n, + r, + o, + a, + i, + s = t.type, + c = t.key, + l = t.shiftKey, + u = t.target; + ("keydown" !== s && "focus" !== s) || + ((n = g.default.findDOMNode(e)) && + ((a = + (r = Array.from(n.querySelectorAll(A)).filter(function (e) { + return e !== n; + }))[0] || n), + (i = r[r.length - 1] || n))), + "keydown" === s && "Tab" === c ? n && (l ? (u !== a && u !== n) || (o = i) : (u !== i && u !== n) || (o = a)) : "focus" === s && u === n && (o = a), + o && (t.preventDefault(), t.stopPropagation(), o !== document.activeElement && o.focus()); + }), + (t.TABBABLE_ELEMENT_SELECTOR = t.FOCUSABLE_ELEMENT_SELECTOR = t.default = void 0); + var o, + a, + i, + s = r(n(2400)), + c = r(n(80034)), + l = r(n(19854)), + u = r(n(33470)), + d = r(n(23170)), + p = r(n(15270)), + f = r(n(17555)), + m = r(n(4837)), + h = n(78742), + v = r(n(47776)), + y = r(n(23469)), + g = r(n(23613)), + b = n(82453), + E = r(n(91641)), + D = /[\n\r]+|[\s]{1,}/g, + C = + (0, m.default)( + ((i = a = (function (e) { + function t() { + var e, n; + (0, s.default)(this, t); + for (var r = arguments.length, o = new Array(r), a = 0; a < r; a++) o[a] = arguments[a]; + return (n = (0, l.default)(this, (e = (0, u.default)(t)).call.apply(e, [this].concat(o)))), (0, f.default)((0, d.default)(n), "keysSoFar", ""), (0, f.default)((0, d.default)(n), "keyClearTimeout", null), n; + } + return ( + (0, p.default)(t, e), + (0, c.default)(t, [ + { + key: "getItems", + value: function () { + var e = arguments.length > 0 && void 0 !== arguments[0] && arguments[0], + t = this.props, + n = t.itemSelector, + r = t.selectedItemSelector, + o = t.includeSelf, + a = e && r ? r : n, + i = g.default.findDOMNode(this), + s = []; + return o && i.matches(a) && s.push(i), s.concat(Array.from(i.querySelectorAll(a))); + }, + }, + { + key: "onFocusFirst", + value: function (e) { + var t = this.getItems(); + !t.length || (e && -1 === t.indexOf(e.target)) || (e && e.preventDefault(), t[0].focus()); + }, + }, + { + key: "onFocusLast", + value: function (e) { + var t = this.getItems(); + !t.length || (e && -1 === t.indexOf(e.target)) || (e && e.preventDefault(), t[t.length - 1].focus()); + }, + }, + { + key: "onFocusPrevious", + value: function (e) { + var t = this.getItems(); + if (t.length && e && -1 !== t.indexOf(e.target)) { + e.preventDefault(); + var n = t.indexOf(e.target), + r = n - 1; + r < 0 && (r = this.props.loopFocusAtEdges ? t.length - 1 : n), t[r].focus(); + } + }, + }, + { + key: "onFocusNext", + value: function (e) { + var t = this.getItems(); + if (t.length && e && -1 !== t.indexOf(e.target)) { + e.preventDefault(); + var n = t.indexOf(e.target), + r = n + 1; + r >= t.length && (r = this.props.loopFocusAtEdges ? 0 : n), t[r].focus(); + } + }, + }, + { + key: "onPageUp", + value: function (e) { + if (!this.props.ignorePageUpPageDown) { + var t = this.getItems(); + if (t.length && e && -1 !== t.indexOf(e.target)) { + e.preventDefault(); + var n = g.default.findDOMNode(this), + r = Math.max(e.target.offsetTop + e.target.offsetHeight - n.clientHeight, 0), + o = t.indexOf(e.target), + a = t + .slice(0, o) + .reverse() + .find(function (e) { + return e.offsetTop < r; + }); + a ? (a.focus(), (0, E.default)(a, n, !0)) : this.onFocusFirst(e); + } + } + }, + }, + { + key: "onPageDown", + value: function (e) { + if (!this.props.ignorePageUpPageDown) { + var t = this.getItems(); + if (t.length && e && -1 !== t.indexOf(e.target)) { + e.preventDefault(); + var n = g.default.findDOMNode(this), + r = Math.min(e.target.offsetTop + n.clientHeight, n.scrollHeight + n.clientHeight), + o = t.indexOf(e.target) + 1, + a = t.slice(o).find(function (e) { + return e.offsetTop + e.offsetHeight > r; + }); + a ? (a.focus(), (0, E.default)(a, n, !0)) : this.onFocusLast(e); + } + } + }, + }, + { + key: "findItemToFocus", + value: function (e) { + var t = e.target, + n = e.shiftKey, + r = e.charCode, + o = (0, b.removeDiacritics)(String.fromCharCode(r)).toUpperCase(), + a = this.getItems(); + ("" === this.keysSoFar || o === this.keysSoFar || n) && (n && (a = a.reverse()), (this.searchIndex = a.indexOf(t))), o !== this.keysSoFar && (this.keysSoFar += o), this.clearKeysSoFarAfterDelay(); + var i = this.findMatchInRange(a, this.searchIndex + 1, a.length); + i || (i = this.findMatchInRange(a, 0, this.searchIndex)), i && i.focus(); + }, + }, + { + key: "clearKeysSoFarAfterDelay", + value: function () { + var e = this; + this.keyClearTimeout && clearTimeout(this.keyClearTimeout), + (this.keyClearTimeout = setTimeout(function () { + return (e.keysSoFar = ""); + }, 500)); + }, + }, + { + key: "findMatchInRange", + value: function (e, t, n) { + for (var r = t; r < n; r++) { + var o = e[r].innerText || e[r].textContent; + if (o && 0 === (0, b.removeDiacritics)(o).replace(D, "").toUpperCase().indexOf(this.keysSoFar)) return e[r]; + } + return null; + }, + }, + { + key: "onKeyDown", + value: function (e) { + e.isPropagationStopped() || h.interpretKeyboardEvent.call(this, e, this.props.orientation); + }, + }, + { + key: "onKeyPress", + value: function (e) { + e.isPropagationStopped() || this.findItemToFocus(e); + }, + }, + { + key: "onFocus", + value: function (e) { + e.isPropagationStopped() || + this.getItems().forEach(function (t) { + return (t.tabIndex = t === e.target ? 0 : -1); + }); + }, + }, + { + key: "onBlur", + value: function (e) { + if (!e.isPropagationStopped()) { + var t = this.getItems(!0); + if (t.length) { + var n = -1 !== t.indexOf(e.target); + this.getItems().forEach(function (r) { + var o = -1 !== t.indexOf(r); + r.tabIndex = (r === e.target && n) || (!n && o) ? 0 : -1; + }); + } + } + }, + }, + { + key: "componentDidMount", + value: function () { + var e = this, + t = this.props, + n = t.autoFocus, + r = t.selectedItemSelector; + if (n) { + var o = r ? g.default.findDOMNode(this).querySelector(r) : null; + this.focusTimer = setTimeout(function () { + o ? o.focus() : e.onFocusFirst(); + }, 20); + } + }, + }, + { + key: "componentWillUnmount", + value: function () { + clearTimeout(this.focusTimer); + }, + }, + { + key: "render", + value: function () { + var e = this.props, + t = e.children, + n = e.disabled, + r = e.manageTabIndex, + o = e.typeToSelect, + a = y.default.Children.only(t), + i = a.props, + s = i.onKeyDown, + c = i.onKeyPress, + l = i.onFocus, + u = i.onBlur; + return y.default.cloneElement(a, { + onKeyDown: n ? s : (0, h.chain)(s, this.onKeyDown), + onKeyPress: o && !n ? (0, h.chain)(c, this.onKeyPress) : c, + onFocus: r && !n ? (0, h.chain)(l, this.onFocus) : l, + onBlur: r && !n ? (0, h.chain)(u, this.onBlur) : u, + }); + }, + }, + ]), + t + ); + })(y.default.Component)), + (0, f.default)(a, "propTypes", { + itemSelector: v.default.string.isRequired, + manageTabIndex: v.default.bool, + orientation: v.default.oneOf(["horizontal", "vertical", "both"]), + selectedItemSelector: v.default.string, + disabled: v.default.bool, + typeToSelect: v.default.bool, + includeSelf: v.default.bool, + ignorePageUpPageDown: v.default.bool, + autoFocus: v.default.bool, + loopFocusAtEdges: v.default.bool, + }), + (0, f.default)(a, "defaultProps", { manageTabIndex: !0, orientation: "vertical", typeToSelect: !1, includeSelf: !1, ignorePageUpPageDown: !1, loopFocusAtEdges: !0 }), + (o = i)) + ) || o; + t.default = C; + var w = [ + "input:not([disabled]):not([type=hidden])", + "select:not([disabled])", + "textarea:not([disabled])", + "button:not([disabled])", + "a[href]", + "area[href]", + "summary", + "iframe", + "object", + "embed", + "audio[controls]", + "video[controls]", + "[contenteditable]", + ], + S = w.join(",") + ",[tabindex]"; + (t.FOCUSABLE_ELEMENT_SELECTOR = S), w.push('[tabindex]:not([tabindex="-1"])'); + var A = w.join(':not([tabindex="-1"]),'); + t.TABBABLE_ELEMENT_SELECTOR = A; + }, + 51113: (e, t, n) => { + "use strict"; + var r = n(86633); + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.default = function (e) { + return a.default.createElement(i.default, (0, o.default)({ timeout: { enter: 0, exit: 125 } }, e), function (t) { + return a.default.cloneElement(e.children, { open: !!s[t] }); + }); + }); + var o = r(n(62665)), + a = r(n(23469)), + i = r(n(30980)), + s = { entering: !1, entered: !0 }; + }, + 81994: (e, t, n) => { + "use strict"; + var r = n(86633); + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.default = function (e) { + var t = e.prototype, + n = t.UNSAFE_componentWillUpdate, + r = t.UNSAFE_componentWillMount, + i = t.UNSAFE_componentWillReceiveProps; + -1 === (0, o.default)(a.default.version, "16.3.0") && + (n && + (t.componentWillUpdate = function (e, t) { + n.apply(this, arguments); + }), + r && + (t.componentWillMount = function () { + r.apply(this, arguments); + }), + i && + (t.componentWillReceiveProps = function (e) { + i.apply(this, arguments); + })); + }); + var o = r(n(64212)), + a = r(n(23469)); + }, + 82463: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), (t.default = void 0); + var n = 0; + t.default = function () { + return "react-spectrum-" + ++n; + }; + }, + 78742: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.interpretKeyboardEvent = function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : "vertical"; + switch (e.key) { + case "Enter": + case " ": + this.onSelectFocused && this.onSelectFocused(e); + break; + case "Tab": + this.onTab && this.onTab(e); + break; + case "PageUp": + this.onPageUp ? this.onPageUp(e) : this.onFocusFirst && this.onFocusFirst(e); + break; + case "PageDown": + this.onPageDown ? this.onPageDown(e) : this.onFocusLast && this.onFocusLast(e); + break; + case "Home": + this.onFocusFirst && this.onFocusFirst(e); + break; + case "End": + this.onFocusLast && this.onFocusLast(e); + break; + case "ArrowUp": + case "Up": + e.altKey && this.onAltArrowUp ? this.onAltArrowUp(e) : "horizontal" !== t && this.onFocusPrevious && this.onFocusPrevious(e); + break; + case "ArrowDown": + case "Down": + e.altKey && this.onAltArrowDown ? this.onAltArrowDown(e) : "horizontal" !== t && this.onFocusNext && this.onFocusNext(e); + break; + case "ArrowLeft": + case "Left": + "vertical" !== t && this.onFocusPrevious && this.onFocusPrevious(e); + break; + case "ArrowRight": + case "Right": + "vertical" !== t && this.onFocusNext && this.onFocusNext(e); + break; + case "Escape": + case "Esc": + this.onEscape && this.onEscape(e); + } + }), + (t.chain = function () { + for (var e = arguments.length, t = new Array(e), n = 0; n < e; n++) t[n] = arguments[n]; + return function () { + var e = !0, + n = !1, + r = void 0; + try { + for (var o, a = t[Symbol.iterator](); !(e = (o = a.next()).done); e = !0) { + var i = o.value; + "function" == typeof i && i.apply(void 0, arguments); + } + } catch (e) { + (n = !0), (r = e); + } finally { + try { + e || null == a.return || a.return(); + } finally { + if (n) throw r; + } + } + }; + }), + (t.focusAfterMouseEvent = function (e, t) { + document ? (e && (e.call(this, t), t.isDefaultPrevented()) ? (n = "mousedown" === t.type) : (n || "function" != typeof this.focus || this.focus(), "mouseup" === t.type && (n = !1))) : e && e.call(this, t); + }); + var n = !1; + }, + 98606: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.default = function (e) { + var t = {}; + for (var o in e) e.hasOwnProperty(o) && (n[o] || r.test(o)) && (t[o] = e[o]); + return t; + }); + var n = { + abbr: 1, + accept: 1, + acceptCharset: 1, + accessKey: 1, + action: 1, + allowFullScreen: 1, + allowTransparency: 1, + alt: 1, + async: 1, + autoCapitalize: 1, + autoComplete: 1, + autoCorrect: 1, + autoFocus: 1, + autoPlay: 1, + cellPadding: 1, + cellSpacing: 1, + challenge: 1, + charset: 1, + checked: 1, + cite: 1, + class: 1, + className: 1, + cols: 1, + colSpan: 1, + command: 1, + content: 1, + contentEditable: 1, + contextMenu: 1, + controls: 1, + coords: 1, + crossOrigin: 1, + data: 1, + dateTime: 1, + default: 1, + defer: 1, + dir: 1, + disabled: 1, + download: 1, + draggable: 1, + dropzone: 1, + encType: 1, + for: 1, + form: 1, + formAction: 1, + formEncType: 1, + formMethod: 1, + formNoValidate: 1, + formTarget: 1, + frameBorder: 1, + headers: 1, + height: 1, + hidden: 1, + high: 1, + href: 1, + hrefLang: 1, + htmlFor: 1, + httpEquiv: 1, + icon: 1, + id: 1, + inputMode: 1, + isMap: 1, + itemId: 1, + itemProp: 1, + itemRef: 1, + itemScope: 1, + itemType: 1, + kind: 1, + label: 1, + lang: 1, + list: 1, + loop: 1, + manifest: 1, + max: 1, + maxLength: 1, + media: 1, + mediaGroup: 1, + method: 1, + min: 1, + minLength: 1, + multiple: 1, + muted: 1, + name: 1, + noValidate: 1, + open: 1, + optimum: 1, + pattern: 1, + ping: 1, + placeholder: 1, + poster: 1, + preload: 1, + radioGroup: 1, + readOnly: 1, + rel: 1, + required: 1, + role: 1, + rows: 1, + rowSpan: 1, + sandbox: 1, + scope: 1, + scoped: 1, + scrolling: 1, + seamless: 1, + selected: 1, + shape: 1, + size: 1, + sizes: 1, + sortable: 1, + span: 1, + spellCheck: 1, + src: 1, + srcDoc: 1, + srcSet: 1, + start: 1, + step: 1, + style: 1, + tabIndex: 1, + target: 1, + title: 1, + translate: 1, + type: 1, + typeMustMatch: 1, + useMap: 1, + value: 1, + width: 1, + wmode: 1, + wrap: 1, + onCopy: 1, + onCut: 1, + onPaste: 1, + onLoad: 1, + onError: 1, + onWheel: 1, + onScroll: 1, + onCompositionEnd: 1, + onCompositionStart: 1, + onCompositionUpdate: 1, + onKeyDown: 1, + onKeyPress: 1, + onKeyUp: 1, + onFocus: 1, + onBlur: 1, + onChange: 1, + onInput: 1, + onSubmit: 1, + onClick: 1, + onContextMenu: 1, + onDoubleClick: 1, + onDrag: 1, + onDragEnd: 1, + onDragEnter: 1, + onDragExit: 1, + onDragLeave: 1, + onDragOver: 1, + onDragStart: 1, + onDrop: 1, + onMouseDown: 1, + onMouseEnter: 1, + onMouseLeave: 1, + onMouseMove: 1, + onMouseOut: 1, + onMouseOver: 1, + onMouseUp: 1, + onSelect: 1, + onTouchCancel: 1, + onTouchEnd: 1, + onTouchMove: 1, + onTouchStart: 1, + onAnimationStart: 1, + onAnimationEnd: 1, + onAnimationIteration: 1, + onTransitionEnd: 1, + }, + r = /^((data|aria)-.*)$/; + }, + 79370: (e, t, n) => { + "use strict"; + var r = n(86633); + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.setLocale = function (e) { + i = e; + }), + (t.getLocale = function () { + return i; + }), + (t.messageFormatter = function (e) { + var t = {}; + return function (n, r, a) { + var s = t[n + "." + i]; + if (!s) { + var c = (e[i] || e["en-US"])[n]; + if (!c) throw new Error("Could not find intl message ".concat(n, " in ").concat(i, " locale")); + (s = new o.default(c, i, a)), (t[n] = s); + } + return s.format(r); + }; + }), + (t.defaultLocale = void 0); + var o = r(n(9087)), + a = ("undefined" != typeof navigator && (navigator.language || navigator.userLanguage)) || "en-US"; + t.defaultLocale = a; + var i = a; + }, + 91641: (e, t) => { + "use strict"; + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.default = void 0), + (t.default = function (e, t, n) { + if (t && t.contains(e)) { + var r = t.clientHeight, + o = t.clientWidth, + a = t.scrollTop, + i = t.scrollLeft, + s = e.offsetHeight, + c = e.offsetWidth, + l = e.offsetTop, + u = e.offsetLeft, + d = window.getComputedStyle(t).position, + p = t.offsetTop, + f = t.offsetLeft; + if (("static" !== d && (p = f = 0), l < a)) t.scrollTop = l; + else { + var m = l + s; + m > a + r && (t.scrollTop = n ? l - p : m - r - p); + } + if (u < i) t.scrollLeft = u; + else { + var h = u + c; + h > i + o && (t.scrollLeft = n ? u - f : h - o - f); + } + } + }); + }, + 82453: (e, t) => { + "use strict"; + function n() { + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : "", + t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : "NFC"; + return "normalize" in String.prototype && (e = e.normalize(t)), e; + } + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.isUrl = function (e) { + return e && !!e.match(/\/|:|\./g); + }), + (t.normalize = n), + (t.removeDiacritics = function () { + return n(arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : "", (arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : "NFD").replace("C", "D")).replace(/[\u0300-\u036f]/g, ""); + }), + (t.getTextFromReact = function (e) { + var t = ""; + return ( + (function e(n) { + if ("string" == typeof n || "number" == typeof n) t = "".concat(t, " ").concat(n); + else if (Array.isArray(n)) + n.forEach(function (t) { + return e(t); + }); + else if (n && n.props) { + var r = n.props.children; + Array.isArray(r) + ? r.forEach(function (t) { + return e(t); + }) + : e(r); + } + })(e), + t.trim().replace(/(\s)(?:\s+)/g, "$1") + ); + }); + }, + 43793: (e, t, n) => { + const r = n(41644); + t.J = r._sophia; + }, + 41644: (e, t) => { + const n = + window._sophia || + (function (e) { + const t = "[Sophia]", + r = function () {}, + o = { stage: "https://p13n-mr-stage.adobe.io", prod: "https://p13n-mr.adobe.io" }, + a = { ActionId: "", CampaignId: "", ContainerId: "", ControlGroupId: "", TreatmentId: "", VariationId: "", CardId: "", SurfaceId: "" }, + i = "response", + s = "headers", + c = "doesResponseExist", + l = "status"; + var u, + d = [], + p = function (e, t) { + var r, + o, + a = document.querySelectorAll(t), + i = ((r = e), ((o = document.createElement("html")).innerHTML = r), o); + i && + (h.log("Found target..", i), + Object.keys(a).forEach(function (e) { + if ((h.log("replacing the content on page for classIdentifier :", t), void 0 === n.conf.targetSelector || "" === n.conf.targetSelector)) a[e].innerHTML = i.innerHTML; + else { + var r = i.querySelectorAll(n.conf.targetSelector); + r && r.length > 0 && (a[e].innerHTML = r[0].innerHTML); + } + })), + (n.endTime = performance.now()), + h.log("Total time taken for fetching experience from Sophia and replacing XF: ", n.endTime - n.startTime, " milliseconds."), + document.body.dispatchEvent(new CustomEvent(n.events.EVENT_XF_RENDER_FINISH, { bubbles: !0, cancelable: !0, detail: { targetSelector: t } })); + }, + f = function (e) { + h.log("Got response from Sophia:: ", e.responseText); + var t = e[i]; + if (e[c]) { + var r = t.surfaces[n.conf.surfaceID].containers; + r.forEach(function (e, o) { + "head" === e.containerLabel + ? (function (e, t) { + if ((h.log("Head card", e), e.data)) { + var n = document.getElementsByTagName("head")[0], + r = document.createElement("script"); + (r.type = "text/javascript"), "URL" === e.dataType ? (r.src = e.data) : (r.text = e.data), n.appendChild(r); + } + })(e, e.containerId) + : (function (e, t) { + let r = "", + o = ""; + o = void 0 === n.conf.sourceSelector || "" === n.conf.sourceSelector ? `.${n.conf.surfaceID}_${e.containerId}` : n.conf.sourceSelector; + var a = document.querySelectorAll(o); + a && + a.length > 0 && + (h.log("Found source..", a), + "URL" === e.dataType + ? fetch(e.data) + .then((e) => e.text()) + .then((e) => { + p(e, o); + }) + : p(e.data, o), + (r = o)), + (function (e, t, r) { + var o = {}; + (o.ActionId = e.actionBlockId), + (o.CampaignId = e.campaignId), + (o.ContainerId = e.containerId), + (o.ControlGroupId = e.controlGroupId), + (o.TreatmentId = e.treatmentId), + (o.VariationId = e.variationId), + (o.CardId = r), + (o.SurfaceId = n.conf.surfaceID), + (o.event = "render"), + n.conf.nonGuidEnabled && (o.sophiaUUID = t), + d.push(o); + })(e.containerAnalyticsData, t, r); + })(r[o], t.analyticsData.responseGUID); + }), + n.conf.enableAdobeAnalyticsIngestion && + (window.digitalData && window._satellite + ? ((window.digitalData.sophiaResponse = { fromPage: d }), window._satellite.track("state", { digitalData: window.digitalData._snapshot() }), window.digitalData._delete("digitalData.sophiaResponse")) + : h.error("Launch not ready : Unable to send Analytics")), + document.body.dispatchEvent(new CustomEvent(n.events.EVENT_SOPHIA_RENDER_FINISHED, { bubbles: !0, cancelable: !0, detail: { sophiaResponse: d } })); + } + }, + m = function (e) { + let t = document.cookie.split("; ").find((t) => t.startsWith(e)); + return void 0 === t ? "" : t.split("=")[1]; + }, + h = + ((u = { log: r, error: r }), + window.console && + window.console.log && + window.console.error && + ((u.error = function () { + window.console.error.apply(window.console, [].concat.apply([t], arguments)); + }), + e.debug && + (u.log = function () { + window.console.log.apply(window.console, [].concat.apply([t], arguments)); + })), + u); + return { + conf: e, + loadExperienceFromSophia: function (t) { + return ( + h.log("in loadexperincefromSophia"), + document.body.dispatchEvent(new CustomEvent(n.events.EVENT_SOPHIA_RENDER_STARTED, { bubbles: !0, cancelable: !0 })), + (n.startTime = performance.now()), + (this.result = { doesResponseExist: !1 }), + (this.conf = Object.assign({}, e)), + (this.conf = Object.assign(this.conf, t || {})), + (function () { + h.log("Config: ", n.conf); + var e = o[n.conf.env] + "/psdk/v2/content", + t = Object.assign({ surfaceId: n.conf.surfaceID, clientCode: n.conf.clientCode }, n.conf.contextualParams), + r = (t = Object.entries(t).map(function (e) { + return encodeURIComponent(e[0]) + "=" + encodeURIComponent(e[1]); + })).join("&"), + u = [ + { key: "x-api-key", val: n.conf.apiKey }, + { key: "Content-Type", val: "application/json" }, + ]; + if (n.conf.guidEnabled) { + var d = n.conf.accessToken + ? n.conf.accessToken + : void 0 !== window.adobeIMS + ? (function () { + var e = window.adobeIMS.getAccessToken(); + return window.adobeIMS.version.startsWith("v2-") ? (null !== e ? e.token : null) : e; + })() + : null; + null !== d && u.push({ key: "Authorization", val: "Bearer " + d }); + } + return ( + n.conf.nonGuidEnabled && + (u.push({ key: "x-adobe-uuid", val: null !== n.conf.nonGuidId && "" !== n.conf.nonGuidId ? n.conf.nonGuidId : m(n.conf.nonGuidIdCookieName) }), + u.push({ key: "x-adobe-uuid-type", val: null !== n.conf.nonGuidIdType ? n.conf.nonGuidIdType : "visitorId" })), + (u = u.concat(n.conf.additionalHeaders)), + (window.digitalData = window.digitalData || { sophiaResponse: [a] }), + (function (e, t) { + var r = performance.now(), + o = new XMLHttpRequest(); + return new Promise(function (a, u) { + (o.onreadystatechange = function () { + if (o.readyState === XMLHttpRequest.DONE) + if (((n.result[l] = o.status), o.status >= 200 && o.status < 300)) { + var t = performance.now(), + d = JSON.parse(o.responseText); + if ( + (h.log("Got response from Sophia:: ", d), + h.log("Total time taken for fetching response for: ", e, t - r, " milliseconds."), + (n.result[i] = d), + (n.result[s] = {}), + (o.getAllResponseHeaders() + ? o + .getAllResponseHeaders() + .trim() + .split(/[\r\n]+/) + : [] + ).forEach(function (e) { + var t = e.split(": "), + r = t.shift(), + o = t.join(": "); + n.result[s][r] = o; + }), + d.surfaces && d.surfaces[n.conf.surfaceID] && d.surfaces[n.conf.surfaceID].containers && d.surfaces[n.conf.surfaceID].containers.length > 0) + ) { + var p = d.surfaces[n.conf.surfaceID].containers; + n.result[c] = p.length > 0; + } + !0 === n.conf.useExperienceFragment && f(n.result), a(n.result); + } else (n.result[l] = o.statusText), u(n.result); + }), + o.open("GET", e, !0), + t && + t.forEach(function (e) { + o.setRequestHeader(e.key, e.val); + }), + h.log("Sending request: ", e), + o.send(); + }); + })(e + "?" + r, u) + ); + })() + ); + }, + events: { EVENT_XF_RENDER_FINISH: "sophia:render:xfrendered", EVENT_SOPHIA_RENDER_STARTED: "sophia:render:started", EVENT_SOPHIA_RENDER_FINISHED: "sophia:render:finished" }, + }; + })({ + sourceSelector: null, + targetSelector: ".root.responsivegrid", + surfaceID: "---Your surface id---", + env: "stage", + apiKey: "---Your api-key---", + clientCode: "adobe.com", + accessToken: "---- Replace with test access token if testing without adobeIMS ----", + guidEnabled: !0, + nonGuidEnabled: !1, + enableAdobeAnalyticsIngestion: !0, + nonGuidIdCookieName: "aam_uuid", + nonGuidId: null, + nonGuidIdType: null, + additionalHeaders: [], + contextualParams: {}, + useExperienceFragment: !0, + debug: !1, + }); + (window._sophia = n), (t._sophia = n); + }, + 4837: (e, t) => { + "use strict"; + function n(e) { + var t = void 0; + return ( + "undefined" != typeof Reflect && "function" == typeof Reflect.ownKeys + ? (t = Reflect.ownKeys(e.prototype)) + : ((t = Object.getOwnPropertyNames(e.prototype)), "function" == typeof Object.getOwnPropertySymbols && (t = t.concat(Object.getOwnPropertySymbols(e.prototype)))), + t.forEach(function (t) { + if ("constructor" !== t) { + var n = Object.getOwnPropertyDescriptor(e.prototype, t); + "function" == typeof n.value && Object.defineProperty(e.prototype, t, r(e, t, n)); + } + }), + e + ); + } + function r(e, t, n) { + var r = n.value; + if ("function" != typeof r) throw new Error("@autobind decorator can only be applied to methods not: " + typeof r); + var o = !1; + return { + configurable: !0, + get: function () { + if (o || this === e.prototype || this.hasOwnProperty(t)) return r; + var n = r.bind(this); + return (o = !0), Object.defineProperty(this, t, { value: n, configurable: !0, writable: !0 }), (o = !1), n; + }, + }; + } + Object.defineProperty(t, "__esModule", { value: !0 }), + (t.default = function () { + for (var e = arguments.length, t = Array(e), o = 0; o < e; o++) t[o] = arguments[o]; + return 1 === t.length ? n.apply(void 0, t) : r.apply(void 0, t); + }), + (e.exports = t.default); + }, + 15811: (e, t, n) => { + e.exports = { default: n(12378), __esModule: !0 }; + }, + 54619: (e, t, n) => { + e.exports = { default: n(51038), __esModule: !0 }; + }, + 37931: (e, t, n) => { + e.exports = { default: n(20885), __esModule: !0 }; + }, + 10099: (e, t, n) => { + e.exports = { default: n(71866), __esModule: !0 }; + }, + 14074: (e, t, n) => { + e.exports = { default: n(89013), __esModule: !0 }; + }, + 39853: (e, t, n) => { + e.exports = { default: n(16752), __esModule: !0 }; + }, + 77733: (e, t, n) => { + e.exports = { default: n(97036), __esModule: !0 }; + }, + 45304: (e, t, n) => { + e.exports = { default: n(3599), __esModule: !0 }; + }, + 71851: (e, t, n) => { + e.exports = { default: n(31609), __esModule: !0 }; + }, + 12958: (e, t, n) => { + e.exports = { default: n(25635), __esModule: !0 }; + }, + 14130: (e, t, n) => { + e.exports = { default: n(24874), __esModule: !0 }; + }, + 23776: (e, t, n) => { + e.exports = { default: n(39111), __esModule: !0 }; + }, + 50299: (e, t, n) => { + e.exports = { default: n(44845), __esModule: !0 }; + }, + 29652: (e, t) => { + "use strict"; + t.Z = function (e, t) { + if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); + }; + }, + 35656: (e, t, n) => { + "use strict"; + var r, + o = (r = n(39853)) && r.__esModule ? r : { default: r }; + t.Z = (function () { + function e(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), (r.configurable = !0), "value" in r && (r.writable = !0), (0, o.default)(e, r.key, r); + } + } + return function (t, n, r) { + return n && e(t.prototype, n), r && e(t, r), t; + }; + })(); + }, + 79988: (e, t, n) => { + "use strict"; + var r, + o = (r = n(39853)) && r.__esModule ? r : { default: r }; + t.Z = function (e, t, n) { + return t in e ? (0, o.default)(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : (e[t] = n), e; + }; + }, + 12458: (e, t, n) => { + "use strict"; + var r, + o = (r = n(10099)) && r.__esModule ? r : { default: r }; + t.Z = + o.default || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }; + }, + 52211: (e, t, n) => { + "use strict"; + var r = i(n(12958)), + o = i(n(14074)), + a = i(n(16715)); + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + t.Z = function (e, t) { + if ("function" != typeof t && null !== t) throw new TypeError("Super expression must either be null or a function, not " + (void 0 === t ? "undefined" : (0, a.default)(t))); + (e.prototype = (0, o.default)(t && t.prototype, { constructor: { value: e, enumerable: !1, writable: !0, configurable: !0 } })), t && (r.default ? (0, r.default)(e, t) : (e.__proto__ = t)); + }; + }, + 37526: (e, t) => { + "use strict"; + t.Z = function (e, t) { + var n = {}; + for (var r in e) t.indexOf(r) >= 0 || (Object.prototype.hasOwnProperty.call(e, r) && (n[r] = e[r])); + return n; + }; + }, + 10357: (e, t, n) => { + "use strict"; + var r, + o = (r = n(16715)) && r.__esModule ? r : { default: r }; + t.Z = function (e, t) { + if (!e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); + return !t || ("object" !== (void 0 === t ? "undefined" : (0, o.default)(t)) && "function" != typeof t) ? e : t; + }; + }, + 12978: (e, t, n) => { + "use strict"; + var r = a(n(37931)), + o = a(n(54619)); + function a(e) { + return e && e.__esModule ? e : { default: e }; + } + t.Z = function (e, t) { + if (Array.isArray(e)) return e; + if ((0, r.default)(Object(e))) + return (function (e, t) { + var n = [], + r = !0, + a = !1, + i = void 0; + try { + for (var s, c = (0, o.default)(e); !(r = (s = c.next()).done) && (n.push(s.value), !t || n.length !== t); r = !0); + } catch (e) { + (a = !0), (i = e); + } finally { + try { + !r && c.return && c.return(); + } finally { + if (a) throw i; + } + } + return n; + })(e, t); + throw new TypeError("Invalid attempt to destructure non-iterable instance"); + }; + }, + 9903: (e, t, n) => { + "use strict"; + var r, + o = (r = n(15811)) && r.__esModule ? r : { default: r }; + t.Z = function (e) { + if (Array.isArray(e)) { + for (var t = 0, n = Array(e.length); t < e.length; t++) n[t] = e[t]; + return n; + } + return (0, o.default)(e); + }; + }, + 16715: (e, t, n) => { + "use strict"; + t.__esModule = !0; + var r = i(n(50299)), + o = i(n(23776)), + a = + "function" == typeof o.default && "symbol" == typeof r.default + ? function (e) { + return typeof e; + } + : function (e) { + return e && "function" == typeof o.default && e.constructor === o.default && e !== o.default.prototype ? "symbol" : typeof e; + }; + function i(e) { + return e && e.__esModule ? e : { default: e }; + } + t.default = + "function" == typeof o.default && "symbol" === a(r.default) + ? function (e) { + return void 0 === e ? "undefined" : a(e); + } + : function (e) { + return e && "function" == typeof o.default && e.constructor === o.default && e !== o.default.prototype ? "symbol" : void 0 === e ? "undefined" : a(e); + }; + }, + 12378: (e, t, n) => { + n(51678), n(26744), (e.exports = n(62327).Array.from); + }, + 51038: (e, t, n) => { + n(157), n(51678), (e.exports = n(54537)); + }, + 20885: (e, t, n) => { + n(157), n(51678), (e.exports = n(81889)); + }, + 71866: (e, t, n) => { + n(58576), (e.exports = n(62327).Object.assign); + }, + 89013: (e, t, n) => { + n(19698); + var r = n(62327).Object; + e.exports = function (e, t) { + return r.create(e, t); + }; + }, + 16752: (e, t, n) => { + n(93606); + var r = n(62327).Object; + e.exports = function (e, t, n) { + return r.defineProperty(e, t, n); + }; + }, + 97036: (e, t, n) => { + n(83198); + var r = n(62327).Object; + e.exports = function (e, t) { + return r.getOwnPropertyDescriptor(e, t); + }; + }, + 3599: (e, t, n) => { + n(40402), (e.exports = n(62327).Object.getPrototypeOf); + }, + 31609: (e, t, n) => { + n(59061), (e.exports = n(62327).Object.keys); + }, + 25635: (e, t, n) => { + n(34371), (e.exports = n(62327).Object.setPrototypeOf); + }, + 24874: (e, t, n) => { + n(1834), n(51678), n(157), n(14444), n(31993), n(73472), (e.exports = n(62327).Promise); + }, + 39111: (e, t, n) => { + n(911), n(1834), n(59512), n(76775), (e.exports = n(62327).Symbol); + }, + 44845: (e, t, n) => { + n(51678), n(157), (e.exports = n(55603).f("iterator")); + }, + 47416: (e) => { + e.exports = function (e) { + if ("function" != typeof e) throw TypeError(e + " is not a function!"); + return e; + }; + }, + 90448: (e) => { + e.exports = function () {}; + }, + 11507: (e) => { + e.exports = function (e, t, n, r) { + if (!(e instanceof t) || (void 0 !== r && r in e)) throw TypeError(n + ": incorrect invocation!"); + return e; + }; + }, + 19626: (e, t, n) => { + var r = n(25667); + e.exports = function (e) { + if (!r(e)) throw TypeError(e + " is not an object!"); + return e; + }; + }, + 63531: (e, t, n) => { + var r = n(20066), + o = n(33349), + a = n(1351); + e.exports = function (e) { + return function (t, n, i) { + var s, + c = r(t), + l = o(c.length), + u = a(i, l); + if (e && n != n) { + for (; l > u; ) if ((s = c[u++]) != s) return !0; + } else for (; l > u; u++) if ((e || u in c) && c[u] === n) return e || u || 0; + return !e && -1; + }; + }; + }, + 51066: (e, t, n) => { + var r = n(29163), + o = n(59346)("toStringTag"), + a = + "Arguments" == + r( + (function () { + return arguments; + })() + ); + e.exports = function (e) { + var t, n, i; + return void 0 === e + ? "Undefined" + : null === e + ? "Null" + : "string" == + typeof (n = (function (e, t) { + try { + return e[t]; + } catch (e) {} + })((t = Object(e)), o)) + ? n + : a + ? r(t) + : "Object" == (i = r(t)) && "function" == typeof t.callee + ? "Arguments" + : i; + }; + }, + 29163: (e) => { + var t = {}.toString; + e.exports = function (e) { + return t.call(e).slice(8, -1); + }; + }, + 62327: (e) => { + var t = (e.exports = { version: "2.6.5" }); + "number" == typeof __e && (__e = t); + }, + 80498: (e, t, n) => { + "use strict"; + var r = n(78710), + o = n(80689); + e.exports = function (e, t, n) { + t in e ? r.f(e, t, o(0, n)) : (e[t] = n); + }; + }, + 94397: (e, t, n) => { + var r = n(47416); + e.exports = function (e, t, n) { + if ((r(e), void 0 === t)) return e; + switch (n) { + case 1: + return function (n) { + return e.call(t, n); + }; + case 2: + return function (n, r) { + return e.call(t, n, r); + }; + case 3: + return function (n, r, o) { + return e.call(t, n, r, o); + }; + } + return function () { + return e.apply(t, arguments); + }; + }; + }, + 12435: (e) => { + e.exports = function (e) { + if (null == e) throw TypeError("Can't call method on " + e); + return e; + }; + }, + 66703: (e, t, n) => { + e.exports = !n(63696)(function () { + return ( + 7 != + Object.defineProperty({}, "a", { + get: function () { + return 7; + }, + }).a + ); + }); + }, + 32101: (e, t, n) => { + var r = n(25667), + o = n(3132).document, + a = r(o) && r(o.createElement); + e.exports = function (e) { + return a ? o.createElement(e) : {}; + }; + }, + 38806: (e) => { + e.exports = "constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(","); + }, + 83552: (e, t, n) => { + var r = n(85626), + o = n(21864), + a = n(43174); + e.exports = function (e) { + var t = r(e), + n = o.f; + if (n) for (var i, s = n(e), c = a.f, l = 0; s.length > l; ) c.call(e, (i = s[l++])) && t.push(i); + return t; + }; + }, + 67738: (e, t, n) => { + var r = n(3132), + o = n(62327), + a = n(94397), + i = n(71392), + s = n(53157), + c = "prototype", + l = function (e, t, n) { + var u, + d, + p, + f = e & l.F, + m = e & l.G, + h = e & l.S, + v = e & l.P, + y = e & l.B, + g = e & l.W, + b = m ? o : o[t] || (o[t] = {}), + E = b[c], + D = m ? r : h ? r[t] : (r[t] || {})[c]; + for (u in (m && (n = t), n)) + ((d = !f && D && void 0 !== D[u]) && s(b, u)) || + ((p = d ? D[u] : n[u]), + (b[u] = + m && "function" != typeof D[u] + ? n[u] + : y && d + ? a(p, r) + : g && D[u] == p + ? (function (e) { + var t = function (t, n, r) { + if (this instanceof e) { + switch (arguments.length) { + case 0: + return new e(); + case 1: + return new e(t); + case 2: + return new e(t, n); + } + return new e(t, n, r); + } + return e.apply(this, arguments); + }; + return (t[c] = e[c]), t; + })(p) + : v && "function" == typeof p + ? a(Function.call, p) + : p), + v && (((b.virtual || (b.virtual = {}))[u] = p), e & l.R && E && !E[u] && i(E, u, p))); + }; + (l.F = 1), (l.G = 2), (l.S = 4), (l.P = 8), (l.B = 16), (l.W = 32), (l.U = 64), (l.R = 128), (e.exports = l); + }, + 63696: (e) => { + e.exports = function (e) { + try { + return !!e(); + } catch (e) { + return !0; + } + }; + }, + 36542: (e, t, n) => { + var r = n(94397), + o = n(96074), + a = n(6419), + i = n(19626), + s = n(33349), + c = n(72633), + l = {}, + u = {}, + d = (e.exports = function (e, t, n, d, p) { + var f, + m, + h, + v, + y = p + ? function () { + return e; + } + : c(e), + g = r(n, d, t ? 2 : 1), + b = 0; + if ("function" != typeof y) throw TypeError(e + " is not iterable!"); + if (a(y)) { + for (f = s(e.length); f > b; b++) if ((v = t ? g(i((m = e[b]))[0], m[1]) : g(e[b])) === l || v === u) return v; + } else for (h = y.call(e); !(m = h.next()).done; ) if ((v = o(h, g, m.value, t)) === l || v === u) return v; + }); + (d.BREAK = l), (d.RETURN = u); + }, + 3132: (e) => { + var t = (e.exports = "undefined" != typeof window && window.Math == Math ? window : "undefined" != typeof self && self.Math == Math ? self : Function("return this")()); + "number" == typeof __g && (__g = t); + }, + 53157: (e) => { + var t = {}.hasOwnProperty; + e.exports = function (e, n) { + return t.call(e, n); + }; + }, + 71392: (e, t, n) => { + var r = n(78710), + o = n(80689); + e.exports = n(66703) + ? function (e, t, n) { + return r.f(e, t, o(1, n)); + } + : function (e, t, n) { + return (e[t] = n), e; + }; + }, + 21551: (e, t, n) => { + var r = n(3132).document; + e.exports = r && r.documentElement; + }, + 16960: (e, t, n) => { + e.exports = + !n(66703) && + !n(63696)(function () { + return ( + 7 != + Object.defineProperty(n(32101)("div"), "a", { + get: function () { + return 7; + }, + }).a + ); + }); + }, + 98169: (e) => { + e.exports = function (e, t, n) { + var r = void 0 === n; + switch (t.length) { + case 0: + return r ? e() : e.call(n); + case 1: + return r ? e(t[0]) : e.call(n, t[0]); + case 2: + return r ? e(t[0], t[1]) : e.call(n, t[0], t[1]); + case 3: + return r ? e(t[0], t[1], t[2]) : e.call(n, t[0], t[1], t[2]); + case 4: + return r ? e(t[0], t[1], t[2], t[3]) : e.call(n, t[0], t[1], t[2], t[3]); + } + return e.apply(n, t); + }; + }, + 41111: (e, t, n) => { + var r = n(29163); + e.exports = Object("z").propertyIsEnumerable(0) + ? Object + : function (e) { + return "String" == r(e) ? e.split("") : Object(e); + }; + }, + 6419: (e, t, n) => { + var r = n(50930), + o = n(59346)("iterator"), + a = Array.prototype; + e.exports = function (e) { + return void 0 !== e && (r.Array === e || a[o] === e); + }; + }, + 35568: (e, t, n) => { + var r = n(29163); + e.exports = + Array.isArray || + function (e) { + return "Array" == r(e); + }; + }, + 25667: (e) => { + e.exports = function (e) { + return "object" == typeof e ? null !== e : "function" == typeof e; + }; + }, + 96074: (e, t, n) => { + var r = n(19626); + e.exports = function (e, t, n, o) { + try { + return o ? t(r(n)[0], n[1]) : t(n); + } catch (t) { + var a = e.return; + throw (void 0 !== a && r(a.call(e)), t); + } + }; + }, + 91008: (e, t, n) => { + "use strict"; + var r = n(45349), + o = n(80689), + a = n(35778), + i = {}; + n(71392)(i, n(59346)("iterator"), function () { + return this; + }), + (e.exports = function (e, t, n) { + (e.prototype = r(i, { next: o(1, n) })), a(e, t + " Iterator"); + }); + }, + 33047: (e, t, n) => { + "use strict"; + var r = n(18044), + o = n(67738), + a = n(77070), + i = n(71392), + s = n(50930), + c = n(91008), + l = n(35778), + u = n(99786), + d = n(59346)("iterator"), + p = !([].keys && "next" in [].keys()), + f = "keys", + m = "values", + h = function () { + return this; + }; + e.exports = function (e, t, n, v, y, g, b) { + c(n, t, v); + var E, + D, + C, + w = function (e) { + if (!p && e in _) return _[e]; + switch (e) { + case f: + case m: + return function () { + return new n(this, e); + }; + } + return function () { + return new n(this, e); + }; + }, + S = t + " Iterator", + A = y == m, + k = !1, + _ = e.prototype, + T = _[d] || _["@@iterator"] || (y && _[y]), + I = T || w(y), + O = y ? (A ? w("entries") : I) : void 0, + F = ("Array" == t && _.entries) || T; + if ( + (F && (C = u(F.call(new e()))) !== Object.prototype && C.next && (l(C, S, !0), r || "function" == typeof C[d] || i(C, d, h)), + A && + T && + T.name !== m && + ((k = !0), + (I = function () { + return T.call(this); + })), + (r && !b) || (!p && !k && _[d]) || i(_, d, I), + (s[t] = I), + (s[S] = h), + y) + ) + if (((E = { values: A ? I : w(m), keys: g ? I : w(f), entries: O }), b)) for (D in E) D in _ || a(_, D, E[D]); + else o(o.P + o.F * (p || k), t, E); + return E; + }; + }, + 81256: (e, t, n) => { + var r = n(59346)("iterator"), + o = !1; + try { + var a = [7][r](); + (a.return = function () { + o = !0; + }), + Array.from(a, function () { + throw 2; + }); + } catch (e) {} + e.exports = function (e, t) { + if (!t && !o) return !1; + var n = !1; + try { + var a = [7], + i = a[r](); + (i.next = function () { + return { done: (n = !0) }; + }), + (a[r] = function () { + return i; + }), + e(a); + } catch (e) {} + return n; + }; + }, + 88623: (e) => { + e.exports = function (e, t) { + return { value: t, done: !!e }; + }; + }, + 50930: (e) => { + e.exports = {}; + }, + 18044: (e) => { + e.exports = !0; + }, + 13235: (e, t, n) => { + var r = n(15589)("meta"), + o = n(25667), + a = n(53157), + i = n(78710).f, + s = 0, + c = + Object.isExtensible || + function () { + return !0; + }, + l = !n(63696)(function () { + return c(Object.preventExtensions({})); + }), + u = function (e) { + i(e, r, { value: { i: "O" + ++s, w: {} } }); + }, + d = (e.exports = { + KEY: r, + NEED: !1, + fastKey: function (e, t) { + if (!o(e)) return "symbol" == typeof e ? e : ("string" == typeof e ? "S" : "P") + e; + if (!a(e, r)) { + if (!c(e)) return "F"; + if (!t) return "E"; + u(e); + } + return e[r].i; + }, + getWeak: function (e, t) { + if (!a(e, r)) { + if (!c(e)) return !0; + if (!t) return !1; + u(e); + } + return e[r].w; + }, + onFreeze: function (e) { + return l && d.NEED && c(e) && !a(e, r) && u(e), e; + }, + }); + }, + 11889: (e, t, n) => { + var r = n(3132), + o = n(73038).set, + a = r.MutationObserver || r.WebKitMutationObserver, + i = r.process, + s = r.Promise, + c = "process" == n(29163)(i); + e.exports = function () { + var e, + t, + n, + l = function () { + var r, o; + for (c && (r = i.domain) && r.exit(); e; ) { + (o = e.fn), (e = e.next); + try { + o(); + } catch (r) { + throw (e ? n() : (t = void 0), r); + } + } + (t = void 0), r && r.enter(); + }; + if (c) + n = function () { + i.nextTick(l); + }; + else if (!a || (r.navigator && r.navigator.standalone)) + if (s && s.resolve) { + var u = s.resolve(void 0); + n = function () { + u.then(l); + }; + } else + n = function () { + o.call(r, l); + }; + else { + var d = !0, + p = document.createTextNode(""); + new a(l).observe(p, { characterData: !0 }), + (n = function () { + p.data = d = !d; + }); + } + return function (r) { + var o = { fn: r, next: void 0 }; + t && (t.next = o), e || ((e = o), n()), (t = o); + }; + }; + }, + 8784: (e, t, n) => { + "use strict"; + var r = n(47416); + function o(e) { + var t, n; + (this.promise = new e(function (e, r) { + if (void 0 !== t || void 0 !== n) throw TypeError("Bad Promise constructor"); + (t = e), (n = r); + })), + (this.resolve = r(t)), + (this.reject = r(n)); + } + e.exports.f = function (e) { + return new o(e); + }; + }, + 91715: (e, t, n) => { + "use strict"; + var r = n(85626), + o = n(21864), + a = n(43174), + i = n(30001), + s = n(41111), + c = Object.assign; + e.exports = + !c || + n(63696)(function () { + var e = {}, + t = {}, + n = Symbol(), + r = "abcdefghijklmnopqrst"; + return ( + (e[n] = 7), + r.split("").forEach(function (e) { + t[e] = e; + }), + 7 != c({}, e)[n] || Object.keys(c({}, t)).join("") != r + ); + }) + ? function (e, t) { + for (var n = i(e), c = arguments.length, l = 1, u = o.f, d = a.f; c > l; ) for (var p, f = s(arguments[l++]), m = u ? r(f).concat(u(f)) : r(f), h = m.length, v = 0; h > v; ) d.call(f, (p = m[v++])) && (n[p] = f[p]); + return n; + } + : c; + }, + 45349: (e, t, n) => { + var r = n(19626), + o = n(65405), + a = n(38806), + i = n(48876)("IE_PROTO"), + s = function () {}, + c = "prototype", + l = function () { + var e, + t = n(32101)("iframe"), + r = a.length; + for (t.style.display = "none", n(21551).appendChild(t), t.src = "javascript:", (e = t.contentWindow.document).open(), e.write(""), e.close(), l = e.F; r--; ) delete l[c][a[r]]; + return l(); + }; + e.exports = + Object.create || + function (e, t) { + var n; + return null !== e ? ((s[c] = r(e)), (n = new s()), (s[c] = null), (n[i] = e)) : (n = l()), void 0 === t ? n : o(n, t); + }; + }, + 78710: (e, t, n) => { + var r = n(19626), + o = n(16960), + a = n(97924), + i = Object.defineProperty; + t.f = n(66703) + ? Object.defineProperty + : function (e, t, n) { + if ((r(e), (t = a(t, !0)), r(n), o)) + try { + return i(e, t, n); + } catch (e) {} + if ("get" in n || "set" in n) throw TypeError("Accessors not supported!"); + return "value" in n && (e[t] = n.value), e; + }; + }, + 65405: (e, t, n) => { + var r = n(78710), + o = n(19626), + a = n(85626); + e.exports = n(66703) + ? Object.defineProperties + : function (e, t) { + o(e); + for (var n, i = a(t), s = i.length, c = 0; s > c; ) r.f(e, (n = i[c++]), t[n]); + return e; + }; + }, + 12429: (e, t, n) => { + var r = n(43174), + o = n(80689), + a = n(20066), + i = n(97924), + s = n(53157), + c = n(16960), + l = Object.getOwnPropertyDescriptor; + t.f = n(66703) + ? l + : function (e, t) { + if (((e = a(e)), (t = i(t, !0)), c)) + try { + return l(e, t); + } catch (e) {} + if (s(e, t)) return o(!r.f.call(e, t), e[t]); + }; + }, + 85044: (e, t, n) => { + var r = n(20066), + o = n(22802).f, + a = {}.toString, + i = "object" == typeof window && window && Object.getOwnPropertyNames ? Object.getOwnPropertyNames(window) : []; + e.exports.f = function (e) { + return i && "[object Window]" == a.call(e) + ? (function (e) { + try { + return o(e); + } catch (e) { + return i.slice(); + } + })(e) + : o(r(e)); + }; + }, + 22802: (e, t, n) => { + var r = n(23876), + o = n(38806).concat("length", "prototype"); + t.f = + Object.getOwnPropertyNames || + function (e) { + return r(e, o); + }; + }, + 21864: (e, t) => { + t.f = Object.getOwnPropertySymbols; + }, + 99786: (e, t, n) => { + var r = n(53157), + o = n(30001), + a = n(48876)("IE_PROTO"), + i = Object.prototype; + e.exports = + Object.getPrototypeOf || + function (e) { + return (e = o(e)), r(e, a) ? e[a] : "function" == typeof e.constructor && e instanceof e.constructor ? e.constructor.prototype : e instanceof Object ? i : null; + }; + }, + 23876: (e, t, n) => { + var r = n(53157), + o = n(20066), + a = n(63531)(!1), + i = n(48876)("IE_PROTO"); + e.exports = function (e, t) { + var n, + s = o(e), + c = 0, + l = []; + for (n in s) n != i && r(s, n) && l.push(n); + for (; t.length > c; ) r(s, (n = t[c++])) && (~a(l, n) || l.push(n)); + return l; + }; + }, + 85626: (e, t, n) => { + var r = n(23876), + o = n(38806); + e.exports = + Object.keys || + function (e) { + return r(e, o); + }; + }, + 43174: (e, t) => { + t.f = {}.propertyIsEnumerable; + }, + 17386: (e, t, n) => { + var r = n(67738), + o = n(62327), + a = n(63696); + e.exports = function (e, t) { + var n = (o.Object || {})[e] || Object[e], + i = {}; + (i[e] = t(n)), + r( + r.S + + r.F * + a(function () { + n(1); + }), + "Object", + i + ); + }; + }, + 9266: (e) => { + e.exports = function (e) { + try { + return { e: !1, v: e() }; + } catch (e) { + return { e: !0, v: e }; + } + }; + }, + 20589: (e, t, n) => { + var r = n(19626), + o = n(25667), + a = n(8784); + e.exports = function (e, t) { + if ((r(e), o(t) && t.constructor === e)) return t; + var n = a.f(e); + return (0, n.resolve)(t), n.promise; + }; + }, + 80689: (e) => { + e.exports = function (e, t) { + return { enumerable: !(1 & e), configurable: !(2 & e), writable: !(4 & e), value: t }; + }; + }, + 5204: (e, t, n) => { + var r = n(71392); + e.exports = function (e, t, n) { + for (var o in t) n && e[o] ? (e[o] = t[o]) : r(e, o, t[o]); + return e; + }; + }, + 77070: (e, t, n) => { + e.exports = n(71392); + }, + 9365: (e, t, n) => { + var r = n(25667), + o = n(19626), + a = function (e, t) { + if ((o(e), !r(t) && null !== t)) throw TypeError(t + ": can't set as prototype!"); + }; + e.exports = { + set: + Object.setPrototypeOf || + ("__proto__" in {} + ? (function (e, t, r) { + try { + (r = n(94397)(Function.call, n(12429).f(Object.prototype, "__proto__").set, 2))(e, []), (t = !(e instanceof Array)); + } catch (e) { + t = !0; + } + return function (e, n) { + return a(e, n), t ? (e.__proto__ = n) : r(e, n), e; + }; + })({}, !1) + : void 0), + check: a, + }; + }, + 27217: (e, t, n) => { + "use strict"; + var r = n(3132), + o = n(62327), + a = n(78710), + i = n(66703), + s = n(59346)("species"); + e.exports = function (e) { + var t = "function" == typeof o[e] ? o[e] : r[e]; + i && + t && + !t[s] && + a.f(t, s, { + configurable: !0, + get: function () { + return this; + }, + }); + }; + }, + 35778: (e, t, n) => { + var r = n(78710).f, + o = n(53157), + a = n(59346)("toStringTag"); + e.exports = function (e, t, n) { + e && !o((e = n ? e : e.prototype), a) && r(e, a, { configurable: !0, value: t }); + }; + }, + 48876: (e, t, n) => { + var r = n(34425)("keys"), + o = n(15589); + e.exports = function (e) { + return r[e] || (r[e] = o(e)); + }; + }, + 34425: (e, t, n) => { + var r = n(62327), + o = n(3132), + a = "__core-js_shared__", + i = o[a] || (o[a] = {}); + (e.exports = function (e, t) { + return i[e] || (i[e] = void 0 !== t ? t : {}); + })("versions", []).push({ version: r.version, mode: n(18044) ? "pure" : "global", copyright: "© 2019 Denis Pushkarev (zloirock.ru)" }); + }, + 21366: (e, t, n) => { + var r = n(19626), + o = n(47416), + a = n(59346)("species"); + e.exports = function (e, t) { + var n, + i = r(e).constructor; + return void 0 === i || null == (n = r(i)[a]) ? t : o(n); + }; + }, + 7554: (e, t, n) => { + var r = n(23486), + o = n(12435); + e.exports = function (e) { + return function (t, n) { + var a, + i, + s = String(o(t)), + c = r(n), + l = s.length; + return c < 0 || c >= l + ? e + ? "" + : void 0 + : (a = s.charCodeAt(c)) < 55296 || a > 56319 || c + 1 === l || (i = s.charCodeAt(c + 1)) < 56320 || i > 57343 + ? e + ? s.charAt(c) + : a + : e + ? s.slice(c, c + 2) + : i - 56320 + ((a - 55296) << 10) + 65536; + }; + }; + }, + 73038: (e, t, n) => { + var r, + o, + a, + i = n(94397), + s = n(98169), + c = n(21551), + l = n(32101), + u = n(3132), + d = u.process, + p = u.setImmediate, + f = u.clearImmediate, + m = u.MessageChannel, + h = u.Dispatch, + v = 0, + y = {}, + g = "onreadystatechange", + b = function () { + var e = +this; + if (y.hasOwnProperty(e)) { + var t = y[e]; + delete y[e], t(); + } + }, + E = function (e) { + b.call(e.data); + }; + (p && f) || + ((p = function (e) { + for (var t = [], n = 1; arguments.length > n; ) t.push(arguments[n++]); + return ( + (y[++v] = function () { + s("function" == typeof e ? e : Function(e), t); + }), + r(v), + v + ); + }), + (f = function (e) { + delete y[e]; + }), + "process" == n(29163)(d) + ? (r = function (e) { + d.nextTick(i(b, e, 1)); + }) + : h && h.now + ? (r = function (e) { + h.now(i(b, e, 1)); + }) + : m + ? ((a = (o = new m()).port2), (o.port1.onmessage = E), (r = i(a.postMessage, a, 1))) + : u.addEventListener && "function" == typeof postMessage && !u.importScripts + ? ((r = function (e) { + u.postMessage(e + "", "*"); + }), + u.addEventListener("message", E, !1)) + : (r = + g in l("script") + ? function (e) { + c.appendChild(l("script"))[g] = function () { + c.removeChild(this), b.call(e); + }; + } + : function (e) { + setTimeout(i(b, e, 1), 0); + })), + (e.exports = { set: p, clear: f }); + }, + 1351: (e, t, n) => { + var r = n(23486), + o = Math.max, + a = Math.min; + e.exports = function (e, t) { + return (e = r(e)) < 0 ? o(e + t, 0) : a(e, t); + }; + }, + 23486: (e) => { + var t = Math.ceil, + n = Math.floor; + e.exports = function (e) { + return isNaN((e = +e)) ? 0 : (e > 0 ? n : t)(e); + }; + }, + 20066: (e, t, n) => { + var r = n(41111), + o = n(12435); + e.exports = function (e) { + return r(o(e)); + }; + }, + 33349: (e, t, n) => { + var r = n(23486), + o = Math.min; + e.exports = function (e) { + return e > 0 ? o(r(e), 9007199254740991) : 0; + }; + }, + 30001: (e, t, n) => { + var r = n(12435); + e.exports = function (e) { + return Object(r(e)); + }; + }, + 97924: (e, t, n) => { + var r = n(25667); + e.exports = function (e, t) { + if (!r(e)) return e; + var n, o; + if (t && "function" == typeof (n = e.toString) && !r((o = n.call(e)))) return o; + if ("function" == typeof (n = e.valueOf) && !r((o = n.call(e)))) return o; + if (!t && "function" == typeof (n = e.toString) && !r((o = n.call(e)))) return o; + throw TypeError("Can't convert object to primitive value"); + }; + }, + 15589: (e) => { + var t = 0, + n = Math.random(); + e.exports = function (e) { + return "Symbol(".concat(void 0 === e ? "" : e, ")_", (++t + n).toString(36)); + }; + }, + 78160: (e, t, n) => { + var r = n(3132).navigator; + e.exports = (r && r.userAgent) || ""; + }, + 34207: (e, t, n) => { + var r = n(3132), + o = n(62327), + a = n(18044), + i = n(55603), + s = n(78710).f; + e.exports = function (e) { + var t = o.Symbol || (o.Symbol = a ? {} : r.Symbol || {}); + "_" == e.charAt(0) || e in t || s(t, e, { value: i.f(e) }); + }; + }, + 55603: (e, t, n) => { + t.f = n(59346); + }, + 59346: (e, t, n) => { + var r = n(34425)("wks"), + o = n(15589), + a = n(3132).Symbol, + i = "function" == typeof a; + (e.exports = function (e) { + return r[e] || (r[e] = (i && a[e]) || (i ? a : o)("Symbol." + e)); + }).store = r; + }, + 72633: (e, t, n) => { + var r = n(51066), + o = n(59346)("iterator"), + a = n(50930); + e.exports = n(62327).getIteratorMethod = function (e) { + if (null != e) return e[o] || e["@@iterator"] || a[r(e)]; + }; + }, + 54537: (e, t, n) => { + var r = n(19626), + o = n(72633); + e.exports = n(62327).getIterator = function (e) { + var t = o(e); + if ("function" != typeof t) throw TypeError(e + " is not iterable!"); + return r(t.call(e)); + }; + }, + 81889: (e, t, n) => { + var r = n(51066), + o = n(59346)("iterator"), + a = n(50930); + e.exports = n(62327).isIterable = function (e) { + var t = Object(e); + return void 0 !== t[o] || "@@iterator" in t || a.hasOwnProperty(r(t)); + }; + }, + 26744: (e, t, n) => { + "use strict"; + var r = n(94397), + o = n(67738), + a = n(30001), + i = n(96074), + s = n(6419), + c = n(33349), + l = n(80498), + u = n(72633); + o( + o.S + + o.F * + !n(81256)(function (e) { + Array.from(e); + }), + "Array", + { + from: function (e) { + var t, + n, + o, + d, + p = a(e), + f = "function" == typeof this ? this : Array, + m = arguments.length, + h = m > 1 ? arguments[1] : void 0, + v = void 0 !== h, + y = 0, + g = u(p); + if ((v && (h = r(h, m > 2 ? arguments[2] : void 0, 2)), null == g || (f == Array && s(g)))) for (n = new f((t = c(p.length))); t > y; y++) l(n, y, v ? h(p[y], y) : p[y]); + else for (d = g.call(p), n = new f(); !(o = d.next()).done; y++) l(n, y, v ? i(d, h, [o.value, y], !0) : o.value); + return (n.length = y), n; + }, + } + ); + }, + 34112: (e, t, n) => { + "use strict"; + var r = n(90448), + o = n(88623), + a = n(50930), + i = n(20066); + (e.exports = n(33047)( + Array, + "Array", + function (e, t) { + (this._t = i(e)), (this._i = 0), (this._k = t); + }, + function () { + var e = this._t, + t = this._k, + n = this._i++; + return !e || n >= e.length ? ((this._t = void 0), o(1)) : o(0, "keys" == t ? n : "values" == t ? e[n] : [n, e[n]]); + }, + "values" + )), + (a.Arguments = a.Array), + r("keys"), + r("values"), + r("entries"); + }, + 58576: (e, t, n) => { + var r = n(67738); + r(r.S + r.F, "Object", { assign: n(91715) }); + }, + 19698: (e, t, n) => { + var r = n(67738); + r(r.S, "Object", { create: n(45349) }); + }, + 93606: (e, t, n) => { + var r = n(67738); + r(r.S + r.F * !n(66703), "Object", { defineProperty: n(78710).f }); + }, + 83198: (e, t, n) => { + var r = n(20066), + o = n(12429).f; + n(17386)("getOwnPropertyDescriptor", function () { + return function (e, t) { + return o(r(e), t); + }; + }); + }, + 40402: (e, t, n) => { + var r = n(30001), + o = n(99786); + n(17386)("getPrototypeOf", function () { + return function (e) { + return o(r(e)); + }; + }); + }, + 59061: (e, t, n) => { + var r = n(30001), + o = n(85626); + n(17386)("keys", function () { + return function (e) { + return o(r(e)); + }; + }); + }, + 34371: (e, t, n) => { + var r = n(67738); + r(r.S, "Object", { setPrototypeOf: n(9365).set }); + }, + 1834: () => {}, + 14444: (e, t, n) => { + "use strict"; + var r, + o, + a, + i, + s = n(18044), + c = n(3132), + l = n(94397), + u = n(51066), + d = n(67738), + p = n(25667), + f = n(47416), + m = n(11507), + h = n(36542), + v = n(21366), + y = n(73038).set, + g = n(11889)(), + b = n(8784), + E = n(9266), + D = n(78160), + C = n(20589), + w = "Promise", + S = c.TypeError, + A = c.process, + k = A && A.versions, + _ = (k && k.v8) || "", + T = c[w], + I = "process" == u(A), + O = function () {}, + F = (o = b.f), + x = !!(function () { + try { + var e = T.resolve(1), + t = ((e.constructor = {})[n(59346)("species")] = function (e) { + e(O, O); + }); + return (I || "function" == typeof PromiseRejectionEvent) && e.then(O) instanceof t && 0 !== _.indexOf("6.6") && -1 === D.indexOf("Chrome/66"); + } catch (e) {} + })(), + N = function (e) { + var t; + return !(!p(e) || "function" != typeof (t = e.then)) && t; + }, + R = function (e, t) { + if (!e._n) { + e._n = !0; + var n = e._c; + g(function () { + for ( + var r = e._v, + o = 1 == e._s, + a = 0, + i = function (t) { + var n, + a, + i, + s = o ? t.ok : t.fail, + c = t.resolve, + l = t.reject, + u = t.domain; + try { + s ? (o || (2 == e._h && P(e), (e._h = 1)), !0 === s ? (n = r) : (u && u.enter(), (n = s(r)), u && (u.exit(), (i = !0))), n === t.promise ? l(S("Promise-chain cycle")) : (a = N(n)) ? a.call(n, c, l) : c(n)) : l(r); + } catch (e) { + u && !i && u.exit(), l(e); + } + }; + n.length > a; + + ) + i(n[a++]); + (e._c = []), (e._n = !1), t && !e._h && L(e); + }); + } + }, + L = function (e) { + y.call(c, function () { + var t, + n, + r, + o = e._v, + a = M(e); + if ( + (a && + ((t = E(function () { + I ? A.emit("unhandledRejection", o, e) : (n = c.onunhandledrejection) ? n({ promise: e, reason: o }) : (r = c.console) && r.error && r.error("Unhandled promise rejection", o); + })), + (e._h = I || M(e) ? 2 : 1)), + (e._a = void 0), + a && t.e) + ) + throw t.v; + }); + }, + M = function (e) { + return 1 !== e._h && 0 === (e._a || e._c).length; + }, + P = function (e) { + y.call(c, function () { + var t; + I ? A.emit("rejectionHandled", e) : (t = c.onrejectionhandled) && t({ promise: e, reason: e._v }); + }); + }, + j = function (e) { + var t = this; + t._d || ((t._d = !0), ((t = t._w || t)._v = e), (t._s = 2), t._a || (t._a = t._c.slice()), R(t, !0)); + }, + B = function (e) { + var t, + n = this; + if (!n._d) { + (n._d = !0), (n = n._w || n); + try { + if (n === e) throw S("Promise can't be resolved itself"); + (t = N(e)) + ? g(function () { + var r = { _w: n, _d: !1 }; + try { + t.call(e, l(B, r, 1), l(j, r, 1)); + } catch (e) { + j.call(r, e); + } + }) + : ((n._v = e), (n._s = 1), R(n, !1)); + } catch (e) { + j.call({ _w: n, _d: !1 }, e); + } + } + }; + x || + ((T = function (e) { + m(this, T, w, "_h"), f(e), r.call(this); + try { + e(l(B, this, 1), l(j, this, 1)); + } catch (e) { + j.call(this, e); + } + }), + ((r = function (e) { + (this._c = []), (this._a = void 0), (this._s = 0), (this._d = !1), (this._v = void 0), (this._h = 0), (this._n = !1); + }).prototype = n(5204)(T.prototype, { + then: function (e, t) { + var n = F(v(this, T)); + return (n.ok = "function" != typeof e || e), (n.fail = "function" == typeof t && t), (n.domain = I ? A.domain : void 0), this._c.push(n), this._a && this._a.push(n), this._s && R(this, !1), n.promise; + }, + catch: function (e) { + return this.then(void 0, e); + }, + })), + (a = function () { + var e = new r(); + (this.promise = e), (this.resolve = l(B, e, 1)), (this.reject = l(j, e, 1)); + }), + (b.f = F = function (e) { + return e === T || e === i ? new a(e) : o(e); + })), + d(d.G + d.W + d.F * !x, { Promise: T }), + n(35778)(T, w), + n(27217)(w), + (i = n(62327)[w]), + d(d.S + d.F * !x, w, { + reject: function (e) { + var t = F(this); + return (0, t.reject)(e), t.promise; + }, + }), + d(d.S + d.F * (s || !x), w, { + resolve: function (e) { + return C(s && this === i ? T : this, e); + }, + }), + d( + d.S + + d.F * + !( + x && + n(81256)(function (e) { + T.all(e).catch(O); + }) + ), + w, + { + all: function (e) { + var t = this, + n = F(t), + r = n.resolve, + o = n.reject, + a = E(function () { + var n = [], + a = 0, + i = 1; + h(e, !1, function (e) { + var s = a++, + c = !1; + n.push(void 0), + i++, + t.resolve(e).then(function (e) { + c || ((c = !0), (n[s] = e), --i || r(n)); + }, o); + }), + --i || r(n); + }); + return a.e && o(a.v), n.promise; + }, + race: function (e) { + var t = this, + n = F(t), + r = n.reject, + o = E(function () { + h(e, !1, function (e) { + t.resolve(e).then(n.resolve, r); + }); + }); + return o.e && r(o.v), n.promise; + }, + } + ); + }, + 51678: (e, t, n) => { + "use strict"; + var r = n(7554)(!0); + n(33047)( + String, + "String", + function (e) { + (this._t = String(e)), (this._i = 0); + }, + function () { + var e, + t = this._t, + n = this._i; + return n >= t.length ? { value: void 0, done: !0 } : ((e = r(t, n)), (this._i += e.length), { value: e, done: !1 }); + } + ); + }, + 911: (e, t, n) => { + "use strict"; + var r = n(3132), + o = n(53157), + a = n(66703), + i = n(67738), + s = n(77070), + c = n(13235).KEY, + l = n(63696), + u = n(34425), + d = n(35778), + p = n(15589), + f = n(59346), + m = n(55603), + h = n(34207), + v = n(83552), + y = n(35568), + g = n(19626), + b = n(25667), + E = n(20066), + D = n(97924), + C = n(80689), + w = n(45349), + S = n(85044), + A = n(12429), + k = n(78710), + _ = n(85626), + T = A.f, + I = k.f, + O = S.f, + F = r.Symbol, + x = r.JSON, + N = x && x.stringify, + R = "prototype", + L = f("_hidden"), + M = f("toPrimitive"), + P = {}.propertyIsEnumerable, + j = u("symbol-registry"), + B = u("symbols"), + Z = u("op-symbols"), + U = Object[R], + z = "function" == typeof F, + V = r.QObject, + H = !V || !V[R] || !V[R].findChild, + G = + a && + l(function () { + return ( + 7 != + w( + I({}, "a", { + get: function () { + return I(this, "a", { value: 7 }).a; + }, + }) + ).a + ); + }) + ? function (e, t, n) { + var r = T(U, t); + r && delete U[t], I(e, t, n), r && e !== U && I(U, t, r); + } + : I, + W = function (e) { + var t = (B[e] = w(F[R])); + return (t._k = e), t; + }, + Q = + z && "symbol" == typeof F.iterator + ? function (e) { + return "symbol" == typeof e; + } + : function (e) { + return e instanceof F; + }, + J = function (e, t, n) { + return ( + e === U && J(Z, t, n), + g(e), + (t = D(t, !0)), + g(n), + o(B, t) ? (n.enumerable ? (o(e, L) && e[L][t] && (e[L][t] = !1), (n = w(n, { enumerable: C(0, !1) }))) : (o(e, L) || I(e, L, C(1, {})), (e[L][t] = !0)), G(e, t, n)) : I(e, t, n) + ); + }, + Y = function (e, t) { + g(e); + for (var n, r = v((t = E(t))), o = 0, a = r.length; a > o; ) J(e, (n = r[o++]), t[n]); + return e; + }, + q = function (e) { + var t = P.call(this, (e = D(e, !0))); + return !(this === U && o(B, e) && !o(Z, e)) && (!(t || !o(this, e) || !o(B, e) || (o(this, L) && this[L][e])) || t); + }, + X = function (e, t) { + if (((e = E(e)), (t = D(t, !0)), e !== U || !o(B, t) || o(Z, t))) { + var n = T(e, t); + return !n || !o(B, t) || (o(e, L) && e[L][t]) || (n.enumerable = !0), n; + } + }, + K = function (e) { + for (var t, n = O(E(e)), r = [], a = 0; n.length > a; ) o(B, (t = n[a++])) || t == L || t == c || r.push(t); + return r; + }, + $ = function (e) { + for (var t, n = e === U, r = O(n ? Z : E(e)), a = [], i = 0; r.length > i; ) !o(B, (t = r[i++])) || (n && !o(U, t)) || a.push(B[t]); + return a; + }; + z || + (s( + (F = function () { + if (this instanceof F) throw TypeError("Symbol is not a constructor!"); + var e = p(arguments.length > 0 ? arguments[0] : void 0), + t = function (n) { + this === U && t.call(Z, n), o(this, L) && o(this[L], e) && (this[L][e] = !1), G(this, e, C(1, n)); + }; + return a && H && G(U, e, { configurable: !0, set: t }), W(e); + })[R], + "toString", + function () { + return this._k; + } + ), + (A.f = X), + (k.f = J), + (n(22802).f = S.f = K), + (n(43174).f = q), + (n(21864).f = $), + a && !n(18044) && s(U, "propertyIsEnumerable", q, !0), + (m.f = function (e) { + return W(f(e)); + })), + i(i.G + i.W + i.F * !z, { Symbol: F }); + for (var ee = "hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","), te = 0; ee.length > te; ) f(ee[te++]); + for (var ne = _(f.store), re = 0; ne.length > re; ) h(ne[re++]); + i(i.S + i.F * !z, "Symbol", { + for: function (e) { + return o(j, (e += "")) ? j[e] : (j[e] = F(e)); + }, + keyFor: function (e) { + if (!Q(e)) throw TypeError(e + " is not a symbol!"); + for (var t in j) if (j[t] === e) return t; + }, + useSetter: function () { + H = !0; + }, + useSimple: function () { + H = !1; + }, + }), + i(i.S + i.F * !z, "Object", { + create: function (e, t) { + return void 0 === t ? w(e) : Y(w(e), t); + }, + defineProperty: J, + defineProperties: Y, + getOwnPropertyDescriptor: X, + getOwnPropertyNames: K, + getOwnPropertySymbols: $, + }), + x && + i( + i.S + + i.F * + (!z || + l(function () { + var e = F(); + return "[null]" != N([e]) || "{}" != N({ a: e }) || "{}" != N(Object(e)); + })), + "JSON", + { + stringify: function (e) { + for (var t, n, r = [e], o = 1; arguments.length > o; ) r.push(arguments[o++]); + if (((n = t = r[1]), (b(t) || void 0 !== e) && !Q(e))) + return ( + y(t) || + (t = function (e, t) { + if (("function" == typeof n && (t = n.call(this, e, t)), !Q(t))) return t; + }), + (r[1] = t), + N.apply(x, r) + ); + }, + } + ), + F[R][M] || n(71392)(F[R], M, F[R].valueOf), + d(F, "Symbol"), + d(Math, "Math", !0), + d(r.JSON, "JSON", !0); + }, + 31993: (e, t, n) => { + "use strict"; + var r = n(67738), + o = n(62327), + a = n(3132), + i = n(21366), + s = n(20589); + r(r.P + r.R, "Promise", { + finally: function (e) { + var t = i(this, o.Promise || a.Promise), + n = "function" == typeof e; + return this.then( + n + ? function (n) { + return s(t, e()).then(function () { + return n; + }); + } + : e, + n + ? function (n) { + return s(t, e()).then(function () { + throw n; + }); + } + : e + ); + }, + }); + }, + 73472: (e, t, n) => { + "use strict"; + var r = n(67738), + o = n(8784), + a = n(9266); + r(r.S, "Promise", { + try: function (e) { + var t = o.f(this), + n = a(e); + return (n.e ? t.reject : t.resolve)(n.v), t.promise; + }, + }); + }, + 59512: (e, t, n) => { + n(34207)("asyncIterator"); + }, + 76775: (e, t, n) => { + n(34207)("observable"); + }, + 157: (e, t, n) => { + n(34112); + for ( + var r = n(3132), + o = n(71392), + a = n(50930), + i = n(59346)("toStringTag"), + s = "CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,TextTrackList,TouchList".split( + "," + ), + c = 0; + c < s.length; + c++ + ) { + var l = s[c], + u = r[l], + d = u && u.prototype; + d && !d[i] && o(d, i, l), (a[l] = a.Array); + } + }, + 22779: (e) => { + !(function () { + "use strict"; + e.exports = function (e) { + return (e instanceof Buffer ? e : Buffer.from(e.toString(), "binary")).toString("base64"); + }; + })(); + }, + 93353: (e, t) => { + var n; + !(function () { + "use strict"; + var r = {}.hasOwnProperty; + function o() { + for (var e = [], t = 0; t < arguments.length; t++) { + var n = arguments[t]; + if (n) { + var a = typeof n; + if ("string" === a || "number" === a) e.push(n); + else if (Array.isArray(n) && n.length) { + var i = o.apply(null, n); + i && e.push(i); + } else if ("object" === a) for (var s in n) r.call(n, s) && n[s] && e.push(s); + } + } + return e.join(" "); + } + e.exports + ? ((o.default = o), (e.exports = o)) + : void 0 === + (n = function () { + return o; + }.apply(t, [])) || (e.exports = n); + })(); + }, + 22086: (e, t, n) => { + "use strict"; + function r(e) { + return null != e && "object" == typeof e && (1 === e.nodeType || 11 === e.nodeType); + } + function o(e, t) { + return (!t || "hidden" !== e) && "visible" !== e && "clip" !== e; + } + function a(e, t) { + if (e.clientHeight < e.scrollHeight || e.clientWidth < e.scrollWidth) { + var n = getComputedStyle(e, null); + return o(n.overflowY, t) || o(n.overflowX, t); + } + return !1; + } + function i(e, t, n, r, o, a, i, s) { + return (a < e && i > t) || (a > e && i < t) ? 0 : (a < e && s < n) || (i > t && s > n) ? a - e - r : (i > t && s < n) || (a < e && s > n) ? i - t + o : 0; + } + n.d(t, { Z: () => s }); + const s = function (e, t) { + var n = t.scrollMode, + o = t.block, + s = t.inline, + c = t.boundary, + l = t.skipOverflowHiddenElements, + u = + "function" == typeof c + ? c + : function (e) { + return e !== c; + }; + if (!r(e)) throw new TypeError("Invalid target"); + for (var d = document.scrollingElement || document.documentElement, p = [], f = e; r(f) && u(f); ) { + if ((f = f.parentNode || f.host) === d) { + p.push(f); + break; + } + (f === document.body && a(f) && !a(document.documentElement)) || (a(f, l) && p.push(f)); + } + for ( + var m = window.visualViewport ? visualViewport.width : innerWidth, + h = window.visualViewport ? visualViewport.height : innerHeight, + v = window.scrollX || pageXOffset, + y = window.scrollY || pageYOffset, + g = e.getBoundingClientRect(), + b = g.height, + E = g.width, + D = g.top, + C = g.right, + w = g.bottom, + S = g.left, + A = "start" === o || "nearest" === o ? D : "end" === o ? w : D + b / 2, + k = "center" === s ? S + E / 2 : "end" === s ? C : S, + _ = [], + T = 0; + T < p.length; + T++ + ) { + var I = p[T], + O = I.getBoundingClientRect(), + F = O.height, + x = O.width, + N = O.top, + R = O.right, + L = O.bottom, + M = O.left; + if ("if-needed" === n && D >= 0 && S >= 0 && w <= h && C <= m && D >= N && w <= L && S >= M && C <= R) return _; + var P = getComputedStyle(I), + j = parseInt(P.borderLeftWidth, 10), + B = parseInt(P.borderTopWidth, 10), + Z = parseInt(P.borderRightWidth, 10), + U = parseInt(P.borderBottomWidth, 10), + z = 0, + V = 0, + H = "offsetWidth" in I ? I.offsetWidth - I.clientWidth - j - Z : 0, + G = "offsetHeight" in I ? I.offsetHeight - I.clientHeight - B - U : 0; + if (d === I) + (z = "start" === o ? A : "end" === o ? A - h : "nearest" === o ? i(y, y + h, h, B, U, y + A, y + A + b, b) : A - h / 2), + (V = "start" === s ? k : "center" === s ? k - m / 2 : "end" === s ? k - m : i(v, v + m, m, j, Z, v + k, v + k + E, E)), + (z = Math.max(0, z + y)), + (V = Math.max(0, V + v)); + else { + (z = "start" === o ? A - N - B : "end" === o ? A - L + U + G : "nearest" === o ? i(N, L, F, B, U + G, A, A + b, b) : A - (N + F / 2) + G / 2), + (V = "start" === s ? k - M - j : "center" === s ? k - (M + x / 2) + H / 2 : "end" === s ? k - R + Z + H : i(M, R, x, j, Z + H, k, k + E, E)); + var W = I.scrollLeft, + Q = I.scrollTop; + (A += Q - (z = Math.max(0, Math.min(Q + z, I.scrollHeight - F + G)))), (k += W - (V = Math.max(0, Math.min(W + V, I.scrollWidth - x + H)))); + } + _.push({ el: I, top: z, left: V }); + } + return _; + }; + }, + 62500: function (e, t, n) { + var r; + (r = void 0 !== n.g ? n.g : this), + (e.exports = (function (e) { + if (e.CSS && e.CSS.escape) return e.CSS.escape; + var t = function (e) { + if (0 == arguments.length) throw new TypeError("`CSS.escape` requires an argument."); + for (var t, n = String(e), r = n.length, o = -1, a = "", i = n.charCodeAt(0); ++o < r; ) + 0 != (t = n.charCodeAt(o)) + ? (a += + (t >= 1 && t <= 31) || 127 == t || (0 == o && t >= 48 && t <= 57) || (1 == o && t >= 48 && t <= 57 && 45 == i) + ? "\\" + t.toString(16) + " " + : (0 == o && 1 == r && 45 == t) || !(t >= 128 || 45 == t || 95 == t || (t >= 48 && t <= 57) || (t >= 65 && t <= 90) || (t >= 97 && t <= 122)) + ? "\\" + n.charAt(o) + : n.charAt(o)) + : (a += "�"); + return a; + }; + return e.CSS || (e.CSS = {}), (e.CSS.escape = t), t; + })(r)); + }, + 33012: (e, t, n) => { + "use strict"; + var r; + function o(e) { + return ( + (o = + "function" == typeof Symbol && "symbol" == typeof Symbol.iterator + ? function (e) { + return typeof e; + } + : function (e) { + return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e; + }), + o(e) + ); + } + !(function (a) { + var i, + s, + c, + l = arguments, + u = + ((i = /d{1,4}|D{3,4}|m{1,4}|yy(?:yy)?|([HhMsTt])\1?|W{1,2}|[LlopSZN]|"[^"]*"|'[^']*'/g), + (s = /\b(?:[PMCEA][SDP]T|(?:Pacific|Mountain|Central|Eastern|Atlantic) (?:Standard|Daylight|Prevailing) Time|(?:GMT|UTC)(?:[-+]\d{4})?)\b/g), + (c = /[^-+\dA-Z]/g), + function (e, t, n, r) { + if ((1 !== l.length || "string" !== h(e) || /\d/.test(e) || ((t = e), (e = void 0)), (e = e || 0 === e ? e : new Date()) instanceof Date || (e = new Date(e)), isNaN(e))) throw TypeError("Invalid date"); + var o = (t = String(u.masks[t] || t || u.masks.default)).slice(0, 4); + ("UTC:" !== o && "GMT:" !== o) || ((t = t.slice(4)), (n = !0), "GMT:" === o && (r = !0)); + var a = function () { + return n ? "getUTC" : "get"; + }, + v = function () { + return e[a() + "Date"](); + }, + y = function () { + return e[a() + "Day"](); + }, + g = function () { + return e[a() + "Month"](); + }, + b = function () { + return e[a() + "FullYear"](); + }, + E = function () { + return e[a() + "Hours"](); + }, + D = function () { + return e[a() + "Minutes"](); + }, + C = function () { + return e[a() + "Seconds"](); + }, + w = function () { + return e[a() + "Milliseconds"](); + }, + S = function () { + return n ? 0 : e.getTimezoneOffset(); + }, + A = function () { + return f(e); + }, + k = { + d: function () { + return v(); + }, + dd: function () { + return d(v()); + }, + ddd: function () { + return u.i18n.dayNames[y()]; + }, + DDD: function () { + return p({ y: b(), m: g(), d: v(), _: a(), dayName: u.i18n.dayNames[y()], short: !0 }); + }, + dddd: function () { + return u.i18n.dayNames[y() + 7]; + }, + DDDD: function () { + return p({ y: b(), m: g(), d: v(), _: a(), dayName: u.i18n.dayNames[y() + 7] }); + }, + m: function () { + return g() + 1; + }, + mm: function () { + return d(g() + 1); + }, + mmm: function () { + return u.i18n.monthNames[g()]; + }, + mmmm: function () { + return u.i18n.monthNames[g() + 12]; + }, + yy: function () { + return String(b()).slice(2); + }, + yyyy: function () { + return d(b(), 4); + }, + h: function () { + return E() % 12 || 12; + }, + hh: function () { + return d(E() % 12 || 12); + }, + H: function () { + return E(); + }, + HH: function () { + return d(E()); + }, + M: function () { + return D(); + }, + MM: function () { + return d(D()); + }, + s: function () { + return C(); + }, + ss: function () { + return d(C()); + }, + l: function () { + return d(w(), 3); + }, + L: function () { + return d(Math.floor(w() / 10)); + }, + t: function () { + return E() < 12 ? u.i18n.timeNames[0] : u.i18n.timeNames[1]; + }, + tt: function () { + return E() < 12 ? u.i18n.timeNames[2] : u.i18n.timeNames[3]; + }, + T: function () { + return E() < 12 ? u.i18n.timeNames[4] : u.i18n.timeNames[5]; + }, + TT: function () { + return E() < 12 ? u.i18n.timeNames[6] : u.i18n.timeNames[7]; + }, + Z: function () { + return r + ? "GMT" + : n + ? "UTC" + : (String(e).match(s) || [""]) + .pop() + .replace(c, "") + .replace(/GMT\+0000/g, "UTC"); + }, + o: function () { + return (S() > 0 ? "-" : "+") + d(100 * Math.floor(Math.abs(S()) / 60) + (Math.abs(S()) % 60), 4); + }, + p: function () { + return (S() > 0 ? "-" : "+") + d(Math.floor(Math.abs(S()) / 60), 2) + ":" + d(Math.floor(Math.abs(S()) % 60), 2); + }, + S: function () { + return ["th", "st", "nd", "rd"][v() % 10 > 3 ? 0 : (((v() % 100) - (v() % 10) != 10) * v()) % 10]; + }, + W: function () { + return A(); + }, + WW: function () { + return d(A()); + }, + N: function () { + return m(e); + }, + }; + return t.replace(i, function (e) { + return e in k ? k[e]() : e.slice(1, e.length - 1); + }); + }); + (u.masks = { + default: "ddd mmm dd yyyy HH:MM:ss", + shortDate: "m/d/yy", + paddedShortDate: "mm/dd/yyyy", + mediumDate: "mmm d, yyyy", + longDate: "mmmm d, yyyy", + fullDate: "dddd, mmmm d, yyyy", + shortTime: "h:MM TT", + mediumTime: "h:MM:ss TT", + longTime: "h:MM:ss TT Z", + isoDate: "yyyy-mm-dd", + isoTime: "HH:MM:ss", + isoDateTime: "yyyy-mm-dd'T'HH:MM:sso", + isoUtcDateTime: "UTC:yyyy-mm-dd'T'HH:MM:ss'Z'", + expiresHeaderFormat: "ddd, dd mmm yyyy HH:MM:ss Z", + }), + (u.i18n = { + dayNames: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], + monthNames: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], + timeNames: ["a", "p", "am", "pm", "A", "P", "AM", "PM"], + }); + var d = function (e, t) { + for (e = String(e), t = t || 2; e.length < t; ) e = "0" + e; + return e; + }, + p = function (e) { + var t = e.y, + n = e.m, + r = e.d, + o = e._, + a = e.dayName, + i = e.short, + s = void 0 !== i && i, + c = new Date(), + l = new Date(); + l.setDate(l[o + "Date"]() - 1); + var u = new Date(); + return ( + u.setDate(u[o + "Date"]() + 1), + c[o + "FullYear"]() === t && c[o + "Month"]() === n && c[o + "Date"]() === r + ? s + ? "Tdy" + : "Today" + : l[o + "FullYear"]() === t && l[o + "Month"]() === n && l[o + "Date"]() === r + ? s + ? "Ysd" + : "Yesterday" + : u[o + "FullYear"]() === t && u[o + "Month"]() === n && u[o + "Date"]() === r + ? s + ? "Tmw" + : "Tomorrow" + : a + ); + }, + f = function (e) { + var t = new Date(e.getFullYear(), e.getMonth(), e.getDate()); + t.setDate(t.getDate() - ((t.getDay() + 6) % 7) + 3); + var n = new Date(t.getFullYear(), 0, 4); + n.setDate(n.getDate() - ((n.getDay() + 6) % 7) + 3); + var r = t.getTimezoneOffset() - n.getTimezoneOffset(); + t.setHours(t.getHours() - r); + var o = (t - n) / 6048e5; + return 1 + Math.floor(o); + }, + m = function (e) { + var t = e.getDay(); + return 0 === t && (t = 7), t; + }, + h = function (e) { + return null === e ? "null" : void 0 === e ? "undefined" : "object" !== o(e) ? o(e) : Array.isArray(e) ? "array" : {}.toString.call(e).slice(8, -1).toLowerCase(); + }; + void 0 === + (r = function () { + return u; + }.call(t, n, t, e)) || (e.exports = r); + })(void 0); + }, + 58790: (e) => { + "use strict"; + var t = "%[a-f0-9]{2}", + n = new RegExp(t, "gi"), + r = new RegExp("(" + t + ")+", "gi"); + function o(e, t) { + try { + return decodeURIComponent(e.join("")); + } catch (e) {} + if (1 === e.length) return e; + t = t || 1; + var n = e.slice(0, t), + r = e.slice(t); + return Array.prototype.concat.call([], o(n), o(r)); + } + function a(e) { + try { + return decodeURIComponent(e); + } catch (a) { + for (var t = e.match(n), r = 1; r < t.length; r++) t = (e = o(t, r).join("")).match(n); + return e; + } + } + e.exports = function (e) { + if ("string" != typeof e) throw new TypeError("Expected `encodedURI` to be of type `string`, got `" + typeof e + "`"); + try { + return (e = e.replace(/\+/g, " ")), decodeURIComponent(e); + } catch (t) { + return (function (e) { + for (var t = { "%FE%FF": "��", "%FF%FE": "��" }, n = r.exec(e); n; ) { + try { + t[n[0]] = decodeURIComponent(n[0]); + } catch (e) { + var o = a(n[0]); + o !== n[0] && (t[n[0]] = o); + } + n = r.exec(e); + } + t["%C2"] = "�"; + for (var i = Object.keys(t), s = 0; s < i.length; s++) { + var c = i[s]; + e = e.replace(new RegExp(c, "g"), t[c]); + } + return e; + })(e); + } + }; + }, + 64415: (e, t, n) => { + "use strict"; + var r = n(45931); + (t.__esModule = !0), + (t.default = function (e) { + void 0 === e && (e = (0, o.default)()); + try { + return e.activeElement; + } catch (e) {} + }); + var o = r(n(43291)); + e.exports = t.default; + }, + 97874: (e, t, n) => { + "use strict"; + var r = n(45931); + (t.__esModule = !0), + (t.default = function (e, t) { + e.classList ? e.classList.add(t) : (0, o.default)(e, t) || ("string" == typeof e.className ? (e.className = e.className + " " + t) : e.setAttribute("class", ((e.className && e.className.baseVal) || "") + " " + t)); + }); + var o = r(n(77334)); + e.exports = t.default; + }, + 77334: (e, t) => { + "use strict"; + (t.__esModule = !0), + (t.default = function (e, t) { + return e.classList ? !!t && e.classList.contains(t) : -1 !== (" " + (e.className.baseVal || e.className) + " ").indexOf(" " + t + " "); + }), + (e.exports = t.default); + }, + 71369: (e, t, n) => { + "use strict"; + var r = n(45931); + (t.__esModule = !0), (t.default = void 0); + var o = r(n(97874)); + t.addClass = o.default; + var a = r(n(29440)); + t.removeClass = a.default; + var i = r(n(77334)); + t.hasClass = i.default; + var s = { addClass: o.default, removeClass: a.default, hasClass: i.default }; + t.default = s; + }, + 29440: (e) => { + "use strict"; + function t(e, t) { + return e + .replace(new RegExp("(^|\\s)" + t + "(?:\\s|$)", "g"), "$1") + .replace(/\s+/g, " ") + .replace(/^\s*|\s*$/g, ""); + } + e.exports = function (e, n) { + e.classList ? e.classList.remove(n) : "string" == typeof e.className ? (e.className = t(e.className, n)) : e.setAttribute("class", t((e.className && e.className.baseVal) || "", n)); + }; + }, + 60625: (e, t, n) => { + "use strict"; + var r = n(45931); + (t.__esModule = !0), (t.default = void 0); + var o = function () {}; + r(n(31991)).default && + (o = document.addEventListener + ? function (e, t, n, r) { + return e.removeEventListener(t, n, r || !1); + } + : document.attachEvent + ? function (e, t, n) { + return e.detachEvent("on" + t, n); + } + : void 0); + var a = o; + (t.default = a), (e.exports = t.default); + }, + 94243: (e, t, n) => { + "use strict"; + var r = n(45931); + (t.__esModule = !0), (t.default = void 0); + var o = function () {}; + r(n(31991)).default && + (o = document.addEventListener + ? function (e, t, n, r) { + return e.addEventListener(t, n, r || !1); + } + : document.attachEvent + ? function (e, t, n) { + return e.attachEvent("on" + t, function (t) { + ((t = t || window.event).target = t.target || t.srcElement), (t.currentTarget = e), n.call(e, t); + }); + } + : void 0); + var a = o; + (t.default = a), (e.exports = t.default); + }, + 61145: (e) => { + function t() { + return ( + (e.exports = t = + Object.assign || + function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + t.apply(this, arguments) + ); + } + e.exports = t; + }, + 45931: (e) => { + e.exports = function (e) { + return e && e.__esModule ? e : { default: e }; + }; + }, + 43291: (e, t) => { + "use strict"; + (t.__esModule = !0), + (t.default = function (e) { + return (e && e.ownerDocument) || document; + }), + (e.exports = t.default); + }, + 8531: (e, t, n) => { + "use strict"; + var r = n(45931); + (t.__esModule = !0), + (t.default = function (e, t, n) { + for (; e && (a(e) || !(0, o.default)(e, t)); ) e = e === n || a(e) ? void 0 : e.parentNode; + return e; + }); + var o = r(n(60142)), + a = function (e) { + return null != e && e.nodeType === e.DOCUMENT_NODE; + }; + e.exports = t.default; + }, + 59114: (e, t, n) => { + "use strict"; + var r = n(45931); + (t.__esModule = !0), (t.default = void 0); + var o = r(n(31991)).default + ? function (e, t) { + return e.contains ? e.contains(t) : e.compareDocumentPosition ? e === t || !!(16 & e.compareDocumentPosition(t)) : a(e, t); + } + : a; + function a(e, t) { + if (t) + do { + if (t === e) return !0; + } while ((t = t.parentNode)); + return !1; + } + (t.default = o), (e.exports = t.default); + }, + 57712: (e, t) => { + "use strict"; + (t.__esModule = !0), + (t.default = function (e) { + return e === e.window ? e : 9 === e.nodeType && (e.defaultView || e.parentWindow); + }), + (e.exports = t.default); + }, + 60142: (e, t, n) => { + "use strict"; + var r = n(45931); + (t.__esModule = !0), + (t.default = function (e, t) { + if (!o && a.default) { + var n = document.body, + r = n.matches || n.matchesSelector || n.webkitMatchesSelector || n.mozMatchesSelector || n.msMatchesSelector; + o = r + ? function (e, t) { + return r.call(e, t); + } + : s; + } + return o ? o(e, t) : null; + }); + var o, + a = r(n(31991)), + i = r(n(14702)); + function s(e, t) { + for (var n = (0, i.default)(e.document || e.ownerDocument, t), r = 0; n[r] && n[r] !== e; ) r++; + return !!n[r]; + } + e.exports = t.default; + }, + 23274: (e, t, n) => { + "use strict"; + var r = n(45931); + (t.__esModule = !0), + (t.default = function (e) { + var t = (0, i.default)(e), + n = (0, a.default)(t), + r = t && t.documentElement, + s = { top: 0, left: 0, height: 0, width: 0 }; + if (t) + return (0, o.default)(r, e) + ? (void 0 !== e.getBoundingClientRect && (s = e.getBoundingClientRect()), + { + top: s.top + (n.pageYOffset || r.scrollTop) - (r.clientTop || 0), + left: s.left + (n.pageXOffset || r.scrollLeft) - (r.clientLeft || 0), + width: (null == s.width ? e.offsetWidth : s.width) || 0, + height: (null == s.height ? e.offsetHeight : s.height) || 0, + }) + : s; + }); + var o = r(n(59114)), + a = r(n(57712)), + i = r(n(43291)); + e.exports = t.default; + }, + 63066: (e, t, n) => { + "use strict"; + var r = n(45931); + (t.__esModule = !0), + (t.default = function (e) { + for (var t = (0, o.default)(e), n = e && e.offsetParent; n && "html" !== i(e) && "static" === (0, a.default)(n, "position"); ) n = n.offsetParent; + return n || t.documentElement; + }); + var o = r(n(43291)), + a = r(n(90638)); + function i(e) { + return e.nodeName && e.nodeName.toLowerCase(); + } + e.exports = t.default; + }, + 52788: (e, t, n) => { + "use strict"; + var r = n(45931); + (t.__esModule = !0), + (t.default = function (e, t) { + var n, + r = { top: 0, left: 0 }; + return ( + "fixed" === (0, l.default)(e, "position") + ? (n = e.getBoundingClientRect()) + : ((t = t || (0, i.default)(e)), + (n = (0, a.default)(e)), + "html" !== + (function (e) { + return e.nodeName && e.nodeName.toLowerCase(); + })(t) && (r = (0, a.default)(t)), + (r.top += parseInt((0, l.default)(t, "borderTopWidth"), 10) - (0, s.default)(t) || 0), + (r.left += parseInt((0, l.default)(t, "borderLeftWidth"), 10) - (0, c.default)(t) || 0)), + (0, o.default)({}, n, { top: n.top - r.top - (parseInt((0, l.default)(e, "marginTop"), 10) || 0), left: n.left - r.left - (parseInt((0, l.default)(e, "marginLeft"), 10) || 0) }) + ); + }); + var o = r(n(61145)), + a = r(n(23274)), + i = r(n(63066)), + s = r(n(87792)), + c = r(n(55878)), + l = r(n(90638)); + e.exports = t.default; + }, + 14702: (e, t) => { + "use strict"; + (t.__esModule = !0), + (t.default = function (e, t) { + var o, + a = "#" === t[0], + i = "." === t[0], + s = a || i ? t.slice(1) : t; + return n.test(s) ? (a ? ((o = (e = e.getElementById ? e : document).getElementById(s)) ? [o] : []) : e.getElementsByClassName && i ? r(e.getElementsByClassName(s)) : r(e.getElementsByTagName(t))) : r(e.querySelectorAll(t)); + }); + var n = /^[\w-]*$/, + r = Function.prototype.bind.call(Function.prototype.call, [].slice); + e.exports = t.default; + }, + 55878: (e, t, n) => { + "use strict"; + var r = n(45931); + (t.__esModule = !0), + (t.default = function (e, t) { + var n = (0, o.default)(e); + if (void 0 === t) return n ? ("pageXOffset" in n ? n.pageXOffset : n.document.documentElement.scrollLeft) : e.scrollLeft; + n ? n.scrollTo(t, "pageYOffset" in n ? n.pageYOffset : n.document.documentElement.scrollTop) : (e.scrollLeft = t); + }); + var o = r(n(57712)); + e.exports = t.default; + }, + 87792: (e, t, n) => { + "use strict"; + var r = n(45931); + (t.__esModule = !0), + (t.default = function (e, t) { + var n = (0, o.default)(e); + if (void 0 === t) return n ? ("pageYOffset" in n ? n.pageYOffset : n.document.documentElement.scrollTop) : e.scrollTop; + n ? n.scrollTo("pageXOffset" in n ? n.pageXOffset : n.document.documentElement.scrollLeft, t) : (e.scrollTop = t); + }); + var o = r(n(57712)); + e.exports = t.default; + }, + 89333: (e, t, n) => { + "use strict"; + var r = n(45931); + (t.__esModule = !0), + (t.default = function (e) { + if (!e) throw new TypeError("No Element passed to `getComputedStyle()`"); + var t = e.ownerDocument; + return "defaultView" in t + ? t.defaultView.opener + ? e.ownerDocument.defaultView.getComputedStyle(e, null) + : window.getComputedStyle(e, null) + : { + getPropertyValue: function (t) { + var n = e.style; + "float" == (t = (0, o.default)(t)) && (t = "styleFloat"); + var r = e.currentStyle[t] || null; + if ((null == r && n && n[t] && (r = n[t]), i.test(r) && !a.test(t))) { + var s = n.left, + c = e.runtimeStyle, + l = c && c.left; + l && (c.left = e.currentStyle.left), (n.left = "fontSize" === t ? "1em" : r), (r = n.pixelLeft + "px"), (n.left = s), l && (c.left = l); + } + return r; + }, + }; + }); + var o = r(n(9310)), + a = /^(top|right|bottom|left)$/, + i = /^([+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|))(?!px)[a-z%]+$/i; + e.exports = t.default; + }, + 90638: (e, t, n) => { + "use strict"; + var r = n(45931); + (t.__esModule = !0), + (t.default = function (e, t, n) { + var r = "", + u = "", + d = t; + if ("string" == typeof t) { + if (void 0 === n) return e.style[(0, o.default)(t)] || (0, i.default)(e).getPropertyValue((0, a.default)(t)); + (d = {})[t] = n; + } + Object.keys(d).forEach(function (t) { + var n = d[t]; + n || 0 === n ? ((0, l.default)(t) ? (u += t + "(" + n + ") ") : (r += (0, a.default)(t) + ": " + n + ";")) : (0, s.default)(e, (0, a.default)(t)); + }), + u && (r += c.transform + ": " + u + ";"), + (e.style.cssText += ";" + r); + }); + var o = r(n(9310)), + a = r(n(51657)), + i = r(n(89333)), + s = r(n(87036)), + c = n(96941), + l = r(n(13782)); + e.exports = t.default; + }, + 87036: (e, t) => { + "use strict"; + (t.__esModule = !0), + (t.default = function (e, t) { + return "removeProperty" in e.style ? e.style.removeProperty(t) : e.style.removeAttribute(t); + }), + (e.exports = t.default); + }, + 13782: (e, t) => { + "use strict"; + (t.__esModule = !0), + (t.default = function (e) { + return !(!e || !n.test(e)); + }); + var n = /^((translate|rotate|scale)(X|Y|Z|3d)?|matrix(3d)?|perspective|skew(X|Y)?)$/i; + e.exports = t.default; + }, + 96941: (e, t, n) => { + "use strict"; + var r = n(45931); + (t.__esModule = !0), + (t.default = t.animationEnd = t.animationDelay = t.animationTiming = t.animationDuration = t.animationName = t.transitionEnd = t.transitionDuration = t.transitionDelay = t.transitionTiming = t.transitionProperty = t.transform = void 0); + var o, + a, + i, + s, + c, + l, + u, + d, + p, + f, + m, + h = r(n(31991)), + v = "transform"; + if ( + ((t.transform = v), + (t.animationEnd = i), + (t.transitionEnd = a), + (t.transitionDelay = u), + (t.transitionTiming = l), + (t.transitionDuration = c), + (t.transitionProperty = s), + (t.animationDelay = m), + (t.animationTiming = f), + (t.animationDuration = p), + (t.animationName = d), + h.default) + ) { + var y = (function () { + for ( + var e, + t, + n = document.createElement("div").style, + r = { + O: function (e) { + return "o" + e.toLowerCase(); + }, + Moz: function (e) { + return e.toLowerCase(); + }, + Webkit: function (e) { + return "webkit" + e; + }, + ms: function (e) { + return "MS" + e; + }, + }, + o = Object.keys(r), + a = "", + i = 0; + i < o.length; + i++ + ) { + var s = o[i]; + if (s + "TransitionProperty" in n) { + (a = "-" + s.toLowerCase()), (e = r[s]("TransitionEnd")), (t = r[s]("AnimationEnd")); + break; + } + } + return !e && "transitionProperty" in n && (e = "transitionend"), !t && "animationName" in n && (t = "animationend"), (n = null), { animationEnd: t, transitionEnd: e, prefix: a }; + })(); + (o = y.prefix), + (t.transitionEnd = a = y.transitionEnd), + (t.animationEnd = i = y.animationEnd), + (t.transform = v = o + "-" + v), + (t.transitionProperty = s = o + "-transition-property"), + (t.transitionDuration = c = o + "-transition-duration"), + (t.transitionDelay = u = o + "-transition-delay"), + (t.transitionTiming = l = o + "-transition-timing-function"), + (t.animationName = d = o + "-animation-name"), + (t.animationDuration = p = o + "-animation-duration"), + (t.animationTiming = f = o + "-animation-delay"), + (t.animationDelay = m = o + "-animation-timing-function"); + } + var g = { transform: v, end: a, property: s, timing: l, delay: u, duration: c }; + t.default = g; + }, + 92637: (e, t) => { + "use strict"; + (t.__esModule = !0), + (t.default = function (e) { + return e.replace(n, function (e, t) { + return t.toUpperCase(); + }); + }); + var n = /-(.)/g; + e.exports = t.default; + }, + 9310: (e, t, n) => { + "use strict"; + var r = n(45931); + (t.__esModule = !0), + (t.default = function (e) { + return (0, o.default)(e.replace(a, "ms-")); + }); + var o = r(n(92637)), + a = /^-ms-/; + e.exports = t.default; + }, + 41044: (e, t) => { + "use strict"; + (t.__esModule = !0), + (t.default = function (e) { + return e.replace(n, "-$1").toLowerCase(); + }); + var n = /([A-Z])/g; + e.exports = t.default; + }, + 51657: (e, t, n) => { + "use strict"; + var r = n(45931); + (t.__esModule = !0), + (t.default = function (e) { + return (0, o.default)(e).replace(a, "-ms-"); + }); + var o = r(n(41044)), + a = /^ms-/; + e.exports = t.default; + }, + 31991: (e, t) => { + "use strict"; + (t.__esModule = !0), (t.default = void 0); + var n = !("undefined" == typeof window || !window.document || !window.document.createElement); + (t.default = n), (e.exports = t.default); + }, + 97597: (e, t, n) => { + "use strict"; + var r = n(45931); + (t.__esModule = !0), + (t.default = function (e) { + if (((!o && 0 !== o) || e) && a.default) { + var t = document.createElement("div"); + (t.style.position = "absolute"), + (t.style.top = "-9999px"), + (t.style.width = "50px"), + (t.style.height = "50px"), + (t.style.overflow = "scroll"), + document.body.appendChild(t), + (o = t.offsetWidth - t.clientWidth), + document.body.removeChild(t); + } + return o; + }); + var o, + a = r(n(31991)); + e.exports = t.default; + }, + 45232: function (e) { + e.exports = (function () { + "use strict"; + var e = Object.hasOwnProperty, + t = Object.setPrototypeOf, + n = Object.isFrozen, + r = Object.getPrototypeOf, + o = Object.getOwnPropertyDescriptor, + a = Object.freeze, + i = Object.seal, + s = Object.create, + c = "undefined" != typeof Reflect && Reflect, + l = c.apply, + u = c.construct; + l || + (l = function (e, t, n) { + return e.apply(t, n); + }), + a || + (a = function (e) { + return e; + }), + i || + (i = function (e) { + return e; + }), + u || + (u = function (e, t) { + return new (Function.prototype.bind.apply( + e, + [null].concat( + (function (e) { + if (Array.isArray(e)) { + for (var t = 0, n = Array(e.length); t < e.length; t++) n[t] = e[t]; + return n; + } + return Array.from(e); + })(t) + ) + ))(); + }); + var d, + p = C(Array.prototype.forEach), + f = C(Array.prototype.pop), + m = C(Array.prototype.push), + h = C(String.prototype.toLowerCase), + v = C(String.prototype.match), + y = C(String.prototype.replace), + g = C(String.prototype.indexOf), + b = C(String.prototype.trim), + E = C(RegExp.prototype.test), + D = + ((d = TypeError), + function () { + for (var e = arguments.length, t = Array(e), n = 0; n < e; n++) t[n] = arguments[n]; + return u(d, t); + }); + function C(e) { + return function (t) { + for (var n = arguments.length, r = Array(n > 1 ? n - 1 : 0), o = 1; o < n; o++) r[o - 1] = arguments[o]; + return l(e, t, r); + }; + } + function w(e, r) { + t && t(e, null); + for (var o = r.length; o--; ) { + var a = r[o]; + if ("string" == typeof a) { + var i = h(a); + i !== a && (n(r) || (r[o] = i), (a = i)); + } + e[a] = !0; + } + return e; + } + function S(t) { + var n = s(null), + r = void 0; + for (r in t) l(e, t, [r]) && (n[r] = t[r]); + return n; + } + function A(e, t) { + for (; null !== e; ) { + var n = o(e, t); + if (n) { + if (n.get) return C(n.get); + if ("function" == typeof n.value) return C(n.value); + } + e = r(e); + } + return function (e) { + return console.warn("fallback value for", e), null; + }; + } + var k = a([ + "a", + "abbr", + "acronym", + "address", + "area", + "article", + "aside", + "audio", + "b", + "bdi", + "bdo", + "big", + "blink", + "blockquote", + "body", + "br", + "button", + "canvas", + "caption", + "center", + "cite", + "code", + "col", + "colgroup", + "content", + "data", + "datalist", + "dd", + "decorator", + "del", + "details", + "dfn", + "dialog", + "dir", + "div", + "dl", + "dt", + "element", + "em", + "fieldset", + "figcaption", + "figure", + "font", + "footer", + "form", + "h1", + "h2", + "h3", + "h4", + "h5", + "h6", + "head", + "header", + "hgroup", + "hr", + "html", + "i", + "img", + "input", + "ins", + "kbd", + "label", + "legend", + "li", + "main", + "map", + "mark", + "marquee", + "menu", + "menuitem", + "meter", + "nav", + "nobr", + "ol", + "optgroup", + "option", + "output", + "p", + "picture", + "pre", + "progress", + "q", + "rp", + "rt", + "ruby", + "s", + "samp", + "section", + "select", + "shadow", + "small", + "source", + "spacer", + "span", + "strike", + "strong", + "style", + "sub", + "summary", + "sup", + "table", + "tbody", + "td", + "template", + "textarea", + "tfoot", + "th", + "thead", + "time", + "tr", + "track", + "tt", + "u", + "ul", + "var", + "video", + "wbr", + ]), + _ = a([ + "svg", + "a", + "altglyph", + "altglyphdef", + "altglyphitem", + "animatecolor", + "animatemotion", + "animatetransform", + "circle", + "clippath", + "defs", + "desc", + "ellipse", + "filter", + "font", + "g", + "glyph", + "glyphref", + "hkern", + "image", + "line", + "lineargradient", + "marker", + "mask", + "metadata", + "mpath", + "path", + "pattern", + "polygon", + "polyline", + "radialgradient", + "rect", + "stop", + "style", + "switch", + "symbol", + "text", + "textpath", + "title", + "tref", + "tspan", + "view", + "vkern", + ]), + T = a([ + "feBlend", + "feColorMatrix", + "feComponentTransfer", + "feComposite", + "feConvolveMatrix", + "feDiffuseLighting", + "feDisplacementMap", + "feDistantLight", + "feFlood", + "feFuncA", + "feFuncB", + "feFuncG", + "feFuncR", + "feGaussianBlur", + "feImage", + "feMerge", + "feMergeNode", + "feMorphology", + "feOffset", + "fePointLight", + "feSpecularLighting", + "feSpotLight", + "feTile", + "feTurbulence", + ]), + I = a([ + "animate", + "color-profile", + "cursor", + "discard", + "fedropshadow", + "font-face", + "font-face-format", + "font-face-name", + "font-face-src", + "font-face-uri", + "foreignobject", + "hatch", + "hatchpath", + "mesh", + "meshgradient", + "meshpatch", + "meshrow", + "missing-glyph", + "script", + "set", + "solidcolor", + "unknown", + "use", + ]), + O = a([ + "math", + "menclose", + "merror", + "mfenced", + "mfrac", + "mglyph", + "mi", + "mlabeledtr", + "mmultiscripts", + "mn", + "mo", + "mover", + "mpadded", + "mphantom", + "mroot", + "mrow", + "ms", + "mspace", + "msqrt", + "mstyle", + "msub", + "msup", + "msubsup", + "mtable", + "mtd", + "mtext", + "mtr", + "munder", + "munderover", + ]), + F = a(["maction", "maligngroup", "malignmark", "mlongdiv", "mscarries", "mscarry", "msgroup", "mstack", "msline", "msrow", "semantics", "annotation", "annotation-xml", "mprescripts", "none"]), + x = a(["#text"]), + N = a([ + "accept", + "action", + "align", + "alt", + "autocapitalize", + "autocomplete", + "autopictureinpicture", + "autoplay", + "background", + "bgcolor", + "border", + "capture", + "cellpadding", + "cellspacing", + "checked", + "cite", + "class", + "clear", + "color", + "cols", + "colspan", + "controls", + "controlslist", + "coords", + "crossorigin", + "datetime", + "decoding", + "default", + "dir", + "disabled", + "disablepictureinpicture", + "disableremoteplayback", + "download", + "draggable", + "enctype", + "enterkeyhint", + "face", + "for", + "headers", + "height", + "hidden", + "high", + "href", + "hreflang", + "id", + "inputmode", + "integrity", + "ismap", + "kind", + "label", + "lang", + "list", + "loading", + "loop", + "low", + "max", + "maxlength", + "media", + "method", + "min", + "minlength", + "multiple", + "muted", + "name", + "nonce", + "noshade", + "novalidate", + "nowrap", + "open", + "optimum", + "pattern", + "placeholder", + "playsinline", + "poster", + "preload", + "pubdate", + "radiogroup", + "readonly", + "rel", + "required", + "rev", + "reversed", + "role", + "rows", + "rowspan", + "spellcheck", + "scope", + "selected", + "shape", + "size", + "sizes", + "span", + "srclang", + "start", + "src", + "srcset", + "step", + "style", + "summary", + "tabindex", + "title", + "translate", + "type", + "usemap", + "valign", + "value", + "width", + "xmlns", + "slot", + ]), + R = a([ + "accent-height", + "accumulate", + "additive", + "alignment-baseline", + "ascent", + "attributename", + "attributetype", + "azimuth", + "basefrequency", + "baseline-shift", + "begin", + "bias", + "by", + "class", + "clip", + "clippathunits", + "clip-path", + "clip-rule", + "color", + "color-interpolation", + "color-interpolation-filters", + "color-profile", + "color-rendering", + "cx", + "cy", + "d", + "dx", + "dy", + "diffuseconstant", + "direction", + "display", + "divisor", + "dur", + "edgemode", + "elevation", + "end", + "fill", + "fill-opacity", + "fill-rule", + "filter", + "filterunits", + "flood-color", + "flood-opacity", + "font-family", + "font-size", + "font-size-adjust", + "font-stretch", + "font-style", + "font-variant", + "font-weight", + "fx", + "fy", + "g1", + "g2", + "glyph-name", + "glyphref", + "gradientunits", + "gradienttransform", + "height", + "href", + "id", + "image-rendering", + "in", + "in2", + "k", + "k1", + "k2", + "k3", + "k4", + "kerning", + "keypoints", + "keysplines", + "keytimes", + "lang", + "lengthadjust", + "letter-spacing", + "kernelmatrix", + "kernelunitlength", + "lighting-color", + "local", + "marker-end", + "marker-mid", + "marker-start", + "markerheight", + "markerunits", + "markerwidth", + "maskcontentunits", + "maskunits", + "max", + "mask", + "media", + "method", + "mode", + "min", + "name", + "numoctaves", + "offset", + "operator", + "opacity", + "order", + "orient", + "orientation", + "origin", + "overflow", + "paint-order", + "path", + "pathlength", + "patterncontentunits", + "patterntransform", + "patternunits", + "points", + "preservealpha", + "preserveaspectratio", + "primitiveunits", + "r", + "rx", + "ry", + "radius", + "refx", + "refy", + "repeatcount", + "repeatdur", + "restart", + "result", + "rotate", + "scale", + "seed", + "shape-rendering", + "specularconstant", + "specularexponent", + "spreadmethod", + "startoffset", + "stddeviation", + "stitchtiles", + "stop-color", + "stop-opacity", + "stroke-dasharray", + "stroke-dashoffset", + "stroke-linecap", + "stroke-linejoin", + "stroke-miterlimit", + "stroke-opacity", + "stroke", + "stroke-width", + "style", + "surfacescale", + "systemlanguage", + "tabindex", + "targetx", + "targety", + "transform", + "text-anchor", + "text-decoration", + "text-rendering", + "textlength", + "type", + "u1", + "u2", + "unicode", + "values", + "viewbox", + "visibility", + "version", + "vert-adv-y", + "vert-origin-x", + "vert-origin-y", + "width", + "word-spacing", + "wrap", + "writing-mode", + "xchannelselector", + "ychannelselector", + "x", + "x1", + "x2", + "xmlns", + "y", + "y1", + "y2", + "z", + "zoomandpan", + ]), + L = a([ + "accent", + "accentunder", + "align", + "bevelled", + "close", + "columnsalign", + "columnlines", + "columnspan", + "denomalign", + "depth", + "dir", + "display", + "displaystyle", + "encoding", + "fence", + "frame", + "height", + "href", + "id", + "largeop", + "length", + "linethickness", + "lspace", + "lquote", + "mathbackground", + "mathcolor", + "mathsize", + "mathvariant", + "maxsize", + "minsize", + "movablelimits", + "notation", + "numalign", + "open", + "rowalign", + "rowlines", + "rowspacing", + "rowspan", + "rspace", + "rquote", + "scriptlevel", + "scriptminsize", + "scriptsizemultiplier", + "selection", + "separator", + "separators", + "stretchy", + "subscriptshift", + "supscriptshift", + "symmetric", + "voffset", + "width", + "xmlns", + ]), + M = a(["xlink:href", "xml:id", "xlink:title", "xml:space", "xmlns:xlink"]), + P = i(/\{\{[\s\S]*|[\s\S]*\}\}/gm), + j = i(/<%[\s\S]*|[\s\S]*%>/gm), + B = i(/^data-[\-\w.\u00B7-\uFFFF]/), + Z = i(/^aria-[\-\w]+$/), + U = i(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i), + z = i(/^(?:\w+script|data):/i), + V = i(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g), + H = + "function" == typeof Symbol && "symbol" == typeof Symbol.iterator + ? function (e) { + return typeof e; + } + : function (e) { + return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e; + }; + function G(e) { + if (Array.isArray(e)) { + for (var t = 0, n = Array(e.length); t < e.length; t++) n[t] = e[t]; + return n; + } + return Array.from(e); + } + var W = function () { + return "undefined" == typeof window ? null : window; + }; + return (function e() { + var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : W(), + n = function (t) { + return e(t); + }; + if (((n.version = "2.3.4"), (n.removed = []), !t || !t.document || 9 !== t.document.nodeType)) return (n.isSupported = !1), n; + var r = t.document, + o = t.document, + i = t.DocumentFragment, + s = t.HTMLTemplateElement, + c = t.Node, + l = t.Element, + u = t.NodeFilter, + d = t.NamedNodeMap, + C = void 0 === d ? t.NamedNodeMap || t.MozNamedAttrMap : d, + Q = t.HTMLFormElement, + J = t.DOMParser, + Y = t.trustedTypes, + q = l.prototype, + X = A(q, "cloneNode"), + K = A(q, "nextSibling"), + $ = A(q, "childNodes"), + ee = A(q, "parentNode"); + if ("function" == typeof s) { + var te = o.createElement("template"); + te.content && te.content.ownerDocument && (o = te.content.ownerDocument); + } + var ne = (function (e, t) { + if ("object" !== (void 0 === e ? "undefined" : H(e)) || "function" != typeof e.createPolicy) return null; + var n = null, + r = "data-tt-policy-suffix"; + t.currentScript && t.currentScript.hasAttribute(r) && (n = t.currentScript.getAttribute(r)); + var o = "dompurify" + (n ? "#" + n : ""); + try { + return e.createPolicy(o, { + createHTML: function (e) { + return e; + }, + }); + } catch (e) { + return console.warn("TrustedTypes policy " + o + " could not be created."), null; + } + })(Y, r), + re = ne && Le ? ne.createHTML("") : "", + oe = o, + ae = oe.implementation, + ie = oe.createNodeIterator, + se = oe.createDocumentFragment, + ce = oe.getElementsByTagName, + le = r.importNode, + ue = {}; + try { + ue = S(o).documentMode ? o.documentMode : {}; + } catch (e) {} + var de = {}; + n.isSupported = "function" == typeof ee && ae && void 0 !== ae.createHTMLDocument && 9 !== ue; + var pe = P, + fe = j, + me = B, + he = Z, + ve = z, + ye = V, + ge = U, + be = null, + Ee = w({}, [].concat(G(k), G(_), G(T), G(O), G(x))), + De = null, + Ce = w({}, [].concat(G(N), G(R), G(L), G(M))), + we = Object.seal( + Object.create(null, { + tagNameCheck: { writable: !0, configurable: !1, enumerable: !0, value: null }, + attributeNameCheck: { writable: !0, configurable: !1, enumerable: !0, value: null }, + allowCustomizedBuiltInElements: { writable: !0, configurable: !1, enumerable: !0, value: !1 }, + }) + ), + Se = null, + Ae = null, + ke = !0, + _e = !0, + Te = !1, + Ie = !1, + Oe = !1, + Fe = !1, + xe = !1, + Ne = !1, + Re = !1, + Le = !1, + Me = !0, + Pe = !0, + je = !1, + Be = {}, + Ze = null, + Ue = w({}, [ + "annotation-xml", + "audio", + "colgroup", + "desc", + "foreignobject", + "head", + "iframe", + "math", + "mi", + "mn", + "mo", + "ms", + "mtext", + "noembed", + "noframes", + "noscript", + "plaintext", + "script", + "style", + "svg", + "template", + "thead", + "title", + "video", + "xmp", + ]), + ze = null, + Ve = w({}, ["audio", "video", "img", "source", "image", "track"]), + He = null, + Ge = w({}, ["alt", "class", "for", "id", "label", "name", "pattern", "placeholder", "role", "summary", "title", "value", "style", "xmlns"]), + We = "http://www.w3.org/1998/Math/MathML", + Qe = "http://www.w3.org/2000/svg", + Je = "http://www.w3.org/1999/xhtml", + Ye = Je, + qe = !1, + Xe = void 0, + Ke = ["application/xhtml+xml", "text/html"], + $e = void 0, + et = null, + tt = o.createElement("form"), + nt = function (e) { + return e instanceof RegExp || e instanceof Function; + }, + rt = function (e) { + (et && et === e) || + ((e && "object" === (void 0 === e ? "undefined" : H(e))) || (e = {}), + (e = S(e)), + (be = "ALLOWED_TAGS" in e ? w({}, e.ALLOWED_TAGS) : Ee), + (De = "ALLOWED_ATTR" in e ? w({}, e.ALLOWED_ATTR) : Ce), + (He = "ADD_URI_SAFE_ATTR" in e ? w(S(Ge), e.ADD_URI_SAFE_ATTR) : Ge), + (ze = "ADD_DATA_URI_TAGS" in e ? w(S(Ve), e.ADD_DATA_URI_TAGS) : Ve), + (Ze = "FORBID_CONTENTS" in e ? w({}, e.FORBID_CONTENTS) : Ue), + (Se = "FORBID_TAGS" in e ? w({}, e.FORBID_TAGS) : {}), + (Ae = "FORBID_ATTR" in e ? w({}, e.FORBID_ATTR) : {}), + (Be = "USE_PROFILES" in e && e.USE_PROFILES), + (ke = !1 !== e.ALLOW_ARIA_ATTR), + (_e = !1 !== e.ALLOW_DATA_ATTR), + (Te = e.ALLOW_UNKNOWN_PROTOCOLS || !1), + (Ie = e.SAFE_FOR_TEMPLATES || !1), + (Oe = e.WHOLE_DOCUMENT || !1), + (Ne = e.RETURN_DOM || !1), + (Re = e.RETURN_DOM_FRAGMENT || !1), + (Le = e.RETURN_TRUSTED_TYPE || !1), + (xe = e.FORCE_BODY || !1), + (Me = !1 !== e.SANITIZE_DOM), + (Pe = !1 !== e.KEEP_CONTENT), + (je = e.IN_PLACE || !1), + (ge = e.ALLOWED_URI_REGEXP || ge), + (Ye = e.NAMESPACE || Je), + e.CUSTOM_ELEMENT_HANDLING && nt(e.CUSTOM_ELEMENT_HANDLING.tagNameCheck) && (we.tagNameCheck = e.CUSTOM_ELEMENT_HANDLING.tagNameCheck), + e.CUSTOM_ELEMENT_HANDLING && nt(e.CUSTOM_ELEMENT_HANDLING.attributeNameCheck) && (we.attributeNameCheck = e.CUSTOM_ELEMENT_HANDLING.attributeNameCheck), + e.CUSTOM_ELEMENT_HANDLING && "boolean" == typeof e.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements && (we.allowCustomizedBuiltInElements = e.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements), + (Xe = Xe = -1 === Ke.indexOf(e.PARSER_MEDIA_TYPE) ? "text/html" : e.PARSER_MEDIA_TYPE), + ($e = + "application/xhtml+xml" === Xe + ? function (e) { + return e; + } + : h), + Ie && (_e = !1), + Re && (Ne = !0), + Be && + ((be = w({}, [].concat(G(x)))), + (De = []), + !0 === Be.html && (w(be, k), w(De, N)), + !0 === Be.svg && (w(be, _), w(De, R), w(De, M)), + !0 === Be.svgFilters && (w(be, T), w(De, R), w(De, M)), + !0 === Be.mathMl && (w(be, O), w(De, L), w(De, M))), + e.ADD_TAGS && (be === Ee && (be = S(be)), w(be, e.ADD_TAGS)), + e.ADD_ATTR && (De === Ce && (De = S(De)), w(De, e.ADD_ATTR)), + e.ADD_URI_SAFE_ATTR && w(He, e.ADD_URI_SAFE_ATTR), + e.FORBID_CONTENTS && (Ze === Ue && (Ze = S(Ze)), w(Ze, e.FORBID_CONTENTS)), + Pe && (be["#text"] = !0), + Oe && w(be, ["html", "head", "body"]), + be.table && (w(be, ["tbody"]), delete Se.tbody), + a && a(e), + (et = e)); + }, + ot = w({}, ["mi", "mo", "mn", "ms", "mtext"]), + at = w({}, ["foreignobject", "desc", "title", "annotation-xml"]), + it = w({}, _); + w(it, T), w(it, I); + var st = w({}, O); + w(st, F); + var ct = function (e) { + m(n.removed, { element: e }); + try { + e.parentNode.removeChild(e); + } catch (t) { + try { + e.outerHTML = re; + } catch (t) { + e.remove(); + } + } + }, + lt = function (e, t) { + try { + m(n.removed, { attribute: t.getAttributeNode(e), from: t }); + } catch (e) { + m(n.removed, { attribute: null, from: t }); + } + if ((t.removeAttribute(e), "is" === e && !De[e])) + if (Ne || Re) + try { + ct(t); + } catch (e) {} + else + try { + t.setAttribute(e, ""); + } catch (e) {} + }, + ut = function (e) { + var t = void 0, + n = void 0; + if (xe) e = "" + e; + else { + var r = v(e, /^[\r\n\t ]+/); + n = r && r[0]; + } + "application/xhtml+xml" === Xe && (e = '' + e + ""); + var a = ne ? ne.createHTML(e) : e; + if (Ye === Je) + try { + t = new J().parseFromString(a, Xe); + } catch (e) {} + if (!t || !t.documentElement) { + t = ae.createDocument(Ye, "template", null); + try { + t.documentElement.innerHTML = qe ? "" : a; + } catch (e) {} + } + var i = t.body || t.documentElement; + return e && n && i.insertBefore(o.createTextNode(n), i.childNodes[0] || null), Ye === Je ? ce.call(t, Oe ? "html" : "body")[0] : Oe ? t.documentElement : i; + }, + dt = function (e) { + return ie.call(e.ownerDocument || e, e, u.SHOW_ELEMENT | u.SHOW_COMMENT | u.SHOW_TEXT, null, !1); + }, + pt = function (e) { + return "object" === (void 0 === c ? "undefined" : H(c)) ? e instanceof c : e && "object" === (void 0 === e ? "undefined" : H(e)) && "number" == typeof e.nodeType && "string" == typeof e.nodeName; + }, + ft = function (e, t, r) { + de[e] && + p(de[e], function (e) { + e.call(n, t, r, et); + }); + }, + mt = function (e) { + var t, + r = void 0; + if ( + (ft("beforeSanitizeElements", e, null), + (t = e) instanceof Q && + ("string" != typeof t.nodeName || + "string" != typeof t.textContent || + "function" != typeof t.removeChild || + !(t.attributes instanceof C) || + "function" != typeof t.removeAttribute || + "function" != typeof t.setAttribute || + "string" != typeof t.namespaceURI || + "function" != typeof t.insertBefore)) + ) + return ct(e), !0; + if (v(e.nodeName, /[\u0080-\uFFFF]/)) return ct(e), !0; + var o = $e(e.nodeName); + if ((ft("uponSanitizeElement", e, { tagName: o, allowedTags: be }), !pt(e.firstElementChild) && (!pt(e.content) || !pt(e.content.firstElementChild)) && E(/<[/\w]/g, e.innerHTML) && E(/<[/\w]/g, e.textContent))) + return ct(e), !0; + if ("select" === o && E(/